
.cnt-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    box-sizing: border-box;
    background: #000;
    color: #fff;
}
.cnt-ticker-track {
    display: flex;
    animation: cnt-scroll linear infinite;
}
.cnt-ticker-content {
    display: flex;
    white-space: nowrap;
}
.cnt-message {
    margin-right: 50px;
    display: inline-block;
}
@keyframes cnt-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
