.autocomplete-suggestions {
	text-align: left;
    cursor: default;
    border-top: 0;
    background: #FF5100;
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 15px 10px;
}

.autocomplete-suggestion {
	position: relative;
    padding: 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(255 255 255 / 50%);
    font-size: 25px;
    line-height: 1.5;
	font-weight: 300;
	margin-bottom: 15px;
}
	
.autocomplete-suggestion b {
	/* font-weight: normal; */
	color: #fff;
	opacity: 1;
}
.autocomplete-suggestion.selected { 
background: #ffffff1f;
}

.autocomplete-suggestions::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	border-radius: 10px;
	background-color: transparent;
}

.autocomplete-suggestions::-webkit-scrollbar
{
	width: 3px;
	background-color: #f5f5f569;
	background-color: transparent;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #fff;	
	
}