.autocomplete-items {
    position: sticky;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
	overflow-y: scroll;
    max-height: 219px;
}
#userlocation {
	background-color: rgb(255, 255, 255);
	background-clip: padding-box;
	border-radius: 4px;
	color: rgb(0 96 141);
	display: block;
	height: 50px;
	overflow: hidden;
	line-height: 37px;
	padding: 1px 5px 0px 12px;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	font-size: 18px;
    font-weight: 600;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}