div.text-scroll {
    background-color: transparent;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0.2em;
    overflow: hidden !important;
    /*position: relative;*/
    /*width: 100%;*/
}

div.text-scroll p {
    font-family: sans-serif;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    margin: 0 !important;
    font-size: 1.2rem;
    padding-bottom: 0;
    display: inline-block;
    color: #be0064;
    font-weight: bold !important;
}
.news-ticker-wrapper {
    text-decoration: none !important;
    position: relative;
    max-width: 100%;
}

/* Verlaufsmasken für Ein- und Ausblenden */
.text-scroll::before,
.text-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
}

.text-scroll::before {
    left: 0;
    background: linear-gradient(to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 100%
    );
}

.text-scroll::after {
    right: 0;
    background: linear-gradient(to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 100%
    );
}


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

@keyframes marquee {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        /*transform: translateX(100vw);*/
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        /*transform: translateX(calc(-100% - 100vw));*/
    }
}

/*!* Für bessere Performance *!*/
.text-scroll p {
    will-change: transform;
/*    transform: translateZ(0);*/
/*    -webkit-font-smoothing: antialiased;*/
}
