.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
#autocomplete-list {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  left: -19px;
  right: -50px;
  color: black;
  background-color: #fff;
  padding: 10px 0;
}
@media screen and (min-width: 1030px) {
  #autocomplete-list {
    right: -100px;
  }
}
.autocomplete-items {
  position: absolute;
  z-index: 999;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 5px 20px;
  cursor: pointer;
  background-color: #fff;
  font-weight: 400;
  text-transform: none;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: #e9e9e9 !important;
}
