.default-spinner{
    display: none;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-top-color: transparent;
    animation: rotate-spinner 1.2s linear infinite;
    position: absolute;
    top: 30%;
    left: 48%;
}

.lostpass-spinner {
    display: block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-top-color: transparent;
    animation: rotate-spinner 1.2s linear infinite;
    position: relative;
    top: 30%;
    left: 48%;
}

@keyframes rotate-spinner {
    to {
        transform: rotate(360deg);
    }
}

.default-spinner.billing-spinner{
    top: 24%;
    left: 42%;
}

.plan-btn:has(.gray-spinner):hover .default-spinner.billing-spinner.gray-spinner {
    border: 4px solid #fff;
    border-top-color: transparent;
}

.default-spinner.billing-spinner.gray-spinner{
    border: 4px solid var(--update-button-bg);
    border-top-color: transparent;
}

.billing-plan-btn-wrap:disabled{
    opacity: 100% !important;
}

.billing-down-spinner.gray-spinner {
    border: 4px solid var(--update-button-bg);
    border-top-color: transparent;
}

.plan-cards-wrap .billing-down-spinner.gray-spinner {
    border: 4px solid var(--white);
    border-top-color: transparent;
}

.billing-down-spinner.green-spinner{
    border: 4px solid #fff;
    border-top-color: transparent;
}

.buy-plan-btn:hover .billing-down-spinner.gray-spinner{
    border: 4px solid #fff;
    border-top-color: transparent;
}

.add-invinsible{
    visibility: hidden;
}

#login-btn,
.-btn-submit,
.plan-btn,
.buy-btn-area .buy-plan-btn,
.buy-btn-area .annual-buy-plan-btn,
.qr-fill-btn{
    position: relative;
}

.animate-logo .logo {
    width: 175px;
    min-width: 175px;
    max-width: 175px;
}

.animate-logo .logo.qci-logo > img.dashboard_logo{
    max-width: 100%;
    height: auto;
}
@media(max-width:1080px){
    .animate-logo .logo.qci-logo {
        width: auto;
        min-width: auto;
        max-width: auto;
    }
    .animate-logo .logo.qci-logo img{
        width: 175px;
    }
span.ripple {
    background-color: rgba(255, 255, 255, 0.848);
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    animation: ripple .5s linear forwards;
    width: 150px;
    height: 20px;
}

@keyframes ripple {
    to {
        transform: scale(0.7);
        opacity: 0;
    }
}
}




