/* Full width */
.select2-container {
  width: 100% !important;
}

/* Single selection */
.select2-container .select2-selection--single {
  height: 36px;
  padding: 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #4d5054d6;
  font-size: 14px;
  font-weight: 500;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    padding-left: 1px;
}

/* Selected value */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4d4b4b !important;
  line-height: 1.5;
  font-weight: 400;
  font-size: 14px;
}

/* Arrow icon */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
  right: 10px;
  top: 0;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown */
.select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

/* Result options */
.select2-results__option {
  padding: 5px 12px;
  transition: background-color 0.2s;
  border-bottom: 1px solid #aeaeae4a;
  font-size: 13px;
}

/* Highlighted item */
.select2-results__option--highlighted {
  background-color: #0d6efd;
  color: #fff;
}

/* Disabled option */
.select2-results__option[aria-disabled=true] {
  color: #adb5bd;
  background-color: #f8f9fa;
}

/* Disabled input */
.select2-container--default .select2-selection--single[aria-disabled=true] {
  background-color: #e9ecef;
  border-color: #dee2e6;
  cursor: not-allowed;
}
.select2-container--default .select2-results>.select2-results__options{
  padding-bottom: 0px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
  background-color: #e4e4e49c;
}
.select2-container--default .select2-selection--multiple{
  border: 1px solid #aaaaaa61;
}