/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
	background: url(../img/shared/humberger.png) no-repeat center 0/100%;
	width: 75px;
	height: 78px;
	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:before {
	content: 'MENU';
    position: absolute;
    left: 13px;
    right: 0;
    font-size: 9px;
    bottom: 25px;
    text-align: center;
    color: #fff;
    line-height: 1;

}
.hamburger.is-active:before {
	content: 'CLOSE';
}
.hamburger.is-active {

	opacity: 1;
	visibility: visible;
	background-color: transparent;
}

.hamburger-box {
	position: relative;
	display: inline-block;
	width: 35px;
	height: 24px
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -2px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 35px;
	height: 2px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform;

	background-color: #f9f9f9
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger--slider .hamburger-inner {
	top: 20px;
	left: 26px;
}

.hamburger--slider .hamburger-inner:before {

	top: 9px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform, opacity
}

.hamburger--slider .hamburger-inner:after {
	top: 17px
}

.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 1px, 0) rotate(45deg)
}

.hamburger--slider.is-active .hamburger-inner:before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0
}

.hamburger--slider.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-90deg)
}

.hamburger--slider-r .hamburger-inner {
	top: 2px
}

.hamburger--slider-r .hamburger-inner:before {
	top: 10px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform, opacity
}

.hamburger--slider-r .hamburger-inner:after {
	top: 20px
}

.hamburger--slider-r.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(-45deg)
}

.hamburger--slider-r.is-active .hamburger-inner:before {
	transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
	opacity: 0
}

.hamburger--slider-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(90deg);
	background-color: #fff;
}

.hamburger.is-active {}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #fff;
	width: 30px;
}

.is-active .hamburger-inner,
.is-active .hamburger-inner:after,
.is-active .hamburger-inner:before {}

.is-active .hamburger-inner {
	top: 24px;
    left: 29px;
}

.is-active .hamburger-inner:after {
	top: 11px;
}