.SidebarMenuOpen { overflow:hidden;}

#SideNav {
	position: fixed;
	top: 0;
	right: -500px;
	width:500px;
	height: 100vh;
	background: #fff;
	overflow-y: scroll;
		-webkit-transition: all 0.3s;
	transition: all 0.3s;
		-webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
	z-index: 1010;
}
#SideNav.active {right: 0;}

#SideNav .Inner { padding:40px;}

#dismiss {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
	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;
}

#SideNav .TitleStyle .Bottom {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
}

#SideNav .SubTitle {
	font-size:16px;
	line-height:26px;
	font-weight:600;
	color:#171714;
	margin-bottom:5px;
}

#SideNav .radio {
	display:inline-block;
	margin-right:15px;
	margin-bottom:10px;
}

#SideNav .RadioRow { margin-bottom:10px;}

#SideNav .FormWrapper p { margin-bottom:30px;}


@media All and (max-width:760px) {
	#SideNav .Inner {padding: 20px;}
	
	#SideNav .TitleStyle .Bottom {
		font-size: 25px;
		line-height: 30px;
	}
}

@media All and (max-width:500px) {
	#SideNav {
		right: -100%;
		width:100%;
	}
}