
.menuToggle {
	display: inline-block;
	position: relative;
	-webkit-user-select: none;
	user-select: none;
	background: transparent;
	border: transparent;
	cursor: pointer;
}
.menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;

	background: #cdcdcd;
	border-radius: 3px;

	z-index: 1;

	transform-origin: 4px 0px;

	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	opacity 0.55s ease;
}
.menuToggle span:first-child {
	transform-origin: 0% 0%;
}
.menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}
/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
.open .menuToggle span {
	opacity: 1;
	transform: rotate(45deg) translate(0, -20px);
	background: #fff;
}
/*
 * But let's hide the middle one.
 */
.open .menuToggle span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}
/*
 * Ohyeah and the last one should go the other direction
 */
.open .menuToggle span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, 20px);
}
