.hamburger {
    background: url(../img/shared/hamb.png) no-repeat 0 0/100% auto;
    position: fixed;
	width: 60px;
    height: 60px;
    top: 22px;
    right: 8px;
    cursor: pointer;
    margin: 0;
    z-index: 9999;
}
.hamburger.is-active{
	display: none !important;
}
.has_nav .hamburger{
	top: 10px;
}
@media screen and (min-width: 768px) {
    .hamburger {
        width: 82px;
        height: 82px;
        top: 20px;
        right: 18px;
        display: none;
    }
    .hamburger:hover{
        opacity: 0.8;
    }
    .has_nav .hamburger{
        top: 20px;
        display: block;
    }
}