@tomei/finance 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/dist/account/account.d.ts +10 -7
  2. package/dist/account/account.js.map +1 -1
  3. package/dist/document/document.d.ts +35 -0
  4. package/dist/document/document.js +115 -0
  5. package/dist/document/document.js.map +1 -0
  6. package/dist/document/entities/document.entity.d.ts +2 -2
  7. package/dist/document/entities/document.entity.js.map +1 -1
  8. package/dist/document/interfaces/document-attr.interface.d.ts +2 -2
  9. package/dist/enum/doc-type.enum.d.ts +7 -0
  10. package/dist/enum/doc-type.enum.js +12 -0
  11. package/dist/enum/doc-type.enum.js.map +1 -0
  12. package/dist/enum/index.d.ts +2 -2
  13. package/dist/enum/index.js +3 -3
  14. package/dist/enum/index.js.map +1 -1
  15. package/dist/finance-company/finance-company.d.ts +8 -3
  16. package/dist/finance-company/finance-company.js +46 -49
  17. package/dist/finance-company/finance-company.js.map +1 -1
  18. package/dist/interfaces/account-system-entity.interface.d.ts +7 -0
  19. package/dist/interfaces/account-system-entity.interface.js +3 -0
  20. package/dist/interfaces/account-system-entity.interface.js.map +1 -0
  21. package/dist/journal-entry/journal-entry.d.ts +3 -1
  22. package/dist/journal-entry/journal-entry.js +12 -0
  23. package/dist/journal-entry/journal-entry.js.map +1 -1
  24. package/dist/tsconfig.tsbuildinfo +1 -1
  25. package/invoice-template/assets/css/style.css +2630 -0
  26. package/invoice-template/assets/css/style.css.map +13 -0
  27. package/invoice-template/assets/css/style.min.css +1 -0
  28. package/invoice-template/assets/img/arrow_bg.svg +12 -0
  29. package/invoice-template/assets/img/coffy_shop_img.svg +19 -0
  30. package/invoice-template/assets/img/header_bg.jpeg +0 -0
  31. package/invoice-template/assets/img/header_bg_2.jpeg +0 -0
  32. package/invoice-template/assets/img/logo.svg +4 -0
  33. package/invoice-template/assets/img/logo_accent.svg +4 -0
  34. package/invoice-template/assets/img/logo_white.svg +4 -0
  35. package/invoice-template/assets/img/qbar.png +0 -0
  36. package/invoice-template/assets/img/shape_1.svg +1 -0
  37. package/invoice-template/assets/img/shape_2.svg +1 -0
  38. package/invoice-template/assets/img/sign.svg +12 -0
  39. package/invoice-template/assets/js/html2canvas.min.js +10379 -0
  40. package/invoice-template/assets/js/jquery.min.js +2 -0
  41. package/invoice-template/assets/js/jspdf.min.js +1 -0
  42. package/invoice-template/assets/js/main.js +48 -0
  43. package/invoice-template/assets/sass/common/_color_variable.scss +12 -0
  44. package/invoice-template/assets/sass/common/_invoice.scss +1802 -0
  45. package/invoice-template/assets/sass/common/_normalize.scss +350 -0
  46. package/invoice-template/assets/sass/common/_typography.scss +178 -0
  47. package/invoice-template/assets/sass/style.scss +12 -0
  48. package/invoice-template/index.html +156 -0
  49. package/invoice-template/sample-invoice.pdf +0 -0
  50. package/migrations/finance-customer-migration.js +33 -33
  51. package/migrations/finance-payment-migration.js +89 -89
  52. package/package.json +3 -1
  53. package/src/account/account.repository.ts +44 -44
  54. package/src/account/account.ts +10 -7
  55. package/src/account/interfaces/account.repository.interface.ts +4 -4
  56. package/src/config.ts +178 -178
  57. package/src/customer/entities/customer.entity.ts +53 -53
  58. package/src/customer/finance-customer.repository.ts +20 -20
  59. package/src/customer/index.ts +15 -15
  60. package/src/customer/interfaces/customer.repository.interface.ts +3 -3
  61. package/src/customer/interfaces/finance-customer-attr.interface.ts +4 -4
  62. package/src/customer/interfaces/finance-customer.repository.interface.ts +3 -3
  63. package/src/document/document.ts +167 -0
  64. package/src/document/entities/document.entity.ts +2 -2
  65. package/src/document/interfaces/document-attr.interface.ts +2 -2
  66. package/src/enum/{document-type.enum.ts → doc-type.enum.ts} +2 -2
  67. package/src/enum/index.ts +2 -2
  68. package/src/finance-company/finance-company.ts +68 -72
  69. package/src/interfaces/account-system-entity.interface.ts +7 -0
  70. package/src/interfaces/index.ts +3 -3
  71. package/src/journal-entry/journal-entry.ts +19 -2
@@ -0,0 +1,2630 @@
1
+ /*--------------------------------------------------------------
2
+ >> TABLE OF CONTENTS:
3
+ ----------------------------------------------------------------
4
+ 1. Normalize
5
+ 2. Typography
6
+ 3. Invoice General Style
7
+ --------------------------------------------------------------*/
8
+ /*--------------------------------------------------------------
9
+ 2. Normalize
10
+ ----------------------------------------------------------------*/
11
+ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap");
12
+ *,
13
+ ::after,
14
+ ::before {
15
+ -webkit-box-sizing: border-box;
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ html {
20
+ line-height: 1.15;
21
+ -webkit-text-size-adjust: 100%;
22
+ }
23
+
24
+ /* Sections
25
+ ========================================================================== */
26
+ /**
27
+ * Remove the margin in all browsers.
28
+ */
29
+ body {
30
+ margin: 0;
31
+ }
32
+
33
+ /**
34
+ * Render the `main` element consistently in IE.
35
+ */
36
+ main {
37
+ display: block;
38
+ }
39
+
40
+ /**
41
+ * Correct the font size and margin on `h1` elements within `section` and
42
+ * `article` contexts in Chrome, Firefox, and Safari.
43
+ */
44
+ h1 {
45
+ font-size: 2em;
46
+ margin: 0.67em 0;
47
+ }
48
+
49
+ /* Grouping content
50
+ ========================================================================== */
51
+ /**
52
+ * 1. Add the correct box sizing in Firefox.
53
+ * 2. Show the overflow in Edge and IE.
54
+ */
55
+ hr {
56
+ -webkit-box-sizing: content-box;
57
+ box-sizing: content-box;
58
+ /* 1 */
59
+ height: 0;
60
+ /* 1 */
61
+ overflow: visible;
62
+ /* 2 */
63
+ }
64
+
65
+ /**
66
+ * 1. Correct the inheritance and scaling of font size in all browsers.
67
+ * 2. Correct the odd `em` font sizing in all browsers.
68
+ */
69
+ pre {
70
+ font-family: monospace, monospace;
71
+ /* 1 */
72
+ font-size: 1em;
73
+ /* 2 */
74
+ }
75
+
76
+ /* Text-level semantics
77
+ ========================================================================== */
78
+ /**
79
+ * Remove the gray background on active links in IE 10.
80
+ */
81
+ a {
82
+ background-color: transparent;
83
+ }
84
+
85
+ /**
86
+ * 1. Remove the bottom border in Chrome 57-
87
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
88
+ */
89
+ abbr[title] {
90
+ border-bottom: none;
91
+ /* 1 */
92
+ text-decoration: underline;
93
+ /* 2 */
94
+ -webkit-text-decoration: underline dotted;
95
+ text-decoration: underline dotted;
96
+ /* 2 */
97
+ }
98
+
99
+ /**
100
+ * Add the correct font weight in Chrome, Edge, and Safari.
101
+ */
102
+ b,
103
+ strong {
104
+ font-weight: bolder;
105
+ }
106
+
107
+ /**
108
+ * 1. Correct the inheritance and scaling of font size in all browsers.
109
+ * 2. Correct the odd `em` font sizing in all browsers.
110
+ */
111
+ code,
112
+ kbd,
113
+ samp {
114
+ font-family: monospace, monospace;
115
+ /* 1 */
116
+ font-size: 1em;
117
+ /* 2 */
118
+ }
119
+
120
+ /**
121
+ * Add the correct font size in all browsers.
122
+ */
123
+ small {
124
+ font-size: 80%;
125
+ }
126
+
127
+ /**
128
+ * Prevent `sub` and `sup` elements from affecting the line height in
129
+ * all browsers.
130
+ */
131
+ sub,
132
+ sup {
133
+ font-size: 75%;
134
+ line-height: 0;
135
+ position: relative;
136
+ vertical-align: baseline;
137
+ }
138
+
139
+ sub {
140
+ bottom: -0.25em;
141
+ }
142
+
143
+ sup {
144
+ top: -0.5em;
145
+ }
146
+
147
+ /* Embedded content
148
+ ========================================================================== */
149
+ /**
150
+ * Remove the border on images inside links in IE 10.
151
+ */
152
+ img {
153
+ border-style: none;
154
+ }
155
+
156
+ /* Forms
157
+ ========================================================================== */
158
+ /**
159
+ * 1. Change the font styles in all browsers.
160
+ * 2. Remove the margin in Firefox and Safari.
161
+ */
162
+ button,
163
+ input,
164
+ optgroup,
165
+ select,
166
+ textarea {
167
+ font-family: inherit;
168
+ /* 1 */
169
+ font-size: 100%;
170
+ /* 1 */
171
+ line-height: 1.15;
172
+ /* 1 */
173
+ margin: 0;
174
+ /* 2 */
175
+ }
176
+
177
+ /**
178
+ * Show the overflow in IE.
179
+ * 1. Show the overflow in Edge.
180
+ */
181
+ button,
182
+ input {
183
+ /* 1 */
184
+ overflow: visible;
185
+ }
186
+
187
+ /**
188
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
189
+ * 1. Remove the inheritance of text transform in Firefox.
190
+ */
191
+ button,
192
+ select {
193
+ /* 1 */
194
+ text-transform: none;
195
+ }
196
+
197
+ /**
198
+ * Correct the inability to style clickable types in iOS and Safari.
199
+ */
200
+ button,
201
+ [type='button'],
202
+ [type='reset'],
203
+ [type='submit'] {
204
+ -webkit-appearance: button;
205
+ }
206
+
207
+ /**
208
+ * Remove the inner border and padding in Firefox.
209
+ */
210
+ button::-moz-focus-inner,
211
+ [type='button']::-moz-focus-inner,
212
+ [type='reset']::-moz-focus-inner,
213
+ [type='submit']::-moz-focus-inner {
214
+ border-style: none;
215
+ padding: 0;
216
+ }
217
+
218
+ /**
219
+ * Restore the focus styles unset by the previous rule.
220
+ */
221
+ button:-moz-focusring,
222
+ [type='button']:-moz-focusring,
223
+ [type='reset']:-moz-focusring,
224
+ [type='submit']:-moz-focusring {
225
+ outline: 1px dotted ButtonText;
226
+ }
227
+
228
+ /**
229
+ * Correct the padding in Firefox.
230
+ */
231
+ fieldset {
232
+ padding: 0.35em 0.75em 0.625em;
233
+ }
234
+
235
+ /**
236
+ * 1. Correct the text wrapping in Edge and IE.
237
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
238
+ * 3. Remove the padding so developers are not caught out when they zero out
239
+ * `fieldset` elements in all browsers.
240
+ */
241
+ legend {
242
+ -webkit-box-sizing: border-box;
243
+ box-sizing: border-box;
244
+ /* 1 */
245
+ color: inherit;
246
+ /* 2 */
247
+ display: table;
248
+ /* 1 */
249
+ max-width: 100%;
250
+ /* 1 */
251
+ padding: 0;
252
+ /* 3 */
253
+ white-space: normal;
254
+ /* 1 */
255
+ }
256
+
257
+ /**
258
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
259
+ */
260
+ progress {
261
+ vertical-align: baseline;
262
+ }
263
+
264
+ /**
265
+ * Remove the default vertical scrollbar in IE 10+.
266
+ */
267
+ textarea {
268
+ overflow: auto;
269
+ }
270
+
271
+ /**
272
+ * 1. Add the correct box sizing in IE 10.
273
+ * 2. Remove the padding in IE 10.
274
+ */
275
+ [type='checkbox'],
276
+ [type='radio'] {
277
+ -webkit-box-sizing: border-box;
278
+ box-sizing: border-box;
279
+ /* 1 */
280
+ padding: 0;
281
+ /* 2 */
282
+ }
283
+
284
+ /**
285
+ * Correct the cursor style of increment and decrement buttons in Chrome.
286
+ */
287
+ [type='number']::-webkit-inner-spin-button,
288
+ [type='number']::-webkit-outer-spin-button {
289
+ height: auto;
290
+ }
291
+
292
+ /**
293
+ * 1. Correct the odd appearance in Chrome and Safari.
294
+ * 2. Correct the outline style in Safari.
295
+ */
296
+ [type='search'] {
297
+ -webkit-appearance: textfield;
298
+ /* 1 */
299
+ outline-offset: -2px;
300
+ /* 2 */
301
+ }
302
+
303
+ /**
304
+ * Remove the inner padding in Chrome and Safari on macOS.
305
+ */
306
+ [type='search']::-webkit-search-decoration {
307
+ -webkit-appearance: none;
308
+ }
309
+
310
+ /**
311
+ * 1. Correct the inability to style clickable types in iOS and Safari.
312
+ * 2. Change font properties to `inherit` in Safari.
313
+ */
314
+ ::-webkit-file-upload-button {
315
+ -webkit-appearance: button;
316
+ /* 1 */
317
+ font: inherit;
318
+ /* 2 */
319
+ }
320
+
321
+ /* Interactive
322
+ ========================================================================== */
323
+ /*
324
+ * Add the correct display in Edge, IE 10+, and Firefox.
325
+ */
326
+ details {
327
+ display: block;
328
+ }
329
+
330
+ /*
331
+ * Add the correct display in all browsers.
332
+ */
333
+ summary {
334
+ display: list-item;
335
+ }
336
+
337
+ /* Misc
338
+ ========================================================================== */
339
+ /**
340
+ * Add the correct display in IE 10+.
341
+ */
342
+ template {
343
+ display: none;
344
+ }
345
+
346
+ /**
347
+ * Add the correct display in IE 10.
348
+ */
349
+ [hidden] {
350
+ display: none;
351
+ }
352
+
353
+ /*--------------------------------------------------------------
354
+ 2. Typography
355
+ ----------------------------------------------------------------*/
356
+ body,
357
+ html {
358
+ color: #666;
359
+ font-family: 'Inter', sans-serif;
360
+ font-size: 14px;
361
+ font-weight: 400;
362
+ line-height: 1.6em;
363
+ overflow-x: hidden;
364
+ background-color: #f5f6fa;
365
+ }
366
+
367
+ h1,
368
+ h2,
369
+ h3,
370
+ h4,
371
+ h5,
372
+ h6 {
373
+ clear: both;
374
+ color: #111;
375
+ padding: 0;
376
+ margin: 0 0 20px 0;
377
+ font-weight: 500;
378
+ line-height: 1.2em;
379
+ }
380
+
381
+ h1 {
382
+ font-size: 60px;
383
+ }
384
+
385
+ h2 {
386
+ font-size: 48px;
387
+ }
388
+
389
+ h3 {
390
+ font-size: 30px;
391
+ }
392
+
393
+ h4 {
394
+ font-size: 24px;
395
+ }
396
+
397
+ h5 {
398
+ font-size: 18px;
399
+ }
400
+
401
+ h6 {
402
+ font-size: 16px;
403
+ }
404
+
405
+ p,
406
+ div {
407
+ margin-top: 0;
408
+ line-height: 1.5em;
409
+ }
410
+
411
+ p {
412
+ margin-bottom: 15px;
413
+ }
414
+
415
+ ul {
416
+ margin: 0 0 25px 0;
417
+ padding-left: 20px;
418
+ list-style: disc;
419
+ }
420
+
421
+ ol {
422
+ padding-left: 20px;
423
+ margin-bottom: 25px;
424
+ }
425
+
426
+ dfn,
427
+ cite,
428
+ em,
429
+ i {
430
+ font-style: italic;
431
+ }
432
+
433
+ blockquote {
434
+ margin: 0 15px;
435
+ font-style: italic;
436
+ font-size: 20px;
437
+ line-height: 1.6em;
438
+ margin: 0;
439
+ }
440
+
441
+ address {
442
+ margin: 0 0 15px;
443
+ }
444
+
445
+ img {
446
+ border: 0;
447
+ max-width: 100%;
448
+ height: auto;
449
+ vertical-align: middle;
450
+ }
451
+
452
+ a {
453
+ color: inherit;
454
+ text-decoration: none;
455
+ -webkit-transition: all 0.3s ease;
456
+ transition: all 0.3s ease;
457
+ }
458
+
459
+ a:hover {
460
+ color: #007aff;
461
+ }
462
+
463
+ button {
464
+ color: inherit;
465
+ -webkit-transition: all 0.3s ease;
466
+ transition: all 0.3s ease;
467
+ }
468
+
469
+ a:hover {
470
+ text-decoration: none;
471
+ color: inherit;
472
+ }
473
+
474
+ table {
475
+ width: 100%;
476
+ caption-side: bottom;
477
+ border-collapse: collapse;
478
+ }
479
+
480
+ th {
481
+ text-align: left;
482
+ }
483
+
484
+ td {
485
+ border-top: 1px solid #dbdfea;
486
+ }
487
+
488
+ td {
489
+ padding: 10px 15px;
490
+ line-height: 1.55em;
491
+ }
492
+
493
+ th {
494
+ padding: 10px 15px;
495
+ line-height: 1.55em;
496
+ }
497
+
498
+ dl {
499
+ margin-bottom: 25px;
500
+ }
501
+
502
+ dl dt {
503
+ font-weight: 600;
504
+ }
505
+
506
+ b,
507
+ strong {
508
+ font-weight: bold;
509
+ }
510
+
511
+ pre {
512
+ color: #666;
513
+ border: 1px solid #dbdfea;
514
+ font-size: 18px;
515
+ padding: 25px;
516
+ border-radius: 5px;
517
+ }
518
+
519
+ kbd {
520
+ font-size: 100%;
521
+ background-color: #666;
522
+ border-radius: 5px;
523
+ }
524
+
525
+ a:hover {
526
+ color: #007aff;
527
+ }
528
+
529
+ ul {
530
+ padding-left: 15px;
531
+ }
532
+
533
+ /*--------------------------------------------------------------
534
+ 3. Invoice General Style
535
+ ----------------------------------------------------------------*/
536
+ .tm_f10 {
537
+ font-size: 10px;
538
+ }
539
+
540
+ .tm_f11 {
541
+ font-size: 11px;
542
+ }
543
+
544
+ .tm_f12 {
545
+ font-size: 12px;
546
+ }
547
+
548
+ .tm_f13 {
549
+ font-size: 13px;
550
+ }
551
+
552
+ .tm_f14 {
553
+ font-size: 14px;
554
+ }
555
+
556
+ .tm_f15 {
557
+ font-size: 15px;
558
+ }
559
+
560
+ .tm_f16 {
561
+ font-size: 16px;
562
+ }
563
+
564
+ .tm_f17 {
565
+ font-size: 17px;
566
+ }
567
+
568
+ .tm_f18 {
569
+ font-size: 18px;
570
+ }
571
+
572
+ .tm_f19 {
573
+ font-size: 19px;
574
+ }
575
+
576
+ .tm_f20 {
577
+ font-size: 20px;
578
+ }
579
+
580
+ .tm_f21 {
581
+ font-size: 21px;
582
+ }
583
+
584
+ .tm_f22 {
585
+ font-size: 22px;
586
+ }
587
+
588
+ .tm_f23 {
589
+ font-size: 23px;
590
+ }
591
+
592
+ .tm_f24 {
593
+ font-size: 24px;
594
+ }
595
+
596
+ .tm_f25 {
597
+ font-size: 25px;
598
+ }
599
+
600
+ .tm_f26 {
601
+ font-size: 26px;
602
+ }
603
+
604
+ .tm_f27 {
605
+ font-size: 27px;
606
+ }
607
+
608
+ .tm_f28 {
609
+ font-size: 28px;
610
+ }
611
+
612
+ .tm_f29 {
613
+ font-size: 29px;
614
+ }
615
+
616
+ .tm_f30 {
617
+ font-size: 30px;
618
+ }
619
+
620
+ .tm_f40 {
621
+ font-size: 40px;
622
+ }
623
+
624
+ .tm_f50 {
625
+ font-size: 50px;
626
+ }
627
+
628
+ .tm_light {
629
+ font-weight: 300;
630
+ }
631
+
632
+ .tm_normal {
633
+ font-weight: 400;
634
+ }
635
+
636
+ .tm_medium {
637
+ font-weight: 500;
638
+ }
639
+
640
+ .tm_semi_bold {
641
+ font-weight: 600;
642
+ }
643
+
644
+ .tm_bold {
645
+ font-weight: 700;
646
+ }
647
+
648
+ .tm_m0 {
649
+ margin: 0px;
650
+ }
651
+
652
+ .tm_mb0 {
653
+ margin-bottom: 0px;
654
+ }
655
+
656
+ .tm_mb1 {
657
+ margin-bottom: 1px;
658
+ }
659
+
660
+ .tm_mb2 {
661
+ margin-bottom: 2px;
662
+ }
663
+
664
+ .tm_mb3 {
665
+ margin-bottom: 3px;
666
+ }
667
+
668
+ .tm_mb4 {
669
+ margin-bottom: 4px;
670
+ }
671
+
672
+ .tm_mb5 {
673
+ margin-bottom: 5px;
674
+ }
675
+
676
+ .tm_mb6 {
677
+ margin-bottom: 6px;
678
+ }
679
+
680
+ .tm_mb7 {
681
+ margin-bottom: 7px;
682
+ }
683
+
684
+ .tm_mb8 {
685
+ margin-bottom: 8px;
686
+ }
687
+
688
+ .tm_mb9 {
689
+ margin-bottom: 9px;
690
+ }
691
+
692
+ .tm_mb10 {
693
+ margin-bottom: 10px;
694
+ }
695
+
696
+ .tm_mb11 {
697
+ margin-bottom: 11px;
698
+ }
699
+
700
+ .tm_mb12 {
701
+ margin-bottom: 12px;
702
+ }
703
+
704
+ .tm_mb13 {
705
+ margin-bottom: 13px;
706
+ }
707
+
708
+ .tm_mb14 {
709
+ margin-bottom: 14px;
710
+ }
711
+
712
+ .tm_mb15 {
713
+ margin-bottom: 15px;
714
+ }
715
+
716
+ .tm_mb16 {
717
+ margin-bottom: 16px;
718
+ }
719
+
720
+ .tm_mb17 {
721
+ margin-bottom: 17px;
722
+ }
723
+
724
+ .tm_mb18 {
725
+ margin-bottom: 18px;
726
+ }
727
+
728
+ .tm_mb19 {
729
+ margin-bottom: 19px;
730
+ }
731
+
732
+ .tm_mb20 {
733
+ margin-bottom: 20px;
734
+ }
735
+
736
+ .tm_mb21 {
737
+ margin-bottom: 21px;
738
+ }
739
+
740
+ .tm_mb22 {
741
+ margin-bottom: 22px;
742
+ }
743
+
744
+ .tm_mb23 {
745
+ margin-bottom: 23px;
746
+ }
747
+
748
+ .tm_mb24 {
749
+ margin-bottom: 24px;
750
+ }
751
+
752
+ .tm_mb25 {
753
+ margin-bottom: 25px;
754
+ }
755
+
756
+ .tm_mb26 {
757
+ margin-bottom: 26px;
758
+ }
759
+
760
+ .tm_mb27 {
761
+ margin-bottom: 27px;
762
+ }
763
+
764
+ .tm_mb28 {
765
+ margin-bottom: 28px;
766
+ }
767
+
768
+ .tm_mb29 {
769
+ margin-bottom: 29px;
770
+ }
771
+
772
+ .tm_mb30 {
773
+ margin-bottom: 30px;
774
+ }
775
+
776
+ .tm_mb40 {
777
+ margin-bottom: 40px;
778
+ }
779
+
780
+ .tm_pt25 {
781
+ padding-top: 25px;
782
+ }
783
+
784
+ .tm_pt0 {
785
+ padding-top: 0;
786
+ }
787
+
788
+ .tm_radius_6_0_0_6 {
789
+ border-radius: 6px 0 0 6px;
790
+ }
791
+
792
+ .tm_radius_0_6_6_0 {
793
+ border-radius: 0 6px 6px 0;
794
+ }
795
+
796
+ .tm_radius_0 {
797
+ border-radius: 0 !important;
798
+ }
799
+
800
+ .tm_width_1 {
801
+ width: 8.33333333%;
802
+ }
803
+
804
+ .tm_width_2 {
805
+ width: 16.66666667%;
806
+ }
807
+
808
+ .tm_width_3 {
809
+ width: 25%;
810
+ }
811
+
812
+ .tm_width_4 {
813
+ width: 33.33333333%;
814
+ }
815
+
816
+ .tm_width_5 {
817
+ width: 41.66666667%;
818
+ }
819
+
820
+ .tm_width_6 {
821
+ width: 50%;
822
+ }
823
+
824
+ .tm_width_7 {
825
+ width: 58.33333333%;
826
+ }
827
+
828
+ .tm_width_8 {
829
+ width: 66.66666667%;
830
+ }
831
+
832
+ .tm_width_9 {
833
+ width: 75%;
834
+ }
835
+
836
+ .tm_width_10 {
837
+ width: 83.33333333%;
838
+ }
839
+
840
+ .tm_width_11 {
841
+ width: 91.66666667%;
842
+ }
843
+
844
+ .tm_width_12 {
845
+ width: 100%;
846
+ }
847
+
848
+ .tm_border {
849
+ border: 1px solid #dbdfea;
850
+ }
851
+
852
+ .tm_border_bottom {
853
+ border-bottom: 1px solid #dbdfea;
854
+ }
855
+
856
+ .tm_border_top {
857
+ border-top: 1px solid #dbdfea;
858
+ }
859
+
860
+ .tm_border_left {
861
+ border-left: 1px solid #dbdfea;
862
+ }
863
+
864
+ .tm_border_right {
865
+ border-right: 1px solid #dbdfea;
866
+ }
867
+
868
+ .tm_round_border {
869
+ border: 1px solid #dbdfea;
870
+ overflow: hidden;
871
+ border-radius: 6px;
872
+ }
873
+
874
+ .tm_accent_color,
875
+ .tm_accent_color_hover:hover {
876
+ color: #007aff;
877
+ }
878
+
879
+ .tm_accent_bg,
880
+ .tm_accent_bg_hover:hover {
881
+ background-color: #007aff;
882
+ }
883
+
884
+ .tm_accent_bg_10 {
885
+ background-color: rgba(0, 122, 255, 0.1);
886
+ }
887
+
888
+ .tm_accent_bg_20 {
889
+ background-color: rgba(0, 122, 255, 0.15);
890
+ }
891
+
892
+ .tm_green_bg {
893
+ background-color: #34c759;
894
+ }
895
+
896
+ .tm_green_bg_15 {
897
+ background-color: rgba(52, 199, 89, 0.1);
898
+ }
899
+
900
+ .tm_primary_bg,
901
+ .tm_primary_bg_hover:hover {
902
+ background-color: #111;
903
+ }
904
+
905
+ .tm_primary_bg_2 {
906
+ background-color: #000036;
907
+ }
908
+
909
+ .tm_danger_color {
910
+ color: red;
911
+ }
912
+
913
+ .tm_primary_color {
914
+ color: #111;
915
+ }
916
+
917
+ .tm_secondary_color {
918
+ color: #666;
919
+ }
920
+
921
+ .tm_ternary_color {
922
+ color: #b5b5b5;
923
+ }
924
+
925
+ .tm_white_color {
926
+ color: #fff;
927
+ }
928
+
929
+ .tm_white_color_60 {
930
+ color: rgba(255, 255, 255, 0.6);
931
+ }
932
+
933
+ .tm_gray_bg {
934
+ background: #f5f6fa;
935
+ }
936
+
937
+ .tm_ternary_bg {
938
+ background-color: #b5b5b5;
939
+ }
940
+
941
+ .tm_accent_10_bg {
942
+ background-color: rgba(0, 122, 255, 0.1);
943
+ }
944
+
945
+ .tm_accent_border {
946
+ border-color: #007aff;
947
+ }
948
+
949
+ .tm_accent_border_10 {
950
+ border-color: rgba(0, 122, 255, 0.1);
951
+ }
952
+
953
+ .tm_accent_border_20 {
954
+ border-color: rgba(0, 122, 255, 0.2);
955
+ }
956
+
957
+ .tm_accent_border_30 {
958
+ border-color: rgba(0, 122, 255, 0.3);
959
+ }
960
+
961
+ .tm_accent_border_40 {
962
+ border-color: rgba(0, 122, 255, 0.4);
963
+ }
964
+
965
+ .tm_accent_border_50 {
966
+ border-color: rgba(0, 122, 255, 0.5);
967
+ }
968
+
969
+ .tm_primary_border {
970
+ border-color: #111;
971
+ }
972
+
973
+ .tm_gray_border {
974
+ border-color: #f5f6fa;
975
+ }
976
+
977
+ .tm_primary_border_2 {
978
+ border-color: #000036;
979
+ }
980
+
981
+ .tm_secondary_border {
982
+ border-color: #666;
983
+ }
984
+
985
+ .tm_ternary_border {
986
+ border-color: #b5b5b5;
987
+ }
988
+
989
+ .tm_border_color {
990
+ border-color: #dbdfea;
991
+ }
992
+
993
+ .tm_border_1 {
994
+ border-style: solid;
995
+ border-width: 1px;
996
+ }
997
+
998
+ .tm_body_lineheight {
999
+ line-height: 1.5em;
1000
+ }
1001
+
1002
+ .tm_invoice_in {
1003
+ position: relative;
1004
+ z-index: 100;
1005
+ }
1006
+
1007
+ .tm_container {
1008
+ max-width: 880px;
1009
+ padding: 30px 15px;
1010
+ margin-left: auto;
1011
+ margin-right: auto;
1012
+ position: relative;
1013
+ }
1014
+
1015
+ .tm_text_center {
1016
+ text-align: center;
1017
+ }
1018
+
1019
+ .tm_text_uppercase {
1020
+ text-transform: uppercase;
1021
+ }
1022
+
1023
+ .tm_text_right {
1024
+ text-align: right;
1025
+ }
1026
+
1027
+ .tm_align_center {
1028
+ -webkit-box-align: center;
1029
+ -ms-flex-align: center;
1030
+ align-items: center;
1031
+ }
1032
+
1033
+ .tm_border_bottom_0 {
1034
+ border-bottom: 0;
1035
+ }
1036
+
1037
+ .tm_border_top_0 {
1038
+ border-top: 0;
1039
+ }
1040
+
1041
+ .tm_table_baseline {
1042
+ vertical-align: baseline;
1043
+ }
1044
+
1045
+ .tm_border_none {
1046
+ border: none !important;
1047
+ }
1048
+
1049
+ .tm_flex {
1050
+ display: -webkit-box;
1051
+ display: -ms-flexbox;
1052
+ display: flex;
1053
+ }
1054
+
1055
+ .tm_justify_between {
1056
+ -webkit-box-pack: justify;
1057
+ -ms-flex-pack: justify;
1058
+ justify-content: space-between;
1059
+ }
1060
+
1061
+ .tm__align_center {
1062
+ -webkit-box-align: center;
1063
+ -ms-flex-align: center;
1064
+ align-items: center;
1065
+ }
1066
+
1067
+ .tm_border_left_none {
1068
+ border-left-width: 0;
1069
+ }
1070
+
1071
+ .tm_border_right_none {
1072
+ border-right-width: 0;
1073
+ }
1074
+
1075
+ .tm_table_responsive {
1076
+ overflow-x: auto;
1077
+ }
1078
+
1079
+ .tm_table_responsive > table {
1080
+ min-width: 600px;
1081
+ }
1082
+
1083
+ .tm_50_col > * {
1084
+ width: 50%;
1085
+ -webkit-box-flex: 0;
1086
+ -ms-flex: none;
1087
+ flex: none;
1088
+ }
1089
+
1090
+ .tm_no_border {
1091
+ border: none !important;
1092
+ }
1093
+
1094
+ .tm_grid_row {
1095
+ display: -ms-grid;
1096
+ display: grid;
1097
+ grid-gap: 10px 20px;
1098
+ list-style: none;
1099
+ padding: 0;
1100
+ }
1101
+
1102
+ .tm_col_2 {
1103
+ -ms-grid-columns: (1fr)[2];
1104
+ grid-template-columns: repeat(2, 1fr);
1105
+ }
1106
+
1107
+ .tm_col_3 {
1108
+ -ms-grid-columns: (1fr)[3];
1109
+ grid-template-columns: repeat(3, 1fr);
1110
+ }
1111
+
1112
+ .tm_col_4 {
1113
+ -ms-grid-columns: (1fr)[4];
1114
+ grid-template-columns: repeat(4, 1fr);
1115
+ }
1116
+
1117
+ .tm_max_w_150 {
1118
+ max-width: 150px;
1119
+ }
1120
+
1121
+ .tm_left_auto {
1122
+ margin-left: auto;
1123
+ }
1124
+
1125
+ hr {
1126
+ background: #dbdfea;
1127
+ height: 1px;
1128
+ border: none;
1129
+ margin: 0;
1130
+ }
1131
+
1132
+ .tm_invoice {
1133
+ background: #fff;
1134
+ border-radius: 10px;
1135
+ padding: 50px;
1136
+ }
1137
+
1138
+ .tm_invoice_footer {
1139
+ display: -webkit-box;
1140
+ display: -ms-flexbox;
1141
+ display: flex;
1142
+ }
1143
+
1144
+ .tm_invoice_footer table {
1145
+ margin-top: -1px;
1146
+ }
1147
+
1148
+ .tm_invoice_footer .tm_left_footer {
1149
+ width: 58%;
1150
+ padding: 10px 15px;
1151
+ -webkit-box-flex: 0;
1152
+ -ms-flex: none;
1153
+ flex: none;
1154
+ }
1155
+
1156
+ .tm_invoice_footer .tm_right_footer {
1157
+ width: 42%;
1158
+ }
1159
+
1160
+ .tm_note {
1161
+ margin-top: 30px;
1162
+ font-style: italic;
1163
+ }
1164
+
1165
+ .tm_font_style_normal {
1166
+ font-style: normal;
1167
+ }
1168
+
1169
+ .tm_sign img {
1170
+ max-height: 45px;
1171
+ }
1172
+
1173
+ .tm_coffee_shop_img {
1174
+ position: absolute;
1175
+ height: 200px;
1176
+ opacity: 0.04;
1177
+ top: 40px;
1178
+ left: 50%;
1179
+ -webkit-transform: translateX(-50%);
1180
+ transform: translateX(-50%);
1181
+ }
1182
+
1183
+ .tm_coffee_shop_img img {
1184
+ max-height: 100%;
1185
+ }
1186
+
1187
+ .tm_invoice.tm_style1 .tm_invoice_right {
1188
+ -webkit-box-flex: 0;
1189
+ -ms-flex: none;
1190
+ flex: none;
1191
+ width: 60%;
1192
+ }
1193
+
1194
+ .tm_invoice.tm_style1 .tm_invoice_table {
1195
+ grid-gap: 1px;
1196
+ }
1197
+
1198
+ .tm_invoice.tm_style1 .tm_invoice_table > * {
1199
+ border: 1px solid #dbdfea;
1200
+ margin: -1px;
1201
+ padding: 8px 15px 10px;
1202
+ }
1203
+
1204
+ .tm_invoice.tm_style1 .tm_invoice_head {
1205
+ display: -webkit-box;
1206
+ display: -ms-flexbox;
1207
+ display: flex;
1208
+ -webkit-box-pack: justify;
1209
+ -ms-flex-pack: justify;
1210
+ justify-content: space-between;
1211
+ }
1212
+
1213
+ .tm_invoice.tm_style1 .tm_invoice_head .tm_invoice_right div {
1214
+ line-height: 1em;
1215
+ }
1216
+
1217
+ .tm_invoice.tm_style1 .tm_invoice_info {
1218
+ display: -webkit-box;
1219
+ display: -ms-flexbox;
1220
+ display: flex;
1221
+ -webkit-box-align: center;
1222
+ -ms-flex-align: center;
1223
+ align-items: center;
1224
+ -webkit-box-pack: justify;
1225
+ -ms-flex-pack: justify;
1226
+ justify-content: space-between;
1227
+ }
1228
+
1229
+ .tm_invoice.tm_style1 .tm_invoice_info_2 {
1230
+ display: -webkit-box;
1231
+ display: -ms-flexbox;
1232
+ display: flex;
1233
+ -webkit-box-pack: justify;
1234
+ -ms-flex-pack: justify;
1235
+ justify-content: space-between;
1236
+ border-top: 1px solid #dbdfea;
1237
+ border-bottom: 1px solid #dbdfea;
1238
+ padding: 11px 0;
1239
+ }
1240
+
1241
+ .tm_invoice.tm_style1 .tm_invoice_seperator {
1242
+ min-height: 18px;
1243
+ border-radius: 1.6em;
1244
+ -webkit-box-flex: 1;
1245
+ -ms-flex: 1;
1246
+ flex: 1;
1247
+ margin-right: 20px;
1248
+ }
1249
+
1250
+ .tm_invoice.tm_style1 .tm_invoice_info_list {
1251
+ display: -webkit-box;
1252
+ display: -ms-flexbox;
1253
+ display: flex;
1254
+ }
1255
+
1256
+ .tm_invoice.tm_style1 .tm_invoice_info_list > *:not(:last-child) {
1257
+ margin-right: 20px;
1258
+ }
1259
+
1260
+ .tm_invoice.tm_style1 .tm_logo img {
1261
+ max-height: 50px;
1262
+ }
1263
+
1264
+ .tm_invoice.tm_style1 .tm_logo.tm_size1 img {
1265
+ max-height: 60px;
1266
+ }
1267
+
1268
+ .tm_invoice.tm_style1 .tm_logo.tm_size2 img {
1269
+ max-height: 70px;
1270
+ }
1271
+
1272
+ .tm_invoice.tm_style1 .tm_grand_total {
1273
+ padding: 8px 15px;
1274
+ }
1275
+
1276
+ .tm_invoice.tm_style1 .tm_box_3 {
1277
+ display: -webkit-box;
1278
+ display: -ms-flexbox;
1279
+ display: flex;
1280
+ }
1281
+
1282
+ .tm_invoice.tm_style1 .tm_box_3 > * {
1283
+ -webkit-box-flex: 1;
1284
+ -ms-flex: 1;
1285
+ flex: 1;
1286
+ }
1287
+
1288
+ .tm_invoice.tm_style1 .tm_box_3 ul {
1289
+ margin: 0;
1290
+ padding: 0;
1291
+ list-style: none;
1292
+ }
1293
+
1294
+ .tm_invoice.tm_style1 .tm_box_3 ul li {
1295
+ display: -webkit-box;
1296
+ display: -ms-flexbox;
1297
+ display: flex;
1298
+ }
1299
+
1300
+ .tm_invoice.tm_style1 .tm_box_3 ul li:not(:last-child) {
1301
+ margin-bottom: 5px;
1302
+ }
1303
+
1304
+ .tm_invoice.tm_style1 .tm_box_3 ul span {
1305
+ -webkit-box-flex: 0;
1306
+ -ms-flex: none;
1307
+ flex: none;
1308
+ }
1309
+
1310
+ .tm_invoice.tm_style1 .tm_box_3 ul span:first-child {
1311
+ margin-right: 5px;
1312
+ }
1313
+
1314
+ .tm_invoice.tm_style1 .tm_box_3 ul span:last-child {
1315
+ -webkit-box-flex: 1;
1316
+ -ms-flex: 1;
1317
+ flex: 1;
1318
+ }
1319
+
1320
+ .tm_invoice.tm_style2 .tm_invoice_head {
1321
+ display: -webkit-box;
1322
+ display: -ms-flexbox;
1323
+ display: flex;
1324
+ -webkit-box-align: center;
1325
+ -ms-flex-align: center;
1326
+ align-items: center;
1327
+ border-bottom: 1px solid #dbdfea;
1328
+ padding-bottom: 15px;
1329
+ position: relative;
1330
+ }
1331
+
1332
+ .tm_invoice.tm_style2 .tm_invoice_left {
1333
+ width: 30%;
1334
+ -webkit-box-flex: 0;
1335
+ -ms-flex: none;
1336
+ flex: none;
1337
+ }
1338
+
1339
+ .tm_invoice.tm_style2 .tm_invoice_right {
1340
+ width: 70%;
1341
+ -webkit-box-flex: 0;
1342
+ -ms-flex: none;
1343
+ flex: none;
1344
+ }
1345
+
1346
+ .tm_invoice.tm_style2 .tm_invoice_info {
1347
+ display: -webkit-box;
1348
+ display: -ms-flexbox;
1349
+ display: flex;
1350
+ }
1351
+
1352
+ .tm_invoice.tm_style2 .tm_invoice_info_left {
1353
+ width: 30%;
1354
+ -webkit-box-flex: 0;
1355
+ -ms-flex: none;
1356
+ flex: none;
1357
+ }
1358
+
1359
+ .tm_invoice.tm_style2 .tm_invoice_info_right {
1360
+ width: 70%;
1361
+ -webkit-box-flex: 0;
1362
+ -ms-flex: none;
1363
+ flex: none;
1364
+ }
1365
+
1366
+ .tm_invoice.tm_style2 .tm_logo img {
1367
+ max-height: 60px;
1368
+ }
1369
+
1370
+ .tm_invoice.tm_style2 .tm_invoice_title {
1371
+ line-height: 0.8em;
1372
+ }
1373
+
1374
+ .tm_invoice.tm_style2 .tm_invoice_info_in {
1375
+ padding: 12px 20px;
1376
+ border-radius: 10px;
1377
+ }
1378
+
1379
+ .tm_invoice.tm_style2 .tm_card_note {
1380
+ display: inline-block;
1381
+ padding: 6px 15px;
1382
+ border-radius: 6px;
1383
+ margin-bottom: 10px;
1384
+ margin-top: 5px;
1385
+ }
1386
+
1387
+ .tm_invoice.tm_style2 .tm_invoice_footer .tm_left_footer {
1388
+ padding-left: 0;
1389
+ }
1390
+
1391
+ .tm_invoice.tm_style1.tm_type1 {
1392
+ padding: 0px 50px 30px;
1393
+ position: relative;
1394
+ overflow: hidden;
1395
+ border-radius: 0;
1396
+ }
1397
+
1398
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_head {
1399
+ height: 110px;
1400
+ position: relative;
1401
+ }
1402
+
1403
+ .tm_invoice.tm_style1.tm_type1 .tm_shape_bg {
1404
+ position: absolute;
1405
+ height: 100%;
1406
+ width: 70%;
1407
+ -webkit-transform: skewX(35deg);
1408
+ transform: skewX(35deg);
1409
+ top: 0px;
1410
+ right: -100px;
1411
+ overflow: hidden;
1412
+ }
1413
+
1414
+ .tm_invoice.tm_style1.tm_type1 .tm_shape_bg img {
1415
+ height: 100%;
1416
+ width: 100%;
1417
+ -o-object-fit: cover;
1418
+ object-fit: cover;
1419
+ -webkit-transform: skewX(-35deg) translateX(-45px);
1420
+ transform: skewX(-35deg) translateX(-45px);
1421
+ }
1422
+
1423
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_right {
1424
+ position: relative;
1425
+ z-index: 2;
1426
+ }
1427
+
1428
+ .tm_invoice.tm_style1.tm_type1 .tm_logo img {
1429
+ max-height: 70px;
1430
+ }
1431
+
1432
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
1433
+ margin-right: 0;
1434
+ border-radius: 0;
1435
+ -webkit-transform: skewX(35deg);
1436
+ transform: skewX(35deg);
1437
+ position: absolute;
1438
+ height: 100%;
1439
+ width: 57.5%;
1440
+ right: -60px;
1441
+ overflow: hidden;
1442
+ border: none;
1443
+ }
1444
+
1445
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
1446
+ height: 100%;
1447
+ width: 100%;
1448
+ -o-object-fit: cover;
1449
+ object-fit: cover;
1450
+ -webkit-transform: skewX(-35deg);
1451
+ transform: skewX(-35deg);
1452
+ -webkit-transform: skewX(-35deg) translateX(-10px);
1453
+ transform: skewX(-35deg) translateX(-10px);
1454
+ }
1455
+
1456
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_info {
1457
+ position: relative;
1458
+ padding: 4px 0;
1459
+ }
1460
+
1461
+ .tm_invoice.tm_style1.tm_type1 .tm_card_note,
1462
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_info_list {
1463
+ position: relative;
1464
+ z-index: 1;
1465
+ }
1466
+
1467
+ @media (min-width: 500px) {
1468
+ .tm_invoice.tm_style1.tm_type2 {
1469
+ position: relative;
1470
+ overflow: hidden;
1471
+ border-radius: 0;
1472
+ }
1473
+ .tm_invoice.tm_style1.tm_type2 td {
1474
+ padding-top: 12px;
1475
+ padding-bottom: 12px;
1476
+ }
1477
+ .tm_invoice.tm_style1.tm_type2 .tm_pt0 {
1478
+ padding-top: 0;
1479
+ }
1480
+ .tm_invoice.tm_style1.tm_type2 .tm_bars {
1481
+ display: -webkit-box;
1482
+ display: -ms-flexbox;
1483
+ display: flex;
1484
+ position: absolute;
1485
+ top: 0px;
1486
+ left: 50%;
1487
+ -webkit-transform: translateX(-50%);
1488
+ transform: translateX(-50%);
1489
+ overflow: hidden;
1490
+ padding: 0 15px;
1491
+ }
1492
+ .tm_invoice.tm_style1.tm_type2 .tm_bars span {
1493
+ height: 100px;
1494
+ width: 5px;
1495
+ display: block;
1496
+ margin: -15px 20px 0;
1497
+ -webkit-transform: rotate(-40deg);
1498
+ transform: rotate(-40deg);
1499
+ }
1500
+ .tm_invoice.tm_style1.tm_type2 .tm_bars.tm_type1 {
1501
+ top: initial;
1502
+ bottom: 0;
1503
+ }
1504
+ .tm_invoice.tm_style1.tm_type2 .tm_bars.tm_type1 span {
1505
+ margin: 0 20px 0;
1506
+ position: relative;
1507
+ bottom: -15px;
1508
+ }
1509
+ .tm_invoice.tm_style1.tm_type2 .tm_shape {
1510
+ height: 230px;
1511
+ width: 250px;
1512
+ position: absolute;
1513
+ top: 0;
1514
+ right: 0;
1515
+ overflow: hidden;
1516
+ }
1517
+ .tm_invoice.tm_style1.tm_type2 .tm_shape .tm_shape_in {
1518
+ position: absolute;
1519
+ height: 350px;
1520
+ width: 350px;
1521
+ -webkit-transform: rotate(40deg);
1522
+ transform: rotate(40deg);
1523
+ top: -199px;
1524
+ left: 67px;
1525
+ overflow: hidden;
1526
+ }
1527
+ .tm_invoice.tm_style1.tm_type2 .tm_shape.tm_type1 {
1528
+ top: initial;
1529
+ bottom: 0;
1530
+ right: initial;
1531
+ left: 0;
1532
+ }
1533
+ .tm_invoice.tm_style1.tm_type2 .tm_shape.tm_type1 .tm_shape_in {
1534
+ top: 135px;
1535
+ left: -153px;
1536
+ }
1537
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_2 {
1538
+ height: 120px;
1539
+ width: 120px;
1540
+ border: 5px solid currentColor;
1541
+ padding: 20px;
1542
+ position: absolute;
1543
+ bottom: -30px;
1544
+ right: 77px;
1545
+ -webkit-transform: rotate(45deg);
1546
+ transform: rotate(45deg);
1547
+ }
1548
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_2 .tm_shape_2_in {
1549
+ height: 100%;
1550
+ width: 100%;
1551
+ border: 20px solid currentColor;
1552
+ }
1553
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_2.tm_type1 {
1554
+ left: -76px;
1555
+ right: initial;
1556
+ bottom: 245px;
1557
+ }
1558
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_2.tm_type1 .tm_shape_2_in {
1559
+ border-width: 6px;
1560
+ }
1561
+ .tm_invoice.tm_style1.tm_type2 .tm_invoice_right {
1562
+ width: 40%;
1563
+ }
1564
+ .tm_invoice.tm_style1.tm_type2 .tm_logo img {
1565
+ max-height: 65px;
1566
+ }
1567
+ .tm_invoice.tm_style1.tm_type2 .tm_invoice_footer {
1568
+ margin-bottom: 120px;
1569
+ }
1570
+ .tm_invoice.tm_style1.tm_type2 .tm_right_footer {
1571
+ position: relative;
1572
+ padding: 6px 0;
1573
+ }
1574
+ .tm_invoice.tm_style1.tm_type2 .tm_right_footer table {
1575
+ position: relative;
1576
+ z-index: 2;
1577
+ }
1578
+ .tm_invoice.tm_style1.tm_type2 .tm_left_footer {
1579
+ padding: 30px 15px;
1580
+ }
1581
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_3 {
1582
+ position: absolute;
1583
+ top: 0;
1584
+ left: -40px;
1585
+ height: 100%;
1586
+ width: calc(100% + 150px);
1587
+ -webkit-transform: skewX(35deg);
1588
+ transform: skewX(35deg);
1589
+ }
1590
+ .tm_invoice.tm_style1.tm_type2 .tm_shape_4 {
1591
+ position: absolute;
1592
+ bottom: 200px;
1593
+ left: 0;
1594
+ height: 200px;
1595
+ width: 200px;
1596
+ }
1597
+ }
1598
+
1599
+ .tm_invoice.tm_style1.tm_type3 {
1600
+ position: relative;
1601
+ overflow: hidden;
1602
+ border-radius: 0;
1603
+ }
1604
+
1605
+ .tm_invoice.tm_style1.tm_type3 .tm_shape_1 {
1606
+ position: absolute;
1607
+ top: -1px;
1608
+ left: 0;
1609
+ }
1610
+
1611
+ .tm_invoice.tm_style1.tm_type3 .tm_shape_2 {
1612
+ position: absolute;
1613
+ bottom: 0;
1614
+ left: 0;
1615
+ display: -webkit-box;
1616
+ display: -ms-flexbox;
1617
+ display: flex;
1618
+ }
1619
+
1620
+ .tm_invoice.tm_style1.tm_type3 .tm_logo img {
1621
+ max-height: 60px;
1622
+ }
1623
+
1624
+ .tm_invoice.tm_style1.tm_type3 .tm_invoice_head.tm_mb20 {
1625
+ margin-bottom: 65px;
1626
+ }
1627
+
1628
+ .tm_invoice.tm_style1.tm_type3 .tm_invoice_info_list {
1629
+ position: relative;
1630
+ padding: 10px 0 10px 40px;
1631
+ }
1632
+
1633
+ .tm_invoice.tm_style1.tm_type3 .tm_invoice_info_list_bg {
1634
+ position: absolute;
1635
+ height: 100%;
1636
+ width: calc(100% + 100px);
1637
+ top: 0;
1638
+ left: 0;
1639
+ border-radius: 20px 0 0 0px;
1640
+ -webkit-transform: skewX(-35deg);
1641
+ transform: skewX(-35deg);
1642
+ }
1643
+
1644
+ .tm_invoice.tm_style2.tm_type1 {
1645
+ padding-top: 0;
1646
+ padding-bottom: 0;
1647
+ border-width: 40px 0 0;
1648
+ border-style: solid;
1649
+ position: relative;
1650
+ overflow: hidden;
1651
+ }
1652
+
1653
+ .tm_invoice.tm_style2.tm_type1.tm_small_border {
1654
+ border-width: 7px 0 0;
1655
+ }
1656
+
1657
+ .tm_invoice.tm_style2.tm_type1 .tm_shape_bg {
1658
+ position: absolute;
1659
+ height: 100%;
1660
+ width: 42%;
1661
+ -webkit-transform: skewX(-35deg);
1662
+ transform: skewX(-35deg);
1663
+ top: 0px;
1664
+ left: -100px;
1665
+ }
1666
+
1667
+ .tm_invoice.tm_style2.tm_type1 .tm_invoice_head {
1668
+ padding-top: 15px;
1669
+ border-bottom: none;
1670
+ }
1671
+
1672
+ .tm_invoice.tm_style2.tm_type1 .tm_logo {
1673
+ position: relative;
1674
+ z-index: 2;
1675
+ }
1676
+
1677
+ .tm_invoice.tm_style2.tm_type1 .tm_bottom_invoice {
1678
+ position: relative;
1679
+ display: -webkit-box;
1680
+ display: -ms-flexbox;
1681
+ display: flex;
1682
+ padding: 15px 50px 20px;
1683
+ border-top: 1px solid #dbdfea;
1684
+ -webkit-box-pack: justify;
1685
+ -ms-flex-pack: justify;
1686
+ justify-content: space-between;
1687
+ -webkit-box-align: center;
1688
+ -ms-flex-align: center;
1689
+ align-items: center;
1690
+ margin: 30px -50px 0;
1691
+ }
1692
+
1693
+ .tm_invoice_content {
1694
+ position: relative;
1695
+ z-index: 10;
1696
+ }
1697
+
1698
+ .tm_invoice_wrap {
1699
+ position: relative;
1700
+ }
1701
+
1702
+ .tm_note_list li:not(:last-child) {
1703
+ margin-bottom: 5px;
1704
+ }
1705
+
1706
+ .tm_list.tm_style1 {
1707
+ list-style: none;
1708
+ padding: 0;
1709
+ margin: 0;
1710
+ }
1711
+
1712
+ .tm_list.tm_style1 svg {
1713
+ width: 16px;
1714
+ height: initial;
1715
+ }
1716
+
1717
+ .tm_list.tm_style1 .tm_list_icon {
1718
+ display: -webkit-box;
1719
+ display: -ms-flexbox;
1720
+ display: flex;
1721
+ position: absolute;
1722
+ left: 0;
1723
+ top: 3px;
1724
+ }
1725
+
1726
+ .tm_list.tm_style1 li {
1727
+ padding-left: 25px;
1728
+ position: relative;
1729
+ }
1730
+
1731
+ .tm_list.tm_style1 li:not(:last-child) {
1732
+ margin-bottom: 5px;
1733
+ }
1734
+
1735
+ .tm_list.tm_style1.tm_text_right li {
1736
+ padding-left: 0;
1737
+ padding-right: 25px;
1738
+ }
1739
+
1740
+ .tm_list.tm_style1.tm_text_right .tm_list_icon {
1741
+ left: initial;
1742
+ right: 0;
1743
+ }
1744
+
1745
+ .tm_section_heading {
1746
+ border-width: 0 0 1px 0;
1747
+ border-style: solid;
1748
+ }
1749
+
1750
+ .tm_section_heading > span {
1751
+ display: inline-block;
1752
+ padding: 8px 15px;
1753
+ border-radius: 7px 7px 0 0;
1754
+ }
1755
+
1756
+ .tm_section_heading .tm_curve_35 {
1757
+ margin-left: 12px;
1758
+ margin-right: 0;
1759
+ }
1760
+
1761
+ .tm_section_heading .tm_curve_35 span {
1762
+ display: inline-block;
1763
+ }
1764
+
1765
+ .tm_padd_15_20 {
1766
+ padding: 15px 20px;
1767
+ }
1768
+
1769
+ .tm_padd_8_20 {
1770
+ padding: 8px 20px;
1771
+ }
1772
+
1773
+ .tm_padd_20 {
1774
+ padding: 20px;
1775
+ }
1776
+
1777
+ .tm_padd_15 {
1778
+ padding: 15px;
1779
+ }
1780
+
1781
+ .tm_padd_10 {
1782
+ padding: 10px;
1783
+ }
1784
+
1785
+ .tm_padd_5 {
1786
+ padding: 5px;
1787
+ }
1788
+
1789
+ .tm_curve_35 {
1790
+ -webkit-transform: skewX(-35deg);
1791
+ transform: skewX(-35deg);
1792
+ padding: 12px 20px 12px 30px;
1793
+ margin-left: 22px;
1794
+ margin-right: 22px;
1795
+ }
1796
+
1797
+ .tm_curve_35 > * {
1798
+ -webkit-transform: skewX(35deg);
1799
+ transform: skewX(35deg);
1800
+ }
1801
+
1802
+ .tm_dark_invoice_body {
1803
+ background-color: #18191a;
1804
+ }
1805
+
1806
+ .tm_dark_invoice {
1807
+ background: #252526;
1808
+ color: rgba(255, 255, 255, 0.65);
1809
+ }
1810
+
1811
+ .tm_dark_invoice .tm_primary_color {
1812
+ color: rgba(255, 255, 255, 0.9);
1813
+ }
1814
+
1815
+ .tm_dark_invoice .tm_secondary_color {
1816
+ color: rgba(255, 255, 255, 0.65);
1817
+ }
1818
+
1819
+ .tm_dark_invoice .tm_ternary_color {
1820
+ color: rgba(255, 255, 255, 0.4);
1821
+ }
1822
+
1823
+ .tm_dark_invoice .tm_gray_bg {
1824
+ background: rgba(255, 255, 255, 0.08);
1825
+ }
1826
+
1827
+ .tm_dark_invoice .tm_border_color,
1828
+ .tm_dark_invoice .tm_round_border,
1829
+ .tm_dark_invoice td, .tm_dark_invoice th,
1830
+ .tm_dark_invoice .tm_border_top,
1831
+ .tm_dark_invoice .tm_border_bottom {
1832
+ border-color: rgba(255, 255, 255, 0.1);
1833
+ }
1834
+
1835
+ .tm_dark_invoice + .tm_invoice_btns {
1836
+ background: #252526;
1837
+ border-color: #252526;
1838
+ }
1839
+
1840
+ @media (min-width: 1000px) {
1841
+ .tm_invoice_btns {
1842
+ display: -webkit-box;
1843
+ display: -ms-flexbox;
1844
+ display: flex;
1845
+ -webkit-box-orient: vertical;
1846
+ -webkit-box-direction: normal;
1847
+ -ms-flex-direction: column;
1848
+ flex-direction: column;
1849
+ -webkit-box-pack: center;
1850
+ -ms-flex-pack: center;
1851
+ justify-content: center;
1852
+ margin-top: 0px;
1853
+ margin-left: 20px;
1854
+ position: absolute;
1855
+ left: 100%;
1856
+ top: 0;
1857
+ -webkit-box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1858
+ box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1859
+ border: 3px solid #fff;
1860
+ border-radius: 6px;
1861
+ background-color: #fff;
1862
+ }
1863
+ .tm_invoice_btn {
1864
+ display: -webkit-inline-box;
1865
+ display: -ms-inline-flexbox;
1866
+ display: inline-flex;
1867
+ -webkit-box-align: center;
1868
+ -ms-flex-align: center;
1869
+ align-items: center;
1870
+ border: none;
1871
+ font-weight: 600;
1872
+ cursor: pointer;
1873
+ padding: 0;
1874
+ background-color: transparent;
1875
+ position: relative;
1876
+ }
1877
+ .tm_invoice_btn svg {
1878
+ width: 24px;
1879
+ }
1880
+ .tm_invoice_btn .tm_btn_icon {
1881
+ padding: 0;
1882
+ display: -webkit-box;
1883
+ display: -ms-flexbox;
1884
+ display: flex;
1885
+ height: 42px;
1886
+ width: 42px;
1887
+ -webkit-box-align: center;
1888
+ -ms-flex-align: center;
1889
+ align-items: center;
1890
+ -webkit-box-pack: center;
1891
+ -ms-flex-pack: center;
1892
+ justify-content: center;
1893
+ }
1894
+ .tm_invoice_btn .tm_btn_text {
1895
+ position: absolute;
1896
+ left: 100%;
1897
+ background-color: #111;
1898
+ color: #fff;
1899
+ padding: 3px 12px;
1900
+ display: inline-block;
1901
+ margin-left: 10px;
1902
+ border-radius: 5px;
1903
+ top: 50%;
1904
+ -webkit-transform: translateY(-50%);
1905
+ transform: translateY(-50%);
1906
+ font-weight: 500;
1907
+ min-height: 28px;
1908
+ display: -webkit-box;
1909
+ display: -ms-flexbox;
1910
+ display: flex;
1911
+ -webkit-box-align: center;
1912
+ -ms-flex-align: center;
1913
+ align-items: center;
1914
+ opacity: 0;
1915
+ visibility: hidden;
1916
+ }
1917
+ .tm_invoice_btn .tm_btn_text:before {
1918
+ content: '';
1919
+ height: 10px;
1920
+ width: 10px;
1921
+ position: absolute;
1922
+ background-color: #111;
1923
+ -webkit-transform: rotate(45deg);
1924
+ transform: rotate(45deg);
1925
+ left: -3px;
1926
+ top: 50%;
1927
+ margin-top: -6px;
1928
+ border-radius: 2px;
1929
+ }
1930
+ .tm_invoice_btn:hover .tm_btn_text {
1931
+ opacity: 1;
1932
+ visibility: visible;
1933
+ }
1934
+ .tm_invoice_btn:not(:last-child) {
1935
+ margin-bottom: 3px;
1936
+ }
1937
+ .tm_invoice_btn.tm_color1 {
1938
+ background-color: rgba(0, 122, 255, 0.1);
1939
+ color: #007aff;
1940
+ border-radius: 5px 5px 0 0;
1941
+ }
1942
+ .tm_invoice_btn.tm_color1:hover {
1943
+ background-color: rgba(0, 122, 255, 0.2);
1944
+ }
1945
+ .tm_invoice_btn.tm_color2 {
1946
+ background-color: rgba(52, 199, 89, 0.1);
1947
+ color: #34c759;
1948
+ border-radius: 0 0 5px 5px;
1949
+ }
1950
+ .tm_invoice_btn.tm_color2:hover {
1951
+ background-color: rgba(52, 199, 89, 0.2);
1952
+ }
1953
+ }
1954
+
1955
+ @media (max-width: 999px) {
1956
+ .tm_invoice_btns {
1957
+ display: -webkit-inline-box;
1958
+ display: -ms-inline-flexbox;
1959
+ display: inline-flex;
1960
+ -webkit-box-pack: center;
1961
+ -ms-flex-pack: center;
1962
+ justify-content: center;
1963
+ margin-top: 0px;
1964
+ margin-top: 20px;
1965
+ -webkit-box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1966
+ box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1967
+ border: 3px solid #fff;
1968
+ border-radius: 6px;
1969
+ background-color: #fff;
1970
+ position: relative;
1971
+ left: 50%;
1972
+ -webkit-transform: translateX(-50%);
1973
+ transform: translateX(-50%);
1974
+ }
1975
+ .tm_invoice_btn {
1976
+ display: -webkit-inline-box;
1977
+ display: -ms-inline-flexbox;
1978
+ display: inline-flex;
1979
+ -webkit-box-align: center;
1980
+ -ms-flex-align: center;
1981
+ align-items: center;
1982
+ border: none;
1983
+ font-weight: 600;
1984
+ cursor: pointer;
1985
+ padding: 0;
1986
+ background-color: transparent;
1987
+ position: relative;
1988
+ border-radius: 5px;
1989
+ padding: 6px 15px;
1990
+ }
1991
+ .tm_invoice_btn svg {
1992
+ width: 24px;
1993
+ }
1994
+ .tm_invoice_btn .tm_btn_icon {
1995
+ padding: 0;
1996
+ display: -webkit-box;
1997
+ display: -ms-flexbox;
1998
+ display: flex;
1999
+ -webkit-box-align: center;
2000
+ -ms-flex-align: center;
2001
+ align-items: center;
2002
+ -webkit-box-pack: center;
2003
+ -ms-flex-pack: center;
2004
+ justify-content: center;
2005
+ margin-right: 8px;
2006
+ }
2007
+ .tm_invoice_btn:not(:last-child) {
2008
+ margin-right: 3px;
2009
+ }
2010
+ .tm_invoice_btn.tm_color1 {
2011
+ background-color: rgba(0, 122, 255, 0.1);
2012
+ color: #007aff;
2013
+ }
2014
+ .tm_invoice_btn.tm_color1:hover {
2015
+ background-color: rgba(0, 122, 255, 0.2);
2016
+ }
2017
+ .tm_invoice_btn.tm_color2 {
2018
+ background-color: rgba(52, 199, 89, 0.1);
2019
+ color: #34c759;
2020
+ }
2021
+ .tm_invoice_btn.tm_color2:hover {
2022
+ background-color: rgba(52, 199, 89, 0.2);
2023
+ }
2024
+ }
2025
+
2026
+ @media (max-width: 767px) {
2027
+ .tm_col_4 {
2028
+ -ms-grid-columns: (1fr)[1];
2029
+ grid-template-columns: repeat(1, 1fr);
2030
+ }
2031
+ .tm_col_2_md {
2032
+ -ms-grid-columns: (1fr)[2];
2033
+ grid-template-columns: repeat(2, 1fr);
2034
+ }
2035
+ .tm_m0_md {
2036
+ margin: 0;
2037
+ }
2038
+ .tm_mb10_md {
2039
+ margin-bottom: 10px;
2040
+ }
2041
+ .tm_mb15_md {
2042
+ margin-bottom: 15px;
2043
+ }
2044
+ .tm_mb20_md {
2045
+ margin-bottom: 20px;
2046
+ }
2047
+ .tm_mobile_hide {
2048
+ display: none;
2049
+ }
2050
+ .tm_invoice {
2051
+ padding: 30px 20px;
2052
+ }
2053
+ .tm_invoice .tm_right_footer {
2054
+ width: 100%;
2055
+ }
2056
+ .tm_invoice_footer {
2057
+ -webkit-box-orient: vertical;
2058
+ -webkit-box-direction: reverse;
2059
+ -ms-flex-direction: column-reverse;
2060
+ flex-direction: column-reverse;
2061
+ }
2062
+ .tm_invoice_footer .tm_left_footer {
2063
+ width: 100%;
2064
+ border-top: 1px solid #dbdfea;
2065
+ margin-top: -1px;
2066
+ padding: 15px 0;
2067
+ }
2068
+ .tm_invoice.tm_style2 .tm_card_note {
2069
+ margin-top: 0;
2070
+ }
2071
+ .tm_note.tm_text_center {
2072
+ text-align: left;
2073
+ }
2074
+ .tm_note.tm_text_center p br {
2075
+ display: none;
2076
+ }
2077
+ .tm_invoice_footer.tm_type1 {
2078
+ -webkit-box-orient: vertical;
2079
+ -webkit-box-direction: normal;
2080
+ -ms-flex-direction: column;
2081
+ flex-direction: column;
2082
+ }
2083
+ .tm_invoice.tm_style2 .tm_invoice_head {
2084
+ -webkit-box-orient: vertical;
2085
+ -webkit-box-direction: normal;
2086
+ -ms-flex-direction: column;
2087
+ flex-direction: column;
2088
+ }
2089
+ .tm_invoice.tm_style2 .tm_invoice_head > * {
2090
+ width: 100%;
2091
+ }
2092
+ .tm_invoice.tm_style2 .tm_invoice_head .tm_invoice_left {
2093
+ margin-bottom: 15px;
2094
+ }
2095
+ .tm_invoice.tm_style2 .tm_invoice_head .tm_text_right {
2096
+ text-align: left;
2097
+ }
2098
+ .tm_invoice.tm_style2 .tm_invoice_info {
2099
+ -webkit-box-orient: vertical;
2100
+ -webkit-box-direction: normal;
2101
+ -ms-flex-direction: column;
2102
+ flex-direction: column;
2103
+ }
2104
+ .tm_invoice.tm_style2 .tm_invoice_info > * {
2105
+ width: 100%;
2106
+ }
2107
+ .tm_invoice.tm_style1.tm_type1 {
2108
+ padding: 30px 20px;
2109
+ }
2110
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_head {
2111
+ height: initial;
2112
+ }
2113
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_info {
2114
+ -webkit-box-orient: vertical;
2115
+ -webkit-box-direction: normal;
2116
+ -ms-flex-direction: column;
2117
+ flex-direction: column;
2118
+ -webkit-box-align: start;
2119
+ -ms-flex-align: start;
2120
+ align-items: flex-start;
2121
+ padding-left: 15px;
2122
+ padding-right: 15px;
2123
+ }
2124
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
2125
+ width: 100%;
2126
+ -webkit-transform: initial;
2127
+ transform: initial;
2128
+ right: 0;
2129
+ top: 0;
2130
+ }
2131
+ .tm_invoice.tm_style1.tm_type1 .tm_logo img {
2132
+ max-height: 60px;
2133
+ }
2134
+ .tm_invoice.tm_style2.tm_type1 {
2135
+ border-width: 20px 0 0;
2136
+ }
2137
+ .tm_invoice.tm_style2.tm_type1 .tm_shape_bg {
2138
+ width: 250px;
2139
+ height: 80px;
2140
+ }
2141
+ .tm_invoice.tm_style2.tm_type1 .tm_invoice_head .tm_text_center {
2142
+ text-align: left;
2143
+ }
2144
+ .tm_invoice.tm_style2.tm_type1 .tm_logo {
2145
+ top: -8px;
2146
+ margin-bottom: 15px;
2147
+ }
2148
+ .tm_invoice.tm_style2 .tm_invoice_info_in {
2149
+ padding: 12px 15px;
2150
+ }
2151
+ .tm_border_none_md {
2152
+ border: none !important;
2153
+ }
2154
+ .tm_border_left_none_md {
2155
+ border-left-width: 0;
2156
+ }
2157
+ .tm_border_right_none_md {
2158
+ border-right-width: 0;
2159
+ }
2160
+ .tm_padd_left_15_md {
2161
+ padding-left: 15px !important;
2162
+ }
2163
+ .tm_invoice.tm_style2 .tm_logo img {
2164
+ max-height: 50px;
2165
+ }
2166
+ .tm_curve_35 {
2167
+ -webkit-transform: skewX(0deg);
2168
+ transform: skewX(0deg);
2169
+ margin-left: 0;
2170
+ margin-right: 0;
2171
+ }
2172
+ .tm_curve_35 > * {
2173
+ -webkit-transform: inherit;
2174
+ transform: inherit;
2175
+ }
2176
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator,
2177
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
2178
+ -webkit-transform: initial;
2179
+ transform: initial;
2180
+ }
2181
+ .tm_section_heading .tm_curve_35 {
2182
+ margin-left: 0;
2183
+ }
2184
+ .tm_shape_2.tm_type1 {
2185
+ display: none;
2186
+ }
2187
+ }
2188
+
2189
+ @media (max-width: 500px) {
2190
+ .tm_border_none_sm {
2191
+ border: none !important;
2192
+ }
2193
+ .tm_flex_column_sm {
2194
+ -webkit-box-orient: vertical;
2195
+ -webkit-box-direction: normal;
2196
+ -ms-flex-direction: column;
2197
+ flex-direction: column;
2198
+ }
2199
+ .tm_align_start_sm {
2200
+ -webkit-box-align: start;
2201
+ -ms-flex-align: start;
2202
+ align-items: flex-start;
2203
+ }
2204
+ .tm_m0_sm {
2205
+ margin-bottom: 0;
2206
+ }
2207
+ .tm_invoice.tm_style1 .tm_logo {
2208
+ margin-bottom: 10px;
2209
+ }
2210
+ .tm_invoice.tm_style1 .tm_invoice_head {
2211
+ -webkit-box-orient: vertical;
2212
+ -webkit-box-direction: normal;
2213
+ -ms-flex-direction: column;
2214
+ flex-direction: column;
2215
+ }
2216
+ .tm_invoice.tm_style1 .tm_invoice_head .tm_invoice_left,
2217
+ .tm_invoice.tm_style1 .tm_invoice_head .tm_invoice_right {
2218
+ width: 100%;
2219
+ }
2220
+ .tm_invoice.tm_style1 .tm_invoice_head .tm_invoice_right {
2221
+ text-align: left;
2222
+ }
2223
+ .tm_list.tm_style2 li {
2224
+ -webkit-box-orient: vertical;
2225
+ -webkit-box-direction: normal;
2226
+ -ms-flex-direction: column;
2227
+ flex-direction: column;
2228
+ }
2229
+ .tm_list.tm_style2 li > * {
2230
+ padding: 5px 20px;
2231
+ }
2232
+ .tm_col_2,
2233
+ .tm_col_3 {
2234
+ -ms-grid-columns: (1fr)[1];
2235
+ grid-template-columns: repeat(1, 1fr);
2236
+ }
2237
+ .tm_col_2_sm {
2238
+ -ms-grid-columns: (1fr)[2];
2239
+ grid-template-columns: repeat(2, 1fr);
2240
+ }
2241
+ .tm_table.tm_style1.tm_type1 {
2242
+ padding: 0px 20px;
2243
+ }
2244
+ .tm_box2_wrap {
2245
+ -ms-grid-columns: (1fr)[1];
2246
+ grid-template-columns: repeat(1, 1fr);
2247
+ }
2248
+ .tm_box.tm_style1.tm_type1 {
2249
+ max-width: 100%;
2250
+ width: 100%;
2251
+ }
2252
+ .tm_invoice.tm_style1 .tm_invoice_left {
2253
+ max-width: 100%;
2254
+ }
2255
+ .tm_f50 {
2256
+ font-size: 30px;
2257
+ }
2258
+ .tm_invoice.tm_style1 .tm_invoice_info {
2259
+ -webkit-box-orient: vertical;
2260
+ -webkit-box-direction: reverse;
2261
+ -ms-flex-direction: column-reverse;
2262
+ flex-direction: column-reverse;
2263
+ }
2264
+ .tm_invoice.tm_style1 .tm_invoice_seperator {
2265
+ -webkit-box-flex: 0;
2266
+ -ms-flex: none;
2267
+ flex: none;
2268
+ width: 100%;
2269
+ margin-right: 0;
2270
+ min-height: 5px;
2271
+ }
2272
+ .tm_invoice.tm_style1 .tm_invoice_info_list {
2273
+ width: 100%;
2274
+ -ms-flex-wrap: wrap;
2275
+ flex-wrap: wrap;
2276
+ }
2277
+ .tm_invoice.tm_style1 .tm_invoice_seperator + .tm_invoice_info_list {
2278
+ margin-bottom: 5px;
2279
+ }
2280
+ .tm_f30 {
2281
+ font-size: 22px;
2282
+ }
2283
+ .tm_invoice.tm_style1 .tm_box_3 {
2284
+ -webkit-box-orient: vertical;
2285
+ -webkit-box-direction: normal;
2286
+ -ms-flex-direction: column;
2287
+ flex-direction: column;
2288
+ }
2289
+ .tm_invoice.tm_style1 .tm_box_3 span br {
2290
+ display: none;
2291
+ }
2292
+ .tm_invoice.tm_style1 .tm_box_3 > *:not(:last-child) {
2293
+ margin-bottom: 15px;
2294
+ }
2295
+ .tm_invoice.tm_style1 .tm_box_3 ul li {
2296
+ -webkit-box-orient: vertical;
2297
+ -webkit-box-direction: normal;
2298
+ -ms-flex-direction: column;
2299
+ flex-direction: column;
2300
+ }
2301
+ .tm_invoice.tm_style1 .tm_box_3 ul li:not(:last-child) {
2302
+ margin-bottom: 5px;
2303
+ }
2304
+ }
2305
+
2306
+ /*--------------------------------------------------------------
2307
+ Will apply only print window
2308
+ ----------------------------------------------------------------*/
2309
+ @media print {
2310
+ .tm_gray_bg {
2311
+ background-color: #f5f6fa !important;
2312
+ -webkit-print-color-adjust: exact;
2313
+ }
2314
+ .tm_ternary_bg {
2315
+ background-color: #b5b5b5 !important;
2316
+ -webkit-print-color-adjust: exact;
2317
+ }
2318
+ .tm_primary_bg {
2319
+ background-color: #111 !important;
2320
+ -webkit-print-color-adjust: exact;
2321
+ }
2322
+ .tm_secondary_bg {
2323
+ background-color: #666 !important;
2324
+ -webkit-print-color-adjust: exact;
2325
+ }
2326
+ .tm_accent_bg {
2327
+ background-color: #007aff;
2328
+ -webkit-print-color-adjust: exact;
2329
+ }
2330
+ .tm_accent_bg_10 {
2331
+ background-color: rgba(0, 122, 255, 0.1) !important;
2332
+ -webkit-print-color-adjust: exact;
2333
+ }
2334
+ .tm_accent_bg_20 {
2335
+ background-color: rgba(0, 122, 255, 0.15) !important;
2336
+ -webkit-print-color-adjust: exact;
2337
+ }
2338
+ .tm_white_color {
2339
+ color: #fff !important;
2340
+ -webkit-print-color-adjust: exact;
2341
+ }
2342
+ .tm_accent_color {
2343
+ color: #007aff !important;
2344
+ -webkit-print-color-adjust: exact;
2345
+ }
2346
+ .tm_ternary_color {
2347
+ color: #b5b5b5 !important;
2348
+ -webkit-print-color-adjust: exact;
2349
+ }
2350
+ .tm_hide_print {
2351
+ display: none !important;
2352
+ }
2353
+ .tm_dark_invoice .tm_gray_bg {
2354
+ background-color: #111 !important;
2355
+ -webkit-print-color-adjust: exact;
2356
+ }
2357
+ .tm_dark_invoice {
2358
+ background: #111 !important;
2359
+ color: rgba(255, 255, 255, 0.65) !important;
2360
+ -webkit-print-color-adjust: exact;
2361
+ }
2362
+ .tm_dark_invoice .tm_gray_bg {
2363
+ background: rgba(255, 255, 255, 0.05) !important;
2364
+ -webkit-print-color-adjust: exact;
2365
+ }
2366
+ hr {
2367
+ background: #dbdfea !important;
2368
+ -webkit-print-color-adjust: exact;
2369
+ }
2370
+ .tm_col_4,
2371
+ .tm_col_4.tm_col_2_md {
2372
+ -ms-grid-columns: (1fr)[4];
2373
+ grid-template-columns: repeat(4, 1fr);
2374
+ }
2375
+ .tm_col_2_md {
2376
+ -ms-grid-columns: (1fr)[2];
2377
+ grid-template-columns: repeat(2, 1fr);
2378
+ }
2379
+ .tm_mb1 {
2380
+ margin-bottom: 1px;
2381
+ }
2382
+ .tm_mb2 {
2383
+ margin-bottom: 2px;
2384
+ }
2385
+ .tm_mb3 {
2386
+ margin-bottom: 3px;
2387
+ }
2388
+ .tm_mb4 {
2389
+ margin-bottom: 4px;
2390
+ }
2391
+ .tm_mb5 {
2392
+ margin-bottom: 5px;
2393
+ }
2394
+ .tm_mb6 {
2395
+ margin-bottom: 6px;
2396
+ }
2397
+ .tm_mb7 {
2398
+ margin-bottom: 7px;
2399
+ }
2400
+ .tm_mb8 {
2401
+ margin-bottom: 8px;
2402
+ }
2403
+ .tm_mb9 {
2404
+ margin-bottom: 9px;
2405
+ }
2406
+ .tm_mb10 {
2407
+ margin-bottom: 10px;
2408
+ }
2409
+ .tm_mb11 {
2410
+ margin-bottom: 11px;
2411
+ }
2412
+ .tm_mb12 {
2413
+ margin-bottom: 12px;
2414
+ }
2415
+ .tm_mb13 {
2416
+ margin-bottom: 13px;
2417
+ }
2418
+ .tm_mb14 {
2419
+ margin-bottom: 14px;
2420
+ }
2421
+ .tm_mb15 {
2422
+ margin-bottom: 15px;
2423
+ }
2424
+ .tm_mb16 {
2425
+ margin-bottom: 16px;
2426
+ }
2427
+ .tm_mb17 {
2428
+ margin-bottom: 17px;
2429
+ }
2430
+ .tm_mb18 {
2431
+ margin-bottom: 18px;
2432
+ }
2433
+ .tm_mb19 {
2434
+ margin-bottom: 19px;
2435
+ }
2436
+ .tm_mb20 {
2437
+ margin-bottom: 20px;
2438
+ }
2439
+ .tm_mb21 {
2440
+ margin-bottom: 21px;
2441
+ }
2442
+ .tm_mb22 {
2443
+ margin-bottom: 22px;
2444
+ }
2445
+ .tm_mb23 {
2446
+ margin-bottom: 23px;
2447
+ }
2448
+ .tm_mb24 {
2449
+ margin-bottom: 24px;
2450
+ }
2451
+ .tm_mb25 {
2452
+ margin-bottom: 25px;
2453
+ }
2454
+ .tm_mb26 {
2455
+ margin-bottom: 26px;
2456
+ }
2457
+ .tm_mb27 {
2458
+ margin-bottom: 27px;
2459
+ }
2460
+ .tm_mb28 {
2461
+ margin-bottom: 28px;
2462
+ }
2463
+ .tm_mb29 {
2464
+ margin-bottom: 29px;
2465
+ }
2466
+ .tm_mb30 {
2467
+ margin-bottom: 30px;
2468
+ }
2469
+ .tm_mb40 {
2470
+ margin-bottom: 40px;
2471
+ }
2472
+ .tm_mobile_hide {
2473
+ display: block;
2474
+ }
2475
+ .tm_invoice {
2476
+ padding: 10px;
2477
+ }
2478
+ .tm_invoice .tm_right_footer {
2479
+ width: 42%;
2480
+ }
2481
+ .tm_invoice_footer {
2482
+ -webkit-box-orient: initial;
2483
+ -webkit-box-direction: initial;
2484
+ -ms-flex-direction: initial;
2485
+ flex-direction: initial;
2486
+ }
2487
+ .tm_invoice_footer .tm_left_footer {
2488
+ width: 58%;
2489
+ padding: 10px 15px;
2490
+ -webkit-box-flex: 0;
2491
+ -ms-flex: none;
2492
+ flex: none;
2493
+ border-top: none;
2494
+ margin-top: 0px;
2495
+ }
2496
+ .tm_invoice.tm_style2 .tm_card_note {
2497
+ margin-top: 5px;
2498
+ }
2499
+ .tm_note.tm_text_center {
2500
+ text-align: center;
2501
+ }
2502
+ .tm_note.tm_text_center p br {
2503
+ display: initial;
2504
+ }
2505
+ .tm_invoice_footer.tm_type1 {
2506
+ -webkit-box-orient: initial;
2507
+ -webkit-box-direction: initial;
2508
+ -ms-flex-direction: initial;
2509
+ flex-direction: initial;
2510
+ }
2511
+ .tm_invoice.tm_style2 .tm_invoice_head {
2512
+ -webkit-box-orient: initial;
2513
+ -webkit-box-direction: initial;
2514
+ -ms-flex-direction: initial;
2515
+ flex-direction: initial;
2516
+ }
2517
+ .tm_invoice.tm_style2 .tm_invoice_head > .tm_invoice_left {
2518
+ width: 30%;
2519
+ }
2520
+ .tm_invoice.tm_style2 .tm_invoice_head > .tm_invoice_right {
2521
+ width: 70%;
2522
+ }
2523
+ .tm_invoice.tm_style2 .tm_invoice_head .tm_invoice_left {
2524
+ margin-bottom: initial;
2525
+ }
2526
+ .tm_invoice.tm_style2 .tm_invoice_head .tm_text_right {
2527
+ text-align: right;
2528
+ }
2529
+ .tm_invoice.tm_style2 .tm_invoice_info {
2530
+ -webkit-box-orient: initial;
2531
+ -webkit-box-direction: initial;
2532
+ -ms-flex-direction: initial;
2533
+ flex-direction: initial;
2534
+ }
2535
+ .tm_invoice.tm_style2 .tm_invoice_info > .tm_invoice_info_left {
2536
+ width: 30%;
2537
+ }
2538
+ .tm_invoice.tm_style2 .tm_invoice_info > .tm_invoice_info_right {
2539
+ width: 70%;
2540
+ }
2541
+ .tm_invoice.tm_style1.tm_type1 {
2542
+ padding: 0px 20px 30px;
2543
+ }
2544
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_head {
2545
+ height: 110px;
2546
+ }
2547
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_info {
2548
+ padding: 4px 0;
2549
+ -webkit-box-orient: initial;
2550
+ -webkit-box-direction: initial;
2551
+ -ms-flex-direction: initial;
2552
+ flex-direction: initial;
2553
+ -webkit-box-align: center;
2554
+ -ms-flex-align: center;
2555
+ align-items: center;
2556
+ }
2557
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
2558
+ top: initial;
2559
+ margin-right: 0;
2560
+ border-radius: 0;
2561
+ -webkit-transform: skewX(35deg);
2562
+ transform: skewX(35deg);
2563
+ position: absolute;
2564
+ height: 100%;
2565
+ width: 57.5%;
2566
+ right: -60px;
2567
+ overflow: hidden;
2568
+ border: none;
2569
+ }
2570
+ .tm_invoice.tm_style1.tm_type1 .tm_logo img {
2571
+ max-height: 70px;
2572
+ }
2573
+ .tm_invoice.tm_style2.tm_type1 {
2574
+ border-width: 20px 0 0;
2575
+ }
2576
+ .tm_invoice.tm_style2.tm_type1 .tm_shape_bg {
2577
+ height: 100%;
2578
+ width: 42%;
2579
+ }
2580
+ .tm_invoice.tm_style2.tm_type1 .tm_invoice_head .tm_text_center {
2581
+ text-align: center;
2582
+ }
2583
+ .tm_invoice.tm_style2.tm_type1 .tm_logo {
2584
+ top: initial;
2585
+ margin-bottom: initial;
2586
+ }
2587
+ .tm_invoice.tm_style2 .tm_invoice_info_in {
2588
+ padding: 12px 20px;
2589
+ }
2590
+ .tm_invoice.tm_style2 .tm_logo img {
2591
+ max-height: 60px;
2592
+ }
2593
+ .tm_curve_35 {
2594
+ -webkit-transform: skewX(-35deg);
2595
+ transform: skewX(-35deg);
2596
+ margin-left: 22px;
2597
+ margin-right: 22px;
2598
+ }
2599
+ .tm_curve_35 > * {
2600
+ -webkit-transform: skewX(35deg);
2601
+ transform: skewX(35deg);
2602
+ }
2603
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
2604
+ -webkit-transform: skewX(35deg);
2605
+ transform: skewX(35deg);
2606
+ }
2607
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
2608
+ -webkit-transform: skewX(-35deg) translateX(-45px);
2609
+ transform: skewX(-35deg) translateX(-45px);
2610
+ }
2611
+ .tm_section_heading .tm_curve_35 {
2612
+ margin-left: 12px;
2613
+ }
2614
+ .tm_round_border {
2615
+ border-top-width: 2px;
2616
+ }
2617
+ .tm_border_left_none_md {
2618
+ border-left-width: 1px;
2619
+ }
2620
+ .tm_border_right_none_md {
2621
+ border-right-width: 1px;
2622
+ }
2623
+ .tm_note {
2624
+ margin-top: 30px;
2625
+ }
2626
+ .tm_pagebreak {
2627
+ page-break-before: always;
2628
+ }
2629
+ }
2630
+ /*# sourceMappingURL=style.css.map */