.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff !important;
    border: 1px solid #0d6efd !important;
    cursor: default !important;
    float: left !important;
    margin-right: 5px !important;
    margin-top: 5px !important;
    padding: 0 5px !important;
    border-radius: 20px !important;
    font-size: 16px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid #dee2e6;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-dropdown {
    background-color: white;
    border: 0px solid white !important;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 1051;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
    background-color: white;
    border: 1px solid black;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd;
    color: white;
}