 #thover {
  position: fixed;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 999999;
}

@media screen and (max-width: 991px) {
	 #thover {
		height: calc(100% + 68px);
	  }
}


#tpopup {
  position: absolute;
  width: 600px;
  height: 700px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}
#tclose {
  position: absolute;
  background: black;
  color: white;
  right: -15px;
  top: -15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 8px;
  font-weight: bold;
  font-family: 'Arial Black', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px 0 #000;
}

/***********************************************************************
RESPONSIVE
************************************************************************/
@media screen and (max-width: 800px) {
#tpopup {
  position: absolute;
  width: 90%;
  height: auto;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}

#tpopup img{
	width: 100%;
}
}