dialog { border: 0; border-radius: 0; padding: 0; width: min(520px, calc(100vw - 32px)); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(24, 30, 26, .42); }
.modal { padding: 22px; display: grid; gap: 14px; max-height: min(86vh, 820px); overflow: auto; }
.modalHead { display: flex; justify-content: space-between; align-items: start; }
.iconBtn { border: 0; background: var(--surface-2); border-radius: 0; width: 34px; height: 34px; font-size: 20px; }
label { display: grid; gap: 7px; font-weight: 800; font-size: 13px; }
input, select, textarea {
  border: 1px solid var(--line); border-radius: 0; padding: 11px 12px; background: white; color: var(--text);
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.birthDateGrid {
  display: grid;
  grid-template-columns: minmax(110px, 1.4fr) minmax(70px, .8fr) minmax(70px, .8fr);
  gap: 10px;
  align-items: end;
}
.birthDateGrid input {
  min-width: 0;
}
.formSection {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(111, 63, 36, .16);
  background: rgba(255, 253, 246, .74);
}
.formHint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.relationLine {
  padding: 10px 14px;
  background: rgba(199, 72, 114, .10);
  border: 1px solid rgba(199, 72, 114, .28);
  color: #8a2f4c;
  font-weight: 900;
  font-size: 13px;
}
/* A native <dialog>'s showModal() renders in the browser's top layer, which
   sits above a plain toast div no matter its z-index -- so tabGuidanceFor's
   nudge (아버지/어머니/배우자 쪽 관계는 다른 탭에서) has to live inside this
   dialog itself to actually be seen, not as a toast fired right before the
   dialog opens. See openCreateDialogFromRelation in app.js. */
.relationTabHint {
  padding: 10px 14px;
  background: rgba(201, 155, 69, .14);
  border: 1px dashed rgba(201, 155, 69, .65);
  color: #6b4f18;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}
.deceasedFields {
  display: grid;
  gap: 12px;
}
.deceasedFields[hidden] {
  display: none;
}
.compactChecks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  min-height: 40px;
}
.compactChecks input { width: auto; }
#personDialog {
  width: min(560px, calc(100vw - 28px));
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .99), rgba(255, 247, 231, .98));
  box-shadow: 0 28px 70px rgba(32, 27, 21, .30);
}
#personDialog::backdrop {
  background: rgba(23, 25, 19, .46);
  backdrop-filter: blur(3px);
}
#personDialog .modal {
  gap: 11px;
  padding: 0 20px 20px;
  background:
    radial-gradient(circle at 16% 0%, rgba(40, 96, 74, .10), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 247, .96), rgba(255, 247, 231, .94));
}
#personDialog .modalHead {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 -20px 2px;
  padding: 15px 20px 13px;
  border-bottom: 1px solid rgba(83, 70, 50, .14);
  background:
    linear-gradient(135deg, rgba(40, 96, 74, .11), rgba(201, 155, 69, .10)),
    rgba(255, 250, 240, .98);
}
#personDialog .modalHead .eyebrow {
  margin-bottom: 5px;
  color: rgba(40, 96, 74, .82);
  font-family: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}
#personDialog .modalHead .eyebrow[hidden] {
  display: none;
}
#personDialog .modalHead h2 {
  font-size: 24px;
  line-height: 1.18;
}
#personDialog .personNamePhoneGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .82fr);
  gap: 10px;
}
#personDialog .personGenderField {
  display: grid;
  gap: 7px;
}
#personDialog .personGenderField > span {
  color: #4a4035;
  font-size: 12px;
  font-weight: 950;
}
#personDialog .genderToggleGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(83, 70, 50, .16);
  border-radius: 18px;
  background: rgba(255, 248, 232, .64);
}
#personDialog .genderToggleGroup label {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 14px;
  cursor: pointer;
}
#personDialog .genderToggleGroup input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#personDialog .genderToggleGroup span {
  width: 100%;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #5f574d;
  font-size: 13px;
  font-weight: 950;
}
#personDialog .genderToggleGroup input:checked + span {
  background: var(--green);
  color: #fff8e8;
  box-shadow: 0 6px 14px rgba(40, 96, 74, .18);
}
#personDialog label {
  color: #4a4035;
  font-size: 12px;
  font-weight: 950;
}
#personDialog input,
#personDialog select,
#personDialog textarea {
  min-height: 44px;
  border-color: rgba(83, 70, 50, .18);
  background: rgba(255, 253, 247, .94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}
#personDialog textarea {
  min-height: 92px;
  resize: vertical;
}
#personDialog input:focus,
#personDialog select:focus,
#personDialog textarea:focus {
  border-color: rgba(40, 96, 74, .52);
  outline: 3px solid rgba(40, 96, 74, .12);
}
#personDialog .primary,
#personDialog .ghost,
#personDialog .danger,
#personDialog .iconBtn {
  border-radius: 18px;
}
#personDialog .primary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(183, 72, 72, .20);
}
#personDialog input,
#personDialog select,
#personDialog textarea,
#personDialog .formSection,
#personDialog .relationLine,
#personDialog .relationTabHint {
  border-radius: 18px;
}
#personDialog .grid2,
#personDialog .birthDateGrid {
  gap: 10px;
}
#personDialog .formSection {
  padding: 8px 12px;
  border-color: rgba(83, 70, 50, .15);
  background:
    linear-gradient(135deg, rgba(255,255,255,.60), rgba(255,255,255,.16)),
    rgba(255, 248, 232, .72);
}
#personDialog .compactChecks label {
  min-height: 30px;
  padding: 0 4px;
  color: #4f463c;
}
#personDialog .relationLine {
  background: rgba(199, 72, 114, .10);
  border-color: rgba(199, 72, 114, .26);
  color: #8a2f4c;
}
#personDialog .relationTabHint {
  background: rgba(201, 155, 69, .13);
  border-color: rgba(201, 155, 69, .58);
}
#personDialog .buttonIcon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: invert(96%) sepia(8%) saturate(664%) hue-rotate(331deg) brightness(106%) contrast(101%);
}
.appAlertDialog {
  width: min(460px, calc(100vw - 28px));
  border-radius: 24px;
  overflow: hidden;
}
.accountReauthDialog {
  width: min(430px, calc(100vw - 28px));
  max-width: none;
  border: 1px solid rgba(83, 70, 50, .20);
  border-radius: 24px;
  background: var(--surface);
  overflow: hidden;
}
.accountReauthModal {
  display: grid;
  gap: 16px;
  padding: 22px;
}
.accountReauthHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.accountReauthHead .eyebrow { margin-bottom: 5px; }
.accountReauthHead h2 { font-size: 22px; line-height: 1.25; }
.accountReauthHead .iconBtn { flex: 0 0 auto; border-radius: 12px; }
.accountReauthCopy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}
.accountReauthGoogle {
  min-height: 44px;
  display: flex;
  justify-content: center;
}
.accountReauthGoogle[hidden],
.accountReauthLocal[hidden],
.accountReauthStatus[hidden] { display: none; }
.accountReauthLocal {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
}
.accountReauthStatus {
  margin: 0;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(183, 72, 72, .08);
  color: #8f392f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.accountReauthCancel {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
}
.appAlertModal {
  padding: 26px 28px 24px;
  display: grid;
  gap: 18px;
  text-align: left;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 199, 83, .16), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,249,235,.9));
}
.appAlertTop {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.appAlertIcon {
  width: 74px;
  height: 74px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 244, 216, .92);
  border: 1px solid rgba(201, 155, 69, .28);
  box-shadow: 0 14px 34px rgba(83, 70, 50, .14);
}
.appAlertIcon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.appAlertHeading {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}
.appAlertHeading .eyebrow {
  margin-top: 4px;
  color: #9b7a38;
  font-size: 13px;
  letter-spacing: .08em;
}
.appAlertText {
  display: grid;
  gap: 8px;
  padding-left: 90px;
}
.appAlertMedia {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(83, 70, 50, .16);
  border-radius: 18px;
  background: rgba(255, 248, 232, .72);
}
.appAlertMedia[hidden] {
  display: none;
}
.appAlertMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}
.appAlertHeading h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
  color: #201711;
}
.appAlertText p:last-child {
  margin: 0;
  color: #5e4d37;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertText p:last-child {
  padding: 14px 16px;
  border: 1px solid rgba(83, 70, 50, .16);
  border-radius: 18px;
  background: rgba(255, 248, 232, .72);
  text-align: center;
}
.appAlertDialog[data-variant="sibling-order-guide"] {
  width: min(440px, calc(100vw - 28px));
  border-radius: 22px;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertModal {
  gap: 14px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, .98), rgba(255, 247, 230, .96));
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertTop {
  display: block;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(83, 70, 50, .14);
  background:
    linear-gradient(135deg, rgba(40, 96, 74, .10), rgba(201, 155, 69, .10)),
    rgba(255, 250, 240, .90);
  text-align: left;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertIcon {
  display: none;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertHeading {
  display: grid;
  gap: 5px;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertHeading h2 {
  font-size: 23px;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertHeading .eyebrow {
  margin: 0;
  color: rgba(40, 96, 74, .82);
  font-family: inherit;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertText {
  padding: 0 24px;
  gap: 12px;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertMedia {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(42, 34, 22, .10);
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertCheck {
  margin: 0 24px;
}
.appAlertDialog[data-variant="sibling-order-guide"] .appAlertActions {
  padding: 0 24px 22px;
}
.appAlertCheck {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed rgba(183, 72, 72, .32);
  border-radius: 16px;
  background: rgba(183, 72, 72, .06);
  color: #6a4730;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}
.appAlertCheck[hidden] {
  display: none;
}
.appAlertCheck input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.appAlertActions {
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
}
.appAlertActions .primary,
.appAlertActions .ghost {
  min-height: 52px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 28px;
  font-size: 16px;
  font-weight: 900;
}
.appAlertActions .primary:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.appAlertActions .buttonIcon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(96%) sepia(8%) saturate(664%) hue-rotate(331deg) brightness(106%) contrast(101%);
}
.appAlertActions .ghost[hidden] {
  display: none;
}
.modalActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.modalActionSpacer {
  flex: 1 1 auto;
}
#photoDialog {
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  border-radius: 18px;
  overflow: hidden;
}
.photoModal {
  width: auto;
  height: min(720px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 18px;
  overflow: hidden;
}
.photoEditorLayout {
  min-height: 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
}
.photoPreviewPane {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(111, 63, 36, .14);
  border-radius: 16px;
  background: rgba(255, 253, 246, .66);
}
.photoPreview {
  width: 172px;
  height: 176px;
  display: grid;
  place-items: center;
  border: 4px solid #fffaf0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff8ed;
  box-shadow: 0 7px 16px rgba(38, 31, 24, .18);
}
.photoPreview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff8ed;
}
.photoPreviewPane strong {
  max-width: 150px;
  text-align: center;
  overflow-wrap: anywhere;
}
.roundedDanger {
  border-radius: 18px;
}
#photoDialog .primary,
#photoDialog .ghost,
#photoDialog .danger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
}
#photoDialog .buttonIcon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: invert(96%) sepia(8%) saturate(664%) hue-rotate(331deg) brightness(106%) contrast(101%);
}
.photoUploadDrop {
  width: 100%;
  min-height: 128px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px 14px;
  border: 1px dashed rgba(39, 98, 75, .42);
  border-radius: 14px;
  background: rgba(39, 98, 75, .07);
  color: #6f6a61;
  text-align: center;
  cursor: pointer;
}
.photoUploadDrop.dragover {
  border-color: rgba(39, 98, 75, .82);
  background: rgba(39, 98, 75, .13);
  box-shadow: 0 0 0 3px rgba(39, 98, 75, .12);
}
.photoUploadDrop input {
  display: none;
}
.photoUploadDrop span {
  font-size: 13px;
  font-weight: 800;
}
.photoUploadDrop b {
  min-width: 102px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #27624b;
  color: #fffaf0;
  font-size: 12px;
  line-height: 1;
}
.photoChoicesPane {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding-right: 4px;
}
.photoCropPanel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(39, 98, 75, .18);
  border-radius: 16px;
  background: rgba(255, 253, 246, .72);
}
.photoCropPanel[hidden] {
  display: none;
}
.photoCropHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.photoCropHead h3 {
  margin: 0;
  color: #534632;
  font-size: 14px;
}
.photoCropStage {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border: 4px solid #fffaf0;
  border-radius: 18px;
  background: #fff8ed;
  box-shadow: inset 0 0 0 1px rgba(83, 70, 50, .12), 0 7px 16px rgba(38, 31, 24, .14);
  touch-action: none;
  cursor: grab;
}
.photoCropStage:active {
  cursor: grabbing;
}
.photoCropStage::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 250, 240, .86);
  border-radius: 14px;
  box-shadow: 0 0 0 999px rgba(38, 31, 24, .16);
  pointer-events: none;
}
.photoCropStage img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: 0 0;
}
.photoCropControl {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #6f6a61;
  font-size: 12px;
  font-weight: 900;
}
.photoThemePicker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 10px;
}
.photoTheme {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(111, 63, 36, .14);
  border-radius: 14px;
  background: rgba(255, 253, 246, .72);
  cursor: pointer;
}
.photoTheme.active {
  border-color: rgba(199, 72, 114, .62);
  box-shadow: 0 0 0 3px rgba(199, 72, 114, .12);
}
.photoTheme input { display: none; }
.photoTheme img {
  width: 42px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff8ed;
}
.photoTheme span {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.photoTheme b,
.photoTheme small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.photoTheme small {
  color: #7f7568;
  font-size: 11px;
}
.photoBgPalette {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 2px;
}
.photoBgPalette.disabled {
  opacity: .38;
}
.photoBgPalette button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 2px solid #fffaf0;
  border-radius: 999px;
  background: var(--swatch);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(83, 70, 50, .18), 0 2px 5px rgba(38, 31, 24, .12);
}
.photoBgPalette button.active {
  box-shadow: 0 0 0 3px rgba(39, 98, 75, .34), 0 2px 5px rgba(38, 31, 24, .18);
}
.photoTemplateList {
  display: grid;
  gap: 14px;
}
.photoTemplateSection {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(111, 63, 36, .10);
  border-radius: 16px;
  background: rgba(255, 253, 246, .42);
}
.photoTemplateSection h3 {
  margin: 0;
  color: #6f6a61;
  font-size: 13px;
}
.photoTemplateGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.photoAgeTemplateGrid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.photoTemplate {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(111, 63, 36, .13);
  border-radius: 14px;
  background: rgba(255, 253, 246, .72);
  cursor: pointer;
}
.photoTemplate.active {
  border-color: rgba(39, 98, 75, .72);
  box-shadow: 0 0 0 3px rgba(39, 98, 75, .14);
}
.photoTemplate img {
  width: 72px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff8ed;
}
.photoTemplate span {
  max-width: 100%;
  color: #6f6a61;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Blocks the app until gender/birth year are on file -- both drive tab
   structure and appellation wording (see the starter-family and kinship
   logic), so there's no reasonable default to fall back to. */
.profileGate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(24, 30, 26, .55);
  backdrop-filter: blur(3px);
}
/* An author-stylesheet `display` always beats the UA's `[hidden] { display:
   none }`, regardless of specificity -- without this override the gate
   rendered (and could be submitted) even when the JS never opened it. */
.profileGate[hidden] { display: none; }
.profileGateCard {
  width: min(380px, calc(100vw - 32px));
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.profileGateCard h2 { margin: 0; }
.profileGateCard form { display: grid; gap: 14px; }

.toast {
  position: fixed;
  left: 50%;
  top: 28px;
  transform: translate(-50%, -10px);
  min-height: 54px;
  max-width: min(560px, calc(100vw - 32px));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(113, 83, 49, .96), rgba(82, 61, 39, .96));
  color: #fffaf0;
  border: 1px solid rgba(255, 236, 196, .22);
  border-radius: 18px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 18px 36px rgba(46, 34, 22, .22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 80;
}
.toast img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(96%) sepia(8%) saturate(664%) hue-rotate(331deg) brightness(106%) contrast(101%);
}
.toast span {
  min-width: 0;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}
.toast.on {
  opacity: 1;
  transform: translate(-50%, 0);
}
