section.leaflet-map{
	position:relative;
	z-index:0;
}

section.leaflet-map #map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 45, 87, 0);
	z-index: 500;
	display: flex;
	align-items: center;
	align-content:flex-end;
	justify-content: center;
	
	transition: all 0.5s; /* 0.5 seconds fade effect */
	pointer-events: none; /* prevents accidental clicks on the invisible overlay */
}
section.leaflet-map #map-overlay.visible {
	opacity: 1;
	background: rgba(73, 86, 102, 0.5);
	pointer-events: auto;
}
section.leaflet-map #map-overlay div {
	padding: 10px;
	border: 1px solid var(--light-blue);
	background: transparent;
	font-size: 16px;
	opacity: 0;
	transition: all 0.3s;
	z-index: 10000;
	color: #fff;
}
section.leaflet-map #map-overlay.visible div{
	opacity: 1;
}
section.leaflet-map #map{
	height:66vh!important;
}

section.leaflet-map .leaflet-popup-content p{
	margin-top:0;
}

.leaflet-container img.leaflet-tile{
	filter:grayscale(0.5);
}


