body { text-align: center; padding: 0; border: 0; margin: 0; }
#unity-canvas { width: 100%; height: 100%; background: #231F20  }
#unity-loading-bar { display: block; }
#itmium { position: fixed; color: white; left: 5px; bottom: 5px;visibility: hidden; }
#unity-loading-bar-center { 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; height: 28px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 16px; /*margin-top: 6px;*/ background: url('progress-bar-full-dark.png') no-repeat center }

.wrapper{
    width:180px;
    height:60px;
    transform: translate(0%, 0%);
    margin-top: 46px;
}
.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;
    visibility: hidden;
}

@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%;
}
