/*
#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#26262c;
  display:none;
}  
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:440px;
  height:850px;
  display:none;
  z-index:9999;
  padding:20px;
  border-radius: 5px;
  text-align: center;
}
#boxes #dialog {
  width:600px; 
  height:500px;
  padding: 10px 10px 10px 10px;
  background-color:#ffffff;
  font-size: 15pt;
}

.agree:hover{
  background-color: #D1D1D1;
}
.popupoption:hover{
	background-color:#D1D1D1;
	color: green;
}
.popupoption2:hover{
	color: red;
}
*/

#mask{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#26262c;
  opacity:0.8;
  z-index:9000;
  display:none;
}

/* Popup box */
#boxes .window{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:90%;
  max-width:520px;
  background:#fff;
  z-index:9999;
  display:none;
  padding:10px;
  border-radius:8px;
  text-align:center;
}

/* Image responsive */
.popup-img{
 /* width:100%; */
  width:500px; height:656px;
  /*height:auto; */
  border-radius:5px;
}

/* Close button */
.close img{
  width:25px;
  position:absolute;
  top:-12px;
  right:-12px;
  cursor:pointer;
}

/* Hover */
.agree:hover{
  opacity:0.7;
}

/* Mobile tweaks */
@media(max-width:576px){
  #boxes .window{
    max-width:95%;
    padding:8px;
  }

  .close img{
    top:-10px;
    right:-10px;
  }
}
