jQuery(function(e){if("undefined"==typeof wc_cart_fragments_params)return!1;var t=!0,r=wc_cart_fragments_params.cart_hash_key;try{t="sessionStorage"in window&&null!==window.sessionStorage,window.sessionStorage.setItem("wc","test"),window.sessionStorage.removeItem("wc"),window.localStorage.setItem("wc","test"),window.localStorage.removeItem("wc")}catch(f){t=!1}function n(){t&&sessionStorage.setItem("wc_cart_created",(new Date).getTime())}function o(e){t&&(localStorage.setItem(r,e),sessionStorage.setItem(r,e))}var a={url:wc_cart_fragments_params.wc_ajax_url.toString().replace("%%endpoint%%","get_refreshed_fragments"),type:"POST",data:{time:(new Date).getTime()},timeout:wc_cart_fragments_params.request_timeout,success:function(r){r&&r.fragments&&(e.each(r.fragments,function(t,r){e(t).replaceWith(r)}),t&&(sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(r.fragments)),o(r.cart_hash),r.cart_hash&&n()),e(document.body).trigger("wc_fragments_refreshed"))},error:function(){e(document.body).trigger("wc_fragments_ajax_error")}};function s(){e.ajax(a)}if(t){var i=null;e(document.body).on("wc_fragment_refresh updated_wc_div",function(){s()}),e(document.body).on("added_to_cart removed_from_cart",function(e,t,a){var s=sessionStorage.getItem(r);null!==s&&s!==undefined&&""!==s||n(),sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(t)),o(a)}),e(document.body).on("wc_fragments_refreshed",function(){clearTimeout(i),i=setTimeout(s,864e5)}),e(window).on("storage onstorage",function(e){r===e.originalEvent.key&&localStorage.getItem(r)!==sessionStorage.getItem(r)&&s()}),e(window).on("pageshow",function(t){t.originalEvent.persisted&&(e(".widget_shopping_cart_content").empty(),e(document.body).trigger("wc_fragment_refresh"))});try{var c=JSON.parse(sessionStorage.getItem(wc_cart_fragments_params.fragment_name)),_=sessionStorage.getItem(r),g=Cookies.get("woocommerce_cart_hash"),m=sessionStorage.getItem("wc_cart_created");if(null!==_&&_!==undefined&&""!==_||(_=""),null!==g&&g!==undefined&&""!==g||(g=""),_&&(null===m||m===undefined||""===m))throw"No cart_created";if(m){var d=1*m+864e5,w=(new Date).getTime();if(d<w)throw"Fragment expired";i=setTimeout(s,d-w)}if(!c||!c["div.widget_shopping_cart_content"]||_!==g)throw"No fragment";e.each(c,function(t,r){e(t).replaceWith(r)}),e(document.body).trigger("wc_fragments_loaded")}catch(f){s()}}else s();Cookies.get("woocommerce_items_in_cart")>0?e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show():e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").hide(),e(document.body).on("adding_to_cart",function(){e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show()}),"undefined"!=typeof wp&&wp.customize&&wp.customize.selectiveRefresh&&wp.customize.widgetsPreview&&wp.customize.widgetsPreview.WidgetPartial&&wp.customize.selectiveRefresh.bind("partial-content-rendered",function(){s()})});
jQuery(function($){
function updateRangeValue(rangeInput){
var value=$(rangeInput).val();
$("#selected-value").text(value);
}
function updateRangeBackground($range){
var value=$range.val();
var max=$range.attr('max');
var min=$range.attr('min');
const percentage=((value - min) / (max - min)) * 100;
var direction=$('body').hasClass('rtl') ? 'to left':'to right';
$range.css('background', 'linear-gradient(' + direction + ', var(--wdtPrimaryColor) ' + percentage + '%, var(--wdtBorderColor) ' + percentage + '%)');
}
function calculateBudget(){
var kmsPerDay=$('#kms_per_day').val();
var petrolCostPerLitre=$('#kms_per_day_cost').val();
var electricityCostPerKm=0.572;
var monthlyPetrolCost=(kmsPerDay * petrolCostPerLitre);
var monthlyElectricityCost=kmsPerDay * electricityCostPerKm;
$('#monthly-petrol-cost').text('$' + monthlyPetrolCost.toFixed(2));
$('#monthly-electricity-cost').text('$' + monthlyElectricityCost.toFixed(2));
var monthlySavings=monthlyPetrolCost - monthlyElectricityCost;
$('#monthly-savings').text('$' + monthlySavings.toFixed(2));
var yearlySavings=monthlySavings * 12;
$('#annual-savings').text('$' + yearlySavings.toFixed(2));
}
$('#frmemicalc input[type="range"]').each(function(){
updateRangeBackground($(this));
});
calculateBudget();
$('#frmemicalc input[type="range"], #frmemicalc input[type="checkbox"], #frmemicalc select').on('input change', function(){
calculateBudget();
if($(this).is('input[type="range"]')){
updateRangeBackground($(this));
}});
window.updateRangeValue=updateRangeValue;
});