
.sidenav{
    display: flex;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--bs-primary);
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1rem;

    .sidebar-items{
        overflow-y: auto;
        height: 100%;
    }
    .sidebar-items::-webkit-scrollbar{
        display: none;
    }
    .navbar-brand{
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: .5rem;
    }
    .dropdown-toggle { outline: 0; }

    .btn-toggle-nav{
        .fa-lg{
            line-height: 1;
        }
    }

    .btn-toggle {
        width: 100%;
        padding: .625rem;
        color: #f4aeaa;
        background-color: transparent;
        border-radius: 15px;
    }
    
    .btn-toggle:hover,
    .btn-toggle:focus,
    .btn-toggle.active,
    .btn-toggle[aria-expanded="true"] {
        color: white;
        background-image: linear-gradient(to right, #d75e58, #d22f27);
    }
    .btn-toggle i,
    .btn-toggle-nav i {
        font-size: 1.25rem
    }
    .btn-toggle .bi-chevron-right{
        transition: all 0.2s ease-in-out;
        margin-left: auto;
    }
    .btn-toggle[aria-expanded="true"] .bi-chevron-right{
        transform: rotate(90deg);
    }

    .btn-toggle-nav a {
        color: #f4aeaa;
        padding: .5rem;
        margin-top: .2rem;
        margin-left: 1.25rem;
        align-items: center;
        width: -webkit-fill-available;
        border-radius: 15px;
    }
    .btn-toggle-nav a:hover,
    .btn-toggle-nav a:focus,
    .btn-toggle-nav a.active{
        color: white;
    }
    
    li{
        transition: all 0.2s ease-in-out;
    }
    li.active, li[aria-expanded="true"]{
        background-color: #ce2c23;
        border-radius: 15px;
    }
    .sidebar-logo{
        letter-spacing: 1.5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1rem;
    }
    .sidebar-logo *{
        color: white !important;
    }

    hr{
        display: none;
        color: white;
    }
    .top-nav-user{
        display: none;
    }

}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.sidebar-backdrop.fade{
    opacity: 0;
    display: none;
}
.sidebar-backdrop.show{
    opacity: 0.5;
    display: block;
}
.open-sidenav{
    display: none;
}