/* ==========================================================================
   Shuttle Docs
   Near-monochrome, hairline rules, one accent. Type does the work.
   ========================================================================== */

:root {
  --accent: #0021ff;
  --accent-soft: rgba(0, 33, 255, 0.07);

  --bg: #ffffff;
  --bg-soft: #fafbfc;
  --panel: #ffffff;

  --ink: #14171f;
  --ink-strong: #05070c;
  --ink-mute: #4d5566;
  --ink-faint: #626b7c;
  --ink-ghost: #6b7382;

  --line: #e2e5ec;
  --line-soft: #eef0f4;

  --code-bg: #fafbfc;
  --code-line: #e6e8ee;
  --code-ink: #2a2f3a;

  --tok-kw: #0021ff;
  --tok-typ: #0f766e;
  --tok-str: #9a5b00;
  --tok-num: #9a5b00;
  --tok-com: #6b7382;
  --tok-fn: #14171f;
  --tok-pun: #676f80;

  --sidebar-w: 248px;
  --toc-w: 208px;
  --gutter: 56px;
  --bar-h: 56px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo,
    Consolas, "Liberation Mono", monospace;

  color-scheme: light;
}

/* ---------- reset ----------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--ink-strong);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s var(--ease);
}
a:hover {
  text-decoration-color: var(--accent);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

kbd {
  font-family: var(--font-mono);
  font-size: 0.82em;
  padding: 1px 5px;
  border: 1px solid var(--line);
  color: var(--ink-faint);
}

::selection {
  background: var(--accent-soft);
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
}

/* ---------- top bar --------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--bar-h);
  padding: 0 24px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}
.topbar__brand img {
  display: block;
  height: 19px;
  width: auto;
}
.topbar__tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
  padding-left: 9px;
  border-left: 1px solid var(--line);
}

.topbar__spacer {
  flex: 1;
}


.searchbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 212px;
  height: 30px;
  padding: 0 6px 0 10px;
  border: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 13px;
  transition: border-color 0.15s var(--ease);
}
.searchbtn:hover {
  border-color: var(--ink-ghost);
}
.searchbtn kbd {
  margin-left: auto;
  border: 0;
  font-size: 11px;
  color: var(--ink-ghost);
}

.iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--ink-faint);
  transition: color 0.15s var(--ease);
}
.iconbtn:hover {
  color: var(--ink-strong);
}
.iconbtn svg {
  width: 16px;
  height: 16px;
}

.navtoggle {
  display: none;
}

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

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr) var(--toc-w);
  gap: var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}

/* ---------- sidebar --------------------------------------------------- */

.sidebar {
  position: sticky;
  top: var(--bar-h);
  max-height: calc(100vh - var(--bar-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 40px 12px 80px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: var(--line);
}

.navgroup + .navgroup {
  margin-top: 26px;
}
.navgroup__title {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-faint);
}
.navgroup ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line-soft);
}
.navgroup a {
  display: block;
  padding: 4px 0 4px 14px;
  margin-left: -1px;
  border-left: 1px solid transparent;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.13s var(--ease), border-color 0.13s var(--ease);
}
.navgroup a:hover {
  color: var(--ink-strong);
  border-left-color: var(--ink-ghost);
}
.navgroup a.is-active {
  color: var(--ink-strong);
  font-weight: 500;
  border-left-color: var(--accent);
}
.navgroup a code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: -0.02em;
  background: none;
  padding: 0;
  border: 0;
  color: inherit;
}

/* ---------- content --------------------------------------------------- */

.content {
  min-width: 0;
  max-width: 748px;
  padding: 52px 0 140px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
}
.crumbs a {
  color: var(--ink-faint);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--ink-strong);
}

h1,
h2,
h3,
h4 {
  color: var(--ink-strong);
  scroll-margin-top: 84px;
  font-weight: 600;
}

h1 {
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.028em;
  margin: 0 0 14px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.022em;
  margin: 60px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

h3 {
  font-size: 15.5px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 34px 0 10px;
}

h4 {
  font-size: 14.5px;
  margin: 26px 0 8px;
}

.content p {
  margin: 0 0 16px;
}

.lede {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.content ul,
.content ol {
  margin: 0 0 18px;
  padding-left: 20px;
}
.content li {
  margin-bottom: 6px;
}
.content li::marker {
  color: var(--ink-ghost);
}

.content strong {
  color: var(--ink-strong);
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.anchor {
  margin-left: 8px;
  font-size: 0.8em;
  font-weight: 400;
  color: var(--ink-ghost);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.14s var(--ease);
}
h2:hover .anchor,
h3:hover .anchor,
h4:hover .anchor,
.anchor:focus {
  opacity: 1;
}

/* inline code */
.content :not(pre) > code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  letter-spacing: -0.02em;
  padding: 0.1em 0.34em;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  color: var(--ink-strong);
  overflow-wrap: anywhere;
}

/* ---------- page header ----------------------------------------------- */

.pagehead {
  margin-bottom: 40px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta__i {
  min-width: 0;
}
.meta__k {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
  margin-bottom: 2px;
}
.meta__v {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
}

/* ---------- callouts -------------------------------------------------- */

.callout {
  margin: 26px 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 14px;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout p {
  margin-bottom: 10px;
}
.callout__title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 6px !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-faint);
}
.callout__title svg {
  display: none;
}
.callout--warn {
  border-left-color: var(--ink-ghost);
}
.callout--note .callout__title {
  color: var(--ink-ghost);
}

/* ---------- tables ---------------------------------------------------- */

.tablewrap {
  margin: 24px 0;
  overflow-x: auto;
}
.tablewrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.55;
  min-width: 520px;
}
.tablewrap th {
  text-align: left;
  vertical-align: bottom;
  padding: 0 20px 9px 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-strong);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.tablewrap td {
  padding: 11px 20px 11px 0;
  vertical-align: top;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line-soft);
}
.tablewrap th:last-child,
.tablewrap td:last-child {
  padding-right: 0;
}
.tablewrap tr:last-child td {
  border-bottom: 0;
}
.tablewrap td code {
  white-space: nowrap;
}

/* ---------- code ------------------------------------------------------ */

.codeblock {
  margin: 24px 0;
  background: var(--code-bg);
  border: 1px solid var(--code-line);
}

.codeblock__bar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 6px 0 2px;
  border-bottom: 1px solid var(--code-line);
}

.codetab {
  padding: 8px 12px;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-faint);
  transition: color 0.13s var(--ease), border-color 0.13s var(--ease);
}
.codetab:hover {
  color: var(--ink-strong);
}
.codetab.is-active {
  color: var(--ink-strong);
  border-bottom-color: var(--ink-strong);
}

.codeblock__lang {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
}

.copybtn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-ghost);
  transition: color 0.13s var(--ease);
}
.copybtn:hover {
  color: var(--ink-strong);
}
.copybtn.is-done {
  color: var(--accent);
}
.copybtn svg {
  width: 12px;
  height: 12px;
}

.codeblock pre {
  margin: 0;
  padding: 16px 18px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: var(--code-ink);
  tab-size: 2;
}
.codeblock code {
  font-family: inherit;
  white-space: pre;
}
.codepane[hidden] {
  display: none !important;
}
.codepane__note {
  margin: 0;
  padding: 12px 18px 14px;
  border-top: 1px solid var(--code-line);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.content .codepane__note code,
.content .codeblock :not(pre) > code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  letter-spacing: -0.02em;
  padding: 0.1em 0.34em;
  background: none;
  border: 0;
  color: var(--ink-strong);
  white-space: normal;
}

.tok-kw { color: var(--tok-kw); }
.tok-typ { color: var(--tok-typ); }
.tok-str { color: var(--tok-str); }
.tok-num { color: var(--tok-num); }
.tok-com { color: var(--tok-com); font-style: italic; }
.tok-fn { color: var(--tok-fn); }
.tok-pun { color: var(--tok-pun); }

/* ---------- diagrams -------------------------------------------------- */

.figure {
  margin: 32px 0;
  padding: 0;
}
.figure svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.figure figcaption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-faint);
}
.figure figcaption b {
  color: var(--ink);
  font-weight: 500;
}

/* line art: hairline boxes, one accent, no fills */
.dg-fill-panel {
  fill: var(--bg);
  stroke: var(--line);
}
.dg-fill-surface {
  fill: var(--bg-soft);
  stroke: var(--line);
}
.dg-fill-mate {
  fill: none;
  stroke: var(--ink-strong);
}
.dg-fill-blue {
  fill: none;
  stroke: var(--accent);
}
.dg-fill-cian {
  fill: none;
  stroke: var(--accent);
}
.dg-stroke {
  stroke: var(--line);
  fill: none;
}
.dg-stroke-blue {
  stroke: var(--accent);
  fill: none;
}
.dg-stroke-mute {
  stroke: var(--ink-ghost);
  fill: none;
}
.dg-t {
  fill: var(--ink-strong);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 550;
  letter-spacing: -0.015em;
}
.dg-t-sm {
  fill: var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.dg-t-mono,
.dg-t-cian {
  fill: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.dg-t-inv {
  fill: var(--ink-strong);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 550;
  letter-spacing: -0.015em;
}
.dg-accent {
  fill: var(--accent);
}
/* state markers: accent = waiting on you, solid = final success, hollow = other */
.dg-dot-open {
  fill: var(--accent);
  stroke: none;
}
.dg-dot-ok {
  fill: var(--ink-strong);
  stroke: none;
}
.dg-dot-bad {
  fill: none;
  stroke: var(--ink-ghost);
}
.dg-warn {
  fill: var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 400;
}

/* ---------- right TOC ------------------------------------------------- */

.toc {
  position: sticky;
  top: var(--bar-h);
  max-height: calc(100vh - var(--bar-h));
  overflow-y: auto;
  padding: 56px 0 80px;
  font-size: 13px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.toc__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-faint);
}
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc a {
  display: block;
  padding: 4px 0;
  color: var(--ink-faint);
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.13s var(--ease);
}
.toc a:hover {
  color: var(--ink-strong);
}
.toc a.is-active {
  color: var(--ink-strong);
}
.toc li.lvl3 a {
  padding-left: 14px;
  font-size: 12.5px;
}

/* ---------- prev / next ----------------------------------------------- */

.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.pager a {
  display: block;
  padding: 4px 0;
  color: var(--ink-strong);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-decoration: none;
}
.pager a:hover {
  color: var(--accent);
}
.pager span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.pager .next {
  text-align: right;
}
.pager .pager__empty {
  visibility: hidden;
}

/* ---------- home ------------------------------------------------------ */

.hero {
  margin: 0 0 8px;
  padding: 0 0 36px;
}
.hero .eyebrow {
  display: block;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 42px;
  letter-spacing: -0.032em;
  margin-bottom: 16px;
  max-width: 14ch;
}
.hero p {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}

.cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 1px;
  margin: 20px 0 44px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  display: block;
  padding: 18px 20px 20px;
  background: var(--bg);
  text-decoration: none;
  transition: background 0.14s var(--ease);
}
.card:hover {
  background: var(--bg-soft);
}
.card__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  margin-bottom: 7px;
}
.card:hover .card__k {
  color: var(--accent);
}
.card__d {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-faint);
}
.card__n {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
  margin-bottom: 9px;
}

/* ---------- search ---------------------------------------------------- */

.searchoverlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 11vh 20px 20px;
  background: color-mix(in srgb, var(--ink-strong) 22%, transparent);
  backdrop-filter: blur(3px);
  animation: fadein 0.15s var(--ease);
}
.searchoverlay[hidden] {
  display: none;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
}
.searchbox {
  width: min(640px, 100%);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px -24px rgba(5, 7, 12, 0.34);
  animation: popin 0.17s var(--ease);
}
@keyframes popin {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.searchbox input {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--ink-strong);
  font: inherit;
  font-size: 16px;
  letter-spacing: -0.015em;
  outline: none;
}
.searchbox input::placeholder {
  color: var(--ink-ghost);
}
.searchresults {
  overflow-y: auto;
  padding: 6px;
}
.searchresults a {
  display: block;
  padding: 9px 12px;
  text-decoration: none;
  border-left: 1px solid transparent;
}
.searchresults a:hover,
.searchresults a.is-sel {
  background: var(--bg-soft);
  border-left-color: var(--accent);
}
.sr__t {
  display: block;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.015em;
  color: var(--ink-strong);
}
.sr__c {
  display: block;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 2px;
}
.sr__s {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-faint);
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.searchresults mark {
  background: var(--accent-soft);
  color: var(--ink-strong);
  padding: 0 1px;
}
.searchempty {
  padding: 26px 20px;
  text-align: center;
  color: var(--ink-ghost);
  font-size: 13.5px;
}
.searchfoot {
  padding: 9px 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-faint);
  display: flex;
  gap: 16px;
}

/* ---------- responsive ------------------------------------------------ */

@media (max-width: 1280px) {
  .layout {
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
    gap: 48px;
  }
  .toc {
    display: none;
  }
}

@media (max-width: 1023px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 22px;
  }
  .navtoggle {
    display: inline-flex;
  }
  .searchbtn {
    min-width: 0;
    width: 30px;
    padding: 0;
    justify-content: center;
    border-color: transparent;
  }
  .searchbtn span,
  .searchbtn kbd {
    display: none;
  }
  .sidebar {
    position: fixed;
    inset: var(--bar-h) auto 0 0;
    z-index: 70;
    width: min(300px, 84vw);
    max-height: none;
    height: calc(100dvh - var(--bar-h));
    padding: 24px 20px 60px;
    background: var(--bg);
    border-right: 1px solid var(--line);
    transform: translateX(-102%);
    transition: transform 0.24s var(--ease);
  }
  .sidebar.is-open {
    transform: none;
  }
  .navscrim {
    position: fixed;
    inset: var(--bar-h) 0 0;
    z-index: 65;
    background: color-mix(in srgb, var(--ink-strong) 24%, transparent);
  }
  .navscrim[hidden] {
    display: none;
  }
  .content {
    padding: 32px 0 100px;
  }
  .hero h1 {
    font-size: 32px;
    max-width: none;
  }
  .pager {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .figure {
    overflow-x: auto;
  }
  .figure svg {
    min-width: 520px;
  }
  .meta {
    gap: 14px 32px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0 14px;
    gap: 8px;
  }
  .topbar__tag {
    display: none;
  }
  h1 {
    font-size: 28px;
  }
  .cardgrid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .topbar,
  .sidebar,
  .toc,
  .pager,
  .searchoverlay {
    display: none !important;
  }
  .layout {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
