html, body { height: 100%; }
body { overflow-x: hidden; }

#nav-toggle { position: fixed; top: 0; left: 0; margin: 0; display: none; }

#navid * {
    box-sizing: border-box;
}
#navid {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 999;

    -webkit-transform: translateX(0);
    transform: translateX(0);

    -webkit-transition: transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
    transition: transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
    will-change: transform;
}
#navid #toggle {
    z-index: 999;
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 48px;
    padding: 0 12px;
    text-align: left;
    line-height: 48px;
    cursor: pointer;
    font-size: 20px;

    -webkit-transition: right 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
    transition: right 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
    will-change: transform;
}

.mobilize-container {
	height: 100%;
	overflow: auto;
    pointer-events: auto;
    padding: 0 0 48px 0;
}

.mobilize-container > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#navid ul li {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0;
    list-style: none;
}
#navid ul li a {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
    text-align: left;
}
#navid ul ul li a {}
#navid ul li a:hover { background-color: rgba(0, 0, 0, 0.15); }

#navid ul ul {
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0;
}
#navid ul ul.sub-menu {
    padding: 0;
}
#navid ul ul.sub-menu li a {
    padding: 12px 16px 12px 32px;
}


#nav-toggle:checked ~ #navid {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    will-change: transform;
}
#nav-toggle:checked ~ #navid #toggle {
    right: 0;
}

#navid ::-webkit-scrollbar {
    width: 8px;
}
#navid ::-webkit-scrollbar-track {
    background-color: #333333;
}
#navid ::-webkit-scrollbar-thumb {
    background-color: #666666;
}
#navid ::-webkit-scrollbar-thumb:window-inactive {
	background-color: #444444;
}

.navopen {
    left: 0 !important;
}
.navopen ul {
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.25);
}

.mobilize-menu-logo,
.custom-logo-link {
    line-height: 32px;
    font-size: 24px;
    margin: 0;
    display: block;
    padding: 12px 16px;
    font-weight: 700;
}
.mobilize-widget {
    padding: 12px 16px;
}
.mobilize-spacer-48 {
    margin: 48px 0 0 0;
}
