/* X2 Mobile Scroll Stop v1
   Mobile scrolling is confined to the real page content.
   No typography or layout changes. */

@media (max-width: 780px) {

  html {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  body {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  main {
    position: relative !important;
    width: 100% !important;

    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 0 !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    overscroll-behavior-y: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .hero.hero-minimal,
  .hero.hero-minimal .hero-content,
  .home-auth {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero.hero-minimal .development-inline {
    display: none !important;
  }

  .pricing-section,
  .mobile-product-summary,
  .site-footer,
  footer {
    display: none !important;
  }
}
