/*	–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
	CORE/PAGE-LOADER/CLASSES.CSS
	––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */

/**
 * VISIOFRAMEWORK
 * This file is part of VISIOFRAMEWORK.
 * @package		visioframework
 * @author		Agência Visio <contato@agenciavisio.com.br>
 * @copyright	Copyright (c) 2023-present. M. Souza & Souza LTDA. (CNPJ: 21.284.748/0001-33). All rights reserved.
 * @license		Proprietary
 * @link		https://www.agenciavisio.com.br
 */

.page-loader--wrapper {
	z-index		: 1030;
	transition	: opacity 0.33s linear;
	/*	Mobile `vh` is the toolbars-retracted height, so the layer overshoots the
		screen and its centered content lands below the visible middle. `dvh`
		covers and centers; the `vh` line is the pre-iOS 15.4 fallback. */
	height		: 100vh;
	height		: 100dvh;
}

.page-loader--wrapper.hidden {
	opacity			: 0	!important;
	pointer-events	: none	!important;
}