﻿.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: 0;
    overflow: hidden !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.select2 {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: 0;
    flex-grow: 1;
    min-width: 0;
}

    .select2.select2-container--disabled {
        background: #e9ecef;
    }

    .select2 .selection {
        flex-grow: 2;
        height: 100%;
        min-width: 0;
    }

    .select2 .select2-selection {
        display: flex;
        gap: .5rem;
        align-items: center;
        padding-left: 1rem;
        height: calc(2.4375rem + 2px);
        border: 1px solid #ced4da;
        border-radius: 2px;
        outline: 0;
    }

        .select2 .select2-selection.select2-selection--multiple {
            flex-wrap: wrap;
            padding: 0;
            height: 100%;
        }

    .select2:not(.select2-container--disabled).select2-container--focus .select2-selection--single {
        border-color: #689de8;
    }

    .select2.select2-container--open .select2-selection--single {
        background-color: #f8f9fa;
        border: 1px solid #ced4da;
    }

    .select2 .select2-selection .select2-selection__rendered {
        position: relative;
        display: flex;
        flex-grow: 2;
        min-width: 0;
        list-style: none;
        margin: 0;
        padding: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .select2 .select2-selection .select2-selection__rendered .select2-selection__placeholder {
            color: #8d9ba9;
        }

        .select2 .select2-selection .select2-selection__rendered .select2-selection__clear {
            order: 1000000;
            padding: 0 .5rem;
        }

    .select2.select2-container--disabled .select2-selection .select2-selection__rendered .select2-selection__clear {
        display: none;
    }

    .select2 .select2-selection--single .select2-selection__rendered .select2-option {
        flex-grow: 2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .select2 .select2-selection--single .select2-selection__arrow {
        height: 100%;
        min-width: calc(2.4375rem + 2px);
        background-color: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ced4da;
        z-index: 1;
    }

        .select2 .select2-selection--single .select2-selection__arrow > b {
            border-color: transparent;
            border-top-color: rgb(89, 97, 103);
            border-style: solid;
            border-width: 0.35rem;
            border-bottom-width: 0px;
        }

    .select2.select2-container--open .select2-selection--single .select2-selection__arrow {
        border-left-color: transparent;
    }

        .select2.select2-container--open .select2-selection--single .select2-selection__arrow > b {
            border-top-width: 0px;
            border-bottom-width: 0.35rem;
            border-top-color: transparent;
            border-bottom-color: rgb(89, 97, 103);
        }

.select2-container .select2-dropdown {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    z-index: 1060;
    box-shadow: 0 1rem 2.25rem rgba(50,50,93,0.03), 0 0.3125rem 1rem rgba(0,0,0,0.12);
    border-color: #ced4da;
    overflow-x: hidden;
}

.select2-container .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container .select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-container .select2-search--dropdown {
    display: flex;
    background-color: #f8f9fa;
    padding: .5rem;
    border-bottom: 1px solid #ced4da;
}

.select2-container .select2-search .select2-search__field {
    border: 1px solid transparent;
    border-radius: 2px;
    color: #596167;
    outline: 0;
    width: 100% !important;
    height: 100%;
}

    .select2-container .select2-search .select2-search__field::-webkit-input-placeholder {
        color: #8d9ba9;
        opacity: 1
    }

.select2-container .select2-search--dropdown .select2-search__field {
    padding: .3rem;
    border: 1px solid #ced4da;
}

    .select2-container .select2-search--dropdown .select2-search__field:focus {
        border-color: #689de8;
    }

.select2-container .select2-results__options {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 204px;
    overflow-y: auto;
}

.select2-container .select2-results__option {
    cursor: pointer;
    padding: 0.375rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.select2-container .select2-results__option--highlighted {
    background-color: #f8f9fa;
    font-weight: 600;
}

.select2-container .select2-results__option .select2-option {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1.5rem;
    gap: 0.5rem;
}

.select2-container .select2-results__option[aria-selected=true] {
    font-weight: 600;
}

    .select2-container .select2-results__option[aria-selected=true] .select2-option:after {
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        content: "";
        color: var(--success);
        right: 0;
    }

.select2 .select2-selection--multiple .select2-selection__rendered {
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: .5rem 2rem .5rem 1rem;
    max-height: 2.4375rem;
    overflow: hidden;
    position: static;
    overflow-y: auto;
}

    .select2 .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
        position: absolute;
        right: .5rem;
    }

.select2 .select2-selection--multiple .select2-selection__choice {
    display: flex;
    gap: .5rem;
    color: #596167;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 2px;
    cursor: default;
    padding: 0 .5rem;
    white-space: nowrap;
    max-width: 95%;
    overflow: hidden;
}

    .select2 .select2-selection--multiple .select2-selection__choice .select2-option {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .select2 .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
        order: 1000000;
    }

.select2 .select2-selection--multiple .select2-search--inline {
    flex: 1 1 min-content;
}

.select2-option-flag {
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .select2-option-flag img {
        box-shadow: 0 0 2px black;
        display: flex;
        padding: 2px;
        width: 25px;
        margin-left: 1px;
    }

.select2-option-hint {
    color: var(--orange);
    font-size: smaller;
}


select.is-invalid + .select2:not(.select2-container--open) .select2-selection--single {
    border-color: var(--danger-dark);
}
