/* Input field */
:root {
  --finsales-body-bg: #22252f;
  --finsales-sidebar-bg: #2b2e3b;
  --finsales-input-bg: #2f323f;
  --finsales-input-label-bg: #343747;
  --finsales-text-color: #9295a4;
  --finsales-selected-bg: #34415d;
  --finsales-selected-color: #5b73e8;
}

.select2-selection--multiple .select2-selection__rendered, .select2-container .select2-selection--multiple {
  background-color: var(--finsales-input-bg);
  font-weight: bold;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #343747;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: var(--finsales-input-bg);
  color: var(--finsales-text-color);
  padding: 0.47rem 0.75rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered{
  padding: 0.2rem 0.75rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #fafafa;
  border: var(--finsales-input-label-bg) 1px solid;
}

/* Around the search field */
.select2-search {

}

/* Search field */
.select2-search input {

}

/* Each result */
.select2-results {
  background-color: var(--finsales-input-bg);
  color: var(--finsales-text-color);
}

.select2-dropdown {
  border: var(--finsales-input-label-bg) 1px solid;
}

/* Higlighted (hover) result */
.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #5b73e8;
  color: #fff;
}

/* Selected option */
.select2-container .select2-results__option[aria-selected=true] {
  background-color: var(--finsales-selected-bg);
  color: var(--finsales-selected-color);
}