.select2-dropdown {
    border: 0;
    background: inherit;
    color: inherit;
    transform: translateY(12px);
}

.select2-selection {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.select2-results__option {
    padding: 14px 17px;
    border-radius: 8px;
    box-shadow: -3px -3px 10px -1px rgba(255, 255, 255, 0.95), 3px 3px 10px -1px rgba(89, 34, 34, 0.4);
    background: #F8EBE4 !important;
    transition: box-shadow 0.3s ease;
}
.select2-results__option:hover,
.select2-results__option--highlighted {
    color: inherit !important;
}
.select2-results__option:hover {box-shadow: -1px -1px 5px -1px rgba(255, 255, 255, 0.95), 1px 1px 5px -1px rgba(89, 34, 34, 0.4);}

.select2-container--default .select2-results > .select2-results__options {
    overflow-y: visible;
}


/*lang*/
.select2-dropdown.lang {
    font-size: 14px;
    font-weight: 700;
}

.select2-lang + .select2 .select2-selection {
    border: 1px solid #26150E;
    border-radius: 8px !important;
    background: none;
    position: relative;
    height: 44px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.select2-lang + .select2 .select2-selection__rendered {
    padding-right: 35px;
    padding-left: 10px;
    margin-top: 2px;
}

.select2-lang + .select2 .select2-selection__arrow {
    display: inline-block;
    height: 30px; width: 30px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
}

.select2-lang + .select2 .select2-selection__arrow b {display: none;}
.select2-lang + .select2 .select2-selection__arrow::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    height: 14px; width: 14px;
    background: url(../img/arrow-select.svg) center no-repeat;
    transform: translate(-50%, -50%) rotate(180deg);
    transition: transform 0.3s ease;
}
.select2-lang + .select2-container--open .select2-selection__arrow::before {transform: translate(-50%, -50%);}

.select2-dropdown.lang .select2-results__option {
  padding: 11px 12px;
  line-height: 22px;
}

/*hide-chosen*/
.select2-dropdown.hide-chosen .select2-results__option--selected {
    display: none !important;
    pointer-events: none;
}
