body {
	padding: 0;
	margin: 0;
	background: #f2f3f9;
}

#app-content {
	height: calc(100vh - 110px);
	overflow: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	padding-bottom: 40px;
	position: relative;
}

#app-content.fullscreen {
	height: calc(100vh);
}

.content-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: transform(-50%, -50%);
}

#app-loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
	z-index: 9999;
	transition: opacity 1s linear;
	pointer-events: none;
	opacity: 0;
}

app-root:empty + #app-loading {
	opacity: 1;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

/* MODALS */
.modal-outer {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.modal-outer > img {
	max-height: 70%;
	max-width: 70%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.modal-inner.video-3d video {
	width: 200%;
}