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

.mob-nav__top{
    width: 100%;
    height: 72px;
    background-color: #18086d;
    box-shadow: 0px 0px 2rem rgba(15, 2, 86, 0.48);
    align-items: stretch;
}

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

.mob-nav__menu i {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    margin: 6px 0px;
    transition: all ease 0.2s;
}

.mob-nav__logo {
    display: flex;
    height: 72px;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 40px;
    background-image: url(/local/templates/nf/img/logo.png);
}

.mob-nav__slide {
    width: 72px;
    height: 72px;
    background-image: url(/local/templates/nf/img/tell.svg);
    background-size: 26px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.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 - 72px);
    background-color: #18086d;
    z-index: 2;
    overflow: hidden;
    overflow-y: visible;
    border-top: 1px solid #ffffff21;
    top: 72px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all ease .2s;
    pointer-events: none;
    position: absolute;
    box-shadow: 0px 0px 2rem rgba(15, 2, 86, 0.48);
    -webkit-overflow-scrolling: touch;
}

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



/* media */


/* media */

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

    }

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

    }

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

    }

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

    }

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

    }

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


    }

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

    }

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

    }

    @media screen and (max-width: 640px) {  
        .mob-nav {
            display: flex !important;
        } 
    }
