.vpg-slide {
	position: relative;
	cursor: pointer;
}
.vpg-slide img {
	width: 100%;
	height: auto;
	display: block;
}
.vpg-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin-top: -32px;
	margin-left: -32px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	transition: background 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}
.vpg-play-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}
.vpg-slide:hover .vpg-play-button {
	background: rgba(0, 0, 0, 0.85);
	transform: scale(1.05);
}
.vpg-slide.vpg-playing .vpg-play-button,
.vpg-slide.vpg-playing img {
	display: none;
}
.vpg-media-frame {
	width: 100%;
	height: 100%;
	min-height: 300px;
	display: block;
	border: 0;
}
