.search-box .autocomplete {
  top: 70px;
  padding: 0;
  max-height: 312px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dedfd9;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(23, 33, 29, .18);
}

.search-box .autocomplete-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 13px;
  border: 0;
  border-bottom: 1px solid #ecece8;
  border-radius: 0;
  background: #fff;
  color: #1d2420;
  font-size: 14px;
  line-height: 1.25;
}

.search-box .autocomplete-option:last-child { border-bottom: 0; }
.search-box .autocomplete-option:hover,
.search-box .autocomplete-option[aria-selected="true"] { background: #f5f6f3; }
.search-box .autocomplete-option-icon {
  flex: none;
  width: 17px;
  color: #717874;
  font-size: 18px;
  line-height: 1;
  transform: rotate(-15deg);
}
.search-box .autocomplete-option strong { font-size: 14px; font-weight: 600; }
.search-box .autocomplete-option small { margin-top: 2px; font-size: 11px; color: #747b77; }

@media (max-width: 680px) {
  .search-box .autocomplete { top: 64px; max-height: 300px; }
  .search-box .autocomplete-option { min-height: 46px; padding: 10px 12px; }
}
