:root {
  --sb-thumb: rgba(240, 240, 240, 0.28);
  --sb-thumb-hover: rgba(240, 240, 240, 0.42);
  --sb-thumb-active: rgba(240, 240, 240, 0.55);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--sb-thumb) transparent;
}

/* Chromium / WebKit */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-track-piece {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--sb-thumb);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--sb-thumb-hover);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--sb-thumb-active);
}

*::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

