.left-sidebar {
    position: fixed;
    top: 62px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid #eee;
    transition: all 0.95s ease;
    background-color: var(--menu-bg-color);
    width: 250px;
}

.left-sidebar-mini {
    position: fixed;
    top: 62px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid #eee;
    transition: all 0.95s ease;
    background-color: var(--menu-bg-color);
    width: 60px;
}

.main-container {
    padding-left: 250px !important;
    transition: all 0.95s ease;
}

.main-container-mini {
    padding-left: 60px !important;
    transition: all 0.95s ease;
}

/* media quaries { */
@media only screen and (max-width: 767px) {
    /* @media (max-width: 768px) { */
    .left-sidebar {
        width: 0%;
        height: 100vh !important;
        transition: all 0.95s ease;
        background-color: transparent !important;
    }
    .main-container {
        padding-left: 0px !important;
    }

    .main-container-mini {
        padding-left: 0px !important;
    }

    .left-sidebar-mobile {
        position: absolute;
        top: 62px;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 0px;
        overflow-x: hidden;
        overflow-y: auto;
        transition: all 0.95s ease;
        /* background-color: var(--menu-bg-color); */
        width: 100%;
    }

    .mbd-left-sidebar {
        height: auto !important;
    }
}
