/* custom styling for select 2*/
.select2-container--default .select2-selection--single {
    width: 100%;
    height: 40px;
    padding: 2px 8px;
    padding-right: 20px;
    background-color: rgb(255, 255, 255);
    background-image: none;
    border: 1px solid rgb(117,117,117);
    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--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single
{
    border: 1px solid black;
    box-shadow: 0 0 0 1px black;
}

.select2-container--open.select2-container--default .select2-selection--single,
.select2-container--focus.select2-container--default .select2-selection--single {
    outline: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0px;
    right: 10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    color: black;
}

.select2-search__field:focus {
    outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgb(225,225,225);
    color: black;
}

.select2-dropdown {
    border: 1px solid #898988;
    border-radius: 0px;
    background: rgb(240,240,240);
    margin-top: 1px;
}


/* hide the clear option and dropdown arrow to make it look more like a search bar */
.select2-selection__clear {
    display: none !important;
}

.select2-selection__arrow {
    /*display: none !important;*/
}

/* hide empty results in the select2 results container */
.select2-results__option:empty {
    display: none !important;
}

.select2-results__option {
    margin: 0px !important;
    padding: 10px 25px;
}

.select2-search--dropdown {    
    padding: 7.5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
    font-size: 18px;
}

.select2-matched-word {
    font-weight: bold;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid black;
    background: rgb(240,240,240);
    font-size: 16px;
    padding: 7.5px;

    /* explicity set the border radius to fix an issue with curved edges on iPhone safari */
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -khtml-border-radius: 0px;
    -webkit-appearance: none;
}

/* custom arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: unset;
    height: 100%;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: unset;
    left: unset;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
        font-family: h3g-icons;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e921";
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
    content: "\e927";
}


.select2-container--open .select2-selection__placeholder {
    color: black !important;
}

.select2-container--open .select2-dropdown--above {
    margin-top: -1px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #5e5e5e;
    font-size: 16px;
}