:root{
    --loading-bar-fill-color:#3498db;
    -backgroundColor: #3498db;
}
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
}
canvas {
    display: block;
}
body {
    margin: 0;
}
#unity-container {
    width: 100%;
    height: 100%;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background:white;

}
#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;
    min-height: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#unity-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 50vh;
}
#unity-logo img {
   max-width: 100%;
   max-height: 100%;
   display: block;
}
#unity-progress-bar-empty {
    width: 80%;
    height: 24px;
    margin: 10px 20px 20px 10px;
    text-align: left;
    border: 3px solid white;
    border-radius: 25px;
    padding: 1px;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: var(--loading-bar-fill-color);
	 border-radius: 25px;
}
.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;
}


.focus-el{
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 100;
}
