#safi-autocomplete-search-results {
    background: #fff;
    border: 1px solid #26A401;
    border-radius: 25px;
    display: none;
    margin-top: 2px;
    max-height: 400px;
    min-width: 300px;
    overflow: scroll;
    padding: 20px;
    position: absolute;
    white-space: nowrap;
    width: 100%;
    z-index: 10000;
}

a.autocomplete-single-product {
    align-items: center;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    padding: 15px 10px;
    color: #000;
    text-decoration: none;
}

a.autocomplete-single-product:hover {
    background: #ddd;
    cursor: pointer;
}

.autocomplete-single-product-image {
    display: inline-block;
    flex-shrink: 0;
    height: 60px;
    position: relative;
    width: 60px;
}

.autocomplete-single-product-image img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.autocomplete-single-product-name {
    display: block;
    padding-left: 10px;
    width: calc(100% - 60px);
    white-space: normal;
}