@font-face {
    font-family: "MTS Wide";
    src: url(MTSWide-Medium.ttf) format("truetype");
}

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#unity-container {
    background-size: 120%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

#unity-canvas {
    width: 100%;
    height: 100vh;

    background-size: 120%;
}

#loading-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

@keyframes loading {
  0 {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#icon 
{
    padding-bottom: 32px;
    width: 200px;
    height: 200px;
    background: url(favicon.png?v=1) center no-repeat;
    background-size: contain;
}
#progress-bar-title {
    font-family: "MTS Wide";
    padding: 14px;
    font-size: 24px;
}
#progress-bar-empty {
    width: 196px;
    height: 8px;
    border-radius: 10px;
    background-color: #F2F3F7;
}

#progress-bar-full {
    width: 0%;
    height: 8px;
    border-radius: 10px;
    background-color: #FF0032;
}

#progress-bar-arrow {
    display: none;
    position: relative;
    margin-left: auto;
    top: -16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: url('stonePrew.png') no-repeat center;
    background-size: contain;
    animation: loading 2s linear infinite;
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

#version-label {
    position: absolute;
    left: 2vw;
    bottom: 2.85vw;
    color: #A9A9A9;

    font-family: "MTS Wide";
    font-size: 14px;
}
