/*! For license information please see init.js.LICENSE.txt */ (function(){var __webpack_modules__={"./node_modules/classlist-polyfill/src/index.js":function(){eval('/*\n * classList.js: Cross-browser full element.classList implementation.\n * 1.1.20170427\n *\n * By Eli Grey, http://eligrey.com\n * License: Dedicated to the public domain.\n * See https://github.com/eligrey/classList.js/blob/master/LICENSE.md\n */\n\n/*global self, document, DOMException */\n\n/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */\nif ("document" in window.self) {\n // Full polyfill for browsers with no classList support\n // Including IE < Edge missing SVGElement.classList\n if (!("classList" in document.createElement("_")) || document.createElementNS && !("classList" in document.createElementNS("http://www.w3.org/2000/svg", "g"))) {\n (function (view) {\n "use strict";\n\n if (!(\'Element\' in view)) return;\n\n var classListProp = "classList",\n protoProp = "prototype",\n elemCtrProto = view.Element[protoProp],\n objCtr = Object,\n strTrim = String[protoProp].trim || function () {\n return this.replace(/^\\s+|\\s+$/g, "");\n },\n arrIndexOf = Array[protoProp].indexOf || function (item) {\n var i = 0,\n len = this.length;\n\n for (; i < len; i++) {\n if (i in this && this[i] === item) {\n return i;\n }\n }\n\n return -1;\n } // Vendors: please allow content code to instantiate DOMExceptions\n ,\n DOMEx = function DOMEx(type, message) {\n this.name = type;\n this.code = DOMException[type];\n this.message = message;\n },\n checkTokenAndGetIndex = function checkTokenAndGetIndex(classList, token) {\n if (token === "") {\n throw new DOMEx("SYNTAX_ERR", "An invalid or illegal string was specified");\n }\n\n if (/\\s/.test(token)) {\n throw new DOMEx("INVALID_CHARACTER_ERR", "String contains an invalid character");\n }\n\n return arrIndexOf.call(classList, token);\n },\n ClassList = function ClassList(elem) {\n var trimmedClasses = strTrim.call(elem.getAttribute("class") || ""),\n classes = trimmedClasses ? trimmedClasses.split(/\\s+/) : [],\n i = 0,\n len = classes.length;\n\n for (; i < len; i++) {\n this.push(classes[i]);\n }\n\n this._updateClassName = function () {\n elem.setAttribute("class", this.toString());\n };\n },\n classListProto = ClassList[protoProp] = [],\n classListGetter = function classListGetter() {\n return new ClassList(this);\n }; // Most DOMException implementations don\'t allow calling DOMException\'s toString()\n // on non-DOMExceptions. Error\'s toString() is sufficient here.\n\n\n DOMEx[protoProp] = Error[protoProp];\n\n classListProto.item = function (i) {\n return this[i] || null;\n };\n\n classListProto.contains = function (token) {\n token += "";\n return checkTokenAndGetIndex(this, token) !== -1;\n };\n\n classListProto.add = function () {\n var tokens = arguments,\n i = 0,\n l = tokens.length,\n token,\n updated = false;\n\n do {\n token = tokens[i] + "";\n\n if (checkTokenAndGetIndex(this, token) === -1) {\n this.push(token);\n updated = true;\n }\n } while (++i < l);\n\n if (updated) {\n this._updateClassName();\n }\n };\n\n classListProto.remove = function () {\n var tokens = arguments,\n i = 0,\n l = tokens.length,\n token,\n updated = false,\n index;\n\n do {\n token = tokens[i] + "";\n index = checkTokenAndGetIndex(this, token);\n\n while (index !== -1) {\n this.splice(index, 1);\n updated = true;\n index = checkTokenAndGetIndex(this, token);\n }\n } while (++i < l);\n\n if (updated) {\n this._updateClassName();\n }\n };\n\n classListProto.toggle = function (token, force) {\n token += "";\n var result = this.contains(token),\n method = result ? force !== true && "remove" : force !== false && "add";\n\n if (method) {\n this[method](token);\n }\n\n if (force === true || force === false) {\n return force;\n } else {\n return !result;\n }\n };\n\n classListProto.toString = function () {\n return this.join(" ");\n };\n\n if (objCtr.defineProperty) {\n var classListPropDesc = {\n get: classListGetter,\n enumerable: true,\n configurable: true\n };\n\n try {\n objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc);\n } catch (ex) {\n // IE 8 doesn\'t support enumerable:true\n // adding undefined to fight this issue https://github.com/eligrey/classList.js/issues/36\n // modernie IE8-MSW7 machine has IE8 8.0.6001.18702 and is affected\n if (ex.number === undefined || ex.number === -0x7FF5EC54) {\n classListPropDesc.enumerable = false;\n objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc);\n }\n }\n } else if (objCtr[protoProp].__defineGetter__) {\n elemCtrProto.__defineGetter__(classListProp, classListGetter);\n }\n })(window.self);\n } // There is full or partial native classList support, so just check if we need\n // to normalize the add/remove and toggle APIs.\n\n\n (function () {\n "use strict";\n\n var testElement = document.createElement("_");\n testElement.classList.add("c1", "c2"); // Polyfill for IE 10/11 and Firefox <26, where classList.add and\n // classList.remove exist but support only one argument at a time.\n\n if (!testElement.classList.contains("c2")) {\n var createMethod = function createMethod(method) {\n var original = DOMTokenList.prototype[method];\n\n DOMTokenList.prototype[method] = function (token) {\n var i,\n len = arguments.length;\n\n for (i = 0; i < len; i++) {\n token = arguments[i];\n original.call(this, token);\n }\n };\n };\n\n createMethod(\'add\');\n createMethod(\'remove\');\n }\n\n testElement.classList.toggle("c3", false); // Polyfill for IE 10 and Firefox <24, where classList.toggle does not\n // support the second argument.\n\n if (testElement.classList.contains("c3")) {\n var _toggle = DOMTokenList.prototype.toggle;\n\n DOMTokenList.prototype.toggle = function (token, force) {\n if (1 in arguments && !this.contains(token) === !force) {\n return force;\n } else {\n return _toggle.call(this, token);\n }\n };\n }\n\n testElement = null;\n })();\n}\n\n//# sourceURL=webpack://ddp/./node_modules/classlist-polyfill/src/index.js?')},"./wwwroot/scripts/helpers.js":function(){eval("HTMLDocument.prototype.remove = function (el) {\n el.parentNode.removeChild(el);\n};\n\nHTMLDocument.prototype.removeClass = function (elementSelector, cssClass) {\n document.querySelectorAll(elementSelector).forEach(function (elem) {\n elem.classList.remove(cssClass);\n });\n};\n\nHTMLDocument.prototype.AddClass = function (elementSelector, cssClass) {\n document.querySelector(elementSelector).forEach(function (elem) {\n elem.classList.add(cssClass);\n });\n};\n\nHTMLDocument.prototype.addEventListenerCheckSelector = function (elemSelector, eventName, callback) {\n var elem = document.querySelector(elemSelector);\n\n if (elem != null) {\n elem.addEventListener(eventName, callback);\n }\n};\n\nHTMLDocument.prototype.addEventListenerAllCheckSelector = function (elemSelector, eventName, callback) {\n var elems = document.querySelectorAll(elemSelector);\n\n if (elems.length > 0) {\n for (var i = 0; i < elems.length; i++) {\n elems[i].addEventListener(eventName, callback);\n }\n }\n}; // Show an element\n\n\nHTMLDocument.prototype.show = function (elem) {\n elem.style.display = 'block';\n};\n\nHTMLDocument.prototype.showAll = function (elemlist) {\n for (var i = 0; i < elemlist.length; i++) {\n elemlist[i].style.display = 'block';\n }\n}; // Hide an element\n\n\nHTMLDocument.prototype.hide = function (elem) {\n elem.style.display = 'none';\n};\n\nHTMLDocument.prototype.hideAll = function (elemlist) {\n for (var i = 0; i < elemlist.length; i++) {\n elemlist[i].style.display = 'none';\n }\n};\n\nHTMLDocument.prototype.closest = function (el, predicate) {\n do {\n if (predicate(el)) return el;\n } while (el = el && el.parentNode);\n};\n\nHTMLDocument.prototype.is = function (elem, selector) {\n if (selector.nodeType) {\n return elem === selector;\n }\n\n var qa = typeof selector === 'string' ? document.querySelectorAll(selector) : selector,\n length = qa.length,\n returnArr = [];\n\n while (length--) {\n if (qa[length] === elem) {\n return true;\n }\n }\n\n return false;\n};\n\nHTMLDocument.prototype.next = function (elem, selector) {\n var nextElem = elem.nextElementSibling;\n\n if (!selector) {\n return nextElem;\n }\n\n if (nextElem && nextElem.matches(selector)) {\n return nextElem;\n }\n\n return null;\n};\n\nif (window.NodeList && !NodeList.prototype.forEach) {\n NodeList.prototype.forEach = Array.prototype.forEach;\n}\n\nHTMLDocument.prototype.scrollTo = function (params) {\n var left = params.hasOwnProperty(\"left\") ? params.left : 0;\n var top = params.hasOwnProperty(\"top\") ? params.top : 0;\n var selector = params.hasOwnProperty(\"selector\") ? params.selector : null;\n var dt = 10;\n var time = 0;\n var dh = 10;\n var toUp = top < window.scrollY;\n var ctop = toUp ? window.scrollY : 0;\n if (top == window.scrollY) return;\n\n function tik() {\n if (selector) {\n top = document.querySelector(selector).getBoundingClientRect().top + window.scrollY;\n }\n\n time += dt;\n\n if (!toUp && ctop + dh <= top) {\n ctop = window.pageYOffset + dh;\n } else if (toUp && ctop - dh >= top) {\n ctop = window.pageYOffset - dh;\n } else {\n ctop = top;\n }\n\n dh = Math.pow(time, 2) / 1000;\n window.scrollTo(left, ctop);\n if (ctop != top) setTimeout(tik, dt);\n }\n\n setTimeout(tik, dt);\n};\n\n//# sourceURL=webpack://ddp/./wwwroot/scripts/helpers.js?")},"./wwwroot/scripts/init.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";eval('__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _helpers_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers.js */ "./wwwroot/scripts/helpers.js");\n/* harmony import */ var _helpers_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_helpers_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var classlist_polyfill__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! classlist-polyfill */ "./node_modules/classlist-polyfill/src/index.js");\n/* harmony import */ var classlist_polyfill__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(classlist_polyfill__WEBPACK_IMPORTED_MODULE_1__);\n\n\n\n\nvar mainFired = false;\n\n(function (arr) {\n arr.forEach(function (item) {\n if (item.hasOwnProperty(\'prepend\')) {\n return;\n }\n\n Object.defineProperty(item, \'prepend\', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function prepend() {\n var argArr = Array.prototype.slice.call(arguments),\n docFrag = document.createDocumentFragment();\n argArr.forEach(function (argItem) {\n var isNode = argItem instanceof Node;\n docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem)));\n });\n this.insertBefore(docFrag, this.firstChild);\n }\n });\n });\n arr.forEach(function (item) {\n if (item.hasOwnProperty(\'before\')) {\n return;\n }\n\n Object.defineProperty(item, \'before\', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function before() {\n var argArr = Array.prototype.slice.call(arguments),\n docFrag = document.createDocumentFragment();\n argArr.forEach(function (argItem) {\n var isNode = argItem instanceof Node;\n docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem)));\n });\n this.parentNode.insertBefore(docFrag, this);\n }\n });\n });\n})([Element.prototype, Document.prototype, DocumentFragment.prototype]);\n\nvar getScrollbarWidth = function getScrollbarWidth() {\n // Creating invisible container\n var outer = document.createElement(\'div\');\n outer.style.visibility = \'hidden\';\n outer.style.overflow = \'scroll\'; // forcing scrollbar to appear\n\n outer.style.msOverflowStyle = \'scrollbar\'; // needed for WinJS apps\n\n document.body.appendChild(outer); // Creating inner element and placing it in the container\n\n var inner = document.createElement(\'div\');\n outer.appendChild(inner); // Calculating difference between container\'s full width and the child width\n\n var scrollbarWidth = outer.offsetWidth - inner.offsetWidth; // Removing temporary elements from the DOM\n\n outer.parentNode.removeChild(outer);\n return scrollbarWidth;\n};\n\nvar hideMenu = function hideMenu() {\n document.querySelector("body").classList.remove("menu-active");\n\n if (document.querySelector("body").attributes.getNamedItem("style")) {\n document.querySelector("body").attributes.removeNamedItem("style");\n }\n};\n\nvar btnTopShow = function btnTopShow(btn, classFixed) {\n var btn = document.querySelector(btn),\n topPos = window.innerHeight / 2;\n window.addEventListener(\'scroll\', function () {\n var top = window.pageYOffset;\n\n if (top > topPos) {\n btn.classList.add(classFixed);\n } else {\n btn.classList.remove(classFixed);\n }\n });\n};\n\nvar scrollTop = function scrollTop(btn) {\n var windowCoords = btn.parentElement.offsetHeight;\n window.scrollTo({\n top: 0,\n behavior: "smooth"\n });\n};\n\nfunction testWebP() {\n return new Promise(function (res) {\n var webP = new Image();\n webP.src = \'data:image/webp;base64,UklGRjoAAABXRUJQVlA4IC4AAACyAgCdASoCAAIALmk0mk0iIiIiIgBoSygABc6WWgAA/veff/0PP8bA//LwYAAA\';\n\n webP.onload = webP.onerror = function () {\n res(webP.height === 2);\n };\n });\n}\n\n;\n\nvar addEscEvent = function addEscEvent(handler) {\n document.querySelector("body").addEventListener(\'keyup\', function (e) {\n var key = e.keyCode;\n\n if (key === 27) {\n handler();\n }\n }, false);\n};\n\nvar slideCatalogNav = function slideCatalogNav(title, subMenu) {\n var titleText = title.text;\n var parent = subMenu.parentNode.closest(".menu--open");\n var parentHeight = title.closest(".menu-wrap").offsetHeight;\n var parentWidth = title.closest(".menu-wrap").offsetWidth;\n var parentLink = subMenu.querySelector(\'.menu__item-parent\');\n\n if (parentLink == null) {\n var li = document.createElement(\'li\');\n li.classList.add(\'menu__item-parent\');\n li.textContent = titleText;\n /* var li = $(\'