
/* = = = = = = = = = = = = = = = = = 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 (z.b. Logo, Info, Inhalt, Fuss o.ä.) definiert */
/* ############################################################ */

/* = = = = = = = = = = = = = = = = = = = = = =  */
/* Ribbon mit Dreieck */
/* Liegt ganz oben rechts, hinter dem Menü-Button  */
/* = = = = = = = = = = = = = = = = = = = = = =  */

#ribbon-triangle-wrapper {
position: absolute;top:0;right:0;z-index:4;
}

#ribbon-triangle {
background: #4986C2;
display: inline-block;
height: 5rem;top:0;left:0;
margin-left: 0px;
margin-top: 0px;
position: relative;
width: 4rem;
}

#ribbon-triangle:before {
border-top: 2rem solid #4986C2;
border-left: 2rem solid transparent;
border-right: 2rem solid transparent;
content: "";
height: 0;
left: 0;
position: absolute;
bottom: -1.9rem;
width: 0;
}

/* = = = = = = = = = = = = = = = = = = = = = =  */
/* MENÜ FORAMTIERUNG                            */
/* = = = = = = = = = = = = = = = = = = = = = =  */

#nav {margin:0;height:0;
padding:0;
}

#menu1 {display:table;
position:absolute;z-index:3;
top:0;right:0;
height:100vh;
width:100%;
margin-top:-200%;
padding:0;
background:transparent;
transition:all 2s ease-out;
background:#fff;/* IE9 */
xbackground:radial-gradient(circle,  #4FC6F2 ,#0E86B4);
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0 auto;
padding:0rem 1rem;
}

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

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.7rem;
letter-spacing:3px;
padding:.4rem .8rem ;
margin: 0 -2px;
background:transparent;
color:#01499A;
font-weight:normal;
text-transform:uppercase;
}

#menu1 li a:hover {background:transparent;
color:#01499A;text-decoration:underline;
}

#menu1 #aktuell a {background:#4986C2;
color:white;
}


/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
#nav label.button-open {display:inline-block;
text-align:center;
position:absolute;
top:0rem; right:0rem;
z-index:4;
margin:0;
padding:0rem;
background:transparent;
color:white;font-size:2rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;box-shadow:none;
}


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

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-top:0;
transition:all 1.5s ease-out;
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:1;
}



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


/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

/* menü-öffnen-schalter  ausblenden */
#nav label.button-open {display:none; }

/* ribbon-dreieck hinter menü-öffnen-schalter  ausblenden */
#ribbon-triangle-wrapper {display:none; }

#menu1  {height:0;
top:auto;right:auto;/* für IE 9-11 */
margin:0;padding: 3rem 0;
background:transparent;
}

#menu1 ul {vertical-align:top; }

#menu1 li {display:inline-block; }

#menu1 li a {font-size:1.3rem;letter-spacing:0px;
color:white;
font-weight:bold;
background:rgba(44,85,144,.7);
padding:.5rem 1rem;
border-bottom:solid 4px transparent;
}

#menu1 li a:hover {background:rgba(44,85,144,.7);color:gold;border-bottom:solid 4px gold;text-decoration:none; }

#menu1 #aktuell a {background:gold;color:black; border-bottom:solid 4px white;}

}