.rw-checkout-btn {
    display: flex;
    align-items: center;
    gap: 1rem;

    .loading-spinner {
        height: 24px;
        color: #000;
    }

    .payments-btn-handler[data-disabled]>* {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }
}

.woocommerce {
    position: relative;

    .success {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #6f6f6f;
        font-size: 2em;
        white-space: nowrap;
        text-transform: capitalize;
        font-family: 'Courier New', Courier, monospace;
        font-weight: bold;
        animation: fade-up 0.8s ease-in-out;
    }
}

@keyframes fade-up {
    0% {
        transform: translate(-50%, calc(-50% + 30px));
        opacity: 0;
    }
}


.blockUI.blockOverlay::before {
    content: unset;
}