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

.searchable-select {
  display: inline-block;
  min-width: 225px;
  position: absolute;
	left: -3px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  outline: none;
}

.searchable-select-holder{
  padding: 7px 28px 7px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  min-height: 30px;
  box-sizing: border-box;
  /* -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); */
  /* box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); */
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.searchable-select-caret {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 36px;
  background: url(../images/select.png) 0px 12px no-repeat;
}

.searchable-select-dropdown {
  position: absolute;
  background-color: #fff;
  z-index: 4;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #efefef;
  top: 105%;
  left: 0;
  right: 0;
}

.searchable-select-input {
  margin-top: 5px;
  border: 1px solid #ccc;
  outline: none;
  padding: 4px;
  width: 100%;
  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;
}

.searchable-select-item.hover {
  background: #fce8e9;;
 
}

.searchable-select-item.selected {
  background: #fafafa;
  color: #ccc;
}
