.ldvp-video-thumb {
	position: relative;
	display: inline-block;
}

.ldvp-video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;

	display: block;
	width: 112px;
	height: 112px;

	margin-top: -56px;
	margin-left: -56px;

	background: url(video-play-thumb.png) 0 -112px no-repeat;
}

a .ldvp-video-icon {
	background-position: 0 0;
}

a:hover .ldvp-video-icon {
	background-position: 0 -112px;
}

.ldvp-video {
	position: relative;
	width: 100%;
	padding-top: 56.25%;

	background: #1e1e1e;
}

.ldvp-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	width: 100%;
	height: 100%;

	z-index: 2;
}

.ldvp-video:before {
	content: '';
	display: block;
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 60%;
	height: 60%;
	max-width: 200px;
	max-height: 243px;

	background: url(preparing-video.png) center no-repeat;
	background-size: contain;
}

.ldvp-video iframe {
	animation: appearAfterDelay 0.5s linear;
	visibility: visible;
}

@keyframes appearAfterDelay {
	0% {
		visibility: hidden;
	}
	99% {
		visibility: hidden;
	}
	100% {
		visibility: visible;
	}
}