div.searchable {
    width: 100%;
    position: relative;
    border-radius: 30px;
    text-align: left;
    display: inline-block;
    background-color: #fff;  
}

.searchable .input-search {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    display: block;
    font-weight: 400;
    line-height: 1.5;
    color: #1a2e46;
    background-color: #fff;
    background-clip: padding-box;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: 1px solid #ddd;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.08);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.searchable {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    display: block;
    font-weight: 400;
    line-height: 1.5;
    color: #1a2e46;
    background-color: #fff;
    background-clip: padding-box;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: 1px solid #ddd;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.08);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}




.searchable ul {
    display: none;
    position: absolute;
    z-index: 88;
    width: 100%;
    list-style-type: none;
    background-color: #fff;
    border-radius: 16px;
    border-top: none;
    max-height: 300px;
    margin-top: 10px;

    padding: 0 5px;
     border: 1px solid #ddd;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.08);

    &::-webkit-scrollbar { width: 0.5em; height: 0.1em; background: #fff; position: relative}

    &::-webkit-scrollbar-thumb {
       background-color: #ddd;
       border-radius: 20px;
        right: 10%;

       &:hover {
        /*background: rgba(255,255,255,.2);*/
       }
    } 
}
.searchable .body-searchable {
    width: 100%; height: 100%;max-height: 220px; margin-bottom: 5px; margin-top: 10px;padding-right: 5px;  overflow-y: scroll; overflow-x: hidden;

    &::-webkit-scrollbar { width: 0.5em; height: 5px; background: #fff; position: relative}

    &::-webkit-scrollbar-thumb {
       background-color: #ddd;
       border-radius: 20px;   

       &:hover {
        /*background: rgba(255,255,255,.2);*/
       }
    } 
}

.searchable ul li {
    padding: 10px;
    cursor: pointer;
    color: #1a2e46;
   font-size: 13px;

}

.searchable ul li.selected {
    background-color: #27b4fc;
    border-radius: 30px;
    color: #fff
}