#sidebar{
    z-index: 9;
    transition: width 0.3s ease-in-out;
}
#sidebar.open-sm {
    width: 280px;
}

#sidebar.closed .nav-link {
    justify-content: center;
}

#sidebar.closed .sidebar-link-text {
    display: none;
}

#sidebar.closed {
    width: 110px;
}

.left_area h3 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
}

#mobile-toggle-sidebar {
    display: none;
}

.header{
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 780px) {
    #sidebar {
        display: none !important;
        height: 100vh;
        left: 0;
        top: 0;
        position: fixed;
    }
    #sidebar.open-xs {
        display: flex !important;
        width: 280px;
    }
    .header{
        justify-content: space-between;
    }
    #mobile-toggle-sidebar {
        display: block;
    }
}

.sidebar-logo-img {
    max-height: 75px;
    height: 100%;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.nav-link.active,
.nav-link:hover {
    background-color: #2F323A !important;
    color: white !important;
}

.nav-link {
    color: #aaa7a7 !important;
}