/* Добавляем стрелку для multiple режима */
.select2-container--krajee .select2-selection--multiple {
    position: relative;
}

.select2-container--krajee .select2-selection--multiple::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0%;
    margin-left: 10px;
    width: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 8"><path d="M0 0l6 8 6-8z" fill="%23888"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    height: 100%;
    background-position-x: 5px;
    background-size: 7px 6px;
}

.select2-selection--multiple > .select2-selection__rendered {
    width: calc(100% - 20px) !important;
}

.select2-container--krajee.select2-container--open .select2-selection--multiple::after {
    border-left: 1px solid transparent;
}

.select2-container--krajee:not(.select2-container--open) .select2-selection--multiple::after {
    border-left: 1px solid #aaa;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__clear {
    right: 24px !important;
    cursor: pointer;
}

/* Если есть кнопка очистки, сдвигаем её, чтобы не налезала на стрелку */
.select2-container--krajee .select2-selection--multiple .select2-selection__clear {
    right: 30px !important;
}

.select2-selection__clear {
    cursor: pointer !important;
}