.active-state {
  color: white;
  background-color: dodgerblue;
}
.searchable-select {
  width: 100%;
  height: 100%;
  position: relative;
}
.searchable-select .field {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  padding-right: 25px;
  padding-left: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.searchable-select .caret {
  position: absolute;
  top: 13px;
  right: 10px;
}
.searchable-select .options {
  list-style: none;
  z-index: 2;
  min-width: 99%;
  max-height: 300px;
  overflow-y: auto;
  border: solid 1px dodgerblue;
  position: absolute;
  top: 30px;
  margin: 0;
}
.searchable-select .options li {
  width: 100%;
  background-color: white;
}
.searchable-select .options button {
  width: 100%;
  padding: 0 25px 0 12px;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  background-color: white;
  background-image: none;
  text-align: left;
  white-space: nowrap;
}
.searchable-select .options button:hover {
  color: white;
  background-color: dodgerblue;
}
.searchable-select .options .active button {
  color: white;
  background-color: dodgerblue;
}
.searchable-select .options:hover li.active button {
  background-color: white;
  color: inherit;
}
.searchable-select .options:hover li.active button:hover {
  color: white;
  background-color: dodgerblue;
}
