/* select-searchable start */
.select-searchable {
    position: relative;
}
.select-searchable .inner {
    display: none;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 25.5rem;
    padding: 1rem;
    overflow: hidden;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 2px #dedede;
}
.select-searchable .inner input {
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
}
.select-searchable .inner ul {
    height: 235px;
    padding: 0;
    margin: 10px 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    overflow-y: auto;
}
.select-searchable .inner li {
    height: 2.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    list-style: none;
    cursor: pointer;
    transition: all 0.2s;
}
.select-searchable .inner li:hover {
    background-color: #dedede;
}
.select-searchable.readonly {
    cursor: not-allowed;
}
/* select-searchable end */