/*--------------------------------------------------------------
>>> GLOBAL OVERRIDER:
----------------------------------------------------------------*/
:root {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #690AD3 transparent;
}

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #690AD3;
  background-clip: content-box;
  border: 2px solid transparent;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #690AD3;
}

.scrollable {
  scrollbar-gutter: stable;
  overflow: auto;
}
