@charset "UTF-8";
/* CSS Document */


.line1 { 
   position: absolute; 
   left:10px;
   height: 4px; 
	width: 40px; 
   background: #fff;
	border-radius: 2px;
   display: block; 
   transition: 0s; 
   transform-origin: center; 
}


.line1:nth-child(1) { top: 14px; transform: translateY(13px) rotate(-45deg); }
.line1:nth-child(2) { top: 27px; opacity:0; }
.line1:nth-child(3) { top: 40px; transform: translateY(-13px) rotate(45deg); }

#hamburg1:checked + .hamburg1 .line1:nth-child(1){
   transform: translateY(0px) rotate(0deg);
	background: #fff;
}

#hamburg1:checked + .hamburg1 .line1:nth-child(2){
   opacity:1;
	background: #fff;
}

#hamburg1:checked + .hamburg1 .line1:nth-child(3){
   transform: translateY(0px) rotate(0deg);
	background: #fff;
}

	
/*------------- HAMBURGER END------------------------*/


/*------------- MENUE ------------------------*/	
	

	

#menue {
	 opacity: .99;
  right:0;
	width: 100%;
	z-index: 99;
	transition: all .55s ease;
}
	
	#menue ul{
	margin-top:20px;
}

#menue.show {

	
		right:-1800px;
  width: 100%;
  opacity: 0;
  transition: all .55s ease;
	overflow: hidden;
}



	
	
/*------------- MENUE END ------------------------*/





