.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border-top: 0;
    background: #fff;
    box-shadow: 0 0 6px 0 #3a3a3a1a;
    padding: 15px;
    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 285px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    
}

.autocomplete-suggestion {
    text-overflow: ellipsis;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
}
.autocomplete-suggestion img{
    max-width: 75px;
    max-height: 75px;
}

.autocomplete-suggestion:first-child {
	border-top: none;
}
.autocomplete-suggestion.selected {
     background: #E4ECDB; 
}
