.stlp-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px 0;
}

.stlp-ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
}

.stlp-ticker-item {
    display: inline-block;
    padding: 0 50px;
}

.stlp-ticker-item a {
    color: #fff;
    text-decoration: none;
}
.stlp-category {
    background: #d12e2e; /* Background color */
    color: #fff; /* Text color */
    padding: 2px 4px;
    font-size: 14px;
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
