/**
 * CocoriKush Ticker Styles
 */
.ccrk-ticker {
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1;
    position: relative;
    z-index: 101;
}

.ccrk-ticker-inner {
    display: inline-block;
    animation: ccrkTickScroll linear infinite;
    will-change: transform;
}

.ccrk-ticker-item {
    display: inline-block;
    margin-right: 50px;
}

/* Pause on hover */
.ccrk-ticker:hover .ccrk-ticker-inner {
    animation-play-state: paused;
}

@keyframes ccrkTickScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .ccrk-ticker {
        font-size: .66rem;
        padding: 5px 0;
    }
    .ccrk-ticker-item {
        margin-right: 36px;
    }
}
