/* CSS Document */



.sub_page_pop {
	position: fixed;
	z-index: 9998;
	width: 80%;
	max-width: 600px;
	margin: auto;
	height: 70vh;
	padding: 0;
	left: 50%;
	transform: translateX(-50%);
	
	top: 180%;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	-webkit-transition: top 0.5s cubic-bezier(0.8, 0.0, 0.2, 1.0);
	-moz-transition: top 0.5s cubic-bezier(0.8, 0.0, 0.2, 1.0);
	transition: top 0.5s cubic-bezier(0.8, 0.0, 0.2, 1.0);
	display: flex;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
.sub_page_pop_content {
	padding: 50px;
	text-align: left;
	margin: 0 auto;
	width: 100%;
	max-height: 70vh;
	box-sizing: border-box;
	padding-left: 50px;
	padding-right: 50px;
	overflow-y: auto;
	display: block;
}
.sub_page_pop_content .wp-video {
	margin: 0 auto;
	width: 100% !important;
}
.sub_page_pop_content video {
	width: 100%;
	background-color: #000000;
}
.sub_page_pop_content img {
	max-width: 100%;
}
.sub_page_pop_content h2 {
}
.button-close {
	position: absolute;
	z-index: 9999;
	top: 0 !important;
	right: 0px;
	margin: 20px;
	float: right;
	font-size: 30px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.button-close::after {
	transform: rotate(45deg);
}
.button-close::before {
	transform: rotate(-45deg);
}
.button-close .fa-times {
	display: none;
}


.button-close::after, .button-close::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #000;
	top: 15px;
	right: 0px;
}
