.autocomplete-items {
  border: 1px solid #edface;
  background-color: #edface;
  border-radius: 4px;
  position: absolute;
  display: block;
}
.autocomplete-items div {
  height: 30px;
  line-height: 140%;
  x: 30px;
  padding: 0px 20px;
  color: #000000ad;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #fff;
  border-radius: 0px;
  cursor: pointer;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: #ffffff;
  color: #000000ad;
}
