@charset "utf-8";

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: none;
  border-bottom: none;
  border-top: none;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	overflow-y: scroll;
	max-height: 30vh;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: white;
  border-bottom: none;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: orange;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: darkorange!important;
  color: #ffffff;
}
