html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
canvas {
    display: block;
}
canvas:focus {
    outline: none;
}
#unity-container {
    width: 100%;
    height: 100%;
	  position: relative;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #000000;
}
#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-progress-bar-empty {
    width: 30%;
    height: 12px;
    margin: 10px 20px 20px 10px;
    text-align: left;
    background: #202020;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: #007EBD;
}
