.lct-ticker {
    width: 100%;
    overflow: hidden;
    background: #111;
    padding: 10px 0;
}

.lct-track {
    display: inline-block;
    white-space: nowrap;
    animation: lct-scroll 20s linear infinite;
}

.lct-item {
    margin-right: 40px;
}

.lct-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

@keyframes lct-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}