/* ─── Tokens ───────────────────────────────────────────────────────────────
   Eén warme lichte wereld, bewust zonder donkere variant. Meegaan met de
   voorkeur van het toestel zou hier twee verschillende feesten opleveren.

   color-scheme: light is daarbij geen detail: zonder die regel verdonkert het
   besturingssysteem de invoervelden, keuzelijsten en scrollbalken op een gsm
   die in donkere modus staat, en dan vloeken die met het warme wit.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  color-scheme: light;

  --paper:      #F6F1E7;
  --paper-2:    #FDFBF6;
  --paper-3:    #EDE5D5;
  --ink:        #2E332B;
  --ink-2:      #5C6154;
  --ink-3:      #8B8D7C;
  --line:       #DFD7C6;
  --line-2:     #E9E2D3;
  --moss:       #6E7F4C;
  --moss-2:     #7C8C5A;
  --moss-soft:  #E3E9D3;
  --clay:       #B4643C;
  --clay-soft:  #F4DFD2;
  --brass:      #A8863F;
  --brass-soft: #F0E5C9;
  --scrim:      rgba(30,34,27,.62);
  --shadow-1:   0 1px 2px rgba(46,51,43,.07);
  --shadow-2:   0 2px 4px rgba(46,51,43,.05), 0 14px 34px -14px rgba(46,51,43,.24);
  --shadow-3:   0 30px 70px -30px rgba(46,51,43,.45);
  --grain-op:   .30;

  --font-display: "Cochin", "Palatino Linotype", "Book Antiqua", Palatino, "Iowan Old Style", Georgia, serif;
  --font-body: Optima, Candara, "Gill Sans", "Gill Sans MT", "Trebuchet MS", "Segoe UI", sans-serif;

  --r-sm: 6px;  --r-md: 11px;  --r-lg: 18px;  --r-xl: 26px;
  --tap: 52px;
}


/* ─── Basis ────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: var(--grain-op);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
h1, h2, h3, p, ul, ol, figure { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
img, video { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 2px; border-radius: var(--r-sm); }

.u-label { font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); }
.u-serif { font-family: var(--font-display); }
.u-num { font-variant-numeric: tabular-nums; }
.u-hide { display: none !important; }
.u-sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ─── Gastenschil ──────────────────────────────────────────────────────── */
.app {
  position: relative; z-index: 1;
  max-width: 480px; margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top) + 10px)
    calc(env(safe-area-inset-right) + 22px)
    calc(env(safe-area-inset-bottom) + 40px)
    calc(env(safe-area-inset-left) + 22px);
}

.pane { display: none; }
.pane.is-on { display: block; animation: pane-in .3s cubic-bezier(.2,.7,.3,1) both; }
@keyframes pane-in { from { opacity: 0; transform: translateY(8px); } }

.topnav { display: flex; align-items: center; gap: 12px; padding: 4px 0 6px; }
.back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 8px 2px; }
.back:hover { color: var(--ink); }
.back svg { width: 15px; height: 15px; }

.hero { text-align: center; padding: 22px 0 4px; }
.hero__rule { width: 44px; height: 1px; background: var(--brass); margin: 0 auto 18px; position: relative; }
.hero__rule::after {
  content: ""; position: absolute; top: -2.5px; left: 50%; margin-left: -2.5px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brass);
}
.hero__date { display: block; margin-bottom: 12px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 12vw, 50px); line-height: 1.02;
  font-weight: 500; letter-spacing: -.012em; text-wrap: balance;
}
.hero__lead {
  margin-top: 16px; font-size: 15px; line-height: 1.62; color: var(--ink-2);
  max-width: 31ch; margin-inline: auto; text-wrap: pretty;
}

/* Aftelklok */
.vault {
  margin-top: 26px; padding: 18px 18px 16px;
  background: var(--brass-soft);
  border: 1px solid color-mix(in srgb, var(--brass) 34%, transparent);
  border-radius: var(--r-lg); text-align: center;
}
.vault__head { display: flex; align-items: center; justify-content: center; gap: 7px; color: color-mix(in srgb, var(--brass) 88%, var(--ink)); }
.vault__head svg { width: 13px; height: 13px; flex: none; }
.vault__head span { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; }
.vault__when { margin-top: 8px; font-family: var(--font-display); font-size: 19px; }
.cd { display: flex; justify-content: center; gap: 4px; margin-top: 12px; }
.cd div { min-width: 46px; }
.cd b {
  display: block; font-family: var(--font-display); font-size: 25px; font-weight: 500;
  font-variant-numeric: tabular-nums; line-height: 1;
  color: color-mix(in srgb, var(--brass) 78%, var(--ink));
}
.cd i {
  display: block; margin-top: 4px; font-style: normal;
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: color-mix(in srgb, var(--brass) 62%, var(--ink-2));
}

/* Knoppen */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; min-height: var(--tap); padding: 14px 20px;
  border-radius: 999px; font-size: 15.5px; font-weight: 600; letter-spacing: .005em;
  transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s, background .16s, border-color .16s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: scale(.977); }
.btn[disabled] { opacity: .5; cursor: default; transform: none; }
.btn--primary {
  background: var(--clay); color: #FDF7F2;
  box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 10px 22px -10px color-mix(in srgb, var(--clay) 70%, transparent);
}
.btn--primary:hover:not([disabled]) { background: color-mix(in srgb, var(--clay) 88%, var(--ink)); }
.btn--ghost { background: var(--paper-2); border: 1px solid var(--line); color: var(--ink); box-shadow: var(--shadow-1); }
.btn--ghost:hover:not([disabled]) { border-color: var(--ink-3); }
.btn--quiet { background: none; color: var(--ink-2); min-height: 44px; font-size: 14px; }
.btn--quiet:hover { color: var(--ink); }
.btn--sm { min-height: 44px; padding: 11px 18px; font-size: 13.5px; width: auto; }
.btn--danger { background: var(--clay-soft); color: var(--clay); }

.stack { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile {
  display: flex; flex-direction: column; gap: 7px; align-items: flex-start;
  padding: 15px 15px 14px; text-align: left;
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: var(--r-md); box-shadow: var(--shadow-1);
  transition: border-color .18s, transform .18s;
}
.tile:hover { border-color: var(--moss-2); transform: translateY(-2px); }
.tile svg { width: 19px; height: 19px; color: var(--moss); }
.tile b { font-size: 14px; font-weight: 600; }
.tile em { font-style: normal; font-size: 11.5px; color: var(--ink-3); }
.tile--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
.tile--wide b { flex: 1; }

.sig { margin-top: 30px; text-align: center; font-family: var(--font-display); font-size: 13px; color: var(--ink-3); }

/* Naam: inline, nooit blokkerend */
.wholine {
  display: flex; align-items: baseline; justify-content: center; gap: 7px;
  font-size: 13.5px; color: var(--ink-2); padding: 2px 0 4px;
}
.wholine b { color: var(--ink); font-weight: 600; }
.lnk { font-size: 13px; font-weight: 600; color: var(--moss); text-decoration: underline; text-underline-offset: 2px; }
.lnk:hover { color: var(--ink); }

/* Kopjes */
.shead { padding: 6px 0 18px; }
.shead h2 { font-family: var(--font-display); font-size: 29px; font-weight: 500; letter-spacing: -.01em; }
.shead p { margin-top: 7px; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }

/* Formulieren */
.field { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  min-height: var(--tap); padding: 13px 15px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-md); font-size: 16px;   /* 16px voorkomt inzoomen op iOS */
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--moss-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--moss) 16%, transparent);
}
.field small { font-size: 11.5px; color: var(--ink-3); line-height: 1.45; }

/* Uploadvoortgang */
.uplist { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.uprow { display: flex; align-items: center; gap: 12px; }
.uprow__thumb { width: 46px; height: 46px; border-radius: var(--r-sm); flex: none; background: var(--paper-3); overflow: hidden; }
.uprow__thumb img { width: 100%; height: 100%; object-fit: cover; }
.uprow__meta { flex: 1; min-width: 0; }
.uprow__meta b { display: block; font-size: 12.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uprow__meta em { font-style: normal; font-size: 11px; color: var(--ink-3); }
.bar { height: 3px; border-radius: 99px; background: var(--paper-3); margin-top: 7px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--moss); width: 0; transition: width .3s linear; }
.uprow__tick { width: 18px; flex: none; color: var(--moss); opacity: 0; transition: opacity .3s; }
.uprow.is-done .uprow__tick { opacity: 1; }
.uprow.is-fail .bar i { background: var(--clay); }
.uprow__tick svg { width: 18px; height: 18px; }

/* Klaar */
.done { text-align: center; padding: 34px 0 0; }
.done__seal {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: var(--moss-soft); color: var(--moss);
  animation: pop .5s cubic-bezier(.2,1.3,.4,1) both;
}
.done__seal svg { width: 28px; height: 28px; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } }
.done h2 { font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.done p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--ink-2); max-width: 30ch; margin-inline: auto; }

/* Uitdagingen */
.prog { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.prog__bar { flex: 1; height: 4px; border-radius: 99px; background: var(--paper-3); overflow: hidden; }
.prog__bar i { display: block; height: 100%; background: var(--brass); transition: width .5s cubic-bezier(.2,.7,.3,1); }
.prog b { font-size: 12px; font-weight: 700; color: var(--ink-2); font-variant-numeric: tabular-nums; }

.ch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ch {
  position: relative; aspect-ratio: 1; padding: 13px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: var(--r-md); box-shadow: var(--shadow-1);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), border-color .2s;
}
.ch:hover { transform: translateY(-3px); border-color: var(--moss-2); }
.ch__no { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--brass); font-variant-numeric: tabular-nums; }
.ch__txt { font-size: 13.5px; line-height: 1.34; font-weight: 500; text-wrap: pretty; }
.ch__bg { position: absolute; inset: 0; opacity: 0; transition: opacity .4s; }
.ch__bg img { width: 100%; height: 100%; object-fit: cover; }
.ch__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,32,24,.9) 0%, rgba(28,32,24,.35) 55%, rgba(28,32,24,.15) 100%);
}
.ch.is-done .ch__bg { opacity: 1; }
.ch.is-done .ch__txt, .ch.is-done .ch__no { position: relative; color: #F4EFE3; }
.ch.is-done .ch__no { color: #E6C589; }
.ch__stamp {
  position: absolute; top: 11px; right: 11px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--moss); color: #F4F6EE; opacity: 0; transform: scale(.4);
  transition: opacity .3s, transform .35s cubic-bezier(.2,1.4,.4,1);
}
.ch__stamp svg { width: 14px; height: 14px; }
.ch.is-done .ch__stamp { opacity: 1; transform: scale(1); }

/* Opnemen */
.rec-switch { display: flex; gap: 3px; padding: 3px; background: var(--paper-3); border-radius: 999px; margin-bottom: 22px; }
.rec-switch button { flex: 1; min-height: 42px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.rec-switch button[aria-pressed="true"] { background: var(--paper-2); color: var(--ink); box-shadow: var(--shadow-1); }

.recstage {
  aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: var(--paper-2); display: grid; place-items: center; border: 1px solid var(--line-2);
}
.recstage[data-kind="video"] { aspect-ratio: 3/4; background: #1A1E16; }
.recstage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.recstage__hint { position: relative; z-index: 2; font-size: 13px; color: var(--ink-2); text-align: center; padding: 0 30px; line-height: 1.5; }
.recstage[data-kind="video"] .recstage__hint { color: #EFE9DC; }

.wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 68px; position: relative; z-index: 2; }
.wave i { width: 3px; border-radius: 99px; background: var(--moss-2); height: 6px; transition: height .12s linear; }

.rec-live {
  position: absolute; top: 13px; left: 13px; z-index: 3;
  display: none; align-items: center; gap: 6px; padding: 5px 11px 5px 9px;
  background: rgba(24,28,20,.7); border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #F6EFE4;
}
.recstage.is-rec .rec-live { display: flex; }
.rec-live s { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); animation: blink 1.1s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }

.rec-timer { text-align: center; margin-top: 18px; font-family: var(--font-display); font-size: 30px; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.rec-trigger {
  width: 74px; height: 74px; margin: 16px auto 0; border-radius: 50%;
  display: grid; place-items: center; border: 3px solid var(--line); background: var(--paper-2);
  transition: border-color .2s;
}
.rec-trigger s { width: 46px; height: 46px; border-radius: 50%; background: var(--clay); transition: all .28s cubic-bezier(.2,.7,.3,1); }
.rec-trigger[aria-pressed="true"] { border-color: var(--clay); }
.rec-trigger[aria-pressed="true"] s { width: 26px; height: 26px; border-radius: 6px; }
.rec-review { margin-top: 18px; }
.rec-review audio { width: 100%; }
.rec-review video { width: 100%; border-radius: var(--r-md); background: #1A1E16; }

/* Galerij */
.locked { text-align: center; padding: 46px 0 0; }
.locked__ring {
  width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; color: var(--brass);
  border: 1px dashed color-mix(in srgb, var(--brass) 52%, transparent);
  background: var(--brass-soft);
}
.locked__ring svg { width: 27px; height: 27px; }

.masonry { column-gap: 8px; column-count: 2; }
.mitem {
  break-inside: avoid; margin-bottom: 8px; position: relative;
  border-radius: var(--r-sm); overflow: hidden; width: 100%; display: block;
  background: var(--paper-3); padding: 0; border: 0;
}
.mitem img { width: 100%; height: auto; }
.mitem__by {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 9px 7px;
  font-size: 10.5px; font-weight: 600; color: #F2EDE1; text-align: left;
  background: linear-gradient(to top, rgba(26,30,22,.78), transparent);
  opacity: 0; transition: opacity .25s;
}
.mitem:hover .mitem__by, .mitem:focus-visible .mitem__by { opacity: 1; }
.mitem__kind {
  position: absolute; top: 7px; right: 7px; width: 22px; height: 22px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(26,30,22,.62); color: #F2EDE1;
}
.mitem__kind svg { width: 12px; height: 12px; }

.gcount { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 12.5px; color: var(--ink-3); }
.gcount s { flex: 1; height: 1px; background: var(--line); }

/* Ingesproken berichten — eigen mediatype, geen foto */
.msgs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.msg {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 11px 13px; background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: var(--r-md); box-shadow: var(--shadow-1); transition: border-color .18s;
}
.msg:hover { border-color: var(--moss-2); }
.msg__play { width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--moss-soft); color: var(--moss); }
.msg__play svg { width: 14px; height: 14px; margin-left: 2px; }
.msg__meta { flex: none; min-width: 88px; }
.msg__meta b { display: block; font-size: 12.5px; font-weight: 600; }
.msg__meta em { font-style: normal; font-size: 10.5px; color: var(--ink-3); }
.msg__wave { flex: 1; display: flex; align-items: center; gap: 2px; height: 26px; min-width: 0; overflow: hidden; }
.msg__wave s { width: 2px; flex: none; border-radius: 99px; background: var(--line); }
.msg__dur { flex: none; font-size: 11.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 60; display: none;
  background: var(--scrim); backdrop-filter: blur(14px);
  padding: calc(env(safe-area-inset-top) + 22px) 22px calc(env(safe-area-inset-bottom) + 22px);
  flex-direction: column; gap: 14px;
}
.lb.is-on { display: flex; animation: pane-in .22s both; }
.lb__x { position: absolute; top: calc(env(safe-area-inset-top) + 16px); right: 16px; z-index: 3; color: #F2EDE1; padding: 6px; }
.lb__x svg { width: 22px; height: 22px; }
.lb__frame { flex: 1; display: grid; place-items: center; min-height: 0; }
.lb__frame img, .lb__frame video { max-height: 100%; max-width: 100%; width: auto; border-radius: var(--r-sm); box-shadow: var(--shadow-3); }
.lb__foot { display: flex; align-items: center; gap: 14px; color: #EFE9DC; }
.lb__foot div { flex: 1; min-width: 0; }
.lb__foot b { display: block; font-size: 14px; font-weight: 600; }
.lb__foot em { font-style: normal; font-size: 11.5px; opacity: .72; }
.lb__nav { display: flex; gap: 8px; }
.lb__nav button { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(246,241,231,.14); color: #F2EDE1; }
.lb__nav button:hover { background: rgba(246,241,231,.26); }
.lb__nav svg { width: 18px; height: 18px; }

/* Wachtrij-indicator */
.queue {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(env(safe-area-inset-bottom) + 16px); z-index: 50;
  display: none; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
  box-shadow: var(--shadow-2); font-size: 12.5px; color: var(--ink-2);
  max-width: calc(100vw - 32px);
}
.queue.is-on { display: flex; }
.queue s {
  width: 13px; height: 13px; flex: none; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--moss);
  animation: spin .9s linear infinite;
}
.queue.is-offline s { border-top-color: var(--brass); animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed; left: 50%; bottom: calc(env(safe-area-inset-bottom) + 26px);
  transform: translate(-50%, 14px); z-index: 90;
  padding: 12px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: var(--ink); color: var(--paper); box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

.sheet {
  position: fixed; inset: 0; z-index: 80; display: none;
  background: var(--scrim); backdrop-filter: blur(6px);
  justify-items: center; align-items: center;
  padding:
    calc(env(safe-area-inset-top) + 22px) 22px
    calc(env(safe-area-inset-bottom) + 22px);
  overflow-y: auto;
}
.sheet.is-on { display: grid; animation: pane-in .2s both; }
/* Met het toetsenbord open krimpt de zichtbare hoogte; dan het venster
   bovenaan uitlijnen in plaats van gecentreerd, anders schuift het eronder. */
@media (max-height: 620px) {
  .sheet { align-items: start; }
}
.sheet__box {
  width: 100%; max-width: 420px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-3); padding: 26px 24px 24px;
}
.sheet__box h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; text-wrap: balance; }
.sheet__box > p { margin-top: 9px; font-size: 14px; color: var(--ink-2); line-height: 1.6; text-wrap: pretty; }

.boot { padding: 80px 22px; text-align: center; color: var(--ink-3); font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
