/* transition duration ------------------ */
/* move ------------------ */
/* border -------------------------- */
/* font -------------------------- */
::-webkit-scrollbar {
  width: var(--ix-reset-scrollbar-width);
  height: var(--ix-reset-scrollbar-height);
}
::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: var(--ix-reset-scrollbar-thumb-bg);
  border: var(--ix-reset-scrollbar-thumb-border-width) solid transparent;
  border-radius: var(--ix-reset-scrollbar-thumb-border-radius);
  box-shadow: var(--ix-reset-scrollbar-thumb-box-shadow);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--ix-reset-scrollbar-thumb-bg-hover);
}
::-webkit-scrollbar-thumb:active {
  background-color: var(--ix-reset-scrollbar-thumb-bg-active);
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
  background-color: var(--ix-reset-scrollbar-track-bg);
  border-radius: var(--ix-reset-scrollbar-track-border-radius);
  box-shadow: var(--ix-reset-scrollbar-track-box-shadow);
}
.ix-scroll-min ::-webkit-scrollbar-thumb {
  border-width: calc(var(--ix-reset-scrollbar-thumb-border-width) * 2);
}
.ix-scroll-min ::-webkit-scrollbar-thumb:hover,
.ix-scroll-min ::-webkit-scrollbar-thumb:active {
  border-width: var(--ix-reset-scrollbar-thumb-border-width);
}
