.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  inset: calc(100% + 6px) 0 auto;
  z-index: 30;
  display: grid;
  overflow: hidden;
  border: 1px solid #b8c8cc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgb(17 38 43 / 18%);
}

.address-suggestion {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #e2ecef;
  padding: 10px 12px;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  background: #ffffff;
  cursor: pointer;
}

.address-suggestion:last-child {
  border-bottom: 0;
}

.address-suggestion:hover,
.address-suggestion:focus {
  outline: 0;
  background: #edf7f8;
}

.address-validation-error {
  margin: -4px 0 10px;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 750;
}

.address-lookup-status {
  margin: 2px 0 8px !important;
  color: #4d647a !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

.address-recovery {
  margin: -4px 0 10px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #071b4d;
  background: #eef7ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.address-recovery a {
  color: #075ea8;
  font-weight: 850;
}

[data-address-autocomplete][aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgb(180 35 24 / 14%);
}
