.center {
    margin: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.lds-ellipsis {
    display: inline-block;
    top: 60%;
    width: 90px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0320ad;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.logo {
    height: 18%;
}

@keyframes pulsate {
    0% {
        filter: drop-shadow(0 0 0 #0320ad);
    }
    50% {
        filter: drop-shadow(0 0 12px #0320ad);
    }
    100% {
        filter: drop-shadow(0 0 0 #0320ad);
    }
}

.dot-flashing {
    position: absolute;
    top: 60%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0320ad;
    color: #0320ad;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -35px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0320ad;
    color: #0320ad;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 35px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0320ad;
    color: #0320ad;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #0320ad;
    }
    50%,
    100% {
        background-color: #637bf3b0;
    }
}

@media (max-width: 1000px) {
    .dot-flashing {
        width: 35px;
        height: 35px;
    }
    .dot-flashing::before {
        left: -55px;
        width: 35px;
        height: 35px;
    }
    .dot-flashing::after {
        left: 55px;
        width: 35px;
        height: 35px;
    }
}

.loading {
    position: absolute;
    top: 95%;
    height: 2vh;
}