.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #32ab98;
}

.load-1 .line:nth-last-child(1) {
    animation: loadingA 1.5s 1s infinite;
}
.load-1 .line:nth-last-child(2) {
    animation: loadingA 1.5s 0.5s infinite;
}
.load-1 .line:nth-last-child(3) {
    animation: loadingA 1.5s 0s infinite;
}
@keyframes loadingA {
    0 {
        height: 15px;
    }
    50% {
        height: 35px;
    }
    100% {
        height: 15px;
    }
}
.dv-loading-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    left:0;
    top: 0;
    background-color: #222931;
    display: flex;
    align-items: center;
    justify-content: center;
}