/*popup display*/
.bg_overlay {
	width: 100%;
	background: #333;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 999999999;
	display:none;
}
.bg_content {
	position: fixed;
	width: 100%;
	display: table;
	z-index: 99999999;
	max-width: 800px;
	margin-right: -50%;
	top: 50%;
	left: 50%;
	margin-bottom: -50%;
	transform: translate(-50%, -50%);
}
.bg_content img {
	max-width:100%;
}
.pclose { background: #ff5400;
	color: #fff !important;
	padding: 0px 10px;
	top: 10px;
	right: 10px;
	display: block;
	position: absolute;
	cursor: pointer;
	font-size: 25px;
	border:1px solid transparent;
}
.pclose:hover {
	border-color:#fff;
}
@media only screen and (min-width:320px) and (max-width:991px) {
	.bg_overlay { 
		display:block;
	}
}