.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.autocomplete-items {
	position: absolute;  
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	width: 970px;
	left: 50%;
	margin-left: -485px;
	padding: 30px;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 15px 0 rgba(29, 29, 27, 0.25);
	-moz-box-shadow: 0 5px 15px 0 rgba(29, 29, 27, 0.25);
	box-shadow: 0 5px 15px 0 rgba(29, 29, 27, 0.25);
	
}
.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	
	background-image: url('/includes/icons/search.jpg');
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: left center;	
	
	padding-left: 30px;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
 /*  background-color: #e9e9e9; */
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.autocomplete span {
  cursor:pointer;
  color: #000000;
  font-size: 40px;
  line-height: normal;
  visibility:hidden;
  position: absolute;
}