.multi-select-wrapper .select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 38px;
    padding: 4px;
    display: flex;
    align-items: center;
}

.multi-select-wrapper .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #c8337c;
    box-shadow: 0 0 0 2px rgba(200, 51, 124, 0.1);
}

.multi-select-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #c8337c;
    border: none;
    border-radius: 3px;
    color: #fff;
    padding-top: 0px;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 13px;
    line-height: 1;
}

.multi-select-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    padding: 0px;
    position: relative;
    bottom: 3.2px;
    top: 0;
    margin-left: 0;
    line-height: 1;
}

.multi-select-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffddec;
    background: transparent;
}

.multi-select-wrapper .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #c8337c;
}

