html.trt-weekend-sale-active .masthead:not(.side-header):not(.side-header-menu-icon) > .trt-marquee-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    padding: 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #3b6cbd;
}

.trt-marquee-content {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: trtMarqueeSmooth 25s linear infinite;
    will-change: transform;
}

.trt-marquee-item {
    flex: 0 0 auto;
    padding-inline-end: 40px;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.trt-marquee-item strong {
    color: #ffffff;
    font-weight: 800;
}

.trt-marquee-separator {
    padding-inline: 0.45em;
}

.trt-marquee-item a,
.trt-marquee-item a:hover,
.trt-marquee-item a:focus {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.trt-marquee-item a {
    transition: opacity 0.2s ease;
}

.trt-marquee-item a:hover,
.trt-marquee-item a:focus {
    opacity: 0.8;
}

.trt-marquee-wrapper:focus-within .trt-marquee-content {
    animation-play-state: paused;
}

@media (hover: hover) {
    .trt-marquee-wrapper:hover .trt-marquee-content {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trt-marquee-content {
        width: 100%;
        animation: none;
        white-space: normal;
    }

    .trt-marquee-item {
        display: none;
    }

    .trt-marquee-item:first-child {
        display: block;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
        text-align: center;
    }
}

@keyframes trtMarqueeSmooth {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}
