.c7wpcp-content-protection-container.c7wpcp-is-loading {
	overflow: hidden;
}

.c7wpcp-content-protection-container {
	display: grid;
	grid-template-areas: 'content-stack';
	align-items: start;
}

.c7wpcp-content-protection-container > .c7wpcp-guest-content,
.c7wpcp-content-protection-container > .c7wpcp-protected-content,
.c7wpcp-content-protection-container > .c7wpcp-unauthorized-content {
	grid-area: content-stack;
	display: none;
	opacity: 0;
	transition: opacity 180ms ease;
	will-change: opacity;
	pointer-events: none;
	z-index: 1;
}

.c7wpcp-content-protection-container > .c7wpcp-pane--visible,
.c7wpcp-content-protection-container > .c7wpcp-pane--fading {
	display: block;
}

.c7wpcp-content-protection-container > .c7wpcp-pane--visible {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.c7wpcp-content-protection-container > .c7wpcp-pane--fading {
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.c7wpcp-content-protection-container > .c7wpcp-guest-content,
	.c7wpcp-content-protection-container > .c7wpcp-protected-content,
	.c7wpcp-content-protection-container > .c7wpcp-unauthorized-content {
		transition: none;
	}
}

.c7wpcp-unauthorized-content:empty {
	display: none !important;
}

.c7wpcp-protected-content:empty {
	display: none !important;
}

.c7wpcp-guest-content:empty {
	display: none !important;
}