.maintenance-modal {
    display: flex;
}


.scroll-box {
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    width: 700px;
}

#maintenance-msg {
    color: red;
    display: inline-block;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
        /* Start visible */
    }

    100% {
        transform: translateX(-100%);
        /* Scroll off to the left */
    }
}