.promotional-banner-active {
    background-color: #0074D9;
    overflow: hidden;
    width: 100vw;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
    z-index: 10;
    text-decoration: none;
}

.promotional-banner-active span {
    -webkit-animation: scroll-text 70s linear infinite; 
            animation: scroll-text 70s linear infinite;
    text-transform: uppercase;
    color: white;
    /* border: 2px solid red; */
    font-size: 1.2rem;
    letter-spacing: 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0.5rem 0;
    text-align: center;
    /* -webkit-transform: translateX(10%);
        -ms-transform: translateX(100%); */
            transform: translateX(100%);
} 

.top { 
    top: 0;
}

@-webkit-keyframes scroll-text {
    0% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

@keyframes scroll-text {
    0% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

@media screen and (max-width: 1200px) {
    #promotional-banner span {
        font-size: 1rem;
    }
}
