body {
    height: 50px;
	background-image:url("../img/1920x50.png");
	background-repeat: no-repeat;
    font-family: sans-serif;
	font-size: 18px;
}

.grad {
    background-image: linear-gradient(to right, rgb(148, 0, 0) , rgb(255, 81, 0));
}

.inline {
    display: inline;
}

.title {
    color: rgba(255, 255, 255, 0.75);
    display: inline-block;
    height: 50px;
    width: 50px;
}

.container {
    height: 50px;
	margin-left: 160px;
    width: 1152px;
	margin-top: -15px;
    display: inline-block;
	position: absolute;

    
}

.data {
    height: 50px;
}




/*----------------------------------------STYLE------------------------------------------*/
.Date {
color: rgb(255, 0, 0);
margin-left: 15px;
}

.Time {
color: rgb(255, 0, 0);
margin-left: 15px;
}

.Ind {
color: rgb(27, 27, 255);
margin-left: 15px;
}

.Descr {
color: rgb(0, 0, 0);
margin-left: 15px;
}


.parent{
    display: flex;
    transform: translateX(-70%);
    bottom: 5px;
    position: relative;
}

.evento {
    margin-right: 50px;
}


/*--------------------------------------ANIMATION----------------------------------------*/

.scroll-left {
    height: 50px; 
    overflow: hidden;
    }

    .scroll-left .text {
    position: absolute;
    overflow-wrap: break-word ;
    height: 100%;
    margin: 0;
    text-align: center;
    /* Starting position */
    -moz-transform:translateX(60%);
    -webkit-transform:translateX(60%); 
    transform:translateX(60%);
    /* Apply animation to this element */ 
    -moz-animation: scroll-left 40s linear infinite;
    -webkit-animation: scroll-left 40s linear infinite;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    }
    /* Move it (define the animation) */
    @-moz-keyframes scroll-left {
    0% { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
    }
    @-webkit-keyframes scroll-left {
    0% { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
    }
    @keyframes scroll-left {
    0% { 
    -moz-transform: translateX(100%); /* Browser bug fix */
    -webkit-transform: translateX(100%); /* Browser bug fix */
    transform: translateX(100%); 
    }
    100% { 
    -moz-transform: translateX(-30%); /* Browser bug fix */
    -webkit-transform: translateX(-30%); /* Browser bug fix */
    transform: translateX(-30%); 
    }
    }



