#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: fixed;
  top: 25%;
  left: 50%;
  max-width: 100%;
  max-height: 460px;
  transform: translate(-50%, 0%);
  border: 10px solid #c7ac5f;
  border-bottom:4px solid #c7ac5f;
  padding:0px;
  background: #c7ac5f;
  z-index: 1002;
  overflow: hidden;
}

#light video {
    max-width: 100%;
    max-height: 100%;
	min-width:600px;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {

#light video {
	min-width:460px;
	}
}

@media screen and (max-width: 480px) {

#light video {
	min-width:280px;
	}
}

#boxclose {
  cursor: pointer;
  color: #fff;
  border: 1px solid #AEAEAE;
  border-radius: 3px;
  background: #801C18;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: fixed;
  right: 2px;
  top: 2px;
  z-index: 1002;
  margin-top:-50px;
  opacity: 1.0;
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display:none;
}

.test:hover ~ .test2 {
  display: none;
}