/*! responsive-nav.js 1.0.39 by @viljamis 
für FH-Eichenberg */

.nav-collapse ul {
 /*  margin: 0;
  padding: 0;
  display: block; */
}

.nav-collapse li {
  width: 100%;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  /*display: block;  */
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.nav-toggle { /*Formatierung für - Nav.Button*/
	/* eigene Formatierung */
	background:#8C8160;/* */
	color:black;
	letter-spacing:0.10em;
	font-size:1.8em;
	text-decoration:none;
	margin-left:0.7em;
	padding:0.2em 0.9em;
	-webkit-box-shadow: 0px 0px 17px 9px rgba(0,0,0,0.65);
	-moz-box-shadow: 0px 0px 17px 9px rgba(0,0,0,0.65);
	box-shadow: 0px 0px 17px 9px rgba(0,0,0,0.65);
	border-radius:6px;

	/* ####...wichtig ### */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


@media screen and (min-width: 600px) {/* ursprgl.=>  min-width: 40em */
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}
