

 .hamburger {
	background: url(../img/shared/hamb.jpg) no-repeat center 0/100%;
	width: 60px;
	height: 60px;
	color: #fff;
	font: inherit;
	display: inline-block;
	overflow: visible;
	margin: 0;
	cursor: pointer;
	transition-timing-function: linear;
	transition-duration: .15s;
	transition-property: opacity, filter;
	text-transform: none;
	color: inherit;
	border: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}
.hamburger.is-active {
	opacity: 1;
	visibility: visible;
	background: url(../img/shared/hamb_on.png) no-repeat center 0/100%;
	top: 20px;
	right: 10px;
	width: 45px;
	height: 45px;
}
@media screen and (min-width: 768px) {
	.hamburger{
		width: 89px;
		height: 88px;
		display: none;
	}
	.hamburger:hover{
		opacity: 0.7;
	}
	.has_nav .hamburger{
		display: block;
	}
	.hamburger.is-active{
		top: 32px;
		right: 77px;
		width: 60px;
		height: 60px;
	}
}