.hs-search-field {
  position: relative;
/*   max-width: 420px; */
  font-family: inherit;
}

.hs-search-field__bar {
  position: relative;
  background: var(--hs-search-bg, #fff);
  border: 1px solid var(--hs-search-border, #000);
  border-radius: 999px;
  /* padding-left: 44px; */
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  /* Fades the border to a light tint of the theme's text color
     when no explicit border variable is set, rather than a
     hardcoded gray. */
  border-color: var(--hs-search-border, rgba(0, 0, 0, 0.15));
}

.hs-search-field__bar:focus-within {
  border-color: var(--primary-colour, #000);
  box-shadow: 0 0 0 4px var(--hs-search-ring, rgba(0, 0, 0, 0.1));
}
{#
.hs-search-field__bar::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #000;
  opacity: 0.55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}
#}
.hs-search-field__bar form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
}

.hs-search-field__bar label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hs-search-field__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: inherit;
  padding: 0 12px;
}

.hs-search-field__input::placeholder {
  color: #000;
  opacity: 0.5;
}

.hs-search-field__bar button {
  flex: none;
  width: 44px;
  height: 44px;
  margin-right: 4px;
  display: grid;
  place-items: center;
  place-content: center;
  /* This is the one value that genuinely needs your theme's
     brand color — see note below on finding the right variable. */
  background: var(--primary-colour, #000);
  color: var(--hs-search-bg, #fff);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.hs-search-field__bar button:hover {
  filter: brightness(0.85);
}

.hs-search-field__bar button:active {
  transform: scale(0.94);
}

.hs-search-field__bar button:focus-visible {
  outline: 2px solid var(--primary-colour, #000);
  outline-offset: 2px;
}

.hs-search-field__bar button svg,
.hs-search-field__bar button svg * {
  height: 15px;
  width: 15px;
  fill: #fff;
}

.hs-search-field__suggestions {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--hs-search-bg, #fff);
  border: 1px solid var(--hs-search-border, rgba(0, 0, 0, 0.15));
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 20;
}

.hs-search-field__suggestions #results-for {
  font-weight: 600;
  font-size: 12px;
  opacity: 0.6;
  padding: 12px 18px 6px;
}

.hs-search-field__suggestions a {
  display: block;
  padding: 10px 18px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.05);
  outline: none;
}