.verified-address-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(20, 119, 89, .2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 252, 246, .94), rgba(255, 249, 226, .92));
}

.verified-address-field.is-invalid {
  border-color: rgba(197, 74, 43, .52);
  box-shadow: 0 0 0 3px rgba(197, 74, 43, .08);
}

.verified-address-head,
.verified-address-head > div {
  display: flex;
  align-items: center;
}

.verified-address-head {
  justify-content: space-between;
  gap: 12px;
}

.verified-address-head > div {
  gap: 8px;
}

.verified-address-head strong {
  color: #12684f;
  font-size: 15px;
}

.verified-address-head span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff0bf;
  color: #9a6417;
  font-size: 11px;
  font-weight: 850;
}

.verified-address-head button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(18, 104, 79, .24);
  border-radius: 12px;
  background: #147d5f;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.verified-address-grid {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
}

.verified-address-grid label {
  display: grid !important;
  gap: 6px;
  min-width: 0;
}

.verified-address-grid label > span {
  color: #60786f;
  font-size: 11px;
  font-weight: 800;
}

.verified-address-grid .address-detail-field {
  grid-column: 1 / -1;
}

.verified-address-grid input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

.verified-address-grid input[readonly] {
  background: rgba(250, 252, 248, .96);
  cursor: pointer;
}

.verified-address-field > p {
  margin: 0;
  color: #60786f;
  font-size: 12px;
  line-height: 1.45;
}

.verified-address-field.is-invalid > p {
  color: #b4472c;
  font-weight: 800;
}

.address-search-dialog {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(18, 45, 38, .46);
  backdrop-filter: blur(4px);
}

.address-search-dialog[hidden] {
  display: none;
}

.address-search-dialog-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(520px, 100%);
  height: min(720px, calc(100dvh - 24px));
  overflow: hidden;
  border: 1px solid rgba(213, 168, 75, .4);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(18, 45, 38, .28);
}

.address-search-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-bottom: 1px solid rgba(18, 104, 79, .12);
  background: linear-gradient(135deg, #fff8df, #effbf5);
}

.address-search-dialog-head > div {
  display: grid;
  gap: 3px;
}

.address-search-dialog-head strong {
  color: #123f33;
  font-size: 17px;
}

.address-search-dialog-head span {
  color: #60786f;
  font-size: 12px;
}

.address-search-dialog-head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 104, 79, .18);
  border-radius: 50%;
  background: #fff;
  color: #12684f;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.address-search-layer {
  min-height: 0;
  background: #fff;
}

@media (max-width: 520px) {
  .verified-address-grid {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .verified-address-head button {
    padding-inline: 11px;
  }
}
