.programa-en-directo-block{
    margin-right: auto;
    width: 100%;
}
.en-directo-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.en-directo-item.en-directo {
    background: none;
}
.en-directo {
    font-size: 0.6rem;
}
.en-directo::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 67px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: cambiarColor 2s infinite;
}
@keyframes cambiarColor {
    0% {
        background-color: crimson; /* Color inicial */
    }
    50% {
        background-color: whitesmoke /* Color intermedio */
    }
    100% {
        background-color: crimson; /* Regresa al color inicial */
    }
}
.en-directo-item img {
	max-width: 55px;
	max-height: 55px;
	margin-bottom: 5px;
    margin-left: 5px;
}

.en-directo-item:after {
    content: '';
    position: absolute;
    top: -5px; /* Coloca el triángulo debajo del elemento */
    left: 60px; /* Alineado a la izquierda */
    width: 0;
    height: 0;
    border-right: 5px solid transparent; /* Espacio a la derecha */
    border-bottom: 5px solid var(--text-color); /* Color del triángulo */
}
.en-directo-info {
    flex: 1;
    color: white;
    white-space: nowrap;
    margin-right: 60px;
 }
.en-directo-titulo {
	font-size: 0.8rem ;
    text-transform: uppercase;}
.en-directo-subtitulo {
    font-size: 0.8rem ;
    margin-top: -5px;
    text-transform: capitalize; }
.en-directo-barra {
    display: flex;
    align-items: center;
    gap: 4px; /* Espacio entre los elementos */
}
#barra-tiempo-programa {
	width: 100%; /* O el ancho que prefieras */
  	height: 1px;
  	overflow: hidden;
  	position: relative;
  	margin-top: 6px;
  	padding: 0;
    background-color: rgba(241, 241, 247, 0.3);
}
.barra-progreso {
    height: 100%;
    background: var(--background-color);
    width: 0%;
    transition: width 0.5s;
}