
#search-field {
	position: absolute;
	top: 10px;
	left: 250px;
	z-index: 4;
	width: 300px;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  width: 360px;
  display: block;
}

.input-plain {
  	padding:10px !important;
  	margin-bottom: 30px !important;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  width: 360px;
  margin-left: 0px;
  text-align: left;
  font-size: 1.2em;;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

.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; 
}