﻿
/* 
    Hide the customer info - i.e. the shipping heading and all elements after it 
*/

h3.lc-CartPayment-ShippingHeading {
    display: none;
}

    h3.lc-CartPayment-ShippingHeading ~ * {
        display: none;
    }

/* 
    Re-style the payment button 
*/

.lc-cartpaymentinfo a[href*="paypal"] {
    border: none;
    background-color: #ffc000;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    padding: .5rem 1.5rem;
    margin-left: 20px;
    /* the following is needed for the text after the button (:after) */
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

    .lc-cartpaymentinfo a[href*="paypal"] img {
        display: none;
    }

    .lc-cartpaymentinfo a[href*="paypal"]:before {
        content: "Purchase";
    }

    .lc-cartpaymentinfo a[href*="paypal"]:after {
        content: "PayPal will process your order.\AYou can make payment with a credit card or PayPal account.";
        white-space: pre; /* needed for the \A to work */
        /* position below and make it appear outside the button */
        position: absolute;
        left: 0;
        top: 120%;
        pointer-events: none;
    }
