
/**
 * PhotoSwipe Video Container Styles
 */
.pswp__video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.pswp__video-container video, .pswp__video-container iframe {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

.pswp__video-container video {
	object-fit: contain;
}

/* Play icon on thumbnails */
.pswp__thumbnails .has-video-thumb {
	position: relative;
}

.pswp__thumb-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, .9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 2;
}

.pswp__thumb-play-icon svg {
	width: 12px;
	height: 12px;
	color: #333;
	margin-left: 1px;
}
