﻿@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

/* Heavy */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

/* Regular (Roman) */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueRoman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Thin */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueThin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

/* Ultra Light */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

:root {
    --brand-primary: #094A8D;
    --brand-secondary: #6dc7de;
    --gray-light: #e9ecef;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'HelveticaNeue', sans-serif;
    overflow-x:hidden;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}



.stepper-header .nav-item {
    color: #adb5bd;
    font-weight: 600;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    font-size: 20px;
    text-align: center;
}

    .stepper-header .nav-item:not(:last-child)::after {
        content: "";
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: var(--gray-light);
        top: 16px;
        left: 50%;
        z-index: 1;
        transition: background-color 0.3s ease;
    }

    .stepper-header .nav-item.completed:not(:last-child)::after {
        background-color: var(--brand-secondary);
    }

    .stepper-header .nav-item.active {
        color: var(--brand-primary);
    }

    .stepper-header .nav-item.completed {
        color: var(--brand-secondary);
    }

.step-num {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 28px;
    border-radius: 50%;
    background: var(--gray-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
    position: relative;
    z-index: 2;
}

.active .step-num {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    box-shadow: 0 0 0 3px rgba(9, 74, 141, 0.2);
}

.completed .step-num {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: white;
}

.btn-primary {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

    .btn-primary:hover {
        background-color: #073a6e !important;
    }

.text-primary {
    color: var(--brand-primary) !important;
}

.text-secondary {
    color: var(--brand-secondary) !important;
}

/*.step-content .section-title {
    font-family: 'HelveticaNeue';
    font-weight: 700;
    color: var(--brand-primary);
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .step-content .section-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 80%;
        background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
        border-radius: 10px;
    }*/

.step-content .section-title {
    font-family: 'HelveticaNeue';
    font-weight: 700;
    color: var(--brand-primary);
    position: relative;
}

.step-content .section-title {
    font-family: 'HelveticaNeue';
    font-weight: 700;
    color: var(--brand-primary);
    position: relative;
}

.step-content#step2 .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--brand-primary);
    border: 2px solid var(--brand-secondary);
    border-radius: 50%;
}

.step-content#step2 .section-title {
    padding-left: 30px;
}

    .step-content#step2 .section-title.not-bullet {
        padding-left: 0px;
    }

        .step-content#step2 .section-title.not-bullet::before {
            display: none !important;
        }

.fancy-step-group {
    margin-top: 20px;
    border-left: 2px solid #e9ecef;
    padding-left: 15px;
}

.fancy-p {
    font-family: 'HelveticaNeue';
    font-weight: 400;
    color: #495057;
    position: relative;
    padding: 10px 15px 10px 35px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    background: #efefef;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    /*    .fancy-p:hover {
        background: #ffffff;
        border-color: var(--brand-secondary);
        box-shadow: 0 4px 12px rgba(109, 199, 222, 0.1);
        transform: translateX(5px);
    }*/

    .fancy-p::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background-color: var(--brand-primary);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(109, 199, 222, 0.15);
    }

    .fancy-p::after {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background-color: white;
        border-radius: 50%;
    }

.form-step-item, .DQ-form-item {
    margin-bottom: 2rem;
    position: relative;
}

    .form-step-item label.form-label {
        font-family: 'HelveticaNeue';
        font-weight: 500;
        color: var(--brand-primary);
        display: block;
        margin-bottom: 7px;
        font-size: 1rem;
        line-height: 1.4;
    }

    .form-step-item .form-control,
    .form-step-item .form-select {
        font-family: 'HelveticaNeue';
        font-weight: 400;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        padding: 12px 16px;
        transition: all 0.3s ease;
        background-color: #fcfcfc;
        color: #333;
    }

        .form-step-item .form-control:hover {
            border-color: var(--brand-secondary);
            background-color: #fff;
        }

        .form-step-item .form-control:focus,
        .form-step-item .form-select:focus {
            border-color: var(--brand-primary);
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(9, 74, 141, 0.1);
            outline: none;
        }

        .form-step-item .form-control:disabled,
        .form-step-item .form-select:focus {
            border-color: var(--gray-light);
            background-color: #e4e4e4;
            outline: none;
        }

    .form-step-item .is-invalid {
        border-color: #dc3545 !important;
        background-color: #fff8f8;
    }

.text-danger {
    font-family: 'HelveticaNeue';
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.dt-search input {
    margin-left: 0px !important;
}

.nav-item.active > a, .nav-item.active a:not(.text-dark) {
    color: var(--brand-secondary) !important;
}

.tbl-icon {
    cursor: pointer;
}

    .tbl-icon svg {
        fill: var(--brand-primary);
        width: 30px;
    }

.tbl-icon-btn svg {
    fill: var(--brand-primary);
    width: 15px;
}

.tbl-icon:hover svg {
    fill: var(--brand-secondary);
    cursor: pointer;
}

.tbl-icon svg {
    fill: var(--brand-primary);
    width: 30px;
}

.tbl-icon:hover svg {
    fill: var(--brand-secondary);
}

.flatpickr-calendar {
    font-family: 'HelveticaNeue', Arial, sans-serif !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e9ecef !important;
}

.flatpickr-months .flatpickr-month {
    background: #fff !important;
    color: var(--brand-primary) !important;
    fill: var(--brand-primary) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.hasEvent,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #fff !important;
}

.flatpickr-day.today {
    border-color: var(--brand-secondary) !important;
}

    .flatpickr-day.today:hover {
        background: var(--brand-secondary) !important;
        color: #fff !important;
    }

.flatpickr-day:hover {
    background: #f0f7ff !important;
}

.d-label {
    font-family: 'HelveticaNeue';
    font-weight: 500;
    color: var(--brand-primary);
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.swal2-popup.swal2-modal {
    background-color: #f7fbfd !important;
    border-left: 7px solid #094A8D !important;
    border-radius: 12px !important;
}

#DQ-side-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    /*height: 100%;*/
    height: calc(100vh - 134px);
    z-index: 10;
    padding: 20px;
    background-color: #e7e9ee;
    /*border-right: 1px solid var(--gray-light);*/
    /*    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;*/
    box-shadow: 2px 0 8px rgba(0,0,0,0.02);
    background-color: #efefef;
    overflow-y: auto;
}


#DQ-content {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 20px;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

.onsite-view #DQ-content {
}

.front-desk #DQ-content, .front-onsite #DQ-content {
    padding-top: 45px !important;
}

.front-desk #DQ-side-bar, .front-onsite #DQ-side-bar {
    height: calc(100vh - 0px) !important;
}


.view-desk #DQ-content, .view-onsite #DQ-content {
    padding-top: 20px;
    padding-bottom: 50px;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}


.DQ-side-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    padding: 8px 0px;
    border-radius: 15px;
}

    .DQ-side-menu .DQ-side-menu-item {
        border-bottom: 1px solid #EFEFEF;
    }

.DQ-side-menu-item {
    margin-bottom: 5px;
}

    .DQ-side-menu-item a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 10px;
        color: var(--brand-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .DQ-side-menu-item a:hover {
            background-color: rgba(9, 74, 141, 0.1);
            color: var(--brand-primary);
            border-left-color: var(--brand-secondary);
        }

    .DQ-side-menu-item.active a {
        background-color: var(--brand-primary);
        color: #fff;
    }

.DQ-sectione-tittle {
    font-size: 18px !important;
    font-weight: 700;
}

.DQ-step-guide-list {
    background-color: #f3f3f3e8;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.DQ-step-guide-list-item {
    font-size: 14px;
    margin-bottom: 3px;
}

#important-notes .fancy-p {
    margin-bottom: 5px !important;
    font-size: 14px !important;
    padding: 8px 12px 8px 30px !important;
}

    #important-notes .fancy-p::after {
        content: "";
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background-color: white;
        border-radius: 50%;
    }

    #important-notes .fancy-p::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-color: var(--brand-secondary);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(109, 199, 222, 0.15);
    }

.fw-500 {
    font-weight: 500 !important;
}

/*.th-check {
    padding-left:0px !important;
}
.th-check input {
    width: 1.3em;
    height: 1.3em;
    border-radius: .25em;
}

    .th-check input:not(:checked) {
        border: 1px solid #848484 !important;
    }*/


@media (max-width:786px) {
    #stepperNav {
        flex-direction: column !important;
    }

    .stepper-header .nav-item::after {
        display: none !important;
    }
}



.select2-container--bootstrap5 .select2-selection {
    box-shadow: none;
    height: auto;
    outline: none !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-200);
}

.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-400);
}

.select2-container--bootstrap5.select2-container--disabled .form-select {
    background-color: var(--bs-gray-200);
    border-color: #dbdfe9;
}

    .select2-container--bootstrap5.select2-container--disabled .form-select .select2-selection__rendered,
    .select2-container--bootstrap5.select2-container--disabled .form-select .select2-selection__placeholder {
        color: var(--bs-gray-500) !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-700);
        font-weight: 500;
        font-family: inherit !important;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        outline: none;
        line-height: 1;
        margin: 0;
        padding: 0;
    }

        .select2-container--bootstrap5 .select2-search.select2-search--inline .select2-search__field::placeholder {
            color: var(--bs-gray-500);
        }

        .select2-container--bootstrap5 .select2-search.select2-search--inline .select2-search__field::-moz-placeholder {
            color: var(--bs-gray-500);
            opacity: 1;
        }

.select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field {
    color: var(--bs-gray-700);
    font-family: inherit !important;
}

    .select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field::placeholder {
        color: var(--bs-gray-500);
    }

    .select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field::-moz-placeholder {
        color: var(--bs-gray-500);
        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-500);
    }

    .select2-container--bootstrap5 .select2-selection--single.form-select-solid .select2-selection__rendered {
        color: var(--bs-gray-700);
    }

    .select2-container--bootstrap5 .select2-selection--single.form-select-solid .select2-selection__placeholder {
        color: var(--bs-gray-500);
    }

    .select2-container--bootstrap5 .select2-selection--single.form-select-transparent .select2-selection__rendered {
        color: var(--bs-gray-800);
    }

    .select2-container--bootstrap5 .select2-selection--single.form-select-transparent .select2-selection__placeholder {
        color: var(--bs-gray-800);
    }

    .select2-container--bootstrap5 .select2-selection--single.form-select-dark .select2-selection__rendered {
        color: var(--bs-gray-900);
    }

.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: #dbdfe9;
        }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0px !important;
}

.select2-selection.select2-selection--multiple {
    padding: 22px 16px;
}

.select2-search__field {
    position: relative;
    top: -10px;
}

.select2-selection__rendered {
    position: relative;
    top: -8px;
}

.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-700);
    -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-700%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-700%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);
        -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 + 2rem + 2px);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

    .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);
    border-radius: 0.475rem;
    padding: 1rem 0;
    background-color: var(--bs-dropdown-bg);
}

.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);
        padding: 0.55rem 0.75rem;
        color: var(--bs-gray-700);
        font-size: 0.95rem;
        border: 1px solid #dbdfe9;
        border-radius: 0.425rem;
        outline: 0 !important;
    }

        .select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field:focus, .select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field:active {
            border: 1px solid var(--bs-gray-400);
        }

.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-700);
    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-selection--multiple::after,
.select2-container--bootstrap5 .select2-selection--single::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--disabled {
    color: var(--bs-gray-400);
}

.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-800);
        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--default .select2-selection--multiple:before {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 12px;
    color: #666;
}

.select2-selection--multiple {
    position: relative;
    min-height: 38px !important;
}

.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-700) !important;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--bs-gray-700);
    -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-700%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-700%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) !important;
        mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: var(--bs-primary);
        -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");
    }

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-selection.select2-selection--multiple {
    border: 1px solid #e9ecef !important;
    background-color: #fcfcfc !important;
    border-radius: 10px !important;
}

#AttachDocuments .demo-imgs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#AttachDocuments .col {
    width: 33.33%;
}

#AttachDocuments .img {
    width: 100%;
    max-height: 100%;
    box-shadow: 0 10px 20px #b9bbbe;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 476px) {
    #AttachDocuments .col {
        margin-left: 20px;
    }

    #AttachDocuments .img {
        margin-bottom: 20px;
    }
}

#EntityFormModal .modal-dialog {
    max-height: 90vh;
}

#EntityFormModal .modal-body {
    overflow-y: auto;
    max-height: 60vh;
}

.w-200px {
    width: 200px;
}

.fw-400 {
    font-weight: 400;
}

.indvidiual-link {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 10px;
}

    .indvidiual-link .DQ-side-menu-item a {
        margin-right: 0px;
        padding: 6px 10px;
        border-radius: 15px;
    }

/* HEADER */
.hdr {
    background: #fff;
    border: 0.5px solid #DCE3EF;
    border-radius: 14px;
    padding: 20px 32px;
}

    .hdr .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 20px;
        padding-left: 32px;
        padding-right: 32px;
        border-bottom: 0.5px solid #DCE3EF;
        margin: 0 -30px;
    }

.hdr-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: #E6F1FB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .logo-mark i {
        font-size: 20px;
        color: #185FA5;
    }

.hdr-title {
    font-size: 15px;
    font-weight: 600;
    color: #0C447C;
    line-height: 1.35;
}

.hdr-sub {
    font-size: 12px;
    color: #888780;
    margin-top: 2px;
}

.logo-wraper {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ALERT */
.alert {
    background: #f6f8fa;
    border: 0.5px solid #ebeff6;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .alert i {
        font-size: 40px;
        color: #185FA5;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .alert p {
        font-size: 13px;
        line-height: 1.65;
    }

    .alert strong {
        font-weight: 600;
    }

    .alert a {
        color: #185FA5;
    }

/* APPENDIX */
.appendix-card {
    background: #fff;
    border: 0.5px solid #DCE3EF;
    border-radius: 14px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 80px;
}



.qcard {
    background: #fff;
    border: 0.5px solid #DCE3EF;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}
.qcard-head {
    padding: 16px 20px 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.q-title {
    font-size: 20px;
    font-weight: 600;
    color: #0C447C;
    line-height: 1.4;
}
.req-tag {
    display: inline-block;
    font-weight: 600;
    vertical-align: middle;
    background: #dc3545;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
}
.q-desc {
    font-size: 12.5px;
    color: #5F5E5A;
    line-height: 1.65;
    margin-top: 4px;
}
.qcard-body {
    padding: 14px 20px 20px 20px;
}
textarea.form-control {
    width: 100%;
    border: 0.5px solid #D3D1C7;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    min-height: 90px;
    background: #FAFBFD;
    color: #2C2C2A;
    line-height: 1.65;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.q-num {
    min-width: 32px;
    height: 32px;
    background: #E6F1FB;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #185FA5;
    flex-shrink: 0;
}
.select2-container {
    width: 100% !important;
}

.form-check-input:not(:checked) {
    border: 1px solid #094a8d;
}

.form-check-input:checked {
    background-color: #094a8d;
    border-color: #094a8d;
}

#form-ptpa, #DQ-form, #answer-wrapper {
    counter-reset: step-counter;
}

.form-step-item:not(.d-none), .qcard:not(.d-none) {
    counter-increment: step-counter;
}

    .form-step-item:not(.d-none) .step-letter::before, .qcard:not(.d-none) .step-letter::before {
        content: counter(step-counter) ". ";
        font-weight: bold;
    }

#FinancialYear-error {
    display: none !important;
}

.datepicker {
    border: 1px solid #dee2e6 !important;
}

    .datepicker:focus {
        border-color: #86b7fe !important;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
    }

.check-radio-group .form-check {
    margin-bottom: 0.35rem;
}

.text-primary {
    color: var(--brand-primary) !important;
}
.text-brand-secondary {
    color:var(--brand-secondary) !important;
}
.active > .page-link, .page-link.active {
    color:#fff !important;
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}
.page-link {
    color: var(--brand-primary) !important;
}

.dropdown-item:active {
    background-color: transparent !important;
}