/* =========================================================
   Cielito — Invite page (guest experience)
   ========================================================= */

:root {
  --inv-bg: #f4ead8;
  --inv-bg-soft: #fbf4e4;
  --inv-ink: #1f2a3a;
  --inv-muted: #6a6a72;
  --inv-accent: #2c6fb8;
  --inv-gold: #c4912b;
  --inv-rose: #d96a8c;
  --inv-line: rgba(31,42,58,0.08);
  --inv-radius: 18px;
  --inv-radius-lg: 28px;
  --inv-shadow: 0 30px 80px -30px rgba(31,42,58,0.18);
  --inv-shadow-deep: 0 50px 120px -40px rgba(31,42,58,0.32);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body.inv-body {
  margin: 0;
  font-family: 'General Sans', system-ui, sans-serif;
  color: var(--inv-ink);
  background: var(--inv-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- BACKDROP ---------- */
.inv-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.inv-backdrop__layer--1 {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 60% 50% at 30% 0%, #bcd5ee 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 100%, #f1d6a2 0%, transparent 60%);
  opacity: 0.5;
}
.inv-backdrop__layer--2 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.5) 0 1.2px, transparent 1.2px),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.4) 0 1px, transparent 1px);
  background-size: 100% 100%;
  opacity: 0.6;
}

/* =========================================================
   STAGE 1 — COVER (sealed envelope)
   ========================================================= */
.inv-cover {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.inv-cover.is-leaving {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}
.inv-cover__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #c9def4 0%, #f1e7d3 60%, #f4ead8 100%);
  z-index: -1;
}

.inv-cover__envelope-wrap {
  position: relative;
  width: min(380px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inv-cover__from {
  margin-top: 28px;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--inv-accent);
  opacity: 0.85;
}

/* ---------- ENVELOPE ---------- */
.inv-envelope {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3.4;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  perspective: 1500px;
  filter: drop-shadow(0 30px 60px rgba(31,42,58,0.28));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.inv-envelope:hover { transform: translateY(-4px) scale(1.01); }
.inv-envelope:active { transform: translateY(-1px) scale(0.99); }

.inv-envelope__back,
.inv-envelope__body,
.inv-envelope__flap {
  position: absolute;
  inset: 0;
  border-radius: 8px;
}
.inv-envelope__back {
  background:
    linear-gradient(135deg, #e8c478 0%, #d3a350 50%, #b8852f 100%);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.06);
}
/* Front body covers the letter when sealed */
.inv-envelope__body {
  background:
    linear-gradient(160deg, #f0c878 0%, #d8a248 100%);
  clip-path: polygon(0 28%, 100% 28%, 100% 100%, 0 100%);
  z-index: 3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.inv-envelope__flap {
  background: linear-gradient(180deg, #f0c878 0%, #d8a248 100%);
  clip-path: polygon(0 0, 100% 0, 50% 60%);
  z-index: 5;
  transform-origin: top center;
  transition: transform 1.1s cubic-bezier(0.7, 0, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.inv-envelope.is-opening .inv-envelope__flap {
  transform: rotateX(-180deg);
  z-index: 1;
}
.inv-envelope__seal {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.inv-envelope.is-opening .inv-envelope__seal {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}
.inv-envelope__shadow {
  position: absolute;
  bottom: -10%;
  left: 10%;
  right: 10%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.22), transparent 70%);
  z-index: 0;
  opacity: 0.7;
}

/* The letter that rises out */
.inv-envelope__letter {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 12%;
  bottom: 8%;
  background: #fdf8ec;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(196,145,43,0.18),
    0 4px 14px rgba(31,42,58,0.18);
  z-index: 2;
  transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s,
              opacity 0.4s ease 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.inv-envelope__letter::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(196,145,43,0.18);
  border-radius: 2px;
  pointer-events: none;
}
.inv-letter__inner {
  text-align: center;
  padding: 6% 8%;
  z-index: 1;
}
.inv-letter__hint {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--inv-accent);
  opacity: 0.7;
  margin-bottom: 8px;
}
.inv-letter__title {
  font-family: 'Boska', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 4.5vw, 26px);
  color: var(--inv-ink);
  line-height: 1.1;
}
.inv-letter__sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-muted);
  margin-top: 8px;
}
.inv-envelope.is-opening .inv-envelope__letter {
  transform: translateY(-46%) scale(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(196,145,43,0.18),
    0 30px 60px -20px rgba(31,42,58,0.4);
}

/* Tap-to-open hint */
.inv-envelope__hint {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--inv-ink);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.inv-envelope__hint-pulse {
  width: 8px; height: 8px;
  background: var(--inv-accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(44, 111, 184, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
.inv-envelope.is-opening .inv-envelope__hint { opacity: 0; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(44,111,184,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(44,111,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,111,184,0); }
}

/* ---------- CONFETTI ---------- */
.inv-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}
.inv-confetti span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 12px;
  background: var(--inv-accent);
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.inv-cover.is-leaving .inv-confetti span {
  animation: confettiBurst 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes confettiBurst {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
  10% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot));
  }
}

/* =========================================================
   STAGE 2 — INVITATION
   ========================================================= */
.inv-main {
  position: relative;
  z-index: 2;
  display: block;
  animation: revealMain 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes revealMain {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO (full-size invitation card) ---------- */
.inv-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 64px;
  position: relative;
}
.inv-hero .invite-card--full {
  width: min(440px, 92vw);
  aspect-ratio: 5 / 7;
  background: #fdf8ec;
  border-radius: var(--inv-radius-lg);
  box-shadow: var(--inv-shadow-deep);
  position: relative;
  overflow: hidden;
}
.inv-hero .invite-card--full .invite {
  width: 100%;
  height: 100%;
  font-size: clamp(13px, 1.6vw, 16px);
  padding: 10% 8% 8%;
}

/* The .invite element itself styles per data-template — defined in templates.css */

.inv-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--inv-muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.inv-scroll-cue:hover {
  color: var(--inv-ink);
  background: rgba(31,42,58,0.04);
}
.inv-scroll-cue svg { animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---------- SECTIONS ---------- */
.inv-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
}
.inv-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--inv-accent);
  margin: 0 0 12px;
  text-align: center;
}
.inv-section__title {
  font-family: 'Boska', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.inv-section__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--inv-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ---------- STORY ---------- */
.inv-story__body {
  font-family: 'Cormorant Garamond', 'Boska', serif;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.6;
  font-style: italic;
  color: var(--inv-ink);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* ---------- WHEN & WHERE ---------- */
.inv-ww__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .inv-ww__grid { grid-template-columns: 1fr; }
}
.inv-ww__card {
  background: #fff;
  border: 1px solid var(--inv-line);
  border-radius: var(--inv-radius);
  padding: 22px 22px 18px;
  text-align: center;
  box-shadow: 0 4px 16px -8px rgba(31,42,58,0.08);
}
.inv-ww__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(44,111,184,0.08);
  color: var(--inv-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.inv-ww__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--inv-muted);
  margin-bottom: 6px;
}
.inv-ww__value {
  font-family: 'Boska', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}
.inv-ww__sub {
  font-size: 13px;
  color: var(--inv-muted);
  line-height: 1.4;
}
.inv-ww__actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.inv-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--inv-line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--inv-ink);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.inv-link-btn:hover {
  background: var(--inv-ink);
  color: #fff;
  border-color: var(--inv-ink);
}
.inv-link-btn--solid {
  background: var(--inv-accent);
  color: #fff;
  border-color: var(--inv-accent);
  padding: 12px 22px;
  font-size: 13px;
}
.inv-link-btn--solid:hover {
  background: #235a98;
  border-color: #235a98;
}

.inv-map {
  border-radius: var(--inv-radius);
  overflow: hidden;
  border: 1px solid var(--inv-line);
  box-shadow: 0 4px 20px -10px rgba(31,42,58,0.12);
  aspect-ratio: 16 / 9;
  background: #ecead7;
}
.inv-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- PHOTOS ---------- */
.inv-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) {
  .inv-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.inv-photo {
  aspect-ratio: 1;
  background: #e8e2d0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 24px -12px rgba(31,42,58,0.2);
  transition: transform 0.3s ease;
}
.inv-photo:hover { transform: scale(1.02); }
.inv-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.inv-photo--tall { grid-row: span 2; }

/* ---------- REGISTRY ---------- */
.inv-registry__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.inv-registry__card {
  background: #fff;
  border: 1px solid var(--inv-line);
  border-radius: var(--inv-radius);
  padding: 20px;
  text-decoration: none;
  color: var(--inv-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.inv-registry__card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--reg-accent, var(--inv-accent));
}
.inv-registry__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(31,42,58,0.2);
  border-color: var(--reg-accent, var(--inv-accent));
}
.inv-registry__name {
  font-family: 'Boska', serif;
  font-size: 18px;
  font-weight: 500;
  padding-left: 10px;
}
.inv-registry__arrow {
  color: var(--inv-muted);
  transition: transform 0.2s ease;
}
.inv-registry__card:hover .inv-registry__arrow {
  transform: translateX(4px);
  color: var(--inv-ink);
}

/* ---------- DETAILS ---------- */
.inv-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 520px;
  margin: 0 auto;
}
.inv-details__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--inv-line);
}
.inv-details__list li:last-child { border-bottom: none; }
.inv-details__k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inv-muted);
  padding-top: 2px;
}
.inv-details__v {
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 500px) {
  .inv-details__list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- RSVP ---------- */
.inv-rsvp__form {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: var(--inv-radius-lg);
  border: 1px solid var(--inv-line);
  box-shadow: 0 30px 80px -40px rgba(31,42,58,0.18);
}
.inv-field {
  display: grid;
  gap: 6px;
}
.inv-field label,
.inv-field legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inv-muted);
  padding: 0;
}
.inv-field input[type="text"],
.inv-field input[type="email"],
.inv-field input[type="number"],
.inv-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--inv-line);
  border-radius: 10px;
  background: var(--inv-bg-soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--inv-ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.inv-field input:focus,
.inv-field textarea:focus {
  outline: none;
  border-color: var(--inv-accent);
  background: #fff;
}
.inv-field--small {
  max-width: 200px;
}
.inv-choice {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.inv-choice label {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 0;
  cursor: pointer;
}
.inv-choice label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.inv-choice label span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--inv-line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--inv-ink);
  background: var(--inv-bg-soft);
  transition: all 0.2s ease;
}
.inv-choice label:hover span {
  border-color: var(--inv-accent);
  color: var(--inv-accent);
}
.inv-choice label input:checked + span {
  background: var(--inv-accent);
  color: #fff;
  border-color: var(--inv-accent);
  box-shadow: 0 6px 20px -10px rgba(44,111,184,0.6);
}

.inv-cta {
  width: 100%;
  padding: 16px 24px;
  background: var(--inv-ink);
  color: #fdf8ec;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  box-shadow: 0 10px 30px -10px rgba(31,42,58,0.4);
}
.inv-cta:hover {
  background: var(--inv-accent);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -10px rgba(44,111,184,0.4);
}
.inv-cta:active { transform: translateY(0); }

.inv-rsvp__success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(93, 122, 60, 0.1);
  color: #4a6432;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- GUESTBOOK ---------- */
.inv-gb__form {
  max-width: 520px;
  margin: 0 auto 24px;
  display: grid;
  gap: 10px;
}
.inv-gb__form input,
.inv-gb__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--inv-line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--inv-ink);
}
.inv-gb__form input:focus,
.inv-gb__form textarea:focus {
  outline: none;
  border-color: var(--inv-accent);
}
.inv-gb__form button { justify-self: start; }

.inv-gb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.inv-gb__entry {
  background: #fff;
  border: 1px solid var(--inv-line);
  border-radius: 14px;
  padding: 18px 22px;
  position: relative;
}
.inv-gb__entry::before {
  content: "\201C";
  position: absolute;
  top: -12px;
  left: 14px;
  font-family: 'Boska', serif;
  font-size: 50px;
  color: var(--inv-accent);
  opacity: 0.3;
  line-height: 1;
}
.inv-gb__msg {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--inv-ink);
  margin-bottom: 8px;
}
.inv-gb__byline {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-muted);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.inv-foot {
  border-top: 1px solid var(--inv-line);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 13px;
  color: var(--inv-muted);
  flex-wrap: wrap;
}
.inv-foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--inv-accent);
}
.inv-foot__link {
  color: var(--inv-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.inv-foot__link:hover { border-bottom-color: var(--inv-ink); }

/* ---------- MUSIC TOGGLE ---------- */
.inv-music {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--inv-line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--inv-ink);
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(31,42,58,0.2);
  transition: all 0.2s ease;
}
.inv-music[hidden] { display: none; }
.inv-music:hover { transform: translateY(-2px); }
.inv-music.is-playing { background: var(--inv-accent); color: #fff; border-color: var(--inv-accent); }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
