span.select2-container .select2-selection--multiple.select2-selection {
    padding: 6px 9px;
    border: 2px solid #e1e4e8;
    background: #fff;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    min-height: 58px;
}
span.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #e8ebff;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 2px 9px;
    display: flex;
    gap: 0 4px;
    border: 1px solid #bdbec4;
    color: #667eea;
}
span.select2-container--default .select2-selection--multiple .select2-selection__choice span.select2-selection__choice__remove {
    color: #667eea;
}
span.select2-container--default .select2-results__option[aria-selected=true] {
    color: #667eea;
    background: #e8ebff;
    font-weight: 500;
}

span.select2-container--default .select2-results__option {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    margin-bottom: 3px;
    color: #333;
}

span.select2-container--open .select2-dropdown--below {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /*transition: all 0.3s ease;*/
    max-height: 320px;
    transform: translateY(32px);
    border: none;
}
ul.select2-results__options {
    padding: 4px;
}
span.select2-container--default .select2-results__option:hover,
span.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #f0f3ff;
    color: #667eea;
}