/* hamburger-icon */
div.hamburger-position-right
{
	position:fixed;
	z-index:6000 !important;
	top:20px;
	right:20px;
	border-radius:50%;
	background-color:#FFF;
	opacity:0.4;
}
@media(min-width:1400px)
{
	div.hamburger-position-right
	{
		top:35px;
		right:100px;
	}	
	
}
div.container-hamburger
{
	display:flex;
	align-items:center;
	width:55px;
	height:55px;
}
label.hamburger 
{ 
   display: block !important;
   width: 32px; 
   height: 45px; 
   position: relative; 
   margin-left: auto; 
   margin-right: auto;
}
input#hamburger {display:none}

.line { 
   position: absolute; 
   left:0;
   height: 3px; width: 32px; 
   background: #000; border-radius: 2px;
   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; }

#hamburger:checked + .hamburger .line:nth-child(1){
   transform: translateY(12px) rotate(-45deg);
}

#hamburger:checked + .hamburger .line:nth-child(2){
   opacity:0;
}

#hamburger:checked + .hamburger .line:nth-child(3){
   transform: translateY(-12px) rotate(45deg);
}