@charset "UTF-8";
.hamburger {
	position: absolute;
	height: 40px;
	width: 40px;
	right: 20px;
	top: 19px;
	cursor: pointer;
	z-index:99999;
}
.hamburger-txt {
	font-size: 14px;
	color: #222;
	position: absolute;
	top: 6px;
	left: -40px;
	display: inherit;
	line-height: 28px;
	transition: 0.6s ease;
	display:none;
}
.fixed .hamburger-txt {
	color: #fff;
}
.visibality {
	display:none;
}
.hamburger-streep {
	transition: 0.6s ease;
	transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
	margin-top: 10px;
	position: absolute;
}
.top-menu,
.mid-menu,
.bottom-menu {
	top: 2px;
	left:9px;
	width: 23px;
	height: 3px;
	border-radius: 4px;
	background-color: #222;
}
.mid-menu {
	top: 9px;
}
.bottom-menu {
	top: 16px;
}
.top-animate {
	top: 9px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #fff;
}
.mid-animate {
	opacity: 0;
}
.bottom-animate {
	top: 9px;
	-webkit-transform: rotate(-225deg);
	-moz-transform: rotate(-225deg);
	transform: rotate(-225deg);
	background-color: #fff;
}
.fixed {
	position:fixed;
}
@media only screen and (min-width: 1024px) {
	.hamburger {
		display:none;
	}
}
