@charset "utf-8";

#hamburger,#hamburger span.hbg {
	background-color:#e60012;
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
#hamburger {
	position: relative;
	width: 60px;
	height: 60px;
}
#hamburger span.hbg {
	position: absolute;
	left: 9px;
	width: 70%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
}
#hamburger span.hbm {
	position: absolute;
	bottom: 4px;
	left:0;
	width: 100%;
	color:#fff;
	text-align:center;
	font-size:12px;
	line-height:1;
}
#hamburger span.hbg:nth-of-type(1) {
	top: 10px;
}
#hamburger span.hbg:nth-of-type(2) {
	top: 20px;
}
#hamburger span.hbg:nth-of-type(3) {
	top: 30px;
}
#hamburger.active span.hbg:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
	top: 15px;
}
#hamburger.active span.hbg:nth-of-type(2) {
	opacity: 0;
}
#hamburger.active span.hbg:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
	top: 35px;
}
#hamburger.active span.hbm{
	opacity: 0;
}