// source --> https://architektkakomunikacji.shop/wp-content/plugins/woo-better-usability/assets/wbulite.js?ver=5d3410f4f7d475a1b71b6f116b6737b8 
jQuery(document).ready(function($){

    wbuGlobalQtyElement = null;
    wbuAjaxQueue = [];
    wbuUpdateTimeout = null;

    wbuEnqueueAjax = function(ajaxOpts) {
        wbuAjaxQueue.push(ajaxOpts);
        wbuRunQueuedAjax();
    };

    // execute AJAX queued list
    wbuRunQueuedAjax = function() {
        if ( wbuAjaxQueue.length ) {
            var ajaxOpts = wbuAjaxQueue[0];

            ajaxOpts.complete = function(){
                wbuAjaxQueue.shift(); // remove this ajax from queue

                wbuRunQueuedAjax();
            };

            var xhr = $.ajax(ajaxOpts);
        }
    };

    wbuQtyChangeCart = function(qtyElement) {

        // ask user if they really want to remove this product
        if ( !wbuZeroQuantityCheck(qtyElement) ) {
            return false;
        }

        // when qty is set to zero, then trigger default woocommerce remove product action
        if ( qtyElement.val() == 0 ) {
            var cartItem = qtyElement.closest('.cart_item');
            var removeLink = cartItem.find('.product-remove a');

            if ( !removeLink.length ) {
                removeLink = cartItem.find('.remove u');
            }
            
            removeLink.trigger('click');

            return false;
        }

        // run refresh callback timeout 
        wbuClearTimedoutQtyChange();
        wbuUpdateTimeout = setTimeout(function(){
            if ( wbuSettings.cart_ajax_method == 'simulate_update_button' ) {
                // new method
                wbuSimulateUpdateCartButtonClick(qtyElement);
            }
            else {
                // old ajax method
                wbuMakeAjaxCartUpdate(qtyElement);
            }
    
            wbuAfterCallUpdateCart(qtyElement);
        }, wbuSettings.ajax_timeout);

        return true;
    };

    wbuClearTimedoutQtyChange = function() {
        // clear previous timeout, if exists
        if ( wbuUpdateTimeout !== null ) {
            clearTimeout(wbuUpdateTimeout);
        }
    };

    wbuMakeAjaxCartUpdate = function(qtyElement) {

        if ( typeof qtyElement.attr('name') == 'undefined' ) {
            return;
        }

        matches = qtyElement.attr('name').match(/cart\[(\w+)\]/);
        
        if ( matches === null ) {
            return;
        }
        
        form = qtyElement.closest('form');

        $("<input type='hidden' name='update_cart' id='update_cart' value='1'>").appendTo(form);
        $("<input type='hidden' name='is_wbu_ajax' id='is_wbu_ajax' value='1'>").appendTo(form);

        wbuGlobalQtyElement = qtyElement;

        cart_item_key = matches[1];
        form.append( $("<input type='hidden' name='cart_item_key' id='cart_item_key'>").val(cart_item_key) );

        // get the form data before disable button
        formData = form.serialize();

        $("button[name='update_cart']").addClass('disabled');

        if ( wbuSettings.cart_updating_display == 'yes' ) {
            if ( wbuSettings.cart_updating_location == 'checkout_btn' ) {
                $("a.checkout-button.wc-forward").addClass('disabled').html( wbuSettings.cart_updating_text );
            }
            else {
                $("button[name='update_cart']").html( wbuSettings.cart_updating_text );
            }
        }

        $.ajax({
            url: form.attr('action'),
            type: 'POST',
            data: formData,
            dataType: 'json',
            beforeSend: function() {
                wbuBlock( $( '.woocommerce-cart-form' ) );
            },
            success: function(resp) {
                wbuAjaxCartUpdateCallback(resp);
                wbuUnblock( $( '.woocommerce-cart-form' ) );
            }
        });
    };

    wbuAjaxCartUpdateCallback = function(resp) {
        $('.cart-collaterals').html(resp.html);
        
        wbuGlobalQtyElement.closest('.cart_item').find('.product-subtotal').html(resp.price);
        
        $('#update_cart').remove();
        $('#is_wbu_ajax').remove();
        $('#cart_item_key').remove();

        $("button[name='update_cart']").removeClass('disabled');
        
        if ( wbuSettings.cart_updating_display == 'yes' ) {
            if ( wbuSettings.cart_updating_location == 'checkout_btn' ) {
                $("a.checkout-button.wc-forward").removeClass('disabled').html(resp.checkout_label);
            }
            else {
                $("button[name='update_cart']").html(resp.update_label);
            }
        }

        // fix to update "Your order" totals when cart is inside Checkout page
        if ( $( '.woocommerce-checkout' ).length ) {
            $( document.body ).trigger( 'update_checkout' );
        }

        $( document.body ).trigger( 'updated_cart_totals' );
        $( document.body ).trigger( 'wc_fragment_refresh' );
    };

    wbuSimulateUpdateCartButtonClick = function(qtyElement) {
        // deal with update cart button
        if ( wbuSettings.cart_updating_display == 'yes' ) {
            // change the Checkout or Update cart button
            if ( wbuSettings.cart_updating_location == 'checkout_btn' ) {
                $("a.checkout-button.wc-forward").html( wbuSettings.cart_updating_text );
            }
            else {
                $("button[name='update_cart']").html( wbuSettings.cart_updating_text );
            }
        }

        // this small delay has been added to fix bug on firefox
        setTimeout(function(){
            $("button[name='update_cart']").trigger('click');
        }, 20);
    };
    
    wbuWhenCartUpdated = function(qtyElement) {
        // fix some event lost because the ajax reload
        wbuLockQtyInput();
        wbuAddItemRemoveEffect();
    };
    
    wbuAfterCallUpdateCart = function(qtyElement) {
        // this is an overridable function
    };
    
    wbuAddItemRemoveEffect = function() {
        // this is an overridable function
    };

    wbuZeroQuantityCheck = function(el_qty) {
        if ( wbuInfo.isCart && ( el_qty.val() == 0 ) && ( wbuSettings.confirmation_zero_qty === 'yes' ) ) {

            if ( !confirm( wbuSettings.zero_qty_confirmation_text ) ) {
                el_qty.val(1);
                return false;
            }
        }

        return true;
    };

    wbuListenChange = function() {

        if ( wbuSettings.enable_auto_update_cart == 'yes' ) {
            if ( wbuInfo.isCart ) {
                $(document).on('change', '.qty', function(){
                    return wbuQtyChangeCart( $(this) );
                });
            }
            else {
                $(document).on('change', '.woocommerce-cart-form .qty', function(){
                    return wbuQtyChangeCart( $(this) );
                });
            }

            // saasland theme compat
            $(document).on('click', '.ti-angle-up,.ti-angle-down', function(){
                return wbuQtyChangeCart( $(this).closest('.product-qty').find('.qty') );
            });
        }
    };

    wbuCartDeleteEvent = function() {
    };

    wbuQtyButtons = function() {
        // .woopq-quantity-input-plus
        // .woopq-quantity-input-minus
        
        $(document).on('click', '.wbu-btn-inc,.lafka-qty-plus', function(){
            return wbuQtyButtonClick( $(this), 1 );
        });

        $(document).on('click', '.wbu-btn-sub,.lafka-qty-minus', function(){
            return wbuQtyButtonClick( $(this), -1 );
        });

        wbuLockQtyInput();
    };

    wbuQtyButtonClick = function(element, factor) {
		// special conditions
        var lafkaCondition = ( $('.lafka-qty-plus').length && !$('body').hasClass('wbu-kafta-first') && !element.closest('.widget_shopping_cart').length );
		
		if ( lafkaCondition ) {
			return false;
		}

		if ( $('.oceanwp-row').length ) {
			return true;
		}
        
        var inputQty = element.parent().find('.qty');
        var currentQty = inputQty.val() != null && inputQty.val().length > 0 ? parseFloat(inputQty.val()) : 0;
        var step = 1;

        // check disabled
        if ( element.hasClass('disabled') ) {
            return false;
        }

        // respect the step value
        stepAttr = inputQty.attr('step');
        
        if ( typeof stepAttr !== typeof undefined && stepAttr !== false && parseFloat(stepAttr) > 0 ) {
            step = stepAttr;
        }

        var newQty = currentQty + ( factor * step );

        // respect the minimum value
        minAttr = inputQty.attr('min');
        if ( typeof minAttr !== typeof undefined && minAttr !== false && newQty < parseFloat(minAttr) ) {
            return false;
        }

        // respect the max stock limit
        maxAttr = inputQty.attr('max');
        if ( typeof maxAttr !== typeof undefined && maxAttr !== false && newQty > parseFloat(maxAttr) && ( factor != -1 ) ) {
            return false;
        }

        // when using Select, check if new quantity exists in options list
        if ( inputQty.is('select') && ( inputQty.find('option[value="'+newQty+'"]').length === 0 ) ) {
            return false;
        }

        inputQty.val( newQty );
        inputQty.change();

        return false;
    };

    
    wbuLockQtyInput = function() {
        // lock quantity input
        if ( wbuSettings.qty_buttons_lock_input == 'yes' ) {
            $('.qty').attr('readonly', 'readonly')
                     .css('background-color', 'lightgray');
        }
    };
    
    wbuQtyOnShop = function() {
        if ( wbuSettings.enable_quantity_on_shop != 'yes' ) {
            return;
        }
        
        $("form.cart").off('change.wbu_form_cart_qty').on("change.wbu_form_cart_qty", ".qty", function() {
            // loop on each add to cart button to set the correct quantity defined on input
            jQuery('.ajax_add_to_cart').each(function(){
                var qty = jQuery(this).parent().find('.qty').val();

                jQuery(this).data('quantity', qty);
                jQuery(this).attr('data-quantity', qty);
            });
        });

        // prevent bug caused in case the user was navegated using browser back button (so the quantity keep the previous state)
        // issue link: https://wordpress.org/support/topic/quantity-not-working-2/
        $('.add_to_cart_button').off('click.wbu_add_cart_btn').on('click.wbu_add_cart_btn', function(){
            // this was commented because causing excessive ajax requests when adding to cart (on shop page)
            // $('.qty').trigger('change');
            return true;
        });

        // make compatibility with infinite scrollings, forcing re-apply events
        $( document ).ajaxComplete(function() {
            // this was commented because was causing crash on browser, making infinite ajax requests (on shop page)
            // wbuQtyOnShop();
        });
    };
    
    wbuQtyOnCheckout = function() {

        if ( !wbuInfo.isCheckout || ( wbuSettings.checkout_allow_change_qty != 'yes' ) ) {
            return;
        }

        $("form.checkout").on("change", ".qty", function(){


            // run refresh callback timeout 
            wbuClearTimedoutQtyChange();
            wbuUpdateTimeout = setTimeout(function(){
                var data = {
                    action: 'wbu_update_checkout',
                    security: wc_checkout_params.update_order_review_nonce,
                    post_data: $( 'form.checkout' ).serialize()
                };
                
                $.ajax({
                    url: wbuInfo.ajaxUrl,
                    type: 'POST',
                    data: data,
                    beforeSend: function() {
                        wbuBlock( $( '.woocommerce-checkout-review-order-table' ) );
                    },
                    success: function(resp) {
                        wbuUnblock( $( '.woocommerce-checkout-review-order-table' ) );
                        $( document.body ).trigger( 'update_checkout' );
                        $( document.body ).trigger( 'wc_fragment_refresh' );
                    }
                });
            }, wbuSettings.ajax_timeout);
        });
        
        // add Quantity title on table
        // $('body').on('updated_checkout', function(){
        //     quantityTitle = '<div class="checkout-qty-title">' + wbuInfo.quantityLabel + '</div>';
        //     $('.shop_table th.product-name').append(quantityTitle);
        // });
    };
    
    wbuProductAddToCartAjax = function() {
        $(document).on('change', '.qty', function(){
            var newQty = $(this).val();
            var prodForm = $(this).closest('form');

            if ( prodForm.length ) {
                prodForm.find('.add_to_cart_button').data('quantity', newQty).attr('data-quantity', newQty);
                prodForm.find('[name="add-to-cart"]').data('quantity', newQty).attr('data-quantity', newQty);
            }

            return true;
        });
    };

    wbuCheckHideUpdateCartBtn = function() {
        // check hide update cart button
        if ( wbuSettings.cart_hide_update == 'yes' ) {
            $('button[name="update_cart"]').hide();
            $('.fusion-update-cart').hide();
        }
    };

    wbuCheckoutInputValidation = function() {
        var checkoutForm = $( 'form.checkout' );

        if ( checkoutForm.length && checkoutForm.find('.qty').length ) {
            checkoutForm.removeAttr( 'novalidate' );
        }
    };

    wbuFixPortoTheme = function() {
        // fixing strange behavior for Porto theme, displaying two quantity inputs in Shop page
        $('.add-links').each(function(){
            if ( $(this).find('.quantity').length > 1 ) {
                $(this).find('.quantity').eq(1).detach();
            }
        });

        // porto theme adds inline html with minus and plus resulting in strange duplicated buttons
        if ( $('#porto-style-inline-css').length ) {
            var checkExist = setInterval(function() {
                $('.mini_cart_item').each(function(){
                    if ( $(this).find('.plus').length > 1 ) {
                        $(this).find('.plus').eq(1).detach();
                    }
                    if ( $(this).find('.minus').length > 1 ) {
                        $(this).find('.minus').eq(1).detach();
                    }
                });
             }, 100);
        }
    };

    // functions ripped from woocommerce cart.js
    wbuBlock = function( element ) {
        if ( !element.length || !jQuery.fn.block || wbuIsBlocked( element ) ) {
            return;
        }

        try {
            element.addClass( 'processing' ).block( {
                message: null,
                overlayCSS: {
                    background: '#fff',
                    opacity: 0.6
                }
            } );
        }
        catch (e) {
        }
    };

    wbuUnblock = function( element ) {
        if ( !element.length || !jQuery.fn.block ) {
            return;
        }

        try {
            element.removeClass( 'processing' ).unblock();
        }
        catch (e) {
        }
    };

    wbuIsBlocked = function( $node ) {
        return $node.is( '.processing' ) || $node.parents( '.processing' ).length;
    };
    // END OF functions ripped from woocommerce cart.js
    
    // onload function calls
    wbuListenChange();
    wbuQtyButtons();
    wbuCartDeleteEvent();
    wbuQtyOnShop();
    wbuQtyOnCheckout();
    wbuProductAddToCartAjax();
    wbuFixPortoTheme();

    // hide add to cart button
    if ( wbuInfo.isShop && wbuSettings.hide_addtocart_button === 'yes' ) {
        $('.add_to_cart_button').hide();
    }

    // hide update cart button (Avada compatibility)
    if ( wbuInfo.isCart && wbuSettings.cart_hide_update === 'yes' ) {
        $('.fusion-update-cart').hide();
    }
    
    // hide product quantity on cart if needed
    if ( wbuSettings.cart_hide_quantity == 'yes' ) {
        $('.product-quantity').parent().find('th').css('width', '100%');
        $('.product-quantity').hide();
    }

    if ( wbuInfo.isCart ) {
        // fix enter key problem
        if ( wbuSettings.cart_fix_enter_key == 'yes' ) {
            $('.woocommerce-cart-form .qty.text').on('keyup keypress', function(e) {
                var keyCode = e.keyCode || e.which;

                if (keyCode === 13) { 
                    $('.woocommerce-cart-form .qty.text').trigger( "blur" );
                    e.preventDefault();
                    return false;
                }
            });
        }

        wbuCheckHideUpdateCartBtn();
    }

    if ( wbuInfo.isCheckout ) {
        wbuCheckoutInputValidation();    
    }

    $(document.body).on('updated_checkout', function(){
        setTimeout(function(){
            wbuCheckoutInputValidation();
        }, 500);
    });

    // listen when ajax cart has updated
    $(document.body).on('updated_wc_div', function(){
        wbuCheckHideUpdateCartBtn();
        wbuWhenCartUpdated();
    });
    
    // listen when product has added to cart
    $(document.body).on('added_to_cart', function(){
        if ( wbuSettings.hide_viewcart_link === 'yes' ) {
            $('.added_to_cart').css('display', 'none');
            setTimeout(function(){ $('.added_to_cart').css('display', 'none'); }, 50);
            setTimeout(function(){ $('.added_to_cart').css('display', 'none'); }, 100);
        }

        // prevent woocommerce to reload the page after Add to cart in certain conditions (outside Cart page)
        // the window.location.reload() was defined in woo cart.js script
		if ( $( '.woocommerce-cart-form' ).length == 0 ) {
            $('body').append('<div class="woocommerce-cart-form" style="display: none;"></div>');
		}
    });

    // listen minicart remove button click
    $(document).on('click', '.mini-cart-box .remove', function(){
        var productId = $(this).data('product_id');

        $('.shop_table').find('.remove').each(function(){
            if ( productId == $(this).data('product_id') ) {
                $(this).trigger('click');
            }
        });

        return false;
    });

    // listen berocket ajax products filter
    $(document).on('berocket_ajax_filtering_end', function(){
        wbuProductAddToCartAjax();
    });
});
// source --> https://architektkakomunikacji.shop/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.4.3 
/*!
 * jQuery blockUI plugin
 * Version 2.70.0-2014.11.23
 * Requires jQuery v1.7 or later
 *
 * Examples at: http://malsup.com/jquery/block/
 * Copyright (c) 2007-2013 M. Alsup
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Thanks to Amir-Hossein Sobhi for some excellent contributions!
 */
!function(){"use strict";function e(e){e.fn._fadeIn=e.fn.fadeIn;var t=e.noop||function(){},o=/MSIE/.test(navigator.userAgent),n=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),i=(document.documentMode,"function"==typeof document.createElement("div").style.setExpression&&document.createElement("div").style.setExpression);e.blockUI=function(e){d(window,e)},e.unblockUI=function(e){a(window,e)},e.growlUI=function(t,o,n,i){var s=e('<div class="growlUI"></div>');t&&s.append("<h1>"+t+"</h1>"),o&&s.append("<h2>"+o+"</h2>"),n===undefined&&(n=3e3);var l=function(t){t=t||{},e.blockUI({message:s,fadeIn:"undefined"!=typeof t.fadeIn?t.fadeIn:700,fadeOut:"undefined"!=typeof t.fadeOut?t.fadeOut:1e3,timeout:"undefined"!=typeof t.timeout?t.timeout:n,centerY:!1,showOverlay:!1,onUnblock:i,css:e.blockUI.defaults.growlCSS})};l();s.css("opacity");s.on("mouseover",function(){l({fadeIn:0,timeout:3e4});var t=e(".blockMsg");t.stop(),t.fadeTo(300,1)}).on("mouseout",function(){e(".blockMsg").fadeOut(1e3)})},e.fn.block=function(t){if(this[0]===window)return e.blockUI(t),this;var o=e.extend({},e.blockUI.defaults,t||{});return this.each(function(){var t=e(this);o.ignoreIfBlocked&&t.data("blockUI.isBlocked")||t.unblock({fadeOut:0})}),this.each(function(){"static"==e.css(this,"position")&&(this.style.position="relative",e(this).data("blockUI.static",!0)),this.style.zoom=1,d(this,t)})},e.fn.unblock=function(t){return this[0]===window?(e.unblockUI(t),this):this.each(function(){a(this,t)})},e.blockUI.version=2.7,e.blockUI.defaults={message:"<h1>Please wait...</h1>",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var s=null,l=[];function d(d,c){var u,b,h=d==window,k=c&&c.message!==undefined?c.message:undefined;if(!(c=e.extend({},e.blockUI.defaults,c||{})).ignoreIfBlocked||!e(d).data("blockUI.isBlocked")){if(c.overlayCSS=e.extend({},e.blockUI.defaults.overlayCSS,c.overlayCSS||{}),u=e.extend({},e.blockUI.defaults.css,c.css||{}),c.onOverlayClick&&(c.overlayCSS.cursor="pointer"),b=e.extend({},e.blockUI.defaults.themedCSS,c.themedCSS||{}),k=k===undefined?c.message:k,h&&s&&a(window,{fadeOut:0}),k&&"string"!=typeof k&&(k.parentNode||k.jquery)){var y=k.jquery?k[0]:k,m={};e(d).data("blockUI.history",m),m.el=y,m.parent=y.parentNode,m.display=y.style.display,m.position=y.style.position,m.parent&&m.parent.removeChild(y)}e(d).data("blockUI.onUnblock",c.onUnblock);var g,v,I,w,U=c.baseZ;g=o||c.forceIframe?e('<iframe class="blockUI" style="z-index:'+U+++';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+c.iframeSrc+'"></iframe>'):e('<div class="blockUI" style="display:none"></div>'),v=c.theme?e('<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+U+++';display:none"></div>'):e('<div class="blockUI blockOverlay" style="z-index:'+U+++';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>'),c.theme&&h?(w='<div class="blockUI '+c.blockMsgClass+' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(U+10)+';display:none;position:fixed">',c.title&&(w+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(c.title||"&nbsp;")+"</div>"),w+='<div class="ui-widget-content ui-dialog-content"></div>',w+="</div>"):c.theme?(w='<div class="blockUI '+c.blockMsgClass+' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(U+10)+';display:none;position:absolute">',c.title&&(w+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(c.title||"&nbsp;")+"</div>"),w+='<div class="ui-widget-content ui-dialog-content"></div>',w+="</div>"):w=h?'<div class="blockUI '+c.blockMsgClass+' blockPage" style="z-index:'+(U+10)+';display:none;position:fixed"></div>':'<div class="blockUI '+c.blockMsgClass+' blockElement" style="z-index:'+(U+10)+';display:none;position:absolute"></div>',I=e(w),k&&(c.theme?(I.css(b),I.addClass("ui-widget-content")):I.css(u)),c.theme||v.css(c.overlayCSS),v.css("position",h?"fixed":"absolute"),(o||c.forceIframe)&&g.css("opacity",0);var x=[g,v,I],C=e(h?"body":d);e.each(x,function(){this.appendTo(C)}),c.theme&&c.draggable&&e.fn.draggable&&I.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var S=i&&(!e.support.boxModel||e("object,embed",h?null:d).length>0);if(n||S){if(h&&c.allowBodyStretch&&e.support.boxModel&&e("html,body").css("height","100%"),(n||!e.support.boxModel)&&!h)var E=p(d,"borderTopWidth"),O=p(d,"borderLeftWidth"),T=E?"(0 - "+E+")":0,M=O?"(0 - "+O+")":0;e.each(x,function(e,t){var o=t[0].style;if(o.position="absolute",e<2)h?o.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+c.quirksmodeOffsetHack+') + "px"'):o.setExpression("height",'this.parentNode.offsetHeight + "px"'),h?o.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):o.setExpression("width",'this.parentNode.offsetWidth + "px"'),M&&o.setExpression("left",M),T&&o.setExpression("top",T);else if(c.centerY)h&&o.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),o.marginTop=0;else if(!c.centerY&&h){var n="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+(c.css&&c.css.top?parseInt(c.css.top,10):0)+') + "px"';o.setExpression("top",n)}})}if(k&&(c.theme?I.find(".ui-widget-content").append(k):I.append(k),(k.jquery||k.nodeType)&&e(k).show()),(o||c.forceIframe)&&c.showOverlay&&g.show(),c.fadeIn){var B=c.onBlock?c.onBlock:t,j=c.showOverlay&&!k?B:t,H=k?B:t;c.showOverlay&&v._fadeIn(c.fadeIn,j),k&&I._fadeIn(c.fadeIn,H)}else c.showOverlay&&v.show(),k&&I.show(),c.onBlock&&c.onBlock.bind(I)();if(r(1,d,c),h?(s=I[0],l=e(c.focusableElements,s),c.focusInput&&setTimeout(f,20)):function(e,t,o){var n=e.parentNode,i=e.style,s=(n.offsetWidth-e.offsetWidth)/2-p(n,"borderLeftWidth"),l=(n.offsetHeight-e.offsetHeight)/2-p(n,"borderTopWidth");t&&(i.left=s>0?s+"px":"0");o&&(i.top=l>0?l+"px":"0")}(I[0],c.centerX,c.centerY),c.timeout){var z=setTimeout(function(){h?e.unblockUI(c):e(d).unblock(c)},c.timeout);e(d).data("blockUI.timeout",z)}}}function a(t,o){var n,i,d=t==window,a=e(t),u=a.data("blockUI.history"),f=a.data("blockUI.timeout");f&&(clearTimeout(f),a.removeData("blockUI.timeout")),o=e.extend({},e.blockUI.defaults,o||{}),r(0,t,o),null===o.onUnblock&&(o.onUnblock=a.data("blockUI.onUnblock"),a.removeData("blockUI.onUnblock")),i=d?e(document.body).children().filter(".blockUI").add("body > .blockUI"):a.find(">.blockUI"),o.cursorReset&&(i.length>1&&(i[1].style.cursor=o.cursorReset),i.length>2&&(i[2].style.cursor=o.cursorReset)),d&&(s=l=null),o.fadeOut?(n=i.length,i.stop().fadeOut(o.fadeOut,function(){0==--n&&c(i,u,o,t)})):c(i,u,o,t)}function c(t,o,n,i){var s=e(i);if(!s.data("blockUI.isBlocked")){t.each(function(e,t){this.parentNode&&this.parentNode.removeChild(this)}),o&&o.el&&(o.el.style.display=o.display,o.el.style.position=o.position,o.el.style.cursor="default",o.parent&&o.parent.appendChild(o.el),s.removeData("blockUI.history")),s.data("blockUI.static")&&s.css("position","static"),"function"==typeof n.onUnblock&&n.onUnblock(i,n);var l=e(document.body),d=l.width(),a=l[0].style.width;l.width(d-1).width(d),l[0].style.width=a}}function r(t,o,n){var i=o==window,l=e(o);if((t||(!i||s)&&(i||l.data("blockUI.isBlocked")))&&(l.data("blockUI.isBlocked",t),i&&n.bindEvents&&(!t||n.showOverlay))){var d="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";t?e(document).on(d,n,u):e(document).off(d,u)}}function u(t){if("keydown"===t.type&&t.keyCode&&9==t.keyCode&&s&&t.data.constrainTabKey){var o=l,n=!t.shiftKey&&t.target===o[o.length-1],i=t.shiftKey&&t.target===o[0];if(n||i)return setTimeout(function(){f(i)},10),!1}var d=t.data,a=e(t.target);return a.hasClass("blockOverlay")&&d.onOverlayClick&&d.onOverlayClick(t),a.parents("div."+d.blockMsgClass).length>0||0===a.parents().children().filter("div.blockUI").length}function f(e){if(l){var t=l[!0===e?l.length-1:0];t&&t.trigger("focus")}}function p(t,o){return parseInt(e.css(t,o),10)||0}}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],e):e(jQuery)}();
// source --> https://architektkakomunikacji.shop/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.4.3 
/*! js-cookie v3.0.5 | MIT */
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self,function(){var n=e.Cookies,o=e.Cookies=t();o.noConflict=function(){return e.Cookies=n,o}}())}(this,function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(f){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})});