/*
 * Stylesheet for Pro Member Pricing.
 *
 * Defines the appearance of the Pro badge appended to product prices on
 * single product pages. The colour palette is intentionally subdued to
 * complement most themes while drawing enough attention to inform the user
 * that special pricing is active. Feel free to override these styles in
 * your theme if you wish to customise the badge further.
 */

.wc-pro-badge {
    background-color: #ffda44;
    color: #000;
    border-radius: 2px;
    padding: 5px 10px;
    font-size: 0.75em;
    margin-left: 4px;
    vertical-align: middle;
}


/* When the public sale price is lower than the pro price */
.wc-pro-badge.wc-badge-sale { background-color: #317397; color: #ffffff; }

.wc-pro-badge.is-struck {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: .65;
}