@media only screen and (min-width:801px) and (max-width: 1990px) {
#BOX { display: none; visibility: hidden; }
}



#BOX {
	width: 40px;
	height: 40px;
	margin: 0 auto;
	/*margin-top: 50px;
	padding-top: 110px;*/
	position: absolute;
	top: 45px;
	right: 8px;
	cursor: pointer;
	border-radius: 5px;
	z-index: 4;
}
span.AAA, span.BBB, span.CCC {
	display: block;
	width: 40px;
	height: 7px;
	margin: 0 auto;
	background-color: #5ebe5e;
	margin-bottom: 6px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: rotate(0deg) translate3d(0px, 0px, 0px);
	transform: rotate(0deg) translate3d(0px, 0px, 0px);
}



#BOX.active span.AAA {
	-webkit-transform: rotate(405deg) translate3d(12px, 7px, 0px);
	transform: rotate(405deg) translate3d(12px, 7px, 0px);
}
#BOX.active span.BBB {
	width: 100px;
	opacity: 0;
}
#BOX.active span.CCC {
	-webkit-transform: rotate(-405deg) translate3d(12px, -7px, 0px);
	transform: rotate(-405deg) translate3d(12px, -7px, 0px);
}

@media only screen and (max-width: 599px){

#BOX {	top: 35px; }

}

@media only screen and (max-width: 400px){

#BOX {	top: 28px; }

}

@media only screen and (max-width: 320px){

#BOX {	top: 20px; }

}