@justfixnyc/component-library 0.60.2 → 0.61.3

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,57 @@
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
+ }
168
219
  .jfcl-button {
169
220
  font-family: "Degular", Arial, Helvetica, sans-serif;
170
221
  font-style: normal;
@@ -312,6 +363,222 @@
312
363
  transform: rotate(360deg);
313
364
  }
314
365
  }
366
+ .jfcl-button {
367
+ font-family: "Degular", Arial, Helvetica, sans-serif;
368
+ font-style: normal;
369
+ font-weight: 500;
370
+ font-size: 1.125rem;
371
+ line-height: 120%;
372
+ letter-spacing: 0.54px;
373
+ cursor: pointer;
374
+ user-select: none;
375
+ height: fit-content;
376
+ display: flex;
377
+ align-items: center;
378
+ justify-content: center;
379
+ flex: none;
380
+ white-space: normal;
381
+ word-wrap: break-word;
382
+ vertical-align: middle;
383
+ width: fit-content;
384
+ padding: 22px 28px;
385
+ border: 1px solid;
386
+ border-radius: 100px;
387
+ transition: all 0.1s linear;
388
+ transform: translateX(0rem);
389
+ }
390
+ .jfcl-button:focus-visible {
391
+ outline-style: solid;
392
+ outline-offset: 2px;
393
+ outline-width: 2px;
394
+ outline-color: #5188ff;
395
+ }
396
+ .jfcl-button:hover:not(:disabled) {
397
+ box-shadow: 4px 5px 0px 0px #c5ccd1;
398
+ }
399
+ .jfcl-button:active:not(:disabled) {
400
+ box-shadow: 0px -4px 0px 0px #c5ccd1;
401
+ }
402
+ .jfcl-button .jfcl-button__label {
403
+ display: flex;
404
+ }
405
+ .jfcl-button .jfcl-button__icon {
406
+ margin-right: 10px;
407
+ width: 1em;
408
+ height: 1em;
409
+ }
410
+ .jfcl-button .jfcl-button__icon.jfcl-button__icon_right {
411
+ margin-right: 0;
412
+ margin-left: 10px;
413
+ order: 2;
414
+ }
415
+ .jfcl-button.jfcl-btn-icon-only {
416
+ width: 4.125rem;
417
+ height: 4.125rem;
418
+ }
419
+ .jfcl-button.jfcl-btn-icon-only .jfcl-button__icon {
420
+ margin-right: 0;
421
+ }
422
+ .jfcl-button.jfcl-size-small {
423
+ padding: 12px 28px;
424
+ }
425
+ .jfcl-button.jfcl-size-small.jfcl-btn-icon-only {
426
+ padding: 0;
427
+ width: 2.875rem;
428
+ height: 2.875rem;
429
+ }
430
+ .jfcl-button.jfcl-variant-primary {
431
+ color: #faf8f4;
432
+ background-color: #242323;
433
+ border-color: transparent;
434
+ }
435
+ .jfcl-button.jfcl-variant-primary:disabled {
436
+ cursor: inherit;
437
+ color: #242323;
438
+ background-color: #9a9898;
439
+ }
440
+ .jfcl-button.jfcl-variant-primary.jfcl-is-loading {
441
+ background-color: #676565;
442
+ }
443
+ .jfcl-button.jfcl-variant-primary.jfcl-is-loading .jfcl-button__icon {
444
+ display: block;
445
+ animation: spin 500ms infinite linear;
446
+ position: relative;
447
+ border: 2px solid #ffffff;
448
+ border-radius: 1em;
449
+ border-right-color: transparent;
450
+ border-top-color: transparent;
451
+ }
452
+ .jfcl-button.jfcl-variant-secondary {
453
+ color: #242323;
454
+ background-color: #faf8f4;
455
+ border-color: #242323;
456
+ }
457
+ .jfcl-button.jfcl-variant-secondary:disabled {
458
+ cursor: inherit;
459
+ background-color: #9a9898;
460
+ }
461
+ .jfcl-button.jfcl-variant-secondary.jfcl-is-loading .jfcl-button__icon {
462
+ display: block;
463
+ animation: spin 500ms infinite linear;
464
+ position: relative;
465
+ border: 2px solid #242323;
466
+ border-radius: 1em;
467
+ border-right-color: transparent;
468
+ border-top-color: transparent;
469
+ }
470
+ .jfcl-button.jfcl-variant-tertiary {
471
+ color: #242323;
472
+ background: none;
473
+ border: none;
474
+ box-shadow: none;
475
+ }
476
+ .jfcl-button.jfcl-variant-tertiary:disabled {
477
+ cursor: inherit;
478
+ color: #676565;
479
+ }
480
+ .jfcl-button.jfcl-variant-tertiary:disabled .jfcl-button__text {
481
+ border-bottom: none;
482
+ }
483
+ .jfcl-button.jfcl-variant-tertiary:hover:not(:disabled) {
484
+ background-color: #efe9dc;
485
+ box-shadow: none;
486
+ }
487
+ .jfcl-button.jfcl-variant-tertiary:active:not(:disabled) {
488
+ box-shadow: none;
489
+ }
490
+ .jfcl-button.jfcl-variant-tertiary.jfcl-is-loading {
491
+ background-color: #efe9dc;
492
+ }
493
+ .jfcl-button.jfcl-variant-tertiary.jfcl-is-loading .jfcl-button__icon {
494
+ display: block;
495
+ animation: spin 500ms infinite linear;
496
+ position: relative;
497
+ border: 2px solid #242323;
498
+ border-radius: 1em;
499
+ border-right-color: transparent;
500
+ border-top-color: transparent;
501
+ }
502
+ .jfcl-button.jfcl-variant-tertiary:active(:disabled) {
503
+ background-color: rgba(239, 233, 220, 0.8);
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
+ }
574
+ @keyframes spin {
575
+ from {
576
+ transform: rotate(0deg);
577
+ }
578
+ to {
579
+ transform: rotate(360deg);
580
+ }
581
+ }
315
582
  .jfcl-input-header__label {
316
583
  font-family: "Degular", Arial, Helvetica, sans-serif;
317
584
  font-style: normal;
@@ -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,180 @@
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
+ }
523
964
  @keyframes spin {
524
965
  from {
525
966
  transform: rotate(0deg);
@@ -553,6 +994,201 @@
553
994
  transform: rotate(360deg);
554
995
  }
555
996
  }
997
+ .jfcl-link {
998
+ font-family: "Degular", Arial, Helvetica, sans-serif;
999
+ font-style: normal;
1000
+ font-weight: 500;
1001
+ font-size: 1.125rem;
1002
+ line-height: 120%;
1003
+ letter-spacing: 0.54px;
1004
+ color: #242323;
1005
+ text-underline-position: from-font;
1006
+ }
1007
+ .jfcl-link:hover {
1008
+ color: #676565;
1009
+ }
1010
+ .jfcl-link .jfcl-link__icon {
1011
+ margin-left: 0.125em;
1012
+ height: 0.85em;
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
+ }
1184
+ @keyframes spin {
1185
+ from {
1186
+ transform: rotate(0deg);
1187
+ }
1188
+ to {
1189
+ transform: rotate(360deg);
1190
+ }
1191
+ }
556
1192
  .jfcl-radio-button {
557
1193
  margin-bottom: 1rem;
558
1194
  color: #242323;
@@ -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;
@@ -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
  }