autosuggest-dropdown {
  position: relative;
}
autosuggest-dropdown input-field ul:not(.errors)::-webkit-scrollbar {
  width: 8px;
}
autosuggest-dropdown input-field ul:not(.errors)::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: calc(var(--border-radius) / 2);
}
autosuggest-dropdown input-field ul:not(.errors)::-webkit-scrollbar-thumb {
  border-radius: calc(var(--border-radius) / 2);
  background: linear-gradient(var(--gradient-angle, 200deg), #ff2871 33%, #ff715c);
}
autosuggest-dropdown input-field ul:not(.errors) {
  list-style-type: none;
  margin: 0 21px;
  border: 1px solid #dddddd;
  border-top: none;
  border-bottom-left-radius: calc(var(--border-radius) / 2);
  border-bottom-right-radius: calc(var(--border-radius) / 2);
  top: 100%;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  width: calc(100% - 42px);
  z-index: 100;
}
autosuggest-dropdown input-field ul:not(.errors) li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  padding: 5px;
  border-bottom: 1px solid #dddddd;
}
autosuggest-dropdown input-field ul:not(.errors) li:last-of-type {
  border-bottom: none;
}
autosuggest-dropdown input-field ul:not(.errors) li {
  background: #FFFFFF;
  color: #666666;
}
autosuggest-dropdown input-field ul:not(.errors) li.highlight {
  background: linear-gradient(var(--gradient-angle, 200deg), #ff2871 33%, #ff715c);
  color: #FFFFFF;
}
/*# sourceMappingURL=../sourcemaps/components/autosuggest-dropdown.css.map */