.site-marquee-bar {
    width: 100%;
    height: 34px;
    background: #63c7c5 !important;
    overflow: hidden;
    white-space: nowrap;
}

.site-marquee-track {
    display: flex;
    width: max-content;
    animation: siteMarquee 22s linear infinite;
}

.site-marquee-track span {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 34px;
    flex-shrink: 0;
    padding-right: 80px;
}

@keyframes siteMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media only screen and (max-width: 48em) {
    .site-marquee-bar {
        height: 28px;
    }

    .site-marquee-track span {
        font-size: 13px;
        line-height: 28px;
        padding-right: 60px;
    }
}