/* * { box-sizing: border-box; } */

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  height: 100%;
  display: inline-block;
}

.autocomplete-items {
    backdrop-filter: blur(0.25rem);
    box-shadow: 0px 0px 15px 2px rgb(255, 255, 255);
  position: absolute;
  border: 2px solid #ffffff;
  border-bottom: none;
  border-top: none;
  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: rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid #ffffff;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background: rgba(255, 255, 255, 0.2);
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}