/* custom styling for select 2*/

.select2-container--default .select2-selection--single {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 12px 1px;
    color: rgb(85, 85, 85);
    display: block;
    font-size: 18px;
    min-height: 44px;
    max-height: 56px;
    height: unset;
    line-height: 19.95px;
    padding: 18px 17px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s, transform 0.1s ease-in-out 0s;
    width: 100%;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #E6E6E6;
    border-color: #E6E6E6;
}

.select2-container--default.select2-container--disabled .select2-selection--single:hover {
    cursor: not-allowed;
}

.select2-container--focus:focus:not(.select2-container--disabled),
.select2-container--focus:focus-within:not(.select2-container--disabled),
.select2-container--focus:focus-visible:not(.select2-container--disabled),
.select2-container--open:not(.select2-container--disabled) {
    border-radius: 5px;
    outline: 1px solid #4395F1;
    outline-offset: 3px;
}

.select2-selection:focus, .select2-selection--single:focus,
.select2-selection:focus-within, .select2-selection--single:focus-within,
.select2-selection:focus-visible, .select2-selection--single:focus-visible {
    border: 1px solid #CFCFCF;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    content: url(/help/devicesupport/resources/images/int/chevron-down.svg);
    height: unset;
    top: calc(50% - 5px);
    width: unset;
}

.select2-search--dropdown {
    padding: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #CFCFCF;
    border-radius: 4px;
    font-size: 18px;
    height: 46px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    text-overflow: unset;
    padding-left: unset;
    line-height: unset;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    backdrop-filter: blur(1px);
    height: 100%;
    top: 0px;
    right: 18px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: unset;
    border-color: unset;
    border-width: unset;
}

.select2-search__field:focus {
    outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4395F1;
    color: #FFFFFF;
}

.select2-container--default .select2-results__option--selected {
    background-color: #CFCFCF;
}

.select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-container--open .select2-dropdown--above {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-container--open .select2-selection__arrow b {
    transform: rotate(180deg);
}

.select2-dropdown {
    border: 1px solid rgb(204, 204, 204);
    border-radius: 0px;
}

.select2-results {
    font-size: 18px;
}

.select2-results__option {
    border-bottom: 1px solid #CFCFCF;
    padding: 18px 16px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option, .select2-search__field {
    color: #111411;
}

@media (max-width: 739px) {
    .select2-container--default .select2-selection--single {
        font-size: 16px;
    }
}