.app-container {
	width: 100%;
	height: 100%;
	position: fixed;
}

.page-container {
	width: 100%;
	height: calc(100% - 56px);
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.page-container-auth {
	height: 100%;
}

.page-container-logged {
	width: calc(100% - 82px);
	height: calc(100% - 56px);
	position: absolute;
}

.page-left-container {
	width: 82px;
	height: calc(100% - 56px);
	position: absolute;
	left: 0px;
	bottom: 0px;
	border-right: 1px solid #c2cfe0;
}

.page-nav-container {
	width: 100%;
	height: 56px;
	position: absolute;
	top: 0px;
}

.navbar-container {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: var(--c-blue-dark);
	display: flex;
	align-items: center;
}

.loader-container {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-loader {
	position: absolute;
	top: calc(50% - 32px);
	left: calc(50% - 32px);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	perspective: 800px;
}

.page-inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.page-inner.page-spring-one {
	left: 0%;
	top: 0%;
	animation: page-rotate-one 1s linear infinite;
	border-bottom: 3px solid #334d6e;
}

.page-inner.page-spring-two {
	right: 0%;
	top: 0%;
	animation: page-rotate-two 1s linear infinite;
	border-right: 3px solid #334d6e;
}

.page-inner.page-spring-three {
	right: 0%;
	bottom: 0%;
	animation: page-rotate-three 1s linear infinite;
	border-top: 3px solid #334d6e;
}

@keyframes page-rotate-one {
	0% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}

	100% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@keyframes page-rotate-two {
	0% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}

	100% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@keyframes page-rotate-three {
	0% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}

	100% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@media screen and (max-width: 600px) {
	.page-nav-container-auth {
		display: none;
	}

	.page-left-container {
		width: 100%;
		height: 60px;
		border-right: none;
		border-top: 1px solid #c2cfe0;
		z-index: 3;
		bottom: 0px;
	}

	.page-container-logged {
		width: 100%;
		height: calc(100% - 60px);
		top: 0px;
	}
}

.page-container-full {
	height: 100%;
}