.autocomplete-items {
  position: absolute;
  border: 1px solid var(--mt-light-gray-4);
  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,
.autocomplete-items strong {
  font-size: 1rem;
  color: #fff;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: var(--mt-light-gray-3); 
  border-bottom: 1px solid var(--mt-light-gray-4); 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: var(--mt-gray-3); 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: var(--mt-bluegreen-1) !important; 
  color: #ffffff; 
}