.search--header {
  padding: 0 2rem;
}

.search__field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search__icon {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;

  & svg {
    width: 16px;
    height: 16px;
    fill: #9ca3af;
  }
}

.search__input {
  line-height: 46px;
  border-radius: 2rem;
  border: 2px solid #DDD;
  padding: 0 1.5rem 0 2.75rem;
  font-weight: bold;
  font-size: var(--font-size-base, 1rem);
}

.search__loading {
  display: none;
}

@media (min-width: 640px) {
  .search--header {
    & .search__input {
      min-width: 300px;
    }
  }
}