/home/nbcgowuy/kdosheleads.com/wp-content/themes/marketo/assets/js/main.js
(function ($) {
  "use strict";

  /*------------------------------------------------------------------
     [Table of contents]

     mega navigation menu init
     back to top
     twitter api init
     map popups
     single banner slider
     xs tab slider
     xs tab slider 6 col
     xs deal of the day
     xs product slider 1
     xs product slider 2
     xs product slider 3
     deal of the day
     product slider 4
     product slider 5
     product slider 6
     product slider 7
     organic product slider 8
     organic product slider 9
     organic product slider 10
     product slider 11
     product slider 12
     product slider 13
     seven column slider
     xs progress
     input number increase
     echo init
     pulse effect
     countdown timer
     ajax chimp init
     xs popover
     number percentage
     number counter up

     -------------------------------------------------------------------*/

  /*==========================================================
     4. custom input type select function
     ======================================================================*/

  $.fn.mySelect = function (options) {
    let $this = $(this),
      numberOfOptions = $(this).children("option");

    $this.addClass("select-hidden");
    $this.wrap('<div class="select"></div>');
    $this.after('<div class="select-styled"></div>');

    let styledSelect = $this.next(".select-styled");
    styledSelect.text($this.children("option").eq(0).text());
    styledSelect.attr("data-value", $this.children("option").eq(0).val());

    let list = $("<ul />", {
      class: "select-options",
    }).insertAfter(styledSelect);

    for (let i = 0; i < numberOfOptions.length; i++) {
      $("<li />", {
        text: $this.children("option").eq(i).text(),
        rel: $this.children("option").eq(i).val(),
        class: $(numberOfOptions[i]).attr("class"),
      }).appendTo(list);
    }

    let listItems = list.children("li");

    styledSelect.on("click", function (e) {
      e.stopPropagation();
      $(".select-styled.active")
        .not(this)
        .each(function () {
          $(this).removeClass("active").next(".select-options").fadeIn();
        });
      $(this).toggleClass("active").next(".select-options").toggle();
      $(this).parent().toggleClass("focus");
    });

    listItems.on("click", function (e) {
      e.stopPropagation();
      styledSelect.text($(this).text()).removeClass("active");
      styledSelect.attr("data-value", $(this).attr("rel"));
      $this.val($(this).attr("rel"));
      list.hide();
      if ($(this).parent().parent().hasClass("focus")) {
        $(this).parent().parent().removeClass("focus");
      }
    });

    $(document).on("click", function () {
      styledSelect.removeClass("active");
      list.hide();
    });
  };

  if ($(".xs-category-select").length > 0) {
    $(".xs-category-select").mySelect();
  }
  if ($(".serach-form").length > 0) {
    var filed = $(".serach-form");
    filed.each(function () {
      $(filed).on("focus", function () {
        $(this).parent().addClass("focus");
      });
      $(filed).on("blur", function () {
        $(this).parent().removeClass("focus");
      });
    });
  }
  if ($(".xs-category-select2").length > 0) {
    $(".xs-category-select2").mySelect();
  }

  // menu vertical open and close when cross break point
  function menuVertical() {
    var window_width = $(window).width(),
      breakPoint = 991,
      dropDonw_tigger = $(".v-menu-is-active .xs-dropdown-trigger"),
      dropdown = $(".v-menu-is-active .cd-dropdown"),
      activeClass = "dropdown-is-active";

    if (window_width <= breakPoint) {
      if (dropDonw_tigger.hasClass(activeClass)) {
        dropDonw_tigger.removeClass(activeClass);
      }
      if (dropdown.hasClass(activeClass)) {
        dropdown.removeClass(activeClass);
      }
    } else {
      dropDonw_tigger.addClass(activeClass);
      dropdown.addClass(activeClass);
    }
  }

  function innerPageBreadcumb() {
    let promotion = $(".xs-promotion"),
      transparentHeader = $(".header-transparent"),
      totalHeight = Math.floor(
        promotion.outerHeight(true) + transparentHeader.outerHeight(true)
      );

    $(".header-transparent + .xs-breadcumb").css("margin-top", totalHeight);

    $(".header-transparent ~ .page .xs-transparent").css(
      "margin-top",
      totalHeight
    );
    $(".header-transparent + .xs-breadcumb + .page .xs-transparent").css(
      "margin-top",
      0
    );
  }

  function mobileMenu() {
    let header = $(".xs-header");
    if ($(window).width() <= 991) {
      $(header).addClass("mobile-menu");
    } else {
      if ($(header).hasClass("mobile-menu")) {
        $(header).removeClass("mobile-menu");
      }
    }
  }
  var firstState = "large";
  function headerRemove() {
    // var winW = $( window ).width();
    // if ( winW <= 991 ) {
    //     firstState = 'small';
    //     $( '.xs-header' ).remove();
    //     $( '.display-4' ).remove()
    // }
    // if ( winW >= 992 ) {
    //     if ( $( '.xs-header' ).length < 1 && firstState == 'small' && $( '.display-4' ).length < 1 ) {
    //         $( 'body' ).prepend( '<p class="text-center display-4">Please Reload Your browser. If you would like to see nav bar.</p>' );
    //     }
    // }
  }

  // nav cover add remoe
  let navCover = () => {
    $(window).width() <= 1023
      ? $(".nav-cover").remove()
      : $(".xs-header").append('<div class="nav-cover"></div>');
  };

  $(window).on("load", function () {
    // menu vertical open and close when cross break point
    menuVertical();

    mobileMenu();

    headerRemove();

    // nav cover init
    navCover();

    innerPageBreadcumb();
    if ($(".dokan-widget-area").length > 0) {
      console.log("test");
      $(".dokan-widget-area").addClass("sidebar");
    }

    /* banner slider verison 5 push bootstrap markup */
    $(".xs-banner-slider-5 .owl-dots").wrap(
      '<div class="container container-fullwidth"><div class="row"><div class="col-md-9 offset-md-3"></div></div></div>'
    );

    if ($(".marketo-xs-header-5").length > 0) {
      if ($(".xs-header").hasClass("marketo-xs-header-5")) {
        $("body").addClass("xs-header-5");
      } else {
        $("body").removeClass("xs-header-5");
      }
    }
  }); // END load Function

  $(document).ready(function () {
    // menu vertical open and close when cross break point
    menuVertical();

    innerPageBreadcumb();

    mobileMenu();

    headerRemove();

    /*Product Timer*/
    $(".xs-countdown-timer[data-countdown]").each(function () {
      var $this = $(this),
        finalDate = $(this).data("countdown");
      $this.countdown(finalDate, function (event) {
        var $this = $(this).html(
          event.strftime(
            " " +
            '<div class="xs-timer-container"><span class="timer-count">%-D </span><span class="timer-title">' +
            xs_product_timers.xs_date +
            "</span></div>" +
            '<div class="xs-timer-container"><span class="timer-count">%H </span><span class="timer-title">' +
            xs_product_timers.xs_hours +
            "</span></div>" +
            '<div class="xs-timer-container"><span class="timer-count">%M </span><span class="timer-title">' +
            xs_product_timers.xs_minutes +
            "</span></div>" +
            '<div class="xs-timer-container"><span class="timer-count">%S </span><span class="timer-title">' +
            xs_product_timers.xs_secods +
            "</span></div>"
          )
        );
      });
    });

    /*==========================================================
         mega navigation menu init
         ======================================================================*/
    if ($(".xs-menus").length > 0) {
      $(".xs-menus").xs_nav({
        mobileBreakpoint: 992,
      });
    }
    $(".xs-menus")
      .find(".elementor-swiper-button-prev, .elementor-swiper-button-next")
      .on("click", function (e) {
        e.stopPropagation();
      });
    if ($(".nav-hidden-menu").length > 0) {
      $(".nav-hidden-menu").xs_nav({
        hidden: true,
      });
      $(".btn-show").on("click", function () {
        $(".nav-hidden-menu").data("xs_nav").toggleOffcanvas();
      });
    }

    /*==========================================================
         back to top
         ======================================================================*/
    $(document).on("click", ".xs-back-to-top", function (event) {
      event.preventDefault();
      /* Act on the event */

      $("html, body").animate(
        {
          scrollTop: 0,
        },
        1000
      );
    });

    //This is for myaccount center or
    $(".u-columns.col2-set").append(
      '<p class="form-separetor account-form-or">' +
      xs_product_timers.xs_acc_or +
      "</p>"
    );

    /*==========================================================
         xs progress
         ======================================================================*/
    if ($(".xs-progress").length > 0) {
      $(".xs-progress").each(function () {
        $(this)
          .find(".progress-bar")
          .css({
            width: $(this).find(".progress-bar").attr("aria-valuenow") + "%",
          });
      });
    }

    $(".rate-graph").each(function () {
      if ($(this).find(".rate-graph-bar").attr("data-percent") <= 100) {
        $(this)
          .find(".rate-graph-bar")
          .css({
            width: $(this).find(".rate-graph-bar").attr("data-percent") + "%",
          });
      } else {
        $(this)
          .find(".rate-graph-bar")
          .css({
            width: 100 + "%",
          });
      }
    });

    /*=============================================================
         input number increase
         =========================================================================*/
    if (!String.prototype.getDecimals) {
      String.prototype.getDecimals = function () {
        var num = this,
          match = ("" + num).match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);
        if (!match) {
          return 0;
        }
        return Math.max(
          0,
          (match[1] ? match[1].length : 0) - (match[2] ? +match[2] : 0)
        );
      };
    }
    $(document).on("click", ".plus, .minus", function () {
      // Get values
      var $qty = $(this).closest(".quantity").find(".qty"),
        currentVal = parseFloat($qty.val()),
        max = parseFloat($qty.attr("max")),
        min = parseFloat($qty.attr("min")),
        step = $qty.attr("step");

      // Format values
      if (!currentVal || currentVal === "" || currentVal === "NaN")
        currentVal = 0;
      if (max === "" || max === "NaN") max = "";
      if (min === "" || min === "NaN") min = 0;
      if (
        step === "any" ||
        step === "" ||
        step === undefined ||
        parseFloat(step) === "NaN"
      )
        step = 1;

      // Change the value
      if ($(this).is(".plus")) {
        if (max && currentVal >= max) {
          $qty.val(max);
        } else {
          $qty.val((currentVal + parseFloat(step)).toFixed(step.getDecimals()));
        }
      } else {
        if (min && currentVal <= min) {
          $qty.val(min);
        } else if (currentVal > 0) {
          $qty.val((currentVal - parseFloat(step)).toFixed(step.getDecimals()));
        }
      }

      // Trigger change event
      $qty.trigger("change");
    });

    /*==========================================================
         echo init
         ======================================================================*/
    echo.init({
      offset: 100,
      throttle: 100,
      unload: false,
    });

    if ($(".xs-nav-tab li a").length > 0) {
      $(".xs-nav-tab li a").on("click", function () {
        echo.render();
      });
    }

    /*==========================================================
         ajax chimp init
         ======================================================================*/
    if ($(".xs-newsletter").length > 0) {
      var mailchimp_url = $(".xs-newsletter").data("link");
      $(".xs-newsletter").ajaxChimp({
        url: mailchimp_url,
      });
    }

    /*==========================================================
         xs popover
         ======================================================================*/
    if ($('.btn[data-toggle="popover"]').length > 0) {
      // popover init
      $('.btn[data-toggle="popover"]').popover();
      // popover add class
      $('.btn[data-toggle="popover"]').on("click", function (e) {
        e.preventDefault();
        if ($(this).hasClass("is-active")) {
          $(this).removeClass("is-active");
        } else {
          $(this).addClass("is-active");
        }
      });
    }

    /*==========================================================
         number percentage
         =======================================================================*/
    var number_percentage = $(".number-percentage");

    function animateProgressBar() {
      number_percentage.each(function () {
        $(this).animateNumbers(
          $(this).attr("data-value"),
          true,
          parseInt($(this).attr("data-animation-duration"), 10)
        );
      });
    }

    if ($(".waypoint-tigger").length > 0) {
      var waypoint = new Waypoint({
        element: document.getElementsByClassName("waypoint-tigger"),
        handler: function (direction) {
          animateProgressBar();
        },
        offset: "50%",
      });
    }

    /*==========================================================
         number counter up
         =======================================================================*/
    $.fn.animateNumbers = function (stop, commas, duration, ease) {
      return this.each(function () {
        var $this = $(this);
        var start = parseInt($this.text().replace(/,/g, ""), 10);
        commas = commas === undefined ? true : commas;
        $({
          value: start,
        }).animate(
          {
            value: stop,
          },
          {
            duration: duration == undefined ? 500 : duration,
            easing: ease == undefined ? "swing" : ease,
            step: function () {
              $this.text(Math.floor(this.value));
              if (commas) {
                $this.text(
                  $this.text().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,")
                );
              }
            },
            complete: function () {
              if (parseInt($this.text(), 10) !== stop) {
                $this.text(stop);
                if (commas) {
                  $this.text(
                    $this.text().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,")
                  );
                }
              }
            },
          }
        );
      });
    };

    $(".tigger-icon").on("click", function (event) {
      event.preventDefault();
      /* Act on the event */
      var this_item = $(".xs-social-tigger");
      if (this_item.hasClass("active")) {
        this_item.removeClass("active");
      } else {
        this_item.addClass("active");
      }
    });

    $(".offset-cart-menu").on("click", function (e) {
      e.preventDefault();
      $(".xs-sidebar-group").addClass("isActive");
    });
    $("body").on("click", ".close-side-widget", function (e) {
      e.preventDefault();
      $(".xs-sidebar-group").removeClass("isActive");
    });

    $(".add_to_wishlist").on("click", function (e) {
      $(this).parent().addClass("feid-in");
    });

    $(".xs-overlay").on("click", function () {
      $(".xs-sidebar-group").removeClass("isActive");
    });

    $("body").on("click", ".xs-sidebar-group", function (e) {
      e.stopPropagation();
    });

    $(".navsearch-button").on("click", function (e) {
      e.preventDefault();

      if (!$(".navsearch-form").is(":visible")) {
        $(this)
          .find(".xs-search-icon")
          .removeClass("icon-search")
          .addClass("icon-search-minus");
      } else {
        $(this)
          .find(".xs-search-icon")
          .removeClass("icon-search-minus")
          .addClass("icon-search");
      }
      $(this).parent().parent().find(".navsearch-form").slideToggle(300);
    });

    $(document).on("click", "body", function (e) {
      $(".ajax-search-result").remove();
    });
    $(document).on(
      "click",
      ".ajax-search-result, .xs-navbar-search",
      function (e) {
        e.stopPropagation();
      }
    );
    $(".xs-dropdown-trigger").on("click", function (e) {
      e.stopPropagation();
    });
    $("body").on("click", ".nav-cover.dropdown-is-active", function () {
      if ($(".nav-cover").hasClass("dropdown-is-active")) {
        $(".nav-cover").removeClass("dropdown-is-active");
        $(".xs-dropdown-trigger").removeClass("dropdown-is-active");
        $(".cd-dropdown").removeClass("dropdown-is-active");
      }
    });
    /*==========================================================
                49. vertical menu dropdown tigger on click overlay active init
        ======================================================================*/
    if ($(window).width() >= 1024) {
      if ($(".xs-dropdown-trigger").length > 0) {
        $(".xs-dropdown-trigger").on("click", function () {
          if ($(".nav-cover").hasClass("dropdown-is-active")) {
            $(".nav-cover").removeClass("dropdown-is-active");
          } else {
            $(".nav-cover").addClass("dropdown-is-active");
          }
        });
      }
    }

    if (
      $(".elementskit-navbar-nav-default .ekit-menu-badge-arrow").length > 0
    ) {
      $(".elementskit-navbar-nav-default .ekit-menu-badge-arrow").each(
        function () {
          var top_color = $(this).attr("style");
          var left_color = top_color.replace("border-top-color:", "");
          $(this).css({
            "border-left-color": left_color,
          });
        }
      );
    }
  }); // end ready function

  $(window).on("scroll", function () { }); // END Scroll Function

  $(window).on("resize", function () {
    innerPageBreadcumb();

    // menu vertical open and close when cross break point
    menuVertical();

    mobileMenu();

    headerRemove();
  }); // End Resize

  // shop filter
  var xs_notic_wrapper = $(
    ".post-type-archive-product .woocommerce-notices-wrapper"
  );
  xs_notic_wrapper.remove();
  $(".post-type-archive-product .xs-shop-notice").append(xs_notic_wrapper);
  var ordaring = $(".post-type-archive-product .before-default-sorting");
  ordaring.remove();
  $(".post-type-archive-product .woocommerce-ordering").prepend(ordaring);

  //  shop page list view
  $(document).on("click", "#list-tab", function () {
    $(this)
      .parents(".woocommerce-products-header")
      .siblings(".feature-product-v4")
      .addClass("list-veiw-enable");
  });
  $(document).on("click", "#grid-tab", function () {
    $(this)
      .parents(".woocommerce-products-header")
      .siblings(".feature-product-v4")
      .removeClass("list-veiw-enable");
  });

  // Dokan geolocation

  var gdform = $(".dokan-geolocation-location-filters");
  var gdmap = $(".dokan-geolocation-locations-map-top");
  var shopParent = $(".woocommerce-products-header");

  if (gdform.length > 0 || gdmap.length > 0) {
    if (shopParent.length > 0) {
      shopParent.addClass("xs-dokan-geolocation-enable");
      var topm1 = gdform.outerHeight();
      var topm2 = gdmap.outerHeight();
      var totalMagin = topm1 + topm2 + 100 + "px";
      shopParent.css("margin-top", totalMagin);
    }
  }
  // Passive event listeners
  // $.event.special.touchstart = {
  //   setup: function (_, ns, handle) {
  //     this.addEventListener("touchstart", handle, {
  //       passive: !ns.includes("noPreventDefault"),
  //     });
  //   },
  // };
  // $.event.special.touchmove = {
  //   setup: function (_, ns, handle) {
  //     this.addEventListener("touchmove", handle, {
  //       passive: !ns.includes("noPreventDefault"),
  //     });
  //   },
  // };


  // background image lazy load
  const loadScripts_PreloadTimer = setTimeout(triggerScriptLoader_Preload, 8e3),
    userInteractionEvents_Preload = [
      "mouseover",
      "keydown",
      "touchstart",
      "touchmove",
      "wheel",
    ];
  function triggerScriptLoader_Preload() {
    document.querySelector("html").classList.add("is-active-page"),
      clearTimeout(loadScripts_PreloadTimer);
  }
  userInteractionEvents_Preload.forEach(function (e) {
    window.addEventListener(e, triggerScriptLoader_Preload, {
      passive: !0,
    });
  });

  if (fontList) {
    const observeFontList = fontList.map((fontName) => {
      const observer = new FontFaceObserver(fontName);
      return observer.load();
    });

    Promise.all(observeFontList).then(function () {
      document.documentElement.className += " fonts-loaded";
    });
  } else {
    const rubikObserver = new FontFaceObserver('Rubik');
    const robotoObserver = new FontFaceObserver('Roboto');

    Promise.all([
      rubikObserver.load(),
      robotoObserver.load()
    ]).then(function () {
      document.documentElement.className += " fonts-loaded";
    });
  }
})(jQuery);