.searchable-dropdown {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.searchable-dropdown .dropdown-menu{ 
    border: 1px solid #ccc;
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    padding: 0.5rem 1rem;
    position: absolute;
    margin-top: 8px;
    background-color: white;
    z-index: 9999;
    max-height: 250px;
    overflow-y: scroll;
}

.searchable-dropdown input {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: none;
    outline: none;
    width: 100%;
}

.searchable-dropdown .dropdown-menu li.clickable {
    padding: 5px 10px;
    cursor: pointer;
}

.searchable-dropdown .dropdown-menu li.clickable:hover {
    color:#1176bb !important
}

.searchable-dropdown span.deleteicon {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.searchable-dropdown span.deleteicon span {
    position: absolute;
    display: block;
    right: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: #fff;
    background-color: #ccc;
    font: 13px monospace;
    text-align: center;
    line-height: 1em;
    cursor: pointer;
}
.searchable-dropdown span.deleteicon input {
    padding-right: 18px;
    box-sizing: border-box;
}

.searchable-dropdown .searchable-box{
    display: flex;
    align-items: center;
}

.searchable-dropdown .searchable-box i.search{
    padding: 19px;
    color: white;
    margin: 0;
}

.searchable-dropdown .searchable-box i.search:hover {
    cursor: pointer;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000 !important;
}

.searchable-dropdown {
    position: relative;
}

.autocomplete-spinner {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}
