

/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */

/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen menüs sowie auch allgemeine links im text bzw. eventuelle "weiter-Links"
sind in der datei "format.css" direkt beim jeweiligen abschnitt  definiert */
/* ############################################################ */


/* = = = = = = = = = = = = = = = = = MENÜ 1 = = = = = = = = = = = = = = = = = = = = = = = = = */


/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {height:100%;
z-index:1;
position:absolute;
bottom:0%;left:50%;
width :40rem;
margin-left:-20rem;
background:#F4F4F4;
background:rgba(255,255,255,.7);
padding: 0rem 0 1rem 0;
transition:all 2s;
}

#infofenster {height:100%;
z-index:1;text-align:left;
width :40rem;
position:absolute;
bottom:-120vh;
left:50%;
margin-left:-20rem;
background:rgba(255,255,255,.7);
padding:1rem 5rem;
transition:all 2s;
font-size:1.4rem;
}



#infofenster h4 {color:#528383;margin:0 0  1rem 0;font-weight:bold;font-size:1.5rem;
}


#menu1 ul {display:block;width:30rem;background:#A40000;background:rgba(255,255,255,.5);
text-align:center;text-align:left;
margin:0 auto;
padding:1rem ;
border-radius:1rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;text-align:left;
}

#menu1  a {display:inline-block;
text-align:center;text-align:left;
text-decoration : none;
font-size:1.5rem;
line-height:1.9rem;
letter-spacing:.2rem;
padding:.4rem 1rem ;
margin: 0;
color:#000;
text-transform:uppercase;
transition:padding-left .4s ;
}

#menu1 a:hover  {padding-left:2rem;
color:#000;text-decoration:none;
}

#menu1  #aktuell  a  {
color:#000;
}

/* die font-icons  im -menu */

#menu1 li a:before {display:inline-block;
font-family:'FontAwesome';
content:"\f138";
margin-right:1rem;
color:cadetblue ;
font-size:1.9rem;
}

#menu1 li  a:hover:before {
color:red;
}


#menu1  #aktuell   a:before {
display:inline-block;
font-family:'FontAwesome';
content:"\f138";
margin-right:1rem;
color:#4F4F4F ;
font-size:1.8rem;
}

/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */


/* menü/info-schalter  formatierung */
label.button-info {display:inline-block;vertical-align:middle;
z-index:2;
background:cadetblue;
box-shadow: 0 0 3px 0 rgba(255,255,255,0.6);
position:absolute;
padding:0 0rem;
bottom:0rem;left:50%;
margin-left:-2.4rem;
cursor:pointer;
height:2.2rem;
line-height:2rem;
width:4.8rem;
border-top-left-radius:16px;
}

label.button-info .fa {font-size:1.8rem;display:inline-block;
color:#fff;line-height:2.2rem;height:2.2rem;
}

/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu/info ein-aus-schalter */

input#info:checked ~ #menu1 {
bottom:-120vh;
}

input#info:checked ~ #infofenster {
bottom:0;
}

input#open:checked ~ #infofenster  {
bottom:-120vh;
}

input#open:checked ~ #menu1  {
bottom:0;
}




/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */