@sc-360-v2/storefront-cms-library 0.3.45 → 0.3.47

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.
@@ -25,11 +25,79 @@ $resizeActive: '[data-cms-element-resizer="true"]';
25
25
  width: 100%;
26
26
  }
27
27
  }
28
+
29
+ .product-section {
30
+ display: flex;
31
+ justify-content: space-between;
32
+ align-items: center;
33
+ border-bottom: 1px solid #e0e0e0;
34
+ padding-bottom: 16px;
35
+ .section-title {
36
+ font-size: var(
37
+ --_ctm-mob-dn-hr-te-ft-se,
38
+ var(--_ctm-tab-dn-hr-te-ft-se, var(--_ctm-dn-hr-te-ft-se))
39
+ );
40
+ font-family: var(
41
+ --_ctm-mob-dn-hr-te-ft-fy,
42
+ var(--_ctm-tab-dn-hr-te-ft-fy, var(--_ctm-dn-hr-te-ft-fy))
43
+ );
44
+ font-weight: var(
45
+ --_ctm-mob-dn-hr-te-ft-wt,
46
+ var(--_ctm-tab-dn-hr-te-ft-wtvar(--_ctm-dn-hr-te-ft-wt))
47
+ );
48
+ line-height: var(
49
+ --_ctm-mob-dn-hr-te-le-ht,
50
+ var(--_ctm-tab-dn-hr-te-le-ht, var(--_ctm-dn-hr-te-le-ht))
51
+ );
52
+ letter-spacing: var(
53
+ --_ctm-mob-dn-hr-te-lr-sg,
54
+ var(--_ctm-tab-dn-hr-te-lr-sg, var(--_ctm-dn-hr-te-lr-sg))
55
+ );
56
+ color: var(--_ctm-mob-dn-hr-te-cr, var(--_ctm-tab-dn-hr-te-cr, var(--_ctm-dn-hr-te-cr)));
57
+ }
58
+ .search-bar {
59
+ display: flex;
60
+ align-items: center;
61
+ gap: 0.5rem;
62
+
63
+ .search-input {
64
+ display: flex;
65
+ align-items: center;
66
+ border: 1px solid #d1d5db;
67
+ border-radius: 4px;
68
+ padding: 0.25rem 0.5rem;
69
+ background: #fff;
70
+ height: 40px;
71
+
72
+ .icon {
73
+ margin-right: 0.5rem;
74
+ color: #6b7280;
75
+ }
76
+
77
+ input {
78
+ border: none;
79
+ outline: none;
80
+ font-size: 14px;
81
+ width: 160px;
82
+ }
83
+ }
84
+
85
+ .filter-btn {
86
+ border: 1px solid #d1d5db;
87
+ background: white;
88
+ border-radius: 4px;
89
+ padding: 0.25rem 0.5rem;
90
+ font-size: 18px;
91
+ cursor: pointer;
92
+ }
93
+ }
94
+ }
95
+
28
96
  .add-product-wrapper {
29
97
  display: grid;
30
98
  grid-template-columns: 1fr 1fr;
31
99
  gap: 48px;
32
- padding: 5px;
100
+ padding-top: 16px;
33
101
 
34
102
  .product-list {
35
103
  display: flex;
@@ -109,7 +177,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
109
177
 
110
178
  .product-grid {
111
179
  display: grid;
112
- grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
180
+ // grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
181
+ grid-template-columns: 1fr 1fr;
182
+ gap: 16px;
113
183
 
114
184
  @media (max-width: 500px) {
115
185
  grid-template-columns: 1fr;
@@ -157,27 +227,128 @@ $resizeActive: '[data-cms-element-resizer="true"]';
157
227
  flex-direction: column;
158
228
 
159
229
  .product-title {
160
- font-family: "Lato";
161
- font-weight: 600;
162
- font-size: 16px;
163
- line-height: 150%;
164
- color: var(--_gray-900);
230
+ font-family: var(
231
+ --_ctm-mob-dn-pt-cd-pt-cd-te-ft-fy,
232
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-ft-fy, var(--_ctm-dn-pt-cd-pt-cd-te-ft-fy))
233
+ );
234
+ font-size: var(
235
+ --_ctm-mob-dn-pt-cd-pt-cd-te-ft-se,
236
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-ft-se, var(--_ctm-dn-pt-cd-pt-cd-te-ft-se))
237
+ );
238
+ font-weight: var(
239
+ --_ctm-mob-dn-pt-cd-pt-cd-te-ft-wt,
240
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-ft-wt, var(--_ctm-dn-pt-cd-pt-cd-te-ft-wt))
241
+ );
242
+ color: var(
243
+ --_ctm-mob-dn-pt-cd-pt-cd-te-cr,
244
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-cr, var(--_ctm-dn-pt-cd-pt-cd-te-cr))
245
+ );
246
+ line-height: var(
247
+ --_ctm-mob-dn-pt-cd-pt-cd-te-le-ht,
248
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-le-ht, var(--_ctm-dn-pt-cd-pt-cd-te-le-ht))
249
+ );
250
+ letter-spacing: var(
251
+ --_ctm-mob-dn-pt-cd-pt-cd-te-lr-sg,
252
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-lr-sg, var(--_ctm-dn-pt-cd-pt-cd-te-lr-sg))
253
+ );
254
+ text-decoration: var(
255
+ --_ctm-mob-dn-pt-cd-pt-cd-te-ue,
256
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-ue, var(--_ctm-dn-pt-cd-pt-cd-te-ue))
257
+ );
258
+ font-style: var(
259
+ --_ctm-mob-dn-pt-cd-pt-cd-te-ft-se-ic,
260
+ var(
261
+ --_ctm-tab-dn-pt-cd-pt-cd-te-ft-se-ic,
262
+ var(--_ctm-dn-pt-cd-pt-cd-te-ft-se-ic)
263
+ )
264
+ );
265
+ padding: var(
266
+ --_ctm-mob-dn-pt-cd-pt-cd-te-pg,
267
+ var(--_ctm-tab-dn-pt-cd-pt-cd-te-pg, var(--_ctm-dn-pt-cd-pt-cd-te-pg))
268
+ );
165
269
  }
166
270
 
167
271
  .product-code {
168
- font-family: "Lato";
169
- font-size: 12px;
170
- line-height: 100%;
171
- color: var(--_gray-500);
272
+ font-family: var(
273
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-ft-fy,
274
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-ft-fy, var(--_ctm-dn-pt-cd-pt-cd-dn-ft-fy))
275
+ );
276
+ font-size: var(
277
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-ft-se,
278
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-ft-se, var(--_ctm-dn-pt-cd-pt-cd-dn-ft-se))
279
+ );
280
+ font-weight: var(
281
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-ft-wt,
282
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-ft-wt, var(--_ctm-dn-pt-cd-pt-cd-dn-ft-wt))
283
+ );
284
+ color: var(
285
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-cr,
286
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-cr, var(--_ctm-dn-pt-cd-pt-cd-dn-cr))
287
+ );
288
+ line-height: var(
289
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-le-ht,
290
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-le-ht, var(--_ctm-dn-pt-cd-pt-cd-dn-le-ht))
291
+ );
292
+ letter-spacing: var(
293
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-lr-sg,
294
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-lr-sg, var(--_ctm-dn-pt-cd-pt-cd-dn-lr-sg))
295
+ );
296
+ text-decoration: var(
297
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-ue,
298
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-ue, var(--_ctm-dn-pt-cd-pt-cd-dn-ue))
299
+ );
300
+ font-style: var(
301
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-ft-se-ic,
302
+ var(
303
+ --_ctm-tab-dn-pt-cd-pt-cd-dn-ft-se-ic,
304
+ var(--_ctm-dn-pt-cd-pt-cd-dn-ft-se-ic)
305
+ )
306
+ );
307
+ padding: var(
308
+ --_ctm-mob-dn-pt-cd-pt-cd-dn-pg,
309
+ var(--_ctm-tab-dn-pt-cd-pt-cd-dn-pg, var(--_ctm-dn-pt-cd-pt-cd-dn-pg))
310
+ );
172
311
  }
173
-
174
312
  .product-price {
175
- font-family: "Lato";
176
- font-weight: 700;
177
- font-size: 20px;
178
- line-height: 150%;
179
- margin-top: 8px;
180
- color: var(--_gray-900);
313
+ font-family: var(
314
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-ft-fy,
315
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-ft-fy, var(--_ctm-dn-pt-cd-pt-cd-pe-ft-fy))
316
+ );
317
+ font-size: var(
318
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-ft-se,
319
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-ft-se, var(--_ctm-dn-pt-cd-pt-cd-pe-ft-se))
320
+ );
321
+ font-weight: var(
322
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-ft-wt,
323
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-ft-wt, var(--_ctm-dn-pt-cd-pt-cd-pe-ft-wt))
324
+ );
325
+ color: var(
326
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-cr,
327
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-cr, var(--_ctm-dn-pt-cd-pt-cd-pe-cr))
328
+ );
329
+ line-height: var(
330
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-le-ht,
331
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-le-ht, var(--_ctm-dn-pt-cd-pt-cd-pe-le-ht))
332
+ );
333
+ letter-spacing: var(
334
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-lr-sg,
335
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-lr-sg, var(--_ctm-dn-pt-cd-pt-cd-pe-lr-sg))
336
+ );
337
+ text-decoration: var(
338
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-ue,
339
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-ue, var(--_ctm-dn-pt-cd-pt-cd-pe-ue))
340
+ );
341
+ font-style: var(
342
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-ft-se-ic,
343
+ var(
344
+ --_ctm-tab-dn-pt-cd-pt-cd-pe-ft-se-ic,
345
+ var(--_ctm-dn-pt-cd-pt-cd-pe-ft-se-ic)
346
+ )
347
+ );
348
+ padding: var(
349
+ --_ctm-mob-dn-pt-cd-pt-cd-pe-pg,
350
+ var(--_ctm-tab-dn-pt-cd-pt-cd-pe-pg, var(--_ctm-dn-pt-cd-pt-cd-pe-pg))
351
+ );
181
352
  }
182
353
 
183
354
  .product-meta {
@@ -217,6 +388,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
217
388
  }
218
389
  }
219
390
  .product-cart {
391
+ position: relative;
392
+ // width: 50px;
393
+ // height: 50px;
220
394
  .icon {
221
395
  display: flex;
222
396
  svg {
@@ -228,6 +402,19 @@ $resizeActive: '[data-cms-element-resizer="true"]';
228
402
  }
229
403
  }
230
404
  }
405
+ .cart-badge {
406
+ position: absolute;
407
+ top: -5px;
408
+ right: -8px;
409
+ background-color: #ffd400;
410
+ color: #000;
411
+ border-radius: 4px;
412
+ padding: 2px 6px;
413
+ font-size: 14px;
414
+ font-weight: bold;
415
+ min-width: 20px;
416
+ text-align: center;
417
+ }
231
418
  }
232
419
  }
233
420
  }
@@ -248,18 +435,68 @@ $resizeActive: '[data-cms-element-resizer="true"]';
248
435
  flex-direction: column;
249
436
  gap: 12px;
250
437
  h2 {
251
- font-family: "Lato";
252
- font-weight: 400;
253
- font-size: 20px;
254
- line-height: 30px;
255
- color: var(--_gray-600);
438
+ font-family: var(
439
+ --_ctm-mob-dn-pt-ds-pt-te-ft-fy,
440
+ var(--_ctm-tab-dn-pt-ds-pt-te-ft-fy, var(--_ctm-dn-pt-ds-pt-te-ft-fy))
441
+ );
442
+ font-size: var(
443
+ --_ctm-mob-dn-pt-ds-pt-te-ft-se,
444
+ var(--_ctm-tab-dn-pt-ds-pt-te-ft-se, var(--_ctm-dn-pt-ds-pt-te-ft-se))
445
+ );
446
+ font-weight: var(
447
+ --_ctm-mob-dn-pt-ds-pt-te-ft-wt,
448
+ var(--_ctm-tab-dn-pt-ds-pt-te-ft-wt, var(--_ctm-dn-pt-ds-pt-te-ft-wt))
449
+ );
450
+ color: var(
451
+ --_ctm-mob-dn-pt-ds-pt-te-cr,
452
+ var(--_ctm-tab-dn-pt-ds-pt-te-cr, var(--_ctm-dn-pt-ds-pt-te-cr))
453
+ );
454
+ line-height: var(
455
+ --_ctm-mob-dn-pt-ds-pt-te-le-ht,
456
+ var(--_ctm-tab-dn-pt-ds-pt-te-le-ht, var(--_ctm-dn-pt-ds-pt-te-le-ht))
457
+ );
458
+ letter-spacing: var(
459
+ --_ctm-mob-dn-pt-ds-pt-te-lr-sg,
460
+ var(--_ctm-tab-dn-pt-ds-pt-te-lr-sg, var(--_ctm-dn-pt-ds-pt-te-lr-sg))
461
+ );
462
+ // text-decoration: var(--_ctm-dn-pt-ds-pt-te-ue);
463
+ // font-style: var(--_ctm-dn-pt-ds-pt-te-ft-se-ic);
464
+ padding: var(
465
+ --_ctm-dn-mob-pt-ds-pt-te-pg,
466
+ var(--_ctm-tab-dn-pt-ds-pt-te-pg, var(--_ctm-dn-pt-ds-pt-te-pg))
467
+ );
256
468
  }
257
469
  p {
258
- font-family: "Lato";
259
- font-weight: 400;
260
- font-size: 14px;
261
- line-height: 20px;
262
- color: var(--_gray-900);
470
+ font-family: var(
471
+ --_ctm-mob-dn-pt-ds-pt-dn-ft-fy,
472
+ var(--_ctm-tab-dn-pt-ds-pt-dn-ft-fy, var(--_ctm-dn-pt-ds-pt-dn-ft-fy))
473
+ );
474
+ font-size: var(
475
+ --_ctm-mob-dn-pt-ds-pt-dn-ft-se,
476
+ var(--_ctm-tab-dn-pt-ds-pt-dn-ft-se, var(--_ctm-dn-pt-ds-pt-dn-ft-se))
477
+ );
478
+ font-weight: var(
479
+ --_ctm-mob-dn-pt-ds-pt-dn-ft-wt,
480
+ var(--_ctm-tab-dn-pt-ds-pt-dn-ft-wt, var(--_ctm-dn-pt-ds-pt-dn-ft-wt))
481
+ );
482
+ color: var(
483
+ --_ctm-mob-dn-pt-ds-pt-dn-cr,
484
+ var(--_ctm-tab-dn-pt-ds-pt-dn-cr, var(--_ctm-dn-pt-ds-pt-dn-cr))
485
+ );
486
+ line-height: var(
487
+ --_ctm-mob-dn-pt-ds-pt-dn-le-ht,
488
+ var(--_ctm-tab-dn-pt-ds-pt-dn-le-ht, var(--_ctm-dn-pt-ds-pt-dn-le-ht))
489
+ );
490
+ letter-spacing: var(
491
+ --_ctm-mob-dn-pt-ds-pt-dn-lr-sg,
492
+ var(--_ctm-tab-dn-pt-ds-pt-dn-lr-sg, var(--_ctm-dn-pt-ds-pt-dn-lr-sg))
493
+ );
494
+ // text-decoration: var(--_ctm-dn-pt-ds-pt-te-ue);
495
+ // font-style: var(--_ctm-dn-pt-ds-pt-te-ft-se-ic);
496
+ padding: var(
497
+ --_ctm-dn-mob-pt-ds-pt-dn-pg,
498
+ var(--_ctm-tab-dn-pt-ds-pt-dn-pg, var(--_ctm-dn-pt-ds-pt-dn-pg))
499
+ );
263
500
  }
264
501
  }
265
502
 
@@ -272,12 +509,36 @@ $resizeActive: '[data-cms-element-resizer="true"]';
272
509
  flex-direction: column;
273
510
 
274
511
  .amount {
275
- font-family: "Lato";
276
- font-weight: 700;
277
- font-size: 36px;
278
- line-height: 44px;
279
- letter-spacing: -2%;
280
- color: var(--_gray-900);
512
+ font-family: var(
513
+ --_ctm-mob-dn-pt-ds-pt-pe-ft-fy,
514
+ var(--_ctm-tab-dn-pt-ds-pt-pe-ft-fy, var(--_ctm-dn-pt-ds-pt-pe-ft-fy))
515
+ );
516
+ font-size: var(
517
+ --_ctm-mob-dn-pt-ds-pt-pe-ft-se,
518
+ var(--_ctm-tab-dn-pt-ds-pt-pe-ft-se, var(--_ctm-dn-pt-ds-pt-pe-ft-se))
519
+ );
520
+ font-weight: var(
521
+ --_ctm-mob-dn-pt-ds-pt-pe-ft-wt,
522
+ var(--_ctm-tab-dn-pt-ds-pt-pe-ft-wt, var(--_ctm-dn-pt-ds-pt-pe-ft-wt))
523
+ );
524
+ color: var(
525
+ --_ctm-mob-dn-pt-ds-pt-pe-cr,
526
+ var(--_ctm-tab-dn-pt-ds-pt-pe-cr, var(--_ctm-dn-pt-ds-pt-pe-cr))
527
+ );
528
+ line-height: var(
529
+ --_ctm-mob-dn-pt-ds-pt-pe-le-ht,
530
+ var(--_ctm-tab-dn-pt-ds-pt-pe-le-ht, var(--_ctm-dn-pt-ds-pt-pe-le-ht))
531
+ );
532
+ letter-spacing: var(
533
+ --_ctm-mob-dn-pt-ds-pt-pe-lr-sg,
534
+ var(--_ctm-tab-dn-pt-ds-pt-pe-lr-sg, var(--_ctm-dn-pt-ds-pt-pe-lr-sg))
535
+ );
536
+ // text-decoration: var(--_ctm-dn-pt-ds-pt-te-ue);
537
+ // font-style: var(--_ctm-dn-pt-ds-pt-te-ft-se-ic);
538
+ padding: var(
539
+ --_ctm-dn-mob-pt-ds-pt-pe-pg,
540
+ var(--_ctm-tab-dn-pt-ds-pt-pe-pg, var(--_ctm-dn-pt-ds-pt-pe-pg))
541
+ );
281
542
  }
282
543
 
283
544
  .note {
@@ -318,8 +579,21 @@ $resizeActive: '[data-cms-element-resizer="true"]';
318
579
  width: 50px;
319
580
  height: 28px;
320
581
  border-radius: 100px;
321
- border: 0.5px solid var(--_gray-600);
322
- padding: 6px 5px;
582
+ //border: 0.5px solid var(--_gray-600);
583
+ //padding: 6px 5px;
584
+ }
585
+ .color-code {
586
+ width: 28px;
587
+ height: 28px;
588
+ border-radius: 50%;
589
+ cursor: pointer;
590
+ &.selected {
591
+ width: 50px;
592
+ height: 28px;
593
+ border-radius: 100px;
594
+ border: 0.5px solid var(--_gray-600);
595
+ padding: 6px 5px;
596
+ }
323
597
  }
324
598
  }
325
599
  }
@@ -331,6 +605,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
331
605
  margin-top: 20px;
332
606
  gap: 2rem;
333
607
 
608
+ .select_fit,
334
609
  .fit,
335
610
  .size {
336
611
  display: flex;
@@ -345,7 +620,8 @@ $resizeActive: '[data-cms-element-resizer="true"]';
345
620
  color: var(--_gray-600);
346
621
  }
347
622
 
348
- .options {
623
+ .fit_options,
624
+ .size_options {
349
625
  display: flex;
350
626
  gap: 12px;
351
627
  flex-wrap: wrap;
@@ -373,14 +649,3259 @@ $resizeActive: '[data-cms-element-resizer="true"]';
373
649
  }
374
650
  }
375
651
  }
376
- }
377
652
 
378
- @media (max-width: 768px) {
379
- grid-template-columns: 1fr;
380
- .customizer-panel {
381
- border-left: none;
382
- padding-left: 0;
383
- margin-top: 2rem;
653
+ .product_qty_wrapper {
654
+ display: flex;
655
+ // width: 124px;
656
+ flex-direction: column;
657
+ align-items: flex-start;
658
+ gap: 6px;
659
+ width: 120px;
660
+
661
+ .product_qty_container {
662
+ display: flex;
663
+ align-items: flex-start;
664
+ align-self: stretch;
665
+ border-radius: 4px;
666
+ border: 0.5px solid #d0d5dd;
667
+ background: #fff;
668
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
669
+
670
+ .product_qty_label {
671
+ display: flex;
672
+ padding: 8px 12px;
673
+ align-items: center;
674
+ border-radius: 8px 0px 0px 8px;
675
+ p {
676
+ color: #475467;
677
+ font-size: 16px;
678
+ font-weight: 400;
679
+ line-height: 24px;
680
+ }
681
+ }
682
+
683
+ .product_qty_number {
684
+ display: flex;
685
+ padding: 8px 12px;
686
+ align-items: center;
687
+ gap: 8px;
688
+ flex: 1 0 0;
689
+ align-self: stretch;
690
+ border-radius: 0px 4px 4px 0px;
691
+ background: #fff;
692
+ border-left: 1px solid #d0d5dd;
693
+ max-width: 80px;
694
+ text-align: center;
695
+ }
696
+ }
697
+ }
698
+ .add-to-cart {
699
+ width: 100%;
700
+ // height: 56px;
701
+ opacity: 1;
702
+ border-radius: 4px;
703
+ gap: 8px;
704
+ padding-top: 12px;
705
+ padding-right: 24px;
706
+ padding-bottom: 12px;
707
+ padding-left: 24px;
708
+ border-width: 1px;
709
+ background: #243dc6;
710
+ border: 1px solid #243dc6;
711
+ box-shadow: 0px 1px 2px 0px #1018280d;
712
+ text-align: center;
713
+ span {
714
+ vertical-align: middle;
715
+ }
716
+ button {
717
+ font-family: Lato;
718
+ font-weight: 600;
719
+ font-size: 16px;
720
+ line-height: 24px;
721
+ letter-spacing: 0%;
722
+ color: #ffffff;
723
+ }
724
+ }
725
+ .variant__container {
726
+ display: flex;
727
+ flex-direction: column;
728
+ gap: var(
729
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
730
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg))
731
+ );
732
+ padding: var(
733
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-pg,
734
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-pg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-pg))
735
+ );
736
+ white-space: nowrap;
737
+
738
+ .standard_wrapper {
739
+ // Select Colors
740
+ .select__colors {
741
+ font-size: 16px;
742
+ color: var(--_gray-500);
743
+ display: flex;
744
+ flex-direction: column;
745
+ gap: var(
746
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
747
+ var(
748
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
749
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg)
750
+ )
751
+ );
752
+ // padding: var(
753
+ // --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-pg,
754
+ // var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-pg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-pg))
755
+ // );
756
+
757
+ .select__group {
758
+ display: flex;
759
+ flex-direction: row;
760
+ gap: var(
761
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-sg,
762
+ var(
763
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-sg,
764
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-sg)
765
+ )
766
+ );
767
+
768
+ &[data-swatch-dispaly="Vertically"] {
769
+ flex-direction: column;
770
+ }
771
+ &[data-swatch-overflow="Scroll"] {
772
+ flex-wrap: nowrap;
773
+ overflow-x: auto;
774
+ }
775
+ &[data-swatch-overflow="Wrap"] {
776
+ flex-wrap: wrap;
777
+ }
778
+
779
+ .show_more_button {
780
+ background-color: var(
781
+ --_ctm-mob-dn-sw-me-is-bn-bd-cr,
782
+ var(--_ctm-tab-dn-sw-me-is-bn-bd-cr, var(--_ctm-dn-sw-me-is-bn-bd-cr))
783
+ );
784
+ font-family:
785
+ var(
786
+ --_ctm-mob-dn-sw-me-is-bn-ft-fy,
787
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-fy, var(--_ctm-dn-sw-me-is-bn-ft-fy))
788
+ ),
789
+ sans-serif;
790
+ border-color: var(
791
+ --_ctm-mob-dn-sw-me-is-bn-br-cr,
792
+ var(--_ctm-tab-dn-sw-me-is-bn-br-cr, var(--_ctm-dn-sw-me-is-bn-br-cr))
793
+ );
794
+ border-radius: var(
795
+ --_ctm-mob-dn-sw-me-is-bn-br-rs,
796
+ var(--_ctm-tab-dn-sw-me-is-bn-br-rs, var(--_ctm-dn-sw-me-is-bn-br-rs))
797
+ );
798
+ border-style: var(
799
+ --_ctm-mob-dn-sw-me-is-bn-br-se,
800
+ var(--_ctm-tab-dn-sw-me-is-bn-br-se, var(--_ctm-dn-sw-me-is-bn-br-se))
801
+ );
802
+ border-width: var(
803
+ --_ctm-mob-dn-sw-me-is-bn-br-wh,
804
+ var(--_ctm-tab-dn-sw-me-is-bn-br-wh, var(--_ctm-dn-sw-me-is-bn-br-wh))
805
+ );
806
+ font-size: var(
807
+ --_ctm-mob-dn-sw-me-is-bn-ft-se,
808
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-se, var(--_ctm-dn-sw-me-is-bn-ft-se))
809
+ );
810
+ font-style: var(
811
+ --_ctm-mob-dn-sw-me-is-bn-ft-se-ic,
812
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-se-ic, var(--_ctm-dn-sw-me-is-bn-ft-se-ic))
813
+ );
814
+ font-weight: var(
815
+ --_ctm-mob-dn-sw-me-is-bn-ft-wt,
816
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-wt, var(--_ctm-dn-sw-me-is-bn-ft-wt))
817
+ );
818
+ line-height: var(
819
+ --_ctm-mob-dn-sw-me-is-bn-le-ht,
820
+ var(--_ctm-tab-dn-sw-me-is-bn-le-ht, var(--_ctm-dn-sw-me-is-bn-le-ht))
821
+ );
822
+ letter-spacing: var(
823
+ --_ctm-mob-dn-sw-me-is-bn-lr-sg,
824
+ var(--_ctm-tab-dn-sw-me-is-bn-lr-sg, var(--_ctm-dn-sw-me-is-bn-lr-sg))
825
+ );
826
+ box-shadow: var(
827
+ --_ctm-mob-dn-sw-me-is-bn-sw-ae,
828
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-ae, var(--_ctm-dn-sw-me-is-bn-sw-ae))
829
+ )
830
+ var(
831
+ --_ctm-mob-dn-sw-me-is-bn-sw-br,
832
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-br, var(--_ctm-dn-sw-me-is-bn-sw-br))
833
+ )
834
+ var(
835
+ --_ctm-mob-dn-sw-me-is-bn-sw-sd,
836
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-sd, var(--_ctm-dn-sw-me-is-bn-sw-sd))
837
+ )
838
+ var(
839
+ --_ctm-mob-dn-sw-me-is-bn-sw-cr,
840
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-cr, var(--_ctm-dn-sw-me-is-bn-sw-cr))
841
+ );
842
+ text-align: var(
843
+ --_ctm-mob-dn-sw-me-is-bn-tt-an,
844
+ var(--_ctm-tab-dn-sw-me-is-bn-tt-an, var(--_ctm-dn-sw-me-is-bn-tt-an))
845
+ );
846
+ color: var(
847
+ --_ctm-mob-dn-sw-me-is-bn-tt-cr,
848
+ var(--_ctm-tab-dn-sw-me-is-bn-tt-cr, var(--_ctm-dn-sw-me-is-bn-tt-cr))
849
+ );
850
+ text-decoration: var(
851
+ --_ctm-mob-dn-sw-me-is-bn-ue,
852
+ var(--_ctm-tab-dn-sw-me-is-bn-ue, var(--_ctm-dn-sw-me-is-bn-ue))
853
+ );
854
+ }
855
+
856
+ .select__group__item {
857
+ transition: width 0.3s ease;
858
+
859
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se: 30px;
860
+ height: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-se);
861
+ width: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-se);
862
+ padding: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-pg);
863
+
864
+ border-color: var(
865
+ --_sf-hr-br-cr,
866
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-cr)
867
+ );
868
+
869
+ background-color: var(
870
+ --_sf-hr-bd-cr,
871
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-bd-cr)
872
+ );
873
+
874
+ border-style: var(
875
+ --_sf-hr-br-se,
876
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-se)
877
+ );
878
+
879
+ border-width: var(
880
+ --_sf-hr-br-wh,
881
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-wh)
882
+ );
883
+ border-radius: var(
884
+ --_sf-hr-br-rs,
885
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-rs)
886
+ );
887
+
888
+ box-shadow: var(
889
+ --_sf-hr-sw-ae,
890
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-ae)
891
+ )
892
+ var(
893
+ --_sf-hr-sw-br,
894
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-br)
895
+ )
896
+ var(
897
+ --_sf-hr-sw-sd,
898
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-sd)
899
+ )
900
+ var(
901
+ --_sf-hr-sw-cr,
902
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-cr)
903
+ );
904
+
905
+ cursor: pointer;
906
+ overflow: hidden;
907
+ .product-select-image {
908
+ object-fit: cover;
909
+ width: 100%;
910
+ height: 100%;
911
+ }
912
+ &[data-background-shape="circle"] {
913
+ border-radius: 50%;
914
+ }
915
+ &[data-background-shape="square"] {
916
+ border-radius: 5px;
917
+ }
918
+ &[data-background-shape="capsule"] {
919
+ --toggle-height: var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-se);
920
+ --toggle-width: calc(
921
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-te-dy-se-im-se) * 1.5
922
+ );
923
+
924
+ width: var(--toggle-width);
925
+ height: var(--toggle-height);
926
+
927
+ border-radius: var(--toggle-height); /* Full pill shape */
928
+ box-sizing: border-box;
929
+ }
930
+ &[data-swatch-shape="circle"] {
931
+ & div,
932
+ .product-select-image {
933
+ border-radius: 50%;
934
+ }
935
+ // border-radius: 50%;
936
+ }
937
+ &[data-swatch-shape="capsule"] {
938
+ & div,
939
+ .product-select-image {
940
+ // border-radius: 50%;
941
+ width: 100%;
942
+ height: 100%;
943
+ border-radius: inherit;
944
+ }
945
+ // border-radius: 50%;
946
+ }
947
+
948
+ &[data-selected="true"] {
949
+ border-color: var(
950
+ --_sf-sd-br-cr,
951
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-cr)
952
+ );
953
+
954
+ background-color: var(
955
+ --_sf-sd-bd-cr,
956
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-bd-cr)
957
+ );
958
+ border-style: var(
959
+ --_sf-sd-br-se,
960
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-se)
961
+ );
962
+ border-width: var(
963
+ --_sf-sd-br-wh,
964
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-wh)
965
+ );
966
+ box-shadow: var(
967
+ --_sf-sd-sw-ae,
968
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-ae)
969
+ )
970
+ var(
971
+ --_sf-sd-sw-br,
972
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-br)
973
+ )
974
+ var(
975
+ --_sf-sd-sw-sd,
976
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-sd)
977
+ )
978
+ var(
979
+ --_sf-sd-sw-cr,
980
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-cr)
981
+ );
982
+
983
+ &[data-background-shape-selected="circle"] {
984
+ border-radius: 50%;
985
+ }
986
+ &[data-background-shape-selected="square"] {
987
+ border-radius: 5px;
988
+ }
989
+ &[data-background-shape-selected="capsule"] {
990
+ border-radius: 80%;
991
+ // width: calc(
992
+ // var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se))) +
993
+ // 8px
994
+ // );
995
+ }
996
+ &[data-swatch-shape-selected="circle"] {
997
+ & div,
998
+ .product-select-image {
999
+ border-radius: 50%;
1000
+ }
1001
+ }
1002
+ &[data-swatch-shape-selected="capsule"] {
1003
+ & div,
1004
+ .product-select-image {
1005
+ border-radius: 50%;
1006
+ }
1007
+ }
1008
+ &[data-swatch-shape-selected="square"] {
1009
+ & div,
1010
+ .product-select-image {
1011
+ border-radius: 5px;
1012
+ }
1013
+ }
1014
+ }
1015
+ &:hover {
1016
+ --_sf-hr-bd-cr: var(
1017
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-bd-cr,
1018
+ var(
1019
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-bd-cr,
1020
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-bd-cr)
1021
+ )
1022
+ );
1023
+ --_sf-hr-br-cr: var(
1024
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-cr,
1025
+ var(
1026
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-cr,
1027
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-cr)
1028
+ )
1029
+ );
1030
+ --_sf-hr-br-se: var(
1031
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-se,
1032
+ var(
1033
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-se,
1034
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-se)
1035
+ )
1036
+ );
1037
+ --_sf-hr-br-wh: var(
1038
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-wh,
1039
+ var(
1040
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-wh,
1041
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-wh)
1042
+ )
1043
+ );
1044
+ --_sf-hr-br-bs: var(
1045
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-rs,
1046
+ var(
1047
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-rs,
1048
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-br-rs)
1049
+ )
1050
+ );
1051
+
1052
+ // new
1053
+ --_sf-hr-sw-ae: var(
1054
+ --_ctm-mob-dn-on-ve-se-hr-se-sw-ae,
1055
+ var(
1056
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-ae,
1057
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-ae)
1058
+ )
1059
+ );
1060
+ --_sf-hr-sw-br: var(
1061
+ --_ctm-mob-dn-on-ve-se-hr-se-sw-br,
1062
+ var(
1063
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-br,
1064
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-br)
1065
+ )
1066
+ );
1067
+ --_sf-hr-sw-hr: var(
1068
+ --_ctm-mob-dn-on-ve-se-hr-se-sw-hr,
1069
+ var(
1070
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-hr,
1071
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-hr)
1072
+ )
1073
+ );
1074
+ --_sf-hr-sw-cr: var(
1075
+ --_ctm-mob-dn-on-ve-se-hr-se-sw-cr,
1076
+ var(
1077
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-cr,
1078
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-hr-se-sw-cr)
1079
+ )
1080
+ );
1081
+ }
1082
+
1083
+ &:hover {
1084
+ &[data-background-shape-hover="circle"] {
1085
+ border-radius: 50%;
1086
+ }
1087
+ &[data-background-shape-hover="square"] {
1088
+ border-radius: 5px;
1089
+ }
1090
+ &[data-background-shape-hover="capsule"] {
1091
+ border-radius: 80%;
1092
+ // width: calc(
1093
+ // var(
1094
+ // --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se,
1095
+ // var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se))
1096
+ // ) +
1097
+ // 8px
1098
+ // );
1099
+ }
1100
+ &[data-swatch-shape-hover="circle"] {
1101
+ & div,
1102
+ .product-select-image {
1103
+ border-radius: 50%;
1104
+ }
1105
+ // border-radius: 50%;
1106
+ }
1107
+ &[data-swatch-shape-hover="capsule"] {
1108
+ & div,
1109
+ .product-select-image {
1110
+ border-radius: 50%;
1111
+ }
1112
+ }
1113
+ &[data-swatch-shape-hover="square"] {
1114
+ & div,
1115
+ .product-select-image {
1116
+ border-radius: 5px;
1117
+ }
1118
+ }
1119
+ }
1120
+
1121
+ &[data-selected="true"] {
1122
+ --_sf-sd-bd-cr: var(
1123
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-bd-cr,
1124
+ var(
1125
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-bd-cr,
1126
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-bd-cr)
1127
+ )
1128
+ );
1129
+ --_sf-sd-br-cr: var(
1130
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-cr,
1131
+ var(
1132
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-cr,
1133
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-cr)
1134
+ )
1135
+ );
1136
+ --_sf-sd-br-se: var(
1137
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-se,
1138
+ var(
1139
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-se,
1140
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-se)
1141
+ )
1142
+ );
1143
+ --_sf-sd-br-wh: var(
1144
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-wh,
1145
+ var(
1146
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-wh,
1147
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-wh)
1148
+ )
1149
+ );
1150
+ --_sf-sd-br-bs: var(
1151
+ --_ctm-mob-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-rs,
1152
+ var(
1153
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-rs,
1154
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-br-rs)
1155
+ )
1156
+ );
1157
+
1158
+ // new
1159
+ --_sf-sd-sw-ae: var(
1160
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-ae,
1161
+ var(
1162
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-ae,
1163
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-ae)
1164
+ )
1165
+ );
1166
+ --_sf-sd-sw-br: var(
1167
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-br,
1168
+ var(
1169
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-br,
1170
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-br)
1171
+ )
1172
+ );
1173
+ --_sf-sd-sw-sd: var(
1174
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-sd,
1175
+ var(
1176
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-sd,
1177
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-sd)
1178
+ )
1179
+ );
1180
+ --_sf-sd-sw-cr: var(
1181
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-cr,
1182
+ var(
1183
+ --_ctm-tab-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-cr,
1184
+ var(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-sd-se-sw-cr)
1185
+ )
1186
+ );
1187
+
1188
+ border-color: var(
1189
+ --_sf-sd-br-cr,
1190
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-cr)
1191
+ );
1192
+
1193
+ background-color: var(
1194
+ --_sf-sd-bd-cr,
1195
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-bd-cr)
1196
+ );
1197
+
1198
+ border-style: var(
1199
+ --_sf-sd-br-se,
1200
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-se)
1201
+ );
1202
+
1203
+ border-width: var(
1204
+ --_sf-sd-br-wh,
1205
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-wh)
1206
+ );
1207
+ border-radius: var(
1208
+ --_sf-sd-br-rs,
1209
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-br-rs)
1210
+ );
1211
+
1212
+ box-shadow: var(
1213
+ --_sf-sd-sw-ae,
1214
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-ae)
1215
+ )
1216
+ var(
1217
+ --_sf-sd-sw-br,
1218
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-br)
1219
+ )
1220
+ var(
1221
+ --_sf-sd-sw-sd,
1222
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-sd)
1223
+ )
1224
+ var(
1225
+ --_sf-sd-sw-cr,
1226
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-sh-on-ve-se-dt-se-sw-cr)
1227
+ );
1228
+
1229
+ &[data-background-shape-selected="circle"] {
1230
+ border-radius: 50%;
1231
+ }
1232
+ &[data-background-shape-selected="square"] {
1233
+ border-radius: 5px;
1234
+ }
1235
+ &[data-background-shape-selected="capsule"] {
1236
+ --toggle-height: var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se);
1237
+ --toggle-width: calc(var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-se) * 1.5);
1238
+
1239
+ width: var(--toggle-width);
1240
+ height: var(--toggle-height);
1241
+
1242
+ border-radius: var(--toggle-height); /* Full pill shape */
1243
+ box-sizing: border-box;
1244
+ }
1245
+ &[data-swatch-shape-selected="circle"] {
1246
+ & div,
1247
+ .product-select-image {
1248
+ border-radius: 50%;
1249
+ }
1250
+ }
1251
+ &[data-swatch-shape-selected="capsule"] {
1252
+ & div,
1253
+ .product-select-image {
1254
+ // border-radius: 50%;
1255
+ width: 100%;
1256
+ height: 100%;
1257
+ border-radius: inherit;
1258
+ }
1259
+ }
1260
+ &[data-swatch-shape-selected="square"] {
1261
+ & div,
1262
+ .product-select-image {
1263
+ border-radius: 5px;
1264
+ }
1265
+ }
1266
+ }
1267
+
1268
+ // &.disabled {
1269
+ // cursor: not-allowed;
1270
+ // opacity: 0.4;
1271
+ // &[data-swatch-type="Swatch Image"] {
1272
+ // position: relative;
1273
+ // overflow: hidden;
1274
+ // &::after {
1275
+ // content: "";
1276
+ // width: 172%;
1277
+ // height: 1px;
1278
+ // position: absolute;
1279
+ // background: #f00;
1280
+ // left: -14px;
1281
+ // transform: rotate(48deg);
1282
+ // /* -webkit-transform: rotate(48deg); */
1283
+ // -moz-transform: rotate(48deg);
1284
+ // top: 14px;
1285
+ // box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1286
+ // }
1287
+ // &::before {
1288
+ // content: "";
1289
+ // width: 164%;
1290
+ // height: 1px;
1291
+ // position: absolute;
1292
+ // background: #f00;
1293
+ // left: -14px;
1294
+ // transform: rotate(-48deg);
1295
+ // -webkit-transform: rotate(-48deg);
1296
+ // -moz-transform: rotate(-48deg);
1297
+ // top: 14px;
1298
+ // box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1299
+ // }
1300
+ // }
1301
+ // }
1302
+
1303
+ position: relative;
1304
+
1305
+ &.disabled {
1306
+ color: #aaa;
1307
+ background-color: #f9f9f9;
1308
+ border-color: #ddd;
1309
+ cursor: not-allowed;
1310
+ opacity: 0.3;
1311
+ overflow: hidden;
1312
+ }
1313
+
1314
+ .cross-line {
1315
+ position: absolute;
1316
+ inset: 0;
1317
+ background-color: #cccccc;
1318
+ clip-path: polygon(100% 0, 100% 1px, 0 100%, 0 96%);
1319
+ pointer-events: none;
1320
+ }
1321
+ .product-select-image {
1322
+ width: 100%;
1323
+ height: 100%;
1324
+ }
1325
+ }
1326
+ }
1327
+ }
1328
+ // Select Fit and Size
1329
+ .select__fit {
1330
+ font-size: 16px;
1331
+ color: var(--_gray-500);
1332
+ display: flex;
1333
+ flex-direction: column;
1334
+ gap: var(
1335
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
1336
+ var(
1337
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
1338
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg)
1339
+ )
1340
+ );
1341
+
1342
+ // padding: var(
1343
+ // --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-pg,
1344
+ // var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-pg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-pg))
1345
+ // );
1346
+
1347
+ .select__group {
1348
+ display: flex;
1349
+ gap: 8px;
1350
+ flex-wrap: wrap;
1351
+ margin-bottom: 10px;
1352
+ flex-direction: row;
1353
+ gap: var(
1354
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-sg,
1355
+ var(
1356
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-sg,
1357
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-sg)
1358
+ )
1359
+ );
1360
+
1361
+ &[data-single-dispaly="Vertically"] {
1362
+ flex-direction: column;
1363
+ }
1364
+ &[data-single-overflow="Scroll"] {
1365
+ overflow-x: auto;
1366
+ overflow-y: hidden;
1367
+ flex-wrap: nowrap;
1368
+ }
1369
+ &[data-swatch-overflow="Scroll"] {
1370
+ overflow-x: auto;
1371
+ flex-wrap: nowrap;
1372
+ overflow-y: hidden;
1373
+ }
1374
+ .show_more_button {
1375
+ background-color: var(
1376
+ --_ctm-mob-dn-sw-me-is-bn-bd-cr,
1377
+ var(--_ctm-tab-dn-sw-me-is-bn-bd-cr, var(--_ctm-dn-sw-me-is-bn-bd-cr))
1378
+ );
1379
+ font-family:
1380
+ var(
1381
+ --_ctm-mob-dn-sw-me-is-bn-ft-fy,
1382
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-fy, var(--_ctm-dn-sw-me-is-bn-ft-fy))
1383
+ ),
1384
+ sans-serif;
1385
+ border-color: var(
1386
+ --_ctm-mob-dn-sw-me-is-bn-br-cr,
1387
+ var(--_ctm-tab-dn-sw-me-is-bn-br-cr, var(--_ctm-dn-sw-me-is-bn-br-cr))
1388
+ );
1389
+ border-radius: var(
1390
+ --_ctm-mob-dn-sw-me-is-bn-br-rs,
1391
+ var(--_ctm-tab-dn-sw-me-is-bn-br-rs, var(--_ctm-dn-sw-me-is-bn-br-rs))
1392
+ );
1393
+ border-style: var(
1394
+ --_ctm-mob-dn-sw-me-is-bn-br-se,
1395
+ var(--_ctm-tab-dn-sw-me-is-bn-br-se, var(--_ctm-dn-sw-me-is-bn-br-se))
1396
+ );
1397
+ border-width: var(
1398
+ --_ctm-mob-dn-sw-me-is-bn-br-wh,
1399
+ var(--_ctm-tab-dn-sw-me-is-bn-br-wh, var(--_ctm-dn-sw-me-is-bn-br-wh))
1400
+ );
1401
+ font-size: var(
1402
+ --_ctm-mob-dn-sw-me-is-bn-ft-se,
1403
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-se, var(--_ctm-dn-sw-me-is-bn-ft-se))
1404
+ );
1405
+ font-style: var(
1406
+ --_ctm-mob-dn-sw-me-is-bn-ft-se-ic,
1407
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-se-ic, var(--_ctm-dn-sw-me-is-bn-ft-se-ic))
1408
+ );
1409
+ font-weight: var(
1410
+ --_ctm-mob-dn-sw-me-is-bn-ft-wt,
1411
+ var(--_ctm-tab-dn-sw-me-is-bn-ft-wt, var(--_ctm-dn-sw-me-is-bn-ft-wt))
1412
+ );
1413
+ line-height: var(
1414
+ --_ctm-mob-dn-sw-me-is-bn-le-ht,
1415
+ var(--_ctm-tab-dn-sw-me-is-bn-le-ht, var(--_ctm-dn-sw-me-is-bn-le-ht))
1416
+ );
1417
+ letter-spacing: var(
1418
+ --_ctm-mob-dn-sw-me-is-bn-lr-sg,
1419
+ var(--_ctm-tab-dn-sw-me-is-bn-lr-sg, var(--_ctm-dn-sw-me-is-bn-lr-sg))
1420
+ );
1421
+ box-shadow: var(
1422
+ --_ctm-mob-dn-sw-me-is-bn-sw-ae,
1423
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-ae, var(--_ctm-dn-sw-me-is-bn-sw-ae))
1424
+ )
1425
+ var(
1426
+ --_ctm-mob-dn-sw-me-is-bn-sw-br,
1427
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-br, var(--_ctm-dn-sw-me-is-bn-sw-br))
1428
+ )
1429
+ var(
1430
+ --_ctm-mob-dn-sw-me-is-bn-sw-sd,
1431
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-sd, var(--_ctm-dn-sw-me-is-bn-sw-sd))
1432
+ )
1433
+ var(
1434
+ --_ctm-mob-dn-sw-me-is-bn-sw-cr,
1435
+ var(--_ctm-tab-dn-sw-me-is-bn-sw-cr, var(--_ctm-dn-sw-me-is-bn-sw-cr))
1436
+ );
1437
+ text-align: var(
1438
+ --_ctm-mob-dn-sw-me-is-bn-tt-an,
1439
+ var(--_ctm-tab-dn-sw-me-is-bn-tt-an, var(--_ctm-dn-sw-me-is-bn-tt-an))
1440
+ );
1441
+ color: var(
1442
+ --_ctm-mob-dn-sw-me-is-bn-tt-cr,
1443
+ var(--_ctm-tab-dn-sw-me-is-bn-tt-cr, var(--_ctm-dn-sw-me-is-bn-tt-cr))
1444
+ );
1445
+ text-decoration: var(
1446
+ --_ctm-mob-dn-sw-me-is-bn-ue,
1447
+ var(--_ctm-tab-dn-sw-me-is-bn-ue, var(--_ctm-dn-sw-me-is-bn-ue))
1448
+ );
1449
+ }
1450
+ &[data-single-dispaly="Grid"] {
1451
+ display: grid;
1452
+ grid-template-columns: repeat(
1453
+ var(
1454
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-is-pr-rw,
1455
+ var(
1456
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-is-pr-rw,
1457
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-is-pr-rw)
1458
+ )
1459
+ ),
1460
+ minmax(auto, 1fr)
1461
+ );
1462
+ }
1463
+
1464
+ .select__group__item {
1465
+ transition: color 0.3s ease;
1466
+ // border-radius: 6px;
1467
+ // border: 1px solid var(--_gray-200);
1468
+ cursor: pointer;
1469
+ display: flex;
1470
+ align-items: center;
1471
+ justify-content: center;
1472
+
1473
+ // height: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-se);
1474
+ // width: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-se);
1475
+ padding: prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-se-st-dy-se-im-pg);
1476
+ min-width: 20px;
1477
+ min-height: 20px;
1478
+ box-sizing: content-box;
1479
+ border-radius: var(
1480
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-rs,
1481
+ var(
1482
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-rs,
1483
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-rs)
1484
+ )
1485
+ );
1486
+
1487
+ border-color: var(
1488
+ --_sf-hr-br-cr,
1489
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-cr)
1490
+ );
1491
+
1492
+ background-color: var(
1493
+ --_sf-hr-bd-cr,
1494
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-bd-cr)
1495
+ );
1496
+ border-style: var(
1497
+ --_sf-hr-br-se,
1498
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-se)
1499
+ );
1500
+ border-width: var(
1501
+ --_sf-hr-br-wh,
1502
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-wh)
1503
+ );
1504
+
1505
+ box-shadow: var(
1506
+ --_sf-hr-sw-ae,
1507
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-ae)
1508
+ )
1509
+ var(
1510
+ --_sf-hr-sw-br,
1511
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-br)
1512
+ )
1513
+ var(
1514
+ --_sf-hr-sw-sd,
1515
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-sd)
1516
+ )
1517
+ var(
1518
+ --_sf-hr-sw-cr,
1519
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-cr)
1520
+ );
1521
+
1522
+ // font is pending
1523
+
1524
+ color: var(
1525
+ --_sf-hr-cr,
1526
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-cr)
1527
+ );
1528
+ font-family:
1529
+ var(
1530
+ --_sf-hr-ft-fy,
1531
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-fy)
1532
+ ),
1533
+ sans-serif;
1534
+ font-size: var(
1535
+ --_sf-hr-ft-se,
1536
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-se)
1537
+ );
1538
+ font-weight: var(
1539
+ --_sf-hr-ft-wt,
1540
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-wt)
1541
+ );
1542
+ font-style: var(
1543
+ --_sf-hr-ft-se-ic,
1544
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-se-ic)
1545
+ );
1546
+ text-align: var(
1547
+ --_sf-hr-tt-an,
1548
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-tt-an)
1549
+ );
1550
+ letter-spacing: var(
1551
+ --_sf-hr-lr-sg,
1552
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-lr-sg)
1553
+ );
1554
+ line-height: var(
1555
+ --_sf-hr-le-ht,
1556
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-le-ht-dc)
1557
+ );
1558
+ text-decoration: var(
1559
+ --_sf-hr-ue,
1560
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ue)
1561
+ );
1562
+
1563
+ &[data-background-shape="circle"] {
1564
+ border-radius: 50%;
1565
+ }
1566
+ &[data-background-shape="square"] {
1567
+ border-radius: 5px;
1568
+ }
1569
+ &[data-background-shape="capsule"] {
1570
+ border-radius: 40px; /* Full pill shape */
1571
+ box-sizing: border-box;
1572
+ }
1573
+
1574
+ &:hover {
1575
+ --_sf-hr-bd-cr: var(
1576
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-bd-cr,
1577
+ var(
1578
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-bd-cr,
1579
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-bd-cr)
1580
+ )
1581
+ );
1582
+ --_sf-hr-br-cr: var(
1583
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-cr,
1584
+ var(
1585
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-cr,
1586
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-cr)
1587
+ )
1588
+ );
1589
+ --_sf-hr-br-se: var(
1590
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-se,
1591
+ var(
1592
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-se,
1593
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-se)
1594
+ )
1595
+ );
1596
+ --_sf-hr-br-wh: var(
1597
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-wh,
1598
+ var(
1599
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-wh,
1600
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-wh)
1601
+ )
1602
+ );
1603
+ --_sf-hr-br-bs: var(
1604
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-rs,
1605
+ var(
1606
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-rs,
1607
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-br-rs)
1608
+ )
1609
+ );
1610
+
1611
+ // new
1612
+ --_sf-hr-sw-ae: var(
1613
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-ae,
1614
+ var(
1615
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-ae,
1616
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-ae)
1617
+ )
1618
+ );
1619
+ --_sf-hr-sw-br: var(
1620
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-br,
1621
+ var(
1622
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-br,
1623
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-br)
1624
+ )
1625
+ );
1626
+ --_sf-hr-sw-hr: var(
1627
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-hr,
1628
+ var(
1629
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-hr,
1630
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-hr)
1631
+ )
1632
+ );
1633
+ --_sf-hr-sw-cr: var(
1634
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-cr,
1635
+ var(
1636
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-cr,
1637
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-sw-cr)
1638
+ )
1639
+ );
1640
+
1641
+ // for font
1642
+
1643
+ --_sf-hr-cr: var(
1644
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-cr,
1645
+ var(
1646
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-cr,
1647
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-cr)
1648
+ )
1649
+ );
1650
+ --_sf-hr-ft-fy: var(
1651
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-fy,
1652
+ var(
1653
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-fy,
1654
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-fy)
1655
+ )
1656
+ );
1657
+ --_sf-hr-ft-se: var(
1658
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se,
1659
+ var(
1660
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se,
1661
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se)
1662
+ )
1663
+ );
1664
+ --_sf-hr-ft-wt: var(
1665
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-wt,
1666
+ var(
1667
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-wt,
1668
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-wt)
1669
+ )
1670
+ );
1671
+ --_sf-hr-ft-se-ic: var(
1672
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se-ic,
1673
+ var(
1674
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se-ic,
1675
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-ft-se-ic)
1676
+ )
1677
+ );
1678
+ --_sf-hr-tt-an: var(
1679
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-tt-an,
1680
+ var(
1681
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-tt-an,
1682
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-tt-an)
1683
+ )
1684
+ );
1685
+ --_sf-hr-lr-sg: var(
1686
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-lr-sg,
1687
+ var(
1688
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-lr-sg,
1689
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-lr-sg)
1690
+ )
1691
+ );
1692
+ --_sf-hr-le-ht: var(
1693
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-le-ht,
1694
+ var(
1695
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-le-ht,
1696
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-hr-se-le-ht)
1697
+ )
1698
+ );
1699
+
1700
+ --_sf-hr-ue: var(
1701
+ --_ctm-mob-dn-on-ve-se-hr-se-ue,
1702
+ var(--_ctm-tab-dn-on-ve-se-hr-se-ue, var(--_ctm-dn-on-ve-se-hr-se-ue))
1703
+ );
1704
+ }
1705
+
1706
+ &.child {
1707
+ border: 0;
1708
+ border-radius: 0;
1709
+ border-bottom: 2px solid var(--_gray-200);
1710
+ }
1711
+ &[data-selected="true"] {
1712
+ --_sf-sd-bd-cr: var(
1713
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-bd-cr,
1714
+ var(
1715
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-bd-cr,
1716
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-bd-cr)
1717
+ )
1718
+ );
1719
+ --_sf-sd-br-cr: var(
1720
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-cr,
1721
+ var(
1722
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-cr,
1723
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-cr)
1724
+ )
1725
+ );
1726
+ --_sf-sd-br-se: var(
1727
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-se,
1728
+ var(
1729
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-se,
1730
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-se)
1731
+ )
1732
+ );
1733
+ --_sf-sd-br-wh: var(
1734
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-wh,
1735
+ var(
1736
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-wh,
1737
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-wh)
1738
+ )
1739
+ );
1740
+ --_sf-sd-br-bs: var(
1741
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-rs,
1742
+ var(
1743
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-rs,
1744
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-br-rs)
1745
+ )
1746
+ );
1747
+
1748
+ // new
1749
+ --_sf-sd-sw-ae: var(
1750
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-ae,
1751
+ var(
1752
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-ae,
1753
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-ae)
1754
+ )
1755
+ );
1756
+ --_sf-sd-sw-br: var(
1757
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-br,
1758
+ var(
1759
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-br,
1760
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-br)
1761
+ )
1762
+ );
1763
+ --_sf-sd-sw-hr: var(
1764
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-hr,
1765
+ var(
1766
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-hr,
1767
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-hr)
1768
+ )
1769
+ );
1770
+ --_sf-sd-sw-cr: var(
1771
+ --_ctm-mob-dn-on-ve-se-sd-se-sw-cr,
1772
+ var(
1773
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-cr,
1774
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-sw-cr)
1775
+ )
1776
+ );
1777
+
1778
+ // for font
1779
+
1780
+ --_sf-sd-cr: var(
1781
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-cr,
1782
+ var(
1783
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-cr,
1784
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-cr)
1785
+ )
1786
+ );
1787
+ --_sf-sd-ft-fy: var(
1788
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-fy,
1789
+ var(
1790
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-fy,
1791
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-fy)
1792
+ )
1793
+ );
1794
+ --_sf-sd-ft-se: var(
1795
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se,
1796
+ var(
1797
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se,
1798
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se)
1799
+ )
1800
+ );
1801
+ --_sf-sd-ft-wt: var(
1802
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-wt,
1803
+ var(
1804
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-wt,
1805
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-wt)
1806
+ )
1807
+ );
1808
+ --_sf-sd-ft-se-ic: var(
1809
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se-ic,
1810
+ var(
1811
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se-ic,
1812
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-ft-se-ic)
1813
+ )
1814
+ );
1815
+ --_sf-sd-tt-an: var(
1816
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-tt-an,
1817
+ var(
1818
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-tt-an,
1819
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-tt-an)
1820
+ )
1821
+ );
1822
+ --_sf-sd-lr-sg: var(
1823
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-lr-sg,
1824
+ var(
1825
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-lr-sg,
1826
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-lr-sg)
1827
+ )
1828
+ );
1829
+ --_sf-sd-le-ht: var(
1830
+ --_ctm-mob-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-le-ht,
1831
+ var(
1832
+ --_ctm-tab-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-le-ht,
1833
+ var(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-sd-se-le-ht)
1834
+ )
1835
+ );
1836
+
1837
+ --_sf-sd-ue: var(
1838
+ --_ctm-mob-dn-on-ve-se-sd-se-ue,
1839
+ var(--_ctm-tab-dn-on-ve-se-sd-se-ue, var(--_ctm-dn-on-ve-se-sd-se-ue))
1840
+ );
1841
+
1842
+ border-color: var(
1843
+ --_sf-sd-br-cr,
1844
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-cr)
1845
+ );
1846
+
1847
+ background-color: var(
1848
+ --_sf-sd-bd-cr,
1849
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-bd-cr)
1850
+ );
1851
+ border-style: var(
1852
+ --_sf-sd-br-se,
1853
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-se)
1854
+ );
1855
+ border-width: var(
1856
+ --_sf-sd-br-wh,
1857
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-br-wh)
1858
+ );
1859
+
1860
+ box-shadow: var(
1861
+ --_sf-sd-sw-ae,
1862
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-ae)
1863
+ )
1864
+ var(
1865
+ --_sf-sd-sw-br,
1866
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-br)
1867
+ )
1868
+ var(
1869
+ --_sf-sd-sw-sd,
1870
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-sd)
1871
+ )
1872
+ var(
1873
+ --_sf-sd-sw-cr,
1874
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-sw-cr)
1875
+ );
1876
+ // font is pending
1877
+
1878
+ color: var(
1879
+ --_sf-sd-cr,
1880
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-cr)
1881
+ );
1882
+ font-family:
1883
+ var(
1884
+ --_sf-sd-ft-fy,
1885
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-fy)
1886
+ ),
1887
+ sans-serif;
1888
+ font-size: var(
1889
+ --_sf-sd-ft-se,
1890
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-se)
1891
+ );
1892
+ font-weight: var(
1893
+ --_sf-sd-ft-wt,
1894
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-wt)
1895
+ );
1896
+ font-style: var(
1897
+ --_sf-sd-ft-se-ic,
1898
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ft-se-ic)
1899
+ );
1900
+ text-align: var(
1901
+ --_sf-sd-tt-an,
1902
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-tt-an)
1903
+ );
1904
+ letter-spacing: var(
1905
+ --_sf-sd-lr-sg,
1906
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-lr-sg)
1907
+ );
1908
+ line-height: var(
1909
+ --_sf-sd-le-ht,
1910
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-le-ht-dc)
1911
+ );
1912
+ text-decoration: var(
1913
+ --_sf-sd-ue,
1914
+ prepareMediaVariable(--_ctm-dn-pt-ds-vt-pr-se-on-ve-se-dt-se-ue)
1915
+ );
1916
+ }
1917
+
1918
+ &.selected__child {
1919
+ border: 0px;
1920
+ border-bottom: 2px solid var(--_primary-400);
1921
+ }
1922
+ // &.disabled {
1923
+ // cursor: not-allowed;
1924
+ // opacity: 0.4;
1925
+ // position: relative;
1926
+ // overflow: hidden;
1927
+ // &::after {
1928
+ // content: "";
1929
+ // width: 172%;
1930
+ // height: 1px;
1931
+ // position: absolute;
1932
+ // background: #f00;
1933
+ // left: -14px;
1934
+ // transform: rotate(48deg);
1935
+ // /* -webkit-transform: rotate(48deg); */
1936
+ // -moz-transform: rotate(48deg);
1937
+ // top: 14px;
1938
+ // box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1939
+ // }
1940
+ // &::before {
1941
+ // content: "";
1942
+ // width: 164%;
1943
+ // height: 1px;
1944
+ // position: absolute;
1945
+ // background: #f00;
1946
+ // left: -14px;
1947
+ // transform: rotate(-48deg);
1948
+ // -webkit-transform: rotate(-48deg);
1949
+ // -moz-transform: rotate(-48deg);
1950
+ // top: 14px;
1951
+ // box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1952
+ // }
1953
+ // }
1954
+ position: relative;
1955
+
1956
+ &.disabled {
1957
+ color: #aaa;
1958
+ background-color: #f9f9f9;
1959
+ border-color: #ddd;
1960
+ cursor: not-allowed;
1961
+ overflow: hidden;
1962
+ }
1963
+
1964
+ .cross-line {
1965
+ position: absolute;
1966
+ inset: 0;
1967
+ background-color: #cccccc;
1968
+ clip-path: polygon(100% 0, 100% 1px, 0 100%, 0 96%);
1969
+ pointer-events: none;
1970
+ }
1971
+ }
1972
+ }
1973
+ }
1974
+ &[data-show-divider="true"] {
1975
+ &:not(:last-child)::after {
1976
+ content: "";
1977
+ position: relative;
1978
+ background-color: #000;
1979
+ height: 1px;
1980
+ width: 100%;
1981
+ display: flex;
1982
+ top: calc(
1983
+ calc(
1984
+ var(
1985
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
1986
+ var(
1987
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
1988
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
1989
+ )
1990
+ ) +
1991
+ 10px
1992
+ ) /
1993
+ 2
1994
+ );
1995
+ }
1996
+ }
1997
+
1998
+ .title {
1999
+ margin-bottom: 4px;
2000
+ color: var(
2001
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-cr,
2002
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-cr, var(--_ctm-dn-pt-ds-vt-pr-on-te-cr))
2003
+ );
2004
+ font-family:
2005
+ var(
2006
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-fy,
2007
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-fy, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-fy))
2008
+ ),
2009
+ sans-serif;
2010
+ font-size: var(
2011
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-se,
2012
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-se, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-se))
2013
+ );
2014
+ font-weight: var(
2015
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-wt,
2016
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-wt, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-wt))
2017
+ );
2018
+ font-style: var(
2019
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-se-ic,
2020
+ var(
2021
+ --_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-se-ic,
2022
+ var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-se-ic)
2023
+ )
2024
+ );
2025
+ text-align: var(
2026
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-tt-an,
2027
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-tt-an, var(--_ctm-dn-pt-ds-vt-pr-on-te-tt-an))
2028
+ );
2029
+ letter-spacing: var(
2030
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-lr-sg,
2031
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-lr-sg, var(--_ctm-dn-pt-ds-vt-pr-on-te-lr-sg))
2032
+ );
2033
+ line-height: var(
2034
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-le-ht,
2035
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-le-ht, var(--_ctm-dn-pt-ds-vt-pr-on-te-le-ht))
2036
+ );
2037
+ text-decoration: var(
2038
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ue,
2039
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ue, var(--_ctm-dn-pt-ds-vt-pr-on-te-ue))
2040
+ );
2041
+ }
2042
+ }
2043
+ //Dropdown
2044
+ .est__dropdown__main {
2045
+ position: relative;
2046
+ width: 100%;
2047
+ display: flex;
2048
+ flex-direction: column;
2049
+ gap: var(
2050
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
2051
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg, var(--_ctm-dn-lt-on-te-ve-sg))
2052
+ );
2053
+
2054
+ padding: var(
2055
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-os-pg,
2056
+ var(
2057
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-os-pg,
2058
+ var(--_ctm-dn-lt-dn-dy-se-dn-os-pg)
2059
+ )
2060
+ );
2061
+
2062
+ margin-top: 10px;
2063
+
2064
+ label {
2065
+ font-size: var(
2066
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-se,
2067
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-se, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-se))
2068
+ );
2069
+ font-family: var(
2070
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-fy,
2071
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-fy, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-fy))
2072
+ );
2073
+ color: var(
2074
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-cr,
2075
+ var(
2076
+ --_ctm-tab-dn-pt-ds-vt-pr-on-te-cr,
2077
+ var(--_gray-700, var(--_ctm-dn-pt-ds-vt-pr-on-te-cr))
2078
+ )
2079
+ );
2080
+ font-weight: var(
2081
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ft-wt,
2082
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ft-wt, var(--_ctm-dn-pt-ds-vt-pr-on-te-ft-wt))
2083
+ );
2084
+ text-decoration: var(
2085
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-ue,
2086
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-ue, var(--_ctm-dn-pt-ds-vt-pr-on-te-ue))
2087
+ );
2088
+ letter-spacing: var(
2089
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-lr-sg,
2090
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-lr-sg, var(--_ctm-dn-pt-ds-vt-pr-on-te-lr-sg))
2091
+ );
2092
+ text-align: var(
2093
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-tt-an,
2094
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-tt-an, var(--_ctm-dn-pt-ds-vt-pr-on-te-tt-an))
2095
+ );
2096
+ line-height: var(
2097
+ --_ctm-mob-dn-pt-ds-vt-pr-on-te-le-ht,
2098
+ var(--_ctm-tab-dn-pt-ds-vt-pr-on-te-le-ht, var(--_ctm-dn-pt-ds-vt-pr-on-te-le-ht))
2099
+ );
2100
+ display: block;
2101
+ }
2102
+
2103
+ .est__dropdown {
2104
+ cursor: pointer;
2105
+ position: relative;
2106
+ color: var(--_gray-700);
2107
+
2108
+ border-radius: 6px;
2109
+ background-color: #fff;
2110
+ display: flex;
2111
+ justify-content: space-between;
2112
+ align-items: center;
2113
+ width: 100%;
2114
+ .value__selected {
2115
+ width: 100%;
2116
+ }
2117
+
2118
+ &.open .list {
2119
+ display: none;
2120
+ margin-top: var(
2121
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-on-ad-lt-sg,
2122
+ var(
2123
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-on-ad-lt-sg,
2124
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-on-ad-lt-sg)
2125
+ )
2126
+ );
2127
+ gap: var(
2128
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2129
+ var(
2130
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2131
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg)
2132
+ )
2133
+ );
2134
+ background-color: var(
2135
+ --_ctm-mob-dn-dn-se-bd-cr,
2136
+ var(--_ctm-tab-dn-dn-se-bd-cr, var(--_ctm-dn-dn-se-bd-cr))
2137
+ );
2138
+ }
2139
+
2140
+ .list {
2141
+ display: flex !important;
2142
+ flex-direction: column;
2143
+ gap: var(
2144
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2145
+ var(
2146
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2147
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg)
2148
+ )
2149
+ );
2150
+ border: var(
2151
+ --_ctm-mob-dn-dn-se-br-wh,
2152
+ var(--_ctm-tab-dn-dn-se-br-wh, var(--_ctm-dn-dn-se-br-wh))
2153
+ )
2154
+ var(
2155
+ --_ctm-mob-dn-dn-se-br-se,
2156
+ var(--_ctm-tab-dn-dn-se-br-se, var(--_ctm-dn-dn-se-br-se))
2157
+ )
2158
+ var(
2159
+ --_gray-200,
2160
+ var(
2161
+ --_ctm-mob-dn-dn-se-br-cr,
2162
+ var(--_ctm-tab-dn-dn-se-br-cr, var(--_ctm-dn-dn-se-br-cr))
2163
+ )
2164
+ );
2165
+ border-radius: var(
2166
+ --_ctm-mob-dn-dn-se-br-rs,
2167
+ var(--_ctm-tab-dn-dn-se-br-rs, var(--_ctm-dn-dn-se-br-rs))
2168
+ );
2169
+ box-shadow: var(
2170
+ --_show-shadow-dn-se,
2171
+ var(
2172
+ --_ctm-mob-dn-dn-se-sw-ae,
2173
+ var(--_ctm-tab-dn-dn-se-sw-ae, var(--_ctm-dn-dn-se-sw-ae))
2174
+ )
2175
+ var(
2176
+ --_ctm-mob-dn-dn-se-sw-br,
2177
+ var(--_ctm-tab-dn-dn-se-sw-br, var(--_ctm-dn-dn-se-sw-br))
2178
+ )
2179
+ var(
2180
+ --_ctm-mob-dn-dn-se-sw-sd,
2181
+ var(--_ctm-tab-dn-dn-se-sw-sd, var(--_ctm-dn-dn-se-sw-sd))
2182
+ )
2183
+ var(
2184
+ --_ctm-mob-dn-dn-se-sw-cr,
2185
+ var(--_ctm-tab-dn-dn-se-sw-cr, var(--_ctm-dn-dn-se-sw-cr))
2186
+ )
2187
+ );
2188
+ position: absolute;
2189
+ top: 100%;
2190
+ left: 0;
2191
+ width: 100%;
2192
+ background-color: var(
2193
+ --_ctm-mob-dn-dn-se-bd-cr,
2194
+ var(--_ctm-tab-dn-dn-se-bd-cr, var(--_ctm-dn-dn-se-bd-cr))
2195
+ );
2196
+ border-radius: 4px;
2197
+ z-index: var(--_higher-zIndex);
2198
+ max-height: 200px;
2199
+ overflow-y: auto;
2200
+
2201
+ &.top {
2202
+ bottom: 100%;
2203
+ top: auto;
2204
+ }
2205
+
2206
+ .list__option {
2207
+ padding: var(
2208
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-pg,
2209
+ var(
2210
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-pg,
2211
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-pg)
2212
+ )
2213
+ );
2214
+ cursor: pointer;
2215
+
2216
+ &:hover {
2217
+ background-color: var(--_primary-25);
2218
+ color: var(--_primary-400);
2219
+ }
2220
+
2221
+ &.disabled {
2222
+ cursor: not-allowed;
2223
+ opacity: 0.4;
2224
+ }
2225
+ }
2226
+ }
2227
+ }
2228
+ }
2229
+
2230
+ // variant dropdown selection
2231
+ .var__drop__selection {
2232
+ display: flex;
2233
+ width: 100%;
2234
+ gap: var(
2235
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2236
+ var(
2237
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2238
+ var(
2239
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2240
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
2241
+ )
2242
+ )
2243
+ );
2244
+
2245
+ flex-direction: row;
2246
+ &[data-dropdown-style="Vertical List"] {
2247
+ flex-direction: column;
2248
+ gap: var(
2249
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2250
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg))
2251
+ );
2252
+ }
2253
+ .dropdown_wrapper {
2254
+ position: relative;
2255
+ &[data-show-divider="true"] {
2256
+ &:not(:last-child)::after {
2257
+ content: "";
2258
+ position: relative;
2259
+ background-color: #000;
2260
+ height: 1px;
2261
+ width: 100%;
2262
+ display: flex;
2263
+ top: calc(
2264
+ calc(
2265
+ var(
2266
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2267
+ var(
2268
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2269
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
2270
+ )
2271
+ ) +
2272
+ 10px
2273
+ ) /
2274
+ 2
2275
+ );
2276
+ }
2277
+ }
2278
+
2279
+ &[data-show-item-divider="true"] {
2280
+ .est__dropdown__main {
2281
+ .est__dropdown {
2282
+ .list {
2283
+ :not(:last-child).list__option {
2284
+ &::after {
2285
+ content: "";
2286
+ position: relative;
2287
+ background-color: #000;
2288
+ height: 1px;
2289
+ width: 100%;
2290
+ display: flex;
2291
+ top: calc(
2292
+ var(
2293
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2294
+ var(
2295
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg,
2296
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-dy-se-dn-lt-im-sg)
2297
+ )
2298
+ ) /
2299
+ 2
2300
+ );
2301
+ }
2302
+ }
2303
+ }
2304
+ }
2305
+ }
2306
+ }
2307
+ }
2308
+ & > div {
2309
+ width: 100%;
2310
+ }
2311
+ }
2312
+ // Quantity Fields
2313
+ .field__group {
2314
+ // display: flex;
2315
+ // flex-wrap: wrap;
2316
+ // gap: 8px;
2317
+ display: grid;
2318
+ grid-template-columns: repeat(
2319
+ auto-fit,
2320
+ minmax(
2321
+ var(
2322
+ --_ctm-mob-var-lt-mn-cn-wh,
2323
+ var(--_ctm-tab-var-lt-mn-cn-wh, var(--_ctm-var-lt-mn-cn-wh))
2324
+ ),
2325
+ var(--_ctm-mob-var-lt-mn-cn-wh)
2326
+ )
2327
+ );
2328
+ gap: var(
2329
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-rw-sg,
2330
+ var(
2331
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-rw-sg,
2332
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-rw-sg)
2333
+ )
2334
+ );
2335
+ .field__group__item {
2336
+ font-size: 16px;
2337
+ display: flex;
2338
+ flex-direction: column;
2339
+ align-items: center;
2340
+ justify-content: center;
2341
+ gap: 8px;
2342
+ input[type="number"] {
2343
+ // width: 70px !important;
2344
+ width: 100%;
2345
+ border: 1px solid var(--_gray-300);
2346
+ padding-inline: 10px;
2347
+ border-radius: 4px;
2348
+ text-align: center;
2349
+ height: 40px;
2350
+ &:focus-within {
2351
+ border: 1px solid var(--_primary-200);
2352
+ box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
2353
+ }
2354
+ &:disabled {
2355
+ cursor: not-allowed;
2356
+ opacity: 0.4;
2357
+ }
2358
+ }
2359
+ }
2360
+ }
2361
+ // Enter quantity styles
2362
+ .quantiy__details {
2363
+ display: flex;
2364
+ flex-direction: column;
2365
+ gap: var(
2366
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg,
2367
+ var(
2368
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg,
2369
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg)
2370
+ )
2371
+ );
2372
+ padding: var(
2373
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg,
2374
+ var(
2375
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg,
2376
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg)
2377
+ )
2378
+ );
2379
+
2380
+ .title {
2381
+ display: flex;
2382
+ justify-content: space-between;
2383
+ align-items: center;
2384
+ font-weight: 600;
2385
+ font-size: 18px;
2386
+ & > button {
2387
+ border-bottom: 1px solid var(--_gray-400);
2388
+ color: var(--_gray-600);
2389
+ font-size: 14px;
2390
+ }
2391
+ }
2392
+ .fit__details {
2393
+ display: flex;
2394
+ flex-direction: column;
2395
+ gap: 12px;
2396
+ .fit__desc {
2397
+ display: flex;
2398
+ flex-direction: column;
2399
+ gap: var(
2400
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg,
2401
+ var(
2402
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg,
2403
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg)
2404
+ )
2405
+ );
2406
+
2407
+ font-size: 16px;
2408
+ color: var(--_gray-900);
2409
+ .each__price {
2410
+ font-weight: 600;
2411
+ }
2412
+ }
2413
+ }
2414
+ }
2415
+ .grouped_items {
2416
+ display: flex;
2417
+ flex-direction: column;
2418
+ gap: var(
2419
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2420
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg))
2421
+ );
2422
+
2423
+ .tab__accordion {
2424
+ display: flex;
2425
+ flex-direction: column;
2426
+ gap: var(
2427
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2428
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg))
2429
+ );
2430
+
2431
+ .tab__container {
2432
+ display: flex;
2433
+ flex-direction: column;
2434
+
2435
+ .tab {
2436
+ &:first-child {
2437
+ margin-bottom: var(
2438
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
2439
+ var(
2440
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg,
2441
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-on-te-ve-sg)
2442
+ )
2443
+ );
2444
+ }
2445
+ }
2446
+
2447
+ .tab__content {
2448
+ display: flex;
2449
+ flex-direction: column;
2450
+ padding: var(
2451
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg,
2452
+ var(
2453
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg,
2454
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-pg)
2455
+ )
2456
+ );
2457
+
2458
+ .field__group {
2459
+ gap: var(
2460
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg,
2461
+ var(
2462
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg,
2463
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-sg)
2464
+ )
2465
+ );
2466
+
2467
+ .field__group__item {
2468
+ gap: var(
2469
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg,
2470
+ var(
2471
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg,
2472
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-gp-hr-ad-on-sg)
2473
+ )
2474
+ );
2475
+ }
2476
+ }
2477
+ }
2478
+ }
2479
+ }
2480
+
2481
+ &[data-show-divider="true"] {
2482
+ & > div {
2483
+ &:not(:last-child)::after {
2484
+ content: "";
2485
+ position: relative;
2486
+ background-color: #000;
2487
+ height: 1px;
2488
+ width: 100%;
2489
+ display: flex;
2490
+ top: calc(
2491
+ var(
2492
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2493
+ var(
2494
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2495
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
2496
+ )
2497
+ ) /
2498
+ 2
2499
+ );
2500
+ }
2501
+ }
2502
+
2503
+ .tab__accordion {
2504
+ &:not(:last-child)::after {
2505
+ content: "";
2506
+ position: relative;
2507
+ background-color: #000;
2508
+ height: 1px;
2509
+ width: 100%;
2510
+ display: flex;
2511
+ top: calc(
2512
+ var(
2513
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2514
+ var(
2515
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2516
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
2517
+ )
2518
+ ) /
2519
+ 2
2520
+ );
2521
+ }
2522
+ }
2523
+ }
2524
+ }
2525
+ // tabs
2526
+ .tabs__container {
2527
+ display: flex;
2528
+ position: relative;
2529
+ .tab {
2530
+ flex: 1;
2531
+ padding-block: 20px;
2532
+ font-weight: 600;
2533
+ text-align: center;
2534
+ cursor: pointer;
2535
+ position: relative;
2536
+ &.tab__active {
2537
+ font-weight: bold;
2538
+ }
2539
+ }
2540
+ .tab__active-indicator {
2541
+ position: absolute;
2542
+ bottom: 0;
2543
+ left: 0;
2544
+ height: 2px;
2545
+ background-color: #000;
2546
+ transition:
2547
+ left 0.3s ease,
2548
+ width 0.3s ease;
2549
+ }
2550
+ }
2551
+
2552
+ // accordion tabs
2553
+ .tab__accordion_wrapper {
2554
+ .tab__accordion {
2555
+ display: flex;
2556
+ flex-direction: column;
2557
+ padding: var(
2558
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg,
2559
+ var(
2560
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg,
2561
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg)
2562
+ )
2563
+ );
2564
+
2565
+ .tab__container {
2566
+ display: flex;
2567
+ flex-direction: column;
2568
+ gap: var(
2569
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg,
2570
+ var(
2571
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg,
2572
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg)
2573
+ )
2574
+ );
2575
+
2576
+ .tab_acc_wrapper {
2577
+ display: flex;
2578
+ flex-direction: column;
2579
+ gap: var(
2580
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-ad-cr-sg,
2581
+ var(
2582
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-ad-cr-sg,
2583
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-ad-cr-sg)
2584
+ )
2585
+ );
2586
+
2587
+ padding: var(
2588
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-vl-pg,
2589
+ var(
2590
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-vl-pg,
2591
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-vl-pg)
2592
+ )
2593
+ )
2594
+ var(
2595
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-hl-pg,
2596
+ var(
2597
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-hl-pg,
2598
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-hl-pg)
2599
+ )
2600
+ );
2601
+
2602
+ .tab {
2603
+ display: flex;
2604
+ padding-inline: 2px;
2605
+ position: relative;
2606
+ cursor: pointer;
2607
+ flex-direction: row;
2608
+ &[data-expand-icon="Left"] {
2609
+ flex-direction: row-reverse;
2610
+ justify-content: flex-end;
2611
+ }
2612
+ &[data-item-dividers="true"] {
2613
+ &::after {
2614
+ content: "";
2615
+ position: absolute;
2616
+ bottom: 0;
2617
+ height: 2px;
2618
+ width: 100%;
2619
+ border-bottom: 1px solid var(--_gray-200);
2620
+ }
2621
+ }
2622
+ span {
2623
+ padding-block: 12px;
2624
+ display: inline-block;
2625
+ }
2626
+ .active {
2627
+ border-bottom: 2px solid var(--_primary-400);
2628
+ }
2629
+ &.inactive {
2630
+ height: 0px;
2631
+ }
2632
+ }
2633
+ .tab__content {
2634
+ &.d-none {
2635
+ display: none;
2636
+ }
2637
+ &.d-block {
2638
+ display: block;
2639
+ }
2640
+ }
2641
+ }
2642
+ }
2643
+ }
2644
+
2645
+ &[data-show-dividers="true"] {
2646
+ .tab__accordion {
2647
+ .tab__container {
2648
+ .tab_acc_wrapper {
2649
+ &:not(:last-child)::after {
2650
+ content: "";
2651
+ position: relative;
2652
+ background-color: #000;
2653
+ height: 1px;
2654
+ width: 100%;
2655
+ display: flex;
2656
+ top: calc(
2657
+ var(
2658
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg,
2659
+ var(
2660
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg,
2661
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-an-sg)
2662
+ )
2663
+ ) /
2664
+ 2
2665
+ );
2666
+ }
2667
+ }
2668
+ }
2669
+ }
2670
+ }
2671
+
2672
+ &[data-icon-position="Left"] {
2673
+ .tab__accordion {
2674
+ .tab__container {
2675
+ .tab_acc_wrapper {
2676
+ .tab {
2677
+ flex-direction: row-reverse;
2678
+ align-self: flex-start;
2679
+ }
2680
+ }
2681
+ }
2682
+ }
2683
+ }
2684
+ }
2685
+
2686
+ // table
2687
+ .table_container,
2688
+ .tab__content {
2689
+ .table__class {
2690
+ border: 1px solid var(--_gray-200);
2691
+ border-radius: 8px;
2692
+ .custom__table {
2693
+ border: 1px solid var(--_gray-200);
2694
+ width: 100%;
2695
+ table-layout: fixed;
2696
+ // height: 300px;
2697
+
2698
+ border-collapse: collapse;
2699
+ &[data-header-divider="true"] {
2700
+ thead tr th {
2701
+ border-bottom: 1px solid var(--_gray-200);
2702
+ }
2703
+ }
2704
+ &[data-row-divider="true"] {
2705
+ tbody tr td {
2706
+ border-bottom: 1px solid var(--_gray-200);
2707
+ }
2708
+ }
2709
+ &[data-column-divider="true"] {
2710
+ tbody tr td,
2711
+ thead tr th {
2712
+ border-right: 1px solid var(--_gray-200);
2713
+ }
2714
+
2715
+ tbody tr td:last-child,
2716
+ thead tr th:last-child {
2717
+ border-right: none;
2718
+ }
2719
+ }
2720
+ &[data-alternative-row-colors="true"] {
2721
+ tbody tr:nth-child(odd) {
2722
+ background-color: var(--_gray-300);
2723
+ width: 100%;
2724
+ }
2725
+ }
2726
+ thead {
2727
+ height: var(
2728
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht,
2729
+ var(
2730
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht,
2731
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht)
2732
+ )
2733
+ );
2734
+ th {
2735
+ height: var(
2736
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht,
2737
+ var(
2738
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht,
2739
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-ht)
2740
+ )
2741
+ );
2742
+ text-align: var(
2743
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at,
2744
+ var(
2745
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at,
2746
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at)
2747
+ )
2748
+ );
2749
+ padding: var(
2750
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-cl-pg,
2751
+ var(
2752
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-cl-pg,
2753
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-hr-cl-pg)
2754
+ )
2755
+ );
2756
+ background-color: var(--_gray-50);
2757
+ font-weight: 600;
2758
+ color: var(--_gray-600);
2759
+ word-break: break-word;
2760
+ }
2761
+ }
2762
+
2763
+ tbody {
2764
+ tr {
2765
+ border-bottom: 1px solid var(--_gray-200);
2766
+ height: var(
2767
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-ht,
2768
+ var(
2769
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-ht,
2770
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-ht)
2771
+ )
2772
+ );
2773
+ td {
2774
+ text-align: var(
2775
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at,
2776
+ var(
2777
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at,
2778
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-ct-at)
2779
+ )
2780
+ );
2781
+ padding: var(
2782
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-cl-pg,
2783
+ var(
2784
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-cl-pg,
2785
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-te-dy-se-rw-cl-pg)
2786
+ )
2787
+ );
2788
+ .disocunted__price {
2789
+ color: var(--_gray-900);
2790
+ }
2791
+ .actual__price {
2792
+ color: var(--_gray-500);
2793
+ }
2794
+ .qty__input {
2795
+ border: 1px solid var(--_gray-200);
2796
+ padding-inline: 10px;
2797
+ text-align: center;
2798
+ border-radius: 6px;
2799
+ height: 40px;
2800
+ }
2801
+ input[type="number"] {
2802
+ &:focus-within {
2803
+ border: 1px solid var(--_primary-200);
2804
+ box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
2805
+ }
2806
+ &:disabled {
2807
+ cursor: not-allowed;
2808
+ opacity: 0.4;
2809
+ }
2810
+ }
2811
+ }
2812
+ }
2813
+ }
2814
+ }
2815
+ }
2816
+ &[data-show-divider="true"] {
2817
+ & > div {
2818
+ &:not(:last-child)::after {
2819
+ content: "";
2820
+ position: relative;
2821
+ background-color: #000;
2822
+ height: 1px;
2823
+ width: 100%;
2824
+ display: flex;
2825
+ top: calc(
2826
+ var(
2827
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2828
+ var(
2829
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg,
2830
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-im-sg)
2831
+ )
2832
+ ) /
2833
+ 2
2834
+ );
2835
+ }
2836
+ }
2837
+ }
2838
+ }
2839
+
2840
+ // horizontal tabs
2841
+ .tabs__main {
2842
+ &.tabs__vertical {
2843
+ .tabs {
2844
+ .tabs__container {
2845
+ flex-direction: column;
2846
+ min-width: 120px;
2847
+ }
2848
+ }
2849
+ }
2850
+ &.tabs__hr {
2851
+ .tabs {
2852
+ flex-direction: column;
2853
+ gap: var(
2854
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-ad-cr-sg,
2855
+ var(
2856
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-ad-cr-sg,
2857
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-ad-cr-sg)
2858
+ )
2859
+ );
2860
+
2861
+ .tabs__container {
2862
+ width: 100%;
2863
+ }
2864
+ }
2865
+ }
2866
+ .tabs {
2867
+ display: flex;
2868
+ gap: var(
2869
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tb-im-se-dt-se-tb-ad-cr-sg,
2870
+ var(
2871
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tb-im-se-dt-se-tb-ad-cr-sg,
2872
+ var(--_ctm-dn-tb-im-se-dt-se-tb-ad-cr-sg)
2873
+ )
2874
+ );
2875
+
2876
+ .tabs__container {
2877
+ display: flex;
2878
+ gap: var(
2879
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-sg,
2880
+ var(
2881
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-sg,
2882
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-sg)
2883
+ )
2884
+ );
2885
+
2886
+ .tab {
2887
+ display: flex;
2888
+ justify-content: var(--_tab-aliginment);
2889
+ padding: var(
2890
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-vl-pg,
2891
+ var(
2892
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-vl-pg,
2893
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-vl-pg)
2894
+ )
2895
+ )
2896
+ var(
2897
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-hl-pg,
2898
+ var(
2899
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-hl-pg,
2900
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-tb-hl-pg)
2901
+ )
2902
+ );
2903
+ background-color: var(
2904
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-bd-cr,
2905
+ var(
2906
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-bd-cr,
2907
+ var(--_ctm-dn-tb-im-se-dt-se-bd-cr)
2908
+ )
2909
+ );
2910
+ border-color: var(
2911
+ --_show-border-im-se,
2912
+ var(
2913
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-cr,
2914
+ var(
2915
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-cr,
2916
+ var(--_ctm-dn-tb-im-se-dt-se-br-cr)
2917
+ )
2918
+ )
2919
+ );
2920
+ border-style: var(
2921
+ --_show-border-im-se,
2922
+ var(
2923
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-se,
2924
+ var(
2925
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-se,
2926
+ var(--_ctm-dn-tb-im-se-dt-se-br-se)
2927
+ )
2928
+ )
2929
+ );
2930
+ border-width: var(
2931
+ --_show-border-im-se,
2932
+ var(
2933
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-wh,
2934
+ var(
2935
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-wh,
2936
+ var(--_ctm-dn-tb-im-se-dt-se-br-wh)
2937
+ )
2938
+ )
2939
+ );
2940
+ border-radius: var(
2941
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-rs,
2942
+ var(
2943
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-rs,
2944
+ var(--_ctm-dn-tb-im-se-dt-se-br-rs)
2945
+ )
2946
+ );
2947
+ box-shadow: var(
2948
+ --_show-shadow-im-se,
2949
+ var(
2950
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-ae,
2951
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-ae)
2952
+ ),
2953
+ var(
2954
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-br,
2955
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-br)
2956
+ ),
2957
+ var(
2958
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-sd,
2959
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-sd)
2960
+ ),
2961
+ var(
2962
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-cr,
2963
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-sw-cr)
2964
+ )
2965
+ );
2966
+ border-radius: var(
2967
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-rs,
2968
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-dt-se-br-rs)
2969
+ );
2970
+
2971
+ &:hover {
2972
+ background-color: var(
2973
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-bd-cr,
2974
+ var(
2975
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-bd-cr,
2976
+ var(--_ctm-dn-tb-im-se-hr-se-bd-cr)
2977
+ )
2978
+ );
2979
+ border-color: var(
2980
+ --_show-border-im-se,
2981
+ var(
2982
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-cr,
2983
+ var(
2984
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-cr,
2985
+ var(--_ctm-dn-tb-im-se-hr-se-br-cr)
2986
+ )
2987
+ )
2988
+ );
2989
+ border-style: var(
2990
+ --_show-border-im-se,
2991
+ var(
2992
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-se,
2993
+ var(
2994
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-se,
2995
+ var(--_ctm-dn-tb-im-se-hr-se-br-se)
2996
+ )
2997
+ )
2998
+ );
2999
+ border-width: var(
3000
+ --_show-border-im-se,
3001
+ var(
3002
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-wh,
3003
+ var(
3004
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-wh,
3005
+ var(--_ctm-dn-tb-im-se-hr-se-br-wh)
3006
+ )
3007
+ )
3008
+ );
3009
+ border-radius: var(
3010
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-rs,
3011
+ var(
3012
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-br-rs,
3013
+ var(--_ctm-dn-tb-im-se-hr-se-br-rs)
3014
+ )
3015
+ );
3016
+ box-shadow: var(
3017
+ --_show-shadow-im-se,
3018
+ var(
3019
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-ae,
3020
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-ae)
3021
+ ),
3022
+ var(
3023
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-br,
3024
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-br)
3025
+ ),
3026
+ var(
3027
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-sd,
3028
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-sd)
3029
+ ),
3030
+ var(
3031
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-cr,
3032
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-hr-se-sw-cr)
3033
+ )
3034
+ );
3035
+ }
3036
+
3037
+ &.active {
3038
+ background-color: var(
3039
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-bd-cr,
3040
+ var(
3041
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-bd-cr,
3042
+ var(--_ctm-dn-tb-im-se-sd-se-bd-cr)
3043
+ )
3044
+ );
3045
+ border-color: var(
3046
+ --_show-border-im-se,
3047
+ var(
3048
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-cr,
3049
+ var(
3050
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-cr,
3051
+ var(--_ctm-dn-tb-im-se-sd-se-br-cr)
3052
+ )
3053
+ )
3054
+ );
3055
+ border-style: var(
3056
+ --_show-border-im-se,
3057
+ var(
3058
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-se,
3059
+ var(
3060
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-se,
3061
+ var(--_ctm-dn-tb-im-se-sd-se-br-se)
3062
+ )
3063
+ )
3064
+ );
3065
+ border-width: var(
3066
+ --_show-border-im-se,
3067
+ var(
3068
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-wh,
3069
+ var(
3070
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-wh,
3071
+ var(--_ctm-dn-tb-im-se-sd-se-br-wh)
3072
+ )
3073
+ )
3074
+ );
3075
+ border-radius: var(
3076
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-rs,
3077
+ var(
3078
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-br-rs,
3079
+ var(--_ctm-dn-tb-im-se-sd-se-br-rs)
3080
+ )
3081
+ );
3082
+ box-shadow: var(
3083
+ --_show-shadow-im-se,
3084
+ var(
3085
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-ae,
3086
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-ae)
3087
+ ),
3088
+ var(
3089
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-br,
3090
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-br)
3091
+ ),
3092
+ var(
3093
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-sd,
3094
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-sd)
3095
+ ),
3096
+ var(
3097
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-cr,
3098
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-dn-tb-im-se-sd-se-sw-cr)
3099
+ )
3100
+ );
3101
+ }
3102
+ }
3103
+ }
3104
+ .tab__content {
3105
+ padding: var(
3106
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg,
3107
+ var(
3108
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg,
3109
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-gd-os-dy-se-cr-pg)
3110
+ )
3111
+ );
3112
+ }
3113
+ }
3114
+ }
3115
+
3116
+ // embla
3117
+
3118
+ .embla {
3119
+ width: 100%;
3120
+ height: 100%;
3121
+ position: relative;
3122
+ display: flex;
3123
+ flex-direction: column;
3124
+
3125
+ // overflow: hidden;
3126
+
3127
+ .embla__viewport {
3128
+ width: 100%;
3129
+ height: 100%;
3130
+ position: relative;
3131
+ display: flex;
3132
+ flex-direction: column;
3133
+
3134
+ overflow: hidden;
3135
+
3136
+ .embla__container {
3137
+ width: 100%;
3138
+ height: 100%;
3139
+ display: flex;
3140
+ grid-template-rows: 100%;
3141
+ // grid-template-columns: 100%;
3142
+ // grid-template-columns: repeat(
3143
+ // var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-is-pr-se),
3144
+ // calc(100% / var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-is-pr-se))
3145
+ // );
3146
+ // grid-auto-flow: column;
3147
+ gap: var(
3148
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-sg,
3149
+ var(
3150
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-sg,
3151
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-sh-im-sg)
3152
+ )
3153
+ );
3154
+
3155
+ &[data-control-type="Bottom"][data-slider-control="Arrows"] {
3156
+ height: calc(
3157
+ 100% - calc(
3158
+ var(
3159
+ --_ctm-mob-dn-pn-as-aw-se,
3160
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3161
+ ) +
3162
+ 8px
3163
+ )
3164
+ );
3165
+ }
3166
+ &[data-control-type="Bottom"][data-slider-control="Pagination Line"] {
3167
+ height: calc(
3168
+ 100% - calc(
3169
+ var(
3170
+ --_ctm-mob-dn-pn-le-le-ht,
3171
+ var(--_ctm-tab-dn-pn-le-le-ht, var(--_ctm-dn-pn-le-le-ht))
3172
+ ) +
3173
+ 20px
3174
+ )
3175
+ );
3176
+ }
3177
+ &[data-control-type="Bottom"][data-slider-control="Dots"] {
3178
+ height: calc(
3179
+ 100% - calc(
3180
+ var(
3181
+ --_ctm-mob-dn-pn-ds-dt-se,
3182
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3183
+ ) +
3184
+ 20px
3185
+ )
3186
+ );
3187
+ }
3188
+
3189
+ .embla__slide {
3190
+ // width: 100%;
3191
+ height: 100%;
3192
+ }
3193
+ }
3194
+ }
3195
+
3196
+ .arrow-navigation {
3197
+ display: flex;
3198
+ position: absolute;
3199
+ top: 50%;
3200
+ left: 50%;
3201
+ width: 100%;
3202
+ justify-content: space-between;
3203
+ transform: translate(-50%, -50%);
3204
+ // padding-left: 20px;
3205
+ &[data-control-type="Side"] {
3206
+ .left-button,
3207
+ .right-button {
3208
+ background-color: transparent;
3209
+ }
3210
+ }
3211
+ &[data-background-shape="Round"] {
3212
+ .left-button,
3213
+ .right-button {
3214
+ background-color: #f2f5f5;
3215
+ box-sizing: 0 4px 8px rgba(0, 0, 0, 0.1);
3216
+ }
3217
+ }
3218
+ &[data-control-type="Bottom-Overflow"] {
3219
+ transform: translateX(-50%);
3220
+ width: 100%;
3221
+ justify-content: center;
3222
+ gap: 12px;
3223
+ top: unset;
3224
+ bottom: 6px;
3225
+ }
3226
+ &[data-control-type="Bottom"] {
3227
+ transform: unset;
3228
+ position: static;
3229
+ width: 100%;
3230
+ justify-content: center;
3231
+ gap: 12px;
3232
+ margin-top: 10px;
3233
+ }
3234
+ .left-button {
3235
+ padding: 10px;
3236
+ border-radius: 50%;
3237
+ border: none;
3238
+ width: var(
3239
+ --_ctm-mob-dn-pn-as-aw-se,
3240
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3241
+ );
3242
+ height: var(
3243
+ --_ctm-mob-dn-pn-as-aw-se,
3244
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3245
+ );
3246
+
3247
+ display: flex;
3248
+ align-items: center;
3249
+ justify-content: center;
3250
+ cursor: pointer;
3251
+ outline: none;
3252
+ margin-left: 12px;
3253
+ &:disabled {
3254
+ & svg {
3255
+ path {
3256
+ stroke: rgb(192, 192, 192);
3257
+ }
3258
+ }
3259
+ }
3260
+ }
3261
+ .right-button {
3262
+ border-radius: 50%;
3263
+ border: none;
3264
+ width: var(
3265
+ --_ctm-mob-dn-pn-as-aw-se,
3266
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3267
+ );
3268
+ height: var(
3269
+ --_ctm-mob-dn-pn-as-aw-se,
3270
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3271
+ );
3272
+
3273
+ display: flex;
3274
+ align-items: center;
3275
+ justify-content: center;
3276
+ cursor: pointer;
3277
+ outline: none;
3278
+ margin-right: 12px;
3279
+ padding: 10px;
3280
+
3281
+ &:disabled {
3282
+ & svg {
3283
+ path {
3284
+ stroke: rgb(192, 192, 192);
3285
+ }
3286
+ }
3287
+ }
3288
+ }
3289
+ .icon {
3290
+ display: flex;
3291
+ svg {
3292
+ width: calc(
3293
+ var(
3294
+ --_ctm-mob-dn-pn-as-aw-se,
3295
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3296
+ ) *
3297
+ 0.5
3298
+ );
3299
+ height: calc(
3300
+ var(
3301
+ --_ctm-mob-dn-pn-as-aw-se,
3302
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3303
+ ) *
3304
+ 0.5
3305
+ );
3306
+ path {
3307
+ stroke: var(
3308
+ --_ctm-mob-dn-pn-as-aw-cr,
3309
+ var(--_ctm-tab-dn-pn-as-aw-cr, var(--_ctm-dn-pn-as-aw-cr))
3310
+ );
3311
+ }
3312
+ }
3313
+ }
3314
+ }
3315
+
3316
+ &[data-thumbnail-placement="top"] {
3317
+ flex-direction: column-reverse;
3318
+ }
3319
+ &[data-thumbnail-placement="bottom"] {
3320
+ flex-direction: column;
3321
+ }
3322
+ &[data-thumbnail-placement="left"] {
3323
+ flex-direction: row-reverse;
3324
+
3325
+ .embla__thumbs {
3326
+ width: var(
3327
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3328
+ var(
3329
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3330
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se)
3331
+ )
3332
+ );
3333
+
3334
+ height: 100%;
3335
+
3336
+ & .embla__thumbs__container {
3337
+ flex-direction: column;
3338
+ height: 100%;
3339
+ }
3340
+ }
3341
+ }
3342
+ &[data-thumbnail-placement="right"] {
3343
+ flex-direction: row;
3344
+ .embla__thumbs {
3345
+ width: var(
3346
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3347
+ var(
3348
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3349
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se)
3350
+ )
3351
+ );
3352
+
3353
+ height: 100%;
3354
+
3355
+ & .embla__thumbs__container {
3356
+ flex-direction: column;
3357
+ height: 100%;
3358
+ }
3359
+ }
3360
+ }
3361
+ &[data-control-type="Side"] {
3362
+ display: flex;
3363
+ align-self: center;
3364
+ flex-direction: row;
3365
+ .left-button:disabled,
3366
+ .right-button:disabled {
3367
+ display: none;
3368
+ }
3369
+ }
3370
+ .embla__dots {
3371
+ display: flex;
3372
+ flex-wrap: wrap;
3373
+ justify-content: center;
3374
+ align-items: center;
3375
+ margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
3376
+ gap: 6px;
3377
+ margin-top: 16px;
3378
+
3379
+ &[data-control-type="Bottom-Overflow"] {
3380
+ position: absolute;
3381
+ bottom: 10px;
3382
+ left: 50%;
3383
+ transform: translateX(-50%);
3384
+ width: 75%;
3385
+ }
3386
+ .embla__dot {
3387
+ -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
3388
+ -webkit-appearance: none;
3389
+ appearance: none;
3390
+ background-color: var(--_ctm-dn-pn-ds-or-dt-cr, var(--_tst-dn-pn-ds-or-dt-cr));
3391
+ touch-action: manipulation;
3392
+ display: inline-flex;
3393
+ text-decoration: none;
3394
+ cursor: pointer;
3395
+ border: 0;
3396
+ padding: 0;
3397
+ margin: 0;
3398
+ // width: 0.6rem;
3399
+ // height: 0.6rem;
3400
+ width: var(--_ctm-dn-pn-ds-dt-se, var(--_tst-dn-pn-ds-dt-se));
3401
+ height: var(--_ctm-dn-pn-ds-dt-se, var(--_tst-dn-pn-ds-dt-se));
3402
+ display: flex;
3403
+ align-items: center;
3404
+ justify-content: center;
3405
+ border-radius: 50%;
3406
+ }
3407
+ .embla__dot:after {
3408
+ // box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
3409
+ width: var(--_ctm-dn-pn-ds-dt-se, var(--_tst-dn-pn-ds-dt-se));
3410
+ height: var(--_ctm-dn-pn-ds-dt-se, var(--_tst-dn-pn-ds-dt-se));
3411
+ border-radius: 50%;
3412
+ display: flex;
3413
+ align-items: center;
3414
+ content: "";
3415
+ }
3416
+ .embla__dot--selected:after {
3417
+ box-shadow: inset 0 0 0 1px var(--text-body);
3418
+ background-color: var(--_ctm-dn-pn-ds-ct-dt-cr, var(--_tst-dn-pn-ds-ct-dt-cr));
3419
+ }
3420
+ &[data-slider-control="Pagination Line"] {
3421
+ .embla__dot {
3422
+ width: var(--_ctm-dn-pn-le-le-wh, var(--_ctm-dn-pn-le-le-wh));
3423
+ height: var(--_ctm-dn-pn-le-le-ht, var(--_tst-dn-pn-le-le-ht));
3424
+ background-color: var(--_ctm-dn-pn-le-or-le-cr, var(--_ctm-dn-pn-le-or-le-cr));
3425
+
3426
+ border-radius: 6px;
3427
+ }
3428
+ .embla__dot--selected:after {
3429
+ box-shadow: inset 0 0 0 1px var(--text-body);
3430
+ border-radius: 6px;
3431
+ width: var(--_ctm-dn-pn-le-le-wh, var(--_ctm-dn-pn-le-le-wh));
3432
+ height: var(--_ctm-dn-pn-le-le-ht, var(--_tst-dn-pn-le-le-ht));
3433
+ // background-color: #fff;
3434
+ background-color: var(--_ctm-dn-pn-le-ct-le-cr, var(--_tst-dn-pn-le-ct-le-cr));
3435
+ }
3436
+ }
3437
+ }
3438
+
3439
+ .embla__thumbs {
3440
+ width: 100%;
3441
+ height: var(
3442
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3443
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se, var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se))
3444
+ );
3445
+
3446
+ position: relative;
3447
+ display: grid;
3448
+ grid-template-columns: 1fr;
3449
+ overflow: hidden;
3450
+ // margin: 10px;
3451
+ padding: 10px;
3452
+
3453
+ .embla__thumbs__viewport {
3454
+ width: 100%;
3455
+ height: 100%;
3456
+ position: relative;
3457
+ display: flex;
3458
+ flex-direction: column;
3459
+
3460
+ overflow: hidden;
3461
+ }
3462
+ .embla__thumbs__container {
3463
+ display: flex;
3464
+ flex-direction: row;
3465
+ margin-left: calc(var(--thumbs-slide-spacing) * -1);
3466
+ gap: var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-sg);
3467
+ width: 100%;
3468
+ // justify-content: center;
3469
+ // height: 200px;
3470
+
3471
+ .embla__thumbs__slide {
3472
+ min-width: var(
3473
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3474
+ var(
3475
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3476
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se)
3477
+ )
3478
+ );
3479
+ max-width: var(
3480
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3481
+ var(
3482
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3483
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se)
3484
+ )
3485
+ );
3486
+ height: var(
3487
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3488
+ var(
3489
+ --_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se,
3490
+ var(--_ctm-dn-pt-ds-vt-pr-vt-pr-lt-tl-se)
3491
+ )
3492
+ );
3493
+ & img {
3494
+ width: 100%;
3495
+ height: 100%;
3496
+ }
3497
+ }
3498
+ }
3499
+ }
3500
+ }
3501
+ }
3502
+ }
3503
+
3504
+ @media (max-width: 768px) {
3505
+ grid-template-columns: 1fr;
3506
+ .customizer-panel {
3507
+ border-left: none;
3508
+ padding-left: 0;
3509
+ margin-top: 2rem;
3510
+ }
3511
+ }
3512
+ }
3513
+
3514
+ .embla {
3515
+ width: 100%;
3516
+ height: 100%;
3517
+ position: relative;
3518
+ display: flex;
3519
+ flex-direction: column;
3520
+ padding: 20px;
3521
+ // overflow: hidden;
3522
+
3523
+ .embla__viewport {
3524
+ width: 100%;
3525
+ height: 100%;
3526
+ position: relative;
3527
+ display: flex;
3528
+ flex-direction: column;
3529
+
3530
+ overflow: hidden;
3531
+
3532
+ .embla__container {
3533
+ width: 100%;
3534
+ height: 100%;
3535
+ display: grid;
3536
+ grid-template-rows: 100%;
3537
+
3538
+ grid-template-columns: repeat(
3539
+ var(--_ctm-mob-lt-is-pr-se, var(--_ctm-tab-lt-is-pr-se, var(--_ctm-lt-is-pr-se))),
3540
+ calc(
3541
+ 100% /
3542
+ var(--_ctm-mob-lt-is-pr-se, var(--_ctm-tab-lt-is-pr-se, var(--_ctm-lt-is-pr-se)))
3543
+ )
3544
+ );
3545
+
3546
+ grid-auto-flow: column;
3547
+ gap: var(--_ctm-mob-lt-im-gp, var(--_ctm-tab-lt-im-gp, var(--_ctm-lt-im-gp)));
3548
+
3549
+ &[data-control-type="Bottom"][data-slider-control="Arrows"] {
3550
+ height: calc(100% - calc(50px + 10px));
3551
+ }
3552
+
3553
+ &[data-control-type="Bottom"][data-slider-control="Pagination Line"] {
3554
+ height: calc(100% - calc(50px + 20px));
3555
+ }
3556
+
3557
+ &[data-control-type="Bottom"][data-slider-control="Dots"] {
3558
+ height: calc(
3559
+ 100% - calc(
3560
+ var(
3561
+ --_ctm-mob-dn-pn-ds-dt-se,
3562
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3563
+ ) +
3564
+ 20px
3565
+ )
3566
+ );
3567
+ }
3568
+
3569
+ .embla__slide {
3570
+ width: 100%;
3571
+ height: 100%;
3572
+ & > img {
3573
+ width: 100%;
3574
+ height: 100%;
3575
+ }
3576
+ }
3577
+ }
3578
+ }
3579
+ &:not([data-display-style="Column"]) {
3580
+ .embla__container {
3581
+ grid-auto-columns: calc(
3582
+ 100% / var(--_ctm-mob-lt-is-pr-se, var(--_ctm-tab-lt-is-pr-se, var(--_ctm-lt-is-pr-se)))
3583
+ );
3584
+ }
3585
+ }
3586
+
3587
+ .arrow-navigation {
3588
+ display: flex;
3589
+ position: absolute;
3590
+ top: 50%;
3591
+ left: 50%;
3592
+ width: 100%;
3593
+ justify-content: space-between;
3594
+ transform: translate(-50%, -50%);
3595
+ // padding-left: 20px;
3596
+
3597
+ &[data-control-type="Bottom-Overflow"] {
3598
+ transform: translateX(-50%);
3599
+ width: 100%;
3600
+ justify-content: center;
3601
+ gap: 12px;
3602
+ top: unset;
3603
+ bottom: 6px;
3604
+ }
3605
+ &[data-control-type="Bottom"] {
3606
+ transform: unset;
3607
+ position: static;
3608
+ width: 100%;
3609
+ justify-content: center;
3610
+ gap: 12px;
3611
+ margin-top: 10px;
3612
+ }
3613
+ }
3614
+ &[data-control-type="Side"] {
3615
+ .left-button,
3616
+ .right-button {
3617
+ background-color: transparent;
3618
+ }
3619
+ }
3620
+ &[data-background-shape="Round"] {
3621
+ .left-button,
3622
+ .right-button {
3623
+ background-color: #f2f5f5;
3624
+ box-sizing: 0 4px 8px rgba(0, 0, 0, 0.1);
3625
+ }
3626
+ }
3627
+ .left-button {
3628
+ padding: 10px;
3629
+ border-radius: 50%;
3630
+ border: none;
3631
+ width: var(
3632
+ --_ctm-mob-dn-pn-as-aw-se,
3633
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3634
+ );
3635
+ height: var(
3636
+ --_ctm-mob-dn-pn-as-aw-se,
3637
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3638
+ );
3639
+
3640
+ display: flex;
3641
+ align-items: center;
3642
+ justify-content: center;
3643
+ cursor: pointer;
3644
+ outline: none;
3645
+ margin-left: 12px;
3646
+ &:disabled {
3647
+ & svg {
3648
+ path {
3649
+ stroke: #c3b7b7;
3650
+ }
3651
+ }
3652
+ }
3653
+ }
3654
+ .right-button {
3655
+ border-radius: 50%;
3656
+ border: none;
3657
+ width: var(
3658
+ --_ctm-mob-dn-pn-as-aw-se,
3659
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3660
+ );
3661
+ height: var(
3662
+ --_ctm-mob-dn-pn-as-aw-se,
3663
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3664
+ );
3665
+
3666
+ display: flex;
3667
+ align-items: center;
3668
+ justify-content: center;
3669
+ cursor: pointer;
3670
+ outline: none;
3671
+ margin-right: 12px;
3672
+ padding: 10px;
3673
+
3674
+ &:disabled {
3675
+ & svg {
3676
+ path {
3677
+ stroke: #c3b7b7;
3678
+ }
3679
+ }
3680
+ }
3681
+ }
3682
+ .icon {
3683
+ display: flex;
3684
+
3685
+ svg {
3686
+ width: calc(
3687
+ var(
3688
+ --_ctm-mob-dn-pn-as-aw-se,
3689
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3690
+ ) *
3691
+ 0.5
3692
+ );
3693
+ height: calc(
3694
+ var(
3695
+ --_ctm-mob-dn-pn-as-aw-se,
3696
+ var(--_ctm-tab-dn-pn-as-aw-se, var(--_ctm-dn-pn-as-aw-se))
3697
+ ) *
3698
+ 0.5
3699
+ );
3700
+
3701
+ path {
3702
+ stroke: #514949;
3703
+ }
3704
+ }
3705
+ }
3706
+
3707
+ &[data-control-type="Side"] {
3708
+ .embla__viewport {
3709
+ width: calc(100% - 120px);
3710
+ margin-inline: auto;
3711
+ }
3712
+ .left-button {
3713
+ position: absolute;
3714
+ left: 0;
3715
+ top: 50%;
3716
+ transform: translateY(-50%);
3717
+ }
3718
+ .right-button {
3719
+ position: absolute;
3720
+
3721
+ right: 0;
3722
+ top: 50%;
3723
+ transform: translateY(-50%);
3724
+ }
3725
+ }
3726
+
3727
+ &[data-thumbnail-placement="top"] {
3728
+ flex-direction: column-reverse;
3729
+ }
3730
+ &[data-thumbnail-placement="bottom"] {
3731
+ flex-direction: column;
3732
+ }
3733
+ &[data-thumbnail-placement="left"] {
3734
+ flex-direction: row-reverse;
3735
+
3736
+ .embla__thumbs {
3737
+ width: var(--_ctm-lt-tl-se);
3738
+ height: 100%;
3739
+
3740
+ & .embla__thumbs__container {
3741
+ flex-direction: column;
3742
+ height: 100%;
3743
+ }
3744
+ }
3745
+ }
3746
+ &[data-thumbnail-placement="right"] {
3747
+ flex-direction: row;
3748
+ .embla__thumbs {
3749
+ width: var(--_ctm-mob-lt-tl-se, var(--_ctm-tab-lt-tl-se, var(--_ctm-lt-tl-se)));
3750
+
3751
+ height: 100%;
3752
+
3753
+ & .embla__thumbs__container {
3754
+ flex-direction: column;
3755
+ height: 100%;
3756
+ }
3757
+ }
3758
+ }
3759
+ .embla__dots {
3760
+ display: flex;
3761
+ flex-wrap: wrap;
3762
+ justify-content: center;
3763
+ align-items: center;
3764
+ margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
3765
+ gap: 6px;
3766
+
3767
+ &[data-control-type="Bottom-Overflow"] {
3768
+ position: absolute;
3769
+ bottom: 10px;
3770
+ left: 50%;
3771
+ transform: translateX(-50%);
3772
+ width: 75%;
3773
+ }
3774
+ .embla__dot {
3775
+ -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
3776
+ -webkit-appearance: none;
3777
+ appearance: none;
3778
+ background-color: var(
3779
+ --_ctm-mob-dn-pn-ds-or-dt-cr,
3780
+ var(--_ctm-tab-dn-pn-ds-or-dt-cr, var(--_ctm-dn-pn-ds-or-dt-cr))
3781
+ );
3782
+
3783
+ touch-action: manipulation;
3784
+ display: inline-flex;
3785
+ text-decoration: none;
3786
+ cursor: pointer;
3787
+ border: 0;
3788
+ padding: 0;
3789
+ margin: 0;
3790
+ // width: 0.6rem;
3791
+ // height: 0.6rem;
3792
+ width: var(
3793
+ --_ctm-mob-dn-pn-ds-dt-se,
3794
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3795
+ );
3796
+ height: var(
3797
+ --_ctm-mob-dn-pn-ds-dt-se,
3798
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3799
+ );
3800
+
3801
+ display: flex;
3802
+ align-items: center;
3803
+ justify-content: center;
3804
+ border-radius: 50%;
3805
+ }
3806
+ .embla__dot:after {
3807
+ // box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
3808
+ width: var(
3809
+ --_ctm-mob-dn-pn-ds-dt-se,
3810
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3811
+ );
3812
+ height: var(
3813
+ --_ctm-mob-dn-pn-ds-dt-se,
3814
+ var(--_ctm-tab-dn-pn-ds-dt-se, var(--_ctm-dn-pn-ds-dt-se))
3815
+ );
3816
+
3817
+ border-radius: 50%;
3818
+ display: flex;
3819
+ align-items: center;
3820
+ content: "";
3821
+ }
3822
+ .embla__dot--selected:after {
3823
+ box-shadow: inset 0 0 0 1px var(--text-body);
3824
+ background-color: var(
3825
+ --_ctm-mob-dn-pn-ds-ct-dt-cr,
3826
+ var(--_ctm-tab-dn-pn-ds-ct-dt-cr, var(--_ctm-dn-pn-ds-ct-dt-cr))
3827
+ );
3828
+ }
3829
+ &[data-slider-control="Pagination Line"] {
3830
+ .embla__dot {
3831
+ width: var(
3832
+ --_ctm-mob-dn-pn-le-le-wh,
3833
+ var(--_ctm-tab-dn-pn-le-le-wh, var(--_ctm-dn-pn-le-le-wh))
3834
+ );
3835
+ height: var(
3836
+ --_ctm-mob-dn-pn-le-le-ht,
3837
+ var(--_ctm-tab-dn-pn-le-le-ht, var(--_ctm-dn-pn-le-le-ht))
3838
+ );
3839
+ background-color: var(
3840
+ --_ctm-mob-dn-pn-le-or-le-cr,
3841
+ var(--_ctm-tab-dn-pn-le-or-le-cr, var(--_ctm-dn-pn-le-or-le-cr))
3842
+ );
3843
+ border-radius: 6px;
3844
+ }
3845
+
3846
+ .embla__dot--selected:after {
3847
+ box-shadow: inset 0 0 0 1px var(--text-body);
3848
+ border-radius: 6px;
3849
+ width: var(
3850
+ --_ctm-mob-dn-pn-le-le-wh,
3851
+ var(--_ctm-tab-dn-pn-le-le-wh, var(--_ctm-dn-pn-le-le-wh))
3852
+ );
3853
+ height: var(
3854
+ --_ctm-mob-dn-pn-le-le-ht,
3855
+ var(--_ctm-tab-dn-pn-le-le-ht, var(--_ctm-dn-pn-le-le-ht))
3856
+ );
3857
+ background-color: var(
3858
+ --_ctm-mob-dn-pn-le-ct-le-cr,
3859
+ var(--_ctm-tab-dn-pn-le-ct-le-cr, var(--_ctm-dn-pn-le-ct-le-cr))
3860
+ );
3861
+ }
3862
+ }
3863
+ }
3864
+
3865
+ .embla__thumbs {
3866
+ width: 100%;
3867
+ height: var(--_ctm-mob-lt-tl-se, var(--_ctm-tab-lt-tl-se, var(--_ctm-lt-tl-se)));
3868
+
3869
+ position: relative;
3870
+ display: grid;
3871
+ grid-template-columns: 1fr;
3872
+ overflow: hidden;
3873
+ // margin: 10px;
3874
+ padding: 10px;
3875
+
3876
+ .embla__thumbs__viewport {
3877
+ width: 100%;
3878
+ height: 100%;
3879
+ position: relative;
3880
+ display: flex;
3881
+ flex-direction: column;
3882
+
3883
+ overflow: hidden;
3884
+ }
3885
+ .embla__thumbs__container {
3886
+ display: flex;
3887
+ flex-direction: row;
3888
+ margin-left: calc(var(--thumbs-slide-spacing) * -1);
3889
+ gap: var(--_ctm-mob-lt-tl-sg, var(--_ctm-tab-lt-tl-sg, var(--_ctm-lt-tl-sg)));
3890
+
3891
+ width: 100%;
3892
+ // justify-content: center;
3893
+ // height: 200px;
3894
+
3895
+ .embla__thumbs__slide {
3896
+ min-width: var(--_ctm-mob-lt-tl-se, var(--_ctm-tab-lt-tl-se, var(--_ctm-lt-tl-se)));
3897
+ max-width: var(--_ctm-mob-lt-tl-se, var(--_ctm-tab-lt-tl-se, var(--_ctm-lt-tl-se)));
3898
+ height: var(--_ctm-mob-lt-tl-se, var(--_ctm-tab-lt-tl-se, var(--_ctm-lt-tl-se)));
3899
+
3900
+ & img {
3901
+ width: 100%;
3902
+ height: 100%;
3903
+ }
3904
+ }
384
3905
  }
385
3906
  }
386
3907
  }