/**
 * Thank-you popup overrides. Reuses .video-popup / .video-popup__* from the
 * compiled assets/css/index.css (no source files in the repo to rebuild
 * from) — this file only overrides what differs: this video is portrait,
 * unlike the sibling "video" popup's typical landscape footage. Scoped
 * under .thank-you-popup so that other popup is untouched.
 */

.thank-you-popup [data-fls-popup-body] {
	max-width: 43rem;
}

.thank-you-popup[data-fls-popup] {
	transition: visibility 0.8s linear 0s;
}

.thank-you-popup .video-popup__video {
	/* No fixed aspect-ratio, same reasoning as the base .video-popup__video
	   rule in index.css: a hardcoded ratio crops/misfits any video uploaded
	   with different dimensions. height:auto follows the file's real ratio. */
	height: auto;
	object-fit: contain;
	max-width: 100%;
	max-height: 80vh;
	background-color: #000;
}

.thank-you-popup .video-popup__cta {
	gap: 1.5rem;
	padding: 0.625rem;
}

.thank-you-popup .video-popup__cta-heading {
	font-size: 32px;
}

.thank-you-popup .video-popup__cta-btn-text {
	font-size: 18px;
	text-transform: uppercase;
}

.video-popup__unmute {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 3;
	padding: 0.5rem 1rem;
	border: 0;
	border-radius: 999px;
	background-color: rgba(18, 42, 66, 0.85);
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.2;
	cursor: pointer;
}

.video-popup__unmute[hidden] {
	display: none;
}
