.popup_wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 500;
}
.popup_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .7;
}
.popup{
	padding-top: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 501;
	background-color: #fff;
}
.btn_close{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 25px;
	height: 25px;
	background: no-repeat center/cover url(/images/close.svg);
	border: none;
	cursor: pointer;
}