
    /* === Скрываем ползунок горизонтального скролла для всех элементов === */
    
    /* Для Chrome, Safari, Opera, Edge (WebKit) */
    *::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
        display: none !important;
    }
    
    *::-webkit-scrollbar-track {
        display: none !important;
        background: transparent !important;
    }
    
    *::-webkit-scrollbar-thumb {
        display: none !important;
        background: transparent !important;
    }
    
    /* Для Firefox */
    * {
        scrollbar-width: none !important;
    }
    
    /* Для IE и старых Edge */
    * {
        -ms-overflow-style: none !important;
    }
    
    /* Дополнительно для всех контейнеров Tilda */
    .t396__artboard,
    .t396__artboard-wrapper,
    .t-container,
    .t-container_100,
    .t-row,
    .t-col,
    .tn-group,
    .t-body,
    .t-main-wrapper {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .t396__artboard::-webkit-scrollbar,
    .t396__artboard-wrapper::-webkit-scrollbar,
    .t-container::-webkit-scrollbar,
    .t-container_100::-webkit-scrollbar,
    .t-row::-webkit-scrollbar,
    .t-col::-webkit-scrollbar,
    .tn-group::-webkit-scrollbar,
    .t-body::-webkit-scrollbar,
    .t-main-wrapper::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
        display: none !important;
    }
</style>