/* 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: fixed;
	z-index: 9999;
	top: 100%;
	right: 10vw;
	margin: 20px;
	margin-top: 10px;
	float: right;
	font-size: 30px;
	cursor: pointer;
}
