HEX
Server: LiteSpeed
System: Linux standart9.isimtescil.net 3.10.0-962.3.2.lve1.5.26.7.el7.x86_64 #1 SMP Wed Oct 2 07:53:12 EDT 2019 x86_64
User: karalev (5310)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/karalev/www/wp-content/plugins/woocustomizer/includes/customizer/styles.php
<?php

/**
 * Implements styles set in the theme customizer
 *
 * @package Customizer Library WooCommerce Designer
 */
if ( !function_exists( 'woocustomizer_customizer_library_build_styles' ) && class_exists( 'WooCustomizer_Library_Styles' ) ) {
    /**
     * Process user options to generate CSS needed to implement the choices.
     *
     * @since  1.0.0.
     *
     * @return void
     */
    function woocustomizer_customizer_library_build_styles() {
        // ----------------------------------------------------------------------------------------------- WCD Panel Settings
        // Remove All WooCommerce Breadcrumbs
        $setting = 'wcz-wc-remove-breadcrumbs';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_shop_title = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce .woocommerce-breadcrumb'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        if ( get_option( 'wcz-wc-notice-banner', woocustomizer_library_get_default( 'wcz-wc-notice-banner' ) ) && get_option( 'wcz-wc-notice-design', woocustomizer_library_get_default( 'wcz-wc-notice-design' ) ) ) {
            // Notice Color
            $setting = 'wcz-wc-notice-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_notice_clr = wcz_sanitize_hex_color( $mod );
                if ( 'wcz-notice-four' == get_option( 'wcz-wc-notice-style', woocustomizer_library_get_default( 'wcz-wc-notice-style' ) ) ) {
                    WooCustomizer_Library_Styles()->add( array(
                        'selectors'    => array('.wcz-banner-notice.wcz-notice-four'),
                        'declarations' => array(
                            'background-color' => $wcz_notice_clr,
                            'color'            => wcz_getContrastColor( $wcz_notice_clr ),
                        ),
                    ) );
                } else {
                    if ( 'wcz-notice-three' == get_option( 'wcz-wc-notice-style', woocustomizer_library_get_default( 'wcz-wc-notice-style' ) ) ) {
                        WooCustomizer_Library_Styles()->add( array(
                            'selectors'    => array('.wcz-banner-notice.wcz-notice-three'),
                            'declarations' => array(
                                'box-shadow' => '4px 0 0 ' . $wcz_notice_clr . ' inset',
                            ),
                        ) );
                    } else {
                        if ( 'wcz-notice-two' == get_option( 'wcz-wc-notice-style', woocustomizer_library_get_default( 'wcz-wc-notice-style' ) ) ) {
                            $wcz_notice_clr_rgb = woocustomizer_library_hex_to_rgb( $mod );
                            WooCustomizer_Library_Styles()->add( array(
                                'selectors'    => array('.wcz-banner-notice.wcz-notice-two'),
                                'declarations' => array(
                                    'background-color' => 'rgba(' . $wcz_notice_clr_rgb['r'] . ', ' . $wcz_notice_clr_rgb['g'] . ', ' . $wcz_notice_clr_rgb['b'] . ', 0.06)',
                                ),
                            ) );
                            WooCustomizer_Library_Styles()->add( array(
                                'selectors'    => array('.wcz-banner-notice.wcz-notice-two'),
                                'declarations' => array(
                                    'border' => '1px solid ' . $wcz_notice_clr,
                                ),
                            ) );
                        } else {
                            WooCustomizer_Library_Styles()->add( array(
                                'selectors'    => array('.wcz-banner-notice.wcz-notice-one h4'),
                                'declarations' => array(
                                    'color' => $wcz_notice_clr,
                                ),
                            ) );
                        }
                    }
                }
            }
            // Notice Title Size
            $setting = 'wcz-wc-notice-titlesize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_note_tsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-banner-notice h4'),
                    'declarations' => array(
                        'font-size' => $wcz_note_tsize . 'px',
                    ),
                ) );
            }
            // Notice Title Size
            $setting = 'wcz-wc-notice-textsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_note_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-banner-notice p'),
                    'declarations' => array(
                        'font-size' => $wcz_note_fsize . 'px',
                    ),
                ) );
            }
            // Notice Center
            $setting = 'wcz-wc-notice-center';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_note_tsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-banner-notice'),
                    'declarations' => array(
                        'text-align' => 'center',
                    ),
                ) );
            }
            // Notice Width
            $setting = 'wcz-wc-notice-width';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_note_width = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-banner-notice'),
                    'declarations' => array(
                        'max-width' => $wcz_note_width . '%',
                    ),
                ) );
            }
            // Notice Margin
            $setting = 'wcz-wc-notice-margin';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_note_margin = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-banner-notice'),
                    'declarations' => array(
                        'margin-bottom' => $wcz_note_margin . 'px',
                    ),
                ) );
            }
        }
        // ----------------------------------------------------------------------------------------------- WCD Panel Settings
        // ----------------------------------------------------------------------------------------------- WCD Shop Page Settings
        // Remove Shop Page Breadcrumbs
        $setting = 'wcz-shop-remove-breadcrumbs';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_shop_bc = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.post-type-archive-product .woocommerce-breadcrumb'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Shop Page Title
        $setting = 'wcz-shop-remove-title';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_shop_title = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.post-type-archive-product header.woocommerce-products-header .woocommerce-products-header__title'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Shop Page Sorting
        $setting = 'wcz-shop-remove-sorting';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_shop_sort = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce form.woocommerce-ordering'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Shop Page Results
        $setting = 'wcz-shop-remove-result';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_shop_result = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce p.woocommerce-result-count'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Shop Archive Breadcrumbs
        $setting = 'wcz-shop-archives-remove-breadcrumbs';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_arch_bc = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.tax-product_cat .woocommerce-breadcrumb,
				body.tax-product_tag .woocommerce-breadcrumb'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Shop Page Title
        $setting = 'wcz-shop-archives-remove-title';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_arch_title = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.tax-product_cat header.woocommerce-products-header,
				body.tax-product_tag header.woocommerce-products-header'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        if ( get_option( 'wcz-shop-new-badge', woocustomizer_library_get_default( 'wcz-shop-new-badge' ) ) ) {
            // "New" Badge Color
            $setting = 'wcz-shop-new-badge-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_badge_bgcolor = wcz_sanitize_hex_color( $mod );
                $wcz_badge_bgrgb = woocustomizer_library_hex_to_rgb( $wcz_badge_bgcolor );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('div.wcz-new-product-badge span'),
                    'declarations' => array(
                        'background-color' => $wcz_badge_bgcolor,
                        'color'            => wcz_getContrastColor( $wcz_badge_bgcolor ) . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-btns', woocustomizer_library_get_default( 'wcz-wc-edit-btns' ) ) ) {
            // Button - Font Size
            $setting = 'wcz-btn-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
                    body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'font-size' => $wcz_btn_fsize . 'px',
                    ),
                ) );
            }
            // Button - Font Weight
            $setting = 'wcz-btn-fweight';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_fweight = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
                    body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'font-weight' => '700',
                    ),
                ) );
            }
            // Button - Color
            $setting = 'wcz-btn-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_bgcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
					body.wcz-btns.wcz-woocommerce.single-product .woocommerce-Reviews form.comment-form input.submit,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'background-color' => $wcz_btn_bgcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_btn_bgcolor ) . ' !important',
                        'text-shadow'      => 'none',
                    ),
                ) );
            }
            // Button - Font Color
            $setting = 'wcz-btn-fontcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_fontcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
					body.wcz-btns.wcz-woocommerce.single-product .woocommerce-Reviews form.comment-form input.submit,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'color' => $wcz_btn_fontcolor . ' !important',
                    ),
                ) );
            }
            // Button - Hover Color
            $setting = 'wcz-btn-hovercolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_hovercolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button:hover,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button:hover,
					body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button:hover,
					body.wcz-btns.wcz-woocommerce.single-product .woocommerce-Reviews form.comment-form input.submit:hover,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_btn_hovercolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_btn_hovercolor ) . ' !important',
                    ),
                ) );
            }
            // Button - Font Hover Color
            $setting = 'wcz-btn-fonthovercolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_hovercolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button:hover,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button:hover,
					body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button:hover,
					body.wcz-btns.wcz-woocommerce.single-product .woocommerce-Reviews form.comment-form input.submit:hover,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button:hover'),
                    'declarations' => array(
                        'color' => $wcz_btn_hovercolor . ' !important',
                    ),
                ) );
            }
            // Button - Border Radius
            $setting = 'wcz-btn-br';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_br = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
                    body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'border-radius' => $wcz_btn_br . 'px !important',
                    ),
                ) );
            }
            // Button - Padding
            $setting = 'wcz-btn-padding';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_btn_pad = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-btns.wcz-woocommerce ul.products li.product a.button,
					body.wcz-btns.wcz-woocommerce .related.products ul.products li.product a.button,
                    body.wcz-btns.wcz-woocommerce.single-product div.product form.cart .button,
                    body.wcz-btns.wcz-woocommerce.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .add_to_cart_button'),
                    'declarations' => array(
                        'padding' => $wcz_btn_pad . 'px ' . $wcz_btn_pad * 2 . 'px ' . ($wcz_btn_pad + 1) . 'px !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-prodbtn-color', woocustomizer_library_get_default( 'wcz-wc-edit-prodbtn-color' ) ) ) {
            // Button - Color
            $setting = 'wcz-prodbtn-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_prodbtn_bgcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single.single-product.wcz-woocommerce .summary form.cart button.single_add_to_cart_button,
					body.single-product .wcz-sticky-addtocart a.wcz-sticky-addtocart-button'),
                    'declarations' => array(
                        'background-color' => $wcz_prodbtn_bgcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_prodbtn_bgcolor ) . ' !important',
                        'text-shadow'      => 'none',
                    ),
                ) );
            }
            // Button - Font Color
            $setting = 'wcz-prodbtn-fontcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_prodbtn_fontcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single.single-product.wcz-woocommerce .summary form.cart button.single_add_to_cart_button,
					body.single-product .wcz-sticky-addtocart a.wcz-sticky-addtocart-button'),
                    'declarations' => array(
                        'color' => $wcz_prodbtn_fontcolor . ' !important',
                    ),
                ) );
            }
            // Button - Hover Color
            $setting = 'wcz-prodbtn-hovercolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_prodbtn_hovercolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single.single-product.wcz-woocommerce .summary form.cart button.single_add_to_cart_button:hover,
					body.single-product .wcz-sticky-addtocart a.wcz-sticky-addtocart-button:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_prodbtn_hovercolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_prodbtn_hovercolor ) . ' !important',
                    ),
                ) );
            }
            // Button - Font Hover Color
            $setting = 'wcz-prodbtn-fonthovercolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_prodbtn_fhovercolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single.single-product.wcz-woocommerce .summary form.cart button.single_add_to_cart_button:hover,
					body.single-product .wcz-sticky-addtocart a.wcz-sticky-addtocart-button:hover'),
                    'declarations' => array(
                        'color' => $wcz_prodbtn_fhovercolor . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-sale', woocustomizer_library_get_default( 'wcz-wc-edit-sale' ) ) ) {
            // Sale Banner - Font Size
            $setting = 'wcz-sale-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_sale_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-edit-sale.woocommerce ul.products li.product span.onsale,
					body.wcz-edit-sale.single-product span.onsale,
                    body.wcz-edit-sale .wcz-popup span.onsale,
                    body.wcz-edit-sale.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-onsale'),
                    'declarations' => array(
                        'font-size' => $wcz_sale_fsize . 'px !important',
                    ),
                ) );
            }
            // Sale Banner - Font Weight
            $setting = 'wcz-sale-fweight';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_sale_fweight = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-edit-sale.woocommerce ul.products li.product span.onsale,
					body.wcz-edit-sale.single-product span.onsale,
                    body.wcz-edit-sale .wcz-popup span.onsale,
                    body.wcz-edit-sale.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-onsale'),
                    'declarations' => array(
                        'font-weight' => '700 !important',
                    ),
                ) );
            }
            // Sale Banner - Color
            $setting = 'wcz-sale-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_sale_bgcolor = wcz_sanitize_hex_color( $mod );
                $wcz_sale_bgrgb = woocustomizer_library_hex_to_rgb( $wcz_sale_bgcolor );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-edit-sale.woocommerce ul.products li.product span.onsale,
					body.wcz-edit-sale.single-product span.onsale,
					.woocommerce span.wcz-ajaxsearch-result-sale,
                    body.wcz-edit-sale .wcz-popup span.onsale,
                    body.wcz-edit-sale.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-onsale'),
                    'declarations' => array(
                        'background-color' => $wcz_sale_bgcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_sale_bgcolor ) . ' !important',
                        'text-shadow'      => 'none !important',
                    ),
                ) );
            }
            // Sale Banner - Border Radius
            $setting = 'wcz-sale-br';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_sale_br = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-edit-sale.woocommerce ul.products li.product span.onsale,
					body.wcz-edit-sale.single-product span.onsale,
                    body.wcz-edit-sale .wcz-popup span.onsale,
                    body.wcz-edit-sale.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-onsale'),
                    'declarations' => array(
                        'border-radius' => $wcz_sale_br . 'px !important',
                    ),
                ) );
            }
            // Sale Banner - Padding
            $setting = 'wcz-sale-padding';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_sale_pad = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-edit-sale.woocommerce ul.products li.product span.onsale,
					body.wcz-edit-sale.single-product span.onsale,
                    body.wcz-edit-sale .wcz-popup span.onsale,
                    body.wcz-edit-sale.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-onsale'),
                    'declarations' => array(
                        'padding' => $wcz_sale_pad . 'px ' . $wcz_sale_pad * 2 . 'px ' . ($wcz_sale_pad + 1) . 'px !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-shop-title', woocustomizer_library_get_default( 'wcz-wc-edit-shop-title' ) ) ) {
            // Product Title - Font Size
            $setting = 'wcz-shop-title-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_shop_prodtitlefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce.wcz-woocommerce ul.products li.product .woocommerce-loop-product__title,
					body.wcz-woocommerce .products .product .woocommerce-loop-product__title,
                    body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title'),
                    'declarations' => array(
                        'font-size' => $wcz_shop_prodtitlefs . 'px !important',
                    ),
                ) );
            }
            // Product Title - Color
            $setting = 'wcz-shop-title-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_shop_prodtitlefc = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce.wcz-woocommerce ul.products li.product .woocommerce-loop-product__title,
					body.wcz-woocommerce .products .product .woocommerce-loop-product__title,
                    body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title a'),
                    'declarations' => array(
                        'color' => $wcz_shop_prodtitlefc . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-shop-price', woocustomizer_library_get_default( 'wcz-wc-edit-shop-price' ) ) ) {
            // Product Price - Font Size
            $setting = 'wcz-shop-price-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_shop_prodpricefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce.wcz-woocommerce ul.products li.product .price,
					body.wcz-woocommerce .products .product .price,
                    body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price'),
                    'declarations' => array(
                        'font-size' => $wcz_shop_prodpricefs . 'px !important',
                    ),
                ) );
            }
            // Product Price - Color
            $setting = 'wcz-shop-price-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_shop_prodpricefc = wcz_sanitize_hex_color( $mod );
                $wcz_shop_prodpricefc_rgb = woocustomizer_library_hex_to_rgb( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce.wcz-woocommerce ul.products li.product .price,
					body.wcz-woocommerce .products .product .price,
                    body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price__value,
                    body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price ins'),
                    'declarations' => array(
                        'color' => $wcz_shop_prodpricefc . ' !important',
                    ),
                ) );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.wcz-wooblocks ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price del'),
                    'declarations' => array(
                        'color' => 'rgba(' . $wcz_shop_prodpricefc_rgb['r'] . ', ' . $wcz_shop_prodpricefc_rgb['g'] . ', ' . $wcz_shop_prodpricefc_rgb['b'] . ', 0.45)',
                    ),
                ) );
            }
        }
        // ----------------------------------------------------------------------------------------------- WCD Shop Page Settings
        // ----------------------------------------------------------------------------------------------- WooCommerce Product Page Settings
        // Remove Product Breadcrumbs
        $setting = 'wcz-remove-product-breadcrumbs';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_prod_bc = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product .woocommerce-breadcrumb'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Product SKU, Cats & Tags
        $setting = 'wcz-remove-product-sku';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_prod_sku = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product .product_meta .sku_wrapper'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        $setting = 'wcz-remove-product-cats';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_prod_cats = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product .product_meta .posted_in'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        $setting = 'wcz-remove-product-tags';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_prod_tags = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product .product_meta .tagged_as'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Product Recommendations
        $setting = 'wcz-wcproduct-recomm';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod == 'wcz-wcproduct-recomm-remove' ) {
            $wcz_prod_recom = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product section.upsells'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Product Related Products
        $setting = 'wcz-wcproduct-related';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod == 'wcz-wcproduct-related-remove' ) {
            $wcz_prod_rel = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('.single-product section.related.products'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        $setting = 'wcz-add-shop-button';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_prod_shop_btn = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.single-product a.wcz-continue'),
                'declarations' => array(
                    'margin-bottom' => '20px',
                ),
            ) );
        }
        if ( get_option( 'wcz-add-product-long-desc', woocustomizer_library_get_default( 'wcz-add-product-long-desc' ) ) ) {
            $setting = 'wcz-longdesc-top';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldts = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-long-desc'),
                    'declarations' => array(
                        'margin-top'  => $wcz_product_ldts . 'px',
                        'padding-top' => $wcz_product_ldts . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-longdesc-bottom';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldbs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-long-desc'),
                    'declarations' => array(
                        'margin-bottom'  => $wcz_product_ldbs . 'px',
                        'padding-bottom' => $wcz_product_ldbs . 'px',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-add-product-reviews', woocustomizer_library_get_default( 'wcz-add-product-reviews' ) ) ) {
            $setting = 'wcz-reviews-top';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldts = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-reviews'),
                    'declarations' => array(
                        'margin-top'  => $wcz_product_ldts . 'px',
                        'padding-top' => $wcz_product_ldts . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-reviews-bottom';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldbs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-reviews'),
                    'declarations' => array(
                        'margin-bottom'  => $wcz_product_ldbs . 'px',
                        'padding-bottom' => $wcz_product_ldbs . 'px',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-add-product-addinfo', woocustomizer_library_get_default( 'wcz-add-product-addinfo' ) ) ) {
            $setting = 'wcz-addinfo-top';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldts = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-addinfo'),
                    'declarations' => array(
                        'margin-top'  => $wcz_product_ldts . 'px',
                        'padding-top' => $wcz_product_ldts . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-addinfo-bottom';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_ldbs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.wcz-product-addinfo'),
                    'declarations' => array(
                        'margin-bottom'  => $wcz_product_ldbs . 'px',
                        'padding-bottom' => $wcz_product_ldbs . 'px',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-product-title', woocustomizer_library_get_default( 'wcz-wc-edit-product-title' ) ) ) {
            // Product Page Title - Font Size
            $setting = 'wcz-product-title-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodtitlefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single-product.wcz-woocommerce div.product .product_title'),
                    'declarations' => array(
                        'font-size' => $wcz_product_prodtitlefs . 'px !important',
                    ),
                ) );
            }
            // Product Page Title - Color
            $setting = 'wcz-product-title-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodtitlefc = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single-product.wcz-woocommerce div.product .product_title'),
                    'declarations' => array(
                        'color' => $wcz_product_prodtitlefc . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-product-price', woocustomizer_library_get_default( 'wcz-wc-edit-product-price' ) ) ) {
            // Product Page Price - Font Size
            $setting = 'wcz-product-price-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodpricefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single-product.wcz-woocommerce div.product p.price'),
                    'declarations' => array(
                        'font-size' => $wcz_product_prodpricefs . 'px !important',
                    ),
                ) );
            }
            // Product Page Price - Color
            $setting = 'wcz-product-price-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodpricefc = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.single-product.wcz-woocommerce div.product p.price,
					body.single-product.wcz-woocommerce div.product .woocommerce-variation-price span.price'),
                    'declarations' => array(
                        'color' => $wcz_product_prodpricefc . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-wc-edit-contshop-btn', woocustomizer_library_get_default( 'wcz-wc-edit-contshop-btn' ) ) ) {
            // Continue Shopping
            $setting = 'wcz-contshop-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_contshop_bgcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('a.button.wcz-continue'),
                    'declarations' => array(
                        'background-color' => $wcz_contshop_bgcolor,
                        'color'            => wcz_getContrastColor( $wcz_contshop_bgcolor ),
                    ),
                ) );
            }
            $setting = 'wcz-contshop-hovercolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_contshop_bgcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('a.button.wcz-continue:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_contshop_bgcolor,
                        'color'            => wcz_getContrastColor( $wcz_contshop_bgcolor ),
                    ),
                ) );
            }
            $setting = 'wcz-contshop-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodpricefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('a.button.wcz-continue'),
                    'declarations' => array(
                        'font-size' => $wcz_product_prodpricefs . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-contshop-pad';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_product_prodpricefs = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('a.button.wcz-continue'),
                    'declarations' => array(
                        'padding' => $wcz_product_prodpricefs . 'px ' . $wcz_product_prodpricefs * 2 . 'px',
                    ),
                ) );
            }
        }
        // Remove Account Dashboard default text
        $setting = 'wcz-accdash-remdefault';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) && is_account_page() && 'default' !== get_option( 'wcz-account-dashboard-content', woocustomizer_library_get_default( 'wcz-account-dashboard-content' ) ) ) {
            $wcz_shop_result = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-account .woocommerce-MyAccount-content > p'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // EXCLUDED FROM FREE VERSION -- This "if" above block will be auto removed from the Free version.
        // ----------------------------------------------------------------------------------------------- WooCommerce Product Page Settings
        // ----------------------------------------------------------------------------------------------- WooCommerce Account Settings
        // ----------------------------------------------------------------------------------------------- WooCommerce Account Settings
        // ----------------------------------------------------------------------------------------------- WooCommerce Cart Settings
        // Remove Update Button from Cart Page
        $setting = 'wcz-cart-ajax-update';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( WooCustomizer::wcz_is_plugin_active( 'woocommerce.php' ) ) {
            if ( is_cart() && $mod !== woocustomizer_library_get_default( $setting ) ) {
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.woocommerce button[name="update_cart"],
					.woocommerce input[name="update_cart"]'),
                    'declarations' => array(
                        'display' => 'none !important',
                    ),
                ) );
            }
        }
        // Remove Cross Sells heading
        $setting = 'wcz-wccart-recomm';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod == 'wcz-wccart-recomm-remove' ) {
            $wcz_cart_recom = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart .cross-sells h2'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Remove Cart Totals heading
        $setting = 'wcz-wccart-totals';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod == 'wcz-wccart-totals-remove' ) {
            $wcz_cart_recom = esc_attr( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart .cart_totals h2'),
                'declarations' => array(
                    'display' => 'none !important',
                ),
            ) );
        }
        // Cart - Back To Shop Button
        $setting = 'wcz-cart-bts-color';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_cartbts_color = wcz_sanitize_hex_color( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart a.button.wcz-bts-btn'),
                'declarations' => array(
                    'background-color' => $wcz_cartbts_color . ' !important',
                    'color'            => wcz_getContrastColor( $wcz_cartbts_color ) . ' !important',
                ),
            ) );
        }
        $setting = 'wcz-cart-bts-fcolor';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_cartbts_fcolor = wcz_sanitize_hex_color( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart a.button.wcz-bts-btn'),
                'declarations' => array(
                    'color' => $wcz_cartbts_fcolor . ' !important',
                ),
            ) );
        }
        $setting = 'wcz-cart-bts-hcolor';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_cartbts_hcolor = wcz_sanitize_hex_color( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart a.button.wcz-bts-btn:hover'),
                'declarations' => array(
                    'background-color' => $wcz_cartbts_hcolor . ' !important',
                    'color'            => wcz_getContrastColor( $wcz_cartbts_hcolor ) . ' !important',
                ),
            ) );
        }
        $setting = 'wcz-cart-bts-hfcolor';
        $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
        if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
            $wcz_cartbts_hfcolor = wcz_sanitize_hex_color( $mod );
            WooCustomizer_Library_Styles()->add( array(
                'selectors'    => array('body.woocommerce-cart a.button.wcz-bts-btn:hover'),
                'declarations' => array(
                    'color' => $wcz_cartbts_hfcolor . ' !important',
                ),
            ) );
        }
        if ( get_option( 'wcz-cart-return-btn', woocustomizer_library_get_default( 'wcz-cart-return-btn' ) ) ) {
            $setting = 'wcz-cart-return-btn-align';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop'),
                    'declarations' => array(
                        'text-align' => 'center',
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button'),
                    'declarations' => array(
                        'font-size' => $wcz_cart_rts_btn_fsize . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_color = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_color,
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_color ),
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_fcolor,
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-hcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_hcolor,
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_hcolor ),
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-hfcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hfcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button:hover'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_hfcolor,
                    ),
                ) );
            }
            $setting = 'wcz-cart-return-btn-pad';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_pad = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart p.return-to-shop a.button'),
                    'declarations' => array(
                        'padding' => $wcz_cart_rts_btn_pad . 'px ' . $wcz_cart_rts_btn_pad * 2 . 'px',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-cart-table-btn', woocustomizer_library_get_default( 'wcz-cart-table-btn' ) ) ) {
            $setting = 'wcz-cart-table-btn-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_table_btn_color = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .woocommerce-cart-form .coupon button.button,
					body.woocommerce-cart .woocommerce-cart-form .actions button.button'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_table_btn_color . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_table_btn_color ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-table-btn-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_table_btn_fcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .woocommerce-cart-form .coupon button.button,
					body.woocommerce-cart .woocommerce-cart-form .actions button.button'),
                    'declarations' => array(
                        'color' => $wcz_cart_table_btn_fcolor . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-table-btn-hcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_table_btn_hcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .woocommerce-cart-form .coupon button.button:hover,
					body.woocommerce-cart .woocommerce-cart-form .actions button.button:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_table_btn_hcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_table_btn_hcolor ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-table-btn-hfcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_table_btn_hfcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .woocommerce-cart-form .coupon button.button:hover,
					body.woocommerce-cart .woocommerce-cart-form .actions button.button:hover'),
                    'declarations' => array(
                        'color' => $wcz_cart_table_btn_hfcolor . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-cart-proceed-btn', woocustomizer_library_get_default( 'wcz-cart-proceed-btn' ) ) ) {
            $setting = 'wcz-cart-proceed-btn-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button'),
                    'declarations' => array(
                        'font-size' => $wcz_cart_rts_btn_fsize . 'px !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-proceed-btn-pad';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_pad = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button'),
                    'declarations' => array(
                        'padding' => $wcz_cart_rts_btn_pad . 'px ' . $wcz_cart_rts_btn_pad * 2 . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-cart-proceed-btn-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_color = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_color . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_color ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-proceed-btn-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_fcolor . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-proceed-btn-hcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_hcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_hcolor ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-cart-proceed-btn-hfcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hfcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button:hover'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_hfcolor . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-cart-show-discamount', woocustomizer_library_get_default( 'wcz-cart-show-discamount' ) ) ) {
            $setting = 'wcz-cart-discamount-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cartys = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('tr.wcz-discamount'),
                    'declarations' => array(
                        'background-color' => $wcz_cartys,
                        'color'            => wcz_getContrastColor( $wcz_cartys ),
                    ),
                ) );
            }
            $setting = 'wcz-cart-discamount-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cartysc = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('tr.wcz-discamount'),
                    'declarations' => array(
                        'color' => $wcz_cartysc,
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-checkout-placeorder-btn', woocustomizer_library_get_default( 'wcz-checkout-placeorder-btn' ) ) ) {
            $setting = 'wcz-checkout-placeorder-btn-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order'),
                    'declarations' => array(
                        'font-size' => $wcz_cart_rts_btn_fsize . 'px !important',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-placeorder-btn-pad';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_pad = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order'),
                    'declarations' => array(
                        'padding' => $wcz_cart_rts_btn_pad . 'px ' . $wcz_cart_rts_btn_pad * 2 . 'px',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-placeorder-btn-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_color = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_color . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_color ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-placeorder-btn-fcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_fcolor . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-placeorder-btn-hcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order:hover'),
                    'declarations' => array(
                        'background-color' => $wcz_cart_rts_btn_hcolor . ' !important',
                        'color'            => wcz_getContrastColor( $wcz_cart_rts_btn_hcolor ) . ' !important',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-placeorder-btn-hfcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_hfcolor = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('body.woocommerce-checkout #payment button#place_order:hover'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_hfcolor . ' !important',
                    ),
                ) );
            }
        }
        // Checkout Headings
        if ( get_option( 'wcz-checkout-edit-headings', woocustomizer_library_get_default( 'wcz-checkout-edit-headings' ) ) ) {
            $setting = 'wcz-checkout-sechead-fsize';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_fsize = esc_attr( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.woocommerce-page.woocommerce-checkout #customer_details h3,
					.woocommerce.woocommerce-checkout #customer_details h3,
					.woocommerce-page.woocommerce-checkout form #order_review_heading,
					.woocommerce.woocommerce-checkout form #order_review_heading'),
                    'declarations' => array(
                        'font-size' => $wcz_cart_rts_btn_fsize . 'px !important',
                    ),
                ) );
            }
            $setting = 'wcz-checkout-sechead-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_cart_rts_btn_color = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('.woocommerce-page.woocommerce-checkout #customer_details h3,
					.woocommerce.woocommerce-checkout #customer_details h3,
					.woocommerce-page.woocommerce-checkout form #order_review_heading,
					.woocommerce.woocommerce-checkout form #order_review_heading'),
                    'declarations' => array(
                        'color' => $wcz_cart_rts_btn_color . ' !important',
                    ),
                ) );
            }
        }
        if ( get_option( 'wcz-checkout-show-discamount', woocustomizer_library_get_default( 'wcz-checkout-show-discamount' ) ) ) {
            $setting = 'wcz-checkout-discamount-bgcolor';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_checkoutys = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('tr.wcz-discamount'),
                    'declarations' => array(
                        'background-color' => $wcz_checkoutys,
                        'color'            => wcz_getContrastColor( $wcz_checkoutys ),
                    ),
                ) );
            }
            $setting = 'wcz-checkout-discamount-color';
            $mod = get_option( $setting, woocustomizer_library_get_default( $setting ) );
            if ( $mod !== woocustomizer_library_get_default( $setting ) ) {
                $wcz_checkoutysc = wcz_sanitize_hex_color( $mod );
                WooCustomizer_Library_Styles()->add( array(
                    'selectors'    => array('tr.wcz-discamount'),
                    'declarations' => array(
                        'color' => $wcz_checkoutysc,
                    ),
                ) );
            }
        }
        // EXCLUDED FROM FREE VERSION -- This "if" above block will be auto removed from the Free version.
    }

}
add_action( 'customizer_library_styles', 'woocustomizer_customizer_library_build_styles' );
if ( !function_exists( 'woocustomizer_customizer_library_styles' ) ) {
    /**
     * Generates the style tag and CSS needed for the theme options.
     *
     * By using the "WooCustomizer_Library_Styles" filter, different components can print CSS in the header.
     * It is organized this way to ensure there is only one "style" tag.
     *
     * @since  1.0.0.
     *
     * @return void
     */
    function woocustomizer_customizer_library_styles() {
        do_action( 'customizer_library_styles' );
        // Echo the rules
        $css = WooCustomizer_Library_Styles()->build();
        if ( !empty( $css ) ) {
            wp_register_style( 'wcz-customizer-custom-css', false );
            wp_enqueue_style( 'wcz-customizer-custom-css' );
            wp_add_inline_style( 'wcz-customizer-custom-css', $css );
        }
    }

}
add_action( 'wp_enqueue_scripts', 'woocustomizer_customizer_library_styles', 11 );
function wcz_getContrastColor(  $hexColor  ) {
    // hexColor RGB
    $R1 = hexdec( substr( $hexColor, 1, 2 ) );
    $G1 = hexdec( substr( $hexColor, 3, 2 ) );
    $B1 = hexdec( substr( $hexColor, 5, 2 ) );
    // Black RGB
    $blackColor = "#000000";
    $R2BlackColor = hexdec( substr( $blackColor, 1, 2 ) );
    $G2BlackColor = hexdec( substr( $blackColor, 3, 2 ) );
    $B2BlackColor = hexdec( substr( $blackColor, 5, 2 ) );
    // Calc contrast ratio
    $L1 = 0.2126 * pow( $R1 / 255, 2.2 ) + 0.7151999999999999 * pow( $G1 / 255, 2.2 ) + 0.0722 * pow( $B1 / 255, 2.2 );
    $L2 = 0.2126 * pow( $R2BlackColor / 255, 2.2 ) + 0.7151999999999999 * pow( $G2BlackColor / 255, 2.2 ) + 0.0722 * pow( $B2BlackColor / 255, 2.2 );
    $contrastRatio = 0;
    if ( $L1 > $L2 ) {
        $contrastRatio = (int) (($L1 + 0.05) / ($L2 + 0.05));
    } else {
        $contrastRatio = (int) (($L2 + 0.05) / ($L1 + 0.05));
    }
    // If contrast is more than 5, return black color
    if ( $contrastRatio > 5 ) {
        return '#000000';
    } else {
        // if not, return white color.
        return '#FFFFFF';
    }
}