.fullbg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: 0;
    transition: all 1s linear;

}
.loading-start{
    opacity: 1 !important;
}
.pgbar{
    opacity: 0;
    width: 0%;
    transition: all 0.2s linear;
    margin-left: -12px;
    margin-top: 15px;
    font-size: 8px;
    line-height: 5px;
    background-color: #7858BA;
    font-weight: 600;
    float: left;
    height: 5px;
    border-radius: 5px;
}
.field{
    position: absolute;
    display: block;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}
.field svg{
    width: 200px;
    height: 200px; 
}

#stop-2{
    animation: chcol2 9s linear infinite;
}
#stop-3{
    animation: chcol3 11s linear infinite;
}
@keyframes chcol2 {
    0%{
        stop-color: #9979DB;
    }
    16%{
        stop-color: #94DBAF;
    }
    32%{
        stop-color: #DBD76F;
    }
    48%{
        stop-color: #DB8B52;
    }
    64%{
        stop-color: #DB5866;
    }
    82%{
        stop-color: #D163DB;
    }
}
@keyframes chcol3 {
    0%{
        stop-color: #7858BA;
    }
    16%{
        stop-color: #70BA8A;
    }
    32%{
        stop-color: #BAB550;
    }
    48%{
        stop-color: #BA6B36;
    }
    64%{
        stop-color: #BA3C55;
    }
    82%{
        stop-color: #AC45BA;
    }
}
