.cpopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1000;
	background-color: rgba(17, 17, 17, 0.5);
	overflow-y: scroll;
}
.cpopup .cpopup-container {
	position: relative;
	margin: 25px auto;
	background-color: #FFF;
	width: 92%;
	max-width: 470px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cpopup .cpopup-container:before {
	content: "";
	display: block;
	height: 140px;
	background-image: url("img/header_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	border: solid 5px #FFF;
	box-sizing: border-box;
}
.cpopup .cpopup-container .cpopup-close {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 20px;
	right: 20px;
	cursor: pointer;
	color: #BFBEBF;
	background-image: url("img/close.png");
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
}
.cpopup .cpopup-container .cpopup-close:hover {
	opacity: .7;
}
.cpopup .cpopup-inner {
	padding: 20px 11.7%;
	min-height: 150px;
}
.cpopup-noscroll {
	overflow-y: hidden;
}