@import url('https://fonts.googleapis.com/css?family=Roboto:700');

/*
p {
  text-shadow: 0 0 7px rgba(255,255,255,.3), 0 0 3px rgba(255,255,255,.3);
}
*/

.container-footer-horario {
    color: #e5e5e5;
    font-size: 12px;
    /*text-transform: uppercase;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    width: 100%;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
}

.animation-texto-footer-horario {
    width: 100%;
    height: 40px;
    overflow: hidden;
    margin-left: 0;
    padding: 0;
    margin: 0;
    font-size: 13.5px;
}

.animation-texto-footer-horario>div>div {
    width: 100%;
    margin: 0;
    padding: 8.5px 15px;
    height: 48px;
    margin-bottom: 4.5px;
    display: inline-block;
}

.animation-texto-footer-horario div:first-child {
    animation: text-animation 30s infinite;
}

.animation-texto-footer-horario .first div {
    background-color: var(--color-A2);
    /* #20a7d8; */
    color: var(--color-base-Blanco);
}

.animation-texto-footer-horario .second div {
    background-color: var(--color-C);
    /* #CD921E;*/
    color: var(--color-base-Blanco);
}

.animation-texto-footer-horario .third div {
    background-color: var(--color-M-M1);
    /* #c10528;*/
    color: var(--color-base-Blanco);
}

.animation-texto-footer-horario .fourth div {
    background-color: var(--color-U);
    color: var(--color-base-Blanco);
}


@keyframes text-animation {
    0% {
        margin-top: 0;
    }

    10% {
        margin-top: 0;
    }

    15% {
        margin-top: -36px;
    }

    25% {
        margin-top: -36px;
    }

    30% {
        margin-top: -80px;
    }

    40% {
        margin-top: -80px;
    }

    45% {
        margin-top: -124px;
    }

    55% {
        margin-top: -124px;
    }

    60% {
        margin-top: -80px;
    }

    70% {
        margin-top: -80px;
    }

    75% {
        margin-top: -36px;
    }

    85% {
        margin-top: -36px;
    }

    90% {
        margin-top: 0;
    }

    100% {
        margin-top: 0;
    }
}







.single-footer .video-container {
    display: flex;
    position: relative;
    margin: 20px 0px 0px 0px;
    padding: 0;    
    width: 100%;   
}

/* Imagen de portada / Poster */
.video-poster {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Botón de reproducción sobre la imagen */
.play-button {
    display: flex;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: var(--color-base-Blanco);
    color: var(--color-base-Azul);
    border-radius: 50%;    
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0 0 4px;
    font-size: 24px;
    z-index: 3;
    cursor: pointer;
    transition: background-color 0.5s ease;
    box-shadow: 0px 0px 10px 2px var(--color-base-Blanco);
}

.play-button:hover {
    background-color: var(--color-base-Azul);
    color: var(--color-base-Blanco);
    border: .5px solid var(--color-base-Blanco);
}

/* Ocultar imagen y botón al dar clic */
.video-container.active .video-poster,
.video-container.active .play-button {
    opacity: 0;
    pointer-events: none;
}

/* Estilo del iframe de YouTube */
.youtube-player {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border: none;
    z-index: 1;
}