body {
    background-color: #eeeeec;
    font-size: 0.9rem;
}

.toast-container {
    z-index: 9999;
}

.page .sidebar {
    width: 0;
    height: 100vh;
    background-color: white;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    left: 0;
    position: fixed;
    transition: 0.35s;
    z-index: 10000;
}

.page .sidebar::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.page .sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.00);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.00);
}

.page .sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .1);
}


.page .content {
    margin-left: 25px;
    margin-right: 25px;
    transition: 0.35s;
    min-height: 100vh;
}

.sidebar.open {
    width: 275px;
}

.content.open {
    margin-left: 300px;
}

@media only screen and (max-width: 768px) {
    .sidebar.open {
        width: 275px;
    }

    .content.open {
        margin-left: 25px;
        opacity: 0.3;
    }
}

.sidebar-logo-container {
    display: flex;
}

.logo-container {
    margin: auto;
}

.logo-sidebar {
    width: 200px;
    height: auto;
    margin-top: 40px;
}

.sidebar-body {
    margin-top: 30px;
}

.navigation-group {
    margin-bottom: 0px;
    position: relative;
}

.navigation-list {
    list-style-type: none;
    padding: 0 20px;
    opacity: 1;
}

.navigation-list:nth-child(n+2) {
    display: block;
    max-height: 1px;
    overflow-y: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-bottom: 0;
}


.navigation-list.active {
    display: block;
    opacity: 1;
    overflow-y: unset;
    max-height: unset;
    height: 100%;
}

.bi.bi-chevron-expand {
    position: absolute;
    right: 0;
    margin-right: 20px;
    font-size: 18px;
}

.navigation-list-header {
    padding: 12px 38px 12px 38px;
    border-radius: 3px;
    color: #a6a4b0;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.navigation-list-header:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .navigation-list-header:hover {
        background-color: #fff;
    }
}

.navigation-list-item {
    padding: 10px 18px 10px 18px;
    border-radius: 5px;
    margin: 4px 0;
}

.navigation-list-item:hover {
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

.navigation-list-item.active {
    background-color: rgba(255, 139, 64, 255);
}

.navigation-link {
    text-decoration: none;
    color: #625f6e;
}

.nav-item-text {
    margin-left: 10px;
}

.navigation-list-item:hover .navigation-link {
    color: #625f6e;
}

.navigation-list-item.active .navigation-link {
    color: white;
}

.sticky-profile {
    background-color: white;
    margin-top: 15px;
    padding: 0 18px 0 18px;
    border-radius: 5px;
    min-width: 100%;
}

.user-status {
    font-size: small;
}

.page-title {
    margin-top: 15px;
    padding: 10px 18px 10px 18px;
}

.content-body {
    background-color: white;
    margin: 15px 0;
    padding: 25px 18px 25px 18px;
}

.dropdown-item:hover:active:focus:target {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-primary {
    color: #fff;
    background-color: rgba(255, 139, 64, 255);
    border-color: rgba(255, 139, 64, 255);
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open>.dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open>.dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #F0C993;
    border-color: #F0C993;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary:disabled,
btn-primary[disabled] {
    color: #fff;
    background-color: #F0C993;
    border-color: #F0C993;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
    background-color: rgba(255, 139, 64, 255) !important;
    border-color: rgba(255, 139, 64, 255) !important;
}

.btn-primary .badge {
    color: rgba(255, 139, 64, 255);
    background-color: #fff;
}

.nav-link {
    color: #495057;
}

.nav-link:hover {
    color: #495057;
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background-color: rgba(255, 139, 64, 255) !important;
    color: #fff !important;
}

.select2-results__option--selected {
    display: none;
}

.btn-outline-primary {
    color: rgba(255, 139, 64, 255);
    border-color: rgba(255, 139, 64, 255);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.swal2-confirm {
    color: #fff;
    background-color: rgba(255, 139, 64, 255) !important;
    border-color: rgba(255, 139, 64, 255) !important;
}

.swal2-confirm:focus,
.swal2-confirm.focus {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.swal2-confirm:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

label.required::after {
    content: ' *';
    color: red;
}
