.drawer-wrap{
	float: right;
}
#drawer-content {
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	padding: 30px;
	z-index: 40;
	width: 40vw;
	min-width: 40vw;
	height: 100%;
	background: #fff;
	transition: all 0.3s ease-in-out 0s;
	transform: translateX(100%);
}
#drawer-checkbox:checked ~ #drawer-content {
	transform: translateX(0);
	box-shadow: 6px 0 24px rgba(0, 0, 0, 0.16);
}

#drawer-content a {
	color: #ed4f00;
	padding: 10px;
	margin-top: 20px;
	display: block;
	text-decoration: none;
}
#drawer-close {
	display: none;
	position: fixed;
	z-index: 39;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
	display: block;
	opacity: 0.3;
}
#drawer-checkbox {
	display: none;
}
#drawer-icon {
	position: relative;
	width: 50px;
	height: 50px;
	top: -25px;
	cursor: pointer;
	display: inline-block;
	z-index: 100;	
}
#drawer-icon span {
	background: #333;
	display: block;
	height: 1px;
	left: 50%;
	margin: -8% 0 0 -42%;
	position: absolute;
	top: 46%;
	transition: all 0.3s ease-in-out 0s;
	width: 84%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
	background: #333;
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	margin: -8% 0 0 -50%;
	position: absolute;
	top: 50%;
	transform: rotate(0);
	transition: all 0.3s ease-in-out;
	width: 100%;
}
#drawer-icon span::before {
	margin-top: -13px;
}
#drawer-icon span::after {
	margin-top: 10px;
}
#drawer-checkbox:checked ~ #drawer-icon span {
	background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	margin: -8% 0 0 -42%;
	position: absolute;
	top: 50%;
	width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
	-webkit-transform: rotate(-45deg);
	 transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
	-webkit-transform: rotate(45deg);
	 transform: rotate(45deg);
}