/* CSS Document */



.sub_page_pop {
	position: fixed;
	z-index: 9998;
	width: 80vw;
	margin: auto;
	height: 70vh;
	padding: 0;
	left: 10vw;
	top: 180%;
	background-color: rgba(151,207,230,0.98);
	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;
}
.sub_page_pop_content {
	padding: 50px;
	text-align: left;
	margin: 0 auto;
	width: 100%;
	max-height: 70vh;
	box-sizing: border-box;
	padding-left: 15%;
	padding-right: 15%;
	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: 10px !important;
	right: 10px;
	margin: 10px;

	float: right;
	font-size: 30px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.button-close::after, .button-close::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #fff;
	top: 15px;
	right: 0px;
}
.button-close::after {
	transform: rotate(45deg);
}
.button-close::before {
	transform: rotate(-45deg);
}
