﻿html,
body {
    background: #ECEFF1;
    width: 100%;
    height: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
}

#unity-container {
    background: transparent !important;
    width: 100%;
    height: 100%;
    position: absolute;
}

#unity-container canvas {
    position: absolute;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#unity-progress-bar-empty {
    width: 350px;
    height: 26px;
    background-color: #D0D6DA;
    border-radius: 13px;
    overflow: hidden;
}

#unity-progress-bar-full {
    width: 0;
    height: 100%;
    background-color: #A5B0B6;
    border-radius: 13px;
    transition: width 0.1s ease-in-out;
}
