/* Скрывает ВСЕ ползунки везде */
::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

::-webkit-scrollbar-track {
  display: none !important;
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  display: none !important;
  background: transparent !important;
}

/* Для Firefox и других браузеров */
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Специфично для t396 */
.t396,
.t396_artboard,
.scrollbooster-viewport,
[class*="scroll"] {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}