.smpt-lazy-video {
	position: relative;
}

.smpt-lazy-video video[data-smpt-lazy-video] {
	display: none;
}

.smpt-lazy-video__trigger {
	display: grid;
	place-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	background-color: #0d1838;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

.smpt-lazy-video__trigger::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 14, 31, 0.18) 0%, rgba(8, 14, 31, 0.64) 100%);
}

.smpt-lazy-video__play {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.smpt-lazy-video__play::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid #203b86;
}

.smpt-lazy-video.is-loaded .smpt-lazy-video__trigger {
	display: none;
}

.smpt-lazy-video.is-loaded video[data-smpt-lazy-video] {
	display: block;
}
