/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:48:37 */
/* --- Change "PROCEED TO NEXT" button text during all payment steps --- */

/* 1. Target all three buttons and hide their original text */
.lp_payment_step_next.firstStep,
.lp_payment_step_next.secondStep,
.lp_payment_step_next.thirdStep {
    font-size: 0 !important;
    color: transparent;
}

/* 2. Add new text for the FIRST button */
.lp_payment_step_next.firstStep::after {
    content: 'PROCEED TO PAY';
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

/* 3. Add new text for the SECOND button */
.lp_payment_step_next.secondStep::after {
    content: 'PAY NOW';
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

/* 4. Add new text for the THIRD button */
.lp_payment_step_next.thirdStep::after {
    content: 'Please Wait...';
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}