#stc-scrolling-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9999;
    overflow: hidden;
}

#stc-scrolling-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: stc-scroll linear infinite;
}

@keyframes stc-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
