.autocomplete-suggestions {
	text-align:left;
	cursor:default;
	border:1px solid #ebebeb;
	border-top:0;
	background:#fff;
	box-shadow:-1px 1px 3px rgba(0,0,0,.1);
	position:absolute;
	display:none;
	z-index:9999;
	max-height:254px;
	overflow:hidden;
	overflow-y:auto;
	box-sizing:border-box
}

.autocomplete-suggestions::-webkit-scrollbar {
	width: 6px;
    background-color: #f2f5f7;
    border-radius: 6px;
    opacity: .9;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
	background-color: #aaa;
	border-radius: 3px;
}

.autocomplete-suggestions::-webkit-scrollbar-track {
    background-color: transparent;
}


.autocomplete-suggestion {
	position:relative;
	padding:5px;
	line-height:30px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	font-size:1.02em;
	color:#333
}
.autocomplete-suggestion b {
	font-weight:400;
	color:#f96868
}
.autocomplete-selected{
	background:#f3f7f9
}
/* .autocomplete-suggestion.selected,
.autocomplete-suggestion.selected:hover {
	background:#f3f7f9
}
 */


.dark .autocomplete-suggestions{
	background-color: #22313a;
	border: 1px solid #2b3942;
}

.dark .autocomplete-suggestion{
	color: #ccc
}

.dark .autocomplete-selected,
.dark .autocomplete-suggestion.selected,
.dark .autocomplete-suggestion.selected:hover,
.dark .autocomplete-suggestion.selected:active,
.dark .autocomplete-suggestion.selected:focus,
.dark .autocomplete-suggestion:hover,
.dark .autocomplete-suggestion:active,
.dark .autocomplete-suggestion:focus{
	background-color: #36434c;
}