.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid rgba(160, 160, 160, 0.25);
    border-top: 0;
    background: #fff;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
    /* core styles should not be changed */
    padding: 2rem 1rem 2rem 2rem;
    position: absolute;
    opacity: 0;
    z-index: -1;
    max-height: 350px;
    box-sizing: border-box;
}
.autocomplete-suggestion {
    font-size: 1rem;
    text-overflow: ellipsis;
    cursor: pointer;

}
.autocomplete-suggestion img{
    max-width: 90px;
    max-height: 90px;

}
.autocomplete-suggestion .media-body span {
    font-family: 'Bariol';
}
.autocomplete-suggestion .price-search {
    margin-top: 1rem;
}
.autocomplete-suggestion:first-child {
	border-top: none;
}
.autocomplete-suggestion.selected {
    background: rgba(160, 160, 160, 0.25);
}
