@keyframes loading-animation-lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes loading-animation-lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes loading-animation-lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-19px, 0);
    }
}
.loading-layout-1 .ball-move {
    position: relative;
    width: 63px;
    height: 11px;
}
.loading-layout-1 .ball-move > div {
    position: absolute;
    top: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--animation-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-layout-1 .ball-move > div:nth-child(1) {
    right: 6px;
    animation: loading-animation-lds-ellipsis1 0.6s infinite;
}
.loading-layout-1 .ball-move > div:nth-child(2) {
    right: 6px;
    animation: loading-animation-lds-ellipsis2 0.6s infinite;
}
.loading-layout-1 .ball-move > div:nth-child(3) {
    right: 26px;
    animation: loading-animation-lds-ellipsis2 0.6s infinite;
}
.loading-layout-1 .ball-move > div:nth-child(4) {
    right: 45px;
    animation: loading-animation-lds-ellipsis3 0.6s infinite;
}
