.ts-alert-info-bg-color {
    background-color: #46abde;
}

.marquee {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    font-size: 25px;
    font-weight:bold;
    width: inherit;
}

    .marquee span {
        display: inline-block;
        padding-left: 100%;
        animation: marquee 35s linear infinite;
    }

        .marquee span:hover {
            animation-play-state: paused;
        }

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

