forked from jshttp/accepts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactions - Serve
13496 lines (8704 loc) · 784 KB
/
Transactions - Serve
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
IFrom: <Saved by Blink>
Snapshot-Content-Location: https://secure.serve.com/accounts/2dc5786bb32f41618c14fa26887992d8/transactions
Subject: Transactions - Serve
Date: Wed, 13 Nov 2024 15:51:20 -0700
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--MBguEsIH9NdmdBo0DEdlQ4TekOARcuVdhthpQR0UMQ----"
------MultipartBoundary--MBguEsIH9NdmdBo0DEdlQ4TekOARcuVdhthpQR0UMQ----
Content-Type: text/html
Content-ID: <frame-5AA71AC1014F533764F745B5E254C2F2@mhtml.blink>
Content-Transfer-Encoding: binary
Content-Location: https://secure.serve.com/accounts/2dc5786bb32f41618c14fa26887992d8/transactions
<!DOCTYPE html><html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="cid:css-484a5e46-2589-454d-8788-1fba711fedb7@mhtml.blink" /><link rel="shortcut icon" href="https://secure.serve.com/manifest/serve/favicon.ico"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="theme-color" content="#000000"><link rel="apple-touch-icon" href="https://secure.serve.com/manifest/serve/logo192.png"><link rel="manifest" href="https://secure.serve.com/manifest/serve/manifest.json"><title>Transactions - Serve</title><link href="https://secure.serve.com/static/css/main.38824f82.css" rel="stylesheet"><meta name="description" content="Serve Secure Site" data-rh="true"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-rh="true"></head><body class="font-loaded has-side-nav"><div id="root"><div class="app-wrapper"><div class="screen-reader-title"><p role="alert" aria-live="assertive">Transactions - Serve</p></div><div class="bb-side-navigation"><a class="bb-side-navigation__skip-link sr-only skip-to-main enter-button" href="https://secure.serve.com/accounts/2dc5786bb32f41618c14fa26887992d8/transactions#main">Skip to Main Content</a><a data-testid="bb-side-navigation__link_toDashboard" class="bb-side-navigation__logo-link" href="https://secure.serve.com/dashboard"><img alt="Serve Logo Jackson Hewitt Tax Services" src="https://secure.serve.com/static/media/Logo.be6054843d727da75679e62318342b4e.svg" class="bb-side-navigation__logo bb-side-navigation__logo-desktop bb-side-navigation__logo--JacksonHewitt"><div><div><svg xmlns="http://www.w3.org/2000/svg" id="a" viewBox="0 0 320.1474 152.3025" class="injected-svg bb-side-navigation__logo bb-side-navigation__logo-tablet bb-side-navigation__logo--JacksonHewitt" data-src="/static/media/LogoSmall.c3d28d21078e5228dd6f8da5db9fc941.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" alt="Serve Logo Jackson Hewitt Tax Services"><title>Serve Logo Jackson Hewitt Tax Services</title><desc>Serve Logo Jackson Hewitt Tax Services</desc><path d="m243.6106,7.2609c0-.9986.3239-1.8264.9808-2.5012.6563-.6748,1.4841-1.0079,2.465-1.0079s1.7994.3331,2.4564,1.0079.99,1.5026.99,2.5012-.3331,1.8264-.99,2.5012-1.4755,1.0079-2.4564,1.0079-1.8086-.3331-2.465-1.0079c-.657-.6748-.9808-1.5026-.9808-2.5012Zm.8634,0c0,.7645.2434,1.4036.7203,1.9162.4769.5131,1.0976.7651,1.8621.7651.7651,0,1.3858-.252,1.8627-.7651.4769-.5125.7196-1.1517.7196-1.9162,0-.7651-.2427-1.4036-.7196-1.9168-.4769-.5125-1.0976-.7645-1.8627-.7645-.7645,0-1.3852.252-1.8621.7645-.4769.5131-.7203,1.1517-.7203,1.9168Zm3.3745,1.9162l-1.0982-1.6372h-.2249v1.6372h-.7737v-3.8329h1.4221c.8008,0,1.2414.3872,1.2414,1.0976,0,.5851-.3239.9538-.8278,1.0619l1.1424,1.6734h-.8813Zm-1.3231-3.1127v.7553h.6391c.3239,0,.4861-.126.4861-.3779,0-.2514-.1622-.3773-.4861-.3773h-.6391Z" style="fill:#002855; stroke-width:0px;"></path><path d="m131.7652,19.848c5.286,0,9.8171,3.4927,11.1592,7.8171h-22.3189c1.3426-4.3244,5.8732-7.8171,11.1597-7.8171Zm21.0603,15.9672c.1675-.9975.2516-2.0789.2516-3.1603,0-11.8091-9.3974-21.2896-21.312-21.2896-11.9151,0-21.3125,9.4806-21.3125,21.2897,0,11.8097,9.3974,21.2899,21.5641,21.2899,9.4814,0,17.6202-5.0725,20.4731-12.6405h-10.9916c-1.7624,2.661-5.2025,3.9917-9.4814,3.9917-6.0413,0-10.8241-4.2411-11.8311-9.4808h32.6398Z" style="fill:#002855; stroke-width:0px;"></path><path d="m155.3416,53.4461h9.2293v-22.9534c0-6.1539,4.1114-10.3123,9.9852-10.3123l9.5436-.0569-2.885-8.7583h-5.8197c-5.8732,0-8.8101,2.1622-10.8241,4.8234v-4.3244h-9.2293v41.5818Z" style="fill:#002855; stroke-width:0px;"></path><polygon points="175.0633 23.5687 186.7928 53.4461 195.8546 53.4461 214.2273 3.6467 204.3267 3.6467 191.3234 40.4723 184.9639 23.5686 175.0633 23.5687" style="fill:#2cd5c4; stroke-width:0px;"></polygon><path d="m228.7553,19.848c5.286,0,9.8171,3.4927,11.1592,7.8171h-22.3189c1.3426-4.3244,5.8732-7.8171,11.1597-7.8171Zm21.0603,15.9672c.1675-.9975.2516-2.0789.2516-3.1603,0-11.8091-9.3974-21.2896-21.312-21.2896s-21.3125,9.4806-21.3125,21.2897c0,11.8097,9.3974,21.2899,21.5641,21.2899,9.4814,0,17.6202-5.0725,20.4731-12.6405h-10.9916c-1.7624,2.661-5.2025,3.9917-9.4814,3.9917-6.0413,0-10.8241-4.2411-11.8311-9.4808h32.6398Z" style="fill:#002855; stroke-width:0px;"></path><path d="m108.0513,34.3983c-1.5186-2.3568-3.9243-3.73-6.4831-4.6053-2.5733-.8789-5.3843-1.3048-8.0384-1.6772-3.0209-.4196-5.8716-.7964-7.7308-1.4893-.9324-.3395-1.5802-.7435-1.9415-1.1423-.356-.4073-.5335-.7799-.548-1.5167.0203-1.1841.3529-2.0537,1.2754-2.8017.9324-.7459,2.7114-1.3984,5.7665-1.3963,2.8036-.003,4.8687.5439,6.1971,1.4183,1.1267.7541,1.8277,1.7036,2.1777,3.0896h1.6961s6.0666,0,6.0666,0h.5672s.0905,0,.0905,0h1.6153c-.6247-3.7296-2.4777-7.1304-5.4881-9.3573-3.1417-2.3333-7.4577-3.5497-12.8556-3.5488-5.4583-.0015-9.6698,1.3602-12.5517,3.7297-2.8871,2.3619-4.3077,5.7136-4.2944,9.1931-.0043,2.2716.5523,4.2167,1.5685,5.7789,1.5303,2.3565,3.9483,3.7267,6.5176,4.6017,2.5838.878,5.4034,1.3039,8.0572,1.6763,3.0203.4193,5.8522.797,7.6883,1.4942.921.3419,1.5562.7462,1.9147,1.151.3532.4121.5369.8058.5505,1.5691-.025,1.3753-.4438,2.3514-1.5596,3.202-1.1278.844-3.1889,1.5218-6.4859,1.5182-2.7903.0024-5.0752-.5701-6.6588-1.607-1.3224-.8782-2.2391-2.0375-2.7152-3.7383h-1.7102s-.1572,0-.1572,0h-1.541s-5.3659,0-5.3659,0h-1.6546c.6883,4.3137,2.7185,7.9647,5.974,10.3191,3.4397,2.4983,8.0782,3.6851,13.6952,3.6857,5.8479.0006,10.326-1.4011,13.386-3.9076,3.0665-2.5001,4.5459-6.0802,4.5305-9.8643.0043-2.2698-.5468-4.2122-1.555-5.7747Z" style="fill:#002855; stroke-width:0px;"></path><line x1="3.9318" y1="65.1812" x2="318.5915" y2="65.1812" style="fill:#002d5b; stroke:#002d5b; stroke-miterlimit:10; stroke-width:2px;"></line><polygon points="176.5443 132.7031 186.4767 132.7031 186.4767 135.2598 183.1368 135.2598 183.1368 145.6126 179.9025 145.6126 179.9025 135.2598 176.5443 135.2598 176.5443 132.7031" style="fill:#221f1f; stroke-width:0px;"></polygon><path d="m193.9334,132.7226l4.7481,12.8911h-3.4318l-.6409-2.0651h-4.7457l-.6409,2.0651h-3.4341l4.7848-12.8911h3.3606Zm-1.7342,3.0665c-.1654.657-.3469,1.3323-.5307,1.9916-.2733.9671-.7672,2.4831-1.0589,3.4502h3.2687l-1.6791-5.4417Z" style="fill:#221f1f; stroke-width:0px;"></path><polygon points="209.2571 132.7219 212.999 132.7219 208.7449 138.6185 213.7662 145.613 210.0794 145.613 206.774 140.7387 203.4318 145.613 199.7427 145.613 204.7273 138.6185 200.4364 132.7219 204.2541 132.7219 206.7349 136.6109 209.2571 132.7219" style="fill:#221f1f; stroke-width:0px;"></polygon><path d="m223.3946,141.7418c.3284.3653.6018.657,1.2427,1.0038.8568.4571,1.7343.6225,2.4831.6225,1.2772,0,2.3729-.6041,2.3729-1.4977,0-1.0245-1.2956-1.1876-2.2466-1.3162-.7121-.0919-1.4242-.1815-2.1156-.3285-.7879-.1654-3.4708-.7305-3.4708-3.5053,0-3.3239,2.9586-4.3093,5.1844-4.3093,2.977,0,4.5849,1.4426,5.699,2.4464l-2.3751,1.6975c-.402-.402-.7672-.7465-1.2794-1.0406-.4549-.255-1.2772-.565-2.0973-.565-1.2794,0-1.918.7304-1.918,1.3507,0,.9854,1.0957,1.1324,1.6424,1.2059,1.3714.1631,3.2136.5123,3.9464.7672,1.4769.5467,2.2258,1.6975,2.2258,3.1585,0,.9303-.3445,1.9525-1.0222,2.7381-1.1692,1.353-3.0298,1.7343-4.8376,1.7343-3.6339,0-5.0765-1.6792-5.8805-2.6095l2.4464-1.5528Z" style="fill:#221f1f; stroke-width:0px;"></path><polygon points="236.3622 132.7219 245.8949 132.7219 245.8949 135.2234 239.5757 135.2234 239.5757 137.5595 245.4745 137.5595 245.4745 140.0059 239.5757 140.0059 239.5757 143.0748 246.46 143.0748 246.46 145.613 236.3622 145.613 236.3622 132.7219" style="fill:#221f1f; stroke-width:0px;"></polygon><path d="m249.9139,132.7222h5.8069c1.3507.0161,3.0298.0368,4.2174,1.3139.6041.6753,1.0222,1.6975,1.0222,2.8667,0,2.5934-1.771,3.232-2.6462,3.5604l2.9746,5.15h-3.5604l-2.5543-4.601h-2.0283v4.601h-3.232v-12.8911Zm3.232,2.4096v3.4869h2.6668c.4571-.0184,1.9365-.0528,1.9365-1.771,0-1.6424-1.1899-1.6975-1.8629-1.7159h-2.7404Z" style="fill:#221f1f; stroke-width:0px;"></path><polygon points="271.3546 132.7219 274.7887 132.7219 270.314 145.613 267.0269 145.613 262.6097 132.7219 266.0415 132.7219 268.7061 141.8895 271.3546 132.7219" style="fill:#221f1f; stroke-width:0px;"></polygon><rect x="277.0373" y="132.7224" width="3.2135" height="12.8911" style="fill:#221f1f; stroke-width:0px;"></rect><path d="m295.3526,142.673c-.4755.7488-.9304,1.4793-1.9525,2.1914-.549.3836-1.8101,1.1324-3.5972,1.1324-3.4157,0-6.1722-2.4854-6.1722-6.8475,0-3.8177,2.5934-6.8291,6.2434-6.8291,1.4793,0,2.7932.5099,3.7626,1.2772.8936.7121,1.3139,1.4242,1.6791,2.0627l-2.5566,1.2795c-.1837-.4204-.402-.8591-.967-1.3346-.6202-.4915-1.2427-.6386-1.771-.6386-2.0811,0-3.1791,1.9364-3.1791,4.0911,0,2.83,1.4425,4.2358,3.1791,4.2358,1.6791,0,2.3545-1.1669,2.7932-1.9157l2.5383,1.2955Z" style="fill:#221f1f; stroke-width:0px;"></path><polygon points="297.7294 132.7219 307.2621 132.7219 307.2621 135.2234 300.9429 135.2234 300.9429 137.5595 306.8417 137.5595 306.8417 140.0059 300.9429 140.0059 300.9429 143.0748 307.8272 143.0748 307.8272 145.613 297.7294 145.613 297.7294 132.7219" style="fill:#221f1f; stroke-width:0px;"></polygon><path d="m311.2671,80.6307c0-1.9101,1.4476-3.3536,3.2937-3.3536,1.8337,0,3.2751,1.4435,3.2751,3.3536,0,1.9473-1.4414,3.3805-3.2751,3.3805-1.8462,0-3.2937-1.4331-3.2937-3.3805m3.2937,4.0578c2.2054,0,4.0908-1.714,4.0908-4.0578,0-2.319-1.8854-4.0288-4.0908-4.0288-2.224,0-4.1115,1.7098-4.1115,4.0288,0,2.3438,1.8874,4.0578,4.1115,4.0578m-.8528-3.7356h.8095l1.2307,2.0217h.7951l-1.3278-2.0547c.6856-.0888,1.208-.4501,1.208-1.2824,0-.9169-.5472-1.3258-1.6478-1.3258h-1.7698v4.6628h.7022v-2.0217Zm0-.603v-1.4373h.9581c.4956,0,1.018.1074,1.018.6815,0,.7124-.5348.7558-1.1316.7558h-.8446Z" style="fill:#00a9e2; stroke-width:0px;"></path><path d="m9.2032,112.2547c0,2.6347-.4227,3.356-1.9709,3.356h-3.3606v8.9884h6.0504c7.2127,0,8.6897-4.5551,8.6897-11.3957v-37.1135h-9.4087v36.1648Z" style="fill:#00a9e2; stroke-width:0px;"></path><path d="m43.534,118.6167v-20.7103c0-7.4976-3.4708-10.9891-10.9225-10.9891-7.1323,0-10.3138,3.5559-10.3138,11.5312v2.1247h8.4968v-2.1914c0-2.4349.5398-3.4249,1.8675-3.4249,1.5482,0,2.072.7787,2.072,3.0849v1.9686c-1.941,1.2519-3.905,2.2511-5.9792,3.3055-.7144.3606-1.4311.7259-2.1524,1.1049-3.6937,1.9548-5.0673,5.0512-5.0673,11.421,0,6.5765,2.2281,9.7717,6.8131,9.7717,3.1745,0,4.7917-1.7687,6.2204-3.3307.0551-.0597.1103-.1195.1654-.1792v2.4946h10.2403l-.3239-.549c-.866-1.4793-1.1164-2.0536-1.1164-5.4325m-12.9439-5.1431c0-2.784.101-3.7373,2.2327-5.2511l1.9112-1.353v7.4149c0,3.2756-1.3254,3.6959-2.4785,3.6959-1.4999,0-1.6653-1.1393-1.6653-3.5581v-.9487Z" style="fill:#00a9e2; stroke-width:0px;"></path><path d="m57.6841,86.9848c-2.451,0-5.5704.3285-7.9387,2.8966-2.382,2.6715-2.5772,5.993-2.5772,9.4478v15.2272c0,7.4402,3.6041,11.058,11.0235,11.058,8.8414,0,10.1622-6.2503,10.1622-9.9761v-4.4242h-8.7495v4.0865c0,1.8055-.5145,2.6117-1.6654,2.6117-1.732,0-1.9709-1.4173-1.9709-2.9517v-16.9844c0-2.6531.9234-3.0206,1.9203-3.0206.797,0,1.7159.3446,1.7159,3.0206v4.4242h8.7495v-5.2373c0-6.4685-3.8889-10.1783-10.6698-10.1783" style="fill:#00a9e2; stroke-width:0px;"></path><polygon points="95.4139 87.9326 85.5595 87.9326 80.5335 100.0634 80.5335 76.089 71.7841 76.089 71.7841 124.5982 80.5335 124.5982 80.5335 108.1168 86.0993 124.5982 95.9262 124.5982 87.9761 103.7432 95.4139 87.9326" style="fill:#00a9e2; stroke-width:0px;"></polygon><path d="m112.1464,104.5741l-4.7825-3.1883c-2.1455-1.4311-3.1263-2.0835-3.1263-3.8154,0-2.4211,1.2703-2.6806,1.8193-2.6806.758,0,1.7641.3055,1.7641,2.9494v1.4494h8.4463v-1.7182c0-6.9693-3.5489-10.6537-10.2632-10.6537-3.0367,0-5.3889.7603-7.1921,2.3223-1.8422,1.585-3.0712,3.6546-3.0712,8.6002,0,4.7618.6616,7.4999,4.4172,10.1782l5.3774,3.8568c1.0498.7603,2.134,1.5505,2.134,3.3583,0,.3813-.0873,2.2741-1.817,2.2741-1.0865,0-1.918-.2527-1.918-3.4249v-1.3116h-8.4486v.3652c0,3.4387.2251,5.196.8913,6.967,1.438,3.6638,4.5206,5.444,9.4248,5.444,3.7534,0,6.4387-1.0498,8.4463-3.3078,1.9456-2.2281,2.3246-4.9272,2.3246-8.8345,0-3.9831-.6615-6.3215-4.4264-8.8299" style="fill:#00a9e2; stroke-width:0px;"></path><path d="m130.1124,86.9857c-7.578,0-10.6676,3.6914-10.6676,12.7487v14.1453c0,7.8307,3.6569,11.8023,10.872,11.8023,7.1392,0,10.4677-3.9647,10.4677-12.4799v-14.6851c0-7.6515-3.5903-11.5312-10.6721-11.5312m-1.9686,12.0044c0-1.9272.2343-3.8981,1.9686-3.8981,1.8192,0,1.9709,1.8262,1.9709,3.6959v14.8206c0,1.8262-.2343,3.6959-1.9709,3.6959-1.8193,0-1.9686-1.4931-1.9686-3.1539v-15.1606Z" style="fill:#00a9e2; stroke-width:0px;"></path><path d="m158.6891,86.9168c-2.7725,0-4.647,2.0628-5.676,3.5283v-2.513h-8.8v36.6656h8.8v-26.4874c0-1.3782.3606-3.0183,2.072-3.0183.866,0,2.0213.3469,2.0213,3.356v26.1497h8.7495v-27.2316c0-6.4455-2.745-10.4493-7.1668-10.4493" style="fill:#00a9e2; stroke-width:0px;"></path><polygon points="191.2126 95.3769 185.9041 95.3769 185.9041 76.0885 176.5436 76.0885 176.5436 124.5977 185.9041 124.5977 185.9041 104.5674 191.2126 104.5674 191.2126 124.5977 200.6236 124.5977 200.6236 76.0885 191.2126 76.0885 191.2126 95.3769" style="fill:#00a9e2; stroke-width:0px;"></polygon><path d="m217.3514,114.4209c0,2.683-.8315,3.2205-2.173,3.2205-1.6861,0-1.918-1.4839-1.918-3.0849v-5.5221h12.2846v-10.5848c0-7.9754-3.2297-11.5335-10.4677-11.5335-8.9654,0-10.7203,5.2717-10.7203,14.375v10.7617c0,6.7051,1.2863,13.5618,10.8214,13.5618,4.8674,0,10.6698-1.8836,10.6698-10.8559v-2.8001h-8.4968v2.4625Zm-4.091-12.9531v-3.3583c0-1.8491.2503-3.5581,2.0696-3.5581,1.7251,0,1.8699,1.8353,1.8699,3.5581v3.3583h-3.9394Z" style="fill:#00a9e2; stroke-width:0px;"></path><polygon points="252.9706 110.8218 250.1704 87.9317 240.4378 87.9317 237.4999 110.854 235.7174 87.9317 226.729 87.9317 232.4785 124.5996 241.4256 124.5996 245.2249 101.5831 248.9783 124.5996 257.9253 124.5996 263.7253 87.9317 254.8404 87.9317 252.9706 110.8218" style="fill:#00a9e2; stroke-width:0px;"></polygon><rect x="265.0099" y="76.0885" width="8.8" height="8.9861" style="fill:#00a9e2; stroke-width:0px;"></rect><rect x="265.0099" y="87.9321" width="8.8" height="36.6656" style="fill:#00a9e2; stroke-width:0px;"></rect><path d="m307.2596,95.3629v-7.4309h-3.6041v-11.8436h-8.7495v11.8436h-7.1369v-11.8436h-8.7518v11.8436h-3.6018v7.4309h3.6018v20.005c0,5.699,1.2427,9.2319,7.4218,9.2319h4.9341v-7.9042h-.3652c-2.8461,0-3.2389-.3675-3.2389-3.0206v-18.3121h7.1369v20.005c0,5.699,1.2404,9.2319,7.4195,9.2319h4.9341v-7.9042h-.3653c-2.8437,0-3.2388-.3675-3.2388-3.0206v-18.3121h3.6041Z" style="fill:#00a9e2; stroke-width:0px;"></path></svg></div></div></a><nav role="navigation" aria-label="Main Navigation"><ul data-testid="bb-side-navigation__nav-list" class="bb-side-navigation__nav-list"><li><a data-testid="bb-side-navigation__nav-list--home" class="bb-side-navigation__nav-list-link d-flex " href="https://secure.serve.com/dashboard"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28px" height="28px" viewBox="0 0 28 28" class="list-link-icon"><path fill="CurrentColor" d="M27.82,14.15,14.38,1.83a.56.56,0,0,0-.76,0L.18,14.15A.56.56,0,0,0,.94,15l2.42-2.22V24.64A1.68,1.68,0,0,0,5,26.32H23a1.68,1.68,0,0,0,1.68-1.68V12.75L27.06,15a.56.56,0,0,0,.76-.82Zm-11,11H11.2V17.92a.56.56,0,0,1,.56-.56h4.48a.56.56,0,0,1,.56.56Zm6.72-13.44V24.64a.56.56,0,0,1-.56.56h-5V17.92a1.68,1.68,0,0,0-1.68-1.68H11.76a1.68,1.68,0,0,0-1.68,1.68V25.2H5a.56.56,0,0,1-.56-.56V11.76h0L14,3l9.56,8.76Z"></path></svg><span class="bb-side-navigation__nav-list-link-name">Home</span></a></li><li><a data-testid="bb-side-navigation__nav-list--moneyIn" class="bb-side-navigation__nav-list-link d-flex " href="https://secure.serve.com/transfer-in"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28px" height="28px" viewBox="0 0 28 28" class="list-link-icon"><path fill="CurrentColor" d="M10.89,9.21C8.73,9.21,7,11.35,7,14s1.76,4.79,3.92,4.79,3.93-2.14,3.93-4.79S13.06,9.21,10.89,9.21Zm0,8.71c-1.68,0-3.05-1.76-3.05-3.92s1.37-3.92,3.05-3.92,3,1.76,3,3.92S12.58,17.92,10.89,17.92Z"></path><path fill="CurrentColor" d="M16.56,9.64A.43.43,0,0,1,17,9.21h1.75a.43.43,0,0,1,.43.43.44.44,0,0,1-.43.44H17A.44.44,0,0,1,16.56,9.64Z"></path><path fill="CurrentColor" d="M2.61,18.36a.44.44,0,0,1,.44-.44H4.79a.44.44,0,0,1,.44.44.44.44,0,0,1-.44.43H3.05A.44.44,0,0,1,2.61,18.36Z"></path><path fill="CurrentColor" d="M20.92,6.59H.87A.87.87,0,0,0,0,7.46V20.54a.87.87,0,0,0,.87.87H20.92a.87.87,0,0,0,.87-.87V7.46A.87.87,0,0,0,20.92,6.59Zm0,14H.87V7.46H20.92Z"></path><rect fill="CurrentColor" x="24.99" y="10.29" width="0.84" height="0.84"></rect><rect fill="CurrentColor" x="24.99" y="8.61" width="0.84" height="0.84"></rect><rect fill="CurrentColor" x="24.99" y="11.98" width="0.84" height="0.84"></rect><polygon fill="CurrentColor" points="28 16.91 25.41 19.51 22.82 16.91 23.41 16.32 24.99 17.89 24.99 13.68 25.83 13.68 25.83 17.89 27.4 16.32 28 16.91"></polygon></svg><span class="bb-side-navigation__nav-list-link-name">Money In</span></a></li><li><a data-testid="bb-side-navigation__nav-list--moneyOut" class="bb-side-navigation__nav-list-link d-flex " href="https://secure.serve.com/transfer-out"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28px" height="28px" viewBox="0 0 28 28" class="list-link-icon"><path fill="CurrentColor" d="M10.89,9.21C8.73,9.21,7,11.35,7,14s1.76,4.79,3.92,4.79,3.93-2.14,3.93-4.79S13.06,9.21,10.89,9.21Zm0,8.71c-1.68,0-3.05-1.76-3.05-3.92s1.37-3.92,3.05-3.92,3,1.76,3,3.92S12.58,17.92,10.89,17.92Z"></path><path fill="CurrentColor" d="M16.56,9.64A.43.43,0,0,1,17,9.21h1.75a.43.43,0,0,1,.43.43.44.44,0,0,1-.43.44H17A.44.44,0,0,1,16.56,9.64Z"></path><path fill="CurrentColor" d="M2.61,18.36a.44.44,0,0,1,.44-.44H4.79a.44.44,0,0,1,.44.44.44.44,0,0,1-.44.43H3.05A.44.44,0,0,1,2.61,18.36Z"></path><path fill="CurrentColor" d="M20.92,6.59H.87A.87.87,0,0,0,0,7.46V20.54a.87.87,0,0,0,.87.87H20.92a.87.87,0,0,0,.87-.87V7.46A.87.87,0,0,0,20.92,6.59Zm0,14H.87V7.46H20.92Z"></path><rect fill="CurrentColor" x="24.99" y="16.97" width="0.84" height="0.84"></rect><rect fill="CurrentColor" x="24.99" y="18.66" width="0.84" height="0.84"></rect><rect fill="CurrentColor" x="24.99" y="15.28" width="0.84" height="0.84"></rect><polygon fill="CurrentColor" points="28 11.2 27.41 11.79 25.83 10.22 25.83 14.43 24.98 14.43 24.98 10.22 23.41 11.79 22.82 11.2 25.41 8.61 28 11.2"></polygon></svg><span class="bb-side-navigation__nav-list-link-name">Money Out</span></a></li></ul></nav><nav class="bb-side-navigation__bottom-nav" role="navigation" aria-label="Bottom Navigation"><ul data-testid="bb-side-navigation__bottom-nav" class="bb-side-navigation__nav-list"><li><a target="_blank" rel="noopener noreferrer" href="https://www.serve.com/jacksonhewitt/faqs" class="bb-side-navigation__nav-list-link d-flex" data-testid="bb-side-navigation__nav-list--support"><div><div><svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" viewBox="0 0 40 40" fill="currentColor" class="injected-svg list-link-icon d-flex" data-src="/static/media/SupportIcon.e792ba6ec2f236ec578690af2d3b41af.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" alt="SupportIcon"><title>SupportIcon</title><desc>SupportIcon</desc><path d="m20,.2C9.1.2.2,9,.2,19.9s8.8,19.9,19.7,19.9,19.8-8.8,19.8-19.8h0C39.8,9.1,30.9.2,20,.2Zm0,38C9.9,38.2,1.8,30.1,1.8,20S9.9,1.8,19.9,1.8s18.3,8.1,18.3,18.2h0c-.1,10-8.2,18.1-18.2,18.2h0Z"></path><path d="m23.5,21.5c-.3,1.8-1.9,3.1-3.7,3.1-1.9.1-3.5-1.2-3.6-3.1v-.5c0-1.6,1-3.1,2.6-3.7l2.4-1.3c.9-.4,1.5-1.2,1.5-2.2,0-1.5-1-2.5-2.9-2.5s-2.8,1-3.3,3l-1.8-.3c.3-2.6,2.7-4.5,5.3-4.4,2.6,0,4.5,1.7,4.5,4.1,0,1.5-.9,2.7-2.5,3.6l-2.1,1.1c-1.4.7-1.9,1.4-1.9,2.6-.1.9.6,1.7,1.5,1.8h.2c1.2,0,1.9-.6,2.3-1.9l1.5.6Zm-4.8,6.1c.6-.7,1.6-.7,2.3-.2s.7,1.6.2,2.3c0,.1-.1.1-.2.2-.7.6-1.7.5-2.3-.2-.5-.6-.5-1.5,0-2.1Z"></path></svg></div></div><span class="bb-side-navigation__nav-list-link-name">FAQs</span></a></li><li><button class="bb-side-navigation__nav-list-link d-flex" data-testid="bb-side-navigation__nav-list-link--logout"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28px" height="28px" viewBox="0 0 28 28" class="list-link-icon logout"><path fill="CurrentColor" d="M26.88,14a.57.57,0,0,1-.16.4L21.12,20a.57.57,0,1,1-.8-.8L25,14.56H7.28a.56.56,0,0,1,0-1.12H25L20.32,8.8a.57.57,0,1,1,.8-.8l5.6,5.6A.57.57,0,0,1,26.88,14ZM16.24,21.28a.56.56,0,0,0-.56.56v4.48a.56.56,0,0,1-.56.56H2.8a.56.56,0,0,1-.56-.56V1.68a.56.56,0,0,1,.56-.56H15.12a.56.56,0,0,1,.56.56V6.16a.56.56,0,0,0,1.12,0V1.68A1.68,1.68,0,0,0,15.12,0H2.8A1.68,1.68,0,0,0,1.12,1.68V26.32A1.68,1.68,0,0,0,2.8,28H15.12a1.68,1.68,0,0,0,1.68-1.68V21.84A.56.56,0,0,0,16.24,21.28Z"></path></svg><span class="bb-side-navigation__nav-list-link-name">Logout</span></button></li><li><a data-testid="bb-side-navigation__nav-list-link--profile" class="bb-side-navigation__nav-list-link d-flex" href="https://secure.serve.com/profile"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28px" height="28px" viewBox="0 0 28 28" class="list-link-icon"><path fill="CurrentColor" d="M22.63,20.25c-1.67-.88-5.24-2.72-7.27-3.56a10.86,10.86,0,0,0,2.56-7.17c0-4.64-2.76-6.72-6.16-6.72S5.6,4.88,5.6,9.52a10.88,10.88,0,0,0,2.55,7.16c-2,.84-5.6,2.69-7.26,3.57A1.67,1.67,0,0,0,0,21.73v.8a1.8,1.8,0,0,0,1.54,1.78,86.53,86.53,0,0,0,10.22.89A86.53,86.53,0,0,0,22,24.31a1.8,1.8,0,0,0,1.54-1.78v-.8A1.67,1.67,0,0,0,22.63,20.25ZM6.72,9.52c0-3.56,1.84-5.6,5-5.6s5,2,5,5.6c0,4.1-2.4,7.84-5,7.84S6.72,13.62,6.72,9.52Zm15.68,13a.67.67,0,0,1-.57.67,84,84,0,0,1-10.07.88A84,84,0,0,1,1.69,23.2a.67.67,0,0,1-.57-.67v-.8a.54.54,0,0,1,.29-.49C5.46,19.1,8,17.9,9.06,17.51a4.48,4.48,0,0,0,2.7,1,4.56,4.56,0,0,0,2.69-1c1.08.41,3.63,1.61,7.66,3.72a.54.54,0,0,1,.29.49Zm-2.24-18a.56.56,0,0,1,.56-.56h6.72a.56.56,0,0,1,0,1.12H20.72A.56.56,0,0,1,20.16,4.48ZM28,9a.56.56,0,0,1-.56.56h-5.6a.56.56,0,0,1,0-1.12h5.6A.56.56,0,0,1,28,9Zm0,4.48a.56.56,0,0,1-.56.56H20.72a.56.56,0,1,1,0-1.12h6.72A.56.56,0,0,1,28,13.44Z"></path></svg><span class="bb-side-navigation__nav-list-link-name">My Profile</span></a></li></ul></nav></div><div id="main"><div class="transition-group-wrapper"><div><div class="bb-logged-header"><div class="bb-logged-header__container"><div class="bb-logged-header__heading-row d-flex"><button data-testid="bb-logged-header__back-link" class="bb-logged-header__back-link"><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" class="bb-logged-header__back-link-icon"><path d="M18.5 22c.2.2.2.5 0 .6-.2.2-.5.2-.6 0l-8.4-8.3c-.2-.2-.2-.5 0-.6l8.3-8.4c.2-.1.5 0 .6.2.1.1.1.3 0 .4l-8 8 8.1 8.1z" fill="currentColor" fill-rule="nonzero"></path></svg><span class="bb-logged-header__back-link-text">Back to Accounts</span></button><h1 class="title js-focus-title text-break" data-testid="title js-focus-title--bb.pages.Accounts.Transactions.title" tabindex="-1">Transactions</h1></div></div></div></div><div class="bb-accounts-container-fluid"><div class="bb-accounts-page-wide"><div class="bb-transactions-top-nav pt-2"><h2 class="bb-accounts-small-title bb-transactions-top-nav__title">Active Transactions</h2><div class="bb-transactions-top-nav__filter"><div class="bb-transactions__filter"><div class="p-relative"><button data-testid="bb-transactions__filter__buttonId-active" aria-haspopup="true" aria-expanded="false" class="bb-transactions__filter-btn">Filter by date</button></div><div class="bb-transactions__filter-menu" aria-hidden="true"><div class="d-flex"><button data-testid="bb-transactions__filter__buttonId-header-active" class="bb-transactions__filter-menu-header-btn bb-transactions__filter-menu-header-btn--active">Start Date</button><button data-testid="bb-transactions__filter__buttonId-menu-header" class="bb-transactions__filter-menu-header-btn">End Date</button></div><div class="bb-transactions__filter-menu-body"><div class="DayPicker bb-date-picker bb-date-picker--inline" lang="en"><div class="DayPicker-wrapper" tabindex="0"><div class="DayPicker-NavBar"><span tabindex="0" role="button" aria-label="Previous Month" class="DayPicker-NavButton DayPicker-NavButton--prev"></span><span tabindex="0" role="button" aria-label="Next Month" class="DayPicker-NavButton DayPicker-NavButton--next"></span></div><div class="DayPicker-Months"><div class="DayPicker-Month" role="grid"><div class="DayPicker-Caption" role="heading" aria-live="polite"><div>November 2024</div></div><div class="DayPicker-Weekdays" role="rowgroup"><div class="DayPicker-WeekdaysRow" role="row"><div class="DayPicker-Weekday" role="columnheader"><abbr title="Sunday">S</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Monday">M</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Tuesday">T</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Wednesday">W</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Thursday">Th</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Friday">F</abbr></div><div class="DayPicker-Weekday" role="columnheader"><abbr title="Saturday">S</abbr></div></div></div><div class="DayPicker-Body" role="rowgroup"><div class="DayPicker-Week" role="row"><div class="DayPicker-Day DayPicker-Day--outside" tabindex="-1" role="gridcell" aria-label="Sun Oct 27 2024" aria-disabled="true" aria-selected="false">27</div><div class="DayPicker-Day DayPicker-Day--outside" tabindex="-1" role="gridcell" aria-label="Mon Oct 28 2024" aria-disabled="true" aria-selected="false">28</div><div class="DayPicker-Day DayPicker-Day--outside" tabindex="-1" role="gridcell" aria-label="Tue Oct 29 2024" aria-disabled="true" aria-selected="false">29</div><div class="DayPicker-Day DayPicker-Day--outside" tabindex="-1" role="gridcell" aria-label="Wed Oct 30 2024" aria-disabled="true" aria-selected="false">30</div><div class="DayPicker-Day DayPicker-Day--outside" tabindex="-1" role="gridcell" aria-label="Thu Oct 31 2024" aria-disabled="true" aria-selected="false">31</div><div class="DayPicker-Day" tabindex="0" role="gridcell" aria-label="Fri Nov 01 2024" aria-disabled="false" aria-selected="false">1</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Sat Nov 02 2024" aria-disabled="false" aria-selected="false">2</div></div><div class="DayPicker-Week" role="row"><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Sun Nov 03 2024" aria-disabled="false" aria-selected="false">3</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Mon Nov 04 2024" aria-disabled="false" aria-selected="false">4</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Tue Nov 05 2024" aria-disabled="false" aria-selected="false">5</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Wed Nov 06 2024" aria-disabled="false" aria-selected="false">6</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Thu Nov 07 2024" aria-disabled="false" aria-selected="false">7</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Fri Nov 08 2024" aria-disabled="false" aria-selected="false">8</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Sat Nov 09 2024" aria-disabled="false" aria-selected="false">9</div></div><div class="DayPicker-Week" role="row"><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Sun Nov 10 2024" aria-disabled="false" aria-selected="false">10</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Mon Nov 11 2024" aria-disabled="false" aria-selected="false">11</div><div class="DayPicker-Day" tabindex="-1" role="gridcell" aria-label="Tue Nov 12 2024" aria-disabled="false" aria-selected="false">12</div><div class="DayPicker-Day DayPicker-Day--today" tabindex="-1" role="gridcell" aria-label="Wed Nov 13 2024" aria-disabled="false" aria-selected="false">13</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Thu Nov 14 2024" aria-disabled="true" aria-selected="false">14</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Fri Nov 15 2024" aria-disabled="true" aria-selected="false">15</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Sat Nov 16 2024" aria-disabled="true" aria-selected="false">16</div></div><div class="DayPicker-Week" role="row"><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Sun Nov 17 2024" aria-disabled="true" aria-selected="false">17</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Mon Nov 18 2024" aria-disabled="true" aria-selected="false">18</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Tue Nov 19 2024" aria-disabled="true" aria-selected="false">19</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Wed Nov 20 2024" aria-disabled="true" aria-selected="false">20</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Thu Nov 21 2024" aria-disabled="true" aria-selected="false">21</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Fri Nov 22 2024" aria-disabled="true" aria-selected="false">22</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Sat Nov 23 2024" aria-disabled="true" aria-selected="false">23</div></div><div class="DayPicker-Week" role="row"><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Sun Nov 24 2024" aria-disabled="true" aria-selected="false">24</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Mon Nov 25 2024" aria-disabled="true" aria-selected="false">25</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Tue Nov 26 2024" aria-disabled="true" aria-selected="false">26</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Wed Nov 27 2024" aria-disabled="true" aria-selected="false">27</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Thu Nov 28 2024" aria-disabled="true" aria-selected="false">28</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Fri Nov 29 2024" aria-disabled="true" aria-selected="false">29</div><div class="DayPicker-Day DayPicker-Day--disabled" tabindex="-1" role="gridcell" aria-label="Sat Nov 30 2024" aria-disabled="true" aria-selected="false">30</div></div></div></div></div></div></div></div></div></div></div></div><div class="bb-table-component bb-transactions-xs-offset-table"><table class="bb-table-component__table-wrapper" data-testid="bb-transactions__activeTransactions-tableComponent"><tbody><tr data-testid="bb-table-component__trxRow_0" class="bb-table-component__row bb-table-component__row--clickable"><td width="87%"><div class="bb-transaction-row__title" data-testid="bb-transaction-row__title-ReceiveMoney"> Money Request Sent To xero.inbox.oc050l.clbwqr1xucopdowu@xerofiles.com</div><div class="bb-transaction-row__date" data-testid="bb-transaction-row__date">November 04, 2024</div></td><td></td><td></td><td><div class="bb-transaction-row__amount" data-testid="bb-transaction-row__amount"><span>$2,500.00</span></div><div class="bb-transaction-row__status" data-testid="bb-transaction-row__status-inProgress">Pending</div></td></tr><tr data-testid="bb-table-component__trxRow_1" class="bb-table-component__row bb-table-component__row--clickable"><td width="87%"><div class="bb-transaction-row__title" data-testid="bb-transaction-row__title-ReceiveMoney"> Money Request Sent To xero.inbox.oc050l.lfh71ovjhntmjrj8@xerofiles.com</div><div class="bb-transaction-row__date" data-testid="bb-transaction-row__date">October 20, 2024</div></td><td></td><td></td><td><div class="bb-transaction-row__amount" data-testid="bb-transaction-row__amount"><span>$9,999.00</span></div><div class="bb-transaction-row__status" data-testid="bb-transaction-row__status-inProgress">Pending</div></td></tr><tr data-testid="bb-table-component__trxRow_2" class="bb-table-component__row bb-table-component__row--clickable"><td width="87%"><div class="bb-transaction-row__title" data-testid="bb-transaction-row__title-ReceiveMoney"> Money Request Sent To xero.inbox.oc050l.5rwes2og134fm2uo@xerofiles.com</div><div class="bb-transaction-row__date" data-testid="bb-transaction-row__date">October 20, 2024</div></td><td></td><td></td><td><div class="bb-transaction-row__amount" data-testid="bb-transaction-row__amount"><span>$9,999.00</span></div><div class="bb-transaction-row__status" data-testid="bb-transaction-row__status-inProgress">Pending</div></td></tr><tr data-testid="bb-table-component__trxRow_3" class="bb-table-component__row bb-table-component__row--clickable"><td width="87%"><div class="bb-transaction-row__title" data-testid="bb-transaction-row__title-ReceiveMoney"> Money Request Sent To 4803980635me@gmail.com</div><div class="bb-transaction-row__date" data-testid="bb-transaction-row__date">October 15, 2024</div></td><td></td><td></td><td><div class="bb-transaction-row__amount" data-testid="bb-transaction-row__amount"><span>$9,999.00</span></div><div class="bb-transaction-row__status" data-testid="bb-transaction-row__status-inProgress">Pending</div></td></tr></tbody></table></div><h2 class="bb-accounts-small-title bb-transactions-top-nav__title-top-padding ">Completed Transactions</h2><div class="bb-table-component bb-transactions-xs-offset-table"><table class="bb-table-component__table-wrapper" data-testid="bb-transactions__completeTransactions-tableComponent"><tbody><tr data-testid="bb-table-component__trxRow_0" class="bb-table-component__row bb-table-component__row--clickable"><td width="87%"><div class="bb-transaction-row__title" data-testid="bb-transaction-row__title-MonthlyFeeWaiver"> Monthly Fee Waived</div><div class="bb-transaction-row__date" data-testid="bb-transaction-row__date">Today</div></td><td></td><td></td><td><div class="bb-transaction-row__amount" data-testid="bb-transaction-row__amount"><span>$0.00</span></div></td></tr></tbody></table></div><div class="bb-transactions-nav-footer bb-accounts-xs-only-card"><button data-testid="bb-transactions__buttonId-nav-footer-prev" class="bb-transactions-nav-footer-btn" disabled="">Previous</button><button data-testid="bb-transactions__buttonId-nav-footer-next" class="bb-transactions-nav-footer-btn" disabled="">Next</button></div> <div class=""><footer class="bb-footer__footer" data-testid="bb-footer__footer"><div class="bb-footer__footer-section"><div class="bb-footer__footer-row-sm bb-footer__footer-row-sm--logo"><div class="bb-footer__footer-column-group"><div class="bb-footer__footer-column bb-footer__footer-column--logo"><img alt="Serve Logo Jackson Hewitt Tax Services" src="https://secure.serve.com/static/media/Logo.be6054843d727da75679e62318342b4e.svg" class="bb-footer__footer-logo bb-footer__footer-logo--JacksonHewitt" data-testid="bb-footer__logo"></div></div></div><div class="bb-footer__footer-row-sm bb-footer__footer-row-sm--links"><div class="bb-footer__footer-column-group"><div class="bb-footer__footer-column bb-footer__footer-column--links"><div class="bb-footer__footer-header">Product</div><a target="_blank" rel="noopener noreferrer" href="https://www.serve.com/jacksonhewitt/" class="bb-footer__footer-link">Jackson Hewitt</a></div><div class="bb-footer__footer-column bb-footer__footer-column--links"><div class="bb-footer__footer-header">Resources</div><a class="bb-footer__footer-link" href="https://www.serve.com/jacksonhewitt/legal/user-agreement#10a" target="_blank" rel="noopener noreferrer">Fee Chart</a><a class="bb-footer__footer-link">ATM Finder</a><a class="bb-footer__footer-link" href="https://www.serve.com/jacksonhewitt/legal" target="_blank" rel="noopener noreferrer">Legal/Privacy</a></div><div class="bb-footer__footer-column bb-footer__footer-column--links"><div class="bb-footer__footer-header">Support</div><a class="bb-footer__footer-link" href="https://www.serve.com/jacksonhewitt/faqs" target="_blank" rel="noopener noreferrer">FAQs</a><a class="bb-footer__footer-link" href="https://www.serve.com/jacksonhewitt/faqs#contact-us" target="_blank" rel="noopener noreferrer">Contact Us</a></div></div></div></div><div class="bb-footer__footer-section"><div class="bb-footer__footer-section--buttons"><div class="bb-footer__buttons-block d-flex"><button data-testid="bb-footer__buttonId-outline-apple-logo" class="bb-footer__app-store-btn"><svg xmlns="http://www.w3.org/2000/svg" width="119.66407" height="40" viewBox="0 0 119.66407 40" class="bb-footer__app-store-btn-icon"><g><g><g><path d="M110.13477,0H9.53468c-.3667,0-.729,0-1.09473.002-.30615.002-.60986.00781-.91895.0127A13.21476,13.21476,0,0,0,5.5171.19141a6.66509,6.66509,0,0,0-1.90088.627A6.43779,6.43779,0,0,0,1.99757,1.99707,6.25844,6.25844,0,0,0,.81935,3.61816a6.60119,6.60119,0,0,0-.625,1.90332,12.993,12.993,0,0,0-.1792,2.002C.00587,7.83008.00489,8.1377,0,8.44434V31.5586c.00489.3105.00587.6113.01515.9219a12.99232,12.99232,0,0,0,.1792,2.0019,6.58756,6.58756,0,0,0,.625,1.9043A6.20778,6.20778,0,0,0,1.99757,38.001a6.27445,6.27445,0,0,0,1.61865,1.1787,6.70082,6.70082,0,0,0,1.90088.6308,13.45514,13.45514,0,0,0,2.0039.1768c.30909.0068.6128.0107.91895.0107C8.80567,40,9.168,40,9.53468,40H110.13477c.3594,0,.7246,0,1.084-.002.3047,0,.6172-.0039.9219-.0107a13.279,13.279,0,0,0,2-.1768,6.80432,6.80432,0,0,0,1.9082-.6308,6.27742,6.27742,0,0,0,1.6172-1.1787,6.39482,6.39482,0,0,0,1.1816-1.6143,6.60413,6.60413,0,0,0,.6191-1.9043,13.50643,13.50643,0,0,0,.1856-2.0019c.0039-.3106.0039-.6114.0039-.9219.0078-.3633.0078-.7246.0078-1.0938V9.53613c0-.36621,0-.72949-.0078-1.09179,0-.30664,0-.61426-.0039-.9209a13.5071,13.5071,0,0,0-.1856-2.002,6.6177,6.6177,0,0,0-.6191-1.90332,6.46619,6.46619,0,0,0-2.7988-2.7998,6.76754,6.76754,0,0,0-1.9082-.627,13.04394,13.04394,0,0,0-2-.17676c-.3047-.00488-.6172-.01074-.9219-.01269-.3594-.002-.7246-.002-1.084-.002Z" style="fill: rgb(166, 166, 166);"></path><path d="M8.44483,39.125c-.30468,0-.602-.0039-.90429-.0107a12.68714,12.68714,0,0,1-1.86914-.1631,5.88381,5.88381,0,0,1-1.65674-.5479,5.40573,5.40573,0,0,1-1.397-1.0166,5.32082,5.32082,0,0,1-1.02051-1.3965,5.72186,5.72186,0,0,1-.543-1.6572,12.41351,12.41351,0,0,1-.1665-1.875c-.00634-.2109-.01464-.9131-.01464-.9131V8.44434S.88185,7.75293.8877,7.5498a12.37039,12.37039,0,0,1,.16553-1.87207,5.7555,5.7555,0,0,1,.54346-1.6621A5.37349,5.37349,0,0,1,2.61183,2.61768,5.56543,5.56543,0,0,1,4.01417,1.59521a5.82309,5.82309,0,0,1,1.65332-.54394A12.58589,12.58589,0,0,1,7.543.88721L8.44532.875H111.21387l.9131.0127a12.38493,12.38493,0,0,1,1.8584.16259,5.93833,5.93833,0,0,1,1.6709.54785,5.59374,5.59374,0,0,1,2.415,2.41993,5.76267,5.76267,0,0,1,.5352,1.64892,12.995,12.995,0,0,1,.1738,1.88721c.0029.2832.0029.5874.0029.89014.0079.375.0079.73193.0079,1.09179V30.4648c0,.3633,0,.7178-.0079,1.0752,0,.3252,0,.6231-.0039.9297a12.73126,12.73126,0,0,1-.1709,1.8535,5.739,5.739,0,0,1-.54,1.67,5.48029,5.48029,0,0,1-1.0156,1.3857,5.4129,5.4129,0,0,1-1.3994,1.0225,5.86168,5.86168,0,0,1-1.668.5498,12.54218,12.54218,0,0,1-1.8692.1631c-.2929.0068-.5996.0107-.8974.0107l-1.084.002Z"></path></g><g id="_Group_" data-name="<Group>"><g id="_Group_2" data-name="<Group>"><g id="_Group_3" data-name="<Group>"><path id="_Path_" data-name="<Path>" d="M24.76888,20.30068a4.94881,4.94881,0,0,1,2.35656-4.15206,5.06566,5.06566,0,0,0-3.99116-2.15768c-1.67924-.17626-3.30719,1.00483-4.1629,1.00483-.87227,0-2.18977-.98733-3.6085-.95814a5.31529,5.31529,0,0,0-4.47292,2.72787c-1.934,3.34842-.49141,8.26947,1.3612,10.97608.9269,1.32535,2.01018,2.8058,3.42763,2.7533,1.38706-.05753,1.9051-.88448,3.5794-.88448,1.65876,0,2.14479.88448,3.591.8511,1.48838-.02416,2.42613-1.33124,3.32051-2.66914a10.962,10.962,0,0,0,1.51842-3.09251A4.78205,4.78205,0,0,1,24.76888,20.30068Z" style="fill: rgb(255, 255, 255);"></path><path id="_Path_2" data-name="<Path>" d="M22.03725,12.21089a4.87248,4.87248,0,0,0,1.11452-3.49062,4.95746,4.95746,0,0,0-3.20758,1.65961,4.63634,4.63634,0,0,0-1.14371,3.36139A4.09905,4.09905,0,0,0,22.03725,12.21089Z" style="fill: rgb(255, 255, 255);"></path></g></g><g><path d="M42.30227,27.13965h-4.7334l-1.13672,3.35645H34.42727l4.4834-12.418h2.083l4.4834,12.418H43.438ZM38.0591,25.59082h3.752l-1.84961-5.44727h-.05176Z" style="fill: rgb(255, 255, 255);"></path><path d="M55.15969,25.96973c0,2.81348-1.50586,4.62109-3.77832,4.62109a3.0693,3.0693,0,0,1-2.84863-1.584h-.043v4.48438h-1.8584V21.44238H48.4302v1.50586h.03418a3.21162,3.21162,0,0,1,2.88281-1.60059C53.645,21.34766,55.15969,23.16406,55.15969,25.96973Zm-1.91016,0c0-1.833-.94727-3.03809-2.39258-3.03809-1.41992,0-2.375,1.23047-2.375,3.03809,0,1.82422.95508,3.0459,2.375,3.0459C52.30227,29.01563,53.24953,27.81934,53.24953,25.96973Z" style="fill: rgb(255, 255, 255);"></path><path d="M65.12453,25.96973c0,2.81348-1.50586,4.62109-3.77832,4.62109a3.0693,3.0693,0,0,1-2.84863-1.584h-.043v4.48438h-1.8584V21.44238H58.395v1.50586h.03418A3.21162,3.21162,0,0,1,61.312,21.34766C63.60988,21.34766,65.12453,23.16406,65.12453,25.96973Zm-1.91016,0c0-1.833-.94727-3.03809-2.39258-3.03809-1.41992,0-2.375,1.23047-2.375,3.03809,0,1.82422.95508,3.0459,2.375,3.0459C62.26711,29.01563,63.21438,27.81934,63.21438,25.96973Z" style="fill: rgb(255, 255, 255);"></path><path d="M71.71047,27.03613c.1377,1.23145,1.334,2.04,2.96875,2.04,1.56641,0,2.69336-.80859,2.69336-1.91895,0-.96387-.67969-1.541-2.28906-1.93652l-1.60937-.3877c-2.28027-.55078-3.33887-1.61719-3.33887-3.34766,0-2.14258,1.86719-3.61426,4.51855-3.61426,2.624,0,4.42285,1.47168,4.4834,3.61426h-1.876c-.1123-1.23926-1.13672-1.9873-2.63379-1.9873s-2.52148.75684-2.52148,1.8584c0,.87793.6543,1.39453,2.25488,1.79l1.36816.33594c2.54785.60254,3.60645,1.626,3.60645,3.44238,0,2.32324-1.85059,3.77832-4.79395,3.77832-2.75391,0-4.61328-1.4209-4.7334-3.667Z" style="fill: rgb(255, 255, 255);"></path><path d="M83.34621,19.2998v2.14258h1.72168v1.47168H83.34621v4.99121c0,.77539.34473,1.13672,1.10156,1.13672a5.80752,5.80752,0,0,0,.61133-.043v1.46289a5.10351,5.10351,0,0,1-1.03223.08594c-1.833,0-2.54785-.68848-2.54785-2.44434V22.91406H80.16262V21.44238H81.479V19.2998Z" style="fill: rgb(255, 255, 255);"></path><path d="M86.065,25.96973c0-2.84863,1.67773-4.63867,4.29395-4.63867,2.625,0,4.29492,1.79,4.29492,4.63867,0,2.85645-1.66113,4.63867-4.29492,4.63867C87.72609,30.6084,86.065,28.82617,86.065,25.96973Zm6.69531,0c0-1.9541-.89551-3.10742-2.40137-3.10742s-2.40039,1.16211-2.40039,3.10742c0,1.96191.89453,3.10645,2.40039,3.10645S92.76027,27.93164,92.76027,25.96973Z" style="fill: rgb(255, 255, 255);"></path><path d="M96.18606,21.44238h1.77246v1.541h.043a2.1594,2.1594,0,0,1,2.17773-1.63574,2.86616,2.86616,0,0,1,.63672.06934v1.73828a2.59794,2.59794,0,0,0-.835-.1123,1.87264,1.87264,0,0,0-1.93652,2.083v5.37012h-1.8584Z" style="fill: rgb(255, 255, 255);"></path><path d="M109.3843,27.83691c-.25,1.64355-1.85059,2.77148-3.89844,2.77148-2.63379,0-4.26855-1.76465-4.26855-4.5957,0-2.83984,1.64355-4.68164,4.19043-4.68164,2.50488,0,4.08008,1.7207,4.08008,4.46582v.63672h-6.39453v.1123a2.358,2.358,0,0,0,2.43555,2.56445,2.04834,2.04834,0,0,0,2.09082-1.27344Zm-6.28223-2.70215h4.52637a2.1773,2.1773,0,0,0-2.2207-2.29785A2.292,2.292,0,0,0,103.10207,25.13477Z" style="fill: rgb(255, 255, 255);"></path></g></g></g><g id="_Group_4" data-name="<Group>"><g><path d="M37.82619,8.731a2.63964,2.63964,0,0,1,2.80762,2.96484c0,1.90625-1.03027,3.002-2.80762,3.002H35.67092V8.731Zm-1.22852,5.123h1.125a1.87588,1.87588,0,0,0,1.96777-2.146,1.881,1.881,0,0,0-1.96777-2.13379h-1.125Z" style="fill: rgb(255, 255, 255);"></path><path d="M41.68068,12.44434a2.13323,2.13323,0,1,1,4.24707,0,2.13358,2.13358,0,1,1-4.24707,0Zm3.333,0c0-.97607-.43848-1.54687-1.208-1.54687-.77246,0-1.207.5708-1.207,1.54688,0,.98389.43457,1.55029,1.207,1.55029C44.57522,13.99463,45.01369,13.42432,45.01369,12.44434Z" style="fill: rgb(255, 255, 255);"></path><path d="M51.57326,14.69775h-.92187l-.93066-3.31641h-.07031l-.92676,3.31641h-.91309l-1.24121-4.50293h.90137l.80664,3.436h.06641l.92578-3.436h.85254l.92578,3.436h.07031l.80273-3.436h.88867Z" style="fill: rgb(255, 255, 255);"></path><path d="M53.85354,10.19482H54.709v.71533h.06641a1.348,1.348,0,0,1,1.34375-.80225,1.46456,1.46456,0,0,1,1.55859,1.6748v2.915h-.88867V12.00586c0-.72363-.31445-1.0835-.97168-1.0835a1.03294,1.03294,0,0,0-1.0752,1.14111v2.63428h-.88867Z" style="fill: rgb(255, 255, 255);"></path><path d="M59.09377,8.437h.88867v6.26074h-.88867Z" style="fill: rgb(255, 255, 255);"></path><path d="M61.21779,12.44434a2.13346,2.13346,0,1,1,4.24756,0,2.1338,2.1338,0,1,1-4.24756,0Zm3.333,0c0-.97607-.43848-1.54687-1.208-1.54687-.77246,0-1.207.5708-1.207,1.54688,0,.98389.43457,1.55029,1.207,1.55029C64.11232,13.99463,64.5508,13.42432,64.5508,12.44434Z" style="fill: rgb(255, 255, 255);"></path><path d="M66.4009,13.42432c0-.81055.60352-1.27783,1.6748-1.34424l1.21973-.07031v-.38867c0-.47559-.31445-.74414-.92187-.74414-.49609,0-.83984.18213-.93848.50049h-.86035c.09082-.77344.81836-1.26953,1.83984-1.26953,1.12891,0,1.76563.562,1.76563,1.51318v3.07666h-.85547v-.63281h-.07031a1.515,1.515,0,0,1-1.35254.707A1.36026,1.36026,0,0,1,66.4009,13.42432Zm2.89453-.38477v-.37646l-1.09961.07031c-.62012.0415-.90137.25244-.90137.64941,0,.40527.35156.64111.835.64111A1.0615,1.0615,0,0,0,69.29543,13.03955Z" style="fill: rgb(255, 255, 255);"></path><path d="M71.34816,12.44434c0-1.42285.73145-2.32422,1.86914-2.32422a1.484,1.484,0,0,1,1.38086.79h.06641V8.437h.88867v6.26074h-.85156v-.71143h-.07031a1.56284,1.56284,0,0,1-1.41406.78564C72.0718,14.772,71.34816,13.87061,71.34816,12.44434Zm.918,0c0,.95508.4502,1.52979,1.20313,1.52979.749,0,1.21191-.583,1.21191-1.52588,0-.93848-.46777-1.52979-1.21191-1.52979C72.72121,10.91846,72.26613,11.49707,72.26613,12.44434Z" style="fill: rgb(255, 255, 255);"></path><path d="M79.23,12.44434a2.13323,2.13323,0,1,1,4.24707,0,2.13358,2.13358,0,1,1-4.24707,0Zm3.333,0c0-.97607-.43848-1.54687-1.208-1.54687-.77246,0-1.207.5708-1.207,1.54688,0,.98389.43457,1.55029,1.207,1.55029C82.12453,13.99463,82.563,13.42432,82.563,12.44434Z" style="fill: rgb(255, 255, 255);"></path><path d="M84.66945,10.19482h.85547v.71533h.06641a1.348,1.348,0,0,1,1.34375-.80225,1.46456,1.46456,0,0,1,1.55859,1.6748v2.915H87.605V12.00586c0-.72363-.31445-1.0835-.97168-1.0835a1.03294,1.03294,0,0,0-1.0752,1.14111v2.63428h-.88867Z" style="fill: rgb(255, 255, 255);"></path><path d="M93.51516,9.07373v1.1416h.97559v.74854h-.97559V13.2793c0,.47168.19434.67822.63672.67822a2.96657,2.96657,0,0,0,.33887-.02051v.74023a2.9155,2.9155,0,0,1-.4834.04541c-.98828,0-1.38184-.34766-1.38184-1.21582v-2.543h-.71484v-.74854h.71484V9.07373Z" style="fill: rgb(255, 255, 255);"></path><path d="M95.70461,8.437h.88086v2.48145h.07031a1.3856,1.3856,0,0,1,1.373-.80664,1.48339,1.48339,0,0,1,1.55078,1.67871v2.90723H98.69v-2.688c0-.71924-.335-1.0835-.96289-1.0835a1.05194,1.05194,0,0,0-1.13379,1.1416v2.62988h-.88867Z" style="fill: rgb(255, 255, 255);"></path><path d="M104.76125,13.48193a1.828,1.828,0,0,1-1.95117,1.30273A2.04531,2.04531,0,0,1,100.73,12.46045a2.07685,2.07685,0,0,1,2.07617-2.35254c1.25293,0,2.00879.856,2.00879,2.27V12.688h-3.17969v.0498a1.1902,1.1902,0,0,0,1.19922,1.29,1.07934,1.07934,0,0,0,1.07129-.5459Zm-3.126-1.45117h2.27441a1.08647,1.08647,0,0,0-1.1084-1.1665A1.15162,1.15162,0,0,0,101.63527,12.03076Z" style="fill: rgb(255, 255, 255);"></path></g></g></g></svg></button><button data-testid="bb-footer__buttonId-outline-google-logo" class="bb-footer__app-store-btn"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" height="40" width="135" viewBox="0 0 135 40" xml:space="preserve" class="bb-footer__app-store-btn-icon"><path id="path11" fill="#100F0D" d="M130,40H5c-2.7,0-5-2.2-5-5V5c0-2.7,2.2-5,5-5h125c2.7,0,5,2.2,5,5v30C135,37.7,132.7,40,130,40"></path><path id="path13" fill="#A2A2A1" d="M130,0H5C2.2,0,0,2.2,0,5v30c0,2.8,2.2,5,5,5h125c2.8,0,5-2.2,5-5V5C135,2.2,132.7,0,130,0z M130,0.8c2.3,0,4.2,1.9,4.2,4.2v30c0,2.3-1.9,4.2-4.2,4.2H5c-2.3,0-4.2-1.9-4.2-4.2V5c0-2.3,1.9-4.2,4.2-4.2L130,0.8"></path><path id="path35" fill="#FFFFFF" d="M106.9,30h1.9V17.5h-1.9V30z M123.7,22l-2.1,5.4h-0.1l-2.2-5.4h-2l3.3,7.6l-1.9,4.2h1.9l5.1-11.8 L123.7,22z M113.2,28.6c-0.6,0-1.5-0.3-1.5-1.1c0-1,1.1-1.3,2-1.3c0.8,0,1.2,0.2,1.7,0.4C115.2,27.8,114.2,28.6,113.2,28.6 L113.2,28.6z M113.4,21.7c-1.4,0-2.7,0.6-3.3,1.9l1.7,0.7c0.4-0.7,1-0.9,1.7-0.9c1,0,1.9,0.6,2,1.6v0.1c-0.3-0.2-1.1-0.5-1.9-0.5 c-1.8,0-3.6,1-3.6,2.8c0,1.7,1.5,2.8,3.1,2.8c1.3,0,1.9-0.6,2.4-1.2h0.1v1h1.8v-4.8C117.2,23,115.5,21.7,113.4,21.7L113.4,21.7z M101.9,23.5h-2.7v-4.3h2.7c1.4,0,2.2,1.2,2.2,2.1C104,22.3,103.2,23.5,101.9,23.5z M101.8,17.5h-4.5V30h1.9v-4.7h2.6 c2.1,0,4.1-1.5,4.1-3.9C105.9,19,103.9,17.5,101.8,17.5L101.8,17.5z M77.4,28.6c-1.3,0-2.4-1.1-2.4-2.6c0-1.5,1.1-2.6,2.4-2.6 c1.3,0,2.3,1.1,2.3,2.6C79.7,27.5,78.7,28.6,77.4,28.6z M79.6,22.7L79.6,22.7c-0.5-0.5-1.3-1-2.3-1c-2.1,0-4.1,1.9-4.1,4.3 c0,2.4,1.9,4.2,4.1,4.2c1,0,1.8-0.5,2.2-1h0.1v0.6c0,1.6-0.9,2.5-2.3,2.5c-1.1,0-1.9-0.8-2.1-1.5l-1.6,0.7c0.5,1.1,1.7,2.5,3.8,2.5 c2.2,0,4-1.3,4-4.4V22h-1.8L79.6,22.7z M82.6,30h1.9V17.5h-1.9V30z M87.2,25.9c0-1.6,1.3-2.5,2.2-2.5c0.7,0,1.4,0.4,1.6,0.9 L87.2,25.9z M93,24.5c-0.4-0.9-1.4-2.7-3.6-2.7c-2.2,0-4,1.7-4,4.3c0,2.4,1.8,4.3,4.2,4.3c1.9,0,3.1-1.2,3.5-1.9l-1.4-1 c-0.5,0.7-1.1,1.2-2.1,1.2c-0.9,0-1.6-0.4-2.1-1.3l5.7-2.4L93,24.5z M47.7,23.1v1.8h4.3c-0.1,1-0.5,1.8-1,2.3 c-0.6,0.6-1.6,1.3-3.3,1.3c-2.7,0-4.7-2.1-4.7-4.8s2.1-4.8,4.7-4.8c1.4,0,2.5,0.6,3.3,1.3l1.3-1.3c-1.1-1-2.5-1.8-4.5-1.8 c-3.6,0-6.7,3-6.7,6.6c0,3.6,3.1,6.6,6.7,6.6c2,0,3.4-0.6,4.6-1.9c1.2-1.2,1.6-2.9,1.6-4.2c0-0.4,0-0.8-0.1-1.1L47.7,23.1z M58.8,28.6c-1.3,0-2.4-1.1-2.4-2.6c0-1.5,1.1-2.6,2.4-2.6c1.3,0,2.4,1,2.4,2.6C61.2,27.5,60.1,28.6,58.8,28.6z M58.8,21.8 c-2.4,0-4.3,1.8-4.3,4.3c0,2.4,1.9,4.3,4.3,4.3c2.4,0,4.3-1.8,4.3-4.3C63.1,23.5,61.2,21.8,58.8,21.8z M68.1,28.6 c-1.3,0-2.4-1.1-2.4-2.6c0-1.5,1.1-2.6,2.4-2.6c1.3,0,2.4,1,2.4,2.6C70.5,27.5,69.4,28.6,68.1,28.6z M68.1,21.8 c-2.4,0-4.3,1.8-4.3,4.3c0,2.4,1.9,4.3,4.3,4.3c2.4,0,4.3-1.8,4.3-4.3C72.4,23.5,70.5,21.8,68.1,21.8"></path><path id="path37" fill="#EB3131" d="M20.7,19.4L10.1,30.7c0,0,0,0,0,0c0.3,1.2,1.4,2.1,2.8,2.1c0.5,0,1-0.1,1.5-0.4l0,0l12-6.9 L20.7,19.4"></path><path id="path39" fill="#F6B60B" d="M31.5,17.5L31.5,17.5l-5.2-3l-5.8,5.2l5.8,5.8l5.1-3c0.9-0.5,1.5-1.4,1.5-2.5 C33,18.9,32.4,18,31.5,17.5"></path><path id="path41" fill="#5778C5" d="M10.1,9.3C10,9.5,10,9.8,10,10v20c0,0.3,0,0.5,0.1,0.7l11-11L10.1,9.3"></path><path id="path43" fill="#3BAD49" d="M20.8,20l5.5-5.5l-12-6.9c-0.4-0.3-0.9-0.4-1.5-0.4c-1.3,0-2.5,0.9-2.8,2.1c0,0,0,0,0,0L20.8,20"></path><path id="path33" d="M47.4,9.8h-2.9v0.7h2.2c-0.1,0.6-0.3,1.1-0.7,1.4c-0.4,0.3-0.9,0.5-1.5,0.5c-0.7,0-1.2-0.2-1.7-0.7 c-0.4-0.5-0.7-1-0.7-1.7c0-0.7,0.2-1.3,0.7-1.7c0.5-0.5,1-0.7,1.7-0.7c0.3,0,0.7,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.7,0.5l0.6-0.6 c-0.3-0.3-0.6-0.5-1-0.7c-0.4-0.2-0.8-0.2-1.3-0.2c-0.9,0-1.6,0.3-2.2,0.9c-0.6,0.6-0.9,1.4-0.9,2.2s0.3,1.6,0.9,2.2 c0.6,0.6,1.3,0.9,2.2,0.9c0.9,0,1.6-0.3,2.2-0.9c0.5-0.5,0.7-1.2,0.7-2C47.4,10.1,47.4,9.9,47.4,9.8L47.4,9.8z M48.5,7v6H52v-0.7 h-2.7v-1.9h2.5V9.6h-2.5V7.7H52V7L48.5,7z M57,7.7V7h-4.1v0.7h1.7V13h0.8V7.7L57,7.7z M60.7,7h-0.8v6h0.8V7z M65.8,7.7V7h-4.1v0.7 h1.7V13h0.8V7.7L65.8,7.7z M73.6,7.8c-0.6-0.6-1.3-0.9-2.2-0.9c-0.9,0-1.6,0.3-2.2,0.9c-0.6,0.6-0.9,1.3-0.9,2.2s0.3,1.6,0.9,2.2 c0.6,0.6,1.3,0.9,2.2,0.9c0.9,0,1.6-0.3,2.2-0.9c0.6-0.6,0.9-1.3,0.9-2.2C74.5,9.1,74.2,8.4,73.6,7.8z M69.8,8.3 c0.4-0.5,1-0.7,1.6-0.7c0.7,0,1.2,0.2,1.6,0.7c0.4,0.4,0.7,1,0.7,1.7c0,0.7-0.2,1.3-0.7,1.7c-0.4,0.5-1,0.7-1.6,0.7 c-0.7,0-1.2-0.2-1.6-0.7c-0.4-0.5-0.7-1-0.7-1.7C69.1,9.3,69.3,8.7,69.8,8.3z M76.3,9.3l0-1.2h0l3.1,4.9h0.8V7h-0.8v3.5l0,1.2h0 L76.5,7h-0.9v6h0.8V9.3z" style="fill: rgb(255, 255, 255); stroke: rgb(255, 255, 255); stroke-width: 0.2; stroke-miterlimit: 7.5;"></path></svg></button></div></div></div><div class="bb-footer__footer-section"><div class="bb-footer__footer-section--disclaimer"><p><span class="brand-name">Serve</span><sup>®</sup> American Express<sup>®</sup> Jackson Hewitt<sup>®</sup> Prepaid Debit Account and card are issued by American Express Travel Related Services Company, Inc., 200 Vesey Street, New York, NY 10285. American Express Travel Related Services Company, Inc. is licensed as a money transmitter by the New York State Department of Financial Services. NMLS ID# 913828. <a class="bb-footer__disclaimer-link" href="https://www.americanexpress.com/us/prepaid/state-licensing.html" target="_blank" rel="noopener noreferrer" data-testid="">Click here</a> for information about addressing complaints regarding American Express's money services business, lists of American Express's money services business licenses, and other disclosures.</p><p><a class="bb-footer__disclaimer-link" href="https://www.serve.com/jacksonhewitt/faqs/stay-in-the-know/fdic-information" target="_blank" rel="noopener noreferrer" data-testid="">Click here</a> for information regarding FDIC pass-through insurance on the <span class="brand-name">Serve</span> Prepaid Debit Accounts.</p><p>Users of the <span class="brand-name">Serve</span> Prepaid Debit Accounts are subject to American Express's <a class="bb-footer__disclaimer-link" href="https://www.americanexpress.com/us/company/privacy-center/online-privacy-disclosures/#privacy-notices" target="_blank" rel="noopener noreferrer" data-testid="">Privacy Statement</a>.</p><p>Apple and the Apple logo are trademarks of Apple Inc., registered in the U.S. and other countries. App Store is a service mark of Apple Inc.</p><p>Android and Google Play are trademarks of Google Inc.</p><p>All users of our online services agree to be bound by the <a target="_blank" rel="noopener noreferrer" href="https://www.fscarddisclosures.com/InComm_Terms_of_Use_Reloadable_and_Digital_Banking.pdf" class="bb-footer__disclaimer-link">Terms of Use</a>.</p><p>Copyright ©2024 InComm Payments™. All Rights Reserved. All trademarks are the property of their respective owners.</p></div></div></footer></div> <div class="bb-aside-details"><button class="bb-aside-details__close-button" type="button" data-testid="bb-aside-details__close-button"><span class="sr-only">Close Modal</span><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true"><path fill="currentColor" d="M24.27,0H3.73A3.73,3.73,0,0,0,0,3.73V24.27A3.73,3.73,0,0,0,3.73,28H24.27A3.73,3.73,0,0,0,28,24.27V3.73A3.73,3.73,0,0,0,24.27,0Zm2.51,24.35a2.43,2.43,0,0,1-2.43,2.43H3.65a2.43,2.43,0,0,1-2.43-2.43V3.65A2.43,2.43,0,0,1,3.65,1.22h20.7a2.43,2.43,0,0,1,2.43,2.43Zm-6.29-16L14.85,14l5.64,5.65a.6.6,0,0,1,0,.86.62.62,0,0,1-.87,0L14,14.85,8.34,20.49a.62.62,0,0,1-.87,0,.6.6,0,0,1,0-.86L13.11,14,7.47,8.34a.62.62,0,1,1,.87-.87L14,13.12l5.64-5.65a.62.62,0,1,1,.87.87Z"></path></svg></button></div></div></div></div></div><div class="bb-toast__container"><div></div></div></div></div><div class="ReactModalPortal"></div><div id="batBeacon747643606976" style="width: 0px; height: 0px; display: none; visibility: hidden;"><img id="batBeacon290455979151" width="0" height="0" alt="" src="https://bat.bing.com/action/0?ti=4021694&tm=al001&Ver=2&mid=13aa8fe5-bab4-451e-9987-aa61f64c96f8&bo=1&sid=412864c0a1ea11efad7aedad7fa42c93&vid=03cacde005fd11efbc7e512868e9ff3a&vids=0&msclkid=N&pi=0&lg=en-US&sw=570&sh=320&sc=24&tl=Login%20-%20Serve&p=https%3A%2F%2Fsecure.serve.com%2Flogin&r=https%3A%2F%2Fsecure.serve.com%2Faccounts%2Feeab59d6f1b040a2a897253f037c7003&lt=9100&pt=1731538145692,,,,,54,54,54,54,54,,101,115,120,1954,5421,8997,9100,,,&pn=2,0&mtp=5&evt=pageLoad&sv=1&cdb=AQAA&rn=674134" style="width: 0px; height: 0px; display: none; visibility: hidden;"></div></body></html>
------MultipartBoundary--MBguEsIH9NdmdBo0DEdlQ4TekOARcuVdhthpQR0UMQ----
Content-Type: text/css
Content-Transfer-Encoding: binary
Content-Location: cid:css-484a5e46-2589-454d-8788-1fba711fedb7@mhtml.blink
<label for="file">File progress:</label>
<progress id="file" max="100" value="100">100%</progress>
@charset "utf-8";
.react-skeleton-load { line-height: 1; display: inline-block; overflow: hidden; position: relative; }
.react-skeleton-load.animated::before { content: ""; position: absolute; height: 100%; width: 500px; top: 0px; left: -500px; background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)); animation: 1.2s ease-in-out 0s infinite normal none running progress; }
@keyframes progress { <label for="file">File progress:</label>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
<progress id="file" max="100" value="100">100%</progress>
0% { left: -500px; }
100% { left: 100%; }
}
------MultipartBoundary--MBguEsIH9NdmdBo0DEdlQ4TekOARcuVdhthpQR0UMQ----
Content-Type: text/css
Content-Transfer-Encoding: binary
Content-Location: https://secure.serve.com/static/css/main.38824f82.css
main
h1 { font-size: 2em; margin: 0.67em 0px; }
hr { box-sizing: content-box; height: 0px; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
a { background-color: transparent; }
abbr[title] { border-bottom: none; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0px; }
button, input { overflow: visible; }
<label for="file">File progress:</label>
<progress id="file" max="100" value="100">100%</progress>
button, select { text-transform: none; }
[type="button"], [type="reset"], [type="submit"], button { appearance: button; }
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0px; white-space: normal; }
progress
<label for="file">File progress:</label>
<progress id="file" max="100" value="100">100%</progress>
textarea
file-upload-button <label for="file">File progress:</label>
<progress id="file" max="100" value="100">100%</progress>
details
summary
template
.DayPicker
.DayPicker-wrapper
.DayPicker-Months
.DayPicker-Month
.DayPicker-NavButton
.DayPicker-NavButton:hover
.DayPicker-NavButton--prev background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC"); margin-right: 1.5em; }
.DayPicker-NavButton--next background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg
.DayPicker-NavButton--interaction
.DayPicker-Caption display: table-caption; margin-bottom: 0.5em; padding: 0px 0.5em; text-align: left; }
.DayPicker-Caption > div { font-size: 1.15em; font-weight: 500; }
.DayPicker-Weekdays { display: table-header-group; margin-top: 1em; }
.DayPicker-WeekdaysRow { display: table-row; }
.DayPicker-Weekday { color: rgb(139, 152, 152); display: table-cell; font-size: 0.875em; padding: 0.5em; text-align: center; }
.DayPicker-Weekday abbr
.DayPicker-Body
.DayPicker-Week
.DayPicker-Day
.DayPicker-Day, .DayPicker-WeekNumber
.DayPicker-WeekNumber
.DayPicker-.DayPicker-Day
.DayPicker-Footer
.DayPicker-TodayButton
.DayPicker-Day--today
.DayPicker-Day--outside { color: rgb(139, 152, 152); cursor: default; }
.DayPicker-Day--disabled { color: rgb(220, 224, 224); cursor: default; }
.DayPicker-Day--sunday { background-color: rgb(247, 248, 248); }
.DayPicker-Day--sunday:not(.DayPicker-Day--today) { color: rgb(220, 224, 224); }
.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) { background-color: rgb(74, 144, 226); color: rgb(240, 248, 255); position: relative; }
.DayPicker-Day--selected
.DayPicker:n .DayPicker-Day::(.DayPicker-Day--selected):(.DayPicker-Day--outside):hover
.DayPickerInput
.DayPickerInput-OverlayWrapper
.DayPickerInput-Overlay { background: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px; left: 0px; position: absolute; z-index: 1; }
.slick-slider { -webkit-tap-highlight-color: transparent; box-sizing: border-box; touch-action: pan-y; user-select: none; }
.slick-list, .slick-slider { display: block; position: relative; }
.slick-list
.slick-list:focus
.slick-list.dragging
.slick-slider .slick-list, .slick-slider .slick-track { transform: translateZ(0px); }
.slick-track { display: block; left: 0px; margin-left: auto; margin-right: auto; position: relative; top: 0px; }
.slick-track::after, .slick-track::before { content: ""; display: table; }
.slick-track::after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide { display: none; float: left; height: 100%; min-height: 1px; }
[dir="rtl"] .slick-slide { float: right; }
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide
.slick-vertical .slick-slide { border: 1px solid transparent; display: block; height: auto; }
.slick-arrow.slick
.slick-loading .slick-list { background: url("data:image/gif;base64,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") 50% center no-repeat rgb(255, 255, 255); }
@font-face { font-family: slick; font-style: normal; font-weight: 400; src: url("/static/media/slick.295183786cd8a1389865.woff") format("woff"), url("/static/media/slick.c94f7671dcc99dce43e2.ttf") format("truetype"); }
.slick-next, .slick-prev { border: none; cursor: pointer; display: block; font-size: 0px; height: 20px; line-height: 0; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 20px; }
.slick-next, .slick-next:focus, .slick-next:hover, .slick-prev, .slick-prev:focus, .slick-prev:hover { background: transparent; color: transparent; outline: none; }
.slick-next:focus::before, .slick-next:hover::before, .slick-prev:focus::before, .slick-prev:hover::before { opacity: 1; }
.slick-next.slick-disabled::before, .slick-prev.slick-disabled::before { opacity: 0.25; }
.slick-next::before, .slick-prev::before { -webkit-font-smoothing: antialiased; color: rgb(255, 255, 255); font-family: slick; font-size: 20px; line-height: 1; opacity: 0.75; }
.slick-prev
.slick-prev
.slick-prev::beforslick-prev::before
.slick-next .slick-next
.slick-next::before { content: "→"; }
[dir="rtl"] .slick-next::before { content: "←"; }
.slick-dotted.slick-slider { margin-bottom: 30px; }
.slick-dots { bottom: -25px; display: block; list-style: none; margin: 0px; padding: 0px; position: absolute; text-align: center; width: 100%; }
.slick-dots li { display: inline-block; margin: 0px 5px; padding: 0px; position: relative; }
.slick-dots li, .slick-dots li button { cursor: pointer; height: 20px; width: 20px; }
.slick-dots li button { background: transparent; border: 0px; color: transparent; display: block; font-size: 0px; line-height: 0; outline: none; padding: 5px; }
.slick-dots li button:focus, .slick-dots li button:hover { outline: none; }
.slick-dots li button:focus::before, .slick-dots li button:hover::before { opacity: 1; }
.slick-dots li button::before { -webkit-font-smoothing: antialiased; color: rgb(0, 0, 0); content: "•"; font-family: slick; font-size: 6px; height: 20px; left: 0px; line-height: 20px; opacity: 0.25; position: absolute; text-align: center; top: 0px; width: 20px; }
.slick-dots li.slick-active button::before { color: rgb(0, 0, 0); opacity: 0.75; }
*, ::after, ::before { box-sizing: border-box; }
body { -webkit-font-smoothing: antialiased; color: rgb(0, 40, 85); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; line-height: 1.5; margin: 0px; padding-top: 3.75rem; }
body.has-side-nav { background-color: rgb(250, 250, 250); padding: 0px 0px 5.25rem; }
body.ReactModal__Body--open { overflow: hidden; }
body.no-heading { padding-top: 0px; }
@media (min-width: 768px) {
body { padding-top: 5.125rem; }
body.has-side-nav { padding: 0px 0px 0px 5.5rem; }
body.no-heading { padding-top: 0px; }
}
@media (min-width: 1200px) {
body.has-side-nav { padding: 0px 0px 0px 15.75rem; }
}
body.font-loaded { font-family: Apercu, sans-serif; }
.sr-only { clip: rect(0px, 0px, 0px, 0px); border: 0px; height: 1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 1px; }
.img-fluid { display: block; height: auto; max-width: 100%; width: 100%; }
.d-flex { display: flex; }
.d-block { display: block; }
.d-block--important { display: block !important; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.space-between { justify-content: space-between; }
.align-end { align-items: flex-end; }
p { margin: 0px; }
.btn-link { appearance: none; background-color: transparent; border: 1px solid transparent; color: rgb(3, 82, 212); font-family: inherit; font-size: inherit; font-weight: 400; outline: none; padding: 0px; position: relative; text-decoration: none; transition: color 0.2s ease-in-out; will-change: color; cursor: pointer !important; }
.btn-link:hover { color: rgb(0, 40, 85); text-decoration: underline; }
.btn-link[data-keyboard-focus="true"]:focus { outline: none; }
.btn-link[data-keyboard-focus="true"]:focus::after { background-color: transparent; border: 0.125rem dashed rgb(139, 18, 245); border-radius: 0.3125rem; content: ""; display: block; height: calc(100% + 1.5rem); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: calc(100% + 1.5rem); z-index: inherit; }
.btn-link--no-bold { appearance: none; background-color: transparent; border: 1px solid transparent; color: rgb(3, 82, 212); font-family: inherit; font-size: inherit; font-weight: 400; outline: none; padding: 0px; position: relative; text-decoration: none; transition: color 0.2s ease-in-out; will-change: color; cursor: pointer !important; }
.btn-link--no-bold:hover { color: rgb(0, 40, 85); text-decoration: underline; }
.btn-link--no-bold[data-keyboard-focus="true"]:focus { outline: none; }
.btn-link--no-bold[data-keyboard-focus="true"]:focus::after { background-color: transparent; border: 0.125rem dashed rgb(139, 18, 245); border-radius: 0.3125rem; content: ""; display: block; height: calc(100% + 1.5rem); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: calc(100% + 1.5rem); z-index: inherit; }
a[href^="tel:"] { appearance: none; background-color: transparent; border: 1px solid transparent; color: rgb(3, 82, 212); font-family: inherit; font-size: inherit; font-weight: 400; outline: none; padding: 0px; position: relative; text-decoration: none; transition: color 0.2s ease-in-out; will-change: color; cursor: pointer !important; }
a[href^="tel:"]:hover { color: rgb(0, 40, 85); text-decoration: underline; }
a[href^="tel:"][data-keyboard-focus="true"]:focus { outline: none; }
a[href^="tel:"][data-keyboard-focus="true"]:focus::after { background-color: transparent; border: 0.125rem dashed rgb(139, 18, 245); border-radius: 0.3125rem; content: ""; display: block; height: calc(100% + 1.5rem); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: calc(100% + 1.5rem); z-index: inherit; }
@media (min-width: 768px) {
a[href^="tel:"] { color: rgb(0, 40, 85); pointer-events: none; }
}
.p-relative { position: relative; }
.text-capitalized { text-transform: capitalize; }
.text-uppercase { text-transform: uppercase; }
.text-left { text-align: left; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-overflow { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.text-nowrap, .text-overflow { white-space: nowrap; }
.text-break { white-space: normal !important; word-break: break-word !important; }
.hidden { display: none; }
fieldset { border: 0px; margin-inline: 0px; padding: 0px; }
.screen-reader-title { border: 0px; height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap; width: 1px; }
.disclaimer { color: rgb(112, 112, 112); font-size: 0.75rem; font-weight: 400; line-height: 1.83; margin-top: 3rem; }
.box-shadow-none { box-shadow: none !important; }
.semibold { font-weight: 500 !important; }
.bold { font-weight: 600 !important; }
.italic { font-style: italic !important; }
.js-focus-title { outline: none; }
.grecaptcha-badge { display: none !important; }
.text-lowercase { text-transform: lowercase; }
.reload-click-animate { display: none; }
.m-0 { margin: 0px !important; }
.p-0 { padding: 0px !important; }
.mt-0 { margin-top: 0px !important; }
.mr-0 { margin-right: 0px !important; }
.mb-0 { margin-bottom: 0px !important; }
.ml-0 { margin-left: 0px !important; }
.pt-0 { padding-top: 0px !important; }
.pr-0 { padding-right: 0px !important; }
.pb-0 { padding-bottom: 0px !important; }
.pl-0, .px-0 { padding-left: 0px !important; }
.px-0 { padding-right: 0px !important; }
.py-0 { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0 { margin-left: 0px !important; margin-right: 0px !important; }
.my-0 { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5 { margin: 0.5rem !important; }
.p-pt5 { padding: 0.5rem !important; }
.mt-pt5 { margin-top: 0.5rem !important; }
.mr-pt5 { margin-right: 0.5rem !important; }
.mb-pt5 { margin-bottom: 0.5rem !important; }
.ml-pt5 { margin-left: 0.5rem !important; }
.pt-pt5 { padding-top: 0.5rem !important; }
.pr-pt5 { padding-right: 0.5rem !important; }
.pb-pt5 { padding-bottom: 0.5rem !important; }
.pl-pt5, .px-pt5 { padding-left: 0.5rem !important; }
.px-pt5 { padding-right: 0.5rem !important; }
.py-pt5 { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5 { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1 { margin: 1rem !important; }
.p-1 { padding: 1rem !important; }
.mt-1 { margin-top: 1rem !important; }
.mr-1 { margin-right: 1rem !important; }
.mb-1 { margin-bottom: 1rem !important; }
.ml-1 { margin-left: 1rem !important; }
.pt-1 { padding-top: 1rem !important; }
.pr-1 { padding-right: 1rem !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pl-1, .px-1 { padding-left: 1rem !important; }
.px-1 { padding-right: 1rem !important; }
.py-1 { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.mx-1 { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-1 { margin-bottom: 1rem !important; margin-top: 1rem !important; }
.m-2 { margin: 2rem !important; }
.p-2 { padding: 2rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mr-2 { margin-right: 2rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.ml-2 { margin-left: 2rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pr-2 { padding-right: 2rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pl-2, .px-2 { padding-left: 2rem !important; }
.px-2 { padding-right: 2rem !important; }
.py-2 { padding-bottom: 2rem !important; padding-top: 2rem !important; }
.mx-2 { margin-left: 2rem !important; margin-right: 2rem !important; }
.my-2 { margin-bottom: 2rem !important; margin-top: 2rem !important; }
.m-3 { margin: 3rem !important; }
.p-3 { padding: 3rem !important; }
.mt-3 { margin-top: 3rem !important; }
.mr-3 { margin-right: 3rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.ml-3 { margin-left: 3rem !important; }
.pt-3 { padding-top: 3rem !important; }
.pr-3 { padding-right: 3rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pl-3, .px-3 { padding-left: 3rem !important; }
.px-3 { padding-right: 3rem !important; }
.py-3 { padding-bottom: 3rem !important; padding-top: 3rem !important; }
.mx-3 { margin-left: 3rem !important; margin-right: 3rem !important; }
.my-3 { margin-bottom: 3rem !important; margin-top: 3rem !important; }
.m-4 { margin: 4rem !important; }
.p-4 { padding: 4rem !important; }
.mt-4 { margin-top: 4rem !important; }
.mr-4 { margin-right: 4rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.ml-4 { margin-left: 4rem !important; }
.pt-4 { padding-top: 4rem !important; }
.pr-4 { padding-right: 4rem !important; }
.pb-4 { padding-bottom: 4rem !important; }
.pl-4, .px-4 { padding-left: 4rem !important; }
.px-4 { padding-right: 4rem !important; }
.py-4 { padding-bottom: 4rem !important; padding-top: 4rem !important; }
.mx-4 { margin-left: 4rem !important; margin-right: 4rem !important; }
.my-4 { margin-bottom: 4rem !important; margin-top: 4rem !important; }
.m-5 { margin: 5rem !important; }
.p-5 { padding: 5rem !important; }
.mt-5 { margin-top: 5rem !important; }
.mr-5 { margin-right: 5rem !important; }
.mb-5 { margin-bottom: 5rem !important; }
.ml-5 { margin-left: 5rem !important; }
.pt-5 { padding-top: 5rem !important; }
.pr-5 { padding-right: 5rem !important; }
.pb-5 { padding-bottom: 5rem !important; }
.pl-5, .px-5 { padding-left: 5rem !important; }
.px-5 { padding-right: 5rem !important; }
.py-5 { padding-bottom: 5rem !important; padding-top: 5rem !important; }
.mx-5 { margin-left: 5rem !important; margin-right: 5rem !important; }
.my-5 { margin-bottom: 5rem !important; margin-top: 5rem !important; }
@media (max-width: 767px) {<label for="file">File progress:</label>
<progress id="file" max="100" value="100">100%</progress>
.m-0--mobile-only { margin: 0px !important; }
.p-0--mobile-only { padding: 0px !important; }
.mt-0--mobile-only { margin-top: 0px !important; }
.mr-0--mobile-only { margin-right: 0px !important; }
.mb-0--mobile-only { margin-bottom: 0px !important; }
.ml-0--mobile-only { margin-left: 0px !important; }
.pt-0--mobile-only { padding-top: 0px !important; }
.pr-0--mobile-only { padding-right: 0px !important; }
.pb-0--mobile-only { padding-bottom: 0px !important; }
.pl-0--mobile-only, .px-0--mobile-only { padding-left: 0px !important; }
.px-0--mobile-only { padding-right: 0px !important; }
.py-0--mobile-only { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0--mobile-only { margin-left: 0px !important; margin-right: 0px !important; }
.my-0--mobile-only { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5--mobile-only { margin: 0.5rem !important; }
.p-pt5--mobile-only { padding: 0.5rem !important; }
.mt-pt5--mobile-only { margin-top: 0.5rem !important; }
.mr-pt5--mobile-only { margin-right: 0.5rem !important; }
.mb-pt5--mobile-only { margin-bottom: 0.5rem !important; }
.ml-pt5--mobile-only { margin-left: 0.5rem !important; }
.pt-pt5--mobile-only { padding-top: 0.5rem !important; }
.pr-pt5--mobile-only { padding-right: 0.5rem !important; }
.pb-pt5--mobile-only { padding-bottom: 0.5rem !important; }
.pl-pt5--mobile-only, .px-pt5--mobile-only { padding-left: 0.5rem !important; }
.px-pt5--mobile-only { padding-right: 0.5rem !important; }
.py-pt5--mobile-only { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5--mobile-only { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5--mobile-only { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1--mobile-only { margin: 1rem !important; }
.p-1--mobile-only { padding: 1rem !important; }
.mt-1--mobile-only { margin-top: 1rem !important; }
.mr-1--mobile-only { margin-right: 1rem !important; }
.mb-1--mobile-only { margin-bottom: 1rem !important; }
.ml-1--mobile-only { margin-left: 1rem !important; }
.pt-1--mobile-only { padding-top: 1rem !important; }
.pr-1--mobile-only { padding-right: 1rem !important; }
.pb-1--mobile-only { padding-bottom: 1rem !important; }
.pl-1--mobile-only, .px-1--mobile-only { padding-left: 1rem !important; }
.px-1--mobile-only { padding-right: 1rem !important; }
.py-1--mobile-only { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.mx-1--mobile-only { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-1--mobile-only { margin-bottom: 1rem !important; margin-top: 1rem !important; }
.m-2--mobile-only { margin: 2rem !important; }
.p-2--mobile-only { padding: 2rem !important; }
.mt-2--mobile-only { margin-top: 2rem !important; }
.mr-2--mobile-only { margin-right: 2rem !important; }
.mb-2--mobile-only { margin-bottom: 2rem !important; }
.ml-2--mobile-only { margin-left: 2rem !important; }
.pt-2--mobile-only { padding-top: 2rem !important; }
.pr-2--mobile-only { padding-right: 2rem !important; }
.pb-2--mobile-only { padding-bottom: 2rem !important; }
.pl-2--mobile-only, .px-2--mobile-only { padding-left: 2rem !important; }
.px-2--mobile-only { padding-right: 2rem !important; }
.py-2--mobile-only { padding-bottom: 2rem !important; padding-top: 2rem !important; }
.mx-2--mobile-only { margin-left: 2rem !important; margin-right: 2rem !important; }
.my-2--mobile-only { margin-bottom: 2rem !important; margin-top: 2rem !important; }
.m-3--mobile-only { margin: 3rem !important; }
.p-3--mobile-only { padding: 3rem !important; }
.mt-3--mobile-only { margin-top: 3rem !important; }
.mr-3--mobile-only { margin-right: 3rem !important; }
.mb-3--mobile-only { margin-bottom: 3rem !important; }
.ml-3--mobile-only { margin-left: 3rem !important; }
.pt-3--mobile-only { padding-top: 3rem !important; }
.pr-3--mobile-only { padding-right: 3rem !important; }
.pb-3--mobile-only { padding-bottom: 3rem !important; }
.pl-3--mobile-only, .px-3--mobile-only { padding-left: 3rem !important; }
.px-3--mobile-only { padding-right: 3rem !important; }
.py-3--mobile-only { padding-bottom: 3rem !important; padding-top: 3rem !important; }
.mx-3--mobile-only { margin-left: 3rem !important; margin-right: 3rem !important; }
.my-3--mobile-only { margin-bottom: 3rem !important; margin-top: 3rem !important; }
.m-4--mobile-only { margin: 4rem !important; }
.p-4--mobile-only { padding: 4rem !important; }
.mt-4--mobile-only { margin-top: 4rem !important; }
.mr-4--mobile-only { margin-right: 4rem !important; }
.mb-4--mobile-only { margin-bottom: 4rem !important; }
.ml-4--mobile-only { margin-left: 4rem !important; }
.pt-4--mobile-only { padding-top: 4rem !important; }
.pr-4--mobile-only { padding-right: 4rem !important; }
.pb-4--mobile-only { padding-bottom: 4rem !important; }
.pl-4--mobile-only, .px-4--mobile-only { padding-left: 4rem !important; }
.px-4--mobile-only { padding-right: 4rem !important; }
.py-4--mobile-only { padding-bottom: 4rem !important; padding-top: 4rem !important; }
.mx-4--mobile-only { margin-left: 4rem !important; margin-right: 4rem !important; }
.my-4--mobile-only { margin-bottom: 4rem !important; margin-top: 4rem !important; }
.m-5--mobile-only { margin: 5rem !important; }
.p-5--mobile-only { padding: 5rem !important; }
.mt-5--mobile-only { margin-top: 5rem !important; }
.mr-5--mobile-only { margin-right: 5rem !important; }
.mb-5--mobile-only { margin-bottom: 5rem !important; }
.ml-5--mobile-only { margin-left: 5rem !important; }
.pt-5--mobile-only { padding-top: 5rem !important; }
.pr-5--mobile-only { padding-right: 5rem !important; }
.pb-5--mobile-only { padding-bottom: 5rem !important; }
.pl-5--mobile-only, .px-5--mobile-only { padding-left: 5rem !important; }
.px-5--mobile-only { padding-right: 5rem !important; }
.py-5--mobile-only { padding-bottom: 5rem !important; padding-top: 5rem !important; }
.mx-5--mobile-only { margin-left: 5rem !important; margin-right: 5rem !important; }
.my-5--mobile-only { margin-bottom: 5rem !important; margin-top: 5rem !important; }
}
@media (min-width: 768px) {
.m-0--desktop { margin: 0px !important; }
.p-0--desktop { padding: 0px !important; }
.mt-0--desktop { margin-top: 0px !important; }
.mr-0--desktop { margin-right: 0px !important; }
.mb-0--desktop { margin-bottom: 0px !important; }
.ml-0--desktop { margin-left: 0px !important; }
.pt-0--desktop { padding-top: 0px !important; }
.pr-0--desktop { padding-right: 0px !important; }
.pb-0--desktop { padding-bottom: 0px !important; }
.pl-0--desktop, .px-0--desktop { padding-left: 0px !important; }
.px-0--desktop { padding-right: 0px !important; }
.py-0--desktop { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0--desktop { margin-left: 0px !important; margin-right: 0px !important; }
.my-0--desktop { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5--desktop { margin: 0.5rem !important; }
.p-pt5--desktop { padding: 0.5rem !important; }
.mt-pt5--desktop { margin-top: 0.5rem !important; }
.mr-pt5--desktop { margin-right: 0.5rem !important; }
.mb-pt5--desktop { margin-bottom: 0.5rem !important; }
.ml-pt5--desktop { margin-left: 0.5rem !important; }
.pt-pt5--desktop { padding-top: 0.5rem !important; }
.pr-pt5--desktop { padding-right: 0.5rem !important; }
.pb-pt5--desktop { padding-bottom: 0.5rem !important; }
.pl-pt5--desktop, .px-pt5--desktop { padding-left: 0.5rem !important; }
.px-pt5--desktop { padding-right: 0.5rem !important; }
.py-pt5--desktop { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5--desktop { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5--desktop { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1--desktop { margin: 1rem !important; }
.p-1--desktop { padding: 1rem !important; }
.mt-1--desktop { margin-top: 1rem !important; }
.mr-1--desktop { margin-right: 1rem !important; }
.mb-1--desktop { margin-bottom: 1rem !important; }
.ml-1--desktop { margin-left: 1rem !important; }
.pt-1--desktop { padding-top: 1rem !important; }
.pr-1--desktop { padding-right: 1rem !important; }
.pb-1--desktop { padding-bottom: 1rem !important; }
.pl-1--desktop, .px-1--desktop { padding-left: 1rem !important; }
.px-1--desktop { padding-right: 1rem !important; }
.py-1--desktop { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.mx-1--desktop { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-1--desktop { margin-bottom: 1rem !important; margin-top: 1rem !important; }
.m-2--desktop { margin: 2rem !important; }
.p-2--desktop { padding: 2rem !important; }
.mt-2--desktop { margin-top: 2rem !important; }
.mr-2--desktop { margin-right: 2rem !important; }
.mb-2--desktop { margin-bottom: 2rem !important; }
.ml-2--desktop { margin-left: 2rem !important; }
.pt-2--desktop { padding-top: 2rem !important; }
.pr-2--desktop { padding-right: 2rem !important; }
.pb-2--desktop { padding-bottom: 2rem !important; }
.pl-2--desktop, .px-2--desktop { padding-left: 2rem !important; }
.px-2--desktop { padding-right: 2rem !important; }
.py-2--desktop { padding-bottom: 2rem !important; padding-top: 2rem !important; }
.mx-2--desktop { margin-left: 2rem !important; margin-right: 2rem !important; }
.my-2--desktop { margin-bottom: 2rem !important; margin-top: 2rem !important; }
.m-3--desktop { margin: 3rem !important; }
.p-3--desktop { padding: 3rem !important; }
.mt-3--desktop { margin-top: 3rem !important; }
.mr-3--desktop { margin-right: 3rem !important; }
.mb-3--desktop { margin-bottom: 3rem !important; }
.ml-3--desktop { margin-left: 3rem !important; }
.pt-3--desktop { padding-top: 3rem !important; }
.pr-3--desktop { padding-right: 3rem !important; }
.pb-3--desktop { padding-bottom: 3rem !important; }
.pl-3--desktop, .px-3--desktop { padding-left: 3rem !important; }
.px-3--desktop { padding-right: 3rem !important; }
.py-3--desktop { padding-bottom: 3rem !important; padding-top: 3rem !important; }
.mx-3--desktop { margin-left: 3rem !important; margin-right: 3rem !important; }
.my-3--desktop { margin-bottom: 3rem !important; margin-top: 3rem !important; }
.m-4--desktop { margin: 4rem !important; }
.p-4--desktop { padding: 4rem !important; }
.mt-4--desktop { margin-top: 4rem !important; }
.mr-4--desktop { margin-right: 4rem !important; }
.mb-4--desktop { margin-bottom: 4rem !important; }
.ml-4--desktop { margin-left: 4rem !important; }
.pt-4--desktop { padding-top: 4rem !important; }
.pr-4--desktop { padding-right: 4rem !important; }
.pb-4--desktop { padding-bottom: 4rem !important; }
.pl-4--desktop, .px-4--desktop { padding-left: 4rem !important; }
.px-4--desktop { padding-right: 4rem !important; }
.py-4--desktop { padding-bottom: 4rem !important; padding-top: 4rem !important; }
.mx-4--desktop { margin-left: 4rem !important; margin-right: 4rem !important; }
.my-4--desktop { margin-bottom: 4rem !important; margin-top: 4rem !important; }
.m-5--desktop { margin: 5rem !important; }
.p-5--desktop { padding: 5rem !important; }
.mt-5--desktop { margin-top: 5rem !important; }
.mr-5--desktop { margin-right: 5rem !important; }
.mb-5--desktop { margin-bottom: 5rem !important; }
.ml-5--desktop { margin-left: 5rem !important; }
.pt-5--desktop { padding-top: 5rem !important; }
.pr-5--desktop { padding-right: 5rem !important; }
.pb-5--desktop { padding-bottom: 5rem !important; }
.pl-5--desktop, .px-5--desktop { padding-left: 5rem !important; }
.px-5--desktop { padding-right: 5rem !important; }
.py-5--desktop { padding-bottom: 5rem !important; padding-top: 5rem !important; }
.mx-5--desktop { margin-left: 5rem !important; margin-right: 5rem !important; }
.my-5--desktop { margin-bottom: 5rem !important; margin-top: 5rem !important; }
}
@media (min-width: 768px) and (max-width: 1200px) {
.m-0--desktop-to-tablet { margin: 0px !important; }
.p-0--desktop-to-tablet { padding: 0px !important; }
.mt-0--desktop-to-tablet { margin-top: 0px !important; }
.mr-0--desktop-to-tablet { margin-right: 0px !important; }
.mb-0--desktop-to-tablet { margin-bottom: 0px !important; }
.ml-0--desktop-to-tablet { margin-left: 0px !important; }
.pt-0--desktop-to-tablet { padding-top: 0px !important; }
.pr-0--desktop-to-tablet { padding-right: 0px !important; }
.pb-0--desktop-to-tablet { padding-bottom: 0px !important; }
.pl-0--desktop-to-tablet { padding-left: 0px !important; }
.px-0--desktop-to-tablet { padding-left: 0px !important; padding-right: 0px !important; }
.py-0--desktop-to-tablet { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0--desktop-to-tablet { margin-left: 0px !important; margin-right: 0px !important; }
.my-0--desktop-to-tablet { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5--desktop-to-tablet { margin: 0.5rem !important; }
.p-pt5--desktop-to-tablet { padding: 0.5rem !important; }
.mt-pt5--desktop-to-tablet { margin-top: 0.5rem !important; }
.mr-pt5--desktop-to-tablet { margin-right: 0.5rem !important; }
.mb-pt5--desktop-to-tablet { margin-bottom: 0.5rem !important; }
.ml-pt5--desktop-to-tablet { margin-left: 0.5rem !important; }
.pt-pt5--desktop-to-tablet { padding-top: 0.5rem !important; }
.pr-pt5--desktop-to-tablet { padding-right: 0.5rem !important; }
.pb-pt5--desktop-to-tablet { padding-bottom: 0.5rem !important; }
.pl-pt5--desktop-to-tablet, .px-pt5--desktop-to-tablet { padding-left: 0.5rem !important; }
.px-pt5--desktop-to-tablet { padding-right: 0.5rem !important; }
.py-pt5--desktop-to-tablet { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5--desktop-to-tablet { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5--desktop-to-tablet { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1--desktop-to-tablet { margin: 1rem !important; }
.p-1--desktop-to-tablet { padding: 1rem !important; }
.mt-1--desktop-to-tablet { margin-top: 1rem !important; }
.mr-1--desktop-to-tablet { margin-right: 1rem !important; }
.mb-1--desktop-to-tablet { margin-bottom: 1rem !important; }
.ml-1--desktop-to-tablet { margin-left: 1rem !important; }
.pt-1--desktop-to-tablet { padding-top: 1rem !important; }
.pr-1--desktop-to-tablet { padding-right: 1rem !important; }
.pb-1--desktop-to-tablet { padding-bottom: 1rem !important; }
.pl-1--desktop-to-tablet, .px-1--desktop-to-tablet { padding-left: 1rem !important; }
.px-1--desktop-to-tablet { padding-right: 1rem !important; }
.py-1--desktop-to-tablet { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.mx-1--desktop-to-tablet { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-1--desktop-to-tablet { margin-bottom: 1rem !important; margin-top: 1rem !important; }
.m-2--desktop-to-tablet { margin: 2rem !important; }
.p-2--desktop-to-tablet { padding: 2rem !important; }
.mt-2--desktop-to-tablet { margin-top: 2rem !important; }
.mr-2--desktop-to-tablet { margin-right: 2rem !important; }
.mb-2--desktop-to-tablet { margin-bottom: 2rem !important; }
.ml-2--desktop-to-tablet { margin-left: 2rem !important; }
.pt-2--desktop-to-tablet { padding-top: 2rem !important; }
.pr-2--desktop-to-tablet { padding-right: 2rem !important; }
.pb-2--desktop-to-tablet { padding-bottom: 2rem !important; }
.pl-2--desktop-to-tablet, .px-2--desktop-to-tablet { padding-left: 2rem !important; }
.px-2--desktop-to-tablet { padding-right: 2rem !important; }
.py-2--desktop-to-tablet { padding-bottom: 2rem !important; padding-top: 2rem !important; }
.mx-2--desktop-to-tablet { margin-left: 2rem !important; margin-right: 2rem !important; }
.my-2--desktop-to-tablet { margin-bottom: 2rem !important; margin-top: 2rem !important; }
.m-3--desktop-to-tablet { margin: 3rem !important; }
.p-3--desktop-to-tablet { padding: 3rem !important; }
.mt-3--desktop-to-tablet { margin-top: 3rem !important; }
.mr-3--desktop-to-tablet { margin-right: 3rem !important; }
.mb-3--desktop-to-tablet { margin-bottom: 3rem !important; }
.ml-3--desktop-to-tablet { margin-left: 3rem !important; }
.pt-3--desktop-to-tablet { padding-top: 3rem !important; }
.pr-3--desktop-to-tablet { padding-right: 3rem !important; }
.pb-3--desktop-to-tablet { padding-bottom: 3rem !important; }
.pl-3--desktop-to-tablet, .px-3--desktop-to-tablet { padding-left: 3rem !important; }
.px-3--desktop-to-tablet { padding-right: 3rem !important; }
.py-3--desktop-to-tablet { padding-bottom: 3rem !important; padding-top: 3rem !important; }
.mx-3--desktop-to-tablet { margin-left: 3rem !important; margin-right: 3rem !important; }
.my-3--desktop-to-tablet { margin-bottom: 3rem !important; margin-top: 3rem !important; }
.m-4--desktop-to-tablet { margin: 4rem !important; }
.p-4--desktop-to-tablet { padding: 4rem !important; }
.mt-4--desktop-to-tablet { margin-top: 4rem !important; }
.mr-4--desktop-to-tablet { margin-right: 4rem !important; }
.mb-4--desktop-to-tablet { margin-bottom: 4rem !important; }
.ml-4--desktop-to-tablet { margin-left: 4rem !important; }
.pt-4--desktop-to-tablet { padding-top: 4rem !important; }
.pr-4--desktop-to-tablet { padding-right: 4rem !important; }
.pb-4--desktop-to-tablet { padding-bottom: 4rem !important; }
.pl-4--desktop-to-tablet, .px-4--desktop-to-tablet { padding-left: 4rem !important; }
.px-4--desktop-to-tablet { padding-right: 4rem !important; }
.py-4--desktop-to-tablet { padding-bottom: 4rem !important; padding-top: 4rem !important; }
.mx-4--desktop-to-tablet { margin-left: 4rem !important; margin-right: 4rem !important; }
.my-4--desktop-to-tablet { margin-bottom: 4rem !important; margin-top: 4rem !important; }
.m-5--desktop-to-tablet { margin: 5rem !important; }
.p-5--desktop-to-tablet { padding: 5rem !important; }
.mt-5--desktop-to-tablet { margin-top: 5rem !important; }
.mr-5--desktop-to-tablet { margin-right: 5rem !important; }
.mb-5--desktop-to-tablet { margin-bottom: 5rem !important; }
.ml-5--desktop-to-tablet { margin-left: 5rem !important; }
.pt-5--desktop-to-tablet { padding-top: 5rem !important; }
.pr-5--desktop-to-tablet { padding-right: 5rem !important; }
.pb-5--desktop-to-tablet { padding-bottom: 5rem !important; }
.pl-5--desktop-to-tablet, .px-5--desktop-to-tablet { padding-left: 5rem !important; }
.px-5--desktop-to-tablet { padding-right: 5rem !important; }
.py-5--desktop-to-tablet { padding-bottom: 5rem !important; padding-top: 5rem !important; }
.mx-5--desktop-to-tablet { margin-left: 5rem !important; margin-right: 5rem !important; }
.my-5--desktop-to-tablet { margin-bottom: 5rem !important; margin-top: 5rem !important; }
}
@media (min-width: 1024px) {
.m-0--desktop-md { margin: 0px !important; }
.p-0--desktop-md { padding: 0px !important; }
.mt-0--desktop-md { margin-top: 0px !important; }
.mr-0--desktop-md { margin-right: 0px !important; }
.mb-0--desktop-md { margin-bottom: 0px !important; }
.ml-0--desktop-md { margin-left: 0px !important; }
.pt-0--desktop-md { padding-top: 0px !important; }
.pr-0--desktop-md { padding-right: 0px !important; }
.pb-0--desktop-md { padding-bottom: 0px !important; }
.pl-0--desktop-md, .px-0--desktop-md { padding-left: 0px !important; }
.px-0--desktop-md { padding-right: 0px !important; }
.py-0--desktop-md { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0--desktop-md { margin-left: 0px !important; margin-right: 0px !important; }
.my-0--desktop-md { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5--desktop-md { margin: 0.5rem !important; }
.p-pt5--desktop-md { padding: 0.5rem !important; }
.mt-pt5--desktop-md { margin-top: 0.5rem !important; }
.mr-pt5--desktop-md { margin-right: 0.5rem !important; }
.mb-pt5--desktop-md { margin-bottom: 0.5rem !important; }
.ml-pt5--desktop-md { margin-left: 0.5rem !important; }
.pt-pt5--desktop-md { padding-top: 0.5rem !important; }
.pr-pt5--desktop-md { padding-right: 0.5rem !important; }
.pb-pt5--desktop-md { padding-bottom: 0.5rem !important; }
.pl-pt5--desktop-md, .px-pt5--desktop-md { padding-left: 0.5rem !important; }
.px-pt5--desktop-md { padding-right: 0.5rem !important; }
.py-pt5--desktop-md { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5--desktop-md { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5--desktop-md { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1--desktop-md { margin: 1rem !important; }
.p-1--desktop-md { padding: 1rem !important; }
.mt-1--desktop-md { margin-top: 1rem !important; }
.mr-1--desktop-md { margin-right: 1rem !important; }
.mb-1--desktop-md { margin-bottom: 1rem !important; }
.ml-1--desktop-md { margin-left: 1rem !important; }
.pt-1--desktop-md { padding-top: 1rem !important; }
.pr-1--desktop-md { padding-right: 1rem !important; }
.pb-1--desktop-md { padding-bottom: 1rem !important; }
.pl-1--desktop-md, .px-1--desktop-md { padding-left: 1rem !important; }
.px-1--desktop-md { padding-right: 1rem !important; }
.py-1--desktop-md { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.mx-1--desktop-md { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-1--desktop-md { margin-bottom: 1rem !important; margin-top: 1rem !important; }
.m-2--desktop-md { margin: 2rem !important; }
.p-2--desktop-md { padding: 2rem !important; }
.mt-2--desktop-md { margin-top: 2rem !important; }
.mr-2--desktop-md { margin-right: 2rem !important; }
.mb-2--desktop-md { margin-bottom: 2rem !important; }
.ml-2--desktop-md { margin-left: 2rem !important; }
.pt-2--desktop-md { padding-top: 2rem !important; }
.pr-2--desktop-md { padding-right: 2rem !important; }
.pb-2--desktop-md { padding-bottom: 2rem !important; }
.pl-2--desktop-md, .px-2--desktop-md { padding-left: 2rem !important; }
.px-2--desktop-md { padding-right: 2rem !important; }
.py-2--desktop-md { padding-bottom: 2rem !important; padding-top: 2rem !important; }
.mx-2--desktop-md { margin-left: 2rem !important; margin-right: 2rem !important; }
.my-2--desktop-md { margin-bottom: 2rem !important; margin-top: 2rem !important; }
.m-3--desktop-md { margin: 3rem !important; }
.p-3--desktop-md { padding: 3rem !important; }
.mt-3--desktop-md { margin-top: 3rem !important; }
.mr-3--desktop-md { margin-right: 3rem !important; }
.mb-3--desktop-md { margin-bottom: 3rem !important; }
.ml-3--desktop-md { margin-left: 3rem !important; }
.pt-3--desktop-md { padding-top: 3rem !important; }
.pr-3--desktop-md { padding-right: 3rem !important; }
.pb-3--desktop-md { padding-bottom: 3rem !important; }
.pl-3--desktop-md, .px-3--desktop-md { padding-left: 3rem !important; }
.px-3--desktop-md { padding-right: 3rem !important; }
.py-3--desktop-md { padding-bottom: 3rem !important; padding-top: 3rem !important; }
.mx-3--desktop-md { margin-left: 3rem !important; margin-right: 3rem !important; }
.my-3--desktop-md { margin-bottom: 3rem !important; margin-top: 3rem !important; }
.m-4--desktop-md { margin: 4rem !important; }
.p-4--desktop-md { padding: 4rem !important; }
.mt-4--desktop-md { margin-top: 4rem !important; }
.mr-4--desktop-md { margin-right: 4rem !important; }
.mb-4--desktop-md { margin-bottom: 4rem !important; }
.ml-4--desktop-md { margin-left: 4rem !important; }
.pt-4--desktop-md { padding-top: 4rem !important; }
.pr-4--desktop-md { padding-right: 4rem !important; }
.pb-4--desktop-md { padding-bottom: 4rem !important; }
.pl-4--desktop-md, .px-4--desktop-md { padding-left: 4rem !important; }
.px-4--desktop-md { padding-right: 4rem !important; }
.py-4--desktop-md { padding-bottom: 4rem !important; padding-top: 4rem !important; }
.mx-4--desktop-md { margin-left: 4rem !important; margin-right: 4rem !important; }
.my-4--desktop-md { margin-bottom: 4rem !important; margin-top: 4rem !important; }
.m-5--desktop-md { margin: 5rem !important; }
.p-5--desktop-md { padding: 5rem !important; }
.mt-5--desktop-md { margin-top: 5rem !important; }
.mr-5--desktop-md { margin-right: 5rem !important; }
.mb-5--desktop-md { margin-bottom: 5rem !important; }
.ml-5--desktop-md { margin-left: 5rem !important; }
.pt-5--desktop-md { padding-top: 5rem !important; }
.pr-5--desktop-md { padding-right: 5rem !important; }
.pb-5--desktop-md { padding-bottom: 5rem !important; }
.pl-5--desktop-md, .px-5--desktop-md { padding-left: 5rem !important; }
.px-5--desktop-md { padding-right: 5rem !important; }
.py-5--desktop-md { padding-bottom: 5rem !important; padding-top: 5rem !important; }
.mx-5--desktop-md { margin-left: 5rem !important; margin-right: 5rem !important; }
.my-5--desktop-md { margin-bottom: 5rem !important; margin-top: 5rem !important; }
}
@media (min-width: 1200px) {
.m-0--desktop-lg { margin: 0px !important; }
.p-0--desktop-lg { padding: 0px !important; }
.mt-0--desktop-lg { margin-top: 0px !important; }
.mr-0--desktop-lg { margin-right: 0px !important; }
.mb-0--desktop-lg { margin-bottom: 0px !important; }
.ml-0--desktop-lg { margin-left: 0px !important; }
.pt-0--desktop-lg { padding-top: 0px !important; }
.pr-0--desktop-lg { padding-right: 0px !important; }
.pb-0--desktop-lg { padding-bottom: 0px !important; }
.pl-0--desktop-lg, .px-0--desktop-lg { padding-left: 0px !important; }
.px-0--desktop-lg { padding-right: 0px !important; }
.py-0--desktop-lg { padding-bottom: 0px !important; padding-top: 0px !important; }
.mx-0--desktop-lg { margin-left: 0px !important; margin-right: 0px !important; }
.my-0--desktop-lg { margin-bottom: 0px !important; margin-top: 0px !important; }
.m-pt5--desktop-lg { margin: 0.5rem !important; }
.p-pt5--desktop-lg { padding: 0.5rem !important; }
.mt-pt5--desktop-lg { margin-top: 0.5rem !important; }
.mr-pt5--desktop-lg { margin-right: 0.5rem !important; }
.mb-pt5--desktop-lg { margin-bottom: 0.5rem !important; }
.ml-pt5--desktop-lg { margin-left: 0.5rem !important; }
.pt-pt5--desktop-lg { padding-top: 0.5rem !important; }
.pr-pt5--desktop-lg { padding-right: 0.5rem !important; }
.pb-pt5--desktop-lg { padding-bottom: 0.5rem !important; }
.pl-pt5--desktop-lg, .px-pt5--desktop-lg { padding-left: 0.5rem !important; }
.px-pt5--desktop-lg { padding-right: 0.5rem !important; }
.py-pt5--desktop-lg { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; }
.mx-pt5--desktop-lg { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-pt5--desktop-lg { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; }
.m-1--desktop-lg { margin: 1rem !important; }
.p-1--desktop-lg { padding: 1rem !important; }
.mt-1--desktop-lg { margin-top: 1rem !important; }
.mr-1--desktop-lg { margin-right: 1rem !important; }