.autocomplete-suggestions {
    text-align: left;
	cursor: default;
    text-transform: uppercase;
	background-color: rgba(0,0,0,.9);
    padding: 15px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	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: 0 .6em;
	line-height: 23px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #ddd;
	min-width: max-content;
}
.autocomplete-suggestion b {
	font-weight: normal;
	color: #dc3545;
}
.autocomplete-suggestion.selected {
	background-color: rgba(255,255,255,.05);
}
