.tx-leaflet-osm {
	position: relative;
	z-index: 1;
}

.leaflet-container {
	height: 500px;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
}

.leaflet-attribution-flag {
	display: none !important;
}

.leaflet-popup-content {
	max-width: 70vw;
}

.leaflet-popup-content .popupwrapper {
	display: flex;
	max-width: 600px;
}



@media (max-width:768px) {
	.leaflet-popup-content .popupwrapper {
		flex-direction: column;
	}

	.leaflet-popup-content .popupwrapper-image {
		margin-bottom: 20px;
	}	
}

@media (min-width:769px) {

	.leaflet-popup-content .popupwrapper-image {
		width:200px;
		flex:0 0 200px;
	}

	.leaflet-popup-content .popupwrapper-content {
		padding-left: 20px;
		flex:1 1 auto;
	}

}


.leaflet-popup-content .popupwrapper-content p {
	margin:0 0 1em 0;
	padding:0;
	font-size: 14px;
}


#locationmap {
	position: relative;
}

#maplegend {
	display: none;
}

#locationmap.loaded #maplegend {
	display: flex;
}

#mapconsent {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:50px 30px;
	
	background-size: cover;
	overflow-x: hidden;
}

#locationmap.loaded #mapconsent {
	display: none;
}

#mapconsent-bg-overlay {
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 1;
	background-image: url(../Images/mappreview.png);
	background-repeat: no-repeat;
	background-position: center center;
	filter: blur(1.99px) brightness(0.3) grayscale(1) ;
}
#mapconsent-bg-overlay-color {
	background-color: var(--lh-blue);
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 1;
	background-color: var(--lh-blue);
	mix-blend-mode: color;
}



#mapconsent-content {
	position: relative;
	max-width: 700px;
	padding:30px;
	background-color: #fff;
	z-index: 1;
}

#mapconsent-content h3 {
 color: var(--lh-green);
}

#mapconsent-content button {
    appearance: none;
    font-family: "Kievit W01 Bold";
    display: block;
    height: 100%;
    margin: 0;
    background: var(--lh-green);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 0;
    font-size: 25px;
    padding: 10px;
    cursor: pointer;
    pointer-events: all;
}

#maplegend {
	flex-wrap: wrap;
	margin-top: 20px;
}

#maplegend label {
	flex:0 0 50%;
	margin-bottom: 5px;
	word-break: break-all;
}

@media (max-width:1500px) {
	#maplegend {
		flex-direction: column;
	}
	#maplegend label {
		flex:1 1 auto;
	}
}