.dps-search-suggestions {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 2px;
  max-height: 420px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid #d9dee7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 36, 60, .16);
}
.dps-search-suggestions[hidden] { display: none; }
.dps-search-suggestion {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 13px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.dps-search-suggestion:hover,
.dps-search-suggestion:focus { outline: 0; background: #f0f6fb; }
.dps-search-suggestion strong { color: #1769aa; font-size: .92rem; font-weight: 700; }
.dps-search-suggestion small { overflow: hidden; color: #7b8798; font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
