#autocomplete-input {
    padding-right: 40px !important;
    min-height: 44px;
    padding-left: 12px !important;
    background: #f3f8ff;
    color: var(--text-main);
}   
.custom-input {
    font-size: 14px !important;
}   
ul#autocomplete-results {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    position: absolute;
    background: #fff;
    width: auto;
    max-height: 265px;
    overflow: auto;
    text-align: left!important;
    z-index: 100;
}   
#autocomplete-results li {
    padding: 10px 12px 10px 42px !important;
    display: block;
    align-items: left!important;
    border-bottom: 1px solid light-dark(rgb(217, 217, 217), rgb(68, 71, 70));
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .2s ease all;
} 
#autocomplete-results li:hover {
    transition: .2s ease all;
    background-color: #f3f8ff;
}   
#autocomplete-results li:before {
    background-image: url(../img/location.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 8px;
    top: 4px;
    background-size: 17px;
    z-index: 1;
    cursor: default;
}
#autocomplete-results li:after {
    content: '';
    position: absolute;
    background: #f2f2f2;
    display: inline-block;
    width: 27px;
    height: 27px;
    left: 8px;
    top: 5px;
    z-index: 0;
    border-radius: 26px;
}
#autocomplete-results li:last-child {
    border-bottom: 0;
}
.group-check .wrong-icon, .group-check .check-icon {
    top: 10px;
    right: 9px;
}
.width-100 {
    width: 100%;
}