body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(#29293d, #171722);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

/* LOADER */

.loading-wrapper {
    width: 400px;
    height: 180px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .loading-wrapper span.title {
        position: absolute;
        top: 80px;
        font-size: 30px;
        text-transform: uppercase;
        color: #21b3d2;
        text-align: center;
        width: 100%;
    }

    .loading-wrapper span.progress-bar-wrapper {
        position: absolute;
        top: 130px;
        height: 10px;
        width: 100%;
        background: #555;
    }

        .loading-wrapper span.progress-bar-wrapper span.progress-bar {
            height: 10px;
            width: 25%;
            background: #b7e117;
            display: block;
        }

    .loading-wrapper span.progress-value {
        position: absolute;
        top: 150px;
        font-size: 30px;
        text-transform: uppercase;
        color: #b7e117;
        text-align: center;
        width: 100%;
    }

.circles-wrapper {
    position: absolute;
    left: 100px;
    top: 0;
    height: 60px;
    width: 200px;
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #b7e117;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}
