

/* СБРОС ВСЕХ СТИЛЕЙ ДЛЯ СКРОЛЛБАРА */
::-webkit-scrollbar,
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  all: unset;
  all: initial;
  all: revert;
}

/* Удаляем фон скроллбара на всех уровнях */
html, body {
  background-color: #fff; /* Или основной цвет сайта */
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

::-webkit-scrollbar-track {
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

::-webkit-scrollbar-thumb {
  background-color: #888 !important;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}






