.searchable-select-hide {
  display: none;
}

.searchable-select {
  display: inline-block;
  min-width: 120px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  position: relative;
  margin-top: 10px;
  cursor: pointer;
  outline: none;
}

.searchable-select-holder:focus {
  border: 1px solid #ccc;
  outline: none;
}

.searchable-select-holder {
  padding: 6px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-height: 42px;
  /* transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; */
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  transition: all 0.3s;
  font-weight: 600;
}

.searchable-select-caret {
  position: absolute;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
  display: inline-block;
  padding: 4px;
  top: -5px;
  bottom: 0;
  border-style: solid;
  border-width: 5px;
  margin: auto;
  right: 15px;
}

.searchable-select-dropdown {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 999;
}

.searchable-select-input {
  outline: none;
  border: 1px solid #ccc;
  border-right-width: 0px;
  border-left-width: 0px;
  outline: none;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
  line-height: 14px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  border-radius: 0px;
  -webkit-appearance: none;
  /* Remove the settings in Safari and Chrome running in iOS */
  -moz-appearance: none;
  /* FireFox */
  appearance: none;
}

.searchable-scroll {
  position: relative;
}

.searchable-scroll.has-privious {
  padding-top: 16px;
}

.searchable-scroll.has-next {
  padding-bottom: 16px;
}

.searchable-has-privious {
  top: 0;
}

.searchable-has-next {
  bottom: 0;
}

.searchable-has-privious,
.searchable-has-next {
  height: 16px;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  z-index: 10;
  background-color: white;
  line-height: 8px;
  cursor: pointer;
  display: none;
}

.searchable-select-items {
  max-height: 400px;
  overflow-y: scroll;
  position: relative;
}

.searchable-select-items::-webkit-scrollbar {
  display: none;
}

.searchable-select-item {
  padding: 5px 5px;
  cursor: pointer;
  min-height: 30px;
  box-sizing: border-box;
}

.searchable-select-item.hover {
  background: #555;
  color: white;
}

.searchable-select-item.selected {
  background: #28a4c9;
  color: white;
}