* {
  margin: 0;
  padding: 0;
 /* font-family: 'Roboto', sans-serif;*/
  box-sizing: border-box;
}

/* hide the checkbox and the label */

input#responsive-nav,
label.responsive-nav-label {
  display: none;
}

/* declarations for the not-responsove-menu */

nav {
  float: left;
  width: 100%;
  background: #fefbec;
  opacity: .7; 
  filter:Alpha(Opacity=70);
  font-size: 16px;
  color: #333;
  position: relative;
  left: 487px;
  top: 40px;
  width: 528px;
  padding-left:10px;
  z-index:1100;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  color: #fff;
  text-decoration: none;
}

nav ul li {
  position: relative;
  float: left;
  list-style: none;
  color: #fff;
  transition: 0.5s;
}

nav ul li a {
  /*padding: 20px;*/
  padding: 3px 10px;
}

nav ul > li.submenu > a:after {
  position: relative;
  float: right;
  /*content: '';*/
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 5px solid transparent;
}

nav ul ul li.submenu > a:after {
  margin-left: auto;
  margin-right: -10px;
  border-left: 5px solid #fff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

nav ul li:hover {
  background: #fefbec;
}

nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: #fefbec;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul ul li {
  float: none;
 /* width: 200px; */
  width: 154px;
  border-bottom: 1px solid #555;
}

nav ul ul li a {
  /*padding: 10px 20px;*/
  padding: 3px 10px;
}

nav ul ul li:last-child {
  border-bottom: none;
}

nav ul li:hover > ul {
  top: 100%;
  left: 0;
}

nav ul ul li:hover > ul {
  top: 0;
  left: 200px;
}

/* Declarations for the responsive menu */

@media screen and (max-width: 768px) {
  
* {
  font-size: 18px;
}
  
label.responsive-nav-label {
  position: relative;
  display: block;
  padding: 20px;
  background: #3d2e2a; /* dunkelbraun */
  cursor: pointer;
  color: #fff;
  font-size: 19px;
}
  
label.responsive-nav-label span {
  margin-right: 10px;  
}

nav {
  position: absolute;
  top: -9999px;
  padding: 0px;
  padding-bottom:3px;
  opacity: 1; filter:Alpha(Opacity=100);
  background: #3d2e2a; /* Hintergrund Gesamtfläche */
}

nav {
  left: 0px;
  width: 100%;
  /*border: solid 1px yellow;*/
  padding-top:0px!important;
  
}

input#responsive-nav[type=checkbox]:checked ~ nav {
  position: relative;
  position: absolute;
 /* top: 0;*/
  top: 63px;
}

nav a:after {
  display: none;
}

nav li {
  float: none !important;
  width: 100% !important;
  border-bottom: none !important; 
}
  /*Hauptmenue*/
nav li a {
  margin-bottom: 0px !important;
   margin-top: 2px !important;
   padding: 6px 20px !important;  
  background: #4e372f;
  background: #4b3933;
  color: #fff!important;
}
  
nav ul li:hover {
  background: none;
}
  
  /* HOVER */
nav ul li a:hover {
  background: #514038;
}
  
nav ul ul {
  position: relative !important;
  width: 100%;
  left: 0 !important;
  top: 0 !important;
  background: none !important;
  box-shadow: none;
}
 

nav ul ul li {
  padding-left: 0px;
  background: #56483e!important;
}

/* LINK SUBMENUE*/
nav ul ul li a{
 background: #56483e!important;
}

/* HOVER */
nav ul ul li a:hover{
 background: #514038!important;
}


}