


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



/* ############################################################ */
/* HAUPT-MENUE */
/* ############################################################ */

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

nav {margin:0;
padding:0;width:100vw;
}

#menu1 {display:table;
POSITION:absolute;
z-index:3;
top:0%;right:0%;
height:100vh;
width:100%;
margin-right:-200vh;
background:#333;
padding:0;
border-right:solid 8px palegreen;
opacity:0;
TRANSITION: all 2s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0;
padding:0;
box-shadow:-1px -30px 30px #7F7F7F;
}

#menu1 li {list-style-type : none;
display:block;
text-align:center;
padding:.3rem 2rem;
margin:0;
}


#menu1  a {display:inline-block;
text-align:left;
text-decoration : none;
font-size:1.5rem;
letter-spacing:0px;
padding:.1rem ;
margin: .1rem;
color:#fff;
font-weight:bold;
text-transform:uppercase;
width:100%;
}


#menu1 a:hover {color:#fff; }


/* icons  */

#menu1 .fas  ,
#menu1 .fab ,
#menu1 .far  {display:inline-block;
background:limegreen;
color:#333;
font-size:1.3rem;
text-align:center;
margin:0 auto;
margin:0 1rem 0 0;
padding:0;
text-shadow:0 1px 0 white;
width:2.4rem;
height:2.4rem;
line-height:2.4rem;
border-radius:100%;
box-shadow:0 0 0 1px limegreen,inset 0 0 0 2px springgreen;
}

/* icons hover */

#menu1 a:hover .fas  ,
#menu1 a:hover .fab ,
#menu1 a:hover .far  {
color:#333;
background:#F44336;
text-shadow:0 1px 0 gold;
}


/* - - - menü-oeffnen-schalter  formatierung - - - */

/* menü-öffnen-schalter  formatierung */
nav label.button-open  {display:inline-block;
position: absolute;
top:0rem;left:0rem;
z-index:20;
text-align:center;
margin:0;
padding:0rem;
background:#333;
cursor:pointer;
color:#EE1E0D;
font-size:3rem;
width:4rem;
height:4rem;
line-height:4rem;
}


/* - - - menü-schließen-schalter  formatierung - - - */

nav label.button-close  {display:inline-block;
position: absolute;
top:1rem;right:2rem;
margin-right:-200vw;
z-index:4;
cursor:pointer;
background:transparent;
text-align:center;
vertical-align:middle;
color:white;
font-size:3rem;
width:4rem;
height:4rem;
line-height:4rem;
TRANSITION:margin-right 3s;
}


/* - - - hover bei den menü-schaltern - - - */

nav label.button-open:hover {
color:#fff;
}

nav label.button-close:hover {
color:#EE1E0D;
}


/* - - - toggle-funktion - - - */

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

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:0;
TRANSITION:all 1s ease-out;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
margin:0;
TRANSITION:margin 2s ease-out;
}

input#open-menue:checked ~ #menu1  {
display:table;
opacity:1;
margin:0;
TRANSITION:all 1s ease-out;
}

/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */

/* ==================================== ab 480 pixel ================================== */

@media (min-width: 480px) {

#menu1  { display:table;
width:32rem;
box-shadow:0 0 3px black;
POSITION:fixed;
}

nav label.button-close  {position: fixed; }
}


/* ==================================== ab 768 pixel ================================== */

@media (min-width: 768px) {

#menu1  { width:50vw; }

/* icons  */

#menu1 .fas  ,
#menu1 .fab ,
#menu1 .far  {
font-size:1.8rem;
width:4rem;
height:4rem;
line-height:4rem;
box-shadow:0 0 0 3px limegreen,inset 0 0 0 4px springgreen;
}

}


/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

nav {
width:auto;
}

/* menu-schalter versteckt */
nav label.button-open ,
nav label.button-close {display:none;
}

/* menu sichtbar */
#menu1 {opacity:1;
width:30rem;
top:0;left:0;
margin:0;
padding:0rem;
box-shadow:-1px -1px 50px #8F8F8F;
}


}




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