﻿.visorVideo {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,0.8);
    z-index:5000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.visorVideo .visorVideoVentana {
    width:90vw;
    height:90vh;
    border:5px solid var(--cabeceraFondo);
    border-radius:15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    position:relative;
    background-color:#000;
}
.visorVideo .visorVideoVentana > .bloqueo {
    position: absolute;
    z-index: 99;
    width:100%;
    height:100%;
}
.visorVideo .visorVideoVentana > .titulo {
    position:absolute;
    z-index:100;
    color:var(--colorH1);
    background-color:var(--cabeceraFondo);
    width:100%;
    height:auto;
    top:0;
    display:flex;
    align-items: center;
    font-weight:bold;
    padding: 0px 10px 2px 10px;
    cursor:pointer;
    justify-content: space-between;
}
.visorVideo .visorVideoVentana > .titulo:after{
     display: flex;
     content: "\00d7"; /* This will render the 'X' */
     color:var(--colorH1);
     height:25px;
     font-size:30px;
     /*border:2px solid var(--colorH1);
     border-radius:100%;*/
     align-items: center;
     justify-content: center;
}


.visorVideo .visorVideoVentana > .playerPH {
    flex-grow:1;
    margin:5px 0;
    background-image:url(../../img/layout/cargando.svg);
    background-position:  center center;
    background-repeat:no-repeat;
}




@media (max-width: 800px) {
    .visorVideo .visorVideoVentana {
        width:100%;
        height:100%;
    }

    .visorVideo .visorVideoVentana > .titulo {
        height:60px;
        min-height:60px;
    }
    .visorVideo .visorVideoVentana > .titulo span {
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
    }
}