.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 10px; }
.autocomplete-suggestion b { font-weight: normal; color: #F20D0D; }
.autocomplete-suggestion.selected { background: #f0f0f0; }

.autocomplete-suggestion__img{
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	margin-right: 10px;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.autocomplete-suggestion{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	cursor: pointer;
	-ms-align-items: center;
	align-items: center;
	justify-content: flex-start;
}
.autocomplete-suggestion p{
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
max-width: 100%;
font-size: 14px;
line-height: 150%;
    color: #3D4249;
}
.autocomplete-suggestion__img img{
	max-width: 100%;
	max-height: 100%;
}