.mob-nav {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 1000;
}

.mob-nav__top{
    width: 100%;
    height: 64px;
    background-color: white;
    box-shadow: 0px 0px 2rem rgba(41, 26, 85, 0.16);
    align-items: stretch;
}

.mob-nav__menu {
    width: 64px;
    height: 64px;
}

.mob-nav__menu i {
    width: 25px;
    height: 3px;
    background-color:var(--color__fill-1);
    display: block;
    margin: 6px 0px;
    transition: all ease 0.2s;
    transform-origin: left center;
}

.mob-nav__logo {
    display: flex;
    height: 72px;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 32px;
}

.mob-nav__slide {
    width: 64px;
    height: 64px;
}

.is-open .mob-nav__menu i:first-child {
    opacity: 1;
    /* transform-origin: left center; */
    transform: rotate(45deg);
}

.is-open .mob-nav__menu i:last-child {
    opacity: 1;
    /* transform-origin: left center; */
    transform: rotate(-45deg);
}

.is-open .mob-nav__menu i {
    opacity: 0;
    /* background-color: var(--color__fill-2); */
}
.is-open .mob-nav__full {
    transform: scaleY(1);
    pointer-events: painted;
}

.mob-nav__full {
    width: 100%;
    max-height: calc(100vh - 64px);
    background-color: white;
    z-index: 2;
    overflow: hidden;
    overflow-y: visible;
    border-top: 1px solid #eeeeee;
    top: 64px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all ease .2s;
    pointer-events: none;
    position: absolute;
    box-shadow: 0px 2rem 2rem rgba(41, 26, 85, 0.16);
    -webkit-overflow-scrolling: touch;
}

.js-mob-nav__full {
    /* padding: 24px 0px; */
}

.mob-nav__search-wrap {
    position: absolute;
    width: 100%;
    /* height: 40px; */
    background-color: var(--color__fill-1);
    top: 64px;
    padding: .375rem;
}



/* media */

    @media screen and (max-width: 640px) {  

    }

    @media screen and (max-width: 768px) {  

    }

    @media screen and (max-width: 991px) {  
        .mob-nav {
            display: flex !important;
        } 
        .nav-search--input {
            height: 2.5rem !important;
            flex: 1;
            max-width: inherit !important;
            padding: 0 1rem !important;
        }

        .nav-search__btn {
            height: 2.5rem !important;
            max-width: 3rem !important;
        }

        .nav-search__btn img {
            width: 1.25rem;
        }
        
    }

    @media screen and (max-width: 1024px) {  

    }
    
    @media screen and (max-width: 1199px) {  

    }

    @media screen and (max-width: 1359px) {  

    }

    @media screen and (max-width: 1366px) {  

    }

    @media screen and (max-width: 1440px) {  

    }

    @media screen and (max-width: 1680px) {  

    }