.species-select-original {
  display: none;
}

.species-search {
  position: relative;
  width: 100%;
}

.species-search__results {
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  right: 0;

  max-height: 320px;
  overflow-y: auto;

  background: #fff;
  border: 1px solid #ccc;
  border-top: 0;
}

.species-search__result {
  display: block;
  width: 100%;
  padding: .5rem .75rem;

  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.species-search__result:hover,
.species-search__result:focus {
  background: #f2f2f2;
}

.species-search__no-results {
  padding: .5rem .75rem;
}

.species-search__selected {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

.species-search__selected-item {
  padding: .25rem .6rem;
  border: 0;
  border-radius: .25rem;
  background: #e9ecef;
  cursor: pointer;
}