@charset "utf-8";

/* video */
	.videoPlayerOverlay{
		background-color: rgba(0, 0, 0, 0.7);
		position: fixed;
		z-index: 1200;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    width: 100%;
	    height: 100%;

    	align-items: center;
		justify-content: center;
		display: flex;
		flex-direction:row-reverse;
	}
	.video{
		position: relative;
		display: block;
	}
	.video:before{
		content: '';
		position: absolute;
		z-index: 2;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100px;
		height: 100px;
		background: url('../images/vedioBtn_w.svg') no-repeat;
		background-size: 100%;
		transition: all .4s;
	}
	.video:hover:before{
		width: 150px;
		height: 150px;
		transition: all .4s;
	}
	.videoPlayerOverlay .closeIcon {
		top: 15%;
		right: auto;
		width: 45px;
		height: 45px;
		align-items: center;
		justify-content: center;
		display: flex;
		background-color: transparent;
		border-style:none;
		cursor: pointer;
		padding: 5px;
		margin-bottom: 32%;
	}
	.videoPlayerOverlay .closeIcon img {
		width: 80%;
	}
	.videoPlayerOverlay iframe {
		width: 95%;
		max-width: 990px;
		max-height: 557px;
	}
	.videoPlayerOverlay.hide{
		display: none;
	}
	@media (max-width: 1460px) {
		.video:before{
			width: 6.8vw;
			height: 6.8vw;
		}
		.video:hover:before{
			width: 8vw;
			height: 8vw;
		}
	}
	@media (max-width: 800px) {
		.video:before{
			width: 11.8vw;
			height: 11.8vw;
		}
		.video:hover:before{
			width: 13vw;
			height: 13vw;
		}
		.videoPlayerOverlay iframe {
		    max-height: inherit;
    		height: 57vw;
		}
		.videoPlayerOverlay .closeIcon{
			position: absolute;
		}
	}

/* video popUp */
	.video-list-popup {
		background-color: rgba(0, 0, 0, 0.7);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1200;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
		display: none;
	}
	.video-list-popup.op{
		display:flex;
	}
	.closePopUp_btn {
		top: 15%;
		right: auto;
		width: 45px;
		height: 45px;
		
		margin-bottom: 32%;
		background-color: transparent;
		border-style: none;
		cursor: pointer;
		padding: 5px;
	}
	.video-listBOX img {
		width: 100%;
		display: block;
	}
	.video-listBOX {
		position: relative;
		width: 95%;
		max-width: 990px;
	}
	.video-listBOX iframe {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	@media (max-width: 800px) {
		.closePopUp_btn {
			position: absolute;
		}
	}