/* = = = = = = = = = = = = = = = = = Datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */

/* ############################################################ */
/* CSS Einstellung von Thomas - Letzte Änderung 14.04.2023 V1.1 */
/* ############################################################ */

/* ############################################################ */
/* 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 und wurden bearbeitet.
/* ############################################################ */

/* ############################################################ */
/* MENU FORMATIERUNG
/* ############################################################ */

#menu1 {display:table;

z-index:1;
width :5%;  /*Breite Handymenü */
POSITION:fixed;
top:0%;left:0%;
height:100vh;
margin-top:0rem;
margin-left:-120vw;
background:#274965;  /*Hintergrund Handymenü */
text-align: left !important;
color: #fff !important;
padding:  0;
text-align:center;
box-shadow: 0 0 3px black;
transition:all 1s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;

margin:0;
padding:0rem;
}

#menu1 li {list-style-type : none;display:block;
margin:0 2rem 0 0 ;
padding:0;
}

#menu1 li a {display:inline-block;
text-align:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.4rem 1rem ;
margin: 0;
font-size: large;
color:#fff;  /*Schriftfarbe Handymenü */
font-family:'Courier New', Courier, monospace;  /*Schriftart Handymenü */
text-shadow:none;
text-transform:uppercase;
}

#menu1 li a:hover {background:transparent;
color:#000;
}

#menu1  #aktuell  a  {
background:transparent;
color:#336084;font-weight:bold;
}

/* ############################################################ */
/* TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK
/* ############################################################ */
/* ############################################################ */
/* Menü-Öffnen-schalter  Formatierung
/* ############################################################ */

label.button-open .fas {display:inline-block;
text-align:center;
z-index:2;
POSITION:fixed;
top:.1rem;left:.1rem;
margin-left:0rem;
margin-top:0rem;
background:#4682B4;
color:#fff;
cursor:pointer;
height:3.6rem;
line-height:3.6rem;
width:3.6rem;
font-size:2.4rem;
border-radius: .4rem;
transition:all 1s;
}

/* ############################################################ */
/* Checkbox versteckt
/* ############################################################ */

input[type=checkbox]{
display: none;
}

/* ############################################################ */
/* Schaltet Menü EIN und AUS
/* ############################################################ */

input#open:checked ~ #menu1  {
margin-left:0;
}




/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */

/* ==================================== ab 600 Pixel ================================== */
@media (min-width: 600px) {

#menu1 {
width :50%;
}


}


/* ==================================== ab 1024 Pixel ================================== */
@media (min-width: 1024px) {

/* ############################################################ */
/* Menu-Schalter versteckt
/* ############################################################ */

label.button-open {display:none;
}


/* ############################################################ */
/* Menü sichtbar
/* ############################################################ */

#menu1 {position:static;
background:#264762;
height:0%;width:100%;
margin-top:0rem;
margin-left:0;
padding:.3rem;
box-shadow:none;
}

#menu1 ul  {
margin:0rem;
padding:1rem;text-align:center;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0 .5rem;
}

#menu1 li a {
text-decoration : none;
font-size:1.5rem;
height:2.8rem;
line-height:2.8rem;
letter-spacing:.2rem;
padding:.2rem 0.2rem ;
margin: 0;
color:#8AB3D7;
transition:all .2s ease-out;
}

#menu1 li a:hover {background:transparent;
color:#fff;
}

#menu1  #aktuell  a  {
background:transparent;
color:#fff;
}



}



/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */