/*controls the colour of the picked items*/
.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice {
  font-size: 1.6rem;
  border-radius: 1rem;
  background-color: #38b54a;
  border-color: #38b54a;
  color: #fff;
}
/*controls the select contianer style*/
.select2-container--bootstrap-5 .select2-selection {
  box-shadow: 0px 0px 4px #00000034;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  width: 100%;
  padding: 12px;
  font-size: 1.6rem;
}

/* Student Document Type height had half the height of the other inputs */
.select2-selection--single{
  height: 200%!important;
}

/*controls the remove from list button of selected items*/
.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice
  .select2-selection__choice__remove {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/.75rem auto no-repeat;
}

/*controls the select option results that are selected (in the menu)*/
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option[aria-selected="true"] {
  background-color: #38b54a;
}
/*controls the options in the menu*/
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option {
  font-size: 1.5rem;
}

/*just to match other inputs*/
.select2-container--bootstrap-5 {
  margin-top: 0.25rem;
  margin-bottom: 38px;
}
