:root {
  --paper: #f4f4ef;
  --paper-strong: #fffefa;
  --ink: #151a18;
  --muted: #626a66;
  --line: #cfd3cf;
  --line-dark: #3b4440;
  --night: #151a18;
  --night-soft: #202724;
  --night-text: #f4f6f0;
  --night-muted: #aeb7b2;
  --green: #247557;
  --green-bright: #a8edc9;
  --orange: #bd6b2d;
  --orange-soft: #fff0e4;
  --blue: #4965b8;
  --blue-soft: #e9edfb;
  --focus: #175bd3;
  --content: 1160px;
  --narrow: 820px;
  --header-height: 74px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.cns-shell {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.cns-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(70, 79, 75, 0.22);
  background: rgba(244, 244, 239, 0.94);
  backdrop-filter: blur(16px);
}

.cns-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.cns-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  color: inherit;
  text-decoration: none;
}

.cns-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1);
}

.cns-brand__copy {
  display: grid;
  line-height: 1.12;
}

.cns-brand__copy strong {
  font-size: 0.98rem;
}

.cns-brand__copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cns-header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cns-header__nav > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #434b47;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.cns-header__nav > a:hover,
.cns-header__nav > a:focus-visible {
  color: var(--green);
}

.cns-languages {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.cns-languages a {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.cns-languages a[aria-current="page"] {
  border-color: var(--green);
  color: var(--ink);
}

.cns-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.cns-eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cns-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: end;
  min-height: min(760px, calc(100vh - var(--header-height)));
  padding-block: clamp(70px, 10vw, 132px);
}

.cns-home-hero h1,
.cns-product-hero h1 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.052em;
}

.cns-home-hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.6vw, 7.25rem);
  line-height: 0.88;
}

.cns-home-hero__intro {
  max-width: 58ch;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.cns-need-list {
  border-top: 1px solid #aeb5b1;
}

.cns-need {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 15px;
  align-items: center;
  min-height: 94px;
  padding: 16px 0;
  border-bottom: 1px solid #aeb5b1;
  text-decoration: none;
}

.cns-need__number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.cns-need strong,
.cns-need small {
  display: block;
}

.cns-need strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.cns-need small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cns-need__arrow {
  color: var(--green);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.cns-need:hover .cns-need__arrow,
.cns-need:focus-visible .cns-need__arrow {
  transform: translateX(4px);
}

.cns-catalog {
  background: var(--night);
  color: var(--night-text);
}

.cns-catalog__inner {
  padding-block: clamp(76px, 9vw, 124px);
}

.cns-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
  margin-bottom: 48px;
}

.cns-section-head h2,
.cns-section-title,
.cns-product-section h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.cns-section-head h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
}

.cns-section-head p {
  max-width: 55ch;
  margin: 0;
  color: var(--night-muted);
  font-size: 1.05rem;
}

.cns-product-list {
  border-top: 1px solid var(--line-dark);
}

.cns-product-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.95fr) minmax(220px, 1.2fr) auto 28px;
  gap: 22px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line-dark);
  color: inherit;
  text-decoration: none;
}

.cns-product-row__number {
  color: #7b8881;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cns-product-row strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.cns-product-row p {
  margin: 0;
  color: var(--night-muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.cns-product-row__arrow {
  color: var(--green-bright);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.cns-product-row:hover .cns-product-row__arrow,
.cns-product-row:focus-visible .cns-product-row__arrow {
  transform: translateX(4px);
}

.cns-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #d7ddd9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.cns-status--available {
  color: var(--green-bright);
}

.cns-status--light {
  border-color: #aab2ae;
  color: #4e5753;
}

.cns-principles {
  padding-block: clamp(72px, 8vw, 112px);
}

.cns-principles__intro {
  max-width: 700px;
  margin-bottom: 45px;
}

.cns-section-title {
  max-width: 15ch;
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

.cns-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px);
}

.cns-principle {
  padding-top: 21px;
  border-top: 3px solid var(--green);
}

.cns-principle:nth-child(2) {
  border-color: var(--orange);
}

.cns-principle:nth-child(3) {
  border-color: var(--blue);
}

.cns-principle h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.cns-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cns-lab-note {
  border-top: 1px solid var(--line);
  padding-block: 46px 72px;
}

.cns-lab-note__inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
}

.cns-lab-note strong {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cns-lab-note p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
}

.cns-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cns-breadcrumb a {
  min-height: 28px;
  text-underline-offset: 3px;
}

.cns-product-hero {
  padding-block: 54px clamp(64px, 8vw, 110px);
}

.cns-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.cns-product-hero__grid > * {
  min-width: 0;
}

.cns-product-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.7rem, 5.25vw, 5rem);
  line-height: 0.9;
}

.cns-product-hero__lead {
  max-width: 54ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.cns-product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.cns-requirement {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.cns-product-shot {
  margin: 0;
}

.cns-product-shot__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid #aab2ae;
  border-radius: 7px;
  background: #e8ebe8;
  box-shadow: 18px 18px 0 rgba(31, 40, 36, 0.09);
}

.cns-product-shot__frame::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background: var(--green);
  content: "";
}

.cns-product-shot--orange .cns-product-shot__frame::before {
  background: var(--orange);
}

.cns-product-shot--blue .cns-product-shot__frame::before {
  background: var(--blue);
}

.cns-product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.cns-product-shot figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cns-product-section {
  padding-block: clamp(70px, 8vw, 112px);
  border-top: 1px solid var(--line);
}

.cns-product-section--dark {
  border: 0;
  background: var(--night);
  color: var(--night-text);
}

.cns-release {
  padding-block: clamp(68px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.cns-release__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.cns-release__intro h2 {
  max-width: 13ch;
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.cns-release__intro > p:last-child {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--muted);
}

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

.cns-release__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.cns-release__item > span {
  padding-top: 3px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cns-release__item h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.cns-release__item p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.cns-product-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
}

.cns-product-section h2 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 4.7vw, 4.7rem);
  line-height: 0.98;
}

html[lang="en"] .cns-limits h2 {
  font-size: clamp(2.65rem, 4.2vw, 4.2rem);
}

.cns-product-section__copy > p:first-child {
  margin-top: 0;
}

.cns-product-section__copy p {
  max-width: 62ch;
  color: var(--muted);
}

.cns-product-section--dark .cns-product-section__copy p {
  color: var(--night-muted);
}

.cns-fit-list {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.cns-fit-list li {
  position: relative;
  padding: 17px 0 17px 31px;
  border-bottom: 1px solid var(--line);
}

.cns-fit-list li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.cns-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 6vw, 80px);
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.cns-feature {
  min-height: 176px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-dark);
}

.cns-feature__number {
  color: #748179;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cns-feature h3 {
  margin: 15px 0 8px;
  font-size: 1.15rem;
}

.cns-feature p {
  margin: 0;
  color: var(--night-muted);
  font-size: 0.91rem;
}

.cns-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.cns-process__step {
  padding-top: 20px;
  border-top: 3px solid var(--green);
}

.cns-process__step:nth-child(2) {
  border-color: var(--orange);
}

.cns-process__step:nth-child(3) {
  border-color: var(--blue);
}

.cns-process__step span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cns-process__step h3 {
  margin: 12px 0 7px;
  font-size: 1.12rem;
}

.cns-process__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.cns-limits {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.cns-limits__facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.cns-limits__facts div {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1.35fr);
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cns-limits__facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cns-limits__facts dd {
  margin: 0;
}

.cns-caveat {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 5px solid var(--orange);
  background: var(--orange-soft);
}

.cns-caveat strong,
.cns-caveat p {
  display: block;
}

.cns-caveat p {
  margin: 6px 0 0;
  color: #675446;
}

.cns-download {
  padding-block: clamp(65px, 8vw, 105px);
  background: var(--blue-soft);
}

.cns-download--development {
  background: #e9edea;
}

.cns-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.cns-download h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.cns-download__card {
  padding-top: 22px;
  border-top: 3px solid var(--blue);
}

.cns-download--development .cns-download__card {
  border-color: var(--green);
}

.cns-download__card > p {
  margin-top: 0;
  color: var(--muted);
}

.cns-download__meta {
  margin: 25px 0;
  border-top: 1px solid rgba(73, 101, 184, 0.32);
}

.cns-download__meta div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(73, 101, 184, 0.32);
}

.cns-download__meta dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cns-download__meta dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.cns-download__meta code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
}

.cns-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: white;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.cns-button:hover,
.cns-button:focus-visible {
  background: var(--green);
  border-color: var(--green);
}

.cns-adjacent {
  padding-block: 54px;
  border-top: 1px solid var(--line);
}

.cns-adjacent__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.cns-adjacent__link {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.cns-adjacent__link:nth-child(odd) {
  padding-right: 30px;
}

.cns-adjacent__link:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.cns-adjacent__link span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cns-adjacent__link strong {
  font-size: 1.08rem;
}

.cns-adjacent__link:hover strong,
.cns-adjacent__link:focus-visible strong {
  color: var(--green);
}

.gi-site-footer {
  margin-top: 0 !important;
}

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

  .cns-menu-toggle {
    display: inline-flex;
  }

  .cns-header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .cns-header__nav.is-open {
    display: grid;
  }

  .cns-header__nav > a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .cns-languages {
    padding: 9px 0 0;
    border-left: 0;
  }

  .cns-home-hero,
  .cns-product-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cns-home-hero > *,
  .cns-product-hero__grid > * {
    min-width: 0;
  }

  .cns-home-hero {
    min-height: 0;
    gap: 54px;
  }

  .cns-home-hero h1 {
    max-width: 11ch;
  }

  .cns-product-row {
    grid-template-columns: 44px minmax(170px, 0.9fr) minmax(200px, 1.1fr) auto 24px;
    gap: 14px;
  }

  .cns-product-hero__grid {
    gap: 55px;
  }

  .cns-product-hero__copy {
    max-width: 780px;
  }

  .cns-product-shot {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .cns-shell {
    width: min(100% - 30px, var(--content));
  }

  .cns-brand__copy span {
    display: none;
  }

  .cns-home-hero {
    padding-block: 58px 72px;
  }

  .cns-home-hero h1,
  .cns-product-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
    line-height: 0.91;
  }

  .cns-need {
    min-height: 102px;
  }

  .cns-section-head,
  .cns-product-section__intro,
  .cns-release__inner,
  .cns-limits,
  .cns-download__inner,
  .cns-lab-note__inner {
    grid-template-columns: 1fr;
  }

  .cns-section-head {
    gap: 24px;
  }

  .cns-product-row {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    min-height: 112px;
    gap: 12px;
  }

  .cns-product-row p,
  .cns-product-row .cns-status {
    display: none;
  }

  .cns-principles__grid,
  .cns-process,
  .cns-features {
    grid-template-columns: 1fr;
  }

  .cns-principles__grid {
    gap: 34px;
  }

  .cns-lab-note__inner {
    gap: 12px;
  }

  .cns-product-hero {
    padding-top: 38px;
  }

  .cns-product-shot__frame {
    box-shadow: 9px 9px 0 rgba(31, 40, 36, 0.09);
  }

  .cns-feature {
    min-height: 0;
  }

  .cns-release__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .cns-limits__facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cns-download__inner {
    gap: 34px;
  }

  .cns-adjacent__grid {
    grid-template-columns: 1fr;
  }

  .cns-adjacent__link:nth-child(odd),
  .cns-adjacent__link:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 380px) {
  .cns-brand img {
    width: 28px;
    height: 28px;
  }

  .cns-brand__copy strong {
    font-size: 0.9rem;
  }

  .cns-home-hero h1,
  .cns-product-hero h1 {
    font-size: 3.15rem;
  }

  .cns-need {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 10px;
  }
}

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

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