/* MAD ROLLS — one stylesheet, no build step.
   Design system from madrolls-brand-pack: monochrome street aesthetic,
   Sora for everything, red (#E53935) only for live data and key moments —
   at most one red element per view. */

@font-face {
  font-family: 'Sora';
  src: url('/fonts/sora-variable.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens */

:root {
  /* core palette (brand sheet §1) */
  --charcoal: #1A1A1A;
  --ink:      #0B0B0B;
  --paper:    #FAFAFA;
  --ash:      #A6A6A6;
  --red:      #E53935;

  /* light theme (default): off-white paper, white cards, charcoal text */
  --bg:          var(--paper);
  --surface:     #FFFFFF;
  --surface-2:   #F3F3F3;
  --text:        var(--charcoal);
  --text-2:      #595959;
  --text-3:      var(--ash);
  --line:        #E4E4E4;
  --line-strong: var(--charcoal);
  --action:      var(--ink);
  --action-text: var(--paper);
  --tag-bg:      #EFEFEF;
  --disabled-bg: #EDEDED;
  --shadow:      0 1px 2px rgba(11, 11, 11, 0.05);
  --shadow-up:   0 -6px 24px rgba(11, 11, 11, 0.06);

  --radius-btn:  6px;
  --radius-card: 12px;
  --track:       0.08em;
  --maxw:        1180px;
  --bottomnav-h: 62px;

  color-scheme: light;
}

/* dark theme: ink page, charcoal cards, off-white text (tokens.css .mr-dark) */
:root[data-theme="dark"] {
  --bg:          var(--ink);
  --surface:     var(--charcoal);
  --surface-2:   #242424;
  --text:        var(--paper);
  --text-2:      #C4C4C4;
  --text-3:      var(--ash);
  --line:        #2A2A2A;
  --line-strong: var(--paper);
  --action:      var(--paper);
  --action-text: var(--ink);
  --tag-bg:      #262626;
  --disabled-bg: #242424;
  --shadow:      0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-up:   0 -6px 24px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

/* system preference fallback for the instant before the boot script stamps
   data-theme (and for anything that runs without it) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg:          var(--ink);
    --surface:     var(--charcoal);
    --surface-2:   #242424;
    --text:        var(--paper);
    --text-2:      #C4C4C4;
    --text-3:      var(--ash);
    --line:        #2A2A2A;
    --line-strong: var(--paper);
    --action:      var(--paper);
    --action-text: var(--ink);
    --tag-bg:      #262626;
    --disabled-bg: #242424;
    --shadow:      0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-up:   0 -6px 24px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}

/* ---------------------------------------------------------------- base */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 720px) { body { font-size: 16px; } }

a { color: inherit; }
p a, .kv a, .review a { text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* Sora Black uppercase is the display voice; the brush style exists only as
   the wordmark vectors and is never typeset. */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: var(--track);
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}
h2, h3 { font-weight: 700; }

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-2);
}

.muted { color: var(--text-2); }
.faint { color: var(--text-3); }

:focus-visible {
  outline: 2px solid var(--line-strong);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--text); color: var(--bg); }

/* brand artwork recolours through masks: paint currentColor, cut the shape */
.mask {
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--mask-url) center / contain no-repeat;
  mask: var(--mask-url) center / contain no-repeat;
}

/* ---------------------------------------------------------------- topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .topbar { padding: 12px 24px; } }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
/* the lockup is inline SVG (fill: currentColor) rather than a CSS mask so
   Android force-dark browsers recolour it like any other icon */
.brand-mark { width: 34px; height: 35px; flex: none; display: block; }
.brand-word { width: 128px; height: 21px; flex: none; display: block; }
.brand-sub {
  margin-left: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
@media (max-width: 379px) { .brand-sub { display: none; } }

.nav { display: none; margin-left: auto; }
@media (min-width: 720px) {
  .nav { display: flex; gap: 2px; align-items: center; }
}
.nav a {
  padding: 9px 14px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--text-2);
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.active { color: var(--action-text); background: var(--action); }

.topbar .iconbtn { margin-left: auto; }
@media (min-width: 720px) { .topbar .iconbtn { margin-left: 6px; } }

.iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px; flex: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.iconbtn:hover { background: var(--surface-2); }
.iconbtn svg { width: 21px; height: 21px; }

/* theme toggle shows the mode you would switch to */
.icon-moon { display: block; }
.icon-sun  { display: none; }
:root[data-theme="dark"] .icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun  { display: block; }

/* ---------------------------------------------------------------- bottom nav (mobile) */

.bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-up);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottomnav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: var(--bottomnav-h);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-3);
}
.bottomnav a svg { width: 22px; height: 22px; }
.bottomnav a.active { color: var(--text); }
@media (min-width: 720px) { .bottomnav { display: none; } }

body { padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom)); }
@media (min-width: 720px) { body { padding-bottom: 0; } }

/* ---------------------------------------------------------------- layout */

main { flex: 1; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; width: 100%; }
@media (min-width: 720px) { .wrap { padding: 0 24px; } }

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 16px 30px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .hero { padding: 64px 24px 44px; } }

.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.hero .kicker { margin-bottom: 12px; }
.hero h1 { font-size: clamp(28px, 6.5vw, 54px); max-width: 20ch; text-wrap: balance; }
.hero p {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 15px;
  color: var(--text-2);
}
@media (min-width: 720px) { .hero p { font-size: 17px; } }

/* one brush-texture accent per view, barely there (brand rule: restraint) */
.hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -40px;
  width: min(480px, 70vw);
  aspect-ratio: 636 / 368;
  background: currentColor;
  opacity: 0.05;
  -webkit-mask: url('/brand/texture.svg') center / contain no-repeat;
  mask: url('/brand/texture.svg') center / contain no-repeat;
  pointer-events: none;
}

.stats { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 26px; }
.stat-n { font-weight: 800; font-size: 30px; line-height: 1.1; letter-spacing: 0.02em; }
.stat-l {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------------------------------------------------------------- toolbar */

.toolbar { padding: 16px 0 14px; border-bottom: 1px solid var(--line); }

.toolbar-top { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.search {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text);
}
@media (min-width: 640px) { .search { flex: 1 1 260px; max-width: 420px; } }
.search svg { width: 18px; height: 18px; flex: none; color: var(--text-3); }
.search input {
  border: 0; outline: 0; background: transparent;
  flex: 1; min-width: 0;
  font: inherit; font-size: 16px;
  color: inherit;
  padding: 11px 0;
}
.search input::placeholder { color: var(--text-3); }
.search:focus-within { border-color: var(--line-strong); }

input[type=text], input[type=email], input[type=tel], input[type=url],
input[type=number], select, textarea {
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 13px;
  font: inherit;
  font-size: 16px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--line-strong);
}
textarea { min-height: 120px; resize: vertical; }
label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-2);
}

.toolbar select { width: auto; flex: 1 1 auto; }
@media (min-width: 640px) { .toolbar select { flex: 0 1 auto; min-width: 150px; } }

.spacer { flex: 1; }

.seg {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  flex: none;
}
.seg button {
  border: 0; background: transparent; color: var(--text-2);
  padding: 9px 16px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
}
.seg button[aria-pressed="true"] { background: var(--action); color: var(--action-text); }

/* chips scroll off the edge on mobile instead of stacking */
.chiprow {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px;
  margin-left: -2px;
  margin-right: -2px;
}
.chiprow::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex: none;
}
.chip:hover { border-color: var(--text-3); }
.chip[aria-pressed="true"] {
  background: var(--action);
  border-color: var(--action);
  color: var(--action-text);
}

/* ---------------------------------------------------------------- cards */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
  padding: 20px 0 56px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s;
}
@media (hover: hover) {
  .card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
}

.card h3 { font-size: 16px; letter-spacing: 0.05em; margin-bottom: 3px; }
.card .where { font-size: 12.5px; color: var(--text-3); }
.card .blurb {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .bottom { margin-top: auto; }
.card .foot {
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* the loudest data point on a card is the next open-mat time;
   red only when it is today (live data — the view's red budget) */
.nextmat {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nextmat svg { width: 16px; height: 16px; flex: none; }
.nextmat .faint { font-weight: 600; }
.live { color: var(--red); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--text);
  white-space: nowrap;
}
.tag.inverse { background: var(--text); color: var(--bg); }
.tag.outline { background: transparent; border: 1px solid var(--line); color: var(--text-3); padding: 2px 9px; }

.rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.stars { letter-spacing: 2px; font-size: 13px; }
.rating .n { color: var(--text-3); font-weight: 400; }

/* ---------------------------------------------------------------- map */

#map {
  height: min(62vh, 560px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  margin: 20px 0 56px;
  background: var(--surface);
  z-index: 0;
}

/* map imagery renders grayscale so the monochrome UI and brand pin dominate */
.leaflet-tile-pane { filter: grayscale(1) contrast(1.02); }
:root[data-theme="dark"] .leaflet-tile-pane {
  filter: grayscale(1) invert(1) brightness(0.86) contrast(1.05);
}

.map-pin {
  color: var(--text);
  background: currentColor;
  -webkit-mask: url('/brand/pin.svg') center / contain no-repeat;
  mask: url('/brand/pin.svg') center / contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(11, 11, 11, 0.35));
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 8px 30px rgba(11, 11, 11, 0.25);
}
.leaflet-popup-content { margin: 12px 15px; font-family: inherit; font-size: 13.5px; line-height: 1.55; }
.leaflet-popup-content a { color: var(--text); font-weight: 700; }
.leaflet-container { background: var(--surface-2); font-family: inherit; }
.leaflet-container .leaflet-control-attribution {
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--text-3);
  font-size: 10px;
}
.leaflet-control-attribution a { color: var(--text-2); }
.leaflet-bar a {
  background: var(--surface);
  color: var(--text);
  border-bottom-color: var(--line);
}
.leaflet-bar a:hover { background: var(--surface-2); }

/* ---------------------------------------------------------------- detail */

.detail { padding-block: 26px 64px; }
@media (min-width: 720px) { .detail { padding-block: 36px 72px; } }

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 20px;
}
.back:hover { color: var(--text); }

.detail h1 { font-size: clamp(26px, 5.5vw, 44px); }
.detail .sub {
  margin-top: 10px;
  color: var(--text-2);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

.cols { display: grid; grid-template-columns: 1fr; gap: 0 30px; margin-top: 26px; align-items: start; }
@media (min-width: 900px) { .cols { grid-template-columns: 1.6fr 1fr; } }

.panel {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
@media (min-width: 720px) { .panel { padding: 22px; } }
.panel h2 { font-size: 15px; letter-spacing: 0.1em; margin-bottom: 14px; }

.kv { display: grid; grid-template-columns: 96px 1fr; gap: 9px 14px; font-size: 14px; margin: 0; }
.kv dt {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 2px;
}
.kv dd { margin: 0; word-break: break-word; }

.matlist { list-style: none; margin: 0; padding: 0; }
.matlist li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.matlist li:last-child { border-bottom: 0; padding-bottom: 4px; }
.matday {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track);
  text-transform: uppercase;
  min-width: 42px;
}
.mattime { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 15px; }

.review { padding: 15px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; padding-bottom: 4px; }
.review .who {
  display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center;
  font-size: 12.5px; color: var(--text-2);
}
.review .who strong { color: var(--text); }
.review p { margin: 8px 0 0; font-size: 14.5px; }

.empty {
  padding: 30px 22px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--text-2);
  font-size: 14px;
}
.empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.empty-art {
  width: min(230px, 60%);
  aspect-ratio: 356 / 116;
  margin: 0 auto 16px;
  color: var(--text-3);
  --mask-url: url('/brand/grapple.svg');
}

/* ---------------------------------------------------------------- forms */

.field { margin-bottom: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--action);
  color: var(--action-text);
  border: 2px solid var(--action);
  border-radius: var(--radius-btn);
  padding: 11px 22px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--track);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 80ms ease, opacity 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { opacity: 0.85; }
.btn:active { transform: scale(0.98); }
.btn[disabled] {
  background: var(--disabled-bg);
  border-color: var(--disabled-bg);
  color: var(--text-3);
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}
.btn.ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn.ghost:hover { opacity: 1; background: var(--surface-2); }
.btn.block { display: flex; width: 100%; padding: 15px 24px; }

.starpick { display: flex; gap: 4px; }
.starpick button {
  background: none; border: 0; cursor: pointer; padding: 0 2px;
  font-size: 30px; line-height: 1; color: var(--line);
}
.starpick button[data-on="1"] { color: var(--text); }

.notice {
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--text-3);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 16px;
}
.notice.ok   { border-left-color: var(--text); font-weight: 600; }
.notice.err  { border-left-color: var(--red); color: var(--red); font-weight: 600; }
.notice.info { border-left-color: var(--text-3); color: var(--text-2); }

/* ---------------------------------------------------------------- week view */

.day-block { margin-bottom: 28px; }
.day-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 9px; margin-bottom: 12px; border-bottom: 2px solid var(--line-strong);
}
.day-head h2 { font-size: 18px; }
.day-head .today {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 3px 10px; border-radius: 999px;
}

.matrow {
  display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line); border-radius: 10px; margin-bottom: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: border-color .15s;
}
@media (hover: hover) { .matrow:hover { border-color: var(--line-strong); } }
.matrow .time {
  font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums;
  min-width: 104px;
}
.matrow .gym { font-weight: 700; font-size: 14.5px; }
.matrow .faint { font-size: 12.5px; }

/* ---------------------------------------------------------------- footer */

/* the footer is a dark surface in both themes — brand ink band */
.footer {
  background: var(--ink);
  color: var(--ash);
  border-top: 1px solid var(--line);
  padding: 34px 20px calc(34px + env(safe-area-inset-bottom));
  font-size: 13px;
  text-align: center;
}
.footer-word {
  width: 132px; height: 22px;
  display: inline-block;
  color: var(--paper);
  margin-bottom: 4px;
}
.footer .tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 auto 14px;
}
.footer p { margin: 4px auto; max-width: 68ch; }
.footer a { color: var(--paper); }

/* ---------------------------------------------------------------- states */

.skeleton {
  padding: 60px 0;
  text-align: center;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spin {
  width: 44px; height: 42px;
  margin: 0 auto 14px;
  color: var(--text-3);
  --mask-url: url('/brand/brush-circle.svg');
  animation: spin 1.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

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