.autocomplete-suggestions {
    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 245px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;

	/* custom styles */
    background: rgba(255,255,255,0.8);
    text-align: left; 
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.08);
    cursor: default;
}
.autocomplete-suggestion {
	position: relative;
	padding: 8px 16px;
	color: #131420;
	font-size: 17px;
	line-height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.autocomplete-suggestion b {
	color: #131420;
	font-weight: normal;
}
.autocomplete-suggestion.selected {
	background: #F9F9F9;
}
