.typeahead-standalone {
  text-align: left;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.typeahead-standalone .tt-input {
  z-index: 1;
  background: transparent;
}
.typeahead-standalone .tt-hint {
  cursor: default;
  user-select: none;
  background: #fff;
  color: #767676;
  visibility: hidden;
  z-index: 0;
  margin-top: 46px;
}
.typeahead-standalone .tt-list {
  background: #fff;
  z-index: 1000;
  box-sizing: border-box;
  overflow: auto;
  border: 1px solid rgba(50, 50, 50, 0.6);
  border-radius: 4px;
  box-shadow: 0 10px 30px #0000001a;
  position: absolute;
  max-height: 70vh;
}
.typeahead-standalone .tt-list.tt-hide {
  display: none;
}
.typeahead-standalone .tt-list div[class^="tt-"] {
  padding: 0 4px;
}
.typeahead-standalone .tt-list .tt-suggestion:hover,
.typeahead-standalone .tt-list .tt-suggestion.tt-selected {
  background: #55acee;
  cursor: pointer;
}
.typeahead-standalone .tt-list .tt-suggestion .tt-highlight {
  font-weight: 900;
}
.typeahead-standalone .tt-list .tt-group {
  background: #eee;
}
.typeahead-standalone .tt-list .tt-header h2 {
  text-align: center;
}
.typeahead-standalone .tt-list .tt-header h2 span {
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.2px;
  font-weight: 600;
}
.typeahead-standalone .tt-list .tt-suggestion {
  padding: 6px 10px !important;
  border-bottom: 1px solid #eee;
  line-height: 1.1;
}
