.videoPlayerOverlay{
	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%;
}
/*以上有用bootstrap就不用放*/
.videoPlayerOverlay {
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction:row-reverse;
}

.videoPlayerOverlay .closeIcon {
	top: 15%;
	right: auto;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 32%;
	background-color: transparent;
	border-style:none;
	cursor: pointer;
	padding: 5px;
}

.videoPlayerOverlay .closeIcon img {
	width: 80%;
}

.videoPlayerOverlay iframe {
	width: 95%;
	max-width: 990px;
	max-height: 557px;
}
.videoPlayerOverlay.hide{
	display: none;
}
@media (max-width: 550px) {
	.videoPlayerOverlay iframe {
		max-height: 300px;
	}
	.videoPlayerOverlay .closeIcon{
		position: absolute;
	}
}