.cbnt-wrapper {
    width: 100%;
    overflow: hidden;
    background: black;
    color: #fff;
    padding: 12px 0;
    box-sizing: border-box;
}

.cbnt-scroll {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    /* start outside right */
    transform: translate3d(100%, 0, 0);

    /* smooth continuous motion */
    animation: cbnt-smooth-scroll 25s linear infinite;

    will-change: transform;
}

.cbnt-scroll span {
    display: inline-block;
    padding-right: 60px;
    font-weight: 600;
    font-size: 15px;
}

/* ultra smooth animation */
@keyframes cbnt-smooth-scroll {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
.cbnt-scroll,
.cbnt-scroll * {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
