@sc-360-v2/storefront-cms-library 0.4.75 → 0.4.77

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.
Files changed (33) hide show
  1. package/dist/builder.js +1 -1
  2. package/dist/bulk-variant-picker.scss +402 -142
  3. package/dist/bundle.scss +183 -160
  4. package/dist/bundleDetails.scss +415 -346
  5. package/dist/button.scss +299 -292
  6. package/dist/cart-summary.scss +317 -0
  7. package/dist/countdown.scss +774 -751
  8. package/dist/gallery-slider-temp.scss +235 -14
  9. package/dist/menu-v2.scss +4 -0
  10. package/dist/product-image.scss +225 -13
  11. package/dist/profile.scss +1 -1
  12. package/dist/quick-order-pad.scss +596 -0
  13. package/dist/scroll.scss +224 -222
  14. package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +30 -0
  15. package/dist/types/builder/tools/element-edit/bulkVariantPicker.d.ts +0 -13
  16. package/dist/types/builder/tools/element-edit/bundle.d.ts +45 -0
  17. package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +110 -1
  18. package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +20 -0
  19. package/dist/types/builder/tools/element-edit/cartSummary.d.ts +545 -5
  20. package/dist/types/builder/tools/element-edit/coupon.d.ts +20 -0
  21. package/dist/types/builder/tools/element-edit/embroidery.d.ts +10 -0
  22. package/dist/types/builder/tools/element-edit/gallery-slider.d.ts +47 -2
  23. package/dist/types/builder/tools/element-edit/mega-menu.d.ts +4 -1
  24. package/dist/types/builder/tools/element-edit/menu_v2.d.ts +4 -1
  25. package/dist/types/builder/tools/element-edit/product-image.d.ts +47 -2
  26. package/dist/types/builder/tools/element-edit/scroll.d.ts +0 -42
  27. package/dist/types/builder/tools/element-edit/userElements.d.ts +4 -7
  28. package/dist/types/builder/tools/element-edit/variantPicker.d.ts +0 -12
  29. package/dist/types/global/types.d.ts +1 -0
  30. package/dist/uom-selector.scss +23 -0
  31. package/dist/user-elements.scss +33 -26
  32. package/dist/variant-picker.scss +404 -179
  33. package/package.json +1 -1
@@ -560,6 +560,11 @@ export declare const getDefaultData: () => {
560
560
  propertyType?: any;
561
561
  isReadOnly?: boolean | undefined;
562
562
  };
563
+ textTransform: {
564
+ value: string;
565
+ property: string;
566
+ propertyType: CMSElementEditTypes;
567
+ };
563
568
  buttonStyle: {
564
569
  parentRef: string;
565
570
  propertyType: CMSElementEditTypes;
@@ -780,6 +785,11 @@ export declare const getDefaultData: () => {
780
785
  propertyType?: any;
781
786
  isReadOnly?: boolean | undefined;
782
787
  };
788
+ textTransform: {
789
+ value: string;
790
+ property: string;
791
+ propertyType: CMSElementEditTypes;
792
+ };
783
793
  buttonStyle: {
784
794
  parentRef: string;
785
795
  propertyType: CMSElementEditTypes;
@@ -1006,6 +1016,11 @@ export declare const getDefaultData: () => {
1006
1016
  propertyType?: any;
1007
1017
  isReadOnly?: boolean | undefined;
1008
1018
  };
1019
+ textTransform: {
1020
+ value: string;
1021
+ property: string;
1022
+ propertyType: CMSElementEditTypes;
1023
+ };
1009
1024
  buttonStyle: {
1010
1025
  parentRef: string;
1011
1026
  propertyType: CMSElementEditTypes;
@@ -1226,6 +1241,11 @@ export declare const getDefaultData: () => {
1226
1241
  propertyType?: any;
1227
1242
  isReadOnly?: boolean | undefined;
1228
1243
  };
1244
+ textTransform: {
1245
+ value: string;
1246
+ property: string;
1247
+ propertyType: CMSElementEditTypes;
1248
+ };
1229
1249
  buttonStyle: {
1230
1250
  parentRef: string;
1231
1251
  propertyType: CMSElementEditTypes;
@@ -290,6 +290,11 @@ export declare const getDefaultData: () => {
290
290
  propertyType?: any;
291
291
  isReadOnly?: boolean | undefined;
292
292
  };
293
+ textTransform: {
294
+ value: string;
295
+ property: string;
296
+ propertyType: CMSElementEditTypes;
297
+ };
293
298
  selectorKey: ButtonSelectorKeysEnum;
294
299
  };
295
300
  hoverState: {
@@ -471,6 +476,11 @@ export declare const getDefaultData: () => {
471
476
  propertyType?: any;
472
477
  isReadOnly?: boolean | undefined;
473
478
  };
479
+ textTransform: {
480
+ value: string;
481
+ property: string;
482
+ propertyType: CMSElementEditTypes;
483
+ };
474
484
  selectorKey: ButtonSelectorKeysEnum;
475
485
  };
476
486
  };
@@ -21,8 +21,13 @@ interface selfLayoutInterface {
21
21
  autoplayDuration: CMSIBSizeInterface;
22
22
  sliderSpeed: CMSIBSizeInterface;
23
23
  thumbnailPlacement: CMSIBSizeInterface;
24
- thumbnailSize: CMSIBSizeInterface;
24
+ thumbnailWidth: CMSIBSizeInterface;
25
+ thumbnailHeight: CMSIBSizeInterface;
25
26
  thumbnailSpacing: CMSIBSizeInterface;
27
+ thumbnailPadding: any;
28
+ sliderAndThumbnailGap: CMSIBSizeInterface;
29
+ thumbnailFitOptions: CMSIBCommonInterface;
30
+ thumbnailObjectPosition: CMSIBCommonInterface;
26
31
  }
27
32
  export interface selfDesignInterface {
28
33
  selectorKey: string;
@@ -82,6 +87,31 @@ export interface selfDesignInterface {
82
87
  itemTextContainerLayout: {
83
88
  [key: string]: any;
84
89
  };
90
+ thumbnailStyle: {
91
+ selectorKey: string;
92
+ defaultState: {
93
+ selectorKey: string;
94
+ backgroundColor: CMSIBCommonInterface;
95
+ borderColor: CMSIBCommonInterface;
96
+ borderStyle: CMSIBCommonInterface;
97
+ borderPerSlide: CMSIBCommonInterface;
98
+ showBorder: CMSIBCommonInterface;
99
+ showShadow: CMSIBCommonInterface;
100
+ shadowColor: CMSIBCommonInterface;
101
+ blur: CMSIBCommonInterface;
102
+ spread: CMSIBCommonInterface;
103
+ angle: CMSIBCommonInterface;
104
+ borderRadius: CMSIBCommonInterface;
105
+ [key: string]: any;
106
+ };
107
+ hoverState: {
108
+ [key: string]: any;
109
+ };
110
+ selectedState: {
111
+ [key: string]: any;
112
+ };
113
+ [key: string]: any;
114
+ };
85
115
  paginationArrows: {
86
116
  selectorKey: string;
87
117
  arrowIconStyle: CMSIBCommonInterface;
@@ -92,6 +122,16 @@ export interface selfDesignInterface {
92
122
  arrowColor: CMSIBCommonInterface;
93
123
  backgroundColor: CMSIBCommonInterface;
94
124
  };
125
+ thumbnailArrows: {
126
+ selectorKey: string;
127
+ arrowIconStyle: CMSIBCommonInterface;
128
+ leftArrowIconStyle: CMSIBCommonInterface;
129
+ rightArrowIconStyle: CMSIBCommonInterface;
130
+ backgroundShape: CMSIBCommonInterface;
131
+ arrowSize: CMSIBCommonInterface;
132
+ arrowColor: CMSIBCommonInterface;
133
+ backgroundColor: CMSIBCommonInterface;
134
+ };
95
135
  paginationDots: {
96
136
  selectorKey: string;
97
137
  dotSize: CMSIBCommonInterface;
@@ -116,7 +156,12 @@ export declare enum SelectorKeysEnum {
116
156
  PAGINATION_DOTS = "pagination-dots",
117
157
  PAGINATION_LINE = "pagination-lines",
118
158
  MAP_WIDGET_TEXT_CONTAINER_DESIGN = "galleryWidgetTextContainerDesign",
119
- MAP_WIDGET_TEXT_CONTAINER_LAYOUT = "galleryWidgetTextContainerLayout"
159
+ MAP_WIDGET_TEXT_CONTAINER_LAYOUT = "galleryWidgetTextContainerLayout",
160
+ THUMBNAIL_STYLE = "thumbnail-style",
161
+ THUMBNAIL_ARROWS = "thumbnail-arrows",
162
+ DEFAULT_STATE = "default",
163
+ HOVER_STATE = "hover",
164
+ SELECTED_STATE = "selected"
120
165
  }
121
166
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
122
167
  export {};
@@ -1,11 +1,14 @@
1
1
  import { CMSIBCommonInterface, PaddingProps } from "../../interfaces/global";
2
- import { AlignItemsValue, JustifyContentValue, StackDirectionType } from "../../../global/types";
2
+ import { AlignItemsValue, JustifyContentValue, StackDirectionType, SubMenuEntranceType } from "../../../global/types";
3
3
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
4
4
  interface selfLayoutInterface {
5
5
  selectorKey: string;
6
6
  direction: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
7
7
  value: StackDirectionType;
8
8
  };
9
+ submenuTrigger: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
10
+ value: SubMenuEntranceType;
11
+ };
9
12
  itemGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
10
13
  justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
11
14
  value: JustifyContentValue;
@@ -1,5 +1,5 @@
1
1
  import { CMSIBCommonInterface, PaddingProps } from "../../interfaces/global";
2
- import { AlignItemsValue, JustifyContentValue, StackDirectionType } from "../../../global/types";
2
+ import { AlignItemsValue, JustifyContentValue, StackDirectionType, SubMenuEntranceType } from "../../../global/types";
3
3
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
4
4
  interface selfLayoutInterface {
5
5
  selectorKey: string;
@@ -13,6 +13,9 @@ interface selfLayoutInterface {
13
13
  alignItems: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
14
14
  value: AlignItemsValue;
15
15
  };
16
+ submenuTrigger: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
17
+ value: SubMenuEntranceType;
18
+ };
16
19
  }
17
20
  declare enum SelectorKeysEnum {
18
21
  LAYOUT = "layout",
@@ -24,8 +24,13 @@ interface selfLayoutInterface {
24
24
  fitOptions: CMSIBCommonInterface;
25
25
  objectPosition: CMSIBCommonInterface;
26
26
  thumbnailPlacement: CMSIBSizeInterface;
27
- thumbnailSize: CMSIBSizeInterface;
27
+ thumbnailWidth: CMSIBSizeInterface;
28
+ thumbnailHeight: CMSIBSizeInterface;
28
29
  thumbnailSpacing: CMSIBSizeInterface;
30
+ thumbnailPadding: any;
31
+ sliderAndThumbnailGap: CMSIBSizeInterface;
32
+ thumbnailFitOptions: CMSIBCommonInterface;
33
+ thumbnailObjectPosition: CMSIBCommonInterface;
29
34
  }
30
35
  export interface selfDesignInterface {
31
36
  selectorKey: string;
@@ -85,6 +90,31 @@ export interface selfDesignInterface {
85
90
  itemTextContainerLayout: {
86
91
  [key: string]: any;
87
92
  };
93
+ thumbnailStyle: {
94
+ selectorKey: string;
95
+ defaultState: {
96
+ selectorKey: string;
97
+ backgroundColor: CMSIBCommonInterface;
98
+ borderColor: CMSIBCommonInterface;
99
+ borderStyle: CMSIBCommonInterface;
100
+ borderPerSlide: CMSIBCommonInterface;
101
+ showBorder: CMSIBCommonInterface;
102
+ showShadow: CMSIBCommonInterface;
103
+ shadowColor: CMSIBCommonInterface;
104
+ blur: CMSIBCommonInterface;
105
+ spread: CMSIBCommonInterface;
106
+ angle: CMSIBCommonInterface;
107
+ borderRadius: CMSIBCommonInterface;
108
+ [key: string]: any;
109
+ };
110
+ hoverState: {
111
+ [key: string]: any;
112
+ };
113
+ selectedState: {
114
+ [key: string]: any;
115
+ };
116
+ [key: string]: any;
117
+ };
88
118
  paginationArrows: {
89
119
  selectorKey: string;
90
120
  arrowIconStyle: CMSIBCommonInterface;
@@ -95,6 +125,16 @@ export interface selfDesignInterface {
95
125
  arrowColor: CMSIBCommonInterface;
96
126
  backgroundColor: CMSIBCommonInterface;
97
127
  };
128
+ thumbnailArrows: {
129
+ selectorKey: string;
130
+ arrowIconStyle: CMSIBCommonInterface;
131
+ leftArrowIconStyle: CMSIBCommonInterface;
132
+ rightArrowIconStyle: CMSIBCommonInterface;
133
+ backgroundShape: CMSIBCommonInterface;
134
+ arrowSize: CMSIBCommonInterface;
135
+ arrowColor: CMSIBCommonInterface;
136
+ backgroundColor: CMSIBCommonInterface;
137
+ };
98
138
  paginationDots: {
99
139
  selectorKey: string;
100
140
  dotSize: CMSIBCommonInterface;
@@ -120,7 +160,12 @@ export declare enum SelectorKeysEnum {
120
160
  PAGINATION_LINE = "pagination-lines",
121
161
  MAP_WIDGET_TEXT_CONTAINER_DESIGN = "galleryWidgetTextContainerDesign",
122
162
  MAP_WIDGET_TEXT_CONTAINER_LAYOUT = "galleryWidgetTextContainerLayout",
123
- DATA_CONNECTOR = "dataConnector"
163
+ DATA_CONNECTOR = "dataConnector",
164
+ THUMBNAIL_STYLE = "thumbnail-style",
165
+ THUMBNAIL_ARROWS = "thumbnail-arrows",
166
+ DEFAULT_STATE = "default",
167
+ HOVER_STATE = "hover",
168
+ SELECTED_STATE = "selected"
124
169
  }
125
170
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
126
171
  export {};
@@ -177,48 +177,6 @@ export declare const getDefaultData: () => {
177
177
  characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
178
178
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
179
179
  };
180
- item1: {
181
- selectorKey: SelectorKeysEnum;
182
- theme: CMSIBCommonInterface;
183
- font: CMSIBCommonInterface;
184
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
185
- textColor: CMSIBCommonInterface;
186
- bold: CMSIBCommonInterface;
187
- italic: CMSIBCommonInterface;
188
- linethrough: CMSIBCommonInterface;
189
- underline: CMSIBCommonInterface;
190
- textAlign: CMSIBCommonInterface;
191
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
192
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
193
- };
194
- item2: {
195
- selectorKey: SelectorKeysEnum;
196
- theme: CMSIBCommonInterface;
197
- font: CMSIBCommonInterface;
198
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
199
- textColor: CMSIBCommonInterface;
200
- bold: CMSIBCommonInterface;
201
- italic: CMSIBCommonInterface;
202
- linethrough: CMSIBCommonInterface;
203
- underline: CMSIBCommonInterface;
204
- textAlign: CMSIBCommonInterface;
205
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
206
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
207
- };
208
- item3: {
209
- selectorKey: SelectorKeysEnum;
210
- theme: CMSIBCommonInterface;
211
- font: CMSIBCommonInterface;
212
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
213
- textColor: CMSIBCommonInterface;
214
- bold: CMSIBCommonInterface;
215
- italic: CMSIBCommonInterface;
216
- linethrough: CMSIBCommonInterface;
217
- underline: CMSIBCommonInterface;
218
- textAlign: CMSIBCommonInterface;
219
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
220
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
221
- };
222
180
  };
223
181
  };
224
182
  export {};
@@ -611,13 +611,6 @@ export declare const getDefaultData: () => {
611
611
  propertyType: CMSElementEditTypes;
612
612
  parentRef: string;
613
613
  };
614
- fontSize: {
615
- value: number;
616
- unit: number;
617
- property: string;
618
- propertyType: CMSElementEditTypes;
619
- parentRef: string;
620
- };
621
614
  textColor: {
622
615
  value: {
623
616
  hex: string;
@@ -766,6 +759,10 @@ export declare const getDefaultData: () => {
766
759
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
767
760
  backgroundColor: CMSIBCommonInterface;
768
761
  selectorKey: SelectorKeysEnum;
762
+ width: {
763
+ value: string;
764
+ unit: number;
765
+ };
769
766
  borderColor: CMSIBCommonInterface;
770
767
  borderStyle: CMSIBCommonInterface;
771
768
  borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
@@ -37,18 +37,6 @@ interface selfLayoutInterface {
37
37
  overflowDirection: CMSIBCommonInterface;
38
38
  itemSize: CMSIBCommonInterface;
39
39
  };
40
- dropdownDisplayStyle: {
41
- selectorKey: string;
42
- dropdownOptionsSpacing: CMSIBCommonInterface;
43
- dropdownOptionsPadding: CMSIBCommonInterface;
44
- dropdownStyle: CMSIBCommonInterface;
45
- optionAndListSpacing: CMSIBCommonInterface;
46
- dropdownListItemSpacing: CMSIBCommonInterface;
47
- dropdownListItemPadding: CMSIBCommonInterface;
48
- dividerBetweenListItems: CMSIBCommonInterface;
49
- maxItemsToDisplay: CMSIBCommonInterface;
50
- overflowItems: CMSIBCommonInterface;
51
- };
52
40
  groupedOptionsDisplayStyle: {
53
41
  selectorKey: string;
54
42
  groupsDisplayStyle: CMSIBCommonInterface;
@@ -33,6 +33,7 @@ export type GlobalVideoAttributes = "src" | "poster" | "controls" | "autoplay" |
33
33
  export type CommonBuilderAttributes = "dataDivType" | "dataType" | "dataElementType" | "dataWidgetType" | "dataElementSubChild";
34
34
  export type GlobalTableAttributes = "cellPadding" | "cellSpacing" | "border" | "width" | "height" | "align" | "bgColor" | "frame" | "headers" | "rows" | "rules";
35
35
  export type StackDirectionType = "horizontal" | "vertical" | string;
36
+ export type SubMenuEntranceType = "onHover" | "onClick" | string;
36
37
  export type FlexSizeType = "none" | "shrink" | "grow" | string;
37
38
  export type ShowShubMenuType = "On Hover" | "On Click";
38
39
  export type ObjectFitValue = "fill" | "contain" | "cover" | "none" | "scale-down" | string;
@@ -44,6 +44,9 @@
44
44
  &[data-show-shadow="false"] {
45
45
  --_show-shadow: none;
46
46
  }
47
+ &[data-show-border="false"] {
48
+ --_show-border-im-se: none;
49
+ }
47
50
  &[data-overflow-items="Wrap"] {
48
51
  .horizontal {
49
52
  flex-wrap: wrap;
@@ -104,6 +107,10 @@
104
107
  var(--_ctm-tab-dn-um-te-se-br-wh, var(--_ctm-dn-um-te-se-br-wh))
105
108
  );
106
109
 
110
+ &[data-show-border="false"] {
111
+ border: none;
112
+ }
113
+
107
114
  border-radius: var(
108
115
  --_ctm-mob-dn-um-te-se-br-rs,
109
116
  var(--_ctm-tab-dn-um-te-se-br-rs, var(--_ctm-dn-um-te-se-br-rs))
@@ -192,6 +199,10 @@
192
199
  var(--_ctm-tab-dn-pt-pe-br-wh, var(--_ctm-dn-pt-pe-br-wh))
193
200
  );
194
201
 
202
+ &[data-show-border="false"] {
203
+ border: none;
204
+ }
205
+
195
206
  border-radius: var(
196
207
  --_ctm-mob-dn-pt-pe-br-rs,
197
208
  var(--_ctm-tab-dn-pt-pe-br-rs, var(--_ctm-dn-pt-pe-br-rs))
@@ -281,6 +292,10 @@
281
292
  var(--_ctm-tab-dn-al-pe-br-wh, var(--_ctm-dn-al-pe-br-wh))
282
293
  );
283
294
 
295
+ &[data-show-border="false"] {
296
+ border: none;
297
+ }
298
+
284
299
  border-radius: var(
285
300
  --_ctm-mob-dn-al-pe-br-rs,
286
301
  var(--_ctm-tab-dn-al-pe-br-rs, var(--_ctm-dn-al-pe-br-rs))
@@ -369,6 +384,10 @@
369
384
  var(--_ctm-tab-dn-ss-br-wh, var(--_ctm-dn-ss-br-wh))
370
385
  );
371
386
 
387
+ &[data-show-border="false"] {
388
+ border: none;
389
+ }
390
+
372
391
  border-radius: var(
373
392
  --_ctm-mob-dn-ss-br-rs,
374
393
  var(--_ctm-tab-dn-ss-br-rs, var(--_ctm-dn-ss-br-rs))
@@ -442,6 +461,10 @@
442
461
  var(--_ctm-tab-dn-pe-pr-ut-br-wh, var(--_ctm-dn-pe-pr-ut-br-wh))
443
462
  );
444
463
 
464
+ &[data-show-border="false"] {
465
+ border: none;
466
+ }
467
+
445
468
  border-radius: var(
446
469
  --_ctm-mob-dn-pe-pr-ut-br-rs,
447
470
  var(--_ctm-tab-dn-pe-pr-ut-br-rs, var(--_ctm-dn-pe-pr-ut-br-rs))
@@ -725,10 +725,6 @@ $resizeActive: '[data-cms-element-resizer="true"]';
725
725
  .child {
726
726
  height: 100%;
727
727
  }
728
- .child:not(:last-child) {
729
- border-bottom: 1px solid var(--_thm-cs-be-se-3);
730
- padding-bottom: calc(prepareMediaVariable(--_ctm-lt-im-sg) / 2);
731
- }
732
728
  }
733
729
  }
734
730
  }
@@ -1516,6 +1512,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1516
1512
  .my_cart_icon_wrappers {
1517
1513
  position: relative;
1518
1514
  display: inline-block;
1515
+ flex-shrink: 0;
1519
1516
  width: var(
1520
1517
  --_ctm-mab-dn-ur-sy-io-dn-ct-in-in-se,
1521
1518
  var(--_ctm-tab-dn-ur-sy-io-dn-ct-in-in-se, var(--_ctm-dn-ur-sy-io-dn-ct-in-in-se))
@@ -1524,25 +1521,14 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1524
1521
  --_ctm-mob-dn-ur-sy-io-dn-ct-in-in-se,
1525
1522
  var(--_ctm-tab-dn-ur-sy-io-dn-ct-in-in-se, var(--_ctm-dn-ur-sy-io-dn-ct-in-in-se))
1526
1523
  );
1524
+ margin-right: 6px;
1527
1525
  .cart__quantity {
1528
1526
  position: absolute;
1529
1527
  top: -4px;
1530
1528
  right: -6px;
1531
- // background-color: #ffd600; /* Yellow */
1532
- // color: black;
1533
- // font-size: 12px;
1534
- // font-weight: bold;
1535
- // padding: 2px 6px;
1536
- border-radius: 6px;
1537
-
1538
- min-width: 16px;
1539
- text-align: center;
1540
- display: flex;
1541
- align-items: center;
1542
- justify-content: center;
1543
- white-space: nowrap;
1529
+ border-radius: 50px;
1544
1530
 
1545
- width: calc(
1531
+ min-width: calc(
1546
1532
  var(
1547
1533
  --_ctm-mab-dn-ur-sy-io-dn-ct-in-in-se,
1548
1534
  var(
@@ -1562,6 +1548,14 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1562
1548
  ) *
1563
1549
  0.5
1564
1550
  );
1551
+ width: auto;
1552
+ padding-inline: 4px;
1553
+ box-sizing: border-box;
1554
+ text-align: center;
1555
+ display: flex;
1556
+ align-items: center;
1557
+ justify-content: center;
1558
+ white-space: nowrap;
1565
1559
  }
1566
1560
  // .cart__quantity {
1567
1561
  // position: absolute;
@@ -1645,7 +1639,10 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1645
1639
  )
1646
1640
  );
1647
1641
  white-space: nowrap;
1648
- line-height: 0;
1642
+ line-height: 1;
1643
+ width: auto;
1644
+ padding-inline: 4px;
1645
+ box-sizing: border-box;
1649
1646
 
1650
1647
  color: var(
1651
1648
  --_ctm-mob-dn-ur-sy-io-dn-ct-ct-cr,
@@ -1696,7 +1693,6 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1696
1693
  --_ctm-mob-dn-ur-sy-io-dn-ct-ct-ue,
1697
1694
  var(--_ctm-tab-dn-ur-sy-io-dn-ct-ct-ue, var(--_ctm-dn-ur-sy-io-dn-ct-ct-ue))
1698
1695
  );
1699
- // padding: prepareMediaVariable(--_ctm-dn-ur-sy-io-dn-ct-ct-pg);
1700
1696
  }
1701
1697
  .cart__icon {
1702
1698
  display: var(--_sf-show-icon-ff, flex);
@@ -1782,9 +1778,21 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1782
1778
  height: 100%;
1783
1779
  left: unset;
1784
1780
  }
1785
- @media (max-width: 1024px) {
1781
+ @media (max-width: 768px) {
1786
1782
  .child:not(:last-child)::before {
1787
- bottom: 0;
1783
+ top: unset;
1784
+ left: 0;
1785
+ right: 0;
1786
+ bottom: calc(
1787
+ -1 *
1788
+ (
1789
+ var(
1790
+ --_ctm-mob-lt-ur-io-sy-im-sg,
1791
+ var(--_ctm-tab-lt-ur-io-sy-im-sg, var(--_ctm-lt-ur-io-sy-im-sg))
1792
+ ) /
1793
+ 2
1794
+ )
1795
+ );
1788
1796
  height: var(
1789
1797
  --_ctm-mob-dn-ur-sy-io-dn-fl-ad-oy-dr-wt,
1790
1798
  var(
@@ -1792,8 +1800,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1792
1800
  var(--_ctm-dn-ur-sy-io-dn-fl-ad-oy-dr-wt)
1793
1801
  )
1794
1802
  );
1795
- width: 100%;
1796
- left: unset;
1803
+ width: unset;
1797
1804
  }
1798
1805
  }
1799
1806
  }
@@ -2354,7 +2361,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
2354
2361
  .language__name {
2355
2362
  // white-space: unset;
2356
2363
  white-space: nowrap !important;
2357
- width: 150px;
2364
+ width: 100%;
2358
2365
  overflow: hidden;
2359
2366
  text-overflow: ellipsis;
2360
2367
  }
@@ -2454,7 +2461,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
2454
2461
  }
2455
2462
  .est__dropdown__main {
2456
2463
  position: relative;
2457
- width: 100%;
2464
+ width: prepareMediaVariable(--_ctm-dn-dn-se-wt-se-wh);
2458
2465
  margin-top: 0px;
2459
2466
  label {
2460
2467
  font-size: 14px;