@sc-360-v2/storefront-cms-library 0.3.27 → 0.3.29

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.
@@ -1,5 +1,6 @@
1
1
  .bulk-order-overlay {
2
2
  height: 100%;
3
+ width: 100%;
3
4
  }
4
5
  .bulk-order-container {
5
6
  background: #fff;
@@ -10,8 +11,13 @@
10
11
  font-family: "Segoe UI", sans-serif;
11
12
  overflow: auto;
12
13
  .select-product-dropdown {
13
- padding: 16px 24px;
14
- border-bottom: 1px solid #e0e0e0;
14
+ padding: 12px;
15
+ border-bottom: 1px solid var(--_gray-200);
16
+
17
+ .dropdown-with-input-section {
18
+ border: 0.5px solid var(--_gray-300);
19
+ border-radius: 4px;
20
+ }
15
21
  }
16
22
 
17
23
  .bulkOrderPad-grid {
@@ -206,89 +212,278 @@
206
212
  justify-content: space-between;
207
213
  background: #f9fafb;
208
214
  padding: 12px;
215
+ border-bottom: 1px solid var(--_gray-200);
216
+
217
+ @media (max-width: 1024px) {
218
+ flex-direction: column;
219
+ gap: 8px;
220
+ }
209
221
  .product-details {
210
222
  display: flex;
211
- gap: 10px;
223
+ gap: 12px;
212
224
  .product-image {
213
225
  img {
214
226
  width: 64px;
227
+ height: 96px;
215
228
  }
216
229
  }
217
230
 
218
231
  .details {
219
- display: grid;
220
- .p-before-price {
221
- text-decoration: line-through;
232
+ display: flex;
233
+ flex-direction: column;
234
+ gap: 2px;
235
+ font-family: "Lato";
236
+ word-break: break-all;
237
+
238
+ .p-name {
239
+ display: flex;
240
+ align-items: center;
241
+ font-weight: 700;
242
+ font-size: 18px;
243
+ line-height: 28px;
244
+ color: var(--_gray-900);
245
+ }
246
+
247
+ .p-title {
248
+ display: flex;
249
+ align-items: center;
250
+ font-weight: 400;
251
+ font-size: 14px;
252
+ line-height: 20px;
253
+ color: var(--_gray-600);
254
+ }
255
+
256
+ .p-price {
257
+ display: flex;
258
+ align-items: flex-end;
259
+ gap: 12px;
260
+
261
+ font-weight: 400;
262
+ font-size: 12px;
263
+ line-height: 150%;
264
+ color: #4c4759;
265
+
266
+ .p-current-price {
267
+ display: flex;
268
+ align-items: center;
269
+ gap: 6px;
270
+ font-weight: 700;
271
+ font-size: 20px;
272
+ line-height: 150%;
273
+ color: #1f1930;
274
+ }
275
+
276
+ .p-before-price {
277
+ text-decoration: line-through;
278
+ }
222
279
  }
223
280
  }
224
281
  }
225
282
  .product-entity-info,
226
283
  .actions {
227
284
  display: flex;
228
- gap: 8px;
285
+ gap: 12px;
229
286
  align-items: center;
287
+ flex-wrap: nowrap;
288
+ font-family: "Lato";
289
+
290
+ @media (max-width: 1024px) {
291
+ justify-content: center;
292
+ }
293
+
294
+ .info {
295
+ display: flex;
296
+ gap: 4px;
297
+ align-items: center;
298
+
299
+ .info-label {
300
+ font-weight: 400;
301
+ font-size: 14px;
302
+ line-height: 20px;
303
+ color: var(--_gray-500);
304
+ }
305
+
306
+ .info-val {
307
+ font-weight: 600;
308
+ font-size: 18px;
309
+ line-height: 28px;
310
+ color: var(--_gray-900);
311
+ }
312
+
313
+ &::after:not(:last-of-type) {
314
+ content: ".";
315
+ font-size: 4px;
316
+ color: var(--_gray-500);
317
+ }
318
+ }
319
+
320
+ .discard {
321
+ padding: 10px 18px;
322
+ border-radius: 4px;
323
+ color: var(--_gray-600);
324
+ font-weight: 600;
325
+ font-size: 16px;
326
+ border: 1px solid rgba(var(--_gray-600), 0);
327
+ line-height: 24px;
328
+
329
+ &:hover {
330
+ border: 1px solid var(--_gray-600);
331
+ }
332
+ }
333
+
334
+ .add-tocart {
335
+ padding: 10px 18px;
336
+ border-radius: 4px;
337
+ border: 1px solid var(--_primary-500);
338
+ color: #fff;
339
+ font-weight: 600;
340
+ font-size: 16px;
341
+ line-height: 24px;
342
+ background: var(--_primary-500);
343
+
344
+ &:hover {
345
+ background: var(--_primary-400);
346
+ }
347
+ }
230
348
  }
231
349
  }
232
350
  .bulkOrderPad-content {
233
- padding: 16px;
234
- .dropdown-options {
235
- display: inline-block;
236
- width: 100%;
237
- border-bottom: 1px solid #e0e0e0;
351
+ display: flex;
352
+ flex-direction: column;
353
+
354
+ .bulk-order-pad-filter-wrapper {
355
+ background-color: var(--_gray-50);
356
+ border-bottom: 1px solid var(--_gray-200);
357
+ align-items: center;
358
+ justify-content: center;
359
+ gap: 12px;
360
+ display: flex;
361
+ justify-content: center;
362
+ padding: 12px;
363
+
364
+ @media (max-width: 500px) {
365
+ flex-direction: column;
366
+ gap: 8px;
367
+ }
368
+
238
369
  .dropdown-with-input-section {
239
- float: left;
240
- margin-right: 14px;
241
- margin-bottom: 14px;
370
+ gap: 6px;
371
+
372
+ label {
373
+ font-size: 14px;
374
+ line-height: 20px;
375
+ color: var(--_gray-700);
376
+ font-family: "Lato";
377
+ }
378
+
379
+ .dropdown-input-section {
380
+ border: 1px solid var(--_gray-300);
381
+ border-radius: 4px;
382
+ max-width: 320px;
383
+ background: #fff;
384
+ }
385
+ }
386
+
387
+ .dropdown-options {
388
+ display: flex;
389
+ flex-direction: column;
390
+ gap: 6px;
391
+
392
+ .dropdown-with-input-section {
393
+ gap: 6px;
394
+
395
+ label {
396
+ font-size: 14px;
397
+ line-height: 20px;
398
+ color: var(--_gray-700);
399
+ font-family: "Lato";
400
+ }
401
+
402
+ .dropdown-input-section {
403
+ border: 1px solid var(--_gray-300);
404
+ border-radius: 4px;
405
+ max-width: 320px;
406
+ background: #fff;
407
+ }
408
+ }
242
409
  }
243
410
  }
244
- .secont-option-title {
411
+
412
+ .bulkOrderPad-content-container {
245
413
  display: flex;
246
- justify-content: center;
247
- overflow: visible;
248
- font-weight: bold;
249
- font-size: 1.2rem;
250
- margin-right: 10px;
251
- .title {
252
- background: #ffffff;
253
- width: max-content;
414
+ align-items: flex-start;
415
+ height: auto;
416
+
417
+ .first-option-title {
418
+ writing-mode: vertical-rl;
419
+ transform: rotate(180deg);
420
+ font-weight: 500;
421
+ font-size: 14px;
422
+ display: flex;
423
+ justify-content: center;
424
+ color: var(--_gray-700);
425
+ align-self: stretch;
426
+ width: 36px;
427
+ align-items: center;
254
428
  }
255
429
  }
430
+
256
431
  .bulkOrderPad-section {
257
432
  display: flex;
258
- max-height: calc(100vh - 154px);
259
433
  overflow: auto;
260
- .first-option-title {
261
- writing-mode: vertical-rl;
262
- transform: rotate(180deg);
263
- font-weight: bold;
264
- font-size: 1.2rem;
265
- margin-right: 10px;
434
+ flex-direction: column;
435
+ width: 100%;
436
+ max-height: none !important;
437
+
438
+ .secont-option-title {
439
+ height: 36px;
440
+ width: 100%;
441
+ padding: 12px 0px 24px 0px;
442
+ font-size: 14px;
443
+ line-height: 20px;
444
+ color: var(--_gray-700);
266
445
  display: flex;
267
446
  justify-content: center;
268
- overflow: visible;
269
- position: sticky;
270
- top: 0;
271
- .title {
272
- background: #ffffff;
273
- height: max-content;
274
- }
447
+ font-weight: 500;
275
448
  }
276
449
 
277
450
  table {
278
451
  border-collapse: collapse;
279
452
  width: 100%;
280
453
 
454
+ tr {
455
+ &:last-of-type {
456
+ td {
457
+ border-bottom: 1px solid #f0f0f0;
458
+ }
459
+
460
+ .option-cell {
461
+ border-bottom: none;
462
+ }
463
+
464
+ .action-td {
465
+ border-bottom: none;
466
+ }
467
+ }
468
+ }
469
+
281
470
  th,
282
471
  td {
283
472
  text-align: center;
284
473
  white-space: nowrap;
285
474
  // width: 150px;
286
475
  border: none;
476
+ padding: 0px 16px;
287
477
  }
288
478
 
289
479
  td.action-td {
290
- width: 40px;
291
- padding: 12px;
480
+ width: 72px;
481
+ height: 88px;
482
+ display: flex;
483
+ align-items: center;
484
+ justify-content: center;
485
+ padding: 0px !important;
486
+ border-left: 1px solid #f0f0f0;
292
487
  .reset-icon {
293
488
  cursor: pointer;
294
489
  }
@@ -306,6 +501,13 @@
306
501
  position: sticky;
307
502
  top: 0;
308
503
  background: #fff;
504
+
505
+ th {
506
+ font-weight: 600;
507
+ color: var(--_gray-900);
508
+ line-height: 24px;
509
+ padding: 16px;
510
+ }
309
511
  th {
310
512
  border-bottom: 1px solid #f0f0f0;
311
513
  &:first-child,
@@ -317,39 +519,42 @@
317
519
 
318
520
  .option-cell {
319
521
  border-right: 1px solid #f0f0f0;
522
+ padding: 0px 16px;
523
+
320
524
  .option-cell-section {
321
- height: 40px;
525
+ height: 88px;
322
526
  display: flex;
323
- gap: 8px;
527
+ gap: 12px;
324
528
  align-items: center;
325
- padding: 8px;
326
529
  width: 100%;
327
530
  justify-content: flex-end;
531
+ font-size: 16px;
532
+ line-height: 24px;
533
+ color: var(--_gray-900);
534
+
328
535
  .option-swatch {
329
- width: 16px;
330
- height: 16px;
536
+ width: 32px;
537
+ height: 32px;
331
538
  border-radius: 50%;
332
- border: 1px solid #f0f0f0;
539
+ border: 1px solid #f5f5f5;
333
540
  }
334
541
  }
335
542
  }
336
543
 
337
544
  .availability {
338
- font-size: 0.85rem;
339
- color: #333;
340
- min-height: 40px;
341
- padding: 10px;
545
+ color: var(--_gray-600);
546
+ min-height: 56px;
342
547
  display: flex;
343
- font-size: 14px;
548
+ font-size: 16px;
344
549
  align-items: center;
345
550
  justify-content: center;
346
551
 
347
552
  input {
348
553
  // background: #f9fafb !important;
349
554
  border: 1px solid #ddd !important;
350
- width: 120px !important;
351
- height: 40px;
352
- border-radius: 6px;
555
+ width: 128px !important;
556
+ height: 56px;
557
+ border-radius: 4px;
353
558
  padding: 8px !important;
354
559
  border: none;
355
560
  outline: none;
@@ -360,8 +565,13 @@
360
565
  // cursor: pointer;
361
566
  }
362
567
  }
568
+
569
+ .disabled {
570
+ cursor: not-allowed;
571
+ }
363
572
  }
364
573
  }
365
574
  }
366
575
  }
367
576
  }
577
+
@@ -8,17 +8,17 @@ $resizeActive: '[data-cms-element-resizer="true"]';
8
8
  // );
9
9
  [data-div-type="element"] {
10
10
  &[data-element-type="cartDetails"] {
11
- width: var(
12
- --_sf-el-wh-st-mx,
13
- calc(
14
- 1% *
15
- var(
16
- --_mob-ctm-ele-nw-wh-vl,
17
- var(--_tab-ctm-ele-nw-wh-vl, var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh)))
18
- )
19
- )
20
- );
21
- margin: var(--_ctm-mob-lt-mn, var(--_ctm-tab-lt-mn, var(--_ctm-lt-mn)));
11
+ // width: var(
12
+ // --_sf-el-wh-st-mx,
13
+ // calc(
14
+ // 1% *
15
+ // var(
16
+ // --_mob-ctm-ele-nw-wh-vl,
17
+ // var(--_tab-ctm-ele-nw-wh-vl, var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh)))
18
+ // )
19
+ // )
20
+ // );
21
+ // margin: var(--_ctm-mob-lt-mn, var(--_ctm-tab-lt-mn, var(--_ctm-lt-mn)));
22
22
  & > div {
23
23
  &.wrapper {
24
24
  width: 100%;
@@ -162,13 +162,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
162
162
  --_ctm-mob-dn-ct-an-ss-le-ht,
163
163
  var(--_ctm-tab-dn-ct-an-ss-le-ht, var(--_ctm-dn-ct-an-ss-le-ht))
164
164
  );
165
- text-decoration: var(
166
- --_ctm-mob-dn-ct-an-ss-ue,
167
- var(--_ctm-tab-dn-ct-an-ss-ue, var(--_ctm-dn-ct-an-ss-ue))
168
- );
169
- // &:hover {
170
- // font-weight: 600;
171
- // }
165
+ &:hover {
166
+ text-decoration: underline;
167
+ }
172
168
  }
173
169
  }
174
170
  }
@@ -262,6 +258,13 @@ $resizeActive: '[data-cms-element-resizer="true"]';
262
258
  border: 1px solid #d1d5db;
263
259
  border-radius: 0.375px;
264
260
 
261
+ &:focus {
262
+ &:focus {
263
+ border-color: #2563eb;
264
+ box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
265
+ }
266
+ }
267
+
265
268
  .dropdown-input-section {
266
269
  padding: 0.5rem;
267
270
 
@@ -427,7 +430,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
427
430
  align-items: flex-start;
428
431
  align-self: stretch;
429
432
  height: auto;
430
- flex-wrap: wrap;
433
+ // flex-wrap: wrap;
431
434
 
432
435
  .cart_product_left_wrapper {
433
436
  display: flex;
@@ -949,8 +952,6 @@ $resizeActive: '[data-cms-element-resizer="true"]';
949
952
  // }
950
953
  }
951
954
 
952
-
953
-
954
955
  .infinite-list-container {
955
956
  display: flex;
956
957
  flex-direction: column;
@@ -1002,7 +1003,8 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1002
1003
  text-align: center;
1003
1004
  color: #666;
1004
1005
  font-size: 0.95rem;
1005
- padding: 1rem 0;
1006
+ padding: 2rem 0;
1007
+ margin: auto;
1006
1008
  }
1007
1009
 
1008
1010
  .no-data {
@@ -1010,6 +1012,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1010
1012
  color: #aaa;
1011
1013
  font-size: 0.95rem;
1012
1014
  padding: 2rem 0;
1015
+ margin: auto;
1013
1016
  }
1014
1017
 
1015
1018
  .sentinel {
@@ -34,6 +34,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
34
34
  background: #fff;
35
35
  // gap: var(--_ctm-lt-im-gp);
36
36
  padding: var(--_ctm-lt-pg);
37
+ word-break: keep-all;
37
38
 
38
39
  .cart_summary_heading_wrapper {
39
40
  display: flex;
@@ -206,41 +207,119 @@ $resizeActive: '[data-cms-element-resizer="true"]';
206
207
  .cart_summary_primary_btn_wrapper {
207
208
  padding: var(--_ctm-lt-bn-pg) calc(var(--_ctm-lt-bn-pg) * 2);
208
209
  width: 100%;
209
- background-color: var(--_ctm-dn-py-bn-dn-bd-cr);
210
- border-color: var(--_ctm-dn-py-bn-dn-br-cr);
211
- border-radius: var(--_ctm-dn-py-bn-dn-br-rs);
212
- border-style: var(--_ctm-dn-py-bn-dn-br-se);
213
- border-width: var(--_ctm-dn-py-bn-dn-br-wh);
214
- color: var(--_ctm-dn-py-bn-dn-cr);
215
- font-family: var(--_ctm-dn-py-bn-dn-ft-fy);
216
- font-size: var(--_ctm-dn-py-bn-dn-ft-se);
217
- font-style: var(--_ctm-dn-py-bn-dn-ft-se-ic);
218
- font-weight: var(--_ctm-dn-py-bn-dn-ft-wt);
219
- line-height: var(--_ctm-dn-py-bn-dn-le-ht);
220
- letter-spacing: var(--_ctm-dn-py-bn-dn-lr-sg);
221
- box-shadow: var(--_ctm-dn-py-bn-dn-sw-ae) var(--_ctm-dn-py-bn-dn-sw-br)
222
- var(--_ctm-dn-py-bn-dn-sw-sd) var(--_ctm-dn-py-bn-dn-sw-cr);
223
- text-align: var(--_ctm-dn-py-bn-dn-tt-an);
224
- text-decoration: var(--_ctm-dn-py-bn-dn-ue);
210
+ background-color: var(--_ctm-dn-py-bn-dn-dt-se-bd-cr);
211
+ border-color: var(--_ctm-dn-py-bn-dn-dt-se-br-cr);
212
+ border-radius: var(--_ctm-dn-py-bn-dn-dt-se-br-rs);
213
+ border-style: var(--_ctm-dn-py-bn-dn-dt-se-br-se);
214
+ border-width: var(--_ctm-dn-py-bn-dn-dt-se-br-wh);
215
+ color: var(--_ctm-dn-py-bn-dn-dt-se-cr);
216
+ font-family: var(--_ctm-dn-py-bn-dn-dt-se-ft-fy);
217
+ font-size: var(--_ctm-dn-py-bn-dn-dt-se-ft-se);
218
+ font-style: var(--_ctm-dn-py-bn-dn-dt-se-ft-se-ic);
219
+ font-weight: var(--_ctm-dn-py-bn-dn-dt-se-ft-wt);
220
+ line-height: var(--_ctm-dn-py-bn-dn-dt-se-le-ht);
221
+ letter-spacing: var(--_ctm-dn-py-bn-dn-dt-se-lr-sg);
222
+ box-shadow: var(--_ctm-dn-py-bn-dn-dt-se-sw-ae) var(--_ctm-dn-py-bn-dn-dt-se-sw-br)
223
+ var(--_ctm-dn-py-bn-dn-dt-se-sw-sd) var(--_ctm-dn-py-bn-dn-dt-se-sw-cr);
224
+ text-align: var(--_ctm-dn-py-bn-dn-dt-se-tt-an);
225
+ text-decoration: var(--_ctm-dn-py-bn-dn-dt-se-ue);
226
+
227
+ &:hover {
228
+ background-color: var(--_ctm-dn-py-bn-dn-hr-se-bd-cr);
229
+ border-color: var(--_ctm-dn-py-bn-dn-hr-se-br-cr);
230
+ border-radius: var(--_ctm-dn-py-bn-dn-hr-se-br-rs);
231
+ border-style: var(--_ctm-dn-py-bn-dn-hr-se-br-se);
232
+ border-width: var(--_ctm-dn-py-bn-dn-hr-se-br-wh);
233
+ color: var(--_ctm-dn-py-bn-dn-hr-se-cr);
234
+ font-family: var(--_ctm-dn-py-bn-dn-hr-se-ft-fy);
235
+ font-size: var(--_ctm-dn-py-bn-dn-hr-se-ft-se);
236
+ font-style: var(--_ctm-dn-py-bn-dn-hr-se-ft-se-ic);
237
+ font-weight: var(--_ctm-dn-py-bn-dn-hr-se-ft-wt);
238
+ line-height: var(--_ctm-dn-py-bn-dn-hr-se-le-ht);
239
+ letter-spacing: var(--_ctm-dn-py-bn-dn-hr-se-lr-sg);
240
+ box-shadow: var(--_ctm-dn-py-bn-dn-hr-se-sw-ae) var(--_ctm-dn-py-bn-dn-hr-se-sw-br)
241
+ var(--_ctm-dn-py-bn-dn-hr-se-sw-sd) var(--_ctm-dn-py-bn-dn-hr-se-sw-cr);
242
+ text-align: var(--_ctm-dn-py-bn-dn-hr-se-tt-an);
243
+ text-decoration: var(--_ctm-dn-py-bn-dn-hr-se-ue);
244
+ }
245
+ }
246
+
247
+ .submit_quotes {
248
+ padding: var(--_ctm-lt-bn-pg) calc(var(--_ctm-lt-bn-pg) * 2);
249
+ width: 100%;
250
+ border-color: var(--_ctm-dn-py-bn-dn-dt-se-bd-cr);
251
+ border-radius: var(--_ctm-dn-py-bn-dn-dt-se-br-rs);
252
+ border-style: var(--_ctm-dn-py-bn-dn-dt-se-br-se);
253
+ border-width: 1px;
254
+ background: white;
255
+ color: var(--_ctm-dn-py-bn-dn-dt-se-bd-cr);
256
+ font-family: var(--_ctm-dn-py-bn-dn-dt-se-ft-fy);
257
+ font-size: var(--_ctm-dn-py-bn-dn-dt-se-ft-se);
258
+ font-style: var(--_ctm-dn-py-bn-dn-dt-se-ft-se-ic);
259
+ font-weight: var(--_ctm-dn-py-bn-dn-dt-se-ft-wt);
260
+ line-height: var(--_ctm-dn-py-bn-dn-dt-se-le-ht);
261
+ letter-spacing: var(--_ctm-dn-py-bn-dn-dt-se-lr-sg);
262
+ box-shadow: var(--_ctm-dn-py-bn-dn-dt-se-sw-ae) var(--_ctm-dn-py-bn-dn-dt-se-sw-br)
263
+ var(--_ctm-dn-py-bn-dn-dt-se-sw-sd) var(--_ctm-dn-py-bn-dn-dt-se-sw-cr);
264
+ text-align: var(--_ctm-dn-py-bn-dn-dt-se-tt-an);
265
+ text-decoration: var(--_ctm-dn-py-bn-dn-dt-se-ue);
266
+
267
+ &:hover {
268
+ border-color: var(--_ctm-dn-py-bn-dn-hr-se-bd-cr);
269
+ border-radius: var(--_ctm-dn-py-bn-dn-hr-se-br-rs);
270
+ border-style: var(--_ctm-dn-py-bn-dn-hr-se-br-se);
271
+ border-width: 1px;
272
+ background: white;
273
+ color: var(--_ctm-dn-py-bn-dn-hr-se-bd-cr);
274
+ font-family: var(--_ctm-dn-py-bn-dn-hr-se-ft-fy);
275
+ font-size: var(--_ctm-dn-py-bn-dn-hr-se-ft-se);
276
+ font-style: var(--_ctm-dn-py-bn-dn-hr-se-ft-se-ic);
277
+ font-weight: var(--_ctm-dn-py-bn-dn-hr-se-ft-wt);
278
+ line-height: var(--_ctm-dn-py-bn-dn-hr-se-le-ht);
279
+ letter-spacing: var(--_ctm-dn-py-bn-dn-hr-se-lr-sg);
280
+ box-shadow: var(--_ctm-dn-py-bn-dn-hr-se-sw-ae) var(--_ctm-dn-py-bn-dn-hr-se-sw-br)
281
+ var(--_ctm-dn-py-bn-dn-hr-se-sw-sd) var(--_ctm-dn-py-bn-dn-hr-se-sw-cr);
282
+ text-align: var(--_ctm-dn-py-bn-dn-hr-se-tt-an);
283
+ text-decoration: var(--_ctm-dn-py-bn-dn-hr-se-ue);
284
+ }
225
285
  }
226
286
 
227
287
  .cart_summary_secondary_btn_wrapper {
228
- background-color: var(--_ctm-dn-sy-bn-dn-bd-cr);
229
- border-color: var(--_ctm-dn-sy-bn-dn-br-cr);
230
- border-radius: var(--_ctm-dn-sy-bn-dn-br-rs);
231
- border-style: var(--_ctm-dn-sy-bn-dn-br-se);
232
- border-width: var(--_ctm-dn-sy-bn-dn-br-wh);
233
- color: var(--_ctm-dn-sy-bn-dn-cr);
234
- font-family: var(--_ctm-dn-sy-bn-dn-ft-fy);
235
- font-size: var(--_ctm-dn-sy-bn-dn-ft-se);
236
- font-style: var(--_ctm-dn-sy-bn-dn-ft-se-ic);
237
- font-weight: var(--_ctm-dn-sy-bn-dn-ft-wt);
238
- line-height: var(--_ctm-dn-sy-bn-dn-le-ht);
239
- letter-spacing: var(--_ctm-dn-sy-bn-dn-lr-sg);
240
- box-shadow: var(--_ctm-dn-sy-bn-dn-sw-ae) var(--_ctm-dn-sy-bn-dn-sw-br)
241
- var(--_ctm-dn-sy-bn-dn-sw-sd) var(--_ctm-dn-sy-bn-dn-sw-cr);
242
- text-align: var(--_ctm-dn-sy-bn-dn-tt-an);
243
- text-decoration: var(--_ctm-dn-sy-bn-dn-ue);
288
+ background-color: var(--_ctm-dn-sy-bn-dn-dt-se-bd-cr);
289
+ border-color: var(--_ctm-dn-sy-bn-dn-dt-se-br-cr);
290
+ border-radius: var(--_ctm-dn-sy-bn-dn-dt-se-br-rs);
291
+ border-style: var(--_ctm-dn-sy-bn-dn-dt-se-br-se);
292
+ border-width: var(--_ctm-dn-sy-bn-dn-dt-se-br-wh);
293
+ color: var(--_ctm-dn-sy-bn-dn-dt-se-cr);
294
+ font-family: var(--_ctm-dn-sy-bn-dn-dt-se-ft-fy);
295
+ font-size: var(--_ctm-dn-sy-bn-dn-dt-se-ft-se);
296
+ font-style: var(--_ctm-dn-sy-bn-dn-dt-se-ft-se-ic);
297
+ font-weight: var(--_ctm-dn-sy-bn-dn-dt-se-ft-wt);
298
+ line-height: var(--_ctm-dn-sy-bn-dn-dt-se-le-ht);
299
+ letter-spacing: var(--_ctm-dn-sy-bn-dn-dt-se-lr-sg);
300
+ box-shadow: var(--_ctm-dn-sy-bn-dn-dt-se-sw-ae) var(--_ctm-dn-sy-bn-dn-dt-se-sw-br)
301
+ var(--_ctm-dn-sy-bn-dn-dt-se-sw-sd) var(--_ctm-dn-sy-bn-dn-dt-se-sw-cr);
302
+ text-align: var(--_ctm-dn-sy-bn-dn-dt-se-tt-an);
303
+ text-decoration: var(--_ctm-dn-sy-bn-dn-dt-se-ue);
304
+
305
+ &:hover {
306
+ background-color: var(--_ctm-dn-sy-bn-dn-hr-se-bd-cr);
307
+ border-color: var(--_ctm-dn-sy-bn-dn-hr-se-br-cr);
308
+ border-radius: var(--_ctm-dn-sy-bn-dn-hr-se-br-rs);
309
+ border-style: var(--_ctm-dn-sy-bn-dn-hr-se-br-se);
310
+ border-width: var(--_ctm-dn-sy-bn-dn-hr-se-br-wh);
311
+ color: var(--_ctm-dn-sy-bn-dn-hr-se-cr);
312
+ font-family: var(--_ctm-dn-sy-bn-dn-hr-se-ft-fy);
313
+ font-size: var(--_ctm-dn-sy-bn-dn-hr-se-ft-se);
314
+ font-style: var(--_ctm-dn-sy-bn-dn-hr-se-ft-se-ic);
315
+ font-weight: var(--_ctm-dn-sy-bn-dn-hr-se-ft-wt);
316
+ line-height: var(--_ctm-dn-sy-bn-dn-hr-se-le-ht);
317
+ letter-spacing: var(--_ctm-dn-sy-bn-dn-hr-se-lr-sg);
318
+ box-shadow: var(--_ctm-dn-sy-bn-dn-hr-se-sw-ae) var(--_ctm-dn-sy-bn-dn-hr-se-sw-br)
319
+ var(--_ctm-dn-sy-bn-dn-hr-se-sw-sd) var(--_ctm-dn-sy-bn-dn-hr-se-sw-cr);
320
+ text-align: var(--_ctm-dn-sy-bn-dn-hr-se-tt-an);
321
+ text-decoration: var(--_ctm-dn-sy-bn-dn-hr-se-ue);
322
+ }
244
323
  }
245
324
  }
246
325
  }