.is-dc2cf212-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.is-dc2cf212-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.is-dc2cf212-track {
    display: flex;
    white-space: nowrap;
    animation-name: marquee-dc2cf212;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* Changed width to allow proper 50% translation */
    width: fit-content;
}

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

.is-dc2cf212-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 10px;
    flex-shrink: 0;
}

.is-dc2cf212-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.is-dc2cf212-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}