.up {
    text-align: center;
    max-width: 90%;
    padding: 10px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

#live {
    align-self: center;
    background: red;
    width: 100px;
    padding: 10px 0 10px 0;
    -webkit-transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    animation: livetext linear 3s infinite forwards;
    opacity: 1;
    animation-play-state: running;
    color: white;
}

/* logos*/
/*  */

.logotiming {
    text-align: right;
    float: center;
    align-self: center;
}

#logo_timing {
    max-width: 100%;
    height: auto;
    width: 50%;
}


/* animación LIVE*/

@keyframes livetext {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

/* responsive*/

@media screen and (max-width: 1000px) {

    .up {
        max-width: 98%;
    }
}

@media screen and (max-width: 746px) {

    .up {
        margin-bottom: 1px;
        margin-top: 1px;
    }

    #live {
        align-self: center;
        background: red;
        width: 70px;
        padding: 1px 0 1px 0;
    }

    #logo_timing {
        max-width: 100%;
        height: auto;
        width: 30%;
        padding: 2px 0 2px 0;
    }
}