body {margin: 0; padding: 0;}

.map {
	position: relative;
	text-align: center;
}

svg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.part {
	opacity: .3;
}

.part:hover {
	transition: opacity .2s ease;
	opacity: .8;
	cursor: pointer;
}


.description {
	display: none;
	position: absolute;
	padding: 40px;
	box-sizing: border-box;
	width: 250px;
	height: 150px;
	opacity: .95;
	box-shadow: 0 0 5px 5px #ccc;
	background: rgba(255,255,255, .90);
	left: 350px;
	bottom: calc(50% + 80px);
	font-family: sans-serif;
	text-shadow: 0 0 3px 3px #ccc;
}

.description img {
	width: 250px;
	margin-bottom: 20px;
}