/* popup_box DIV-Styles*/
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
	z-index:99999999999;
}
 
/* Inner */
.popup-inner {
    max-width:1000px;
    max-height:700px;
    padding:5px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    /*box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background:#fff;*/
	background:translate;
	color:#fff;
}
.popup-inner h2{
	color:#fff !important;
}
/* Close Button */
.popup-close {
    width:60px;
    height:60px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    border-radius:1000px;
    background:rgba(255,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:60px;
    text-align:center;
    line-height:100%;
    color:#fff;
	text-decoration:none;
}
 
.popup-close:hover {
    background:rgba(0,0,0,1);
    text-decoration:none;
}
@media screen and (max-width: 550px) {
	.popup {
		width:100%;
		height:auto;
	}
	.popup-inner {
		top:10px;
		left:10px;
		-webkit-transform:unset;
		transform:unset;
		max-width:100%;
		max-height:100%;
	}
	.popup-inner img{
		width:100%;
	    max-width:100%;
		max-height:100%;
	}
}