.SidebarMenuOpen { overflow:hidden;}

#SideNav, #SideNav_2, #SideNav_3 {
	position: fixed;
	top: 0;
	right: -100%;
	width:100%;
	height: 100vh;
	background: #fff;
	overflow-y: scroll;
		-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 111;
}

#SideNav.active, #SideNav_2.active, #SideNav_3.active {right: 0;}

#SideNav .Inner, #SideNav_2 .Inner, #SideNav_3 .Inner { padding:130px 0 0 0;}

#dismiss {
    width: 40px;
    height: 40px;
    line-height: 50px;
    text-align: center;
    background: transparent;
    position: absolute;
    top: 80px;
    right: 10px;
	padding:10px;
    cursor: pointer;
    	-webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.NavOverlay {
    display: none;
    position: fixed;
	top:0;
	left:0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    z-index: 1005;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.NavOverlay.active {
    display: block;
    opacity: 1;
}

@media All and (max-width:576px) {
	#SideNav .Inner, #SideNav_2 .Inner, #SideNav_3 .Inner { padding:120px 0 0 0;}
}