.dps-search-box {
  display: flex;
  align-items: center;
  width: min(100%, 420px);
  min-height: 44px;
  overflow: hidden;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.dps-search-box:focus-within {
  border-color: #1769aa;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, .12);
}
.dps-search-box input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 12px 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2937;
  font: inherit;
}
.dps-search-box input::placeholder { color: #8a94a6; }
.dps-search-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1769aa;
  cursor: pointer;
}
.dps-search-box button:hover { background: #f0f6fb; color: #0d4f80; }
.dps-search-box svg { width: 18px; height: 18px; stroke: currentColor; }
.dps-search-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
