.autocomplete {
	position: relative;
	width: 100%;
}
.autocomplete input {
	width: 100%;
	padding: 12px 22px;
	font-size: 16px;
	line-height: 1;
	border: 2px solid #BFE2FF;  
	color: #000;
}
.autocomplete-list {
	position: absolute;
	margin-top: 10px;
	z-index: 100;
	width: 100%;
	background: #fff;
	border: 1px solid #754ABC;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
	max-height: 260px;
	overflow: auto;
	display: none;
	border-radius: 12px;
	padding: 8px;
}
.autocomplete-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #DCDCDC;
}
.autocomplete-list::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    background: #754ABC;
}
.autocomplete-list.show {
	display: block;
}
.autocomplete-list.show.emptyResult {
	padding: 16px 8px;
}
.autocomplete-list.show.emptyResult span {
	display: flex;
	align-items: center;
	justify-content: center;
}
.autocomplete-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 24px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 8px;
	color: rgba(0, 0, 0, 1);
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
}
.autocomplete-list li:hover,
.autocomplete-list li:active,
.autocomplete-list li.selected:hover {
	background: rgba(0, 0, 0, 0.06);
}
.autocomplete-list li.selected {

}