/* Hide scrollbars but keep page scroll enabled */
html,
body {
  overflow: auto;
}

/* Firefox */
html,
body {
  scrollbar-width: none;
}

/* IE 10+ and old Edge */
html,
body {
  -ms-overflow-style: none;
}

/* Chrome, Safari, new Edge (Chromium), Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}