:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #ff7d31;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #828282;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #008FD7;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-light-primary : #e6f4fb;
    --bs-dark-primary : #005F8F;
    --bs-blue-rgb: 14, 100, 230;
    --bs-primary-rgb: 0, 143, 215;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
}
body{
    font-family: 'Inter', sans-serif;
}
a{
    text-decoration: none;
}
.usertype-option {
    padding: 24px 16px;
    background-color: #fff;
    border: 1px dashed var(--bs-gray-500);
    border-radius: 12px;
}
.usertype-option h5 {
    color: var(--bs-primary);
}
.usertype-option p {
    color: var(--bs-secondary);
}

.usertype-option:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.15);
    cursor: pointer;
    transition: background-color 300ms;
}

.usertype-option.clicked {
    background-color: var(--bs-primary);
    transition: background-color 300ms;
}
.usertype-option.clicked h5 {
    color: var(--bs-white);
}
.usertype-option.clicked p {
    color: var(--bs-white);
}
.sidebar-container {
    transition: 300ms ease-in-out;
}
.content-container {
    transition: 300ms ease-in-out;
}
.sidebar-container .sidebar-custom .sidebar-menus {
    gap: 20px;
}
.sidebar-container .sidebar-custom.opened {
}
.bg-primary-light{
    background-color: var(--bs-light-primary);
}
.sidebar-container .sidebar-custom.opened .sidebar-menus .sidebar-item {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--bs-gray);
}

.sidebar-container .sidebar-custom .sidebar-menus .sidebar-item.active {
    background-color: var(--bs-primary);
    padding: 0.75rem 1rem;
    color: var(--bs-white);
}

.sidebar-container .sidebar-custom .sidebar-menus .sidebar-item.active a {
    background-color: var(--bs-primary);
    padding: 0.75rem 1rem;
    color: var(--bs-white);
}
.sidebar-container .sidebar-custom.closed {
    transition: 300ms ease-in-out;
}
.sidebar-container .sidebar-custom.closed .sidebar-menus .sidebar-item {
    display: flex;
    justify-content: center;
}
.sidebar-container .sidebar-custom.closed .sidebar-menus .sidebar-item span {
    display: none;
}
.sidebar-container .sidebar-custom.closed .sidebar-minimize {
    text-align: center;
    justify-content: center;
}
.sidebar-container .sidebar-custom.closed .sidebar-minimize span {
    display: none;
}
.sidebar-container .sidebar-custom .sidebar-minimize {
    background-color: background-white;
}
.sidebar-container .sidebar-custom .sidebar-minimize:hover {
    cursor: pointer;
    background-color: var(--bs-gray-300);
}
.sidebar-container .sidebar-custom .sidebar-menus .sidebar-item {
    padding: 0.75rem 1rem;
    color: var(--bs-gray);
}
.sidebar-container .sidebar-custom .sidebar-menus .sidebar-item:hover {
    background-color: rgba(var(--bs-blue-rgb), 0.25);
    color: var(--bs-gray);
    cursor: pointer;
}
.sidebar-container .sidebar-custom .sidebar-menus img {
    display: none;
}
@media only screen and (max-width: 430px) {
    .sidebar-container .sidebar-custom .sidebar-minimize{
        position: fixed;
        top: 50%;
        z-index: 99;
        left: 80%;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
        background-color: var(--bs-primary) !important;
        box-shadow: 3px 3px 12px #0000003b;
    }
    .sidebar-container .sidebar-custom {
        position: fixed;
        top: 50%;
        z-index: 99;
        left: 0;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
        background-color: var(--bs-primary)!important;
    }
    .sidebar-container .sidebar-custom .sidebar-menus{
        display: flex!important;
        position: fixed;
        width: 80%;
        border-radius: 0 !important;
        height: 100%;
        top: 0;
        left: 0;
        margin-top: 0 !important;
        transition: width 300ms ease-in;
    }
    .sidebar-container .sidebar-custom .sidebar-menus img {
        display: block;
    }
    /* Closed Sidebar */

    .sidebar-container .sidebar-custom.closed .sidebar-minimize{
        left: 0%;
    }
    .sidebar-container .sidebar-custom.closed .sidebar-menus{
        display: none!important;
        width: 0%;
        transition: width 300ms ease-in;
    }
    /*  */
    .sidebar-container .sidebar-custom .sidebar-minimize i {
        color: white!important;
    }
    .sidebar-container .sidebar-custom .sidebar-minimize span {
        display: none;
    }
    .sidebar-container .sidebar-custom .sidebar-minimize:hover & .sidebar-container .sidebar-custom .sidebar-minimize:active{
        background-color: rgba(var(--bs-primary-rgb), 0.75)!important;
    }
}
@media only screen and (max-width: 600px) {

}
.accordion .accordion-body .list-topic i {
    width: 16px;
}
.accordion .accordion-body .list-topic {
    border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.15);
    padding: 12px 8px;
}
.accordion .accordion-body .list-topic:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.15);
}
.accordion .accordion-body .list-topic:last-child {
    border-bottom: 0px solid rgba(var(--bs-dark-rgb), 0.15);
}

.select2-container--bootstrap5 .select2-selection {
    box-shadow: none;
    height: auto;
    outline: 0 !important;
}

.select2-container--bootstrap5.select2-container--focus:not(
        .select2-container--disabled
    )
    .form-select-solid,
.select2-container--bootstrap5.select2-container--open:not(
        .select2-container--disabled
    )
    .form-select-solid {
    background-color: var(--bs-gray-2000);
}

.select2-container--bootstrap5.select2-container--focus:not(
        .select2-container--disabled
    )
    .form-select:not(.form-select-solid):not(.form-select-transparent),
.select2-container--bootstrap5.select2-container--open:not(
        .select2-container--disabled
    )
    .form-select:not(.form-select-solid):not(.form-select-transparent) {
    border-color: var(--bs-gray-4000);
}

.select2-container--bootstrap5.select2-container--disabled .form-select {
    background-color: var(--bs-gray-2000);
    border-color: var(--bs-gray-3000);
}

.select2-container--bootstrap5.select2-container--disabled
    .form-select
    .select2-selection__placeholder,
.select2-container--bootstrap5.select2-container--disabled
    .form-select
    .select2-selection__rendered {
    color: var(--bs-gray-5000) !important;
}

.select2-container--bootstrap5.select2-container--disabled
    .form-select.form-select-transparent {
    background-color: transparent;
    border-color: transparent;
}

.select2-container--bootstrap5 .select2-search.select2-search--inline {
    flex-grow: 1;
}

.select2-container--bootstrap5
    .select2-search.select2-search--inline
    .select2-search__field {
    color: var(--bs-gray-7000);
    font-weight: 500;
    font-family: inherit !important;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.select2-container--bootstrap5
    .select2-search.select2-search--inline
    .select2-search__field::placeholder {
    color: var(--bs-gray-5000);
}

.select2-container--bootstrap5
    .select2-search.select2-search--inline
    .select2-search__field::-moz-placeholder {
    color: var(--bs-gray-5000);
    opacity: 1;
}

.select2-container--bootstrap5
    .form-select-solid
    .select2-search.select2-search--inline
    .select2-search__field {
    color: var(--bs-gray-7000);
    font-family: inherit !important;
}

.select2-container--bootstrap5
    .form-select-solid
    .select2-search.select2-search--inline
    .select2-search__field::placeholder {
    color: var(--bs-gray-5000);
}

.select2-container--bootstrap5
    .form-select-solid
    .select2-search.select2-search--inline
    .select2-search__field::-moz-placeholder {
    color: var(--bs-gray-5000);
    opacity: 1;
}

.select2-container--bootstrap5 .select2-selection--single {
    display: flex;
    align-items: center;
}

.select2-container--bootstrap5
    .select2-selection--single
    .select2-selection__rendered {
    display: block;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--bs-input-color);
}

.select2-container--bootstrap5
    .select2-selection--single
    .select2-selection__placeholder {
    color: var(--bs-gray-5000);
}

.select2-container--bootstrap5
    .select2-selection--single.form-select-solid
    .select2-selection__rendered {
    color: var(--bs-gray-7000);
}

.select2-container--bootstrap5
    .select2-selection--single.form-select-solid
    .select2-selection__placeholder {
    color: var(--bs-gray-5000);
}

.select2-container--bootstrap5
    .select2-selection--single.form-select-transparent
    .select2-selection__rendered {
    color: var(--bs-gray-8000);
}

.select2-container--bootstrap5
    .select2-selection--single.form-select-transparent
    .select2-selection__placeholder {
    color: var(--bs-gray-8000);
}

.select2-container--bootstrap5
    .select2-selection--single.form-select-dark
    .select2-selection__rendered {
    color: var(--bs-gray-9000);
}

.select2-container--bootstrap5 .select2-selection--multiple {
    display: flex;
    align-items: center;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-search.select2-search--inline {
    display: inline-flex;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered {
    display: inline;
    margin: 0;
    padding: 0;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice {
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: var(--bs-gray-3000);
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__remove {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-gray-7000);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-gray-7000%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-gray-7000%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    display: block;
    position: absolute;
    transform: translateY(-50%);
    opacity: 0.5;
    border: 0;
    transition: color 0.2s ease;
    top: 50%;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__remove
    span {
    display: none;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__remove:hover {
    opacity: 1;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-primary-login);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-primary%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-primary%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    transition: color 0.2s ease;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__display {
    font-weight: 500;
}

.select2-container--bootstrap5
    .select2-selection--multiple
    .select2-selection__choice
    .select2-selection__choice__remove {
    height: 0.6rem;
    width: 0.6rem;
}

.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm {
    min-height: calc(1.5em + 1.1rem + 2px);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-sm
    .select2-selection__choice {
    border-radius: 0.425rem;
    padding: 0.1rem 0.35rem;
    margin-right: 0.35rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-sm
    .select2-selection__choice
    .select2-selection__choice__display {
    margin-left: 0.95rem;
    font-size: 0.95rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-sm
    .select2-search__field {
    height: 14px;
}

.select2-container--bootstrap5
    .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) {
    min-height: calc(1.5em + 1.55rem + 2px);
    padding-top: 0.575rem;
    padding-bottom: 0.575rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg)
    .select2-selection__choice {
    border-radius: 0.475rem;
    padding: 0.1rem 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg)
    .select2-selection__choice
    .select2-selection__choice__display {
    margin-left: 1.1rem;
    font-size: 1.1rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg)
    .select2-search__field {
    height: 16px;
}

.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg {
    min-height: calc(1.5em + 1.65rem + 2px);
    padding-top: 0.525rem;
    padding-bottom: 0.525rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-lg
    .select2-selection__choice {
    border-radius: 0.625rem;
    padding: 0.15rem 0.65rem;
    margin-right: 0.65rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-lg
    .select2-selection__choice
    .select2-selection__choice__display {
    margin-left: 1.25rem;
    font-size: 1.15rem;
}

.select2-container--bootstrap5
    .select2-selection--multiple.form-select-lg
    .select2-search__field {
    height: 18px;
}

.select2-container--bootstrap5 .select2-dropdown {
    border: 0;
    box-shadow: var(--bs-dropdown-box-shadow-login);
    border-radius: 0.475rem;
    padding: 1rem 0;
    background-color: var(--bs-dropdown-bg-login);
}

.modal-open .select2-container--bootstrap5 .select2-dropdown {
    z-index: 1056;
}

.select2-container--bootstrap5 .select2-dropdown .select2-search {
    padding: 0.5rem 1.25rem;
    margin: 0 0 0.5rem 0;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-search
    .select2-search__field {
    background-color: var(--bs-body-bg-login);
    padding: 0.55rem 0.75rem;
    color: var(--bs-gray-7000);
    font-size: 0.95rem;
    border: 1px solid var(--bs-gray-3000);
    border-radius: 0.425rem;
    outline: 0 !important;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-search
    .select2-search__field:active,
.select2-container--bootstrap5
    .select2-dropdown
    .select2-search
    .select2-search__field:focus {
    border: 1px solid var(--bs-gray-4000);
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results
    > .select2-results__options {
    max-height: 250px;
    overflow-y: auto;
}

.select2-container--bootstrap5 .select2-dropdown .select2-results__option {
    color: var(--bs-gray-7000);
    transition: color 0.2s ease;
    padding: 0.75rem 1.25rem;
    margin: 0 0;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--highlighted {
    background-color: var(--bs-component-hover-bg);
    color: var(--bs-component-hover-color);
    transition: color 0.2s ease;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--selected {
    background-color: var(--bs-component-hover-bg);
    color: var(--bs-component-hover-color);
    transition: color 0.2s ease;
    position: relative;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--selected:after {
    top: 50%;
    display: block;
    position: absolute;
    transform: translateY(-50%);
    height: 0.75rem;
    width: 0.75rem;
    content: "";
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-component-hover-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3e%3cpath fill='var%28--bs-component-hover-color%29' d='M4.89557 6.49823L2.79487 4.26513C2.26967 3.70683 1.38251 3.70683 0.857309 4.26513C0.375593 4.77721 0.375593 5.57574 0.857309 6.08781L4.74989 10.2257C5.14476 10.6455 5.81176 10.6455 6.20663 10.2257L13.1427 2.85252C13.6244 2.34044 13.6244 1.54191 13.1427 1.02984C12.6175 0.471537 11.7303 0.471536 11.2051 1.02984L6.06096 6.49823C5.74506 6.83403 5.21146 6.83403 4.89557 6.49823Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3e%3cpath fill='var%28--bs-component-hover-color%29' d='M4.89557 6.49823L2.79487 4.26513C2.26967 3.70683 1.38251 3.70683 0.857309 4.26513C0.375593 4.77721 0.375593 5.57574 0.857309 6.08781L4.74989 10.2257C5.14476 10.6455 5.81176 10.6455 6.20663 10.2257L13.1427 2.85252C13.6244 2.34044 13.6244 1.54191 13.1427 1.02984C12.6175 0.471537 11.7303 0.471536 11.2051 1.02984L6.06096 6.49823C5.74506 6.83403 5.21146 6.83403 4.89557 6.49823Z'/%3e%3c/svg%3e");
    mask-position: center;
    -webkit-mask-position: center;
    right: 1.25rem;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--disabled {
    color: var(--bs-gray-4000);
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__message {
    color: var(--bs-gray-600);
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--group {
    padding-left: 0;
    padding-right: 0;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--group
    .select2-results__group {
    display: block;
    color: var(--bs-gray-8000);
    font-weight: 500;
    font-size: 1.15rem;
    padding: 0 1.25rem 0 1.25rem;
    margin: 0 0 0.25rem 0;
}

.select2-container--bootstrap5
    .select2-dropdown
    .select2-results__option.select2-results__option--group
    .select2-results__option {
    padding: 0.75rem 1.25rem;
    margin: 0 0;
}

.select2-container--bootstrap5 .select2-selection__clear {
    display: block;
    height: 0.7rem;
    width: 0.7rem;
    top: 50%;
    right: 3rem;
    position: absolute;
    transform: translateY(-50%);
    background-color: var(--bs-gray-7000) !important;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-gray-7000);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-gray-7000%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-gray-7000%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.select2-container--bootstrap5 .select2-selection__clear span {
    display: none;
}

.select2-container--bootstrap5 .select2-selection__clear:hover {
    background-color: var(--bs-primary-login) !important;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-primary-login);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-primary%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-primary%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}
#subordinateAccordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: white;
}
#subordinateAccordion
    .accordion-item:first-of-type
    > .accordion-header
    .accordion-button {
    background-color: white;
    border: 0;
}
#subordinateAccordion .accordion-item:first-of-type {
    border: 0;
}
#subordinateAccordion .accordion-body {
    background-color: white;
    border: 0;
}
#subordinateAccordion .accordion-button {
    background-color: white;
    border: 0;
}
#subordinateAccordion .accordion-item {
    border: 0;
}
#subordinateAccordion .subordinate-card:hover {
    cursor: pointer;
    background-color: rgba(var(--bs-primary-rgb), 0.111);
    border: 1px solid rgba(var(--bs-primary-rgb), 1) !important;
    transition: 200ms ease-in-out;
}
#subordinateAccordion .subordinate-card.active {
    cursor: pointer;
    background-color: rgba(var(--bs-primary-rgb), 0.111);
    border: 1px solid rgba(var(--bs-primary-rgb), 1) !important;
    transition: 200ms ease-in-out;
}
.side-subordinate-detail {
    width: 0%;
    display: none;
    -webkit-animation: slide-right 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: slide-right 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.side-subordinate-detail.open {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: start;
    top: 0;
    right: 0;
    margin: 0 0;
    padding: 42px 0;
    background: linear-gradient(to bottom, #156bc1 17%, #eef7ff 17%);
    width: 30%;
    box-shadow: -4px 4px 12px 0px #4b4b4b2e;
    -webkit-animation: slide-right 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: slide-right 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    overflow-y: scroll;
}
.side-subordinate-detail.open::-webkit-scrollbar {
    width: 10px;
}
.side-subordinate-detail.open::-webkit-scrollbar-track {
    background: transparent;
}

.side-subordinate-detail.open::-webkit-scrollbar-thumb {
    background: rgba(var(--bs-primary-rgb), 1);
    border: 1px solid white;
    border-radius: 50px;
}

.side-subordinate-detail.open::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--bs-primary-rgb), 1);
}

.side-subordinate-detail.open::-webkit-scrollbar-button {
    display: none;
}
.side-subordinate-detail img {
    max-width: 200px;
}
.overlay-side-subordinate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--bs-dark-rgb), 0.15);
    z-index: 2;
}
.overlay-side-subordinate.openOverlay {
    display: block;
}
.footer{
    background-color: var(--bs-primary);
    /* padding: 1.75rem 0; */
}
.footer-widget .footer-widget-title{
    color: var(--bs-white);
}
.footer-widget hr {
    border: 1px solid var(--bs-orange);
    opacity: 1;
    max-width: 80px;
    margin: 0;
    margin-bottom: 12px;
}
.footer-widget ul {
    padding-left: 0rem;
}
.footer-widget li {
    list-style: none;
}
.footer-widget li a, .footer-widget li  {
    color: var(--bs-white);
}
.footer-widget li a:hover {
    color: rgba(var(--bs-white-rgb), 0.75);
}
@-webkit-keyframes slide-right {
    0% {
        width: 0%;
    }
    100% {
        width: 30%;
    }
}
@keyframes slide-right {
    0% {
        width: 0%;
    }
    100% {
        width: 30%;
    }
}
@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}
.text-orange{
    color: var(--bs-orange);
}
#hero-section{
    background: url('../img/background-banner@4x.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    padding: 8rem 0rem 0rem 0;
}
.gradient-custom-2 {
    background: #fccb90;
    background: -webkit-linear-gradient(45deg,  var(--bs-dark-primary), var(--bs-primary), var(--bs-blue),var(--bs-light-primary));
    background: linear-gradient(45deg,  var(--bs-dark-primary),var(--bs-primary), var(--bs-blue), var(--bs-light-primary));
}

@media (min-width: 768px) {
    .gradient-form {
    height: 100vh !important;
    }
}
@media (min-width: 769px) {
    .gradient-custom-2 {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
    }
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    border-bottom: 2px solid #fff;
}
#quote-section{
    background-image: url('../img/quote-section-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.datepicker-days, .datepicker-months, .datepicker-years, .datepicker-decades, .datepicker-centuries{
    padding: 12px;
}
select:disabled{
    color: rgb(84, 84, 84);
}
.login {
    min-height: 100vh;
}

.bg-image {
    background-image: url('../img/login-bg.jpg');
    background-size: cover;
    background-position: center;
}

.login-heading {
    font-weight: 300;
}

.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
}
.settings-menu ul li a i {
    min-width: 24px;
    text-align: center;
}

.stepper {
    display: flex;
    flex-direction: column;
    counter-reset: stepper;
    gap: 8px;
    background-color: var(--bs-white);
    padding: 2rem;
    border-radius: 10px;
  }

  .stepper-item {
    display: grid;
    grid-template-rows: [text-row] auto [line-row] 20px;
    grid-template-columns: [counter-column] 28px [text-column] auto;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 8px;
    position: relative;
  }
  .stepper-item.complete .stepper-counter {
    background-color: var(--bs-success);
    color: var(--bs-white);
    position: relative;
  }
  .stepper-item.complete .stepper-counter:after {
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bs-white);
    right: -6px;
    bottom: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%231d4ed8' d='M10 15.172l9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .stepper-item:last-child {
    grid-template-rows: [text-row] auto;
  }

  .stepper-line {
    display: block;
    width: 2px;
    background-color: #8f8f8f;
    height: 100%;
    justify-self: center;
  }
  .stepper-item:last-child .stepper-line {
    display: none;
  }

  .stepper-counter {
    flex-shrink: 0;
    counter-increment: stepper;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
  }
  .stepper-counter:before {
    content: counter(stepper);
  }

  .stepper-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--bs-primary);
  }
  .stepper-link span {
    padding-top: calc((28px - 1.5em) / 2);
    font-weight: 600;
    border-bottom: 2px solid transparent;
  }
  .stepper-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .stepper-link:hover span {
    /* border-color: currentcolor; */
    color: var(--bs-dark-primary);
  }
  .stepper-link:focus {
    outline-offset: 4px;
    outline-color: var(--bs-primary);
    outline-width: 2px;
    border-radius: 4px;
  }

  #progress-bar-container li .step-inner {
    position: absolute;
    width: 100%;
    top: 14px;
    font-size: 14px;
  }

  #progress-bar-container li.active,
  #progress-bar-container li:hover {
    color: #444;
  }

  #progress-bar-container li::after {
    content: " ";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #777;
    margin: auto;
    border: 12px solid #fff;
    border-radius: 50%;
    margin-top: -25px;
    box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.2);
    transition: all ease 0.25s;
  }
  #progress-bar-container li:hover::after {
    background: #555;
  }

  #progress-bar-container li.active::after {
    background: var(--bs-success);
    border: 12px solid var(--bs-success);
  }

  #progress-bar-container li.active i.fa-check {
    display: block;
  }
  #progress-bar-container li i.fa-check {
    display: none;
  }

  #progress-bar-container li.rejected i.fa-times-circle {
    display: block;
  }
  #progress-bar-container li i.fa-times-circle {
    display: none;
  }

  #progress-bar-container li.on-progress i.fa-clock {
    display: block;
  }
  #progress-bar-container li i.fa-clock {
    display: none;
  }

  #progress-bar-container #line {
    width: 85%;
    margin: auto;
    background-color: #eee;
    height: 6px;
    position: absolute;
    left: 10%;
    top: 0;
    z-index: 1;
    border-radius: 50px;
    transition: all ease 0.75s;
  }

  #progress-bar-container #line-progress {
    content: " ";
    width: 8%;
    height: 100%;
    background-color: var(--bs-primary);
    background: linear-gradient(to right #207893 0%, #2ea3b7 100%);
    position: absolute;
    z-index: 2;
    border-radius: 50px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  }
  #progress-content-section {
    position: relative;
    top: 100px;
    width: 90%;
    margin: auto;
    background: #f3f3f3;
    border-radius: 4px;
  }
  #progress-content-section .section-content {
    padding: 30px 40px;
    text-align: center;
  }

  .section-content h2 {
    font-size: 17px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
  }

  .section-content p {
    font-size: 16px;
    line-height: 1.8rem;
    color: #777;
  }

  .section-content {
    display: none;
    animation: FadeinUp 0.7s ease 1 forwards;
    transform: translateY(15px);
    opacity: 0;
  }

  .section-content.active {
    display: block;
    opacity: 1;
  }
  .progress-wrapper {
    margin: auto;
    max-width: 1080px;
  }
  #progress-bar-container {
    position: relative;
    margin: auto;
    height: 40vh;
    margin-top: 65px;
  }
  #progress-bar-container ul {
    padding-top: 15px;
    z-index: 3;
    position: absolute;
    width: 100%;
    margin-top: 0;
  }
  #progress-bar-container li {
    list-style: none;
    float: left;
    width: 20%;
    text-align: center;
    color: #aaa;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.2s;
    vertical-align: bottom;
    height: 60px;
    position: relative;
  }
  @keyframes FadeInUp {
    0% {
      transform: translateY(15px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }

footer {
    font-family: 'Inter', sans-serif!important;
}