/* Select2 @todo optimize */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    /* color: #212529; */
    font-size: .875rem;
    min-height: 31px;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    font-size: .875rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    /* color: #a9a9a9; */
    color: #757575;
}

.select2-results__option {
    font-size: .875rem;
}

/* Bootstrap .form-floating  */
.form-floating .select2 {
    /* top: 28px; */
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.5rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border: 1px solid #ced4da;
    font-size: .875rem !important;
    border-radius: 0.25rem;
    background-color: #fff;
}

.form-floating .select2 *:focus {
    outline: none;
}

.form-floating .select2-container--default .select2-selection--single {
    border: none !important;
    /* border-color: #ced4da !important; */
    min-height: revert;
}

.form-floating .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 28px !important;
}

.form-floating.select2-focus {
    border: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
    border-radius: 0.25rem;
}

/* dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #ced4da !important;
}

.select2-dropdown {
    border-color: #ced4da !important;
}

.select2-dropdown--below {
    border-top: 1px solid #ced4da !important;
    margin-top: -1px;
}

.select2-search__field {
    outline: none !important;
    color: #757575;
}

.select2.select2-container.select2-container--default.select2-container--disabled {
    background-color: #e9ecef;
}

/* Select2 readonly */
select[readonly].select2-hidden-accessible+.select2-container {
    pointer-events: none;
    touch-action: none;
    background-color: #dfe0e1;
}

select[readonly].select2-hidden-accessible+.select2-container .select2-selection {
    background-color: #dfe0e1;
}

/* select[readonly].select2-hidden-accessible, */
select[readonly].select2-hidden-accessible+.select2-container .select2-selection__clear {
    display: none;
}

/* z index */
.select2-z-index {
    z-index: 999999;
}