/* css zu home *//* HeaderMainMenuCSS  *//*
================================================================
				CSS fuer Mehr ebenen Menue
================================================================
Menue Text Color: 							#00559F
Schriftart Menue						'Ubuntu Regular', 'dinpro-regular', openSans, sans-serif
Menue Ebene 1 Hover Color:					#E10019
Menue Ebene 1 Hover Border-bottom Color:	#4C88BC
Menue Ebene 2+ Background Color:			#E7E7E7
Menue Ebene 2+ Hover Color					#FFFFFF
Menue Ebene 1 Hover background color:		Menue Ebene 2+ Background Color
Menue Ebene 2+ Hover background Color:		Menue Text Color


*/
/*
=====================================================================
						DESKTOP ANSICHT
=====================================================================
*/
#HeaderMainMenu{z-index:1000; position: relative; margin:0;}
#HeaderMainMenu, #HeaderMainMenu ul{
	list-style: none;
	padding-left:0;
}
#HeaderMainMenu > li > ul > li a
{font-family: 'Ubuntu Regular', 'dinpro-regular', openSans, sans-serif;}	/*-- Schriftart Menue --*/
#HeaderMainMenu_mobile_chk, #HeaderMainMenu > li > a{display:none;}
#HeaderMainMenu > li > ul > li{
	position:relative;
	margin-right:1%;
	padding:10px 0;
	display:inline-block;
	float:left;
}
#HeaderMainMenu > li > ul > li ul{
	opacity: 0;
	pointer-events: none;
	transition: 300ms ease-in-out;
	position: absolute;
	background-color:#E7E7E7;												/*-- Menue Ebene 2+ Background Color --*/
	padding:5px 0 0;
}
#HeaderMainMenu > li > ul > li > ul{
	min-width: 100%;
	top:100%;
	width: fit-content;
}
#HeaderMainMenu > li > ul > li > a{
	text-decoration: none;
	color:#00559F;															/*-- Menue Text Color --*/
	border-bottom: 2px solid transparent;
	
	transition:300ms ease-in-out;
	padding:10px;
	font-size:21px;
}
#HeaderMainMenu > li > ul > li ul a{
	text-decoration: none;
	color:#00559F;															/*-- Menue Text Color --*/
	padding: 2px 38px 2px 13px;
	display: inline-block;
	width: 100%;
	font-weight: normal;
	transition:color 300ms ease-in-out, background-color 300ms ease-in-out;
	letter-spacing:0.5px
}
#HeaderMainMenu > li > ul > li ul > li{position: relative;}

/* Timon 230822 Anfang */
@media screen and (min-width: 1024px) {
	#HeaderMainMenu > li > ul > li ul > li:hover > ul::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 300px;
		top: -300px;
		left: 0;
	}

	#HeaderMainMenu > li > ul > li > ul li.isnode > a::after {
		content: '';
		display: block;
		width: 13px;
		height: 13px;
		position: absolute;
		right: 13px;
		top: 8px;
		background-image: url('/bilder/pfeil-blau.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}
	#HeaderMainMenu > li > ul > li > ul li.isnode:hover > a::after {background-image: url('/bilder/pfeil-weiss.svg');}
}
/* Timon 230822 Ende */


#HeaderMainMenu > li > ul > li > ul ul{
	top:-5px;
	left:100%;
	width: fit-content;
}
#HeaderMainMenu > li > ul > li > ul a{white-space: nowrap; overflow: hidden;}
#HeaderMainMenu > li > ul > li ul li:hover > a{
	background-color: #00559F;												/*-- Menue Ebene 2+ Hover background Color --*/
	color:#FFFFFF;															/*-- Menue Ebene 2+ Hover Color --*/
}
#HeaderMainMenu > li > ul > li:hover > a{
	background-color:#E7E7E7;												/*-- Menue Ebene 1 Hover background color --*/
	border-bottom-color:#4C88BC;											/*-- Menue Ebene 1 Hover Border-bottom Color --*/
	color:#E10019;															/*-- Menue Ebene 1 Hover Color --*/
}
#HeaderMainMenu > li > ul li:hover > ul{opacity: 1; pointer-events: all;}
@media screen and (max-width:1440px){
	#HeaderMainMenu > li > ul > li > a{font-size:1.5vw; padding:8px;}
	#HeaderMainMenu > li > ul > li{margin-right:0;}
	#HeaderMainMenu > li > ul > li > ul{top:calc(100% - 3px);}
}






/* Suche */
#HeaderSuche{width:25%;}
.SucheAjaxMenueSuche_Container {
	overflow: hidden;
	position: relative;
}
#tbSucheAjax{
	width: 100%;
	outline: none;
	padding: 7px 10px 7px 40px;
	border-radius: 10px;
	border:#4C88BC 1px solid;
	color: #00559F;
	font-size:17px;
	font-family: inherit;
}
#ergebnisseSucheAjax {
	position:absolute;
	background-color:#ffffff;
	width:100%;
	top:38px;
	padding:0px 10px 10px;
	box-shadow: black 0px 0px 6px -3px;
	border-radius: 8px;
	z-index:1;
	transition: 300ms;
  	overflow:auto;
  	height:500px;
}
#SucheAjaxMenue_active:not(:checked) ~ #ergebnisseSucheAjax{
	height:0;
	padding-bottom:0;
  	overflow:hidden;
}
#SucheAjaxMenue_active:checked ~ .SucheAjaxMenueSuche_Container > .SucheAjaxMenueSuche_icons{
	top: 2px;
	pointer-events: all;
}
.SucheAjaxMenueSuche_icons {
	left: 12px;
	font-size: 24px;
	line-height: 34px;
	position: absolute;
	top: -34px;
	font-family: iconfont;
	color: #00559F;
	transition:300ms ease-in-out;
  	cursor:pointer;
  	pointer-events:none;
}
#MobilSuchenButton {
	position: absolute;
	font-family: iconfont;
	font-size: 30px;
	color: #00559f;
	cursor: pointer;
}
#lblSucheDesktopCloseArea {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	pointer-events: none;
}

#SucheAjaxMenue_active:checked ~ #lblSucheDesktopCloseArea {
	pointer-events: all;
}







@media screen and (min-width: 1024px) {
	#MobilSuchenButton {
		right: 6px;
		top: 6px;
		opacity: 0;
		pointer-events: none;
		transition: opacity 300ms;
	}
	#SucheAjaxMenue_active:checked ~ .SucheAjaxMenueSuche_Container #MobilSuchenButton {
		opacity: 1;
		pointer-events: all;
	}
}
@media screen and (max-width: 1024px) {
	#MobilSuchenButton {
		top: 6px;
		right: 35px;
	}
}/* --- --- *//* HeaderMobileMenuCSS  */@media screen and (max-width:1024px){
	/*------------Menue----------------------*/
	#Menue{position: fixed; z-index: 1000; background-color:#fff;}
	#OeffnungsStatus, .HomeButton{display:none;}
	#HeaderMainMenu{
		background-color:#00559F;
		width: 300px;
		position:fixed;
		height:100%;
		top: 0;
		left: 100%;
		padding: 50px 20px 0;
		transition: 500ms ease-in-out;
  }
	#HeaderMainMenu > li > ul > li{
		display: block;
		width: 100%;
	}
	#HeaderMainMenu > li > ul li.isnode > ul{
		background-color:#00559F;
		width: 300px;
		position:fixed;
		height:100%;
		top: 0;
		left: 100%;
		padding:0 20px;
		margin-top:50px;
		transition: 500ms ease-in-out;
		min-width: 0;
		pointer-events: all;
		opacity: 1;
		z-index: 1;
	}
	#HeaderMainMenu > li > ul li.isnode > ul::before{
		content:'';
		left: 25px;
		top: -26px;
		transform: rotate(-135deg);
		position: absolute;
		border-top:2px solid #fff;
		border-right:2px solid #fff;
		width:10px;
		height:10px;
		pointer-events:none;
	}
	#HeaderMainMenu_kb_show_menu{
		height: 40px;
		width:40px;
		position: absolute;
		right: 40px;
		top:50%;
		transform: translateY(-50%);
		cursor: pointer;
	}
	#HeaderMainMenu_kb_show_menu::before{
		content:'\f112';
		font-family: iconfont;
		color: #00559F;
		text-align: center;
		display: inline-block;
		width: 100%;
		font-size:44px;
		padding-top:8px;
		font-weight: 10;
	}
	#Menue > .bigIncludeTo > .contentWrapperL:nth-child(1){padding-top: 26px;}
	#HeaderMainMenu > li > ul a {color:#fff !important;}
	#HeaderMainMenu > li > ul li{border-bottom: 1px solid #fff}
	#HeaderMainMenu_kb_hide_menu{
		width: 25px;
		height: 25px;
		position: fixed;
		left: calc(100% + 300px);
		top: 15px;
		z-index: 1001;
		cursor: pointer;
		transition: 500ms ease-in-out;
	}
	#HeaderMainMenu_kb_hide_menu::before{
		content:'\f103';
		color:#fff;
		font-family: iconfont;
		font-size:25px;
		display: inline-block;
		width: 100%;
	}
	#HeaderMainMenu > li > ul li > a{
		border-bottom:none !important;
		background-color:transparent !important;
		font-weight:normal;
		transition: 0s;
		width:fit-content !important;
		letter-spacing:normal !important;
	}
	#HeaderMainMenu > li > ul li.isnode > div{
		position: absolute;
		width:10px;
		height:10px;
		right:10px;
		top:50%;
		transform:translateY(-50%) rotate(45deg);
		border-top:2px solid #fff;
		border-right:2px solid #fff;
		cursor:pointer;
	}
	#HeaderMainMenu > li > ul > li > a{font-size:17px;}
	#HeaderMainMenu > li > ul > li > ul a{white-space: normal; width:240px !important;}
	/*--------------Clicks Aktionen--------------*/
	@keyframes openLayer_li {
		0%{position: relative; top:0; border-bottom: 1px solid #fff; height:auto;}
		100%{position: relative; top:0; border-bottom: 1px solid #fff; height:auto;}
	}
	@keyframes openLayer_a {
		0%{opacity:1;}
		100%{opacity:1;}
	}
	@keyframes openLayer_div {
		0%{transform:translateY(-50%) rotate(45deg); left:unset; top: 50%; opacity: 1;}
		100%{transform:translateY(-50%) rotate(45deg); left:unset; top: 50%; opacity: 1;}
	}
	
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu > li > ul li.isnode.openleaf{
		position: absolute;
		top: -50px;
		left:0;
		border-bottom: none;
		background-color: #00559F;
		height: 50px;
		width:100%;
		animation: openLayer_li 500ms 1;
	}
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu > li > ul > li.isnode.openleaf{top: 0;}
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu > li > ul li.isnode.openleaf > a
	{opacity:0; pointer-events:none; animation: openLayer_a 500ms 1;}
	#HeaderMainMenu > li > ul > li ul li:hover > a{font-weight:normal; letter-spacing: normal;}
	#HeaderMainMenu > li > ul li.isnode > div.trO{
		left: 25px;
		top: 25px;
		transform: rotate(-135deg);
		opacity: 0;
		animation: openLayer_div 500ms 1;
	}
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu > li > ul li.isnode.openleaf > ul{left:calc(100% - 300px);}
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu_kb_hide_menu{left:calc(100% - 40px - 5px)}
	#HeaderMainMenu_mobile_chk:not(:checked) ~ #HeaderMainMenu{left:calc(100% - 300px);}
	#HeaderMainMenu > li > ul li > a:hover{font-weight:bold !important; letter-spacing:-0.5px !important;}
	
	/*----------------------Suche-----------------------*/
	#MobileSucheOpen{
		width: 45px;
		height: 45px;
		display:inline-block;
		position: absolute;
		right:105px;
		top:50%;
		cursor:pointer;
		transform: translateY(-50%);
		background-image: url("../bilder/Header/SuchenMobileIcon.svg");
	}
	#SucheContainer{
		opacity:0;
		pointer-events:none;
		transition:300ms ease-in-out;
		position: absolute;
		right:0;
		width:100%;
		top:100%;
		background-color:#fff;
		text-align:right;
		padding: 10px 0;
	}
	#SucheContainer > .SucheAjaxMenueSuche_Container{display:inline-block;}
	#SucheContainer > .SucheAjaxMenueSuche_Container > #tbSucheAjax{
		max-width:250px;
		padding-left:10px;
		padding-right:35px;
		margin-right:28px;
	}
	#SucheContainer > .SucheAjaxMenueSuche_Container > .SucheAjaxMenueSuche_icons{display:none;}
	#SucheContainer > #ergebnisseSucheAjax{
		box-shadow:0px 5px 5px -5px;
		border-radius:0px 0px 10px 10px;
		top:65px;
		text-align:left;
		height:calc(100vh - (97px + 11vw))
	}
	#MobileSucheOpen_chk ~ #MobileSuche_DarkSearchLayer{
		position: absolute;
		width: 100%;
		height: 100vh;
		background-color:rgba(0, 0, 0, 0.3);
		left:0;
		top:100%;
		z-index:0;
		transition:300ms ease-in-out;
		pointer-events:none;
		opacity:0;
	}
	#SucheContainer:hover, #MobileSucheOpen:hover ~ #MobileSucheOpen,
	#MobileSucheOpen_chk:checked ~ #SucheContainer
	{opacity: 1; pointer-events: all;}
	#MobileSucheOpen_chk:checked ~ #MobileSuche_DarkSearchLayer{opacity:1; pointer-events:all;}
	#HeaderSuche{padding:0;}
	
	/*---------------------------Header Logos-------------------------------*/
	#MenueLogos{width: calc(100% - 100px)}
	#Menue + *{margin-top:14vw;}
}
@media screen and (max-width:768px){
	#MenueLogos{width: calc(100% - 150px); padding-left: 20px;}
	#HeaderMainMenu_kb_show_menu{right:20px;}
	#MobileSucheOpen{right:75px;}
	#logoContainer > a:first-child{padding-right:20px;}
	#logoContainer > a > img{
		object-fit: contain;
		max-height: 65px;
	}
	#SucheContainer > #ergebnisseSucheAjax{height:calc(100vh - 183px)}
	#Menue + *{margin-top:117px;}
}
@media screen and (max-width:444px){#Menue + *{margin-top:26vw;} #SucheContainer > #ergebnisseSucheAjax{height:calc(100vh - (84px + 22vw))}}
@media screen and (max-width:600px){
	#logoContainer > a:first-child{padding-right:10px;}
	#logoContainer > a:last-child{padding-left:20px;}
}
@media screen and (max-width:370px){
	#logoContainer > a:first-child{max-width:75% !important;}
	#logoContainer > a:last-child{display:none;}
}/* --- --- */#backtotopContainer {
	width: calc(100% - 54px);
	position: absolute;
	text-align: right;
	top: 0;
	left: 0;
}
#backtotop {
	display: none;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 37px solid rgba(82, 128, 166, 0.55);
	position: fixed;
	bottom: 14px;
	z-index: 900;
}/* --- --- */.ContentHeadline > h1{font-size:50px; font-family:"Ubuntu Bold", openSans, sans-serif; }
.ContentLangtext h1{font-size:34px;}
.ContentLangtext h2{font-size:27px;}
.NoHead .contentHeader{display: none;}
.bubble {
  	top: 50px;
  	right: 200px;
  	background-color: rgba(255,255,255,0.6);
  	border-radius: 100%;
  	transform: rotateZ(-25deg);
}
#ContentBannerPic {
	object-fit: cover;
	max-height: 700px;
}
@media screen and (max-width:1024px){
	.tm0-1024{margin-top:0;}
}/* --- --- */.HomeButton{
	width:35px;
	height:35px;
	background-image:url('../bilder/Header/home-button.svg');
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
}
#Menue{z-index:3 !important;}
#input-box,.leaflet-pane,.leaflet-bottom,.leaflet-control {z-index: 1!important}
@media screen and (min-width:1025px){#Menue{position: relative;}}/* --- --- */