@charset "utf-8";
:root {
	--content-width: 1080px; 
}
body {
	margin: 0;
	padding:0;
	
	 font-family:Tahoma, Geneva, sans-serif;
	 /* clamp(MIN, VAL, MAX) */
	font-size: clamp(1.5rem, 4vw + 1rem, 3rem);
	background-color: silver;	
	background-image: linear-gradient(to right, silver 10%,gray 100%);		
	
	/* bei Verwendung eines Hintergrundbildes */
	/* background-image: url("/img/IMG_7560.jpg"); */
	/* background-repeat: no-repeat; /* Do not repeat the image */
  /*
	background-size: cover; /* Resize the background image to cover the entire container */	
	
	
	/* Dieser Teil verhindert, das eine Border oder ein Padding, die Box vergrößert. */
    -webkit-box-sizing: border-box;
    -moz-box-sizing:     border-box;
    box-sizing:          border-box;
}
   
.wrapper {
	display: flex; 
  width:		100%;
}

/* ###  Spalte Links, Rechts  #################################################### */
.left {
	visibility: visible;
}
.right {
	visibility: visible;
}
.left, .right{
	height: 100vh;
	width: calc((100% - 1080px) * 0.5);
}	
/* ###  mittlere Spalte mit Menü-Butten  ############################################### */	
.menu {
	display:flex; 
	width: 100%; 
	height: 25px;

  /* border:1px solid #5ce272; */
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed; 
	/* position: relative;*/
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 150px;
  height: 100%;
  margin: 0;
  /*padding: 10px 0;*/
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;

	z-index: 2;
}
.menu__item {
  display: block;
  padding: 5px 12px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #219fd4;
}

/* ###  mittlere Spalte mit dem Titel/der Überschrift  ################################# */	
header {
	position: absolute;
	width: var(--content-width);/* Breite der Box (Verwendung einer Variable */
	height: 60px;				/* Höhe der Box */
	top: 25px;					/* Abstand zum oberen Bildschirmrand */

	color: #005bb5;	/* Text Grundfarbe */
	text-align: center;/* Text Ausrichtung -mittig- */
	text-shadow: 0 0px 1px #0080FF, 0 2px 1px #242424;/* Text  Schatten */
}
.title {
		position: absolute;
		width: 100%;
		top: 0px;	
	/*
	width: calc(100vw - 1080) * 0.5; 
	margin: 0 auto;
  display: flex;
  justify-content:center; 
  text-align: center;/* Text Ausrichtung -mittig- */
}

/* ###  mittlere Spalte mit Inhalt  #################################################### */			
.content { 
	display:flex;
	flex-wrap: wrap;
/* justify-content: center; /* Horizontal */
  /*align-items: center;     /* Vertikal */
  /*height: 100vh;           /* Optional: volle Höhe */
  
  	width:		var(--content-width);	/* 1080px*/
}  
.content, .background {
  /* display: block; */
  /* background-image: url("/img/IMG_7560.jpg");
  background-position: center center;
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */	


}
/* ###  Inhalt  #################################################### */	
.first_content, .second_content, .third_content, .fourth_content {
	margin-top: 20px;
	margin-left:20px;
	
	width:200px;
	height:200px;
	border: 1px solid #fff;
	border-radius:10px;

  display: flex; /* Macht den Container zum Flex-Container */
  justify-content: center; /* Zentriert horizontal */
 /*align-items: center; /* Zentriert vertikal */

  font-family: Rancho; /*Tangerine; /*fantasy;*/
  opacity: 0.5;
}	
.first_content {
  background-color: #f3f3f3;  
}
.second_content {
  background-color: #d3d3d3;
}
.third_content {
	background-color: #858585;
}	
.fourth_content {
	background-color: #343434;
}	
.first_content:hover, .second_content:hover, .third_content:hover, .fourth_content:hover {
	text-decoration: underline;
	text-decoration-color: #005bb5;
	/*background-color: #858585;	*/
}		
div>a {
	text-decoration: none;
	color: #fff;	
}
/*
.first_content>a:hover, .second_content>a:hover, .third_content>a:hover, .fourth_content>a:hover {
	color: #f00;	
}
.first_content>a::after, .second_content>a::after, .third_content>a::after, .fourth_content>a::after {
	font-weight: bold;
}
*/

.description{	
	display: block; /* Beendet Flexbox */
	/*width: 80%; 
	border: 1px solid #000; */
	width: 100vw;
	height: auto; /* auto */
	

	align-items: center;     /* Vertikal */
	
	opacity: 0.5;	
	
	border-radius: 5px 10px 10px 5px;
	background-color: #a88a8a; 
	margin-top:20px;
	margin-left:20px; 
	/*text-align:center; Text wird horizontal zentriert */
	padding:5px;
 
	position: relative; 
	z-index: 3;	
}

.menu_right {
  position: relative; /* Wichtig, falls innere Elemente absolut positioniert werden */
	margin-left: auto; 
	margin-right: 10vw;
	/*margin-right: min(10px);
	margin-right: calc(100% - 50px) ;*/
}
.login {
	font-size: 0.5em;        /* Größe des Alt-Textes */
	display:block;
}

.checklist {
	margin-top: 20px;
	margin-left:10px;
	/*margin-right: 100vw;*/

	width:100%;
	/*width: calc(100vw - 1080) * 0.5;
	height: calc(100% - 300px);*/
	height: calc(100% - 70px);
	border: 1px solid #fff;
	border-radius:10px;

  font-family: sans-serif; /* Schriftart anpassen */
  font-size: 12px;        /* Größe des Alt-Textes */
  color: #555;            /* Farbe des Alt-Textes */
  font-style: italic;     /* Kursiv setzen */
  display: block;         /* Hilft bei der Darstellung */
}
footer{
	position: absolute;
	bottom: 0px;
	height: 40px;
	font-size: 15px;
	font-family: Tahoma, Geneva, sans-serif;
	width: 100%;	
	/*height: 25px; */

	background-image: linear-gradient(to right, silver 10%,gray 100%);	
	z-index:1;
}
.footer{
	width: 350px; 
	margin: 0 auto;
  display: flex;
  justify-content:center; 
  text-align: center;
}	
.foot{
	position:relative;
	top:50%;
	top: calc(50% - 0.5em);	/* Schrifthöhe abziehen */
	float:left;
}
.foot_left, .foot_middle, .foot_right{
	margin-left:20px;
	width: calc(33.33% - 20px);	
	vertical-align:middle;
}

a.allowcookie_button {
	background-color: #00a000;
	color: #ffffff;
	padding: 16px 64px;
}
a.allowcookie_button:hover {
	background: #77aadd;
	color: #ffffff;
	text-decoration: none;
}

.cookiebanner {
	/* font-size: clamp(1.5rem, 4vw + 1rem, 3rem); */
	position: absolute;
	top:50px;
	margin-left: calc(50% - 550px);
	font-size: 18px;

	z-index:10;		
}

.infobanner {
	position: absolute;
	top:25px; 
	vertical-align:middle;
	margin-left: calc(50% - 180px);
	color: #028030;
	font-size: 18px;

	z-index:8;		
}
.alertbanner {
	position: absolute;
	top:80px;
	margin-left: calc(50% - 300px);
	color: #800202;
	font-size: 18px;

	z-index:100;		
}
.submit_good {
  /*border: 1px solid #60c489; */
  border-radius: 4px; 
  background-color: #60c489; 
  color: #444;
}
.submit_reset {
  border-radius: 4px; 
  background-color: #bbee2f; 
  color: #535151;
}
.submit_error {
  border-radius: 4px; 
  background-color: #ee2f2f; 
  color: #313131;
}  
.submit_good:hover {
  /*text-decoration: underline; /* Unterstreicht den Text beim Hover */
  /*border-color: #005bb5; /* Ändert die Rahmenfarbe beim Hover */
  /*box-shadow: 0 0 5px rgba(0, 91, 181, 0.5); /* Fügt einen leichten Schatten hinzu */

  background-color: #006329; /* Ändert die Hintergrundfarbe beim Hover */
  color: #969494; /* Ändert die Textfarbe beim Hover */
}
.submit_reset:hover {
	background-color: #a1b304; 
	color: #535151;
}
.submit_error:hover {
  background-color: #800202; /* Ändert die Hintergrundfarbe beim Hover */
  color: #969494; /* Ändert die Textfarbe beim Hover */
}  
.login {
	position: absolute;
	/*	width: calc((100% - 1080px) * 0.5);	// Breite des Randes */
	left: calc(((100% - 1080px) * 0.5) +50px);	
  display: inline-block; /* Blendet die Elemente mit der Klasse "hide" aus */
}
.login_input {
	position: absolute;
	/*	width: calc((100% - 1080px) * 0.5);	// Breite des Randes */
	left: calc(((100% - 1080px) * 0.5) + 250px);
	/* left: 200px; */
}
.login_input:hover {
	background-color: #c4c2c2; /* Ändert die Hintergrundfarbe beim Hover */
	color: #363636; /* Ändert die Textfarbe beim Hover */
}
.login_input:focus {
	background-color: #c4c2c2; /* Ändert die Hintergrundfarbe beim Hover */
	color: #881313; /* Ändert die Textfarbe beim Hover */
}
input:placeholder-shown {
  display: inline-block; /* Blendet die Elemente mit der Klasse "hide" aus */
  background-color: rgb(124, 124, 122);
  color: rgb(124, 124, 122);
}
@media only screen and (min-width: 1080px){
  body {
    /* background-image: url("/img/IMG_7560.jpg"); */    
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */	
  }
  .content, .background {
    /*display: none;*/
    background-image:none;
  }
	.description{
		width: 900px;
	}
	.menu_right {
		margin-left: auto; 
		margin-right: 10px;
	}
}

@media only screen and (max-width: 1080px){
	/*
 	.title {
		display:none;
	}
		*/

	.description{
		/*width:90%;*/
		width:calc(100vw - 1080px) - 90vw;
	}
	.content {
		padding: 20px;
	}
	.third_content,.fourth_content {
			background-color: #fff;
	}
}

@media only screen and (min-width: 1024px){
  .menu_mobile {
    display: none; /* Zeigt die Buttons untereinander an */
  } 
}  
 
@media only screen and (max-width: 1024px){
  .login {
    display: none; /* Blendet die Elemente mit der Klasse "hide" aus */
  }
	header {
	position: absolute;
	width: 100%;/* Breite der Box (Verwendung einer Variable */
	}
	.title {
		position: absolute;
		width: 100%;
		top: 0px;	
	}
button {
		border: none; /* Entfernt den Standardrahmen */
		background-color: none; /* Entfernt die Standardhintergrundfarbe */
		font-family: 'Roboto', sans-serif;
		font-size: 20px;
		font-weight: 600;
	}
	.login_input {
		left: 25px;
		/* margin-left: 0;*/
	}
  input:placeholder-shown {
    color: rgb(204, 204, 199);
  }
  .menu_left, .menu_right {
    display: none; /* Ändert die Anzeige auf Block, um die Buttons untereinander anzuzeigen */
  }	
}
@media only screen and (max-width: 500px){
	.first_content {
		/*background-image: url("/img/urlaub.jpg");*/
		background-repeat: no-repeat; /* Do not repeat the image */
		background-size: cover; /* Resize the background image to cover the entire container */
	}
}

@media (orientation: portrait) {
  /*
  body {  
    background-position: center; 
  }
    */
}

@media only print {
	.no-print { display: none; } /* Klasse zum Ausblenden */
	footer{
		display:none;	
	}

}	