/* Select2 Fixes for Falcon / Bootstrap 5 */

.select2-container {
    font-size: 0.8125rem;
}

.select2 .selection {
    width: 100% !important;
    min-height: 29px !important;
    line-height: 29px !important;
    display: inline-block !important;
}

/* SINGLE SELECT */
.select2-container--default .select2-selection--single {
    min-height: 29px !important;
    line-height: 29px !important;
    background-color: var(--falcon-quaternary-bg) !important;
    background-image: none !important;
    border: var(--falcon-border-width) solid var(--falcon-gray-300) !important;
    border-radius: var(--falcon-border-radius) !important;
    color: var(--falcon-gray-900) !important;
    box-shadow: var(--falcon-box-shadow-inset) !important;
    display: block;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 29px;
    color: var(--falcon-gray-900) !important;
    font-size: 0.8125rem;
    padding-left: 8px;
    padding-right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    min-height: 27px;
}

/* MULTI SELECT */
.select2-container--default .select2-selection--multiple {
    background-color: var(--falcon-quaternary-bg) !important;
    background-image: none !important;
    border: var(--falcon-border-width) solid var(--falcon-gray-300) !important;
    border-radius: var(--falcon-border-radius) !important;
    min-height: 29px;
    box-shadow: var(--falcon-box-shadow-inset) !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    min-height: 22px;
    padding: 2px 5px;
    line-height: normal;
    box-shadow: var(--falcon-box-shadow-inset) !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    color: var(--falcon-gray-900) !important;
    font-family: inherit !important;
    font-size: 0.8125rem !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 1px 4px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: inline-flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    gap: 3px !important;
    background-color: var(--falcon-primary) !important;
    background-image: none !important;
    border: 1px solid var(--falcon-primary) !important;
    color: #fff !important;
    border-radius: 0.25rem !important;
    margin: 1px 0 !important;
    padding: 3px 8px !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-left: auto;
    float: none;
    align-self: center;
    order: 999;
    color: var(--falcon-gray-900) !important;
    font-size: 1rem;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    filter: brightness(0) invert(1);
    color: #fff !important;
    font-size: 0.85rem !important;
}

/* DROPDOWN LIST */
.select2-dropdown {
    background-color: var(--falcon-quaternary-bg) !important;
    border: var(--falcon-border-width) solid var(--falcon-gray-300) !important;
    border-radius: 0 0 0.375rem 0.375rem !important;
    box-shadow: var(--falcon-box-shadow) !important;
    z-index: 1060 !important;
    margin-top: -1px;
}

.select2-results__options {
    color: var(--falcon-gray-900) !important;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--falcon-primary) !important;
    background-image: none !important;
    color: #fff !important;
}

.select2-results__option--no-results,
.select2-results__message {
    background: transparent !important;
    padding: 8px !important;
    color: var(--falcon-gray-900) !important;
}

/* SEARCH INPUT IN DROP */
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: var(--falcon-quaternary-bg) !important;
    border: var(--falcon-border-width) solid var(--falcon-gray-300) !important;
    border-radius: var(--falcon-border-radius) !important;
    color: var(--falcon-gray-900) !important;
    margin: 5px 0 !important;
    font-size: 0.8125rem;
}

/* FOCUS STATE */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--falcon-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(44, 123, 229, 0.25) !important;
}