/* Bootstrap package scroll contract: preserve native browser scrolling on all local and hosted pages. */
html {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body,
body.site {
  height: auto !important;
  min-height: 100%;
  max-height: none !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  position: static !important;
  touch-action: pan-y pinch-zoom;
}

body.site,
body.site main,
body.site .container,
body.site .row {
  max-height: none !important;
}

body.site main {
  min-height: 0;
  overflow: visible !important;
}
