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

.map-interact {
	color: var(--white-color);
	font-weight: 400;
	font-family: var(--main-font);
	padding: 12px 20px;
	border: 1px solid var(--lighter-gold);
	background: rgba(62, 34, 50, 0.7);
	z-index: 1;
}

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(10, 45, 87, 0.75);
	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;
}

.leaflet-container img.leaflet-tile{
	filter:grayscale(0.5);
}
.leaflet-container{
	font-family:'Montserrat', sans-serif;
}
.leaflet-container a{
	color:#ff4a12;
}
.leaflet-marker-icon{
	width:50px!important;
	height:50px!important;
	margin-left:-25px!important;
	margin-top:-50px!important;
}
.leaflet-popup-content p{
	margin:0.5em 0;
}

