
body {
    background-color: #fff;
    font-family: "Nunito Sans", sans-serif;
    /* font-size: .875rem; */
}

/**
 * Icons
 */
.bi {
    display: inline-block;
    width: 22px;
    height: 22px;
}

/**
 * Sidebar
 
@media (min-width: 1200px) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        --padding: 48px 0 0; 
        -- box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); 
    }

    .sidebar-sticky {
        height: calc(100vh - 48px);
        overflow-x: hidden;
        overflow-y: auto;
    }
}

*/
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    margin: 0;
    padding: 0;
    width: 40px;
    text-align: center;
    background-color: var(--cA4);
    color: #fff;
    border-right-width: 1px;
    border-right-style: solid;
  }


.sidebar-offcanvas{
    max-width: 400px;
    min-width: 400px;
    padding: 10px;
    border-right-width: 1px;
    border-right-style: solid;
    border-radius: 0 10px 10px 0;
    background-color: var(--cA4);
    box-shadow: 5px 0 15px 8px var(--cA5);
}



.sidebar .nav-btn {
    height: 35px;
    width: 375px;
    background-color: var(--cA4);
    color: white;
    border-color: var(--cC3);
    border-style: solid;
    border-width: 1px;
}   

.sidebar .nav-btn:hover {
    box-shadow: 0 0 10px 2px var(--cA1);
    background-color: rgba(0, 0, 255, .1);
    font-weight: bold;
}

.sidebar .nav-subbtn {
    height: 35px;
    max-width: 370px !important;
    background-color: var(--cA35);
    color: white;
    border-color: var(--cC3);
    border-style: solid;
    border-width: 1px;
}   

.sidebar .nav-subbtn:hover {
    box-shadow: 0 0 10px 2px var(--cA1);
    background-color: rgba(0, 0, 255, .1);
    font-weight: bold;
}

.sidebar-heading {
    font-size: .75rem;
}

.sidebar-togglebutton{
    padding: 1px;
    max-width: 26px;
    max-height: 26px;
    background-color: transparent;
    border-style: none;
}

.sidebar-togglebuttonimage{
    max-width: 24px;
    max-height: 24px;
    padding: 0;
    margin: 0;
    background-color: transparent;
}


/**
*Main Container
*/
.main-container{
    width: calc(100% - 200px);
    min-height: 150vh;
}



/**
 * Breadcrumb
 */
.breadcrumb-custom .breadcrumb-item {
    position: relative;
    flex-grow: 1;
    padding: .75rem 3rem;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--dark-blue);
    font-weight: bold;
}

.breadcrumb-custom .breadcrumb-item::before {
    display: none;
}

.breadcrumb-custom .breadcrumb-item::after {
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 1;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    content: "";
    background-color: var(--bs-tertiary-bg);
    border-top-right-radius: .5rem;
    box-shadow: 1px -1px var(--bs-border-color);
    transform: scale(.707) rotate(45deg);
}

.breadcrumb-custom .breadcrumb-item:first-child {
    padding-left: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item:last-child {
    padding-right: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item:last-child::after {
    display: none;
}


/**
 * FullCalendar
 */
.fc .fc-toolbar-title {
    font-size: 1.5rem;
}

.fc-event {
    cursor: pointer;
}

/**
 * Loading
 */
#loading {
    display: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid #fff;
    border-top: 8px solid var(--light-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




