.app-container {
	width: 100%;
	height: 100%;
	position: fixed;
	display: flex;
	flex-flow: column;
}

.page-container {
	width: 100%;
	height: 100%;
	position: relative;
	bottom: 0px;
	right: 0px;
}

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

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

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

.page-container-full-width {
	width: 100% !important;
}

.page-left-container {
	width: 82px;
	height: 100vh;
	position: absolute;
	left: 0px;
	bottom: 0px;
	background-color: transparent !important;
}

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

.navbar-container {
	width: 100%;
	height: 56px;
	position: relative;
	background-color: white;
	display: flex;
	align-items: center;
	max-width: 1140px;
	margin: 0 auto;
}

.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);
	}
}

.page-nav-container {}

.hover-landing .app-container {
	overflow-y: auto;
}

@media screen and (max-width: 600px) {

	.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;
	}



	.navbar-container {
		background-color: white;
	}


}

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