

/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */



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

#nav {margin:0;color:#fff;
padding:0;overflow:hidden;
}

#menu1 {display:table;
position:fixed;
z-index:1;
top:0%;right:0%;
height:100vh;
width:100%;
margin-right:-200vw;
padding:0;
background:transparent;
transition: 5s ease-out;
}

#menu1 ul {display:table-cell;
background:#222E33;/* IE9*/
background:linear-gradient(to right,#3D4F58, #13181C);
vertical-align:middle;
text-align:center;
margin:0;
padding:0rem;

}

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

#menu1 li a {display:inline-block;
text-align:left;
text-decoration : none;
font-size:1.5rem;
letter-spacing:0px;
padding:.6rem 1rem ;
margin: 0px;
color:#D9E1E6;
background: #496470;
border: 1px solid #B5CDE6;
border-radius:4px;
text-shadow:none;
text-transform:uppercase;
width:100%;
}


/* hover und aktuell angezeigter link */

#menu1 li a:hover {color:#28353E;
background:#88A2AE;
}

#menu1 #aktuell a {
color:#fff;
background:#DF0000;
}


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

#nav label.button-open  {display:inline-block;
position: fixed;
top:1rem;right:1rem;
z-index:2;
text-align:center;
margin:0;
padding:0rem;
background:transparent;
cursor:pointer;
color:#FF0000;text-shadow:1px 1px 1px #BF0000;
font-size:3rem;
width:4rem;
height:4rem;
line-height:4rem;
transition:top 2s ease-out, transform .6s ease-out;
}


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

#nav label.button-close  {display:inline-block;
position: fixed;
top:1rem;right:1rem;
margin-right:-100vw;
z-index:2;
cursor:pointer;
background:transparent;
text-align:center;
color:white;
font-size:3rem;
width:4rem;
height:4rem;
line-height:4rem;
transition:all 1s ease-out;
}


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

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

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

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
top:-5rem;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-right: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 li {  width:30rem; }

}


/* ==================================== ab 580 pixel ================================== */

@media (min-width: 580px) {

#menu1  { width:65vw;}

}

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

@media (min-width: 768px) {

#menu1  { width:50vw;}

}


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

#menu1  { width:34rem }

}


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

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

#menu1 {position:absolute;
height:0%;width:100%;
top:0rem;left:0%;
background:transparent;
margin-top:0rem;
margin-left:0;
padding: 5rem 0 0rem 0;
border:none;
}

#menu1 ul  {text-align:center;
background:transparent;
margin:0;
padding:0;
}

#menu1 li  {display:inline-block;
background: #29687A; /*IE9*/
background: linear-gradient(to bottom, #0C0C12,#3A3A58 ,#0C0C12 );
border:solid 2px white;
margin:0 -.5rem;
padding: 3.6rem  1rem ;
transform:skewY(-25deg);width:auto;
}


#menu1 li:hover  {background: linear-gradient(to bottom, darkorange,darkred );
background: #378C88; /*IE9*/
background: linear-gradient(to bottom, #BAE4E2,#378C88 );
cursor:pointer;
}

#menu1 li a  {color:white;
display:inline-block;
padding: 0 0rem;
background:transparent;
box-shadow:none;
border:0
}

#menu1 li a:hover  {color:white;
background:transparent;
}

#menu1 #aktuell   {display:inline-block;color:white;
background: #FFB900 ; /*IE9*/
background: linear-gradient(to  left, #FFD25E,#FFB900 ,#FFD25E );
}

#menu1  #aktuell a {background:transparent;
}


}