.nav-mobile-wapper {
    background: #fff;
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 350px;
    top: 0;
    bottom: 0;
    z-index: 999;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    padding-top: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
}


@media (max-width: 991px) {
    .nav-mobile-wapper.show-view {
        --webkit-transition: all 0.35s;
        --o-transition: all 0.35s;
        --moz-transition: all 0.35s;
        --ms-transition: all 0.35s;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
    }

    .nav__mobile-list {
        list-style-type: none;
        overflow: hidden;
        padding: 0 20px;
    }

    .nav__moblie-item {
        display: block;
        position: relative;
        width: 100%;
        padding: 10px 0;
        clear: both;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav__mobile-link {
        color: #333;
        font-size: 16px;
        line-height: 30px;
    }

    .nav-mobile-wapper .close-offcanvas {
        display: block !important;
        visibility: visible !important;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        padding: 15px 0;
        opacity: 1;
        filter: alpha(opacity=100);
        color: #111111;
    }

    .nav-mobile-wapper .close-offcanvas:hover {
        cursor: pointer;
        color: #CD2122;
    }

    .nav-mobile-wapper .close-offcanvas i {
        font-size: 24px;
    }

    .nav-mobile-wapper li a .icaret {
        position: absolute;
        width: 25px;
        height: 25px;
        top: 10px;
        color: rgb(59, 59, 59);
        bottom: 0;
        text-align: center;
        right: 0;
        font-size: 14px;
        line-height: 25px;
        background-color: rgb(239, 239, 239);
    }

    /*Submenu*/
    .nav-mobile-wapper .sub-menu {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -moz-transition: none;
        -ms-transition: none;
        min-width: inherit;
        display: none;
        width: 100%;
        position: static;
        padding: 10px;
        visibility: visible;
        border: 0;
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-box-shadow: none;
        box-shadow: none;
        list-style: none;
    }

    .nav-mobile-wapper .menu-item {
        border-bottom: 1px dashed rgba(0, 0, 0, .3);
        padding: 10px 0;
        line-height: 18px;
    }

    .nav-mobile-wapper .menu-item a {
        color: #666;
    }
}