﻿/* Completely disable Tailwind inside nav */
.no-tailwind {
  /* Reset the nav container away from Tailwind without impacting children */
  all: revert;
  box-sizing: border-box !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
}

.no-tailwind * {
  box-sizing: border-box !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
}

/* Language bar (above main nav) */
:root {
  --lang-bar-height: 34px;
  --install-bar-height: 0px;
  --lang-bar-bg: rgba(229, 231, 235, 0.95);
  --lang-bar-border: rgba(15, 23, 42, 0.10);
  --lang-bar-separator: rgba(17, 24, 39, 0.24);
  --lang-bar-text: rgba(31, 41, 55, 0.82);
  --lang-bar-text-strong: rgba(31, 41, 55, 0.96);
  --lang-bar-accent: #7B2FF7;
}

/* Desktop install bar (above language bar) */
#desktopInstallBar {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7000 !important;
}

@media (max-width: 900px) {
  #desktopInstallBar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
  }
}

.lang-bar {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--lang-bar-height);
  display: flex;
  align-items: center;
  background: var(--lang-bar-bg);
  border-bottom: 1px solid var(--lang-bar-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 6000;
}

.lang-bar-inner {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lang-bar-inner::-webkit-scrollbar {
  display: none;
}

.lang-bar a {
  text-decoration: none;
  position: relative;
  color: var(--lang-bar-text);
  padding: 5px 10px;
  border-radius: 999px;
}

.lang-bar a + a {
  margin-left: 2px;
}

.lang-bar a + a::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--lang-bar-separator);
}

.lang-bar a:hover {
  color: var(--lang-bar-text-strong);
  background: rgba(15, 23, 42, 0.06);
}

.lang-bar a[aria-current="page"] {
  color: rgba(17, 24, 39, 0.95);
  background: transparent;
  border: none;
  font-weight: 600;
}

/* Mobile: show short language codes (EN/FR/IT/ES) */
@media (max-width: 640px) {
  .lang-bar-inner {
    padding: 0 12px;
    gap: 8px;
  }

  .lang-bar a {
    font-size: 0; /* hide long label visually */
    padding: 6px 10px;
  }

  .lang-bar a::after {
    content: attr(data-short);
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
}

/* Shared navigation styling across all pages */
.th-nav,
.th-nav-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky !important;
  top: 0;
  width: 100%;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  z-index: 5000;
  min-height: 64px; /* keeps logo and burger centered vertically */
}

@media (max-width: 900px) {
  .th-nav,
  .th-nav-new {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body {
    padding-top: 68px;
  }
}

/* Offset nav + padding when language bar exists */
.has-lang-bar .th-nav,
.has-lang-bar .th-nav-new {
  top: var(--lang-bar-height);
}

/* Offset language + nav when install bar exists */
body.has-install-bar .lang-bar {
  top: var(--install-bar-height);
}

body.has-install-bar.has-lang-bar .th-nav,
body.has-install-bar.has-lang-bar .th-nav-new {
  top: calc(var(--lang-bar-height) + var(--install-bar-height));
}

@media (max-width: 900px) {
  :root {
    --lang-bar-height: 0px;
  }

  /* On mobile, move language options into the hamburger menu */
  .has-lang-bar .lang-bar {
    display: none;
  }

  body.has-lang-bar {
    padding-top: calc(68px + var(--lang-bar-height));
  }

  body.has-install-bar.has-lang-bar {
    padding-top: calc(68px + var(--lang-bar-height) + var(--install-bar-height));
  }
}

/* Normalize typography across all navs */
.th-nav,
.th-nav * {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
}

.th-nav .logo img,
.th-nav-new .logo img {
  height: 42px;
  display: block;
}

/* Keep logo sizing consistent across pages */
.site-logo {
  height: 42px;
  width: auto;
}

.logo,
.logo a {
  display: inline-flex;
  align-items: center;
}

.th-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.th-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 400 !important;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
}

.th-menu > a.nav-item,
.th-menu > .nav-dropdown > .nav-link {
  padding-left: 14px;
  padding-right: 14px;
}

.th-menu a:hover {
  color: #111827;
  font-weight: 400 !important;
}

/* Top-level nav: smooth underline (no weight shift) */
.th-menu > a.nav-item,
.th-menu > .nav-dropdown > .nav-link {
  position: relative;
}

.th-menu > a.nav-item::after,
.th-menu > .nav-dropdown > .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.th-menu > a.nav-item:hover::after,
.th-menu > a.nav-item:focus-visible::after,
.th-menu > .nav-dropdown > .nav-link:hover::after,
.th-menu > .nav-dropdown > .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f2937;
  font-weight: 400 !important;
  font-size: 1rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
}

/* Normalize all nav text weights */
.nav-item,
.nav-subitem {
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
}

.nav-link:hover {
  color: #111827;
  font-weight: 400 !important;
}

.nav-caret {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.25s ease;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  padding: 8px;
  z-index: 2000;
}

.nav-submenu a {
  display: block;
  padding: 10px 14px;
  color: #374151;
  text-decoration: none;
  font-weight: 400;
}

.nav-item,
.nav-subitem {
  color: inherit;
  font: inherit;
}

@media (min-width: 901px) {
  .nav-item {
    font-weight: 450;
    font-size: 1.05rem;
  }
}

.nav-submenu a:hover {
  background: #111827;
  color: #ffffff;
  font-weight: 400 !important;
  border-radius: 8px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 900;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden !important;
}
html.menu-open {
  overflow: hidden !important;
}

.nav-dropdown.open .nav-submenu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .th-menu a,
  .nav-link {
    font-weight: 500;
  }

  /* Desktop-only: lighten top-level items, keep submenus softer */
@media (min-width: 901px) {
  /* Keep rightmost dropdown from touching viewport edge */
  .th-menu > .nav-dropdown:last-child .nav-submenu {
    right: 0;
    left: auto;
  }

  /* Keep long desktop items on a single line */
  .nav-submenu {
    min-width: max-content;
  }

  .nav-submenu a {
    white-space: nowrap;
  }

  .th-menu a,
  .nav-link {
    line-height: 1;
    padding: 10px 12px;
    font-weight: 400;
  }

  .th-menu > a,
  .th-menu > .nav-dropdown > .nav-link {
    font-weight: 450;
    font-size: 1.05rem;
  }
}


  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown:hover .nav-link,
  .nav-dropdown:focus-within .nav-link {
    color: #111827;
    font-weight: 400 !important;
  }

  .nav-dropdown:hover .nav-caret,
  .nav-dropdown:focus-within .nav-caret {
    transform: rotate(180deg);
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.2s ease;
  align-self: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.close-menu {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #111827;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 1200;
}

body.menu-open .close-menu {
  display: inline-flex;
}

.hamburger:hover {
  background: transparent;
}

/* Animate hamburger to X when menu is open */
body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile layout */
@media (max-width: 900px) {
  .th-nav-new {
    padding: 12px 16px;
  }

    .th-nav {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f1f3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }

    /* Logo slightly smaller on phones */
  .th-nav .logo img {
    height: 36px;
  }

  .th-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    transform-origin: top;
    transform: translateY(-6px) scaleY(0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1100;
    padding: 18px 16px;
    gap: 10px;
    border-radius: 0 0 20px 20px;
  }

  .th-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 12px;
    font-weight: 500;
  }

  /* Mobile: keep burger menu typography smaller without shrinking desktop */
  .th-menu a {
    font-size: 0.95em;
  }

  .th-menu > a,
  .th-menu > .nav-dropdown > .nav-link {
    width: 100%;
    font-size: 0.95em;
    line-height: 1.15;
    min-height: 44px;
    color: rgba(17, 24, 39, 0.92);
  }

  .th-menu > a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }

  .th-menu > .nav-dropdown > .nav-link {
    padding: 12px 16px;
  }

	  .th-menu > a:hover,
	  .th-menu > .nav-dropdown > .nav-link:hover {
	    color: #111827;
	    background: #f3f4f6;
	  }

	  /* Mobile menu uses background highlight; disable hover underline */
	  .th-menu > a.nav-item::after,
	  .th-menu > .nav-dropdown > .nav-link::after {
	    display: none;
	  }

  .nav-submenu {
    position: static;
    box-shadow: none;
    margin-top: 8px;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #111827;
    border-radius: 12px;
    padding: 6px;
    background: #ffffff;
  }
  .nav-submenu .nav-subitem {
    color: rgba(17, 24, 39, 0.92);
    font-weight: 400;
  }

  .nav-submenu a {
    padding: 12px 12px;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .nav-submenu a + a {
    border-top: 1px solid #e5e7eb;
  }

  .nav-submenu a:hover {
    background: #f3f4f6;
    color: #111827;
    font-weight: 400 !important;
  }

  .hamburger {
    display: flex;
    padding: 4px 6px;
    border-radius: 10px;
    background: none;
  }

  .hamburger:hover {
    background: transparent;
  }

  .th-menu .mobile-lang {
    position: relative;
    width: 100%;
    padding: 2px 6px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .th-menu .mobile-lang::before,
  .th-menu .mobile-lang::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
    z-index: 1;
  }

  .th-menu .mobile-lang::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.98), rgba(255,255,255,0));
  }

  .th-menu .mobile-lang::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.98), rgba(255,255,255,0));
  }

  .th-menu .mobile-lang-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px;
  }

  .th-menu .mobile-lang-inner::-webkit-scrollbar {
    display: none;
  }

  .th-menu .mobile-lang-inner a {
    text-decoration: none;
    position: relative;
    color: #111827;
    padding: 4px 6px;
    border-radius: 6px;
  }

  .th-menu .mobile-lang-inner a + a {
    margin-left: 0;
  }

  .th-menu .mobile-lang-inner a + a::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(17, 24, 39, 0.25);
  }

  .th-menu .mobile-lang-inner a:hover {
    color: #111827;
    background: #f3f4f6;
  }

  .th-menu .mobile-lang-inner a[aria-current="page"] {
    color: #6b7280;
    background: transparent;
    border: none;
    font-weight: 600;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .th-nav .logo img {
    height: 40px;
  }
   .th-nav {
    padding: 12px 30px;
  }

}

  /* Shrink logo on mobile */
  @media (max-width: 640px) {
    .site-logo {
      max-width: 120px !important;
      height: auto !important;
    }
  }

/* ==============================
   Global Footer
   ============================== */
.th-footer {
  margin-top: 52px;
  padding: 54px 20px 28px;
  background: linear-gradient(180deg, #0b0b0d 0%, #070709 100%);
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.th-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.th-footer-col {
  display: flex;
  flex-direction: column;
}

.th-footer-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.th-footer a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.25;
}

.th-footer a:hover,
.th-footer a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.th-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  outline-offset: 4px;
  border-radius: 6px;
}

.th-footer-bottom {
  max-width: 1100px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.th-footer-bottom a {
  padding: 0;
}

@media (max-width: 900px) {
  .th-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
  .th-footer {
    padding: 46px 18px 26px;
  }
}

@media (max-width: 520px) {
  .th-footer {
    padding: 38px 16px 22px;
  }
  .th-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .th-footer a {
    font-size: 0.94rem;
  }
  .th-footer-bottom {
    font-size: 0.86rem;
  }
}

.quick-guide-banner[data-quick-guide-banner] {
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 0.8rem !important;
  background: #f5f5f5 !important;
  border-color: #e0e0e0 !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  padding-left: 6px !important;
  padding-right: 6px !important;
  text-align: left !important;
}

.quick-guide-banner[data-quick-guide-banner] > span {
  display: block !important;
  min-width: 0;
}

.quick-guide-banner[data-quick-guide-banner] [data-quick-guide-dismiss] {
  margin-left: auto !important;
  align-self: flex-start;
  padding: 4px 6px !important;
}

.quick-guide-banner[data-quick-guide-banner] [data-quick-guide-dismiss]:focus-visible {
  outline: 2px solid rgba(17, 24, 39, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

.quick-guide-banner[data-quick-guide-banner] .quick-guide-lead {
  font-weight: 650 !important;
}

.quick-guide-banner[data-quick-guide-banner] > span > [aria-hidden="true"] {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji !important;
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  margin-right: 6px;
  filter:
    drop-shadow(1px 0 0 rgba(17, 24, 39, 0.28))
    drop-shadow(-1px 0 0 rgba(17, 24, 39, 0.28))
    drop-shadow(0 1px 0 rgba(17, 24, 39, 0.28))
    drop-shadow(0 -1px 0 rgba(17, 24, 39, 0.28))
    drop-shadow(0 0 1px rgba(17, 24, 39, 0.12));
}

.quick-guide-banner[data-quick-guide-banner] a {
  white-space: nowrap;
}

/* Anchor offset for fixed nav (Quick Guide -> How to use) */
#how-to-use {
  scroll-margin-top: 110px;
}

/* How-to-use section card */
section:has(> #how-to-use) {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.03);
  padding: 16px 18px;
}

section:has(> #how-to-use) ol {
  margin-left: 18px !important;
}

section:has(> #how-to-use) .how-to-kicker {
  margin: 0 0 10px 0;
  font-weight: 650;
  font-size: 0.92em;
  color: #374151;
}

section:has(> #how-to-use) .how-to-tip {
  padding-top: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

@media (max-width: 640px) {
  #how-to-use {
    scroll-margin-top: 90px;
  }

  section:has(> #how-to-use) {
    padding: 12px 12px;
  }
}

@media (max-width: 640px) {
  .quick-guide-banner[data-quick-guide-banner] > span > [aria-hidden="true"] {
    display: none !important;
  }

  .quick-guide-banner[data-quick-guide-banner] .quick-guide-lead::before {
    content: "💡";
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji !important;
    margin-right: 4px;
    filter:
      drop-shadow(1px 0 0 rgba(17, 24, 39, 0.28))
      drop-shadow(-1px 0 0 rgba(17, 24, 39, 0.28))
      drop-shadow(0 1px 0 rgba(17, 24, 39, 0.28))
      drop-shadow(0 -1px 0 rgba(17, 24, 39, 0.28))
      drop-shadow(0 0 1px rgba(17, 24, 39, 0.12));
  }

  .quick-guide-banner[data-quick-guide-banner] {
    position: relative !important;
    width: min(100%, 520px) !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    padding-right: 38px !important; /* space for close button */
    text-align: center !important;
  }

  .quick-guide-banner[data-quick-guide-banner] > span {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
    column-gap: 6px !important;
    row-gap: 4px !important;
    width: 100% !important;
  }

  .quick-guide-banner[data-quick-guide-banner] > span > span:not([aria-hidden="true"]) {
    flex: 1 1 calc(100% - 26px);
    min-width: 0;
    display: block;
    max-width: 42ch;
    text-align: center;
  }

  .quick-guide-banner[data-quick-guide-banner] .quick-guide-lead {
    white-space: nowrap;
  }

  .quick-guide-banner[data-quick-guide-banner] .quick-guide-lead::after {
    content: "\A";
    white-space: pre;
  }

  .quick-guide-banner[data-quick-guide-banner] .quick-guide-arrow {
    display: none;
  }

  .quick-guide-banner[data-quick-guide-banner] a {
    flex: 0 0 100%;
    display: inline-block;
    width: fit-content;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
  }

  .quick-guide-banner[data-quick-guide-banner] a::after {
    content: " \2192";
  }

  .quick-guide-banner[data-quick-guide-banner] [data-quick-guide-dismiss] {
    position: absolute !important;
    top: 6px;
    right: 8px;
    margin-left: 0 !important;
    z-index: 10;
    min-width: 32px;
    min-height: 32px;
    pointer-events: auto;
    touch-action: manipulation;
  }
}
