.pps-video-wrap {
	text-align: center;
	display: block;
	width: 100%;
	height: auto;
}

.pps-video-preview-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	padding-top: 56.25%;
}

.pps-video-preview-wrap a {
	display: block;
	position: absolute;
	overflow: hidden;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: auto;
}

.pps-video-preview-wrap a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #333;
	opacity: .4;
	transition: all .2s ease-out;
	z-index: 11;
}

.pps-video-preview-wrap a:hover::after {
	background-color: transparent;
}

.pps-video-preview-wrap .push-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 75px;
	height: 75px;
	text-align: center;
	background: #fff;
	opacity: .5;
	z-index: 99;
	box-shadow: 0 0 29px 0 #fff;
	animation: push-btn-fade-in 1s ease-in .5s infinite alternate;
}

.pps-video-preview-wrap .push-btn i {
	padding-left: 7px;
	line-height: 75px;
	font-size: 32px;
}

.vidpopup-description {
	color: white;
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
	max-width: 640px;
}

@-webkit-keyframes push-btn-fade-in {
	0% {
		opacity: .5;
	}
	
	100% {
		opacity: .85;
	}
}

@-moz-keyframes push-btn-fade-in {
	0% {
		opacity: .5;
	}
	
	100% {
		opacity: .85;
	}
}

@-o-keyframes push-btn-fade-in {
	0% {
		opacity: .5;
	}
	
	100% {
		opacity: .85;
	}
}

@keyframes push-btn-fade-in {
	0% {
		opacity: .5;
	}
	
	100% {
		opacity: .85;
	}
}

.pps-video-preview-wrap:hover .push-btn {
	animation: none;
	opacity: 1;
}

.pps-video-preview-wrap a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 22;
	display: block;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.pps-video-preview-wrap a:hover img {
	transform: scale(1.05) rotate(.01deg);
}

.pvc-lightbox {
	display: none;
}

h2.pps-video-title {
	color: #fff;
	font-size: 1.5em;
	padding-right: 35px;
	margin-top: 0;
}

.pps-video-preview-title {
	font-size: 1.5em;
}