span .select2-search {
  display: contents !important;
}
.select2-container--default .select2-results__option {
  padding-left: 3rem;
  position: relative;
  line-height: 1.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  max-width: 90%;
}

.select2-container--default .select2-results__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1px solid #ADB5BD;
  border-radius: 0.25rem;
  background-color: #fff;
  box-sizing: border-box;
}

.select2-container--default
.select2-results__option.select2-results__option--selected::before {
  background-color: #0D6EFD;
  border-color: #0D6EFD;
}

.select2-container--default
.select2-results__option.select2-results__option--selected::after {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 55%;
  transform: translate(-50%, -54%);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.select2-container--default .select2-selection--multiple {
  position: relative;
  padding-right: 2rem; 
}

.select2-container--default .select2-selection--multiple::after {
  content: "▾";
  position: absolute;
  right: 3px;
  top: -1px;
  transform: rotate(0deg);
  font-size: 30px;
  color: #6C757D;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.select2-container--open .select2-selection--multiple::after {
  top: -2px;
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  right: 20px !important;
  top: -1px !important;
  font-size: 20px;
  font-weight: 100;
}

.select2-search__field {
  padding: 3px 0px 0px 0px !important;
  height: 30px !important;
}

.select2-selection__choice--summary {
  background-color: #0D6EFD;
  border: none;
  color: black;
  border-radius: 10rem;
  padding: 0.15rem 0.6rem;
}

.select2-selection__choice--summary .select2-selection__choice__remove {
  border: none;
  color: rgba(255,255,255,0.8);
  margin-right: 0.25rem;
  cursor: pointer;
}

.select2-selection__choice--summary .select2-selection__choice__remove:hover {
  color: #fff;
}