﻿/* select input height */
.select2-container .select2-selection--single {
    height: 42px !important;
}

/* align-items-center text select input */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important;
}

/* align-items-center arrow select input */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}

/* dropdown list height */
.select2-container--default .select2-results > .select2-results__options {
    max-height: 300px;
}

/* dropdown list item default */
.select2-container--default .select2-results__option {
    font-weight: 700;
    transition: 0.1s;
}

/* dropdown list item when hovered */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme-color-hover); /* or any color you like */
    color: var(--theme-color-text-2);
}
