
.custom-loading{
    user-select: none;
    z-index: 10;
    /*display: none;*/
    position: absolute;
    /*max-width: 25%;*/
    min-width: 100% !important;
    min-height: 100%;
    /*height: auto;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    background: transparent;
    /*box-shadow: rgba(0, 0, 0, 0.2) 6px 6px 6px;*/
}
.lds-ellipsis {
    display: inline-block;
    position: absolute;
    width: 77px;
    height: 77px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--StripeBlue);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    /*filter: drop-shadow(4px 4px 2px gray);*/
}
.lds-ellipsis div:nth-child(1) {
    z-index: 0;
    left: 6px;
    background: var(--StripeBlue);
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    z-index: 1;
    left: 6px;
    background: var(--StripeBlue);
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    z-index: 1;
    left: 31px;
    background: var(--StripeBlue);
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    z-index: 0;
    left: 55px;
    background: var(--StripeBlue);
    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);
    }
}
.loading-label {
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ThemeColor);
}

.payment-ds-ellipsis {
    display: inline-block;
    position: absolute;
    width: 77px;
    height: 77px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.payment-ds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: skyblue;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.payment-ds-ellipsis div:nth-child(1) {
    left: 6px;
    background: skyblue;
    animation: payment-lds-ellipsis1 0.6s infinite;
}
.payment-ds-ellipsis div:nth-child(2) {
    left: 6px;
    background: cornflowerblue;
    animation: payment-lds-ellipsis2 0.6s infinite;
}
.payment-ds-ellipsis div:nth-child(3) {
    left: 31px;
    background: royalblue;
    animation: payment-lds-ellipsis2 0.6s infinite;
}
.payment-ds-ellipsis div:nth-child(4) {
    left: 55px;
    background: royalblue;
    animation: payment-lds-ellipsis3 0.6s infinite;
}
@keyframes payment-lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes payment-lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes payment-lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}