html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
    width: 100%;
    height: 100%;
}
html, body {
    height: 100%;
}
canvas {
    display: block;
}
body {
    margin: 0;
    overflow: hidden;
}
#unity-container {
    width: 100%;
    height: 100%;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #0D0D0D;
}
#loading-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#unity-loading-bar {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#unity-logo {
    text-align: center;
}
#unity-logo img {
    max-width: 80%;
}
#unity-progress-bar-empty {
    width: 80%;
    height: 24px;
    margin: 10px 20px 20px 10px;
    text-align: left;
    border: 1px solid white;
    padding: 2px;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: white;
}
.light #unity-progress-bar-empty {
    border-color: black;
}
.light #unity-progress-bar-full {
    background: black;
}

#unity-fullscreen-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center;
    background-size: contain;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.spinner {
  margin: 10px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: spinner-spin 1.1s infinite linear;
}
@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#root, body, html {
	height: 100%;
    position: relative;
    width: 100%;
}
body:before {
    background-attachment: fixed;
    background-image: linear-gradient(-225deg,#daf5ff,#f3dbff);
    background-position: 50%;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}
@media (min-width: 520px) {
	#root .left-frame {
		width: 470px !important;
	}
	#root .right-frame {
		display: block !important;
    	width: calc(100% - 470px);
	}
}
#root .MuiBox-root {
	height: 100%;
}
#root .left-frame {
	width: 100%;
    height: 100%;
    position: relative;
    float: left;
    overscroll-behavior-y: contain;
}
#root .right-frame {
	float: left;
    position: relative;
    overscroll-behavior-y: contain;
    display: none;
    height: 100%;
}
#clear-indexedDB-button { width: 53px; height: 56px; background: url('clear_cache_button.png'); position: absolute; left: 5%; top: 5%; transform: translate(-5%, -5%); transform: scale(1) }
