/* Cassiopeia Global — cassiopeia.sbs
   Палитра совпадает с мини-аппом (tailwind.config.js): primary #0A84FF,
   accent #64D2FF, фон #07090D, карточки #151922. */

:root {
  --ink: #07090d;
  --ink-soft: #0b0e15;
  --card: #151922;
  --card-hover: #1b2029;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f5f9;
  --muted: #9aa3b4;
  --primary: #0a84ff;
  --accent: #64d2ff;
  --shadow-neon: 0 12px 34px rgba(10, 132, 255, 0.28);
  --radius: 18px;
  --shell: 1140px;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

.shell-narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─────────────────────────── кнопки ─────────────────────────── */

/* Класс живёт и на <a>, и на <button> — сбросы нужны, чтобы кнопка не
   отличалась от ссылки шрифтом и рамкой */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease,
    box-shadow 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  background: #2a95ff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Кнопки в Telegram заглушены на время согласования. `disabled` на <button>
   сам гасит клик и фокус — CSS только показывает это состояние. */
/* Гасим не прозрачностью всей кнопки, а фоном и цветом текста по
   отдельности: `opacity` утащила бы за собой и подпись, а она должна
   оставаться читаемой. */
.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary:disabled,
.btn-primary[aria-disabled="true"] {
  background: rgba(10, 132, 255, 0.3);
  color: rgba(255, 255, 255, 0.72);
}

.btn-primary:disabled:hover,
.btn-primary[aria-disabled="true"]:hover {
  background: rgba(10, 132, 255, 0.3);
  transform: none;
}

/* Упоминание бота без перехода: выглядит как выделенный текст, не как ссылка */
.bot-mention {
  color: var(--muted);
  font-weight: 600;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 17px;
}

/* ─────────────────────────── шапка ──────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-name span {
  color: var(--muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 15px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ─────────────────── боковое меню (мобильные) ───────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.nav-toggle span:nth-child(2) {
  width: 70%;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(3, 5, 9, 0.66);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(88vw, 380px);
  height: 100%;
  background: var(--ink-soft);
  border-right: 1px solid var(--line-strong);
  box-shadow: 24px 0 60px rgba(0, 0, 0, 0.45);
  transform: translateX(-100%);
  transition: transform 0.26s cubic-bezier(0.32, 0.72, 0, 1);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  border-bottom: 1px solid var(--line);
  min-height: 62px;
}

.drawer-title {
  flex: 1;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.drawer-back,
.drawer-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  flex: none;
}

.drawer-stack {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.drawer-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px 16px 28px;
  background: var(--ink-soft);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.24s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.18s ease;
}

.drawer-panel.is-in {
  transform: translateX(0);
  opacity: 1;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.drawer-row:hover {
  text-decoration: none;
  border-color: var(--line-strong);
}

.drawer-row-title {
  flex: 1;
}

.drawer-row-meta {
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.drawer-row-go {
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.drawer-jump {
  width: 100%;
  margin-top: 16px;
}

.drawer-detail {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.drawer-detail-meta {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.drawer-detail-body p + p {
  margin-top: 12px;
}

.drawer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.drawer-features li {
  position: relative;
  padding-left: 22px;
  color: #c7cedb;
}

.drawer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

body.is-locked {
  overflow: hidden;
}

/* ──────────────────────────── hero ──────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: center;
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(10, 132, 255, 0.22), transparent 60%),
    radial-gradient(90% 80% at 90% 20%, rgba(100, 210, 255, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.72) 0%, rgba(7, 9, 13, 0.86) 55%, var(--ink) 100%);
}

.hero-inner {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.14);
  border: 1px solid rgba(100, 210, 255, 0.28);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 68px);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: #cdd4e0;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 46px;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-facts span {
  color: var(--muted);
  font-size: 14px;
}

/* ─────────────────────────── секции ─────────────────────────── */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 660px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.section-actions {
  margin-top: 36px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Тарифов может быть и четыре, и пять — узкий minmax даёт им уместиться
   в один ряд на десктопе, не ломая перенос на мобильном. */
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15.5px;
}

.card-flag .flag {
  display: block;
  margin-bottom: 14px;
}

.card-flag .flag svg {
  display: block;
  height: 26px;
  width: auto;
  border-radius: 3px;
  /* тонкий контур, иначе белая полоса финского флага сливается с карточкой */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* ─────────────────────────── тарифы ─────────────────────────── */

.tariff {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
}

.tariff.is-popular {
  border-color: rgba(10, 132, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(10, 132, 255, 0.2), var(--shadow-neon);
}

.tariff-badge {
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.tariff-name {
  font-size: 17px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.tariff-price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.tariff-days {
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 18px;
}

.tariff-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
}

.tariff-list li {
  position: relative;
  padding-left: 24px;
  color: #c7cedb;
  font-size: 15px;
}

.tariff-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.tariff-perk {
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
}

.note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 720px;
}

/* ──────────────────────────── шаги ──────────────────────────── */

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  counter-reset: step;
}

.steps li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(10, 132, 255, 0.14);
  border: 1px solid rgba(100, 210, 255, 0.26);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.steps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.steps p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ────────────────────────── приложения ──────────────────────── */

.apps {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.apps-title {
  font-size: 17px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.apps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px 16px 16px;
  min-width: 260px;
}

.app-card img {
  border-radius: 12px;
}

.app-card h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.app-links {
  display: flex;
  gap: 14px;
  font-size: 14px;
}

/* ─────────────────────────── вопросы ────────────────────────── */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ─────────────────────────── документы ──────────────────────── */

.doc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  color: var(--text);
}

.doc-card:hover {
  text-decoration: none;
  background: var(--card-hover);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.doc-card h3 {
  font-size: 17px;
  margin: 0;
}

.doc-go {
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 600;
}

/* ──────────────────────────── cta ───────────────────────────── */

.cta {
  padding: 92px 0;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(10, 132, 255, 0.22), transparent 62%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.cta-inner {
  text-align: center;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* ─────────────────────────── подвал ─────────────────────────── */

.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 52px 0 34px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-weight: 700;
}

.footer-tag {
  color: var(--muted);
  font-size: 14.5px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 15px;
}

.footer-nav a {
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

/* ───────────────────────── адаптив ──────────────────────────── */

@media (hover: hover) {
  .card:not(.doc-card):hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    background: var(--card-hover);
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .header-cta {
    margin-left: auto;
  }

  /* Компактный режим: на карточках остаются только заголовки, описание
     открывается тапом в боковом меню. Иначе страница тянется на несколько
     экранов подряд. */
  #features .card p,
  #locations .card p,
  #start .steps p {
    display: none;
  }

  #features .card,
  #locations .card,
  #start .steps li {
    position: relative;
    padding: 17px 44px 17px 18px;
    cursor: pointer;
  }

  #features .card h3,
  #locations .card h3,
  #start .steps h3 {
    margin-bottom: 0;
    font-size: 16.5px;
  }

  #features .card::after,
  #locations .card::after,
  #start .steps li::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
  }

  /* В компактной строке флаг встаёт слева от названия страны */
  #locations .card-flag {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #locations .card-flag .flag {
    margin-bottom: 0;
    flex: none;
  }

  #locations .card-flag .flag svg {
    height: 18px;
  }

  #start .steps li {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  #start .step-num {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    margin-bottom: 0;
    flex: none;
    font-size: 14px;
  }

  /* Тарифы в столбик занимали больше двух экранов. Сворачиваем в строки:
     название и срок слева, цена справа, состав — тапом в меню. */
  #tariffs .tariff {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "days price";
    align-items: center;
    column-gap: 12px;
    padding: 14px 40px 14px 16px;
    cursor: pointer;
  }

  #tariffs .tariff::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
  }

  #tariffs .tariff-name {
    grid-area: name;
    color: var(--text);
    font-size: 16.5px;
    margin-bottom: 2px;
  }

  #tariffs .tariff-price {
    grid-area: price;
    font-size: 21px;
  }

  #tariffs .tariff-days {
    grid-area: days;
    margin-bottom: 0;
    font-size: 13.5px;
  }

  #tariffs .tariff-list,
  #tariffs .tariff-perk,
  #tariffs .tariff-badge {
    display: none;
  }

  /* Популярный тариф и без бейджа заметен по рамке */
  #tariffs .tariff.is-popular {
    box-shadow: none;
  }

  #docs .doc-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
  }

  #docs .doc-card h3 {
    font-size: 15.5px;
  }

  /* «Открыть →» ужимаем до одной стрелки — подпись на строке лишняя */
  #docs .doc-go {
    font-size: 0;
    line-height: 1;
  }

  #docs .doc-go::after {
    content: "›";
    font-size: 22px;
  }

  .grid,
  .steps {
    gap: 10px;
  }

  .apps {
    margin-top: 30px;
    padding-top: 26px;
  }
}

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

  .shell {
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 46px;
  }

  .hero-lead {
    margin-bottom: 26px;
  }

  .hero-actions {
    margin-bottom: 30px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p {
    font-size: 15.5px;
  }

  .cta {
    padding: 56px 0;
  }

  .site-footer {
    padding: 36px 0 26px;
  }

  .hero h1 {
    font-size: 33px;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 16px;
  }

  /* Кнопки в одну строку — на мобильном каждая занимала свою */
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    padding: 14px 12px;
    font-size: 15px;
  }

  .hero-facts {
    gap: 14px 26px;
  }

  .hero-facts strong {
    font-size: 22px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .app-card {
    min-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
