html {
    box-sizing: border-box;
	width: 100% !important;
	height: 100% !important;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
	position: fixed;
	top: 0;
	bottom: 0;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
canvas {
    display: block;
}
body {
	width: 100%;
    background: #EDECED;
	margin: 0;
	display: flex;
}
#unity-container {
	width: 100%;
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
	height: calc(var(--vh, 1vh) * 100);
    margin: auto auto;
    background: #EDECED;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #EDECED;
}

#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: 50%;
}
#unity-progress-bar-empty {
    width: 50%;
    height: 24px;
    margin: 10px 20px 20px 10px;
    text-align: left;
    border: 1px solid black;
    padding: 2px;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: black;
}
.light #unity-progress-bar-empty {
    border-color: black;
}
.light #unity-progress-bar-full {
    background: black;
}

#unity-fullscreen-button {
	display: none !important;
    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);
  }
}

#pleaserotate-graphic{
	fill: #fff;
}

#pleaserotate-backdrop {
	color: #fff;
	background-color: #000;
}

#old_device_warning {
    color: #fff;
    background-color: #000;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
	z-index: 2000;
}

#old_device_warning-container {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#old_device_warning-graphic {
	margin-left: 50px;
    width: 200px;
	height: 170px;
    transform-origin: 50% 50%;
}

#old_device_warning-message {
    margin-top: 20px;
    font-size: 1.3em;
    text-align: center;
    font-family: Verdana, Geneva, sans-serif;
    text-transform: uppercase;
}
