.image-video-switch.video.video img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.image-video-switch.video.video {
	position: relative;
	width: 100%;
	height: 600px;
	max-width: none;
	border-radius: 20px;
}

.image-video-switch.video.video video {
	cursor: pointer;
}

.image-video-switch.video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.image-video-switch.video .play-button {
	padding: 1rem;
	position: absolute;
	background: transparent;
	z-index: 2;
	border: unset;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	transition: all 250ms ease-in-out;
}

.image-video-switch.video .play-button > div {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.image-video-switch.video .play-button .icons {
	background-color: transparent;
	border-radius: 4px;
	color: white;
	padding: .125rem;
}

.image-video-switch.video .play-button .icons #pause {
	visibility: hidden;
}

