.video-wrapper {
	background-color: #0d4e9d;
}

.video-pace-holder {

	max-width: 1096px;
	height: auto;
	margin: auto;
	overflow: hidden;
	border-radius: 15px;
}

.video-pace-holder .play-button {
	position: absolute;
	top: calc(50% - 76px);
	left: calc(50% - 76px);
	cursor: pointer;
}

.popup {
	transform-origin: center;
	position: fixed;
	top: 50%;
	rigth: unset;
	bottom: unset;
	left: 50%;
	width: 0;
	height: 0;
	opacity: 0;
	transition: 1s;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.popup.show {
	opacity: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	background-color: rgba(0, 0, 0, .80);
}

.popup .close {
	display: block;
	position: absolute;
	top: 30px;
	right: 30px;
	color: #fff;
	z-index: 9999;
	font-size: 40px;
	cursor: pointer;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 991px) {
	.video-pace-holder .play-button {
		width: 80px;
		height: auto;
		top: calc(50% - 40px);
		left: calc(50% - 40px);
	}
}