.dropdown-open {
  justify-content: space-between;
  background-color: #F0F0F0;
  border: 1px solid gray;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  max-height: 999rem;
  min-height: 1.5rem;
}
.dropdown-open.disabled {
  border: 1px solid darkgray;
}
.dropdown-open.disabled .selected-name {
  color: gray;
  user-select: none;
}
.dropdown-open.open {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.dropdown-open div {
  margin-left: 4px;
}
.searchable-select {
  position: relative;
}
.searchable-select .selected-name {
  white-space: pre-wrap;
  user-select: none;
}
.searchable-select.autofill .dropdown-open {
  background-color: lightgreen;
}
.searchable-select .searchable-select-search {
  resize: none;
  outline: 0;
  border: 0;
  width: 100%;
}
.searchable-select-search-holder {
  width: 93%;
  display: flex;
  justify-content: center;
  margin: 7px auto;
  border: 1px solid gray;
}
.selected.disabled {
  color: gray;
}
.searchable-select-search:focus {
  border: 0;
  outline: 0;
}
.searchable-dropdown-holder {
  position: relative;
}
.searchable-dropdown {
  position: absolute;
  width: 100%;
  z-index: 5;
  background-color: white;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
}
.searchable-results {
  max-height: 300px;
  overflow: auto;
}
.searchable-results::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}
.searchable-results::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}
.searchable-results::-webkit-scrollbar-thumb {
  background-color: royalblue;
}
.searchable-dropdown-option {
  white-space: normal;
  border-top: 1px solid gainsboro;
  padding: 5px;
}
.searchable-dropdown-option.active {
  background-color: firebrick;
  color: white;
}
.searchable-dropdown-option:first-child {
  border-top: 0;
}
.searchable-dropdown-option:hover {
  background-color: darkgray;
  color: white;
  cursor: pointer;
}
