body { padding: 0; margin: 0 }
#unity-canvas { width: 100%; height: 100%; background: #231F20 }
#unity-loading-bar { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; justify-content: center; align-items: center; width: 256px; height: 256px; }
#logo { width: 100%; }
#unity-progress-bar-empty { width: 141px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 16px; background: url('progress-bar-full-dark.png') no-repeat center }
#error-message { display: none; position: absolute; color: red; text-align: center; width: 100%; height: 50%; bottom: 0; }
#orientation-blocker {width: 100%; height: 100%; background: #ffffff; display: none; position: fixed;}
#orientation-image {width: 30%; height: auto; margin: auto; position: absolute; top: 0; bottom: 0; right: 0; left: 0;}

.wrapper{
    width:180px;
    height:60px;
    transform: translate(0%, 0%);
    padding-bottom: 65px;
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left:15%;
    transform-origin: 50%;
    animation: circle 0.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;
}
.wrapper span{
    position: absolute;
    top:75px;
    font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 12px;
    color: #fff;
    left:15%;
}
