.paylixecommerce-iframe-loader {
    animation-name:             spin;
    animation-duration:         2s;
    animation-iteration-count:  5;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    width: 35px !important;
    height: 35px !important;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(360deg);
    }
}



.embed-loader {
    display: flex;
    opacity: 1;
    z-index: 99999999;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in;
    overflow: hidden;
}
.embed-loader-wrapper {
     padding: 1rem 0;
 }
.embed-loader-text {
     margin-top: 1rem;
     color: #777F89;
     font-family: 'Inter';
     font-style: normal;
     font-weight: 400;
     font-size: 14px;
     line-height: 20px;
     text-align: center;
 }
.embed-loader-circle {
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 100%;
     width: 68px;
     height: 68px;
     margin: 0 auto;
     position: relative;
}
.embed-loader-paylixecommerce {
     position: absolute;
}

