
#vgoloading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 999;
}

    #vgoloading .lds-vgo {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
    }

        #vgoloading .lds-vgo div {
            display: inline-block;
            position: absolute;
            left: 8px;
            width: 16px;
            background: #142334;
            animation: lds-vgo 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
        }

            #vgoloading .lds-vgo div:nth-child(1) {
                left: 8px;
                animation-delay: -0.24s;
            }

            #vgoloading .lds-vgo div:nth-child(2) {
                left: 32px;
                animation-delay: -0.12s;
            }

            #vgoloading .lds-vgo div:nth-child(3) {
                left: 56px;
                animation-delay: 0;
            }

@keyframes lds-vgo {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
