/* Basic styles for modal popup */
#stripeModal {
    display: none;
    position: fixed;
    /* fixed keeps it in view even on scroll */
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1100;
    width: 80%;
    /* adjust width as needed */
    max-height: 98vh;
    /* limit modal height to 90% of viewport height */
    overflow-y: auto;
    /* enable vertical scrolling if content exceeds max-height */
}

#modalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.stripe_payment_signle {
    cursor: pointer;
    width: 238px;
    margin-left: 34px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    height: 41px;
}


.stripe_paybtn_mr {
    cursor: pointer;
    width: 238px;
    margin-left: 1px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    height: 40px;
}

.stripe_paybtn_vr {
    cursor: pointer;
    width: 238px;
    margin-left: 1px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    height: 40px;
}