var schema_offers_html = '';$('#schema_offers').html(schema_offers_html);
var product_price="$24.00$23.76Mobile 1% OFF!
";
if($("#product_price").length>0){
$("#product_price").html(product_price);
}
var product_price_small="$23.76";
if($("#product_price_small").length>0){
$("#product_price_small").html(product_price_small);
}
if(timer){
clearInterval(timer);
}
var timer_c;
var deadline_c= new Date("01/04/2020 00:37:51");
var now_c = new Date("04/02/2025 01:56:47");
var diff_c = -480 - now_c.getTimezoneOffset();
var leave_c = (deadline_c.getTime() - now_c.getTime()) + diff_c*60000-1000;
if(deadline_c.getTime()>now_c.getTime() && !timer_c){
timer_c=setInterval(function(){
var day_c = Math.floor(leave_c / (1000 * 60 * 60 * 24));
var hour_c = Math.floor(leave_c / (1000*3600)) - (day_c * 24);
var minute_c = Math.floor(leave_c / (1000*60)) - (day_c * 24 *60) - (hour_c * 60);
var second_c = Math.floor(leave_c / (1000)) - (day_c * 24 *60*60) - (hour_c * 60 * 60) - (minute_c*60);
if(leave_c<=0){
$(".dayleft").html("00");
$(".hourleft").html("00");
$(".minuteleft").html("00");
$(".secondleft").html("00");
clearInterval(timer_c);
document.location.reload();
}else{
if(day_c<10){day_c="0"+day_c;}
if(hour_c<10){hour_c="0"+hour_c;}
if(minute_c<10){minute_c="0"+minute_c;}
if(second_c<10){second_c="0"+second_c;}
$(".dayleft").html(day_c);
$(".hourleft").html(hour_c);
$(".minuteleft").html(minute_c);
$(".secondleft").html(second_c);
}
leave_c=leave_c-1000;
},1000);
}else{
clearInterval(timer_c);
document.location.reload();
}