

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

.searchable-select {
    display: inline-block;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    position: relative;
    outline: none;
    text-align: center;
    z-index: 999;
}

.Time .searchable-select-holder {
    padding: 10px 6px;
    background-color: #be7707;
    color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    font-size: 14px;
    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;
    box-sizing: border-box;
    border-color: #fff transparent transparent transparent;
    top: auto;
    bottom: 8px;
    border-style: solid;
    border-width: 5px;
    margin: auto;
    right: 20px;
    display: inline-block;
}

.searchable-select-dropdown {
    position: absolute;
    background-color: #fff;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 4px;
    border-top: none;
    top: 50px;
    left: 0;
    right: 0;
    background: #f3f3f3;
}

.searchable-select-input {
    margin-top: 5px;
    border: 1px solid #ccc;
    outline: none;
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    width: 100%;
    display: none;
}

.searchable-scroll {
    margin-top: 4px;
    position: relative;
    padding-bottom: 10px;
}

.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;
}

.searchable-select-item.hover {

  background: #be7707;
    color: white;
}

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