/* Mobile Styles - External CSS File */

* {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  html {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  * {
    touch-action: manipulation;
  }
}

@media (min-width: 769px) {
  html {
    height: auto;
    overflow: visible;
  }

  body {
    height: auto;
    overflow: visible;
    position: static;
  }
}

p, span, h1, h2, h3, h4, h5, h6, a, li, td, th {
  -webkit-user-select: text;
  user-select: text;
}
