/**
 * WooCommerce Payment Rules - Checkout Styles
 *
 * @package WCPaymentRules
 */

/* Service fee line in cart/checkout */
.wcpr-service-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.wcpr-service-fee .fee-name {
    font-weight: 500;
}

/* Hidden gateway data element */
.wc-pr-selected-gateway {
    display: none !important;
}

/* Discount display line - shown when discount is being removed */
.woocommerce-checkout-review-order-table .fee.wcpr-fee-discount,
.woocommerce-cart .fee.wcpr-fee-discount {
    color: #cc0000;
}

.woocommerce-checkout-review-order-table .fee.wcpr-fee-discount td,
.woocommerce-cart .fee.wcpr-fee-discount td {
    color: #cc0000;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .fee.wcpr-fee-discount td:last-child,
.woocommerce-cart .fee.wcpr-fee-discount td:last-child {
    color: #cc0000;
}

/* Service fee line styling */
.woocommerce-checkout-review-order-table .fee.wcpr-fee-service,
.woocommerce-cart .fee.wcpr-fee-service {
    color: #333;
}

.woocommerce-checkout-review-order-table .fee.wcpr-fee-service td,
.woocommerce-cart .fee.wcpr-fee-service td {
    font-weight: 600;
}
