ui-kit-ck-consultant 0.6.69 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  * {
4
4
  --primary-color: #6067ae;
5
+ --primary-hover: #4f5699;
6
+ --primary-soft: #eef0f8;
5
7
  --secondary-color: #4a4c65;
6
8
  --thirty-color: #f5f5f5;
7
9
  --fourth-color: #d8d8d8;
@@ -33,10 +35,28 @@
33
35
  --orange-dark: #d86418;
34
36
  --yellow-dark: #ecbd00;
35
37
 
36
- --gray: #d8d8d8;
37
- --gray-light: #f3f3f3;
38
+ --gray: #e2e5ea;
39
+ --gray-light: #f3f4f6;
38
40
  --white: #ffffff;
39
41
  --black: #1e1f26;
42
+
43
+ /* modern tokens */
44
+ --muted: #6b7280;
45
+ --border: #e5e7eb;
46
+ --surface: #ffffff;
47
+ --bg: #f6f7f9;
48
+
49
+ --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.08);
50
+ --shadow-md: 0 2px 6px rgba(16, 24, 40, 0.06), 0 6px 16px rgba(16, 24, 40, 0.08);
51
+ --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.14);
52
+
53
+ --radius-sm: 6px;
54
+ --radius: 8px;
55
+ --radius-lg: 12px;
56
+
57
+ --ring: 0 0 0 3px rgba(96, 103, 174, 0.22);
58
+ --transition: 0.15s ease;
59
+
40
60
  box-sizing: border-box;
41
61
  }
42
62
 
@@ -48,20 +68,20 @@
48
68
  left: 0;
49
69
  right: 0;
50
70
  bottom: 0;
51
- background-color: rgba(230, 230, 230, 0.6);
71
+ background-color: rgba(16, 24, 40, 0.45);
52
72
  z-index: 20;
53
73
  }
54
74
 
55
75
  ._2YluD {
56
76
  position: relative;
57
77
  margin: auto;
58
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
78
+ box-shadow: var(--shadow-lg);
59
79
  background-color: var(--white);
60
- padding: 64px;
80
+ padding: 40px;
61
81
  width: 600px;
62
82
  max-height: 90%;
63
83
  overflow-y: auto;
64
- border-radius: 8px;
84
+ border-radius: var(--radius-lg);
65
85
  }
66
86
 
67
87
  ._2YluD._2vjgy {
@@ -184,20 +204,21 @@
184
204
  ._3v07V {
185
205
  display: flex;
186
206
  width: 100%;
187
- min-height: 50px;
207
+ min-height: 38px;
188
208
  border-radius: 8px;
189
209
  cursor: pointer;
190
- transition: 0.4s;
210
+ transition: var(--transition);
191
211
  background-color: var(--primary-color);
192
- border: 2px solid var(--primary-color);
193
- padding: 0 30px;
212
+ border: 1px solid var(--primary-color);
213
+ box-shadow: var(--shadow-sm);
214
+ padding: 0 20px;
194
215
  }
195
216
 
196
217
  /* start - color button */
197
218
  ._Dv_TK._36slQ,
198
219
  ._3v07V._36slQ {
199
220
  background-color: var(--red);
200
- border: 2px solid var(--red);
221
+ border: 1px solid var(--red);
201
222
  }
202
223
  ._3v07V._36slQ > span {
203
224
  color: var(--red);
@@ -209,7 +230,7 @@
209
230
  ._Dv_TK._2bzkq,
210
231
  ._3v07V._2bzkq {
211
232
  background-color: var(--blue);
212
- border: 2px solid var(--blue);
233
+ border: 1px solid var(--blue);
213
234
  }
214
235
  ._3v07V._2bzkq > span {
215
236
  color: var(--blue);
@@ -221,7 +242,7 @@
221
242
  ._Dv_TK._3q_as,
222
243
  ._3v07V._3q_as {
223
244
  background-color: var(--green);
224
- border: 2px solid var(--green);
245
+ border: 1px solid var(--green);
225
246
  }
226
247
  ._3v07V._3q_as > span {
227
248
  color: var(--green);
@@ -233,7 +254,7 @@
233
254
  ._Dv_TK._3h6Fo,
234
255
  ._3v07V._3h6Fo {
235
256
  background-color: var(--orange);
236
- border: 2px solid var(--orange);
257
+ border: 1px solid var(--orange);
237
258
  }
238
259
  ._3v07V._3h6Fo > span {
239
260
  color: var(--orange);
@@ -253,6 +274,7 @@
253
274
  }
254
275
  ._3v07V {
255
276
  background-color: transparent !important;
277
+ box-shadow: none !important;
256
278
  }
257
279
  ._Dv_TK:not([disabled]):hover,
258
280
  ._3v07V:not([disabled]):hover,
@@ -264,6 +286,12 @@
264
286
  ._3ZzkP:not([disabled]):active {
265
287
  opacity: 0.5;
266
288
  }
289
+ ._Dv_TK:focus-visible,
290
+ ._3v07V:focus-visible,
291
+ ._3ZzkP:focus-visible {
292
+ outline: none;
293
+ box-shadow: var(--ring);
294
+ }
267
295
  ._Dv_TK:focus,
268
296
  ._3v07V:focus,
269
297
  ._3ZzkP:focus {
@@ -300,8 +328,8 @@
300
328
  ._3YJZS {
301
329
  background-color: var(--primary-color);
302
330
  border-radius: 8px;
303
- height: 50px;
304
- width: 50px;
331
+ height: 38px;
332
+ width: 38px;
305
333
  padding: 0;
306
334
  }
307
335
  ._3YJZS._3TRE4 {
@@ -335,8 +363,8 @@
335
363
 
336
364
  ._2WmL- {
337
365
  display: flex;
338
- width: 40px;
339
- min-height: 40px;
366
+ width: 30px;
367
+ min-height: 30px;
340
368
  height: calc(100% - 6px);
341
369
  background-color: rgba(0, 0, 0, 0.1);
342
370
  color: var(--white);
@@ -459,14 +487,14 @@
459
487
  }
460
488
 
461
489
  ._1Fq5R {
462
- height: 50px;
490
+ height: 38px;
463
491
  width: 100%;
464
- border: solid 2px var(--gray);
492
+ border: solid 1px var(--gray);
465
493
  border-radius: 8px;
466
494
  color: var(--black);
467
495
  font-size: 14px;
468
- padding: 0 20px;
469
- transition: 0.6s;
496
+ padding: 0 10px;
497
+ transition: var(--transition);
470
498
  opacity: 1;
471
499
  }
472
500
  ._1Fq5R::-moz-placeholder, ._1XBGF::-moz-placeholder {
@@ -488,10 +516,10 @@
488
516
 
489
517
  ._30Dbq {
490
518
  display: flex;
491
- height: 50px;
519
+ height: 38px;
492
520
  width: 100%;
493
521
  overflow: hidden;
494
- border: solid 2px var(--gray);
522
+ border: solid 1px var(--gray);
495
523
  border-radius: 8px;
496
524
  color: #b3b3b3;
497
525
  transition: 0.4s;
@@ -499,12 +527,12 @@
499
527
 
500
528
  ._30Dbq > div {
501
529
  color: #b3b3b3;
502
- font-size: 20px;
530
+ font-size: 16px;
503
531
  margin: auto 0;
504
- width: 50px;
505
- transition: 0.6s;
506
- padding-left: 20px;
507
- padding-right: 20px;
532
+ width: 38px;
533
+ transition: var(--transition);
534
+ padding-left: 10px;
535
+ padding-right: 10px;
508
536
  }
509
537
 
510
538
  ._1XBGF {
@@ -518,10 +546,13 @@
518
546
  }
519
547
 
520
548
  ._1Fq5R:focus,
521
- ._1XBGF:focus,
522
- ._30Dbq:hover {
549
+ ._30Dbq:focus-within {
550
+ outline: none;
551
+ border: solid 1px var(--primary-color);
552
+ box-shadow: var(--ring);
553
+ }
554
+ ._1XBGF:focus {
523
555
  outline: none;
524
- border: solid 2px #b3b3b3;
525
556
  }
526
557
 
527
558
  ._1Fq5R[disabled],
@@ -540,12 +571,12 @@
540
571
 
541
572
  ._3--n1 {
542
573
  width: 100%;
543
- border: solid 2px var(--gray);
574
+ border: solid 1px var(--gray);
544
575
  border-radius: 8px;
545
576
  color: var(--black);
546
577
  font-size: 14px;
547
- padding: 20px;
548
- transition: 0.6s;
578
+ padding: 10px;
579
+ transition: var(--transition);
549
580
  }
550
581
  ._3--n1::-moz-placeholder, ._1gP7a::-moz-placeholder {
551
582
  color: var(--gray);
@@ -566,7 +597,8 @@
566
597
 
567
598
  ._3--n1:focus {
568
599
  outline: none;
569
- border: solid 2px #b3b3b3;
600
+ border: solid 1px var(--primary-color);
601
+ box-shadow: var(--ring);
570
602
  }
571
603
 
572
604
  ._3--n1[disabled] {
@@ -590,32 +622,33 @@
590
622
  display: flex;
591
623
  height: 50px;
592
624
  width: 100%;
593
- border: solid 2px var(--gray);
594
- border-radius: 8px;
625
+ border: solid 1px var(--border);
626
+ border-radius: var(--radius);
595
627
  color: var(--black);
596
628
  font-size: 14px;
597
629
  padding: 0 20px;
598
- transition: 0.6s;
630
+ transition: var(--transition);
599
631
  opacity: 0.5;
600
632
  cursor: pointer;
601
633
  }
602
634
 
603
635
  ._1DiO5::-moz-placeholder {
604
- color: var(--gray);
636
+ color: var(--muted);
605
637
  }
606
638
 
607
639
  ._1DiO5::placeholder {
608
- color: var(--gray);
640
+ color: var(--muted);
609
641
  }
610
642
 
611
643
  ._1DiO5:focus {
612
644
  outline: none;
613
- border: solid 2px #b3b3b3;
645
+ border: solid 1px var(--primary-color);
646
+ box-shadow: var(--ring);
614
647
  }
615
648
 
616
649
  ._1DiO5[disabled] {
617
650
  cursor: not-allowed;
618
- background-color: #f5f5f5;
651
+ background-color: var(--gray-light);
619
652
  }
620
653
 
621
654
  ._1DiO5 > span {
@@ -634,10 +667,12 @@
634
667
  display: flex;
635
668
  left: 0;
636
669
  right: 0;
637
- background-color: var(--gray);
670
+ background-color: var(--surface);
671
+ border: solid 1px var(--border);
672
+ box-shadow: var(--shadow-md);
638
673
  z-index: 50;
639
674
  padding: 6px;
640
- border-radius: 8px;
675
+ border-radius: var(--radius);
641
676
  }
642
677
 
643
678
  ._1CaIX > span {
@@ -649,15 +684,22 @@
649
684
  }
650
685
 
651
686
  ._6hnFm {
652
- height: 50px;
687
+ height: 38px;
653
688
  width: 100%;
654
- border: solid 2px var(--gray);
689
+ border: solid 1px var(--gray);
655
690
  border-radius: 8px;
656
691
  color: var(--black);
657
692
  font-size: 14px;
658
- padding: 0 20px;
659
- transition: 0.6s;
693
+ padding: 0px 28px 0px 10px;
694
+ transition: var(--transition);
660
695
  opacity: 1;
696
+ -webkit-appearance: none;
697
+ -moz-appearance: none;
698
+ appearance: none;
699
+ background-color: #fff;
700
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23808080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
701
+ background-repeat: no-repeat;
702
+ background-position: right 10px center;
661
703
  }
662
704
  ._6hnFm::-moz-placeholder {
663
705
  color: var(--gray);
@@ -667,7 +709,8 @@
667
709
  }
668
710
  ._6hnFm:focus {
669
711
  outline: none;
670
- border: solid 2px #b3b3b3;
712
+ border: solid 1px var(--primary-color);
713
+ box-shadow: var(--ring);
671
714
  }
672
715
  ._6hnFm[disabled] {
673
716
  cursor: not-allowed;
@@ -697,14 +740,14 @@
697
740
 
698
741
  ._3BzwZ {
699
742
  display: flex;
700
- height: 50px;
743
+ height: 38px;
701
744
  width: 100%;
702
- border: solid 2px var(--gray);
745
+ border: solid 1px var(--gray);
703
746
  border-radius: 8px;
704
747
  color: var(--black);
705
748
  font-size: 14px;
706
- padding: 0 20px;
707
- transition: 0.6s;
749
+ padding: 0 10px;
750
+ transition: var(--transition);
708
751
  opacity: 1;
709
752
  background-color: var(--white);
710
753
  -webkit-touch-callout: none;
@@ -722,7 +765,8 @@
722
765
  }
723
766
  ._3BzwZ:focus {
724
767
  outline: none;
725
- border: solid 2px #b3b3b3;
768
+ border: solid 1px var(--primary-color);
769
+ box-shadow: var(--ring);
726
770
  }
727
771
  ._3BzwZ[disabled] {
728
772
  cursor: not-allowed;
@@ -758,8 +802,9 @@
758
802
  height: 280px;
759
803
  max-height: 450px;
760
804
  background-color: var(--white);
761
- border: solid 2px var(--gray);
762
- border-radius: 8px;
805
+ border: solid 1px var(--border);
806
+ border-radius: var(--radius);
807
+ box-shadow: var(--shadow-md);
763
808
  z-index: 100;
764
809
  top: 90px;
765
810
  -webkit-touch-callout: none;
@@ -842,13 +887,13 @@
842
887
  left: 0;
843
888
  height: 25px;
844
889
  width: 25px;
845
- border: solid 3px var(--gray);
846
- border-radius: 4px;
847
- transition: 0.4s;
890
+ border: solid 2px var(--gray);
891
+ border-radius: var(--radius-sm);
892
+ transition: var(--transition);
848
893
  }
849
894
 
850
895
  ._3Xukj input:checked ~ ._1uzL3 {
851
- border: solid 3px var(--primary-color);
896
+ border: solid 2px var(--primary-color);
852
897
  }
853
898
 
854
899
  ._1uzL3:after {
@@ -904,13 +949,13 @@
904
949
  left: 0;
905
950
  height: 25px;
906
951
  width: 25px;
907
- border: solid 3px var(--gray);
952
+ border: solid 2px var(--gray);
908
953
  border-radius: 25px;
909
- transition: 0.4s;
954
+ transition: var(--transition);
910
955
  }
911
956
 
912
957
  ._2lVSW input:checked ~ ._2xIhO{
913
- border: solid 3px var(--primary-color);
958
+ border: solid 2px var(--primary-color);
914
959
  }
915
960
 
916
961
  ._2xIhO:after {
@@ -933,19 +978,24 @@
933
978
  }
934
979
  ._3-lqN {
935
980
  width: 100%;
936
- border-radius: 10px;
981
+ border-radius: var(--radius);
937
982
  border-spacing: 0;
938
983
  border-collapse: unset;
939
984
  overflow: hidden;
940
985
  color: var(--black);
941
- border: none;
986
+ border: solid 1px var(--border);
942
987
  box-shadow: none;
943
988
  }
944
989
 
990
+ ._233g5 > tr:last-child > td,
991
+ ._233g5 > tr:last-child > th {
992
+ border-bottom: none;
993
+ }
994
+
945
995
  /* Thead */
946
996
  ._1PGdH > tr > th {
947
- border-bottom: solid 2px var(--secondary-color);
948
- color: var(--white);
997
+ border-bottom: solid 1px var(--border);
998
+ color: var(--muted);
949
999
  }
950
1000
 
951
1001
  /* Tr */
@@ -962,7 +1012,7 @@
962
1012
  text-transform: uppercase;
963
1013
  letter-spacing: 0.4px;
964
1014
  padding: 0 8px;
965
- background-color: var(--secondary-color);
1015
+ background-color: var(--surface);
966
1016
  border: 0;
967
1017
  }
968
1018
 
@@ -973,18 +1023,20 @@
973
1023
  padding: 0 8px;
974
1024
  }
975
1025
 
976
- /* Tbody cells - default (bordures blanches comme avant) */
1026
+ /* Tbody cells - default (clean hairline rows) */
977
1027
  ._233g5 > tr > td {
978
- background-color: var(--thirty-color);
979
- border: solid 1px var(--white);
980
- border-radius: 5px;
981
- transition: background-color 0.2s ease;
1028
+ background-color: var(--surface);
1029
+ border: none;
1030
+ border-bottom: solid 1px var(--border);
1031
+ border-radius: 0;
1032
+ transition: background-color var(--transition);
982
1033
  }
983
1034
  ._233g5 > tr > th {
984
- background-color: var(--fourth-color);
985
- border: solid 1px var(--white);
986
- border-radius: 5px;
987
- transition: background-color 0.2s ease;
1035
+ background-color: var(--gray-light);
1036
+ border: none;
1037
+ border-bottom: solid 1px var(--border);
1038
+ border-radius: 0;
1039
+ transition: background-color var(--transition);
988
1040
  }
989
1041
  ._233g5 > tr > td:first-child,
990
1042
  ._233g5 > tr > th:first-child {
@@ -996,7 +1048,7 @@
996
1048
  }
997
1049
  ._233g5 > tr:hover > td,
998
1050
  ._233g5 > tr:hover > th {
999
- filter: brightness(0.95);
1051
+ background-color: var(--gray-light);
1000
1052
  }
1001
1053
 
1002
1054
  /* Variant: bordered */
@@ -1041,7 +1093,7 @@
1041
1093
  border-right: none;
1042
1094
  }
1043
1095
  ._1bgLC ._233g5 > tr:nth-child(even) > td {
1044
- background-color: var(--white);
1096
+ background-color: var(--gray-light);
1045
1097
  }
1046
1098
  ._1bgLC ._233g5 > tr:nth-child(even) > th {
1047
1099
  filter: brightness(1.05);
@@ -1165,12 +1217,12 @@
1165
1217
  width: 50px;
1166
1218
  height: 50px;
1167
1219
  border-radius: 8px;
1168
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
1220
+ box-shadow: var(--shadow-sm);
1169
1221
  color: var(--primary-color);
1170
1222
  font-size: 26px;
1171
1223
  margin: auto 0;
1172
1224
  margin-right: 20px;
1173
- transition: 0.4s;
1225
+ transition: var(--transition);
1174
1226
  cursor: pointer;
1175
1227
  }
1176
1228
 
@@ -1226,8 +1278,8 @@
1226
1278
  left: 0;
1227
1279
  right: 0;
1228
1280
  background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
1229
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1230
- border-radius: 0 0 15px 15px;
1281
+ box-shadow: var(--shadow-md);
1282
+ border-radius: 0 0 12px 12px;
1231
1283
  z-index: 1;
1232
1284
  }
1233
1285
 
@@ -1265,7 +1317,7 @@
1265
1317
  border-radius: 8px;
1266
1318
  background-color: var(--white);
1267
1319
  color: var(--black);
1268
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1320
+ box-shadow: var(--shadow-sm);
1269
1321
  min-height: 85px;
1270
1322
  display: flex;
1271
1323
  overflow: hidden;
@@ -1435,7 +1487,7 @@
1435
1487
  background-color: var(--primary-color);
1436
1488
  border-radius: 8px;
1437
1489
  color: var(--white);
1438
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1490
+ box-shadow: var(--shadow-sm);
1439
1491
  }
1440
1492
 
1441
1493
  ._1OCk3 {
@@ -1506,12 +1558,12 @@
1506
1558
  ._29tu3 {
1507
1559
  display: flex;
1508
1560
  width: 100%;
1509
- height: 100px;
1510
- padding: 20px;
1561
+ height: 80px;
1562
+ padding: 16px;
1511
1563
  background-color: var(--white);
1512
1564
  border-radius: 8px;
1513
1565
  color: var(--black);
1514
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1566
+ box-shadow: var(--shadow-sm);
1515
1567
  }
1516
1568
 
1517
1569
  ._1b4T4 {
@@ -1522,7 +1574,7 @@
1522
1574
  }
1523
1575
 
1524
1576
  ._1b4T4 > span:first-child {
1525
- color: #67748e;
1577
+ color: var(--muted);
1526
1578
  font-size: 18px;
1527
1579
  }
1528
1580
 
@@ -1541,12 +1593,12 @@
1541
1593
  margin: auto;
1542
1594
  margin-right: 0;
1543
1595
  background-color: var(--primary-color);
1544
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1545
- width: 60px;
1546
- height: 60px;
1596
+ box-shadow: var(--shadow-sm);
1597
+ width: 48px;
1598
+ height: 48px;
1547
1599
  border-radius: 8px;
1548
1600
  color: var(--white);
1549
- font-size: 24px;
1601
+ font-size: 20px;
1550
1602
  }
1551
1603
 
1552
1604
  ._1dkwV > svg {
@@ -1557,9 +1609,9 @@
1557
1609
  display: flex;
1558
1610
  width: 100%;
1559
1611
  height: 50px;
1560
- border: solid 2px var(--primary-color);
1612
+ border: solid 1px var(--primary-color);
1561
1613
  overflow: hidden;
1562
- border-radius: 8px;
1614
+ border-radius: var(--radius);
1563
1615
  }
1564
1616
 
1565
1617
  ._2hcr7{
@@ -1570,9 +1622,9 @@
1570
1622
  color: var(--white);
1571
1623
  font-size: 18px;
1572
1624
  cursor: pointer;
1573
- transition: 0.4s;
1625
+ transition: var(--transition);
1574
1626
  margin: 3px;
1575
- border-radius: 8px;
1627
+ border-radius: var(--radius-sm);
1576
1628
  }
1577
1629
  ._2hcr7:hover{
1578
1630
  opacity: 0.7;
@@ -1594,8 +1646,8 @@
1594
1646
  ._2boVV {
1595
1647
  display: flex;
1596
1648
  position: relative;
1597
- border: var(--gray) dashed 2px;
1598
- border-radius: 8px;
1649
+ border: dashed 2px var(--border);
1650
+ border-radius: var(--radius);
1599
1651
  }
1600
1652
 
1601
1653
  ._2boVV img{
@@ -1606,7 +1658,7 @@
1606
1658
  }
1607
1659
 
1608
1660
  ._2boVV._O6vhI {
1609
- border: #d3d3d3 solid 2px;
1661
+ border: 1px solid var(--border);
1610
1662
  }
1611
1663
 
1612
1664
  ._WECto {
@@ -1616,7 +1668,7 @@
1616
1668
  color: var(--primary-color);
1617
1669
  font-size: 20px;
1618
1670
  cursor: pointer;
1619
- transition: 0.4s;
1671
+ transition: var(--transition);
1620
1672
  z-index: 10;
1621
1673
  }
1622
1674
 
@@ -1628,7 +1680,7 @@
1628
1680
  transform: translate(-50%, -50%);
1629
1681
  font-size: 30px;
1630
1682
  cursor: pointer;
1631
- transition: 0.4s;
1683
+ transition: var(--transition);
1632
1684
  }
1633
1685
 
1634
1686
  ._WECto:hover,
@@ -1660,25 +1712,22 @@
1660
1712
  ._2UVV8 {
1661
1713
  display: flex;
1662
1714
  height: 50px;
1663
- color: var(--primary-color);
1664
- background-color: var(--white);
1715
+ color: var(--muted);
1716
+ background-color: transparent;
1665
1717
  padding: 12px;
1666
1718
  width: 100%;
1667
- border-bottom: solid 2px var(--primary-color);
1719
+ border-bottom: solid 2px var(--border);
1668
1720
  cursor: pointer;
1669
- transition: 0.4s;
1670
- opacity: 0.5;
1721
+ transition: var(--transition);
1671
1722
  }
1672
1723
 
1673
1724
  ._2UVV8._1JhLg {
1674
- opacity: 1;
1725
+ color: var(--primary-color);
1726
+ border-bottom-color: var(--primary-color);
1675
1727
  }
1676
1728
 
1677
1729
  ._2UVV8:not(._1JhLg):hover {
1678
- opacity: 0.7;
1679
- }
1680
- ._2UVV8:not(._1JhLg):active {
1681
- opacity: 0.5;
1730
+ color: var(--black);
1682
1731
  }
1683
1732
 
1684
1733
  ._2UVV8 > span {
@@ -1709,7 +1758,7 @@
1709
1758
  justify-content: space-around;
1710
1759
  padding-top: 5px;
1711
1760
  padding-bottom: 5px;
1712
- border-radius: 8px;
1761
+ border-radius: var(--radius);
1713
1762
  padding-left: 5px;
1714
1763
  padding-right: 5px;
1715
1764
  margin-bottom: 20px;
@@ -1717,7 +1766,7 @@
1717
1766
  }
1718
1767
 
1719
1768
  ._2ZXDI:not(._2tReM) {
1720
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1769
+ box-shadow: var(--shadow-sm);
1721
1770
  background-color: var(--white);
1722
1771
  }
1723
1772
 
@@ -1727,8 +1776,8 @@
1727
1776
  }
1728
1777
 
1729
1778
  ._3SfUF:not(._2tReM) {
1730
- border-radius: 8px;
1731
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1779
+ border-radius: var(--radius);
1780
+ box-shadow: var(--shadow-sm);
1732
1781
  background-color: var(--white);
1733
1782
  }
1734
1783
 
@@ -1737,10 +1786,10 @@
1737
1786
  height: 40px;
1738
1787
  padding: 10px;
1739
1788
  margin: 5px;
1740
- color: var(--black);
1741
- transition: 0.4s;
1789
+ color: var(--muted);
1790
+ transition: var(--transition);
1742
1791
  cursor: pointer;
1743
- border-radius: 8px;
1792
+ border-radius: var(--radius);
1744
1793
  white-space: nowrap;
1745
1794
  flex-grow: 1;
1746
1795
  flex-shrink: 1;
@@ -1756,19 +1805,17 @@
1756
1805
  ._38JFK._1Km4b:active {
1757
1806
  cursor: not-allowed !important;
1758
1807
  background-color: var(--gray) !important;
1759
- color: var(--white) !important;
1808
+ color: var(--muted) !important;
1760
1809
  opacity: 1 !important;
1761
1810
  }
1762
1811
 
1763
1812
  ._38JFK:not(._NU04_):hover {
1764
- background-color: var(--primary-color);
1765
- color: var(--white);
1766
- opacity: 0.7;
1813
+ background-color: var(--primary-soft);
1814
+ color: var(--black);
1767
1815
  }
1768
1816
  ._38JFK:not(._NU04_):active {
1769
- background-color: var(--primary-color);
1770
- color: var(--white);
1771
- opacity: 0.5;
1817
+ background-color: var(--primary-soft);
1818
+ color: var(--primary-color);
1772
1819
  }
1773
1820
 
1774
1821
  ._38JFK > span {
@@ -1805,8 +1852,8 @@
1805
1852
  padding-right: 5px;
1806
1853
  padding-top: 5px;
1807
1854
  padding-bottom: 5px;
1808
- border-radius: 8px;
1809
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1855
+ border-radius: var(--radius);
1856
+ box-shadow: var(--shadow-sm);
1810
1857
  background-color: var(--white);
1811
1858
  margin-bottom: 20px;
1812
1859
  flex-wrap: wrap;
@@ -1818,8 +1865,8 @@
1818
1865
  }
1819
1866
 
1820
1867
  ._38nW8:not(._3ERlR) {
1821
- border-radius: 8px;
1822
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1868
+ border-radius: var(--radius);
1869
+ box-shadow: var(--shadow-sm);
1823
1870
  background-color: var(--white);
1824
1871
  }
1825
1872
 
@@ -1829,28 +1876,29 @@
1829
1876
  height: 40px;
1830
1877
  padding: 10px;
1831
1878
  margin: 5px;
1832
- color: var(--black);
1879
+ color: var(--muted);
1833
1880
  cursor: pointer;
1834
1881
  white-space: nowrap;
1835
1882
  flex-grow: 1;
1836
1883
  flex-shrink: 1;
1837
1884
  background-color: var(--thirty-color);
1885
+ transition: var(--transition);
1838
1886
  }
1839
1887
 
1840
1888
  ._2JnR3:first-child {
1841
- border-top-left-radius: 10px;
1842
- border-bottom-left-radius: 10px;
1889
+ border-top-left-radius: var(--radius);
1890
+ border-bottom-left-radius: var(--radius);
1843
1891
  }
1844
1892
 
1845
1893
  ._2JnR3:last-child {
1846
- border-top-right-radius: 10px;
1847
- border-bottom-right-radius: 10px;
1894
+ border-top-right-radius: var(--radius);
1895
+ border-bottom-right-radius: var(--radius);
1848
1896
  }
1849
1897
 
1850
1898
  @media screen and (max-width: 640px) {
1851
1899
  ._2JnR3,
1852
1900
  ._2JnR3 {
1853
- border-radius: 8px;
1901
+ border-radius: var(--radius);
1854
1902
  }
1855
1903
  }
1856
1904
 
@@ -1905,7 +1953,7 @@
1905
1953
  ._2JnR3._3c4B_:active {
1906
1954
  cursor: not-allowed !important;
1907
1955
  background-color: var(--thirty-color) !important;
1908
- color: var(--gray) !important;
1956
+ color: var(--muted) !important;
1909
1957
  opacity: 1 !important;
1910
1958
  }
1911
1959
 
@@ -1919,15 +1967,13 @@
1919
1967
  }
1920
1968
 
1921
1969
  ._2JnR3:not(._a0pKA):hover {
1922
- background-color: var(--primary-color);
1970
+ background-color: var(--primary-hover);
1923
1971
  color: var(--white);
1924
- opacity: 0.7;
1925
1972
  }
1926
1973
 
1927
1974
  ._2JnR3:not(._a0pKA):active {
1928
1975
  background-color: var(--primary-color);
1929
1976
  color: var(--white);
1930
- opacity: 0.5;
1931
1977
  }
1932
1978
 
1933
1979
  ._2JnR3:not(._a0pKA):active > div:first-child {
@@ -1981,8 +2027,8 @@
1981
2027
  width: 100%;
1982
2028
  padding-top: 5px;
1983
2029
  padding-bottom: 5px;
1984
- border-radius: 8px;
1985
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2030
+ border-radius: var(--radius);
2031
+ box-shadow: var(--shadow-sm);
1986
2032
  background-color: var(--white);
1987
2033
  margin-bottom: 20px;
1988
2034
  }
@@ -2015,8 +2061,8 @@
2015
2061
  }
2016
2062
 
2017
2063
  ._2cxzo:not(._2WKxa) {
2018
- border-radius: 8px;
2019
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2064
+ border-radius: var(--radius);
2065
+ box-shadow: var(--shadow-sm);
2020
2066
  background-color: var(--white);
2021
2067
  }
2022
2068
 
@@ -2025,10 +2071,10 @@
2025
2071
  height: 40px;
2026
2072
  padding: 10px;
2027
2073
  margin: 5px 10px;
2028
- color: var(--black);
2029
- transition: 0.4s;
2074
+ color: var(--muted);
2075
+ transition: var(--transition);
2030
2076
  cursor: pointer;
2031
- border-radius: 8px;
2077
+ border-radius: var(--radius);
2032
2078
  white-space: nowrap;
2033
2079
  flex-grow: 1;
2034
2080
  flex-shrink: 1;
@@ -2048,19 +2094,17 @@
2048
2094
  ._MFel7._Eq4pW:active {
2049
2095
  cursor: not-allowed !important;
2050
2096
  background-color: var(--gray) !important;
2051
- color: var(--white) !important;
2097
+ color: var(--muted) !important;
2052
2098
  opacity: 1 !important;
2053
2099
  }
2054
2100
 
2055
2101
  ._MFel7:not(._32WLP):hover {
2056
- background-color: var(--primary-color);
2057
- color: var(--white);
2058
- opacity: 0.7;
2102
+ background-color: var(--primary-soft);
2103
+ color: var(--black);
2059
2104
  }
2060
2105
  ._MFel7:not(._32WLP):active {
2061
- background-color: var(--primary-color);
2062
- color: var(--white);
2063
- opacity: 0.5;
2106
+ background-color: var(--primary-soft);
2107
+ color: var(--primary-color);
2064
2108
  }
2065
2109
 
2066
2110
  ._MFel7 > span {
@@ -2089,8 +2133,8 @@
2089
2133
  height: 100%;
2090
2134
  background-color: var(--secondary-color);
2091
2135
  z-index: 11;
2092
- transition: 0.6s;
2093
- box-shadow: 7px -1px 6px 0 rgba(0, 0, 0, 0.16);
2136
+ transition: var(--transition);
2137
+ box-shadow: var(--shadow-md);
2094
2138
  border-radius: 0 25px 25px 0;
2095
2139
  }
2096
2140
 
@@ -2125,7 +2169,7 @@
2125
2169
  margin-right: 0;
2126
2170
  padding: 0 2rem;
2127
2171
  font-size: 2rem;
2128
- transition: 0.6s;
2172
+ transition: var(--transition);
2129
2173
  color: var(--white);
2130
2174
  cursor: pointer;
2131
2175
  }
@@ -2190,12 +2234,12 @@
2190
2234
  }
2191
2235
  ._1hv_V::-webkit-scrollbar-track {
2192
2236
  background: rgba(0, 0, 0, 0.1);
2193
- border-radius: 8px;
2237
+ border-radius: var(--radius);
2194
2238
  }
2195
2239
  ._1hv_V::-webkit-scrollbar-thumb {
2196
2240
  background: rgba(0, 0, 0, 0.25);
2197
2241
  opacity: 0.7;
2198
- border-radius: 8px;
2242
+ border-radius: var(--radius);
2199
2243
  }
2200
2244
  ._1hv_V::-webkit-scrollbar-thumb:hover {
2201
2245
  background: rgba(0, 0, 0, 0.45);
@@ -2211,8 +2255,8 @@
2211
2255
  margin-bottom: 8px;
2212
2256
  height: 40px;
2213
2257
  cursor: pointer;
2214
- transition: 0.6s;
2215
- border-radius: 8px;
2258
+ transition: var(--transition);
2259
+ border-radius: var(--radius);
2216
2260
  white-space: nowrap;
2217
2261
  }
2218
2262
  ._1iy27:hover,
@@ -2225,7 +2269,8 @@
2225
2269
  }
2226
2270
  ._1iy27._BPuzP,
2227
2271
  ._1ZHFn._BPuzP {
2228
- background-color: rgba(0, 0, 0, 0.15);
2272
+ background-color: var(--primary-soft);
2273
+ color: var(--primary-color);
2229
2274
  }
2230
2275
  ._1iy27._2BDmo,
2231
2276
  ._1ZHFn._2BDmo {
@@ -2358,9 +2403,9 @@
2358
2403
  ._bHyVu ._XOUj6 {
2359
2404
  position: relative;
2360
2405
  height: 30px;
2361
- border-radius: 8px;
2406
+ border-radius: var(--radius);
2362
2407
  background-color: var(--thirty-color);
2363
- transition: 0.7s;
2408
+ transition: var(--transition);
2364
2409
  }
2365
2410
 
2366
2411
  ._bHyVu ._XOUj6:hover {
@@ -2372,7 +2417,7 @@
2372
2417
  display: block;
2373
2418
  width: 100%;
2374
2419
  height: 30px;
2375
- border-radius: 8px;
2420
+ border-radius: var(--radius);
2376
2421
  margin: 0;
2377
2422
  }
2378
2423
 
@@ -2417,9 +2462,9 @@
2417
2462
  ._2CYNt > p {
2418
2463
  margin: 0;
2419
2464
  margin-top: 1rem;
2420
- color: #ffffff;
2465
+ color: var(--white);
2421
2466
  background-color: var(--primary-color);
2422
- border-radius: 8px;
2467
+ border-radius: var(--radius);
2423
2468
  padding: 0.8rem;
2424
2469
  font-size: 16px;
2425
2470
  }
@@ -2478,7 +2523,7 @@
2478
2523
  ._2mqrQ > li {
2479
2524
  cursor: pointer;
2480
2525
  display: flex;
2481
- border-radius: 8px;
2526
+ border-radius: var(--radius);
2482
2527
  margin-left: 5px;
2483
2528
  margin-right: 5px;
2484
2529
  width: 40px;
@@ -2486,7 +2531,7 @@
2486
2531
  background-color: var(--thirty-color);
2487
2532
  float: left;
2488
2533
  list-style: none;
2489
- transition: 0.3s;
2534
+ transition: var(--transition);
2490
2535
  }
2491
2536
 
2492
2537
  ._2mqrQ > li:hover {
@@ -2547,10 +2592,10 @@
2547
2592
  display: flex;
2548
2593
  width: 150px;
2549
2594
  height: 200px;
2550
- border: dashed 2px var(--gray);
2551
- border-radius: 8px;
2595
+ border: dashed 2px var(--border);
2596
+ border-radius: var(--radius);
2552
2597
  cursor: pointer;
2553
- transition: 0.3s;
2598
+ transition: var(--transition);
2554
2599
  overflow: hidden;
2555
2600
  }
2556
2601
  ._2tyK_ section:hover {
@@ -2598,14 +2643,14 @@
2598
2643
  width: 100%;
2599
2644
  min-height: 200px;
2600
2645
  border: dashed 2px var(--primary-color);
2601
- border-radius: 8px;
2646
+ border-radius: var(--radius);
2602
2647
  cursor: pointer;
2603
- transition: 0.3s;
2648
+ transition: var(--transition);
2604
2649
  overflow: hidden;
2605
2650
  }
2606
2651
 
2607
2652
  ._HCj8R:hover {
2608
- border: dashed 2px var(--gray);
2653
+ border: dashed 2px var(--border);
2609
2654
  }
2610
2655
 
2611
2656
  ._HCj8R:active {
@@ -2638,7 +2683,7 @@
2638
2683
  padding: 1rem;
2639
2684
  background-color: var(--gray);
2640
2685
  margin: 0.5rem;
2641
- border-radius: 8px;
2686
+ border-radius: var(--radius);
2642
2687
  }
2643
2688
 
2644
2689
  ._34DnJ {
@@ -2649,7 +2694,7 @@
2649
2694
  padding: 0.4rem;
2650
2695
  cursor: pointer;
2651
2696
  font-size: 18px;
2652
- transition: 0.3s;
2697
+ transition: var(--transition);
2653
2698
  }
2654
2699
 
2655
2700
  ._34DnJ:hover {
@@ -2662,7 +2707,7 @@
2662
2707
 
2663
2708
  ._2qV1W {
2664
2709
  display: inline-block;
2665
- border-radius: 8px;
2710
+ border-radius: var(--radius);
2666
2711
  background-color: var(--primary-color);
2667
2712
  font-size: 12px;
2668
2713
  font-weight: normal;
@@ -2683,7 +2728,8 @@
2683
2728
  display: flex;
2684
2729
  padding: 1rem;
2685
2730
  background-color: #ffffff;
2686
- border-radius: 8px;
2731
+ border-radius: var(--radius);
2732
+ box-shadow: var(--shadow-md);
2687
2733
  margin-top: 1rem;
2688
2734
  z-index: 120;
2689
2735
  }
@@ -2698,7 +2744,7 @@
2698
2744
  width: 100%;
2699
2745
  min-height: 60px;
2700
2746
  padding: 0 1rem;
2701
- border-radius: 8px;
2747
+ border-radius: var(--radius);
2702
2748
  }
2703
2749
 
2704
2750
  ._2fV2F > span {
@@ -2742,6 +2788,11 @@
2742
2788
  padding: 2px;
2743
2789
  padding-left: 8px;
2744
2790
  }
2791
+
2792
+ ._1bGM- button {
2793
+ padding: 0 0 0 8px;
2794
+ font-size: 14px;
2795
+ }
2745
2796
  /* start ListingHorizontal */
2746
2797
 
2747
2798
  ._64Nqe {
@@ -2810,7 +2861,7 @@
2810
2861
  top: 20px;
2811
2862
  left: 70px;
2812
2863
  right: 70px;
2813
- border-bottom: dashed 1px black;
2864
+ border-bottom: dashed 1px var(--border);
2814
2865
  z-index: 3;
2815
2866
  }
2816
2867
 
@@ -2884,8 +2935,13 @@
2884
2935
 
2885
2936
  ._2kN79 {
2886
2937
  display: inline-flex;
2938
+ align-items: center;
2939
+ height: 38px;
2887
2940
  cursor: pointer;
2888
- padding: 1rem;
2941
+ padding: 0 12px;
2942
+ border: solid 1px var(--gray);
2943
+ border-radius: 8px;
2944
+ background-color: #fff;
2889
2945
  transition: 0.3s;
2890
2946
  -webkit-touch-callout: none;
2891
2947
  -webkit-user-select: none;
@@ -2915,14 +2971,15 @@
2915
2971
  ._2Y_fS {
2916
2972
  display: none;
2917
2973
  position: absolute;
2918
- background-color: red;
2919
2974
  z-index: 100;
2920
- padding: 1rem;
2921
- border-radius: 8px;
2922
- background-color: var(--gray);
2975
+ margin-top: 6px;
2976
+ padding: 6px;
2977
+ border-radius: var(--radius);
2978
+ background-color: var(--surface);
2979
+ border: solid 1px var(--border);
2923
2980
  color: var(--black);
2924
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2925
- transition: 0.3s;
2981
+ box-shadow: var(--shadow-md);
2982
+ transition: var(--transition);
2926
2983
  }
2927
2984
 
2928
2985
  ._2Y_fS._3nBzR {
@@ -2930,8 +2987,11 @@
2930
2987
  }
2931
2988
 
2932
2989
  ._2Y_fS > span {
2933
- margin: 0.4rem;
2934
- transition: 0.3s;
2990
+ display: block;
2991
+ padding: 8px 12px;
2992
+ border-radius: var(--radius-sm);
2993
+ transition: var(--transition);
2994
+ white-space: nowrap;
2935
2995
  -webkit-touch-callout: none;
2936
2996
  -webkit-user-select: none;
2937
2997
  -moz-user-select: none;
@@ -2940,10 +3000,8 @@
2940
3000
  }
2941
3001
 
2942
3002
  ._2Y_fS > span:hover {
2943
- opacity: 0.8;
2944
- }
2945
- ._2Y_fS > span:active {
2946
- opacity: 0.6;
3003
+ background-color: var(--primary-soft);
3004
+ color: var(--primary-color);
2947
3005
  }
2948
3006
 
2949
3007
  ._2yA72 {
@@ -2975,7 +3033,7 @@
2975
3033
  color: #262626;
2976
3034
  margin: 0;
2977
3035
  letter-spacing: 3px;
2978
- padding-left: 6p;
3036
+ padding-left: 6px;
2979
3037
  }
2980
3038
 
2981
3039
  ._1aeC7 {
@@ -3045,7 +3103,7 @@
3045
3103
  display: inline-flex;
3046
3104
  background-color: var(--gray);
3047
3105
  border-radius: 20px;
3048
- height: 40px;
3106
+ height: 38px;
3049
3107
  -webkit-touch-callout: none;
3050
3108
  -webkit-user-select: none;
3051
3109
  -moz-user-select: none;
@@ -3056,7 +3114,7 @@
3056
3114
  ._zCJtD > div {
3057
3115
  display: inline-flex;
3058
3116
  border-radius: 20px;
3059
- height: 40px;
3117
+ height: 38px;
3060
3118
  transition: 0.3s;
3061
3119
  cursor: pointer;
3062
3120
  }
@@ -3092,9 +3150,9 @@
3092
3150
  ._2xv6h {
3093
3151
  margin: auto;
3094
3152
  background-color: white;
3095
- border-radius: 8px;
3153
+ border-radius: var(--radius-lg);
3096
3154
  overflow: hidden;
3097
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
3155
+ box-shadow: var(--shadow-md);
3098
3156
  }
3099
3157
 
3100
3158
  ._29LEv {
@@ -3109,7 +3167,7 @@
3109
3167
  ._3rhMU,
3110
3168
  ._3tkpF {
3111
3169
  display: flex;
3112
- color: #9b9b9b;
3170
+ color: var(--muted);
3113
3171
  padding: 0.6rem;
3114
3172
  }
3115
3173
  ._3rhMU > span,
@@ -3153,10 +3211,10 @@
3153
3211
 
3154
3212
  ._ooroJ {
3155
3213
  padding: 0.6rem;
3156
- color: #9b9b9b;
3214
+ color: var(--muted);
3157
3215
  font-size: 20px;
3158
3216
  cursor: pointer;
3159
- transition: 0.3s;
3217
+ transition: var(--transition);
3160
3218
  }
3161
3219
 
3162
3220
  ._2M-ho {
@@ -3171,7 +3229,7 @@
3171
3229
  display: inline-block;
3172
3230
  width: 36px;
3173
3231
  height: 36px;
3174
- background-color: #eeeeee;
3232
+ background-color: var(--gray-light);
3175
3233
  color: var(--secondary-color);
3176
3234
  text-align: center;
3177
3235
  border-radius: 50%;
@@ -3179,15 +3237,16 @@
3179
3237
  cursor: pointer;
3180
3238
  margin: 4px;
3181
3239
  font-size: 13px;
3240
+ transition: var(--transition);
3182
3241
  }
3183
3242
 
3184
3243
  ._2M-ho > tbody > tr > td > span._2QVVt {
3185
3244
  color: white;
3186
- background-color: var(--secondary-color);
3245
+ background-color: var(--primary-color);
3187
3246
  }
3188
3247
 
3189
3248
  ._2M-ho > tbody > tr > td > span._YWe6I {
3190
- color: #eeeeee;
3249
+ color: var(--muted);
3191
3250
  background-color: transparent;
3192
3251
  cursor: not-allowed;
3193
3252
  }
@@ -3214,19 +3273,19 @@
3214
3273
 
3215
3274
  ._3uQg0 {
3216
3275
  width: 100%;
3217
- border: solid 1px var(--secondary-color);
3276
+ border: solid 1px var(--border);
3218
3277
  color: var(--secondary-color);
3219
- border-radius: 8px;
3278
+ border-radius: var(--radius);
3220
3279
  padding: 0.7rem 1rem;
3221
3280
  font-weight: bold;
3222
3281
  margin-bottom: 0.4rem;
3223
3282
  text-align: center;
3224
3283
  cursor: pointer;
3225
- transition: 0.3s;
3284
+ transition: var(--transition);
3226
3285
  }
3227
3286
  ._3uQg0._YWe6I {
3228
- border: solid 1px #eeeeee;
3229
- color: #eeeeee;
3287
+ border: solid 1px var(--border);
3288
+ color: var(--muted);
3230
3289
  cursor: not-allowed;
3231
3290
  }
3232
3291