.select2-container .select2-selection--single {
    background-clip: padding-box;
    display: block;
    width: 100%;
    padding: .6rem 2rem .6rem 1rem;
    font-size: .75rem;
    font-weight: 500;
    line-height: var(--bs-body-line-height);
    color: #959ca9;
    background-color: var(--bs-body-bg, #fefefe);
    border: 1px solid rgba(8, 60, 130, .07);
    border-radius: .4rem;
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .04);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-height: 48px;
    height: 48px;
    position: relative;
}
.select2-container .select2-selection--single::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 20px;
    height: 20px;
    pointer-events: none;
    background-image: var(--bs-form-select-bg-img, url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%2360697b' d='M22.667 12.227c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388l0-0-4.787 4.72-4.72-4.72c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388l0-0c-0.244 0.242-0.394 0.577-0.394 0.947s0.151 0.705 0.394 0.947l5.653 5.653c0.242 0.244 0.577 0.394 0.947 0.394s0.705-0.151 0.947-0.394l0-0 5.72-5.653c0.244-0.242 0.394-0.577 0.394-0.947s-0.151-0.705-0.394-0.947l-0-0z'%3E%3C/path%3E%3C/svg%3E"));
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s;
}
.select2-container--open .select2-selection--single::after {
    transform: translateY(-50%) rotate(180deg);
}
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #959ca9;
    line-height: var(--bs-body-line-height);
    font-size: .75rem;
    padding-left: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow {
    display: none !important;
}
.select2-container--open .select2-selection--single {
    border-color: rgba(8, 60, 130, .1);
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .04),unset;
}
.select2-dropdown {
    border: 1px solid rgba(8, 60, 130, .07);
    border-radius: .4rem;
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .04);
    font-size: .75rem;
    background: var(--bs-body-bg, #fefefe);
}
.select2-results__option {
    color: #60697b;
    font-size: .75rem;
    font-weight: 500;
    padding: .5rem 1rem;
}
.select2-results__option--highlighted[aria-selected] {
    background-color: #edf2fc;
    color: #3f78e0;
}
.select2-results__option[aria-selected=true] {
    background-color: #f6f7f9;
    color: #3f78e0;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #959ca9;
    opacity: 1;
}
.select2-container--default .select2-selection--single:focus {
    outline: none;
    border-color: #9fbcf0;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    color: #e2626b;
    font-size: 1.2em;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    background: transparent;
    padding: 0;
    line-height: 1;
}

/* Custom style for Select2 search box to match Sandbox theme */
.select2-container .select2-search--dropdown .select2-search__field {
    display: block;
    width: 100%;
    padding: .6rem 1rem;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.7;
    color: #60697b;
    background-color: var(--bs-body-bg, #fefefe);
    border: 1px solid rgba(8, 60, 130, .07);
    border-radius: .4rem;
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .04);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
}

.select2-container .select2-search--dropdown .select2-search__field:focus {
    border-color: #9fbcf0;
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .08);
}