@getlupa/client 1.15.7 → 1.15.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lupaSearch.iife.js +25 -16
- package/dist/lupaSearch.js +25 -16
- package/dist/lupaSearch.mjs +25 -16
- package/dist/lupaSearch.umd.js +25 -16
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/lupaSearch.iife.js
CHANGED
|
@@ -7287,7 +7287,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
7287
7287
|
details: "/{id}"
|
|
7288
7288
|
},
|
|
7289
7289
|
elements: [],
|
|
7290
|
-
breadcrumbs: [
|
|
7290
|
+
breadcrumbs: []
|
|
7291
7291
|
};
|
|
7292
7292
|
const useScreenStore = defineStore("screen", () => {
|
|
7293
7293
|
const measuredScreenWidth = ref(1e3);
|
|
@@ -8817,7 +8817,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
8817
8817
|
__name: "SearchBoxMoreResults",
|
|
8818
8818
|
props: {
|
|
8819
8819
|
labels: {},
|
|
8820
|
-
|
|
8820
|
+
options: {}
|
|
8821
8821
|
},
|
|
8822
8822
|
emits: ["go-to-results"],
|
|
8823
8823
|
setup(__props, { emit: emit2 }) {
|
|
@@ -8825,23 +8825,28 @@ var __async = (__this, __arguments, generator) => {
|
|
|
8825
8825
|
const searchBoxStore = useSearchBoxStore();
|
|
8826
8826
|
const { docResults, options } = storeToRefs(searchBoxStore);
|
|
8827
8827
|
const totalCount = computed(() => {
|
|
8828
|
-
var _a, _b, _c;
|
|
8829
|
-
if (!props.showTotalCount) {
|
|
8828
|
+
var _a, _b, _c, _d;
|
|
8829
|
+
if (!((_a = props.options) == null ? void 0 : _a.showTotalCount)) {
|
|
8830
8830
|
return "";
|
|
8831
8831
|
}
|
|
8832
|
-
const queryKey = (
|
|
8833
|
-
const total = queryKey ? (
|
|
8832
|
+
const queryKey = (_c = (_b = options.value) == null ? void 0 : _b.panels.find((x2) => x2.type === "document")) == null ? void 0 : _c.queryKey;
|
|
8833
|
+
const total = queryKey ? (_d = docResults.value[queryKey]) == null ? void 0 : _d.total : "";
|
|
8834
8834
|
return total ? `(${total})` : "";
|
|
8835
8835
|
});
|
|
8836
|
+
const showMoreResultsButton = computed(() => {
|
|
8837
|
+
var _a;
|
|
8838
|
+
return (_a = props.options.showMoreResultsButton) != null ? _a : true;
|
|
8839
|
+
});
|
|
8836
8840
|
const handleClick = () => {
|
|
8837
8841
|
emit2("go-to-results");
|
|
8838
8842
|
};
|
|
8839
8843
|
return (_ctx, _cache) => {
|
|
8840
|
-
return openBlock(), createElementBlock("a", {
|
|
8844
|
+
return showMoreResultsButton.value ? (openBlock(), createElementBlock("a", {
|
|
8845
|
+
key: 0,
|
|
8841
8846
|
class: "lupa-more-results",
|
|
8842
8847
|
"data-cy": "lupa-more-results",
|
|
8843
8848
|
onClick: handleClick
|
|
8844
|
-
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1);
|
|
8849
|
+
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1)) : createCommentVNode("", true);
|
|
8845
8850
|
};
|
|
8846
8851
|
}
|
|
8847
8852
|
});
|
|
@@ -20047,7 +20052,6 @@ and ensure you are accounting for this risk.
|
|
|
20047
20052
|
return resultCountFromRelatedPanel < 1;
|
|
20048
20053
|
};
|
|
20049
20054
|
return (_ctx, _cache) => {
|
|
20050
|
-
var _a;
|
|
20051
20055
|
return openBlock(), createElementBlock("div", {
|
|
20052
20056
|
ref_key: "panelContainer",
|
|
20053
20057
|
ref: panelContainer
|
|
@@ -20064,7 +20068,7 @@ and ensure you are accounting for this risk.
|
|
|
20064
20068
|
"data-cy": "lupa-main-panel"
|
|
20065
20069
|
}, [
|
|
20066
20070
|
(openBlock(true), createElementBlock(Fragment, null, renderList(displayPanels.value, (panel, index) => {
|
|
20067
|
-
var
|
|
20071
|
+
var _a, _b, _c, _d;
|
|
20068
20072
|
return openBlock(), createElementBlock("div", {
|
|
20069
20073
|
key: index,
|
|
20070
20074
|
class: normalizeClass([
|
|
@@ -20074,7 +20078,7 @@ and ensure you are accounting for this risk.
|
|
|
20074
20078
|
style: normalizeStyle(panel.gridArea ? { gridArea: `${panel.gridArea}${index}` } : {}),
|
|
20075
20079
|
"data-cy": "lupa-panel-" + panel.type + "-index"
|
|
20076
20080
|
}, [
|
|
20077
|
-
((
|
|
20081
|
+
((_a = panel.labels) == null ? void 0 : _a.topResultsTitle) && showTopResultsPanelTitle(panel.queryKey) ? (openBlock(), createElementBlock("div", _hoisted_3$y, toDisplayString((_b = panel.labels) == null ? void 0 : _b.topResultsTitle), 1)) : createCommentVNode("", true),
|
|
20078
20082
|
((_c = panel.labels) == null ? void 0 : _c.title) && showPanelTitle(panel) ? (openBlock(), createElementBlock("div", _hoisted_4$p, toDisplayString((_d = panel.labels) == null ? void 0 : _d.title), 1)) : createCommentVNode("", true),
|
|
20079
20083
|
panel.queryKey && canShowPanel(panel) ? (openBlock(), createBlock(resolveDynamicComponent(getComponent(panel.type)), {
|
|
20080
20084
|
key: 2,
|
|
@@ -20107,9 +20111,9 @@ and ensure you are accounting for this risk.
|
|
|
20107
20111
|
unref(hasAnyResults) || !_ctx.options.hideMoreResultsButtonOnNoResults ? (openBlock(), createBlock(_sfc_main$1s, {
|
|
20108
20112
|
key: 2,
|
|
20109
20113
|
labels: labels.value,
|
|
20110
|
-
|
|
20114
|
+
options: _ctx.options,
|
|
20111
20115
|
onGoToResults: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("go-to-results"))
|
|
20112
|
-
}, null, 8, ["labels", "
|
|
20116
|
+
}, null, 8, ["labels", "options"])) : createCommentVNode("", true)
|
|
20113
20117
|
])) : displayHistory.value ? (openBlock(), createElementBlock("div", _hoisted_5$g, [
|
|
20114
20118
|
createVNode(_sfc_main$1q, {
|
|
20115
20119
|
options: _ctx.options.history,
|
|
@@ -20188,7 +20192,8 @@ and ensure you are accounting for this risk.
|
|
|
20188
20192
|
"showTotalCount",
|
|
20189
20193
|
"hideMoreResultsButtonOnNoResults",
|
|
20190
20194
|
"showNoResultsPanel",
|
|
20191
|
-
"expandOnSinglePanel"
|
|
20195
|
+
"expandOnSinglePanel",
|
|
20196
|
+
"showMoreResultsButton"
|
|
20192
20197
|
])
|
|
20193
20198
|
);
|
|
20194
20199
|
const searchTriggers = computed(() => {
|
|
@@ -20661,11 +20666,15 @@ and ensure you are accounting for this risk.
|
|
|
20661
20666
|
var _a, _b;
|
|
20662
20667
|
return (_b = (_a = props.options.labels) == null ? void 0 : _a.searchResultsCount) != null ? _b : "";
|
|
20663
20668
|
});
|
|
20669
|
+
const searchResultsTitleTemplate = computed(() => {
|
|
20670
|
+
var _a, _b, _c, _d, _e;
|
|
20671
|
+
return ((_c = (_b = (_a = props.options) == null ? void 0 : _a.labels) == null ? void 0 : _b.searchResults) == null ? void 0 : _c.includes("{")) ? addParamsToLabel((_e = (_d = props.options) == null ? void 0 : _d.labels) == null ? void 0 : _e.searchResults, queryText.value) : ``;
|
|
20672
|
+
});
|
|
20664
20673
|
return (_ctx, _cache) => {
|
|
20665
20674
|
return openBlock(), createElementBlock("div", null, [
|
|
20666
20675
|
showSearchTitle.value ? (openBlock(), createElementBlock("h1", _hoisted_1$S, [
|
|
20667
|
-
createTextVNode(toDisplayString(_ctx.options.labels.searchResults), 1),
|
|
20668
|
-
queryText.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20676
|
+
createTextVNode(toDisplayString(searchResultsTitleTemplate.value || _ctx.options.labels.searchResults), 1),
|
|
20677
|
+
queryText.value && !searchResultsTitleTemplate.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20669
20678
|
showProductCount.value ? (openBlock(), createElementBlock("span", _hoisted_3$w, [
|
|
20670
20679
|
createTextVNode("(" + toDisplayString(searchResultsCountLabel.value), 1),
|
|
20671
20680
|
createBaseVNode("span", _hoisted_4$n, toDisplayString(unref(totalItems)), 1),
|
package/dist/lupaSearch.js
CHANGED
|
@@ -7287,7 +7287,7 @@ const DEFAULT_OPTIONS_RESULTS$1 = {
|
|
|
7287
7287
|
details: "/{id}"
|
|
7288
7288
|
},
|
|
7289
7289
|
elements: [],
|
|
7290
|
-
breadcrumbs: [
|
|
7290
|
+
breadcrumbs: []
|
|
7291
7291
|
};
|
|
7292
7292
|
const useScreenStore = defineStore("screen", () => {
|
|
7293
7293
|
const measuredScreenWidth = ref(1e3);
|
|
@@ -8817,7 +8817,7 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
8817
8817
|
__name: "SearchBoxMoreResults",
|
|
8818
8818
|
props: {
|
|
8819
8819
|
labels: {},
|
|
8820
|
-
|
|
8820
|
+
options: {}
|
|
8821
8821
|
},
|
|
8822
8822
|
emits: ["go-to-results"],
|
|
8823
8823
|
setup(__props, { emit: emit2 }) {
|
|
@@ -8825,23 +8825,28 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
8825
8825
|
const searchBoxStore = useSearchBoxStore();
|
|
8826
8826
|
const { docResults, options } = storeToRefs(searchBoxStore);
|
|
8827
8827
|
const totalCount = computed(() => {
|
|
8828
|
-
var _a, _b, _c;
|
|
8829
|
-
if (!props.showTotalCount) {
|
|
8828
|
+
var _a, _b, _c, _d;
|
|
8829
|
+
if (!((_a = props.options) == null ? void 0 : _a.showTotalCount)) {
|
|
8830
8830
|
return "";
|
|
8831
8831
|
}
|
|
8832
|
-
const queryKey = (
|
|
8833
|
-
const total = queryKey ? (
|
|
8832
|
+
const queryKey = (_c = (_b = options.value) == null ? void 0 : _b.panels.find((x2) => x2.type === "document")) == null ? void 0 : _c.queryKey;
|
|
8833
|
+
const total = queryKey ? (_d = docResults.value[queryKey]) == null ? void 0 : _d.total : "";
|
|
8834
8834
|
return total ? `(${total})` : "";
|
|
8835
8835
|
});
|
|
8836
|
+
const showMoreResultsButton = computed(() => {
|
|
8837
|
+
var _a;
|
|
8838
|
+
return (_a = props.options.showMoreResultsButton) != null ? _a : true;
|
|
8839
|
+
});
|
|
8836
8840
|
const handleClick = () => {
|
|
8837
8841
|
emit2("go-to-results");
|
|
8838
8842
|
};
|
|
8839
8843
|
return (_ctx, _cache) => {
|
|
8840
|
-
return openBlock(), createElementBlock("a", {
|
|
8844
|
+
return showMoreResultsButton.value ? (openBlock(), createElementBlock("a", {
|
|
8845
|
+
key: 0,
|
|
8841
8846
|
class: "lupa-more-results",
|
|
8842
8847
|
"data-cy": "lupa-more-results",
|
|
8843
8848
|
onClick: handleClick
|
|
8844
|
-
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1);
|
|
8849
|
+
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1)) : createCommentVNode("", true);
|
|
8845
8850
|
};
|
|
8846
8851
|
}
|
|
8847
8852
|
});
|
|
@@ -20047,7 +20052,6 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20047
20052
|
return resultCountFromRelatedPanel < 1;
|
|
20048
20053
|
};
|
|
20049
20054
|
return (_ctx, _cache) => {
|
|
20050
|
-
var _a;
|
|
20051
20055
|
return openBlock(), createElementBlock("div", {
|
|
20052
20056
|
ref_key: "panelContainer",
|
|
20053
20057
|
ref: panelContainer
|
|
@@ -20064,7 +20068,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20064
20068
|
"data-cy": "lupa-main-panel"
|
|
20065
20069
|
}, [
|
|
20066
20070
|
(openBlock(true), createElementBlock(Fragment, null, renderList(displayPanels.value, (panel, index) => {
|
|
20067
|
-
var
|
|
20071
|
+
var _a, _b, _c, _d;
|
|
20068
20072
|
return openBlock(), createElementBlock("div", {
|
|
20069
20073
|
key: index,
|
|
20070
20074
|
class: normalizeClass([
|
|
@@ -20074,7 +20078,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20074
20078
|
style: normalizeStyle(panel.gridArea ? { gridArea: `${panel.gridArea}${index}` } : {}),
|
|
20075
20079
|
"data-cy": "lupa-panel-" + panel.type + "-index"
|
|
20076
20080
|
}, [
|
|
20077
|
-
((
|
|
20081
|
+
((_a = panel.labels) == null ? void 0 : _a.topResultsTitle) && showTopResultsPanelTitle(panel.queryKey) ? (openBlock(), createElementBlock("div", _hoisted_3$y, toDisplayString((_b = panel.labels) == null ? void 0 : _b.topResultsTitle), 1)) : createCommentVNode("", true),
|
|
20078
20082
|
((_c = panel.labels) == null ? void 0 : _c.title) && showPanelTitle(panel) ? (openBlock(), createElementBlock("div", _hoisted_4$p, toDisplayString((_d = panel.labels) == null ? void 0 : _d.title), 1)) : createCommentVNode("", true),
|
|
20079
20083
|
panel.queryKey && canShowPanel(panel) ? (openBlock(), createBlock(resolveDynamicComponent(getComponent(panel.type)), {
|
|
20080
20084
|
key: 2,
|
|
@@ -20107,9 +20111,9 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20107
20111
|
unref(hasAnyResults) || !_ctx.options.hideMoreResultsButtonOnNoResults ? (openBlock(), createBlock(_sfc_main$1s, {
|
|
20108
20112
|
key: 2,
|
|
20109
20113
|
labels: labels.value,
|
|
20110
|
-
|
|
20114
|
+
options: _ctx.options,
|
|
20111
20115
|
onGoToResults: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("go-to-results"))
|
|
20112
|
-
}, null, 8, ["labels", "
|
|
20116
|
+
}, null, 8, ["labels", "options"])) : createCommentVNode("", true)
|
|
20113
20117
|
])) : displayHistory.value ? (openBlock(), createElementBlock("div", _hoisted_5$g, [
|
|
20114
20118
|
createVNode(_sfc_main$1q, {
|
|
20115
20119
|
options: _ctx.options.history,
|
|
@@ -20188,7 +20192,8 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
20188
20192
|
"showTotalCount",
|
|
20189
20193
|
"hideMoreResultsButtonOnNoResults",
|
|
20190
20194
|
"showNoResultsPanel",
|
|
20191
|
-
"expandOnSinglePanel"
|
|
20195
|
+
"expandOnSinglePanel",
|
|
20196
|
+
"showMoreResultsButton"
|
|
20192
20197
|
])
|
|
20193
20198
|
);
|
|
20194
20199
|
const searchTriggers = computed(() => {
|
|
@@ -20661,11 +20666,15 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
|
20661
20666
|
var _a, _b;
|
|
20662
20667
|
return (_b = (_a = props.options.labels) == null ? void 0 : _a.searchResultsCount) != null ? _b : "";
|
|
20663
20668
|
});
|
|
20669
|
+
const searchResultsTitleTemplate = computed(() => {
|
|
20670
|
+
var _a, _b, _c, _d, _e;
|
|
20671
|
+
return ((_c = (_b = (_a = props.options) == null ? void 0 : _a.labels) == null ? void 0 : _b.searchResults) == null ? void 0 : _c.includes("{")) ? addParamsToLabel((_e = (_d = props.options) == null ? void 0 : _d.labels) == null ? void 0 : _e.searchResults, queryText.value) : ``;
|
|
20672
|
+
});
|
|
20664
20673
|
return (_ctx, _cache) => {
|
|
20665
20674
|
return openBlock(), createElementBlock("div", null, [
|
|
20666
20675
|
showSearchTitle.value ? (openBlock(), createElementBlock("h1", _hoisted_1$S, [
|
|
20667
|
-
createTextVNode(toDisplayString(_ctx.options.labels.searchResults), 1),
|
|
20668
|
-
queryText.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20676
|
+
createTextVNode(toDisplayString(searchResultsTitleTemplate.value || _ctx.options.labels.searchResults), 1),
|
|
20677
|
+
queryText.value && !searchResultsTitleTemplate.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20669
20678
|
showProductCount.value ? (openBlock(), createElementBlock("span", _hoisted_3$w, [
|
|
20670
20679
|
createTextVNode("(" + toDisplayString(searchResultsCountLabel.value), 1),
|
|
20671
20680
|
createBaseVNode("span", _hoisted_4$n, toDisplayString(unref(totalItems)), 1),
|
package/dist/lupaSearch.mjs
CHANGED
|
@@ -7285,7 +7285,7 @@ const DEFAULT_OPTIONS_RESULTS$1 = {
|
|
|
7285
7285
|
details: "/{id}"
|
|
7286
7286
|
},
|
|
7287
7287
|
elements: [],
|
|
7288
|
-
breadcrumbs: [
|
|
7288
|
+
breadcrumbs: []
|
|
7289
7289
|
};
|
|
7290
7290
|
const useScreenStore = defineStore("screen", () => {
|
|
7291
7291
|
const measuredScreenWidth = ref(1e3);
|
|
@@ -8815,7 +8815,7 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
8815
8815
|
__name: "SearchBoxMoreResults",
|
|
8816
8816
|
props: {
|
|
8817
8817
|
labels: {},
|
|
8818
|
-
|
|
8818
|
+
options: {}
|
|
8819
8819
|
},
|
|
8820
8820
|
emits: ["go-to-results"],
|
|
8821
8821
|
setup(__props, { emit: emit2 }) {
|
|
@@ -8823,23 +8823,28 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
8823
8823
|
const searchBoxStore = useSearchBoxStore();
|
|
8824
8824
|
const { docResults, options } = storeToRefs(searchBoxStore);
|
|
8825
8825
|
const totalCount = computed(() => {
|
|
8826
|
-
var _a, _b, _c;
|
|
8827
|
-
if (!props.showTotalCount) {
|
|
8826
|
+
var _a, _b, _c, _d;
|
|
8827
|
+
if (!((_a = props.options) == null ? void 0 : _a.showTotalCount)) {
|
|
8828
8828
|
return "";
|
|
8829
8829
|
}
|
|
8830
|
-
const queryKey = (
|
|
8831
|
-
const total = queryKey ? (
|
|
8830
|
+
const queryKey = (_c = (_b = options.value) == null ? void 0 : _b.panels.find((x2) => x2.type === "document")) == null ? void 0 : _c.queryKey;
|
|
8831
|
+
const total = queryKey ? (_d = docResults.value[queryKey]) == null ? void 0 : _d.total : "";
|
|
8832
8832
|
return total ? `(${total})` : "";
|
|
8833
8833
|
});
|
|
8834
|
+
const showMoreResultsButton = computed(() => {
|
|
8835
|
+
var _a;
|
|
8836
|
+
return (_a = props.options.showMoreResultsButton) != null ? _a : true;
|
|
8837
|
+
});
|
|
8834
8838
|
const handleClick = () => {
|
|
8835
8839
|
emit2("go-to-results");
|
|
8836
8840
|
};
|
|
8837
8841
|
return (_ctx, _cache) => {
|
|
8838
|
-
return openBlock(), createElementBlock("a", {
|
|
8842
|
+
return showMoreResultsButton.value ? (openBlock(), createElementBlock("a", {
|
|
8843
|
+
key: 0,
|
|
8839
8844
|
class: "lupa-more-results",
|
|
8840
8845
|
"data-cy": "lupa-more-results",
|
|
8841
8846
|
onClick: handleClick
|
|
8842
|
-
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1);
|
|
8847
|
+
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1)) : createCommentVNode("", true);
|
|
8843
8848
|
};
|
|
8844
8849
|
}
|
|
8845
8850
|
});
|
|
@@ -20045,7 +20050,6 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20045
20050
|
return resultCountFromRelatedPanel < 1;
|
|
20046
20051
|
};
|
|
20047
20052
|
return (_ctx, _cache) => {
|
|
20048
|
-
var _a;
|
|
20049
20053
|
return openBlock(), createElementBlock("div", {
|
|
20050
20054
|
ref_key: "panelContainer",
|
|
20051
20055
|
ref: panelContainer
|
|
@@ -20062,7 +20066,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20062
20066
|
"data-cy": "lupa-main-panel"
|
|
20063
20067
|
}, [
|
|
20064
20068
|
(openBlock(true), createElementBlock(Fragment, null, renderList(displayPanels.value, (panel, index) => {
|
|
20065
|
-
var
|
|
20069
|
+
var _a, _b, _c, _d;
|
|
20066
20070
|
return openBlock(), createElementBlock("div", {
|
|
20067
20071
|
key: index,
|
|
20068
20072
|
class: normalizeClass([
|
|
@@ -20072,7 +20076,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20072
20076
|
style: normalizeStyle(panel.gridArea ? { gridArea: `${panel.gridArea}${index}` } : {}),
|
|
20073
20077
|
"data-cy": "lupa-panel-" + panel.type + "-index"
|
|
20074
20078
|
}, [
|
|
20075
|
-
((
|
|
20079
|
+
((_a = panel.labels) == null ? void 0 : _a.topResultsTitle) && showTopResultsPanelTitle(panel.queryKey) ? (openBlock(), createElementBlock("div", _hoisted_3$y, toDisplayString((_b = panel.labels) == null ? void 0 : _b.topResultsTitle), 1)) : createCommentVNode("", true),
|
|
20076
20080
|
((_c = panel.labels) == null ? void 0 : _c.title) && showPanelTitle(panel) ? (openBlock(), createElementBlock("div", _hoisted_4$p, toDisplayString((_d = panel.labels) == null ? void 0 : _d.title), 1)) : createCommentVNode("", true),
|
|
20077
20081
|
panel.queryKey && canShowPanel(panel) ? (openBlock(), createBlock(resolveDynamicComponent(getComponent(panel.type)), {
|
|
20078
20082
|
key: 2,
|
|
@@ -20105,9 +20109,9 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent(__spreadProps2(__spreadValue
|
|
|
20105
20109
|
unref(hasAnyResults) || !_ctx.options.hideMoreResultsButtonOnNoResults ? (openBlock(), createBlock(_sfc_main$1s, {
|
|
20106
20110
|
key: 2,
|
|
20107
20111
|
labels: labels.value,
|
|
20108
|
-
|
|
20112
|
+
options: _ctx.options,
|
|
20109
20113
|
onGoToResults: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("go-to-results"))
|
|
20110
|
-
}, null, 8, ["labels", "
|
|
20114
|
+
}, null, 8, ["labels", "options"])) : createCommentVNode("", true)
|
|
20111
20115
|
])) : displayHistory.value ? (openBlock(), createElementBlock("div", _hoisted_5$g, [
|
|
20112
20116
|
createVNode(_sfc_main$1q, {
|
|
20113
20117
|
options: _ctx.options.history,
|
|
@@ -20186,7 +20190,8 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
20186
20190
|
"showTotalCount",
|
|
20187
20191
|
"hideMoreResultsButtonOnNoResults",
|
|
20188
20192
|
"showNoResultsPanel",
|
|
20189
|
-
"expandOnSinglePanel"
|
|
20193
|
+
"expandOnSinglePanel",
|
|
20194
|
+
"showMoreResultsButton"
|
|
20190
20195
|
])
|
|
20191
20196
|
);
|
|
20192
20197
|
const searchTriggers = computed(() => {
|
|
@@ -20659,11 +20664,15 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
|
20659
20664
|
var _a, _b;
|
|
20660
20665
|
return (_b = (_a = props.options.labels) == null ? void 0 : _a.searchResultsCount) != null ? _b : "";
|
|
20661
20666
|
});
|
|
20667
|
+
const searchResultsTitleTemplate = computed(() => {
|
|
20668
|
+
var _a, _b, _c, _d, _e;
|
|
20669
|
+
return ((_c = (_b = (_a = props.options) == null ? void 0 : _a.labels) == null ? void 0 : _b.searchResults) == null ? void 0 : _c.includes("{")) ? addParamsToLabel((_e = (_d = props.options) == null ? void 0 : _d.labels) == null ? void 0 : _e.searchResults, queryText.value) : ``;
|
|
20670
|
+
});
|
|
20662
20671
|
return (_ctx, _cache) => {
|
|
20663
20672
|
return openBlock(), createElementBlock("div", null, [
|
|
20664
20673
|
showSearchTitle.value ? (openBlock(), createElementBlock("h1", _hoisted_1$S, [
|
|
20665
|
-
createTextVNode(toDisplayString(_ctx.options.labels.searchResults), 1),
|
|
20666
|
-
queryText.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20674
|
+
createTextVNode(toDisplayString(searchResultsTitleTemplate.value || _ctx.options.labels.searchResults), 1),
|
|
20675
|
+
queryText.value && !searchResultsTitleTemplate.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20667
20676
|
showProductCount.value ? (openBlock(), createElementBlock("span", _hoisted_3$w, [
|
|
20668
20677
|
createTextVNode("(" + toDisplayString(searchResultsCountLabel.value), 1),
|
|
20669
20678
|
createBaseVNode("span", _hoisted_4$n, toDisplayString(unref(totalItems)), 1),
|
package/dist/lupaSearch.umd.js
CHANGED
|
@@ -7289,7 +7289,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
7289
7289
|
details: "/{id}"
|
|
7290
7290
|
},
|
|
7291
7291
|
elements: [],
|
|
7292
|
-
breadcrumbs: [
|
|
7292
|
+
breadcrumbs: []
|
|
7293
7293
|
};
|
|
7294
7294
|
const useScreenStore = defineStore("screen", () => {
|
|
7295
7295
|
const measuredScreenWidth = ref(1e3);
|
|
@@ -8819,7 +8819,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
8819
8819
|
__name: "SearchBoxMoreResults",
|
|
8820
8820
|
props: {
|
|
8821
8821
|
labels: {},
|
|
8822
|
-
|
|
8822
|
+
options: {}
|
|
8823
8823
|
},
|
|
8824
8824
|
emits: ["go-to-results"],
|
|
8825
8825
|
setup(__props, { emit: emit2 }) {
|
|
@@ -8827,23 +8827,28 @@ var __async = (__this, __arguments, generator) => {
|
|
|
8827
8827
|
const searchBoxStore = useSearchBoxStore();
|
|
8828
8828
|
const { docResults, options } = storeToRefs(searchBoxStore);
|
|
8829
8829
|
const totalCount = computed(() => {
|
|
8830
|
-
var _a, _b, _c;
|
|
8831
|
-
if (!props.showTotalCount) {
|
|
8830
|
+
var _a, _b, _c, _d;
|
|
8831
|
+
if (!((_a = props.options) == null ? void 0 : _a.showTotalCount)) {
|
|
8832
8832
|
return "";
|
|
8833
8833
|
}
|
|
8834
|
-
const queryKey = (
|
|
8835
|
-
const total = queryKey ? (
|
|
8834
|
+
const queryKey = (_c = (_b = options.value) == null ? void 0 : _b.panels.find((x2) => x2.type === "document")) == null ? void 0 : _c.queryKey;
|
|
8835
|
+
const total = queryKey ? (_d = docResults.value[queryKey]) == null ? void 0 : _d.total : "";
|
|
8836
8836
|
return total ? `(${total})` : "";
|
|
8837
8837
|
});
|
|
8838
|
+
const showMoreResultsButton = computed(() => {
|
|
8839
|
+
var _a;
|
|
8840
|
+
return (_a = props.options.showMoreResultsButton) != null ? _a : true;
|
|
8841
|
+
});
|
|
8838
8842
|
const handleClick = () => {
|
|
8839
8843
|
emit2("go-to-results");
|
|
8840
8844
|
};
|
|
8841
8845
|
return (_ctx, _cache) => {
|
|
8842
|
-
return openBlock(), createElementBlock("a", {
|
|
8846
|
+
return showMoreResultsButton.value ? (openBlock(), createElementBlock("a", {
|
|
8847
|
+
key: 0,
|
|
8843
8848
|
class: "lupa-more-results",
|
|
8844
8849
|
"data-cy": "lupa-more-results",
|
|
8845
8850
|
onClick: handleClick
|
|
8846
|
-
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1);
|
|
8851
|
+
}, toDisplayString(_ctx.labels.moreResults) + " " + toDisplayString(totalCount.value), 1)) : createCommentVNode("", true);
|
|
8847
8852
|
};
|
|
8848
8853
|
}
|
|
8849
8854
|
});
|
|
@@ -20049,7 +20054,6 @@ and ensure you are accounting for this risk.
|
|
|
20049
20054
|
return resultCountFromRelatedPanel < 1;
|
|
20050
20055
|
};
|
|
20051
20056
|
return (_ctx, _cache) => {
|
|
20052
|
-
var _a;
|
|
20053
20057
|
return openBlock(), createElementBlock("div", {
|
|
20054
20058
|
ref_key: "panelContainer",
|
|
20055
20059
|
ref: panelContainer
|
|
@@ -20066,7 +20070,7 @@ and ensure you are accounting for this risk.
|
|
|
20066
20070
|
"data-cy": "lupa-main-panel"
|
|
20067
20071
|
}, [
|
|
20068
20072
|
(openBlock(true), createElementBlock(Fragment, null, renderList(displayPanels.value, (panel, index) => {
|
|
20069
|
-
var
|
|
20073
|
+
var _a, _b, _c, _d;
|
|
20070
20074
|
return openBlock(), createElementBlock("div", {
|
|
20071
20075
|
key: index,
|
|
20072
20076
|
class: normalizeClass([
|
|
@@ -20076,7 +20080,7 @@ and ensure you are accounting for this risk.
|
|
|
20076
20080
|
style: normalizeStyle(panel.gridArea ? { gridArea: `${panel.gridArea}${index}` } : {}),
|
|
20077
20081
|
"data-cy": "lupa-panel-" + panel.type + "-index"
|
|
20078
20082
|
}, [
|
|
20079
|
-
((
|
|
20083
|
+
((_a = panel.labels) == null ? void 0 : _a.topResultsTitle) && showTopResultsPanelTitle(panel.queryKey) ? (openBlock(), createElementBlock("div", _hoisted_3$y, toDisplayString((_b = panel.labels) == null ? void 0 : _b.topResultsTitle), 1)) : createCommentVNode("", true),
|
|
20080
20084
|
((_c = panel.labels) == null ? void 0 : _c.title) && showPanelTitle(panel) ? (openBlock(), createElementBlock("div", _hoisted_4$p, toDisplayString((_d = panel.labels) == null ? void 0 : _d.title), 1)) : createCommentVNode("", true),
|
|
20081
20085
|
panel.queryKey && canShowPanel(panel) ? (openBlock(), createBlock(resolveDynamicComponent(getComponent(panel.type)), {
|
|
20082
20086
|
key: 2,
|
|
@@ -20109,9 +20113,9 @@ and ensure you are accounting for this risk.
|
|
|
20109
20113
|
unref(hasAnyResults) || !_ctx.options.hideMoreResultsButtonOnNoResults ? (openBlock(), createBlock(_sfc_main$1s, {
|
|
20110
20114
|
key: 2,
|
|
20111
20115
|
labels: labels.value,
|
|
20112
|
-
|
|
20116
|
+
options: _ctx.options,
|
|
20113
20117
|
onGoToResults: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("go-to-results"))
|
|
20114
|
-
}, null, 8, ["labels", "
|
|
20118
|
+
}, null, 8, ["labels", "options"])) : createCommentVNode("", true)
|
|
20115
20119
|
])) : displayHistory.value ? (openBlock(), createElementBlock("div", _hoisted_5$g, [
|
|
20116
20120
|
createVNode(_sfc_main$1q, {
|
|
20117
20121
|
options: _ctx.options.history,
|
|
@@ -20190,7 +20194,8 @@ and ensure you are accounting for this risk.
|
|
|
20190
20194
|
"showTotalCount",
|
|
20191
20195
|
"hideMoreResultsButtonOnNoResults",
|
|
20192
20196
|
"showNoResultsPanel",
|
|
20193
|
-
"expandOnSinglePanel"
|
|
20197
|
+
"expandOnSinglePanel",
|
|
20198
|
+
"showMoreResultsButton"
|
|
20194
20199
|
])
|
|
20195
20200
|
);
|
|
20196
20201
|
const searchTriggers = computed(() => {
|
|
@@ -20663,11 +20668,15 @@ and ensure you are accounting for this risk.
|
|
|
20663
20668
|
var _a, _b;
|
|
20664
20669
|
return (_b = (_a = props.options.labels) == null ? void 0 : _a.searchResultsCount) != null ? _b : "";
|
|
20665
20670
|
});
|
|
20671
|
+
const searchResultsTitleTemplate = computed(() => {
|
|
20672
|
+
var _a, _b, _c, _d, _e;
|
|
20673
|
+
return ((_c = (_b = (_a = props.options) == null ? void 0 : _a.labels) == null ? void 0 : _b.searchResults) == null ? void 0 : _c.includes("{")) ? addParamsToLabel((_e = (_d = props.options) == null ? void 0 : _d.labels) == null ? void 0 : _e.searchResults, queryText.value) : ``;
|
|
20674
|
+
});
|
|
20666
20675
|
return (_ctx, _cache) => {
|
|
20667
20676
|
return openBlock(), createElementBlock("div", null, [
|
|
20668
20677
|
showSearchTitle.value ? (openBlock(), createElementBlock("h1", _hoisted_1$S, [
|
|
20669
|
-
createTextVNode(toDisplayString(_ctx.options.labels.searchResults), 1),
|
|
20670
|
-
queryText.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20678
|
+
createTextVNode(toDisplayString(searchResultsTitleTemplate.value || _ctx.options.labels.searchResults), 1),
|
|
20679
|
+
queryText.value && !searchResultsTitleTemplate.value ? (openBlock(), createElementBlock("span", _hoisted_2$F, "'" + toDisplayString(queryText.value) + "'", 1)) : createCommentVNode("", true),
|
|
20671
20680
|
showProductCount.value ? (openBlock(), createElementBlock("span", _hoisted_3$w, [
|
|
20672
20681
|
createTextVNode("(" + toDisplayString(searchResultsCountLabel.value), 1),
|
|
20673
20682
|
createBaseVNode("span", _hoisted_4$n, toDisplayString(unref(totalItems)), 1),
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.slider-target,.slider-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing:border-box;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.slider-target{position:relative}.slider-base,.slider-connects{height:100%;position:relative;width:100%;z-index:1}.slider-connects{overflow:hidden;z-index:0}.slider-connect,.slider-origin{height:100%;position:absolute;right:0;top:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-style:flat;width:100%;will-change:transform;z-index:1}.slider-txt-dir-rtl.slider-horizontal .slider-origin{left:0;right:auto}.slider-vertical .slider-origin{top:-100%;width:0}.slider-horizontal .slider-origin{height:0}.slider-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.slider-touch-area{height:100%;width:100%}.slider-state-tap .slider-connect,.slider-state-tap .slider-origin{transition:transform .3s}.slider-state-drag *{cursor:inherit !important}.slider-tooltip-drag .slider-tooltip,.slider-tooltip-focus .slider-tooltip{display:none !important}.slider-tooltip-drag .slider-active .slider-tooltip,.slider-tooltip-drag.slider-state-drag .slider-tooltip:not(.slider-tooltip-hidden),.slider-tooltip-focus.slider-focused .slider-tooltip:not(.slider-tooltip-hidden){display:block !important}.slider-horizontal{height:var(--slider-height, 6px)}.slider-horizontal .slider-handle{height:var(--slider-handle-height, 16px);right:calc(var(--slider-handle-width, 16px)/2*-1);top:calc((var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2*-1 - 1px);width:var(--slider-handle-width, 16px)}.slider-vertical{height:var(--slider-vertical-height, 300px);width:var(--slider-height, 6px)}.slider-vertical .slider-handle{bottom:calc(var(--slider-handle-width, 16px)/2*-1);height:var(--slider-handle-width, 16px);right:calc((var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2*-1 - 1px);width:var(--slider-handle-height, 16px)}.slider-txt-dir-rtl.slider-horizontal .slider-handle{left:calc(var(--slider-handle-width, 16px)/2*-1);right:auto}.slider-base{background-color:var(--slider-bg, #d1d5db)}.slider-base,.slider-connects{border-radius:var(--slider-radius, 9999px)}.slider-connect{background:var(--slider-connect-bg, #10b981);cursor:pointer}.slider-draggable{cursor:ew-resize}.slider-vertical .slider-draggable{cursor:ns-resize}.slider-handle{background:var(--slider-handle-bg, #fff);border:var(--slider-handle-border, 0);border-radius:var(--slider-handle-radius, 9999px);box-shadow:var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));cursor:-webkit-grab;cursor:grab;height:var(--slider-handle-height, 16px);width:var(--slider-handle-width, 16px)}.slider-handle:focus{box-shadow:0 0 0 var(--slider-handle-ring-width, 3px) var(--slider-handle-ring-color, rgba(16, 185, 129, 0.188)),var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));outline:none}.slider-active{box-shadow:var(--slider-handle-shadow-active, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.42));cursor:-webkit-grabbing;cursor:grabbing}[disabled] .slider-connect{background:var(--slider-connect-bg-disabled, #9ca3af)}[disabled] .slider-handle,[disabled].slider-handle,[disabled].slider-target{cursor:not-allowed}[disabled] .slider-tooltip{background:var(--slider-tooltip-bg-disabled, #9ca3af);border-color:var(--slider-tooltip-bg-disabled, #9ca3af)}.slider-tooltip{background:var(--slider-tooltip-bg, #10b981);border:1px solid var(--slider-tooltip-bg, #10b981);border-radius:var(--slider-tooltip-radius, 5px);color:var(--slider-tooltip-color, #fff);display:block;font-size:var(--slider-tooltip-font-size, 0.875rem);font-weight:var(--slider-tooltip-font-weight, 600);line-height:var(--slider-tooltip-line-height, 1.25rem);min-width:var(--slider-tooltip-min-width, 20px);padding:var(--slider-tooltip-py, 2px) var(--slider-tooltip-px, 6px);position:absolute;text-align:center;white-space:nowrap}.slider-horizontal .slider-tooltip-top{bottom:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));left:50%;transform:translate(-50%)}.slider-horizontal .slider-tooltip-top:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-top-color:inherit;bottom:calc(var(--slider-tooltip-arrow-size, 5px)*-2);content:"";height:0;left:50%;position:absolute;transform:translate(-50%);width:0}.slider-horizontal .slider-tooltip-bottom{left:50%;top:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));transform:translate(-50%)}.slider-horizontal .slider-tooltip-bottom:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-bottom-color:inherit;content:"";height:0;left:50%;position:absolute;top:calc(var(--slider-tooltip-arrow-size, 5px)*-2);transform:translate(-50%);width:0}.slider-vertical .slider-tooltip-left{right:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-left:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-left-color:inherit;content:"";height:0;position:absolute;right:calc(var(--slider-tooltip-arrow-size, 5px)*-2);top:50%;transform:translateY(-50%);width:0}.slider-vertical .slider-tooltip-right{left:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-right:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-right-color:inherit;content:"";height:0;left:calc(var(--slider-tooltip-arrow-size, 5px)*-2);position:absolute;top:50%;transform:translateY(-50%);width:0}.slider-horizontal .slider-origin>.slider-tooltip{left:auto;transform:translate(50%)}.slider-horizontal .slider-origin>.slider-tooltip-top{bottom:calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) + 1px)}.slider-horizontal .slider-origin>.slider-tooltip-bottom{top:calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip{top:auto;transform:translateY(calc((var(--slider-tooltip-line-height, 1.25rem) - var(--slider-tooltip-py, 2px)) * -1 + 1px))}.slider-vertical .slider-origin>.slider-tooltip-left{right:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip-right{left:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px)}:root{--lupa-available-height: 100%}#lupa-search-box-panel{position:absolute;width:100%;height:auto;border:1px solid rgba(0,0,0,0.1019607843);background:#fff;box-shadow:0px 4px 6px rgba(0,0,0,.25);z-index:5000;border-radius:0;font-family:"Roboto",sans-serif;box-sizing:border-box}#lupa-search-box-panel:empty{display:none}@media(max-width: 767px){#lupa-search-box-panel{max-height:var(--lupa-available-height);overflow-y:auto}}.lupa-main-panel{display:grid;grid-template:"left right";grid-template-columns:minmax(50px, 35%) minmax(250px, 1fr)}@media(max-width: 767px){.lupa-main-panel{display:block}}.lupa-panel-suggestion-index{grid-area:left;word-break:break-word}@media(min-width: 767px){.lupa-panel-suggestion-index{border-right:1px solid rgba(0,0,0,0.1019607843)}}.lupa-panel-document-index{grid-area:right;word-break:break-word}.lupa-more-results{cursor:pointer;border-top:1px solid rgba(0,0,0,0.1019607843);padding:5px 10px;color:#161616;background-color:#fff;font-size:14px;line-height:24px}.lupa-more-results:hover{background-color:rgba(0,0,0,.05);color:#3c53f4}.lupa-search-box-no-results{text-align:center;color:#161616;font-size:14px;line-height:24px}#lupa-search-box-panel{display:flex;justify-content:space-between;flex-direction:column}.lupa-more-results{text-align:center}#lupa-search-box{width:100%}.lupa-search-box-wrapper{position:relative}.lupa-panel-title{padding:12px 20px;font-weight:700;font-size:17px}.lupa-search-box-documents-go-to-results-wrapper{padding:15px}.lupa-search-box-documents-go-to-results-button{background-color:#fff;border-radius:24px;padding:9px 0;width:100%;display:flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,0.1019607843);cursor:pointer}.lupa-suggestion{cursor:pointer;display:flex;flex-wrap:wrap;align-items:center;color:#161616;background-color:#fff;padding:4px 20px;font-size:16px;line-height:24px}.lupa-suggestion strong{color:#161616}.lupa-suggestion-value{margin-right:7px}.lupa-suggestion-facet{font-size:13px}.lupa-suggestion-facet-label{margin-right:2px}.lupa-suggestion-facet-value{font-weight:bold}.lupa-suggestion-highlighted,.lupa-suggestion:hover{cursor:pointer;color:#3c53f4;background-color:rgba(0,0,0,.05)}.lupa-suggestion-highlighted strong,.lupa-suggestion:hover strong{color:#3c53f4}.lupa-suggestion:hover{text-decoration:underline}.lupa-search-box-input-field{position:relative !important;background:rgba(0,0,0,0) !important}.lupa-search-box-input-field,.lupa-hint{color:#161616;height:48px;padding:0 16px;line-height:1.5;font-size:16px;font-family:"Roboto",sans-serif;width:100%}.lupa-search-box-input-field{border:1px solid rgba(0,0,0,0.1019607843);color:#161616}.lupa-hint{opacity:.5;position:absolute !important;pointer-events:none;border:1px solid rgba(0,0,0,0)}.lupa-input-clear{display:none}.lupa-search-box-history-item{cursor:pointer}.lupa-search-box-history-item-content{display:flex;justify-content:space-between}.lupa-search-box-history-item-text{width:100%;display:flex;align-items:center;line-height:24px;font-size:16px;padding:4px 20px;color:#161616}.lupa-search-box-history-item-text:hover,.lupa-search-box-history-item-text.lupa-search-box-history-item-highlighted{background-color:rgba(0,0,0,.05);color:#161616}.lupa-search-box-history-item-text:hover{text-decoration:underline}.lupa-search-box-history-item-clear{display:flex;align-items:center;padding:4px 20px;color:#161616;font-size:24px}.lupa-search-box-history-item-clear:hover{color:#161616;background-color:rgba(0,0,0,.05)}.lupa-search-box-history-clear-all{text-align:center;cursor:pointer;border-top:1px solid rgba(0,0,0,0.1019607843);padding:4px 20px;line-height:24px;font-size:14px;color:#161616}.lupa-search-box-history-clear-all:hover{background-color:rgba(0,0,0,.05);color:#161616}.lupa-search-box-product{padding:10px;font-size:14px;display:flex;cursor:pointer;text-decoration:inherit;color:inherit}.lupa-search-box-product:hover,.lupa-search-box-product.lupa-search-box-product-highlighted{text-decoration:none;background-color:rgba(0,0,0,.05)}.lupa-search-box-product:hover .lupa-search-box-product-title,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-title{color:#161616}.lupa-search-box-product:hover .lupa-search-box-product-custom,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-custom{color:#161616}.lupa-search-box-product:hover .lupa-search-box-product-price,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-price{color:#3c53f4}.lupa-search-box-product:hover .lupa-search-box-product-regular-price,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-regular-price{color:#161616}.lupa-search-box-product-details-section{font-family:"Roboto",sans-serif}.lupa-search-box-product-details-section{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.lupa-search-box-product-image-section{min-width:85px;flex:0 1}.lupa-search-box-image-wrapper,.lupa-search-box-image{width:70px;height:70px}.lupa-search-box-image{object-fit:contain}.lupa-search-box-product-title{font-size:16px;line-height:15px;color:#161616}.lupa-search-box-product-custom{font-size:14px;line-height:15px;color:#161616}.lupa-search-box-product-price{font-size:16px;line-height:15px;color:#3c53f4}.lupa-search-box-product-regular-price{font-size:14px;line-height:15px;color:#161616;font-weight:normal}.lupa-search-box-product-description{max-height:42px;line-height:14px;color:#161616;overflow:hidden}.lupa-search-box-product-add-to-cart-section{flex-grow:1;flex-shrink:0;display:flex;justify-content:flex-end;align-items:center}.lupa-search-result-facets{font-family:"Roboto",sans-serif}.lupa-facets-title{font-size:16px;line-height:1.1;font-weight:700;padding:0 0 10px;color:#161616}.lupa-search-result-facet-display{border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-display:first-child{border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-label{justify-content:space-between;display:flex;font-size:14px;line-height:21px;font-weight:700;padding:10.5px;color:#161616;cursor:pointer}.lupa-search-result-facet-label:hover{color:#3c53f4}.lupa-search-result-facet-label.open{padding:10.5px 10.5px 0}.lupa-facet-level{margin-left:25px}.lupa-facet-label-caret::after{content:"⌄";font-family:"Material Design Icons";color:#161616;display:block;font-weight:400;overflow:hidden;text-align:center}.lupa-facet-label-caret.open::after{transform:rotate(180deg)}.lupa-facet-content{padding:5px 10px 20px}.lupa-facet-term{padding:4px 5px;margin:16px 0 0}.lupa-term-checkbox-label{width:100%;padding-left:8px;display:flex;justify-content:space-between;align-items:center}.lupa-facet-term{cursor:pointer;display:flex;align-items:center;font-size:14px;color:#161616}.lupa-facet-term:hover{background:rgba(0,0,0,.05)}.lupa-facet-term.checked{font-weight:bold}.lupa-term-count{color:#161616}.lupa-term-checkbox{display:inline-block;height:18px;width:18px;box-sizing:border-box;border:2px solid #3c53f4;border-radius:0px;content:"";display:flex;justify-content:center;align-items:center}.lupa-term-checkbox.checked::after{border:3px solid #3c53f4;border-radius:0px;display:inline-block;content:""}.lupa-show-more-facet-results{justify-content:center}.lupa-term-filter{width:100%;padding:8px;box-sizing:border-box;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-show-more-facet-results{color:#161616;font-size:14px}.lupa-show-more-facet-results:hover{color:#161616}.lupa-stats-facet-summary{text-align:center;font-size:14px}.lupa-stats-slider-wrapper{margin:10px 0 0;padding:0 8px}.lupa-stats-slider-wrapper .slider-connects{background-color:rgba(60,83,244,.3)}.lupa-stats-slider-wrapper .slider-connect{background-color:#3c53f4}.lupa-stats-slider-wrapper .slider-handle{background:#3c53f4;border-radius:50%;border:0px solid #3c53f4;z-index:3;cursor:pointer}.lupa-stats-slider-wrapper .slider-handle:hover{background:#3c53f4}.lupa-stats-range-label{font-size:12px;margin:0 0 5px}.lupa-stats-facet-summary-input{display:flex;align-items:center;justify-content:center}.lupa-stats-facet-summary-input input{width:100%;padding:8px;box-sizing:border-box;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-stats-facet-summary-input .lupa-stats-from,.lupa-stats-facet-summary-input .lupa-stats-to{display:flex;align-items:center}.lupa-stats-facet-summary-input .lupa-stats-separator{margin:0 10px}.lupa-stats-facet-summary-input span{padding:0 5px}.lupa-facets-button-filter{background-color:#fff;border-radius:24px;padding:9px 0;width:100%;display:flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-list.lupa-top-dropdown{display:flex;flex-wrap:wrap}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-display{margin:0 10px 10px 0;border-bottom:none;border-top:none}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-facet-content{position:absolute;background:#fff;z-index:10;border:1px solid rgba(0,0,0,0.1019607843);min-width:220px}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-terms-list{overflow-y:auto;max-height:300px;margin:2px 0 0}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-label{border:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-label.lupa-has-filter{border-width:1px}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-single-facet-clear{cursor:pointer;text-align:center;margin:3px 0 0;padding:5px 0 3px;font-size:5px 0 3px;border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-current-filters{font-family:"Roboto",sans-serif}.lupa-current-filter-title{display:flex;align-items:center;justify-content:space-between;font-size:16px;line-height:1.1;font-weight:700;padding:0;color:#161616}.lupa-current-filter-list{margin:0;padding:0 10px 5px}.lupa-search-result-current-filters{margin:0 0 25px}.lupa-clear-all-filters{cursor:pointer;color:#0c26d7;padding:0 10.5px;margin:0 0 31.5px;font-size:14px}.lupa-clear-all-filters:hover{color:#091da7}.lupa-search-result-filter-value{display:flex;align-items:center;flex-wrap:wrap;margin:10.5px 0;font-size:14px}.lupa-current-filter-action{padding:0 5px 0 0;font-size:17px;color:#3c53f4;cursor:pointer}.lupa-current-filter-action:hover{color:#3c53f4}.lupa-current-filter-label,.lupa-current-filter-value{margin:0 0 0 5px}.lupa-current-filter-label{color:#161616}.lupa-current-filter-value{color:#3c53f4}.lupa-filter-title-caret::after{content:"⌄";font-family:"Material Design Icons";color:#161616;font-size:24px;display:block;font-weight:400;overflow:hidden;text-align:center}.lupa-filter-title-caret.open::after{transform:rotate(180deg)}.lupa-filter-count{font-size:16px;color:#3c53f4}.lupa-toolbar-filters,.lupa-toolbar-filters-desktop{margin-right:12px}.lupa-toolbar-filters .filter-values,.lupa-toolbar-filters-desktop .filter-values{display:flex}.lupa-result-page-title{font-size:16px;margin:0 0 38px;font-family:"Roboto",sans-serif}.lupa-search-result-filters{padding:0 4.6% 0 0}#lupa-search-results,.top-layout-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:flex-start}.search-content{width:100%}.lupa-search-result-filters{flex:25%;flex-grow:1;flex-shrink:0;box-sizing:border-box}#lupa-search-results-products{position:relative;padding:0 0 0 1.6%;width:100%}.lupa-products{display:flex;align-self:flex-start;flex-wrap:wrap;margin:0 0 31.5px -16px}.lupa-loader{background-color:#fff;display:flex;height:calc(100% - 0px);opacity:.5;position:absolute;z-index:555}.lupa-search-result-product-card{box-sizing:border-box}#lupa-search-results-did-you-mean{font-family:"Roboto",sans-serif}.lupa-suggested-search-text{font-weight:bold}.lupa-highlighted-search-text{font-weight:bold;font-style:italic}#lupa-search-results-did-you-mean{margin-bottom:10px}.lupa-did-you-mean{text-decoration:none}.lupa-did-you-mean:hover{text-decoration:underline;cursor:pointer}#lupa-select{position:relative;font-family:"Roboto",sans-serif;color:#161616;text-indent:.01em}.lupa-select-dropdown{cursor:pointer;padding:20px 25px 4px 8px;font-family:"Roboto",sans-serif;background:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.1019607843);border-radius:0;font-size:14px;height:48px;line-height:1.5;vertical-align:baseline;box-sizing:border-box;appearance:none}.lupa-select-dropdown:focus{outline:none;box-shadow:0 0 3px 1px #6c7ef7}.lupa-select-label{font-family:"Roboto",sans-serif;font-size:12px;line-height:1;position:absolute;pointer-events:none;top:8px;left:8px}.lupa-search-results-summary{display:flex;align-items:center}#lupa-search-results-toolbar{display:flex;flex-direction:row;justify-content:space-between;margin:0 0 40px}.lupa-toolbar-left{display:flex}.lupa-toolbar-right{display:flex;flex-direction:row}#lupa-search-results-page-select{display:flex;flex-direction:row;align-items:center}#lupa-search-results-layout-selection{display:flex;flex-direction:row;align-items:center}#lupa-search-results-layout-selection div{margin:0 16px 0 0}.lupa-search-results-summary{color:#161616;font-family:"Roboto",sans-serif;font-size:14px}#lupa-search-results-page-size{margin:0}#lupa-search-results-page-size .lupa-select-dropdown{width:125px}.lupa-search-results-sort{margin:0 0 0 8px}.lupa-filter-clear{cursor:pointer}#lupa-search-results-page-select{font-family:"Roboto",sans-serif}.lupa-page-number-separator{margin:0 12px 0 0}.lupa-page-number{cursor:pointer;color:#3c53f4;font-size:12px;padding:0 5.25px;margin:0 12px 0 0}.lupa-page-number:hover{color:#161616}.lupa-page-number.lupa-page-number-selected{color:#161616;font-weight:700}.lupa-page-arrow{cursor:pointer;font-weight:700;margin:0 12px 0 0;padding:0 8px}.lupa-page-arrow:before{line-height:31.5px;color:#161616;content:"";font-family:"Roboto",sans-serif;font-size:11px}.lupa-page-arrow:hover:before{color:#3c53f4}.lupa-search-result-product-card{height:auto;min-height:250px;border:1px solid rgba(0,0,0,0.1019607843);padding:12px;margin:0}.lupa-out-of-stock{opacity:.5}.lupa-search-result-product-contents{height:100%;display:flex;flex-direction:column;font-family:"Roboto",sans-serif;font-size:16px}.lupa-search-result-product-contents-list{flex-direction:row}.lupa-search-result-product-details-section{display:flex;flex-direction:column;justify-content:space-between;height:100%}.lupa-search-results-image-wrapper{padding-bottom:125%;display:block;height:0;overflow:hidden;position:relative;z-index:1;display:flex;justify-content:center}.lupa-search-results-image{width:100%;height:100%;object-fit:contain;max-width:240px;max-height:195px;margin:auto;position:absolute}.lupa-search-result-product-image-section{cursor:pointer;border:none;padding:6px 4px 12px;margin:0}.lupa-search-results-product-title{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;font-size:16px;margin:0 0 6px;line-height:21px}.lupa-search-results-product-title-text{font-weight:bold;color:#161616}.lupa-search-results-product-title-text.lupa-title-link{text-decoration:none;color:#161616}.lupa-search-results-product-title-text.lupa-title-link:hover{text-decoration:underline;color:#3c53f4}.lupa-search-results-product-regular-price{font-size:16px;font-weight:700;padding:10px 8px 0 5px}#lupa-search-results-rating{display:flex;flex-direction:row;align-items:center;width:auto;margin:0 0 15.75px}.lupa-ratings{display:flex;flex-direction:row;align-items:center;width:auto}.lupa-ratings-base,.lupa-rating-wrapper{display:flex;width:90px}.lupa-rating-wrapper{position:absolute}.lupa-ratings-highlighted{display:flex;overflow:hidden}.lupa-total-ratings{color:#161616;text-decoration:none}.lupa-total-ratings:hover{color:#3c53f4;text-decoration:underline}.lupa-search-result-product-contents-list .lupa-search-result-product-card{min-height:50px}.lupa-search-result-product-contents-list .lupa-search-results-image{width:240px;height:195px;object-fit:contain;margin:auto;position:relative}.lupa-search-result-product-contents-list .lupa-search-result-product-details-section{width:100%;padding:15px}.lupa-search-result-product-contents-list .lupa-search-results-image{max-width:120px;max-height:97.5px}.lupa-search-result-product-contents-list .lupa-search-results-product-addtocart{order:3;margin:0 -16px 0;position:static}.lupa-search-result-product-contents-list .lupa-search-results-product-addtocart button{padding:8px 32px}.lupa-search-results-product-description{max-height:200px;font-size:14px;opacity:.75;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical}.lupa-empty-results{text-align:center;width:100%;font-size:14px;font-family:"Roboto",sans-serif;color:#161616}.lupa-empty-results .lupa-empty-page-action{cursor:pointer;text-decoration:underline}.lupa-mobile-filter-sidebar{position:fixed;width:100%;height:var(--lupa-full-height);left:0;top:0;bottom:0;z-index:555;background:rgba(0,0,0,0);display:flex}.lupa-mobile-filter-sidebar .lupa-mobile-sidebar-content{height:var(--lupa-full-height);width:100%;z-index:555;background:#fff}.lupa-mobile-filter-sidebar .lupa-sidebar-close{background:rgba(0,0,0,.6);height:var(--lupa-full-height);width:30px}.lupa-sidebar-top{display:flex;align-items:center;justify-content:space-between;height:48px;padding:0 13.5px 0 0;border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-sidebar-title{margin-left:15px;font-weight:700;font-size:16px;font-family:"Roboto",sans-serif;color:#161616}.lupa-sidebar-filter-options .lupa-facets-title{display:none}.lupa-filter-toggle-mobile:after{font-size:24px;color:#161616;content:"✖";line-height:inherit;font-family:"Roboto",sans-serif;vertical-align:middle;display:inline-block;font-weight:400;overflow:hidden;text-align:center}.lupa-sidebar-filter-options{overflow-y:scroll;height:calc(100% - 48px)}#lupa-search-results-toolbar.lupa-toolbar-mobile{display:none}.lupa-category-top-mobile-filters{display:none}.lupa-filters-mobile{display:none}.lupa-mobile-toggle{font-family:"Roboto",sans-serif;font-size:14px;color:#161616;width:208px;border-radius:8px;display:none;padding:15px 0;border:1px solid rgba(0,0,0,0.1019607843);line-height:16px;text-align:center;z-index:2}@media(max-width: 767px){.lupa-mobile-toggle{display:block}.lupa-category-top-mobile-filters{display:block}.lupa-filters-mobile{display:block;border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-filters-mobile.lupa-search-result-current-filters.expandable{padding:15px 0;margin:-20px 0 20px}#lupa-search-results-layout-selection{display:none}.lupa-search-results-summary{display:none}#lupa-search-results-page-size{display:none}#lupa-search-results-toolbar.lupa-toolbar-top{display:none}#lupa-search-results-toolbar.lupa-toolbar-mobile{display:flex}.lupa-toolbar-bottom .lupa-toolbar-right{display:none}.lupa-toolbar-mobile .lupa-toolbar-left{display:none}#lupa-search-results-toolbar{justify-content:center}#lupa-search-results-rating{flex-direction:column;align-items:normal}#lupa-search-results-rating .lupa-total-ratings{margin-left:0;margin-top:5px}.lupa-search-result-filters{display:none}.lupa-mobile-filter-sidebar .lupa-search-result-filters{display:flex;flex-direction:column}#lupa-search-results-products{padding:0}.lupa-select-dropdown{width:208px}.lupa-facets-title{padding:16px}.lupa-search-result-current-filters.expandable{padding:16px;border-bottom:1px solid rgba(0,0,0,0.1019607843);margin:0}.lupa-clear-all-filters{margin:0}#lupa-search-results-did-you-mean{margin-bottom:10px}.lupa-products{margin-left:0}}@media(max-width: 479px){.lupa-mobile-toggle{width:139px}.lupa-select-dropdown{width:139px}}@media(max-width: 350px){.lupa-mobile-toggle{width:100px}.lupa-select-dropdown{width:100px}}@media(max-width: 767px){.lupa-search-result-filters{flex:100%;padding:0}.lupa-search-result-facets{width:100%}.lupa-search-result-facet-display{padding:0 15px}}@media(max-width: 1024px){#lupa-search-results-badges>#lupa-badges{top:-16px}#lupa-search-results-badges>#lupa-badges .lupa-badge{width:32px;height:32px;font-size:11px}}#lupa-search-results-badges{position:relative}#lupa-badges{display:flex;position:absolute;font-family:"Roboto",sans-serif;top:-24px;z-index:1}#lupa-badges .tl{left:-10px}#lupa-badges .tr{right:-10px}.lupa-badge{width:48px;height:48px;font-size:14px;margin:0 8px 0 0;font-weight:700;border-radius:50%}.lupa-text-badges{display:flex}.lupa-image-badges{display:flex}.lupa-image-badges img{width:100%}.lupa-text-badge{color:#fff;background:#3c53f4;display:flex;align-items:center;justify-content:center;text-align:center}#lupa-badges{flex-direction:column;top:0;pointer-events:none;z-index:1000}.lupa-discount-badge{background:#e0232f;color:#fff;padding:4px;font-weight:700}.lupa-preorder-badge{background:#4b81eb;color:#fff}.lupa-generated-badges{display:flex;flex-direction:column}.lupa-dynamic-badge{cursor:pointer;pointer-events:all;display:flex;font-weight:600;font-size:14px;line-height:20px;padding:4px;margin-bottom:4px;margin-right:auto;white-space:nowrap}.lupa-dynamic-badge .lupa-badge-title{font-weight:700;letter-spacing:-0.6px;display:flex;align-items:center;justify-content:center;min-width:42px}.lupa-dynamic-badge .lupa-badge-title img{max-height:20px}.lupa-dynamic-badge .lupa-badge-full-text{display:none;margin-left:10px}.lupa-dynamic-badge:hover .lupa-badge-full-text{display:inline-block}#lupa-search-results-breadcrumbs{margin:0 0 24px;font-size:12px}@media(min-width: 767px){#lupa-search-results-breadcrumbs{max-width:1228px;box-sizing:border-box;width:100%}}@media(max-width: 767px){#lupa-search-results-breadcrumbs{display:none}}#lupa-search-results-breadcrumbs .lupa-search-results-breadcrumb-link{text-decoration:none;color:#0c26d7}#lupa-search-results-breadcrumbs .lupa-search-results-breadcrumb-link:hover{text-decoration:underline;color:#091da7}#lupa-search-results-similar-queries,#lupa-search-results-similar-results{margin-top:20px}.lupa-similar-queries-label,.lupa-similar-results-label{font-size:20px;font-family:"Roboto",sans-serif;font-weight:700;line-height:1.1;margin-top:0;margin-bottom:8px}.lupa-similar-results-label{margin-bottom:8px}.lupa-similar-query-label{margin-bottom:48px;font-weight:400;line-height:1.5;color:#4f4f4f;font-family:"Roboto",sans-serif}.lupa-similar-query-value{font-size:16px}.lupa-similar-query-link:hover{text-decoration:underline;cursor:pointer}.lupa-similar-query-crossed{text-decoration:line-through}.lupa-category-filter{padding:0;font-family:"Roboto",sans-serif;margin:0 0 25px}.lupa-category-back{padding:13px 0}.lupa-category-back a{color:#161616;font-size:16px;line-height:20px;font-weight:700;text-decoration:none !important}.lupa-category-back a:hover{color:#3c53f4}.lupa-current-category,.lupa-child-category-item{padding:10px 0 10px 25px}.lupa-current-category a,.lupa-child-category-item a{text-decoration:none !important;color:#161616;font-size:16px;line-height:16px}.lupa-current-category a:hover,.lupa-child-category-item a:hover{color:#3c53f4}.lupa-child-category-item-active,.lupa-current-category-active{color:#3c53f4}.lupa-child-category-list{padding:0 0 0 10px}.lupa-category-overview{margin:30px 0 50px}.lupa-category-title{font-weight:600;font-size:14px;margin:0 0 15px}.lupa-category-top-mobile-filters .lupa-child-category-list{display:flex;overflow:auto;padding:15px 0}.lupa-category-top-mobile-filters .lupa-child-category-list .lupa-child-category-item{white-space:nowrap}.lupa-related-queries-title,.lupa-related-query-label{font-family:"Roboto",sans-serif}.lupa-related-queries ul{display:flex;padding:0;list-style:none;margin:20px 9px 30px -6px}.lupa-related-queries li{flex:1 1 0;box-sizing:border-box;text-align:center;padding:10px}.lupa-related-queries li a{cursor:pointer}.lupa-related-query-label{margin-top:10px}.lupa-related-query-image-wrapper{max-width:100%}.lupa-related-query-image-wrapper img{max-height:120px;max-width:150px;width:100%;object-fit:contain}.lupa-related-query-image{min-height:120px}.lupa-related-query-count{display:inline-block;margin-left:5px;opacity:.5}.lupa-related-queries li:not(:last-child){margin:0 16px 0 0}.lupa-related-queries li.lupa-selected-related-query-filter{border:1px solid #3c53f4}@media(max-width: 767px){.lupa-related-queries ul{margin:20px -2px 30px;flex-wrap:wrap}.lupa-related-queries ul li{flex-basis:calc(50% - 60px)}.lupa-related-queries ul li:not(:last-child),.lupa-related-queries ul li:last-child{margin:10px}}.lupa-redirections-suggestion-label{font-size:22px;margin-bottom:32px}.lupa-spinner-wrapper{width:100%;min-height:280px;overflow:hidden}.lupa-spinner{color:#555;display:flex;justify-content:center;position:relative;width:100%;padding-top:100px;padding-right:72px}.lupa-spinner div{transform-origin:40px 40px;animation:lupa-spinner 1.2s linear infinite}.lupa-spinner div:after{content:" ";display:block;position:absolute;top:3px;left:37px;width:6px;height:18px;border-radius:20%;background:#555}.lupa-spinner div:nth-child(1){transform:rotate(0deg);animation-delay:-1.1s}.lupa-spinner div:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.lupa-spinner div:nth-child(3){transform:rotate(60deg);animation-delay:-0.9s}.lupa-spinner div:nth-child(4){transform:rotate(90deg);animation-delay:-0.8s}.lupa-spinner div:nth-child(5){transform:rotate(120deg);animation-delay:-0.7s}.lupa-spinner div:nth-child(6){transform:rotate(150deg);animation-delay:-0.6s}.lupa-spinner div:nth-child(7){transform:rotate(180deg);animation-delay:-0.5s}.lupa-spinner div:nth-child(8){transform:rotate(210deg);animation-delay:-0.4s}.lupa-spinner div:nth-child(9){transform:rotate(240deg);animation-delay:-0.3s}.lupa-spinner div:nth-child(10){transform:rotate(270deg);animation-delay:-0.2s}.lupa-spinner div:nth-child(11){transform:rotate(300deg);animation-delay:-0.1s}.lupa-spinner div:nth-child(12){transform:rotate(330deg);animation-delay:0s}@keyframes lupa-spinner{0%{opacity:1}100%{opacity:0}}.lupa-search-result-product-card{width:100%}.lupa-recommended-products .lupa-search-result-product-card{height:100%}.lupa-recommended-products .lupa-search-result-product-details-section{align-items:flex-start}.lupa-recommended-products .lupa-search-results-product-element{text-align:left}.lupa-recommended-products .carousel__track{margin-top:10px !important;margin-bottom:10px !important}.lupa-search-product-recommendations-wrapper{width:100%}.lupa-search-product-recommendations-wrapper .lupa-products .lupa-search-result-product-card{height:auto}.lupa-search-box-product-title{font-weight:300}#lupa-search-box-input input{box-sizing:border-box}#lupa-search-box-input::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:24px;position:absolute;right:16px;top:12px}#lupa-search-box-input button{cursor:pointer;position:absolute;right:16px;top:12px;width:20px;height:20px;z-index:100;background:none;border:rgba(0,0,0,0)}#lupa-search-box-input button .lupa-search-submit-icon::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:24px;position:absolute;right:0;top:0}.lupa-suggestion{font-weight:300}.lupa-search-box-product-details-section{justify-content:center}.lupa-search-box-product-details-section>div:not(:first-child){margin-top:4px}.lupa-search-box-product-regular-price{text-decoration:line-through;color:#9e9e9e}.lupa-more-results{font-size:16px;font-weight:300}#lupa-search-box-panel{box-shadow:0px 1px 1px rgba(22,22,22,.14),0px 2px 1px rgba(22,22,22,.12),0px 1px 3px rgba(22,22,22,.2);border-radius:24px;border:none;overflow:hidden}.lupa-suggestion-facet-label,.lupa-suggestion-facet-value{line-height:13px}.lupa-search-box-close-panel{text-align:right;padding:10px 24px;position:absolute;right:0;cursor:pointer}#lupa-search-results-toolbar{margin:0 0 12px;padding-right:8px}#lupa-search-results-toolbar.lupa-toolbar-bottom{justify-content:center;margin:24px 0}.lupa-search-results-summary{font-weight:300;font-size:18px;line-height:15px}.lupa-search-results-summary span{color:#3c53f4;font-weight:700}.lupa-page-number{min-width:48px;min-height:48px;color:#464646;font-weight:300;font-size:18px;display:flex;align-items:center;justify-content:center;border-radius:50%;padding:0}.lupa-page-number.lupa-page-number-selected,.lupa-page-number:hover{background:rgba(60,83,244,.08);font-weight:300}.lupa-page-arrow{font-size:0}.lupa-page-arrow::before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}.lupa-page-arrow:first-child::before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}#lupa-similar-query-text-component,.lupa-highlighted-search-text{color:#3c53f4}.lupa-similar-query-label{margin-bottom:18px;font-weight:300}.lupa-empty-results{font-weight:300;font-size:18px;margin-bottom:36px;color:#9e9e9e}.lupa-toolbar-right-title{display:flex;align-items:center;margin-right:8px}.lupa-select-dropdown{border-radius:8px}#lupa-select:after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:22px;content:"";position:absolute;right:4px;top:20px;pointer-events:none}.lupa-related-queries li{box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px;border-radius:8px;padding:16px 10px;border:1px solid rgba(0,0,0,0.1019607843);background-color:#fff}.lupa-related-queries li:hover{border-color:#3c53f4}.lupa-search-result-product-card{border-radius:8px;margin-bottom:28px;border:none;padding:8px}.lupa-search-result-product-contents{border:1px solid rgba(0,0,0,0.1019607843);box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px;border-radius:8px;padding:12px;background-color:#fff}.lupa-search-result-product-contents:hover{border-color:#3c53f4}.lupa-search-results-product-title-text{font-weight:300;line-height:20px}.lupa-search-result-product-details-section{z-index:1}.lupa-search-results-image-wrapper{padding-bottom:75%}.lupa-search-result-product-image-section{max-height:220px}.lupa-discount{display:inline;font-weight:700;font-size:32px;line-height:27px;margin-top:8px;color:#3c53f4}.lupa-custom-id{opacity:.5}.lupa-custom-brand{color:#3c53f4;font-weight:600}.lupa-final{display:inline;font-weight:700;font-size:32px;line-height:27px;margin-top:8px}.lupa-regular{text-decoration:line-through;color:#9e9e9e;display:inline-block;margin-left:4px}.lupa-fade-enter-active,.lupa-fade-leave-active{transition:opacity .25s ease-in-out}.lupa-fade-enter-from,.lupa-fade-leave-to{opacity:0}@media(max-width: 980px){.lupa-search-result-product-contents{padding:12px}}.lupa-search-box-product-addtocart button,.lupa-search-results-product-addtocart button{background:none;border:1px solid rgba(0,0,0,0.1019607843);padding:8px 16px;border-radius:8px;cursor:pointer}.lupa-search-box-product-addtocart button:hover,.lupa-search-results-product-addtocart button:hover{background-color:#3c53f4;color:#fff}.lupa-search-results-product-addtocart button{margin-top:10px;width:100%}.lupa-element-group-rating{display:flex;align-items:center;margin-bottom:8px}.lupa-total-ratings{position:relative;font-size:12px;margin-left:6px}.lupa-rating-wrapper,.lupa-ratings-base{width:75px}.lupa-total-ratings{margin-left:5px}.lupa-ratings{position:relative;height:24px;font-size:0}.lupa-ratings .lupa-stars{position:absolute;top:0;overflow:hidden}.lupa-ratings .lupa-base-stars,.lupa-ratings .lupa-stars{white-space:nowrap}.lupa-ratings .lupa-rating{display:inline-block}.lupa-ratings .lupa-rating::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:15px}.lupa-ratings .lupa-rating-not-highlighted{color:#afafaf}.lupa-ratings .lupa-rating-highlighted{color:#ffa41c}.lupa-search-result-filters{padding-right:24px;flex:30%;min-width:200px}.lupa-filter-title-text{margin-bottom:24px}.lupa-search-result-facet-display{border:none}.lupa-search-result-facet-display:first-child{border:none}.lupa-facet-label-text{font-weight:700;font-size:16px;line-height:24px}.lupa-facet-label-caret::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:22px;content:""}.lupa-term-label{font-weight:300;font-size:16px;line-height:1.15}.lupa-stats-facet-summary{margin-top:16px;font-size:16px;font-weight:300}.lupa-current-filter-list{display:flex;flex-wrap:wrap}.lupa-search-result-current-filters{border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-filter-value{flex-direction:row-reverse;display:flex;justify-content:flex-end;background-color:#3c53f4;padding:9px;border-radius:24px;margin:0 8px 8px 0}.lupa-search-result-filter-value .lupa-current-filter-label{display:none}.lupa-search-result-filter-value .lupa-current-filter-value{color:#fff;font-weight:300;font-size:14px}.lupa-search-result-filter-value .lupa-current-filter-action{display:flex;font-size:0}.lupa-search-result-filter-value .lupa-current-filter-action::before{color:#fff;margin-left:9px;width:16px;direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}.lupa-clear-all-filters{font-weight:300;font-size:16px;line-height:22px;color:#464646;display:flex;align-items:center;margin-top:16px}.lupa-clear-all-filters:before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";margin-right:10px;font-size:20px}.lupa-term-checkbox{border-radius:2px;border:2px solid #464646}.lupa-term-checkbox.checked{border-color:#3c53f4;background:#3c53f4}.lupa-term-checkbox.checked:after{border:none;border-left:2px solid #fff;border-bottom:2px solid #fff;display:inline-block;transform:rotate(-45deg);height:7px;width:12px;border-radius:0;top:-2px;content:" ";position:relative}.lupa-term-checkbox-label{font-size:16px;font-weight:300}.lupa-search-box-wrapper input{border-radius:24px}.lupa-mobile-toggle-filter-count{display:inline-flex;color:#fff;background:#3c53f4;border-radius:50%;width:20px;height:20px;justify-content:center;align-items:center}.lupa-category-top-mobile-filters .lupa-category-back{border:1px solid rgba(0,0,0,0.1019607843);cursor:pointer;padding:10px 5px;margin:10px 0}.lupa-category-top-mobile-filters .lupa-category-back::before{content:"<";display:inline-block}.lupa-term-filter{border-radius:8px}.lupa-search-result-top-filters{margin:16px 0 6px}.lupa-search-result-top-filters .lupa-search-result-facet-label{border-radius:8px}.lupa-search-result-top-filters .lupa-search-result-facet-label.lupa-has-filter{border:1px solid #3c53f4}.lupa-search-result-top-filters .lupa-search-result-facet-label.open{padding-bottom:10.5px}.lupa-search-result-top-filters .lupa-facet-label-caret{margin-left:8px;line-height:1}.lupa-search-result-top-filters .lupa-facet-content{margin-top:4px;border-radius:8px;box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px}.lupa-search-result-top-filters .lupa-search-result-facet-list.lupa-top-dropdown .lupa-terms-list{padding:5px}.lupa-search-result-top-filters .lupa-show-more-facet-results{margin:5px 0 10px;padding-bottom:6px;border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-top-filters .lupa-single-facet-clear{margin-top:10px;border:1px solid rgba(0,0,0,0.1019607843);border-radius:8px}.lupa-search-result-top-filters .lupa-single-facet-clear:hover{background:#fafafa}.lupa-search-result-top-filters .lupa-search-result-facet-stats-values{padding:10px 0}.lupa-toolbar-filters{border-top:1px solid rgba(0,0,0,0.1019607843);padding:8px 0}.lupa-toolbar-filters.expandable .lupa-filter-title-text{margin-bottom:0}.lupa-toolbar-filters.expandable .filter-values{margin-top:10px}.lupa-toolbar-filters .filter-values{align-items:center}.lupa-toolbar-filters .lupa-current-filter-list{padding:0}.lupa-toolbar-filters .lupa-clear-all-filters{margin:0}@media(max-width: 767px){.lupa-toolbar-filters{padding:16px;margin-right:0}.lupa-mobile-filter-sidebar .lupa-search-result-filters{padding-right:0}.lupa-mobile-filter-sidebar .lupa-filter-title-text{margin-bottom:0}.lupa-mobile-filter-sidebar .filter-values{margin-top:10px}.lupa-mobile-filter-sidebar .lupa-search-result-current-filters{padding:16px}.lupa-mobile-filter-sidebar .lupa-search-result-facet-display{border:1px solid rgba(0,0,0,0.1019607843);border-radius:8px;margin:10px 20px 20px}.lupa-mobile-filter-sidebar .lupa-clear-all-filters{margin-top:10px}.lupa-mobile-filter-sidebar .lupa-facet-label-text,.lupa-mobile-filter-sidebar .lupa-facet-label-caret{display:flex;align-items:center}}@media(max-width: 480px){.lupa-toolbar-filters .filter-values{flex-direction:column;align-items:flex-start}.lupa-toolbar-filters .lupa-clear-all-filters{margin:14px 0 0}}.lupa-filter-title-caret::after{content:""}:root{--vc-clr-primary: #000;--vc-clr-secondary: #090f207f;--vc-clr-white: #ffffff;--vc-icn-width: 1.2em;--vc-nav-width: 30px;--vc-nav-height: 30px;--vc-nav-border-radius: 0;--vc-nav-color: var(--vc-clr-primary);--vc-nav-color-hover: var(--vc-clr-secondary);--vc-nav-background: transparent;--vc-pgn-width: 12px;--vc-pgn-height: 4px;--vc-pgn-margin: 4px;--vc-pgn-border-radius: 0;--vc-pgn-background-color: var(--vc-clr-secondary);--vc-pgn-active-color: var(--vc-clr-primary)}.carousel__prev,.carousel__next{box-sizing:content-box;background:var(--vc-nav-background);border-radius:var(--vc-nav-border-radius);width:var(--vc-nav-width);height:var(--vc-nav-height);text-align:center;font-size:var(--vc-nav-height);padding:0;color:var(--vc-nav-color);display:flex;justify-content:center;align-items:center;position:absolute;border:0;cursor:pointer;margin:0 10px;top:50%;transform:translateY(-50%)}.carousel__prev:hover,.carousel__next:hover{color:var(--vc-nav-color-hover)}.carousel__next--disabled,.carousel__prev--disabled{cursor:not-allowed;opacity:.5}.carousel__prev{left:0}.carousel__next{right:0}.carousel--rtl .carousel__prev{left:auto;right:0}.carousel--rtl .carousel__next{right:auto;left:0}.carousel{position:relative;text-align:center;box-sizing:border-box;touch-action:pan-y;overscroll-behavior:none}.carousel.is-dragging{touch-action:none}.carousel *{box-sizing:border-box}.carousel__track{display:flex;padding:0 !important;position:relative}.carousel__viewport{overflow:hidden}.carousel__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.carousel__icon{width:var(--vc-icn-width);height:var(--vc-icn-width);fill:currentColor}.carousel__pagination{display:flex;justify-content:center;list-style:none;line-height:0;margin:10px 0 0}.carousel__pagination-button{display:block;border:0;margin:0;cursor:pointer;padding:var(--vc-pgn-margin);background:rgba(0,0,0,0)}.carousel__pagination-button::after{display:block;content:"";width:var(--vc-pgn-width);height:var(--vc-pgn-height);border-radius:var(--vc-pgn-border-radius);background-color:var(--vc-pgn-background-color)}.carousel__pagination-button:hover::after,.carousel__pagination-button--active::after{background-color:var(--vc-pgn-active-color)}.carousel__slide{scroll-snap-stop:auto;flex-shrink:0;margin:0;position:relative;display:flex;justify-content:center;align-items:center;transform:translateZ(0)}.lupa-search-product-recommendations-wrapper{width:100%}.lupa-recommendation-section-title{font-size:1.5rem;font-weight:700;margin-bottom:1rem;font-family:"Roboto",sans-serif}#lupa-search-results-products{background:#fff;padding-top:36px}.wrapper{background:#fafafa}
|
|
1
|
+
.slider-target,.slider-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing:border-box;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.slider-target{position:relative}.slider-base,.slider-connects{height:100%;position:relative;width:100%;z-index:1}.slider-connects{overflow:hidden;z-index:0}.slider-connect,.slider-origin{height:100%;position:absolute;right:0;top:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-style:flat;width:100%;will-change:transform;z-index:1}.slider-txt-dir-rtl.slider-horizontal .slider-origin{left:0;right:auto}.slider-vertical .slider-origin{top:-100%;width:0}.slider-horizontal .slider-origin{height:0}.slider-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.slider-touch-area{height:100%;width:100%}.slider-state-tap .slider-connect,.slider-state-tap .slider-origin{transition:transform .3s}.slider-state-drag *{cursor:inherit !important}.slider-tooltip-drag .slider-tooltip,.slider-tooltip-focus .slider-tooltip{display:none !important}.slider-tooltip-drag .slider-active .slider-tooltip,.slider-tooltip-drag.slider-state-drag .slider-tooltip:not(.slider-tooltip-hidden),.slider-tooltip-focus.slider-focused .slider-tooltip:not(.slider-tooltip-hidden){display:block !important}.slider-horizontal{height:var(--slider-height, 6px)}.slider-horizontal .slider-handle{height:var(--slider-handle-height, 16px);right:calc(var(--slider-handle-width, 16px)/2*-1);top:calc((var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2*-1 - 1px);width:var(--slider-handle-width, 16px)}.slider-vertical{height:var(--slider-vertical-height, 300px);width:var(--slider-height, 6px)}.slider-vertical .slider-handle{bottom:calc(var(--slider-handle-width, 16px)/2*-1);height:var(--slider-handle-width, 16px);right:calc((var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2*-1 - 1px);width:var(--slider-handle-height, 16px)}.slider-txt-dir-rtl.slider-horizontal .slider-handle{left:calc(var(--slider-handle-width, 16px)/2*-1);right:auto}.slider-base{background-color:var(--slider-bg, #d1d5db)}.slider-base,.slider-connects{border-radius:var(--slider-radius, 9999px)}.slider-connect{background:var(--slider-connect-bg, #10b981);cursor:pointer}.slider-draggable{cursor:ew-resize}.slider-vertical .slider-draggable{cursor:ns-resize}.slider-handle{background:var(--slider-handle-bg, #fff);border:var(--slider-handle-border, 0);border-radius:var(--slider-handle-radius, 9999px);box-shadow:var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));cursor:-webkit-grab;cursor:grab;height:var(--slider-handle-height, 16px);width:var(--slider-handle-width, 16px)}.slider-handle:focus{box-shadow:0 0 0 var(--slider-handle-ring-width, 3px) var(--slider-handle-ring-color, rgba(16, 185, 129, 0.188)),var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));outline:none}.slider-active{box-shadow:var(--slider-handle-shadow-active, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.42));cursor:-webkit-grabbing;cursor:grabbing}[disabled] .slider-connect{background:var(--slider-connect-bg-disabled, #9ca3af)}[disabled] .slider-handle,[disabled].slider-handle,[disabled].slider-target{cursor:not-allowed}[disabled] .slider-tooltip{background:var(--slider-tooltip-bg-disabled, #9ca3af);border-color:var(--slider-tooltip-bg-disabled, #9ca3af)}.slider-tooltip{background:var(--slider-tooltip-bg, #10b981);border:1px solid var(--slider-tooltip-bg, #10b981);border-radius:var(--slider-tooltip-radius, 5px);color:var(--slider-tooltip-color, #fff);display:block;font-size:var(--slider-tooltip-font-size, 0.875rem);font-weight:var(--slider-tooltip-font-weight, 600);line-height:var(--slider-tooltip-line-height, 1.25rem);min-width:var(--slider-tooltip-min-width, 20px);padding:var(--slider-tooltip-py, 2px) var(--slider-tooltip-px, 6px);position:absolute;text-align:center;white-space:nowrap}.slider-horizontal .slider-tooltip-top{bottom:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));left:50%;transform:translate(-50%)}.slider-horizontal .slider-tooltip-top:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-top-color:inherit;bottom:calc(var(--slider-tooltip-arrow-size, 5px)*-2);content:"";height:0;left:50%;position:absolute;transform:translate(-50%);width:0}.slider-horizontal .slider-tooltip-bottom{left:50%;top:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));transform:translate(-50%)}.slider-horizontal .slider-tooltip-bottom:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-bottom-color:inherit;content:"";height:0;left:50%;position:absolute;top:calc(var(--slider-tooltip-arrow-size, 5px)*-2);transform:translate(-50%);width:0}.slider-vertical .slider-tooltip-left{right:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-left:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-left-color:inherit;content:"";height:0;position:absolute;right:calc(var(--slider-tooltip-arrow-size, 5px)*-2);top:50%;transform:translateY(-50%);width:0}.slider-vertical .slider-tooltip-right{left:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-right:before{border:var(--slider-tooltip-arrow-size, 5px) solid rgba(0,0,0,0);border-right-color:inherit;content:"";height:0;left:calc(var(--slider-tooltip-arrow-size, 5px)*-2);position:absolute;top:50%;transform:translateY(-50%);width:0}.slider-horizontal .slider-origin>.slider-tooltip{left:auto;transform:translate(50%)}.slider-horizontal .slider-origin>.slider-tooltip-top{bottom:calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) + 1px)}.slider-horizontal .slider-origin>.slider-tooltip-bottom{top:calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip{top:auto;transform:translateY(calc((var(--slider-tooltip-line-height, 1.25rem) - var(--slider-tooltip-py, 2px)) * -1 + 1px))}.slider-vertical .slider-origin>.slider-tooltip-left{right:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip-right{left:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px))/2 + var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px)}:root{--lupa-available-height: 100%}#lupa-search-box-panel{position:absolute;width:100%;height:auto;border:1px solid rgba(0,0,0,0.1019607843);background:#fff;box-shadow:0px 4px 6px rgba(0,0,0,.25);z-index:5000;border-radius:0;font-family:"Roboto",sans-serif;box-sizing:border-box}#lupa-search-box-panel:empty{display:none}@media(max-width: 767px){#lupa-search-box-panel{max-height:var(--lupa-available-height);overflow-y:auto}}.lupa-main-panel{display:grid;grid-template:"left right";grid-template-columns:minmax(50px, 35%) minmax(250px, 1fr)}@media(max-width: 767px){.lupa-main-panel{display:block}}.lupa-panel-suggestion-index{grid-area:left;word-break:break-word}@media(min-width: 767px){.lupa-panel-suggestion-index{border-right:1px solid rgba(0,0,0,0.1019607843)}}.lupa-panel-document-index{grid-area:right;word-break:break-word}.lupa-more-results{cursor:pointer;border-top:1px solid rgba(0,0,0,0.1019607843);padding:5px 10px;color:#161616;background-color:#fff;font-size:14px;line-height:24px}.lupa-more-results:hover{background-color:rgba(0,0,0,.05);color:#3c53f4}.lupa-search-box-no-results{text-align:center;color:#161616;font-size:14px;line-height:24px}#lupa-search-box-panel{display:flex;justify-content:space-between;flex-direction:column}.lupa-more-results{text-align:center}#lupa-search-box{width:100%}.lupa-search-box-wrapper{position:relative}.lupa-panel-title{padding:12px 20px;font-weight:700;font-size:17px}.lupa-search-box-documents-go-to-results-wrapper{padding:15px}.lupa-search-box-documents-go-to-results-button{background-color:#fff;border-radius:24px;padding:9px 0;width:100%;display:flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,0.1019607843);cursor:pointer}.lupa-suggestion{cursor:pointer;display:flex;flex-wrap:wrap;align-items:center;color:#161616;background-color:#fff;padding:4px 20px;font-size:16px;line-height:24px}.lupa-suggestion strong{color:#161616}.lupa-suggestion-value{margin-right:7px}.lupa-suggestion-facet{font-size:13px}.lupa-suggestion-facet-label{margin-right:2px}.lupa-suggestion-facet-value{font-weight:bold}.lupa-suggestion-highlighted,.lupa-suggestion:hover{cursor:pointer;color:#3c53f4;background-color:rgba(0,0,0,.05)}.lupa-suggestion-highlighted strong,.lupa-suggestion:hover strong{color:#3c53f4}.lupa-suggestion:hover{text-decoration:underline}.lupa-search-box-input-field{position:relative !important;background:rgba(0,0,0,0) !important}.lupa-search-box-input-field,.lupa-hint{color:#161616;height:48px;padding:0 16px;line-height:1.5;font-size:16px;font-family:"Roboto",sans-serif;width:100%}.lupa-search-box-input-field{border:1px solid rgba(0,0,0,0.1019607843);color:#161616}.lupa-hint{opacity:.5;position:absolute !important;pointer-events:none;border:1px solid rgba(0,0,0,0)}.lupa-input-clear{display:none}.lupa-search-box-history-item{cursor:pointer}.lupa-search-box-history-item-content{display:flex;justify-content:space-between}.lupa-search-box-history-item-text{width:100%;display:flex;align-items:center;line-height:24px;font-size:16px;padding:4px 20px;color:#161616}.lupa-search-box-history-item-text:hover,.lupa-search-box-history-item-text.lupa-search-box-history-item-highlighted{background-color:rgba(0,0,0,.05);color:#161616}.lupa-search-box-history-item-text:hover{text-decoration:underline}.lupa-search-box-history-item-clear{display:flex;align-items:center;padding:4px 20px;color:#161616;font-size:24px}.lupa-search-box-history-item-clear:hover{color:#161616;background-color:rgba(0,0,0,.05)}.lupa-search-box-history-clear-all{text-align:center;cursor:pointer;border-top:1px solid rgba(0,0,0,0.1019607843);padding:4px 20px;line-height:24px;font-size:14px;color:#161616}.lupa-search-box-history-clear-all:hover{background-color:rgba(0,0,0,.05);color:#161616}.lupa-search-box-product{padding:10px;font-size:14px;display:flex;cursor:pointer;text-decoration:inherit;color:inherit}.lupa-search-box-product:hover,.lupa-search-box-product.lupa-search-box-product-highlighted{text-decoration:none;background-color:rgba(0,0,0,.05)}.lupa-search-box-product:hover .lupa-search-box-product-title,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-title{color:#161616}.lupa-search-box-product:hover .lupa-search-box-product-custom,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-custom{color:#161616}.lupa-search-box-product:hover .lupa-search-box-product-price,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-price{color:#3c53f4}.lupa-search-box-product:hover .lupa-search-box-product-regular-price,.lupa-search-box-product.lupa-search-box-product-highlighted .lupa-search-box-product-regular-price{color:#161616}.lupa-search-box-product-details-section{font-family:"Roboto",sans-serif}.lupa-search-box-product-details-section{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.lupa-search-box-product-image-section{min-width:85px;flex:0 1}.lupa-search-box-image-wrapper,.lupa-search-box-image{width:70px;height:70px}.lupa-search-box-image{object-fit:contain}.lupa-search-box-product-title{font-size:16px;line-height:15px;color:#161616}.lupa-search-box-product-custom{font-size:14px;line-height:15px;color:#161616}.lupa-search-box-product-price{font-size:16px;line-height:15px;color:#3c53f4}.lupa-search-box-product-regular-price{font-size:14px;line-height:15px;color:#161616;font-weight:normal}.lupa-search-box-product-description{max-height:42px;line-height:14px;color:#161616;overflow:hidden}.lupa-search-box-product-add-to-cart-section{flex-grow:1;flex-shrink:0;display:flex;justify-content:flex-end;align-items:center}.lupa-search-result-facets{font-family:"Roboto",sans-serif}.lupa-facets-title{font-size:16px;line-height:1.1;font-weight:700;padding:0 0 10px;color:#161616}.lupa-search-result-facet-display{border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-display:first-child{border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-label{justify-content:space-between;display:flex;font-size:14px;line-height:21px;font-weight:700;padding:10.5px;color:#161616;cursor:pointer}.lupa-search-result-facet-label:hover{color:#3c53f4}.lupa-search-result-facet-label.open{padding:10.5px 10.5px 0}.lupa-facet-level{margin-left:25px}.lupa-facet-label-caret::after{content:"⌄";font-family:"Material Design Icons";color:#161616;display:block;font-weight:400;overflow:hidden;text-align:center}.lupa-facet-label-caret.open::after{transform:rotate(180deg)}.lupa-facet-content{padding:5px 10px 20px}.lupa-facet-term{padding:4px 5px;margin:16px 0 0}.lupa-term-checkbox-label{width:100%;padding-left:8px;display:flex;justify-content:space-between;align-items:center}.lupa-facet-term{cursor:pointer;display:flex;align-items:center;font-size:14px;color:#161616}.lupa-facet-term:hover{background:rgba(0,0,0,.05)}.lupa-facet-term.checked{font-weight:bold}.lupa-term-count{color:#161616}.lupa-term-checkbox{display:inline-block;height:18px;width:18px;box-sizing:border-box;border:2px solid #3c53f4;border-radius:0px;content:"";display:flex;justify-content:center;align-items:center}.lupa-term-checkbox.checked::after{border:3px solid #3c53f4;border-radius:0px;display:inline-block;content:""}.lupa-show-more-facet-results{justify-content:center}.lupa-term-filter{width:100%;padding:8px;box-sizing:border-box;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-show-more-facet-results{color:#161616;font-size:14px}.lupa-show-more-facet-results:hover{color:#161616}.lupa-stats-facet-summary{text-align:center;font-size:14px}.lupa-stats-slider-wrapper{margin:10px 0 0;padding:0 8px}.lupa-stats-slider-wrapper .slider-connects{background-color:rgba(60,83,244,.3)}.lupa-stats-slider-wrapper .slider-connect{background-color:#3c53f4}.lupa-stats-slider-wrapper .slider-handle{background:#3c53f4;border-radius:50%;border:0px solid #3c53f4;z-index:3;cursor:pointer}.lupa-stats-slider-wrapper .slider-handle:hover{background:#3c53f4}.lupa-stats-range-label{font-size:12px;margin:0 0 5px}.lupa-stats-facet-summary-input{display:flex;align-items:center;justify-content:center}.lupa-stats-facet-summary-input input{width:100%;padding:8px;box-sizing:border-box;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-stats-facet-summary-input .lupa-stats-from,.lupa-stats-facet-summary-input .lupa-stats-to{display:flex;align-items:center}.lupa-stats-facet-summary-input .lupa-stats-separator{margin:0 10px}.lupa-stats-facet-summary-input span{padding:0 5px}.lupa-facets-button-filter{background-color:#fff;border-radius:24px;padding:9px 0;width:100%;display:flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-list.lupa-top-dropdown{display:flex;flex-wrap:wrap}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-display{margin:0 10px 10px 0;border-bottom:none;border-top:none}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-facet-content{position:absolute;background:#fff;z-index:10;border:1px solid rgba(0,0,0,0.1019607843);min-width:220px}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-terms-list{overflow-y:auto;max-height:300px;margin:2px 0 0}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-label{border:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-search-result-facet-label.lupa-has-filter{border-width:1px}.lupa-search-result-facet-list.lupa-top-dropdown .lupa-single-facet-clear{cursor:pointer;text-align:center;margin:3px 0 0;padding:5px 0 3px;font-size:5px 0 3px;border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-current-filters{font-family:"Roboto",sans-serif}.lupa-current-filter-title{display:flex;align-items:center;justify-content:space-between;font-size:16px;line-height:1.1;font-weight:700;padding:0;color:#161616}.lupa-current-filter-list{margin:0;padding:0 10px 5px}.lupa-search-result-current-filters{margin:0 0 25px}.lupa-clear-all-filters{cursor:pointer;color:#0c26d7;padding:0 10.5px;margin:0 0 31.5px;font-size:14px}.lupa-clear-all-filters:hover{color:#091da7}.lupa-search-result-filter-value{display:flex;align-items:center;flex-wrap:wrap;margin:10.5px 0;font-size:14px}.lupa-current-filter-action{padding:0 5px 0 0;font-size:17px;color:#3c53f4;cursor:pointer}.lupa-current-filter-action:hover{color:#3c53f4}.lupa-current-filter-label,.lupa-current-filter-value{margin:0 0 0 5px}.lupa-current-filter-label{color:#161616}.lupa-current-filter-value{color:#3c53f4}.lupa-filter-title-caret::after{content:"⌄";font-family:"Material Design Icons";color:#161616;font-size:24px;display:block;font-weight:400;overflow:hidden;text-align:center}.lupa-filter-title-caret.open::after{transform:rotate(180deg)}.lupa-filter-count{font-size:16px;color:#3c53f4}.lupa-toolbar-filters,.lupa-toolbar-filters-desktop{margin-right:12px}.lupa-toolbar-filters .filter-values,.lupa-toolbar-filters-desktop .filter-values{display:flex}.lupa-result-page-title{font-size:16px;margin:0 0 38px;font-family:"Roboto",sans-serif}.lupa-search-result-filters{padding:0 4.6% 0 0}#lupa-search-results,.top-layout-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:flex-start}.search-content{width:100%}.lupa-search-result-filters{flex:25%;flex-grow:1;flex-shrink:0;box-sizing:border-box}#lupa-search-results-products{position:relative;padding:0 0 0 1.6%;width:100%}.lupa-products{display:flex;align-self:flex-start;flex-wrap:wrap;margin:0 0 31.5px -16px}.lupa-loader{background-color:#fff;display:flex;height:calc(100% - 0px);opacity:.5;position:absolute;z-index:555}.lupa-search-result-product-card{box-sizing:border-box}#lupa-search-results-did-you-mean{font-family:"Roboto",sans-serif}.lupa-suggested-search-text{font-weight:bold}.lupa-highlighted-search-text{font-weight:bold;font-style:italic}#lupa-search-results-did-you-mean{margin-bottom:10px}.lupa-did-you-mean{text-decoration:none}.lupa-did-you-mean:hover{text-decoration:underline;cursor:pointer}#lupa-select{position:relative;font-family:"Roboto",sans-serif;color:#161616;text-indent:.01em}.lupa-select-dropdown{cursor:pointer;padding:20px 25px 4px 8px;font-family:"Roboto",sans-serif;background:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.1019607843);border-radius:0;font-size:14px;height:48px;line-height:1.5;vertical-align:baseline;box-sizing:border-box;appearance:none}.lupa-select-dropdown:focus{outline:none;box-shadow:0 0 3px 1px #6c7ef7}.lupa-select-label{font-family:"Roboto",sans-serif;font-size:12px;line-height:1;position:absolute;pointer-events:none;top:8px;left:8px}.lupa-search-results-summary{display:flex;align-items:center}#lupa-search-results-toolbar{display:flex;flex-direction:row;justify-content:space-between;margin:0 0 40px}.lupa-toolbar-left{display:flex}.lupa-toolbar-right{display:flex;flex-direction:row}#lupa-search-results-page-select{display:flex;flex-direction:row;align-items:center}#lupa-search-results-layout-selection{display:flex;flex-direction:row;align-items:center}#lupa-search-results-layout-selection div{margin:0 16px 0 0}.lupa-search-results-summary{color:#161616;font-family:"Roboto",sans-serif;font-size:14px}#lupa-search-results-page-size{margin:0}#lupa-search-results-page-size .lupa-select-dropdown{width:125px}.lupa-search-results-sort{margin:0 0 0 8px}.lupa-filter-clear{cursor:pointer}#lupa-search-results-page-select{font-family:"Roboto",sans-serif}.lupa-page-number-separator{margin:0 12px 0 0}.lupa-page-number{cursor:pointer;color:#3c53f4;font-size:12px;padding:0 5.25px;margin:0 12px 0 0}.lupa-page-number:hover{color:#161616}.lupa-page-number.lupa-page-number-selected{color:#161616;font-weight:700}.lupa-page-arrow{cursor:pointer;font-weight:700;margin:0 12px 0 0;padding:0 8px}.lupa-page-arrow:before{line-height:31.5px;color:#161616;content:"";font-family:"Roboto",sans-serif;font-size:11px}.lupa-page-arrow:hover:before{color:#3c53f4}.lupa-search-result-product-card{height:auto;min-height:250px;border:1px solid rgba(0,0,0,0.1019607843);padding:12px;margin:0}.lupa-out-of-stock{opacity:.5}.lupa-search-result-product-contents{height:100%;display:flex;flex-direction:column;font-family:"Roboto",sans-serif;font-size:16px}.lupa-search-result-product-contents-list{flex-direction:row}.lupa-search-result-product-details-section{display:flex;flex-direction:column;justify-content:space-between;height:100%}.lupa-search-results-image-wrapper{padding-bottom:125%;display:block;height:0;overflow:hidden;position:relative;z-index:1;display:flex;justify-content:center}.lupa-search-results-image{width:100%;height:100%;object-fit:contain;max-width:240px;max-height:195px;margin:auto;position:absolute}.lupa-search-result-product-image-section{cursor:pointer;border:none;padding:6px 4px 12px;margin:0}.lupa-search-results-product-title{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;font-size:16px;margin:0 0 6px;line-height:21px}.lupa-search-results-product-title-text{font-weight:bold;color:#161616}.lupa-search-results-product-title-text.lupa-title-link{text-decoration:none;color:#161616}.lupa-search-results-product-title-text.lupa-title-link:hover{text-decoration:underline;color:#3c53f4}.lupa-search-results-product-regular-price{font-size:16px;font-weight:700;padding:10px 8px 0 5px}#lupa-search-results-rating{display:flex;flex-direction:row;align-items:center;width:auto;margin:0 0 15.75px}.lupa-ratings{display:flex;flex-direction:row;align-items:center;width:auto}.lupa-ratings-base,.lupa-rating-wrapper{display:flex;width:90px}.lupa-rating-wrapper{position:absolute}.lupa-ratings-highlighted{display:flex;overflow:hidden}.lupa-total-ratings{color:#161616;text-decoration:none}.lupa-total-ratings:hover{color:#3c53f4;text-decoration:underline}.lupa-search-result-product-contents-list .lupa-search-result-product-card{min-height:50px}.lupa-search-result-product-contents-list .lupa-search-results-image{width:240px;height:195px;object-fit:contain;margin:auto;position:relative}.lupa-search-result-product-contents-list .lupa-search-result-product-details-section{width:100%;padding:15px}.lupa-search-result-product-contents-list .lupa-search-results-image{max-width:120px;max-height:97.5px}.lupa-search-result-product-contents-list .lupa-search-results-product-addtocart{order:3;margin:0 -16px 0;position:static}.lupa-search-result-product-contents-list .lupa-search-results-product-addtocart button{padding:8px 32px}.lupa-search-results-product-description{max-height:200px;font-size:14px;opacity:.75;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical}.lupa-empty-results{text-align:center;width:100%;font-size:14px;font-family:"Roboto",sans-serif;color:#161616}.lupa-empty-results .lupa-empty-page-action{cursor:pointer;text-decoration:underline}.lupa-mobile-filter-sidebar{position:fixed;width:100%;height:var(--lupa-full-height);left:0;top:0;bottom:0;z-index:555;background:rgba(0,0,0,0);display:flex}.lupa-mobile-filter-sidebar .lupa-mobile-sidebar-content{height:var(--lupa-full-height);width:100%;z-index:555;background:#fff}.lupa-mobile-filter-sidebar .lupa-sidebar-close{background:rgba(0,0,0,.6);height:var(--lupa-full-height);width:30px}.lupa-sidebar-top{display:flex;align-items:center;justify-content:space-between;height:48px;padding:0 13.5px 0 0;border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-sidebar-title{margin-left:15px;font-weight:700;font-size:16px;font-family:"Roboto",sans-serif;color:#161616}.lupa-sidebar-filter-options .lupa-facets-title{display:none}.lupa-filter-toggle-mobile:after{font-size:24px;color:#161616;content:"✖";line-height:inherit;font-family:"Roboto",sans-serif;vertical-align:middle;display:inline-block;font-weight:400;overflow:hidden;text-align:center}.lupa-sidebar-filter-options{overflow-y:scroll;height:calc(100% - 48px)}#lupa-search-results-toolbar.lupa-toolbar-mobile{display:none}.lupa-category-top-mobile-filters{display:none}.lupa-filters-mobile{display:none}.lupa-mobile-toggle{font-family:"Roboto",sans-serif;font-size:14px;color:#161616;width:208px;border-radius:8px;display:none;padding:15px 0;border:1px solid rgba(0,0,0,0.1019607843);line-height:16px;text-align:center;z-index:2}@media(max-width: 767px){.lupa-mobile-toggle{display:block}.lupa-category-top-mobile-filters{display:block}.lupa-filters-mobile{display:block;border-top:1px solid rgba(0,0,0,0.1019607843)}.lupa-filters-mobile.lupa-search-result-current-filters.expandable{padding:15px 0;margin:-20px 0 20px}#lupa-search-results-layout-selection{display:none}.lupa-search-results-summary{display:none}#lupa-search-results-page-size{display:none}#lupa-search-results-toolbar.lupa-toolbar-top{display:none}#lupa-search-results-toolbar.lupa-toolbar-mobile{display:flex}.lupa-toolbar-bottom .lupa-toolbar-right{display:none}.lupa-toolbar-mobile .lupa-toolbar-left{display:none}#lupa-search-results-toolbar{justify-content:center}#lupa-search-results-rating{flex-direction:column;align-items:normal}#lupa-search-results-rating .lupa-total-ratings{margin-left:0;margin-top:5px}.lupa-search-result-filters{display:none}.lupa-mobile-filter-sidebar .lupa-search-result-filters{display:flex;flex-direction:column}#lupa-search-results-products{padding:0}.lupa-select-dropdown{width:208px}.lupa-facets-title{padding:16px}.lupa-search-result-current-filters.expandable{padding:16px;border-bottom:1px solid rgba(0,0,0,0.1019607843);margin:0}.lupa-clear-all-filters{margin:0}#lupa-search-results-did-you-mean{margin-bottom:10px}.lupa-products{margin-left:0}}@media(max-width: 479px){.lupa-mobile-toggle{width:139px}.lupa-select-dropdown{width:139px}}@media(max-width: 350px){.lupa-mobile-toggle{width:100px}.lupa-select-dropdown{width:100px}}@media(max-width: 767px){.lupa-search-result-filters{flex:100%;padding:0}.lupa-search-result-facets{width:100%}.lupa-search-result-facet-display{padding:0 15px}}@media(max-width: 1024px){#lupa-search-results-badges>#lupa-badges{top:-16px}#lupa-search-results-badges>#lupa-badges .lupa-badge{width:32px;height:32px;font-size:11px}}#lupa-search-results-badges{position:relative}#lupa-badges{display:flex;position:absolute;font-family:"Roboto",sans-serif;top:-24px;z-index:1}#lupa-badges .tl{left:-10px}#lupa-badges .tr{right:-10px}.lupa-badge{width:48px;height:48px;font-size:14px;margin:0 8px 0 0;font-weight:700;border-radius:50%}.lupa-text-badges{display:flex}.lupa-image-badges{display:flex}.lupa-image-badges img{width:100%}.lupa-text-badge{color:#fff;background:#3c53f4;display:flex;align-items:center;justify-content:center;text-align:center}#lupa-badges{flex-direction:column;top:0;pointer-events:none;z-index:1000}.lupa-discount-badge{background:#e0232f;color:#fff;padding:4px;font-weight:700}.lupa-preorder-badge{background:#4b81eb;color:#fff}.lupa-generated-badges{display:flex;flex-direction:column}.lupa-dynamic-badge{cursor:pointer;pointer-events:all;display:flex;font-weight:600;font-size:14px;line-height:20px;padding:4px;margin-bottom:4px;margin-right:auto;white-space:nowrap}.lupa-dynamic-badge .lupa-badge-title{font-weight:700;letter-spacing:-0.6px;display:flex;align-items:center;justify-content:center;min-width:42px}.lupa-dynamic-badge .lupa-badge-title img{max-height:20px}.lupa-dynamic-badge .lupa-badge-full-text{display:none;margin-left:10px}.lupa-dynamic-badge:hover .lupa-badge-full-text{display:inline-block}#lupa-search-results-breadcrumbs{margin:0 0 24px;font-size:12px}@media(min-width: 767px){#lupa-search-results-breadcrumbs{max-width:1228px;box-sizing:border-box;width:100%}}@media(max-width: 767px){#lupa-search-results-breadcrumbs{display:none}}#lupa-search-results-breadcrumbs .lupa-search-results-breadcrumb-link{text-decoration:none;color:#0c26d7}#lupa-search-results-breadcrumbs .lupa-search-results-breadcrumb-link:hover{text-decoration:underline;color:#091da7}#lupa-search-results-similar-queries,#lupa-search-results-similar-results{margin-top:20px}.lupa-similar-queries-label,.lupa-similar-results-label{font-size:20px;font-family:"Roboto",sans-serif;font-weight:700;line-height:1.1;margin-top:0;margin-bottom:8px}.lupa-similar-results-label{margin-bottom:8px}.lupa-similar-query-label{margin-bottom:48px;font-weight:400;line-height:1.5;color:#4f4f4f;font-family:"Roboto",sans-serif}.lupa-similar-query-value{font-size:16px}.lupa-similar-query-link:hover{text-decoration:underline;cursor:pointer}.lupa-similar-query-crossed{text-decoration:line-through}.lupa-category-filter{padding:0;font-family:"Roboto",sans-serif;margin:0 0 25px}.lupa-category-back{padding:13px 0}.lupa-category-back a{color:#161616;font-size:16px;line-height:20px;font-weight:700;text-decoration:none !important}.lupa-category-back a:hover{color:#3c53f4}.lupa-current-category,.lupa-child-category-item{padding:10px 0 10px 25px}.lupa-current-category a,.lupa-child-category-item a{text-decoration:none !important;color:#161616;font-size:16px;line-height:16px}.lupa-current-category a:hover,.lupa-child-category-item a:hover{color:#3c53f4}.lupa-child-category-item-active,.lupa-current-category-active{color:#3c53f4}.lupa-child-category-list{padding:0 0 0 10px}.lupa-category-overview{margin:30px 0 50px}.lupa-category-title{font-weight:600;font-size:14px;margin:0 0 15px}.lupa-category-top-mobile-filters .lupa-child-category-list{display:flex;overflow:auto;padding:15px 0}.lupa-category-top-mobile-filters .lupa-child-category-list .lupa-child-category-item{white-space:nowrap}.lupa-related-queries-title,.lupa-related-query-label{font-family:"Roboto",sans-serif}.lupa-related-queries ul{display:flex;padding:0;list-style:none;margin:20px 9px 30px -6px}.lupa-related-queries li{flex:1 1 0;box-sizing:border-box;text-align:center;padding:10px}.lupa-related-queries li a{cursor:pointer}.lupa-related-query-label{margin-top:10px}.lupa-related-query-image-wrapper{max-width:100%}.lupa-related-query-image-wrapper img{max-height:120px;max-width:150px;width:100%;object-fit:contain}.lupa-related-query-image{min-height:120px}.lupa-related-query-count{display:inline-block;margin-left:5px;opacity:.5}.lupa-related-queries li:not(:last-child){margin:0 16px 0 0}.lupa-related-queries li.lupa-selected-related-query-filter{border:1px solid #3c53f4}@media(max-width: 767px){.lupa-related-queries ul{margin:20px -2px 30px;flex-wrap:wrap}.lupa-related-queries ul li{flex-basis:calc(50% - 60px)}.lupa-related-queries ul li:not(:last-child),.lupa-related-queries ul li:last-child{margin:10px}}.lupa-redirections-suggestion-label{font-size:22px;margin-bottom:32px}.lupa-spinner-wrapper{width:100%;min-height:280px;overflow:hidden}.lupa-spinner{color:#555;display:flex;justify-content:center;position:relative;width:100%;padding-top:100px;padding-right:72px}.lupa-spinner div{transform-origin:40px 40px;animation:lupa-spinner 1.2s linear infinite}.lupa-spinner div:after{content:" ";display:block;position:absolute;top:3px;left:37px;width:6px;height:18px;border-radius:20%;background:#555}.lupa-spinner div:nth-child(1){transform:rotate(0deg);animation-delay:-1.1s}.lupa-spinner div:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.lupa-spinner div:nth-child(3){transform:rotate(60deg);animation-delay:-0.9s}.lupa-spinner div:nth-child(4){transform:rotate(90deg);animation-delay:-0.8s}.lupa-spinner div:nth-child(5){transform:rotate(120deg);animation-delay:-0.7s}.lupa-spinner div:nth-child(6){transform:rotate(150deg);animation-delay:-0.6s}.lupa-spinner div:nth-child(7){transform:rotate(180deg);animation-delay:-0.5s}.lupa-spinner div:nth-child(8){transform:rotate(210deg);animation-delay:-0.4s}.lupa-spinner div:nth-child(9){transform:rotate(240deg);animation-delay:-0.3s}.lupa-spinner div:nth-child(10){transform:rotate(270deg);animation-delay:-0.2s}.lupa-spinner div:nth-child(11){transform:rotate(300deg);animation-delay:-0.1s}.lupa-spinner div:nth-child(12){transform:rotate(330deg);animation-delay:0s}@keyframes lupa-spinner{0%{opacity:1}100%{opacity:0}}.lupa-search-result-product-card{width:100%}.lupa-recommended-products .lupa-search-result-product-card{height:100%}.lupa-recommended-products .lupa-search-result-product-details-section{align-items:flex-start}.lupa-recommended-products .lupa-search-results-product-element{text-align:left}.lupa-recommended-products .carousel__track{margin-top:10px !important;margin-bottom:10px !important}.lupa-search-product-recommendations-wrapper{width:100%}.lupa-search-product-recommendations-wrapper .lupa-products .lupa-search-result-product-card{height:auto}.lupa-search-box-product-title{font-weight:300}#lupa-search-box-input input{box-sizing:border-box}#lupa-search-box-input::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:24px;position:absolute;right:16px;top:12px}#lupa-search-box-input button{cursor:pointer;position:absolute;right:16px;top:12px;width:20px;height:20px;z-index:100;background:none;border:rgba(0,0,0,0)}#lupa-search-box-input button .lupa-search-submit-icon::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:24px;position:absolute;right:0;top:0}.lupa-suggestion{font-weight:300}.lupa-search-box-product-details-section{justify-content:center}.lupa-search-box-product-details-section>div:not(:first-child){margin-top:4px}.lupa-search-box-product-regular-price{text-decoration:line-through;color:#9e9e9e}.lupa-more-results{font-size:16px;font-weight:300}#lupa-search-box-panel{box-shadow:0px 1px 1px rgba(22,22,22,.14),0px 2px 1px rgba(22,22,22,.12),0px 1px 3px rgba(22,22,22,.2);border-radius:24px;border:none;overflow:hidden}.lupa-suggestion-facet-label,.lupa-suggestion-facet-value{line-height:13px}.lupa-search-box-close-panel{text-align:right;padding:10px 24px;position:absolute;right:0;cursor:pointer}#lupa-search-results-toolbar{margin:0 0 12px;padding-right:8px}#lupa-search-results-toolbar.lupa-toolbar-bottom{justify-content:center;margin:24px 0}.lupa-search-results-summary{font-weight:300;font-size:18px;line-height:15px}.lupa-search-results-summary span{color:#3c53f4;font-weight:700}.lupa-page-number{min-width:48px;min-height:48px;color:#464646;font-weight:300;font-size:18px;display:flex;align-items:center;justify-content:center;border-radius:50%;padding:0}.lupa-page-number.lupa-page-number-selected,.lupa-page-number:hover{background:rgba(60,83,244,.08);font-weight:300}.lupa-page-arrow{font-size:0}.lupa-page-arrow::before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}.lupa-page-arrow:first-child::before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}#lupa-similar-query-text-component,.lupa-highlighted-search-text{color:#3c53f4}.lupa-similar-query-label{margin-bottom:18px;font-weight:300}.lupa-empty-results{font-weight:300;font-size:18px;margin-bottom:36px;color:#9e9e9e}.lupa-toolbar-right-title{display:flex;align-items:center;margin-right:8px}.lupa-select-dropdown{border-radius:8px}#lupa-select:after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:22px;content:"";position:absolute;right:4px;top:20px;pointer-events:none}.lupa-related-queries li{box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px;border-radius:8px;padding:16px 10px;border:1px solid rgba(0,0,0,0.1019607843);background-color:#fff}.lupa-related-queries li:hover{border-color:#3c53f4}.lupa-search-result-product-card{border-radius:8px;margin-bottom:28px;border:none;padding:8px}.lupa-search-result-product-contents{border:1px solid rgba(0,0,0,0.1019607843);box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px;border-radius:8px;padding:12px;background-color:#fff}.lupa-search-result-product-contents:hover{border-color:#3c53f4}.lupa-search-results-product-title-text{font-weight:300;line-height:20px}.lupa-search-result-product-details-section{z-index:1}.lupa-search-results-image-wrapper{padding-bottom:75%}.lupa-search-result-product-image-section{max-height:220px}.lupa-discount{display:inline;font-weight:700;font-size:32px;line-height:27px;margin-top:8px;color:#3c53f4}.lupa-custom-id{opacity:.5}.lupa-custom-brand{color:#3c53f4;font-weight:600}.lupa-final{display:inline;font-weight:700;font-size:32px;line-height:27px;margin-top:8px}.lupa-regular{text-decoration:line-through;color:#9e9e9e;display:inline-block;margin-left:4px}.lupa-fade-enter-active,.lupa-fade-leave-active{transition:opacity .25s ease-in-out}.lupa-fade-enter-from,.lupa-fade-leave-to{opacity:0}@media(max-width: 980px){.lupa-search-result-product-contents{padding:12px}}.lupa-search-box-product-addtocart button,.lupa-search-results-product-addtocart button{background:none;border:1px solid rgba(0,0,0,0.1019607843);padding:8px 16px;border-radius:8px;box-sizing:border-box;cursor:pointer}.lupa-search-box-product-addtocart button:hover,.lupa-search-results-product-addtocart button:hover{background-color:#3c53f4;color:#fff}.lupa-search-results-product-addtocart button{margin-top:10px;width:100%}.lupa-element-group-rating{display:flex;align-items:center;margin-bottom:8px}.lupa-total-ratings{position:relative;font-size:12px;margin-left:6px}.lupa-rating-wrapper,.lupa-ratings-base{width:75px}.lupa-total-ratings{margin-left:5px}.lupa-ratings{position:relative;height:24px;font-size:0}.lupa-ratings .lupa-stars{position:absolute;top:0;overflow:hidden}.lupa-ratings .lupa-base-stars,.lupa-ratings .lupa-stars{white-space:nowrap}.lupa-ratings .lupa-rating{display:inline-block}.lupa-ratings .lupa-rating::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";font-size:15px}.lupa-ratings .lupa-rating-not-highlighted{color:#afafaf}.lupa-ratings .lupa-rating-highlighted{color:#ffa41c}.lupa-search-result-filters{padding-right:24px;flex:30%;min-width:200px}.lupa-filter-title-text{margin-bottom:24px}.lupa-search-result-facet-display{border:none}.lupa-search-result-facet-display:first-child{border:none}.lupa-facet-label-text{font-weight:700;font-size:16px;line-height:24px}.lupa-facet-label-caret::after{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:22px;content:""}.lupa-term-label{font-weight:300;font-size:16px;line-height:1.15}.lupa-stats-facet-summary{margin-top:16px;font-size:16px;font-weight:300}.lupa-current-filter-list{display:flex;flex-wrap:wrap}.lupa-search-result-current-filters{border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-filter-value{flex-direction:row-reverse;display:flex;justify-content:flex-end;background-color:#3c53f4;padding:9px;border-radius:24px;margin:0 8px 8px 0}.lupa-search-result-filter-value .lupa-current-filter-label{display:none}.lupa-search-result-filter-value .lupa-current-filter-value{color:#fff;font-weight:300;font-size:14px}.lupa-search-result-filter-value .lupa-current-filter-action{display:flex;font-size:0}.lupa-search-result-filter-value .lupa-current-filter-action::before{color:#fff;margin-left:9px;width:16px;direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-size:20px;content:""}.lupa-clear-all-filters{font-weight:300;font-size:16px;line-height:22px;color:#464646;display:flex;align-items:center;margin-top:16px}.lupa-clear-all-filters:before{direction:ltr;display:inline-block;font-family:"Material Design Icons";font-size:16px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;content:"";margin-right:10px;font-size:20px}.lupa-term-checkbox{border-radius:2px;border:2px solid #464646}.lupa-term-checkbox.checked{border-color:#3c53f4;background:#3c53f4}.lupa-term-checkbox.checked:after{border:none;border-left:2px solid #fff;border-bottom:2px solid #fff;display:inline-block;transform:rotate(-45deg);height:7px;width:12px;border-radius:0;top:-2px;content:" ";position:relative}.lupa-term-checkbox-label{font-size:16px;font-weight:300}.lupa-search-box-wrapper input{border-radius:24px}.lupa-mobile-toggle-filter-count{display:inline-flex;color:#fff;background:#3c53f4;border-radius:50%;width:20px;height:20px;justify-content:center;align-items:center}.lupa-category-top-mobile-filters .lupa-category-back{border:1px solid rgba(0,0,0,0.1019607843);cursor:pointer;padding:10px 5px;margin:10px 0}.lupa-category-top-mobile-filters .lupa-category-back::before{content:"<";display:inline-block}.lupa-term-filter{border-radius:8px}.lupa-search-result-top-filters{margin:16px 0 6px}.lupa-search-result-top-filters .lupa-search-result-facet-label{border-radius:8px}.lupa-search-result-top-filters .lupa-search-result-facet-label.lupa-has-filter{border:1px solid #3c53f4}.lupa-search-result-top-filters .lupa-search-result-facet-label.open{padding-bottom:10.5px}.lupa-search-result-top-filters .lupa-facet-label-caret{margin-left:8px;line-height:1}.lupa-search-result-top-filters .lupa-facet-content{margin-top:4px;border-radius:8px;box-shadow:rgba(0,0,0,.1) 0px 4px 6px -1px,rgba(0,0,0,.06) 0px 2px 4px -1px}.lupa-search-result-top-filters .lupa-search-result-facet-list.lupa-top-dropdown .lupa-terms-list{padding:5px}.lupa-search-result-top-filters .lupa-show-more-facet-results{margin:5px 0 10px;padding-bottom:6px;border-bottom:1px solid rgba(0,0,0,0.1019607843)}.lupa-search-result-top-filters .lupa-single-facet-clear{margin-top:10px;border:1px solid rgba(0,0,0,0.1019607843);border-radius:8px}.lupa-search-result-top-filters .lupa-single-facet-clear:hover{background:#fafafa}.lupa-search-result-top-filters .lupa-search-result-facet-stats-values{padding:10px 0}.lupa-toolbar-filters{border-top:1px solid rgba(0,0,0,0.1019607843);padding:8px 0}.lupa-toolbar-filters.expandable .lupa-filter-title-text{margin-bottom:0}.lupa-toolbar-filters.expandable .filter-values{margin-top:10px}.lupa-toolbar-filters .filter-values{align-items:center}.lupa-toolbar-filters .lupa-current-filter-list{padding:0}.lupa-toolbar-filters .lupa-clear-all-filters{margin:0}@media(max-width: 767px){.lupa-toolbar-filters{padding:16px;margin-right:0}.lupa-mobile-filter-sidebar .lupa-search-result-filters{padding-right:0}.lupa-mobile-filter-sidebar .lupa-filter-title-text{margin-bottom:0}.lupa-mobile-filter-sidebar .filter-values{margin-top:10px}.lupa-mobile-filter-sidebar .lupa-search-result-current-filters{padding:16px}.lupa-mobile-filter-sidebar .lupa-search-result-facet-display{border:1px solid rgba(0,0,0,0.1019607843);border-radius:8px;margin:10px 20px 20px}.lupa-mobile-filter-sidebar .lupa-clear-all-filters{margin-top:10px}.lupa-mobile-filter-sidebar .lupa-facet-label-text,.lupa-mobile-filter-sidebar .lupa-facet-label-caret{display:flex;align-items:center}}@media(max-width: 480px){.lupa-toolbar-filters .filter-values{flex-direction:column;align-items:flex-start}.lupa-toolbar-filters .lupa-clear-all-filters{margin:14px 0 0}}.lupa-filter-title-caret::after{content:""}:root{--vc-clr-primary: #000;--vc-clr-secondary: #090f207f;--vc-clr-white: #ffffff;--vc-icn-width: 1.2em;--vc-nav-width: 30px;--vc-nav-height: 30px;--vc-nav-border-radius: 0;--vc-nav-color: var(--vc-clr-primary);--vc-nav-color-hover: var(--vc-clr-secondary);--vc-nav-background: transparent;--vc-pgn-width: 12px;--vc-pgn-height: 4px;--vc-pgn-margin: 4px;--vc-pgn-border-radius: 0;--vc-pgn-background-color: var(--vc-clr-secondary);--vc-pgn-active-color: var(--vc-clr-primary)}.carousel__prev,.carousel__next{box-sizing:content-box;background:var(--vc-nav-background);border-radius:var(--vc-nav-border-radius);width:var(--vc-nav-width);height:var(--vc-nav-height);text-align:center;font-size:var(--vc-nav-height);padding:0;color:var(--vc-nav-color);display:flex;justify-content:center;align-items:center;position:absolute;border:0;cursor:pointer;margin:0 10px;top:50%;transform:translateY(-50%)}.carousel__prev:hover,.carousel__next:hover{color:var(--vc-nav-color-hover)}.carousel__next--disabled,.carousel__prev--disabled{cursor:not-allowed;opacity:.5}.carousel__prev{left:0}.carousel__next{right:0}.carousel--rtl .carousel__prev{left:auto;right:0}.carousel--rtl .carousel__next{right:auto;left:0}.carousel{position:relative;text-align:center;box-sizing:border-box;touch-action:pan-y;overscroll-behavior:none}.carousel.is-dragging{touch-action:none}.carousel *{box-sizing:border-box}.carousel__track{display:flex;padding:0 !important;position:relative}.carousel__viewport{overflow:hidden}.carousel__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.carousel__icon{width:var(--vc-icn-width);height:var(--vc-icn-width);fill:currentColor}.carousel__pagination{display:flex;justify-content:center;list-style:none;line-height:0;margin:10px 0 0}.carousel__pagination-button{display:block;border:0;margin:0;cursor:pointer;padding:var(--vc-pgn-margin);background:rgba(0,0,0,0)}.carousel__pagination-button::after{display:block;content:"";width:var(--vc-pgn-width);height:var(--vc-pgn-height);border-radius:var(--vc-pgn-border-radius);background-color:var(--vc-pgn-background-color)}.carousel__pagination-button:hover::after,.carousel__pagination-button--active::after{background-color:var(--vc-pgn-active-color)}.carousel__slide{scroll-snap-stop:auto;flex-shrink:0;margin:0;position:relative;display:flex;justify-content:center;align-items:center;transform:translateZ(0)}.lupa-search-product-recommendations-wrapper{width:100%}.lupa-recommendation-section-title{font-size:1.5rem;font-weight:700;margin-bottom:1rem;font-family:"Roboto",sans-serif}#lupa-search-results-products{background:#fff;padding-top:36px}.wrapper{background:#fafafa}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getlupa/client",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.8",
|
|
4
4
|
"main": "dist/lupaSearch.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@getlupa/client-sdk": "^1.3.4",
|
|
23
|
-
"@getlupa/vue": "0.15.
|
|
23
|
+
"@getlupa/vue": "0.15.8",
|
|
24
24
|
"@rushstack/eslint-patch": "^1.3.2",
|
|
25
25
|
"@tsconfig/node18": "^2.0.1",
|
|
26
26
|
"@types/jsdom": "^21.1.1",
|