/* Full-viewport iframe helpers */
.sb-embed-full {
	background-color: #311261;
	position: relative;
	/* Break out of constrained containers (for templates with contentSize) */
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
}
.sb-embed-full iframe,
.sb-embed-full .sb-embed-frame {
	display: block;
	width: 100vw;
	height: 100svh; /* account for mobile browser UI */
	border: 0;
}

/* When using the Full Width template, we don't need the breakout margins */
.page-template-page-full .sb-embed-full {
	left: auto;
	right: auto;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}
.page-template-page-full .sb-embed-full iframe {
	width: 100%;
	height: 100svh;
} 