.select2-container {
    min-width: 90px;
    color: #333;
}

.select2-container .select2-selection {
    height: 40px;
    border: 1px solid #D1D1D1;
    border-radius: 0;
    transition: border-color 300ms ease;
}

.select2-container .select2-selection:focus {
    outline: none;
}

.select2-container .select2-selection .select2-selection__rendered {
    padding: 0 35px 0 15px;
    color: inherit;
    line-height: 38px;
}

.select2-container .select2-selection .select2-selection__arrow {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: transform 300ms ease, color 300ms ease;
}

.select2-container .select2-selection .select2-selection__arrow::before {
    font-family: 'icomoon';
    font-size: 12px;
    content: '\e903';
}

.select2-container .select2-selection .select2-selection__arrow b {
    display: none;
}

.select2-dropdown {
    min-width: 42px;
    padding: 5px 0 10px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 1px 16px rgba(49, 49, 49, 0.08);
    color: #313131;
    font-size: 15px;
    line-height: normal;
}


.select2-container--open .select2-selection,
.select2-container--focus .select2-selection {
    border-color: #ffda3f;
}

.select2-container--open .select2-selection .select2-selection__arrow  {
    transform: rotate(180deg);
    color: #ffda3f;
}

.select2-container--open .select2-dropdown--below {
    margin-top: 8px;
}

.select2-container--open .select2-dropdown--above {
    margin-top: -8px;
}

.select2-container .select2-results__option {
    padding: 10px;
    white-space: nowrap;
}

.select2-container .select2-results__option[aria-selected=true] {
    background: none;
    color: inherit;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #f5f5f5;
    color: inherit;
}


/* custom select link */
.custom-select-link + .select2-container {
    min-width: auto;
    color: rgba(51, 51, 51, .6);
}

.custom-select-link + .select2-container .select2-selection {
    height: auto;
    border: none;
}

.custom-select-link + .select2-container .select2-selection .select2-selection__rendered {
    padding-left: 0;
    padding-right: 16px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.4px;
}

.custom-select-link + .select2-container .select2-selection .select2-selection__arrow {
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
}