
@media screen and (min-width: 767px) {
  div.newmobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
label.hamburg { 
   display: block;
   background: #595959;    /* Background oben #00AFE8; */
   width: auto;            /* 75px;  */ 
   height: 50px; 
   position: relative; 
   margin-left: auto;      /* auto; */  
   margin-right: 0px;      /* 0px; */ 
   border-radius: 0px;     /* 4px;  */
   /* background: url("../images/logo_trans_mobile.png") no-repeat right; */
}

input#hamburg {display:none}

.line { 
   position: absolute; 
   margin-top: 0px;       /* Neu   -2 Offset */
   right: 10px;            /* left: 10px; */
   height: 4px; 
   width: 45px;            /* 55px;  */ 
   background: #ffffff; 
   border-radius: 1px;
   display: block; 
   transition: 0.5s; 
   transform-origin: center; 
}

.line:nth-child(1) { top: 12px; }
.line:nth-child(2) { top: 24px; }
.line:nth-child(3) { top: 36px; }

#hamburg:checked + .hamburg .line:nth-child(1){
   transform: translateY(12px) rotate(-45deg);
}

#hamburg:checked + .hamburg .line:nth-child(2){
   opacity:0;
}

#hamburg:checked + .hamburg .line:nth-child(3){
   transform: translateY(-12px) rotate(45deg);
}

#hamburg:checked + .hamburg  + nav.topmenu { 
    max-height: 600px; 
}

nav.topmenu { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.5s;
	text-decoration: none;		
}

nav.topmenu ul {
	padding-left: 0;
}
				
nav.topmenu li {
	list-style: none;
}
				
nav.topmenu a {
	border-bottom: 1px solid #cccccc;
	display: block;
	padding: .5rem .75rem;
	text-decoration: none;
	color: #FF0000;
	font-size: 15px;
}
				
nav.topmenu a:hover, nav.topmenu a:focus {
	background-color: #FF0000;
	color: #ffffff;
	outline: none;
}

}