html, body {
	width: 100%;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;

	height: 100vh;
	height: calc(var(--vh));
}
* {
    box-sizing: border-box;
}
*, article, div, footer, header, p, section {
    margin: 0;
    padding: 0;
}
.container {
    width: 100vw;
	height: 100vh;
	height: calc(var(--vh));
}
.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
	min-height: 200px;
}
.spinner {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: conic-gradient(#4facfe, #00f2fe, #8b5cf6, #4facfe);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 0);
	mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 0);
	filter: drop-shadow(0 0 12px rgba(79, 172, 254, .45));
	animation: spin .8s linear infinite;
	margin-bottom: 18px;
}
.loading-text {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0;
	color: #4facfe;
}
.hidden {
	display: none;
}
#ifb {
	z-index: -2;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
}
#pf {
	z-index: 1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#frm {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh));
	position: relative;
}
.substratum {
	z-index: -2;
	position: absolute;
}
@keyframes spin {
	to {
		transform: rotate(1turn);
	}
}

