.offers-ticker-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
}

.offers-ticker-content {
        display: flex;
        align-items: center;
        white-space: nowrap;
}

.offers-ticker-inner {
        display: inline-flex;
        align-items: center;
        animation-name: ticker-scroll;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-play-state: running;
}

.offers-ticker-content a {
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        white-space: nowrap;
}

.separator-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        color: inherit;
}

.separator-icon i,
.separator-icon svg {
        display: inline-block;
        font-size: 10px;
        color: inherit;
        fill: currentColor;
        width: auto;
        height: auto;
}

@keyframes ticker-scroll {
        0% {
                transform: translateX(0);
        }

        100% {
                transform: translateX(-50%);
        }
}

.elementor-editor-active .offers-ticker-inner {
        animation-play-state: running !important;
}