#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}

.popup_block {
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 10px;
	border: 10px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

img.btn_close {
	float: right;
	margin: -55px -55px 0 0;
	border: none;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: relative;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	.popup_block { top: 15%; }
}

body:nth-of-type(1) .popup_block { top: 50%; }

@media screen and (max-width: 667px){ /*680 added by ES,13dec2017*/
	#popup_name {
		margin-top:0px !important;
	}
	
	#popup_name .btn_close { /*added by ES,21dec2017*/
		
		-webkit-transform: scale(0.8); /* Saf3.1+, Chrome */
		-moz-transform: scale(0.8); /* FF3.5+ */
		-ms-transform: scale(0.8); /* IE9 */
		-o-transform: scale(0.8); /* Opera 10.5+ */
        transform: scale(0.8);
          /* IE6–IE9 */
        /*filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9999619230641713, M12=-0.008726535498373935, M21=0.008726535498373935, M22=0.9999619230641713,SizingMethod='auto expand');*/
		
		position:relative;
		top:2px;
		left:-2%;
	}
}

@media screen and (max-width: 480px){ /*added by ES,13dec2017*/
	#popup_name {
		left:2% !important;
	}
}