/*
 * Quote request checkout styling.
 *
 * Prices, quantities, subtotal, VAT and total are intentionally VISIBLE
 * on the quote request checkout so customers can review their request.
 * Only payment methods and the coupon form are hidden.
 */

/* Style the quote request note */
.quote-request-note {
    background-color: #f8f8f8;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #0073aa;
}

.quote-request-note p {
    margin: 0;
    font-style: italic;
}

/* Hide payment methods (a quote request needs no payment) */
body.quote-request .payment_methods,
body.quote-request .wc-block-checkout__payment-method {
    display: none !important;
}

/* Hide coupon form and related elements */
body.quote-request .woocommerce-form-coupon-toggle,
body.quote-request .checkout_coupon,
body.quote-request .woocommerce-checkout-review-order-table .coupon {
    display: none !important;
}

/* Uploaded logo preview shown in the order review */
.pb-logo-meta__img {
    display: block;
    max-width: 64px;
    max-height: 48px;
    margin-top: 4px;
    padding: 2px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
}
