:root {
  --white: #ffffff;
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #d9e0e8;
  --line-strong: #c5ced9;
  --surface: #f6f8fa;
  --accent: #168ca7;
  --accent-dark: #0f7188;
  --success: #247a4d;
  --header-height: 72px;
  --shell: 1240px;
  --reading: 820px;
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(22, 140, 167, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 9px 13px;
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-shell,
.section-shell,
.hero-shell,
.footer-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(217, 224, 232, 0.78);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 14px rgba(16, 24, 40, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  height: 44px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.nav-code)::after,
.research-trigger::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:not(.nav-code):hover::after,
.site-nav > a:not(.nav-code):focus-visible::after,
.research-trigger:hover::after,
.research-trigger:focus-visible::after,
.research-menu.is-open .research-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.research-menu {
  position: relative;
}

.research-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.research-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.research-menu.is-open .research-trigger svg {
  transform: rotate(180deg);
}

.research-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: -12px;
  z-index: 130;
  width: 270px;
  padding: 9px;
  visibility: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.research-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}

.research-menu.is-open .research-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.research-year {
  display: block;
  padding: 5px 9px 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.research-dropdown a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 9px;
  border-radius: 3px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
}

.research-dropdown a:hover,
.research-dropdown a:focus-visible {
  color: var(--accent-dark);
  background: #f1f6f7;
}

.research-dropdown small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.research-divider {
  display: block;
  height: 1px;
  margin: 7px 9px;
  background: var(--line);
}

.nav-code {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
}

.nav-code:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.nav-code svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}

.icon-button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 690px;
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.hero-shell {
  padding: 70px 0 72px;
}

.hero-logo {
  width: 260px;
  height: auto;
  margin-bottom: 25px;
}

.hero h1 {
  max-width: 1160px;
  margin: 0;
  color: var(--ink);
  font-size: 50px;
  font-weight: 730;
  line-height: 1.1;
}

.hero h1 .hero-name {
  color: var(--accent-dark);
}

.hero h1 .keep-together {
  color: inherit;
  white-space: nowrap;
}

.authors {
  max-width: 1180px;
  margin-top: 28px;
  color: #25344a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.authors a {
  text-decoration: none;
}

.authors a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.authors a,
.authors > span {
  white-space: nowrap;
}

.authors sup,
.affiliations sup {
  color: var(--accent-dark);
  font-size: 0.7em;
}

.affiliations {
  max-width: 1160px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.affiliation-row,
.author-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 20px;
}

.author-note-row {
  margin-top: 3px;
  font-size: 12px;
}

.affiliations span {
  white-space: nowrap;
}

.venue {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button-primary {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  border-color: var(--accent-dark);
  color: var(--white);
  background: var(--accent-dark);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section,
.quantitative-results,
.qualitative {
  padding: 92px 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading h2,
.results-subheading h2,
.qualitative-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 720;
  line-height: 1.16;
}

.section-heading > p:last-child,
.results-subheading > p:last-child,
.qualitative-copy > p:last-child {
  max-width: 880px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.overview {
  background: var(--white);
}

.abstract-heading {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: end;
  column-gap: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.abstract-heading .section-label {
  margin: 0 0 7px;
}

.abstract-copy {
  max-width: 800px;
  margin: 28px 0 0 274px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
}

.paper-figure {
  margin: 58px 0 0;
}

.figure-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.figure-label span:last-child {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.figure-zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--white);
  cursor: zoom-in;
}

.figure-zoom img {
  width: 100%;
  height: auto;
}

.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(197, 206, 217, 0.95);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0.76;
  transition: color 150ms ease, opacity 150ms ease;
}

.figure-zoom:hover .zoom-hint {
  color: var(--accent-dark);
  opacity: 1;
}

.zoom-hint svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.method {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.method .section-heading {
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  column-gap: 44px;
  align-items: start;
}

.method .section-heading .section-label {
  grid-column: 1;
}

.method .section-heading h2 {
  grid-column: 1;
}

.method .section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.method-figure {
  margin-top: 52px;
}

.results {
  background: var(--white);
}

.quantitative-results {
  background: var(--white);
}

.results-subheading {
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  column-gap: 44px;
  align-items: start;
}

.results-subheading .section-label,
.results-subheading h2 {
  grid-column: 1;
}

.results-subheading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 52px;
  margin-top: 54px;
}

.benchmark-grid .paper-figure {
  min-width: 0;
  margin: 0;
}

.qualitative {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.qualitative-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: 64px;
  align-items: start;
}

.qualitative-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.qualitative-copy h3 {
  font-size: 34px;
}

.qualitative-copy > p:last-child {
  font-size: 16px;
}

.qualitative-figure {
  margin-top: 0;
}

.citation {
  border-top: 1px solid var(--line);
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.resource-links a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 90px;
  padding: 18px 22px 18px 0;
  text-decoration: none;
  transition: color 150ms ease;
}

.resource-links a + a {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.resource-links a:hover {
  color: var(--accent-dark);
}

.resource-links svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.resource-links span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.resource-links strong {
  color: var(--ink);
  font-size: 15px;
}

.resource-links small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.citation-grid {
  margin-top: 42px;
}

.bibtex-block {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--surface);
}

.bibtex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 13px 10px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.bibtex-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

.copy-button {
  width: 38px;
  height: 38px;
}

.bibtex-block pre {
  max-width: 100%;
  margin: 0;
  padding: 24px 26px 28px;
  overflow-x: auto;
  color: #24324a;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  tab-size: 2;
}

.copy-status {
  min-height: 0;
  margin: 0;
  padding: 0 26px;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.copy-status:not(:empty) {
  min-height: 28px;
  padding-bottom: 14px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-shell {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 25px;
  align-items: center;
}

.footer-shell > img {
  width: 140px;
  height: auto;
}

.footer-shell > div {
  display: flex;
  flex-direction: column;
}

.footer-shell strong {
  color: var(--ink);
  font-size: 13px;
}

.footer-shell span {
  color: var(--muted);
  font-size: 12px;
}

.footer-shell nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-shell nav a:hover {
  color: var(--accent-dark);
}

.figure-dialog {
  width: min(96vw, 1500px);
  max-width: none;
  height: min(94vh, 980px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 24px 90px rgba(4, 16, 38, 0.32);
}

.figure-dialog::backdrop {
  background: rgba(4, 16, 38, 0.76);
}

.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 9px 11px 9px 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dialog-media {
  display: grid;
  place-items: center;
  height: calc(100% - 62px);
  padding: 16px;
  overflow: auto;
  background: #eef2f5;
}

.dialog-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    width: 100vw;
    height: calc(100dvh - var(--header-height));
    padding: 28px 24px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.11);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .site-nav > a::after,
  .research-trigger::after {
    display: none;
  }

  .nav-code {
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .research-menu {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .research-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 16px 4px;
    font-size: 18px;
  }

  .research-dropdown {
    position: static;
    display: none;
    width: 100%;
    padding: 0 4px 14px 16px;
    visibility: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .research-dropdown::before {
    display: none;
  }

  .research-menu.is-open .research-dropdown {
    display: block;
  }

  .research-dropdown a {
    padding: 9px 4px;
    font-size: 14px;
  }

  .abstract-heading,
  .method .section-heading,
  .results-subheading {
    grid-template-columns: 190px minmax(0, 1fr);
    column-gap: 32px;
  }

  .abstract-copy {
    margin-left: 222px;
    hyphens: manual;
    text-align: left;
    -webkit-hyphens: manual;
  }

  .qualitative-layout {
    grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.68fr);
    gap: 42px;
  }

  .resource-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-links a:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .resource-links a:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 62px;
  }

  .nav-shell,
  .section-shell,
  .hero-shell,
  .footer-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand {
    width: 142px;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    padding: 44px 0 54px;
  }

  .hero-logo {
    width: 190px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .authors {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .affiliations {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.5;
  }

  .affiliation-row,
  .author-note-row {
    gap: 3px 10px;
  }

  .author-note-row {
    margin-top: 3px;
    font-size: 11px;
  }

  .affiliations span {
    white-space: normal;
  }

  .venue {
    margin-top: 13px;
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-width: 0;
    padding: 0 11px;
  }

  .section,
  .quantitative-results,
  .qualitative {
    padding: 64px 0;
  }

  .abstract-heading,
  .method .section-heading,
  .results-subheading {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-heading h2,
  .results-subheading h2,
  .qualitative-copy h3 {
    font-size: 30px;
  }

  .section-heading > p:last-child,
  .results-subheading > p:last-child,
  .qualitative-copy > p:last-child {
    margin-top: 14px;
    font-size: 16px;
  }

  .abstract-copy {
    margin: 22px 0 0;
    font-size: 15px;
    line-height: 1.72;
    text-align: left;
  }

  .paper-figure,
  .method-figure {
    margin-top: 42px;
  }

  .figure-label {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .method .figure-zoom,
  .benchmark-grid .figure-zoom {
    overflow-x: auto;
  }

  .method .figure-zoom img {
    width: 760px;
    max-width: none;
  }

  .benchmark-grid .figure-zoom img {
    width: 720px;
    max-width: none;
  }

  .zoom-hint {
    right: 9px;
    bottom: 9px;
    width: 32px;
    height: 32px;
  }

  .benchmark-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 42px;
  }

  .qualitative-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .qualitative-copy {
    position: static;
  }

  .resource-links {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .resource-links a,
  .resource-links a + a,
  .resource-links a:nth-child(3),
  .resource-links a:nth-child(4) {
    min-height: 78px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .resource-links a:first-child {
    border-top: 0;
  }

  .citation-grid {
    margin-top: 36px;
  }

  .bibtex-block pre {
    padding: 20px;
    font-size: 12px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-shell nav {
    gap: 18px;
  }

  .figure-dialog {
    width: 100vw;
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .dialog-toolbar {
    padding-left: 14px;
  }

  .dialog-toolbar p {
    max-width: calc(100% - 56px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dialog-media {
    padding: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
