body {
    padding: 0;
    margin: 0;
    overflow: hidden;
	background-color: #FFD2A1;
}

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

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

    background-size: 120%;
}

#loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 7% 0;
    color: black;
}

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

#background-image 
{
    width: 100%;
    height: 100%;
    background: url(loading_screen.png) center no-repeat;
    background-size: contain;
}

.progress-background {
    transform: scale(1.2)  translateY(-14px);
    width: 100%;
    height: 100%;
	background: url(background.png) center no-repeat;
    background-size: contain;
}

 .progress-container {
    z-index: 2;
    width: 100%;
    height: 100%;
   
    background: url("progress.png") center no-repeat; /* картинка заполненного бара */
	background-size: contain;
    
    /* делаем прозрачную маску */
    -webkit-mask: linear-gradient(to right, black 0%, black var(--progress, 50%), transparent var(--progress, 50%), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask: linear-gradient(to right, black 0%, black var(--progress, 20%), transparent var(--progress, 20%), transparent 100%);
    mask-repeat: no-repeat;
    mask-size: contain;
  }

 

#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: 0;
    bottom: 0;
    color: #A9A9A9;

    font-family: fantasy;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}
