/*
 * Loads after platform Lendscore `main.css` so these rules win the cascade.
 * Hides the document (viewport) scrollbar on the right while keeping scrolling.
 */
:root,
html,
body {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

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

#__nuxt,
#lendscore {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#__nuxt::-webkit-scrollbar,
#lendscore::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
