/*
Author: David Qin
E-mail: david@hereapp.cn
Date: 2014-11-05
*/
.searchable-select-hide {
  display: none;
}
.searchable-select {
  /* display: inline-block; */
  position: relative;
  outline: none;
  width: 275px;
  height: 36px;
  padding-left: 12px;
  line-height: 22px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  /* z-index: 99; */
}
.searchable-select-holder{
  padding: 6px 6px 6px 0;
}
.searchable-select-caret {
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border-color: black transparent transparent transparent;
  top: 0;
  bottom: 0;
  border-style: solid;
  border-width: 5px;
  margin: auto;
  right: 10px;
}
.searchable-select-dropdown {
  position: absolute;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0 0 4px 4px;
  padding: 4px;
  border-top: none;
  top: 33px;
  left: -1px;
  right: -1px;
  z-index: 10001;
}
.searchable-select-input {
  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: 200px;
  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-color: #eee;
}
.searchable-select-item.selected {
  background: #1c7aff;
  color: #fff;
}
