// source --> https://homeofficecanella.com.gt/wp-content/plugins/xt-woo-variation-swatches-pro/xt-framework/includes/modules/add-to-cart/assets/js/add-to-cart-min.js?ver=2.5.5 
(function($){"use strict";window.XT_ATC=window.XT_ATC||{};$(function(){var startButtonLoaderTimeout;var stopButtonLoaderTimeout;var singleAddedParams;XT_ATC.ajaxAddToCart=!!XT_ATC.ajaxAddToCart;XT_ATC.ajaxSinglePageAddToCart=!!XT_ATC.ajaxSinglePageAddToCart;XT_ATC.isProductPage=!!XT_ATC.isProductPage;XT_ATC.singleRefreshFragments=!!XT_ATC.singleRefreshFragments;XT_ATC.singleScrollToNotice=!!XT_ATC.singleScrollToNotice;XT_ATC.singleScrollToNoticeTimeout=parseInt(XT_ATC.singleScrollToNoticeTimeout);XT_ATC.overrideSpinner=!!XT_ATC.overrideSpinner;XT_ATC.redirectionEnabled=!!XT_ATC.redirectionEnabled;function init(){fixCartForms();observeCartForms();$(document.body).on("should_send_ajax_request.adding_to_cart",shouldAddToCart);$(document.body).on("adding_to_cart",onAddingToCart);$(document.body).on("added_to_cart",onAddedToCart);$(document.body).on("click.xt_atc",".single_add_to_cart_button",onSingleAddToCart);$(document.body).on("wc_fragments_refreshed",onSingleFragmentsRefreshed);moveEventToTheTop()}function fixCartForms(){$("form .add_to_cart_button").each(function(){if($(this).closest(".product-type-grouped").length===0){$(this).removeClass("add_to_cart_button").addClass("single_add_to_cart_button")}});$("form.cart").each(function(){var trigger=$(this).find('[type="submit"]').not(".single_add_to_cart_button");if(trigger.length){trigger.addClass("single_add_to_cart_button")}})}function observeCartForms(){var observer=new MutationObserver(function(mutations){mutations.forEach(function(mutation){if(mutation.addedNodes&&mutation.addedNodes.length>0){var isCartForm=[].some.call(mutation.addedNodes,function(el){return $(el).find("form.cart").length});if(isCartForm){fixCartForms()}}})});observer.observe(document.body,{attributes:true,childList:true,characterData:true})}function moveEventToTheTop(){var interval=setInterval(function(){if(!isEventBindedFirst(document.body,"click","xt_atc")){eventBindFirst(document.body,"click","xt_atc")}else{clearInterval(interval)}},1e3)}function isEventBindedFirst(element,type,namespace){var events=$._data(element).events[type];if(events&&events.length>0){return events[0].namespace===namespace}return false}function eventBindFirst(element,type,namespace){var events=$._data(element).events[type];if(events&&events.length>0){events.find(function(event,index){if(namespace===event.namespace){events.unshift(events.splice(index,1)[0])}})}}function shouldAddToCart(evt,trigger){return!isButtonLoading(trigger)}function onAddingToCart(evt,trigger){if(trigger){startButtonLoader(trigger)}$(document.body).trigger("xt_atc_adding_to_cart",[trigger])}function onAddedToCart(evt,fragments,cart_hash,trigger){if(trigger){stopButtonLoader(trigger)}if(!cartHasErrors(fragments)){$(document.body).trigger("xt_atc_added_to_cart",[{fragments:fragments},trigger,cart_hash])}}function onSingleAddToCart(evt){var trigger=$(evt.currentTarget);var form=trigger.closest("form");if(!skipSingleAddToCart(trigger)){evt.preventDefault();evt.stopImmediatePropagation();if(!isButtonLoading(trigger)&&!isButtonDisabled(trigger)&&validSingleAddToCart(form,trigger)){singleAddToCart(form,trigger)}}}function cartHasErrors(fragments){if(fragments&&fragments.hasOwnProperty(".woocommerce-notices-wrapper")&&$(fragments[".woocommerce-notices-wrapper"]).length){return $(fragments[".woocommerce-notices-wrapper"]).find(".woocommerce-error").length>0}return false}function validSingleAddToCart(form,trigger){var errors=0;var is_grouped=form.hasClass("grouped_form");var $qty_input=form.find(".quantity input.qty:visible");if($qty_input.length){$qty_input.each(function(){$(this).removeClass("xt_atc-error");var value=$(this).val()!==""?parseInt($(this).val()):0;var has_min=$(this).get(0).hasAttribute("min");var min=has_min?parseInt($(this).attr("min")):1;if(value<min||!is_grouped&&value<=0){$(this).addClass("xt_atc-error");errors++}});if(is_grouped){var total_empty=0;$qty_input.each(function(){var value=$(this).val()!==""?parseInt($(this).val()):0;if(value<=0){total_empty++}});if(total_empty>0&&$qty_input.length===total_empty){$qty_input.addClass("xt_atc-error");errors++}}}var $elements=form.find(".wc-pao-required-addon, .required-product-addon");$elements=$.merge($elements,form.find(".tm-has-required + div.tm-extra-product-options-container").not(".tc-hidden div.tm-extra-product-options-container"));$elements=$.merge($elements,form.find(".ppom-field-wrapper .show_required").closest(".form-group"));$elements=$.merge($elements,form.find(".gfield_contains_required"));$elements.each(function(){var $row=$(this);if($row.is(":visible")){var $input=$row.find(":input");if($input.attr("type")==="checkbox"||$input.attr("type")==="radio"){$row.removeClass("xt_atc-error");if(!$input.is(":checked")){errors++;$row.addClass("xt_atc-error")}}else{$row.removeClass("xt_atc-error");if($input.val()===""){errors++;$row.addClass("xt_atc-error")}}}else{$row.removeClass("xt_atc-error")}});if(errors>0){var $firstError=form.find(".xt_atc-error").first();var $scrollElm=maybeInQuickView(trigger)?form:$("html,body");if($firstError.length){$scrollElm.animate({scrollTop:$firstError.offset().top-100},500)}}return errors===0}function skipSingleAddToCart(trigger){if(trigger.closest(".wc-product-table").length||trigger.closest(".product").hasClass("product-type-external")||trigger.hasClass("wps_ubo_bump_add_to_cart_button")||hasClassRegEx(trigger,[/buy-now/,/buy_now/,/buynow/])){return true}if(!XT_ATC.ajaxAddToCart&&!isSingleProductPage(trigger)){return true}if(!XT_ATC.ajaxSinglePageAddToCart&&isSingleProductPage(trigger)){return true}return false}function hasClassRegEx(el,regex){var classes=$(el).attr("class");if(!classes||!regex){return false}classes=classes.split(" ");for(var i=0;i<classes.length;i++){if(typeof regex==="object"&&regex.hasOwnProperty("length")){for(var r=0;r<regex.length;r++){if(classes[i].match(regex[r])!==null){return true}}}else{if(classes[i].match(regex)!==null){return true}}}return false}function isButtonLoading(trigger){return!!trigger.data("loading")}function isButtonDisabled(trigger){return trigger.hasClass("disabled")}function startButtonLoader(trigger){trigger.data("loading",true);trigger.removeClass("added loading");if(XT_ATC.overrideSpinner){if(startButtonLoaderTimeout){clearTimeout(startButtonLoaderTimeout)}var trigger_html=trigger.html();var computedStyles=window.getComputedStyle(trigger.get(0));var trigger_bgcolor=computedStyles.backgroundColor;var trigger_color=computedStyles.color;var trigger_width=computedStyles.width;var trigger_height=computedStyles.height;trigger.data("html",trigger_html);trigger.addClass("xt_atc-loading");trigger.css({backgroundColor:trigger_bgcolor,color:trigger_color,width:trigger_width,height:trigger_height});var $spinnerWrap=trigger.find(".xt_atc-button-spinner-wrap");var $spinner;if($spinnerWrap.length===0){$spinnerWrap=$('<span class="xt_atc-button-spinner-wrap"></span>');$spinner=$('<span class="xt_atc-button-spinner '+XT_ATC.spinnerIcon+'"></span>');$spinnerWrap.html($spinner);trigger.html($spinnerWrap)}else{$spinner=$spinnerWrap.find(".xt_atc-button-spinner");$spinner.removeClass(XT_ATC.checkmarkIcon).addClass(XT_ATC.spinnerIcon)}startButtonLoaderTimeout=setTimeout(function(){$spinnerWrap.addClass("xt_atc-button-spinner-ready")},5)}else{trigger.addClass("loading")}}function stopButtonLoader(trigger){if(XT_ATC.overrideSpinner){if(stopButtonLoaderTimeout){clearTimeout(stopButtonLoaderTimeout)}var $spinnerWrap=trigger.find(".xt_atc-button-spinner-wrap");if($spinnerWrap.length){$spinnerWrap.removeClass("xt_atc-button-spinner-ready");var $spinner=$spinnerWrap.find(".xt_atc-button-spinner");var resetStyles={backgroundColor:"",color:"",width:"",height:""};stopButtonLoaderTimeout=setTimeout(function(){$spinner.removeClass(XT_ATC.spinnerIcon).addClass(XT_ATC.checkmarkIcon);$spinnerWrap.addClass("xt_atc-button-spinner-ready");setTimeout(function(){trigger.html(trigger.data("html"));trigger.removeClass("xt_atc-loading").addClass("added");trigger.removeData("loading");trigger.css(resetStyles)},2e3)},300)}}else{trigger.removeClass("loading").addClass("added");trigger.removeData("loading")}}function getFormData(form,trigger){var formData=new FormData(form.get(0));form.find("button").each(function(){var key=$(this).attr("name");var value=$(this).val();if(key&&value&&!formData.has(key)){formData.append(key,value)}});$.each(trigger.data(),function(key,value){if(!formData.has(key)){formData.append(key,value)}});$.each(trigger[0].dataset,function(key,value){if(!formData.has(key)){formData.append(key,value)}});if(!formData.has("add-to-cart")&&!formData.has("product_id")&&form.attr("action")){var is_url=form.attr("action").match(/add-to-cart=([0-9]+)/);var productID=is_url?is_url[1]:false;if(productID){formData.append("add-to-cart",productID)}}if(!formData.has("add-to-cart")&&formData.has("product_id")){formData.append("add-to-cart",formData.get("product_id"))}return formData}function singleAddToCart(form,trigger){trigger.removeClass("added");var data=getFormData(form,trigger);if(false===$(document.body).triggerHandler("should_send_ajax_request.adding_to_cart",[trigger])){$(document.body).trigger("ajax_request_not_sent.adding_to_cart",[false,false,trigger]);return true}$(document.body).trigger("adding_to_cart",[trigger,data]);$.ajaxPrefilter(function(options,originalOptions){if(options.url.search("xt_atc_single")!==-1){options.data=originalOptions.data}});$.XT_Ajax_Queue({url:XT_ATC.ajaxUrl.toString().replace("%%endpoint%%","xt_atc_single"),enctype:"multipart/form-data",type:"post",data:data,processData:false,contentType:false,cache:false,timeout:6e5}).done(function(data){if(XT_ATC.redirectionEnabled){window.location=XT_ATC.redirectionTo;return}if(!isSingleProductPage(trigger)&&!maybeInQuickView(trigger)&&!wc_add_to_cart_params.is_cart&&trigger.parent().find(".added_to_cart").length===0){trigger.after('<a href="'+wc_add_to_cart_params.cart_url+'" class="added_to_cart wc-forward" title="'+wc_add_to_cart_params.i18n_view_cart+'">'+wc_add_to_cart_params.i18n_view_cart+"</a>")}if(!isSingleProductPage(trigger)&&data.fragments&&data.fragments.hasOwnProperty(".woocommerce-notices-wrapper")){delete data.fragments[".woocommerce-notices-wrapper"]}if(XT_ATC.singleRefreshFragments){singleAddedParams={fragments:data.fragments,cart_hash:data.cart_hash,trigger:trigger};$(document.body).trigger("wc_fragment_refresh")}else{triggerSingleAddedToCart(data.fragments,data.cart_hash,trigger)}}).fail(function(){stopButtonLoader(trigger)})}function triggerSingleAddedToCart(fragments,cart_hash,trigger){singleAddedParams=null;$(document.body).trigger("added_to_cart",[fragments,cart_hash,trigger]);maybeScrollToNotice(trigger)}function onSingleFragmentsRefreshed(){if(singleAddedParams){triggerSingleAddedToCart(singleAddedParams.fragments,singleAddedParams.cart_hash,singleAddedParams.trigger)}}function maybeInQuickView(trigger){var maybeQuickViewContainer=trigger.closest(".single-product");return maybeQuickViewContainer.length>0&&maybeQuickViewContainer.prop("tagName")!=="BODY"}function maybeInProductList(trigger){var maybeProductListContainer=trigger.closest(".products");var maybeVariableProductOnArchivePage=trigger.closest(".xt_woovs-archives-product");return maybeProductListContainer.length>0||maybeVariableProductOnArchivePage.length>0}function isSingleProductPage(trigger){return maybeInQuickView(trigger)||maybeInProductList(trigger)?false:XT_ATC.isProductPage}function maybeScrollToNotice(trigger){var wooNotices=$(".woocommerce-notices-wrapper");if(isSingleProductPage(trigger)&&wooNotices.length&&XT_ATC.singleScrollToNotice){setTimeout(function(){var scrollTop=$(window).scrollTop();var offset=wooNotices.offset().top-100;if(scrollTop>=offset){$("html,body").animate({scrollTop:offset},500)}},XT_ATC.singleScrollToNoticeTimeout+500)}}init()})})(jQuery,window);
// source --> https://homeofficecanella.com.gt/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.7.0 
/*!
 * 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://homeofficecanella.com.gt/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.7.0 
/*! 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:"/"})});