@justfixnyc/component-library 0.60.1 → 0.61.2

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.
@@ -130,7 +130,7 @@
130
130
  background-color: #5188ff;
131
131
  }
132
132
  .jfcl-alert.jfcl-type-error::before {
133
- background-color: #ff813a;
133
+ background-color: #ba4300;
134
134
  }
135
135
  .jfcl-alert.jfcl-type-success::before {
136
136
  background-color: #1aa551;
@@ -165,6 +165,204 @@
165
165
  transform: rotate(360deg);
166
166
  }
167
167
  }
168
+ .jfcl-accordion {
169
+ padding: 0;
170
+ }
171
+ .jfcl-accordion .jfcl-accordion__summary {
172
+ display: flex;
173
+ align-items: center;
174
+ list-style: none;
175
+ cursor: pointer;
176
+ padding: 1.5rem 2rem;
177
+ }
178
+ @media (hover: hover) and (pointer: fine) {
179
+ .jfcl-accordion .jfcl-accordion__summary:hover {
180
+ background-color: #efe9dc;
181
+ }
182
+ }
183
+ .jfcl-accordion .jfcl-accordion__summary > svg {
184
+ align-self: flex-start;
185
+ }
186
+ .jfcl-accordion .jfcl-accordion__summary > svg:only-of-type {
187
+ align-self: unset;
188
+ }
189
+ .jfcl-accordion .jfcl-accordion__summary .jfcl-accordion__chevron {
190
+ margin-left: auto;
191
+ padding: 0.25rem;
192
+ }
193
+ .jfcl-accordion .jfcl-accordion__summary::-webkit-details-marker {
194
+ display: none;
195
+ }
196
+ .jfcl-accordion[open] > .jfcl-accordion__summary .jfcl-accordion__chevron {
197
+ transform: scale(-1, -1);
198
+ }
199
+ .jfcl-accordion .jfcl-accordion__content {
200
+ padding: 0.75rem 2rem 2rem;
201
+ }
202
+
203
+ @media (max-width: 767px) {
204
+ .jfcl-accordion .jfcl-accordion__summary {
205
+ padding: 1rem 1.5rem;
206
+ }
207
+ .jfcl-accordion .jfcl-accordion__content {
208
+ padding: 1rem 1.5rem 1.5rem;
209
+ }
210
+ }
211
+ @keyframes spin {
212
+ from {
213
+ transform: rotate(0deg);
214
+ }
215
+ to {
216
+ transform: rotate(360deg);
217
+ }
218
+ }
219
+ .jfcl-button {
220
+ font-family: "Degular", Arial, Helvetica, sans-serif;
221
+ font-style: normal;
222
+ font-weight: 500;
223
+ font-size: 1.125rem;
224
+ line-height: 120%;
225
+ letter-spacing: 0.54px;
226
+ cursor: pointer;
227
+ user-select: none;
228
+ height: fit-content;
229
+ display: flex;
230
+ align-items: center;
231
+ justify-content: center;
232
+ flex: none;
233
+ white-space: normal;
234
+ word-wrap: break-word;
235
+ vertical-align: middle;
236
+ width: fit-content;
237
+ padding: 22px 28px;
238
+ border: 1px solid;
239
+ border-radius: 100px;
240
+ transition: all 0.1s linear;
241
+ transform: translateX(0rem);
242
+ }
243
+ .jfcl-button:focus-visible {
244
+ outline-style: solid;
245
+ outline-offset: 2px;
246
+ outline-width: 2px;
247
+ outline-color: #5188ff;
248
+ }
249
+ .jfcl-button:hover:not(:disabled) {
250
+ box-shadow: 4px 5px 0px 0px #c5ccd1;
251
+ }
252
+ .jfcl-button:active:not(:disabled) {
253
+ box-shadow: 0px -4px 0px 0px #c5ccd1;
254
+ }
255
+ .jfcl-button .jfcl-button__label {
256
+ display: flex;
257
+ }
258
+ .jfcl-button .jfcl-button__icon {
259
+ margin-right: 10px;
260
+ width: 1em;
261
+ height: 1em;
262
+ }
263
+ .jfcl-button .jfcl-button__icon.jfcl-button__icon_right {
264
+ margin-right: 0;
265
+ margin-left: 10px;
266
+ order: 2;
267
+ }
268
+ .jfcl-button.jfcl-btn-icon-only {
269
+ width: 4.125rem;
270
+ height: 4.125rem;
271
+ }
272
+ .jfcl-button.jfcl-btn-icon-only .jfcl-button__icon {
273
+ margin-right: 0;
274
+ }
275
+ .jfcl-button.jfcl-size-small {
276
+ padding: 12px 28px;
277
+ }
278
+ .jfcl-button.jfcl-size-small.jfcl-btn-icon-only {
279
+ padding: 0;
280
+ width: 2.875rem;
281
+ height: 2.875rem;
282
+ }
283
+ .jfcl-button.jfcl-variant-primary {
284
+ color: #faf8f4;
285
+ background-color: #242323;
286
+ border-color: transparent;
287
+ }
288
+ .jfcl-button.jfcl-variant-primary:disabled {
289
+ cursor: inherit;
290
+ color: #242323;
291
+ background-color: #9a9898;
292
+ }
293
+ .jfcl-button.jfcl-variant-primary.jfcl-is-loading {
294
+ background-color: #676565;
295
+ }
296
+ .jfcl-button.jfcl-variant-primary.jfcl-is-loading .jfcl-button__icon {
297
+ display: block;
298
+ animation: spin 500ms infinite linear;
299
+ position: relative;
300
+ border: 2px solid #ffffff;
301
+ border-radius: 1em;
302
+ border-right-color: transparent;
303
+ border-top-color: transparent;
304
+ }
305
+ .jfcl-button.jfcl-variant-secondary {
306
+ color: #242323;
307
+ background-color: #faf8f4;
308
+ border-color: #242323;
309
+ }
310
+ .jfcl-button.jfcl-variant-secondary:disabled {
311
+ cursor: inherit;
312
+ background-color: #9a9898;
313
+ }
314
+ .jfcl-button.jfcl-variant-secondary.jfcl-is-loading .jfcl-button__icon {
315
+ display: block;
316
+ animation: spin 500ms infinite linear;
317
+ position: relative;
318
+ border: 2px solid #242323;
319
+ border-radius: 1em;
320
+ border-right-color: transparent;
321
+ border-top-color: transparent;
322
+ }
323
+ .jfcl-button.jfcl-variant-tertiary {
324
+ color: #242323;
325
+ background: none;
326
+ border: none;
327
+ box-shadow: none;
328
+ }
329
+ .jfcl-button.jfcl-variant-tertiary:disabled {
330
+ cursor: inherit;
331
+ color: #676565;
332
+ }
333
+ .jfcl-button.jfcl-variant-tertiary:disabled .jfcl-button__text {
334
+ border-bottom: none;
335
+ }
336
+ .jfcl-button.jfcl-variant-tertiary:hover:not(:disabled) {
337
+ background-color: #efe9dc;
338
+ box-shadow: none;
339
+ }
340
+ .jfcl-button.jfcl-variant-tertiary:active:not(:disabled) {
341
+ box-shadow: none;
342
+ }
343
+ .jfcl-button.jfcl-variant-tertiary.jfcl-is-loading {
344
+ background-color: #efe9dc;
345
+ }
346
+ .jfcl-button.jfcl-variant-tertiary.jfcl-is-loading .jfcl-button__icon {
347
+ display: block;
348
+ animation: spin 500ms infinite linear;
349
+ position: relative;
350
+ border: 2px solid #242323;
351
+ border-radius: 1em;
352
+ border-right-color: transparent;
353
+ border-top-color: transparent;
354
+ }
355
+ .jfcl-button.jfcl-variant-tertiary:active(:disabled) {
356
+ background-color: rgba(239, 233, 220, 0.8);
357
+ }
358
+ @keyframes spin {
359
+ from {
360
+ transform: rotate(0deg);
361
+ }
362
+ to {
363
+ transform: rotate(360deg);
364
+ }
365
+ }
168
366
  .jfcl-button {
169
367
  font-family: "Degular", Arial, Helvetica, sans-serif;
170
368
  font-style: normal;
@@ -304,6 +502,75 @@
304
502
  .jfcl-button.jfcl-variant-tertiary:active(:disabled) {
305
503
  background-color: rgba(239, 233, 220, 0.8);
306
504
  }
505
+
506
+ .jfcl-button-styled-link {
507
+ text-decoration: none;
508
+ }
509
+ @keyframes spin {
510
+ from {
511
+ transform: rotate(0deg);
512
+ }
513
+ to {
514
+ transform: rotate(360deg);
515
+ }
516
+ }
517
+ .jfcl-callout-box {
518
+ display: flex;
519
+ flex-direction: column;
520
+ gap: 0.5rem;
521
+ margin: 1.5rem 0 0;
522
+ padding: 2rem;
523
+ border-radius: 4px;
524
+ background-color: #efe9dc;
525
+ }
526
+ .jfcl-callout-box .jfcl-callout-box__header {
527
+ font-family: "Degular", Arial, Helvetica, sans-serif;
528
+ font-style: normal;
529
+ font-weight: 500;
530
+ font-size: 1.5rem;
531
+ line-height: 120%;
532
+ letter-spacing: 0.72px;
533
+ font-weight: 600;
534
+ margin: 0;
535
+ }
536
+ .jfcl-callout-box .jfcl-callout-box__content {
537
+ font-family: "Degular", Arial, Helvetica, sans-serif;
538
+ font-style: normal;
539
+ font-weight: 500;
540
+ font-size: 1.5rem;
541
+ line-height: 120%;
542
+ letter-spacing: 0.72px;
543
+ }
544
+ .jfcl-callout-box .jfcl-callout-box__content p {
545
+ margin: 0 0 1.5rem;
546
+ }
547
+ .jfcl-callout-box .jfcl-callout-box__content p:last-child {
548
+ margin-bottom: 0;
549
+ }
550
+ .jfcl-callout-box .jfcl-callout-box__action {
551
+ font-family: "Degular", Arial, Helvetica, sans-serif;
552
+ font-style: normal;
553
+ font-weight: 500;
554
+ font-size: 1.5rem;
555
+ line-height: 120%;
556
+ letter-spacing: 0.72px;
557
+ }
558
+
559
+ @media (max-width: 767px) {
560
+ .jfcl-callout-box {
561
+ padding: 1.5rem;
562
+ }
563
+ .jfcl-callout-box .jfcl-callout-box__header,
564
+ .jfcl-callout-box .jfcl-callout-box__content,
565
+ .jfcl-callout-box .jfcl-callout-box__action {
566
+ font-family: "Degular", Arial, Helvetica, sans-serif;
567
+ font-size: 1.125rem;
568
+ font-style: normal;
569
+ font-weight: 500;
570
+ line-height: 120%;
571
+ letter-spacing: 0.54px;
572
+ }
573
+ }
307
574
  @keyframes spin {
308
575
  from {
309
576
  transform: rotate(0deg);
@@ -349,7 +616,7 @@
349
616
  color: #242323;
350
617
  display: flex;
351
618
  align-items: center;
352
- color: #ff813a;
619
+ color: #ba4300;
353
620
  margin-bottom: 0.75rem;
354
621
  }
355
622
  .jfcl-input-header__invalid_text .jfcl-input-header__invalid_icon {
@@ -410,7 +677,7 @@
410
677
  background: #faf8f4;
411
678
  }
412
679
  .jfcl-checkbox .jfcl-checkbox__checkmark.jfcl-checkbox__checkmark--is-invalid {
413
- border-color: #ff813a;
680
+ border-color: #ba4300;
414
681
  border-width: 1.5px;
415
682
  }
416
683
  .jfcl-checkbox .jfcl-checkbox__checkmark .jfcl-checkbox__check_icon {
@@ -457,7 +724,7 @@
457
724
  border-radius: 4px;
458
725
  }
459
726
  .jfcl-dropdown.jfcl-dropdown--is-invalid {
460
- --border-color: #ff813a;
727
+ --border-color: #ba4300;
461
728
  }
462
729
  .jfcl-dropdown.jfcl-dropdown--is-disabled {
463
730
  --border-color: #9a9898;
@@ -520,6 +787,205 @@
520
787
  margin: 0;
521
788
  border: none;
522
789
  }
790
+ .jfcl-geosearch-dropdown {
791
+ width: 100%;
792
+ }
793
+ @keyframes spin {
794
+ from {
795
+ transform: rotate(0deg);
796
+ }
797
+ to {
798
+ transform: rotate(360deg);
799
+ }
800
+ }
801
+ .jfcl-heading {
802
+ margin: 0;
803
+ }
804
+ .jfcl-heading.jfcl-heading--h1 {
805
+ font-family: "Degular Display", Arial, Helvetica, sans-serif;
806
+ font-style: normal;
807
+ font-weight: 400;
808
+ font-size: 6rem;
809
+ line-height: 90%;
810
+ letter-spacing: 2.88px;
811
+ }
812
+ .jfcl-heading.jfcl-heading--h2 {
813
+ font-family: "Degular Display", Arial, Helvetica, sans-serif;
814
+ font-style: normal;
815
+ font-weight: 400;
816
+ font-size: 4rem;
817
+ line-height: 100%;
818
+ letter-spacing: 1.92px;
819
+ }
820
+ .jfcl-heading.jfcl-heading--h3 {
821
+ font-family: "Degular", Arial, Helvetica, sans-serif;
822
+ font-style: normal;
823
+ font-weight: 600;
824
+ font-size: 2.25rem;
825
+ line-height: 100%;
826
+ letter-spacing: 0;
827
+ }
828
+ .jfcl-heading.jfcl-heading--h4 {
829
+ font-family: "Degular", Arial, Helvetica, sans-serif;
830
+ font-style: normal;
831
+ font-weight: 500;
832
+ font-size: 1.5rem;
833
+ line-height: 120%;
834
+ letter-spacing: 0.72px;
835
+ font-weight: 600;
836
+ }
837
+ .jfcl-heading.jfcl-heading--h5 {
838
+ font-family: "Degular", Arial, Helvetica, sans-serif;
839
+ font-style: normal;
840
+ font-weight: 500;
841
+ font-size: 1.125rem;
842
+ line-height: 120%;
843
+ letter-spacing: 0.54px;
844
+ font-weight: 600;
845
+ }
846
+ .jfcl-heading.jfcl-heading--h6 {
847
+ font-family: "Degular", Arial, Helvetica, sans-serif;
848
+ font-style: normal;
849
+ font-weight: 600;
850
+ font-size: 0.875rem;
851
+ line-height: 130%;
852
+ letter-spacing: 0.42px;
853
+ }
854
+
855
+ @media (max-width: 767px) {
856
+ .jfcl-heading.jfcl-heading--h1 {
857
+ font-family: "Degular", Arial, Helvetica, sans-serif;
858
+ font-size: 2.25rem;
859
+ font-style: normal;
860
+ font-weight: 600;
861
+ line-height: 100%;
862
+ letter-spacing: 0;
863
+ }
864
+ .jfcl-heading.jfcl-heading--h2 {
865
+ font-family: "Degular", Arial, Helvetica, sans-serif;
866
+ font-size: 1.125rem;
867
+ font-style: normal;
868
+ font-weight: 600;
869
+ line-height: 100%;
870
+ letter-spacing: 0.36px;
871
+ }
872
+ .jfcl-heading.jfcl-heading--h3 {
873
+ font-family: "Degular", Arial, Helvetica, sans-serif;
874
+ font-size: 1.5rem;
875
+ font-style: normal;
876
+ font-weight: 600;
877
+ line-height: 120%;
878
+ letter-spacing: 0;
879
+ }
880
+ .jfcl-heading.jfcl-heading--h4, .jfcl-heading.jfcl-heading--h5 {
881
+ font-family: "Degular", Arial, Helvetica, sans-serif;
882
+ font-size: 1.125rem;
883
+ font-style: normal;
884
+ font-weight: 500;
885
+ line-height: 120%;
886
+ letter-spacing: 0.54px;
887
+ }
888
+ .jfcl-heading.jfcl-heading--h6 {
889
+ font-family: "Degular", Arial, Helvetica, sans-serif;
890
+ font-size: 0.875rem;
891
+ font-style: normal;
892
+ font-weight: 500;
893
+ line-height: 130%;
894
+ letter-spacing: 0.42px;
895
+ }
896
+ }
897
+ @keyframes spin {
898
+ from {
899
+ transform: rotate(0deg);
900
+ }
901
+ to {
902
+ transform: rotate(360deg);
903
+ }
904
+ }
905
+ .jfcl-info-box {
906
+ display: flex;
907
+ gap: 0.5rem;
908
+ padding: 0.75rem;
909
+ border-style: solid;
910
+ border-width: 1px;
911
+ border-radius: 4px;
912
+ color: #242323;
913
+ }
914
+ .jfcl-info-box.jfcl-info-box--white {
915
+ background-color: #ffffff;
916
+ border-color: #c5ccd1;
917
+ }
918
+ .jfcl-info-box.jfcl-info-box--white .jfcl-info-box__content-container {
919
+ max-width: 80%;
920
+ }
921
+ .jfcl-info-box.jfcl-info-box--blue {
922
+ background-color: #edf3ff;
923
+ border-color: #9fbdff;
924
+ }
925
+ .jfcl-info-box.jfcl-info-box--orange {
926
+ background-color: rgba(255, 129, 58, 0.1);
927
+ border-width: 2px;
928
+ border-color: #ff813a;
929
+ }
930
+ .jfcl-info-box.jfcl-info-box--orange .jfcl-info-box__icon-container svg {
931
+ color: #ff813a;
932
+ }
933
+ .jfcl-info-box .jfcl-info-box__content-container {
934
+ font-family: "Degular", Arial, Helvetica, sans-serif;
935
+ font-style: normal;
936
+ font-weight: 500;
937
+ font-size: 1.125rem;
938
+ line-height: 120%;
939
+ letter-spacing: 0.54px;
940
+ flex: 1;
941
+ }
942
+ .jfcl-info-box .jfcl-info-box__content-container .bold {
943
+ font-weight: 600;
944
+ }
945
+
946
+ @media (max-width: 767px) {
947
+ .jfcl-info-box .jfcl-info-box__content-container {
948
+ font-family: "Degular", Arial, Helvetica, sans-serif;
949
+ font-size: 1.125rem;
950
+ font-style: normal;
951
+ font-weight: 500;
952
+ line-height: 120%;
953
+ letter-spacing: 0.54px;
954
+ }
955
+ .jfcl-info-box .jfcl-info-box__content-container .jfcl-link {
956
+ font-family: "Degular", Arial, Helvetica, sans-serif;
957
+ font-size: 1.125rem;
958
+ font-style: normal;
959
+ font-weight: 500;
960
+ line-height: 120%;
961
+ letter-spacing: 0.54px;
962
+ }
963
+ }
964
+ @keyframes spin {
965
+ from {
966
+ transform: rotate(0deg);
967
+ }
968
+ to {
969
+ transform: rotate(360deg);
970
+ }
971
+ }
972
+ .jfcl-link {
973
+ font-family: "Degular", Arial, Helvetica, sans-serif;
974
+ font-style: normal;
975
+ font-weight: 500;
976
+ font-size: 1.125rem;
977
+ line-height: 120%;
978
+ letter-spacing: 0.54px;
979
+ color: #242323;
980
+ text-underline-position: from-font;
981
+ }
982
+ .jfcl-link:hover {
983
+ color: #676565;
984
+ }
985
+ .jfcl-link .jfcl-link__icon {
986
+ margin-left: 0.125em;
987
+ height: 0.85em;
988
+ }
523
989
  @keyframes spin {
524
990
  from {
525
991
  transform: rotate(0deg);
@@ -545,6 +1011,176 @@
545
1011
  margin-left: 0.125em;
546
1012
  height: 0.85em;
547
1013
  }
1014
+
1015
+ .jfcl-link-styled-button {
1016
+ cursor: pointer;
1017
+ border: 0;
1018
+ padding: 0;
1019
+ background: none;
1020
+ text-align: left;
1021
+ }
1022
+ .jfcl-link-styled-button:focus-visible {
1023
+ outline-style: solid;
1024
+ outline-offset: 2px;
1025
+ outline-width: 2px;
1026
+ outline-color: #5188ff;
1027
+ }
1028
+ .jfcl-link-styled-button:disabled {
1029
+ cursor: inherit;
1030
+ color: #676565;
1031
+ }
1032
+ @keyframes spin {
1033
+ from {
1034
+ transform: rotate(0deg);
1035
+ }
1036
+ to {
1037
+ transform: rotate(360deg);
1038
+ }
1039
+ }
1040
+ .jfcl-notice {
1041
+ display: flex;
1042
+ gap: 1.8125rem;
1043
+ margin-bottom: 1.5rem;
1044
+ padding: 2rem 1.5rem;
1045
+ border-radius: 0.25rem;
1046
+ }
1047
+ .jfcl-notice.jfcl-notice--green {
1048
+ border: 1px solid #1aa551;
1049
+ background-color: #e6fff0;
1050
+ }
1051
+ .jfcl-notice.jfcl-notice--yellow {
1052
+ border: 1px solid #ffba33;
1053
+ background-color: #fff8e6;
1054
+ }
1055
+ .jfcl-notice.jfcl-notice--white {
1056
+ border: 1px solid #c5ccd1;
1057
+ background-color: #ffffff;
1058
+ }
1059
+ .jfcl-notice.jfcl-notice--off-white-100 {
1060
+ border: 1px solid #c5ccd1;
1061
+ background-color: #faf8f4;
1062
+ }
1063
+ .jfcl-notice.jfcl-notice--off-white-200 {
1064
+ border: 1px solid #c5ccd1;
1065
+ background-color: #efe9dc;
1066
+ }
1067
+ .jfcl-notice .jfcl-notice__header {
1068
+ font-family: "Degular", Arial, Helvetica, sans-serif;
1069
+ font-style: normal;
1070
+ font-weight: 600;
1071
+ font-size: 2.25rem;
1072
+ line-height: 100%;
1073
+ letter-spacing: 0;
1074
+ margin: 0 0 1.5rem;
1075
+ }
1076
+ .jfcl-notice .jfcl-notice__body {
1077
+ font-family: "Degular", Arial, Helvetica, sans-serif;
1078
+ font-style: normal;
1079
+ font-weight: 500;
1080
+ font-size: 1.5rem;
1081
+ line-height: 120%;
1082
+ letter-spacing: 0.72px;
1083
+ }
1084
+ .jfcl-notice .jfcl-notice__icon-container svg {
1085
+ height: 2.625rem;
1086
+ width: 3.375rem;
1087
+ }
1088
+
1089
+ @media (max-width: 767px) {
1090
+ .jfcl-notice .jfcl-notice__header {
1091
+ font-family: "Degular", Arial, Helvetica, sans-serif;
1092
+ font-size: 1.5rem;
1093
+ font-style: normal;
1094
+ font-weight: 600;
1095
+ line-height: 120%;
1096
+ letter-spacing: 0;
1097
+ }
1098
+ .jfcl-notice .jfcl-notice__body {
1099
+ font-family: "Degular", Arial, Helvetica, sans-serif;
1100
+ font-size: 1.125rem;
1101
+ font-style: normal;
1102
+ font-weight: 500;
1103
+ line-height: 120%;
1104
+ letter-spacing: 0.54px;
1105
+ }
1106
+ .jfcl-notice .jfcl-notice__icon-container {
1107
+ display: none;
1108
+ }
1109
+ }
1110
+ @keyframes spin {
1111
+ from {
1112
+ transform: rotate(0deg);
1113
+ }
1114
+ to {
1115
+ transform: rotate(360deg);
1116
+ }
1117
+ }
1118
+ .jfcl-pill {
1119
+ font-family: "Degular Text", Arial, Helvetica, sans-serif;
1120
+ font-style: normal;
1121
+ font-weight: 500;
1122
+ font-size: 1.125rem;
1123
+ line-height: 120%;
1124
+ letter-spacing: 0;
1125
+ display: inline-flex;
1126
+ align-items: center;
1127
+ justify-content: center;
1128
+ width: fit-content;
1129
+ border-radius: 1rem;
1130
+ box-sizing: border-box;
1131
+ line-height: 1;
1132
+ padding: 0.375rem 0.75rem;
1133
+ }
1134
+ .jfcl-pill.jfcl-pill--circle {
1135
+ font-family: "Degular Text", Arial, Helvetica, sans-serif;
1136
+ font-style: normal;
1137
+ font-weight: 500;
1138
+ font-size: 1.125rem;
1139
+ line-height: 120%;
1140
+ letter-spacing: 0;
1141
+ width: 1.5em;
1142
+ height: 1.5em;
1143
+ border: 1px solid #242323;
1144
+ border-radius: 999px;
1145
+ padding: 0 0 0.1em;
1146
+ font-weight: 600;
1147
+ }
1148
+ .jfcl-pill.jfcl-pill--none {
1149
+ background-color: transparent;
1150
+ color: #242323;
1151
+ }
1152
+ .jfcl-pill.jfcl-pill--black {
1153
+ background-color: #242323;
1154
+ color: #faf8f4;
1155
+ }
1156
+ .jfcl-pill.jfcl-pill--yellow {
1157
+ background-color: #ffba33;
1158
+ color: #242323;
1159
+ }
1160
+ .jfcl-pill.jfcl-pill--orange {
1161
+ background-color: #ff813a;
1162
+ color: #242323;
1163
+ }
1164
+ .jfcl-pill.jfcl-pill--grey {
1165
+ background-color: #c5ccd1;
1166
+ color: #242323;
1167
+ }
1168
+ .jfcl-pill.jfcl-pill--red {
1169
+ background-color: #ba4300;
1170
+ color: #faf8f4;
1171
+ }
1172
+ .jfcl-pill.jfcl-pill--blue {
1173
+ background-color: #c6d8ff;
1174
+ color: #242323;
1175
+ }
1176
+ .jfcl-pill.jfcl-pill--green {
1177
+ background-color: #1aa551;
1178
+ color: #faf8f4;
1179
+ }
1180
+ .jfcl-pill.jfcl-pill--pink {
1181
+ background-color: #ffa0c7;
1182
+ color: #242323;
1183
+ }
548
1184
  @keyframes spin {
549
1185
  from {
550
1186
  transform: rotate(0deg);
@@ -599,7 +1235,7 @@
599
1235
  display: none;
600
1236
  }
601
1237
  .jfcl-radio-button .jfcl-radio-button__checkmark.jfcl-radio-button__checkmark--is-invalid {
602
- border-color: #ff813a;
1238
+ border-color: #ba4300;
603
1239
  }
604
1240
  .jfcl-radio-button .jfcl-radio-button__input:hover + .jfcl-radio-button__label .jfcl-radio-button__checkmark:not(.jfcl-radio-button__checkmark--is-invalid) {
605
1241
  border-color: #676565;
@@ -657,11 +1293,6 @@
657
1293
  padding: 0.75rem;
658
1294
  cursor: pointer;
659
1295
  }
660
- .jfcl-select-button__label:active {
661
- border: 2px solid #242323;
662
- padding: 0.6875rem;
663
- background-color: #edf3ff;
664
- }
665
1296
  @media (hover: hover) and (pointer: fine) {
666
1297
  .jfcl-select-button__label:hover {
667
1298
  border: 2px solid #242323;
@@ -669,6 +1300,11 @@
669
1300
  background-color: #efe9dc;
670
1301
  }
671
1302
  }
1303
+ .jfcl-select-button__label:active {
1304
+ border: 2px solid #242323;
1305
+ padding: 0.6875rem;
1306
+ background-color: #edf3ff;
1307
+ }
672
1308
 
673
1309
  .jfcl-select-button__input:checked + .jfcl-select-button__label {
674
1310
  background-color: #c6d8ff;
@@ -761,6 +1397,6 @@
761
1397
  color: #676565;
762
1398
  }
763
1399
  .jfcl-text-input.jfcl-text-input--is-invalid .jfcl-text-input__input {
764
- border: 1.5px solid #ff813a;
1400
+ border: 1.5px solid #ba4300;
765
1401
  padding-left: 8.5px;
766
1402
  }