body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

*::-webkit-scrollbar {
    display: none;
}

#unity-container {
    position: absolute
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%
}

#unity-canvas {
    background: #231F20;
    /* aspect-ratio: 960/600; */
    /* background: wheat; */
}

.unity-mobile #unity-canvas {
    width: 100% !important;
    height: 100% !important;
}

#unity-loading-bar {
    width: 50%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* display: flex !important; */
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#unity-logo {
    width: 190px;
    height: 110px;
    /* background: url('unity-logo-dark.jpg') no-repeat center; */
    border-radius: 10px;
    margin: auto;
    overflow: hidden;
}

#unity-logo-img {
    width: 100%;
    height: 100%;
}

#unity-progress-bar-empty {
    width: 100%;
    height: 18px;
    /* background: url('progress-bar-empty-dark.png') no-repeat; */
    /* background-size: contain; */
    margin-top: 10px;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 2px;
    /* padding-left: 10px;
    padding-right: 10px; */
    border: 1px rgba(60, 70, 193, 1) solid;
    /* border-image: linear-gradient(to right, #8f41e9, #578aef) 1; */
    border-radius: 10px;
    position: relative;
}

#unity-progress-bar-full {
    /* width: 40% !important; */
    height: 14px;
    /* background: url('progress-bar-full-dark.png') no-repeat center; */
    background: rgba(10, 210, 190, 1);
    border-radius: 10px;
    overflow: hidden;
}


/* unity-progress-bar-full-child */

#unity-progress-bar-full-child {
    background: #00FFE0;
    width: 0%;
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    animation: fullchild 1.5s infinite;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}

@keyframes fullchild {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

#unity-footer {
    position: relative;
    display: none;
}

.unity-mobile #unity-footer {
    display: none
}

#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

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

#unity-fullscreen-button {
    cursor: pointer;
    float: right;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center
}

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