.band {
    overflow-x: hidden;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0px;
    left: 0px;
    top: 70px;
    text-transform: none!important;
    font-style: italic;
    font-weight: 600;
    background-color: #bd2a2a!important;
    overflow: hidden;
    min-width: 100%;
    margin-right: auto;
    margin-left: auto;
    color: white!important;
}
.slider {
    background-color: transparent;

}

@media only screen and (min-width:768px) {
    .band {

    }
}

.slider {
    position: absolute;
    display: inline-flex;
    animation: slide 100s linear infinite
}

.message {

    margin: 0 5px;
    padding-left: 5px;
    padding-right: 5px;
    align-items: center;
    white-space: nowrap;
    color: #fff;
    transition: all .16s linear
}

.message:hover {

}
.cMessage:hover {
    background-color: black;
}

.info {
    color: #daa520!important;
    background-color: #bd2a2a
}

.infoSms {
    color:white;
}

.band_notifier {
    display: inline-flex;
    position: absolute;
    left: 50vw;
    transform: translateX(calc(-50% - 10px)) translateY(calc(-100% - 10px));
    padding: 10px;
    white-space: nowrap;
    color: #fff;
    background-color: #bd2a2a;
    border-radius: 4px;
    animation: fade_out 2s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 3s
}

@keyframes fade_out {
    from {
        opacity: 100%
    }
    to {
        opacity: 0
    }
}

@keyframes slide {
    0% {
        transform: translateX(100vw)
    }
    100% {
        transform: translateX(-100%)
    }
}