.l-drawer {
    position: relative;
	z-index:999;
}
.l-drawer__checkbox {
    display: none;
}
.l-drawer__icon {
    cursor: pointer;
    display: block;
    width: 55px;
    height: 55px;
    position: fixed;
    top: 30px;
    left: 50%;
    background: #fff;
    border: 1px solid #0586C6;
    border-radius: 10px;
    margin-left: -730px;
}
.l-drawer__icon:before {
    font-family: "Font Awesome 5 Free";
    content: '\f0c9';
    font-weight: 900;
    font-size: 3.6rem;
    text-align: center;
    display: block;
    margin: 10px;
    color: #0586C6;
}

.l-drawer__overlay {
    background: transparent;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
}
.l-drawer__menu {
    color: #ffffff;
    max-width: 100%;
    width: 100%;
    height:auto;
	box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
	padding:0px 20px;
    position: fixed;
    top: -2000px;
    right: 0;
	height:100vh;
	overflow:scroll;
}
.l-drawer__icon {
    z-index:5;
}
.l-drawer__menu {
    z-index: 3;
}
.l-drawer__overlay {
    z-index: 2;
}

.l-drawer__checkbox:checked ~ .l-drawer__icon:before{
	content: '\f00d';
}
.l-drawer__checkbox:checked ~ .l-drawer__overlay {
    opacity: 0.3;
    pointer-events: auto;
}
.l-drawer__checkbox:checked ~ .l-drawer__menu {
    top: 135px;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
    -webkit-transition: all .7s;
    transition: all .7s;
}
@media screen and (max-width:1499px){
	.l-drawer__icon {
		top: 30px;
		left: 30px;
		margin-left:0px;
	}
}
@media screen and (max-width:1024px){
	.l-drawer__menu {
		padding:0px 0px;
	}
}
@media screen and (max-width:768px){
	
}
@media screen and (max-width:640px){
	.l-drawer__icon {
		width: 45px;
		height: 45px;
		top: 15px;
		left: 15px;
	}
	.l-drawer__icon:before{
		font-size: 3.2rem;
		margin: 6px;
	}
	.l-drawer__checkbox:checked ~ .l-drawer__menu {
		top:80px;
	}
	.l-drawer__menu {
		padding:0px 0px 60px;
	}
}