-
Notifications
You must be signed in to change notification settings - Fork 0
/
ar_html.html
1265 lines (1259 loc) · 41.1 KB
/
ar_html.html
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
<style
data-href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
>
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc-.woff)
format("woff");
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff)
format("woff");
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc-.woff)
format("woff");
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc-.woff)
format("woff");
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0370-03FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4AMP6lQ.woff2)
format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+0370-03FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2)
format("woff2");
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2)
format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fCRc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fABc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fCBc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0370-03FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fCxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fChc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc4AMP6lQ.woff2)
format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0370-03FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2)
format("woff2");
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2)
format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
</style>
<html>
<style type="text/css">
article {
width: 210mm;
height: 223mm;
/*
height: 29.7cm;
width: 42cm;
*/
margin: 0;
padding: 0;
}
body {
margin: 0;
}
@page {
size: auto; /* auto is the initial value */
margin: 0mm; /* this affects the margin in the printer settings */
}
.print:last-child {
page-break-after: auto;
}
@media print {
.print:last-child {
page-break-after: auto;
}
article {
-webkit-print-color-adjust: exact;
page-break-after: always;
transform: scale(2);
transform-origin: top left;
size: auto;
margin: 0;
}
.no-page-break {
page-break-before: avoid;
page-break-after: avoid;
}
}
</style>
<body>
<article>
<div
style="
width: 595px;
height: 842px;
position: relative;
background: white;
"
>
<div
style="
width: 595px;
height: 49px;
left: 0px;
top: 0px;
position: absolute;
background: #3d4ed7;
"
></div>
<div
style="
left: 24px;
top: 65px;
position: absolute;
color: rgba(0, 0, 0, 0.87);
font-size: 20px;
font-family: Roboto;
font-weight: 700;
line-height: 24px;
letter-spacing: 0.15px;
word-wrap: break-word;
"
>
Oferta de antecipação de repasse
</div>
<div
style="
left: 24px;
top: 16px;
position: absolute;
color: white;
font-size: 14px;
font-family: Roboto;
font-weight: 700;
line-height: 16px;
letter-spacing: 0.1px;
word-wrap: break-word;
"
>
{{.SchoolName}}
</div>
<div
style="
width: 54px;
height: 17px;
left: 517px;
top: 16px;
position: absolute;
"
>
<svg
width="54"
height="17"
viewBox="0 0 54 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="logo-isaac" clip-path="url(#clip0_302_376)">
<path
id="Vector"
d="M1.96215 4.01846C3.04582 4.01846 3.9243 3.1189 3.9243 2.00923C3.9243 0.899564 3.04582 0 1.96215 0C0.878485 0 0 0.899564 0 2.00923C0 3.1189 0.878485 4.01846 1.96215 4.01846Z"
fill="white"
/>
<path
id="Vector_2"
d="M47.3077 12.9409C46.8378 12.4514 46.5997 11.8152 46.5997 11.0504C46.5997 10.2856 46.8378 9.64903 47.3077 9.15987C47.7776 8.67071 48.3732 8.42015 49.0765 8.42015C49.9934 8.42015 50.6893 8.77866 51.1491 9.48412L53.9986 7.79914C53.5194 7.00585 52.8535 6.34842 52.0618 5.8871C51.1783 5.36567 50.1821 5.09879 49.0995 5.09879C47.4318 5.09879 46.024 5.67479 44.9149 6.81165C43.8059 7.94852 43.2422 9.37338 43.2422 11.05C43.2422 12.7266 43.8047 14.1527 44.9149 15.2879C46.0251 16.4232 47.4314 17.0008 49.0995 17.0008C50.1817 17.0008 51.1783 16.7355 52.0618 16.2125C52.8582 15.7479 53.5254 15.0826 54.0002 14.2797L51.1565 12.5983C50.7201 13.3154 50.0218 13.681 49.0765 13.681C48.3732 13.6802 47.778 13.4317 47.3077 12.9409Z"
fill="white"
/>
<path
id="Vector_3"
d="M28.3623 13.5878V16.7327H27.4676C25.8995 16.7327 24.8539 16.175 24.3746 15.082C23.5254 16.2643 22.2619 17 20.7156 17C17.6662 17 15.3574 14.4355 15.3574 11.0452C15.3574 7.65491 17.6677 5.09875 20.7172 5.09875C22.0892 5.09875 23.2438 5.67874 24.0712 6.61564V5.36445H27.2513V12.6732C27.2513 13.2532 27.5781 13.5894 28.146 13.5894L28.3623 13.5878ZM24.0712 11.0452C24.0712 9.43948 22.917 8.24166 21.3481 8.24166C19.8014 8.24166 18.6473 9.43948 18.6473 11.0452C18.6473 12.6509 19.8014 13.8555 21.3481 13.8555C22.917 13.8555 24.0712 12.6509 24.0712 11.0452Z"
fill="white"
/>
<path
id="Vector_4"
d="M42.3174 13.5874V16.7323H41.4227C39.8542 16.7323 38.8089 16.1746 38.3297 15.082C37.4801 16.2639 36.217 17 34.6703 17C31.6213 17 29.3125 14.4351 29.3125 11.0448C29.3125 7.65451 31.6232 5.09875 34.6722 5.09875C36.0447 5.09875 37.2008 5.67874 38.0266 6.61524V5.36445H41.2068V12.6732C41.2068 13.2532 41.5335 13.5894 42.1015 13.5894L42.3174 13.5874ZM38.0266 11.0448C38.0266 9.43908 36.8725 8.24166 35.3036 8.24166C33.7573 8.24166 32.6027 9.43908 32.6027 11.0448C32.6027 12.6505 33.7573 13.8551 35.3036 13.8551C36.8725 13.8551 38.0266 12.6509 38.0266 11.0448Z"
fill="white"
/>
<path
id="Vector_5"
d="M10.3254 9.49607C10.0239 9.40724 9.73913 9.32319 9.46449 9.23276C9.28516 9.17381 8.73899 8.99376 8.73899 8.55558C8.73899 8.23452 8.91755 7.85132 9.76908 7.85132C10.3934 7.85132 10.8921 8.1664 11.2528 8.78782L14.0661 7.48882C13.6506 6.82081 13.2001 6.23047 12.5295 5.81579C11.0123 4.87451 8.66975 4.85539 7.08104 5.77197C6.27308 6.23803 5.30989 7.13988 5.30989 8.78941C5.30989 9.84342 5.71446 10.6218 6.58273 11.2396C7.35841 11.7909 8.3496 12.116 9.32795 12.4314C9.61465 12.5239 9.8854 12.6111 10.1495 12.7035C10.6195 12.8688 10.8575 13.1082 10.8575 13.4145C10.8575 13.787 10.6475 14.2307 9.64693 14.2307C8.74716 14.2307 8.12086 13.8292 7.78203 13.0357L4.87109 14.5367C5.7094 16.1938 7.28294 17 9.6695 17C10.9563 17 12.0813 16.6917 13.015 16.0838C14.3376 15.221 14.6165 13.452 14.2077 12.151C13.6868 10.4915 11.9106 9.96252 10.3254 9.49607Z"
fill="white"
/>
<path
id="Vector_6"
d="M3.64267 5.36444H0.283203V16.7339H3.64267V5.36444Z"
fill="white"
/>
</g>
<defs>
<clipPath id="clip0_302_376">
<rect width="54" height="17" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div
style="
width: 515px;
height: 157px;
padding: 16px;
left: 24px;
top: 105px;
position: absolute;
border-radius: 8px;
border: 1px rgba(0, 0, 0, 0.23) solid;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 8px;
display: inline-flex;
"
>
<div style="height: 46px; position: relative">
<div
style="
width: 121px;
height: 16px;
left: 0px;
top: 0px;
position: absolute;
justify-content: center;
align-items: center;
display: inline-flex;
"
>
<div
style="
color: rgba(0, 0, 0, 0.87);
font-size: 14px;
font-family: Roboto;
font-weight: 500;
line-height: 16px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Detalhes da oferta
</div>
</div>
<div
style="
display: flex;
justify-content: space-between;
width: 515px;
height: 14px;
left: 0px;
top: 32px;
position: absolute;
"
>
<div
style="
top: 0px;
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Valor antecipado
</div>
<div
style="
top: -0px;
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
R$ {{.RequestedValue}}
</div>
</div>
</div>
<div
style="
width: 100%;
height: 14px;
position: relative;
display: flex;
justify-content: space-between;
"
>
<div
style="
top: 0px;
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Data de desembolso
</div>
<div
style="
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
{{.DisbursementDate}}
</div>
</div>
<div
style="
width: 100%;
height: 14px;
position: relative;
display: flex;
justify-content: space-between;
"
>
<div
style="
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Data de desconto no repasse
</div>
<div
style="
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
{{.DiscountDate}}
</div>
</div>
<div
style="
width: 100%;
height: 14px;
position: relative;
display: flex;
justify-content: space-between;
"
>
<div
style="
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Dias antecipados
</div>
<div
style="
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
{{.AnticipatedDays}}
</div>
</div>
<div
style="
width: 100%;
height: 14px;
position: relative;
display: flex;
justify-content: space-between;
"
>
<div
style="
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Valor a ser descontado no dia {{.DiscountDate}}
</div>
<div
style="
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
R$ {{.InstallmentValue}}
</div>
</div>
<div
style="
width: 100%;
height: 14px;
position: relative;
display: flex;
justify-content: space-between;
"
>
<div
style="
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Taxa efetiva
</div>
<div
style="
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
{{.AppliedFee}}%
</div>
</div>
</div>
<div
style="
width: 547px;
height: 29px;
left: 24px;
top: 309px;
position: absolute;
"
>
<span
style="
color: rgba(0, 0, 0, 0.87);
font-size: 9px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>Oferta de antecipação válida até 13/10/2023. Envie os documentos
até a data estipulada.</span
><span
style="
color: rgba(0, 0, 0, 0.87);
font-size: 9px;
font-family: Roboto;
font-weight: 400;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
Após o prazo indicado, a referida proposta poderá ser cancelada ou
sofrer alterações.</span
>
</div>
<div
style="
width: 547px;
height: 0px;
left: 24px;
top: 354px;
position: absolute;
border: 1px rgba(0, 0, 0, 0.23) solid;
"
></div>
<div
style="
width: 547px;
left: 24px;
top: 370px;
position: absolute;
color: rgba(0, 0, 0, 0.87);
font-size: 16px;
font-family: Roboto;
font-weight: 700;
line-height: 24px;
letter-spacing: 0.15px;
word-wrap: break-word;
"
>
Informações necessárias para formalização
</div>
<ul>
<div
style="
width: 547px;
left: 46px;
top: 402px;
position: absolute;
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 700;
line-height: 18px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
<li>Dados do representante legal da escola</li>
</div>
<div
style="
width: 273px;
left: 65px;
top: 420px;
position: absolute;
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 18px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
<li>Nome Completo</li>
<li>CPF</li>
<li>Telefone celular</li>
<li>E-mail (assinar com certificado digital ICP)</li>
</div>
</ul>
<div
style="
width: 547px;
left: 24px;
top: 516px;
position: absolute;
color: rgba(0, 0, 0, 0.87);
font-size: 16px;
font-family: Roboto;
font-weight: 700;
line-height: 24px;
letter-spacing: 0.15px;
word-wrap: break-word;
"
>
Documentos necessários para formalização
</div>
<div
style="
width: 547px;
left: 6px;
top: 540px;
position: absolute;
color: #414141;
font-size: 12px;
font-family: Roboto;
font-weight: 400;
line-height: 18px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
<ul>
<li>Documento com Foto (RG ou CNH)</li>
<li>Contrato social (e alterações)</li>
</ul>
</div>
<div
style="
left: 556px;
top: 756px;
position: absolute;
text-align: right;
color: rgba(0, 0, 0, 0.87);
font-size: 10px;
font-family: Roboto;
font-weight: 700;
line-height: 14px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>
1/2
</div>
<div
style="
width: 595px;
height: 62px;
left: 0px;
top: 780px;
position: absolute;
"
>
<div
style="
width: 595px;
height: 62px;
left: 0px;
top: 0px;
position: absolute;
background: #3d4ed7;
"
></div>
<div style="left: 40px; top: 16px; position: absolute">
<span
style="
color: white;
font-size: 8px;
font-family: Roboto;
font-weight: 400;
line-height: 10px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>WhatsApp (11) 97285-1717<br /></span
><span
style="
color: white;
font-size: 8px;
font-family: Roboto;
font-weight: 700;
line-height: 10px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>falecom@olaisaac.com.br<br />www.olaisaac.com.br</span
>
</div>
<div
style="
width: 185px;
left: 370px;
top: 16px;
position: absolute;
text-align: right;
"
>
<span
style="
color: white;
font-size: 8px;
font-family: Roboto;
font-weight: 600;
line-height: 10px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>OISA TECNOLOGIA E SERVIÇOS LTDA.<br /></span
><span
style="
color: white;
font-size: 8px;
font-family: Roboto;
font-weight: 400;
line-height: 10px;
letter-spacing: 0.25px;
word-wrap: break-word;
"
>CNPJ 38.008.510/0001-88<br />Rua Augusta, 2840, Andar 10, São
Paulo/SP</span
>
</div>
</div>
</div>
</article>
<article>
<div
style="
width: 595px;
height: 842px;
position: relative;
background: white;
"
>
<div
style="
width: 595px;
height: 49px;
left: 0px;
top: 0px;
position: absolute;
background: #3d4ed7;
"
></div>
<div
style="
left: 24px;
top: 16px;
position: absolute;
color: white;