/* Shared Yandex Geosuggest dropdown */
.city-suggest-field,
.fi-fo-field-wrp:has([data-city-suggest]),
.form-group:has([data-city-suggest]) {
  position: relative;
}

.city-suggest-list {
  position: absolute;
  z-index: 60;
  left: 0;
  right: 0;
  top: calc(100% + 2px);
  margin: 0;
  padding: 0.35rem;
  max-height: 16rem;
  overflow: auto;
  background: #fff;
  border: 1px solid #d9e2ec;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
}

.city-suggest-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  font: inherit;
  color: #0b1220;
}

.city-suggest-item:hover,
.city-suggest-item.is-active {
  background: #ecfdf5;
}

.city-suggest-item__title {
  font-weight: 700;
  font-size: 0.92rem;
}

.city-suggest-item__sub {
  font-size: 0.78rem;
  color: #627d98;
}

.city-suggest-error {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #b91c1c;
  line-height: 1.35;
}
