@tomei/finance 0.17.0 → 0.18.2-dev.1

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 (89) hide show
  1. package/.commitlintrc.json +23 -23
  2. package/CHANGELOG.md +17 -0
  3. package/LICENSE +21 -21
  4. package/MIGRATION.md +43 -0
  5. package/configs/config.js +348 -348
  6. package/dist/document/document.d.ts +3 -0
  7. package/dist/document/document.d.ts.map +1 -1
  8. package/dist/document/document.js +5 -0
  9. package/dist/document/document.js.map +1 -1
  10. package/dist/document/interfaces/document-attr.interface.d.ts +3 -1
  11. package/dist/document/interfaces/document-attr.interface.d.ts.map +1 -1
  12. package/dist/document/interfaces/document-attr.interface.js.map +1 -1
  13. package/dist/enum/index.d.ts +2 -1
  14. package/dist/enum/index.d.ts.map +1 -1
  15. package/dist/enum/index.js +3 -1
  16. package/dist/enum/index.js.map +1 -1
  17. package/dist/enum/posting-status.enum.d.ts +7 -0
  18. package/dist/enum/posting-status.enum.d.ts.map +1 -0
  19. package/dist/enum/posting-status.enum.js +11 -0
  20. package/dist/enum/posting-status.enum.js.map +1 -0
  21. package/dist/finance-company/finance-company.d.ts +7 -3
  22. package/dist/finance-company/finance-company.d.ts.map +1 -1
  23. package/dist/finance-company/finance-company.js +48 -16
  24. package/dist/finance-company/finance-company.js.map +1 -1
  25. package/dist/index.d.ts +3 -1
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +5 -1
  28. package/dist/index.js.map +1 -1
  29. package/dist/models/document.entity.d.ts +3 -0
  30. package/dist/models/document.entity.d.ts.map +1 -1
  31. package/dist/models/document.entity.js +20 -0
  32. package/dist/models/document.entity.js.map +1 -1
  33. package/dist/tsconfig.tsbuildinfo +1 -1
  34. package/invoice-template/assets/css/style.css.map +12 -12
  35. package/invoice-template/assets/css/style.min.css +1 -1
  36. package/invoice-template/assets/img/arrow_bg.svg +11 -11
  37. package/invoice-template/assets/img/coffy_shop_img.svg +18 -18
  38. package/invoice-template/assets/img/logo_accent.svg +3 -3
  39. package/invoice-template/assets/img/logo_white.svg +4 -4
  40. package/invoice-template/assets/img/sign.svg +12 -12
  41. package/invoice-template/assets/img/tomei-logo.svg +9 -9
  42. package/invoice-template/assets/js/html2canvas.min.js +10379 -10379
  43. package/invoice-template/assets/js/jquery.min.js +1 -1
  44. package/invoice-template/assets/sass/common/_color_variable.scss +12 -12
  45. package/invoice-template/assets/sass/common/_typography.scss +178 -178
  46. package/invoice-template/assets/sass/style.scss +12 -12
  47. package/migrations/add-discount-collumn-to-document-related-table.js +90 -90
  48. package/migrations/finance-account-migration.js +97 -97
  49. package/migrations/finance-company-migration.js +29 -29
  50. package/migrations/finance-customer-migration.js +51 -51
  51. package/migrations/finance-document-item-migration.js +111 -111
  52. package/migrations/finance-document-migration.js +122 -122
  53. package/migrations/finance-document-tag-migration.js +46 -46
  54. package/migrations/finance-journal-entry-migration.js +59 -59
  55. package/migrations/finance-ledger-transaction-migration.js +89 -89
  56. package/migrations/finance-payment-item-migration.js +52 -52
  57. package/migrations/finance-payment-method-migration.js +31 -31
  58. package/migrations/finance-payment-method-type-migration.js +55 -55
  59. package/migrations/finance-payment-migration.js +96 -96
  60. package/migrations/finance-post-history-migration.js +45 -45
  61. package/migrations/finance-tag-group-migration.js +53 -53
  62. package/migrations/finance-tag-migration.js +63 -63
  63. package/migrations/finance-tax-migration.js +52 -52
  64. package/migrations/refactor-finance-document-migration.js +71 -71
  65. package/migrations/update-document-item.migration.js +87 -87
  66. package/package.json +81 -79
  67. package/receipt-template/default/assets/css/style.css +2629 -2629
  68. package/receipt-template/default/assets/css/style.css.map +12 -12
  69. package/receipt-template/default/assets/css/style.min.css +1 -1
  70. package/receipt-template/default/assets/img/arrow_bg.svg +11 -11
  71. package/receipt-template/default/assets/img/coffy_shop_img.svg +18 -18
  72. package/receipt-template/default/assets/img/logo.svg +4 -4
  73. package/receipt-template/default/assets/img/logo_accent.svg +3 -3
  74. package/receipt-template/default/assets/img/logo_white.svg +4 -4
  75. package/receipt-template/default/assets/img/sign.svg +12 -12
  76. package/receipt-template/default/assets/img/tomei-logo.svg +9 -9
  77. package/receipt-template/default/assets/js/html2canvas.min.js +10379 -10379
  78. package/receipt-template/default/assets/js/jquery.min.js +1 -1
  79. package/receipt-template/default/assets/js/main.js +48 -48
  80. package/receipt-template/default/assets/sass/common/_color_variable.scss +12 -12
  81. package/receipt-template/default/assets/sass/common/_invoice.scss +1801 -1801
  82. package/receipt-template/default/assets/sass/common/_normalize.scss +350 -350
  83. package/receipt-template/default/assets/sass/common/_typography.scss +178 -178
  84. package/receipt-template/default/assets/sass/style.scss +12 -12
  85. package/receipt-template/default/index.html +291 -291
  86. package/scripts/postinstall.js +300 -300
  87. package/dist/enum/quick-book-client-scopes.enum.d.ts +0 -13
  88. package/dist/enum/quick-book-client-scopes.enum.js +0 -19
  89. package/dist/enum/quick-book-client-scopes.enum.js.map +0 -1
@@ -1,1802 +1,1802 @@
1
- /*--------------------------------------------------------------
2
- 3. Invoice General Style
3
- ----------------------------------------------------------------*/
4
- .tm_f10 {
5
- font-size: 10px;
6
- }
7
- .tm_f11 {
8
- font-size: 11px;
9
- }
10
- .tm_f12 {
11
- font-size: 12px;
12
- }
13
- .tm_f13 {
14
- font-size: 13px;
15
- }
16
- .tm_f14 {
17
- font-size: 14px;
18
- }
19
- .tm_f15 {
20
- font-size: 15px;
21
- }
22
- .tm_f16 {
23
- font-size: 16px;
24
- }
25
- .tm_f17 {
26
- font-size: 17px;
27
- }
28
- .tm_f18 {
29
- font-size: 18px;
30
- }
31
- .tm_f19 {
32
- font-size: 19px;
33
- }
34
- .tm_f20 {
35
- font-size: 20px;
36
- }
37
- .tm_f21 {
38
- font-size: 21px;
39
- }
40
- .tm_f22 {
41
- font-size: 22px;
42
- }
43
- .tm_f23 {
44
- font-size: 23px;
45
- }
46
- .tm_f24 {
47
- font-size: 24px;
48
- }
49
- .tm_f25 {
50
- font-size: 25px;
51
- }
52
- .tm_f26 {
53
- font-size: 26px;
54
- }
55
- .tm_f27 {
56
- font-size: 27px;
57
- }
58
- .tm_f28 {
59
- font-size: 28px;
60
- }
61
- .tm_f29 {
62
- font-size: 29px;
63
- }
64
- .tm_f30 {
65
- font-size: 30px;
66
- }
67
- .tm_f40 {
68
- font-size: 40px;
69
- }
70
- .tm_f50 {
71
- font-size: 50px;
72
- }
73
- // End Fontsize
74
-
75
- // Start Medium
76
- .tm_light {
77
- font-weight: 300;
78
- }
79
-
80
- .tm_normal {
81
- font-weight: 400;
82
- }
83
-
84
- .tm_medium {
85
- font-weight: 500;
86
- }
87
-
88
- .tm_semi_bold {
89
- font-weight: 600;
90
- }
91
-
92
- .tm_bold {
93
- font-weight: 700;
94
- }
95
- // End Medium
96
-
97
- // Start Margin
98
- .tm_m0 {
99
- margin: 0px;
100
- }
101
- .tm_mb0 {
102
- margin-bottom: 0px;
103
- }
104
- .tm_mb1 {
105
- margin-bottom: 1px;
106
- }
107
- .tm_mb2 {
108
- margin-bottom: 2px;
109
- }
110
- .tm_mb3 {
111
- margin-bottom: 3px;
112
- }
113
- .tm_mb4 {
114
- margin-bottom: 4px;
115
- }
116
- .tm_mb5 {
117
- margin-bottom: 5px;
118
- }
119
- .tm_mb6 {
120
- margin-bottom: 6px;
121
- }
122
- .tm_mb7 {
123
- margin-bottom: 7px;
124
- }
125
- .tm_mb8 {
126
- margin-bottom: 8px;
127
- }
128
- .tm_mb9 {
129
- margin-bottom: 9px;
130
- }
131
- .tm_mb10 {
132
- margin-bottom: 10px;
133
- }
134
- .tm_mb11 {
135
- margin-bottom: 11px;
136
- }
137
- .tm_mb12 {
138
- margin-bottom: 12px;
139
- }
140
- .tm_mb13 {
141
- margin-bottom: 13px;
142
- }
143
- .tm_mb14 {
144
- margin-bottom: 14px;
145
- }
146
- .tm_mb15 {
147
- margin-bottom: 15px;
148
- }
149
- .tm_mb16 {
150
- margin-bottom: 16px;
151
- }
152
- .tm_mb17 {
153
- margin-bottom: 17px;
154
- }
155
- .tm_mb18 {
156
- margin-bottom: 18px;
157
- }
158
- .tm_mb19 {
159
- margin-bottom: 19px;
160
- }
161
- .tm_mb20 {
162
- margin-bottom: 20px;
163
- }
164
- .tm_mb21 {
165
- margin-bottom: 21px;
166
- }
167
- .tm_mb22 {
168
- margin-bottom: 22px;
169
- }
170
- .tm_mb23 {
171
- margin-bottom: 23px;
172
- }
173
- .tm_mb24 {
174
- margin-bottom: 24px;
175
- }
176
- .tm_mb25 {
177
- margin-bottom: 25px;
178
- }
179
- .tm_mb26 {
180
- margin-bottom: 26px;
181
- }
182
- .tm_mb27 {
183
- margin-bottom: 27px;
184
- }
185
- .tm_mb28 {
186
- margin-bottom: 28px;
187
- }
188
- .tm_mb29 {
189
- margin-bottom: 29px;
190
- }
191
- .tm_mb30 {
192
- margin-bottom: 30px;
193
- }
194
- .tm_mb40 {
195
- margin-bottom: 40px;
196
- }
197
- // End Margin
198
-
199
- // Start Margin
200
- .tm_pt25 {
201
- padding-top: 25px;
202
- }
203
- .tm_pt0 {
204
- padding-top: 0;
205
- }
206
- .tm_radius_6_0_0_6 {
207
- border-radius: 6px 0 0 6px;
208
- }
209
- .tm_radius_0_6_6_0 {
210
- border-radius: 0 6px 6px 0;
211
- }
212
- .tm_radius_0 {
213
- border-radius: 0 !important;
214
- }
215
- // End Margin
216
-
217
- .tm_width_1 {
218
- width: 8.33333333%;
219
- }
220
- .tm_width_2 {
221
- width: 16.66666667%;
222
- }
223
- .tm_width_3 {
224
- width: 25%;
225
- }
226
- .tm_width_4 {
227
- width: 33.33333333%;
228
- }
229
- .tm_width_5 {
230
- width: 41.66666667%;
231
- }
232
- .tm_width_6 {
233
- width: 50%;
234
- }
235
- .tm_width_7 {
236
- width: 58.33333333%;
237
- }
238
- .tm_width_8 {
239
- width: 66.66666667%;
240
- }
241
- .tm_width_9 {
242
- width: 75%;
243
- }
244
- .tm_width_10 {
245
- width: 83.33333333%;
246
- }
247
- .tm_width_11 {
248
- width: 91.66666667%;
249
- }
250
- .tm_width_12 {
251
- width: 100%;
252
- }
253
-
254
- .tm_border {
255
- border: 1px solid $border;
256
- }
257
-
258
- .tm_border_bottom {
259
- border-bottom: 1px solid $border;
260
- }
261
-
262
- .tm_border_top {
263
- border-top: 1px solid $border;
264
- }
265
-
266
- .tm_border_left {
267
- border-left: 1px solid $border;
268
- }
269
-
270
- .tm_border_right {
271
- border-right: 1px solid $border;
272
- }
273
-
274
- .tm_round_border {
275
- border: 1px solid $border;
276
- overflow: hidden;
277
- border-radius: 6px;
278
- }
279
-
280
- .tm_accent_color,
281
- .tm_accent_color_hover:hover {
282
- color: $accent;
283
- }
284
-
285
- .tm_accent_bg,
286
- .tm_accent_bg_hover:hover {
287
- background-color: $accent;
288
- }
289
-
290
- .tm_accent_bg_10 {
291
- background-color: rgba($accent, 0.1);
292
- }
293
-
294
- .tm_accent_bg_20 {
295
- background-color: rgba($accent, 0.15);
296
- }
297
-
298
- .tm_green_bg {
299
- background-color: $green;
300
- }
301
-
302
- .tm_green_bg_15 {
303
- background-color: rgba($green, 0.1);
304
- }
305
-
306
- .tm_primary_bg,
307
- .tm_primary_bg_hover:hover {
308
- background-color: $primary;
309
- }
310
-
311
- .tm_primary_bg_2 {
312
- background-color: #000036;
313
- }
314
-
315
- .tm_danger_color {
316
- color: $red;
317
- }
318
- .tm_primary_color {
319
- color: $primary;
320
- }
321
-
322
- .tm_secondary_color {
323
- color: $secondary;
324
- }
325
-
326
- .tm_ternary_color {
327
- color: $ternary;
328
- }
329
-
330
- .tm_white_color {
331
- color: $white;
332
- }
333
-
334
- .tm_white_color_60 {
335
- color: rgba($white, 0.6);
336
- }
337
-
338
- .tm_gray_bg {
339
- background: $gray;
340
- }
341
-
342
- .tm_ternary_bg {
343
- background-color: $ternary;
344
- }
345
-
346
- .tm_accent_10_bg {
347
- background-color: rgba($accent, 0.1);
348
- }
349
-
350
- .tm_accent_border {
351
- border-color: $accent;
352
- }
353
-
354
- .tm_accent_border_10 {
355
- border-color: rgba($accent, 0.10);
356
- }
357
-
358
- .tm_accent_border_20 {
359
- border-color: rgba($accent, 0.20);
360
- }
361
-
362
- .tm_accent_border_30 {
363
- border-color: rgba($accent, 0.30);
364
- }
365
-
366
- .tm_accent_border_40 {
367
- border-color: rgba($accent, 0.40);
368
- }
369
-
370
- .tm_accent_border_50 {
371
- border-color: rgba($accent, 0.50);
372
- }
373
-
374
- .tm_primary_border {
375
- border-color: $primary;
376
- }
377
- .tm_gray_border {
378
- border-color: $gray;
379
- }
380
-
381
- .tm_primary_border_2 {
382
- border-color: #000036;
383
- }
384
-
385
- .tm_secondary_border {
386
- border-color: $secondary;
387
- }
388
- .tm_ternary_border {
389
- border-color: $ternary;
390
- }
391
- .tm_border_color {
392
- border-color: $border;
393
- }
394
-
395
- .tm_border_1 {
396
- border-style: solid;
397
- border-width: 1px;
398
- }
399
-
400
- .tm_body_lineheight {
401
- line-height: 1.5em;
402
- }
403
-
404
- .tm_invoice_in {
405
- position: relative;
406
- z-index: 100;
407
- }
408
-
409
- .tm_container {
410
- max-width: 880px;
411
- padding: 30px 15px;
412
- margin-left: auto;
413
- margin-right: auto;
414
- position: relative;
415
- }
416
-
417
- .tm_text_center {
418
- text-align: center;
419
- }
420
-
421
- .tm_text_uppercase {
422
- text-transform: uppercase;
423
- }
424
-
425
- .tm_text_right {
426
- text-align: right;
427
- }
428
-
429
- .tm_align_center {
430
- align-items: center;
431
- }
432
-
433
- .tm_border_bottom_0 {
434
- border-bottom: 0;
435
- }
436
- .tm_border_top_0 {
437
- border-top: 0;
438
- }
439
-
440
-
441
- .tm_table_baseline {
442
- vertical-align: baseline;
443
- }
444
-
445
- .tm_border_none {
446
- border: none !important;
447
- }
448
-
449
- .tm_flex {
450
- display: flex;
451
- }
452
- .tm_justify_between {
453
- justify-content: space-between;
454
- }
455
- .tm__align_center {
456
- align-items: center;
457
- }
458
-
459
- .tm_border_left_none {
460
- border-left-width: 0;
461
- }
462
- .tm_border_right_none {
463
- border-right-width: 0;
464
- }
465
- .tm_table_responsive {
466
- overflow-x: auto;
467
- > table {
468
- min-width: 600px;
469
- }
470
- }
471
-
472
- .tm_50_col > * {
473
- width: 50%;
474
- flex: none;
475
- }
476
-
477
- .tm_no_border {
478
- border: none !important;
479
- }
480
-
481
- .tm_grid_row {
482
- display: grid;
483
- grid-gap: 10px 20px;
484
- list-style: none;
485
- padding: 0;
486
- }
487
-
488
- .tm_col_2 {
489
- grid-template-columns: repeat(2, 1fr);
490
- }
491
- .tm_col_3 {
492
- grid-template-columns: repeat(3, 1fr);
493
- }
494
- .tm_col_4 {
495
- grid-template-columns: repeat(4, 1fr);
496
- }
497
-
498
- .tm_max_w_150 {
499
- max-width: 150px;
500
- }
501
-
502
- .tm_left_auto {
503
- margin-left: auto;
504
- }
505
-
506
- hr {
507
- background: $border;
508
- height: 1px;
509
- border: none;
510
- margin: 0;
511
- }
512
-
513
- .tm_invoice {
514
- background: #fff;
515
- border-radius: 10px;
516
- padding: 50px;
517
- }
518
-
519
- .tm_invoice_footer {
520
- display: flex;
521
- table {
522
- margin-top: -1px;
523
- }
524
- .tm_left_footer {
525
- width: 58%;
526
- padding: 10px 15px;
527
- flex: none;
528
- }
529
- .tm_right_footer {
530
- width: 42%;
531
- }
532
- }
533
-
534
- .tm_note {
535
- margin-top: 30px;
536
- font-style: italic;
537
- }
538
-
539
- .tm_font_style_normal {
540
- font-style: normal;
541
- }
542
-
543
- .tm_sign img {
544
- max-height: 45px;
545
- }
546
-
547
- .tm_coffee_shop_img {
548
- position: absolute;
549
- height: 200px;
550
- opacity: 0.04;
551
- top: 40px;
552
- left: 50%;
553
- transform: translateX(-50%);
554
- img {
555
- max-height: 100%;
556
- }
557
- }
558
-
559
- .tm_invoice.tm_style1 {
560
- .tm_invoice_right {
561
- flex: none;
562
- width: 60%;
563
- }
564
- .tm_invoice_table {
565
- // padding: 12px 20px;
566
- grid-gap:1px;
567
- >* {
568
- border: 1px solid $border;
569
- margin: -1px;
570
- padding: 8px 15px 10px;
571
-
572
- }
573
- }
574
- .tm_invoice_head {
575
- display: flex;
576
- justify-content: space-between;
577
- // align-items: center;
578
- .tm_invoice_right {
579
- div {
580
- line-height: 1em;
581
- }
582
- }
583
- }
584
- .tm_invoice_info {
585
- display: flex;
586
- align-items: center;
587
- justify-content: space-between;
588
- }
589
- .tm_invoice_info_2 {
590
- display: flex;
591
- justify-content: space-between;
592
- border-top: 1px solid $border;
593
- border-bottom: 1px solid $border;
594
- padding: 11px 0;
595
- }
596
- .tm_invoice_seperator {
597
- min-height: 18px;
598
- border-radius: 1.6em;
599
- flex: 1;
600
- margin-right: 20px;
601
- }
602
- .tm_invoice_info_list {
603
- display: flex;
604
- >* {
605
- &:not(:last-child) {
606
- margin-right: 20px;
607
- }
608
- }
609
- }
610
- .tm_logo {
611
- img {
612
- max-height: 50px;
613
- }
614
- &.tm_size1 {
615
- img {
616
- max-height: 60px;
617
- }
618
- }
619
- &.tm_size2 {
620
- img {
621
- max-height: 70px;
622
- }
623
- }
624
- }
625
- .tm_grand_total {
626
- padding: 8px 15px;
627
- }
628
- .tm_box_3 {
629
- display: flex;
630
- >* {
631
- flex: 1;
632
- }
633
- ul {
634
- margin: 0;
635
- padding: 0;
636
- list-style: none;
637
- li {
638
- display: flex;
639
- &:not(:last-child) {
640
- margin-bottom: 5px;
641
- }
642
- }
643
- span {
644
- flex: none;
645
- &:first-child {
646
- margin-right: 5px;
647
- }
648
- &:last-child {
649
- flex: 1;
650
- }
651
- }
652
- }
653
- }
654
- }
655
-
656
- .tm_invoice.tm_style2 {
657
- .tm_invoice_head {
658
- display: flex;
659
- align-items: center;
660
- border-bottom: 1px solid $border;
661
- padding-bottom: 15px;
662
- position: relative;
663
- }
664
- .tm_invoice_left {
665
- width: 30%;
666
- flex: none;
667
- }
668
- .tm_invoice_right {
669
- width: 70%;
670
- flex: none;
671
- }
672
- .tm_invoice_info {
673
- display: flex;
674
- }
675
- .tm_invoice_info_left {
676
- width: 30%;
677
- flex: none;
678
- }
679
- .tm_invoice_info_right {
680
- width: 70%;
681
- flex: none;
682
- }
683
- .tm_logo {
684
- img {
685
- max-height: 60px;
686
- }
687
- }
688
- .tm_invoice_title {
689
- line-height: 0.8em;
690
- }
691
- .tm_invoice_info_in {
692
- padding: 12px 20px;
693
- border-radius: 10px;
694
- }
695
- .tm_card_note {
696
- display: inline-block;
697
- padding: 6px 15px;
698
- border-radius: 6px;
699
- margin-bottom: 10px;
700
- margin-top: 5px;
701
- }
702
- .tm_invoice_footer .tm_left_footer {
703
- padding-left: 0;
704
- }
705
- }
706
-
707
- .tm_invoice.tm_style1.tm_type1 {
708
- padding: 0px 50px 30px;
709
- position: relative;
710
- overflow: hidden;
711
- border-radius: 0;
712
- .tm_invoice_head {
713
- height: 110px;
714
- position: relative;
715
- }
716
- .tm_shape_bg {
717
- position: absolute;
718
- height: 100%;
719
- width: 70%;
720
- transform: skewX(35deg);
721
- top: 0px;
722
- right: -100px;
723
- overflow: hidden;
724
- img {
725
- height: 100%;
726
- width: 100%;
727
- object-fit: cover;
728
- transform: skewX(-35deg) translateX(-45px);
729
- }
730
- }
731
- .tm_invoice_right {
732
- position: relative;
733
- z-index: 2;
734
- }
735
- .tm_logo img {
736
- max-height: 70px;
737
- }
738
- .tm_invoice_seperator {
739
- margin-right: 0;
740
- border-radius: 0;
741
- transform: skewX(35deg);
742
- position: absolute;
743
- height: 100%;
744
- width: 57.5%;
745
- right: -60px;
746
- overflow: hidden;
747
- border: none;
748
- img {
749
- height: 100%;
750
- width: 100%;
751
- object-fit: cover;
752
- transform: skewX(-35deg);
753
- transform: skewX(-35deg) translateX(-10px);
754
- }
755
- }
756
- .tm_invoice_info {
757
- position: relative;
758
- padding: 4px 0;
759
- }
760
- .tm_card_note,
761
- .tm_invoice_info_list {
762
- position: relative;
763
- z-index: 1;
764
- }
765
- }
766
- @media (min-width: 500px) {
767
- .tm_invoice.tm_style1.tm_type2 {
768
- position: relative;
769
- overflow: hidden;
770
- border-radius: 0;
771
- td {
772
- padding-top: 12px;
773
- padding-bottom: 12px;
774
- }
775
- .tm_pt0 {
776
- padding-top: 0;
777
- }
778
- .tm_bars {
779
- display: flex;
780
- position: absolute;
781
- top: 0px;
782
- left: 50%;
783
- transform: translateX(-50%);
784
- overflow: hidden;
785
- padding: 0 15px;
786
- span {
787
- height: 100px;
788
- width: 5px;
789
- display: block;
790
- margin: -15px 20px 0;
791
- transform: rotate(-40deg);
792
- }
793
- &.tm_type1 {
794
- top: initial;
795
- bottom: 0;
796
- span {
797
- margin: 0 20px 0;
798
- position: relative;
799
- bottom: -15px;
800
- }
801
- }
802
- }
803
- .tm_shape {
804
- height: 230px;
805
- width: 250px;
806
- position: absolute;
807
- top: 0;
808
- right: 0;
809
- overflow: hidden;
810
- .tm_shape_in {
811
- position: absolute;
812
- height: 350px;
813
- width: 350px;
814
- transform: rotate(40deg);
815
- top: -199px;
816
- left: 67px;
817
- overflow: hidden;
818
- }
819
- &.tm_type1 {
820
- top: initial;
821
- bottom: 0;
822
- right: initial;
823
- left: 0;
824
- .tm_shape_in {
825
- top: 135px;
826
- left: -153px;
827
- }
828
- }
829
- }
830
- .tm_shape_2 {
831
- height: 120px;
832
- width: 120px;
833
- border: 5px solid currentColor;
834
- padding: 20px;
835
- position: absolute;
836
- bottom: -30px;
837
- right: 77px;
838
- transform: rotate(45deg);
839
- .tm_shape_2_in {
840
- height: 100%;
841
- width: 100%;
842
- border: 20px solid currentColor;
843
- }
844
- &.tm_type1 {
845
- left: -76px;
846
- right: initial;
847
- bottom: 245px;
848
- .tm_shape_2_in {
849
- border-width: 6px;
850
- }
851
- }
852
- }
853
- .tm_invoice_right {
854
- width: 40%;
855
- }
856
- .tm_logo img {
857
- max-height: 65px;
858
- }
859
- .tm_invoice_footer {
860
- margin-bottom: 120px;
861
- }
862
- .tm_right_footer {
863
- position: relative;
864
- padding: 6px 0;
865
- table {
866
- position: relative;
867
- z-index: 2;
868
- }
869
- }
870
- .tm_left_footer {
871
- padding: 30px 15px;
872
- }
873
- .tm_shape_3 {
874
- position: absolute;
875
- top: 0;
876
- left: -40px;
877
- height: 100%;
878
- width: calc(100% + 150px);
879
- transform: skewX(35deg);
880
- }
881
- .tm_shape_4 {
882
- position: absolute;
883
- bottom: 200px;
884
- left: 0;
885
- height: 200px;
886
- width: 200px;
887
- }
888
- }
889
- }
890
-
891
- .tm_invoice.tm_style1.tm_type3 {
892
- position: relative;
893
- overflow: hidden;
894
- border-radius: 0;
895
- .tm_shape_1 {
896
- position: absolute;
897
- top: -1px;
898
- left: 0;
899
- }
900
- .tm_shape_2 {
901
- position: absolute;
902
- bottom: 0;
903
- left: 0;
904
- display: flex;
905
- }
906
- .tm_logo img {
907
- max-height: 60px;
908
- }
909
- .tm_invoice_head.tm_mb20 {
910
- margin-bottom: 65px;
911
- }
912
- .tm_invoice_info_list {
913
- position: relative;
914
- padding: 10px 0 10px 40px;
915
- }
916
- .tm_invoice_info_list_bg {
917
- position: absolute;
918
- height: 100%;
919
- width: calc(100% + 100px);
920
- top: 0;
921
- left: 0;
922
- border-radius: 20px 0 0 0px;
923
- transform: skewX(-35deg);
924
- }
925
- }
926
-
927
- .tm_invoice.tm_style2.tm_type1 {
928
- padding-top: 0;
929
- padding-bottom: 0;
930
- border-width: 40px 0 0;
931
- border-style: solid;
932
- position: relative;
933
- overflow: hidden;
934
- &.tm_small_border {
935
- border-width: 7px 0 0;
936
- }
937
- .tm_shape_bg {
938
- position: absolute;
939
- height: 100%;
940
- width: 42%;
941
- transform: skewX(-35deg);
942
- top: 0px;
943
- left: -100px;
944
- }
945
- .tm_invoice_head {
946
- padding-top: 15px;
947
- border-bottom: none;
948
- }
949
- .tm_logo {
950
- position: relative;
951
- z-index: 2;
952
- }
953
- .tm_bottom_invoice {
954
- position: relative;
955
- display: flex;
956
- padding: 15px 50px 20px;
957
- border-top: 1px solid $border;
958
- justify-content: space-between;
959
- align-items: center;
960
- margin: 30px -50px 0;
961
- }
962
- }
963
-
964
- .tm_invoice_content {
965
- position: relative;
966
- z-index: 10;
967
- }
968
-
969
- .tm_invoice_wrap {
970
- position: relative;
971
- }
972
-
973
- .tm_note_list {
974
- li {
975
- &:not(:last-child) {
976
- margin-bottom: 5px;
977
- }
978
- }
979
- }
980
-
981
- .tm_list.tm_style1 {
982
- list-style: none;
983
- padding: 0;
984
- margin: 0;
985
- svg {
986
- width: 16px;
987
- height: initial;
988
- }
989
- .tm_list_icon {
990
- display: flex;
991
- position: absolute;
992
- left: 0;
993
- top: 3px;
994
- }
995
- li {
996
- padding-left: 25px;
997
- position: relative;
998
- &:not(:last-child) {
999
- margin-bottom: 5px;
1000
- }
1001
- }
1002
- &.tm_text_right {
1003
- li {
1004
- padding-left: 0;
1005
- padding-right: 25px;
1006
- }
1007
- .tm_list_icon {
1008
- left: initial;
1009
- right: 0;
1010
- }
1011
- }
1012
- }
1013
-
1014
- .tm_section_heading {
1015
- border-width: 0 0 1px 0;
1016
- border-style: solid;
1017
- >span {
1018
- display: inline-block;
1019
- padding: 8px 15px;
1020
- border-radius: 7px 7px 0 0;
1021
- }
1022
- .tm_curve_35 {
1023
- margin-left: 12px;
1024
- margin-right: 0;
1025
- span {
1026
- display: inline-block;
1027
- }
1028
- }
1029
- }
1030
- .tm_padd_15_20 {
1031
- padding: 15px 20px;
1032
- }
1033
- .tm_padd_8_20 {
1034
- padding: 8px 20px;
1035
- }
1036
- .tm_padd_20 {
1037
- padding: 20px;
1038
- }
1039
- .tm_padd_15 {
1040
- padding: 15px;
1041
- }
1042
- .tm_padd_10 {
1043
- padding: 10px;
1044
- }
1045
- .tm_padd_5 {
1046
- padding: 5px;
1047
- }
1048
- .tm_curve_35 {
1049
- transform: skewX(-35deg);
1050
- padding: 12px 20px 12px 30px;
1051
- margin-left: 22px;
1052
- margin-right: 22px;
1053
- >* {
1054
- transform: skewX(35deg);
1055
- }
1056
- }
1057
-
1058
- // Start Dark Invoice
1059
- .tm_dark_invoice_body {
1060
- background-color: #18191a;
1061
- }
1062
- .tm_dark_invoice {
1063
- background: #252526;
1064
- color: rgba($white, 0.65);
1065
- .tm_primary_color {
1066
- color: rgba($white, 0.9);
1067
- }
1068
- .tm_secondary_color {
1069
- color: rgba($white, 0.65);
1070
- }
1071
- .tm_ternary_color {
1072
- color: rgba($white, 0.4);
1073
- }
1074
- .tm_gray_bg {
1075
- background: rgba($white, 0.08);
1076
- }
1077
- .tm_border_color,
1078
- .tm_round_border,
1079
- td, th,
1080
- .tm_border_top,
1081
- .tm_border_bottom {
1082
- border-color: rgba($white, 0.1);
1083
- }
1084
- +.tm_invoice_btns {
1085
- background: #252526;
1086
- border-color: #252526;
1087
- }
1088
- }
1089
-
1090
- // End Dark Invoice
1091
-
1092
- @media (min-width: 1000px) {
1093
- .tm_invoice_btns {
1094
- display: flex;
1095
- flex-direction: column;
1096
- justify-content: center;
1097
- margin-top: 0px;
1098
- margin-left: 20px;
1099
- position: absolute;
1100
- left: 100%;
1101
- top: 0;
1102
- box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1103
- border: 3px solid #fff;
1104
- border-radius: 6px;
1105
- background-color: #fff;
1106
- }
1107
-
1108
- .tm_invoice_btn {
1109
- display: inline-flex;
1110
- align-items: center;
1111
- border: none;
1112
- font-weight: 600;
1113
- cursor: pointer;
1114
- padding: 0;
1115
- background-color: transparent;
1116
- position: relative;
1117
- svg {
1118
- width: 24px;
1119
- }
1120
- .tm_btn_icon {
1121
- padding: 0;
1122
- display: flex;
1123
- height: 42px;
1124
- width: 42px;
1125
- align-items: center;
1126
- justify-content: center;
1127
- }
1128
- .tm_btn_text {
1129
- position: absolute;
1130
- left: 100%;
1131
- background-color: $primary;
1132
- color: #fff;
1133
- padding: 3px 12px;
1134
- display: inline-block;
1135
- margin-left: 10px;
1136
- border-radius: 5px;
1137
- top: 50%;
1138
- transform: translateY(-50%);
1139
- font-weight: 500;
1140
- min-height: 28px;
1141
- display: flex;
1142
- align-items: center;
1143
- opacity: 0;
1144
- visibility: hidden;
1145
- &:before {
1146
- content: '';
1147
- height: 10px;
1148
- width: 10px;
1149
- position: absolute;
1150
- background-color: $primary;
1151
- transform: rotate(45deg);
1152
- left: -3px;
1153
- top: 50%;
1154
- margin-top: -6px;
1155
- border-radius: 2px;
1156
- }
1157
- }
1158
- &:hover {
1159
- .tm_btn_text {
1160
- opacity: 1;
1161
- visibility: visible;
1162
- }
1163
- }
1164
- &:not(:last-child) {
1165
- margin-bottom: 3px;
1166
- }
1167
- &.tm_color1 {
1168
- background-color: rgba($accent, 0.1);
1169
- color: $accent;
1170
- border-radius: 5px 5px 0 0;
1171
- &:hover {
1172
- background-color: rgba($accent, 0.2);
1173
- }
1174
- }
1175
- &.tm_color2 {
1176
- background-color: rgba($green, 0.1);
1177
- color: $green;
1178
- border-radius: 0 0 5px 5px;
1179
- &:hover {
1180
- background-color: rgba($green, 0.2);
1181
- }
1182
- }
1183
- }
1184
- }
1185
-
1186
- @media (max-width: 999px) {
1187
- .tm_invoice_btns {
1188
- display: inline-flex;
1189
- justify-content: center;
1190
- margin-top: 0px;
1191
- margin-top: 20px;
1192
- box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1193
- border: 3px solid #fff;
1194
- border-radius: 6px;
1195
- background-color: #fff;
1196
- position: relative;
1197
- left: 50%;
1198
- transform: translateX(-50%);
1199
- }
1200
- .tm_invoice_btn {
1201
- display: inline-flex;
1202
- align-items: center;
1203
- border: none;
1204
- font-weight: 600;
1205
- cursor: pointer;
1206
- padding: 0;
1207
- background-color: transparent;
1208
- position: relative;
1209
- border-radius: 5px;
1210
- padding: 6px 15px;
1211
- svg {
1212
- width: 24px;
1213
- }
1214
- .tm_btn_icon {
1215
- padding: 0;
1216
- display: flex;
1217
- align-items: center;
1218
- justify-content: center;
1219
- margin-right: 8px;
1220
- }
1221
- &:not(:last-child) {
1222
- margin-right: 3px;
1223
- }
1224
- &.tm_color1 {
1225
- background-color: rgba($accent, 0.1);
1226
- color: $accent;
1227
- &:hover {
1228
- background-color: rgba($accent, 0.2);
1229
- }
1230
- }
1231
- &.tm_color2 {
1232
- background-color: rgba($green, 0.1);
1233
- color: $green;
1234
- &:hover {
1235
- background-color: rgba($green, 0.2);
1236
- }
1237
- }
1238
- }
1239
- }
1240
-
1241
- @media (max-width: 767px) {
1242
- .tm_col_4 {
1243
- grid-template-columns: repeat(1, 1fr);
1244
- }
1245
- .tm_col_2_md {
1246
- grid-template-columns: repeat(2, 1fr);
1247
- }
1248
- .tm_m0_md {
1249
- margin: 0;
1250
- }
1251
- .tm_mb10_md {
1252
- margin-bottom: 10px;
1253
- }
1254
- .tm_mb15_md {
1255
- margin-bottom: 15px;
1256
- }
1257
- .tm_mb20_md {
1258
- margin-bottom: 20px;
1259
- }
1260
- .tm_mobile_hide {
1261
- display: none;
1262
- }
1263
- .tm_invoice {
1264
- padding: 30px 20px;
1265
- }
1266
- .tm_invoice {
1267
- .tm_right_footer {
1268
- width: 100%;
1269
- }
1270
- }
1271
- .tm_invoice_footer {
1272
- flex-direction: column-reverse;
1273
- }
1274
- .tm_invoice_footer .tm_left_footer {
1275
- width: 100%;
1276
- border-top: 1px solid $border;
1277
- margin-top: -1px;
1278
- padding: 15px 0;
1279
- }
1280
- .tm_invoice.tm_style2 .tm_card_note {
1281
- margin-top: 0;
1282
- }
1283
- .tm_note.tm_text_center {
1284
- text-align: left;
1285
- p {
1286
- br {
1287
- display: none;
1288
- }
1289
- }
1290
- }
1291
- .tm_invoice_footer.tm_type1 {
1292
- flex-direction: column;
1293
- }
1294
- .tm_invoice.tm_style2 {
1295
- .tm_invoice_head {
1296
- flex-direction: column;
1297
- >* {
1298
- width: 100%;
1299
- }
1300
- .tm_invoice_left {
1301
- margin-bottom: 15px;
1302
- }
1303
- .tm_text_right {
1304
- text-align: left;
1305
- }
1306
- }
1307
- .tm_invoice_info {
1308
- flex-direction: column;
1309
- >* {
1310
- width: 100%;
1311
- }
1312
- }
1313
- }
1314
- .tm_invoice.tm_style1.tm_type1 {
1315
- padding: 30px 20px;
1316
- .tm_invoice_head {
1317
- height: initial;
1318
- }
1319
- .tm_invoice_info {
1320
- flex-direction: column;
1321
- align-items: flex-start;
1322
- padding-left: 15px;
1323
- padding-right: 15px;
1324
- }
1325
- .tm_invoice_seperator {
1326
- width: 100%;
1327
- transform: initial;
1328
- right: 0;
1329
- top: 0;
1330
- }
1331
- .tm_logo img {
1332
- max-height: 60px;
1333
- }
1334
- }
1335
-
1336
- .tm_invoice.tm_style2.tm_type1 {
1337
- border-width: 20px 0 0;
1338
- .tm_shape_bg {
1339
- width: 250px;
1340
- height: 80px;
1341
- }
1342
- .tm_invoice_head {
1343
- .tm_text_center {
1344
- text-align: left;
1345
- }
1346
- }
1347
- .tm_logo {
1348
- top: -8px;
1349
- margin-bottom: 15px;
1350
- }
1351
- }
1352
- .tm_invoice.tm_style2 .tm_invoice_info_in {
1353
- padding: 12px 15px;
1354
- }
1355
- .tm_border_none_md {
1356
- border: none !important;
1357
- }
1358
- .tm_border_left_none_md {
1359
- border-left-width: 0;
1360
- }
1361
- .tm_border_right_none_md {
1362
- border-right-width: 0;
1363
- }
1364
- .tm_padd_left_15_md {
1365
- padding-left: 15px !important;
1366
- }
1367
- .tm_invoice.tm_style2 .tm_logo img {
1368
- max-height: 50px;
1369
- }
1370
- .tm_curve_35 {
1371
- transform: skewX(0deg);
1372
- margin-left: 0;
1373
- margin-right: 0;
1374
- >* {
1375
- transform: inherit;
1376
- }
1377
- }
1378
-
1379
- .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator,
1380
- .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
1381
- transform: initial;
1382
- }
1383
-
1384
- .tm_section_heading .tm_curve_35 {
1385
- margin-left: 0;
1386
- }
1387
- .tm_shape_2.tm_type1 {
1388
- display: none;
1389
- }
1390
- }
1391
-
1392
- @media (max-width: 500px) {
1393
- .tm_border_none_sm {
1394
- border: none !important;
1395
- }
1396
- .tm_flex_column_sm {
1397
- flex-direction: column;
1398
- }
1399
- .tm_align_start_sm {
1400
- align-items: flex-start;
1401
- }
1402
- .tm_m0_sm {
1403
- margin-bottom: 0;
1404
- }
1405
- .tm_invoice.tm_style1 {
1406
- .tm_logo {
1407
- margin-bottom: 10px;
1408
- }
1409
- .tm_invoice_head {
1410
- flex-direction: column;
1411
- .tm_invoice_left,
1412
- .tm_invoice_right {
1413
- width: 100%;
1414
- }
1415
- .tm_invoice_right {
1416
- text-align: left;
1417
- }
1418
- }
1419
- }
1420
- .tm_list.tm_style2 li {
1421
- flex-direction: column;
1422
- > * {
1423
- padding: 5px 20px;
1424
- }
1425
- }
1426
- .tm_col_2,
1427
- .tm_col_3 {
1428
- grid-template-columns: repeat(1, 1fr);
1429
- }
1430
- .tm_col_2_sm {
1431
- grid-template-columns: repeat(2, 1fr);
1432
- }
1433
- .tm_table.tm_style1.tm_type1 {
1434
- padding: 0px 20px;
1435
- }
1436
- .tm_box2_wrap {
1437
- grid-template-columns: repeat(1, 1fr);
1438
- }
1439
- .tm_box.tm_style1.tm_type1 {
1440
- max-width: 100%;
1441
- width: 100%;
1442
- }
1443
- .tm_invoice.tm_style1 .tm_invoice_left {
1444
- max-width: 100%;
1445
- }
1446
-
1447
- .tm_f50 {
1448
- font-size: 30px;
1449
- }
1450
- .tm_invoice.tm_style1 .tm_invoice_info {
1451
- flex-direction: column-reverse;
1452
- }
1453
- .tm_invoice.tm_style1 .tm_invoice_seperator {
1454
- flex: none;
1455
- width: 100%;
1456
- margin-right: 0;
1457
- min-height: 5px;
1458
- }
1459
- .tm_invoice.tm_style1 .tm_invoice_info_list {
1460
- width: 100%;
1461
- flex-wrap: wrap;
1462
- }
1463
- .tm_invoice.tm_style1 .tm_invoice_seperator + .tm_invoice_info_list {
1464
- margin-bottom: 5px;
1465
- }
1466
- .tm_f30 {
1467
- font-size: 22px;
1468
- }
1469
- .tm_invoice.tm_style1 .tm_box_3 {
1470
- flex-direction: column;
1471
- span {
1472
- br {
1473
- display: none;
1474
- }
1475
- }
1476
- > * {
1477
- &:not(:last-child) {
1478
- margin-bottom: 15px;
1479
- }
1480
- }
1481
- }
1482
- .tm_invoice.tm_style1 .tm_box_3 ul li {
1483
- flex-direction: column;
1484
- }
1485
- .tm_invoice.tm_style1 .tm_box_3 ul li:not(:last-child) {
1486
- margin-bottom: 5px;
1487
- }
1488
- }
1489
- /*--------------------------------------------------------------
1490
- Will apply only print window
1491
- ----------------------------------------------------------------*/
1492
- @media print {
1493
- .tm_gray_bg {
1494
- background-color: $gray !important;
1495
- -webkit-print-color-adjust: exact;
1496
- }
1497
- .tm_ternary_bg {
1498
- background-color: $ternary !important;
1499
- -webkit-print-color-adjust: exact;
1500
- }
1501
- .tm_primary_bg {
1502
- background-color: $primary !important;
1503
- -webkit-print-color-adjust: exact;
1504
- }
1505
- .tm_secondary_bg {
1506
- background-color: $secondary !important;
1507
- -webkit-print-color-adjust: exact;
1508
- }
1509
- .tm_accent_bg{
1510
- background-color: $accent;
1511
- -webkit-print-color-adjust: exact;
1512
- }
1513
- .tm_accent_bg_10 {
1514
- background-color: rgba($accent, 0.1) !important;
1515
- -webkit-print-color-adjust: exact;
1516
- }
1517
-
1518
- .tm_accent_bg_20 {
1519
- background-color: rgba($accent, 0.15) !important;
1520
- -webkit-print-color-adjust: exact;
1521
- }
1522
- .tm_white_color {
1523
- color: #fff !important;
1524
- -webkit-print-color-adjust: exact;
1525
- }
1526
- .tm_accent_color {
1527
- color: $accent !important;
1528
- -webkit-print-color-adjust: exact;
1529
- }
1530
- .tm_ternary_color {
1531
- color: $ternary !important;
1532
- -webkit-print-color-adjust: exact;
1533
- }
1534
- .tm_hide_print {
1535
- display: none !important;
1536
- }
1537
- .tm_dark_invoice .tm_gray_bg {
1538
- background-color: $primary !important;
1539
- -webkit-print-color-adjust: exact;
1540
- }
1541
- .tm_dark_invoice {
1542
- background: $primary !important;
1543
- color: rgba($white, 0.65) !important;
1544
- -webkit-print-color-adjust: exact;
1545
- }
1546
- .tm_dark_invoice .tm_gray_bg {
1547
- background: rgba($white, 0.05) !important;
1548
- -webkit-print-color-adjust: exact;
1549
- }
1550
- hr {
1551
- background: $border !important;
1552
- -webkit-print-color-adjust: exact;
1553
- }
1554
- .tm_col_4,
1555
- .tm_col_4.tm_col_2_md {
1556
- grid-template-columns: repeat(4, 1fr);
1557
- }
1558
- .tm_col_2_md {
1559
- grid-template-columns: repeat(2, 1fr);
1560
- }
1561
- .tm_mb1 {
1562
- margin-bottom: 1px;
1563
- }
1564
- .tm_mb2 {
1565
- margin-bottom: 2px;
1566
- }
1567
- .tm_mb3 {
1568
- margin-bottom: 3px;
1569
- }
1570
- .tm_mb4 {
1571
- margin-bottom: 4px;
1572
- }
1573
- .tm_mb5 {
1574
- margin-bottom: 5px;
1575
- }
1576
- .tm_mb6 {
1577
- margin-bottom: 6px;
1578
- }
1579
- .tm_mb7 {
1580
- margin-bottom: 7px;
1581
- }
1582
- .tm_mb8 {
1583
- margin-bottom: 8px;
1584
- }
1585
- .tm_mb9 {
1586
- margin-bottom: 9px;
1587
- }
1588
- .tm_mb10 {
1589
- margin-bottom: 10px;
1590
- }
1591
- .tm_mb11 {
1592
- margin-bottom: 11px;
1593
- }
1594
- .tm_mb12 {
1595
- margin-bottom: 12px;
1596
- }
1597
- .tm_mb13 {
1598
- margin-bottom: 13px;
1599
- }
1600
- .tm_mb14 {
1601
- margin-bottom: 14px;
1602
- }
1603
- .tm_mb15 {
1604
- margin-bottom: 15px;
1605
- }
1606
- .tm_mb16 {
1607
- margin-bottom: 16px;
1608
- }
1609
- .tm_mb17 {
1610
- margin-bottom: 17px;
1611
- }
1612
- .tm_mb18 {
1613
- margin-bottom: 18px;
1614
- }
1615
- .tm_mb19 {
1616
- margin-bottom: 19px;
1617
- }
1618
- .tm_mb20 {
1619
- margin-bottom: 20px;
1620
- }
1621
- .tm_mb21 {
1622
- margin-bottom: 21px;
1623
- }
1624
- .tm_mb22 {
1625
- margin-bottom: 22px;
1626
- }
1627
- .tm_mb23 {
1628
- margin-bottom: 23px;
1629
- }
1630
- .tm_mb24 {
1631
- margin-bottom: 24px;
1632
- }
1633
- .tm_mb25 {
1634
- margin-bottom: 25px;
1635
- }
1636
- .tm_mb26 {
1637
- margin-bottom: 26px;
1638
- }
1639
- .tm_mb27 {
1640
- margin-bottom: 27px;
1641
- }
1642
- .tm_mb28 {
1643
- margin-bottom: 28px;
1644
- }
1645
- .tm_mb29 {
1646
- margin-bottom: 29px;
1647
- }
1648
- .tm_mb30 {
1649
- margin-bottom: 30px;
1650
- }
1651
- .tm_mb40 {
1652
- margin-bottom: 40px;
1653
- }
1654
- .tm_mobile_hide {
1655
- display: block;
1656
- }
1657
- .tm_invoice {
1658
- padding: 10px;
1659
- }
1660
- .tm_invoice {
1661
- .tm_right_footer {
1662
- width: 42%;
1663
- }
1664
- }
1665
- .tm_invoice_footer {
1666
- flex-direction: initial;
1667
- }
1668
- .tm_invoice_footer .tm_left_footer {
1669
- width: 58%;
1670
- padding: 10px 15px;
1671
- flex: none;
1672
- border-top: none;
1673
- margin-top: 0px;
1674
- }
1675
- .tm_invoice.tm_style2 .tm_card_note {
1676
- margin-top: 5px;
1677
- }
1678
- .tm_note.tm_text_center {
1679
- text-align: center;
1680
- p {
1681
- br {
1682
- display: initial;
1683
- }
1684
- }
1685
- }
1686
- .tm_invoice_footer.tm_type1 {
1687
- flex-direction: initial;
1688
- }
1689
- .tm_invoice.tm_style2 {
1690
- .tm_invoice_head {
1691
- flex-direction: initial;
1692
- >.tm_invoice_left {
1693
- width: 30%;
1694
- }
1695
- >.tm_invoice_right {
1696
- width: 70%;
1697
- }
1698
- .tm_invoice_left {
1699
- margin-bottom: initial;
1700
- }
1701
- .tm_text_right {
1702
- text-align: right;
1703
- }
1704
- }
1705
- .tm_invoice_info {
1706
- flex-direction: initial;
1707
- >.tm_invoice_info_left {
1708
- width: 30%;
1709
- }
1710
- >.tm_invoice_info_right {
1711
- width: 70%;
1712
- }
1713
- }
1714
- }
1715
- .tm_invoice.tm_style1.tm_type1 {
1716
- padding: 0px 20px 30px;
1717
- .tm_invoice_head {
1718
- height: 110px;
1719
- }
1720
- .tm_invoice_info {
1721
- padding: 4px 0;
1722
- flex-direction: initial;
1723
- align-items: center;
1724
- }
1725
- .tm_invoice_seperator {
1726
- top: initial;
1727
- margin-right: 0;
1728
- border-radius: 0;
1729
- transform: skewX(35deg);
1730
- position: absolute;
1731
- height: 100%;
1732
- width: 57.5%;
1733
- right: -60px;
1734
- overflow: hidden;
1735
- border: none;
1736
-
1737
- }
1738
- .tm_logo img {
1739
- max-height: 70px;
1740
- }
1741
- }
1742
-
1743
- .tm_invoice.tm_style2.tm_type1 {
1744
- border-width: 20px 0 0;
1745
- .tm_shape_bg {
1746
- height: 100%;
1747
- width: 42%;
1748
- }
1749
- .tm_invoice_head {
1750
- .tm_text_center {
1751
- text-align: center;
1752
- }
1753
- }
1754
- .tm_logo {
1755
- top: initial;
1756
- margin-bottom: initial;
1757
- }
1758
- }
1759
- .tm_invoice.tm_style2 .tm_invoice_info_in {
1760
- padding: 12px 20px;
1761
- }
1762
- .tm_invoice.tm_style2 .tm_logo img {
1763
- max-height: 60px;
1764
- }
1765
-
1766
- .tm_curve_35 {
1767
- transform: skewX(-35deg);
1768
- margin-left: 22px;
1769
- margin-right: 22px;
1770
- >* {
1771
- transform: skewX(35deg);
1772
- }
1773
- }
1774
-
1775
- .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
1776
- transform: skewX(35deg);
1777
- }
1778
-
1779
- .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
1780
- transform: skewX(-35deg) translateX(-45px);
1781
- }
1782
-
1783
- .tm_section_heading .tm_curve_35 {
1784
- margin-left: 12px;
1785
- }
1786
-
1787
- .tm_round_border {
1788
- border-top-width: 2px;
1789
- }
1790
- .tm_border_left_none_md {
1791
- border-left-width: 1px;
1792
- }
1793
- .tm_border_right_none_md {
1794
- border-right-width: 1px;
1795
- }
1796
- .tm_note {
1797
- margin-top: 30px;
1798
- }
1799
- .tm_pagebreak {
1800
- page-break-before: always;
1801
- }
1
+ /*--------------------------------------------------------------
2
+ 3. Invoice General Style
3
+ ----------------------------------------------------------------*/
4
+ .tm_f10 {
5
+ font-size: 10px;
6
+ }
7
+ .tm_f11 {
8
+ font-size: 11px;
9
+ }
10
+ .tm_f12 {
11
+ font-size: 12px;
12
+ }
13
+ .tm_f13 {
14
+ font-size: 13px;
15
+ }
16
+ .tm_f14 {
17
+ font-size: 14px;
18
+ }
19
+ .tm_f15 {
20
+ font-size: 15px;
21
+ }
22
+ .tm_f16 {
23
+ font-size: 16px;
24
+ }
25
+ .tm_f17 {
26
+ font-size: 17px;
27
+ }
28
+ .tm_f18 {
29
+ font-size: 18px;
30
+ }
31
+ .tm_f19 {
32
+ font-size: 19px;
33
+ }
34
+ .tm_f20 {
35
+ font-size: 20px;
36
+ }
37
+ .tm_f21 {
38
+ font-size: 21px;
39
+ }
40
+ .tm_f22 {
41
+ font-size: 22px;
42
+ }
43
+ .tm_f23 {
44
+ font-size: 23px;
45
+ }
46
+ .tm_f24 {
47
+ font-size: 24px;
48
+ }
49
+ .tm_f25 {
50
+ font-size: 25px;
51
+ }
52
+ .tm_f26 {
53
+ font-size: 26px;
54
+ }
55
+ .tm_f27 {
56
+ font-size: 27px;
57
+ }
58
+ .tm_f28 {
59
+ font-size: 28px;
60
+ }
61
+ .tm_f29 {
62
+ font-size: 29px;
63
+ }
64
+ .tm_f30 {
65
+ font-size: 30px;
66
+ }
67
+ .tm_f40 {
68
+ font-size: 40px;
69
+ }
70
+ .tm_f50 {
71
+ font-size: 50px;
72
+ }
73
+ // End Fontsize
74
+
75
+ // Start Medium
76
+ .tm_light {
77
+ font-weight: 300;
78
+ }
79
+
80
+ .tm_normal {
81
+ font-weight: 400;
82
+ }
83
+
84
+ .tm_medium {
85
+ font-weight: 500;
86
+ }
87
+
88
+ .tm_semi_bold {
89
+ font-weight: 600;
90
+ }
91
+
92
+ .tm_bold {
93
+ font-weight: 700;
94
+ }
95
+ // End Medium
96
+
97
+ // Start Margin
98
+ .tm_m0 {
99
+ margin: 0px;
100
+ }
101
+ .tm_mb0 {
102
+ margin-bottom: 0px;
103
+ }
104
+ .tm_mb1 {
105
+ margin-bottom: 1px;
106
+ }
107
+ .tm_mb2 {
108
+ margin-bottom: 2px;
109
+ }
110
+ .tm_mb3 {
111
+ margin-bottom: 3px;
112
+ }
113
+ .tm_mb4 {
114
+ margin-bottom: 4px;
115
+ }
116
+ .tm_mb5 {
117
+ margin-bottom: 5px;
118
+ }
119
+ .tm_mb6 {
120
+ margin-bottom: 6px;
121
+ }
122
+ .tm_mb7 {
123
+ margin-bottom: 7px;
124
+ }
125
+ .tm_mb8 {
126
+ margin-bottom: 8px;
127
+ }
128
+ .tm_mb9 {
129
+ margin-bottom: 9px;
130
+ }
131
+ .tm_mb10 {
132
+ margin-bottom: 10px;
133
+ }
134
+ .tm_mb11 {
135
+ margin-bottom: 11px;
136
+ }
137
+ .tm_mb12 {
138
+ margin-bottom: 12px;
139
+ }
140
+ .tm_mb13 {
141
+ margin-bottom: 13px;
142
+ }
143
+ .tm_mb14 {
144
+ margin-bottom: 14px;
145
+ }
146
+ .tm_mb15 {
147
+ margin-bottom: 15px;
148
+ }
149
+ .tm_mb16 {
150
+ margin-bottom: 16px;
151
+ }
152
+ .tm_mb17 {
153
+ margin-bottom: 17px;
154
+ }
155
+ .tm_mb18 {
156
+ margin-bottom: 18px;
157
+ }
158
+ .tm_mb19 {
159
+ margin-bottom: 19px;
160
+ }
161
+ .tm_mb20 {
162
+ margin-bottom: 20px;
163
+ }
164
+ .tm_mb21 {
165
+ margin-bottom: 21px;
166
+ }
167
+ .tm_mb22 {
168
+ margin-bottom: 22px;
169
+ }
170
+ .tm_mb23 {
171
+ margin-bottom: 23px;
172
+ }
173
+ .tm_mb24 {
174
+ margin-bottom: 24px;
175
+ }
176
+ .tm_mb25 {
177
+ margin-bottom: 25px;
178
+ }
179
+ .tm_mb26 {
180
+ margin-bottom: 26px;
181
+ }
182
+ .tm_mb27 {
183
+ margin-bottom: 27px;
184
+ }
185
+ .tm_mb28 {
186
+ margin-bottom: 28px;
187
+ }
188
+ .tm_mb29 {
189
+ margin-bottom: 29px;
190
+ }
191
+ .tm_mb30 {
192
+ margin-bottom: 30px;
193
+ }
194
+ .tm_mb40 {
195
+ margin-bottom: 40px;
196
+ }
197
+ // End Margin
198
+
199
+ // Start Margin
200
+ .tm_pt25 {
201
+ padding-top: 25px;
202
+ }
203
+ .tm_pt0 {
204
+ padding-top: 0;
205
+ }
206
+ .tm_radius_6_0_0_6 {
207
+ border-radius: 6px 0 0 6px;
208
+ }
209
+ .tm_radius_0_6_6_0 {
210
+ border-radius: 0 6px 6px 0;
211
+ }
212
+ .tm_radius_0 {
213
+ border-radius: 0 !important;
214
+ }
215
+ // End Margin
216
+
217
+ .tm_width_1 {
218
+ width: 8.33333333%;
219
+ }
220
+ .tm_width_2 {
221
+ width: 16.66666667%;
222
+ }
223
+ .tm_width_3 {
224
+ width: 25%;
225
+ }
226
+ .tm_width_4 {
227
+ width: 33.33333333%;
228
+ }
229
+ .tm_width_5 {
230
+ width: 41.66666667%;
231
+ }
232
+ .tm_width_6 {
233
+ width: 50%;
234
+ }
235
+ .tm_width_7 {
236
+ width: 58.33333333%;
237
+ }
238
+ .tm_width_8 {
239
+ width: 66.66666667%;
240
+ }
241
+ .tm_width_9 {
242
+ width: 75%;
243
+ }
244
+ .tm_width_10 {
245
+ width: 83.33333333%;
246
+ }
247
+ .tm_width_11 {
248
+ width: 91.66666667%;
249
+ }
250
+ .tm_width_12 {
251
+ width: 100%;
252
+ }
253
+
254
+ .tm_border {
255
+ border: 1px solid $border;
256
+ }
257
+
258
+ .tm_border_bottom {
259
+ border-bottom: 1px solid $border;
260
+ }
261
+
262
+ .tm_border_top {
263
+ border-top: 1px solid $border;
264
+ }
265
+
266
+ .tm_border_left {
267
+ border-left: 1px solid $border;
268
+ }
269
+
270
+ .tm_border_right {
271
+ border-right: 1px solid $border;
272
+ }
273
+
274
+ .tm_round_border {
275
+ border: 1px solid $border;
276
+ overflow: hidden;
277
+ border-radius: 6px;
278
+ }
279
+
280
+ .tm_accent_color,
281
+ .tm_accent_color_hover:hover {
282
+ color: $accent;
283
+ }
284
+
285
+ .tm_accent_bg,
286
+ .tm_accent_bg_hover:hover {
287
+ background-color: $accent;
288
+ }
289
+
290
+ .tm_accent_bg_10 {
291
+ background-color: rgba($accent, 0.1);
292
+ }
293
+
294
+ .tm_accent_bg_20 {
295
+ background-color: rgba($accent, 0.15);
296
+ }
297
+
298
+ .tm_green_bg {
299
+ background-color: $green;
300
+ }
301
+
302
+ .tm_green_bg_15 {
303
+ background-color: rgba($green, 0.1);
304
+ }
305
+
306
+ .tm_primary_bg,
307
+ .tm_primary_bg_hover:hover {
308
+ background-color: $primary;
309
+ }
310
+
311
+ .tm_primary_bg_2 {
312
+ background-color: #000036;
313
+ }
314
+
315
+ .tm_danger_color {
316
+ color: $red;
317
+ }
318
+ .tm_primary_color {
319
+ color: $primary;
320
+ }
321
+
322
+ .tm_secondary_color {
323
+ color: $secondary;
324
+ }
325
+
326
+ .tm_ternary_color {
327
+ color: $ternary;
328
+ }
329
+
330
+ .tm_white_color {
331
+ color: $white;
332
+ }
333
+
334
+ .tm_white_color_60 {
335
+ color: rgba($white, 0.6);
336
+ }
337
+
338
+ .tm_gray_bg {
339
+ background: $gray;
340
+ }
341
+
342
+ .tm_ternary_bg {
343
+ background-color: $ternary;
344
+ }
345
+
346
+ .tm_accent_10_bg {
347
+ background-color: rgba($accent, 0.1);
348
+ }
349
+
350
+ .tm_accent_border {
351
+ border-color: $accent;
352
+ }
353
+
354
+ .tm_accent_border_10 {
355
+ border-color: rgba($accent, 0.10);
356
+ }
357
+
358
+ .tm_accent_border_20 {
359
+ border-color: rgba($accent, 0.20);
360
+ }
361
+
362
+ .tm_accent_border_30 {
363
+ border-color: rgba($accent, 0.30);
364
+ }
365
+
366
+ .tm_accent_border_40 {
367
+ border-color: rgba($accent, 0.40);
368
+ }
369
+
370
+ .tm_accent_border_50 {
371
+ border-color: rgba($accent, 0.50);
372
+ }
373
+
374
+ .tm_primary_border {
375
+ border-color: $primary;
376
+ }
377
+ .tm_gray_border {
378
+ border-color: $gray;
379
+ }
380
+
381
+ .tm_primary_border_2 {
382
+ border-color: #000036;
383
+ }
384
+
385
+ .tm_secondary_border {
386
+ border-color: $secondary;
387
+ }
388
+ .tm_ternary_border {
389
+ border-color: $ternary;
390
+ }
391
+ .tm_border_color {
392
+ border-color: $border;
393
+ }
394
+
395
+ .tm_border_1 {
396
+ border-style: solid;
397
+ border-width: 1px;
398
+ }
399
+
400
+ .tm_body_lineheight {
401
+ line-height: 1.5em;
402
+ }
403
+
404
+ .tm_invoice_in {
405
+ position: relative;
406
+ z-index: 100;
407
+ }
408
+
409
+ .tm_container {
410
+ max-width: 880px;
411
+ padding: 30px 15px;
412
+ margin-left: auto;
413
+ margin-right: auto;
414
+ position: relative;
415
+ }
416
+
417
+ .tm_text_center {
418
+ text-align: center;
419
+ }
420
+
421
+ .tm_text_uppercase {
422
+ text-transform: uppercase;
423
+ }
424
+
425
+ .tm_text_right {
426
+ text-align: right;
427
+ }
428
+
429
+ .tm_align_center {
430
+ align-items: center;
431
+ }
432
+
433
+ .tm_border_bottom_0 {
434
+ border-bottom: 0;
435
+ }
436
+ .tm_border_top_0 {
437
+ border-top: 0;
438
+ }
439
+
440
+
441
+ .tm_table_baseline {
442
+ vertical-align: baseline;
443
+ }
444
+
445
+ .tm_border_none {
446
+ border: none !important;
447
+ }
448
+
449
+ .tm_flex {
450
+ display: flex;
451
+ }
452
+ .tm_justify_between {
453
+ justify-content: space-between;
454
+ }
455
+ .tm__align_center {
456
+ align-items: center;
457
+ }
458
+
459
+ .tm_border_left_none {
460
+ border-left-width: 0;
461
+ }
462
+ .tm_border_right_none {
463
+ border-right-width: 0;
464
+ }
465
+ .tm_table_responsive {
466
+ overflow-x: auto;
467
+ > table {
468
+ min-width: 600px;
469
+ }
470
+ }
471
+
472
+ .tm_50_col > * {
473
+ width: 50%;
474
+ flex: none;
475
+ }
476
+
477
+ .tm_no_border {
478
+ border: none !important;
479
+ }
480
+
481
+ .tm_grid_row {
482
+ display: grid;
483
+ grid-gap: 10px 20px;
484
+ list-style: none;
485
+ padding: 0;
486
+ }
487
+
488
+ .tm_col_2 {
489
+ grid-template-columns: repeat(2, 1fr);
490
+ }
491
+ .tm_col_3 {
492
+ grid-template-columns: repeat(3, 1fr);
493
+ }
494
+ .tm_col_4 {
495
+ grid-template-columns: repeat(4, 1fr);
496
+ }
497
+
498
+ .tm_max_w_150 {
499
+ max-width: 150px;
500
+ }
501
+
502
+ .tm_left_auto {
503
+ margin-left: auto;
504
+ }
505
+
506
+ hr {
507
+ background: $border;
508
+ height: 1px;
509
+ border: none;
510
+ margin: 0;
511
+ }
512
+
513
+ .tm_invoice {
514
+ background: #fff;
515
+ border-radius: 10px;
516
+ padding: 50px;
517
+ }
518
+
519
+ .tm_invoice_footer {
520
+ display: flex;
521
+ table {
522
+ margin-top: -1px;
523
+ }
524
+ .tm_left_footer {
525
+ width: 58%;
526
+ padding: 10px 15px;
527
+ flex: none;
528
+ }
529
+ .tm_right_footer {
530
+ width: 42%;
531
+ }
532
+ }
533
+
534
+ .tm_note {
535
+ margin-top: 30px;
536
+ font-style: italic;
537
+ }
538
+
539
+ .tm_font_style_normal {
540
+ font-style: normal;
541
+ }
542
+
543
+ .tm_sign img {
544
+ max-height: 45px;
545
+ }
546
+
547
+ .tm_coffee_shop_img {
548
+ position: absolute;
549
+ height: 200px;
550
+ opacity: 0.04;
551
+ top: 40px;
552
+ left: 50%;
553
+ transform: translateX(-50%);
554
+ img {
555
+ max-height: 100%;
556
+ }
557
+ }
558
+
559
+ .tm_invoice.tm_style1 {
560
+ .tm_invoice_right {
561
+ flex: none;
562
+ width: 60%;
563
+ }
564
+ .tm_invoice_table {
565
+ // padding: 12px 20px;
566
+ grid-gap:1px;
567
+ >* {
568
+ border: 1px solid $border;
569
+ margin: -1px;
570
+ padding: 8px 15px 10px;
571
+
572
+ }
573
+ }
574
+ .tm_invoice_head {
575
+ display: flex;
576
+ justify-content: space-between;
577
+ // align-items: center;
578
+ .tm_invoice_right {
579
+ div {
580
+ line-height: 1em;
581
+ }
582
+ }
583
+ }
584
+ .tm_invoice_info {
585
+ display: flex;
586
+ align-items: center;
587
+ justify-content: space-between;
588
+ }
589
+ .tm_invoice_info_2 {
590
+ display: flex;
591
+ justify-content: space-between;
592
+ border-top: 1px solid $border;
593
+ border-bottom: 1px solid $border;
594
+ padding: 11px 0;
595
+ }
596
+ .tm_invoice_seperator {
597
+ min-height: 18px;
598
+ border-radius: 1.6em;
599
+ flex: 1;
600
+ margin-right: 20px;
601
+ }
602
+ .tm_invoice_info_list {
603
+ display: flex;
604
+ >* {
605
+ &:not(:last-child) {
606
+ margin-right: 20px;
607
+ }
608
+ }
609
+ }
610
+ .tm_logo {
611
+ img {
612
+ max-height: 50px;
613
+ }
614
+ &.tm_size1 {
615
+ img {
616
+ max-height: 60px;
617
+ }
618
+ }
619
+ &.tm_size2 {
620
+ img {
621
+ max-height: 70px;
622
+ }
623
+ }
624
+ }
625
+ .tm_grand_total {
626
+ padding: 8px 15px;
627
+ }
628
+ .tm_box_3 {
629
+ display: flex;
630
+ >* {
631
+ flex: 1;
632
+ }
633
+ ul {
634
+ margin: 0;
635
+ padding: 0;
636
+ list-style: none;
637
+ li {
638
+ display: flex;
639
+ &:not(:last-child) {
640
+ margin-bottom: 5px;
641
+ }
642
+ }
643
+ span {
644
+ flex: none;
645
+ &:first-child {
646
+ margin-right: 5px;
647
+ }
648
+ &:last-child {
649
+ flex: 1;
650
+ }
651
+ }
652
+ }
653
+ }
654
+ }
655
+
656
+ .tm_invoice.tm_style2 {
657
+ .tm_invoice_head {
658
+ display: flex;
659
+ align-items: center;
660
+ border-bottom: 1px solid $border;
661
+ padding-bottom: 15px;
662
+ position: relative;
663
+ }
664
+ .tm_invoice_left {
665
+ width: 30%;
666
+ flex: none;
667
+ }
668
+ .tm_invoice_right {
669
+ width: 70%;
670
+ flex: none;
671
+ }
672
+ .tm_invoice_info {
673
+ display: flex;
674
+ }
675
+ .tm_invoice_info_left {
676
+ width: 30%;
677
+ flex: none;
678
+ }
679
+ .tm_invoice_info_right {
680
+ width: 70%;
681
+ flex: none;
682
+ }
683
+ .tm_logo {
684
+ img {
685
+ max-height: 60px;
686
+ }
687
+ }
688
+ .tm_invoice_title {
689
+ line-height: 0.8em;
690
+ }
691
+ .tm_invoice_info_in {
692
+ padding: 12px 20px;
693
+ border-radius: 10px;
694
+ }
695
+ .tm_card_note {
696
+ display: inline-block;
697
+ padding: 6px 15px;
698
+ border-radius: 6px;
699
+ margin-bottom: 10px;
700
+ margin-top: 5px;
701
+ }
702
+ .tm_invoice_footer .tm_left_footer {
703
+ padding-left: 0;
704
+ }
705
+ }
706
+
707
+ .tm_invoice.tm_style1.tm_type1 {
708
+ padding: 0px 50px 30px;
709
+ position: relative;
710
+ overflow: hidden;
711
+ border-radius: 0;
712
+ .tm_invoice_head {
713
+ height: 110px;
714
+ position: relative;
715
+ }
716
+ .tm_shape_bg {
717
+ position: absolute;
718
+ height: 100%;
719
+ width: 70%;
720
+ transform: skewX(35deg);
721
+ top: 0px;
722
+ right: -100px;
723
+ overflow: hidden;
724
+ img {
725
+ height: 100%;
726
+ width: 100%;
727
+ object-fit: cover;
728
+ transform: skewX(-35deg) translateX(-45px);
729
+ }
730
+ }
731
+ .tm_invoice_right {
732
+ position: relative;
733
+ z-index: 2;
734
+ }
735
+ .tm_logo img {
736
+ max-height: 70px;
737
+ }
738
+ .tm_invoice_seperator {
739
+ margin-right: 0;
740
+ border-radius: 0;
741
+ transform: skewX(35deg);
742
+ position: absolute;
743
+ height: 100%;
744
+ width: 57.5%;
745
+ right: -60px;
746
+ overflow: hidden;
747
+ border: none;
748
+ img {
749
+ height: 100%;
750
+ width: 100%;
751
+ object-fit: cover;
752
+ transform: skewX(-35deg);
753
+ transform: skewX(-35deg) translateX(-10px);
754
+ }
755
+ }
756
+ .tm_invoice_info {
757
+ position: relative;
758
+ padding: 4px 0;
759
+ }
760
+ .tm_card_note,
761
+ .tm_invoice_info_list {
762
+ position: relative;
763
+ z-index: 1;
764
+ }
765
+ }
766
+ @media (min-width: 500px) {
767
+ .tm_invoice.tm_style1.tm_type2 {
768
+ position: relative;
769
+ overflow: hidden;
770
+ border-radius: 0;
771
+ td {
772
+ padding-top: 12px;
773
+ padding-bottom: 12px;
774
+ }
775
+ .tm_pt0 {
776
+ padding-top: 0;
777
+ }
778
+ .tm_bars {
779
+ display: flex;
780
+ position: absolute;
781
+ top: 0px;
782
+ left: 50%;
783
+ transform: translateX(-50%);
784
+ overflow: hidden;
785
+ padding: 0 15px;
786
+ span {
787
+ height: 100px;
788
+ width: 5px;
789
+ display: block;
790
+ margin: -15px 20px 0;
791
+ transform: rotate(-40deg);
792
+ }
793
+ &.tm_type1 {
794
+ top: initial;
795
+ bottom: 0;
796
+ span {
797
+ margin: 0 20px 0;
798
+ position: relative;
799
+ bottom: -15px;
800
+ }
801
+ }
802
+ }
803
+ .tm_shape {
804
+ height: 230px;
805
+ width: 250px;
806
+ position: absolute;
807
+ top: 0;
808
+ right: 0;
809
+ overflow: hidden;
810
+ .tm_shape_in {
811
+ position: absolute;
812
+ height: 350px;
813
+ width: 350px;
814
+ transform: rotate(40deg);
815
+ top: -199px;
816
+ left: 67px;
817
+ overflow: hidden;
818
+ }
819
+ &.tm_type1 {
820
+ top: initial;
821
+ bottom: 0;
822
+ right: initial;
823
+ left: 0;
824
+ .tm_shape_in {
825
+ top: 135px;
826
+ left: -153px;
827
+ }
828
+ }
829
+ }
830
+ .tm_shape_2 {
831
+ height: 120px;
832
+ width: 120px;
833
+ border: 5px solid currentColor;
834
+ padding: 20px;
835
+ position: absolute;
836
+ bottom: -30px;
837
+ right: 77px;
838
+ transform: rotate(45deg);
839
+ .tm_shape_2_in {
840
+ height: 100%;
841
+ width: 100%;
842
+ border: 20px solid currentColor;
843
+ }
844
+ &.tm_type1 {
845
+ left: -76px;
846
+ right: initial;
847
+ bottom: 245px;
848
+ .tm_shape_2_in {
849
+ border-width: 6px;
850
+ }
851
+ }
852
+ }
853
+ .tm_invoice_right {
854
+ width: 40%;
855
+ }
856
+ .tm_logo img {
857
+ max-height: 65px;
858
+ }
859
+ .tm_invoice_footer {
860
+ margin-bottom: 120px;
861
+ }
862
+ .tm_right_footer {
863
+ position: relative;
864
+ padding: 6px 0;
865
+ table {
866
+ position: relative;
867
+ z-index: 2;
868
+ }
869
+ }
870
+ .tm_left_footer {
871
+ padding: 30px 15px;
872
+ }
873
+ .tm_shape_3 {
874
+ position: absolute;
875
+ top: 0;
876
+ left: -40px;
877
+ height: 100%;
878
+ width: calc(100% + 150px);
879
+ transform: skewX(35deg);
880
+ }
881
+ .tm_shape_4 {
882
+ position: absolute;
883
+ bottom: 200px;
884
+ left: 0;
885
+ height: 200px;
886
+ width: 200px;
887
+ }
888
+ }
889
+ }
890
+
891
+ .tm_invoice.tm_style1.tm_type3 {
892
+ position: relative;
893
+ overflow: hidden;
894
+ border-radius: 0;
895
+ .tm_shape_1 {
896
+ position: absolute;
897
+ top: -1px;
898
+ left: 0;
899
+ }
900
+ .tm_shape_2 {
901
+ position: absolute;
902
+ bottom: 0;
903
+ left: 0;
904
+ display: flex;
905
+ }
906
+ .tm_logo img {
907
+ max-height: 60px;
908
+ }
909
+ .tm_invoice_head.tm_mb20 {
910
+ margin-bottom: 65px;
911
+ }
912
+ .tm_invoice_info_list {
913
+ position: relative;
914
+ padding: 10px 0 10px 40px;
915
+ }
916
+ .tm_invoice_info_list_bg {
917
+ position: absolute;
918
+ height: 100%;
919
+ width: calc(100% + 100px);
920
+ top: 0;
921
+ left: 0;
922
+ border-radius: 20px 0 0 0px;
923
+ transform: skewX(-35deg);
924
+ }
925
+ }
926
+
927
+ .tm_invoice.tm_style2.tm_type1 {
928
+ padding-top: 0;
929
+ padding-bottom: 0;
930
+ border-width: 40px 0 0;
931
+ border-style: solid;
932
+ position: relative;
933
+ overflow: hidden;
934
+ &.tm_small_border {
935
+ border-width: 7px 0 0;
936
+ }
937
+ .tm_shape_bg {
938
+ position: absolute;
939
+ height: 100%;
940
+ width: 42%;
941
+ transform: skewX(-35deg);
942
+ top: 0px;
943
+ left: -100px;
944
+ }
945
+ .tm_invoice_head {
946
+ padding-top: 15px;
947
+ border-bottom: none;
948
+ }
949
+ .tm_logo {
950
+ position: relative;
951
+ z-index: 2;
952
+ }
953
+ .tm_bottom_invoice {
954
+ position: relative;
955
+ display: flex;
956
+ padding: 15px 50px 20px;
957
+ border-top: 1px solid $border;
958
+ justify-content: space-between;
959
+ align-items: center;
960
+ margin: 30px -50px 0;
961
+ }
962
+ }
963
+
964
+ .tm_invoice_content {
965
+ position: relative;
966
+ z-index: 10;
967
+ }
968
+
969
+ .tm_invoice_wrap {
970
+ position: relative;
971
+ }
972
+
973
+ .tm_note_list {
974
+ li {
975
+ &:not(:last-child) {
976
+ margin-bottom: 5px;
977
+ }
978
+ }
979
+ }
980
+
981
+ .tm_list.tm_style1 {
982
+ list-style: none;
983
+ padding: 0;
984
+ margin: 0;
985
+ svg {
986
+ width: 16px;
987
+ height: initial;
988
+ }
989
+ .tm_list_icon {
990
+ display: flex;
991
+ position: absolute;
992
+ left: 0;
993
+ top: 3px;
994
+ }
995
+ li {
996
+ padding-left: 25px;
997
+ position: relative;
998
+ &:not(:last-child) {
999
+ margin-bottom: 5px;
1000
+ }
1001
+ }
1002
+ &.tm_text_right {
1003
+ li {
1004
+ padding-left: 0;
1005
+ padding-right: 25px;
1006
+ }
1007
+ .tm_list_icon {
1008
+ left: initial;
1009
+ right: 0;
1010
+ }
1011
+ }
1012
+ }
1013
+
1014
+ .tm_section_heading {
1015
+ border-width: 0 0 1px 0;
1016
+ border-style: solid;
1017
+ >span {
1018
+ display: inline-block;
1019
+ padding: 8px 15px;
1020
+ border-radius: 7px 7px 0 0;
1021
+ }
1022
+ .tm_curve_35 {
1023
+ margin-left: 12px;
1024
+ margin-right: 0;
1025
+ span {
1026
+ display: inline-block;
1027
+ }
1028
+ }
1029
+ }
1030
+ .tm_padd_15_20 {
1031
+ padding: 15px 20px;
1032
+ }
1033
+ .tm_padd_8_20 {
1034
+ padding: 8px 20px;
1035
+ }
1036
+ .tm_padd_20 {
1037
+ padding: 20px;
1038
+ }
1039
+ .tm_padd_15 {
1040
+ padding: 15px;
1041
+ }
1042
+ .tm_padd_10 {
1043
+ padding: 10px;
1044
+ }
1045
+ .tm_padd_5 {
1046
+ padding: 5px;
1047
+ }
1048
+ .tm_curve_35 {
1049
+ transform: skewX(-35deg);
1050
+ padding: 12px 20px 12px 30px;
1051
+ margin-left: 22px;
1052
+ margin-right: 22px;
1053
+ >* {
1054
+ transform: skewX(35deg);
1055
+ }
1056
+ }
1057
+
1058
+ // Start Dark Invoice
1059
+ .tm_dark_invoice_body {
1060
+ background-color: #18191a;
1061
+ }
1062
+ .tm_dark_invoice {
1063
+ background: #252526;
1064
+ color: rgba($white, 0.65);
1065
+ .tm_primary_color {
1066
+ color: rgba($white, 0.9);
1067
+ }
1068
+ .tm_secondary_color {
1069
+ color: rgba($white, 0.65);
1070
+ }
1071
+ .tm_ternary_color {
1072
+ color: rgba($white, 0.4);
1073
+ }
1074
+ .tm_gray_bg {
1075
+ background: rgba($white, 0.08);
1076
+ }
1077
+ .tm_border_color,
1078
+ .tm_round_border,
1079
+ td, th,
1080
+ .tm_border_top,
1081
+ .tm_border_bottom {
1082
+ border-color: rgba($white, 0.1);
1083
+ }
1084
+ +.tm_invoice_btns {
1085
+ background: #252526;
1086
+ border-color: #252526;
1087
+ }
1088
+ }
1089
+
1090
+ // End Dark Invoice
1091
+
1092
+ @media (min-width: 1000px) {
1093
+ .tm_invoice_btns {
1094
+ display: flex;
1095
+ flex-direction: column;
1096
+ justify-content: center;
1097
+ margin-top: 0px;
1098
+ margin-left: 20px;
1099
+ position: absolute;
1100
+ left: 100%;
1101
+ top: 0;
1102
+ box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1103
+ border: 3px solid #fff;
1104
+ border-radius: 6px;
1105
+ background-color: #fff;
1106
+ }
1107
+
1108
+ .tm_invoice_btn {
1109
+ display: inline-flex;
1110
+ align-items: center;
1111
+ border: none;
1112
+ font-weight: 600;
1113
+ cursor: pointer;
1114
+ padding: 0;
1115
+ background-color: transparent;
1116
+ position: relative;
1117
+ svg {
1118
+ width: 24px;
1119
+ }
1120
+ .tm_btn_icon {
1121
+ padding: 0;
1122
+ display: flex;
1123
+ height: 42px;
1124
+ width: 42px;
1125
+ align-items: center;
1126
+ justify-content: center;
1127
+ }
1128
+ .tm_btn_text {
1129
+ position: absolute;
1130
+ left: 100%;
1131
+ background-color: $primary;
1132
+ color: #fff;
1133
+ padding: 3px 12px;
1134
+ display: inline-block;
1135
+ margin-left: 10px;
1136
+ border-radius: 5px;
1137
+ top: 50%;
1138
+ transform: translateY(-50%);
1139
+ font-weight: 500;
1140
+ min-height: 28px;
1141
+ display: flex;
1142
+ align-items: center;
1143
+ opacity: 0;
1144
+ visibility: hidden;
1145
+ &:before {
1146
+ content: '';
1147
+ height: 10px;
1148
+ width: 10px;
1149
+ position: absolute;
1150
+ background-color: $primary;
1151
+ transform: rotate(45deg);
1152
+ left: -3px;
1153
+ top: 50%;
1154
+ margin-top: -6px;
1155
+ border-radius: 2px;
1156
+ }
1157
+ }
1158
+ &:hover {
1159
+ .tm_btn_text {
1160
+ opacity: 1;
1161
+ visibility: visible;
1162
+ }
1163
+ }
1164
+ &:not(:last-child) {
1165
+ margin-bottom: 3px;
1166
+ }
1167
+ &.tm_color1 {
1168
+ background-color: rgba($accent, 0.1);
1169
+ color: $accent;
1170
+ border-radius: 5px 5px 0 0;
1171
+ &:hover {
1172
+ background-color: rgba($accent, 0.2);
1173
+ }
1174
+ }
1175
+ &.tm_color2 {
1176
+ background-color: rgba($green, 0.1);
1177
+ color: $green;
1178
+ border-radius: 0 0 5px 5px;
1179
+ &:hover {
1180
+ background-color: rgba($green, 0.2);
1181
+ }
1182
+ }
1183
+ }
1184
+ }
1185
+
1186
+ @media (max-width: 999px) {
1187
+ .tm_invoice_btns {
1188
+ display: inline-flex;
1189
+ justify-content: center;
1190
+ margin-top: 0px;
1191
+ margin-top: 20px;
1192
+ box-shadow: -2px 0 24px -2px rgba(43, 55, 72, 0.05);
1193
+ border: 3px solid #fff;
1194
+ border-radius: 6px;
1195
+ background-color: #fff;
1196
+ position: relative;
1197
+ left: 50%;
1198
+ transform: translateX(-50%);
1199
+ }
1200
+ .tm_invoice_btn {
1201
+ display: inline-flex;
1202
+ align-items: center;
1203
+ border: none;
1204
+ font-weight: 600;
1205
+ cursor: pointer;
1206
+ padding: 0;
1207
+ background-color: transparent;
1208
+ position: relative;
1209
+ border-radius: 5px;
1210
+ padding: 6px 15px;
1211
+ svg {
1212
+ width: 24px;
1213
+ }
1214
+ .tm_btn_icon {
1215
+ padding: 0;
1216
+ display: flex;
1217
+ align-items: center;
1218
+ justify-content: center;
1219
+ margin-right: 8px;
1220
+ }
1221
+ &:not(:last-child) {
1222
+ margin-right: 3px;
1223
+ }
1224
+ &.tm_color1 {
1225
+ background-color: rgba($accent, 0.1);
1226
+ color: $accent;
1227
+ &:hover {
1228
+ background-color: rgba($accent, 0.2);
1229
+ }
1230
+ }
1231
+ &.tm_color2 {
1232
+ background-color: rgba($green, 0.1);
1233
+ color: $green;
1234
+ &:hover {
1235
+ background-color: rgba($green, 0.2);
1236
+ }
1237
+ }
1238
+ }
1239
+ }
1240
+
1241
+ @media (max-width: 767px) {
1242
+ .tm_col_4 {
1243
+ grid-template-columns: repeat(1, 1fr);
1244
+ }
1245
+ .tm_col_2_md {
1246
+ grid-template-columns: repeat(2, 1fr);
1247
+ }
1248
+ .tm_m0_md {
1249
+ margin: 0;
1250
+ }
1251
+ .tm_mb10_md {
1252
+ margin-bottom: 10px;
1253
+ }
1254
+ .tm_mb15_md {
1255
+ margin-bottom: 15px;
1256
+ }
1257
+ .tm_mb20_md {
1258
+ margin-bottom: 20px;
1259
+ }
1260
+ .tm_mobile_hide {
1261
+ display: none;
1262
+ }
1263
+ .tm_invoice {
1264
+ padding: 30px 20px;
1265
+ }
1266
+ .tm_invoice {
1267
+ .tm_right_footer {
1268
+ width: 100%;
1269
+ }
1270
+ }
1271
+ .tm_invoice_footer {
1272
+ flex-direction: column-reverse;
1273
+ }
1274
+ .tm_invoice_footer .tm_left_footer {
1275
+ width: 100%;
1276
+ border-top: 1px solid $border;
1277
+ margin-top: -1px;
1278
+ padding: 15px 0;
1279
+ }
1280
+ .tm_invoice.tm_style2 .tm_card_note {
1281
+ margin-top: 0;
1282
+ }
1283
+ .tm_note.tm_text_center {
1284
+ text-align: left;
1285
+ p {
1286
+ br {
1287
+ display: none;
1288
+ }
1289
+ }
1290
+ }
1291
+ .tm_invoice_footer.tm_type1 {
1292
+ flex-direction: column;
1293
+ }
1294
+ .tm_invoice.tm_style2 {
1295
+ .tm_invoice_head {
1296
+ flex-direction: column;
1297
+ >* {
1298
+ width: 100%;
1299
+ }
1300
+ .tm_invoice_left {
1301
+ margin-bottom: 15px;
1302
+ }
1303
+ .tm_text_right {
1304
+ text-align: left;
1305
+ }
1306
+ }
1307
+ .tm_invoice_info {
1308
+ flex-direction: column;
1309
+ >* {
1310
+ width: 100%;
1311
+ }
1312
+ }
1313
+ }
1314
+ .tm_invoice.tm_style1.tm_type1 {
1315
+ padding: 30px 20px;
1316
+ .tm_invoice_head {
1317
+ height: initial;
1318
+ }
1319
+ .tm_invoice_info {
1320
+ flex-direction: column;
1321
+ align-items: flex-start;
1322
+ padding-left: 15px;
1323
+ padding-right: 15px;
1324
+ }
1325
+ .tm_invoice_seperator {
1326
+ width: 100%;
1327
+ transform: initial;
1328
+ right: 0;
1329
+ top: 0;
1330
+ }
1331
+ .tm_logo img {
1332
+ max-height: 60px;
1333
+ }
1334
+ }
1335
+
1336
+ .tm_invoice.tm_style2.tm_type1 {
1337
+ border-width: 20px 0 0;
1338
+ .tm_shape_bg {
1339
+ width: 250px;
1340
+ height: 80px;
1341
+ }
1342
+ .tm_invoice_head {
1343
+ .tm_text_center {
1344
+ text-align: left;
1345
+ }
1346
+ }
1347
+ .tm_logo {
1348
+ top: -8px;
1349
+ margin-bottom: 15px;
1350
+ }
1351
+ }
1352
+ .tm_invoice.tm_style2 .tm_invoice_info_in {
1353
+ padding: 12px 15px;
1354
+ }
1355
+ .tm_border_none_md {
1356
+ border: none !important;
1357
+ }
1358
+ .tm_border_left_none_md {
1359
+ border-left-width: 0;
1360
+ }
1361
+ .tm_border_right_none_md {
1362
+ border-right-width: 0;
1363
+ }
1364
+ .tm_padd_left_15_md {
1365
+ padding-left: 15px !important;
1366
+ }
1367
+ .tm_invoice.tm_style2 .tm_logo img {
1368
+ max-height: 50px;
1369
+ }
1370
+ .tm_curve_35 {
1371
+ transform: skewX(0deg);
1372
+ margin-left: 0;
1373
+ margin-right: 0;
1374
+ >* {
1375
+ transform: inherit;
1376
+ }
1377
+ }
1378
+
1379
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator,
1380
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
1381
+ transform: initial;
1382
+ }
1383
+
1384
+ .tm_section_heading .tm_curve_35 {
1385
+ margin-left: 0;
1386
+ }
1387
+ .tm_shape_2.tm_type1 {
1388
+ display: none;
1389
+ }
1390
+ }
1391
+
1392
+ @media (max-width: 500px) {
1393
+ .tm_border_none_sm {
1394
+ border: none !important;
1395
+ }
1396
+ .tm_flex_column_sm {
1397
+ flex-direction: column;
1398
+ }
1399
+ .tm_align_start_sm {
1400
+ align-items: flex-start;
1401
+ }
1402
+ .tm_m0_sm {
1403
+ margin-bottom: 0;
1404
+ }
1405
+ .tm_invoice.tm_style1 {
1406
+ .tm_logo {
1407
+ margin-bottom: 10px;
1408
+ }
1409
+ .tm_invoice_head {
1410
+ flex-direction: column;
1411
+ .tm_invoice_left,
1412
+ .tm_invoice_right {
1413
+ width: 100%;
1414
+ }
1415
+ .tm_invoice_right {
1416
+ text-align: left;
1417
+ }
1418
+ }
1419
+ }
1420
+ .tm_list.tm_style2 li {
1421
+ flex-direction: column;
1422
+ > * {
1423
+ padding: 5px 20px;
1424
+ }
1425
+ }
1426
+ .tm_col_2,
1427
+ .tm_col_3 {
1428
+ grid-template-columns: repeat(1, 1fr);
1429
+ }
1430
+ .tm_col_2_sm {
1431
+ grid-template-columns: repeat(2, 1fr);
1432
+ }
1433
+ .tm_table.tm_style1.tm_type1 {
1434
+ padding: 0px 20px;
1435
+ }
1436
+ .tm_box2_wrap {
1437
+ grid-template-columns: repeat(1, 1fr);
1438
+ }
1439
+ .tm_box.tm_style1.tm_type1 {
1440
+ max-width: 100%;
1441
+ width: 100%;
1442
+ }
1443
+ .tm_invoice.tm_style1 .tm_invoice_left {
1444
+ max-width: 100%;
1445
+ }
1446
+
1447
+ .tm_f50 {
1448
+ font-size: 30px;
1449
+ }
1450
+ .tm_invoice.tm_style1 .tm_invoice_info {
1451
+ flex-direction: column-reverse;
1452
+ }
1453
+ .tm_invoice.tm_style1 .tm_invoice_seperator {
1454
+ flex: none;
1455
+ width: 100%;
1456
+ margin-right: 0;
1457
+ min-height: 5px;
1458
+ }
1459
+ .tm_invoice.tm_style1 .tm_invoice_info_list {
1460
+ width: 100%;
1461
+ flex-wrap: wrap;
1462
+ }
1463
+ .tm_invoice.tm_style1 .tm_invoice_seperator + .tm_invoice_info_list {
1464
+ margin-bottom: 5px;
1465
+ }
1466
+ .tm_f30 {
1467
+ font-size: 22px;
1468
+ }
1469
+ .tm_invoice.tm_style1 .tm_box_3 {
1470
+ flex-direction: column;
1471
+ span {
1472
+ br {
1473
+ display: none;
1474
+ }
1475
+ }
1476
+ > * {
1477
+ &:not(:last-child) {
1478
+ margin-bottom: 15px;
1479
+ }
1480
+ }
1481
+ }
1482
+ .tm_invoice.tm_style1 .tm_box_3 ul li {
1483
+ flex-direction: column;
1484
+ }
1485
+ .tm_invoice.tm_style1 .tm_box_3 ul li:not(:last-child) {
1486
+ margin-bottom: 5px;
1487
+ }
1488
+ }
1489
+ /*--------------------------------------------------------------
1490
+ Will apply only print window
1491
+ ----------------------------------------------------------------*/
1492
+ @media print {
1493
+ .tm_gray_bg {
1494
+ background-color: $gray !important;
1495
+ -webkit-print-color-adjust: exact;
1496
+ }
1497
+ .tm_ternary_bg {
1498
+ background-color: $ternary !important;
1499
+ -webkit-print-color-adjust: exact;
1500
+ }
1501
+ .tm_primary_bg {
1502
+ background-color: $primary !important;
1503
+ -webkit-print-color-adjust: exact;
1504
+ }
1505
+ .tm_secondary_bg {
1506
+ background-color: $secondary !important;
1507
+ -webkit-print-color-adjust: exact;
1508
+ }
1509
+ .tm_accent_bg{
1510
+ background-color: $accent;
1511
+ -webkit-print-color-adjust: exact;
1512
+ }
1513
+ .tm_accent_bg_10 {
1514
+ background-color: rgba($accent, 0.1) !important;
1515
+ -webkit-print-color-adjust: exact;
1516
+ }
1517
+
1518
+ .tm_accent_bg_20 {
1519
+ background-color: rgba($accent, 0.15) !important;
1520
+ -webkit-print-color-adjust: exact;
1521
+ }
1522
+ .tm_white_color {
1523
+ color: #fff !important;
1524
+ -webkit-print-color-adjust: exact;
1525
+ }
1526
+ .tm_accent_color {
1527
+ color: $accent !important;
1528
+ -webkit-print-color-adjust: exact;
1529
+ }
1530
+ .tm_ternary_color {
1531
+ color: $ternary !important;
1532
+ -webkit-print-color-adjust: exact;
1533
+ }
1534
+ .tm_hide_print {
1535
+ display: none !important;
1536
+ }
1537
+ .tm_dark_invoice .tm_gray_bg {
1538
+ background-color: $primary !important;
1539
+ -webkit-print-color-adjust: exact;
1540
+ }
1541
+ .tm_dark_invoice {
1542
+ background: $primary !important;
1543
+ color: rgba($white, 0.65) !important;
1544
+ -webkit-print-color-adjust: exact;
1545
+ }
1546
+ .tm_dark_invoice .tm_gray_bg {
1547
+ background: rgba($white, 0.05) !important;
1548
+ -webkit-print-color-adjust: exact;
1549
+ }
1550
+ hr {
1551
+ background: $border !important;
1552
+ -webkit-print-color-adjust: exact;
1553
+ }
1554
+ .tm_col_4,
1555
+ .tm_col_4.tm_col_2_md {
1556
+ grid-template-columns: repeat(4, 1fr);
1557
+ }
1558
+ .tm_col_2_md {
1559
+ grid-template-columns: repeat(2, 1fr);
1560
+ }
1561
+ .tm_mb1 {
1562
+ margin-bottom: 1px;
1563
+ }
1564
+ .tm_mb2 {
1565
+ margin-bottom: 2px;
1566
+ }
1567
+ .tm_mb3 {
1568
+ margin-bottom: 3px;
1569
+ }
1570
+ .tm_mb4 {
1571
+ margin-bottom: 4px;
1572
+ }
1573
+ .tm_mb5 {
1574
+ margin-bottom: 5px;
1575
+ }
1576
+ .tm_mb6 {
1577
+ margin-bottom: 6px;
1578
+ }
1579
+ .tm_mb7 {
1580
+ margin-bottom: 7px;
1581
+ }
1582
+ .tm_mb8 {
1583
+ margin-bottom: 8px;
1584
+ }
1585
+ .tm_mb9 {
1586
+ margin-bottom: 9px;
1587
+ }
1588
+ .tm_mb10 {
1589
+ margin-bottom: 10px;
1590
+ }
1591
+ .tm_mb11 {
1592
+ margin-bottom: 11px;
1593
+ }
1594
+ .tm_mb12 {
1595
+ margin-bottom: 12px;
1596
+ }
1597
+ .tm_mb13 {
1598
+ margin-bottom: 13px;
1599
+ }
1600
+ .tm_mb14 {
1601
+ margin-bottom: 14px;
1602
+ }
1603
+ .tm_mb15 {
1604
+ margin-bottom: 15px;
1605
+ }
1606
+ .tm_mb16 {
1607
+ margin-bottom: 16px;
1608
+ }
1609
+ .tm_mb17 {
1610
+ margin-bottom: 17px;
1611
+ }
1612
+ .tm_mb18 {
1613
+ margin-bottom: 18px;
1614
+ }
1615
+ .tm_mb19 {
1616
+ margin-bottom: 19px;
1617
+ }
1618
+ .tm_mb20 {
1619
+ margin-bottom: 20px;
1620
+ }
1621
+ .tm_mb21 {
1622
+ margin-bottom: 21px;
1623
+ }
1624
+ .tm_mb22 {
1625
+ margin-bottom: 22px;
1626
+ }
1627
+ .tm_mb23 {
1628
+ margin-bottom: 23px;
1629
+ }
1630
+ .tm_mb24 {
1631
+ margin-bottom: 24px;
1632
+ }
1633
+ .tm_mb25 {
1634
+ margin-bottom: 25px;
1635
+ }
1636
+ .tm_mb26 {
1637
+ margin-bottom: 26px;
1638
+ }
1639
+ .tm_mb27 {
1640
+ margin-bottom: 27px;
1641
+ }
1642
+ .tm_mb28 {
1643
+ margin-bottom: 28px;
1644
+ }
1645
+ .tm_mb29 {
1646
+ margin-bottom: 29px;
1647
+ }
1648
+ .tm_mb30 {
1649
+ margin-bottom: 30px;
1650
+ }
1651
+ .tm_mb40 {
1652
+ margin-bottom: 40px;
1653
+ }
1654
+ .tm_mobile_hide {
1655
+ display: block;
1656
+ }
1657
+ .tm_invoice {
1658
+ padding: 10px;
1659
+ }
1660
+ .tm_invoice {
1661
+ .tm_right_footer {
1662
+ width: 42%;
1663
+ }
1664
+ }
1665
+ .tm_invoice_footer {
1666
+ flex-direction: initial;
1667
+ }
1668
+ .tm_invoice_footer .tm_left_footer {
1669
+ width: 58%;
1670
+ padding: 10px 15px;
1671
+ flex: none;
1672
+ border-top: none;
1673
+ margin-top: 0px;
1674
+ }
1675
+ .tm_invoice.tm_style2 .tm_card_note {
1676
+ margin-top: 5px;
1677
+ }
1678
+ .tm_note.tm_text_center {
1679
+ text-align: center;
1680
+ p {
1681
+ br {
1682
+ display: initial;
1683
+ }
1684
+ }
1685
+ }
1686
+ .tm_invoice_footer.tm_type1 {
1687
+ flex-direction: initial;
1688
+ }
1689
+ .tm_invoice.tm_style2 {
1690
+ .tm_invoice_head {
1691
+ flex-direction: initial;
1692
+ >.tm_invoice_left {
1693
+ width: 30%;
1694
+ }
1695
+ >.tm_invoice_right {
1696
+ width: 70%;
1697
+ }
1698
+ .tm_invoice_left {
1699
+ margin-bottom: initial;
1700
+ }
1701
+ .tm_text_right {
1702
+ text-align: right;
1703
+ }
1704
+ }
1705
+ .tm_invoice_info {
1706
+ flex-direction: initial;
1707
+ >.tm_invoice_info_left {
1708
+ width: 30%;
1709
+ }
1710
+ >.tm_invoice_info_right {
1711
+ width: 70%;
1712
+ }
1713
+ }
1714
+ }
1715
+ .tm_invoice.tm_style1.tm_type1 {
1716
+ padding: 0px 20px 30px;
1717
+ .tm_invoice_head {
1718
+ height: 110px;
1719
+ }
1720
+ .tm_invoice_info {
1721
+ padding: 4px 0;
1722
+ flex-direction: initial;
1723
+ align-items: center;
1724
+ }
1725
+ .tm_invoice_seperator {
1726
+ top: initial;
1727
+ margin-right: 0;
1728
+ border-radius: 0;
1729
+ transform: skewX(35deg);
1730
+ position: absolute;
1731
+ height: 100%;
1732
+ width: 57.5%;
1733
+ right: -60px;
1734
+ overflow: hidden;
1735
+ border: none;
1736
+
1737
+ }
1738
+ .tm_logo img {
1739
+ max-height: 70px;
1740
+ }
1741
+ }
1742
+
1743
+ .tm_invoice.tm_style2.tm_type1 {
1744
+ border-width: 20px 0 0;
1745
+ .tm_shape_bg {
1746
+ height: 100%;
1747
+ width: 42%;
1748
+ }
1749
+ .tm_invoice_head {
1750
+ .tm_text_center {
1751
+ text-align: center;
1752
+ }
1753
+ }
1754
+ .tm_logo {
1755
+ top: initial;
1756
+ margin-bottom: initial;
1757
+ }
1758
+ }
1759
+ .tm_invoice.tm_style2 .tm_invoice_info_in {
1760
+ padding: 12px 20px;
1761
+ }
1762
+ .tm_invoice.tm_style2 .tm_logo img {
1763
+ max-height: 60px;
1764
+ }
1765
+
1766
+ .tm_curve_35 {
1767
+ transform: skewX(-35deg);
1768
+ margin-left: 22px;
1769
+ margin-right: 22px;
1770
+ >* {
1771
+ transform: skewX(35deg);
1772
+ }
1773
+ }
1774
+
1775
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator {
1776
+ transform: skewX(35deg);
1777
+ }
1778
+
1779
+ .tm_invoice.tm_style1.tm_type1 .tm_invoice_seperator img {
1780
+ transform: skewX(-35deg) translateX(-45px);
1781
+ }
1782
+
1783
+ .tm_section_heading .tm_curve_35 {
1784
+ margin-left: 12px;
1785
+ }
1786
+
1787
+ .tm_round_border {
1788
+ border-top-width: 2px;
1789
+ }
1790
+ .tm_border_left_none_md {
1791
+ border-left-width: 1px;
1792
+ }
1793
+ .tm_border_right_none_md {
1794
+ border-right-width: 1px;
1795
+ }
1796
+ .tm_note {
1797
+ margin-top: 30px;
1798
+ }
1799
+ .tm_pagebreak {
1800
+ page-break-before: always;
1801
+ }
1802
1802
  }