/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 40px;
    display: flex;
    align-items: center;
}

.obj {
    width: 6px;
    height: 40px;
    background: linear-gradient(#c5ff58, #ccc12e 100%, #c5ff58 );
    margin: 0 3px;
    border-radius: 10px;
    animation: loading 0.8s infinite;
}
.obj:nth-child(2){
    animation-delay: 0.1s;
    
}
.obj:nth-child(3){
    animation-delay: 0.2s;
}
.obj:nth-child(4){
    animation-delay: 0.3s;
    
}
.obj:nth-child(5){
    animation-delay: 0.4s;
    
}
.obj:nth-child(6){
    animation-delay: 0.5s;
    
}
.obj:nth-child(7){
    animation-delay: 0.6s;
    
}
.obj:nth-child(8){
    animation-delay: 0.7s;
    
}

@keyframes loading {
    0%{
        height: 0;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 0;
    }
}

.text-block {
    position: absolute;
    top: 52%;
    left: 49%;
    display: block;
    overflow: hidden;
    height: auto;
    margin-top: 5px;
    margin-right: auto;
    margin-left: auto;
    font-family: Rubik, sans-serif;
    color: #c2eb2f;
    font-size: 25px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
  }

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
