.\#predictive-search-input {
  display: block;
  position: relative;
  height: 2.9rem;
}
.\#predictive-search-input-inner {
  z-index: 9;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: var(--search-bg-color);
  color: var(--search-text-color);
  border-radius: 1.5rem;
  transition: var(--transition-base);
  box-shadow: rgba(50, 50, 93, 0.1) 0 50px 100px -20px, rgba(0, 0, 0, 0.15) 0 30px 60px -30px;
}
.\#predictive-search-input-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-base);
}
.\#predictive-search-input-wrapper.\!active {
  max-height: 64vh;
  overflow-y: auto;
}
.\#predictive-search-input-results {
  padding: 1.5rem;
}