html {
  scroll-behavior: smooth;
}

body {
  scrollbar-width: thin !important;
}

::-webkit-scrollbar {
  height: 4px;
  background: transparent;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-body-lighter);
  -webkit-border-radius: 0ex;
  -webkit-box-shadow: none;
}

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

.thin-scrollbar::-webkit-scrollbar {
  height: 3px;
}

.thick-scrollbar::-webkit-scrollbar {
  height: 8px;
}

.thick-scrollbar {
  scrollbar-width: auto !important;
}

