.div_fondo_ver_streming{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 3;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}

.div_fondo_ver_streming.activo{
    display: flex;
}

.div_ver_streming{
    position: relative;
    width: 750px;
    height: 450px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-items: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}

.div_partes_videos{
    position: relative;
    width: 30%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-items: flex-start;
    align-content: flex-start;
    column-gap: 15;
}

.div_repro_videos{
    position: relative;
    width: 70%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.l_partes{
    position: relative;
    width: 100%;
    text-align: center;
    top: 10px;
    height: 40px;
    background: rgba(0, 0, 0, .4);
    color: aliceblue;
    margin-bottom: 10px;
    line-height: 40px;
    cursor: pointer;
    font-size: 12px;
    
}

.l_cerrar_videos{
    position: relative;
    height: 40px;
    font-size: 21px;
    
}

.h_titulo_video{
    position: relative;
    width: 100%;
    text-align: center;
    height: 60px;
    line-height: 60px;
}

.l_descargando{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    animation: parpadeo 3s infinite;
}

@keyframes parpadeo {
  0%   {color:var(--color--artesanos);}
  25%  {color:var(--color--artesanos--secundario);}
  50%  {color:var(--color--artesanos);}
  75%  {color:var(--color--artesanos--secundario);}
  100% {color:var(--color--artesanos);}
}















