/* =============================================================
   MOTOGO — Showcase xe cho thuê
   Bảng màu: vàng MOTOGO (#FFC61A) cho xe xăng, xanh lá (#1FB56B) cho xe điện.
   Mọi hiệu ứng chỉ chạy opacity + transform để không gây giật (không animate
   layout / box-shadow).

   PHẠM VI: mọi selector trong file này đều nằm dưới .motor-showcase nên không
   chạm tới phần còn lại của site. Ngược lại, mục 2 vô hiệu hoá các khai báo
   Bootstrap (.row / .card / .badge) rò vào bên trong khối.
   ============================================================= */

/* -------- 1. Biến cục bộ của khối -------- */
.motor-showcase {
  --speed: 1;                       /* hệ số tốc độ hiệu ứng, 1 = mặc định */
  --radius: 22px;                   /* bo góc thẻ xe */
  --gap: 16px;                      /* khoảng cách giữa các thẻ */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);

  --ink: #15151a;
  --ink-soft: #6a6a74;
  --ink-mute: #9a9aa4;
  --line: #ebebef;

  --motor-max: 1720px;              /* đổi thành 1140px nếu muốn khớp .container của theme */

  background: #fff;
  color: var(--ink);
  /* Không khai báo font-family ở bất kỳ đâu trong file này: cả khối thừa kế
     SVN-Gilroy từ body như phần còn lại của site. */
}

/* -------- 2. Reset cục bộ + gỡ ảnh hưởng Bootstrap -------- */
.motor-showcase *,
.motor-showcase *::before,
.motor-showcase *::after { box-sizing: border-box; }

.motor-showcase h2,
.motor-showcase h3,
.motor-showcase p { margin: 0; }

.motor-showcase a { color: var(--ink); text-decoration: none; }
.motor-showcase a:hover { color: #000; }

/* .row của Bootstrap: display:flex + margin âm 15px */
.motor-showcase .row { margin-right: 0; margin-left: 0; }

/* .card của Bootstrap: flex column + word-wrap + background-clip */
.motor-showcase .card {
  display: block;
  word-wrap: normal;
  background-clip: padding-box;
}

/* .badge của Bootstrap: inline-block + line-height 1 + text-align center */
.motor-showcase .badge {
  display: inline-block;
  line-height: 1.2;
  text-align: left;
  vertical-align: baseline;
  transition: none;
}

/* -------- 3. Bố cục section -------- */
.motor-showcase .motor-container {
  width: 90%;
  max-width: var(--motor-max);
  margin: 0 auto;
  padding: 0;
}

.motor-showcase .section { padding: clamp(48px, 6vw, 92px) 0; }

.motor-showcase .section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px 48px;
  padding-bottom: clamp(26px, 2.8vw, 40px);
}

/* Khối xe điện đảo chiều: tiêu đề bên phải, mô tả bên trái */
.motor-showcase .section--flip .section__head { flex-direction: row-reverse; }
.motor-showcase .section--flip .section__eyebrow { flex-direction: row-reverse; }
.motor-showcase .section--flip .section__title { text-align: right; }
.motor-showcase .section--flip .section__lede { text-align: left; }

.motor-showcase .section__titles { flex: 0 1 auto; }

.motor-showcase .section__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9a9aa4;
}

.motor-showcase .section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2ac00;
}
.motor-showcase .section--flip .section__dot { background: #12a05c; }

.motor-showcase .section__title {
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .005em;
  white-space: nowrap;
}

.motor-showcase .section__lede {
  flex: 1 1 420px;
  max-width: 660px;
  margin-top: 2px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #7a7a84;
  text-align: right;
  text-wrap: pretty;
}

/* -------- 4. Hàng thẻ xe (accordion ngang) --------
   Chiều rộng cột do JS gán qua style="grid-template-columns:…".
   Chỉ 1 thuộc tính thay đổi khi mở/đóng nên trình duyệt xử lý rất nhẹ. */
.motor-showcase .row {
  display: grid;
  grid-auto-flow: column;
  gap: var(--gap);
  /* Sàn 560px: nội dung thẻ mở rộng (badge → tên 2 dòng → mô tả → 4 ô thông số
     → giá → nút) cần ~490px + đệm 2×35px. Sàn 470px cũ làm nội dung tràn ra
     ngoài và bị .card{overflow:hidden} cắt mất badge ở mép trên. */
  height: clamp(560px, 63vh, 620px);
  transition: grid-template-columns calc(.68s * var(--speed)) var(--ease-out);
}

/* -------- 5. Thẻ xe -------- */
.motor-showcase .card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  contain: layout paint;              /* cô lập layout của từng thẻ */
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  outline: none;

  /* trạng thái trước khi thẻ lộ diện */
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity calc(.5s * var(--speed)) var(--ease-in),
    transform calc(.5s * var(--speed)) var(--ease-in),
    border-color calc(.45s * var(--speed)) var(--ease-out);
}

.motor-showcase .card[data-active="true"] { border-color: var(--fill); }

.motor-showcase .card:focus-visible { box-shadow: 0 0 0 3px var(--soft); }

/* Đổ bóng tách thành lớp riêng để chỉ fade opacity (không animate box-shadow) */
.motor-showcase .card__shadow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 30px 62px -34px var(--shadow);
  transition: opacity calc(.55s * var(--speed)) var(--ease-out);
}
.motor-showcase .card[data-active="true"] .card__shadow { opacity: 1; }

/* -------- 6. Lớp thu gọn -------- */
.motor-showcase .card__mini {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--mini-w);
  display: flex;
  flex-direction: column;
  transition:
    opacity calc(.3s * var(--speed)) var(--ease-out) calc(.12s * var(--speed)),
    visibility 0s;
}

.motor-showcase .card[data-active="true"] .card__mini {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity calc(.2s * var(--speed)) var(--ease-in),
    visibility 0s calc(.2s * var(--speed));
}

.motor-showcase .mini__media {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

/* Ảnh cắt sát đầu xe (background-position do markup gán theo từng mẫu) */
.motor-showcase .mini__img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform calc(.85s * var(--speed)) var(--ease-out);
}

.motor-showcase .mini__foot {
  flex: none;
  padding: 14px 18px 20px;
  background: var(--foot-bg);
}

.motor-showcase .mini__cat {
  display: block;
  margin-bottom: 7px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.motor-showcase .mini__brand {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a2a2ac;
  line-height: 1;
}

.motor-showcase .mini__model {
  margin-top: 4px;
  /* Chừa sẵn đúng 2 dòng (2 × line-height) để .mini__foot của mọi thẻ cao
     bằng nhau, bất kể tên xe xuống 1 hay 2 dòng — nhờ đó nhãn / hãng / giá
     giữa các thẻ nằm thẳng hàng. */
  min-height: 2.2em;
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #17171b;
}

.motor-showcase .mini__rule {
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 3px;
  background: var(--fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform calc(.3s * var(--speed)) var(--ease-in);
}

.motor-showcase .mini__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 11px;
  white-space: nowrap;
}
.motor-showcase .mini__price b {
  font-weight: 700;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1;
  color: var(--accent);
}
.motor-showcase .mini__price span {
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-mute);
}

/* -------- 7. Lớp mở rộng -------- */
.motor-showcase .card__full {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--active-w);            /* rộng cố định → chữ không reflow khi thẻ giãn */
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: clamp(22px, 2.4vw, 42px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity calc(.24s * var(--speed)) var(--ease-in),
    visibility 0s calc(.24s * var(--speed));
}

.motor-showcase .card[data-active="true"] .card__full {
  opacity: 1;
  visibility: visible;
  transition: opacity calc(.4s * var(--speed)) var(--ease-out), visibility 0s;
}

.motor-showcase .full__text {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Nếu nội dung vẫn cao hơn thẻ (tên xe xuống 3 dòng ở bề ngang hẹp),
     "safe" bỏ canh giữa để phần trên không bị cắt. Trình duyệt cũ bỏ qua
     dòng này và giữ nguyên "center" ở trên. */
  justify-content: safe center;
}

.motor-showcase .full__media {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  min-width: 0;
}

.motor-showcase .hero {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Chữ mờ tên xe làm nền */
.motor-showcase .ghost {
  position: absolute;
  left: -1%;
  bottom: -7%;
  z-index: 0;
  font-weight: 700;
  font-size: clamp(90px, 15vw, 210px);
  line-height: .8;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  color: var(--ghost-color);
}

.motor-showcase .badge {
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--accent);
}

.motor-showcase .full__name {
  font-weight: 700;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.04;
  text-transform: uppercase;
  color: #141419;
}

.motor-showcase .full__tag {
  margin-top: 12px;
  max-width: 430px;
  font-size: clamp(12.5px, 1vw, 15px);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* -------- 8. Ô thông số / tiện ích kèm theo -------- */
.motor-showcase .specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;                /* mọi hàng cao bằng nhau dù nhãn dài ngắn khác nhau */
  gap: 8px;
  margin-top: 20px;
}

.motor-showcase .spec {
  display: flex;
  flex-direction: column;
  justify-content: center;            /* nội dung nằm giữa ô, không dồn lên mép trên */
  padding: 10px 12px;
  min-width: 0;
  border: 1px solid var(--chip-bd);
  border-radius: 12px;
  background: var(--chip-bg);
}

.motor-showcase .spec__value {
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.05;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--accent);
}

.motor-showcase .spec__label {
  margin-top: 4px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  /* Chia đều các dòng: "BAGA & DÂY / CHẰNG ĐỒ" thay vì bỏ rơi "ĐỒ" một mình */
  text-wrap: balance;
  color: #8a8a94;
}

/* -------- 9. Giá & nút -------- */
.motor-showcase .price { margin-top: 22px; }

.motor-showcase .price__main {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.motor-showcase .price__main b {
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1;
  letter-spacing: .005em;
  color: #141419;
}
.motor-showcase .price__main span {
  font-weight: 400;
  font-size: 13px;
  color: #8a8a94;
}

.motor-showcase .price__note {
  margin-top: 5px;
  font-size: 11px;
  color: var(--ink-mute);
  white-space: nowrap;
}

.motor-showcase .actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.motor-showcase .btn-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--accent);
  border-radius: 13px;
  color: var(--accent);
  transition: background .3s ease;
}
.motor-showcase .btn-icon:hover { background: var(--soft); color: var(--accent); }

.motor-showcase .btn-call {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 30px;
  border-radius: 13px;
  background: var(--fill);
  color: var(--cta-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: filter .3s ease, transform .3s var(--ease-out);
}
.motor-showcase .btn-call:hover {
  color: var(--cta-text);
  filter: brightness(.94);
  transform: translateY(-2px);
}

/* Nút CTA nhóm xe xăng dùng màu cam / vàng chỉ định riêng */
.motor-showcase #xe-xang .btn-icon,
.motor-showcase #xe-xang .btn-icon:hover {
  color: #ff8409;
  border-color: #ff8409;
}
.motor-showcase #xe-xang .btn-icon:hover { background: rgba(255, 132, 9, .12); }

.motor-showcase #xe-xang .btn-call,
.motor-showcase #xe-xang .btn-call:hover { background: #ffc709; }

/* Thẻ xe xăng đang mở: chỉ một viền vàng trên chính thẻ
   (lớp .card__full không kẻ viền để tránh hai đường chồng nhau) */
.motor-showcase #xe-xang .card[data-active="true"] { border-color: #ffc709; }

/* =============================================================
   10. Timeline hiệu ứng
   Mỗi thành phần trong một thẻ xe có độ trễ riêng (data-step),
   chạy tuần tự sau khi section lọt vào khung nhìn.
   ============================================================= */

/* 10.1 — Tiêu đề section */
.motor-showcase .reveal { opacity: 0; transform: translate3d(0, 18px, 0); }

.motor-showcase [data-inview="true"] .reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.75s * var(--speed)) var(--ease-out),
    transform calc(.75s * var(--speed)) var(--ease-out);
}
.motor-showcase [data-inview="true"] .reveal[data-reveal="2"] { transition-delay: .07s; }
.motor-showcase [data-inview="true"] .reveal[data-reveal="3"] { transition-delay: .14s; }

/* 10.2 — Các thẻ xe lần lượt trôi lên */
.motor-showcase [data-inview="true"] .card {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.72s * var(--speed)) var(--ease-out),
    transform calc(.72s * var(--speed)) var(--ease-out),
    border-color calc(.45s * var(--speed)) var(--ease-out);
}
.motor-showcase [data-inview="true"] .card[data-index="0"] { transition-delay: .04s; }
.motor-showcase [data-inview="true"] .card[data-index="1"] { transition-delay: .12s; }
.motor-showcase [data-inview="true"] .card[data-index="2"] { transition-delay: .20s; }
.motor-showcase [data-inview="true"] .card[data-index="3"] { transition-delay: .28s; }

.motor-showcase [data-inview="true"] .card[data-active="false"]:hover { transform: translate3d(0, -6px, 0); }
.motor-showcase [data-inview="true"] .card[data-active="false"]:hover .mini__img { transform: scale(1.055); }

/* 10.3 — Timeline bên trong thẻ thu gọn: ảnh → nhãn → hãng → tên → gạch → giá */
.motor-showcase .mini__media {
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity calc(.28s * var(--speed)) var(--ease-in),
    transform calc(.28s * var(--speed)) var(--ease-in);
}
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini__media {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.8s * var(--speed)) var(--ease-out) calc(.1s * var(--speed)),
    transform calc(.8s * var(--speed)) var(--ease-out) calc(.1s * var(--speed));
}

.motor-showcase .mini-step {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity calc(.24s * var(--speed)) var(--ease-in),
    transform calc(.24s * var(--speed)) var(--ease-in);
}
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini-step {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.6s * var(--speed)) var(--ease-out),
    transform calc(.6s * var(--speed)) var(--ease-out);
}
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini-step[data-step="1"] { transition-delay: calc(.20s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini-step[data-step="2"] { transition-delay: calc(.26s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini-step[data-step="3"] { transition-delay: calc(.32s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="false"] .mini-step[data-step="4"] { transition-delay: calc(.40s * var(--speed)); }

.motor-showcase [data-inview="true"] .card[data-active="false"] .mini__rule {
  transform: none;
  transition: transform calc(.7s * var(--speed)) var(--ease-out) calc(.36s * var(--speed));
}

/* 10.4 — Timeline bên trong thẻ mở rộng:
   ảnh xe → nhãn → tên → mô tả → 4 ô thông số → giá → nút → chữ mờ nền */
.motor-showcase .step {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity calc(.26s * var(--speed)) var(--ease-in),
    transform calc(.26s * var(--speed)) var(--ease-in);
}
.motor-showcase [data-inview="true"] .card[data-active="true"] .step {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.62s * var(--speed)) var(--ease-out),
    transform calc(.62s * var(--speed)) var(--ease-out);
}
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="1"] { transition-delay: calc(.16s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="2"] { transition-delay: calc(.22s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="3"] { transition-delay: calc(.28s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="4"] { transition-delay: calc(.34s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="5"] { transition-delay: calc(.39s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="6"] { transition-delay: calc(.44s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="7"] { transition-delay: calc(.49s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="8"] { transition-delay: calc(.56s * var(--speed)); }
.motor-showcase [data-inview="true"] .card[data-active="true"] .step[data-step="9"] { transition-delay: calc(.64s * var(--speed)); }

.motor-showcase .hero {
  opacity: 0;
  transform: translate3d(46px, 0, 0) scale(.955);
  will-change: transform, opacity;
  transition:
    opacity calc(.3s * var(--speed)) var(--ease-in),
    transform calc(.3s * var(--speed)) var(--ease-in);
}
.motor-showcase [data-inview="true"] .card[data-active="true"] .hero {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(.9s * var(--speed)) var(--ease-out) calc(.12s * var(--speed)),
    transform calc(.9s * var(--speed)) var(--ease-out) calc(.12s * var(--speed));
}

.motor-showcase .ghost {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  will-change: transform, opacity;
  transition:
    opacity calc(.3s * var(--speed)) var(--ease-in),
    transform calc(.3s * var(--speed)) var(--ease-in);
}
.motor-showcase [data-inview="true"] .card[data-active="true"] .ghost {
  opacity: 1;
  transform: none;
  transition:
    opacity calc(1.15s * var(--speed)) var(--ease-out) calc(.34s * var(--speed)),
    transform calc(1.15s * var(--speed)) var(--ease-out) calc(.34s * var(--speed));
}

/* -------- 11. Màn hình nhỏ: xếp dọc, thẻ mở rộng chiếm cả chiều ngang -------- */
@media (max-width: 1240px) {
  .motor-showcase .motor-container { width: 92%; }

  .motor-showcase .row {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;   /* ghi đè giá trị JS gán cho desktop */
    height: auto;
    gap: 14px;
  }

  .motor-showcase .card { min-height: 198px; }

  .motor-showcase .card__mini {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
  }
  .motor-showcase .mini__media { flex: 0 0 42%; max-width: 232px; }
  .motor-showcase .mini__foot {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
    background: transparent;
  }

  .motor-showcase .card__full {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .motor-showcase .card[data-active="false"] .card__full { position: absolute; height: 100%; }

  .motor-showcase .full__media { min-height: 252px; order: -1; }
  .motor-showcase .ghost { display: none; }

  .motor-showcase .section__head { flex-direction: column; align-items: flex-start; }
  .motor-showcase .section--flip .section__head { flex-direction: column; }
  .motor-showcase .section--flip .section__eyebrow { flex-direction: row; }
  .motor-showcase .section__title,
  .motor-showcase .section--flip .section__title { text-align: left; white-space: normal; }
  .motor-showcase .section__lede,
  .motor-showcase .section--flip .section__lede { flex: none; max-width: 100%; text-align: left; }
}

@media (max-width: 560px) {
  .motor-showcase .specs { grid-template-columns: 1fr; }
}

/* -------- 12. Tôn trọng thiết lập giảm chuyển động -------- */
@media (prefers-reduced-motion: reduce) {
  .motor-showcase,
  .motor-showcase *,
  .motor-showcase *::before,
  .motor-showcase *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
