@import url('/css/uicons-regular-rounded.css');

#project-sidebar {
    background-color: var(--smoke);
    overflow-y: auto;
    overflow-x: hidden;
}

.offcanvas #project-sidebar {
    position: relative;
    background-color: var(--smoke);
    padding: 0;
}


main #project-sidebar {
    position: fixed;
    padding: calc(2 * .25em);
    width: 280px;
    height: calc(100vh - 60px);
}

#project-sidebar .sidebar-content-header {
    height: 80px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px !important;
    /* border: 1px solid rgba(6,6,6,0.2); */
    color: #fff;
    font-weight: 300;
}

#project-sidebar .sidebar-menu a {
    transition: all 0.15s ease-in-out;
}

#project-sidebar .sidebar-menu a i {
    width: 30px;
    font-size: 1.25em;
}

#project-sidebar .sidebar-menu li:first-child a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#project-sidebar .sidebar-menu li:last-child a {
    /* :not([data-bs-toggle=collapse]) */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#project-sidebar .list-group-item-action {
    color: var(--dark);
}

.list-group-item.active {
    color: var(--primary-accent) !important;
    background-color: var(--white);
    font-weight: 600;
    border-left: var(--primary-accent) 5px solid !important;
}

#main-content {
    position: relative;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
    background: #f5f5f5;
}

@media (max-width: 768px) {
    #btn-toggle-sidebar {
        display: block !important;
    }
    main #project-sidebar {
        display: none;
    }
    #main-content {
        left: 0;
        width: 100%;
    }
}

.font-heading {
    font-family: var(--header-font);
    font-weight: 800;
}