/* Theme: EMTT Menu */
/* Version: 0.1.5 */
/* Source: richi */

/* icon */

#burger-icon {
	display: none;
	z-index: 999999;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

#burger-icon span {
	display: block;
	position: absolute;
	height: 8px;
	width: 100%;
	border-radius: 8px;
	opacity: 1;
	left: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

#burger-icon span:nth-child(1) {
	top: 0;
}

#burger-icon span:nth-child(2) {
	top: 16px;
}

#burger-icon span:nth-child(3) {
	top: 32px;
}

/* icon animation */

.burger-active #burger-icon span:nth-child(1) {
	top: 16px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.burger-active #burger-icon span:nth-child(2) {
	opacity: 0;
	left: -80px;
}

.burger-active #burger-icon span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

