/* Author Box -------------------------------------------------------------- */ .tf-author-box-layout-image-left .author-box, .tf-author-box-layout-image-right .author-box { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .tf-author-box-layout-image-left .author-box .author-box-avatar, .tf-author-box-layout-image-right .author-box .author-box-avatar { -ms-flex-item-align: start; align-self: flex-start; -ms-flex-negative: 0; flex-shrink: 0; } .tf-author-box-layout-image-left .author-box .author-box-text, .tf-author-box-layout-image-right .author-box .author-box-text { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .tf-author-box-layout-image-right .author-box { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; text-align: right; } ! function (e, t) { "object" == typeof exports && "object" == typeof module ? module.exports = t() : "function" == typeof define && define.amd ? define("UniversalTilt", [], t) : "object" == typeof exports ? exports.UniversalTilt = t() : e.UniversalTilt = t() }("object" != typeof window ? global.window = global : window, function () { return function (e) { var t = {}; function n(i) { if (t[i]) return t[i].exports; var s = t[i] = { i: i, l: !1, exports: {} }; return e[i].call(s.exports, s, s.exports, n), s.l = !0, s.exports } return n.m = e, n.c = t, n.d = function (e, t, i) { n.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: i }) }, n.r = function (e) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(e, "__esModule", { value: !0 }) }, n.t = function (e, t) { if (1 & t && (e = n(e)), 8 & t) return e; if (4 & t && "object" == typeof e && e && e.__esModule) return e; var i = Object.create(null); if (n.r(i), Object.defineProperty(i, "default", { enumerable: !0, value: e }), 2 & t && "string" != typeof e) for (var s in e) n.d(i, s, function (t) { return e[t] }.bind(null, s)); return i }, n.n = function (e) { var t = e && e.__esModule ? function () { return e.default } : function () { return e }; return n.d(t, "a", t), t }, n.o = function (e, t) { return Object.prototype.hasOwnProperty.call(e, t) }, n.p = "", n(n.s = 0) }([function (e, t, n) { "use strict"; Object.defineProperty(t, "__esModule", { value: !0 }), t.default = void 0; var i, s = (i = n(1)) && i.__esModule ? i : { default: i }; var o = s.default; t.default = o, t.default = s.default, e.exports = t.default }, function (e, t, n) { "use strict"; function i(e, t) { for (var n = 0; n < t.length; n++) { var i = t[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(e, i.key, i) } } function s(e, t, n) { return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = n, e } Object.defineProperty(t, "__esModule", { value: !0 }), t.default = void 0; var o = function () { function e(t) { var n = this, i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, o = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}; ! function (e, t) { if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function") }(this, e), s(this, "onMouseEnter", function () { n.updateElementPosition(), n.transitions(), "function" == typeof n.callbacks.onMouseEnter && n.callbacks.onMouseEnter(n.element) }), s(this, "onMouseMove", function (e) { null !== n.updateCall && cancelAnimationFrame(n.updateCall), n.event = e, n.updateElementPosition(), n.updateCall = requestAnimationFrame(function () { return n.update() }), "function" == typeof n.callbacks.onMouseMove && n.callbacks.onMouseMove(n.element) }), s(this, "onMouseLeave", function () { n.transitions(), requestAnimationFrame(function () { return n.reset() }), "function" == typeof n.callbacks.onMouseLeave && n.callbacks.onMouseLeave(n.element) }), s(this, "onDeviceMove", function (e) { n.event = e, n.update(), n.updateElementPosition(), n.transitions(), "function" == typeof n.callbacks.onDeviceMove && n.callbacks.onDeviceMove(n.element) }), this.element = t, this.callbacks = o, this.settings = this.extendSettings(i), "function" == typeof this.callbacks.onInit && this.callbacks.onInit(this.element), this.reverse = this.settings.reverse ? -1 : 1, this.settings.shine && this.shine(), this.element.style.transform = "perspective(".concat(this.settings.perspective, "px)"), this.addEventListeners() } var t, n, o; return t = e, o = [{ key: "init", value: function () { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, n = t.elements, i = t.settings, s = t.callbacks; n instanceof Node && (n = [n]), n instanceof NodeList && (n = [].slice.call(n)); var o = !0, a = !1, l = void 0; try { for (var r, c = n[Symbol.iterator](); !(o = (r = c.next()).done); o = !0) { var u = r.value; "universalTilt" in u || (u.universalTilt = new e(u, i, s)) } } catch (e) { a = !0, l = e } finally { try { o || null == c.return || c.return() } finally { if (a) throw l } } } }], (n = [{ key: "isMobile", value: function () { return window.DeviceMotionEvent && "ontouchstart" in document.documentElement } }, { key: "addEventListeners", value: function () { navigator.userAgent.match(this.settings.exclude) || (this.isMobile() ? window.addEventListener("devicemotion", this.onDeviceMove) : ("element" === this.settings.base ? this.base = this.element : "window" === this.settings.base && (this.base = window), this.base.addEventListener("mouseenter", this.onMouseEnter), this.base.addEventListener("mousemove", this.onMouseMove), this.base.addEventListener("mouseleave", this.onMouseLeave))) } }, { key: "removeEventListeners", value: function () { window.removeEventListener("devicemotion", this.onDeviceMove), this.base.removeEventListener("mouseenter", this.onMouseEnter), this.base.removeEventListener("mousemove", this.onMouseMove), this.base.removeEventListener("mouseleave", this.onMouseLeave) } }, { key: "destroy", value: function () { clearTimeout(this.timeout), null !== this.updateCall && cancelAnimationFrame(this.updateCall), "function" == typeof this.callbacks.onDestroy && this.callbacks.onDestroy(this.element), this.reset(), this.removeEventListeners(), this.element.universalTilt = null, delete this.element.universalTilt, this.element = null } }, { key: "reset", value: function () { this.event = { pageX: this.left + this.width / 2, pageY: this.top + this.height / 2 }, this.settings.reset && (this.element.style.transform = "perspective(".concat(this.settings.perspective, "px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1)")), this.settings.shine && !this.settings["shine-save"] && Object.assign(this.shineElement.style, { transform: "rotate(180deg) translate3d(-50%, -50%, 0)", opacity: "0" }) } }, { key: "getValues", value: function () { var e, t, n; this.isMobile() ? (e = this.event.accelerationIncludingGravity.x / 4, t = this.event.accelerationIncludingGravity.y / 4, 90 === window.orientation ? (n = (1 - t) / 2, t = (1 + e) / 2, e = n) : -90 === window.orientation ? (n = (1 + t) / 2, t = (1 - e) / 2, e = n) : 0 === window.orientation ? (t = n = (1 + t) / 2, e = (1 + e) / 2) : 180 === window.orientation && (t = n = (1 - t) / 2, e = (1 - e) / 2)) : "element" === this.settings.base ? (e = (this.event.clientX - this.left) / this.width, t = (this.event.clientY - this.top) / this.height) : "window" === this.settings.base && (e = this.event.clientX / window.innerWidth, t = this.event.clientY / window.innerHeight); e = Math.min(Math.max(e, 0), 1), t = Math.min(Math.max(t, 0), 1); var i = (this.settings.max / 2 - e * this.settings.max).toFixed(2), s = (t * this.settings.max - this.settings.max / 2).toFixed(2), o = Math.atan2(e - .5, .5 - t) * (180 / Math.PI); return { tiltX: this.reverse * i, tiltY: this.reverse * s, angle: o } } }, { key: "updateElementPosition", value: function () { var e = this.element.getBoundingClientRect(); this.width = this.element.offsetWidth, this.height = this.element.offsetHeight, this.left = e.left, this.top = e.top } }, { key: "update", value: function () { var e = this.getValues(); this.element.style.transform = "perspective(".concat(this.settings.perspective, "px)\n rotateX(").concat(this.settings.disabled && "X" === this.settings.disabled.toUpperCase() ? 0 : e.tiltY, "deg)\n rotateY(").concat(this.settings.disabled && "Y" === this.settings.disabled.toUpperCase() ? 0 : e.tiltX, "deg)\n scale3d(").concat(this.settings.scale, ", ").concat(this.settings.scale, ", ").concat(this.settings.scale, ")"), this.settings.shine && Object.assign(this.shineElement.style, { transform: "rotate(".concat(e.angle, "deg) translate3d(-50%, -50%, 0)"), opacity: "".concat(this.settings["shine-opacity"]) }), this.element.dispatchEvent(new CustomEvent("tiltChange", { detail: e })), this.updateCall = null } }, { key: "shine", value: function () { var e = document.createElement("div"), t = document.createElement("div"); e.classList.add("shine"), t.classList.add("shine-inner"), e.appendChild(t), this.element.appendChild(e), this.shineWrapper = this.element.querySelector(".shine"), this.shineElement = this.element.querySelector(".shine-inner"), Object.assign(this.shineWrapper.style, { position: "absolute", top: "0", left: "0", height: "100%", width: "100%", overflow: "hidden" }), Object.assign(this.shineElement.style, { position: "absolute", top: "50%", left: "50%", "pointer-events": "none", "background-image": "linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)", width: "".concat(2 * this.element.offsetWidth, "px"), height: "".concat(2 * this.element.offsetWidth, "px"), transform: "rotate(180deg) translate3d(-50%, -50%, 0)", "transform-origin": "0% 0%", opacity: "0" }) } }, { key: "transitions", value: function () { var e = this; clearTimeout(this.timeout), this.element.style.transition = "all ".concat(this.settings.speed, "ms ").concat(this.settings.easing), this.settings.shine && (this.shineElement.style.transition = "opacity ".concat(this.settings.speed, "ms ").concat(this.settings.easing)), this.timeout = setTimeout(function () { e.element.style.transition = "", e.settings.shine && (e.shineElement.style.transition = "") }, this.settings.speed) } }, { key: "extendSettings", value: function (e) { var t = { base: "element", disabled: null, easing: "cubic-bezier(.03, .98, .52, .99)", exclude: null, max: 35, perspective: 1e3, reset: !0, reverse: !1, scale: 1, shine: !1, "shine-opacity": 0, "shine-save": !1, speed: 300 }, n = {}; for (var i in t) if (i in e) n[i] = e[i]; else if (this.element.getAttribute("data-".concat(i))) { var s = this.element.getAttribute("data-".concat(i)); try { n[i] = JSON.parse(s) } catch (e) { n[i] = s } } else n[i] = t[i]; return n } }]) && i(t.prototype, n), o && i(t, o), e }(); if (t.default = o, "undefined" != typeof document) { window.UniversalTilt = o; var a = document.querySelectorAll("[data-tilt]"); a.length && o.init({ elements: a }) } window.jQuery && (window.jQuery.fn.universalTilt = function () { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; o.init({ elements: this, settings: e.settings || {}, callbacks: e.callbacks || {} }) }) }]) });.#{$eps-prefix}back-button { font-size: 14px; margin-block-end: spacing(24); .#{$eps-prefix}icon { transform: getValueByDirection(rotate(0deg), rotate(180deg)); } } @keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}#dashboard-widgets .meta-box-sortables .postbox:last-child .wp-mail-smtp-dash-widget-settings-menu{top:auto;bottom:50px}@media(min-width: 800px){#dashboard-widgets .meta-box-sortables .postbox:last-child .wp-mail-smtp-dash-widget-settings-menu{bottom:40px}}#wp_mail_smtp_reports_widget_pro .inside,#wp_mail_smtp_reports_widget_lite .inside{margin:0;padding:0}.wp-mail-smtp-dash-widget button:focus{outline:none}.wp-mail-smtp-dash-widget-block{position:relative;padding:0 12px;margin-top:12px}.wp-mail-smtp-dash-widget-block h3{display:inline-block;line-height:2}.wp-mail-smtp-dash-widget-block p{margin-top:0;margin-bottom:0}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-block-container{position:relative}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-block{height:291px;border-bottom:1px solid #eee;padding:0 12px 12px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{display:flex;align-items:start;justify-content:space-between;margin-top:0;padding:13px;background-color:#fafafa}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings>div{display:flex}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings>div:first-child{flex-wrap:wrap}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings>div:first-child a{line-height:30px}@media(max-width: 980px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{padding:13px 4px}}@media(max-width: 960px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{padding:13px}}@media(max-width: 856px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{padding:13px 2px}}@media(max-width: 799px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{padding:13px}}@media(max-width: 436px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings{flex-direction:column;align-items:normal}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings select{width:100%;margin:0 0 10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-select-timespan{width:calc(100% - 38px)}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings a{vertical-align:middle}@media(max-width: 1150px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings a{display:none}}@media(min-width: 1500px)and (max-width: 1630px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings a{display:none}}@media(min-width: 1801px)and (max-width: 2080px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings a{display:none}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-select-email-type{margin-right:6px}@media(max-width: 830px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-select-email-type{margin-right:2px}}@media(max-width: 436px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-select-email-type{margin-right:0}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-container{display:inline-block;position:relative;vertical-align:top;margin-left:6px}@media(max-width: 830px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-container{margin-left:2px}}@media(max-width: 799px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-container{margin-left:6px}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button{background:#fafafa;color:#787c82;border-color:#787c82;padding:1px 6px 0;margin-bottom:0;line-height:1;display:flex;align-items:center;justify-content:center}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:hover,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:active,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:focus{color:#2271b1;border-color:#2271b1}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:hover svg path,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:active svg path,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button:focus svg path{fill:#2271b1}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button.open svg path{transform:rotate(90deg)}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button svg{display:inline-block;width:19px;height:19px}@media(max-width: 782px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button svg{padding:5px}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-button svg path{fill:#787c82;transition:transform .2s;transform-origin:center center}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu{display:none;position:absolute;background-color:#fff;width:160px;border-radius:3px;box-shadow:0px 5px 15px rgba(0,0,0,.15);padding:10px;z-index:9999;right:0;top:50px}@media(min-width: 800px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu{top:40px}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color{border-bottom:1px solid #eee}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style h4,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color h4{text-transform:uppercase !important;color:#3c434a !important;font-size:11px !important;font-weight:500 !important;line-height:13px !important;margin:0 0 10px !important}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style .wp-mail-smtp-dash-widget-settings-menu-item,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color .wp-mail-smtp-dash-widget-settings-menu-item{display:flex;align-items:center;color:#3c434a;font-size:13px;line-height:16px;margin:0 0 13px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style .wp-mail-smtp-dash-widget-settings-menu-item:last-child,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color .wp-mail-smtp-dash-widget-settings-menu-item:last-child{margin:0 0 10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style .wp-mail-smtp-dash-widget-settings-menu-item input[type=radio],.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color .wp-mail-smtp-dash-widget-settings-menu-item input[type=radio]{margin-right:5px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--style .wp-mail-smtp-dash-widget-settings-menu-item label,.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color .wp-mail-smtp-dash-widget-settings-menu-item label{vertical-align:top;margin-top:-3px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu--color{margin-top:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-settings .wp-mail-smtp-dash-widget-settings-menu-save{margin-top:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block{margin-top:0}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table{width:calc(100% + 24px);margin:0 -12px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell{padding:10px 12px;border-right:1px solid #eee;border-top:1px solid #eee;color:#3c434a;font-size:14px;width:50%;line-height:17px}@media(max-width: 436px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell{display:block;width:100%}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell--2:not(:first-child){border-right:none}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell--3{width:33.33%}@media(max-width: 436px){.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell--3{width:100%}}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell--3:last-child{border-right:none}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell-container{display:flex;align-items:center}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block table .wp-mail-smtp-dash-widget-email-stats-table-cell-container img{width:16px;margin-right:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-stats-block .wp-mail-smtp-dash-widget-overlay{background-position-y:50%}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block{display:flex;padding:12px 7px 12px 12px;border-top:1px solid #eee;color:#787c82;font-size:13px;line-height:16px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block b{color:#3c434a}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .sep{display:inline-block;margin:0 3px;color:#ddd}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .sep-vertical{color:#ddd}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block p{margin:0}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .wp-mail-smtp-dash-widget-recommended-plugin{display:inline-block;width:calc(100% - 24px)}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .wp-mail-smtp-dash-widget-recommended-plugin span{display:inline-block}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .wp-mail-smtp-dash-widget-dismiss-recommended-plugin-block{display:inline-block;border:0;color:gray;opacity:.3;vertical-align:baseline;cursor:pointer;background:none;padding:0 2px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .wp-mail-smtp-dash-widget-dismiss-recommended-plugin-block:hover{opacity:1}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-recommended-plugin-block .wp-mail-smtp-dash-widget-dismiss-recommended-plugin-block .dashicons{font-size:16px;height:16px;width:16px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education{align-items:center;border-left:4px solid #d63638;border-top:1px solid #eee;display:flex;gap:10px;margin-top:0;padding:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-error-icon{display:flex;height:44px;width:40px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-error-icon img{height:35px;width:35px;margin:auto}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-content{padding-right:14px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-content p{color:#1d2327;font-size:14px;line-height:20px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-content p a{color:#2271b1;font-weight:500}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education-content p strong{font-weight:500}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education .wp-mail-smtp-dash-widget-dismiss-email-alert-block{background:none;border:0;cursor:pointer;position:absolute;right:6px;top:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-email-alerts-education .wp-mail-smtp-dash-widget-dismiss-email-alert-block .dashicons{color:#a0a5aa;font-size:16px;height:17px;width:16px}.wp-mail-smtp-dash-widget .wp-mail-smtp-error{text-align:center}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-upgrade,.wp-mail-smtp-dash-widget .wp-mail-smtp-error-no-data-chart{position:absolute;left:0;top:0;height:100%;width:100%;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,0);background:-moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);background:-webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgb(255, 255, 255)));background:-webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);background:-o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);background:-ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);background:radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-upgrade .wp-mail-smtp-dash-widget-modal,.wp-mail-smtp-dash-widget .wp-mail-smtp-error-no-data-chart .wp-mail-smtp-dash-widget-modal{position:absolute;top:calc(50% - 2em);left:50%;transform:translate(-50%, -50%);padding:1.5em 2em 2em 2em;box-shadow:0 0 25px 10px rgba(0,0,0,.08);border-radius:3px;background-color:#fff;text-align:center;width:20em}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-upgrade .wp-mail-smtp-dash-widget-modal h2,.wp-mail-smtp-dash-widget .wp-mail-smtp-error-no-data-chart .wp-mail-smtp-dash-widget-modal h2{padding:0;margin-bottom:5px;font-size:18px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-chart-upgrade .wp-mail-smtp-dash-widget-modal p,.wp-mail-smtp-dash-widget .wp-mail-smtp-error-no-data-chart .wp-mail-smtp-dash-widget-modal p{line-height:1.3}.wp-mail-smtp-dash-widget .wp-mail-smtp-error-no-data-email-stats{padding-top:16px;padding-bottom:16px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-logs-disabled{padding:21px 25px 30px;text-align:center}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-logs-disabled .wp-mail-smtp-dash-widget-block-logo{width:75px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-logs-disabled h2{font-size:16px;line-height:20px;font-weight:500;padding:10px 0 0}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-logs-disabled p{font-size:14px;line-height:20px;margin:7px 0 19px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-block-logs-disabled a.button:first-of-type:not(:only-of-type){margin-right:10px}.wp-mail-smtp-dash-widget .wp-mail-smtp-dash-widget-overlay{width:100%;position:absolute;top:0;right:0;bottom:0;left:0;background:url(../images/wp-spinner.gif) no-repeat center calc(50% - 12px);background-color:#fff;z-index:10}.wp-mail-smtp-dash-widget i.wp-mail-smtp-dash-widget-loader{background-image:url(../images/wp-spinner.gif);background-repeat:no-repeat;background-position:center;background-size:cover}.wp-mail-smtp-dash-widget .hidden{display:none !important}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-block-container #wp-mail-smtp-dash-widget-chart{opacity:.35}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade{background:none;display:flex;align-items:center;justify-content:center}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade h2{font-size:20px;line-height:20px;font-weight:500;color:#3c434a;margin-bottom:15px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade p{font-size:14px;line-height:18px;color:#787c82;margin-bottom:15px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade p:last-child{margin-bottom:0}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade a.button.button-hero{font-weight:500;font-size:14px;line-height:20px;padding:9px 15px;min-height:40px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-chart-upgrade .wp-mail-smtp-dash-widget-modal{position:relative;top:inherit;left:inherit;transform:none;width:24em;padding:2.3em;box-shadow:0 5px 25px rgba(0,0,0,.15);border-radius:6px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-dismiss-chart-upgrade{position:absolute;width:16px;height:17px;right:5px;top:5px;color:#a0a5aa;text-decoration:none}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-dismiss-chart-upgrade .dashicons{width:16px;height:17px;font-style:normal;font-weight:normal;font-size:16px;line-height:17px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-settings-menu input[type=radio]:checked::before{background-color:#a0a5aa}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-settings-menu *{cursor:not-allowed}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block{margin-top:0;padding-top:10px;padding-bottom:10px;border-top:1px solid #eee;font-size:13px;line-height:16px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block>div{padding:10px;border-radius:4px;background:#f0f6fc}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting{display:flex;align-items:center}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting label{display:flex;margin:0 10px 0 0;color:#3c434a}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting label input,#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting label i{margin:0 10px 0 0}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting label i{display:none;width:16px;height:16px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting label b{font-weight:500}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting a{white-space:nowrap;margin-right:10px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting .dashicons-dismiss{margin-left:auto;width:16px;height:16px;font-size:16px;color:#a0a5aa;cursor:pointer}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-setting .dashicons-dismiss:hover{color:#2271b1}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-applied{display:flex}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-summary-report-email-block-applied .wp-mail-smtp-dashicons-yes-alt-green{margin-right:10px;width:16px;height:16px;background-image:url("../images/dash-widget/yes-green.svg")}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-upgrade-footer{padding:12px;margin-top:0;border-top:1px solid #eee}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-upgrade-footer p{font-size:13px;line-height:16px}#wp_mail_smtp_reports_widget_lite .wp-mail-smtp-dash-widget-upgrade-footer--hide{display:none}// Reset filters for IE // // When you need to remove a gradient background, do not forget to use this to reset // the IE filter for IE9 and below. .reset-filter() { filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); } !function(){"use strict";var e={d:function(o,n){for(var t in n)e.o(n,t)&&!e.o(o,t)&&Object.defineProperty(o,t,{enumerable:!0,get:n[t]})},o:function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},o={};e.r(o),e.d(o,{init:function(){return r}});var n=window.elementorV2.editorSiteNavigation,t=window.elementorV2.icons;function r(){n.extendIconsMap&&(0,n.extendIconsMap)({header:t.HeaderTemplateIcon,footer:t.FooterTemplateIcon,"single-post":t.PostTypeIcon,"single-page":t.PageTypeIcon,popup:t.PopupTemplateIcon,archive:t.ArchiveTemplateIcon,"search-results":t.SearchResultsTemplateIcon,"loop-item":t.LoopItemTemplateIcon,"error-404":t.Error404TemplateIcon,"landing-page":t.LandingPageTemplateIcon})}(window.elementorV2=window.elementorV2||{}).editorSiteNavigationExtended=o}(),window.elementorV2.editorSiteNavigationExtended?.init?.();.bdt-ep-creative-button{pointer-events:auto;cursor:pointer;color:#fff;background:#798184;padding:1.5rem 3rem;position:relative;display:inline-flex;align-items:center;justify-content:center}.bdt-ep-creative-button::before,.bdt-ep-creative-button::after{position:absolute;top:0;right:0;width:100%;height:100%}.bdt-ep-creative-button--pan{font-weight:700;border:2px solid #495157;border-radius:3rem;overflow:hidden;color:#fff}.bdt-ep-creative-button--pan span{z-index:1}.bdt-ep-creative-button--pan::before{content:'';background:#495157;transition:transform .3s cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--pan:hover::before{transform:translate3d(0, -100%, 0)}.bdt-ep-creative-button--hyperion{font-weight:500;padding:1rem 1.5rem;border:1px solid #495157;overflow:hidden;color:#fff}.bdt-ep-creative-button--hyperion span{display:block;z-index:1}.bdt-ep-creative-button--hyperion>span{overflow:hidden}.bdt-ep-creative-button--hyperion>span>span{overflow:hidden}.bdt-ep-creative-button--hyperion:hover>span>span{animation:MoveUpInitial .2s forwards,MoveUpEnd .2s forwards .2s}@keyframes MoveUpInitial{to{transform:translate3d(0, -105%, 0)}}@keyframes MoveUpEnd{from{transform:translate3d(0, 100%, 0)}to{transform:translate3d(0, 0, 0)}}.bdt-ep-creative-button--hyperion::before{content:'';background:#495157;transition:transform .3s cubic-bezier(.7, 0, .2, 1);transform-origin:0% 50%}.bdt-ep-creative-button--hyperion:hover::before{transform:scale3d(0, 1, 1);transform-origin:100% 50%}.bdt-ep-creative-button--mimas{text-transform:uppercase;letter-spacing:.05rem;font-weight:700;font-size:.85rem;border-radius:.5rem;overflow:hidden;color:#fff;background:#798184}.bdt-ep-creative-button--mimas span{z-index:1}.bdt-ep-creative-button--mimas::before{content:'';background:#00202c;width:120%;right:-10%;transform:skew(-30deg);transition:transform .4s cubic-bezier(.3, 1, .8, 1)}.bdt-ep-creative-button--mimas:hover::before{transform:translate3d(-100%, 0, 0)}.bdt-ep-creative-button--atlas{font-weight:500}.bdt-ep-creative-button--atlas>span{display:inline-block}.bdt-ep-creative-button--atlas:hover>span{opacity:0}.bdt-ep-creative-button-marquee{position:absolute;top:0;right:0;width:100%;overflow:hidden;pointer-events:none}.bdt-ep-creative-button-marquee__inner{width:fit-content;display:flex;position:relative;--offset:1rem;--move-initial:calc(-25% + var(--offset));--move-final:calc(-50% + var(--offset));transform:translate3d(var(--move-initial), 0, 0);animation:marquee 1s linear infinite;animation-play-state:paused;opacity:0}.bdt-ep-creative-button--atlas:hover .bdt-ep-creative-button-marquee__inner{animation-play-state:running;opacity:1;transition-duration:.4s}.bdt-ep-creative-button-marquee span{text-align:center;white-space:nowrap;font-style:italic;padding:1.5rem .5rem}@keyframes marquee{0%{transform:translate3d(var(--move-initial), 0, 0)}100%{transform:translate3d(var(--move-final), 0, 0)}}.bdt-ep-creative-button--kari{font-weight:900;font-size:1.25rem;border-radius:50%;border:2px solid #798184}.bdt-ep-creative-button--kari>span{display:inline-block;transition:opacity .1s}.bdt-ep-creative-button--kari:hover>span{opacity:0}.bdt-ep-creative-button--kari .bdt-ep-creative-button-marquee{transform:rotate(2.75deg)}.bdt-ep-creative-button--kari:hover .bdt-ep-creative-button-marquee__inner{animation-play-state:running;opacity:1;transition-duration:.6s}.bdt-ep-creative-button--pandora{background:#798184;font-weight:700;padding:0;border-radius:5px}.bdt-ep-creative-button--pandora span{display:block;background:#a7a7a7;padding:1.5rem 2rem;border-radius:5px;transform:translate3d(4px, -4px, 0);transition:transform .3s cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--pandora:hover span{transform:translate3d(8px, -8px, 0)}.bdt-ep-creative-button--janus{font-weight:600;width:175px;height:120px;color:#fff;background:none !important;font-size:14px}.bdt-ep-creative-button--janus::before{content:'';background:#e6e6e6;-webkit-clip-path:path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");clip-path:path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");transition:clip-path .5s cubic-bezier(.585, 2.5, .645, .55),-webkit-clip-path .5s cubic-bezier(.585, 2.5, .645, .55),background .5s ease;z-index:1}.bdt-ep-creative-button--janus:hover::before{background:#798184;-webkit-clip-path:path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");clip-path:path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z")}.bdt-ep-creative-button--janus::after{content:'';height:86%;width:97%;top:5%;border-radius:42% 58% 45% 55% / 45% 56% 44% 55%;border:1px solid #798184;transform:rotate(20deg);z-index:0;transition:transform .5s cubic-bezier(.585, 2.5, .645, .55)}.bdt-ep-creative-button--janus:hover::after{transform:translate3d(0, -5px, 0)}.bdt-ep-creative-button--janus span{display:block;transition:transform .3s ease;z-index:1}.bdt-ep-creative-button--janus:hover span{transform:translate3d(0, -10px, 0)}.bdt-ep-creative-button--anthe{color:#fff;background:none !important;overflow:hidden}.bdt-ep-creative-button--anthe:hover{color:#fff}.bdt-ep-creative-button--anthe:hover::before{background:#1e87f0;-webkit-clip-path:polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);clip-path:polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%)}.bdt-ep-creative-button--anthe:hover span{transform:translate3d(10px, 0, 0)}.bdt-ep-creative-button--anthe::before{content:'';background:#69727d;-webkit-clip-path:polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);clip-path:polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);transition:clip-path .4s cubic-bezier(.2, 1, .8, 1),-webkit-clip-path .4s cubic-bezier(.2, 1, .8, 1)}.bdt-ep-creative-button--anthe span{display:block;transition:transform .4s cubic-bezier(.2, 1, .8, 1);z-index:1}.bdt-ep-creative-button--pallene{font-weight:700;border-radius:.5rem;border:2px solid #798184;box-shadow:inset 0 0 0 0 #798184;transition:border-radius .3s,box-shadow .3s,color .3s;transition-timing-function:cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--pallene:hover{color:#fff;border-radius:50%;box-shadow:inset 0 0 0 40px #495157;transition-delay:0s,0s,.2s}.bdt-ep-creative-button--telesto{overflow:hidden;font-weight:800;font-style:italic;font-size:1.15rem;color:#fff}.bdt-ep-creative-button--telesto span{display:block;z-index:1}.bdt-ep-creative-button--telesto>span{overflow:hidden}.bdt-ep-creative-button--telesto:hover>span>span{animation:MoveRightInitial .1s forwards,MoveRightEnd .3s forwards .2s}@keyframes MoveRightInitial{to{transform:translate3d(-105%, 0, 0)}}@keyframes MoveRightEnd{from{transform:translate3d(100%, 0, 0)}to{transform:translate3d(0, 0, 0)}}.bdt-ep-creative-button--telesto::before,.bdt-ep-creative-button--telesto::after{content:'';background:#495157}.bdt-ep-creative-button--telesto::before{width:135%;-webkit-clip-path:polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);clip-path:polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);transform:translate3d(100%, 0, 0)}.bdt-ep-creative-button--telesto:hover::before{transform:translate3d(0, 0, 0);transition:transform .3s cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--telesto::after{width:105%;transform:translate3d(-100%, 0, 0);transition:transform .3s cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--telesto:hover::after{transform:translate3d(0, 0, 0);transition:transform .01s .3s cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--calypso{overflow:hidden;font-size:1.15rem;border-radius:.85rem;color:#fff}.bdt-ep-creative-button--calypso:hover{background:none !important}.bdt-ep-creative-button--calypso span{display:block;z-index:10}.bdt-ep-creative-button--calypso:hover span{animation:MoveScaleUpInitial .3s forwards,MoveScaleUpEnd .3s forwards .3s}@keyframes MoveScaleUpInitial{to{transform:translate3d(0, -105%, 0) scale3d(1, 2, 1);opacity:0}}@keyframes MoveScaleUpEnd{from{transform:translate3d(0, 100%, 0) scale3d(1, 2, 1);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}.bdt-ep-creative-button--calypso::before{content:'';background:#798184;width:120%;height:0;padding-bottom:120%;top:-110%;right:-10%;border-radius:50%;transform:translate3d(0, 68%, 0) scale3d(0, 0, 0)}.bdt-ep-creative-button--calypso:hover::before{transform:translate3d(0, 0, 0) scale3d(1, 1, 1);transition:transform .4s cubic-bezier(.1, 0, .3, 1)}.bdt-ep-creative-button--calypso::after{content:'';background:#798184;transform:translate3d(0, -101%, 0);transition:transform .4s cubic-bezier(.1, 0, .3, 1)}.bdt-ep-creative-button--calypso:hover::after{transform:translate3d(0, 0, 0);transition-duration:.05s;transition-delay:.4s;transition-timing-function:linear}.bdt-ep-creative-button--skoll{overflow:hidden;border-radius:50%;color:#fff;width:100px;height:100px;padding:0;font-weight:500}.bdt-ep-creative-button--skoll span{display:block;z-index:1}.bdt-ep-creative-button--skoll>span{overflow:hidden}.bdt-ep-creative-button--skoll:hover>span>span{animation:MoveUpInitial .2s forwards,MoveUpEnd .2s forwards .2s}.bdt-ep-creative-button--skoll::before{content:'';background:#495157;width:100%;height:0;padding-bottom:100%;border-radius:50%;transform:translate3d(0, 0, 0);transition:transform .3s;transition-timing-function:cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--skoll:hover::before{transform:translate3d(0, 100%, 0)}.bdt-ep-creative-button--greip{overflow:hidden;color:#fff;font-weight:500;padding:1rem 2rem}.bdt-ep-creative-button--greip span{display:block;z-index:1}.bdt-ep-creative-button--greip>span{overflow:hidden}.bdt-ep-creative-button--greip:hover>span>span{animation:MoveUpInitial .2s forwards,MoveUpEnd .2s forwards .2s}.bdt-ep-creative-button--greip::before{content:'';background:#495157;width:100%;height:100%;transform-origin:50% 100%;-webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0% 100%);clip-path:polygon(0 0, 100% 0, 100% 100%, 0% 100%);transition:clip-path .2s,-webkit-clip-path .2s;transition-timing-function:cubic-bezier(.7, 0, .2, 1)}.bdt-ep-creative-button--greip:hover::before{transition-duration:.3s;-webkit-clip-path:polygon(0 0, 100% 0, 0 0, 0% 100%);clip-path:polygon(0 0, 100% 0, 0 0, 0% 100%)}.bdt-ep-creative-button--dione{background:none !important;font-weight:500;font-style:italic;padding:1.5rem 3rem}.bdt-ep-creative-button--dione span{display:inline-block;color:#fff;z-index:1}.bdt-ep-creative-button--dione::before{content:'';background:#798184;transition:transform .3s cubic-bezier(.2, 1, .7, 1)}.bdt-ep-creative-button--dione:hover::before{transform:scale3d(.9, .8, 1)}.bdt-ep-creative-button--dione::after{content:'';border:1px solid #798184;transition:transform .3s cubic-bezier(.2, 1, .7, 1);border-radius:0px;transform:scale3d(.85, .65, 1)}.bdt-ep-creative-button--dione:hover::after{transform:scale3d(1, 1, 1)}.bdt-ep-creative-button--helene{border-radius:7px;border:1px solid #798184;font-weight:900;font-style:normal;text-transform:uppercase;font-size:.85rem;padding:1.5rem 3rem}.bdt-ep-creative-button--helene::before{content:'';top:10px;right:10px;width:calc(100% - 20px);height:calc(100% - 20px);background:rgba(0,0,0,0.5);filter:blur(7px);border-radius:7px;z-index:-1;transform:translate3d(0, 15px, 0);transition:transform .45s}.bdt-ep-creative-button--helene:hover::before{transform:translate3d(0, 0, 0)}.bdt-ep-creative-button--helene span{display:block}.bdt-ep-creative-button--helene>span{height:100%;overflow:hidden}.bdt-ep-creative-button--helene:hover>span>span{animation:slotMachine .15s ease-out forwards 3}@keyframes slotMachine{50%{transform:translate3d(0, 100%, 0);opacity:0}51%{transform:translate3d(0, -100%, 0);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}.bdt-ep-creative-button--rhea{font-weight:600;font-style:normal;width:180px;height:180px;color:#ffffff;background:none !important;font-size:15px;z-index:1}.bdt-ep-creative-button--rhea::before{content:'';z-index:-1;background:#798184;-webkit-clip-path:polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);clip-path:polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);transition:clip-path .4s cubic-bezier(.3, 1, .2, 1),-webkit-clip-path .4s cubic-bezier(.3, 1, .2, 1),transform .4s cubic-bezier(.3, 1, .2, 1),background .4s ease}.bdt-ep-creative-button--rhea:hover::before{background:#798184;transform:scale3d(.7, .7, 1);-webkit-clip-path:polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);clip-path:polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%)}.bdt-ep-creative-button--rhea span{display:block;transition:transform .4s cubic-bezier(.3, 1, .2, 1),opacity .05s}.bdt-ep-creative-button--rhea:hover span{transform:scale3d(.1, .1, 1);opacity:0;transition-delay:0s,.35s}.bdt-ep-creative-button--narvi{font-weight:bold;background:none !important}.bdt-ep-creative-button--narvi::before{content:'';z-index:0;background:#798184;-webkit-clip-path:polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);clip-path:polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);transition:clip-path .3s cubic-bezier(.7, 0, .2, 1),-webkit-clip-path .3s cubic-bezier(.7, 0, .2, 1),transform .3s ease}.bdt-ep-creative-button--narvi:hover::before{transform:translate3d(0, -10px, 0);-webkit-clip-path:polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%);clip-path:polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%)}.bdt-ep-creative-button--narvi span{display:block;z-index:1}.bdt-ep-creative-button--narvi>span{transition:transform .3s;transform:translate3d(0, -0.556rem, 0);z-index:1;overflow:hidden}.bdt-ep-creative-button--narvi:hover>span{transform:translate3d(0, -1.111rem, 0)}.bdt-ep-creative-button--narvi:hover>span>span{animation:MoveUpInitial .15s forwards,MoveUpEnd .15s forwards .15s}.bdt-ep-creative-button--hati{border-radius:50%;overflow:hidden;border:2px solid;background:none !important;color:#798184;font-weight:900;font-style:italic}.bdt-ep-creative-button--hati:hover{background:none !important}.bdt-ep-creative-button--hati::before{animation:rotateIt 10s linear infinite;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAUElEQVQoU3VPSQ4AMQiS/z/aBiMNNDNeXEBQoDL66dkG52/hzlmsSqMKrAVCoOXuxR3TFVSIIJmzsFvGOMlust3iivmQd/6+3/NlN4paIOEADPIUD/MQvy0AAAAASUVORK5CYII=);content:'';width:300%;height:300%;top:-100%;right:-100%;z-index:0;opacity:0;transform-origin:50% 50%;transition:opacity .3s}@keyframes rotateIt{to{transform:rotate(360deg)}}.bdt-ep-creative-button--hati:hover::before{opacity:.7}.bdt-ep-creative-button--hati span{display:block;z-index:1}.bdt-ep-creative-button--bestia{font-size:1.15rem;color:#fff;background:none !important;padding:0 !important;border:0 !important;box-shadow:none !important}.bdt-ep-creative-button--bestia .bdt-ep-creative-button__bg{top:0;right:0;position:absolute;width:100%;height:100%;background:#798184;border-radius:.85rem;overflow:hidden;transition:transform .4s cubic-bezier(.1, 0, .3, 1)}.bdt-ep-creative-button--bestia:hover .bdt-ep-creative-button__bg{transform:scale3d(1.2, 1.2, 1)}.bdt-ep-creative-button--bestia .bdt-ep-creative-button__bg::before,.bdt-ep-creative-button--bestia .bdt-ep-creative-button__bg::after{content:'';position:absolute;background:#798184}.bdt-ep-creative-button--bestia .bdt-ep-creative-button__bg::before{width:110%;height:0;padding-bottom:110%;top:50%;right:50%;border-radius:50%;transform:translate3d(50%, -50%, 0) scale3d(0, 0, 1)}.bdt-ep-creative-button--bestia:hover .bdt-ep-creative-button__bg::before{transition:transform .4s cubic-bezier(.1, 0, .3, 1);transform:translate3d(50%, -50%, 0) scale3d(1, 1, 1)}.bdt-ep-creative-button--bestia .bdt-ep-creative-button__bg::after{top:0;right:0;width:100%;height:100%;opacity:0;transition:opacity .3s}.bdt-ep-creative-button--bestia:hover .bdt-ep-creative-button__bg::after{opacity:1;transition-duration:.01s;transition-delay:.3s}.bdt-ep-creative-button--bestia span{display:block;padding:1.5rem 3rem;z-index:1}.bdt-ep-creative-button--surtur{padding:0;background:none !important;-webkit-clip-path:circle(40% at 50% 50%);clip-path:circle(40% at 50% 50%)}.bdt-ep-creative-button--surtur:focus-visible{background:#443ffc}.bdt-ep-creative-button--surtur .textcircle{position:relative;display:block;width:200px}.bdt-ep-creative-button--surtur .textcircle *{fill:none !important}.bdt-ep-creative-button--surtur .textcircle text{font-size:32px;text-transform:uppercase;fill:#798184}.bdt-ep-creative-button--surtur .textcircle textPath{letter-spacing:17px}.bdt-ep-creative-button--surtur:hover .textcircle{animation:rotateIt 7s linear infinite}.bdt-ep-creative-button--surtur .eye{position:absolute;z-index:2;width:60px;height:60px;top:calc(50% - 30px);right:calc(50% - 30px)}.bdt-ep-creative-button--surtur .eye__outer,.bdt-ep-creative-button--surtur .eye__inner,.bdt-ep-creative-button--surtur .eye__lashes-up,.bdt-ep-creative-button--surtur .eye__lashes-down{stroke:#798184;fill:none;stroke-width:1.5px}.bdt-ep-creative-button--surtur .eye__lashes-down{opacity:0}.bdt-ep-creative-button--surtur:hover .eye__lashes-up,.bdt-ep-creative-button--surtur:hover .eye__inner,.bdt-ep-creative-button--surtur:hover .eye__iris{animation:blinkHide 2s step-end infinite}.bdt-ep-creative-button--surtur:hover .eye__lashes-down{animation:blinkShow 2s step-end infinite}@keyframes blinkHide{0%{opacity:0}10%{opacity:1}}@keyframes blinkShow{0%{opacity:1}10%{opacity:0}}.bdt-ep-creative-button--fenrir{background:none !important;padding:0;-webkit-clip-path:circle(50% at 50% 50%);clip-path:circle(50% at 50% 50%);width:120px;height:120px;font-weight:600;text-transform:uppercase;font-size:12px;color:#798184}.bdt-ep-creative-button--fenrir .progress{position:absolute;width:80px;height:80px;top:calc(50% - 40px);right:calc(50% - 40px);transition:transform .4s cubic-bezier(.7, 0, .3, 1)}.bdt-ep-creative-button--fenrir:hover .progress{transform:scale3d(1.2, 1.2, 1)}.bdt-ep-creative-button--fenrir .progress__circle,.bdt-ep-creative-button--fenrir .progress__path{fill:none;stroke:#f0f0f0;stroke-width:1px}.bdt-ep-creative-button--fenrir:focus-visible .progress__circle{fill:rgba(252,196,63,0.4)}.bdt-ep-creative-button--fenrir .progress__path{stroke:#a6a6a6;stroke-dasharray:1;stroke-dashoffset:1;transition:stroke-dashoffset .4s cubic-bezier(.7, 0, .3, 1)}.bdt-ep-creative-button--fenrir:hover .progress__path{stroke-dashoffset:0}.bdt-ep-creative-button--reklo{background:none !important;padding:0;font-size:16px;color:#0c0d0e;font-weight:500;gap:10px}.bdt-ep-creative-button--reklo i{background-color:#0c0d0e;border-radius:100%;box-sizing:border-box;transition:all .3s ease-out;text-indent:-100px;overflow:hidden;opacity:0;height:36px;line-height:36px;width:36px;transform:scale(.2) translateX(60px);-webkit-transform:scale(.2) translateX(60px);text-align:center}.bdt-ep-creative-button--reklo:hover i{color:#fff;text-indent:0px;opacity:1;transform:scale(1.2) translateX(0);-webkit-transform:scale(1.2) translateX(0)}.bdt-ep-creative-button--elon{background:none !important;border:none !important;border-radius:0 !important;padding:11px 16px;color:#4a4d5c;font-size:15px;z-index:1;outline:none;transition:all .3s ease}.bdt-ep-creative-button--elon:before{content:"";position:absolute;width:48px;right:0;top:0;background-color:#edf2f4;z-index:-1;transition:all .3s ease}.bdt-ep-creative-button--elon:hover:before{width:100% !important}.bdt-ep-creative-button--reveal{overflow:hidden;outline:none;transition:all .3s ease}.bdt-ep-creative-button--reveal:after{content:'';background:#1e87f0;position:absolute;transition:all .4s ease-in-out}.bdt-ep-creative-button--reveal:hover{color:#fff}.bdt-ep-creative-button--reveal:hover:after{left:auto;right:0;width:100% !important}.bdt-ep-creative-button--reveal:hover span{animation:scaleUp .3s ease-in-out}.bdt-ep-creative-button--reveal span{position:relative;z-index:1}.bdt-ep-reveal-direction-left .bdt-ep-creative-button--reveal:after{width:0%;height:100%;left:0;right:auto;top:0}.bdt-ep-reveal-direction-left .bdt-ep-creative-button--reveal:hover:after{left:auto;right:0;width:100% !important}.bdt-ep-reveal-direction-right .bdt-ep-creative-button--reveal:after{width:0%;height:100%;right:0;left:auto;top:0}.bdt-ep-reveal-direction-right .bdt-ep-creative-button--reveal:hover:after{right:auto;left:0;width:100% !important}.bdt-ep-reveal-direction-top .bdt-ep-creative-button--reveal:after{width:100%;height:0;right:0;top:0;bottom:auto}.bdt-ep-reveal-direction-top .bdt-ep-creative-button--reveal:hover:after{top:auto;bottom:0;height:100% !important}.bdt-ep-reveal-direction-bottom .bdt-ep-creative-button--reveal:after{width:100%;height:0;right:0;bottom:0;top:auto}.bdt-ep-reveal-direction-bottom .bdt-ep-creative-button--reveal:hover:after{bottom:auto;top:0;height:100% !important}@keyframes scaleUp{0%{transform:scale(1)}50%{transform:scale(.95)}100%{transform:scale(1)}}.bdt-ep-creative-button--glitch,.bdt-ep-creative-button--glitch::after{padding:16px 20px;font-size:18px;background:linear-gradient(-45deg, transparent 5%, #798184 5%);border:0;color:#fff;letter-spacing:3px;line-height:1;outline:transparent;position:relative}.bdt-ep-creative-button--glitch::after{--slice-0:inset(50% 50% 50% 50%);--slice-1:inset(80% -6px 0 0);--slice-2:inset(50% -6px 30% 0);--slice-3:inset(10% -6px 85% 0);--slice-4:inset(40% -6px 43% 0);--slice-5:inset(80% -6px 5% 0);content:"READMORE";display:block;position:absolute;top:0;right:0;left:0;bottom:0;text-shadow:2px -3px 0 #ffffff,-2px 3px 0 #08AEEC;clip-path:var(--slice-0)}.bdt-ep-creative-button--glitch:hover{color:#fff}.bdt-ep-creative-button--glitch:hover::after{animation:1s glitch;animation-timing-function:steps(2, end)}.elementor-widget-bdt-creative-button .bdt-ep-creative-button--glitch,.elementor-widget-bdt-creative-button .bdt-ep-creative-button--glitch::after{box-shadow:-6px 0 0 #08AEEC}@keyframes glitch{0%{clip-path:var(--slice-1);transform:translate(20px, -10px)}10%{clip-path:var(--slice-3);transform:translate(-10px, 10px)}20%{clip-path:var(--slice-1);transform:translate(10px, 10px)}30%{clip-path:var(--slice-3);transform:translate(0, 5px)}40%{clip-path:var(--slice-2);transform:translate(5px, 0)}50%{clip-path:var(--slice-3);transform:translate(-5px, 0)}60%{clip-path:var(--slice-4);transform:translate(-5px, 10px)}70%{clip-path:var(--slice-2);transform:translate(10px, 10px)}80%{clip-path:var(--slice-5);transform:translate(-20px, -10px)}90%{clip-path:var(--slice-1);transform:translate(10px, 0)}100%{clip-path:var(--slice-1);transform:translate(0)}}.bdt-ep-creative-button--gooey{color:#08AEEC;background:#fff;font-weight:500;text-transform:uppercase;letter-spacing:2px;border:2px solid #08AEEC;border-radius:0;transition:all 700ms ease;position:relative;z-index:1;overflow:hidden}.bdt-ep-creative-button--gooey .c-button__blobs{height:100%;filter:url(#goo);overflow:hidden;position:absolute;top:0;right:0;bottom:-3px;left:-1px;z-index:-1}.bdt-ep-creative-button--gooey .c-button__blobs div{background-color:#08AEEC;width:34%;height:100%;border-radius:100%;position:absolute;transform:scale(1.4) translateY(125%) translateZ(0);transition:all 700ms ease}.bdt-ep-creative-button--gooey .c-button__blobs div:nth-child(1){right:-5%}.bdt-ep-creative-button--gooey .c-button__blobs div:nth-child(2){right:30%;transition-delay:60ms}.bdt-ep-creative-button--gooey .c-button__blobs div:nth-child(3){right:66%;transition-delay:25ms}.bdt-ep-creative-button--gooey:hover{color:#fff}.bdt-ep-creative-button--gooey:hover .c-button__blobs div{transform:scale(1.4) translateY(0) translateZ(0) !important}.bdt-ep-creative-button--aura{font-size:clamp(12px, 1.2vw, 15px);font-weight:500;display:inline-flex;padding:clamp(12px, 3vw, 16px) clamp(18px, 6vw, 24px);color:#fff;position:relative;overflow:hidden;text-transform:uppercase;line-height:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:transparent !important}.bdt-ep-creative-button--aura:hover{color:#fff}.bdt-ep-creative-button--aura:has(.aura-icon){padding-left:clamp(14px, 4vw, 19.2px)}.bdt-ep-creative-button--aura:before{content:"";background:#0f131c;z-index:-1;position:absolute;top:0;right:0;width:100%;height:100%;clip-path:polygon(10px 0, 100% 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 100%, 0 10px);transition:clip-path 1s cubic-bezier(.19, 1, .22, 1)}.bdt-ep-creative-button--aura:hover:before{clip-path:polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 0)}.bdt-ep-creative-button--aura>span:nth-child(1),.bdt-ep-creative-button--aura>span:nth-child(2){pointer-events:none}.bdt-ep-creative-button--aura>span>span{display:flex;transition:transform 1s cubic-bezier(.17, .67, .1, .99)}.bdt-ep-creative-button--aura>span>span span{z-index:1}.bdt-ep-creative-button--aura>span:nth-child(2){display:flex;align-items:center}.bdt-ep-creative-button--aura>span>span .aura-icon:first-child{position:absolute;transform:translate(3px, 1px);transition:transform 1s cubic-bezier(.17, .67, .1, .99)}.bdt-ep-creative-button--aura>span>span .aura-icon:last-child{transition:transform 1s cubic-bezier(.17, .67, .1, .99)}.bdt-ep-creative-button--aura .aura-icon{display:inline-block;width:clamp(12px, 2vw, 16px);flex-shrink:0;fill:none;font-size:0;stroke:currentcolor;stroke-width:clamp(1px, .3vw, 1.4px);vertical-align:middle}.bdt-ep-creative-button--aura>span:nth-child(1):before,.bdt-ep-creative-button--aura>span:nth-child(1):after,.bdt-ep-creative-button--aura>span:nth-child(2):before,.bdt-ep-creative-button--aura>span:nth-child(2):after{content:"";width:2px;height:10px;background:currentColor;z-index:1;position:absolute;transform-origin:50% 50%;transition:transform 1s cubic-bezier(.19, 1, .22, 1),opacity 1s cubic-bezier(.19, 1, .22, 1)}.bdt-ep-creative-button--aura>span:nth-child(1):before{top:10px;right:10px;transform:translate(50%, -50%) rotate(-45deg)}.bdt-ep-creative-button--aura>span:nth-child(1):after{top:calc(100% - 10px);right:calc(100% - 10px);transform:translate(50%, -50%) rotate(-45deg)}.bdt-ep-creative-button--aura>span:nth-child(2):before{top:10px;right:calc(100% - 10px);transform:translate(calc(-1*(-50% - 20px)), calc(-50% - 20px)) rotate(45deg);opacity:0}.bdt-ep-creative-button--aura>span:nth-child(2):after{top:calc(100% - 10px);right:10px;transform:translate(calc(-1*(-50% + 20px)), calc(-50% + 20px)) rotate(45deg);opacity:0}.bdt-ep-creative-button--aura:hover>span:nth-child(2)>span{transform:translate(-14.4px)}.bdt-ep-creative-button--aura:hover>span:nth-child(2)>span .aura-icon:first-child{transform:translate(16px)}.bdt-ep-creative-button--aura:hover>span:nth-child(2)>span .aura-icon:last-child{transform:translate(14px)}.bdt-ep-creative-button--aura:hover>span:nth-child(1):before{transform:translate(calc(-1*(-50% + 20px)), calc(-50% - 20px)) rotate(-45deg);opacity:0}.bdt-ep-creative-button--aura:hover>span:nth-child(1):after{transform:translate(calc(-1*(-50% - 20px)), calc(-50% + 20px)) rotate(-45deg);opacity:0}.bdt-ep-creative-button--aura:hover>span:nth-child(2):before{transform:translate(50%, -50%) rotate(45deg);opacity:1}.bdt-ep-creative-button--aura:hover>span:nth-child(2):after{transform:translate(50%, -50%) rotate(45deg);opacity:1}.bdt-ep-creative-button--aura .aura-icon-left{opacity:0}.bdt-ep-creative-button--aura .aura-icon-right{opacity:1}.bdt-ep-creative-button--aura:hover .aura-icon-left{opacity:1}.bdt-ep-creative-button--aura:hover .aura-icon-right{opacity:0}/*! elementor-pro - v3.28.0 - 16-04-2025 */ "use strict";(self.webpackChunkelementor_pro=self.webpackChunkelementor_pro||[]).push([[33],{1195:(e,t,s)=>{var i=s(6784);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(s(5012));class NestedCarousel extends elementorModules.frontend.handlers.CarouselBase{getDefaultSettings(){const e=super.getDefaultSettings();return e.selectors.carousel=".e-n-carousel",e.selectors.slidesWrapper=".e-n-carousel > .swiper-wrapper",e}getSwiperSettings(){const e=super.getSwiperSettings(),t=this.getElementSettings(),s=elementorFrontend.config.is_rtl,i=`.elementor-element-${this.getID()}`;return elementorFrontend.isEditMode()&&(delete e.autoplay,e.loop=!1,e.noSwipingSelector=".swiper-slide > .e-con .elementor-element"),"yes"===t.arrows&&(e.navigation={prevEl:s?`${i} .elementor-swiper-button-next`:`${i} .elementor-swiper-button-prev`,nextEl:s?`${i} .elementor-swiper-button-prev`:`${i} .elementor-swiper-button-next`}),this.applySwipeOptions(e),e}async onInit(){this.wrapSlideContent(),super.onInit(...arguments),this.ranElementHandlers=!1}async initSwiper(){const e=elementorFrontend.utils.swiper;this.swiper=await new e(this.elements.$swiperContainer,this.getSwiperSettings()),this.elements.$swiperContainer.data("swiper",this.swiper)}handleElementHandlers(){if(this.ranElementHandlers||!this.swiper)return;const e=Array.from(this.swiper.slides).filter((e=>e.classList.contains(this.swiper.params.slideDuplicateClass)));(0,n.default)(e),this.ranElementHandlers=!0}wrapSlideContent(){if(!elementorFrontend.isEditMode())return;const e=this.getSettings(),t=e.selectors.slideContent.replace(".",""),s=this.$element;let i=1;this.findElement(`${e.selectors.slidesWrapper} > .e-con`).each((function(){const n=jQuery(this),r=n.closest("div").hasClass(t),o=s.find(`${e.selectors.slidesWrapper} > .${t}:nth-child(${i})`);r||o.append(n),i++}))}togglePauseOnHover(e){elementorFrontend.isEditMode()||super.togglePauseOnHover(e)}getChangeableProperties(){return{arrows_position:"arrows_position"}}applySwipeOptions(e){this.isTouchDevice()?(e.touchRatio=1,e.longSwipesRatio=.3,e.followFinger=!0,e.threshold=10):e.shortSwipes=!1}isTouchDevice(){return elementorFrontend.utils.environment.isTouchDevice}async linkContainer(e){const{container:t,index:s,targetContainer:i,action:{type:n}}=e.detail,r=t.view.$el;if(t.model.get("id")===this.$element.data("id")){const{$slides:e}=this.getDefaultElements();let t,o;switch(n){case"move":[t,o]=this.move(r,s,i,e);break;case"duplicate":[t,o]=this.duplicate(r,s,i,e)}void 0!==t&&t.appendChild(o),this.shouldHideNavButtons(r,e),this.updateIndexValues(e);const l=this.swiper&&!this.swiper.destroyed,a=e.length>1;!l&&a?await this.initSwiper():l&&!a&&this.swiper.destroy(!0),this.updateListeners()}}updateListeners(){this.swiper.initialized=!1,this.swiper.init()}move(e,t,s,i){return[i[t],s.view.$el[0]]}duplicate(e,t,s,i){return[i[t+1],s.view.$el[0]]}updateIndexValues(e){e.each(((e,t)=>{const s=e+1;t.setAttribute("data-slide",s)}))}bindEvents(){super.bindEvents(),elementorFrontend.elements.$window.on("elementor/nested-container/atomic-repeater",this.linkContainer.bind(this))}shouldHideNavButtons(e,t){const s=e[0].querySelectorAll(".elementor-swiper-button"),i=1===t.length,n=s[0]?.classList.contains("hide");i!==n&&s.forEach((e=>{e.classList.toggle("hide",i)}))}}t.default=NestedCarousel}}]);{ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "woocommerce/product-notice-field", "title": "Product notice field", "category": "woocommerce", "description": "A notice field for use in the product editor.", "keywords": ["products", "notice"], "textdomain": "default", "attributes": { "message": { "type": "string", "role": "content" } }, "supports": { "align": false, "html": false, "multiple": true, "reusable": false, "inserter": false, "lock": false, "__experimentalToolbar": false }, "usesContext": ["postType"] } Generated by IcoMoon Turbo Boost YQR