#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 20001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  
  #light {
    display: none;
    position: absolute;
    
    top: 50%;
    left: 50%;
    
    max-width: 1200px;
    max-height: 720px;
    margin-left: -600px;
    margin-top: -240px;
    /*
    max-width: 600px;
    max-height: 360px;
    margin-left: -300px;
    margin-top: -120px;
    */

    z-index: 20002;
    overflow: visible;
  }

  #light video { 
    width: 1200px;
      
  }

  #boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border-radius: 3px;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
  }

  #boxclose:hover {
    text-decoration: none;
  }

  .boxclose:before {
    content: "x";
  }
  
  #fade:hover ~ #boxclose {
    display:none;
  }
  
  .test:hover ~ .test2 {
    display: none;
  }

  @media (max-width: 1400px) {	
    
    #light {
      max-width: 900px;
      max-height: 540px;
      margin-left: -450px;
      margin-top: -180px;
    }
    #light video { width: 900px;}

  }
  @media (max-width: 1200px) {	  
    
    #light {
      max-width: 600px;
      max-height: 360px;
      margin-left: -300px;
      margin-top: -120px;
    }
    #light video { width: 600px;}

  }
  @media (max-width: 600px) { 
    
    #light {
      max-width: 300px;
      max-height: 180px;
      margin-left: -150px;
      margin-top: -60px;
    }
    #light video { width: 300px;}
  
  }
