/* Fix Menu Mobile Ginea */
.n-site-navigation--mobile__wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 60px 20px 20px;
}

.n-site-navigation--mobile__wrapper.active {
    display: block !important;
    right: 0;
}

.n-site-navigation--mobile__close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.n-nth-menu--opened {
    overflow: hidden;
}

body.n-nth-menu--opened::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
}

/* Menu mobile styling */
.n-site-navigation--mobile__wrapper .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.n-site-navigation--mobile__wrapper .menu li {
    border-bottom: 1px solid #eee;
}

.n-site-navigation--mobile__wrapper .menu a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
}

.n-site-navigation--mobile__wrapper .sub-menu {
    display: none;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .n-site-navigation {
        display: none !important;
    }
    .n-site-navigation__hamburger {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .n-site-navigation {
        display: block !important;
    }
    .n-site-navigation--mobile {
        display: none !important;
    }
}
