/* Video slide inside the WooCommerce product gallery. */
.woocommerce-product-gallery__image.cawvg-slide {
	position: relative;
}

.cawvg-slide .cawvg-video {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #000;
	overflow: hidden;
}

/* Some themes set padding-based ratios; the aspect-ratio above covers modern
   browsers, this keeps older ones from collapsing. */
@supports not ( aspect-ratio: 1 / 1 ) {
	.cawvg-slide .cawvg-video {
		padding-top: 100%;
		height: 0;
	}
}

.cawvg-slide .cawvg-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Play button overlay. */
.cawvg-slide .cawvg-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba( 0, 0, 0, 0.55 );
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.cawvg-slide .cawvg-play:hover,
.cawvg-slide .cawvg-play:focus-visible {
	background: rgba( 0, 0, 0, 0.75 );
	transform: translate( -50%, -50% ) scale( 1.05 );
}

.cawvg-slide .cawvg-play-icon {
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate( -50%, -50% );
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 0 13px 22px;
	border-color: transparent transparent transparent #fff;
}

/* Active player fills the slide. */
.cawvg-slide.cawvg-playing .cawvg-play {
	display: none;
}

.cawvg-slide .cawvg-iframe,
.cawvg-slide .cawvg-html5 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
	display: block;
}

.cawvg-slide .cawvg-html5 {
	object-fit: contain;
}

/* Mark the thumbnail-nav entries of videos with a small play badge. */
.flex-control-nav li .cawvg-slide,
.woocommerce-product-gallery .flex-control-thumbs li img {
	cursor: pointer;
}
