/* input */
span.select2-selection.select2-selection--multiple,
span.select2-container--default .select2-selection--single {
  min-height: 42px;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  border-color: #d1d5db;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
}

.dark span.select2-selection.select2-selection--multiple,
.dark span.select2-container--default .select2-selection--single {
  background-color: #4b5564;
  border-color: #6b7280;
}

/* placeholder */
.select2-container .select2-selection--multiple .select2-search__field::placeholder,
.select2-container--default .select2-selection--single .select2-search__field::placeholder {
  display: flex;
  align-items: center;
  /* line-height: 30px; */
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  color: #787878;
}

.dark .select2-container .select2-selection--multiple .select2-search__field::placeholder,
.dark .select2-container--default .select2-selection--single .select2-selection__rendered::placeholder {
  color: #c5c5c5;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: Poppins, sans-serif;
  font-size: .875rem;
}

.dark .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #c5c5c5;
}

.select2-selection__arrow {
  display: none;
}

.select2-container .select2-selection--multiple .select2-search__field {
  margin-top: 0;
  /* height: 100% !important; */
  display: flex;
  align-items: center;
}

/* options */
.select2-results__options {
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  color: #787878;
}

.dark .select2-results__options {
  background-color: #4b5564;
  color: #c5c5c5;
}

/* Opções hover */
.select2-results__option .select2-results__option--selectable .select2-results__option--highlighted {
  background-color: #f9fafb;
}

.dark .select2-results__option--highlighted {
  background-color: #6b7280 !important;
}

/* Opções selecionadas */
.select2-selection__choice {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4e4e4e;
  height: 30px;
  line-height: 30px;
  /* background-color: #9CA3AF !important; */
}

.dark .select2-selection__choice {
  color: #374151 !important;
  background-color: #D1D5DB !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-right: none !important;
  padding: 0 8px !important;
}

.dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #374151 !important;
}

.select2-selection__choice__display {
  padding-left: 4px !important;
}

.dark .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #374151 !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #d1d5db !important;
}

.dark .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #6b7280 !important;
}

/*

/* Remover o cursor piscando no select2 após seleção */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  cursor: pointer !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  cursor: pointer !important;
}


.select2-selection,
.select2-selection__rendered,
.select2-selection__arrow,
.select2-selection__choice,
.select2-search__field {
  caret-color: transparent;
}


@keyframes select2-fade-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select2-dropdown {
  animation: select2-fade-in 0.2s ease-out forwards;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

span.select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #526484;
  line-height: 1.25rem;
  padding: 0.4375rem calc(2.125rem + 2px) 0.4375rem 1rem;
}


.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #f9fafb !important;
}

.dark .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #4b5564 !important;
}


.select2-search__field {
  font-family: Poppins, sans-serif;
  font-size: .875rem;
}

.dark .select2-search__field {
  color: #c5c5c5;
}

.select2-search__field::placeholder {
  color: #787878;
}

.select2-search.select2-search--dropdown .select2-search__field {
  font-family: Poppins, sans-serif;
  font-size: .875rem;
}

.dark .select2-search.select2-search--dropdown .select2-search__field {
  color: #c5c5c5;
  background-color: #4b5564;
  outline: none;
}

.select2-search.select2-search--dropdown .select2-search__field::placeholder {
  color: #787878;
}

.dark .select2-search.select2-search--dropdown {
  background-color: #4b5564;
}

input.select2-search__field:focus {
  outline: none;
  border-color: #6b7280;
}

.dark span.select2-dropdown.select2-dropdown--below {
  border-color: #6b7280 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single{
  background-color: #f9fafb !important;
}

.dark .select2-container--default.select2-container--disabled .select2-selection--single{
  background-color: #4b5564 !important;
}