@font-face {
	font-family: AvenirNext;
	src: url("../fonts/AvenirNext/AvenirNextRegular.woff2") format("woff2");
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: AvenirNext;
	src: url("../fonts/AvenirNext/AvenirNextBold.woff2") format("woff2");
	font-style: normal;
	font-weight: bold;
}

@font-face {
	font-family: AvenirNext;
	src: url("../fonts/AvenirNext/AvenirNextHeavyItalic.woff2") format("woff2");
	font-style: italic;
	font-weight: bold;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: AvenirNext, Arial, sans-serif;
	color: white;
}

body {
	overflow: hidden;
	position: relative;
}

#picture-overlay{
	display: none; 
	position: fixed; 
	width: 100%; 
	height:100%; 
	left: 0; 
	top: 0; 
	border: 0; 
	margin: 0; 
	z-index: 999999; 
	background-color: black;
}

#picture-close{
	position: absolute;
	padding: 0 20px;
	left: 50%;
	transform: translate(-50%, 0);
	top: 10px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	border: 1px solid rgb(33, 112, 121);
	color: white;
	font-size: 16px;
	font-family: Avenir, Arial, sans-serif;
	text-align: center;
	cursor: pointer;
	z-index: 9999999;
	background-color: rgba(22, 77, 83,0.4);
	transition: background-color 0.5s ease;
}

#picture-close:hover{
	background-color: rgba(22, 77, 83,0.8);
}

#picture-content{
	position: absolute; 
	width: 100%; 
	height: 100%;
}

.header {
	position: relative;
	height: 70px;
	display: flex;
	align-items: center;
	background-color: #fff;
	border-bottom: 2px solid #153134;
	background-color: #10363B;
}

.left-date {
	position: absolute;
	left: 65px;
	font-weight: bold;
	font-size: 22px;
	color: white;
	font-style: italic;
}

.right-date {
	position: absolute;
	right: 65px;
	font-weight: bold;
	font-size: 22px;
	color: white;
	font-style: italic;
}

.map-toggle {
	position: absolute;
	left: 165px;
	font-weight: bold;
	font-size: 22px;
	color: white;
	font-style: italic;
}

.map-dk-de {
	position: absolute;
	right: 165px;
	font-weight: bold;
	font-size: 22px;
	color: white;
	font-style: italic;
}

.map-switch {
	position: absolute;
	left: 165px;
}

.menu-opener{
	margin: 0 auto;
	padding: 0 15px 0 20px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	border: 1px solid white;
	color: white;
	font-size: 16px;
	font-family: Avenir, Arial, sans-serif;
	text-align: center;
	cursor: pointer;
	z-index: 9999;
	background-color: transparent;
	transition: background-color 0.5s ease;
}

.menu-opener:after {
	content: "▼";
	padding-left: 13px;
}

.menu-opener:hover{
	background-color: rgb(28 93 100);
	border-color: rgb(33, 112, 121);;
}

.menu {
	display: none;
	position: absolute;
	width: min(calc(100vw - 40px), 700px);
	left: 0;
	right: 0;
	margin: auto;
	top: 80px;
	color: #217079;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
	z-index: 99999;
}

.menu-content{
	padding: 10px 15px 20px 15px;
	max-height: calc(100vh - 150px);
	overflow-y: auto;
}

.menu:after {
      content: "";
      position: absolute;
      left:  0;
      right: 0;
      margin: auto;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: transparent transparent #FFFFFF transparent;
      top: -20px;
}

.menu .left{
	margin-bottom: 20px;
}

.menu .left:last-child{
	margin-bottom: 0px;
}

.menu span{
	display: block;
	font-weight: bold;
	font-style: italic;
	font-size: 20px;
}

.menu a {
	display: inline-block;
	margin-right: 8px;
	margin-top: 6px;
	padding: 0 15px;
	line-height: 30px;
	border-radius: 30px;
	color: #217079;
	border: 1px solid #217079;
	display: inline-block;
	text-decoration: none;
	transition: background-color 0.5s ease;
}

.menu a:hover {
	background-color: rgb(218 231 233);
}

#map {
	width: 100%;
	height: calc(100% - 70px);
}

@media only screen and (max-width: 900px) {
	.right-date,
	.left-date {
		font-size: 19px;
	}
	.header {
		height: 65px;
	}
	#map {
		height: calc(100% - 65px);
	}
	.menu{
		top: 75px;
	}
}


@media only screen and (max-width: 680px) {
	.right-date,
	.left-date {
		font-size: 17px;
	}
	.header {
		height: 60px;
	}
	#map {
		height: calc(100% - 60px);
	}
	.menu-opener{
		font-size: 15px;
		height: 35px;
		line-height: 35px;
	}
	.menu{
		top: 70px;
	}
}

@media only screen and (max-width: 400px) {
	.right-date,
	.left-date {
		font-size: 14px;
	}
	.menu-opener{
		font-size: 14px;
		height: 30px;
		line-height: 30px;
	}
}