Plugin Directory

Changeset 3203981


Ignore:
Timestamp:
12/07/2024 08:58:30 AM (16 months ago)
Author:
addonify
Message:

Update to version 1.2.11 from GitHub

Location:
addonify-floating-cart
Files:
4 deleted
56 edited
1 copied

Legend:

Unmodified
Added
Removed
  • addonify-floating-cart/tags/1.2.11/README.txt

    r3150428 r3203981  
    55Requires at least: 6.0.0
    66Requires PHP: 7.4
    7 Tested up to: 6.6.1
    8 Stable tag: 1.2.10
     7Tested up to: 6.7.1
     8Stable tag: 1.2.11
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
     12Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page.
    1313
    1414== Description ==
    1515
    16 Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
     16(Addonify Floating Cart)[https://addonify.com/product/addonify-floating-cart-for-woocommerce/] is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
    1717
    1818Addonify Floating Cart is packed with lots of features and functionalities. The necessary cart actions such as adding product into the cart, removing product from the cart with undo functionality, updating cart quantities, applying coupon discounts etc. The sidebar shopping cart can be toggled on floating cart button click, or Add to Cart button click, or toast notification button click, or View Cart button click.
     
    133133== Changelog ==
    134134
    135 = 1.2.10 - 12 September, 2024 =
     135= 1.2.11 - 07 December, 2024 =
     136
     137- Fixed:   Issue of shipping cost not displaying tax when `Including tax` is selected for `Display prices during cart and checkout` option.
     138- Removed: Unwanted files and codes.
     139- Updated: Shipping method and address update modal is closed after shipping method is updated.
     140- Updated: Plugin's short description. [315](https://github.com/addonify/addonify-floating-cart/issues/315)
     141- Updated: UDP agent to v1.0.2.
     142- Tested:  Up to WordPress version 6.7.1 and WooCommerce version 9.4.2.
     143
     144= 1.2.10 - 10 September, 2024 =
    136145
    137146- Added: Option to automatically hide screen when coupon is applied.
     
    139148- Fixed: Nonce validation error.
    140149- Fixed: Shipping cost when shipping method is not selected.
    141 - Tested: Up to tto WordPress version 6.6.1
     150- Tested: Up to WordPress version 6.6.1
    142151- Tested: Up to WooCommerce version 9.2.3.
    143152
  • addonify-floating-cart/tags/1.2.11/addonify-floating-cart.php

    r3150428 r3203981  
    1010 * Plugin Name:       Addonify Floating Cart For WooCommerce
    1111 * Plugin URI:        https://addonify.com/addonify-floating-cart
    12  * Description:       Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
    13  * Version:           1.2.10
     12 * Description:       Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page.
     13 * Version:           1.2.11
    1414 * Requires at least: 6.0.0
    1515 * Requires PHP:      7.4
    16  * Tested up to:      6.6.1
     16 * Tested up to:      6.7.1
    1717 * Author:            Addonify
    1818 * Author URI:        https://addonify.com/
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.10' );
     36define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.11' );
    3737define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) );
    3838define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) );
    3939define( 'ADDONIFY_FLOATING_CART_DB_INITIALS', 'addonify_fc_' );
    40 
    41 /**
    42  * The code that runs during plugin activation.
    43  * This action is documented in includes/class-addonify-floating-cart-activator.php
    44  */
    45 function activate_addonify_floating_cart() {
    46     require_once plugin_dir_path( __FILE__ ) . 'includes/class-addonify-floating-cart-activator.php';
    47     Addonify_Floating_Cart_Activator::activate();
    48 }
    49 
    50 /**
    51  * The code that runs during plugin deactivation.
    52  * This action is documented in includes/class-addonify-floating-cart-deactivator.php
    53  */
    54 function deactivate_addonify_floating_cart() {
    55     require_once plugin_dir_path( __FILE__ ) . 'includes/class-addonify-floating-cart-deactivator.php';
    56     Addonify_Floating_Cart_Deactivator::deactivate();
    57 }
    58 
    59 register_activation_hook( __FILE__, 'activate_addonify_floating_cart' );
    60 register_deactivation_hook( __FILE__, 'deactivate_addonify_floating_cart' );
    6140
    6241/**
  • addonify-floating-cart/tags/1.2.11/includes/class-addonify-floating-cart-i18n.php

    r2784334 r3203981  
    3939            dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
    4040        );
    41 
    4241    }
    4342}
  • addonify-floating-cart/tags/1.2.11/includes/class-addonify-floating-cart-loader.php

    r2784334 r3203981  
    5050        $this->actions = array();
    5151        $this->filters = array();
    52 
    5352    }
    5453
     
    108107
    109108        return $hooks;
    110 
    111109    }
    112110
     
    127125            add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
    128126        }
    129 
    130127    }
    131 
    132128}
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart-buttons.php

    r3017269 r3203981  
    6565    add_filter(
    6666        'addonify_floating_cart_settings_fields',
    67         function( $settings ) {
     67        function ( $settings ) {
    6868            return array_merge( $settings, addonify_floating_cart_buttons_general_settings() );
    6969        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart-display.php

    r3017269 r3203981  
    4848    add_filter(
    4949        'addonify_floating_cart_settings_fields',
    50         function( $settings ) {
     50        function ( $settings ) {
    5151            return array_merge( $settings, addonify_floating_cart_cart_display_settings() );
    5252        }
     
    213213    add_filter(
    214214        'addonify_floating_cart_settings_fields',
    215         function( $settings ) {
     215        function ( $settings ) {
    216216            return array_merge( $settings, addonify_floating_cart_cart_display_designs() );
    217217        }
     
    374374    add_filter(
    375375        'addonify_floating_cart_settings_fields',
    376         function( $settings ) {
     376        function ( $settings ) {
    377377            return array_merge( $settings, addonify_floating_cart_cart_buttons_display_designs() );
    378378        }
     
    445445    add_filter(
    446446        'addonify_floating_cart_settings_fields',
    447         function( $settings ) {
     447        function ( $settings ) {
    448448            return array_merge( $settings, addonify_floating_cart_cart_misc_display_designs() );
    449449        }
     
    538538    add_filter(
    539539        'addonify_floating_cart_settings_fields',
    540         function( $settings ) {
     540        function ( $settings ) {
    541541            return array_merge( $settings, addonify_floating_cart_cart_products_display_designs() );
    542542        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart-header.php

    r3017269 r3203981  
    6666    add_filter(
    6767        'addonify_floating_cart_settings_fields',
    68         function( $settings ) {
     68        function ( $settings ) {
    6969            return array_merge( $settings, addonify_floating_cart_header_general_settings() );
    7070        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart-items.php

    r3017269 r3203981  
    5757    add_filter(
    5858        'addonify_floating_cart_settings_fields',
    59         function( $settings ) {
     59        function ( $settings ) {
    6060            return array_merge( $settings, addonify_floating_cart_items_general_settings() );
    6161        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart-subtotals.php

    r3017269 r3203981  
    6363    add_filter(
    6464        'addonify_floating_cart_settings_fields',
    65         function( $settings ) {
     65        function ( $settings ) {
    6666            return array_merge( $settings, addonify_floating_cart_subtotals_general_settings() );
    6767        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/cart.php

    r3017269 r3203981  
    4848            // @since 1.2.4
    4949            'enable_cart_labels_from_plugin'           => array(
    50                 'label'     => esc_html__( 'Display labels from plugin', 'addonify-floating-cart' ),
    51                 'type'      => 'switch',
    52                 'description' => esc_html__( 'Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings.' ),
    53                 'dependent' => array( 'enable_floating_cart' ),
    54                 'value'     => addonify_floating_cart_get_option( 'enable_cart_labels_from_plugin' ),
     50                'label'       => esc_html__( 'Display labels from plugin', 'addonify-floating-cart' ),
     51                'type'        => 'switch',
     52                'description' => esc_html__( 'Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings.', 'addonify-floating-cart' ),
     53                'dependent'   => array( 'enable_floating_cart' ),
     54                'value'       => addonify_floating_cart_get_option( 'enable_cart_labels_from_plugin' ),
    5555            ),
    5656        );
     
    5959    add_filter(
    6060        'addonify_floating_cart_settings_fields',
    61         function( $settings ) {
     61        function ( $settings ) {
    6262            return array_merge( $settings, addonify_floating_cart_cart_options_settings() );
    6363        }
     
    8787    add_filter(
    8888        'addonify_floating_cart_settings_fields',
    89         function( $settings ) {
     89        function ( $settings ) {
    9090            return array_merge( $settings, addonify_floating_cart_cart_styles_settings_fields() );
    9191        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/coupon-modal.php

    r3150428 r3203981  
    2121        return array(
    2222            // @since 1.2.4
    23             'coupon_form_toggler_text'       => array(
     23            'coupon_form_toggler_text'        => array(
    2424                'label'     => esc_html__( 'Coupon form toggle link label', 'addonify-floating-cart' ),
    2525                'type'      => 'text',
     
    2828            ),
    2929            // @since 1.2.6
    30             'coupon_field_label'             => array(
     30            'coupon_field_label'              => array(
    3131                'label'     => esc_html__( 'Coupon field label', 'addonify-floating-cart' ),
    3232                'type'      => 'text',
     
    3535            ),
    3636            // @since 1.2.4
    37             'coupon_field_placeholder'       => array(
     37            'coupon_field_placeholder'        => array(
    3838                'label'     => esc_html__( 'Coupon field placeholder', 'addonify-floating-cart' ),
    3939                'type'      => 'text',
     
    4141                'value'     => addonify_floating_cart_get_option( 'coupon_field_placeholder' ),
    4242            ),
    43             'cart_apply_coupon_button_label' => array(
     43            'cart_apply_coupon_button_label'  => array(
    4444                'label'       => esc_html__( 'Coupon apply button label', 'addonify-floating-cart' ),
    4545                'type'        => 'text',
     
    4848                'value'       => addonify_floating_cart_get_option( 'cart_apply_coupon_button_label' ),
    4949            ),
    50             'display_applied_coupons'        => array(
     50            'display_applied_coupons'         => array(
    5151                'label'       => esc_html__( 'Display applied coupons', 'addonify-floating-cart' ),
    5252                'description' => esc_html__( 'Enable this option to display all applied coupons.', 'addonify-floating-cart' ),
     
    5656            ),
    5757            // @since 1.2.4
    58             'applied_coupons_list_title'     => array(
     58            'applied_coupons_list_title'      => array(
    5959                'label'     => esc_html__( 'Applied coupons list title', 'addonify-floating-cart' ),
    6060                'type'      => 'text',
     
    6363            ),
    6464            // @since 1.2.6
    65             'coupon_removed_message'         => array(
     65            'coupon_removed_message'          => array(
    6666                'label'     => esc_html__( 'Coupon removal message', 'addonify-floating-cart' ),
    6767                'type'      => 'text',
     
    7070            ),
    7171            // @since 1.2.10
    72             'hide_screen_when_coupon_applied'         => array(
     72            'hide_screen_when_coupon_applied' => array(
    7373                'label'     => esc_html__( 'Automatically hide screen when coupon is applied', 'addonify-floating-cart' ),
    7474                'type'      => 'switch',
     
    8181    add_filter(
    8282        'addonify_floating_cart_settings_fields',
    83         function( $settings ) {
     83        function ( $settings ) {
    8484            return array_merge( $settings, addonify_floating_cart_coupon_modal_general_settings() );
    8585        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/custom-css.php

    r3017269 r3203981  
    3434    add_filter(
    3535        'addonify_floating_cart_settings_fields',
    36         function( $settings ) {
     36        function ( $settings ) {
    3737            return array_merge( $settings, addonify_floating_cart_custom_css_settings_fields() );
    3838        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/miscellaneous.php

    r3017269 r3203981  
    5353    add_filter(
    5454        'addonify_floating_cart_settings_fields',
    55         function( $settings ) {
     55        function ( $settings ) {
    5656            return array_merge( $settings, addonify_floating_cart_misc_settings() );
    5757        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/shipping.php

    r3150428 r3203981  
    115115    add_filter(
    116116        'addonify_floating_cart_settings_fields',
    117         function( $settings ) {
     117        function ( $settings ) {
    118118            return array_merge( $settings, addonify_floating_cart_shipping_general_settings() );
    119119        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/shopping-meter.php

    r3017269 r3203981  
    6767    add_filter(
    6868        'addonify_floating_cart_settings_fields',
    69         function( $settings ) {
     69        function ( $settings ) {
    7070            return array_merge( $settings, addonify_floating_cart_shopping_meter_general_settings() );
    7171        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/toast-notification.php

    r3017269 r3203981  
    9090    add_filter(
    9191        'addonify_floating_cart_settings_fields',
    92         function( $settings ) {
     92        function ( $settings ) {
    9393            return array_merge( $settings, addonify_floating_cart_toast_notification_settings() );
    9494        }
     
    188188    add_filter(
    189189        'addonify_floating_cart_settings_fields',
    190         function( $settings ) {
     190        function ( $settings ) {
    191191            return array_merge( $settings, addonify_floating_cart_toast_notification_designs() );
    192192        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/fields/toggle-button.php

    r3064287 r3203981  
    8888    add_filter(
    8989        'addonify_floating_cart_settings_fields',
    90         function( $settings ) {
     90        function ( $settings ) {
    9191            return array_merge( $settings, addonify_floating_cart_toggle_cart_button_settings() );
    9292        }
     
    250250    add_filter(
    251251        'addonify_floating_cart_settings_fields',
    252         function( $settings ) {
     252        function ( $settings ) {
    253253            return array_merge( $settings, addonify_floating_cart_toggle_cart_button_designs() );
    254254        }
  • addonify-floating-cart/tags/1.2.11/includes/functions/settings.php

    r3150428 r3203981  
    1313 * Load general setting fields for floating cart.
    1414 */
    15 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart.php';
     15require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart.php';
    1616/**
    1717 * Load general setting fields for cart header.
    1818 */
    19 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-header.php';
     19require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-header.php';
    2020/**
    2121 * Load general setting fields for cart items/products.
    2222 */
    23 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-items.php';
     23require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-items.php';
    2424/**
    2525 * Load general setting fields for cart subtotals.
    2626 */
    27 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-subtotals.php';
     27require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-subtotals.php';
    2828/**
    2929 * Load general setting fields for cart buttons.
    3030 */
    31 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-buttons.php';
     31require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-buttons.php';
    3232/**
    3333 * Load setting fields for coupon modal.
    3434 */
    35 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/coupon-modal.php';
     35require_once plugin_dir_path( __DIR__ ) . 'functions/fields/coupon-modal.php';
    3636/**
    3737 * Load setting fields for shipping modal.
    3838 */
    39 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/shipping.php';
     39require_once plugin_dir_path( __DIR__ ) . 'functions/fields/shipping.php';
    4040/**
    4141 * Load general setting fields for cart miscellaneous.
    4242 */
    43 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/miscellaneous.php';
     43require_once plugin_dir_path( __DIR__ ) . 'functions/fields/miscellaneous.php';
    4444/**
    4545 * Load setting fields for floating cart toggle button.
    4646 */
    47 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/toggle-button.php';
     47require_once plugin_dir_path( __DIR__ ) . 'functions/fields/toggle-button.php';
    4848/**
    4949 * Load setting fields for toast notification.
    5050 */
    51 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/toast-notification.php';
     51require_once plugin_dir_path( __DIR__ ) . 'functions/fields/toast-notification.php';
    5252/**
    5353 * Load setting fields for cart content.
    5454 */
    55 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-display.php';
     55require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-display.php';
    5656/**
    5757 * Load setting fields for shopping meter.
    5858 */
    59 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/shopping-meter.php';
     59require_once plugin_dir_path( __DIR__ ) . 'functions/fields/shopping-meter.php';
    6060/**
    6161 * Load setting fields for adding Custom CSS.
    6262 */
    63 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/custom-css.php';
     63require_once plugin_dir_path( __DIR__ ) . 'functions/fields/custom-css.php';
    6464
    6565/**
     
    201201            'cart_modal_buttons_font_size'                 => 14,
    202202            'cart_modal_buttons_font_weight'               => '400',
     203            'cart_modal_buttons_letter_spacing'            => 0.25,
     204            'cart_modal_buttons_text_transform'            => 'none',
     205            'cart_modal_buttons_border_radius'             => 3,
    203206            'cart_modal_primary_button_background_color'   => '',
    204207            'cart_modal_primary_button_label_color'        => '',
     
    223226            'cart_shopping_meter_threashold_reached_background_color' => '',
    224227
    225             'cart_modal_buttons_font_size'                 => 14,
    226             'cart_modal_buttons_font_weight'               => '400',
    227             'cart_modal_buttons_letter_spacing'            => 0.25,
    228             'cart_modal_buttons_text_transform'            => 'none',
    229             'cart_modal_buttons_border_radius'             => 3,
    230             'cart_modal_primary_button_label_color'        => '',
    231             'cart_modal_primary_button_background_color'   => '',
    232             'cart_modal_primary_button_border_color'       => '',
    233             'cart_modal_primary_button_on_hover_label_color' => '',
    234             'cart_modal_primary_button_on_hover_background_color' => '',
    235             'cart_modal_primary_button_on_hover_border_color' => '',
    236             'cart_modal_secondary_button_label_color'      => '',
    237             'cart_modal_secondary_button_background_color' => '',
    238             'cart_modal_secondary_button_border_color'     => '',
    239             'cart_modal_secondary_button_on_hover_label_color' => '',
    240             'cart_modal_secondary_button_on_hover_background_color' => '',
    241             'cart_modal_secondary_button_on_hover_border_color' => '',
    242 
    243228            // cart coupon options.
    244229            'display_applied_coupons'                      => true,
     
    249234            'applied_coupons_list_title'                   => $cart_strings['applied_coupons_list_title'], // @since 1.2.4
    250235            'coupon_removed_message'                       => $cart_strings['coupon_removed_message'], // @since 1.2.6
    251             'hide_screen_when_coupon_applied'                            => false, // @since 1.2.10
     236            'hide_screen_when_coupon_applied'              => false, // @since 1.2.10
    252237
    253238            'custom_css'                                   => '',
  • addonify-floating-cart/tags/1.2.11/includes/template-functions.php

    r3017269 r3203981  
    3434        // Set default plugin templates path.
    3535        if ( ! $default_path ) {
    36             $default_path = plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/'; // Path to the template folder.
     36            $default_path = plugin_dir_path( __DIR__ ) . 'public/partials/'; // Path to the template folder.
    3737        }
    3838
     
    264264     *
    265265     * @since 1.0.0
    266      * @param array $args  Arguments passed.
    267      */
    268     function addonify_floating_cart_get_sidebar_cart_shipping_bar_template( $args = array() ) {
     266     */
     267    function addonify_floating_cart_get_sidebar_cart_shipping_bar_template() {
    269268
    270269        $shopping_meter                   = (bool) addonify_floating_cart_get_option( 'enable_shopping_meter' );
  • addonify-floating-cart/tags/1.2.11/includes/udp/class-udp-agent.php

    r2881194 r3203981  
    190190        wp_safe_redirect( admin_url() );
    191191        exit;
    192 
    193192    }
    194193
     
    226225        $data['site_url']        = $site_scheme . $site_host . $site_port;
    227226        $data['site_user_email'] = get_bloginfo( 'admin_email' );
    228         $plugin_directory        = untrailingslashit( dirname( __FILE__, 3 ) );
     227        $plugin_directory        = untrailingslashit( dirname( __FILE__, 3 ) ); // phpcs:ignore
    229228        $dir_names               = explode( '/', $plugin_directory );
    230229        if ( strpos( $dir_names[ count( $dir_names ) - 1 ], '\\' ) ) {
     
    262261
    263262        $data['agent_data'] = serialize( $this->get_data() ); //phpcs:ignore
    264         $url                = untrailingslashit( $this->engine_url ) . '/wp-json/udp-engine/v1/handshake';
     263        $url                = untrailingslashit( $this->engine_url );
    265264
    266265        $this->do_curl( $url, $data );
     
    308307
    309308        $data_to_send['agent_data'] = serialize( $this->get_data() ); //phpcs:ignore
    310         $url                        = untrailingslashit( $this->engine_url ) . '/wp-json/udp-engine/v1/process-data';
     309        $url                        = untrailingslashit( $this->engine_url );
    311310        $this->do_curl( $url, $data_to_send );
    312311        exit;
  • addonify-floating-cart/tags/1.2.11/includes/udp/init.php

    r2881194 r3203981  
    1717// -------------------------------------------
    1818
    19 $engine_url     = 'https://udp.creamcode.org/';
    20 $this_agent_ver = '1.0.1';
     19$engine_url     = 'https://udp.creamcode.org/v1/sync';
     20$this_agent_ver = '1.0.2';
    2121
    2222// -------------------------------------------
     
    4646if ( $this_agent_is_latest && isset( $all_installed_agents[ basename( $root_dir ) ] ) ) {
    4747    if ( ! class_exists( 'Udp_Agent' ) ) {
    48         require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     48        require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    4949    }
    5050    new Udp_Agent( $this_agent_ver, $root_dir, $engine_url, $udp_admin_notice_displayed );
     
    116116                        add_action(
    117117                            'admin_notices',
    118                             function() use ( $content ) {
     118                            function () use ( $content ) {
    119119                                $class = 'is-dismissible  notice notice-warning';
    120120                                printf( '<div class="%1$s">%2$s</div>', esc_attr( $class ), wp_kses_post( $content ) );
     
    141141            // authorize this agent with engine.
    142142            if ( ! class_exists( 'Udp_Agent' ) ) {
    143                 require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     143                require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    144144            }
    145145            $agent = new Udp_Agent( $this_agent_ver, $root_dir, $engine_url );
     
    170170        // authorize this agent with engine.
    171171        if ( ! class_exists( 'Udp_Agent' ) ) {
    172             require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     172            require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    173173        }
    174174        $agent = new Udp_Agent( $this_agent_ver, $root_dir, $engine_url );
     
    184184add_action(
    185185    'after_switch_theme',
    186     function() use ( $root_dir ) {
     186    function () use ( $root_dir ) {
    187187        global $this_agent_ver;
    188188
     
    213213add_action(
    214214    'activate_plugin',
    215     function() use ( $root_dir ) {
     215    function () use ( $root_dir ) {
    216216        wp_schedule_single_event( time() + 10, 'cc_udp_agent_send_data', array( $root_dir ) );
    217217    }
     
    223223add_action(
    224224    'deactivate_plugin',
    225     function() use ( $root_dir ) {
     225    function () use ( $root_dir ) {
    226226        wp_schedule_single_event( time() + 10, 'cc_udp_agent_send_data', array( $root_dir ) );
    227227    }
  • addonify-floating-cart/tags/1.2.11/languages/addonify-floating-cart.pot

    r3150428 r3203981  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Addonify Floating Cart For WooCommerce 1.2.10\n"
     5"Project-Id-Version: Addonify Floating Cart For WooCommerce 1.2.11\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/addonify-floating-cart\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-09-12T05:12:59+00:00\n"
     12"POT-Creation-Date: 2024-12-07T08:43:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.9.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: addonify-floating-cart\n"
    1616
    1717#. Plugin Name of the plugin
     18#: addonify-floating-cart.php
    1819msgid "Addonify Floating Cart For WooCommerce"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
     23#: addonify-floating-cart.php
    2224msgid "https://addonify.com/addonify-floating-cart"
    2325msgstr ""
    2426
    2527#. Description of the plugin
    26 msgid "Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items."
     28#: addonify-floating-cart.php
     29msgid "Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page."
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33#: addonify-floating-cart.php
    3034msgid "Addonify"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38#: addonify-floating-cart.php
    3439msgid "https://addonify.com/"
    3540msgstr ""
    3641
    37 #: addonify-floating-cart.php:91
     42#: addonify-floating-cart.php:70
    3843msgid "Addonify Floating Cart requires WooCommerce in order to work."
    3944msgstr ""
     
    6671#: includes/functions/fields/cart-buttons.php:27
    6772#: includes/misc-functions.php:88
    68 #: includes/template-functions.php:476
     73#: includes/template-functions.php:475
    6974msgid "Checkout"
    7075msgstr ""
     
    9297#: includes/functions/fields/cart-buttons.php:53
    9398#: includes/misc-functions.php:87
    94 #: includes/template-functions.php:451
     99#: includes/template-functions.php:450
    95100msgid "Close"
    96101msgstr ""
     
    462467msgstr ""
    463468
     469#: includes/functions/fields/cart.php:52
     470msgid "Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings."
     471msgstr ""
     472
    464473#: includes/functions/fields/cart.php:79
    465474msgid "Enable dymanic styles"
     
    822831msgstr ""
    823832
     833#: includes/functions/settings.php:330
     834msgid "General Options"
     835msgstr ""
     836
     837#: includes/functions/settings.php:335
     838msgid "Cart Toggle Button Options"
     839msgstr ""
     840
     841#: includes/functions/settings.php:340
     842msgid "Cart Modal Options"
     843msgstr ""
     844
    824845#: includes/functions/settings.php:345
    825 msgid "General Options"
     846msgid "Cart Header Options"
    826847msgstr ""
    827848
    828849#: includes/functions/settings.php:350
    829 msgid "Cart Toggle Button Options"
     850msgid "Cart Products Options"
    830851msgstr ""
    831852
    832853#: includes/functions/settings.php:355
    833 msgid "Cart Modal Options"
     854msgid "Cart Subtotals Options"
    834855msgstr ""
    835856
    836857#: includes/functions/settings.php:360
    837 msgid "Cart Header Options"
     858msgid "Cart Buttons Options"
    838859msgstr ""
    839860
    840861#: includes/functions/settings.php:365
    841 msgid "Cart Products Options"
     862msgid "Cart Miscellaneous Options"
    842863msgstr ""
    843864
    844865#: includes/functions/settings.php:370
    845 msgid "Cart Subtotals Options"
     866msgid "Coupon Options"
    846867msgstr ""
    847868
    848869#: includes/functions/settings.php:375
    849 msgid "Cart Buttons Options"
     870msgid "Shipping Options"
    850871msgstr ""
    851872
    852873#: includes/functions/settings.php:380
    853 msgid "Cart Miscellaneous Options"
     874msgid "Shopping Meter Options"
    854875msgstr ""
    855876
    856877#: includes/functions/settings.php:385
    857 msgid "Coupon Options"
    858 msgstr ""
    859 
    860 #: includes/functions/settings.php:390
    861 msgid "Shipping Options"
    862 msgstr ""
    863 
    864 #: includes/functions/settings.php:395
    865 msgid "Shopping Meter Options"
    866 msgstr ""
    867 
    868 #: includes/functions/settings.php:400
    869878msgid "Toast Notification Options"
    870879msgstr ""
    871880
    872 #: includes/functions/settings.php:409
     881#: includes/functions/settings.php:394
    873882msgid "Interface Design"
    874883msgstr ""
    875884
    876 #: includes/functions/settings.php:414
     885#: includes/functions/settings.php:399
    877886msgid "Cart Toggle Button"
    878887msgstr ""
    879888
    880 #: includes/functions/settings.php:420
     889#: includes/functions/settings.php:405
    881890msgid "Toast Notification"
    882891msgstr ""
    883892
    884 #: includes/functions/settings.php:426
     893#: includes/functions/settings.php:411
    885894msgid "Cart Panel"
    886895msgstr ""
    887896
    888 #: includes/functions/settings.php:432
     897#: includes/functions/settings.php:417
    889898msgid "Buttons in Cart"
    890899msgstr ""
    891900
    892 #: includes/functions/settings.php:438
     901#: includes/functions/settings.php:423
    893902msgid "Miscellaneous Cart Elements"
    894903msgstr ""
    895904
    896 #: includes/functions/settings.php:444
     905#: includes/functions/settings.php:429
    897906msgid "Products in Cart"
    898907msgstr ""
    899908
    900 #: includes/functions/settings.php:450
     909#: includes/functions/settings.php:435
    901910msgid "Developer"
    902911msgstr ""
     
    914923
    915924#: includes/misc-functions.php:86
    916 #: includes/template-functions.php:440
     925#: includes/template-functions.php:439
    917926#: public/partials/cart-sections/header.php:13
    918927msgid "Cart"
     
    933942#: includes/misc-functions.php:92
    934943#: public/partials/cart-sections/footer.php:121
    935 #: public/partials/cart-sections/shipping.php:73
     944#: public/partials/cart-sections/shipping.php:78
    936945msgid "Change address"
    937946msgstr ""
     
    946955
    947956#: includes/misc-functions.php:95
    948 #: includes/template-functions.php:764
     957#: includes/template-functions.php:763
    949958#: public/partials/cart-sections/coupon.php:13
    950959#: admin/assets/js/main.js:1240
     
    953962
    954963#: includes/misc-functions.php:96
    955 #: includes/template-functions.php:727
     964#: includes/template-functions.php:726
    956965msgid "Your cart is currently empty."
    957966msgstr ""
     
    969978
    970979#: includes/misc-functions.php:99
     980#: includes/template-functions.php:686
     981msgid "Item"
     982msgstr ""
     983
     984#: includes/misc-functions.php:100
    971985#: includes/template-functions.php:687
    972 msgid "Item"
    973 msgstr ""
    974 
    975 #: includes/misc-functions.php:100
    976 #: includes/template-functions.php:688
    977986msgid "Items"
    978987msgstr ""
     
    10041013
    10051014#: includes/misc-functions.php:109
    1006 #: public/partials/cart-sections/shipping.php:124
     1015#: public/partials/cart-sections/shipping.php:129
    10071016msgid "Country / Region"
    10081017msgstr ""
    10091018
    10101019#: includes/misc-functions.php:110
    1011 #: public/partials/cart-sections/shipping.php:125
     1020#: public/partials/cart-sections/shipping.php:130
    10121021msgid "State"
    10131022msgstr ""
    10141023
    10151024#: includes/misc-functions.php:111
    1016 #: public/partials/cart-sections/shipping.php:126
     1025#: public/partials/cart-sections/shipping.php:131
    10171026msgid "City"
    10181027msgstr ""
    10191028
    10201029#: includes/misc-functions.php:112
    1021 #: public/partials/cart-sections/shipping.php:127
     1030#: public/partials/cart-sections/shipping.php:132
    10221031msgid "ZIP code"
    10231032msgstr ""
    10241033
    10251034#: includes/misc-functions.php:113
    1026 #: public/partials/cart-sections/shipping.php:128
     1035#: public/partials/cart-sections/shipping.php:133
    10271036msgid "Update address"
    10281037msgstr ""
     
    10391048
    10401049#. translators: %d: shipping package number
    1041 #: includes/template-functions.php:363
     1050#: includes/template-functions.php:362
    10421051msgctxt "shipping packages"
    10431052msgid "Shipping %d"
     
    10451054
    10461055#. translators: %d: shipping package number
    1047 #: includes/template-functions.php:363
     1056#: includes/template-functions.php:362
    10481057msgctxt "shipping packages"
    10491058msgid "Shipping"
     
    11311140msgstr ""
    11321141
    1133 #: public/partials/cart-sections/footer.php:178
     1142#: public/partials/cart-sections/footer.php:148
     1143msgid "Free!"
     1144msgstr ""
     1145
     1146#: public/partials/cart-sections/footer.php:183
    11341147msgid "Tax"
    11351148msgstr ""
    11361149
    11371150#. Translators: %s shipping destination.
    1138 #: public/partials/cart-sections/shipping.php:69
     1151#: public/partials/cart-sections/shipping.php:74
    11391152msgid "Shipping to %s."
    11401153msgstr ""
    11411154
    1142 #: public/partials/cart-sections/shipping.php:78
     1155#: public/partials/cart-sections/shipping.php:83
    11431156msgid "Shipping options will be updated during checkout."
    11441157msgstr ""
    11451158
    1146 #: public/partials/cart-sections/shipping.php:91
     1159#: public/partials/cart-sections/shipping.php:96
    11471160msgid "Shipping costs are calculated during checkout."
    11481161msgstr ""
    11491162
    1150 #: public/partials/cart-sections/shipping.php:98
     1163#: public/partials/cart-sections/shipping.php:103
    11511164msgid "Enter your address to view shipping options."
    11521165msgstr ""
    11531166
    11541167#. Translators: %s shipping destination.
    1155 #: public/partials/cart-sections/shipping.php:109
     1168#: public/partials/cart-sections/shipping.php:114
    11561169msgid "No shipping options were found for %s."
    11571170msgstr ""
    11581171
    1159 #: public/partials/cart-sections/shipping.php:174
     1172#: public/partials/cart-sections/shipping.php:179
    11601173msgid "Select a country / region&hellip;"
    11611174msgstr ""
    11621175
    1163 #: public/partials/cart-sections/shipping.php:215
     1176#: public/partials/cart-sections/shipping.php:220
    11641177msgid "Select an option&hellip;"
    11651178msgstr ""
  • addonify-floating-cart/tags/1.2.11/public/assets/build/public.min.css

    r3150428 r3203981  
    1 :root{--adfy_woofc_primary_color:#1b81ff;--adfy_woofc_secondary_color:#6221ff;--adfy_woofc_base_text_color:#444;--adfy_woofc_base_link_color:#1b81ff;--adfy_woofc_base_link_color_hover:#6221ff;--adfy_woofc_base_text_font_size:15px;--adfy_woofc_border_color:#eee;--adfy_woofc_cart_background_color:#fff;--adfy_woofc_cart_overlay_background_color:rgba(131,176,252,.5),rgba(251,194,235,.4);--adfy_woofc_cart_input_border_color:var(--adfy_woofc_border_color);--adfy_woofc_cart_input_placeholder_color:#9e9e9e;--adfy_woofc_cart_input_text_color:#444;--adfy_woofc_cart_input_background_color:#fff;--adfy_woofc_cart_width:500px;--adfy_woofc_spinner_icon_color:#444;--adfy_woofc_spinner_container_background:hsla(0,0%,100%,.9);--adfy_woofc_toggle_button_text_color:#555;--adfy_woofc_toggle_button_text_color_hover:#898989;--adfy_woofc_toggle_button_background_color:#fff;--adfy_woofc_toggle_button_background_color_hover:#ddd;--adfy_woofc_toggle_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_badge_text_color:#fff;--adfy_woofc_toggle_button_badge_text_color_hover:#fff;--adfy_woofc_toggle_button_badge_background_color:#1b81ff;--adfy_woofc_toggle_button_badge_background_color_hover:#1b81ff;--adfy_woofc_toggle_button_badge_width:23px;--adfy_woofc_toggle_button_badge_font_size:13px;--adfy_woofc_toggle_button_size:60px;--adfy_woofc_toggle_button_border_radius:5px;--adfy_woofc_toggle_button_cart_icon_font_size:20px;--adfy_woofc_toggle_button_horizental_offset:100px;--adfy_woofc_toggle_button_vertical_offset:100px;--adfy_woofc_base_button_font_size:15px;--adfy_woofc_base_button_font_weight:normal;--adfy_woofc_base_button_letter_spacing:0;--adfy_woofc_base_button_border_radius:3px;--adfy_woofc_base_button_text_transform:none;--adfy_woofc_primary_button_label_color:#fff;--adfy_woofc_primary_button_label_color_hover:#fff;--adfy_woofc_primary_button_background_color:#1b81ff;--adfy_woofc_primary_button_background_color_hover:#6221ff;--adfy_woofc_primary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_primary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_label_color:#878787;--adfy_woofc_secondary_button_label_color_hover:#fff;--adfy_woofc_secondary_button_background_color:#cfcfcf;--adfy_woofc_secondary_button_background_color_hover:#6221ff;--adfy_woofc_secondary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_shopping_meter_initial_background_color:#eee;--adfy_woofc_shopping_meter_progress_background_color:#0072ff;--adfy_woofc_shopping_meter_threashold_reached_background_color:#0072ff;--adfy_woofc_toast_text_color:#fff;--adfy_woofc_toast_background_color:#3dc763;--adfy_woofc_toast_button_text_color:#fff;--adfy_woofc_toast_button_text_color_hover:#fff;--adfy_woofc_toast_button_background_color:rgba(0,0,0,.2);--adfy_woofc_toast_button_background_color_hover:rgba(0,0,0,.4);--adfy_woofc_toast_icon_color:#3dc763;--adfy_woofc_toast_icon_background_color:#fff;--adfy_woofc_cart_title_text_color:var(--adfy_woofc_base_text_color);--adfy_woofc_cart_title_font_size:var(--adfy_woofc_base_text_font_size);--adfy_woofc_cart_title_font_weight:var(--adfy_woofc_base_text_font_weight);--adfy_woofc_cart_title_letter_spacing:0;--adfy_woofc_cart_title_text_transform:none;--adfy_woofc_cart_title_count_badge_text_color:#409eff;--adfy_woofc_cart_title_count_badge_background_color:#dfeeff;--adfy_woofc_cart_close_button_text_color:#c7c7c7;--adfy_woofc_cart_close_button_text_color_hover:#888;--adfy_woofc_cart_field_background_color:#fff;--adfy_woofc_cart_field_text_color:#fff;--adfy_woofc_cart_field_border_color:#fff;--adfy_woofc_cart_product_title_text_color:#444;--adfy_woofc_cart_product_title_text_color_hover:#1b81ff;--adfy_woofc_cart_product_price_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_input_button_text_color:#444;--adfy_woofc_cart_product_remove_button_text_color:#878787;--adfy_woofc_cart_product_remove_button_text_color_hover:#fff;--adfy_woofc_cart_product_remove_button_background_color:#e9e9e9;--adfy_woofc_cart_product_remove_button_background_color_hover:#6221ff;--adfy_woofc_cart_product_title_font_size:15px;--adfy_woofc_cart_product_title_font_weight:normal;--adfy_woofc_trigger_button_zindex:10000000;--adfy_woofc_overlaymask_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 10);--adfy_woofc_floating_cart_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 30);--adfy_woofc_floating_cart_inner_mask_zindex:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__hide-woofc{cursor:pointer}.adfy__woofc-visible{max-height:100vh;overflow-y:hidden}.adfy__woofc-hidden{display:none}.adfy__woofc-link.has-underline{background:transparent;background-color:transparent;border:none;color:var(--adfy_woofc_base_link_color);position:relative;text-decoration:none;transition:all .5s ease}.adfy__woofc-link.has-underline:after,.adfy__woofc-link.has-underline:before{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after,[dir=rtl] .adfy__woofc-link.has-underline:before{left:auto;right:0}.adfy__woofc-link.has-underline:before{-webkit-backface-visibility:hidden;background-color:currentColor;content:"";transform:scaleX(0);transform-origin:right center;transition:transform .26s cubic-bezier(.25,.8,.25,1);will-change:scale;z-index:1}[dir=rtl] .adfy__woofc-link.has-underline:before{transform-origin:left center}.adfy__woofc-link.has-underline:after{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;opacity:.6;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after{left:auto;right:0}.adfy__woofc-link.has-underline:hover{color:var(--adfy_woofc_base_link_color_hover);text-decoration:none}.adfy__woofc-link.has-underline:hover:before{background-color:var(--adfy_woofc_base_link_color_hover);content:"";transform:scale(1);transform-origin:left center}[dir=rtl] .adfy__woofc-link.has-underline:hover:before{transform-origin:right center}.adfy__woofc-link.has-underline:focus{outline:none;text-decoration:none}.adfy__woofc-alert{background-color:#eee;border-radius:4px;color:#444;display:block;margin-bottom:20px;overflow:hidden;padding:10px 15px}.adfy__woofc-alert .adfy__woofc-alert-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-size:14px;font-weight:400;gap:8px;line-height:1.4;margin:0}.adfy__woofc-alert .adfy__woofc-alert-text svg{color:#444;height:14px;width:14px}.adfy__woofc-alert.success{background-color:#f0f9eb;color:#67c23a}.adfy__woofc-alert.success svg{color:#67c23a}.adfy__woofc-alert.error{background-color:#ffe6e6;color:#f56c6c}.adfy__woofc-alert.error svg{color:#f56c6c}.adfy__woofc-button,a.adfy__woofc-button,button.adfy__woofc-button,button.adfy__woofc-button[type=submit],input.adfy__woofc-button[type=submit]{align-items:center;display:inline-flex;font-size:var(--adfy_woofc_base_button_font_size);font-weight:var(--adfy_woofc_base_button_font_weight);gap:5px;letter-spacing:var(--adfy_woofc_base_button_letter_spacing);line-height:1;fill:var(--adfy_woofc_primary_button_label_color);-webkit-appearance:button;-moz-appearance:button;appearance:button;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-radius:var(--adfy_woofc_base_button_border_radius);border-style:solid;border-width:1px;box-shadow:none;color:var(--adfy_woofc_primary_button_label_color);padding:15px 25px;text-decoration:none;text-transform:var(--adfy_woofc_base_button_text_transform);transition:all .5s ease}.adfy__woofc-button:hover,a.adfy__woofc-button:hover,button.adfy__woofc-button:hover,button.adfy__woofc-button[type=submit]:hover,input.adfy__woofc-button[type=submit]:hover{fill:var(--adfy_woofc_primary_button_label_color_hover);background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);box-shadow:none;color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}.adfy__woofc-button:focus,a.adfy__woofc-button:focus,button.adfy__woofc-button:focus,button.adfy__woofc-button[type=submit]:focus,input.adfy__woofc-button[type=submit]:focus{box-shadow:none;outline:0;text-decoration:none}.adfy__woofc-button.close,.adfy__woofc-button.continue-shopping,.adfy__woofc-button.secondary,a.adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}.adfy__woofc-button.close:hover,.adfy__woofc-button.continue-shopping:hover,.adfy__woofc-button.secondary:hover,a.adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}.adfy__woofc-fake-button{-webkit-appearance:none;-moz-appearance:none;cursor:pointer;display:inline-flex;font-size:15px;font-weight:400;height:auto;line-height:1;margin:0;padding:0;transition:all .5s ease;width:auto}.adfy__woofc-fake-button,.adfy__woofc-fake-button:hover{fill:currentColor;background:transparent;background-color:transparent;border:none;box-shadow:none;color:currentColor;text-decoration:none}.adfy__woofc-fake-button:focus{border:none;box-shadow:none;outline:0;text-decoration:none}.notyf{color:var(--adfy_woofc_toast_text_color)}.notyf .notyf__toast[class*=adfy__woofc-notfy]{box-shadow:0 10px 30px rgba(0,0,0,.05)}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__icon .notyf__icon--success{background:var(--adfy_woofc_toast_icon_background_color);color:var(--adfy_woofc_toast_icon_color)!important}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message{color:var(--adfy_woofc_toast_text_color);font-size:15px;font-weight:400;line-height:1.4}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button{align-items:center;background-color:var(--adfy_woofc_toast_button_background_color);border-radius:3px;color:var(--adfy_woofc_toast_button_text_color);display:inline-flex;font-size:13px;letter-spacing:inherit;padding:5px 10px 6px;text-transform:inherit}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button:hover{background-color:var(--adfy_woofc_toast_button_background_color_hover);color:var(--adfy_woofc_toast_button_text_color_hover)}.notyf .notyf__toast.adfy__woofc-notfy-success .notyf__ripple{background:var(--adfy_woofc_toast_background_color)!important}#adfy__woofc-trigger{align-items:center;border-color:var(--adfy_woofc_toggle_button_border_color);border-style:solid;border-width:1px;bottom:var(--adfy_woofc_toggle_button_vertical_offset);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--adfy_woofc_toggle_button_size);justify-content:center;left:auto;margin:0;padding:0;position:fixed;right:var(--adfy_woofc_toggle_button_horizental_offset);width:var(--adfy_woofc_toggle_button_size);z-index:var(--adfy_woofc_trigger_button_zindex);fill:var(--adfy_woofc_toggle_button_text_color);background-color:var(--adfy_woofc_toggle_button_background_color);border-radius:var(--adfy_woofc_toggle_button_border_radius);box-shadow:0 0 2px rgba(0,0,0,.3);color:var(--adfy_woofc_toggle_button_text_color);cursor:pointer;font-weight:400;line-height:1;transition:all .5s ease}[dir=rtl] #adfy__woofc-trigger{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger[data_display=hidden]{display:none;opacity:0;visibility:hidden}#adfy__woofc-trigger .icon svg{height:var(--adfy_woofc_toggle_button_cart_icon_font_size);width:var(--adfy_woofc_toggle_button_cart_icon_font_size)}#adfy__woofc-trigger .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:3px;bottom:auto;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;font-weight:400;height:23px;justify-content:center;left:-10px;line-height:1;position:absolute;right:auto;top:-5px;transition:all .5s ease-in-out;width:23px}[dir=rtl] #adfy__woofc-trigger .badge{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-left{bottom:auto;left:-10px;right:auto;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-right{bottom:auto;left:auto;right:-10px;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-right{left:-10px;right:auto}#adfy__woofc-trigger .badge.bottom-left{bottom:-5px;left:-10px;right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.bottom-right{bottom:-5px;left:auto;right:-10px;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-right{left:-10px;right:auto}#adfy__woofc-trigger:hover{fill:var(--adfy_woofc_toggle_button_text_color_hover);background-color:var(--adfy_woofc_toggle_button_background_color_hover);border-color:var(--adfy_woofc_toggle_button_border_color_hover);box-shadow:0 0 60px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_text_color_hover)}#adfy__woofc-trigger:hover .badge{background-color:var(--adfy_woofc_toggle_button_badge_background_color_hover);color:var(--adfy_woofc_toggle_button_badge_text_color_hover)}#adfy__woofc-trigger:focus{outline:none}#adfy__woofc-trigger.top-right{bottom:auto;left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset);top:var(--adfy_woofc_toggle_button_vertical_offset)}#adfy__woofc-trigger.top-left,[dir=rtl] #adfy__woofc-trigger.top-right{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger.top-left{bottom:auto;top:var(--adfy_woofc_toggle_button_vertical_offset)}[dir=rtl] #adfy__woofc-trigger.top-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-trigger.bottom-left{bottom:var(--adfy_woofc_toggle_button_vertical_offset);left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger.bottom-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-hide-coupon-container,#adfy__woofc-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-hide-coupon-container svg,#adfy__woofc-hide-shipping-container svg{height:20px;width:20px}#adfy__woofc-hide-coupon-container:hover,#adfy__woofc-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}.adfy_fc__woo-trigger-shortcode-button{line-height:1;position:relative}.adfy_fc__woo-trigger-shortcode-button .icon svg{height:24px;width:24px}.adfy_fc__woo-trigger-shortcode-button .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:20px;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;height:23px;justify-content:center;line-height:1;position:absolute;top:-20px;transition:all .5s ease-in-out;width:23px}.adfy_fc__woo-trigger-shortcode-button .badge.top-right{right:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-right{left:-15px;right:auto}.adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:auto;right:-15px}#adfy__floating-cart{background-color:var(--adfy_woofc_cart_background_color);box-shadow:10px 0 30px rgba(0,0,0,.2);box-sizing:border-box;color:var(--adfy_woofc_base_text_color);display:block;font-size:var(--adfy_woofc_base_text_font_size);position:fixed;transition:all .8s cubic-bezier(.77,0,.18,1) 0s;z-index:var(--adfy_woofc_floating_cart_zindex);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}[dir=rtl] #adfy__floating-cart{box-shadow:-10px 0 30px rgba(0,0,0,.2)}#adfy__floating-cart .adfy_woofc-inner{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;padding:30px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy_woofc-inner{padding:20px}}#adfy__floating-cart[data_type=drawer]{backface-visibility:visible;bottom:0;opacity:1;top:0;visibility:visible;width:var(--adfy_woofc_cart_width)}@media (max-width:575px){#adfy__floating-cart[data_type=drawer]{width:93vw}}#adfy__floating-cart[data_type=modal]{z-index:var(--adfy_woofc_floating_cart_zindex)}#adfy__floating-cart[data_type=drawer][data_position=left]{left:-100vw;right:auto}#adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=right]{left:-100vw;right:auto}.adfy__woofc-visible #adfy__floating-cart{transition:all .6s cubic-bezier(.77,0,.18,1)}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:0;right:auto}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:0}[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right]{left:0;right:auto}#adfy__floating-cart .adfy__woofc-header{align-items:center;border-bottom:1px solid var(--adfy_woofc_border_color);-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 30px;justify-content:space-between;margin-bottom:20px;padding-bottom:15px}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title{align-items:center;color:var(--adfy_woofc_cart_title_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:20px;gap:8px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title .adfy__woofc-badge{align-items:center;background-color:var(--adfy_woofc_cart_title_count_badge_background_color);border-radius:15px;color:var(--adfy_woofc_cart_title_count_badge_text_color);font-size:calc(var(--adfy_woofc_base_text_font_size) - 20%);font-weight:400;line-height:1;padding:7px 10px 8px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button{align-items:center;display:inline-flex;justify-content:center}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc{display:inline-flex;font-weight:400;height:30px;line-height:1;margin:0;padding:0;width:30px;fill:var(--adfy_woofc_cart_close_button_text_color);background-color:transparent;border:none;border-radius:100%;color:var(--adfy_woofc_cart_close_button_text_color)}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc svg{height:22px;width:22px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc:hover{fill:var(--adfy_woofc_cart_close_button_text_color_hover);background-color:transparent;border:none;color:var(--adfy_woofc_cart_close_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-shipping-bar{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-shipping-bar.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text{font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 10px;padding:0}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text .amount{font-weight:700}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars{position:relative}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{background-color:var(--adfy_woofc_shopping_meter_initial_background_color);border-radius:10px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);display:block;height:8px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{height:5px}}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_progress_background_color);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);left:0;position:absolute;right:auto;top:0;transition:width .5s linear;z-index:2}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{left:auto;right:0}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){animation:adfyProgressbar 1s linear infinite;background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}#adfy__floating-cart .adfy__woofc-shipping-bar[data-threashold_reached=true] .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_threashold_reached_background_color)}#adfy__floating-cart #adfy__woofc-cart-errors{background-color:#e1efff;border-radius:5px;color:#387ecd;display:block;line-height:1.5;margin-bottom:30px;padding:15px}#adfy__floating-cart #adfy__woofc-cart-errors.hidden{display:none}#adfy__floating-cart #adfy__woofc-cart-errors.error{background-color:#ffe6e6;color:#f56c6c}#adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{cursor:pointer;display:inline-flex;margin-left:5px}[dir=rtl] #adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{margin-left:0;margin-right:5px}#adfy__floating-cart .adfy__woofc-content{display:flex;flex:1 1 auto;flex-direction:row;flex-direction:column;flex-wrap:wrap;overflow:hidden;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{bottom:0;display:block;left:0;padding:10px 10px 10px 0;position:absolute;right:0;top:0;z-index:5}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{padding:10px 0 10px 10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:30px;column-gap:30px;display:grid;grid-template-columns:100px auto;margin-bottom:30px;position:relative}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:25px;column-gap:25px;margin-bottom:20px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb{border:none;box-shadow:none;margin:0;max-width:100%;padding:0;position:relative;width:100%}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link>img{background-color:var(--adfy_woofc_border_color);border:1px solid var(--adfy_woofc_border_color);border-radius:5px;display:block;max-width:100%;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{align-items:center;background-color:var(--adfy_woofc_cart_product_remove_button_background_color);border:none;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.1);color:var(--adfy_woofc_cart_product_remove_button_text_color);display:inline-flex;height:26px;justify-content:center;margin:0;padding:0;position:absolute;right:-10px;text-decoration:none;top:-10px;width:26px;z-index:1}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{left:-10px;right:auto}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{height:24px;width:24px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item svg{height:16px;width:16px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item:hover{background-color:var(--adfy_woofc_cart_product_remove_button_background_color_hover);color:var(--adfy_woofc_cart_product_remove_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{color:var(--adfy_woofc_cart_product_title_text_color);display:block;font-size:var(--adfy_woofc_cart_product_title_font_size);font-weight:var(--adfy_woofc_cart_product_title_font_weight);line-height:1.3;margin:0 0 10px;padding:0}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{margin-bottom:5px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link{color:var(--adfy_woofc_cart_product_title_text_color)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link:hover{color:var(--adfy_woofc_cart_product_title_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price{margin-bottom:10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price .quantity{align-items:center;border:none;color:var(--adfy_woofc_cart_product_price_quantity_text_color);display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:700;gap:2px;height:auto;margin:0;padding:0;width:auto}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:30px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin:0;padding:5px 10px;width:110px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-inner-spin-button,#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input[type=number]{-moz-appearance:textfield}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field{align-items:center;-webkit-appearance:none;-moz-appearance:none;background:transparent;background-color:transparent;border:none;border-radius:3px;box-shadow:none;color:var(--adfy_woofc_cart_product_quantity_text_color);display:inline-flex;font-size:12px;font-weight:400;height:30px;justify-content:center;margin:0;max-width:50px;min-height:1px;outline:none;padding:0;text-align:center;transition:all .5s ease;width:30px;will-change:width}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field:focus{outline:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button{align-items:center;display:inline-flex;font-size:16px;font-weight:400;height:20px;justify-content:center;line-height:1;margin:0;padding:0;width:20px;fill:var(--adfy_woofc_cart_product_quantity_input_button_text_color);background-color:transparent;border-radius:30px;color:var(--adfy_woofc_cart_product_quantity_input_button_text_color);text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button svg{height:18px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:hover{text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:focus{outline:none}.woocommerce-page #adfy__floating-cart main{margin-left:0;margin-right:0;max-width:100%;padding:0}#adfy__floating-cart .adfy__woofc-colophon{margin-top:0;padding-top:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-weight:400;gap:5px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon{fill:var(--adfy_woofc_base_text_color);line-height:1}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon svg{height:18px;width:18px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary{display:block;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul{align-items:center;border:none;border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .label,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .value{color:var(--adfy_woofc_base_text_color);font-size:var(--adfy_woofc_base_text_font_size);font-weight:400}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li:not(:last-child){border-bottom:1px dotted var(--adfy_woofc_border_color);padding-bottom:10px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.discount .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value span,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value strong{font-weight:700}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary.discount ul{border:1px solid var(--adfy_woofc_border_color);padding:10px 15px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions{-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:repeat(2,1fr)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions.adfy__woofc-fullwidth{-moz-column-gap:0;column-gap:0;grid-template-columns:repeat(1,1fr);justify-content:center}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{align-items:center;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-style:solid;border-width:1px;color:var(--adfy_woofc_primary_button_label_color);display:inline-flex;height:auto;justify-content:center;padding:20px 15px;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{padding:15px 10px}}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button:hover{background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}#adfy__floating-cart #adfy__woofc_empty_cart_section{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;justify-content:center}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon{animation:adfyFloatingCartFadeDown .5s ease}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon svg{display:inline-flex;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color);height:42px;width:42px}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_text{display:inline-flex;margin:0}#adfy__woofc-shipping-container #adfy__woofc-hide-shipping-container{background:transparent;background-color:transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner{display:block;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;padding:0 0 60px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0 0 30px;padding:20px;position:relative}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;margin:0;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner .adfy__woo-shipping-destination{margin:20px 0}#adfy__woofc-shipping-container .shipping-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-shipping-container .shipping-container-header{justify-content:flex-end}}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container svg{display:inline-flex;height:20px;width:20px}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}#adfy__woofc-shipping-container #adfy__woofc-shipping-form{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;margin:30px 0;padding:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .adfy__woofc-shipping-form-elements{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form label{display:block;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form label{margin:0 3px 0 0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=hidden]{display:none;height:0;width:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select{align-items:center;background-color:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form select{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2.select2-container{width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .addonify_floating_cart-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__rendered{color:var(--adfy_woofc_cart_input_text_color);line-height:21px;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:auto;right:5px;top:10px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:5px;right:auto}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown,#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color)}.adfy__woofc-visible .select2-container--default .select2-dropdown{background-color:#fff;border-color:var(--adfy_woofc_cart_input_border_color);border-radius:5px;border-style:solid;border-top-left-radius:8px;border-top-right-radius:8px;border-width:1px;z-index:999999999999}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;box-shadow:none;display:flex;flex-direction:row;flex-wrap:wrap}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field:focus{border-color:#3da6ff;box-shadow:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results{padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{font-size:15px;max-height:300px;padding:0 10px 0 0}[dir=rtl] .adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{padding:0 0 0 10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option{border-radius:5px;display:block;font-size:15px;line-height:1.3;padding:10px}.adfy__woofc-visible .select2-container--default.select2-container--open .select2-dropdown{animation:adfyFloatingCartFadeDown .5s ease}.adfy__woofc-container-canvas{background-color:var(--adfy_woofc_cart_background_color);bottom:0;color:var(--adfy_woofc_base_text_color);display:block;height:100%;margin:0;min-height:100vh;padding:30px;position:absolute;top:0;transition:all .6s cubic-bezier(.77,0,.18,1);width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__woofc-container-canvas[data_display=visible]{transition:all .3s ease}.adfy__woofc-container-canvas[data_display=visible] #adfy__woofc-coupon-form{animation:adfyFloatingCartFadeDown .5s ease-in}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:-100vw;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:auto;right:-100vw}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:-100vw;right:auto}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}#adfy__woofc-coupon-container .coupon-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-coupon-container .coupon-container-header{justify-content:flex-end}}#adfy__woofc-coupon-container #adfy__woofc-coupon-form{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin:0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;padding:20px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{display:block;font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{margin:0 3px 0 0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs .adfy__woofc-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-coupon-container #adfy__woofc-hide-coupon-container{background:transparent;background-color:transparent}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;margin-top:40px;padding:20px;position:relative}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons.hidden{display:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{align-items:center;background-color:var(--adfy_woofc_cart_background_color);display:inline-flex;font-size:15px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 5%);font-weight:400;gap:10px;left:15px;line-height:1.4;padding:5px 10px;position:absolute;right:auto;top:-15px;z-index:1}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{left:auto;right:15px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title svg{height:18px;width:18px;fill:var(--adfy_woofc_base_text_color)}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;list-style:none;margin:10px 0 0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:4px;-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 50px;justify-content:space-between;margin:0;padding:10px 15px;position:relative;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]{align-items:center;background:var(--adfy_woofc_cart_background_color);border:0 solid transparent;border-radius:0;box-shadow:none;box-sizing:border-box;color:var(--adfy_woofc_base_text_color);cursor:default;display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:auto;line-height:1.4;max-width:100%;min-height:1px;padding:0;transition:none;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:focus{box-shadow:none;outline:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:hover{box-shadow:none;text-decoration:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button{align-items:center;border-radius:3px;display:inline-flex;height:30px;justify-content:center;margin:0;padding:0;position:relative;width:50px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button svg{height:18px;width:18px}#adfy__woofc-spinner-container{backface-visibility:hidden;background:var(--adfy_woofc_spinner_container_background);bottom:0;display:block;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) - 1)}#adfy__woofc-spinner-container.visible{backface-visibility:visible;opacity:1;visibility:visible;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 100)}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;justify-content:center;position:relative;width:100%}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner{display:inline-flex;height:32px;overflow:hidden}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner svg{animation:adfyCartSpin 2s ease-in-out infinite both;color:var(--adfy_woofc_spinner_icon_color);display:inline-flex;height:32px;line-height:1;width:32px}#adfy__woofc-overlay{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);backface-visibility:hidden;background:linear-gradient(to right,var(--adfy_woofc_cart_overlay_background_color));bottom:0;cursor:pointer;display:block;height:100%;left:auto;opacity:0;position:fixed;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:0}[dir=rtl] #adfy__woofc-overlay{background:linear-gradient(to left,var(--adfy_woofc_cart_overlay_background_color));left:0;right:auto}.adfy__woofc-visible #adfy__woofc-overlay{backface-visibility:visible;opacity:1;visibility:visible;z-index:var(--adfy_woofc_overlaymask_zindex)}@keyframes adfyFloatingCartFadeIn{0%{opacity:0}40%{opacity:.4}80%{opacity:.8}to{opacity:1}}@keyframes adfyFloatingCartFadeDown{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes adfyFloatingCartSlideToLeft{0%{opacity:0;right:-100vw}to{opacity:1;right:0}}@keyframes adfyFloatingCartSlideToRight{0%{opacity:1;right:0}to{opacity:0;right:-100vw}}@keyframes adfyCartSpin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes adfyProgressbar{0%{background-position-x:1rem}}
     1:root{--adfy_woofc_primary_color:#1b81ff;--adfy_woofc_secondary_color:#6221ff;--adfy_woofc_base_text_color:#444;--adfy_woofc_base_link_color:#1b81ff;--adfy_woofc_base_link_color_hover:#6221ff;--adfy_woofc_base_text_font_size:15px;--adfy_woofc_border_color:#eee;--adfy_woofc_cart_background_color:#fff;--adfy_woofc_cart_overlay_background_color:rgba(131,176,252,.5),rgba(251,194,235,.4);--adfy_woofc_cart_input_border_color:var(--adfy_woofc_border_color);--adfy_woofc_cart_input_placeholder_color:#9e9e9e;--adfy_woofc_cart_input_text_color:#444;--adfy_woofc_cart_input_background_color:#fff;--adfy_woofc_cart_width:500px;--adfy_woofc_spinner_icon_color:#444;--adfy_woofc_spinner_container_background:hsla(0,0%,100%,.9);--adfy_woofc_toggle_button_text_color:#555;--adfy_woofc_toggle_button_text_color_hover:#898989;--adfy_woofc_toggle_button_background_color:#fff;--adfy_woofc_toggle_button_background_color_hover:#ddd;--adfy_woofc_toggle_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_badge_text_color:#fff;--adfy_woofc_toggle_button_badge_text_color_hover:#fff;--adfy_woofc_toggle_button_badge_background_color:#1b81ff;--adfy_woofc_toggle_button_badge_background_color_hover:#1b81ff;--adfy_woofc_toggle_button_badge_width:23px;--adfy_woofc_toggle_button_badge_font_size:13px;--adfy_woofc_toggle_button_size:60px;--adfy_woofc_toggle_button_border_radius:5px;--adfy_woofc_toggle_button_cart_icon_font_size:20px;--adfy_woofc_toggle_button_horizental_offset:100px;--adfy_woofc_toggle_button_vertical_offset:100px;--adfy_woofc_base_button_font_size:15px;--adfy_woofc_base_button_font_weight:normal;--adfy_woofc_base_button_letter_spacing:0;--adfy_woofc_base_button_border_radius:3px;--adfy_woofc_base_button_text_transform:none;--adfy_woofc_primary_button_label_color:#fff;--adfy_woofc_primary_button_label_color_hover:#fff;--adfy_woofc_primary_button_background_color:#1b81ff;--adfy_woofc_primary_button_background_color_hover:#6221ff;--adfy_woofc_primary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_primary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_label_color:#878787;--adfy_woofc_secondary_button_label_color_hover:#fff;--adfy_woofc_secondary_button_background_color:#cfcfcf;--adfy_woofc_secondary_button_background_color_hover:#6221ff;--adfy_woofc_secondary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_shopping_meter_initial_background_color:#eee;--adfy_woofc_shopping_meter_progress_background_color:#0072ff;--adfy_woofc_shopping_meter_threashold_reached_background_color:#0072ff;--adfy_woofc_toast_text_color:#fff;--adfy_woofc_toast_background_color:#3dc763;--adfy_woofc_toast_button_text_color:#fff;--adfy_woofc_toast_button_text_color_hover:#fff;--adfy_woofc_toast_button_background_color:rgba(0,0,0,.2);--adfy_woofc_toast_button_background_color_hover:rgba(0,0,0,.4);--adfy_woofc_toast_icon_color:#3dc763;--adfy_woofc_toast_icon_background_color:#fff;--adfy_woofc_cart_title_text_color:var(--adfy_woofc_base_text_color);--adfy_woofc_cart_title_font_size:var(--adfy_woofc_base_text_font_size);--adfy_woofc_cart_title_font_weight:var(--adfy_woofc_base_text_font_weight);--adfy_woofc_cart_title_letter_spacing:0;--adfy_woofc_cart_title_text_transform:none;--adfy_woofc_cart_title_count_badge_text_color:#409eff;--adfy_woofc_cart_title_count_badge_background_color:#dfeeff;--adfy_woofc_cart_close_button_text_color:#c7c7c7;--adfy_woofc_cart_close_button_text_color_hover:#888;--adfy_woofc_cart_field_background_color:#fff;--adfy_woofc_cart_field_text_color:#fff;--adfy_woofc_cart_field_border_color:#fff;--adfy_woofc_cart_product_title_text_color:#444;--adfy_woofc_cart_product_title_text_color_hover:#1b81ff;--adfy_woofc_cart_product_price_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_input_button_text_color:#444;--adfy_woofc_cart_product_remove_button_text_color:#878787;--adfy_woofc_cart_product_remove_button_text_color_hover:#fff;--adfy_woofc_cart_product_remove_button_background_color:#e9e9e9;--adfy_woofc_cart_product_remove_button_background_color_hover:#6221ff;--adfy_woofc_cart_product_title_font_size:15px;--adfy_woofc_cart_product_title_font_weight:normal;--adfy_woofc_trigger_button_zindex:10000000;--adfy_woofc_overlaymask_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 10);--adfy_woofc_floating_cart_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 30);--adfy_woofc_floating_cart_inner_mask_zindex:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__hide-woofc{cursor:pointer}.adfy__woofc-visible{max-height:100vh;overflow-y:hidden}.adfy__woofc-hidden{display:none}.adfy__woofc-link.has-underline{background:transparent;background-color:transparent;border:none;color:var(--adfy_woofc_base_link_color);position:relative;text-decoration:none;transition:all .5s ease}.adfy__woofc-link.has-underline:after,.adfy__woofc-link.has-underline:before{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after,[dir=rtl] .adfy__woofc-link.has-underline:before{left:auto;right:0}.adfy__woofc-link.has-underline:before{-webkit-backface-visibility:hidden;background-color:currentColor;content:"";transform:scaleX(0);transform-origin:right center;transition:transform .26s cubic-bezier(.25,.8,.25,1);will-change:scale;z-index:1}[dir=rtl] .adfy__woofc-link.has-underline:before{transform-origin:left center}.adfy__woofc-link.has-underline:after{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;opacity:.6;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after{left:auto;right:0}.adfy__woofc-link.has-underline:hover{color:var(--adfy_woofc_base_link_color_hover);text-decoration:none}.adfy__woofc-link.has-underline:hover:before{background-color:var(--adfy_woofc_base_link_color_hover);content:"";transform:scale(1);transform-origin:left center}[dir=rtl] .adfy__woofc-link.has-underline:hover:before{transform-origin:right center}.adfy__woofc-link.has-underline:focus{outline:none;text-decoration:none}.adfy__woofc-alert{background-color:#eee;border-radius:4px;color:#444;display:block;margin-bottom:20px;overflow:hidden;padding:10px 15px}.adfy__woofc-alert .adfy__woofc-alert-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-size:14px;font-weight:400;gap:8px;line-height:1.4;margin:0}.adfy__woofc-alert .adfy__woofc-alert-text svg{color:#444;height:14px;width:14px}.adfy__woofc-alert.success{background-color:#f0f9eb;color:#67c23a}.adfy__woofc-alert.success svg{color:#67c23a}.adfy__woofc-alert.error{background-color:#ffe6e6;color:#f56c6c}.adfy__woofc-alert.error svg{color:#f56c6c}.adfy__woofc-button,a.adfy__woofc-button,button.adfy__woofc-button,button.adfy__woofc-button[type=submit],input.adfy__woofc-button[type=submit]{align-items:center;display:inline-flex;font-size:var(--adfy_woofc_base_button_font_size);font-weight:var(--adfy_woofc_base_button_font_weight);gap:5px;letter-spacing:var(--adfy_woofc_base_button_letter_spacing);line-height:1;fill:var(--adfy_woofc_primary_button_label_color);-webkit-appearance:button;-moz-appearance:button;appearance:button;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-radius:var(--adfy_woofc_base_button_border_radius);border-style:solid;border-width:1px;box-shadow:none;color:var(--adfy_woofc_primary_button_label_color);padding:15px 25px;text-decoration:none;text-transform:var(--adfy_woofc_base_button_text_transform);transition:all .5s ease}.adfy__woofc-button:hover,a.adfy__woofc-button:hover,button.adfy__woofc-button:hover,button.adfy__woofc-button[type=submit]:hover,input.adfy__woofc-button[type=submit]:hover{fill:var(--adfy_woofc_primary_button_label_color_hover);background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);box-shadow:none;color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}.adfy__woofc-button:focus,a.adfy__woofc-button:focus,button.adfy__woofc-button:focus,button.adfy__woofc-button[type=submit]:focus,input.adfy__woofc-button[type=submit]:focus{box-shadow:none;outline:0;text-decoration:none}.adfy__woofc-button.close,.adfy__woofc-button.continue-shopping,.adfy__woofc-button.secondary,a.adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}.adfy__woofc-button.close:hover,.adfy__woofc-button.continue-shopping:hover,.adfy__woofc-button.secondary:hover,a.adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}.adfy__woofc-fake-button{-webkit-appearance:none;-moz-appearance:none;cursor:pointer;display:inline-flex;font-size:15px;font-weight:400;height:auto;line-height:1;margin:0;padding:0;transition:all .5s ease;width:auto}.adfy__woofc-fake-button,.adfy__woofc-fake-button:hover{fill:currentColor;background:transparent;background-color:transparent;border:none;box-shadow:none;color:currentColor;text-decoration:none}.adfy__woofc-fake-button:focus{border:none;box-shadow:none;outline:0;text-decoration:none}.notyf{color:var(--adfy_woofc_toast_text_color)}.notyf .notyf__toast[class*=adfy__woofc-notfy]{box-shadow:0 10px 30px rgba(0,0,0,.05)}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__icon .notyf__icon--success{background:var(--adfy_woofc_toast_icon_background_color);color:var(--adfy_woofc_toast_icon_color)!important}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message{color:var(--adfy_woofc_toast_text_color);font-size:15px;font-weight:400;line-height:1.4}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button{align-items:center;background-color:var(--adfy_woofc_toast_button_background_color);border-radius:3px;color:var(--adfy_woofc_toast_button_text_color);display:inline-flex;font-size:13px;letter-spacing:inherit;padding:5px 10px 6px;text-transform:inherit}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button:hover{background-color:var(--adfy_woofc_toast_button_background_color_hover);color:var(--adfy_woofc_toast_button_text_color_hover)}.notyf .notyf__toast.adfy__woofc-notfy-success .notyf__ripple{background:var(--adfy_woofc_toast_background_color)!important}#adfy__woofc-trigger{align-items:center;border-color:var(--adfy_woofc_toggle_button_border_color);border-style:solid;border-width:1px;bottom:var(--adfy_woofc_toggle_button_vertical_offset);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--adfy_woofc_toggle_button_size);justify-content:center;left:auto;margin:0;padding:0;position:fixed;right:var(--adfy_woofc_toggle_button_horizental_offset);width:var(--adfy_woofc_toggle_button_size);z-index:var(--adfy_woofc_trigger_button_zindex);fill:var(--adfy_woofc_toggle_button_text_color);background-color:var(--adfy_woofc_toggle_button_background_color);border-radius:var(--adfy_woofc_toggle_button_border_radius);box-shadow:0 0 2px rgba(0,0,0,.3);color:var(--adfy_woofc_toggle_button_text_color);cursor:pointer;font-weight:400;line-height:1;transition:all .5s ease}[dir=rtl] #adfy__woofc-trigger{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger[data_display=hidden]{display:none;opacity:0;visibility:hidden}#adfy__woofc-trigger .icon svg{height:var(--adfy_woofc_toggle_button_cart_icon_font_size);width:var(--adfy_woofc_toggle_button_cart_icon_font_size)}#adfy__woofc-trigger .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:3px;bottom:auto;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;font-weight:400;height:23px;justify-content:center;left:-10px;line-height:1;position:absolute;right:auto;top:-5px;transition:all .5s ease-in-out;width:23px}[dir=rtl] #adfy__woofc-trigger .badge{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-left{bottom:auto;left:-10px;right:auto;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-right{bottom:auto;left:auto;right:-10px;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-right{left:-10px;right:auto}#adfy__woofc-trigger .badge.bottom-left{bottom:-5px;left:-10px;right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.bottom-right{bottom:-5px;left:auto;right:-10px;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-right{left:-10px;right:auto}#adfy__woofc-trigger:hover{fill:var(--adfy_woofc_toggle_button_text_color_hover);background-color:var(--adfy_woofc_toggle_button_background_color_hover);border-color:var(--adfy_woofc_toggle_button_border_color_hover);box-shadow:0 0 60px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_text_color_hover)}#adfy__woofc-trigger:hover .badge{background-color:var(--adfy_woofc_toggle_button_badge_background_color_hover);color:var(--adfy_woofc_toggle_button_badge_text_color_hover)}#adfy__woofc-trigger:focus{outline:none}#adfy__woofc-trigger.top-right{bottom:auto;left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset);top:var(--adfy_woofc_toggle_button_vertical_offset)}#adfy__woofc-trigger.top-left,[dir=rtl] #adfy__woofc-trigger.top-right{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger.top-left{bottom:auto;top:var(--adfy_woofc_toggle_button_vertical_offset)}[dir=rtl] #adfy__woofc-trigger.top-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-trigger.bottom-left{bottom:var(--adfy_woofc_toggle_button_vertical_offset);left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger.bottom-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-hide-coupon-container,#adfy__woofc-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-hide-coupon-container svg,#adfy__woofc-hide-shipping-container svg{height:20px;width:20px}#adfy__woofc-hide-coupon-container:hover,#adfy__woofc-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}.adfy_fc__woo-trigger-shortcode-button{line-height:1;position:relative}.adfy_fc__woo-trigger-shortcode-button .icon svg{height:24px;width:24px}.adfy_fc__woo-trigger-shortcode-button .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:20px;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;height:23px;justify-content:center;line-height:1;position:absolute;top:-20px;transition:all .5s ease-in-out;width:23px}.adfy_fc__woo-trigger-shortcode-button .badge.top-right{right:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-right{left:-15px;right:auto}.adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:auto;right:-15px}#adfy__floating-cart{background-color:var(--adfy_woofc_cart_background_color);box-shadow:10px 0 30px rgba(0,0,0,.2);box-sizing:border-box;color:var(--adfy_woofc_base_text_color);display:block;font-size:var(--adfy_woofc_base_text_font_size);position:fixed;transition:all .8s cubic-bezier(.77,0,.18,1) 0s;z-index:var(--adfy_woofc_floating_cart_zindex);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}[dir=rtl] #adfy__floating-cart{box-shadow:-10px 0 30px rgba(0,0,0,.2)}#adfy__floating-cart .adfy_woofc-inner{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;padding:30px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy_woofc-inner{padding:20px}}#adfy__floating-cart[data_type=drawer]{backface-visibility:visible;bottom:0;opacity:1;top:0;visibility:visible;width:var(--adfy_woofc_cart_width)}@media (max-width:575px){#adfy__floating-cart[data_type=drawer]{width:93vw}}#adfy__floating-cart[data_type=modal]{z-index:var(--adfy_woofc_floating_cart_zindex)}#adfy__floating-cart[data_type=drawer][data_position=left]{left:-100vw;right:auto}#adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=right]{left:-100vw;right:auto}.adfy__woofc-visible #adfy__floating-cart{transition:all .6s cubic-bezier(.77,0,.18,1)}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:0;right:auto}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:0}[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right]{left:0;right:auto}#adfy__floating-cart .adfy__woofc-header{align-items:center;border-bottom:1px solid var(--adfy_woofc_border_color);-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 30px;justify-content:space-between;margin-bottom:20px;padding-bottom:15px}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title{align-items:center;color:var(--adfy_woofc_cart_title_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:20px;gap:8px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title .adfy__woofc-badge{align-items:center;background-color:var(--adfy_woofc_cart_title_count_badge_background_color);border-radius:15px;color:var(--adfy_woofc_cart_title_count_badge_text_color);font-size:calc(var(--adfy_woofc_base_text_font_size) - 20%);font-weight:400;line-height:1;padding:7px 10px 8px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button{align-items:center;display:inline-flex;justify-content:center}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc{display:inline-flex;font-weight:400;height:30px;line-height:1;margin:0;padding:0;width:30px;fill:var(--adfy_woofc_cart_close_button_text_color);background-color:transparent;border:none;border-radius:100%;color:var(--adfy_woofc_cart_close_button_text_color)}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc svg{height:22px;width:22px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc:hover{fill:var(--adfy_woofc_cart_close_button_text_color_hover);background-color:transparent;border:none;color:var(--adfy_woofc_cart_close_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-shipping-bar{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-shipping-bar.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text{font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 10px;padding:0}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text .amount{font-weight:700}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars{position:relative}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{background-color:var(--adfy_woofc_shopping_meter_initial_background_color);border-radius:10px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);display:block;height:8px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{height:5px}}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_progress_background_color);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);left:0;position:absolute;right:auto;top:0;transition:width .5s linear;z-index:2}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{left:auto;right:0}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){animation:adfyProgressbar 1s linear infinite;background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}#adfy__floating-cart .adfy__woofc-shipping-bar[data-threashold_reached=true] .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_threashold_reached_background_color)}#adfy__floating-cart #adfy__woofc-cart-errors{background-color:#e1efff;border-radius:5px;color:#387ecd;display:block;line-height:1.5;margin-bottom:30px;padding:15px}#adfy__floating-cart #adfy__woofc-cart-errors.hidden{display:none}#adfy__floating-cart #adfy__woofc-cart-errors.error{background-color:#ffe6e6;color:#f56c6c}#adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{cursor:pointer;display:inline-flex;margin-left:5px}[dir=rtl] #adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{margin-left:0;margin-right:5px}#adfy__floating-cart .adfy__woofc-content{display:flex;flex:1 1 auto;flex-direction:row;flex-direction:column;flex-wrap:wrap;overflow:hidden;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{bottom:0;display:block;left:0;padding:10px 10px 10px 0;position:absolute;right:0;top:0;z-index:5}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{padding:10px 0 10px 10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:30px;column-gap:30px;display:grid;grid-template-columns:100px auto;margin-bottom:30px;position:relative}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:25px;column-gap:25px;margin-bottom:20px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb{border:none;box-shadow:none;margin:0;max-width:100%;padding:0;position:relative;width:100%}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link>img{background-color:var(--adfy_woofc_border_color);border:1px solid var(--adfy_woofc_border_color);border-radius:5px;display:block;max-width:100%;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{align-items:center;background-color:var(--adfy_woofc_cart_product_remove_button_background_color);border:none;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.1);color:var(--adfy_woofc_cart_product_remove_button_text_color);display:inline-flex;height:26px;justify-content:center;margin:0;padding:0;position:absolute;right:-10px;text-decoration:none;top:-10px;width:26px;z-index:1}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{left:-10px;right:auto}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{height:24px;width:24px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item svg{height:16px;width:16px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item:hover{background-color:var(--adfy_woofc_cart_product_remove_button_background_color_hover);color:var(--adfy_woofc_cart_product_remove_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{color:var(--adfy_woofc_cart_product_title_text_color);display:block;font-size:var(--adfy_woofc_cart_product_title_font_size);font-weight:var(--adfy_woofc_cart_product_title_font_weight);line-height:1.3;margin:0 0 10px;padding:0}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{margin-bottom:5px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link{color:var(--adfy_woofc_cart_product_title_text_color)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link:hover{color:var(--adfy_woofc_cart_product_title_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price{margin-bottom:10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price .quantity{align-items:center;border:none;color:var(--adfy_woofc_cart_product_price_quantity_text_color);display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:700;gap:2px;height:auto;margin:0;padding:0;width:auto}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:30px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin:0;padding:5px 10px;width:110px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-inner-spin-button,#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input[type=number]{-moz-appearance:textfield}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field{align-items:center;-webkit-appearance:none;-moz-appearance:none;background:transparent;background-color:transparent;border:none;border-radius:3px;box-shadow:none;color:var(--adfy_woofc_cart_product_quantity_text_color);display:inline-flex;font-size:12px;font-weight:400;height:30px;justify-content:center;margin:0;max-width:50px;min-height:1px;outline:none;padding:0;text-align:center;transition:all .5s ease;width:30px;will-change:width}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field:focus{outline:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button{align-items:center;display:inline-flex;font-size:16px;font-weight:400;height:20px;justify-content:center;line-height:1;margin:0;padding:0;width:20px;fill:var(--adfy_woofc_cart_product_quantity_input_button_text_color);background-color:transparent;border-radius:30px;color:var(--adfy_woofc_cart_product_quantity_input_button_text_color);text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button svg{height:18px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:hover{text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:focus{outline:none}.woocommerce-page #adfy__floating-cart main{margin-left:0;margin-right:0;max-width:100%;padding:0}#adfy__floating-cart .adfy__woofc-colophon{margin-top:0;padding-top:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-weight:400;gap:5px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon{fill:var(--adfy_woofc_base_text_color);line-height:1}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon svg{height:18px;width:18px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary{display:block;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul{align-items:center;border:none;border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .label,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .value{color:var(--adfy_woofc_base_text_color);font-size:var(--adfy_woofc_base_text_font_size);font-weight:400}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li:not(:last-child){border-bottom:1px dotted var(--adfy_woofc_border_color);padding-bottom:10px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.discount .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value span,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value strong{font-weight:700}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary.discount ul{border:1px solid var(--adfy_woofc_border_color);padding:10px 15px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions{-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:repeat(2,1fr)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions.adfy__woofc-fullwidth{-moz-column-gap:0;column-gap:0;grid-template-columns:repeat(1,1fr);justify-content:center}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{align-items:center;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-style:solid;border-width:1px;color:var(--adfy_woofc_primary_button_label_color);display:inline-flex;height:auto;justify-content:center;padding:20px 15px;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{padding:15px 10px}}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button:hover{background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}#adfy__floating-cart #adfy__woofc_empty_cart_section{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;justify-content:center}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon{animation:adfyFloatingCartFadeDown .5s ease}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon svg{display:inline-flex;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color);height:42px;width:42px}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_text{display:inline-flex;margin:0}#adfy__woofc-shipping-container #adfy__woofc-hide-shipping-container{background:transparent;background-color:transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner{display:block;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;padding:0 0 60px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0 0 30px;padding:20px;position:relative}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;margin:0;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li label:hover{cursor:pointer}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner .adfy__woo-shipping-destination{margin:20px 0}#adfy__woofc-shipping-container .shipping-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-shipping-container .shipping-container-header{justify-content:flex-end}}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container svg{display:inline-flex;height:20px;width:20px}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}#adfy__woofc-shipping-container #adfy__woofc-shipping-form{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;margin:30px 0;padding:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .adfy__woofc-shipping-form-elements{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form label{display:block;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form label{margin:0 3px 0 0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=hidden]{display:none;height:0;width:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select{align-items:center;background-color:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form select{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2.select2-container{width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .addonify_floating_cart-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__rendered{color:var(--adfy_woofc_cart_input_text_color);line-height:21px;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:auto;right:5px;top:10px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:5px;right:auto}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown,#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color)}.adfy__woofc-visible .select2-container--default .select2-dropdown{background-color:#fff;border-color:var(--adfy_woofc_cart_input_border_color);border-radius:5px;border-style:solid;border-top-left-radius:8px;border-top-right-radius:8px;border-width:1px;z-index:999999999999}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;box-shadow:none;display:flex;flex-direction:row;flex-wrap:wrap}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field:focus{border-color:#3da6ff;box-shadow:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results{padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{font-size:15px;max-height:300px;padding:0 10px 0 0}[dir=rtl] .adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{padding:0 0 0 10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option{border-radius:5px;display:block;font-size:15px;line-height:1.3;padding:10px}.adfy__woofc-visible .select2-container--default.select2-container--open .select2-dropdown{animation:adfyFloatingCartFadeDown .5s ease}.adfy__woofc-container-canvas{background-color:var(--adfy_woofc_cart_background_color);bottom:0;color:var(--adfy_woofc_base_text_color);display:block;height:100%;margin:0;min-height:100vh;padding:30px;position:absolute;top:0;transition:all .6s cubic-bezier(.77,0,.18,1);width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__woofc-container-canvas[data_display=visible]{transition:all .3s ease}.adfy__woofc-container-canvas[data_display=visible] #adfy__woofc-coupon-form{animation:adfyFloatingCartFadeDown .5s ease-in}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:-100vw;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:auto;right:-100vw}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:-100vw;right:auto}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}#adfy__woofc-coupon-container .coupon-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-coupon-container .coupon-container-header{justify-content:flex-end}}#adfy__woofc-coupon-container #adfy__woofc-coupon-form{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin:0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;padding:20px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{display:block;font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{margin:0 3px 0 0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs .adfy__woofc-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-coupon-container #adfy__woofc-hide-coupon-container{background:transparent;background-color:transparent}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;margin-top:40px;padding:20px;position:relative}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons.hidden{display:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{align-items:center;background-color:var(--adfy_woofc_cart_background_color);display:inline-flex;font-size:15px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 5%);font-weight:400;gap:10px;left:15px;line-height:1.4;padding:5px 10px;position:absolute;right:auto;top:-15px;z-index:1}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{left:auto;right:15px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title svg{height:18px;width:18px;fill:var(--adfy_woofc_base_text_color)}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;list-style:none;margin:10px 0 0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:4px;-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 50px;justify-content:space-between;margin:0;padding:10px 15px;position:relative;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]{align-items:center;background:var(--adfy_woofc_cart_background_color);border:0 solid transparent;border-radius:0;box-shadow:none;box-sizing:border-box;color:var(--adfy_woofc_base_text_color);cursor:default;display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:auto;line-height:1.4;max-width:100%;min-height:1px;padding:0;transition:none;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:focus{box-shadow:none;outline:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:hover{box-shadow:none;text-decoration:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button{align-items:center;border-radius:3px;display:inline-flex;height:30px;justify-content:center;margin:0;padding:0;position:relative;width:50px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button svg{height:18px;width:18px}#adfy__woofc-spinner-container{backface-visibility:hidden;background:var(--adfy_woofc_spinner_container_background);bottom:0;display:block;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) - 1)}#adfy__woofc-spinner-container.visible{backface-visibility:visible;opacity:1;visibility:visible;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 100)}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;justify-content:center;position:relative;width:100%}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner{display:inline-flex;height:32px;overflow:hidden}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner svg{animation:adfyCartSpin 2s ease-in-out infinite both;color:var(--adfy_woofc_spinner_icon_color);display:inline-flex;height:32px;line-height:1;width:32px}#adfy__woofc-overlay{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);backface-visibility:hidden;background:linear-gradient(to right,var(--adfy_woofc_cart_overlay_background_color));bottom:0;cursor:pointer;display:block;height:100%;left:auto;opacity:0;position:fixed;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:0}[dir=rtl] #adfy__woofc-overlay{background:linear-gradient(to left,var(--adfy_woofc_cart_overlay_background_color));left:0;right:auto}.adfy__woofc-visible #adfy__woofc-overlay{backface-visibility:visible;opacity:1;visibility:visible;z-index:var(--adfy_woofc_overlaymask_zindex)}@keyframes adfyFloatingCartFadeIn{0%{opacity:0}40%{opacity:.4}80%{opacity:.8}to{opacity:1}}@keyframes adfyFloatingCartFadeDown{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes adfyFloatingCartSlideToLeft{0%{opacity:0;right:-100vw}to{opacity:1;right:0}}@keyframes adfyFloatingCartSlideToRight{0%{opacity:1;right:0}to{opacity:0;right:-100vw}}@keyframes adfyCartSpin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes adfyProgressbar{0%{background-position-x:1rem}}
    22/*# sourceMappingURL=public.min.css.map */
  • addonify-floating-cart/tags/1.2.11/public/assets/build/public.min.css.map

    r3150428 r3203981  
    1 {"version":3,"sources":["file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_variables.scss","public.min.css","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_classes.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_mixins.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_alert.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_buttons.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_03shopping-meter.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_04alerts.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_05product.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_06footer.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_07empty.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_03form.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_03forms.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_04applied-coupons.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_spinner.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_overlay.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_keyframe.scss"],"names":[],"mappings":"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","file":"public.min.css"}
     1{"version":3,"sources":["file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_variables.scss","public.min.css","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_classes.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_mixins.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_alert.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_buttons.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_03shopping-meter.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_04alerts.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_05product.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_06footer.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_07empty.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_03form.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_03forms.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_04applied-coupons.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_spinner.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_overlay.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_keyframe.scss"],"names":[],"mappings":"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","file":"public.min.css"}
  • addonify-floating-cart/tags/1.2.11/public/assets/build/public.min.js

    r3150428 r3203981  
    1 !function(t){"function"==typeof define&&define.amd?define(t):t()}((function(){"use strict";let t=new Object;t={$:jQuery,action:{toast:null,cart:null},api:{event:null}},window.addonifyFloatingCart=t;const o=addonifyFloatingCartJSObject.ajax_url,e=addonifyFloatingCartJSObject.nonce,n=addonifyFloatingCartJSObject.ajax_refresh_cart_fragments,a=addonifyFloatingCartJSObject.ajax_update_cart_item_action,i=addonifyFloatingCartJSObject.ajax_remove_from_cart_action,d=addonifyFloatingCartJSObject.ajax_restore_in_cart_action,r="1"===addonifyFloatingCartJSObject.open_cart_modal_immediately_after_add_to_cart,c="1"===addonifyFloatingCartJSObject.open_cart_modal_after_click_on_view_cart,s="1"===addonifyFloatingCartJSObject.openCartModalOnTriggerButtonHover,l="1"===addonifyFloatingCartJSObject.hideTriggerButtonIfCartIsEmpty,p=addonifyFloatingCartJSObject.customToggleBtnClass,f="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyShow,u=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDuration,_="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDismissible,g=addonifyFloatingCartJSObject.toast_notification_display_position.split("-"),h="1"===addonifyFloatingCartJSObject.displayToastNotificationButton,y=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyMessage,m=addonifyFloatingCartJSObject.toastNotificationButton,w=addonifyFloatingCartJSObject.ajax_apply_coupon,v=addonifyFloatingCartJSObject.ajax_remove_coupon,C="1"===addonifyFloatingCartJSObject.hideScreenWhenCouponIsApplied,b=addonifyFloatingCartJSObject.updateShippingInfo,E=addonifyFloatingCartJSObject.updateShippingMethod,F=addonifyFloatingCartJSObject.shippingAddressUpdatable,S=addonifyFloatingCartJSObject.states,j="1"===addonifyFloatingCartJSObject.hideScreenWhenShippingAddressUpdated;function O(t){if(!t)throw new Error("Spinner action is required!");const o=document.getElementById("adfy__woofc-spinner-container");o&&("show"===t?(o.classList.add("visible"),o.classList.remove("hidden")):(o.classList.add("hidden"),o.classList.remove("visible")))}addonifyFloatingCartJSObject.hideCartOnOverlayClicked;const{$:A,action:T,api:W}=t;const M=async()=>{O("show");try{const{fragments:a}=await A.ajax({type:"POST",dataType:"json",url:o,data:{action:n,nonce:e}});if(!a)throw new Error("Fragments not fetched! aborting...");return A.each(a,(function(t,o){A(t).replaceWith(o)})),A(document).trigger("wc_update_cart"),t.api.event.cartUpdated(a),a}catch(t){return console.error(t),t}finally{O("hide")}},{$:k,api:x}=t;const{action:J}=t;const{$:q}=t;function D(t){if(!t)throw new Error("Function [setShoppingMeterVisibility] requires action!");const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar");o.length>0&&("hide"===t?o.addClass("adfy__woofc-hidden"):o.removeClass("adfy__woofc-hidden"))}function U(t){if(!t)throw new Error("Function [setTriggerButtonVisibility] requires action!");const o=document.getElementById("adfy__woofc-trigger");o&&o.hasAttribute("data_display")&&("hide"===t?o.setAttribute("data_display","hidden"):o.setAttribute("data_display","visible"))}const{$:L}=t;function I(){L(document).on("click",".adfy__woofc-prevent-default",(function(t){t.preventDefault()}));let o=".adfy__show-woofc";p&&p.length>0&&(o+=", "+p);const e=o.split(", ").map((t=>{const o=t.replace(" ","").trim();return o.startsWith(".")?o:`.${o}`})).join(", ");L(document).on("click",e,(function(o){t.action.cart.open(o)})),L(document).on("mouseover",".adfy__show-woofc",(function(o){s&&t.action.cart.open(o)})),L(document).on("click",".added_to_cart.wc-forward",(function(o){c&&(o.preventDefault(),t.action.cart.open(o))})),L(document).on("click",".adfy__hide-woofc",(function(o){o.preventDefault(),t.action.cart.close(o)})),document.addEventListener("addonifyFloatingCartUpdated",(()=>{(()=>{const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar");o&&(parseInt(o.attr("data_percentage"))>=100?(o.addClass("hide-animation"),t.api.event.shoppingMeterThresholdReached()):o.removeClass("hide-animation"))})()})),document.addEventListener("addonifyFloatingCartItemRestored",(()=>{l&&U("show")}))}const{$:R}=t;let P;function $(t="hide",o="info",e=""){const n=R("#adfy__floating-cart #adfy__woofc-cart-errors"),a=()=>{P&&clearTimeout(P),n.hasClass("error")&&n.removeClass("error"),n.html(" ").addClass("hidden")};"hide"===t?a():e.length>0&&(P&&clearTimeout(P),"error"===o&&n.addClass("error"),n.html(" ").html(e).removeClass("hidden"),P=setTimeout((()=>a()),1e4))}function B(t,o=null){if(!t)throw new Error("Coupon alert action is required!");let e=R("#adfy__floating-cart .adfy__woofc-alert");const n=()=>{let t;clearTimeout(t),t=setTimeout((()=>{R(e).fadeOut(),clearTimeout(t)}),1e4)};if("hide"!==t){if(e.length>0){const t={success:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>',error:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>'};if(!o)throw new Error("Coupon alert data is required!");const{style:e,message:a}=o;if(!e||!a)throw new Error("Coupon alert style & message is required!");let i;switch(e){case"success":i=`<p class="adfy__woofc-alert-text">\n                        ${t.success}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.success").html(" ").html(i).fadeIn(),n();break;case"error":i=`<p class="adfy__woofc-alert-text">\n                        ${t.error}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.error").html(" ").html(i).fadeIn(),n()}}}else n()}function N(){clearTimeout(P);let t=document.getElementById("adfy__woofc-coupon-alerts");t&&t.hasChildNodes()&&(P=setTimeout((function(){R("#adfy__woofc-coupon-alerts").html("")}),1e4))}function V(t="hide",o=null){if("string"!=typeof t)throw new Error("Colophon visibility must be a string value.");const e=document.querySelector(".adfy__woofc-colophon"),n=document.querySelector(".adfy__woofc-cart-summary ul li.discount"),a=document.querySelector(".adfy__woofc-cart-summary ul li.sub-total"),i="adfy__woofc-hidden";if(e&&("show"===t?e.classList.remove(i):e.classList.add(i)),e&&"show"===t){const{discountVisibility:t,subTotalVisibility:e}=o;n&&t&&("show"===t?n.classList.remove(i):n.classList.add(i)),a&&("show"===e?a.classList.remove(i):a.classList.add(i))}}const{$:z}=t;function Q(){z(document).on("added_to_cart",(function(o,e){o.preventDefault(),r&&t.action.cart.open(o),l&&U("show"),f&&function(o){if(!o||"object"!=typeof o)throw new Error("Toast message data invalid!");if(o&&"object"==typeof o){let e,n;const{__:a}=wp.i18n;n=Object.hasOwn(o,"product")?o.product.charAt(0).toUpperCase()+o.product.slice(1):a("Product","addonify-floating-cart"),e=h?y.replace("{product_name}",n)+" "+m:y.replace("{product_name}",n),t.action.toast.dispatch("success",e)}}(e),$("hide"),D("show"),V("show",{discountVisibility:"show",subTotalVisibility:"show"}),t.api.event.cartUpdated(e)})),z(document).on("wc_cart_emptied",(function(o){l&&U("hide"),D("hide"),V("hide"),t.api.event.cartUpdated(o)}))}const H=()=>{const t=document.getElementById("adfy__woofc-scrollbar"),o=t.classList.contains("ps");t&&!o&&new PerfectScrollbar(t,{wheelSpeed:1,wheelPropagation:!0,minScrollbarLength:20})},{$:X}=t,{__:G}=wp.i18n;function K(n,i,d=1){if(!n)throw new Error("Function [updateCartViaAjax] requires current element!");if(!i)throw new Error("Function [updateCartViaAjax] requires action!");let r;switch(i){case"add":r=X(n).next();break;case"sub":r=X(n).prev();break;default:r=X(n)}let c=X(n).attr("data-product_id"),s=X(n).attr("data-cart_item_key"),l=X(n).parents(".adfy__woofc-item");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:a,product_id:c,cart_item_key:s,nonce:e,type:i,quantity:d},success:function(o){if(!o||o.error)throw new Error("Error updating cart via AJAX!");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)}));let n=o.nQuantity;"OoS"===n?(alert("Out of stock range"),r.val(n)):"nil"!==n&&r.val(n),l.find(X(".adfy__woofc-item-price-multiplier-quantity")).html(n),l.unblock(),X(document.body).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){const{__:e}=wp.i18n,n=e("Error processing cart update request!","addonify-floating-cart");throw t.action.toast.dispatch("error",n),new Error(o)},complete:function(){O("hide")}})}const{$:Y}=t;const{$:Z}=t;function tt(){Z(document).on("click","#adfy__woofc-shipping-trigger",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),t.api.event.shippingModalOpened(),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))})),Z(document).on("click","#adfy__woofc-hide-shipping-container",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()})),document.addEventListener("addonifyFloatingCartShippingAddressUpdated",(()=>{j&&setTimeout((()=>{Z("#adfy__woofc-shipping-container").attr("data_display","hidden")}),1e3)})),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){let o=Z(this).val(),e=Z("#addonify_floating_cart_shipping_state"),n=S[o];if(e.siblings("span.select2").remove(),"object"==typeof n&&Object.keys(n).length>0){let t="";for(let o in n)t+='<option value="'+o+'">'+n[o]+"</option>";if("input"===e.prop("tagName").toLowerCase()){let t=e.parent();e.remove();let o=Z(document.createElement("select"));o.addClass("state_select").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("data-placeholder","State / County"),t.append(o),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){t.preventDefault(),"1"===F&&Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})}))}Z("#addonify_floating_cart_shipping_state").html(t)}else if(n instanceof Array&&0===n.length){let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("type","hidden"),t.append(o)}else{let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("placeholder","State / County"),t.append(o)}}))}function ot(){Z(document).on("submit","#adfy__woofc-shipping-form",(function(e){e.preventDefault(),O("show");let n=Z("#addonify_floating_cart_shipping_country").val(),a=Z("#addonify_floating_cart_shipping_state").val(),i=Z("#addonify_floating_cart_shipping_city").val(),d=Z("#addonify_floating_cart_shipping_postcode").val(),r=Z("#addonify-floating-cart-shipping-nonce").val();const{__:c}=wp.i18n;let s=c("Error updating shipping address!.","addonify-floating-cart");Z.ajax({url:o,method:"POST",data:{action:b,calc_shipping_country:n,calc_shipping_state:a,calc_shipping_city:i,calc_shipping_postcode:d,nonce:r},success:function(o){o?(o.fragments&&(Z.each(o.fragments,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),t.api.event.shippingAddressUpdated(o.fragments)),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))):t.action.toast.dispatchToast("error",s)},error:function(o){console.log(o),t.action.toast.dispatchToast("error",s)},complete:function(){O("hide")}})}))}function et(){Z(document).on("change",".shipping_method",(function(n){const{__:a}=wp.i18n;let i=new Object,d=a("Error processing shipping method update request.","addonify-floating-cart");Z("select.shipping_method, :input[name^=shipping_method][type=radio]:checked, :input[name^=shipping_method][type=hidden]").each((function(){i[Z(this).data("index")]=Z(this).val()})),O("show"),Z.ajax({url:o,method:"POST",data:{action:E,nonce:e,shipping_method:i},success:function(o){if(!o||o.error)return void t.action.toast.dispatch("error",d);let e=o.fragments;e&&Z.each(e,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))},error:function(o){console.log(o),t.action.toast.dispatch("error",d)},complete:function(){O("hide")}})}))}document.addEventListener("DOMContentLoaded",(function(){(()=>{if("function"!=typeof PerfectScrollbar)return void console.warn("Info: Addonify Floating Cart, PerfectScrollbar is not defined. Perfect scroll bar won't be initialized.");const t=document.getElementById("adfy__floating-cart");new MutationObserver((t=>{t.length>0&&H()})).observe(t,{attributes:!1,childList:!0,subtree:!0})})()})),function(n){T.cart={open:t=>{t.preventDefault(),A("body").addClass("adfy__woofc-visible"),W.event.cartOpened(t)},close:t=>{t.preventDefault(),A("body").removeClass("adfy__woofc-visible"),W.event.cartClosed(t)},refresh:()=>{M()}},x.event={cartOpened:t=>{k(document).trigger("addonifyFloatingCartOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartOpened"))},cartClosed:t=>{k(document).trigger("addonifyFloatingCartClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartClosed"))},cartUpdated:t=>{k(document).trigger("addonifyFloatingCartUpdated",t),document.dispatchEvent(new CustomEvent("addonifyFloatingCartUpdated",{detail:t}))},cartEmptied:()=>{k(document).trigger("addonifyFloatingCartEmptied"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartEmptied")),k(document).trigger("wc_cart_emptied")},productRemoved:o=>{k(document).trigger("addonifyFloatingCartProductRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRemoved",{detail:o})),t.api.event.cartUpdated(data)},productRestored:o=>{k(document).trigger("addonifyFloatingCartProductRestored",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRestored",{detail:o})),t.api.event.cartUpdated(o)},couponModalOpened:()=>{k(document).trigger("addonifyFloatingCartCouponModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalOpened"))},couponModalClosed:()=>{k(document).trigger("addonifyFloatingCartCouponModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalClosed"))},couponApplied:o=>{k(document).trigger("addonifyFloatingCartCouponApplied",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponApplied",{detail:o})),t.api.event.cartUpdated(o)},couponRemoved:o=>{k(document).trigger("addonifyFloatingCartCouponRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponRemoved",{detail:o})),t.api.event.cartUpdated(o)},shippingModalOpened:()=>{k(document).trigger("addonifyFloatingCartShippingModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalOpened"))},shippingModalClosed:()=>{k(document).trigger("addonifyFloatingCartShippingModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalClosed"))},shippingAddressUpdated:o=>{k(document).trigger("addonifyFloatingCartShippingAddressUpdated",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingAddressUpdated",{detail:o})),t.api.event.cartUpdated(o)},shoppingMeterThresholdReached:()=>{k(document).trigger("addonifyFloatingCartShoppingMeterThresholdReached"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShoppingMeterThresholdReached"))}},J.toast={dispatch:(t="success",o)=>{if("undefined"!=typeof Notyf){let e=new Notyf({duration:u,dismissible:_,ripple:!0,position:{x:g[1],y:g[0]}});if(!o)throw new Error("Notification toast data/message is empty, bailing out...");"error"===t&&e.error({className:"adfy__woofc-notfy-error",message:o}),f&&"success"===t&&e.success({className:"adfy__woofc-notfy-success",message:o})}}},n(document).ready((function(){M(),I(),Q(),X(document).on("click",".adfy__woofc-item .adfy__woofc-inc-quantity",(function(t){t.preventDefault();const o=X(this).prev();(parseInt(o.val())<parseInt(o.attr("max"))||""===o.attr("max"))&&K(this,"add")})),X(document).on("click",".adfy__woofc-item .adfy__woofc-dec-quantity",(function(t){t.preventDefault();const o=X(this).next();parseInt(o.val())<=parseInt(o.attr("min"))||K(this,"sub")})),X(document).on("change",".adfy__woofc-item .adfy__woofc-quantity-input-field",(function(t){t.preventDefault(),K(this,"update",X(this).val())})),X(document).on("click",".adfy__woofc-item .thumb .product-remove",(function(n){n.preventDefault();const a=X(this).attr("data-product_id"),d=X(this).attr("data-cart_item_key"),r=X(this);O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:i,product_id:a,cart_item_key:d,nonce:e},success:function(o){if(!o||o.error)throw new Error("Error removing product from cart!");X(".post-"+a).find("a.wc-forward").remove(),X(".post-"+a).find("a.add_to_cart_button").removeClass("added");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),$("show","info",o.undo_product_link),0===o.cart_items_count&&(t.api.event.cartEmptied(),X(".adfy__woofc-content-entry").html(o.empty_cart_message)),X(document).trigger("removed_from_cart",[o.fragments,o.cart_hash,r]),X(document).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){console.log(o);const e=G("Error processing product removal request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),X(document).on("click","#adfy__woofc_restore_item",(function(n){n.preventDefault();const a=X(this).attr("data-item_key");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:d,cart_item_key:a,nonce:e},success:function(o){if(!o.fragments||o.error)throw new Error("Error restoring product to cart!");const e=o.fragments,n=X(".adfy__woofc-colophon"),a=X(".adfy__woofc-shipping-bar");e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),n.hasClass("adfy__woofc-hidden")&&n.removeClass("adfy__woofc-hidden"),a.hasClass("adfy__woofc-hidden")&&a.removeClass("adfy__woofc-hidden"),t.api.event.productRestored(e),$("hide")},error:function(o){console.log(o);const e=G("Error processing product restore request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),function(){const o=Y("#adfy__woofc-coupon-container");Y(document).on("click","#adfy__woofc-coupon-trigger",(function(e){e.preventDefault(),o.attr("data_display","visible"),t.api.event.couponModalOpened()})),Y(document).on("click","#adfy__woofc-hide-coupon-container",(function(e){e.preventDefault(),o.attr("data_display","hidden"),t.api.event.couponModalClosed()})),document.addEventListener("addonifyFloatingCartCouponApplied",(()=>{C&&setTimeout((()=>{o.attr("data_display","hidden")}),1e3)}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("submit","#adfy__woofc-coupon-form",(function(i){i.preventDefault(),O("show");let d=Y(this).find("input[name=adfy__woofc-coupon-input-field]"),r=d.val();Y.ajax({url:o,method:"post",data:{action:w,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponApplied:e,html:i}=o;e&&(d.val(""),t.api.event.couponApplied(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(o){console.log(o),a=n("Error processing coupon request.","addonify-floating-cart"),t.action.toast.dispatch("error",a),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("click",".adfy__woofc-remove-applied-coupon-button",(function(i){i.preventDefault(),O("show");let d=Y(this).closest("li"),r=Y(this).attr("data-coupon");Y.ajax({url:o,method:"post",data:{action:v,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponRemoved:e,html:i}=o;e&&(d.remove(),t.api.event.couponRemoved(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(t){console.log(t),a=n("Error processing coupon request.","addonify-floating-cart"),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),tt(),ot(),et()}))}(jQuery)}));
     1!function(t){"function"==typeof define&&define.amd?define(t):t()}((function(){"use strict";let t=new Object;t={$:jQuery,action:{toast:null,cart:null},api:{event:null}},window.addonifyFloatingCart=t;const o=addonifyFloatingCartJSObject.ajax_url,e=addonifyFloatingCartJSObject.nonce,n=addonifyFloatingCartJSObject.ajax_refresh_cart_fragments,a=addonifyFloatingCartJSObject.ajax_update_cart_item_action,i=addonifyFloatingCartJSObject.ajax_remove_from_cart_action,d=addonifyFloatingCartJSObject.ajax_restore_in_cart_action,r="1"===addonifyFloatingCartJSObject.open_cart_modal_immediately_after_add_to_cart,c="1"===addonifyFloatingCartJSObject.open_cart_modal_after_click_on_view_cart,s="1"===addonifyFloatingCartJSObject.openCartModalOnTriggerButtonHover,l="1"===addonifyFloatingCartJSObject.hideTriggerButtonIfCartIsEmpty,p=addonifyFloatingCartJSObject.customToggleBtnClass,f="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyShow,u=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDuration,_="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDismissible,g=addonifyFloatingCartJSObject.toast_notification_display_position.split("-"),h="1"===addonifyFloatingCartJSObject.displayToastNotificationButton,y=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyMessage,m=addonifyFloatingCartJSObject.toastNotificationButton,w=addonifyFloatingCartJSObject.ajax_apply_coupon,v=addonifyFloatingCartJSObject.ajax_remove_coupon,C="1"===addonifyFloatingCartJSObject.hideScreenWhenCouponIsApplied,b=addonifyFloatingCartJSObject.updateShippingInfo,E=addonifyFloatingCartJSObject.updateShippingMethod,F=addonifyFloatingCartJSObject.shippingAddressUpdatable,S=addonifyFloatingCartJSObject.states,j="1"===addonifyFloatingCartJSObject.hideScreenWhenShippingAddressUpdated;function O(t){if(!t)throw new Error("Spinner action is required!");const o=document.getElementById("adfy__woofc-spinner-container");o&&("show"===t?(o.classList.add("visible"),o.classList.remove("hidden")):(o.classList.add("hidden"),o.classList.remove("visible")))}addonifyFloatingCartJSObject.hideCartOnOverlayClicked;const{$:A,action:T,api:W}=t;const M=async()=>{O("show");try{const{fragments:a}=await A.ajax({type:"POST",dataType:"json",url:o,data:{action:n,nonce:e}});if(!a)throw new Error("Fragments not fetched! aborting...");return A.each(a,(function(t,o){A(t).replaceWith(o)})),A(document).trigger("wc_update_cart"),t.api.event.cartUpdated(a),a}catch(t){return console.error(t),t}finally{O("hide")}},{$:k,api:x}=t;const{action:J}=t;const{$:q}=t;function D(t){if(!t)throw new Error("Function [setShoppingMeterVisibility] requires action!");const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar");o.length>0&&("hide"===t?o.addClass("adfy__woofc-hidden"):o.removeClass("adfy__woofc-hidden"))}function U(t){if(!t)throw new Error("Function [setTriggerButtonVisibility] requires action!");const o=document.getElementById("adfy__woofc-trigger");o&&o.hasAttribute("data_display")&&("hide"===t?o.setAttribute("data_display","hidden"):o.setAttribute("data_display","visible"))}const{$:L}=t;function I(){L(document).on("click",".adfy__woofc-prevent-default",(function(t){t.preventDefault()}));let o=".adfy__show-woofc";p&&p.length>0&&(o+=", "+p);const e=o.split(", ").map((t=>{const o=t.replace(" ","").trim();return o.startsWith(".")?o:`.${o}`})).join(", ");L(document).on("click",e,(function(o){t.action.cart.open(o)})),L(document).on("mouseover",".adfy__show-woofc",(function(o){s&&t.action.cart.open(o)})),L(document).on("click",".added_to_cart.wc-forward",(function(o){c&&(o.preventDefault(),t.action.cart.open(o))})),L(document).on("click",".adfy__hide-woofc",(function(o){o.preventDefault(),t.action.cart.close(o)})),document.addEventListener("addonifyFloatingCartUpdated",(()=>{(()=>{const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar");o&&(parseInt(o.attr("data_percentage"))>=100?(o.addClass("hide-animation"),t.api.event.shoppingMeterThresholdReached()):o.removeClass("hide-animation"))})()})),document.addEventListener("addonifyFloatingCartItemRestored",(()=>{l&&U("show")}))}const{$:R}=t;let P;function $(t="hide",o="info",e=""){const n=R("#adfy__floating-cart #adfy__woofc-cart-errors"),a=()=>{P&&clearTimeout(P),n.hasClass("error")&&n.removeClass("error"),n.html(" ").addClass("hidden")};"hide"===t?a():e.length>0&&(P&&clearTimeout(P),"error"===o&&n.addClass("error"),n.html(" ").html(e).removeClass("hidden"),P=setTimeout((()=>a()),1e4))}function B(t,o=null){if(!t)throw new Error("Coupon alert action is required!");let e=R("#adfy__floating-cart .adfy__woofc-alert");const n=()=>{let t;clearTimeout(t),t=setTimeout((()=>{R(e).fadeOut(),clearTimeout(t)}),1e4)};if("hide"!==t){if(e.length>0){const t={success:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>',error:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>'};if(!o)throw new Error("Coupon alert data is required!");const{style:e,message:a}=o;if(!e||!a)throw new Error("Coupon alert style & message is required!");let i;switch(e){case"success":i=`<p class="adfy__woofc-alert-text">\n                        ${t.success}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.success").html(" ").html(i).fadeIn(),n();break;case"error":i=`<p class="adfy__woofc-alert-text">\n                        ${t.error}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.error").html(" ").html(i).fadeIn(),n()}}}else n()}function N(){clearTimeout(P);let t=document.getElementById("adfy__woofc-coupon-alerts");t&&t.hasChildNodes()&&(P=setTimeout((function(){R("#adfy__woofc-coupon-alerts").html("")}),1e4))}function V(t="hide",o=null){if("string"!=typeof t)throw new Error("Colophon visibility must be a string value.");const e=document.querySelector(".adfy__woofc-colophon"),n=document.querySelector(".adfy__woofc-cart-summary ul li.discount"),a=document.querySelector(".adfy__woofc-cart-summary ul li.sub-total"),i="adfy__woofc-hidden";if(e&&("show"===t?e.classList.remove(i):e.classList.add(i)),e&&"show"===t){const{discountVisibility:t,subTotalVisibility:e}=o;n&&t&&("show"===t?n.classList.remove(i):n.classList.add(i)),a&&("show"===e?a.classList.remove(i):a.classList.add(i))}}const{$:z}=t;function Q(){z(document).on("added_to_cart",(function(o,e){o.preventDefault(),r&&t.action.cart.open(o),l&&U("show"),f&&function(o){if(!o||"object"!=typeof o)throw new Error("Toast message data invalid!");if(o&&"object"==typeof o){let e,n;const{__:a}=wp.i18n;n=Object.hasOwn(o,"product")?o.product.charAt(0).toUpperCase()+o.product.slice(1):a("Product","addonify-floating-cart"),e=h?y.replace("{product_name}",n)+" "+m:y.replace("{product_name}",n),t.action.toast.dispatch("success",e)}}(e),$("hide"),D("show"),V("show",{discountVisibility:"show",subTotalVisibility:"show"}),t.api.event.cartUpdated(e)})),z(document).on("wc_cart_emptied",(function(o){l&&U("hide"),D("hide"),V("hide"),t.api.event.cartUpdated(o)}))}const H=()=>{const t=document.getElementById("adfy__woofc-scrollbar"),o=t.classList.contains("ps");t&&!o&&new PerfectScrollbar(t,{wheelSpeed:1,wheelPropagation:!0,minScrollbarLength:20})},{$:X}=t,{__:G}=wp.i18n;function K(n,i,d=1){if(!n)throw new Error("Function [updateCartViaAjax] requires current element!");if(!i)throw new Error("Function [updateCartViaAjax] requires action!");let r;switch(i){case"add":r=X(n).next();break;case"sub":r=X(n).prev();break;default:r=X(n)}let c=X(n).attr("data-product_id"),s=X(n).attr("data-cart_item_key"),l=X(n).parents(".adfy__woofc-item");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:a,product_id:c,cart_item_key:s,nonce:e,type:i,quantity:d},success:function(o){if(!o||o.error)throw new Error("Error updating cart via AJAX!");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)}));let n=o.nQuantity;"OoS"===n?(alert("Out of stock range"),r.val(n)):"nil"!==n&&r.val(n),l.find(X(".adfy__woofc-item-price-multiplier-quantity")).html(n),l.unblock(),X(document.body).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){const{__:e}=wp.i18n,n=e("Error processing cart update request!","addonify-floating-cart");throw t.action.toast.dispatch("error",n),new Error(o)},complete:function(){O("hide")}})}const{$:Y}=t;const{$:Z}=t;function tt(){Z(document).on("click","#adfy__woofc-shipping-trigger",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),t.api.event.shippingModalOpened(),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))})),Z(document).on("click","#adfy__woofc-hide-shipping-container",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()})),document.addEventListener("addonifyFloatingCartShippingAddressUpdated",(()=>{j&&setTimeout((()=>{Z("#adfy__woofc-shipping-container").attr("data_display","hidden")}),1e3)})),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){let o=Z(this).val(),e=Z("#addonify_floating_cart_shipping_state"),n=S[o];if(e.siblings("span.select2").remove(),"object"==typeof n&&Object.keys(n).length>0){let t="";for(let o in n)t+='<option value="'+o+'">'+n[o]+"</option>";if("input"===e.prop("tagName").toLowerCase()){let t=e.parent();e.remove();let o=Z(document.createElement("select"));o.addClass("state_select").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("data-placeholder","State / County"),t.append(o),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){t.preventDefault(),"1"===F&&Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})}))}Z("#addonify_floating_cart_shipping_state").html(t)}else if(n instanceof Array&&0===n.length){let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("type","hidden"),t.append(o)}else{let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("placeholder","State / County"),t.append(o)}}))}function ot(){Z(document).on("submit","#adfy__woofc-shipping-form",(function(e){e.preventDefault(),O("show");let n=Z("#addonify_floating_cart_shipping_country").val(),a=Z("#addonify_floating_cart_shipping_state").val(),i=Z("#addonify_floating_cart_shipping_city").val(),d=Z("#addonify_floating_cart_shipping_postcode").val(),r=Z("#addonify-floating-cart-shipping-nonce").val();const{__:c}=wp.i18n;let s=c("Error updating shipping address!.","addonify-floating-cart");Z.ajax({url:o,method:"POST",data:{action:b,calc_shipping_country:n,calc_shipping_state:a,calc_shipping_city:i,calc_shipping_postcode:d,nonce:r},success:function(o){o?(o.fragments&&(Z.each(o.fragments,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),t.api.event.shippingAddressUpdated(o.fragments)),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))):t.action.toast.dispatchToast("error",s)},error:function(o){console.log(o),t.action.toast.dispatchToast("error",s)},complete:function(){O("hide")}})}))}function et(){Z(document).on("change",".shipping_method",(function(n){const{__:a}=wp.i18n;let i=new Object,d=a("Error processing shipping method update request.","addonify-floating-cart");Z("select.shipping_method, :input[name^=shipping_method][type=radio]:checked, :input[name^=shipping_method][type=hidden]").each((function(){i[Z(this).data("index")]=Z(this).val()})),O("show"),Z.ajax({url:o,method:"POST",data:{action:E,nonce:e,shipping_method:i},success:function(o){if(!o||o.error)return void t.action.toast.dispatch("error",d);let e=o.fragments;e&&Z.each(e,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()},error:function(o){console.log(o),t.action.toast.dispatch("error",d)},complete:function(){O("hide")}})}))}document.addEventListener("DOMContentLoaded",(function(){(()=>{if("function"!=typeof PerfectScrollbar)return void console.warn("Info: Addonify Floating Cart, PerfectScrollbar is not defined. Perfect scroll bar won't be initialized.");const t=document.getElementById("adfy__floating-cart");new MutationObserver((t=>{t.length>0&&H()})).observe(t,{attributes:!1,childList:!0,subtree:!0})})()})),function(n){T.cart={open:t=>{t.preventDefault(),A("body").addClass("adfy__woofc-visible"),W.event.cartOpened(t)},close:t=>{t.preventDefault(),A("body").removeClass("adfy__woofc-visible"),W.event.cartClosed(t)},refresh:()=>{M()}},x.event={cartOpened:t=>{k(document).trigger("addonifyFloatingCartOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartOpened"))},cartClosed:t=>{k(document).trigger("addonifyFloatingCartClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartClosed"))},cartUpdated:t=>{k(document).trigger("addonifyFloatingCartUpdated",t),document.dispatchEvent(new CustomEvent("addonifyFloatingCartUpdated",{detail:t}))},cartEmptied:()=>{k(document).trigger("addonifyFloatingCartEmptied"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartEmptied")),k(document).trigger("wc_cart_emptied")},productRemoved:o=>{k(document).trigger("addonifyFloatingCartProductRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRemoved",{detail:o})),t.api.event.cartUpdated(data)},productRestored:o=>{k(document).trigger("addonifyFloatingCartProductRestored",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRestored",{detail:o})),t.api.event.cartUpdated(o)},couponModalOpened:()=>{k(document).trigger("addonifyFloatingCartCouponModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalOpened"))},couponModalClosed:()=>{k(document).trigger("addonifyFloatingCartCouponModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalClosed"))},couponApplied:o=>{k(document).trigger("addonifyFloatingCartCouponApplied",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponApplied",{detail:o})),t.api.event.cartUpdated(o)},couponRemoved:o=>{k(document).trigger("addonifyFloatingCartCouponRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponRemoved",{detail:o})),t.api.event.cartUpdated(o)},shippingModalOpened:()=>{k(document).trigger("addonifyFloatingCartShippingModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalOpened"))},shippingModalClosed:()=>{k(document).trigger("addonifyFloatingCartShippingModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalClosed"))},shippingAddressUpdated:o=>{k(document).trigger("addonifyFloatingCartShippingAddressUpdated",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingAddressUpdated",{detail:o})),t.api.event.cartUpdated(o)},shoppingMeterThresholdReached:()=>{k(document).trigger("addonifyFloatingCartShoppingMeterThresholdReached"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShoppingMeterThresholdReached"))}},J.toast={dispatch:(t="success",o)=>{if("undefined"!=typeof Notyf){let e=new Notyf({duration:u,dismissible:_,ripple:!0,position:{x:g[1],y:g[0]}});if(!o)throw new Error("Notification toast data/message is empty, bailing out...");"error"===t&&e.error({className:"adfy__woofc-notfy-error",message:o}),f&&"success"===t&&e.success({className:"adfy__woofc-notfy-success",message:o})}}},n(document).ready((function(){M(),I(),Q(),X(document).on("click",".adfy__woofc-item .adfy__woofc-inc-quantity",(function(t){t.preventDefault();const o=X(this).prev();(parseInt(o.val())<parseInt(o.attr("max"))||""===o.attr("max"))&&K(this,"add")})),X(document).on("click",".adfy__woofc-item .adfy__woofc-dec-quantity",(function(t){t.preventDefault();const o=X(this).next();parseInt(o.val())<=parseInt(o.attr("min"))||K(this,"sub")})),X(document).on("change",".adfy__woofc-item .adfy__woofc-quantity-input-field",(function(t){t.preventDefault(),K(this,"update",X(this).val())})),X(document).on("click",".adfy__woofc-item .thumb .product-remove",(function(n){n.preventDefault();const a=X(this).attr("data-product_id"),d=X(this).attr("data-cart_item_key"),r=X(this);O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:i,product_id:a,cart_item_key:d,nonce:e},success:function(o){if(!o||o.error)throw new Error("Error removing product from cart!");X(".post-"+a).find("a.wc-forward").remove(),X(".post-"+a).find("a.add_to_cart_button").removeClass("added");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),$("show","info",o.undo_product_link),0===o.cart_items_count&&(t.api.event.cartEmptied(),X(".adfy__woofc-content-entry").html(o.empty_cart_message)),X(document).trigger("removed_from_cart",[o.fragments,o.cart_hash,r]),X(document).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){console.log(o);const e=G("Error processing product removal request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),X(document).on("click","#adfy__woofc_restore_item",(function(n){n.preventDefault();const a=X(this).attr("data-item_key");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:d,cart_item_key:a,nonce:e},success:function(o){if(!o.fragments||o.error)throw new Error("Error restoring product to cart!");const e=o.fragments,n=X(".adfy__woofc-colophon"),a=X(".adfy__woofc-shipping-bar");e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),n.hasClass("adfy__woofc-hidden")&&n.removeClass("adfy__woofc-hidden"),a.hasClass("adfy__woofc-hidden")&&a.removeClass("adfy__woofc-hidden"),t.api.event.productRestored(e),$("hide")},error:function(o){console.log(o);const e=G("Error processing product restore request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),function(){const o=Y("#adfy__woofc-coupon-container");Y(document).on("click","#adfy__woofc-coupon-trigger",(function(e){e.preventDefault(),o.attr("data_display","visible"),t.api.event.couponModalOpened()})),Y(document).on("click","#adfy__woofc-hide-coupon-container",(function(e){e.preventDefault(),o.attr("data_display","hidden"),t.api.event.couponModalClosed()})),document.addEventListener("addonifyFloatingCartCouponApplied",(()=>{C&&setTimeout((()=>{o.attr("data_display","hidden")}),1e3)}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("submit","#adfy__woofc-coupon-form",(function(i){i.preventDefault(),O("show");let d=Y(this).find("input[name=adfy__woofc-coupon-input-field]"),r=d.val();Y.ajax({url:o,method:"post",data:{action:w,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponApplied:e,html:i}=o;e&&(d.val(""),t.api.event.couponApplied(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(o){console.log(o),a=n("Error processing coupon request.","addonify-floating-cart"),t.action.toast.dispatch("error",a),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("click",".adfy__woofc-remove-applied-coupon-button",(function(i){i.preventDefault(),O("show");let d=Y(this).closest("li"),r=Y(this).attr("data-coupon");Y.ajax({url:o,method:"post",data:{action:v,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponRemoved:e,html:i}=o;e&&(d.remove(),t.api.event.couponRemoved(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(t){console.log(t),a=n("Error processing coupon request.","addonify-floating-cart"),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),tt(),ot(),et()}))}(jQuery)}));
  • addonify-floating-cart/tags/1.2.11/public/class-addonify-floating-cart-public.php

    r3150428 r3203981  
    13501350    }
    13511351}
    1352 
    1353 
  • addonify-floating-cart/tags/1.2.11/public/partials/cart-sections/footer.php

    r3150428 r3203981  
    145145                            <?php
    146146                            if ( (bool) WC()->cart->show_shipping() && $show_shipping_cost ) {
    147                                 WC()->cart->calculate_shipping();
    148                                 if ( get_option( 'woocommerce_tax_display_cart' ) === 'incl' ) {
    149                                     if ( WC()->customer->get_shipping_country() !== 'default' ) {
    150                                         $shipping_total = ( absint( WC()->cart->get_shipping_total() ) > 0 ) ? ( wc_price( WC()->cart->get_shipping_total() ) ) : wc_price( 0 );
     147
     148                                $total = esc_html__( 'Free!', 'addonify-floating-cart' );
     149
     150                                if ( 0 < WC()->cart->get_shipping_total() ) {
     151
     152                                    if ( WC()->cart->display_prices_including_tax() ) {
     153                                        $total = wc_price( WC()->cart->shipping_total + WC()->cart->shipping_tax_total );
     154
     155                                        if ( WC()->cart->shipping_tax_total > 0 && ! wc_prices_include_tax() ) {
     156                                            $total .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>';
     157                                        }
    151158                                    } else {
    152                                         $shipping_total = ( absint( WC()->cart->get_shipping_total() ) > 0 ) ? ( wc_price( WC()->cart->get_shipping_total() ) ) : '-';
    153                                     }
    154                                 } else { // phpcs:ignore
    155                                     if ( WC()->customer->get_shipping_country() !== 'default' ) {
    156                                         $shipping_total = ( WC()->cart->get_cart_shipping_total() === __( 'Free!', 'woocommerce' ) ) ? wc_price( 0 ) : WC()->cart->get_cart_shipping_total();
    157                                     } else {
    158                                         $shipping_total = ( WC()->cart->get_cart_shipping_total() === __( 'Free!', 'woocommerce' ) ) ? '-' : WC()->cart->get_cart_shipping_total();
     159                                        $total = wc_price( WC()->cart->shipping_total );
     160
     161                                        if ( WC()->cart->shipping_tax_total > 0 && wc_prices_include_tax() ) {
     162                                            $total .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
     163                                        }
    159164                                    }
    160165                                }
    161166                            } else {
    162                                 $shipping_total = '-';
     167                                $total = '-';
    163168                            }
    164169
    165                             echo wp_kses_post( $shipping_total ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     170                            echo wp_kses_post( $total ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    166171                            ?>
    167172                        </span>
  • addonify-floating-cart/tags/1.2.11/public/partials/cart-sections/shipping.php

    r3017269 r3203981  
    5151                        );
    5252
    53                         echo wc_cart_totals_shipping_method_label( $method ); // phpcs:ignore
     53                        printf(
     54                            '<label for="shipping_method_%1$s_%2$s">%3$s</label>',
     55                            esc_attr( $index ),
     56                            esc_attr( sanitize_title( $method->id ) ),
     57                            wc_cart_totals_shipping_method_label( $method ) // phpcs:ignore
     58                        );
    5459                    }
    5560
  • addonify-floating-cart/trunk/README.txt

    r3150428 r3203981  
    55Requires at least: 6.0.0
    66Requires PHP: 7.4
    7 Tested up to: 6.6.1
    8 Stable tag: 1.2.10
     7Tested up to: 6.7.1
     8Stable tag: 1.2.11
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
     12Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page.
    1313
    1414== Description ==
    1515
    16 Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
     16(Addonify Floating Cart)[https://addonify.com/product/addonify-floating-cart-for-woocommerce/] is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
    1717
    1818Addonify Floating Cart is packed with lots of features and functionalities. The necessary cart actions such as adding product into the cart, removing product from the cart with undo functionality, updating cart quantities, applying coupon discounts etc. The sidebar shopping cart can be toggled on floating cart button click, or Add to Cart button click, or toast notification button click, or View Cart button click.
     
    133133== Changelog ==
    134134
    135 = 1.2.10 - 12 September, 2024 =
     135= 1.2.11 - 07 December, 2024 =
     136
     137- Fixed:   Issue of shipping cost not displaying tax when `Including tax` is selected for `Display prices during cart and checkout` option.
     138- Removed: Unwanted files and codes.
     139- Updated: Shipping method and address update modal is closed after shipping method is updated.
     140- Updated: Plugin's short description. [315](https://github.com/addonify/addonify-floating-cart/issues/315)
     141- Updated: UDP agent to v1.0.2.
     142- Tested:  Up to WordPress version 6.7.1 and WooCommerce version 9.4.2.
     143
     144= 1.2.10 - 10 September, 2024 =
    136145
    137146- Added: Option to automatically hide screen when coupon is applied.
     
    139148- Fixed: Nonce validation error.
    140149- Fixed: Shipping cost when shipping method is not selected.
    141 - Tested: Up to tto WordPress version 6.6.1
     150- Tested: Up to WordPress version 6.6.1
    142151- Tested: Up to WooCommerce version 9.2.3.
    143152
  • addonify-floating-cart/trunk/addonify-floating-cart.php

    r3150428 r3203981  
    1010 * Plugin Name:       Addonify Floating Cart For WooCommerce
    1111 * Plugin URI:        https://addonify.com/addonify-floating-cart
    12  * Description:       Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items.
    13  * Version:           1.2.10
     12 * Description:       Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page.
     13 * Version:           1.2.11
    1414 * Requires at least: 6.0.0
    1515 * Requires PHP:      7.4
    16  * Tested up to:      6.6.1
     16 * Tested up to:      6.7.1
    1717 * Author:            Addonify
    1818 * Author URI:        https://addonify.com/
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.10' );
     36define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.11' );
    3737define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) );
    3838define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) );
    3939define( 'ADDONIFY_FLOATING_CART_DB_INITIALS', 'addonify_fc_' );
    40 
    41 /**
    42  * The code that runs during plugin activation.
    43  * This action is documented in includes/class-addonify-floating-cart-activator.php
    44  */
    45 function activate_addonify_floating_cart() {
    46     require_once plugin_dir_path( __FILE__ ) . 'includes/class-addonify-floating-cart-activator.php';
    47     Addonify_Floating_Cart_Activator::activate();
    48 }
    49 
    50 /**
    51  * The code that runs during plugin deactivation.
    52  * This action is documented in includes/class-addonify-floating-cart-deactivator.php
    53  */
    54 function deactivate_addonify_floating_cart() {
    55     require_once plugin_dir_path( __FILE__ ) . 'includes/class-addonify-floating-cart-deactivator.php';
    56     Addonify_Floating_Cart_Deactivator::deactivate();
    57 }
    58 
    59 register_activation_hook( __FILE__, 'activate_addonify_floating_cart' );
    60 register_deactivation_hook( __FILE__, 'deactivate_addonify_floating_cart' );
    6140
    6241/**
  • addonify-floating-cart/trunk/includes/class-addonify-floating-cart-i18n.php

    r2784334 r3203981  
    3939            dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
    4040        );
    41 
    4241    }
    4342}
  • addonify-floating-cart/trunk/includes/class-addonify-floating-cart-loader.php

    r2784334 r3203981  
    5050        $this->actions = array();
    5151        $this->filters = array();
    52 
    5352    }
    5453
     
    108107
    109108        return $hooks;
    110 
    111109    }
    112110
     
    127125            add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
    128126        }
    129 
    130127    }
    131 
    132128}
  • addonify-floating-cart/trunk/includes/functions/fields/cart-buttons.php

    r3017269 r3203981  
    6565    add_filter(
    6666        'addonify_floating_cart_settings_fields',
    67         function( $settings ) {
     67        function ( $settings ) {
    6868            return array_merge( $settings, addonify_floating_cart_buttons_general_settings() );
    6969        }
  • addonify-floating-cart/trunk/includes/functions/fields/cart-display.php

    r3017269 r3203981  
    4848    add_filter(
    4949        'addonify_floating_cart_settings_fields',
    50         function( $settings ) {
     50        function ( $settings ) {
    5151            return array_merge( $settings, addonify_floating_cart_cart_display_settings() );
    5252        }
     
    213213    add_filter(
    214214        'addonify_floating_cart_settings_fields',
    215         function( $settings ) {
     215        function ( $settings ) {
    216216            return array_merge( $settings, addonify_floating_cart_cart_display_designs() );
    217217        }
     
    374374    add_filter(
    375375        'addonify_floating_cart_settings_fields',
    376         function( $settings ) {
     376        function ( $settings ) {
    377377            return array_merge( $settings, addonify_floating_cart_cart_buttons_display_designs() );
    378378        }
     
    445445    add_filter(
    446446        'addonify_floating_cart_settings_fields',
    447         function( $settings ) {
     447        function ( $settings ) {
    448448            return array_merge( $settings, addonify_floating_cart_cart_misc_display_designs() );
    449449        }
     
    538538    add_filter(
    539539        'addonify_floating_cart_settings_fields',
    540         function( $settings ) {
     540        function ( $settings ) {
    541541            return array_merge( $settings, addonify_floating_cart_cart_products_display_designs() );
    542542        }
  • addonify-floating-cart/trunk/includes/functions/fields/cart-header.php

    r3017269 r3203981  
    6666    add_filter(
    6767        'addonify_floating_cart_settings_fields',
    68         function( $settings ) {
     68        function ( $settings ) {
    6969            return array_merge( $settings, addonify_floating_cart_header_general_settings() );
    7070        }
  • addonify-floating-cart/trunk/includes/functions/fields/cart-items.php

    r3017269 r3203981  
    5757    add_filter(
    5858        'addonify_floating_cart_settings_fields',
    59         function( $settings ) {
     59        function ( $settings ) {
    6060            return array_merge( $settings, addonify_floating_cart_items_general_settings() );
    6161        }
  • addonify-floating-cart/trunk/includes/functions/fields/cart-subtotals.php

    r3017269 r3203981  
    6363    add_filter(
    6464        'addonify_floating_cart_settings_fields',
    65         function( $settings ) {
     65        function ( $settings ) {
    6666            return array_merge( $settings, addonify_floating_cart_subtotals_general_settings() );
    6767        }
  • addonify-floating-cart/trunk/includes/functions/fields/cart.php

    r3017269 r3203981  
    4848            // @since 1.2.4
    4949            'enable_cart_labels_from_plugin'           => array(
    50                 'label'     => esc_html__( 'Display labels from plugin', 'addonify-floating-cart' ),
    51                 'type'      => 'switch',
    52                 'description' => esc_html__( 'Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings.' ),
    53                 'dependent' => array( 'enable_floating_cart' ),
    54                 'value'     => addonify_floating_cart_get_option( 'enable_cart_labels_from_plugin' ),
     50                'label'       => esc_html__( 'Display labels from plugin', 'addonify-floating-cart' ),
     51                'type'        => 'switch',
     52                'description' => esc_html__( 'Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings.', 'addonify-floating-cart' ),
     53                'dependent'   => array( 'enable_floating_cart' ),
     54                'value'       => addonify_floating_cart_get_option( 'enable_cart_labels_from_plugin' ),
    5555            ),
    5656        );
     
    5959    add_filter(
    6060        'addonify_floating_cart_settings_fields',
    61         function( $settings ) {
     61        function ( $settings ) {
    6262            return array_merge( $settings, addonify_floating_cart_cart_options_settings() );
    6363        }
     
    8787    add_filter(
    8888        'addonify_floating_cart_settings_fields',
    89         function( $settings ) {
     89        function ( $settings ) {
    9090            return array_merge( $settings, addonify_floating_cart_cart_styles_settings_fields() );
    9191        }
  • addonify-floating-cart/trunk/includes/functions/fields/coupon-modal.php

    r3150428 r3203981  
    2121        return array(
    2222            // @since 1.2.4
    23             'coupon_form_toggler_text'       => array(
     23            'coupon_form_toggler_text'        => array(
    2424                'label'     => esc_html__( 'Coupon form toggle link label', 'addonify-floating-cart' ),
    2525                'type'      => 'text',
     
    2828            ),
    2929            // @since 1.2.6
    30             'coupon_field_label'             => array(
     30            'coupon_field_label'              => array(
    3131                'label'     => esc_html__( 'Coupon field label', 'addonify-floating-cart' ),
    3232                'type'      => 'text',
     
    3535            ),
    3636            // @since 1.2.4
    37             'coupon_field_placeholder'       => array(
     37            'coupon_field_placeholder'        => array(
    3838                'label'     => esc_html__( 'Coupon field placeholder', 'addonify-floating-cart' ),
    3939                'type'      => 'text',
     
    4141                'value'     => addonify_floating_cart_get_option( 'coupon_field_placeholder' ),
    4242            ),
    43             'cart_apply_coupon_button_label' => array(
     43            'cart_apply_coupon_button_label'  => array(
    4444                'label'       => esc_html__( 'Coupon apply button label', 'addonify-floating-cart' ),
    4545                'type'        => 'text',
     
    4848                'value'       => addonify_floating_cart_get_option( 'cart_apply_coupon_button_label' ),
    4949            ),
    50             'display_applied_coupons'        => array(
     50            'display_applied_coupons'         => array(
    5151                'label'       => esc_html__( 'Display applied coupons', 'addonify-floating-cart' ),
    5252                'description' => esc_html__( 'Enable this option to display all applied coupons.', 'addonify-floating-cart' ),
     
    5656            ),
    5757            // @since 1.2.4
    58             'applied_coupons_list_title'     => array(
     58            'applied_coupons_list_title'      => array(
    5959                'label'     => esc_html__( 'Applied coupons list title', 'addonify-floating-cart' ),
    6060                'type'      => 'text',
     
    6363            ),
    6464            // @since 1.2.6
    65             'coupon_removed_message'         => array(
     65            'coupon_removed_message'          => array(
    6666                'label'     => esc_html__( 'Coupon removal message', 'addonify-floating-cart' ),
    6767                'type'      => 'text',
     
    7070            ),
    7171            // @since 1.2.10
    72             'hide_screen_when_coupon_applied'         => array(
     72            'hide_screen_when_coupon_applied' => array(
    7373                'label'     => esc_html__( 'Automatically hide screen when coupon is applied', 'addonify-floating-cart' ),
    7474                'type'      => 'switch',
     
    8181    add_filter(
    8282        'addonify_floating_cart_settings_fields',
    83         function( $settings ) {
     83        function ( $settings ) {
    8484            return array_merge( $settings, addonify_floating_cart_coupon_modal_general_settings() );
    8585        }
  • addonify-floating-cart/trunk/includes/functions/fields/custom-css.php

    r3017269 r3203981  
    3434    add_filter(
    3535        'addonify_floating_cart_settings_fields',
    36         function( $settings ) {
     36        function ( $settings ) {
    3737            return array_merge( $settings, addonify_floating_cart_custom_css_settings_fields() );
    3838        }
  • addonify-floating-cart/trunk/includes/functions/fields/miscellaneous.php

    r3017269 r3203981  
    5353    add_filter(
    5454        'addonify_floating_cart_settings_fields',
    55         function( $settings ) {
     55        function ( $settings ) {
    5656            return array_merge( $settings, addonify_floating_cart_misc_settings() );
    5757        }
  • addonify-floating-cart/trunk/includes/functions/fields/shipping.php

    r3150428 r3203981  
    115115    add_filter(
    116116        'addonify_floating_cart_settings_fields',
    117         function( $settings ) {
     117        function ( $settings ) {
    118118            return array_merge( $settings, addonify_floating_cart_shipping_general_settings() );
    119119        }
  • addonify-floating-cart/trunk/includes/functions/fields/shopping-meter.php

    r3017269 r3203981  
    6767    add_filter(
    6868        'addonify_floating_cart_settings_fields',
    69         function( $settings ) {
     69        function ( $settings ) {
    7070            return array_merge( $settings, addonify_floating_cart_shopping_meter_general_settings() );
    7171        }
  • addonify-floating-cart/trunk/includes/functions/fields/toast-notification.php

    r3017269 r3203981  
    9090    add_filter(
    9191        'addonify_floating_cart_settings_fields',
    92         function( $settings ) {
     92        function ( $settings ) {
    9393            return array_merge( $settings, addonify_floating_cart_toast_notification_settings() );
    9494        }
     
    188188    add_filter(
    189189        'addonify_floating_cart_settings_fields',
    190         function( $settings ) {
     190        function ( $settings ) {
    191191            return array_merge( $settings, addonify_floating_cart_toast_notification_designs() );
    192192        }
  • addonify-floating-cart/trunk/includes/functions/fields/toggle-button.php

    r3064287 r3203981  
    8888    add_filter(
    8989        'addonify_floating_cart_settings_fields',
    90         function( $settings ) {
     90        function ( $settings ) {
    9191            return array_merge( $settings, addonify_floating_cart_toggle_cart_button_settings() );
    9292        }
     
    250250    add_filter(
    251251        'addonify_floating_cart_settings_fields',
    252         function( $settings ) {
     252        function ( $settings ) {
    253253            return array_merge( $settings, addonify_floating_cart_toggle_cart_button_designs() );
    254254        }
  • addonify-floating-cart/trunk/includes/functions/settings.php

    r3150428 r3203981  
    1313 * Load general setting fields for floating cart.
    1414 */
    15 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart.php';
     15require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart.php';
    1616/**
    1717 * Load general setting fields for cart header.
    1818 */
    19 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-header.php';
     19require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-header.php';
    2020/**
    2121 * Load general setting fields for cart items/products.
    2222 */
    23 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-items.php';
     23require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-items.php';
    2424/**
    2525 * Load general setting fields for cart subtotals.
    2626 */
    27 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-subtotals.php';
     27require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-subtotals.php';
    2828/**
    2929 * Load general setting fields for cart buttons.
    3030 */
    31 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-buttons.php';
     31require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-buttons.php';
    3232/**
    3333 * Load setting fields for coupon modal.
    3434 */
    35 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/coupon-modal.php';
     35require_once plugin_dir_path( __DIR__ ) . 'functions/fields/coupon-modal.php';
    3636/**
    3737 * Load setting fields for shipping modal.
    3838 */
    39 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/shipping.php';
     39require_once plugin_dir_path( __DIR__ ) . 'functions/fields/shipping.php';
    4040/**
    4141 * Load general setting fields for cart miscellaneous.
    4242 */
    43 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/miscellaneous.php';
     43require_once plugin_dir_path( __DIR__ ) . 'functions/fields/miscellaneous.php';
    4444/**
    4545 * Load setting fields for floating cart toggle button.
    4646 */
    47 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/toggle-button.php';
     47require_once plugin_dir_path( __DIR__ ) . 'functions/fields/toggle-button.php';
    4848/**
    4949 * Load setting fields for toast notification.
    5050 */
    51 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/toast-notification.php';
     51require_once plugin_dir_path( __DIR__ ) . 'functions/fields/toast-notification.php';
    5252/**
    5353 * Load setting fields for cart content.
    5454 */
    55 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/cart-display.php';
     55require_once plugin_dir_path( __DIR__ ) . 'functions/fields/cart-display.php';
    5656/**
    5757 * Load setting fields for shopping meter.
    5858 */
    59 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/shopping-meter.php';
     59require_once plugin_dir_path( __DIR__ ) . 'functions/fields/shopping-meter.php';
    6060/**
    6161 * Load setting fields for adding Custom CSS.
    6262 */
    63 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'functions/fields/custom-css.php';
     63require_once plugin_dir_path( __DIR__ ) . 'functions/fields/custom-css.php';
    6464
    6565/**
     
    201201            'cart_modal_buttons_font_size'                 => 14,
    202202            'cart_modal_buttons_font_weight'               => '400',
     203            'cart_modal_buttons_letter_spacing'            => 0.25,
     204            'cart_modal_buttons_text_transform'            => 'none',
     205            'cart_modal_buttons_border_radius'             => 3,
    203206            'cart_modal_primary_button_background_color'   => '',
    204207            'cart_modal_primary_button_label_color'        => '',
     
    223226            'cart_shopping_meter_threashold_reached_background_color' => '',
    224227
    225             'cart_modal_buttons_font_size'                 => 14,
    226             'cart_modal_buttons_font_weight'               => '400',
    227             'cart_modal_buttons_letter_spacing'            => 0.25,
    228             'cart_modal_buttons_text_transform'            => 'none',
    229             'cart_modal_buttons_border_radius'             => 3,
    230             'cart_modal_primary_button_label_color'        => '',
    231             'cart_modal_primary_button_background_color'   => '',
    232             'cart_modal_primary_button_border_color'       => '',
    233             'cart_modal_primary_button_on_hover_label_color' => '',
    234             'cart_modal_primary_button_on_hover_background_color' => '',
    235             'cart_modal_primary_button_on_hover_border_color' => '',
    236             'cart_modal_secondary_button_label_color'      => '',
    237             'cart_modal_secondary_button_background_color' => '',
    238             'cart_modal_secondary_button_border_color'     => '',
    239             'cart_modal_secondary_button_on_hover_label_color' => '',
    240             'cart_modal_secondary_button_on_hover_background_color' => '',
    241             'cart_modal_secondary_button_on_hover_border_color' => '',
    242 
    243228            // cart coupon options.
    244229            'display_applied_coupons'                      => true,
     
    249234            'applied_coupons_list_title'                   => $cart_strings['applied_coupons_list_title'], // @since 1.2.4
    250235            'coupon_removed_message'                       => $cart_strings['coupon_removed_message'], // @since 1.2.6
    251             'hide_screen_when_coupon_applied'                            => false, // @since 1.2.10
     236            'hide_screen_when_coupon_applied'              => false, // @since 1.2.10
    252237
    253238            'custom_css'                                   => '',
  • addonify-floating-cart/trunk/includes/template-functions.php

    r3017269 r3203981  
    3434        // Set default plugin templates path.
    3535        if ( ! $default_path ) {
    36             $default_path = plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/'; // Path to the template folder.
     36            $default_path = plugin_dir_path( __DIR__ ) . 'public/partials/'; // Path to the template folder.
    3737        }
    3838
     
    264264     *
    265265     * @since 1.0.0
    266      * @param array $args  Arguments passed.
    267      */
    268     function addonify_floating_cart_get_sidebar_cart_shipping_bar_template( $args = array() ) {
     266     */
     267    function addonify_floating_cart_get_sidebar_cart_shipping_bar_template() {
    269268
    270269        $shopping_meter                   = (bool) addonify_floating_cart_get_option( 'enable_shopping_meter' );
  • addonify-floating-cart/trunk/includes/udp/class-udp-agent.php

    r2881194 r3203981  
    190190        wp_safe_redirect( admin_url() );
    191191        exit;
    192 
    193192    }
    194193
     
    226225        $data['site_url']        = $site_scheme . $site_host . $site_port;
    227226        $data['site_user_email'] = get_bloginfo( 'admin_email' );
    228         $plugin_directory        = untrailingslashit( dirname( __FILE__, 3 ) );
     227        $plugin_directory        = untrailingslashit( dirname( __FILE__, 3 ) ); // phpcs:ignore
    229228        $dir_names               = explode( '/', $plugin_directory );
    230229        if ( strpos( $dir_names[ count( $dir_names ) - 1 ], '\\' ) ) {
     
    262261
    263262        $data['agent_data'] = serialize( $this->get_data() ); //phpcs:ignore
    264         $url                = untrailingslashit( $this->engine_url ) . '/wp-json/udp-engine/v1/handshake';
     263        $url                = untrailingslashit( $this->engine_url );
    265264
    266265        $this->do_curl( $url, $data );
     
    308307
    309308        $data_to_send['agent_data'] = serialize( $this->get_data() ); //phpcs:ignore
    310         $url                        = untrailingslashit( $this->engine_url ) . '/wp-json/udp-engine/v1/process-data';
     309        $url                        = untrailingslashit( $this->engine_url );
    311310        $this->do_curl( $url, $data_to_send );
    312311        exit;
  • addonify-floating-cart/trunk/includes/udp/init.php

    r2881194 r3203981  
    1717// -------------------------------------------
    1818
    19 $engine_url     = 'https://udp.creamcode.org/';
    20 $this_agent_ver = '1.0.1';
     19$engine_url     = 'https://udp.creamcode.org/v1/sync';
     20$this_agent_ver = '1.0.2';
    2121
    2222// -------------------------------------------
     
    4646if ( $this_agent_is_latest && isset( $all_installed_agents[ basename( $root_dir ) ] ) ) {
    4747    if ( ! class_exists( 'Udp_Agent' ) ) {
    48         require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     48        require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    4949    }
    5050    new Udp_Agent( $this_agent_ver, $root_dir, $engine_url, $udp_admin_notice_displayed );
     
    116116                        add_action(
    117117                            'admin_notices',
    118                             function() use ( $content ) {
     118                            function () use ( $content ) {
    119119                                $class = 'is-dismissible  notice notice-warning';
    120120                                printf( '<div class="%1$s">%2$s</div>', esc_attr( $class ), wp_kses_post( $content ) );
     
    141141            // authorize this agent with engine.
    142142            if ( ! class_exists( 'Udp_Agent' ) ) {
    143                 require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     143                require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    144144            }
    145145            $agent = new Udp_Agent( $this_agent_ver, $root_dir, $engine_url );
     
    170170        // authorize this agent with engine.
    171171        if ( ! class_exists( 'Udp_Agent' ) ) {
    172             require_once plugin_dir_path( dirname( __FILE__ ) ) . '/udp/class-udp-agent.php';
     172            require_once plugin_dir_path( __DIR__ ) . '/udp/class-udp-agent.php';
    173173        }
    174174        $agent = new Udp_Agent( $this_agent_ver, $root_dir, $engine_url );
     
    184184add_action(
    185185    'after_switch_theme',
    186     function() use ( $root_dir ) {
     186    function () use ( $root_dir ) {
    187187        global $this_agent_ver;
    188188
     
    213213add_action(
    214214    'activate_plugin',
    215     function() use ( $root_dir ) {
     215    function () use ( $root_dir ) {
    216216        wp_schedule_single_event( time() + 10, 'cc_udp_agent_send_data', array( $root_dir ) );
    217217    }
     
    223223add_action(
    224224    'deactivate_plugin',
    225     function() use ( $root_dir ) {
     225    function () use ( $root_dir ) {
    226226        wp_schedule_single_event( time() + 10, 'cc_udp_agent_send_data', array( $root_dir ) );
    227227    }
  • addonify-floating-cart/trunk/languages/addonify-floating-cart.pot

    r3150428 r3203981  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Addonify Floating Cart For WooCommerce 1.2.10\n"
     5"Project-Id-Version: Addonify Floating Cart For WooCommerce 1.2.11\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/addonify-floating-cart\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-09-12T05:12:59+00:00\n"
     12"POT-Creation-Date: 2024-12-07T08:43:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.9.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: addonify-floating-cart\n"
    1616
    1717#. Plugin Name of the plugin
     18#: addonify-floating-cart.php
    1819msgid "Addonify Floating Cart For WooCommerce"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
     23#: addonify-floating-cart.php
    2224msgid "https://addonify.com/addonify-floating-cart"
    2325msgstr ""
    2426
    2527#. Description of the plugin
    26 msgid "Addonify Floating Cart is a free WooCommerce addon that adds an interactive sticky shopping cart on your website allowing your visitors no need to go to cart page to manage their cart items."
     28#: addonify-floating-cart.php
     29msgid "Addonify Floating Cart is a free WooCommerce addon that adds a sticky, interactive cart, letting visitors manage items without visiting the cart page."
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33#: addonify-floating-cart.php
    3034msgid "Addonify"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38#: addonify-floating-cart.php
    3439msgid "https://addonify.com/"
    3540msgstr ""
    3641
    37 #: addonify-floating-cart.php:91
     42#: addonify-floating-cart.php:70
    3843msgid "Addonify Floating Cart requires WooCommerce in order to work."
    3944msgstr ""
     
    6671#: includes/functions/fields/cart-buttons.php:27
    6772#: includes/misc-functions.php:88
    68 #: includes/template-functions.php:476
     73#: includes/template-functions.php:475
    6974msgid "Checkout"
    7075msgstr ""
     
    9297#: includes/functions/fields/cart-buttons.php:53
    9398#: includes/misc-functions.php:87
    94 #: includes/template-functions.php:451
     99#: includes/template-functions.php:450
    95100msgid "Close"
    96101msgstr ""
     
    462467msgstr ""
    463468
     469#: includes/functions/fields/cart.php:52
     470msgid "Enable this option to create personalized labels. Once enabled, the user-defined labels will replace the default text strings."
     471msgstr ""
     472
    464473#: includes/functions/fields/cart.php:79
    465474msgid "Enable dymanic styles"
     
    822831msgstr ""
    823832
     833#: includes/functions/settings.php:330
     834msgid "General Options"
     835msgstr ""
     836
     837#: includes/functions/settings.php:335
     838msgid "Cart Toggle Button Options"
     839msgstr ""
     840
     841#: includes/functions/settings.php:340
     842msgid "Cart Modal Options"
     843msgstr ""
     844
    824845#: includes/functions/settings.php:345
    825 msgid "General Options"
     846msgid "Cart Header Options"
    826847msgstr ""
    827848
    828849#: includes/functions/settings.php:350
    829 msgid "Cart Toggle Button Options"
     850msgid "Cart Products Options"
    830851msgstr ""
    831852
    832853#: includes/functions/settings.php:355
    833 msgid "Cart Modal Options"
     854msgid "Cart Subtotals Options"
    834855msgstr ""
    835856
    836857#: includes/functions/settings.php:360
    837 msgid "Cart Header Options"
     858msgid "Cart Buttons Options"
    838859msgstr ""
    839860
    840861#: includes/functions/settings.php:365
    841 msgid "Cart Products Options"
     862msgid "Cart Miscellaneous Options"
    842863msgstr ""
    843864
    844865#: includes/functions/settings.php:370
    845 msgid "Cart Subtotals Options"
     866msgid "Coupon Options"
    846867msgstr ""
    847868
    848869#: includes/functions/settings.php:375
    849 msgid "Cart Buttons Options"
     870msgid "Shipping Options"
    850871msgstr ""
    851872
    852873#: includes/functions/settings.php:380
    853 msgid "Cart Miscellaneous Options"
     874msgid "Shopping Meter Options"
    854875msgstr ""
    855876
    856877#: includes/functions/settings.php:385
    857 msgid "Coupon Options"
    858 msgstr ""
    859 
    860 #: includes/functions/settings.php:390
    861 msgid "Shipping Options"
    862 msgstr ""
    863 
    864 #: includes/functions/settings.php:395
    865 msgid "Shopping Meter Options"
    866 msgstr ""
    867 
    868 #: includes/functions/settings.php:400
    869878msgid "Toast Notification Options"
    870879msgstr ""
    871880
    872 #: includes/functions/settings.php:409
     881#: includes/functions/settings.php:394
    873882msgid "Interface Design"
    874883msgstr ""
    875884
    876 #: includes/functions/settings.php:414
     885#: includes/functions/settings.php:399
    877886msgid "Cart Toggle Button"
    878887msgstr ""
    879888
    880 #: includes/functions/settings.php:420
     889#: includes/functions/settings.php:405
    881890msgid "Toast Notification"
    882891msgstr ""
    883892
    884 #: includes/functions/settings.php:426
     893#: includes/functions/settings.php:411
    885894msgid "Cart Panel"
    886895msgstr ""
    887896
    888 #: includes/functions/settings.php:432
     897#: includes/functions/settings.php:417
    889898msgid "Buttons in Cart"
    890899msgstr ""
    891900
    892 #: includes/functions/settings.php:438
     901#: includes/functions/settings.php:423
    893902msgid "Miscellaneous Cart Elements"
    894903msgstr ""
    895904
    896 #: includes/functions/settings.php:444
     905#: includes/functions/settings.php:429
    897906msgid "Products in Cart"
    898907msgstr ""
    899908
    900 #: includes/functions/settings.php:450
     909#: includes/functions/settings.php:435
    901910msgid "Developer"
    902911msgstr ""
     
    914923
    915924#: includes/misc-functions.php:86
    916 #: includes/template-functions.php:440
     925#: includes/template-functions.php:439
    917926#: public/partials/cart-sections/header.php:13
    918927msgid "Cart"
     
    933942#: includes/misc-functions.php:92
    934943#: public/partials/cart-sections/footer.php:121
    935 #: public/partials/cart-sections/shipping.php:73
     944#: public/partials/cart-sections/shipping.php:78
    936945msgid "Change address"
    937946msgstr ""
     
    946955
    947956#: includes/misc-functions.php:95
    948 #: includes/template-functions.php:764
     957#: includes/template-functions.php:763
    949958#: public/partials/cart-sections/coupon.php:13
    950959#: admin/assets/js/main.js:1240
     
    953962
    954963#: includes/misc-functions.php:96
    955 #: includes/template-functions.php:727
     964#: includes/template-functions.php:726
    956965msgid "Your cart is currently empty."
    957966msgstr ""
     
    969978
    970979#: includes/misc-functions.php:99
     980#: includes/template-functions.php:686
     981msgid "Item"
     982msgstr ""
     983
     984#: includes/misc-functions.php:100
    971985#: includes/template-functions.php:687
    972 msgid "Item"
    973 msgstr ""
    974 
    975 #: includes/misc-functions.php:100
    976 #: includes/template-functions.php:688
    977986msgid "Items"
    978987msgstr ""
     
    10041013
    10051014#: includes/misc-functions.php:109
    1006 #: public/partials/cart-sections/shipping.php:124
     1015#: public/partials/cart-sections/shipping.php:129
    10071016msgid "Country / Region"
    10081017msgstr ""
    10091018
    10101019#: includes/misc-functions.php:110
    1011 #: public/partials/cart-sections/shipping.php:125
     1020#: public/partials/cart-sections/shipping.php:130
    10121021msgid "State"
    10131022msgstr ""
    10141023
    10151024#: includes/misc-functions.php:111
    1016 #: public/partials/cart-sections/shipping.php:126
     1025#: public/partials/cart-sections/shipping.php:131
    10171026msgid "City"
    10181027msgstr ""
    10191028
    10201029#: includes/misc-functions.php:112
    1021 #: public/partials/cart-sections/shipping.php:127
     1030#: public/partials/cart-sections/shipping.php:132
    10221031msgid "ZIP code"
    10231032msgstr ""
    10241033
    10251034#: includes/misc-functions.php:113
    1026 #: public/partials/cart-sections/shipping.php:128
     1035#: public/partials/cart-sections/shipping.php:133
    10271036msgid "Update address"
    10281037msgstr ""
     
    10391048
    10401049#. translators: %d: shipping package number
    1041 #: includes/template-functions.php:363
     1050#: includes/template-functions.php:362
    10421051msgctxt "shipping packages"
    10431052msgid "Shipping %d"
     
    10451054
    10461055#. translators: %d: shipping package number
    1047 #: includes/template-functions.php:363
     1056#: includes/template-functions.php:362
    10481057msgctxt "shipping packages"
    10491058msgid "Shipping"
     
    11311140msgstr ""
    11321141
    1133 #: public/partials/cart-sections/footer.php:178
     1142#: public/partials/cart-sections/footer.php:148
     1143msgid "Free!"
     1144msgstr ""
     1145
     1146#: public/partials/cart-sections/footer.php:183
    11341147msgid "Tax"
    11351148msgstr ""
    11361149
    11371150#. Translators: %s shipping destination.
    1138 #: public/partials/cart-sections/shipping.php:69
     1151#: public/partials/cart-sections/shipping.php:74
    11391152msgid "Shipping to %s."
    11401153msgstr ""
    11411154
    1142 #: public/partials/cart-sections/shipping.php:78
     1155#: public/partials/cart-sections/shipping.php:83
    11431156msgid "Shipping options will be updated during checkout."
    11441157msgstr ""
    11451158
    1146 #: public/partials/cart-sections/shipping.php:91
     1159#: public/partials/cart-sections/shipping.php:96
    11471160msgid "Shipping costs are calculated during checkout."
    11481161msgstr ""
    11491162
    1150 #: public/partials/cart-sections/shipping.php:98
     1163#: public/partials/cart-sections/shipping.php:103
    11511164msgid "Enter your address to view shipping options."
    11521165msgstr ""
    11531166
    11541167#. Translators: %s shipping destination.
    1155 #: public/partials/cart-sections/shipping.php:109
     1168#: public/partials/cart-sections/shipping.php:114
    11561169msgid "No shipping options were found for %s."
    11571170msgstr ""
    11581171
    1159 #: public/partials/cart-sections/shipping.php:174
     1172#: public/partials/cart-sections/shipping.php:179
    11601173msgid "Select a country / region&hellip;"
    11611174msgstr ""
    11621175
    1163 #: public/partials/cart-sections/shipping.php:215
     1176#: public/partials/cart-sections/shipping.php:220
    11641177msgid "Select an option&hellip;"
    11651178msgstr ""
  • addonify-floating-cart/trunk/public/assets/build/public.min.css

    r3150428 r3203981  
    1 :root{--adfy_woofc_primary_color:#1b81ff;--adfy_woofc_secondary_color:#6221ff;--adfy_woofc_base_text_color:#444;--adfy_woofc_base_link_color:#1b81ff;--adfy_woofc_base_link_color_hover:#6221ff;--adfy_woofc_base_text_font_size:15px;--adfy_woofc_border_color:#eee;--adfy_woofc_cart_background_color:#fff;--adfy_woofc_cart_overlay_background_color:rgba(131,176,252,.5),rgba(251,194,235,.4);--adfy_woofc_cart_input_border_color:var(--adfy_woofc_border_color);--adfy_woofc_cart_input_placeholder_color:#9e9e9e;--adfy_woofc_cart_input_text_color:#444;--adfy_woofc_cart_input_background_color:#fff;--adfy_woofc_cart_width:500px;--adfy_woofc_spinner_icon_color:#444;--adfy_woofc_spinner_container_background:hsla(0,0%,100%,.9);--adfy_woofc_toggle_button_text_color:#555;--adfy_woofc_toggle_button_text_color_hover:#898989;--adfy_woofc_toggle_button_background_color:#fff;--adfy_woofc_toggle_button_background_color_hover:#ddd;--adfy_woofc_toggle_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_badge_text_color:#fff;--adfy_woofc_toggle_button_badge_text_color_hover:#fff;--adfy_woofc_toggle_button_badge_background_color:#1b81ff;--adfy_woofc_toggle_button_badge_background_color_hover:#1b81ff;--adfy_woofc_toggle_button_badge_width:23px;--adfy_woofc_toggle_button_badge_font_size:13px;--adfy_woofc_toggle_button_size:60px;--adfy_woofc_toggle_button_border_radius:5px;--adfy_woofc_toggle_button_cart_icon_font_size:20px;--adfy_woofc_toggle_button_horizental_offset:100px;--adfy_woofc_toggle_button_vertical_offset:100px;--adfy_woofc_base_button_font_size:15px;--adfy_woofc_base_button_font_weight:normal;--adfy_woofc_base_button_letter_spacing:0;--adfy_woofc_base_button_border_radius:3px;--adfy_woofc_base_button_text_transform:none;--adfy_woofc_primary_button_label_color:#fff;--adfy_woofc_primary_button_label_color_hover:#fff;--adfy_woofc_primary_button_background_color:#1b81ff;--adfy_woofc_primary_button_background_color_hover:#6221ff;--adfy_woofc_primary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_primary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_label_color:#878787;--adfy_woofc_secondary_button_label_color_hover:#fff;--adfy_woofc_secondary_button_background_color:#cfcfcf;--adfy_woofc_secondary_button_background_color_hover:#6221ff;--adfy_woofc_secondary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_shopping_meter_initial_background_color:#eee;--adfy_woofc_shopping_meter_progress_background_color:#0072ff;--adfy_woofc_shopping_meter_threashold_reached_background_color:#0072ff;--adfy_woofc_toast_text_color:#fff;--adfy_woofc_toast_background_color:#3dc763;--adfy_woofc_toast_button_text_color:#fff;--adfy_woofc_toast_button_text_color_hover:#fff;--adfy_woofc_toast_button_background_color:rgba(0,0,0,.2);--adfy_woofc_toast_button_background_color_hover:rgba(0,0,0,.4);--adfy_woofc_toast_icon_color:#3dc763;--adfy_woofc_toast_icon_background_color:#fff;--adfy_woofc_cart_title_text_color:var(--adfy_woofc_base_text_color);--adfy_woofc_cart_title_font_size:var(--adfy_woofc_base_text_font_size);--adfy_woofc_cart_title_font_weight:var(--adfy_woofc_base_text_font_weight);--adfy_woofc_cart_title_letter_spacing:0;--adfy_woofc_cart_title_text_transform:none;--adfy_woofc_cart_title_count_badge_text_color:#409eff;--adfy_woofc_cart_title_count_badge_background_color:#dfeeff;--adfy_woofc_cart_close_button_text_color:#c7c7c7;--adfy_woofc_cart_close_button_text_color_hover:#888;--adfy_woofc_cart_field_background_color:#fff;--adfy_woofc_cart_field_text_color:#fff;--adfy_woofc_cart_field_border_color:#fff;--adfy_woofc_cart_product_title_text_color:#444;--adfy_woofc_cart_product_title_text_color_hover:#1b81ff;--adfy_woofc_cart_product_price_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_input_button_text_color:#444;--adfy_woofc_cart_product_remove_button_text_color:#878787;--adfy_woofc_cart_product_remove_button_text_color_hover:#fff;--adfy_woofc_cart_product_remove_button_background_color:#e9e9e9;--adfy_woofc_cart_product_remove_button_background_color_hover:#6221ff;--adfy_woofc_cart_product_title_font_size:15px;--adfy_woofc_cart_product_title_font_weight:normal;--adfy_woofc_trigger_button_zindex:10000000;--adfy_woofc_overlaymask_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 10);--adfy_woofc_floating_cart_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 30);--adfy_woofc_floating_cart_inner_mask_zindex:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__hide-woofc{cursor:pointer}.adfy__woofc-visible{max-height:100vh;overflow-y:hidden}.adfy__woofc-hidden{display:none}.adfy__woofc-link.has-underline{background:transparent;background-color:transparent;border:none;color:var(--adfy_woofc_base_link_color);position:relative;text-decoration:none;transition:all .5s ease}.adfy__woofc-link.has-underline:after,.adfy__woofc-link.has-underline:before{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after,[dir=rtl] .adfy__woofc-link.has-underline:before{left:auto;right:0}.adfy__woofc-link.has-underline:before{-webkit-backface-visibility:hidden;background-color:currentColor;content:"";transform:scaleX(0);transform-origin:right center;transition:transform .26s cubic-bezier(.25,.8,.25,1);will-change:scale;z-index:1}[dir=rtl] .adfy__woofc-link.has-underline:before{transform-origin:left center}.adfy__woofc-link.has-underline:after{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;opacity:.6;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after{left:auto;right:0}.adfy__woofc-link.has-underline:hover{color:var(--adfy_woofc_base_link_color_hover);text-decoration:none}.adfy__woofc-link.has-underline:hover:before{background-color:var(--adfy_woofc_base_link_color_hover);content:"";transform:scale(1);transform-origin:left center}[dir=rtl] .adfy__woofc-link.has-underline:hover:before{transform-origin:right center}.adfy__woofc-link.has-underline:focus{outline:none;text-decoration:none}.adfy__woofc-alert{background-color:#eee;border-radius:4px;color:#444;display:block;margin-bottom:20px;overflow:hidden;padding:10px 15px}.adfy__woofc-alert .adfy__woofc-alert-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-size:14px;font-weight:400;gap:8px;line-height:1.4;margin:0}.adfy__woofc-alert .adfy__woofc-alert-text svg{color:#444;height:14px;width:14px}.adfy__woofc-alert.success{background-color:#f0f9eb;color:#67c23a}.adfy__woofc-alert.success svg{color:#67c23a}.adfy__woofc-alert.error{background-color:#ffe6e6;color:#f56c6c}.adfy__woofc-alert.error svg{color:#f56c6c}.adfy__woofc-button,a.adfy__woofc-button,button.adfy__woofc-button,button.adfy__woofc-button[type=submit],input.adfy__woofc-button[type=submit]{align-items:center;display:inline-flex;font-size:var(--adfy_woofc_base_button_font_size);font-weight:var(--adfy_woofc_base_button_font_weight);gap:5px;letter-spacing:var(--adfy_woofc_base_button_letter_spacing);line-height:1;fill:var(--adfy_woofc_primary_button_label_color);-webkit-appearance:button;-moz-appearance:button;appearance:button;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-radius:var(--adfy_woofc_base_button_border_radius);border-style:solid;border-width:1px;box-shadow:none;color:var(--adfy_woofc_primary_button_label_color);padding:15px 25px;text-decoration:none;text-transform:var(--adfy_woofc_base_button_text_transform);transition:all .5s ease}.adfy__woofc-button:hover,a.adfy__woofc-button:hover,button.adfy__woofc-button:hover,button.adfy__woofc-button[type=submit]:hover,input.adfy__woofc-button[type=submit]:hover{fill:var(--adfy_woofc_primary_button_label_color_hover);background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);box-shadow:none;color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}.adfy__woofc-button:focus,a.adfy__woofc-button:focus,button.adfy__woofc-button:focus,button.adfy__woofc-button[type=submit]:focus,input.adfy__woofc-button[type=submit]:focus{box-shadow:none;outline:0;text-decoration:none}.adfy__woofc-button.close,.adfy__woofc-button.continue-shopping,.adfy__woofc-button.secondary,a.adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}.adfy__woofc-button.close:hover,.adfy__woofc-button.continue-shopping:hover,.adfy__woofc-button.secondary:hover,a.adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}.adfy__woofc-fake-button{-webkit-appearance:none;-moz-appearance:none;cursor:pointer;display:inline-flex;font-size:15px;font-weight:400;height:auto;line-height:1;margin:0;padding:0;transition:all .5s ease;width:auto}.adfy__woofc-fake-button,.adfy__woofc-fake-button:hover{fill:currentColor;background:transparent;background-color:transparent;border:none;box-shadow:none;color:currentColor;text-decoration:none}.adfy__woofc-fake-button:focus{border:none;box-shadow:none;outline:0;text-decoration:none}.notyf{color:var(--adfy_woofc_toast_text_color)}.notyf .notyf__toast[class*=adfy__woofc-notfy]{box-shadow:0 10px 30px rgba(0,0,0,.05)}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__icon .notyf__icon--success{background:var(--adfy_woofc_toast_icon_background_color);color:var(--adfy_woofc_toast_icon_color)!important}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message{color:var(--adfy_woofc_toast_text_color);font-size:15px;font-weight:400;line-height:1.4}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button{align-items:center;background-color:var(--adfy_woofc_toast_button_background_color);border-radius:3px;color:var(--adfy_woofc_toast_button_text_color);display:inline-flex;font-size:13px;letter-spacing:inherit;padding:5px 10px 6px;text-transform:inherit}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button:hover{background-color:var(--adfy_woofc_toast_button_background_color_hover);color:var(--adfy_woofc_toast_button_text_color_hover)}.notyf .notyf__toast.adfy__woofc-notfy-success .notyf__ripple{background:var(--adfy_woofc_toast_background_color)!important}#adfy__woofc-trigger{align-items:center;border-color:var(--adfy_woofc_toggle_button_border_color);border-style:solid;border-width:1px;bottom:var(--adfy_woofc_toggle_button_vertical_offset);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--adfy_woofc_toggle_button_size);justify-content:center;left:auto;margin:0;padding:0;position:fixed;right:var(--adfy_woofc_toggle_button_horizental_offset);width:var(--adfy_woofc_toggle_button_size);z-index:var(--adfy_woofc_trigger_button_zindex);fill:var(--adfy_woofc_toggle_button_text_color);background-color:var(--adfy_woofc_toggle_button_background_color);border-radius:var(--adfy_woofc_toggle_button_border_radius);box-shadow:0 0 2px rgba(0,0,0,.3);color:var(--adfy_woofc_toggle_button_text_color);cursor:pointer;font-weight:400;line-height:1;transition:all .5s ease}[dir=rtl] #adfy__woofc-trigger{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger[data_display=hidden]{display:none;opacity:0;visibility:hidden}#adfy__woofc-trigger .icon svg{height:var(--adfy_woofc_toggle_button_cart_icon_font_size);width:var(--adfy_woofc_toggle_button_cart_icon_font_size)}#adfy__woofc-trigger .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:3px;bottom:auto;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;font-weight:400;height:23px;justify-content:center;left:-10px;line-height:1;position:absolute;right:auto;top:-5px;transition:all .5s ease-in-out;width:23px}[dir=rtl] #adfy__woofc-trigger .badge{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-left{bottom:auto;left:-10px;right:auto;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-right{bottom:auto;left:auto;right:-10px;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-right{left:-10px;right:auto}#adfy__woofc-trigger .badge.bottom-left{bottom:-5px;left:-10px;right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.bottom-right{bottom:-5px;left:auto;right:-10px;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-right{left:-10px;right:auto}#adfy__woofc-trigger:hover{fill:var(--adfy_woofc_toggle_button_text_color_hover);background-color:var(--adfy_woofc_toggle_button_background_color_hover);border-color:var(--adfy_woofc_toggle_button_border_color_hover);box-shadow:0 0 60px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_text_color_hover)}#adfy__woofc-trigger:hover .badge{background-color:var(--adfy_woofc_toggle_button_badge_background_color_hover);color:var(--adfy_woofc_toggle_button_badge_text_color_hover)}#adfy__woofc-trigger:focus{outline:none}#adfy__woofc-trigger.top-right{bottom:auto;left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset);top:var(--adfy_woofc_toggle_button_vertical_offset)}#adfy__woofc-trigger.top-left,[dir=rtl] #adfy__woofc-trigger.top-right{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger.top-left{bottom:auto;top:var(--adfy_woofc_toggle_button_vertical_offset)}[dir=rtl] #adfy__woofc-trigger.top-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-trigger.bottom-left{bottom:var(--adfy_woofc_toggle_button_vertical_offset);left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger.bottom-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-hide-coupon-container,#adfy__woofc-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-hide-coupon-container svg,#adfy__woofc-hide-shipping-container svg{height:20px;width:20px}#adfy__woofc-hide-coupon-container:hover,#adfy__woofc-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}.adfy_fc__woo-trigger-shortcode-button{line-height:1;position:relative}.adfy_fc__woo-trigger-shortcode-button .icon svg{height:24px;width:24px}.adfy_fc__woo-trigger-shortcode-button .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:20px;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;height:23px;justify-content:center;line-height:1;position:absolute;top:-20px;transition:all .5s ease-in-out;width:23px}.adfy_fc__woo-trigger-shortcode-button .badge.top-right{right:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-right{left:-15px;right:auto}.adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:auto;right:-15px}#adfy__floating-cart{background-color:var(--adfy_woofc_cart_background_color);box-shadow:10px 0 30px rgba(0,0,0,.2);box-sizing:border-box;color:var(--adfy_woofc_base_text_color);display:block;font-size:var(--adfy_woofc_base_text_font_size);position:fixed;transition:all .8s cubic-bezier(.77,0,.18,1) 0s;z-index:var(--adfy_woofc_floating_cart_zindex);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}[dir=rtl] #adfy__floating-cart{box-shadow:-10px 0 30px rgba(0,0,0,.2)}#adfy__floating-cart .adfy_woofc-inner{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;padding:30px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy_woofc-inner{padding:20px}}#adfy__floating-cart[data_type=drawer]{backface-visibility:visible;bottom:0;opacity:1;top:0;visibility:visible;width:var(--adfy_woofc_cart_width)}@media (max-width:575px){#adfy__floating-cart[data_type=drawer]{width:93vw}}#adfy__floating-cart[data_type=modal]{z-index:var(--adfy_woofc_floating_cart_zindex)}#adfy__floating-cart[data_type=drawer][data_position=left]{left:-100vw;right:auto}#adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=right]{left:-100vw;right:auto}.adfy__woofc-visible #adfy__floating-cart{transition:all .6s cubic-bezier(.77,0,.18,1)}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:0;right:auto}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:0}[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right]{left:0;right:auto}#adfy__floating-cart .adfy__woofc-header{align-items:center;border-bottom:1px solid var(--adfy_woofc_border_color);-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 30px;justify-content:space-between;margin-bottom:20px;padding-bottom:15px}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title{align-items:center;color:var(--adfy_woofc_cart_title_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:20px;gap:8px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title .adfy__woofc-badge{align-items:center;background-color:var(--adfy_woofc_cart_title_count_badge_background_color);border-radius:15px;color:var(--adfy_woofc_cart_title_count_badge_text_color);font-size:calc(var(--adfy_woofc_base_text_font_size) - 20%);font-weight:400;line-height:1;padding:7px 10px 8px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button{align-items:center;display:inline-flex;justify-content:center}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc{display:inline-flex;font-weight:400;height:30px;line-height:1;margin:0;padding:0;width:30px;fill:var(--adfy_woofc_cart_close_button_text_color);background-color:transparent;border:none;border-radius:100%;color:var(--adfy_woofc_cart_close_button_text_color)}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc svg{height:22px;width:22px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc:hover{fill:var(--adfy_woofc_cart_close_button_text_color_hover);background-color:transparent;border:none;color:var(--adfy_woofc_cart_close_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-shipping-bar{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-shipping-bar.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text{font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 10px;padding:0}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text .amount{font-weight:700}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars{position:relative}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{background-color:var(--adfy_woofc_shopping_meter_initial_background_color);border-radius:10px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);display:block;height:8px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{height:5px}}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_progress_background_color);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);left:0;position:absolute;right:auto;top:0;transition:width .5s linear;z-index:2}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{left:auto;right:0}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){animation:adfyProgressbar 1s linear infinite;background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}#adfy__floating-cart .adfy__woofc-shipping-bar[data-threashold_reached=true] .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_threashold_reached_background_color)}#adfy__floating-cart #adfy__woofc-cart-errors{background-color:#e1efff;border-radius:5px;color:#387ecd;display:block;line-height:1.5;margin-bottom:30px;padding:15px}#adfy__floating-cart #adfy__woofc-cart-errors.hidden{display:none}#adfy__floating-cart #adfy__woofc-cart-errors.error{background-color:#ffe6e6;color:#f56c6c}#adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{cursor:pointer;display:inline-flex;margin-left:5px}[dir=rtl] #adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{margin-left:0;margin-right:5px}#adfy__floating-cart .adfy__woofc-content{display:flex;flex:1 1 auto;flex-direction:row;flex-direction:column;flex-wrap:wrap;overflow:hidden;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{bottom:0;display:block;left:0;padding:10px 10px 10px 0;position:absolute;right:0;top:0;z-index:5}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{padding:10px 0 10px 10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:30px;column-gap:30px;display:grid;grid-template-columns:100px auto;margin-bottom:30px;position:relative}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:25px;column-gap:25px;margin-bottom:20px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb{border:none;box-shadow:none;margin:0;max-width:100%;padding:0;position:relative;width:100%}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link>img{background-color:var(--adfy_woofc_border_color);border:1px solid var(--adfy_woofc_border_color);border-radius:5px;display:block;max-width:100%;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{align-items:center;background-color:var(--adfy_woofc_cart_product_remove_button_background_color);border:none;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.1);color:var(--adfy_woofc_cart_product_remove_button_text_color);display:inline-flex;height:26px;justify-content:center;margin:0;padding:0;position:absolute;right:-10px;text-decoration:none;top:-10px;width:26px;z-index:1}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{left:-10px;right:auto}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{height:24px;width:24px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item svg{height:16px;width:16px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item:hover{background-color:var(--adfy_woofc_cart_product_remove_button_background_color_hover);color:var(--adfy_woofc_cart_product_remove_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{color:var(--adfy_woofc_cart_product_title_text_color);display:block;font-size:var(--adfy_woofc_cart_product_title_font_size);font-weight:var(--adfy_woofc_cart_product_title_font_weight);line-height:1.3;margin:0 0 10px;padding:0}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{margin-bottom:5px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link{color:var(--adfy_woofc_cart_product_title_text_color)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link:hover{color:var(--adfy_woofc_cart_product_title_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price{margin-bottom:10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price .quantity{align-items:center;border:none;color:var(--adfy_woofc_cart_product_price_quantity_text_color);display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:700;gap:2px;height:auto;margin:0;padding:0;width:auto}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:30px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin:0;padding:5px 10px;width:110px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-inner-spin-button,#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input[type=number]{-moz-appearance:textfield}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field{align-items:center;-webkit-appearance:none;-moz-appearance:none;background:transparent;background-color:transparent;border:none;border-radius:3px;box-shadow:none;color:var(--adfy_woofc_cart_product_quantity_text_color);display:inline-flex;font-size:12px;font-weight:400;height:30px;justify-content:center;margin:0;max-width:50px;min-height:1px;outline:none;padding:0;text-align:center;transition:all .5s ease;width:30px;will-change:width}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field:focus{outline:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button{align-items:center;display:inline-flex;font-size:16px;font-weight:400;height:20px;justify-content:center;line-height:1;margin:0;padding:0;width:20px;fill:var(--adfy_woofc_cart_product_quantity_input_button_text_color);background-color:transparent;border-radius:30px;color:var(--adfy_woofc_cart_product_quantity_input_button_text_color);text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button svg{height:18px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:hover{text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:focus{outline:none}.woocommerce-page #adfy__floating-cart main{margin-left:0;margin-right:0;max-width:100%;padding:0}#adfy__floating-cart .adfy__woofc-colophon{margin-top:0;padding-top:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-weight:400;gap:5px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon{fill:var(--adfy_woofc_base_text_color);line-height:1}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon svg{height:18px;width:18px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary{display:block;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul{align-items:center;border:none;border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .label,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .value{color:var(--adfy_woofc_base_text_color);font-size:var(--adfy_woofc_base_text_font_size);font-weight:400}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li:not(:last-child){border-bottom:1px dotted var(--adfy_woofc_border_color);padding-bottom:10px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.discount .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value span,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value strong{font-weight:700}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary.discount ul{border:1px solid var(--adfy_woofc_border_color);padding:10px 15px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions{-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:repeat(2,1fr)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions.adfy__woofc-fullwidth{-moz-column-gap:0;column-gap:0;grid-template-columns:repeat(1,1fr);justify-content:center}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{align-items:center;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-style:solid;border-width:1px;color:var(--adfy_woofc_primary_button_label_color);display:inline-flex;height:auto;justify-content:center;padding:20px 15px;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{padding:15px 10px}}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button:hover{background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}#adfy__floating-cart #adfy__woofc_empty_cart_section{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;justify-content:center}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon{animation:adfyFloatingCartFadeDown .5s ease}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon svg{display:inline-flex;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color);height:42px;width:42px}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_text{display:inline-flex;margin:0}#adfy__woofc-shipping-container #adfy__woofc-hide-shipping-container{background:transparent;background-color:transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner{display:block;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;padding:0 0 60px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0 0 30px;padding:20px;position:relative}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;margin:0;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner .adfy__woo-shipping-destination{margin:20px 0}#adfy__woofc-shipping-container .shipping-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-shipping-container .shipping-container-header{justify-content:flex-end}}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container svg{display:inline-flex;height:20px;width:20px}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}#adfy__woofc-shipping-container #adfy__woofc-shipping-form{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;margin:30px 0;padding:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .adfy__woofc-shipping-form-elements{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form label{display:block;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form label{margin:0 3px 0 0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=hidden]{display:none;height:0;width:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select{align-items:center;background-color:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form select{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2.select2-container{width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .addonify_floating_cart-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__rendered{color:var(--adfy_woofc_cart_input_text_color);line-height:21px;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:auto;right:5px;top:10px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:5px;right:auto}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown,#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color)}.adfy__woofc-visible .select2-container--default .select2-dropdown{background-color:#fff;border-color:var(--adfy_woofc_cart_input_border_color);border-radius:5px;border-style:solid;border-top-left-radius:8px;border-top-right-radius:8px;border-width:1px;z-index:999999999999}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;box-shadow:none;display:flex;flex-direction:row;flex-wrap:wrap}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field:focus{border-color:#3da6ff;box-shadow:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results{padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{font-size:15px;max-height:300px;padding:0 10px 0 0}[dir=rtl] .adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{padding:0 0 0 10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option{border-radius:5px;display:block;font-size:15px;line-height:1.3;padding:10px}.adfy__woofc-visible .select2-container--default.select2-container--open .select2-dropdown{animation:adfyFloatingCartFadeDown .5s ease}.adfy__woofc-container-canvas{background-color:var(--adfy_woofc_cart_background_color);bottom:0;color:var(--adfy_woofc_base_text_color);display:block;height:100%;margin:0;min-height:100vh;padding:30px;position:absolute;top:0;transition:all .6s cubic-bezier(.77,0,.18,1);width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__woofc-container-canvas[data_display=visible]{transition:all .3s ease}.adfy__woofc-container-canvas[data_display=visible] #adfy__woofc-coupon-form{animation:adfyFloatingCartFadeDown .5s ease-in}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:-100vw;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:auto;right:-100vw}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:-100vw;right:auto}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}#adfy__woofc-coupon-container .coupon-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-coupon-container .coupon-container-header{justify-content:flex-end}}#adfy__woofc-coupon-container #adfy__woofc-coupon-form{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin:0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;padding:20px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{display:block;font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{margin:0 3px 0 0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs .adfy__woofc-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-coupon-container #adfy__woofc-hide-coupon-container{background:transparent;background-color:transparent}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;margin-top:40px;padding:20px;position:relative}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons.hidden{display:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{align-items:center;background-color:var(--adfy_woofc_cart_background_color);display:inline-flex;font-size:15px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 5%);font-weight:400;gap:10px;left:15px;line-height:1.4;padding:5px 10px;position:absolute;right:auto;top:-15px;z-index:1}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{left:auto;right:15px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title svg{height:18px;width:18px;fill:var(--adfy_woofc_base_text_color)}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;list-style:none;margin:10px 0 0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:4px;-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 50px;justify-content:space-between;margin:0;padding:10px 15px;position:relative;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]{align-items:center;background:var(--adfy_woofc_cart_background_color);border:0 solid transparent;border-radius:0;box-shadow:none;box-sizing:border-box;color:var(--adfy_woofc_base_text_color);cursor:default;display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:auto;line-height:1.4;max-width:100%;min-height:1px;padding:0;transition:none;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:focus{box-shadow:none;outline:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:hover{box-shadow:none;text-decoration:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button{align-items:center;border-radius:3px;display:inline-flex;height:30px;justify-content:center;margin:0;padding:0;position:relative;width:50px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button svg{height:18px;width:18px}#adfy__woofc-spinner-container{backface-visibility:hidden;background:var(--adfy_woofc_spinner_container_background);bottom:0;display:block;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) - 1)}#adfy__woofc-spinner-container.visible{backface-visibility:visible;opacity:1;visibility:visible;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 100)}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;justify-content:center;position:relative;width:100%}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner{display:inline-flex;height:32px;overflow:hidden}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner svg{animation:adfyCartSpin 2s ease-in-out infinite both;color:var(--adfy_woofc_spinner_icon_color);display:inline-flex;height:32px;line-height:1;width:32px}#adfy__woofc-overlay{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);backface-visibility:hidden;background:linear-gradient(to right,var(--adfy_woofc_cart_overlay_background_color));bottom:0;cursor:pointer;display:block;height:100%;left:auto;opacity:0;position:fixed;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:0}[dir=rtl] #adfy__woofc-overlay{background:linear-gradient(to left,var(--adfy_woofc_cart_overlay_background_color));left:0;right:auto}.adfy__woofc-visible #adfy__woofc-overlay{backface-visibility:visible;opacity:1;visibility:visible;z-index:var(--adfy_woofc_overlaymask_zindex)}@keyframes adfyFloatingCartFadeIn{0%{opacity:0}40%{opacity:.4}80%{opacity:.8}to{opacity:1}}@keyframes adfyFloatingCartFadeDown{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes adfyFloatingCartSlideToLeft{0%{opacity:0;right:-100vw}to{opacity:1;right:0}}@keyframes adfyFloatingCartSlideToRight{0%{opacity:1;right:0}to{opacity:0;right:-100vw}}@keyframes adfyCartSpin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes adfyProgressbar{0%{background-position-x:1rem}}
     1:root{--adfy_woofc_primary_color:#1b81ff;--adfy_woofc_secondary_color:#6221ff;--adfy_woofc_base_text_color:#444;--adfy_woofc_base_link_color:#1b81ff;--adfy_woofc_base_link_color_hover:#6221ff;--adfy_woofc_base_text_font_size:15px;--adfy_woofc_border_color:#eee;--adfy_woofc_cart_background_color:#fff;--adfy_woofc_cart_overlay_background_color:rgba(131,176,252,.5),rgba(251,194,235,.4);--adfy_woofc_cart_input_border_color:var(--adfy_woofc_border_color);--adfy_woofc_cart_input_placeholder_color:#9e9e9e;--adfy_woofc_cart_input_text_color:#444;--adfy_woofc_cart_input_background_color:#fff;--adfy_woofc_cart_width:500px;--adfy_woofc_spinner_icon_color:#444;--adfy_woofc_spinner_container_background:hsla(0,0%,100%,.9);--adfy_woofc_toggle_button_text_color:#555;--adfy_woofc_toggle_button_text_color_hover:#898989;--adfy_woofc_toggle_button_background_color:#fff;--adfy_woofc_toggle_button_background_color_hover:#ddd;--adfy_woofc_toggle_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_toggle_button_badge_text_color:#fff;--adfy_woofc_toggle_button_badge_text_color_hover:#fff;--adfy_woofc_toggle_button_badge_background_color:#1b81ff;--adfy_woofc_toggle_button_badge_background_color_hover:#1b81ff;--adfy_woofc_toggle_button_badge_width:23px;--adfy_woofc_toggle_button_badge_font_size:13px;--adfy_woofc_toggle_button_size:60px;--adfy_woofc_toggle_button_border_radius:5px;--adfy_woofc_toggle_button_cart_icon_font_size:20px;--adfy_woofc_toggle_button_horizental_offset:100px;--adfy_woofc_toggle_button_vertical_offset:100px;--adfy_woofc_base_button_font_size:15px;--adfy_woofc_base_button_font_weight:normal;--adfy_woofc_base_button_letter_spacing:0;--adfy_woofc_base_button_border_radius:3px;--adfy_woofc_base_button_text_transform:none;--adfy_woofc_primary_button_label_color:#fff;--adfy_woofc_primary_button_label_color_hover:#fff;--adfy_woofc_primary_button_background_color:#1b81ff;--adfy_woofc_primary_button_background_color_hover:#6221ff;--adfy_woofc_primary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_primary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_label_color:#878787;--adfy_woofc_secondary_button_label_color_hover:#fff;--adfy_woofc_secondary_button_background_color:#cfcfcf;--adfy_woofc_secondary_button_background_color_hover:#6221ff;--adfy_woofc_secondary_button_border_color:hsla(0,0%,100%,0);--adfy_woofc_secondary_button_border_color_hover:hsla(0,0%,100%,0);--adfy_woofc_shopping_meter_initial_background_color:#eee;--adfy_woofc_shopping_meter_progress_background_color:#0072ff;--adfy_woofc_shopping_meter_threashold_reached_background_color:#0072ff;--adfy_woofc_toast_text_color:#fff;--adfy_woofc_toast_background_color:#3dc763;--adfy_woofc_toast_button_text_color:#fff;--adfy_woofc_toast_button_text_color_hover:#fff;--adfy_woofc_toast_button_background_color:rgba(0,0,0,.2);--adfy_woofc_toast_button_background_color_hover:rgba(0,0,0,.4);--adfy_woofc_toast_icon_color:#3dc763;--adfy_woofc_toast_icon_background_color:#fff;--adfy_woofc_cart_title_text_color:var(--adfy_woofc_base_text_color);--adfy_woofc_cart_title_font_size:var(--adfy_woofc_base_text_font_size);--adfy_woofc_cart_title_font_weight:var(--adfy_woofc_base_text_font_weight);--adfy_woofc_cart_title_letter_spacing:0;--adfy_woofc_cart_title_text_transform:none;--adfy_woofc_cart_title_count_badge_text_color:#409eff;--adfy_woofc_cart_title_count_badge_background_color:#dfeeff;--adfy_woofc_cart_close_button_text_color:#c7c7c7;--adfy_woofc_cart_close_button_text_color_hover:#888;--adfy_woofc_cart_field_background_color:#fff;--adfy_woofc_cart_field_text_color:#fff;--adfy_woofc_cart_field_border_color:#fff;--adfy_woofc_cart_product_title_text_color:#444;--adfy_woofc_cart_product_title_text_color_hover:#1b81ff;--adfy_woofc_cart_product_price_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_text_color:#444;--adfy_woofc_cart_product_quantity_input_button_text_color:#444;--adfy_woofc_cart_product_remove_button_text_color:#878787;--adfy_woofc_cart_product_remove_button_text_color_hover:#fff;--adfy_woofc_cart_product_remove_button_background_color:#e9e9e9;--adfy_woofc_cart_product_remove_button_background_color_hover:#6221ff;--adfy_woofc_cart_product_title_font_size:15px;--adfy_woofc_cart_product_title_font_weight:normal;--adfy_woofc_trigger_button_zindex:10000000;--adfy_woofc_overlaymask_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 10);--adfy_woofc_floating_cart_zindex:calc(var(--adfy_woofc_trigger_button_zindex) + 30);--adfy_woofc_floating_cart_inner_mask_zindex:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__hide-woofc{cursor:pointer}.adfy__woofc-visible{max-height:100vh;overflow-y:hidden}.adfy__woofc-hidden{display:none}.adfy__woofc-link.has-underline{background:transparent;background-color:transparent;border:none;color:var(--adfy_woofc_base_link_color);position:relative;text-decoration:none;transition:all .5s ease}.adfy__woofc-link.has-underline:after,.adfy__woofc-link.has-underline:before{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after,[dir=rtl] .adfy__woofc-link.has-underline:before{left:auto;right:0}.adfy__woofc-link.has-underline:before{-webkit-backface-visibility:hidden;background-color:currentColor;content:"";transform:scaleX(0);transform-origin:right center;transition:transform .26s cubic-bezier(.25,.8,.25,1);will-change:scale;z-index:1}[dir=rtl] .adfy__woofc-link.has-underline:before{transform-origin:left center}.adfy__woofc-link.has-underline:after{background-color:currentColor;bottom:-2px;content:"";height:2px;left:0;opacity:.6;position:absolute;width:100%}[dir=rtl] .adfy__woofc-link.has-underline:after{left:auto;right:0}.adfy__woofc-link.has-underline:hover{color:var(--adfy_woofc_base_link_color_hover);text-decoration:none}.adfy__woofc-link.has-underline:hover:before{background-color:var(--adfy_woofc_base_link_color_hover);content:"";transform:scale(1);transform-origin:left center}[dir=rtl] .adfy__woofc-link.has-underline:hover:before{transform-origin:right center}.adfy__woofc-link.has-underline:focus{outline:none;text-decoration:none}.adfy__woofc-alert{background-color:#eee;border-radius:4px;color:#444;display:block;margin-bottom:20px;overflow:hidden;padding:10px 15px}.adfy__woofc-alert .adfy__woofc-alert-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-size:14px;font-weight:400;gap:8px;line-height:1.4;margin:0}.adfy__woofc-alert .adfy__woofc-alert-text svg{color:#444;height:14px;width:14px}.adfy__woofc-alert.success{background-color:#f0f9eb;color:#67c23a}.adfy__woofc-alert.success svg{color:#67c23a}.adfy__woofc-alert.error{background-color:#ffe6e6;color:#f56c6c}.adfy__woofc-alert.error svg{color:#f56c6c}.adfy__woofc-button,a.adfy__woofc-button,button.adfy__woofc-button,button.adfy__woofc-button[type=submit],input.adfy__woofc-button[type=submit]{align-items:center;display:inline-flex;font-size:var(--adfy_woofc_base_button_font_size);font-weight:var(--adfy_woofc_base_button_font_weight);gap:5px;letter-spacing:var(--adfy_woofc_base_button_letter_spacing);line-height:1;fill:var(--adfy_woofc_primary_button_label_color);-webkit-appearance:button;-moz-appearance:button;appearance:button;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-radius:var(--adfy_woofc_base_button_border_radius);border-style:solid;border-width:1px;box-shadow:none;color:var(--adfy_woofc_primary_button_label_color);padding:15px 25px;text-decoration:none;text-transform:var(--adfy_woofc_base_button_text_transform);transition:all .5s ease}.adfy__woofc-button:hover,a.adfy__woofc-button:hover,button.adfy__woofc-button:hover,button.adfy__woofc-button[type=submit]:hover,input.adfy__woofc-button[type=submit]:hover{fill:var(--adfy_woofc_primary_button_label_color_hover);background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);box-shadow:none;color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}.adfy__woofc-button:focus,a.adfy__woofc-button:focus,button.adfy__woofc-button:focus,button.adfy__woofc-button[type=submit]:focus,input.adfy__woofc-button[type=submit]:focus{box-shadow:none;outline:0;text-decoration:none}.adfy__woofc-button.close,.adfy__woofc-button.continue-shopping,.adfy__woofc-button.secondary,a.adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}.adfy__woofc-button.close:hover,.adfy__woofc-button.continue-shopping:hover,.adfy__woofc-button.secondary:hover,a.adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}.adfy__woofc-fake-button{-webkit-appearance:none;-moz-appearance:none;cursor:pointer;display:inline-flex;font-size:15px;font-weight:400;height:auto;line-height:1;margin:0;padding:0;transition:all .5s ease;width:auto}.adfy__woofc-fake-button,.adfy__woofc-fake-button:hover{fill:currentColor;background:transparent;background-color:transparent;border:none;box-shadow:none;color:currentColor;text-decoration:none}.adfy__woofc-fake-button:focus{border:none;box-shadow:none;outline:0;text-decoration:none}.notyf{color:var(--adfy_woofc_toast_text_color)}.notyf .notyf__toast[class*=adfy__woofc-notfy]{box-shadow:0 10px 30px rgba(0,0,0,.05)}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__icon .notyf__icon--success{background:var(--adfy_woofc_toast_icon_background_color);color:var(--adfy_woofc_toast_icon_color)!important}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message{color:var(--adfy_woofc_toast_text_color);font-size:15px;font-weight:400;line-height:1.4}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button{align-items:center;background-color:var(--adfy_woofc_toast_button_background_color);border-radius:3px;color:var(--adfy_woofc_toast_button_text_color);display:inline-flex;font-size:13px;letter-spacing:inherit;padding:5px 10px 6px;text-transform:inherit}.notyf .notyf__toast[class*=adfy__woofc-notfy] .notyf__wrapper .notyf__message .adfy__woofc-notfy-button:hover{background-color:var(--adfy_woofc_toast_button_background_color_hover);color:var(--adfy_woofc_toast_button_text_color_hover)}.notyf .notyf__toast.adfy__woofc-notfy-success .notyf__ripple{background:var(--adfy_woofc_toast_background_color)!important}#adfy__woofc-trigger{align-items:center;border-color:var(--adfy_woofc_toggle_button_border_color);border-style:solid;border-width:1px;bottom:var(--adfy_woofc_toggle_button_vertical_offset);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--adfy_woofc_toggle_button_size);justify-content:center;left:auto;margin:0;padding:0;position:fixed;right:var(--adfy_woofc_toggle_button_horizental_offset);width:var(--adfy_woofc_toggle_button_size);z-index:var(--adfy_woofc_trigger_button_zindex);fill:var(--adfy_woofc_toggle_button_text_color);background-color:var(--adfy_woofc_toggle_button_background_color);border-radius:var(--adfy_woofc_toggle_button_border_radius);box-shadow:0 0 2px rgba(0,0,0,.3);color:var(--adfy_woofc_toggle_button_text_color);cursor:pointer;font-weight:400;line-height:1;transition:all .5s ease}[dir=rtl] #adfy__woofc-trigger{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger[data_display=hidden]{display:none;opacity:0;visibility:hidden}#adfy__woofc-trigger .icon svg{height:var(--adfy_woofc_toggle_button_cart_icon_font_size);width:var(--adfy_woofc_toggle_button_cart_icon_font_size)}#adfy__woofc-trigger .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:3px;bottom:auto;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;font-weight:400;height:23px;justify-content:center;left:-10px;line-height:1;position:absolute;right:auto;top:-5px;transition:all .5s ease-in-out;width:23px}[dir=rtl] #adfy__woofc-trigger .badge{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-left{bottom:auto;left:-10px;right:auto;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.top-right{bottom:auto;left:auto;right:-10px;top:-5px}[dir=rtl] #adfy__woofc-trigger .badge.top-right{left:-10px;right:auto}#adfy__woofc-trigger .badge.bottom-left{bottom:-5px;left:-10px;right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-left{left:auto;right:-10px}#adfy__woofc-trigger .badge.bottom-right{bottom:-5px;left:auto;right:-10px;top:auto}[dir=rtl] #adfy__woofc-trigger .badge.bottom-right{left:-10px;right:auto}#adfy__woofc-trigger:hover{fill:var(--adfy_woofc_toggle_button_text_color_hover);background-color:var(--adfy_woofc_toggle_button_background_color_hover);border-color:var(--adfy_woofc_toggle_button_border_color_hover);box-shadow:0 0 60px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_text_color_hover)}#adfy__woofc-trigger:hover .badge{background-color:var(--adfy_woofc_toggle_button_badge_background_color_hover);color:var(--adfy_woofc_toggle_button_badge_text_color_hover)}#adfy__woofc-trigger:focus{outline:none}#adfy__woofc-trigger.top-right{bottom:auto;left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset);top:var(--adfy_woofc_toggle_button_vertical_offset)}#adfy__woofc-trigger.top-left,[dir=rtl] #adfy__woofc-trigger.top-right{left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto}#adfy__woofc-trigger.top-left{bottom:auto;top:var(--adfy_woofc_toggle_button_vertical_offset)}[dir=rtl] #adfy__woofc-trigger.top-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-trigger.bottom-left{bottom:var(--adfy_woofc_toggle_button_vertical_offset);left:var(--adfy_woofc_toggle_button_horizental_offset);right:auto;top:auto}[dir=rtl] #adfy__woofc-trigger.bottom-left{left:auto;right:var(--adfy_woofc_toggle_button_horizental_offset)}#adfy__woofc-hide-coupon-container,#adfy__woofc-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-hide-coupon-container svg,#adfy__woofc-hide-shipping-container svg{height:20px;width:20px}#adfy__woofc-hide-coupon-container:hover,#adfy__woofc-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}.adfy_fc__woo-trigger-shortcode-button{line-height:1;position:relative}.adfy_fc__woo-trigger-shortcode-button .icon svg{height:24px;width:24px}.adfy_fc__woo-trigger-shortcode-button .badge{align-items:center;background-color:var(--adfy_woofc_toggle_button_badge_background_color);border-radius:20px;box-shadow:0 0 2px rgba(0,0,0,.1);color:var(--adfy_woofc_toggle_button_badge_text_color);display:inline-flex;font-size:13px;height:23px;justify-content:center;line-height:1;position:absolute;top:-20px;transition:all .5s ease-in-out;width:23px}.adfy_fc__woo-trigger-shortcode-button .badge.top-right{right:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-right{left:-15px;right:auto}.adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:-15px}[dir=rtl] .adfy_fc__woo-trigger-shortcode-button .badge.top-left{left:auto;right:-15px}#adfy__floating-cart{background-color:var(--adfy_woofc_cart_background_color);box-shadow:10px 0 30px rgba(0,0,0,.2);box-sizing:border-box;color:var(--adfy_woofc_base_text_color);display:block;font-size:var(--adfy_woofc_base_text_font_size);position:fixed;transition:all .8s cubic-bezier(.77,0,.18,1) 0s;z-index:var(--adfy_woofc_floating_cart_zindex);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}[dir=rtl] #adfy__floating-cart{box-shadow:-10px 0 30px rgba(0,0,0,.2)}#adfy__floating-cart .adfy_woofc-inner{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;padding:30px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy_woofc-inner{padding:20px}}#adfy__floating-cart[data_type=drawer]{backface-visibility:visible;bottom:0;opacity:1;top:0;visibility:visible;width:var(--adfy_woofc_cart_width)}@media (max-width:575px){#adfy__floating-cart[data_type=drawer]{width:93vw}}#adfy__floating-cart[data_type=modal]{z-index:var(--adfy_woofc_floating_cart_zindex)}#adfy__floating-cart[data_type=drawer][data_position=left]{left:-100vw;right:auto}#adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_type=drawer][data_position=right]{left:-100vw;right:auto}.adfy__woofc-visible #adfy__floating-cart{transition:all .6s cubic-bezier(.77,0,.18,1)}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:0;right:auto}.adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right],[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=left]{left:auto;right:0}[dir=rtl] .adfy__woofc-visible #adfy__floating-cart[data_type=drawer][data_position=right]{left:0;right:auto}#adfy__floating-cart .adfy__woofc-header{align-items:center;border-bottom:1px solid var(--adfy_woofc_border_color);-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 30px;justify-content:space-between;margin-bottom:20px;padding-bottom:15px}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title{align-items:center;color:var(--adfy_woofc_cart_title_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:20px;gap:8px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-header .adfy__woofc-title .adfy__woofc-badge{align-items:center;background-color:var(--adfy_woofc_cart_title_count_badge_background_color);border-radius:15px;color:var(--adfy_woofc_cart_title_count_badge_text_color);font-size:calc(var(--adfy_woofc_base_text_font_size) - 20%);font-weight:400;line-height:1;padding:7px 10px 8px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button{align-items:center;display:inline-flex;justify-content:center}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc{display:inline-flex;font-weight:400;height:30px;line-height:1;margin:0;padding:0;width:30px;fill:var(--adfy_woofc_cart_close_button_text_color);background-color:transparent;border:none;border-radius:100%;color:var(--adfy_woofc_cart_close_button_text_color)}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc svg{height:22px;width:22px}#adfy__floating-cart .adfy__woofc-header .adfy__close-button .adfy__hide-woofc:hover{fill:var(--adfy_woofc_cart_close_button_text_color_hover);background-color:transparent;border:none;color:var(--adfy_woofc_cart_close_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-shipping-bar{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-shipping-bar.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text{font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 10px;padding:0}#adfy__floating-cart .adfy__woofc-shipping-bar .adfy__woofc-shipping-text .amount{font-weight:700}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars{position:relative}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{background-color:var(--adfy_woofc_shopping_meter_initial_background_color);border-radius:10px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);display:block;height:8px;position:relative;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .shipping-bar{height:5px}}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_progress_background_color);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);left:0;position:absolute;right:auto;top:0;transition:width .5s linear;z-index:2}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar{left:auto;right:0}#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){animation:adfyProgressbar 1s linear infinite;background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}[dir=rtl] #adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar:not(.hide-animation){background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}#adfy__floating-cart .adfy__woofc-shipping-bar[data-threashold_reached=true] .progress-bars .live-progress-bar{background-color:var(--adfy_woofc_shopping_meter_threashold_reached_background_color)}#adfy__floating-cart #adfy__woofc-cart-errors{background-color:#e1efff;border-radius:5px;color:#387ecd;display:block;line-height:1.5;margin-bottom:30px;padding:15px}#adfy__floating-cart #adfy__woofc-cart-errors.hidden{display:none}#adfy__floating-cart #adfy__woofc-cart-errors.error{background-color:#ffe6e6;color:#f56c6c}#adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{cursor:pointer;display:inline-flex;margin-left:5px}[dir=rtl] #adfy__floating-cart #adfy__woofc-cart-errors #adfy__woofc_restore_item{margin-left:0;margin-right:5px}#adfy__floating-cart .adfy__woofc-content{display:flex;flex:1 1 auto;flex-direction:row;flex-direction:column;flex-wrap:wrap;overflow:hidden;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{bottom:0;display:block;left:0;padding:10px 10px 10px 0;position:absolute;right:0;top:0;z-index:5}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry{padding:10px 0 10px 10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:30px;column-gap:30px;display:grid;grid-template-columns:100px auto;margin-bottom:30px;position:relative}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item{-moz-column-gap:25px;column-gap:25px;margin-bottom:20px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb{border:none;box-shadow:none;margin:0;max-width:100%;padding:0;position:relative;width:100%}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-link>img{background-color:var(--adfy_woofc_border_color);border:1px solid var(--adfy_woofc_border_color);border-radius:5px;display:block;max-width:100%;position:relative}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{align-items:center;background-color:var(--adfy_woofc_cart_product_remove_button_background_color);border:none;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.1);color:var(--adfy_woofc_cart_product_remove_button_text_color);display:inline-flex;height:26px;justify-content:center;margin:0;padding:0;position:absolute;right:-10px;text-decoration:none;top:-10px;width:26px;z-index:1}[dir=rtl] #adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{left:-10px;right:auto}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item{height:24px;width:24px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item svg{height:16px;width:16px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .thumb .adfy__woofc-remove-cart-item:hover{background-color:var(--adfy_woofc_cart_product_remove_button_background_color_hover);color:var(--adfy_woofc_cart_product_remove_button_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{color:var(--adfy_woofc_cart_product_title_text_color);display:block;font-size:var(--adfy_woofc_cart_product_title_font_size);font-weight:var(--adfy_woofc_cart_product_title_font_weight);line-height:1.3;margin:0 0 10px;padding:0}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title{margin-bottom:5px}}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link{color:var(--adfy_woofc_cart_product_title_text_color)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-title .woocommerce-loop-product__title .adfy__woofc-link:hover{color:var(--adfy_woofc_cart_product_title_text_color_hover)}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price{margin-bottom:10px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-item-price .quantity{align-items:center;border:none;color:var(--adfy_woofc_cart_product_price_quantity_text_color);display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:700;gap:2px;height:auto;margin:0;padding:0;width:auto}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity{display:block}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:30px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin:0;padding:5px 10px;width:110px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-inner-spin-button,#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form input[type=number]{-moz-appearance:textfield}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field{align-items:center;-webkit-appearance:none;-moz-appearance:none;background:transparent;background-color:transparent;border:none;border-radius:3px;box-shadow:none;color:var(--adfy_woofc_cart_product_quantity_text_color);display:inline-flex;font-size:12px;font-weight:400;height:30px;justify-content:center;margin:0;max-width:50px;min-height:1px;outline:none;padding:0;text-align:center;transition:all .5s ease;width:30px;will-change:width}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-field:focus{outline:0}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button{align-items:center;display:inline-flex;font-size:16px;font-weight:400;height:20px;justify-content:center;line-height:1;margin:0;padding:0;width:20px;fill:var(--adfy_woofc_cart_product_quantity_input_button_text_color);background-color:transparent;border-radius:30px;color:var(--adfy_woofc_cart_product_quantity_input_button_text_color);text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button svg{height:18px}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:hover{text-decoration:none}#adfy__floating-cart .adfy__woofc-content .adfy__woofc-content-entry .adfy__woofc-item .adfy__woofc-item-content .adfy__woofc-quantity .adfy__woofc-quantity-form .adfy__woofc-quantity-input-button:focus{outline:none}.woocommerce-page #adfy__floating-cart main{margin-left:0;margin-right:0;max-width:100%;padding:0}#adfy__floating-cart .adfy__woofc-colophon{margin-top:0;padding-top:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;font-weight:400;gap:5px;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon{fill:var(--adfy_woofc_base_text_color);line-height:1}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-coupon .coupon-text .icon svg{height:18px;width:18px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary{display:block;margin-bottom:20px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul{align-items:center;border:none;border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .label,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li .value{color:var(--adfy_woofc_base_text_color);font-size:var(--adfy_woofc_base_text_font_size);font-weight:400}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.adfy__woofc-hidden{display:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li:not(:last-child){border-bottom:1px dotted var(--adfy_woofc_border_color);padding-bottom:10px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.discount .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value span,#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary ul li.total .value strong{font-weight:700}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-cart-summary.discount ul{border:1px solid var(--adfy_woofc_border_color);padding:10px 15px}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions{-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:repeat(2,1fr)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions.adfy__woofc-fullwidth{-moz-column-gap:0;column-gap:0;grid-template-columns:repeat(1,1fr);justify-content:center}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{align-items:center;background:transparent;background-color:var(--adfy_woofc_primary_button_background_color);border-color:var(--adfy_woofc_primary_button_border_color);border-style:solid;border-width:1px;color:var(--adfy_woofc_primary_button_label_color);display:inline-flex;height:auto;justify-content:center;padding:20px 15px;width:100%}@media (max-width:575px){#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button{padding:15px 10px}}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button:hover{background:transparent;background-color:var(--adfy_woofc_primary_button_background_color_hover);border-color:var(--adfy_woofc_primary_button_border_color_hover);color:var(--adfy_woofc_primary_button_label_color_hover);text-decoration:none}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary{fill:var(--adfy_woofc_secondary_button_label_color);background-color:var(--adfy_woofc_secondary_button_background_color);border-color:var(--adfy_woofc_secondary_button_border_color);color:var(--adfy_woofc_secondary_button_label_color)}#adfy__floating-cart .adfy__woofc-colophon .adfy__woofc-actions .adfy__woofc-button.secondary:hover{fill:var(--adfy_woofc_secondary_button_label_color_hover);background-color:var(--adfy_woofc_secondary_button_background_color_hover);border-color:var(--adfy_woofc_secondary_button_border_color_hover);color:var(--adfy_woofc_secondary_button_label_color_hover)}#adfy__floating-cart #adfy__woofc_empty_cart_section{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;justify-content:center}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon{animation:adfyFloatingCartFadeDown .5s ease}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_icon svg{display:inline-flex;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color);height:42px;width:42px}#adfy__floating-cart #adfy__woofc_empty_cart_section #adfy__woofc_empty_cart_text{display:inline-flex;margin:0}#adfy__woofc-shipping-container #adfy__woofc-hide-shipping-container{background:transparent;background-color:transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner{display:block;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;padding:0 0 60px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:10px;list-style:none;margin:0 0 30px;padding:20px;position:relative}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;margin:0;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner #adfy__woofc-shipping-methods li label:hover{cursor:pointer}#adfy__woofc-shipping-container #adfy__woofc-shipping-container-inner .adfy__woo-shipping-destination{margin:20px 0}#adfy__woofc-shipping-container .shipping-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-shipping-container .shipping-container-header{justify-content:flex-end}}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container{align-items:center;display:inline-flex;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;gap:10px;line-height:1;fill:var(--adfy_woofc_base_text_color);color:var(--adfy_woofc_base_text_color)}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container svg{display:inline-flex;height:20px;width:20px}#adfy__woofc-shipping-container .shipping-container-header #adfy__woo-hide-shipping-container:hover{fill:var(--adfy_woofc_base_link_color_hover);color:var(--adfy_woofc_base_link_color_hover)}#adfy__woofc-shipping-container #adfy__woofc-shipping-form{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;margin:30px 0;padding:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .adfy__woofc-shipping-form-elements{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:20px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form label{display:block;font-size:calc(var(--adfy_woofc_base_text_font_size) - 10%);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form label{margin:0 3px 0 0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input.input_text:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form input[type=hidden]{display:none;height:0;width:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select{align-items:center;background-color:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;width:100%}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single,[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form select{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single:focus,#adfy__woofc-shipping-container #adfy__woofc-shipping-form select:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2.select2-container{width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .addonify_floating_cart-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__rendered{color:var(--adfy_woofc_cart_input_text_color);line-height:21px;padding:0}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:auto;right:5px;top:10px}[dir=rtl] #adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-selection__arrow{left:5px;right:auto}#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown,#adfy__woofc-shipping-container #adfy__woofc-shipping-form .select2-container--default .select2-selection--single .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color)}.adfy__woofc-visible .select2-container--default .select2-dropdown{background-color:#fff;border-color:var(--adfy_woofc_cart_input_border_color);border-radius:5px;border-style:solid;border-top-left-radius:8px;border-top-right-radius:8px;border-width:1px;z-index:999999999999}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field{border-color:var(--adfy_woofc_cart_input_border_color);border-radius:8px;box-shadow:none;display:flex;flex-direction:row;flex-wrap:wrap}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field:focus{border-color:#3da6ff;box-shadow:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results{padding:10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{font-size:15px;max-height:300px;padding:0 10px 0 0}[dir=rtl] .adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options{padding:0 0 0 10px}.adfy__woofc-visible .select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option{border-radius:5px;display:block;font-size:15px;line-height:1.3;padding:10px}.adfy__woofc-visible .select2-container--default.select2-container--open .select2-dropdown{animation:adfyFloatingCartFadeDown .5s ease}.adfy__woofc-container-canvas{background-color:var(--adfy_woofc_cart_background_color);bottom:0;color:var(--adfy_woofc_base_text_color);display:block;height:100%;margin:0;min-height:100vh;padding:30px;position:absolute;top:0;transition:all .6s cubic-bezier(.77,0,.18,1);width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 10)}.adfy__woofc-container-canvas[data_display=visible]{transition:all .3s ease}.adfy__woofc-container-canvas[data_display=visible] #adfy__woofc-coupon-form{animation:adfyFloatingCartFadeDown .5s ease-in}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:-100vw;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas{left:auto;right:-100vw}#adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}[dir=rtl] #adfy__floating-cart[data_position=left] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:auto;right:-100vw}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas{left:-100vw;right:auto}#adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:auto;right:0}[dir=rtl] #adfy__floating-cart[data_position=right] .adfy__woofc-container-canvas[data_display=visible]{left:0;right:auto}#adfy__woofc-coupon-container .coupon-container-header{border-bottom:1px solid var(--adfy_woofc_border_color);display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:30px;padding-bottom:15px}@media (max-width:991px){#adfy__woofc-coupon-container .coupon-container-header{justify-content:flex-end}}#adfy__woofc-coupon-container #adfy__woofc-coupon-form{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;margin:0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;padding:20px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{display:block;font-size:var(--adfy_woofc_base_text_font_size);font-weight:400;margin:0 0 0 3px}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs label{margin:0 3px 0 0}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-moz-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px;opacity:1}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input:-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input::-ms-input-placeholder{color:var(--adfy_woofc_cart_input_placeholder_color);font-size:13px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 15%);font-weight:400;letter-spacing:.5px}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{align-items:center;background:var(--adfy_woofc_cart_input_background_color);border-color:var(--adfy_woofc_border_color);border-radius:8px;border-style:solid;border-width:1px;box-shadow:none;box-shadow:inset 1px 1px 3px transparent;box-sizing:border-box;color:var(--adfy_woofc_cart_input_text_color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:48px;line-height:21px;max-width:100%;padding:14px 15px;transition:all .5s ease;width:100%}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]{box-shadow:inset -1px 1px 3px transparent}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs input[type=text]:focus{border-color:#3da6ff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:none}#adfy__woofc-coupon-container #adfy__woofc-coupon-form .adfy__woofc-coupon-inputs .adfy__woofc-button{align-items:center;justify-content:center;margin-top:15px;width:100%}#adfy__woofc-coupon-container #adfy__woofc-hide-coupon-container{background:transparent;background-color:transparent}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons{border:2px dashed var(--adfy_woofc_border_color);border-radius:5px;margin-top:40px;padding:20px;position:relative}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons.hidden{display:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{align-items:center;background-color:var(--adfy_woofc_cart_background_color);display:inline-flex;font-size:15px;font-size:calc(var(--adfy_woofc_base_text_font_size) - 5%);font-weight:400;gap:10px;left:15px;line-height:1.4;padding:5px 10px;position:absolute;right:auto;top:-15px;z-index:1}[dir=rtl] #adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title{left:auto;right:15px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .title svg{height:18px;width:18px;fill:var(--adfy_woofc_base_text_color)}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul{display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;gap:15px;list-style:none;margin:10px 0 0;padding:0}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li{align-items:center;border:1px solid var(--adfy_woofc_border_color);border-radius:4px;-moz-column-gap:20px;column-gap:20px;display:grid;grid-template-columns:auto 50px;justify-content:space-between;margin:0;padding:10px 15px;position:relative;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]{align-items:center;background:var(--adfy_woofc_cart_background_color);border:0 solid transparent;border-radius:0;box-shadow:none;box-sizing:border-box;color:var(--adfy_woofc_base_text_color);cursor:default;display:flex;flex-direction:row;flex-wrap:wrap;font-size:15px;font-weight:400;height:auto;line-height:1.4;max-width:100%;min-height:1px;padding:0;transition:none;width:100%}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:focus{box-shadow:none;outline:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons ul li input[type=text]:hover{box-shadow:none;text-decoration:none}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button{align-items:center;border-radius:3px;display:inline-flex;height:30px;justify-content:center;margin:0;padding:0;position:relative;width:50px}#adfy__woofc-coupon-container #adfy__woofc-applied-coupons .adfy__woofc-remove-applied-coupon-button svg{height:18px;width:18px}#adfy__woofc-spinner-container{backface-visibility:hidden;background:var(--adfy_woofc_spinner_container_background);bottom:0;display:block;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:calc(var(--adfy_woofc_floating_cart_zindex) - 1)}#adfy__woofc-spinner-container.visible{backface-visibility:visible;opacity:1;visibility:visible;z-index:calc(var(--adfy_woofc_floating_cart_zindex) + 100)}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner{align-items:center;display:flex;flex-direction:row;flex-direction:column;flex-wrap:wrap;height:100%;justify-content:center;position:relative;width:100%}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner{display:inline-flex;height:32px;overflow:hidden}#adfy__woofc-spinner-container .adfy__woofc-spinner-inner .adfy__woofc-spinner svg{animation:adfyCartSpin 2s ease-in-out infinite both;color:var(--adfy_woofc_spinner_icon_color);display:inline-flex;height:32px;line-height:1;width:32px}#adfy__woofc-overlay{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);backface-visibility:hidden;background:linear-gradient(to right,var(--adfy_woofc_cart_overlay_background_color));bottom:0;cursor:pointer;display:block;height:100%;left:auto;opacity:0;position:fixed;right:0;top:0;transition:all .5s ease;visibility:hidden;width:100%;z-index:0}[dir=rtl] #adfy__woofc-overlay{background:linear-gradient(to left,var(--adfy_woofc_cart_overlay_background_color));left:0;right:auto}.adfy__woofc-visible #adfy__woofc-overlay{backface-visibility:visible;opacity:1;visibility:visible;z-index:var(--adfy_woofc_overlaymask_zindex)}@keyframes adfyFloatingCartFadeIn{0%{opacity:0}40%{opacity:.4}80%{opacity:.8}to{opacity:1}}@keyframes adfyFloatingCartFadeDown{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes adfyFloatingCartSlideToLeft{0%{opacity:0;right:-100vw}to{opacity:1;right:0}}@keyframes adfyFloatingCartSlideToRight{0%{opacity:1;right:0}to{opacity:0;right:-100vw}}@keyframes adfyCartSpin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes adfyProgressbar{0%{background-position-x:1rem}}
    22/*# sourceMappingURL=public.min.css.map */
  • addonify-floating-cart/trunk/public/assets/build/public.min.css.map

    r3150428 r3203981  
    1 {"version":3,"sources":["file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_variables.scss","public.min.css","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_classes.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_mixins.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_alert.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_buttons.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_03shopping-meter.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_04alerts.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_05product.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_06footer.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_07empty.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_03form.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_01container.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_02header.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_03forms.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_04applied-coupons.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_spinner.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_overlay.scss","file:///D:/Localwp/xenial/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_keyframe.scss"],"names":[],"mappings":"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","file":"public.min.css"}
     1{"version":3,"sources":["file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_variables.scss","public.min.css","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_classes.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/abstracts/_mixins.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_alert.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_buttons.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_03shopping-meter.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_04alerts.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_05product.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_06footer.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/main/_07empty.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/shipping/_03form.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_01container.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_02header.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_03forms.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/cart/coupon/_04applied-coupons.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_spinner.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/components/_overlay.scss","file:///home/ashok/Local%20Sites/addonifyfloatingcart/app/public/wp-content/plugins/addonify-floating-cart/public/assets/src/scss/utilities/_keyframe.scss"],"names":[],"mappings":"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","file":"public.min.css"}
  • addonify-floating-cart/trunk/public/assets/build/public.min.js

    r3150428 r3203981  
    1 !function(t){"function"==typeof define&&define.amd?define(t):t()}((function(){"use strict";let t=new Object;t={$:jQuery,action:{toast:null,cart:null},api:{event:null}},window.addonifyFloatingCart=t;const o=addonifyFloatingCartJSObject.ajax_url,e=addonifyFloatingCartJSObject.nonce,n=addonifyFloatingCartJSObject.ajax_refresh_cart_fragments,a=addonifyFloatingCartJSObject.ajax_update_cart_item_action,i=addonifyFloatingCartJSObject.ajax_remove_from_cart_action,d=addonifyFloatingCartJSObject.ajax_restore_in_cart_action,r="1"===addonifyFloatingCartJSObject.open_cart_modal_immediately_after_add_to_cart,c="1"===addonifyFloatingCartJSObject.open_cart_modal_after_click_on_view_cart,s="1"===addonifyFloatingCartJSObject.openCartModalOnTriggerButtonHover,l="1"===addonifyFloatingCartJSObject.hideTriggerButtonIfCartIsEmpty,p=addonifyFloatingCartJSObject.customToggleBtnClass,f="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyShow,u=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDuration,_="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDismissible,g=addonifyFloatingCartJSObject.toast_notification_display_position.split("-"),h="1"===addonifyFloatingCartJSObject.displayToastNotificationButton,y=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyMessage,m=addonifyFloatingCartJSObject.toastNotificationButton,w=addonifyFloatingCartJSObject.ajax_apply_coupon,v=addonifyFloatingCartJSObject.ajax_remove_coupon,C="1"===addonifyFloatingCartJSObject.hideScreenWhenCouponIsApplied,b=addonifyFloatingCartJSObject.updateShippingInfo,E=addonifyFloatingCartJSObject.updateShippingMethod,F=addonifyFloatingCartJSObject.shippingAddressUpdatable,S=addonifyFloatingCartJSObject.states,j="1"===addonifyFloatingCartJSObject.hideScreenWhenShippingAddressUpdated;function O(t){if(!t)throw new Error("Spinner action is required!");const o=document.getElementById("adfy__woofc-spinner-container");o&&("show"===t?(o.classList.add("visible"),o.classList.remove("hidden")):(o.classList.add("hidden"),o.classList.remove("visible")))}addonifyFloatingCartJSObject.hideCartOnOverlayClicked;const{$:A,action:T,api:W}=t;const M=async()=>{O("show");try{const{fragments:a}=await A.ajax({type:"POST",dataType:"json",url:o,data:{action:n,nonce:e}});if(!a)throw new Error("Fragments not fetched! aborting...");return A.each(a,(function(t,o){A(t).replaceWith(o)})),A(document).trigger("wc_update_cart"),t.api.event.cartUpdated(a),a}catch(t){return console.error(t),t}finally{O("hide")}},{$:k,api:x}=t;const{action:J}=t;const{$:q}=t;function D(t){if(!t)throw new Error("Function [setShoppingMeterVisibility] requires action!");const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar");o.length>0&&("hide"===t?o.addClass("adfy__woofc-hidden"):o.removeClass("adfy__woofc-hidden"))}function U(t){if(!t)throw new Error("Function [setTriggerButtonVisibility] requires action!");const o=document.getElementById("adfy__woofc-trigger");o&&o.hasAttribute("data_display")&&("hide"===t?o.setAttribute("data_display","hidden"):o.setAttribute("data_display","visible"))}const{$:L}=t;function I(){L(document).on("click",".adfy__woofc-prevent-default",(function(t){t.preventDefault()}));let o=".adfy__show-woofc";p&&p.length>0&&(o+=", "+p);const e=o.split(", ").map((t=>{const o=t.replace(" ","").trim();return o.startsWith(".")?o:`.${o}`})).join(", ");L(document).on("click",e,(function(o){t.action.cart.open(o)})),L(document).on("mouseover",".adfy__show-woofc",(function(o){s&&t.action.cart.open(o)})),L(document).on("click",".added_to_cart.wc-forward",(function(o){c&&(o.preventDefault(),t.action.cart.open(o))})),L(document).on("click",".adfy__hide-woofc",(function(o){o.preventDefault(),t.action.cart.close(o)})),document.addEventListener("addonifyFloatingCartUpdated",(()=>{(()=>{const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar");o&&(parseInt(o.attr("data_percentage"))>=100?(o.addClass("hide-animation"),t.api.event.shoppingMeterThresholdReached()):o.removeClass("hide-animation"))})()})),document.addEventListener("addonifyFloatingCartItemRestored",(()=>{l&&U("show")}))}const{$:R}=t;let P;function $(t="hide",o="info",e=""){const n=R("#adfy__floating-cart #adfy__woofc-cart-errors"),a=()=>{P&&clearTimeout(P),n.hasClass("error")&&n.removeClass("error"),n.html(" ").addClass("hidden")};"hide"===t?a():e.length>0&&(P&&clearTimeout(P),"error"===o&&n.addClass("error"),n.html(" ").html(e).removeClass("hidden"),P=setTimeout((()=>a()),1e4))}function B(t,o=null){if(!t)throw new Error("Coupon alert action is required!");let e=R("#adfy__floating-cart .adfy__woofc-alert");const n=()=>{let t;clearTimeout(t),t=setTimeout((()=>{R(e).fadeOut(),clearTimeout(t)}),1e4)};if("hide"!==t){if(e.length>0){const t={success:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>',error:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>'};if(!o)throw new Error("Coupon alert data is required!");const{style:e,message:a}=o;if(!e||!a)throw new Error("Coupon alert style & message is required!");let i;switch(e){case"success":i=`<p class="adfy__woofc-alert-text">\n                        ${t.success}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.success").html(" ").html(i).fadeIn(),n();break;case"error":i=`<p class="adfy__woofc-alert-text">\n                        ${t.error}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.error").html(" ").html(i).fadeIn(),n()}}}else n()}function N(){clearTimeout(P);let t=document.getElementById("adfy__woofc-coupon-alerts");t&&t.hasChildNodes()&&(P=setTimeout((function(){R("#adfy__woofc-coupon-alerts").html("")}),1e4))}function V(t="hide",o=null){if("string"!=typeof t)throw new Error("Colophon visibility must be a string value.");const e=document.querySelector(".adfy__woofc-colophon"),n=document.querySelector(".adfy__woofc-cart-summary ul li.discount"),a=document.querySelector(".adfy__woofc-cart-summary ul li.sub-total"),i="adfy__woofc-hidden";if(e&&("show"===t?e.classList.remove(i):e.classList.add(i)),e&&"show"===t){const{discountVisibility:t,subTotalVisibility:e}=o;n&&t&&("show"===t?n.classList.remove(i):n.classList.add(i)),a&&("show"===e?a.classList.remove(i):a.classList.add(i))}}const{$:z}=t;function Q(){z(document).on("added_to_cart",(function(o,e){o.preventDefault(),r&&t.action.cart.open(o),l&&U("show"),f&&function(o){if(!o||"object"!=typeof o)throw new Error("Toast message data invalid!");if(o&&"object"==typeof o){let e,n;const{__:a}=wp.i18n;n=Object.hasOwn(o,"product")?o.product.charAt(0).toUpperCase()+o.product.slice(1):a("Product","addonify-floating-cart"),e=h?y.replace("{product_name}",n)+" "+m:y.replace("{product_name}",n),t.action.toast.dispatch("success",e)}}(e),$("hide"),D("show"),V("show",{discountVisibility:"show",subTotalVisibility:"show"}),t.api.event.cartUpdated(e)})),z(document).on("wc_cart_emptied",(function(o){l&&U("hide"),D("hide"),V("hide"),t.api.event.cartUpdated(o)}))}const H=()=>{const t=document.getElementById("adfy__woofc-scrollbar"),o=t.classList.contains("ps");t&&!o&&new PerfectScrollbar(t,{wheelSpeed:1,wheelPropagation:!0,minScrollbarLength:20})},{$:X}=t,{__:G}=wp.i18n;function K(n,i,d=1){if(!n)throw new Error("Function [updateCartViaAjax] requires current element!");if(!i)throw new Error("Function [updateCartViaAjax] requires action!");let r;switch(i){case"add":r=X(n).next();break;case"sub":r=X(n).prev();break;default:r=X(n)}let c=X(n).attr("data-product_id"),s=X(n).attr("data-cart_item_key"),l=X(n).parents(".adfy__woofc-item");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:a,product_id:c,cart_item_key:s,nonce:e,type:i,quantity:d},success:function(o){if(!o||o.error)throw new Error("Error updating cart via AJAX!");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)}));let n=o.nQuantity;"OoS"===n?(alert("Out of stock range"),r.val(n)):"nil"!==n&&r.val(n),l.find(X(".adfy__woofc-item-price-multiplier-quantity")).html(n),l.unblock(),X(document.body).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){const{__:e}=wp.i18n,n=e("Error processing cart update request!","addonify-floating-cart");throw t.action.toast.dispatch("error",n),new Error(o)},complete:function(){O("hide")}})}const{$:Y}=t;const{$:Z}=t;function tt(){Z(document).on("click","#adfy__woofc-shipping-trigger",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),t.api.event.shippingModalOpened(),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))})),Z(document).on("click","#adfy__woofc-hide-shipping-container",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()})),document.addEventListener("addonifyFloatingCartShippingAddressUpdated",(()=>{j&&setTimeout((()=>{Z("#adfy__woofc-shipping-container").attr("data_display","hidden")}),1e3)})),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){let o=Z(this).val(),e=Z("#addonify_floating_cart_shipping_state"),n=S[o];if(e.siblings("span.select2").remove(),"object"==typeof n&&Object.keys(n).length>0){let t="";for(let o in n)t+='<option value="'+o+'">'+n[o]+"</option>";if("input"===e.prop("tagName").toLowerCase()){let t=e.parent();e.remove();let o=Z(document.createElement("select"));o.addClass("state_select").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("data-placeholder","State / County"),t.append(o),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){t.preventDefault(),"1"===F&&Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})}))}Z("#addonify_floating_cart_shipping_state").html(t)}else if(n instanceof Array&&0===n.length){let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("type","hidden"),t.append(o)}else{let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("placeholder","State / County"),t.append(o)}}))}function ot(){Z(document).on("submit","#adfy__woofc-shipping-form",(function(e){e.preventDefault(),O("show");let n=Z("#addonify_floating_cart_shipping_country").val(),a=Z("#addonify_floating_cart_shipping_state").val(),i=Z("#addonify_floating_cart_shipping_city").val(),d=Z("#addonify_floating_cart_shipping_postcode").val(),r=Z("#addonify-floating-cart-shipping-nonce").val();const{__:c}=wp.i18n;let s=c("Error updating shipping address!.","addonify-floating-cart");Z.ajax({url:o,method:"POST",data:{action:b,calc_shipping_country:n,calc_shipping_state:a,calc_shipping_city:i,calc_shipping_postcode:d,nonce:r},success:function(o){o?(o.fragments&&(Z.each(o.fragments,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),t.api.event.shippingAddressUpdated(o.fragments)),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))):t.action.toast.dispatchToast("error",s)},error:function(o){console.log(o),t.action.toast.dispatchToast("error",s)},complete:function(){O("hide")}})}))}function et(){Z(document).on("change",".shipping_method",(function(n){const{__:a}=wp.i18n;let i=new Object,d=a("Error processing shipping method update request.","addonify-floating-cart");Z("select.shipping_method, :input[name^=shipping_method][type=radio]:checked, :input[name^=shipping_method][type=hidden]").each((function(){i[Z(this).data("index")]=Z(this).val()})),O("show"),Z.ajax({url:o,method:"POST",data:{action:E,nonce:e,shipping_method:i},success:function(o){if(!o||o.error)return void t.action.toast.dispatch("error",d);let e=o.fragments;e&&Z.each(e,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))},error:function(o){console.log(o),t.action.toast.dispatch("error",d)},complete:function(){O("hide")}})}))}document.addEventListener("DOMContentLoaded",(function(){(()=>{if("function"!=typeof PerfectScrollbar)return void console.warn("Info: Addonify Floating Cart, PerfectScrollbar is not defined. Perfect scroll bar won't be initialized.");const t=document.getElementById("adfy__floating-cart");new MutationObserver((t=>{t.length>0&&H()})).observe(t,{attributes:!1,childList:!0,subtree:!0})})()})),function(n){T.cart={open:t=>{t.preventDefault(),A("body").addClass("adfy__woofc-visible"),W.event.cartOpened(t)},close:t=>{t.preventDefault(),A("body").removeClass("adfy__woofc-visible"),W.event.cartClosed(t)},refresh:()=>{M()}},x.event={cartOpened:t=>{k(document).trigger("addonifyFloatingCartOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartOpened"))},cartClosed:t=>{k(document).trigger("addonifyFloatingCartClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartClosed"))},cartUpdated:t=>{k(document).trigger("addonifyFloatingCartUpdated",t),document.dispatchEvent(new CustomEvent("addonifyFloatingCartUpdated",{detail:t}))},cartEmptied:()=>{k(document).trigger("addonifyFloatingCartEmptied"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartEmptied")),k(document).trigger("wc_cart_emptied")},productRemoved:o=>{k(document).trigger("addonifyFloatingCartProductRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRemoved",{detail:o})),t.api.event.cartUpdated(data)},productRestored:o=>{k(document).trigger("addonifyFloatingCartProductRestored",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRestored",{detail:o})),t.api.event.cartUpdated(o)},couponModalOpened:()=>{k(document).trigger("addonifyFloatingCartCouponModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalOpened"))},couponModalClosed:()=>{k(document).trigger("addonifyFloatingCartCouponModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalClosed"))},couponApplied:o=>{k(document).trigger("addonifyFloatingCartCouponApplied",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponApplied",{detail:o})),t.api.event.cartUpdated(o)},couponRemoved:o=>{k(document).trigger("addonifyFloatingCartCouponRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponRemoved",{detail:o})),t.api.event.cartUpdated(o)},shippingModalOpened:()=>{k(document).trigger("addonifyFloatingCartShippingModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalOpened"))},shippingModalClosed:()=>{k(document).trigger("addonifyFloatingCartShippingModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalClosed"))},shippingAddressUpdated:o=>{k(document).trigger("addonifyFloatingCartShippingAddressUpdated",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingAddressUpdated",{detail:o})),t.api.event.cartUpdated(o)},shoppingMeterThresholdReached:()=>{k(document).trigger("addonifyFloatingCartShoppingMeterThresholdReached"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShoppingMeterThresholdReached"))}},J.toast={dispatch:(t="success",o)=>{if("undefined"!=typeof Notyf){let e=new Notyf({duration:u,dismissible:_,ripple:!0,position:{x:g[1],y:g[0]}});if(!o)throw new Error("Notification toast data/message is empty, bailing out...");"error"===t&&e.error({className:"adfy__woofc-notfy-error",message:o}),f&&"success"===t&&e.success({className:"adfy__woofc-notfy-success",message:o})}}},n(document).ready((function(){M(),I(),Q(),X(document).on("click",".adfy__woofc-item .adfy__woofc-inc-quantity",(function(t){t.preventDefault();const o=X(this).prev();(parseInt(o.val())<parseInt(o.attr("max"))||""===o.attr("max"))&&K(this,"add")})),X(document).on("click",".adfy__woofc-item .adfy__woofc-dec-quantity",(function(t){t.preventDefault();const o=X(this).next();parseInt(o.val())<=parseInt(o.attr("min"))||K(this,"sub")})),X(document).on("change",".adfy__woofc-item .adfy__woofc-quantity-input-field",(function(t){t.preventDefault(),K(this,"update",X(this).val())})),X(document).on("click",".adfy__woofc-item .thumb .product-remove",(function(n){n.preventDefault();const a=X(this).attr("data-product_id"),d=X(this).attr("data-cart_item_key"),r=X(this);O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:i,product_id:a,cart_item_key:d,nonce:e},success:function(o){if(!o||o.error)throw new Error("Error removing product from cart!");X(".post-"+a).find("a.wc-forward").remove(),X(".post-"+a).find("a.add_to_cart_button").removeClass("added");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),$("show","info",o.undo_product_link),0===o.cart_items_count&&(t.api.event.cartEmptied(),X(".adfy__woofc-content-entry").html(o.empty_cart_message)),X(document).trigger("removed_from_cart",[o.fragments,o.cart_hash,r]),X(document).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){console.log(o);const e=G("Error processing product removal request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),X(document).on("click","#adfy__woofc_restore_item",(function(n){n.preventDefault();const a=X(this).attr("data-item_key");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:d,cart_item_key:a,nonce:e},success:function(o){if(!o.fragments||o.error)throw new Error("Error restoring product to cart!");const e=o.fragments,n=X(".adfy__woofc-colophon"),a=X(".adfy__woofc-shipping-bar");e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),n.hasClass("adfy__woofc-hidden")&&n.removeClass("adfy__woofc-hidden"),a.hasClass("adfy__woofc-hidden")&&a.removeClass("adfy__woofc-hidden"),t.api.event.productRestored(e),$("hide")},error:function(o){console.log(o);const e=G("Error processing product restore request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),function(){const o=Y("#adfy__woofc-coupon-container");Y(document).on("click","#adfy__woofc-coupon-trigger",(function(e){e.preventDefault(),o.attr("data_display","visible"),t.api.event.couponModalOpened()})),Y(document).on("click","#adfy__woofc-hide-coupon-container",(function(e){e.preventDefault(),o.attr("data_display","hidden"),t.api.event.couponModalClosed()})),document.addEventListener("addonifyFloatingCartCouponApplied",(()=>{C&&setTimeout((()=>{o.attr("data_display","hidden")}),1e3)}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("submit","#adfy__woofc-coupon-form",(function(i){i.preventDefault(),O("show");let d=Y(this).find("input[name=adfy__woofc-coupon-input-field]"),r=d.val();Y.ajax({url:o,method:"post",data:{action:w,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponApplied:e,html:i}=o;e&&(d.val(""),t.api.event.couponApplied(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(o){console.log(o),a=n("Error processing coupon request.","addonify-floating-cart"),t.action.toast.dispatch("error",a),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("click",".adfy__woofc-remove-applied-coupon-button",(function(i){i.preventDefault(),O("show");let d=Y(this).closest("li"),r=Y(this).attr("data-coupon");Y.ajax({url:o,method:"post",data:{action:v,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponRemoved:e,html:i}=o;e&&(d.remove(),t.api.event.couponRemoved(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(t){console.log(t),a=n("Error processing coupon request.","addonify-floating-cart"),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),tt(),ot(),et()}))}(jQuery)}));
     1!function(t){"function"==typeof define&&define.amd?define(t):t()}((function(){"use strict";let t=new Object;t={$:jQuery,action:{toast:null,cart:null},api:{event:null}},window.addonifyFloatingCart=t;const o=addonifyFloatingCartJSObject.ajax_url,e=addonifyFloatingCartJSObject.nonce,n=addonifyFloatingCartJSObject.ajax_refresh_cart_fragments,a=addonifyFloatingCartJSObject.ajax_update_cart_item_action,i=addonifyFloatingCartJSObject.ajax_remove_from_cart_action,d=addonifyFloatingCartJSObject.ajax_restore_in_cart_action,r="1"===addonifyFloatingCartJSObject.open_cart_modal_immediately_after_add_to_cart,c="1"===addonifyFloatingCartJSObject.open_cart_modal_after_click_on_view_cart,s="1"===addonifyFloatingCartJSObject.openCartModalOnTriggerButtonHover,l="1"===addonifyFloatingCartJSObject.hideTriggerButtonIfCartIsEmpty,p=addonifyFloatingCartJSObject.customToggleBtnClass,f="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyShow,u=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDuration,_="1"===addonifyFloatingCartJSObject.addonifyFloatingCartNotifyDismissible,g=addonifyFloatingCartJSObject.toast_notification_display_position.split("-"),h="1"===addonifyFloatingCartJSObject.displayToastNotificationButton,y=addonifyFloatingCartJSObject.addonifyFloatingCartNotifyMessage,m=addonifyFloatingCartJSObject.toastNotificationButton,w=addonifyFloatingCartJSObject.ajax_apply_coupon,v=addonifyFloatingCartJSObject.ajax_remove_coupon,C="1"===addonifyFloatingCartJSObject.hideScreenWhenCouponIsApplied,b=addonifyFloatingCartJSObject.updateShippingInfo,E=addonifyFloatingCartJSObject.updateShippingMethod,F=addonifyFloatingCartJSObject.shippingAddressUpdatable,S=addonifyFloatingCartJSObject.states,j="1"===addonifyFloatingCartJSObject.hideScreenWhenShippingAddressUpdated;function O(t){if(!t)throw new Error("Spinner action is required!");const o=document.getElementById("adfy__woofc-spinner-container");o&&("show"===t?(o.classList.add("visible"),o.classList.remove("hidden")):(o.classList.add("hidden"),o.classList.remove("visible")))}addonifyFloatingCartJSObject.hideCartOnOverlayClicked;const{$:A,action:T,api:W}=t;const M=async()=>{O("show");try{const{fragments:a}=await A.ajax({type:"POST",dataType:"json",url:o,data:{action:n,nonce:e}});if(!a)throw new Error("Fragments not fetched! aborting...");return A.each(a,(function(t,o){A(t).replaceWith(o)})),A(document).trigger("wc_update_cart"),t.api.event.cartUpdated(a),a}catch(t){return console.error(t),t}finally{O("hide")}},{$:k,api:x}=t;const{action:J}=t;const{$:q}=t;function D(t){if(!t)throw new Error("Function [setShoppingMeterVisibility] requires action!");const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar");o.length>0&&("hide"===t?o.addClass("adfy__woofc-hidden"):o.removeClass("adfy__woofc-hidden"))}function U(t){if(!t)throw new Error("Function [setTriggerButtonVisibility] requires action!");const o=document.getElementById("adfy__woofc-trigger");o&&o.hasAttribute("data_display")&&("hide"===t?o.setAttribute("data_display","hidden"):o.setAttribute("data_display","visible"))}const{$:L}=t;function I(){L(document).on("click",".adfy__woofc-prevent-default",(function(t){t.preventDefault()}));let o=".adfy__show-woofc";p&&p.length>0&&(o+=", "+p);const e=o.split(", ").map((t=>{const o=t.replace(" ","").trim();return o.startsWith(".")?o:`.${o}`})).join(", ");L(document).on("click",e,(function(o){t.action.cart.open(o)})),L(document).on("mouseover",".adfy__show-woofc",(function(o){s&&t.action.cart.open(o)})),L(document).on("click",".added_to_cart.wc-forward",(function(o){c&&(o.preventDefault(),t.action.cart.open(o))})),L(document).on("click",".adfy__hide-woofc",(function(o){o.preventDefault(),t.action.cart.close(o)})),document.addEventListener("addonifyFloatingCartUpdated",(()=>{(()=>{const o=q("#adfy__floating-cart .adfy__woofc-shipping-bar .progress-bars .live-progress-bar");o&&(parseInt(o.attr("data_percentage"))>=100?(o.addClass("hide-animation"),t.api.event.shoppingMeterThresholdReached()):o.removeClass("hide-animation"))})()})),document.addEventListener("addonifyFloatingCartItemRestored",(()=>{l&&U("show")}))}const{$:R}=t;let P;function $(t="hide",o="info",e=""){const n=R("#adfy__floating-cart #adfy__woofc-cart-errors"),a=()=>{P&&clearTimeout(P),n.hasClass("error")&&n.removeClass("error"),n.html(" ").addClass("hidden")};"hide"===t?a():e.length>0&&(P&&clearTimeout(P),"error"===o&&n.addClass("error"),n.html(" ").html(e).removeClass("hidden"),P=setTimeout((()=>a()),1e4))}function B(t,o=null){if(!t)throw new Error("Coupon alert action is required!");let e=R("#adfy__floating-cart .adfy__woofc-alert");const n=()=>{let t;clearTimeout(t),t=setTimeout((()=>{R(e).fadeOut(),clearTimeout(t)}),1e4)};if("hide"!==t){if(e.length>0){const t={success:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>',error:'<svg fill="currentColor" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>'};if(!o)throw new Error("Coupon alert data is required!");const{style:e,message:a}=o;if(!e||!a)throw new Error("Coupon alert style & message is required!");let i;switch(e){case"success":i=`<p class="adfy__woofc-alert-text">\n                        ${t.success}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.success").html(" ").html(i).fadeIn(),n();break;case"error":i=`<p class="adfy__woofc-alert-text">\n                        ${t.error}\n                        ${a}\n                    </p>`,R(".adfy__woofc-alert.error").html(" ").html(i).fadeIn(),n()}}}else n()}function N(){clearTimeout(P);let t=document.getElementById("adfy__woofc-coupon-alerts");t&&t.hasChildNodes()&&(P=setTimeout((function(){R("#adfy__woofc-coupon-alerts").html("")}),1e4))}function V(t="hide",o=null){if("string"!=typeof t)throw new Error("Colophon visibility must be a string value.");const e=document.querySelector(".adfy__woofc-colophon"),n=document.querySelector(".adfy__woofc-cart-summary ul li.discount"),a=document.querySelector(".adfy__woofc-cart-summary ul li.sub-total"),i="adfy__woofc-hidden";if(e&&("show"===t?e.classList.remove(i):e.classList.add(i)),e&&"show"===t){const{discountVisibility:t,subTotalVisibility:e}=o;n&&t&&("show"===t?n.classList.remove(i):n.classList.add(i)),a&&("show"===e?a.classList.remove(i):a.classList.add(i))}}const{$:z}=t;function Q(){z(document).on("added_to_cart",(function(o,e){o.preventDefault(),r&&t.action.cart.open(o),l&&U("show"),f&&function(o){if(!o||"object"!=typeof o)throw new Error("Toast message data invalid!");if(o&&"object"==typeof o){let e,n;const{__:a}=wp.i18n;n=Object.hasOwn(o,"product")?o.product.charAt(0).toUpperCase()+o.product.slice(1):a("Product","addonify-floating-cart"),e=h?y.replace("{product_name}",n)+" "+m:y.replace("{product_name}",n),t.action.toast.dispatch("success",e)}}(e),$("hide"),D("show"),V("show",{discountVisibility:"show",subTotalVisibility:"show"}),t.api.event.cartUpdated(e)})),z(document).on("wc_cart_emptied",(function(o){l&&U("hide"),D("hide"),V("hide"),t.api.event.cartUpdated(o)}))}const H=()=>{const t=document.getElementById("adfy__woofc-scrollbar"),o=t.classList.contains("ps");t&&!o&&new PerfectScrollbar(t,{wheelSpeed:1,wheelPropagation:!0,minScrollbarLength:20})},{$:X}=t,{__:G}=wp.i18n;function K(n,i,d=1){if(!n)throw new Error("Function [updateCartViaAjax] requires current element!");if(!i)throw new Error("Function [updateCartViaAjax] requires action!");let r;switch(i){case"add":r=X(n).next();break;case"sub":r=X(n).prev();break;default:r=X(n)}let c=X(n).attr("data-product_id"),s=X(n).attr("data-cart_item_key"),l=X(n).parents(".adfy__woofc-item");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:a,product_id:c,cart_item_key:s,nonce:e,type:i,quantity:d},success:function(o){if(!o||o.error)throw new Error("Error updating cart via AJAX!");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)}));let n=o.nQuantity;"OoS"===n?(alert("Out of stock range"),r.val(n)):"nil"!==n&&r.val(n),l.find(X(".adfy__woofc-item-price-multiplier-quantity")).html(n),l.unblock(),X(document.body).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){const{__:e}=wp.i18n,n=e("Error processing cart update request!","addonify-floating-cart");throw t.action.toast.dispatch("error",n),new Error(o)},complete:function(){O("hide")}})}const{$:Y}=t;const{$:Z}=t;function tt(){Z(document).on("click","#adfy__woofc-shipping-trigger",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),t.api.event.shippingModalOpened(),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))})),Z(document).on("click","#adfy__woofc-hide-shipping-container",(function(o){o.preventDefault(),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()})),document.addEventListener("addonifyFloatingCartShippingAddressUpdated",(()=>{j&&setTimeout((()=>{Z("#adfy__woofc-shipping-container").attr("data_display","hidden")}),1e3)})),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){let o=Z(this).val(),e=Z("#addonify_floating_cart_shipping_state"),n=S[o];if(e.siblings("span.select2").remove(),"object"==typeof n&&Object.keys(n).length>0){let t="";for(let o in n)t+='<option value="'+o+'">'+n[o]+"</option>";if("input"===e.prop("tagName").toLowerCase()){let t=e.parent();e.remove();let o=Z(document.createElement("select"));o.addClass("state_select").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("data-placeholder","State / County"),t.append(o),Z(document).on("change","#addonify_floating_cart_shipping_country",(function(t){t.preventDefault(),"1"===F&&Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})}))}Z("#addonify_floating_cart_shipping_state").html(t)}else if(n instanceof Array&&0===n.length){let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("type","hidden"),t.append(o)}else{let t=e.parent();e.remove();let o=Z(document.createElement("input"));o.addClass("input_text").prop("id","addonify_floating_cart_shipping_state").prop("name","addonify_floating_cart_shipping_state"),o.prop("placeholder","State / County"),t.append(o)}}))}function ot(){Z(document).on("submit","#adfy__woofc-shipping-form",(function(e){e.preventDefault(),O("show");let n=Z("#addonify_floating_cart_shipping_country").val(),a=Z("#addonify_floating_cart_shipping_state").val(),i=Z("#addonify_floating_cart_shipping_city").val(),d=Z("#addonify_floating_cart_shipping_postcode").val(),r=Z("#addonify-floating-cart-shipping-nonce").val();const{__:c}=wp.i18n;let s=c("Error updating shipping address!.","addonify-floating-cart");Z.ajax({url:o,method:"POST",data:{action:b,calc_shipping_country:n,calc_shipping_state:a,calc_shipping_city:i,calc_shipping_postcode:d,nonce:r},success:function(o){o?(o.fragments&&(Z.each(o.fragments,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),t.api.event.shippingAddressUpdated(o.fragments)),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}))):t.action.toast.dispatchToast("error",s)},error:function(o){console.log(o),t.action.toast.dispatchToast("error",s)},complete:function(){O("hide")}})}))}function et(){Z(document).on("change",".shipping_method",(function(n){const{__:a}=wp.i18n;let i=new Object,d=a("Error processing shipping method update request.","addonify-floating-cart");Z("select.shipping_method, :input[name^=shipping_method][type=radio]:checked, :input[name^=shipping_method][type=hidden]").each((function(){i[Z(this).data("index")]=Z(this).val()})),O("show"),Z.ajax({url:o,method:"POST",data:{action:E,nonce:e,shipping_method:i},success:function(o){if(!o||o.error)return void t.action.toast.dispatch("error",d);let e=o.fragments;e&&Z.each(e,(function(t,o){""!==o?Z(t).replaceWith(o):Z(t).html(o)})),Z("#adfy__woofc-shipping-container").attr("data_display","visible"),"1"===F&&(Z("#addonify_floating_cart_shipping_country").length&&Z("#addonify_floating_cart_shipping_country").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"}),Z("select#addonify_floating_cart_shipping_state")&&Z("select#addonify_floating_cart_shipping_state").selectWoo({dropdownAutoWidth:!1,dropdownCssClass:"afc-selectWoo-dropdown"})),Z("#adfy__woofc-shipping-container").attr("data_display","hidden"),t.api.event.shippingModalClosed()},error:function(o){console.log(o),t.action.toast.dispatch("error",d)},complete:function(){O("hide")}})}))}document.addEventListener("DOMContentLoaded",(function(){(()=>{if("function"!=typeof PerfectScrollbar)return void console.warn("Info: Addonify Floating Cart, PerfectScrollbar is not defined. Perfect scroll bar won't be initialized.");const t=document.getElementById("adfy__floating-cart");new MutationObserver((t=>{t.length>0&&H()})).observe(t,{attributes:!1,childList:!0,subtree:!0})})()})),function(n){T.cart={open:t=>{t.preventDefault(),A("body").addClass("adfy__woofc-visible"),W.event.cartOpened(t)},close:t=>{t.preventDefault(),A("body").removeClass("adfy__woofc-visible"),W.event.cartClosed(t)},refresh:()=>{M()}},x.event={cartOpened:t=>{k(document).trigger("addonifyFloatingCartOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartOpened"))},cartClosed:t=>{k(document).trigger("addonifyFloatingCartClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartClosed"))},cartUpdated:t=>{k(document).trigger("addonifyFloatingCartUpdated",t),document.dispatchEvent(new CustomEvent("addonifyFloatingCartUpdated",{detail:t}))},cartEmptied:()=>{k(document).trigger("addonifyFloatingCartEmptied"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartEmptied")),k(document).trigger("wc_cart_emptied")},productRemoved:o=>{k(document).trigger("addonifyFloatingCartProductRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRemoved",{detail:o})),t.api.event.cartUpdated(data)},productRestored:o=>{k(document).trigger("addonifyFloatingCartProductRestored",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartProductRestored",{detail:o})),t.api.event.cartUpdated(o)},couponModalOpened:()=>{k(document).trigger("addonifyFloatingCartCouponModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalOpened"))},couponModalClosed:()=>{k(document).trigger("addonifyFloatingCartCouponModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponModalClosed"))},couponApplied:o=>{k(document).trigger("addonifyFloatingCartCouponApplied",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponApplied",{detail:o})),t.api.event.cartUpdated(o)},couponRemoved:o=>{k(document).trigger("addonifyFloatingCartCouponRemoved",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartCouponRemoved",{detail:o})),t.api.event.cartUpdated(o)},shippingModalOpened:()=>{k(document).trigger("addonifyFloatingCartShippingModalOpened"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalOpened"))},shippingModalClosed:()=>{k(document).trigger("addonifyFloatingCartShippingModalClosed"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingModalClosed"))},shippingAddressUpdated:o=>{k(document).trigger("addonifyFloatingCartShippingAddressUpdated",o),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShippingAddressUpdated",{detail:o})),t.api.event.cartUpdated(o)},shoppingMeterThresholdReached:()=>{k(document).trigger("addonifyFloatingCartShoppingMeterThresholdReached"),document.dispatchEvent(new CustomEvent("addonifyFloatingCartShoppingMeterThresholdReached"))}},J.toast={dispatch:(t="success",o)=>{if("undefined"!=typeof Notyf){let e=new Notyf({duration:u,dismissible:_,ripple:!0,position:{x:g[1],y:g[0]}});if(!o)throw new Error("Notification toast data/message is empty, bailing out...");"error"===t&&e.error({className:"adfy__woofc-notfy-error",message:o}),f&&"success"===t&&e.success({className:"adfy__woofc-notfy-success",message:o})}}},n(document).ready((function(){M(),I(),Q(),X(document).on("click",".adfy__woofc-item .adfy__woofc-inc-quantity",(function(t){t.preventDefault();const o=X(this).prev();(parseInt(o.val())<parseInt(o.attr("max"))||""===o.attr("max"))&&K(this,"add")})),X(document).on("click",".adfy__woofc-item .adfy__woofc-dec-quantity",(function(t){t.preventDefault();const o=X(this).next();parseInt(o.val())<=parseInt(o.attr("min"))||K(this,"sub")})),X(document).on("change",".adfy__woofc-item .adfy__woofc-quantity-input-field",(function(t){t.preventDefault(),K(this,"update",X(this).val())})),X(document).on("click",".adfy__woofc-item .thumb .product-remove",(function(n){n.preventDefault();const a=X(this).attr("data-product_id"),d=X(this).attr("data-cart_item_key"),r=X(this);O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:i,product_id:a,cart_item_key:d,nonce:e},success:function(o){if(!o||o.error)throw new Error("Error removing product from cart!");X(".post-"+a).find("a.wc-forward").remove(),X(".post-"+a).find("a.add_to_cart_button").removeClass("added");let e=o.fragments;e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),$("show","info",o.undo_product_link),0===o.cart_items_count&&(t.api.event.cartEmptied(),X(".adfy__woofc-content-entry").html(o.empty_cart_message)),X(document).trigger("removed_from_cart",[o.fragments,o.cart_hash,r]),X(document).trigger("wc_update_cart"),t.api.event.cartUpdated(o)},error:function(o){console.log(o);const e=G("Error processing product removal request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),X(document).on("click","#adfy__woofc_restore_item",(function(n){n.preventDefault();const a=X(this).attr("data-item_key");O("show"),X.ajax({type:"POST",dataType:"json",url:o,data:{action:d,cart_item_key:a,nonce:e},success:function(o){if(!o.fragments||o.error)throw new Error("Error restoring product to cart!");const e=o.fragments,n=X(".adfy__woofc-colophon"),a=X(".adfy__woofc-shipping-bar");e&&X.each(e,(function(t,o){X(t).replaceWith(o)})),n.hasClass("adfy__woofc-hidden")&&n.removeClass("adfy__woofc-hidden"),a.hasClass("adfy__woofc-hidden")&&a.removeClass("adfy__woofc-hidden"),t.api.event.productRestored(e),$("hide")},error:function(o){console.log(o);const e=G("Error processing product restore request!","addonify-floating-cart");t.action.toast.dispatch("error",e)},complete:function(){O("hide")}})})),function(){const o=Y("#adfy__woofc-coupon-container");Y(document).on("click","#adfy__woofc-coupon-trigger",(function(e){e.preventDefault(),o.attr("data_display","visible"),t.api.event.couponModalOpened()})),Y(document).on("click","#adfy__woofc-hide-coupon-container",(function(e){e.preventDefault(),o.attr("data_display","hidden"),t.api.event.couponModalClosed()})),document.addEventListener("addonifyFloatingCartCouponApplied",(()=>{C&&setTimeout((()=>{o.attr("data_display","hidden")}),1e3)}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("submit","#adfy__woofc-coupon-form",(function(i){i.preventDefault(),O("show");let d=Y(this).find("input[name=adfy__woofc-coupon-input-field]"),r=d.val();Y.ajax({url:o,method:"post",data:{action:w,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponApplied:e,html:i}=o;e&&(d.val(""),t.api.event.couponApplied(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(o){console.log(o),a=n("Error processing coupon request.","addonify-floating-cart"),t.action.toast.dispatch("error",a),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),function(){const{__:n}=wp.i18n;let a;Y(document).on("click",".adfy__woofc-remove-applied-coupon-button",(function(i){i.preventDefault(),O("show");let d=Y(this).closest("li"),r=Y(this).attr("data-coupon");Y.ajax({url:o,method:"post",data:{action:v,nonce:e,form_data:r},success:function(o){if(!o)return a=n("Error processing coupon request.","addonify-floating-cart"),void B("show",{style:"error",message:a});const{couponRemoved:e,html:i}=o;e&&(d.remove(),t.api.event.couponRemoved(o)),Y.each(i,(function(t,o){Y(t).replaceWith(o)})),N()},error:function(t){console.log(t),a=n("Error processing coupon request.","addonify-floating-cart"),B("show",{style:"error",message:a})},complete:function(){O("hide")}})}))}(),tt(),ot(),et()}))}(jQuery)}));
  • addonify-floating-cart/trunk/public/class-addonify-floating-cart-public.php

    r3150428 r3203981  
    13501350    }
    13511351}
    1352 
    1353 
  • addonify-floating-cart/trunk/public/partials/cart-sections/footer.php

    r3150428 r3203981  
    145145                            <?php
    146146                            if ( (bool) WC()->cart->show_shipping() && $show_shipping_cost ) {
    147                                 WC()->cart->calculate_shipping();
    148                                 if ( get_option( 'woocommerce_tax_display_cart' ) === 'incl' ) {
    149                                     if ( WC()->customer->get_shipping_country() !== 'default' ) {
    150                                         $shipping_total = ( absint( WC()->cart->get_shipping_total() ) > 0 ) ? ( wc_price( WC()->cart->get_shipping_total() ) ) : wc_price( 0 );
     147
     148                                $total = esc_html__( 'Free!', 'addonify-floating-cart' );
     149
     150                                if ( 0 < WC()->cart->get_shipping_total() ) {
     151
     152                                    if ( WC()->cart->display_prices_including_tax() ) {
     153                                        $total = wc_price( WC()->cart->shipping_total + WC()->cart->shipping_tax_total );
     154
     155                                        if ( WC()->cart->shipping_tax_total > 0 && ! wc_prices_include_tax() ) {
     156                                            $total .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>';
     157                                        }
    151158                                    } else {
    152                                         $shipping_total = ( absint( WC()->cart->get_shipping_total() ) > 0 ) ? ( wc_price( WC()->cart->get_shipping_total() ) ) : '-';
    153                                     }
    154                                 } else { // phpcs:ignore
    155                                     if ( WC()->customer->get_shipping_country() !== 'default' ) {
    156                                         $shipping_total = ( WC()->cart->get_cart_shipping_total() === __( 'Free!', 'woocommerce' ) ) ? wc_price( 0 ) : WC()->cart->get_cart_shipping_total();
    157                                     } else {
    158                                         $shipping_total = ( WC()->cart->get_cart_shipping_total() === __( 'Free!', 'woocommerce' ) ) ? '-' : WC()->cart->get_cart_shipping_total();
     159                                        $total = wc_price( WC()->cart->shipping_total );
     160
     161                                        if ( WC()->cart->shipping_tax_total > 0 && wc_prices_include_tax() ) {
     162                                            $total .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
     163                                        }
    159164                                    }
    160165                                }
    161166                            } else {
    162                                 $shipping_total = '-';
     167                                $total = '-';
    163168                            }
    164169
    165                             echo wp_kses_post( $shipping_total ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     170                            echo wp_kses_post( $total ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    166171                            ?>
    167172                        </span>
  • addonify-floating-cart/trunk/public/partials/cart-sections/shipping.php

    r3017269 r3203981  
    5151                        );
    5252
    53                         echo wc_cart_totals_shipping_method_label( $method ); // phpcs:ignore
     53                        printf(
     54                            '<label for="shipping_method_%1$s_%2$s">%3$s</label>',
     55                            esc_attr( $index ),
     56                            esc_attr( sanitize_title( $method->id ) ),
     57                            wc_cart_totals_shipping_method_label( $method ) // phpcs:ignore
     58                        );
    5459                    }
    5560
Note: See TracChangeset for help on using the changeset viewer.