  /* el fondo, que lo cubra todo y tal*/
  .fondoFormVisorVideo {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
  }
  

  /* la caja blanca que tienen los campos de logueo y tal */
  #visorVids {
    position: absolute;
    border: 1px solid #888;
    /*width: 80%; *//* Could be more or less, depending on screen size */
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);/*para centrarlo en y junto al top 50% y en la animacion tb pongo de 0 a -50%*/
  }
  
  /* Zoom Animation para que aparezca asi la caja*/
  .animateVisor{
    -webkit-animation: animatezoomVisorVids 0.6s;
    animation: animatezoomVisorVids 0.6s
  }
  
  @-webkit-keyframes animatezoomVisorVids {
    from {-webkit-transform: scale(0) translate(0%,0%);} 
    to {-webkit-transform: scale(1) translate(-50%,-50%);}
  }
    
  @keyframes animatezoomVisorVids {
    from {transform: scale(0) translate(0%,0%);} 
    to {transform: scale(1) translate(-50%,-50%);}
  }

  #showVideoIframe{
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    /*margin: 8px 0;*/
    border: none;
    cursor: pointer;
    width: auto;
  }