.openHamburger{
	border: none;
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 15px 0 0 15px;
	background-color: rgba(255, 255, 255, 0);
	outline: none;
}
.openHamburger span {
	display: block;
	position: absolute;
	top: 14px;
	left: 6px;
	right: 9px;
	height: 2px;
	width: 16px;
	background: #000;
}
.openHamburger span::before, .openHamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 16px;
	height: 2px;
	background-color: #000;
	content: "";
}
.openHamburger span::before {
	top: -5px;
}
.openHamburger span::after {
	bottom: -5px;
}
