/* Keep every scroll surface usable, but never visually expose scrollbars. */
html,
body,
* {
  -ms-overflow-style: none !important;
  scrollbar-color: transparent transparent !important;
  scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html::-webkit-scrollbar-button,
html::-webkit-scrollbar-corner,
html::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-button,
body::-webkit-scrollbar-corner,
body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-button,
*::-webkit-scrollbar-corner,
*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-track {
  display: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
