/* ==================================================

	Application peek

================================================== */

.app-peek {
	position: fixed;
	inset: 0;
	z-index: 400;

	display: block;
	overflow: hidden;

	background-color: var(--color-bg-page);
}

/* base display beats the [hidden] UA style */
.app-peek[hidden] {
	display: none;
}

.app-peek__page {
	min-height: 100%;
}

/* screenshot stands in for the iframe: drop the frame's height rules and the reset's max-width, else the fixed-ratio image stretches */
.app-peek .apply__iframe {
	max-width: none;
	height: auto;
	min-height: 0;
}
