@media (min-width: 992px) {
    .sliding-menu-container {
        display: none;
    }
}

@media (max-width: 991px) {
    .panel-header {
        padding: 15px;
        background: var(--project);
       
        position: relative;
    }
    .panel-header .header-title {
        color: white;
        font-size: 18px;
    }

    .sliding-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0);
        overflow: hidden;
        z-index: 9999;
        box-shadow: 3px 0 10px rgba(0,0,0,0.3);

        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .sliding-menu-container.active {
        transform: translateX(0);
    }
    .sliding-menu-container ul li a {
        color: #000 !important;

    }

    #main-menu-panel {
        width: 90vw;
        height: 100vh;
        background:white;
        
    }

    .sliding-submenu-panel {
        position: absolute;
        left: 0;
        top: 0;
        width: 90vw;
        height: 100vh;
        transform: translateX(-120%);
        transition: transform 0.3s ease;
        background: white;
        z-index: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .sliding-submenu-panel.active {
        transform: translateX(0%);
        z-index: 10;
    }
    

    .submenu-back {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1em;
        background: none;
        border: none;
        font-size: 18px;
        /* font-weight: bold; */
        cursor: pointer;
        width: 100%;
        text-align: left;
        padding: 25px;
        background: var(--project);
        color: white;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,.7);
        border-radius: 50px;
        margin-right: 10px;
    }
    .back-icon svg {
        transform: rotate(180deg);
    }

    .submenu-items {
        padding: 0 ;
    }

    #main-menu-panel .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1em 0 1em 2em;
        border-bottom: 1px solid #ccc;
    }
    #main-menu-panel .menu-item a {
        font-size: 18px;
    }

    .menu-title {
        flex: 1;
    }

    .open-submenu-btn {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

    .close-menu {
        cursor: pointer;
        float: right;
        font-size: 49px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        max-height: 77px;
        right: 15px;
        color: white;
    }
    .close-menu::after {
        content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.3);
    transform: translate(-50%, -50%);
    border-radius: 50px;
    }

    .mobil-menu-overlay {
        width: 100vw;
        height: 100vh;
        position: fixed;
        background:rgba(0,0,0,.3);
        top: 0;
        left: 0;
        z-index: -1;
    }


    #menu-menu-main-2 {
        padding: 0;
    }
}