:root {
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

:root.is-scrolling {
  scrollbar-color: var(--tertiary) transparent;
}

:root::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

:root::-webkit-scrollbar-track,
:root::-webkit-scrollbar-corner {
  background: transparent;
}

:root::-webkit-scrollbar-thumb {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

:root.is-scrolling::-webkit-scrollbar-thumb {
  background-color: var(--tertiary);
}
