.map-container {
    width: 100%;
    height: 400px;
	position: relative;
}

.ask-consent {
    width: 100%;
    height: 400px;
    background: #cecece;
    position: relative;
	background: #cecece;
	text-align: center;
	z-index: 2;
}

.ask-consent > div {
    width: 95%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.ask-consent button {
	background: rgb(13, 116, 175);
	border: none;
	border-radius: 5px;
	color: #dedede;
	width: 130px;
	height: 35px;
	font-size: 0.8em;
	font-weight: normal;
    cursor: pointer;
}
.ask-consent button:hover {
	background: #084D76;
}

.mapview {
	width: 100%;
    height: 400px;
	position: absolute;
}

.contact-item > h5 {
	margin: 18px 0 4px 0;
	text-transform: uppercase;
}

.contact-item a {
	color: var(--text);
}

@media screen and (prefers-color-scheme: dark) {
	.ask-consent {
		background: #000000;
	}
}