section.leaflet-map{
	position:relative;
}

section.leaflet-map #map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 500;
	display: flex;
	align-items: center;
	align-content:flex-end;
	justify-content: center;
	opacity: 0; /* set to invisible initially */
	transition: opacity 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;
	pointer-events: auto;
}
section.leaflet-map #map-overlay div{
	padding:10px;
	border:1px solid var(--gold-color);
	background:rgba(0,0,0,0.5);
	font-size:16px;
}
section.leaflet-map #map{
	height:66vh!important;
}


