ui-kit-ck-consultant 0.6.69 → 1.0.1

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 */
@@ -961,8 +1011,8 @@
961
1011
  text-align: left;
962
1012
  text-transform: uppercase;
963
1013
  letter-spacing: 0.4px;
964
- padding: 0 8px;
965
- background-color: var(--secondary-color);
1014
+ padding: 0 10px;
1015
+ background-color: var(--gray-light);
966
1016
  border: 0;
967
1017
  }
968
1018
 
@@ -970,21 +1020,29 @@
970
1020
  ._2PYe5 {
971
1021
  font-size: 13px;
972
1022
  text-align: left;
973
- padding: 0 8px;
1023
+ padding: 0 10px;
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(--surface);
1036
+ font-size: 13px;
1037
+ font-weight: 600;
1038
+ text-align: left;
1039
+ text-transform: none;
1040
+ letter-spacing: normal;
1041
+ padding: 0 10px;
1042
+ border: none;
1043
+ border-bottom: solid 1px var(--border);
1044
+ border-radius: 0;
1045
+ transition: background-color var(--transition);
988
1046
  }
989
1047
  ._233g5 > tr > td:first-child,
990
1048
  ._233g5 > tr > th:first-child {
@@ -996,7 +1054,7 @@
996
1054
  }
997
1055
  ._233g5 > tr:hover > td,
998
1056
  ._233g5 > tr:hover > th {
999
- filter: brightness(0.95);
1057
+ background-color: var(--gray-light);
1000
1058
  }
1001
1059
 
1002
1060
  /* Variant: bordered */
@@ -1041,7 +1099,7 @@
1041
1099
  border-right: none;
1042
1100
  }
1043
1101
  ._1bgLC ._233g5 > tr:nth-child(even) > td {
1044
- background-color: var(--white);
1102
+ background-color: var(--gray-light);
1045
1103
  }
1046
1104
  ._1bgLC ._233g5 > tr:nth-child(even) > th {
1047
1105
  filter: brightness(1.05);
@@ -1165,12 +1223,12 @@
1165
1223
  width: 50px;
1166
1224
  height: 50px;
1167
1225
  border-radius: 8px;
1168
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
1226
+ box-shadow: var(--shadow-sm);
1169
1227
  color: var(--primary-color);
1170
1228
  font-size: 26px;
1171
1229
  margin: auto 0;
1172
1230
  margin-right: 20px;
1173
- transition: 0.4s;
1231
+ transition: var(--transition);
1174
1232
  cursor: pointer;
1175
1233
  }
1176
1234
 
@@ -1226,8 +1284,8 @@
1226
1284
  left: 0;
1227
1285
  right: 0;
1228
1286
  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;
1287
+ box-shadow: var(--shadow-md);
1288
+ border-radius: 0 0 12px 12px;
1231
1289
  z-index: 1;
1232
1290
  }
1233
1291
 
@@ -1265,7 +1323,7 @@
1265
1323
  border-radius: 8px;
1266
1324
  background-color: var(--white);
1267
1325
  color: var(--black);
1268
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1326
+ box-shadow: var(--shadow-sm);
1269
1327
  min-height: 85px;
1270
1328
  display: flex;
1271
1329
  overflow: hidden;
@@ -1435,7 +1493,7 @@
1435
1493
  background-color: var(--primary-color);
1436
1494
  border-radius: 8px;
1437
1495
  color: var(--white);
1438
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1496
+ box-shadow: var(--shadow-sm);
1439
1497
  }
1440
1498
 
1441
1499
  ._1OCk3 {
@@ -1506,12 +1564,12 @@
1506
1564
  ._29tu3 {
1507
1565
  display: flex;
1508
1566
  width: 100%;
1509
- height: 100px;
1510
- padding: 20px;
1567
+ height: 80px;
1568
+ padding: 16px;
1511
1569
  background-color: var(--white);
1512
1570
  border-radius: 8px;
1513
1571
  color: var(--black);
1514
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1572
+ box-shadow: var(--shadow-sm);
1515
1573
  }
1516
1574
 
1517
1575
  ._1b4T4 {
@@ -1522,7 +1580,7 @@
1522
1580
  }
1523
1581
 
1524
1582
  ._1b4T4 > span:first-child {
1525
- color: #67748e;
1583
+ color: var(--muted);
1526
1584
  font-size: 18px;
1527
1585
  }
1528
1586
 
@@ -1541,12 +1599,12 @@
1541
1599
  margin: auto;
1542
1600
  margin-right: 0;
1543
1601
  background-color: var(--primary-color);
1544
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1545
- width: 60px;
1546
- height: 60px;
1602
+ box-shadow: var(--shadow-sm);
1603
+ width: 48px;
1604
+ height: 48px;
1547
1605
  border-radius: 8px;
1548
1606
  color: var(--white);
1549
- font-size: 24px;
1607
+ font-size: 20px;
1550
1608
  }
1551
1609
 
1552
1610
  ._1dkwV > svg {
@@ -1557,9 +1615,9 @@
1557
1615
  display: flex;
1558
1616
  width: 100%;
1559
1617
  height: 50px;
1560
- border: solid 2px var(--primary-color);
1618
+ border: solid 1px var(--primary-color);
1561
1619
  overflow: hidden;
1562
- border-radius: 8px;
1620
+ border-radius: var(--radius);
1563
1621
  }
1564
1622
 
1565
1623
  ._2hcr7{
@@ -1570,9 +1628,9 @@
1570
1628
  color: var(--white);
1571
1629
  font-size: 18px;
1572
1630
  cursor: pointer;
1573
- transition: 0.4s;
1631
+ transition: var(--transition);
1574
1632
  margin: 3px;
1575
- border-radius: 8px;
1633
+ border-radius: var(--radius-sm);
1576
1634
  }
1577
1635
  ._2hcr7:hover{
1578
1636
  opacity: 0.7;
@@ -1594,8 +1652,8 @@
1594
1652
  ._2boVV {
1595
1653
  display: flex;
1596
1654
  position: relative;
1597
- border: var(--gray) dashed 2px;
1598
- border-radius: 8px;
1655
+ border: dashed 2px var(--border);
1656
+ border-radius: var(--radius);
1599
1657
  }
1600
1658
 
1601
1659
  ._2boVV img{
@@ -1606,7 +1664,7 @@
1606
1664
  }
1607
1665
 
1608
1666
  ._2boVV._O6vhI {
1609
- border: #d3d3d3 solid 2px;
1667
+ border: 1px solid var(--border);
1610
1668
  }
1611
1669
 
1612
1670
  ._WECto {
@@ -1616,7 +1674,7 @@
1616
1674
  color: var(--primary-color);
1617
1675
  font-size: 20px;
1618
1676
  cursor: pointer;
1619
- transition: 0.4s;
1677
+ transition: var(--transition);
1620
1678
  z-index: 10;
1621
1679
  }
1622
1680
 
@@ -1628,7 +1686,7 @@
1628
1686
  transform: translate(-50%, -50%);
1629
1687
  font-size: 30px;
1630
1688
  cursor: pointer;
1631
- transition: 0.4s;
1689
+ transition: var(--transition);
1632
1690
  }
1633
1691
 
1634
1692
  ._WECto:hover,
@@ -1660,25 +1718,22 @@
1660
1718
  ._2UVV8 {
1661
1719
  display: flex;
1662
1720
  height: 50px;
1663
- color: var(--primary-color);
1664
- background-color: var(--white);
1721
+ color: var(--muted);
1722
+ background-color: transparent;
1665
1723
  padding: 12px;
1666
1724
  width: 100%;
1667
- border-bottom: solid 2px var(--primary-color);
1725
+ border-bottom: solid 2px var(--border);
1668
1726
  cursor: pointer;
1669
- transition: 0.4s;
1670
- opacity: 0.5;
1727
+ transition: var(--transition);
1671
1728
  }
1672
1729
 
1673
1730
  ._2UVV8._1JhLg {
1674
- opacity: 1;
1731
+ color: var(--primary-color);
1732
+ border-bottom-color: var(--primary-color);
1675
1733
  }
1676
1734
 
1677
1735
  ._2UVV8:not(._1JhLg):hover {
1678
- opacity: 0.7;
1679
- }
1680
- ._2UVV8:not(._1JhLg):active {
1681
- opacity: 0.5;
1736
+ color: var(--black);
1682
1737
  }
1683
1738
 
1684
1739
  ._2UVV8 > span {
@@ -1709,7 +1764,7 @@
1709
1764
  justify-content: space-around;
1710
1765
  padding-top: 5px;
1711
1766
  padding-bottom: 5px;
1712
- border-radius: 8px;
1767
+ border-radius: var(--radius);
1713
1768
  padding-left: 5px;
1714
1769
  padding-right: 5px;
1715
1770
  margin-bottom: 20px;
@@ -1717,7 +1772,7 @@
1717
1772
  }
1718
1773
 
1719
1774
  ._2ZXDI:not(._2tReM) {
1720
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1775
+ box-shadow: var(--shadow-sm);
1721
1776
  background-color: var(--white);
1722
1777
  }
1723
1778
 
@@ -1727,8 +1782,8 @@
1727
1782
  }
1728
1783
 
1729
1784
  ._3SfUF:not(._2tReM) {
1730
- border-radius: 8px;
1731
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1785
+ border-radius: var(--radius);
1786
+ box-shadow: var(--shadow-sm);
1732
1787
  background-color: var(--white);
1733
1788
  }
1734
1789
 
@@ -1737,10 +1792,10 @@
1737
1792
  height: 40px;
1738
1793
  padding: 10px;
1739
1794
  margin: 5px;
1740
- color: var(--black);
1741
- transition: 0.4s;
1795
+ color: var(--muted);
1796
+ transition: var(--transition);
1742
1797
  cursor: pointer;
1743
- border-radius: 8px;
1798
+ border-radius: var(--radius);
1744
1799
  white-space: nowrap;
1745
1800
  flex-grow: 1;
1746
1801
  flex-shrink: 1;
@@ -1756,19 +1811,17 @@
1756
1811
  ._38JFK._1Km4b:active {
1757
1812
  cursor: not-allowed !important;
1758
1813
  background-color: var(--gray) !important;
1759
- color: var(--white) !important;
1814
+ color: var(--muted) !important;
1760
1815
  opacity: 1 !important;
1761
1816
  }
1762
1817
 
1763
1818
  ._38JFK:not(._NU04_):hover {
1764
- background-color: var(--primary-color);
1765
- color: var(--white);
1766
- opacity: 0.7;
1819
+ background-color: var(--primary-soft);
1820
+ color: var(--black);
1767
1821
  }
1768
1822
  ._38JFK:not(._NU04_):active {
1769
- background-color: var(--primary-color);
1770
- color: var(--white);
1771
- opacity: 0.5;
1823
+ background-color: var(--primary-soft);
1824
+ color: var(--primary-color);
1772
1825
  }
1773
1826
 
1774
1827
  ._38JFK > span {
@@ -1805,8 +1858,8 @@
1805
1858
  padding-right: 5px;
1806
1859
  padding-top: 5px;
1807
1860
  padding-bottom: 5px;
1808
- border-radius: 8px;
1809
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1861
+ border-radius: var(--radius);
1862
+ box-shadow: var(--shadow-sm);
1810
1863
  background-color: var(--white);
1811
1864
  margin-bottom: 20px;
1812
1865
  flex-wrap: wrap;
@@ -1818,8 +1871,8 @@
1818
1871
  }
1819
1872
 
1820
1873
  ._38nW8:not(._3ERlR) {
1821
- border-radius: 8px;
1822
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1874
+ border-radius: var(--radius);
1875
+ box-shadow: var(--shadow-sm);
1823
1876
  background-color: var(--white);
1824
1877
  }
1825
1878
 
@@ -1829,28 +1882,29 @@
1829
1882
  height: 40px;
1830
1883
  padding: 10px;
1831
1884
  margin: 5px;
1832
- color: var(--black);
1885
+ color: var(--muted);
1833
1886
  cursor: pointer;
1834
1887
  white-space: nowrap;
1835
1888
  flex-grow: 1;
1836
1889
  flex-shrink: 1;
1837
1890
  background-color: var(--thirty-color);
1891
+ transition: var(--transition);
1838
1892
  }
1839
1893
 
1840
1894
  ._2JnR3:first-child {
1841
- border-top-left-radius: 10px;
1842
- border-bottom-left-radius: 10px;
1895
+ border-top-left-radius: var(--radius);
1896
+ border-bottom-left-radius: var(--radius);
1843
1897
  }
1844
1898
 
1845
1899
  ._2JnR3:last-child {
1846
- border-top-right-radius: 10px;
1847
- border-bottom-right-radius: 10px;
1900
+ border-top-right-radius: var(--radius);
1901
+ border-bottom-right-radius: var(--radius);
1848
1902
  }
1849
1903
 
1850
1904
  @media screen and (max-width: 640px) {
1851
1905
  ._2JnR3,
1852
1906
  ._2JnR3 {
1853
- border-radius: 8px;
1907
+ border-radius: var(--radius);
1854
1908
  }
1855
1909
  }
1856
1910
 
@@ -1905,7 +1959,7 @@
1905
1959
  ._2JnR3._3c4B_:active {
1906
1960
  cursor: not-allowed !important;
1907
1961
  background-color: var(--thirty-color) !important;
1908
- color: var(--gray) !important;
1962
+ color: var(--muted) !important;
1909
1963
  opacity: 1 !important;
1910
1964
  }
1911
1965
 
@@ -1919,15 +1973,13 @@
1919
1973
  }
1920
1974
 
1921
1975
  ._2JnR3:not(._a0pKA):hover {
1922
- background-color: var(--primary-color);
1976
+ background-color: var(--primary-hover);
1923
1977
  color: var(--white);
1924
- opacity: 0.7;
1925
1978
  }
1926
1979
 
1927
1980
  ._2JnR3:not(._a0pKA):active {
1928
1981
  background-color: var(--primary-color);
1929
1982
  color: var(--white);
1930
- opacity: 0.5;
1931
1983
  }
1932
1984
 
1933
1985
  ._2JnR3:not(._a0pKA):active > div:first-child {
@@ -1981,8 +2033,8 @@
1981
2033
  width: 100%;
1982
2034
  padding-top: 5px;
1983
2035
  padding-bottom: 5px;
1984
- border-radius: 8px;
1985
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2036
+ border-radius: var(--radius);
2037
+ box-shadow: var(--shadow-sm);
1986
2038
  background-color: var(--white);
1987
2039
  margin-bottom: 20px;
1988
2040
  }
@@ -2015,8 +2067,8 @@
2015
2067
  }
2016
2068
 
2017
2069
  ._2cxzo:not(._2WKxa) {
2018
- border-radius: 8px;
2019
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2070
+ border-radius: var(--radius);
2071
+ box-shadow: var(--shadow-sm);
2020
2072
  background-color: var(--white);
2021
2073
  }
2022
2074
 
@@ -2025,10 +2077,10 @@
2025
2077
  height: 40px;
2026
2078
  padding: 10px;
2027
2079
  margin: 5px 10px;
2028
- color: var(--black);
2029
- transition: 0.4s;
2080
+ color: var(--muted);
2081
+ transition: var(--transition);
2030
2082
  cursor: pointer;
2031
- border-radius: 8px;
2083
+ border-radius: var(--radius);
2032
2084
  white-space: nowrap;
2033
2085
  flex-grow: 1;
2034
2086
  flex-shrink: 1;
@@ -2048,19 +2100,17 @@
2048
2100
  ._MFel7._Eq4pW:active {
2049
2101
  cursor: not-allowed !important;
2050
2102
  background-color: var(--gray) !important;
2051
- color: var(--white) !important;
2103
+ color: var(--muted) !important;
2052
2104
  opacity: 1 !important;
2053
2105
  }
2054
2106
 
2055
2107
  ._MFel7:not(._32WLP):hover {
2056
- background-color: var(--primary-color);
2057
- color: var(--white);
2058
- opacity: 0.7;
2108
+ background-color: var(--primary-soft);
2109
+ color: var(--black);
2059
2110
  }
2060
2111
  ._MFel7:not(._32WLP):active {
2061
- background-color: var(--primary-color);
2062
- color: var(--white);
2063
- opacity: 0.5;
2112
+ background-color: var(--primary-soft);
2113
+ color: var(--primary-color);
2064
2114
  }
2065
2115
 
2066
2116
  ._MFel7 > span {
@@ -2089,8 +2139,8 @@
2089
2139
  height: 100%;
2090
2140
  background-color: var(--secondary-color);
2091
2141
  z-index: 11;
2092
- transition: 0.6s;
2093
- box-shadow: 7px -1px 6px 0 rgba(0, 0, 0, 0.16);
2142
+ transition: var(--transition);
2143
+ box-shadow: var(--shadow-md);
2094
2144
  border-radius: 0 25px 25px 0;
2095
2145
  }
2096
2146
 
@@ -2125,7 +2175,7 @@
2125
2175
  margin-right: 0;
2126
2176
  padding: 0 2rem;
2127
2177
  font-size: 2rem;
2128
- transition: 0.6s;
2178
+ transition: var(--transition);
2129
2179
  color: var(--white);
2130
2180
  cursor: pointer;
2131
2181
  }
@@ -2190,12 +2240,12 @@
2190
2240
  }
2191
2241
  ._1hv_V::-webkit-scrollbar-track {
2192
2242
  background: rgba(0, 0, 0, 0.1);
2193
- border-radius: 8px;
2243
+ border-radius: var(--radius);
2194
2244
  }
2195
2245
  ._1hv_V::-webkit-scrollbar-thumb {
2196
2246
  background: rgba(0, 0, 0, 0.25);
2197
2247
  opacity: 0.7;
2198
- border-radius: 8px;
2248
+ border-radius: var(--radius);
2199
2249
  }
2200
2250
  ._1hv_V::-webkit-scrollbar-thumb:hover {
2201
2251
  background: rgba(0, 0, 0, 0.45);
@@ -2211,8 +2261,8 @@
2211
2261
  margin-bottom: 8px;
2212
2262
  height: 40px;
2213
2263
  cursor: pointer;
2214
- transition: 0.6s;
2215
- border-radius: 8px;
2264
+ transition: var(--transition);
2265
+ border-radius: var(--radius);
2216
2266
  white-space: nowrap;
2217
2267
  }
2218
2268
  ._1iy27:hover,
@@ -2225,7 +2275,8 @@
2225
2275
  }
2226
2276
  ._1iy27._BPuzP,
2227
2277
  ._1ZHFn._BPuzP {
2228
- background-color: rgba(0, 0, 0, 0.15);
2278
+ background-color: var(--primary-soft);
2279
+ color: var(--primary-color);
2229
2280
  }
2230
2281
  ._1iy27._2BDmo,
2231
2282
  ._1ZHFn._2BDmo {
@@ -2358,9 +2409,9 @@
2358
2409
  ._bHyVu ._XOUj6 {
2359
2410
  position: relative;
2360
2411
  height: 30px;
2361
- border-radius: 8px;
2412
+ border-radius: var(--radius);
2362
2413
  background-color: var(--thirty-color);
2363
- transition: 0.7s;
2414
+ transition: var(--transition);
2364
2415
  }
2365
2416
 
2366
2417
  ._bHyVu ._XOUj6:hover {
@@ -2372,7 +2423,7 @@
2372
2423
  display: block;
2373
2424
  width: 100%;
2374
2425
  height: 30px;
2375
- border-radius: 8px;
2426
+ border-radius: var(--radius);
2376
2427
  margin: 0;
2377
2428
  }
2378
2429
 
@@ -2417,9 +2468,9 @@
2417
2468
  ._2CYNt > p {
2418
2469
  margin: 0;
2419
2470
  margin-top: 1rem;
2420
- color: #ffffff;
2471
+ color: var(--white);
2421
2472
  background-color: var(--primary-color);
2422
- border-radius: 8px;
2473
+ border-radius: var(--radius);
2423
2474
  padding: 0.8rem;
2424
2475
  font-size: 16px;
2425
2476
  }
@@ -2478,7 +2529,7 @@
2478
2529
  ._2mqrQ > li {
2479
2530
  cursor: pointer;
2480
2531
  display: flex;
2481
- border-radius: 8px;
2532
+ border-radius: var(--radius);
2482
2533
  margin-left: 5px;
2483
2534
  margin-right: 5px;
2484
2535
  width: 40px;
@@ -2486,7 +2537,7 @@
2486
2537
  background-color: var(--thirty-color);
2487
2538
  float: left;
2488
2539
  list-style: none;
2489
- transition: 0.3s;
2540
+ transition: var(--transition);
2490
2541
  }
2491
2542
 
2492
2543
  ._2mqrQ > li:hover {
@@ -2547,10 +2598,10 @@
2547
2598
  display: flex;
2548
2599
  width: 150px;
2549
2600
  height: 200px;
2550
- border: dashed 2px var(--gray);
2551
- border-radius: 8px;
2601
+ border: dashed 2px var(--border);
2602
+ border-radius: var(--radius);
2552
2603
  cursor: pointer;
2553
- transition: 0.3s;
2604
+ transition: var(--transition);
2554
2605
  overflow: hidden;
2555
2606
  }
2556
2607
  ._2tyK_ section:hover {
@@ -2598,14 +2649,14 @@
2598
2649
  width: 100%;
2599
2650
  min-height: 200px;
2600
2651
  border: dashed 2px var(--primary-color);
2601
- border-radius: 8px;
2652
+ border-radius: var(--radius);
2602
2653
  cursor: pointer;
2603
- transition: 0.3s;
2654
+ transition: var(--transition);
2604
2655
  overflow: hidden;
2605
2656
  }
2606
2657
 
2607
2658
  ._HCj8R:hover {
2608
- border: dashed 2px var(--gray);
2659
+ border: dashed 2px var(--border);
2609
2660
  }
2610
2661
 
2611
2662
  ._HCj8R:active {
@@ -2638,7 +2689,7 @@
2638
2689
  padding: 1rem;
2639
2690
  background-color: var(--gray);
2640
2691
  margin: 0.5rem;
2641
- border-radius: 8px;
2692
+ border-radius: var(--radius);
2642
2693
  }
2643
2694
 
2644
2695
  ._34DnJ {
@@ -2649,7 +2700,7 @@
2649
2700
  padding: 0.4rem;
2650
2701
  cursor: pointer;
2651
2702
  font-size: 18px;
2652
- transition: 0.3s;
2703
+ transition: var(--transition);
2653
2704
  }
2654
2705
 
2655
2706
  ._34DnJ:hover {
@@ -2662,7 +2713,7 @@
2662
2713
 
2663
2714
  ._2qV1W {
2664
2715
  display: inline-block;
2665
- border-radius: 8px;
2716
+ border-radius: var(--radius);
2666
2717
  background-color: var(--primary-color);
2667
2718
  font-size: 12px;
2668
2719
  font-weight: normal;
@@ -2683,7 +2734,8 @@
2683
2734
  display: flex;
2684
2735
  padding: 1rem;
2685
2736
  background-color: #ffffff;
2686
- border-radius: 8px;
2737
+ border-radius: var(--radius);
2738
+ box-shadow: var(--shadow-md);
2687
2739
  margin-top: 1rem;
2688
2740
  z-index: 120;
2689
2741
  }
@@ -2698,7 +2750,7 @@
2698
2750
  width: 100%;
2699
2751
  min-height: 60px;
2700
2752
  padding: 0 1rem;
2701
- border-radius: 8px;
2753
+ border-radius: var(--radius);
2702
2754
  }
2703
2755
 
2704
2756
  ._2fV2F > span {
@@ -2742,6 +2794,11 @@
2742
2794
  padding: 2px;
2743
2795
  padding-left: 8px;
2744
2796
  }
2797
+
2798
+ ._1bGM- button {
2799
+ padding: 0 0 0 8px;
2800
+ font-size: 14px;
2801
+ }
2745
2802
  /* start ListingHorizontal */
2746
2803
 
2747
2804
  ._64Nqe {
@@ -2810,7 +2867,7 @@
2810
2867
  top: 20px;
2811
2868
  left: 70px;
2812
2869
  right: 70px;
2813
- border-bottom: dashed 1px black;
2870
+ border-bottom: dashed 1px var(--border);
2814
2871
  z-index: 3;
2815
2872
  }
2816
2873
 
@@ -2884,8 +2941,13 @@
2884
2941
 
2885
2942
  ._2kN79 {
2886
2943
  display: inline-flex;
2944
+ align-items: center;
2945
+ height: 38px;
2887
2946
  cursor: pointer;
2888
- padding: 1rem;
2947
+ padding: 0 12px;
2948
+ border: solid 1px var(--gray);
2949
+ border-radius: 8px;
2950
+ background-color: #fff;
2889
2951
  transition: 0.3s;
2890
2952
  -webkit-touch-callout: none;
2891
2953
  -webkit-user-select: none;
@@ -2915,14 +2977,15 @@
2915
2977
  ._2Y_fS {
2916
2978
  display: none;
2917
2979
  position: absolute;
2918
- background-color: red;
2919
2980
  z-index: 100;
2920
- padding: 1rem;
2921
- border-radius: 8px;
2922
- background-color: var(--gray);
2981
+ margin-top: 6px;
2982
+ padding: 6px;
2983
+ border-radius: var(--radius);
2984
+ background-color: var(--surface);
2985
+ border: solid 1px var(--border);
2923
2986
  color: var(--black);
2924
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
2925
- transition: 0.3s;
2987
+ box-shadow: var(--shadow-md);
2988
+ transition: var(--transition);
2926
2989
  }
2927
2990
 
2928
2991
  ._2Y_fS._3nBzR {
@@ -2930,8 +2993,11 @@
2930
2993
  }
2931
2994
 
2932
2995
  ._2Y_fS > span {
2933
- margin: 0.4rem;
2934
- transition: 0.3s;
2996
+ display: block;
2997
+ padding: 8px 12px;
2998
+ border-radius: var(--radius-sm);
2999
+ transition: var(--transition);
3000
+ white-space: nowrap;
2935
3001
  -webkit-touch-callout: none;
2936
3002
  -webkit-user-select: none;
2937
3003
  -moz-user-select: none;
@@ -2940,10 +3006,8 @@
2940
3006
  }
2941
3007
 
2942
3008
  ._2Y_fS > span:hover {
2943
- opacity: 0.8;
2944
- }
2945
- ._2Y_fS > span:active {
2946
- opacity: 0.6;
3009
+ background-color: var(--primary-soft);
3010
+ color: var(--primary-color);
2947
3011
  }
2948
3012
 
2949
3013
  ._2yA72 {
@@ -2975,7 +3039,7 @@
2975
3039
  color: #262626;
2976
3040
  margin: 0;
2977
3041
  letter-spacing: 3px;
2978
- padding-left: 6p;
3042
+ padding-left: 6px;
2979
3043
  }
2980
3044
 
2981
3045
  ._1aeC7 {
@@ -3045,7 +3109,7 @@
3045
3109
  display: inline-flex;
3046
3110
  background-color: var(--gray);
3047
3111
  border-radius: 20px;
3048
- height: 40px;
3112
+ height: 38px;
3049
3113
  -webkit-touch-callout: none;
3050
3114
  -webkit-user-select: none;
3051
3115
  -moz-user-select: none;
@@ -3056,7 +3120,7 @@
3056
3120
  ._zCJtD > div {
3057
3121
  display: inline-flex;
3058
3122
  border-radius: 20px;
3059
- height: 40px;
3123
+ height: 38px;
3060
3124
  transition: 0.3s;
3061
3125
  cursor: pointer;
3062
3126
  }
@@ -3092,9 +3156,9 @@
3092
3156
  ._2xv6h {
3093
3157
  margin: auto;
3094
3158
  background-color: white;
3095
- border-radius: 8px;
3159
+ border-radius: var(--radius-lg);
3096
3160
  overflow: hidden;
3097
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
3161
+ box-shadow: var(--shadow-md);
3098
3162
  }
3099
3163
 
3100
3164
  ._29LEv {
@@ -3109,7 +3173,7 @@
3109
3173
  ._3rhMU,
3110
3174
  ._3tkpF {
3111
3175
  display: flex;
3112
- color: #9b9b9b;
3176
+ color: var(--muted);
3113
3177
  padding: 0.6rem;
3114
3178
  }
3115
3179
  ._3rhMU > span,
@@ -3153,10 +3217,10 @@
3153
3217
 
3154
3218
  ._ooroJ {
3155
3219
  padding: 0.6rem;
3156
- color: #9b9b9b;
3220
+ color: var(--muted);
3157
3221
  font-size: 20px;
3158
3222
  cursor: pointer;
3159
- transition: 0.3s;
3223
+ transition: var(--transition);
3160
3224
  }
3161
3225
 
3162
3226
  ._2M-ho {
@@ -3171,7 +3235,7 @@
3171
3235
  display: inline-block;
3172
3236
  width: 36px;
3173
3237
  height: 36px;
3174
- background-color: #eeeeee;
3238
+ background-color: var(--gray-light);
3175
3239
  color: var(--secondary-color);
3176
3240
  text-align: center;
3177
3241
  border-radius: 50%;
@@ -3179,15 +3243,16 @@
3179
3243
  cursor: pointer;
3180
3244
  margin: 4px;
3181
3245
  font-size: 13px;
3246
+ transition: var(--transition);
3182
3247
  }
3183
3248
 
3184
3249
  ._2M-ho > tbody > tr > td > span._2QVVt {
3185
3250
  color: white;
3186
- background-color: var(--secondary-color);
3251
+ background-color: var(--primary-color);
3187
3252
  }
3188
3253
 
3189
3254
  ._2M-ho > tbody > tr > td > span._YWe6I {
3190
- color: #eeeeee;
3255
+ color: var(--muted);
3191
3256
  background-color: transparent;
3192
3257
  cursor: not-allowed;
3193
3258
  }
@@ -3214,19 +3279,19 @@
3214
3279
 
3215
3280
  ._3uQg0 {
3216
3281
  width: 100%;
3217
- border: solid 1px var(--secondary-color);
3282
+ border: solid 1px var(--border);
3218
3283
  color: var(--secondary-color);
3219
- border-radius: 8px;
3284
+ border-radius: var(--radius);
3220
3285
  padding: 0.7rem 1rem;
3221
3286
  font-weight: bold;
3222
3287
  margin-bottom: 0.4rem;
3223
3288
  text-align: center;
3224
3289
  cursor: pointer;
3225
- transition: 0.3s;
3290
+ transition: var(--transition);
3226
3291
  }
3227
3292
  ._3uQg0._YWe6I {
3228
- border: solid 1px #eeeeee;
3229
- color: #eeeeee;
3293
+ border: solid 1px var(--border);
3294
+ color: var(--muted);
3230
3295
  cursor: not-allowed;
3231
3296
  }
3232
3297