/*
================================================
 MOBILE MENU TOGGLE
================================================
*/

.mobile-menu-toggle {
    background: none;
    border: 0;
    padding: 15px;
    font-size: 25px;
    color: #000;
    margin-top: 10px;
    background-color: #ffffff;
}

.mobile-menu-toggle:hover{
	background-color: #00C7B7;
}

/*
================================================
 MAIN MOBILE MENU OVERLAY
================================================
*/

.mobile-menu-overlay {
    position:fixed;
    top:80px;
    left:0;
    width:100vw;
    height:100vh;
    background:#1E2023;
    z-index:99999;
    overflow:hidden;
    transform:translateX(100%);
    transition:transform .35s ease;
}

.mobile-menu-overlay.open {
    transform:translateX(0);
}

/*
================================================
 MENU CONTAINER
================================================
*/

.mobile-menu-container {
    position:relative;
    width:100vw;
    height:100vh;
    overflow:hidden;
}

#site-navigation ul.mobile-menu-panel{
	width: 90%;
	left: 5%;
	top: 2%;
}

#site-navigation .submenu-body ul.mobile-menu-panel{
	width: 100%;
	left: 0%;
}

/*
================================================
 SEARCH HEADER
================================================
*/

.mobile-menu-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 5px 30px;
    box-sizing: border-box;
    background: #1E2023;
    z-index: 10;
    margin: 20px 0 20px;
    border: 1px solid;
}

.mobile-menu-search input {
    width:100%;
    height:45px;
    padding: 0 15px 0 50px;
    box-sizing:border-box;
    background:transparent;
    border:0px solid rgba(255,255,255,.3);
    color:#fff;
    font-size:16px;
}

.mobile-menu-search input::placeholder {
    color:#aaa;
}

button.searchsubmit {
    background: transparent;
    position: absolute;
    left: 0;
    top: 15%;
}

form.searchform {
    position: relative;
}

input[type="search"]:focus, input[type="search"]:focus-visible{
	border: 0px solid transparent;
	outline: none;
}

/*
================================================
 MAIN MENU AREA
================================================
*/

.mobile-menu-content {
    position:absolute;
    top:80px;
    left:0;
    width:100vw;
    height:calc(100vh - 80px);
    overflow:hidden;
}

/*
================================================
 MAIN MENU PANEL
================================================
*/

.mobile-menu-panel {
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    min-height:100%;
    margin:0;
    padding:0 30px 50px;
    box-sizing:border-box;
    background:#202020;
    list-style:none;
    overflow-y:auto;
}

.mobile-menu-panel li {
    list-style:none;
}

.mobile-menu-link {
    display:flex;
	align-items:center;
    justify-content:space-between;
    width:100%;
    padding:20px 0;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
/*     border-bottom:0px solid rgba(255,255,255,.12); */
}

.menu-arrow {
    font-size:24px;
    line-height:1;
}

/*
================================================
 FULL SCREEN CHILD PANELS
================================================
*/

.submenu-wrapper {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:#202020;
    z-index:100;
    overflow:hidden;
    transform:translateX(100%);
    transition:transform .35s ease;
}

.submenu-wrapper.active {
    transform:translateX(0);
}

/*
================================================
 FIXED BACK HEADER
================================================
*/

.submenu-header {
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:80px;
    display:flex;
    align-items:center;
    padding:0 30px;
    box-sizing:border-box;
    background:#202020;
    border-bottom: 1px solid rgba(255,255,255,.12);
    z-index:200;
}

.menu-back {
    background:none;
    border:0;
    padding:0;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/*
================================================
 CHILD CONTENT AREA
================================================
*/

.submenu-body {
    position:absolute;
    top:80px;
    left:0;
    width:100vw;
    height:calc(100vh - 80px);
    padding:0 30px 50px;
    box-sizing:border-box;
    overflow-y:auto;
}

.submenu-body h2 {
    margin: 30px 0 10px;
    color: #fff;
    font-size: 20px;
    font-family: 'Inter-ExtraLight';
}

/*
================================================
 NESTED LEVELS
================================================
*/

.submenu-body .mobile-menu-panel {
    position:relative;
    width:100%;
    height:auto;
    min-height:auto;
    padding:0;
    overflow:visible;
}

.submenu-wrapper .submenu-wrapper {
    z-index:300;
}

/*
================================================
 SCROLLBAR
================================================
*/

.mobile-menu-panel::-webkit-scrollbar,
.submenu-body::-webkit-scrollbar {
    width:5px;
}

.mobile-menu-panel::-webkit-scrollbar-thumb,
.submenu-body::-webkit-scrollbar-thumb {
    background:#555;
    border-radius:10px;
}

/*
================================
 CLOSE BUTTON
================================
*/

.mobile-menu-close {
    position:absolute;
    top:20px;
    right:25px;
    z-index:999;
    width:40px;
    height:40px;
    background:none;
    border:0;
    color:#fff;
    font-size:38px;
    line-height:1;
    cursor:pointer;
}

.mobile-menu-toggle .menu-close-icon {
    display:none;
}

.mobile-menu-toggle.active .menu-open-icon {
    display:none;
}

.mobile-menu-toggle.active .menu-close-icon {
    display:block;
}

/*
================================================
 MOBILE ONLY
================================================
*/


@media(min-width:768px){
    .mobile-menu-overlay,
    .mobile-menu-toggle {
        display:none;
    }
}