

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

.searchable-select {
    display: inline-block;
    width: 99%;
    font-size: 12px;
    line-height: 1.428571429;
    color: #000;
    vertical-align: middle;
    position: relative;
    outline: none;
    margin-left: -2%;
}

.searchable-select-holder{
    background: #fff;
    background-image: none;
    border: 1px solid #ededed;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    text-align: left;
    line-height: 40px;
    padding-left: 10px;
    border-radius: 10px;
}

.searchable-select-caret {
    position: absolute;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border-color: #777777 transparent transparent transparent;
    top: 0;
    bottom: 0;
    border-style: solid;
    border-width: 5px;
    margin: auto;
    right: 15px;
}

.searchable-select-dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ededed;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 4px;
    border-top: none;
    top: 31px;
    left: 0;
    right: 0;
    z-index: 99;
}

.searchable-select-input {
	margin-top: 5px;
    border: 1px solid #ededed;
    outline: none;
    padding: 7px;
    box-sizing: border-box;
    width: 100%;
    left: 0px;
    float: left;
    border-radius: 10px;
}

.searchable-scroll {
    margin-top: 4px;
    position: relative;
    float: left;
    width: 100%;
  
}

.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: 28px;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
    z-index: 10;
    background-color: #ffffff;
    line-height: 8px;
    cursor: pointer;
    font-size: 38px;
}

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

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

.searchable-select-item {
    min-height: 38px;
    line-height: 38px;
    box-sizing: border-box;
    padding-left: 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 2px;
}

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

.searchable-select-item.selected {
  background: #23df94;
  color: white;
}
