<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #787885 !important;
  border-bottom: none;
  border-radius: 10px;
  overflow: hidden;
  border-top: none;
  z-index: 99;
  top: 105%;
  left: 0;
  right: 0;
  max-height: 290px;
  overflow-y: scroll;
  display: block;
  clear: both;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
/* display autocomplete-items upwards if close to bottom of window*/
.autocomplete-items.autocomplete-up {
  bottom: 100%;
  top: auto;
}



.autocomplete-items div {
  padding: 8px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #dee2e6 !important;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.autocomplete-list {
  z-index: 50;
}

.rounded-10 {
  border-radius: 10px;
}

.navbar-toggler img {
  transition: all 1s;
}

</pre></body></html>