/* Chevron for Select2 multi-selects */
.select2-container--bootstrap-5 .select2-selection--multiple {
    position: relative;
    padding-right: 2em; /* Room for the chevron */
}
.select2-container--bootstrap-5 .select2-selection--multiple::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.75em;
    transform: translateY(-50%);
    width: 1em;
    height: 0.75em;
  	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}