/* custom styling for select 2*/
.select2-container--default .select2-selection--single {
    width: 100%;
    height: 34px;
    padding: 2px 8px;
    padding-right: 20px;
    background-color: rgb(255, 255, 255);
    background-image: none;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    display: block;
    font-size: 14px;
    line-height: 1.42857;
    color: rgb(85, 85, 85);
}

.select2-container--open.select2-container--default .select2-selection--single,
.select2-container--focus.select2-container--default .select2-selection--single {
    border-color: rgb(102, 175, 233);
    outline: 0px;
    box-shadow: rgb(0 0 0 / 8%) 0px 1px 1px inset, rgb(102 175 233 / 60%) 0px 0px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0px;
    right: 0px;
}

.select2-search__field:focus {
    outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgb(48, 113, 169);
    color: white;
}
.select2-dropdown {
    border: 1px solid rgb(204, 204, 204);
    border-radius: 0px;
}