/*
Author: David Qin
E-mail: david@hereapp.cn
Date: 2014-11-05
*/

.searchable-select-hide {
  display: none;
}

.searchable-select {
  position: relative;
  width: 100%;
  height: 40px;
  margin-top: 8px;
  outline: none;
}

.searchable-select-holder{
  background: #EDF2F6;
  height: 40px;
  border-radius: 8px;
  font-size: 13px;
  color: #333538;
  line-height: 40px;
  padding-left: 10px;
}

.searchable-select-caret {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: 4px;
  background: url(../images/arrow2.png);
  background-size: 100% 100%;
}

.searchable-select-dropdown {
  position: absolute;
  width: max-content;
  width: 350px;
  background-color: #fff;
  border-radius: 8px;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.searchBox{
  padding: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}
.searchBox{
  padding: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}
.searchBox span{
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/search.png);
  background-size: 100% 100%;
}
.searchable-select-input {
  outline: none;
  padding: 9px;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
  border: 0;
  padding-left: 32px;
  border-radius: 6px;
  background: #EDF2F6;
}

.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;
  border-radius: 0 0 8px 8px;
}

.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 {
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease 0s;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  font-size: 14px;
  color: #505558;
}
.searchable-select-item:first-child {
  border: 0;
}

.searchable-select-item.hover {
  background: #E20818;
  color: #FFFFFF;
}

/* .searchable-select-item.selected {
  background: #28a4c9;
  color: white;
} */
