/*
Author: David Qin
E-mail: david@hereapp.cn
Date: 2014-11-05
*/
.searchable-select-hide {
  display: none;
}
.searchable-select {
  height: 100%;
  width: 100%;
  color: #b4b4c4;
  outline: none;
  background: none;
  position: relative;
}
.searchable-select-holder {
  padding:0.15rem 0.15rem 0.15rem  0.35rem;
  background-image: none;
  border-radius: 0.06rem;
  min-height: 100%;
  flex: 1;
  display: flex;
/*  text-indent: 0.06rem;*/
  align-items: center;
  box-sizing: border-box;
}
.searchable-select-caret {
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border-color: #ccc transparent transparent transparent;
  top: 50%;
  bottom: 0;
  border-style: solid;
  border-width: 7px;
  margin: auto;
  right: 5%;
  transform: translateY(-50%);
}
.searchable-select-dropdown {
  z-index: 100;
  position: absolute;
  background-color: #ffffff;
  border: 0.01rem solid #d0dbfb;
  border-bottom-left-radius: 0.08rem;
  border-bottom-right-radius: 0.08rem;
  padding: 0.06rem;
  border-top: none;
  right: 0;
  width: 100%;
  box-shadow: rgb(186 203 253 / 50%) 0 0.16rem 0.2rem;
}
.searchable-select-input {
  margin-top: 0.05rem;
  border: 1px solid #ddd;
  color: #333;
  outline: none;
  padding: 0.04rem !important;
  box-sizing: border-box;
  width: 100%;
}
.searchable-scroll {
  margin-top: 4px;
  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;
}
.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;
  transition: all 1s ease 0s;
  text-align: center;
}
.searchable-select-item.hover {
  background: #b18e14;
  color: white;
}
.searchable-select-item.selected {
  background: #1e80ff;
  color: white;
}