/*
 * SVG Map styles
 */
#sofia-svg-map{
	display: block;
	pointer-events: all;
}
.map-park{
	fill: #44c031;
}

/* .district:hover{
	filter: grayscale(100%) sepia(100%);
} */

.district.active{
	fill: #ECECEC;
	transition: .2s ease-in-out;
}

.district.inactive{
	fill: #717171;
}
#sofia-svg-map path.district.selected{
	fill: #0C485E;
}
.district.empty{
	fill: #d43535;
}
/* path.district:nth-child(94):hover{
	fill: #E35757 !important;
	cursor: pointer;
	transition: .2s ease-in-out;
} */
.district.active:hover, .district.active:focus{
	fill: #E35757 !important;
	cursor: pointer;
	transition: .2s ease-in-out;
}

/* @media (min-width: 768px) { */
	.district.active:hover{
		fill: #C7DAE0 !important;
		cursor: pointer;
		transition: .2s ease-in-out;
	}
/* } */

.tooltip {
	-webkit-transform: translate(-50%, -160%);
	transform: translate(-50%, -160%);
	display: none;
	position: absolute;
	color: #000;
	text-transform: capitalize;
	background-color: #fff;
	border: none;
	border-radius: 4px;
	padding: 15px 10px;
	z-index: 10;
	display: block;
	max-width: 200px;
	top: 0;
	left: 50%;
	text-align: center;
	/* border: 1px solid grey; */
	box-shadow: 0 0 19px grey;
}

.tooltip:after {
	content: "";
	display: block;
	position: absolute;
	border-color: #fff rgba(255, 255, 255, 0);
	border-style: solid;
	border-width: 15px 15px 0;
	bottom: -13px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 0;
	/* box-shadow: 0 0 19px grey; */
}

.district{
	stroke-opacity: 0.75;
	stroke-width: 0.8;
}


#eas-svgmap-tooltip{
	-webkit-transform: translate(-50%, -160%);
	transform: translate(-50%, -160%);
	display: none;
	position: absolute;
	color: #000;
	text-transform: capitalize;
	background-color: #fff;
	border: none;
	border-radius: 4px;
	padding: 15px 10px;
	z-index: 10;
	display: block;
	max-width: 200px;
	top: 0;
	left: 50%;
	text-align: center;
	/* border: 1px solid grey; */
	box-shadow: 0 0 19px grey;
}

#eas-svgmap-tooltip::after{
	content: "";
	display: block;
	position: absolute;
	border-color: #fff rgba(255, 255, 255, 0);
	border-style: solid;
	border-width: 15px 15px 0;
	bottom: -13px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 0;
	/* box-shadow: 0 0 19px grey; */
}