Subversion-Projekte lars-tiefland.webanos.zeldi.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
/*------------------------------------------------------------------
2
[Master Stylesheet]
3
 
4
Project:  CoolAdmin
5
Version:	1.0
6
Last change:	08/10/2018 [Add Define a table of contents Link]
7
Assigned to:	Hau Nguyen
8
Primary use:	Open Source
9
-------------------------------------------------------------------*/
10
/*------------------------------------------------------------------
11
[LAYOUT]
12
 
13
* body
14
    + Header / header
15
	+ Page Content / .page-content .name-page
16
        + Section Layouts / section .name-section
17
        ...
18
	+ Footer / footer
19
 
20
-------------------------------------------------------------------*/
21
/*------------------------------------------------------------------
22
# [Color codes]
23
 
24
# Text Color (text): #666666
25
# Text Color Deep (Text, title): #333333
26
 
27
------------------------------------------------------------------*/
28
/*------------------------------------------------------------------
29
[Typography]
30
 
31
Notes:	decreasing heading by 0.4em with every subsequent heading level
32
-------------------------------------------------------------------*/
33
/*-----------------------------------------------------*/
34
/*                   SETTINGS                          */
35
/*-----------------------------------------------------*/
36
/*-----------------------------------------------------*/
37
/*                   TOOLS                             */
38
/*-----------------------------------------------------*/
39
/*-----------------------------------------------------*/
40
/*                   GENERIC                           */
41
/*-----------------------------------------------------*/
42
/* ----- Normalize ----- */
43
* {
44
    margin: 0;
45
    padding: 0;
46
    -webkit-box-sizing: border-box;
47
    -moz-box-sizing: border-box;
48
    box-sizing: border-box;
49
}
50
 
51
ul {
52
    margin: 0;
53
}
54
 
55
button,
56
input[type='button'] {
57
    cursor: pointer;
58
}
59
 
60
button:focus,
61
input:focus,
62
textarea:focus {
63
    outline: none;
64
}
65
 
66
input, textarea {
67
    border: none;
68
}
69
 
70
button {
71
    border: none;
72
    background: none;
73
}
74
 
75
img {
76
    max-width: 100%;
77
    height: auto;
78
}
79
 
80
p {
81
    margin: 0;
82
}
83
 
84
.table-responsive {
85
    padding-right: 1px;
86
}
87
 
88
.card {
89
    -webkit-border-radius: 3px;
90
    -moz-border-radius: 3px;
91
    border-radius: 3px;
92
}
93
 
94
.btn {
95
    -webkit-border-radius: 3px;
96
    -moz-border-radius: 3px;
97
    border-radius: 3px;
98
}
99
 
100
/* ----- Typography ----- */
101
body {
102
    font-family: "Poppins", sans-serif;
103
    font-weight: 400;
104
    font-size: 16px;
105
    line-height: 1.625;
106
    color: #666;
107
    -webkit-font-smoothing: antialiased;
108
    -moz-osx-font-smoothing: grayscale;
109
}
110
 
111
h1,
112
h2,
113
h3,
114
h4,
115
h5,
116
h6 {
117
    color: #333333;
118
    font-weight: 700;
119
    margin: 0;
120
    line-height: 1.2;
121
}
122
 
123
h1 {
124
    font-size: 36px;
125
}
126
 
127
h2 {
128
    font-size: 30px;
129
}
130
 
131
h3 {
132
    font-size: 24px;
133
}
134
 
135
h4 {
136
    font-size: 18px;
137
}
138
 
139
h5 {
140
    font-size: 15px;
141
}
142
 
143
h6 {
144
    font-size: 13px;
145
}
146
 
147
blockquote {
148
    margin: 0;
149
}
150
 
151
strong {
152
    font-weight: 700;
153
}
154
 
155
/*-----------------------------------------------------*/
156
/*                   ELEMENTS                          */
157
/*-----------------------------------------------------*/
158
/* ----- Title ----- */
159
.title--sbold {
160
    font-weight: 600;
161
}
162
 
163
.title-1 {
164
    text-transform: capitalize;
165
    font-weight: 400;
166
    font-size: 30px;
167
}
168
 
169
.title-2 {
170
    text-transform: capitalize;
171
    font-weight: 400;
172
    font-size: 24px;
173
    line-height: 1;
174
}
175
 
176
.title-3 {
177
    text-transform: capitalize;
178
    font-weight: 400;
179
    font-size: 24px;
180
    color: #333;
181
}
182
 
183
.title-3 i {
184
    margin-right: 13px;
185
    vertical-align: baseline;
186
}
187
 
188
.title-4 {
189
    font-weight: 500;
190
    font-size: 30px;
191
    color: #393939;
192
}
193
 
194
.title-5 {
195
    text-transform: capitalize;
196
    font-size: 22px;
197
    font-weight: 500;
198
    color: #393939;
199
}
200
 
201
.title-6 {
202
    font-size: 24px;
203
    font-weight: 500;
204
    color: #fff;
205
}
206
 
207
.heading-title {
208
    font-size: 24px;
209
    font-weight: 500;
210
    color: #333;
211
    text-transform: capitalize;
212
    margin-bottom: 10px;
213
}
214
 
215
/* ----- Links ----- */
216
a {
217
    display: inline-block;
218
}
219
 
220
a:hover,
221
a:focus,
222
a:active {
223
    text-decoration: none;
224
    outline: none;
225
}
226
 
227
a:hover,
228
a {
229
    -webkit-transition: all 0.3s ease;
230
    -o-transition: all 0.3s ease;
231
    -moz-transition: all 0.3s ease;
232
    transition: all 0.3s ease;
233
}
234
 
235
/*-----------------------------------------------------*/
236
/*                   OBJECTS                           */
237
/*-----------------------------------------------------*/
238
/* ----- Section----- */
239
section {
240
    position: relative;
241
}
242
 
243
.section__content {
244
    position: relative;
245
    margin: 0 auto;
246
    z-index: 1;
247
}
248
 
249
.section__content--w1830 {
250
    max-width: 1830px;
251
}
252
 
253
.section__content--p30 {
254
    padding: 0 30px;
255
}
256
 
257
@media (max-width: 991px) {
258
    .section__content--p30 {
259
        padding: 0;
260
    }
261
}
262
 
263
.section__content--p35 {
264
    padding: 0 35px;
265
}
266
 
267
/* ----- Page Wrapper----- */
268
/*Override Grid Bootstrap*/
269
@media (min-width: 1200px) {
270
    .container {
271
        max-width: 1320px;
272
    }
273
}
274
 
275
/*Page Objects*/
276
.page-wrapper {
277
    overflow: hidden;
278
    background: #e5e5e5;
279
    padding-bottom: 8vh;
280
}
281
 
282
@media (max-width: 991px) {
283
    .page-wrapper {
284
    overflow: auto;
285
    background: #e5e5e5;
286
    padding-bottom: 12vh;
287
}
288
}
289
.page-container {
290
    background: #e5e5e5;
291
    padding-left: 300px;
292
}
293
 
294
@media (max-width: 991px) {
295
    .page-container {
296
        position: relative;
297
        top: 88px;
298
        padding-left: 0;
299
    }
300
}
301
 
302
.page-container2 {
303
    background: #f2f2f2;
304
    padding-left: 300px;
305
}
306
 
307
@media (max-width: 991px) {
308
    .page-container2 {
309
        position: relative;
310
        padding-left: 0;
311
    }
312
}
313
 
314
.page-container3 {
315
    background: #f7f7f7;
316
}
317
 
318
.main-content {
319
    padding-top: 116px;
320
    min-height: 100vh;
321
}
322
 
323
@media (max-width: 991px) {
324
    .main-content {
325
        padding-top: 50px;
326
	padding-bottom: 100px;
327
    }
328
}
329
 
330
.page-content--bgf7 {
331
    background: #f7f7f7;
332
}
333
 
334
.page-content--bge5 {
335
    background: #e5e5e5;
336
    height: 100vh;
337
}
338
 
339
.login-wrap {
340
    max-width: 540px;
341
    padding-top: 8vh;
342
    margin: 0 auto;
343
}
344
 
345
.login-logo {
346
    text-align: center;
347
    margin-bottom: 30px;
348
}
349
 
350
.login-checkbox {
351
    display: -webkit-box;
352
    display: -webkit-flex;
353
    display: -moz-box;
354
    display: -ms-flexbox;
355
    display: flex;
356
    -webkit-box-pack: justify;
357
    -webkit-justify-content: space-between;
358
    -moz-box-pack: justify;
359
    -ms-flex-pack: justify;
360
    justify-content: space-between;
361
}
362
 
363
.login-checkbox label input[type="checkbox"] {
364
    margin-right: 8px;
365
}
366
 
367
.login-checkbox > label > a {
368
    color: #ff2e44;
369
}
370
 
371
@media (max-width: 991px) {
372
    .login-checkbox {
373
        -webkit-box-orient: vertical;
374
        -webkit-box-direction: normal;
375
        -webkit-flex-direction: column;
376
        -moz-box-orient: vertical;
377
        -moz-box-direction: normal;
378
        -ms-flex-direction: column;
379
        flex-direction: column;
380
    }
381
}
382
 
383
.login-form .form-group label {
384
    display: block;
385
}
386
 
387
.login-content {
388
    background: #fff;
389
    padding: 30px 30px 20px;
390
    -webkit-border-radius: 2px;
391
    -moz-border-radius: 2px;
392
    border-radius: 2px;
393
}
394
 
395
.social-login-content {
396
    border-top: 1px solid #e7e7e7;
397
    border-bottom: 1px solid #e7e7e7;
398
    padding: 20px 0px;
399
}
400
 
401
.register-link {
402
    padding-top: 15px;
403
    text-align: center;
404
    font-size: 14px;
405
}
406
 
407
.register-link > p > a {
408
    color: #ff2e44;
409
}
410
 
411
.fontawesome-list-wrap {
412
    background: #fff;
413
    border: 1px solid #C9CDD7;
414
    padding: 20px;
415
    -webkit-border-radius: 2px;
416
    -moz-border-radius: 2px;
417
    border-radius: 2px;
418
}
419
 
420
.fontawesome-list__title {
421
    padding-bottom: 20px;
422
    border-bottom: 1px solid #C9CDD7;
423
    margin-bottom: 20px;
424
    margin-top: 30px;
425
}
426
 
427
.fa-hover a {
428
    color: #666;
429
    font-size: 15px;
430
}
431
 
432
.fa-hover a i {
433
    margin-right: 10px;
434
}
435
 
436
.fa-hover a:hover {
437
    color: #333;
438
}
439
 
440
.main-content--pb30 {
441
    padding-bottom: 30px;
442
}
443
 
444
/*-----------------------------------------------------*/
445
/*                   COMPONENTS                        */
446
/*-----------------------------------------------------*/
447
/* ----- Buttons----- */
448
.au-btn {
449
    line-height: 45px;
450
    padding: 0 35px;
451
    text-transform: uppercase;
452
    color: #fff;
453
    -webkit-border-radius: 3px;
454
    -moz-border-radius: 3px;
455
    border-radius: 3px;
456
    -webkit-transition: all 0.3s ease;
457
    -o-transition: all 0.3s ease;
458
    -moz-transition: all 0.3s ease;
459
    transition: all 0.3s ease;
460
    cursor: pointer;
461
}
462
 
463
.au-btn:hover {
464
    color: #fff;
465
    background: #3868cd;
466
}
467
 
468
.au-btn--blue2 {
469
    background: #00aced;
470
}
471
 
472
.au-btn--blue2:hover {
473
    background: #00a2e3;
474
}
475
 
476
.au-btn--block {
477
    display: block;
478
    width: 100%;
479
}
480
 
481
.au-btn-icon i {
482
    vertical-align: baseline;
483
    margin-right: 5px;
484
}
485
 
486
.au-btn--blue {
487
    background: #4272d7;
488
}
489
 
490
.au-btn--green {
491
    background: #63c76a;
492
}
493
 
494
.au-btn--green:hover {
495
    background: #59bd60;
496
}
497
 
498
.au-btn-plus {
499
    position: absolute;
500
    height: 45px;
501
    width: 45px;
502
    background: #63c76a;
503
    -webkit-border-radius: 100%;
504
    -moz-border-radius: 100%;
505
    border-radius: 100%;
506
    -webkit-transition: all 0.3s ease;
507
    -o-transition: all 0.3s ease;
508
    -moz-transition: all 0.3s ease;
509
    transition: all 0.3s ease;
510
    bottom: -22.5px;
511
    right: 45px;
512
    z-index: 3;
513
}
514
 
515
.au-btn-plus i {
516
    position: absolute;
517
    top: 50%;
518
    left: 50%;
519
    -webkit-transform: translate(-50%, -50%);
520
    -moz-transform: translate(-50%, -50%);
521
    -ms-transform: translate(-50%, -50%);
522
    -o-transform: translate(-50%, -50%);
523
    transform: translate(-50%, -50%);
524
    font-size: 15px;
525
    font-weight: 500;
526
    color: #fff;
527
}
528
 
529
.au-btn-plus:hover {
530
    background: #59bd60;
531
}
532
 
533
.au-btn-load {
534
    background: #808080;
535
    padding: 0 40px;
536
    font-size: 15px;
537
    color: #fff;
538
}
539
 
540
.au-btn-load:hover {
541
    background: #767676;
542
}
543
 
544
.au-btn-filter {
545
    font-size: 14px;
546
    color: #808080;
547
    background: #fff;
548
    -webkit-border-radius: 3px;
549
    -moz-border-radius: 3px;
550
    border-radius: 3px;
551
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
552
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
553
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
554
    padding: 0 15px;
555
    line-height: 40px;
556
    text-transform: capitalize;
557
}
558
 
559
.au-btn-filter i {
560
    margin-right: 5px;
561
}
562
 
563
.au-btn--small {
564
    padding: 0 20px;
565
    line-height: 40px;
566
    font-size: 14px;
567
}
568
 
569
/*Page Loader*/
570
.page-loader {
571
    background: #f8f8f8;
572
    bottom: 0;
573
    left: 0;
574
    position: fixed;
575
    right: 0;
576
    top: 0;
577
    z-index: 99999;
578
}
579
 
580
.page-loader__spin {
581
    width: 35px;
582
    height: 35px;
583
    position: absolute;
584
    top: 50%;
585
    left: 50%;
586
    border-top: 6px solid #f6f6f6;
587
    border-right: 6px solid #f6f6f6;
588
    border-bottom: 6px solid #f6f6f6;
589
    border-left: 6px solid #1b1b1b;
590
    -webkit-border-radius: 50%;
591
    -moz-border-radius: 50%;
592
    border-radius: 50%;
593
    -webkit-animation: spinner 1000ms infinite linear;
594
    -moz-animation: spinner 1000ms infinite linear;
595
    -o-animation: spinner 1000ms infinite linear;
596
    animation: spinner 1000ms infinite linear;
597
    z-index: 100000;
598
}
599
 
600
@-webkit-keyframes spinner {
601
    0% {
602
        -webkit-transform: rotate(0deg);
603
        transform: rotate(0deg);
604
    }
605
 
606
    100% {
607
        -webkit-transform: rotate(360deg);
608
        transform: rotate(360deg);
609
    }
610
}
611
 
612
@-moz-keyframes spinner {
613
    0% {
614
        -webkit-transform: rotate(0deg);
615
        -moz-transform: rotate(0deg);
616
        transform: rotate(0deg);
617
    }
618
 
619
    100% {
620
        -webkit-transform: rotate(360deg);
621
        -moz-transform: rotate(360deg);
622
        transform: rotate(360deg);
623
    }
624
}
625
 
626
@-o-keyframes spinner {
627
    0% {
628
        -webkit-transform: rotate(0deg);
629
        -o-transform: rotate(0deg);
630
        transform: rotate(0deg);
631
    }
632
 
633
    100% {
634
        -webkit-transform: rotate(360deg);
635
        -o-transform: rotate(360deg);
636
        transform: rotate(360deg);
637
    }
638
}
639
 
640
@keyframes spinner {
641
    0% {
642
        -webkit-transform: rotate(0deg);
643
        -moz-transform: rotate(0deg);
644
        -o-transform: rotate(0deg);
645
        transform: rotate(0deg);
646
    }
647
 
648
    100% {
649
        -webkit-transform: rotate(360deg);
650
        -moz-transform: rotate(360deg);
651
        -o-transform: rotate(360deg);
652
        transform: rotate(360deg);
653
    }
654
}
655
 
656
/* ----- Form ----- */
657
.form-header {
658
    display: -webkit-box;
659
    display: -webkit-flex;
660
    display: -moz-box;
661
    display: -ms-flexbox;
662
    display: flex;
663
}
664
 
665
@media (max-width: 991px) {
666
    .form-header {
667
        -webkit-box-pack: center;
668
        -webkit-justify-content: center;
669
        -moz-box-pack: center;
670
        -ms-flex-pack: center;
671
        justify-content: center;
672
    }
673
}
674
 
675
.form-header2 .au-btn--submit {
676
    border: none;
677
    line-height: 45px;
678
}
679
 
680
.form-header2 .au-input {
681
    border-color: rgba(255, 255, 255, 0.2);
682
    background: rgba(255, 255, 255, 0.051);
683
    color: #999;
684
}
685
 
686
.form-header2 .au-input::-webkit-input-placeholder {
687
    /* WebKit, Blink, Edge */
688
    color: #999;
689
}
690
 
691
.form-header2 .au-input:-moz-placeholder {
692
    /* Mozilla Firefox 4 to 18 */
693
    color: #999;
694
    opacity: 1;
695
}
696
 
697
.form-header2 .au-input::-moz-placeholder {
698
    /* Mozilla Firefox 19+ */
699
    color: #999;
700
    opacity: 1;
701
}
702
 
703
.form-header2 .au-input:-ms-input-placeholder {
704
    /* Internet Explorer 10-11 */
705
    color: #999;
706
}
707
 
708
.form-header2 .au-input:-ms-input-placeholder {
709
    /* Microsoft Edge */
710
    color: #999;
711
}
712
 
713
/* ----- Input ----- */
714
.au-input {
715
    line-height: 43px;
716
    border: 1px solid #e5e5e5;
717
    font-size: 14px;
718
    color: #666;
719
    padding: 0 17px;
720
    -webkit-border-radius: 3px;
721
    -moz-border-radius: 3px;
722
    border-radius: 3px;
723
    -webkit-transition: all 0.5s ease;
724
    -o-transition: all 0.5s ease;
725
    -moz-transition: all 0.5s ease;
726
    transition: all 0.5s ease;
727
}
728
 
729
.au-input--style2 {
730
    color: #808080;
731
    line-height: 43px;
732
    border: 1px solid #e5e5e5;
733
    font-size: 14px;
734
    padding: 0 17px;
735
    -webkit-border-radius: 3px;
736
    -moz-border-radius: 3px;
737
    border-radius: 3px;
738
    -webkit-transition: all 0.5s ease;
739
    -o-transition: all 0.5s ease;
740
    -moz-transition: all 0.5s ease;
741
    transition: all 0.5s ease;
742
}
743
 
744
.au-input--full {
745
    width: 100%;
746
}
747
 
748
.au-input--h65 {
749
    line-height: 63px;
750
    font-size: 16px;
751
    color: #808080;
752
}
753
 
754
.au-input--w300 {
755
    min-width: 300px;
756
}
757
 
758
.au-input--w435 {
759
    min-width: 435px;
760
}
761
 
762
@media (max-width: 767px) {
763
    .au-input--w435 {
764
        min-width: 230px;
765
    }
766
}
767
 
768
.au-form-icon {
769
    position: relative;
770
}
771
 
772
.au-form-icon .au-input {
773
    padding-right: 80px;
774
}
775
 
776
.au-form-icon--sm {
777
    position: relative;
778
}
779
 
780
.au-form-icon--sm .au-input {
781
    padding-right: 43px;
782
}
783
 
784
.au-input-icon {
785
    position: absolute;
786
    top: 1px;
787
    right: 12px;
788
    width: 63px;
789
    height: 63px;
790
    line-height: 63px;
791
    text-align: center;
792
    display: block;
793
}
794
 
795
.au-input-icon i {
796
    font-size: 30px;
797
    color: #808080;
798
    position: absolute;
799
    top: 50%;
800
    left: 50%;
801
    -webkit-transform: translate(-50%, -50%);
802
    -moz-transform: translate(-50%, -50%);
803
    -ms-transform: translate(-50%, -50%);
804
    -o-transform: translate(-50%, -50%);
805
    transform: translate(-50%, -50%);
806
}
807
 
808
.au-input--xl {
809
    min-width: 935px;
810
}
811
 
812
@media (max-width: 1600px) {
813
    .au-input--xl {
814
        min-width: 350px;
815
    }
816
}
817
 
818
@media (max-width: 991px) {
819
    .au-input--xl {
820
        min-width: 350px;
821
    }
822
}
823
 
824
@media (max-width: 767px) {
825
    .au-input--xl {
826
        min-width: 150px;
827
    }
828
}
829
 
830
.au-btn--submit {
831
    position: relative;
832
    right: 0;
833
    min-width: 65px;
834
    line-height: 43px;
835
    border: 1px solid #e5e5e5;
836
    -webkit-border-radius: 3px;
837
    -moz-border-radius: 3px;
838
    border-radius: 3px;
839
    background: #4272d7;
840
    margin-left: -3px;
841
}
842
 
843
.au-btn--submit:hover {
844
    background: #3868cd;
845
}
846
 
847
.au-btn--submit > i {
848
    font-size: 20px;
849
    color: #fff;
850
    position: absolute;
851
    top: 50%;
852
    left: 50%;
853
    -webkit-transform: translate(-50%, -50%);
854
    -moz-transform: translate(-50%, -50%);
855
    -ms-transform: translate(-50%, -50%);
856
    -o-transform: translate(-50%, -50%);
857
    transform: translate(-50%, -50%);
858
}
859
 
860
.au-btn--submit2 {
861
    height: 43px;
862
    width: 43px;
863
    position: absolute;
864
    top: 1px;
865
    right: 0;
866
}
867
 
868
.au-btn--submit2 i {
869
    position: absolute;
870
    top: 50%;
871
    left: 50%;
872
    -webkit-transform: translate(-50%, -50%);
873
    -moz-transform: translate(-50%, -50%);
874
    -ms-transform: translate(-50%, -50%);
875
    -o-transform: translate(-50%, -50%);
876
    transform: translate(-50%, -50%);
877
    color: #4c4c4c;
878
    font-size: 20px;
879
}
880
 
881
.rs-select2--sm {
882
    width: 114px;
883
}
884
 
885
.rs-select2--md {
886
    width: 160px;
887
}
888
 
889
.select2-container {
890
    display: block;
891
    max-width: 100% !important;
892
    width: auto !important;
893
    outline: none;
894
}
895
 
896
.rs-select2--dark {
897
    display: inline-block;
898
}
899
 
900
@media (max-width: 767px) {
901
    .rs-select2--dark {
902
        display: block;
903
        margin-right: 0;
904
        margin-bottom: 10px;
905
    }
906
}
907
 
908
.rs-select2--dark .select2-container--default .select2-selection--single {
909
    border: none;
910
    outline: none;
911
    padding-left: 18px;
912
    -webkit-border-radius: 3px;
913
    -moz-border-radius: 3px;
914
    border-radius: 3px;
915
    height: 40px;
916
    background: #808080;
917
    display: -webkit-box;
918
    display: -webkit-flex;
919
    display: -moz-box;
920
    display: -ms-flexbox;
921
    display: flex;
922
    -webkit-box-align: center;
923
    -webkit-align-items: center;
924
    -moz-box-align: center;
925
    -ms-flex-align: center;
926
    align-items: center;
927
}
928
 
929
.rs-select2--dark .select2-container--default .select2-selection--single .select2-selection__rendered {
930
    color: #fff;
931
    font-size: 14px;
932
}
933
 
934
.rs-select2--dark .select2-container .select2-selection--single .select2-selection__rendered {
935
    padding: 0;
936
}
937
 
938
.rs-select2--dark .select2-container--default .select2-selection--single .select2-selection__arrow {
939
    height: 40px;
940
    top: 0;
941
    right: 13px;
942
}
943
 
944
.rs-select2--dark .select2-container--default .select2-selection--single .select2-selection__arrow b {
945
    border-color: #fff transparent transparent transparent;
946
}
947
 
948
.rs-select2--dark .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
949
    border-color: transparent transparent #fff transparent;
950
}
951
 
952
.rs-select2--dark .select2-container--open .select2-dropdown,
953
.rs-select2--trans .select2-container--open .select2-dropdown,
954
.rs-select2--light .select2-container--open .select2-dropdown,
955
.rs-select2--trans .select2-container--open .select2-dropdown {
956
    font-size: 14px;
957
    box-shadow: 0px 2px 15px 3px rgba(0,0,0,0.1);
958
    border-radius: 4px;
959
    border-top-left-radius: 4px;
960
    border-top-right-radius: 4px;
961
    border: 1px solid #e0e0e0;
962
    margin-top: 8px;
963
    overflow: hidden;
964
}
965
 
966
.rs-select2--dark .select2-container--open .select2-dropdown .select2-results__option ,
967
.rs-select2--trans .select2-container--open .select2-dropdown .select2-results__option,
968
.rs-select2--light .select2-container--open .select2-dropdown .select2-results__option {
969
    padding: 8px 16px;
970
}
971
 
972
.select2-container--default .select2-results__option--highlighted[aria-selected] {
973
    background: #4272d7;
974
}
975
 
976
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
977
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
978
    border-bottom-left-radius: 3px;
979
    border-bottom-right-radius: 3px;
980
 }
981
 
982
.rs-select2--border .select2-container--default .select2-selection--single,
983
 
984
.rs-select2--dark2 .select2-container--default .select2-selection--single {
985
    background: #555;
986
}
987
 
988
.rs-select2--light {
989
    display: inline-block;
990
}
991
 
992
@media (max-width: 767px) {
993
    .rs-select2--light {
994
        display: block;
995
        margin-right: 0;
996
        margin-bottom: 10px;
997
    }
998
}
999
 
1000
.rs-select2--light .select2-container--default .select2-selection--single {
1001
    border: none;
1002
    outline: none;
1003
    padding-left: 18px;
1004
    -webkit-border-radius: 3px;
1005
    -moz-border-radius: 3px;
1006
    border-radius: 3px;
1007
    height: 40px;
1008
    background: #fff;
1009
    display: -webkit-box;
1010
    display: -webkit-flex;
1011
    display: -moz-box;
1012
    display: -ms-flexbox;
1013
    display: flex;
1014
    -webkit-box-align: center;
1015
    -webkit-align-items: center;
1016
    -moz-box-align: center;
1017
    -ms-flex-align: center;
1018
    align-items: center;
1019
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
1020
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
1021
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
1022
}
1023
 
1024
.rs-select2--light .select2-container--default .select2-selection--single .select2-selection__rendered {
1025
    color: #808080;
1026
    font-size: 14px;
1027
}
1028
 
1029
.rs-select2--light .select2-container .select2-selection--single .select2-selection__rendered {
1030
    padding: 0;
1031
}
1032
 
1033
.rs-select2--light .select2-container--default .select2-selection--single .select2-selection__arrow {
1034
    height: 40px;
1035
    top: 0;
1036
    right: 13px;
1037
}
1038
 
1039
.rs-select2--light .select2-container--default .select2-selection--single .select2-selection__arrow b {
1040
    border-color: #808080 transparent transparent transparent;
1041
}
1042
 
1043
.rs-select2--light .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
1044
    border-color: transparent transparent #808080 transparent;
1045
}
1046
 
1047
.rs-select2--light v .select2-container--open .select2-dropdown {
1048
    font-size: 14px;
1049
}
1050
 
1051
.rs-select2--border .select2-container--default .select2-selection--single {
1052
    background: transparent;
1053
    border: 1px solid #e5e5e5;
1054
}
1055
 
1056
.rs-select2--border .select2-container--default .select2-selection--single .select2-selection__rendered {
1057
    color: #808080;
1058
}
1059
 
1060
.rs-select2--border .select2-container--default .select2-selection--single .select2-selection__arrow b {
1061
    border-color: #808080 transparent transparent transparent;
1062
}
1063
 
1064
.rs-select2--border .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
1065
    border-color: transparent transparent #808080 transparent;
1066
}
1067
 
1068
.rs-select2--trans .select2-container--default .select2-selection--single {
1069
    border: none;
1070
    outline: none;
1071
}
1072
 
1073
.rs-select2--trans .select2-container--default .select2-selection--single .select2-selection__rendered {
1074
    color: #808080;
1075
    font-size: 14px;
1076
    padding-left: 0;
1077
}
1078
 
1079
.rs-select2--trans .select2-container--open .select2-dropdown {
1080
    font-size: 14px;
1081
}
1082
 
1083
.au-checkbox {
1084
    display: block;
1085
    position: relative;
1086
    cursor: pointer;
1087
    font-size: 22px;
1088
    -webkit-user-select: none;
1089
    -moz-user-select: none;
1090
    -ms-user-select: none;
1091
    user-select: none;
1092
}
1093
 
1094
.au-checkbox input {
1095
    position: absolute;
1096
    opacity: 0;
1097
    cursor: pointer;
1098
}
1099
 
1100
.au-checkmark {
1101
    position: absolute;
1102
    top: 0;
1103
    left: 0;
1104
    height: 22px;
1105
    width: 22px;
1106
    background-color: #fff;
1107
    border: 2px solid #e5e5e5;
1108
    -webkit-border-radius: 2px;
1109
    -moz-border-radius: 2px;
1110
    border-radius: 2px;
1111
}
1112
 
1113
.au-checkbox:hover input ~ .au-checkmark {
1114
    background-color: transparent;
1115
}
1116
 
1117
.au-checkbox input:checked ~ .au-checkmark {
1118
    background-color: transparent;
1119
}
1120
 
1121
.au-checkmark:after {
1122
    content: "";
1123
    position: absolute;
1124
    display: none;
1125
}
1126
 
1127
.au-checkbox input:checked ~ .au-checkmark:after {
1128
    display: block;
1129
}
1130
 
1131
.au-checkbox .au-checkmark:after {
1132
    left: 5px;
1133
    top: -1px;
1134
    width: 9px;
1135
    height: 15px;
1136
    border: solid #00ad5f;
1137
    border-width: 0 4px 4px 0;
1138
    -webkit-border-radius: 2px;
1139
    -moz-border-radius: 2px;
1140
    border-radius: 2px;
1141
    -webkit-transform: rotate(45deg);
1142
    -moz-transform: rotate(45deg);
1143
    -ms-transform: rotate(45deg);
1144
    -o-transform: rotate(45deg);
1145
    transform: rotate(45deg);
1146
}
1147
 
1148
.form-control {
1149
    -webkit-border-radius: 2px;
1150
    -moz-border-radius: 2px;
1151
    border-radius: 2px;
1152
}
1153
 
1154
.card {
1155
    margin-bottom: 30px;
1156
}
1157
 
1158
.input-group-addon {
1159
    background-color: transparent;
1160
    border-left: 0;
1161
}
1162
 
1163
.input-group-addon, .input-group-btn {
1164
    white-space: nowrap;
1165
    vertical-align: middle;
1166
}
1167
 
1168
.input-group-addon {
1169
    padding: .5rem .75rem;
1170
    margin-bottom: 0;
1171
    font-size: 1rem;
1172
    font-weight: 400;
1173
    line-height: 1.25;
1174
    color: #495057;
1175
    text-align: center;
1176
    background-color: #e9ecef;
1177
    border: 1px solid rgba(0, 0, 0, 0.15);
1178
    -webkit-border-radius: .25rem;
1179
    -moz-border-radius: .25rem;
1180
    border-radius: .25rem;
1181
}
1182
 
1183
/* ----- Header ----- */
1184
.header-desktop {
1185
    background: #f5f5f5;
1186
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1187
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1188
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1189
    position: fixed;
1190
    top: 0;
1191
    right: 0;
1192
    left: 300px;
1193
    height: 75px;
1194
    z-index: 3;
1195
}
1196
 
1197
.header-desktop .section__content {
1198
    overflow: visible;
1199
    position: absolute;
1200
    top: 50%;
1201
    left: 0;
1202
    right: 0;
1203
    -webkit-transform: translateY(-50%);
1204
    -moz-transform: translateY(-50%);
1205
    -ms-transform: translateY(-50%);
1206
    -o-transform: translateY(-50%);
1207
    transform: translateY(-50%);
1208
}
1209
 
1210
@media (max-width: 991px) {
1211
    .header-desktop {
1212
        position: relative;
1213
        top: 0;
1214
        left: 0;
1215
        height: 170px;
1216
    }
1217
}
1218
 
1219
.header-desktop .mess-dropdown {
1220
    top: 51px;
1221
}
1222
 
1223
.header-desktop .email-dropdown {
1224
    top: 51px;
1225
}
1226
 
1227
.header-desktop .notifi-dropdown {
1228
    top: 51px;
1229
}
1230
 
1231
@media (max-width: 991px) {
1232
    .logo {
1233
        text-align: center;
1234
    }
1235
}
1236
 
1237
.header-wrap {
1238
    display: -webkit-box;
1239
    display: -webkit-flex;
1240
    display: -moz-box;
1241
    display: -ms-flexbox;
1242
    display: flex;
1243
    -webkit-box-align: center;
1244
    -webkit-align-items: center;
1245
    -moz-box-align: center;
1246
    -ms-flex-align: center;
1247
    align-items: center;
1248
    -webkit-box-pack: justify;
1249
    -webkit-justify-content: space-between;
1250
    -moz-box-pack: justify;
1251
    -ms-flex-pack: justify;
1252
    justify-content: space-between;
1253
}
1254
 
1255
@media (min-width: 992px) and (max-width: 1199px) {
1256
    .header-wrap .account-item > .content {
1257
        display: none;
1258
    }
1259
}
1260
 
1261
@media (max-width: 991px) {
1262
    .header-wrap {
1263
        -webkit-box-orient: vertical;
1264
        -webkit-box-direction: normal;
1265
        -webkit-flex-direction: column;
1266
        -moz-box-orient: vertical;
1267
        -moz-box-direction: normal;
1268
        -ms-flex-direction: column;
1269
        flex-direction: column;
1270
    }
1271
 
1272
    .header-wrap .mess-dropdown {
1273
        left: 0;
1274
    }
1275
 
1276
    .header-wrap .mess-dropdown::before {
1277
        left: 0;
1278
    }
1279
 
1280
    .header-wrap .notifi-dropdown {
1281
        left: -83px;
1282
    }
1283
 
1284
    .header-wrap .notifi-dropdown::before {
1285
        left: 79px;
1286
    }
1287
}
1288
 
1289
.header-button {
1290
    display: -webkit-box;
1291
    display: -webkit-flex;
1292
    display: -moz-box;
1293
    display: -ms-flexbox;
1294
    display: flex;
1295
    -webkit-box-align: center;
1296
    -webkit-align-items: center;
1297
    -moz-box-align: center;
1298
    -ms-flex-align: center;
1299
    align-items: center;
1300
}
1301
 
1302
@media (max-width: 991px) {
1303
    .header-button {
1304
        margin-top: 30px;
1305
        width: 100%;
1306
        -webkit-box-pack: justify;
1307
        -webkit-justify-content: space-between;
1308
        -moz-box-pack: justify;
1309
        -ms-flex-pack: justify;
1310
        justify-content: space-between;
1311
    }
1312
}
1313
 
1314
.noti-wrap {
1315
    height: 45px;
1316
    display: -webkit-box;
1317
    display: -webkit-flex;
1318
    display: -moz-box;
1319
    display: -ms-flexbox;
1320
    display: flex;
1321
    -webkit-box-align: center;
1322
    -webkit-align-items: center;
1323
    -moz-box-align: center;
1324
    -ms-flex-align: center;
1325
    align-items: center;
1326
}
1327
 
1328
.noti-wrap .noti__item:last-child {
1329
    margin-right: 50px;
1330
}
1331
 
1332
@media (max-width: 1200px) {
1333
    .noti-wrap .noti__item:last-child {
1334
        margin-right: 30px;
1335
    }
1336
}
1337
 
1338
@media (max-width: 991px) {
1339
    .noti-wrap .noti__item:last-child {
1340
        margin-right: 0;
1341
    }
1342
}
1343
 
1344
.noti__item {
1345
    position: relative;
1346
    margin-right: 35px;
1347
    display: inline-block;
1348
    cursor: pointer;
1349
}
1350
 
1351
@media (max-width: 1200px) {
1352
    .noti__item {
1353
        margin-right: 25px;
1354
    }
1355
}
1356
 
1357
@media (max-width: 767px) {
1358
    .noti__item {
1359
        margin-right: 20px;
1360
    }
1361
}
1362
 
1363
.noti__item:hover i {
1364
    color: #999;
1365
}
1366
 
1367
.noti__item i {
1368
    font-size: 30px;
1369
    color: #a9b3c9;
1370
    -webkit-transition: all 0.5s ease;
1371
    -o-transition: all 0.5s ease;
1372
    -moz-transition: all 0.5s ease;
1373
    transition: all 0.5s ease;
1374
    vertical-align: middle;
1375
}
1376
 
1377
@media (max-width: 767px) {
1378
    .noti__item i {
1379
        font-size: 24px;
1380
    }
1381
}
1382
 
1383
.noti__item .quantity {
1384
    position: absolute;
1385
    display: inline-block;
1386
    top: -4px;
1387
    right: -7px;
1388
    height: 15px;
1389
    width: 15px;
1390
    line-height: 15px;
1391
    text-align: center;
1392
    background: #ff4b5a;
1393
    color: #fff;
1394
    -webkit-border-radius: 100%;
1395
    -moz-border-radius: 100%;
1396
    border-radius: 100%;
1397
    font-size: 12px;
1398
}
1399
 
1400
.account-wrap {
1401
    position: relative;
1402
}
1403
 
1404
.account-item {
1405
    cursor: pointer;
1406
}
1407
 
1408
.account-item .image {
1409
    width: 45px;
1410
    height: 45px;
1411
    float: left;
1412
    overflow: hidden;
1413
    -webkit-border-radius: 3px;
1414
    -moz-border-radius: 3px;
1415
    border-radius: 3px;
1416
}
1417
 
1418
.account-item .image > img {
1419
    width: 100%;
1420
}
1421
 
1422
.account-item > .content {
1423
    margin-left: 45px;
1424
    padding: 9px 0;
1425
    padding-left: 12px;
1426
}
1427
 
1428
.account-item > .content > a {
1429
    color: #333;
1430
    text-transform: capitalize;
1431
    font-weight: 500;
1432
}
1433
 
1434
.account-item > .content > a:after {
1435
    font-family: "Material-Design-Iconic-Font";
1436
    font-weight: 500;
1437
    content: '\f2f9';
1438
    display: inline-block;
1439
    font-size: 16px;
1440
    margin-left: 5px;
1441
}
1442
 
1443
.account-item > .content > a:hover {
1444
    color: #666;
1445
}
1446
 
1447
.account-dropdown {
1448
    min-width: 305px;
1449
    position: absolute;
1450
    top: 58px;
1451
    right: 0;
1452
    background: #fff;
1453
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1454
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1455
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1456
    -webkit-transform: scale(0);
1457
    -moz-transform: scale(0);
1458
    -ms-transform: scale(0);
1459
    -o-transform: scale(0);
1460
    transform: scale(0);
1461
    -webkit-transition: all 0.4s ease;
1462
    -o-transition: all 0.4s ease;
1463
    -moz-transition: all 0.4s ease;
1464
    transition: all 0.4s ease;
1465
    -webkit-transform-origin: right top;
1466
    -moz-transform-origin: right top;
1467
    -ms-transform-origin: right top;
1468
    -o-transform-origin: right top;
1469
    transform-origin: right top;
1470
    z-index: 3;
1471
}
1472
 
1473
.account-dropdown .info {
1474
    padding: 25px;
1475
    border-top: 1px solid #f5f5f5;
1476
    border-bottom: 1px solid #f2f2f2;
1477
}
1478
 
1479
.account-dropdown .info .image {
1480
    float: left;
1481
    height: 65px;
1482
    width: 65px;
1483
    overflow: hidden;
1484
    -webkit-border-radius: 3px;
1485
    -moz-border-radius: 3px;
1486
    border-radius: 3px;
1487
}
1488
 
1489
.account-dropdown .info .content {
1490
    margin-left: 65px;
1491
    padding: 11px 0;
1492
    padding-left: 12px;
1493
}
1494
 
1495
.account-dropdown .info .content .name {
1496
    line-height: -webkit-calc(20/16);
1497
    line-height: -moz-calc(20/16);
1498
    line-height: calc(20/16);
1499
}
1500
 
1501
.account-dropdown .info .content .name a {
1502
    color: #333;
1503
    font-weight: 500;
1504
    text-transform: capitalize;
1505
}
1506
 
1507
.account-dropdown .info .content .name a:hover {
1508
    color: #666;
1509
}
1510
 
1511
.account-dropdown .info .content .email {
1512
    font-size: 13px;
1513
    color: #999;
1514
    line-height: -webkit-calc(20/13);
1515
    line-height: -moz-calc(20/13);
1516
    line-height: calc(20/13);
1517
}
1518
 
1519
.account-dropdown:after {
1520
    content: '';
1521
    display: block;
1522
    width: 19px;
1523
    height: 19px;
1524
    border-bottom: 9px solid #fff;
1525
    border-top: 9px solid transparent;
1526
    border-left: 9px solid transparent;
1527
    border-right: 9px solid transparent;
1528
    position: absolute;
1529
    top: -18px;
1530
    right: 33px;
1531
}
1532
 
1533
.account-dropdown__item a {
1534
    display: block;
1535
    color: #333;
1536
    padding: 15px 25px;
1537
    font-size: 14px;
1538
}
1539
 
1540
.account-dropdown__item a:hover {
1541
    background: #4272d7;
1542
    color: #fff;
1543
}
1544
 
1545
.account-dropdown__item a i {
1546
    line-height: 1;
1547
    margin-right: 20px;
1548
    font-size: 18px;
1549
    vertical-align: middle;
1550
}
1551
 
1552
.account-dropdown__body {
1553
    padding: 12px 0;
1554
}
1555
 
1556
.account-dropdown__footer {
1557
    border-top: 1px solid #f2f2f2;
1558
}
1559
 
1560
.account-dropdown__footer a {
1561
    display: block;
1562
    color: #333;
1563
    padding: 15px 25px;
1564
    font-size: 14px;
1565
}
1566
 
1567
.account-dropdown__footer a:hover {
1568
    background: #4272d7;
1569
    color: #fff;
1570
}
1571
 
1572
.account-dropdown__footer a i {
1573
    line-height: 1;
1574
    margin-right: 20px;
1575
    font-size: 18px;
1576
    vertical-align: middle;
1577
}
1578
 
1579
.menu-sidebar {
1580
    width: 300px;
1581
    position: fixed;
1582
    left: 0;
1583
    top: 0;
1584
    bottom: 0;
1585
    background: #fff;
1586
    overflow-y: auto;
1587
}
1588
 
1589
.menu-sidebar .logo {
1590
    background: #f5f5f5;
1591
    /*height: 75px;*/
1592
    padding: 0 35px;
1593
    display: -webkit-box;
1594
    display: -webkit-flex;
1595
    display: -moz-box;
1596
    display: -ms-flexbox;
1597
    display: flex;
1598
    -webkit-box-align: center;
1599
    -webkit-align-items: center;
1600
    -moz-box-align: center;
1601
    -ms-flex-align: center;
1602
    align-items: center;
1603
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1604
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1605
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
1606
    border-right: 1px solid #e5e5e5;
1607
    position: relative;
1608
    z-index: 3;
1609
}
1610
 
1611
.menu-sidebar .navbar__list .navbar__sub-list {
1612
    display: none;
1613
    padding-left: 34px;
1614
}
1615
 
1616
.menu-sidebar .navbar__list .navbar__sub-list li a {
1617
    padding: 11.5px 0;
1618
}
1619
 
1620
.menu-sidebar__content {
1621
    position: relative;
1622
    height: -webkit-calc(100vh - 75px);
1623
    height: -moz-calc(100vh - 75px);
1624
    height: calc(100vh - 75px);
1625
}
1626
 
1627
.navbar-sidebar {
1628
    padding: 35px;
1629
    padding-bottom: 0;
1630
}
1631
 
1632
.navbar-sidebar .navbar__list li a {
1633
    display: block;
1634
    color: #555;
1635
    font-size: 16px;
1636
    padding: 15px 0;
1637
}
1638
 
1639
.navbar-sidebar .navbar__list li a i {
1640
    margin-right: 19px;
1641
}
1642
 
1643
.navbar-sidebar .navbar__list li a:hover {
1644
    color: #4272d7;
1645
}
1646
 
1647
.navbar-sidebar .navbar__list li.active > a {
1648
    color: #4272d7;
1649
}
1650
 
1651
.has-sub {
1652
    position: relative;
1653
}
1654
 
1655
.header-mobile {
1656
    position: absolute;
1657
    top: 0;
1658
    left: 0;
1659
    right: 0;
1660
}
1661
 
1662
.header-mobile .header-mobile__bar {
1663
    padding: 15px 0;
1664
}
1665
 
1666
.header-mobile .header-mobile-inner {
1667
    display: -webkit-box;
1668
    display: -webkit-flex;
1669
    display: -moz-box;
1670
    display: -ms-flexbox;
1671
    display: flex;
1672
    -webkit-box-align: center;
1673
    -webkit-align-items: center;
1674
    -moz-box-align: center;
1675
    -ms-flex-align: center;
1676
    align-items: center;
1677
    -webkit-box-pack: justify;
1678
    -webkit-justify-content: space-between;
1679
    -moz-box-pack: justify;
1680
    -ms-flex-pack: justify;
1681
    justify-content: space-between;
1682
}
1683
 
1684
.header-mobile .hamburger {
1685
    width: 36px;
1686
    height: 36px;
1687
    padding: 0;
1688
    line-height: 1;
1689
    vertical-align: top;
1690
    background: #fff;
1691
    display: -webkit-box;
1692
    display: -webkit-flex;
1693
    display: -moz-box;
1694
    display: -ms-flexbox;
1695
    display: flex;
1696
    -webkit-box-pack: center;
1697
    -webkit-justify-content: center;
1698
    -moz-box-pack: center;
1699
    -ms-flex-pack: center;
1700
    justify-content: center;
1701
    -webkit-box-align: center;
1702
    -webkit-align-items: center;
1703
    -moz-box-align: center;
1704
    -ms-flex-align: center;
1705
    align-items: center;
1706
}
1707
 
1708
.header-mobile .hamburger .hamburger-box {
1709
    width: 20px;
1710
    height: 15px;
1711
}
1712
 
1713
.header-mobile .hamburger .hamburger-box .hamburger-inner {
1714
    width: 20px;
1715
    height: 2px;
1716
    -webkit-border-radius: 0;
1717
    -moz-border-radius: 0;
1718
    border-radius: 0;
1719
}
1720
 
1721
.header-mobile .hamburger .hamburger-box .hamburger-inner:before {
1722
    width: 20px;
1723
    height: 2px;
1724
    top: 6px;
1725
}
1726
 
1727
.header-mobile .hamburger .hamburger-box .hamburger-inner:after {
1728
    top: 12px;
1729
    width: 20px;
1730
    height: 2px;
1731
}
1732
 
1733
.header-mobile .navbar-mobile {
1734
    display: none;
1735
    position: absolute;
1736
    width: 100%;
1737
    top: 88px;
1738
    z-index: 20;
1739
}
1740
 
1741
.header-mobile .navbar-mobile .navbar-mobile__list {
1742
    background: #f8f8f8;
1743
}
1744
 
1745
.header-mobile .navbar-mobile .navbar-mobile__list > li > a {
1746
    padding-left: 15px !important;
1747
}
1748
 
1749
.header-mobile .navbar-mobile .navbar-mobile__list li a {
1750
    color: #555;
1751
    display: block;
1752
    padding: 10px 15px;
1753
    padding-right: 25px;
1754
    padding-left: 0;
1755
    border-bottom: 1px solid #e6e6e6;
1756
    text-transform: capitalize;
1757
    line-height: inherit;
1758
}
1759
 
1760
.header-mobile .navbar-mobile .navbar-mobile__list li a:hover {
1761
    color: #4272d7;
1762
}
1763
 
1764
.header-mobile .navbar-mobile .navbar-mobile__list li a > i {
1765
    margin-right: 19px;
1766
}
1767
 
1768
.header-mobile .navbar-mobile .navbar-mobile__list li.has-dropdown > a:after {
1769
    content: '\f105';
1770
    font-family: FontAwesome, cursive;
1771
    float: right;
1772
    font-size: 16px;
1773
    line-height: 22px;
1774
    -webkit-transition: all 0.3s ease;
1775
    -o-transition: all 0.3s ease;
1776
    -moz-transition: all 0.3s ease;
1777
    transition: all 0.3s ease;
1778
}
1779
 
1780
.header-mobile .navbar-mobile .navbar-mobile__list li.has-dropdown > a.active::after {
1781
    -webkit-transform: rotate(90deg);
1782
    -moz-transform: rotate(90deg);
1783
    -ms-transform: rotate(90deg);
1784
    -o-transform: rotate(90deg);
1785
    transform: rotate(90deg);
1786
}
1787
 
1788
.header-mobile .navbar-mobile .navbar-mobile__dropdown {
1789
    padding-left: 35px;
1790
    display: none;
1791
}
1792
 
1793
.navbar-mobile-sub__list {
1794
    display: none;
1795
    padding-left: 30px;
1796
    background: #fff;
1797
}
1798
 
1799
.header-mobile .navbar-mobile .navbar-mobile-sub__list li a {
1800
    padding-left: 15px;
1801
}
1802
 
1803
.header-mobile-2 {
1804
    background: #393939;
1805
    position: static;
1806
}
1807
 
1808
.header-mobile-2.header-mobile .navbar-mobile {
1809
    top: 82px;
1810
}
1811
 
1812
.header-mobile-2.header-mobile .hamburger {
1813
    background: transparent;
1814
}
1815
 
1816
.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner {
1817
    background: #fff;
1818
}
1819
 
1820
.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner::before {
1821
    background: #fff;
1822
}
1823
 
1824
.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner::after {
1825
    background: #fff;
1826
}
1827
 
1828
.sub-header-mobile-2 {
1829
    background: #fff;
1830
    padding: 15px;
1831
}
1832
 
1833
.sub-header-mobile-2 .header__tool {
1834
    -webkit-box-pack: end;
1835
    -webkit-justify-content: flex-end;
1836
    -moz-box-pack: end;
1837
    -ms-flex-pack: end;
1838
    justify-content: flex-end;
1839
}
1840
 
1841
.sub-header-mobile-2 .header__tool .header-button-item {
1842
    color: #a9b3c9;
1843
}
1844
 
1845
.sub-header-mobile-2 .header__tool .account-wrap .account-item--style2 .content a {
1846
    color: #333;
1847
}
1848
 
1849
.sub-header-mobile-2 .header__tool .notifi-dropdown {
1850
    top: 49px;
1851
}
1852
 
1853
.sub-header-mobile-2 .header__tool .setting-dropdown {
1854
    top: 49px;
1855
}
1856
 
1857
.hamburger.is-active .hamburger-box .hamburger-inner:after {
1858
    -webkit-transform: translate3d(0, -12px, 0) rotate(-90deg);
1859
    -moz-transform: translate3d(0, -12px, 0) rotate(-90deg);
1860
    transform: translate3d(0, -12px, 0) rotate(-90deg);
1861
}
1862
 
1863
.mess-dropdown, .email-dropdown, .notifi-dropdown, .setting-dropdown {
1864
    position: absolute;
1865
    z-index: 9999;
1866
    min-width: 340px;
1867
    background: #fff;
1868
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1869
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1870
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
1871
    border: 1px solid #e5e5e5;
1872
    -webkit-transform: scale(0);
1873
    -moz-transform: scale(0);
1874
    -ms-transform: scale(0);
1875
    -o-transform: scale(0);
1876
    transform: scale(0);
1877
    -webkit-transition: all 0.4s ease;
1878
    -o-transition: all 0.4s ease;
1879
    -moz-transition: all 0.4s ease;
1880
    transition: all 0.4s ease;
1881
    -webkit-transform-origin: left top;
1882
    -moz-transform-origin: left top;
1883
    -ms-transform-origin: left top;
1884
    -o-transform-origin: left top;
1885
    transform-origin: left top;
1886
    top: 100%;
1887
    left: 0;
1888
}
1889
 
1890
.mess-dropdown:before, .email-dropdown:before, .notifi-dropdown:before, .setting-dropdown:before {
1891
    content: '';
1892
    display: block;
1893
    width: 19px;
1894
    height: 19px;
1895
    border-bottom: 9px solid #fff;
1896
    border-top: 9px solid transparent;
1897
    border-left: 9px solid transparent;
1898
    border-right: 9px solid transparent;
1899
    position: absolute;
1900
    top: -17px;
1901
    left: 55px;
1902
    z-index: 3;
1903
}
1904
 
1905
.mess__title, .email__title, .notifi__title {
1906
    padding: 22px;
1907
    border-bottom: 1px solid #f2f2f2;
1908
    cursor: default;
1909
}
1910
 
1911
.mess__title p, .email__title p, .notifi__title p {
1912
    line-height: -webkit-calc(29/14);
1913
    line-height: -moz-calc(29/14);
1914
    line-height: calc(29/14);
1915
    font-size: 14px;
1916
    color: #808080;
1917
}
1918
 
1919
.mess__footer a, .email__footer a, .notifi__footer a {
1920
    display: block;
1921
    text-transform: capitalize;
1922
    text-align: center;
1923
    font-size: 14px;
1924
    color: #4272d7;
1925
    padding: 24px 0;
1926
}
1927
 
1928
.mess__footer a:hover, .email__footer a:hover, .notifi__footer a:hover {
1929
    color: #3868cd;
1930
}
1931
 
1932
.mess-dropdown {
1933
    top: 49px;
1934
    left: -55px;
1935
}
1936
 
1937
.mess__item {
1938
    padding: 19px 22px;
1939
    padding-bottom: 14px;
1940
    border-bottom: 1px solid #f2f2f2;
1941
    display: -webkit-box;
1942
    display: -webkit-flex;
1943
    display: -moz-box;
1944
    display: -ms-flexbox;
1945
    display: flex;
1946
    -webkit-transition: all 0.5s ease;
1947
    -o-transition: all 0.5s ease;
1948
    -moz-transition: all 0.5s ease;
1949
    transition: all 0.5s ease;
1950
}
1951
 
1952
.mess__item:hover {
1953
    background: #f7f7f7;
1954
}
1955
 
1956
.mess__item .image {
1957
    margin-right: 15px;
1958
}
1959
 
1960
.mess__item .content {
1961
    width: -webkit-calc(100% - 55px);
1962
    width: -moz-calc(100% - 55px);
1963
    width: calc(100% - 55px);
1964
    text-align: left;
1965
}
1966
 
1967
.mess__item .content h6 {
1968
    font-size: 14px;
1969
    font-weight: 600;
1970
    padding-top: 4px;
1971
}
1972
 
1973
.mess__item .content p {
1974
    font-size: 14px;
1975
    color: #555;
1976
    line-height: -webkit-calc(24/14);
1977
    line-height: -moz-calc(24/14);
1978
    line-height: calc(24/14);
1979
    margin-bottom: 4px;
1980
}
1981
 
1982
.mess__item .content .time {
1983
    font-size: 12px;
1984
    color: #999;
1985
}
1986
 
1987
.email-dropdown {
1988
    top: 49px;
1989
    left: -53px;
1990
}
1991
 
1992
.email__item {
1993
    display: -webkit-box;
1994
    display: -webkit-flex;
1995
    display: -moz-box;
1996
    display: -ms-flexbox;
1997
    display: flex;
1998
    padding: 19px 22px;
1999
    padding-bottom: 14px;
2000
    border-bottom: 1px solid #f2f2f2;
2001
    -webkit-transition: all 0.5s ease;
2002
    -o-transition: all 0.5s ease;
2003
    -moz-transition: all 0.5s ease;
2004
    transition: all 0.5s ease;
2005
}
2006
 
2007
.email__item:hover {
2008
    background: #f7f7f7;
2009
}
2010
 
2011
.email__item .image {
2012
    margin-right: 15px;
2013
}
2014
 
2015
.email__item .content {
2016
    width: -webkit-calc(100% - 55px);
2017
    width: -moz-calc(100% - 55px);
2018
    width: calc(100% - 55px);
2019
    text-align: left;
2020
    font-size: 14px;
2021
}
2022
 
2023
.email__item .content p {
2024
    color: #555;
2025
    line-height: 1;
2026
    padding-top: 4px;
2027
    margin-bottom: 3px;
2028
}
2029
 
2030
.email__item .content span {
2031
    font-size: 12px;
2032
    color: #999;
2033
}
2034
 
2035
.notifi-dropdown {
2036
    left: -117px;
2037
    top: 49px;
2038
}
2039
 
2040
.notifi-dropdown::before {
2041
    left: 63px;
2042
}
2043
 
2044
.notifi__item {
2045
    display: -webkit-box;
2046
    display: -webkit-flex;
2047
    display: -moz-box;
2048
    display: -ms-flexbox;
2049
    display: flex;
2050
    padding: 19px 22px;
2051
    padding-bottom: 14px;
2052
    border-bottom: 1px solid #f2f2f2;
2053
    -webkit-transition: all 0.5s ease;
2054
    -o-transition: all 0.5s ease;
2055
    -moz-transition: all 0.5s ease;
2056
    transition: all 0.5s ease;
2057
}
2058
 
2059
.notifi__item:hover {
2060
    background: #f7f7f7;
2061
}
2062
 
2063
.notifi__item .img-cir {
2064
    position: relative;
2065
    margin-right: 15px;
2066
}
2067
 
2068
.notifi__item .img-cir i {
2069
    font-size: 22px;
2070
    color: #fff;
2071
    position: absolute;
2072
    top: 50%;
2073
    left: 50%;
2074
    -webkit-transform: translate(-50%, -50%);
2075
    -moz-transform: translate(-50%, -50%);
2076
    -ms-transform: translate(-50%, -50%);
2077
    -o-transform: translate(-50%, -50%);
2078
    transform: translate(-50%, -50%);
2079
}
2080
 
2081
.notifi__item .content {
2082
    width: -webkit-calc(100% - 55px);
2083
    width: -moz-calc(100% - 55px);
2084
    width: calc(100% - 55px);
2085
    text-align: left;
2086
    font-size: 14px;
2087
}
2088
 
2089
.notifi__item .content p {
2090
    color: #555;
2091
    line-height: 1;
2092
    padding-top: 5px;
2093
    margin-bottom: 2px;
2094
}
2095
 
2096
.notifi__item .content .date {
2097
    font-size: 12px;
2098
    color: #999;
2099
}
2100
 
2101
.show-dropdown .js-dropdown {
2102
    -webkit-transform: scale(1);
2103
    -moz-transform: scale(1);
2104
    -ms-transform: scale(1);
2105
    -o-transform: scale(1);
2106
    transform: scale(1);
2107
}
2108
 
2109
.menu-sidebar-min {
2110
    position: fixed;
2111
    top: 0;
2112
    left: 0;
2113
    height: 100%;
2114
}
2115
 
2116
.menu-sidebar2 {
2117
    width: 300px;
2118
    position: fixed;
2119
    left: 0;
2120
    top: 0;
2121
    bottom: 0;
2122
    background: #fff;
2123
    overflow-y: auto;
2124
    height: 100vh;
2125
    -webkit-transition: all 0.5s ease;
2126
    -o-transition: all 0.5s ease;
2127
    -moz-transition: all 0.5s ease;
2128
    transition: all 0.5s ease;
2129
    z-index: 1000;
2130
}
2131
 
2132
.menu-sidebar2 .logo {
2133
    height: 75px;
2134
    display: -webkit-box;
2135
    display: -webkit-flex;
2136
    display: -moz-box;
2137
    display: -ms-flexbox;
2138
    display: flex;
2139
    -webkit-box-align: center;
2140
    -webkit-align-items: center;
2141
    -moz-box-align: center;
2142
    -ms-flex-align: center;
2143
    align-items: center;
2144
    background: #365cad;
2145
    padding: 0 35px;
2146
}
2147
 
2148
@media (max-width: 991px) {
2149
    .menu-sidebar2 {
2150
        top: 0;
2151
        right: -300px;
2152
        left: auto;
2153
        -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2154
        -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2155
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2156
    }
2157
 
2158
    .menu-sidebar2.show-sidebar {
2159
        right: 0;
2160
    }
2161
}
2162
 
2163
.account2 {
2164
    padding: 38px;
2165
    display: -webkit-box;
2166
    display: -webkit-flex;
2167
    display: -moz-box;
2168
    display: -ms-flexbox;
2169
    display: flex;
2170
    -webkit-box-pack: center;
2171
    -webkit-justify-content: center;
2172
    -moz-box-pack: center;
2173
    -ms-flex-pack: center;
2174
    justify-content: center;
2175
    -webkit-box-align: center;
2176
    -webkit-align-items: center;
2177
    -moz-box-align: center;
2178
    -ms-flex-align: center;
2179
    align-items: center;
2180
    -webkit-box-orient: vertical;
2181
    -webkit-box-direction: normal;
2182
    -webkit-flex-direction: column;
2183
    -moz-box-orient: vertical;
2184
    -moz-box-direction: normal;
2185
    -ms-flex-direction: column;
2186
    flex-direction: column;
2187
    border-bottom: 1px  solid #f2f2f2;
2188
}
2189
 
2190
.account2 .name {
2191
    text-transform: capitalize;
2192
    font-weight: 500;
2193
    font-size: 20px;
2194
    margin-top: 20px;
2195
    margin-bottom: 5px;
2196
}
2197
 
2198
.account2 > a {
2199
    font-size: 14px;
2200
    color: #999;
2201
}
2202
 
2203
.account2 > a:hover {
2204
    color: #666;
2205
}
2206
 
2207
.menu-sidebar2__content {
2208
    height: -webkit-calc(100vh - 75px);
2209
    height: -moz-calc(100vh - 75px);
2210
    height: calc(100vh - 75px);
2211
    border-right: 1px solid #e5e5e5;
2212
    position: relative;
2213
}
2214
 
2215
.navbar-sidebar2 .navbar__list li {
2216
    position: relative;
2217
    cursor: pointer;
2218
}
2219
 
2220
.navbar-sidebar2 .navbar__list li .arrow {
2221
    position: absolute;
2222
    right: 15px;
2223
    top: 0;
2224
    text-align: center;
2225
    vertical-align: middle;
2226
    height: 63px;
2227
    width: 63px;
2228
    line-height: 63px;
2229
    -webkit-transition: all 0.5s ease;
2230
    -o-transition: all 0.5s ease;
2231
    -moz-transition: all 0.5s ease;
2232
    transition: all 0.5s ease;
2233
}
2234
 
2235
.navbar-sidebar2 .navbar__list li .arrow.up {
2236
    -webkit-transform: rotate(-180deg);
2237
    -moz-transform: rotate(-180deg);
2238
    -ms-transform: rotate(-180deg);
2239
    -o-transform: rotate(-180deg);
2240
    transform: rotate(-180deg);
2241
}
2242
 
2243
.navbar-sidebar2 .navbar__list li .arrow i {
2244
    font-size: 16px;
2245
    color: #999;
2246
}
2247
 
2248
.navbar-sidebar2 .navbar__list li:hover > a {
2249
    color: #4272d7;
2250
}
2251
 
2252
.navbar-sidebar2 .navbar__list li a {
2253
    font-size: 16px;
2254
    color: #555;
2255
    display: block;
2256
    padding: 18px 35px;
2257
    border-bottom: 1px solid #f2f2f2;
2258
}
2259
 
2260
.navbar-sidebar2 .navbar__list li a > i {
2261
    margin-right: 20px;
2262
}
2263
 
2264
.navbar-sidebar2 .navbar__list li.active > a {
2265
    color: #4272d7;
2266
}
2267
 
2268
.navbar-sidebar2 .navbar__sub-list {
2269
    display: none;
2270
}
2271
 
2272
.navbar-sidebar2 .navbar__sub-list li {
2273
    background: #f5f5f5;
2274
}
2275
 
2276
.navbar-sidebar2 .navbar__sub-list li a {
2277
    border-color: #ebebeb;
2278
}
2279
 
2280
.inbox-num {
2281
    position: absolute;
2282
    top: 50%;
2283
    -webkit-transform: translateY(-50%);
2284
    -moz-transform: translateY(-50%);
2285
    -ms-transform: translateY(-50%);
2286
    -o-transform: translateY(-50%);
2287
    transform: translateY(-50%);
2288
    right: 34px;
2289
    width: 30px;
2290
    height: 30px;
2291
    background: #ff4b5a;
2292
    text-align: center;
2293
    line-height: 30px;
2294
    font-size: 14px;
2295
    color: #fff;
2296
    -webkit-border-radius: 3px;
2297
    -moz-border-radius: 3px;
2298
    border-radius: 3px;
2299
}
2300
 
2301
.header-desktop2 {
2302
    height: 75px;
2303
    background: #4272d7;
2304
    position: fixed;
2305
    z-index: 1001;
2306
    top: 0;
2307
    right: 0;
2308
    left: 300px;
2309
}
2310
 
2311
@media (max-width: 991px) {
2312
    .header-desktop2 {
2313
        left: 0;
2314
        position: relative;
2315
    }
2316
}
2317
 
2318
.header-desktop2 .section__content {
2319
    top: 50%;
2320
    -webkit-transform: translateY(-50%);
2321
    -moz-transform: translateY(-50%);
2322
    -ms-transform: translateY(-50%);
2323
    -o-transform: translateY(-50%);
2324
    transform: translateY(-50%);
2325
}
2326
 
2327
.header-wrap2 {
2328
    display: -webkit-box;
2329
    display: -webkit-flex;
2330
    display: -moz-box;
2331
    display: -ms-flexbox;
2332
    display: flex;
2333
    -webkit-box-pack: end;
2334
    -webkit-justify-content: flex-end;
2335
    -moz-box-pack: end;
2336
    -ms-flex-pack: end;
2337
    justify-content: flex-end;
2338
}
2339
 
2340
@media (max-width: 991px) {
2341
    .header-wrap2 {
2342
        -webkit-box-pack: justify;
2343
        -webkit-justify-content: space-between;
2344
        -moz-box-pack: justify;
2345
        -ms-flex-pack: justify;
2346
        justify-content: space-between;
2347
    }
2348
}
2349
 
2350
.header-button .notifi-dropdown::before {
2351
    left: 117px;
2352
}
2353
 
2354
.header-button2 {
2355
    display: -webkit-box;
2356
    display: -webkit-flex;
2357
    display: -moz-box;
2358
    display: -ms-flexbox;
2359
    display: flex;
2360
}
2361
 
2362
.header-button2 .header-button-item:last-child {
2363
    margin-right: 0;
2364
}
2365
 
2366
.header-button2 .header-button-item {
2367
    cursor: pointer;
2368
}
2369
 
2370
.header-button2 .header-button-item i {
2371
    vertical-align: middle;
2372
}
2373
 
2374
.header-button2 .header-button-item .search-dropdown {
2375
    top: 52px;
2376
}
2377
 
2378
@media (max-width: 991px) {
2379
    .header-button2 .header-button-item .search-dropdown {
2380
        top: 63px;
2381
        right: -75px;
2382
        -webkit-transform-origin: 70% top;
2383
        -moz-transform-origin: 70% top;
2384
        -ms-transform-origin: 70% top;
2385
        -o-transform-origin: 70% top;
2386
        transform-origin: 70% top;
2387
    }
2388
 
2389
    .header-button2 .header-button-item .search-dropdown::before {
2390
        right: 79px;
2391
    }
2392
}
2393
 
2394
.header-button2 .header-button-item .notifi-dropdown {
2395
    top: 52px;
2396
    left: auto;
2397
    right: -68px;
2398
    -webkit-transform-origin: right top;
2399
    -moz-transform-origin: right top;
2400
    -ms-transform-origin: right top;
2401
    -o-transform-origin: right top;
2402
    transform-origin: right top;
2403
}
2404
 
2405
.header-button2 .header-button-item .notifi-dropdown::before {
2406
    margin-left: 0;
2407
    left: auto;
2408
    right: 68px;
2409
}
2410
 
2411
@media (max-width: 991px) {
2412
    .header-button2 .header-button-item .notifi-dropdown {
2413
        top: 63px;
2414
        right: -48px;
2415
        -webkit-transform-origin: 80% top;
2416
        -moz-transform-origin: 80% top;
2417
        -ms-transform-origin: 80% top;
2418
        -o-transform-origin: 80% top;
2419
        transform-origin: 80% top;
2420
    }
2421
 
2422
    .header-button2 .header-button-item .notifi-dropdown::before {
2423
        margin-left: 0;
2424
        left: auto;
2425
        right: 45px;
2426
    }
2427
}
2428
 
2429
.header-button-item {
2430
    font-size: 30px;
2431
    color: #fff;
2432
    margin-right: 34px;
2433
    position: relative;
2434
    display: -webkit-box;
2435
    display: -webkit-flex;
2436
    display: -moz-box;
2437
    display: -ms-flexbox;
2438
    display: flex;
2439
    -webkit-box-align: center;
2440
    -webkit-align-items: center;
2441
    -moz-box-align: center;
2442
    -ms-flex-align: center;
2443
    align-items: center;
2444
}
2445
 
2446
@media (max-width: 767px) {
2447
    .header-button-item {
2448
        font-size: 22px;
2449
        margin-right: 15px;
2450
    }
2451
}
2452
 
2453
.has-noti > i {
2454
    position: relative;
2455
}
2456
 
2457
.has-noti > i:after {
2458
    content: '';
2459
    height: 8px;
2460
    width: 8px;
2461
    background: #ff4b5a;
2462
    position: absolute;
2463
    -webkit-border-radius: 100%;
2464
    -moz-border-radius: 100%;
2465
    border-radius: 100%;
2466
    top: 0;
2467
    right: -6px;
2468
}
2469
 
2470
.search-dropdown {
2471
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2472
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2473
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2474
    min-width: 340px;
2475
    position: absolute;
2476
    top: 61px;
2477
    right: -125px;
2478
    -webkit-transform: scale(0);
2479
    -moz-transform: scale(0);
2480
    -ms-transform: scale(0);
2481
    -o-transform: scale(0);
2482
    transform: scale(0);
2483
    -webkit-transform-origin: center top;
2484
    -moz-transform-origin: center top;
2485
    -ms-transform-origin: center top;
2486
    -o-transform-origin: center top;
2487
    transform-origin: center top;
2488
    -webkit-transition: all 0.4s ease;
2489
    -o-transition: all 0.4s ease;
2490
    -moz-transition: all 0.4s ease;
2491
    transition: all 0.4s ease;
2492
    z-index: 5;
2493
}
2494
 
2495
.search-dropdown::before {
2496
    content: '';
2497
    display: block;
2498
    width: 19px;
2499
    height: 19px;
2500
    border-bottom: 9px solid #fff;
2501
    border-top: 9px solid transparent;
2502
    border-left: 9px solid transparent;
2503
    border-right: 9px solid transparent;
2504
    position: absolute;
2505
    top: -18px;
2506
    right: 125px;
2507
}
2508
 
2509
.search-dropdown form {
2510
    height: 63px;
2511
}
2512
 
2513
.search-dropdown form .au-input {
2514
    padding-left: 53px;
2515
    font-size: 14px;
2516
    border: none;
2517
    color: #666;
2518
}
2519
 
2520
.search-dropdown .search-dropdown__icon {
2521
    position: absolute;
2522
    top: 0;
2523
    left: 26px;
2524
    font-size: 24px;
2525
    color: #c9c9c9;
2526
    height: 63px;
2527
    line-height: 63px;
2528
}
2529
 
2530
.setting-menu {
2531
    position: fixed;
2532
    min-width: 300px;
2533
    right: -300px;
2534
    top: 54px;
2535
    background: #fff;
2536
    text-align: left;
2537
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2538
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2539
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
2540
    height: -webkit-calc(100vh - 75px);
2541
    height: -moz-calc(100vh - 75px);
2542
    height: calc(100vh - 75px);
2543
    -webkit-transition: all .5s ease;
2544
    -o-transition: all .5s ease;
2545
    -moz-transition: all .5s ease;
2546
    transition: all .5s ease;
2547
}
2548
 
2549
.setting-menu:before {
2550
    content: '';
2551
    display: block;
2552
    width: 19px;
2553
    height: 19px;
2554
    border-bottom: 9px solid #fff;
2555
    border-top: 9px solid transparent;
2556
    border-left: 9px solid transparent;
2557
    border-right: 9px solid transparent;
2558
    position: absolute;
2559
    top: -18px;
2560
    right: 47px;
2561
}
2562
 
2563
.setting-menu .account-dropdown__body {
2564
    border-bottom: 1px solid #f2f2f2;
2565
}
2566
 
2567
.setting-menu .account-dropdown__item a {
2568
    color: #555;
2569
}
2570
 
2571
.setting-menu .account-dropdown__item a:hover {
2572
    color: #fff;
2573
}
2574
 
2575
.show-sidebar {
2576
    right: 0;
2577
}
2578
 
2579
.header-desktop3 {
2580
    background: #393939;
2581
    display: -webkit-box;
2582
    display: -webkit-flex;
2583
    display: -moz-box;
2584
    display: -ms-flexbox;
2585
    display: flex;
2586
    -webkit-box-align: center;
2587
    -webkit-align-items: center;
2588
    -moz-box-align: center;
2589
    -ms-flex-align: center;
2590
    align-items: center;
2591
    height: 76px;
2592
    position: -webkit-sticky;
2593
    position: sticky;
2594
    top: 0;
2595
    z-index: 999;
2596
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2597
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2598
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2599
}
2600
 
2601
.header-desktop3 .section__content {
2602
    position: absolute;
2603
    top: 50%;
2604
    -webkit-transform: translateY(-50%);
2605
    -moz-transform: translateY(-50%);
2606
    -ms-transform: translateY(-50%);
2607
    -o-transform: translateY(-50%);
2608
    transform: translateY(-50%);
2609
    left: 0;
2610
    right: 0;
2611
}
2612
 
2613
@media (max-width: 1315px) and (min-width: 992px) {
2614
    .header-desktop3 .section__content {
2615
        padding: 0 15px;
2616
    }
2617
}
2618
 
2619
.header-desktop3 .header-button-item {
2620
    color: #ccc;
2621
}
2622
 
2623
.header3-wrap {
2624
    display: -webkit-box;
2625
    display: -webkit-flex;
2626
    display: -moz-box;
2627
    display: -ms-flexbox;
2628
    display: flex;
2629
    -webkit-box-pack: justify;
2630
    -webkit-justify-content: space-between;
2631
    -moz-box-pack: justify;
2632
    -ms-flex-pack: justify;
2633
    justify-content: space-between;
2634
    position: relative;
2635
}
2636
 
2637
.header3-wrap .header__navbar {
2638
    width: 100%;
2639
    position: absolute;
2640
    left: 50%;
2641
    -webkit-transform: translateX(-50%);
2642
    -moz-transform: translateX(-50%);
2643
    -ms-transform: translateX(-50%);
2644
    -o-transform: translateX(-50%);
2645
    transform: translateX(-50%);
2646
    top: -12px;
2647
}
2648
 
2649
.header__logo {
2650
    display: -webkit-box;
2651
    display: -webkit-flex;
2652
    display: -moz-box;
2653
    display: -ms-flexbox;
2654
    display: flex;
2655
    -webkit-box-align: center;
2656
    -webkit-align-items: center;
2657
    -moz-box-align: center;
2658
    -ms-flex-align: center;
2659
    align-items: center;
2660
    position: relative;
2661
    z-index: 3;
2662
}
2663
 
2664
.header__navbar ul {
2665
    display: -webkit-box;
2666
    display: -webkit-flex;
2667
    display: -moz-box;
2668
    display: -ms-flexbox;
2669
    display: flex;
2670
    -webkit-box-pack: center;
2671
    -webkit-justify-content: center;
2672
    -moz-box-pack: center;
2673
    -ms-flex-pack: center;
2674
    justify-content: center;
2675
    -webkit-box-align: center;
2676
    -webkit-align-items: center;
2677
    -moz-box-align: center;
2678
    -ms-flex-align: center;
2679
    align-items: center;
2680
}
2681
 
2682
.header__navbar ul li {
2683
    position: relative;
2684
}
2685
 
2686
.header__navbar ul li:last-child a {
2687
    border-right: 1px solid rgba(255, 255, 255, 0.102);
2688
}
2689
 
2690
.header__navbar ul li a {
2691
    display: block;
2692
    font-size: 16px;
2693
    color: #ccc;
2694
    padding: 25px 30px;
2695
    border-left: 1px solid rgba(255, 255, 255, 0.102);
2696
}
2697
 
2698
.header__navbar ul li a i {
2699
    margin-right: 13px;
2700
}
2701
 
2702
.header__navbar ul li a:hover {
2703
    color: #4272d7;
2704
}
2705
 
2706
.header__navbar ul li a:hover .bot-line {
2707
    -webkit-transform: scale(1);
2708
    -moz-transform: scale(1);
2709
    -ms-transform: scale(1);
2710
    -o-transform: scale(1);
2711
    transform: scale(1);
2712
    opacity: 1;
2713
    -webkit-transition: all 0.3s ease;
2714
    -o-transition: all 0.3s ease;
2715
    -moz-transition: all 0.3s ease;
2716
    transition: all 0.3s ease;
2717
}
2718
 
2719
@media (max-width: 1570px) and (min-width: 992px) {
2720
    .header__navbar ul li a {
2721
        padding: 25px 15px;
2722
    }
2723
}
2724
 
2725
@media (max-width: 1315px) and (min-width: 992px) {
2726
    .header__navbar ul li a {
2727
        font-size: 13px;
2728
        padding: 27px 15px;
2729
    }
2730
 
2731
    .header__navbar ul li a i {
2732
        margin-right: 5px;
2733
    }
2734
}
2735
 
2736
.header__navbar ul li.active > a {
2737
    color: #4272d7;
2738
}
2739
 
2740
.header__navbar ul li.active > a .bot-line {
2741
    -webkit-transform: scale(1);
2742
    -moz-transform: scale(1);
2743
    -ms-transform: scale(1);
2744
    -o-transform: scale(1);
2745
    transform: scale(1);
2746
    opacity: 1;
2747
    -webkit-transition: all 0.3s ease;
2748
    -o-transition: all 0.3s ease;
2749
    -moz-transition: all 0.3s ease;
2750
    transition: all 0.3s ease;
2751
}
2752
 
2753
.header__navbar ul.header3-sub-list {
2754
    display: block;
2755
}
2756
 
2757
.header__navbar li.has-sub:hover > .header3-sub-list {
2758
    opacity: 1;
2759
    -webkit-transform: scaleY(1);
2760
    -moz-transform: scaleY(1);
2761
    -ms-transform: scaleY(1);
2762
    -o-transform: scaleY(1);
2763
    transform: scaleY(1);
2764
    -webkit-transition: all .3s ease;
2765
    -o-transition: all .3s ease;
2766
    -moz-transition: all .3s ease;
2767
    transition: all .3s ease;
2768
}
2769
 
2770
.header__navbar .header3-sub-list {
2771
    position: absolute;
2772
    min-width: 260px;
2773
    background: #fff;
2774
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
2775
    -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
2776
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
2777
    z-index: 1000;
2778
    opacity: 0;
2779
    -webkit-transform: scaleY(0);
2780
    -moz-transform: scaleY(0);
2781
    -ms-transform: scaleY(0);
2782
    -o-transform: scaleY(0);
2783
    transform: scaleY(0);
2784
    -webkit-transform-origin: top center;
2785
    -moz-transform-origin: top center;
2786
    -ms-transform-origin: top center;
2787
    -o-transform-origin: top center;
2788
    transform-origin: top center;
2789
    -webkit-transition: all .3s ease;
2790
    -o-transition: all .3s ease;
2791
    -moz-transition: all .3s ease;
2792
    transition: all .3s ease;
2793
}
2794
 
2795
.header__navbar .header3-sub-list li a {
2796
    font-size: 15px;
2797
    color: #777777;
2798
    padding: 10px 22px;
2799
    border: none;
2800
    border-bottom: 1px solid #e1e6eb;
2801
}
2802
 
2803
.header__navbar .header3-sub-list li a:hover {
2804
    color: #4272d7;
2805
    background: #f7f7f7;
2806
}
2807
 
2808
.header__tool {
2809
    display: -webkit-box;
2810
    display: -webkit-flex;
2811
    display: -moz-box;
2812
    display: -ms-flexbox;
2813
    display: flex;
2814
    -webkit-box-align: center;
2815
    -webkit-align-items: center;
2816
    -moz-box-align: center;
2817
    -ms-flex-align: center;
2818
    align-items: center;
2819
}
2820
 
2821
.header__tool .notifi-dropdown {
2822
    left: -68px;
2823
    top: 53px;
2824
}
2825
 
2826
.header__tool .notifi-dropdown::before {
2827
    left: 70px;
2828
}
2829
 
2830
.header__tool .header-button-item {
2831
    margin-right: 40px;
2832
}
2833
 
2834
@media (max-width: 1570px) and (min-width: 992px) {
2835
    .header__tool .header-button-item {
2836
        margin-right: 20px;
2837
    }
2838
}
2839
 
2840
@media (max-width: 1315px) and (min-width: 992px) {
2841
    .header__tool .header-button-item {
2842
        margin-right: 20px;
2843
        font-size: 24px;
2844
    }
2845
}
2846
 
2847
@media (max-width: 1315px) and (min-width: 992px) {
2848
    .header__tool .account-item > .content {
2849
        display: none;
2850
    }
2851
}
2852
 
2853
.bot-line {
2854
    position: absolute;
2855
    width: 100%;
2856
    height: 3px;
2857
    background: #4272d7;
2858
    left: 0;
2859
    bottom: 0;
2860
    opacity: 0;
2861
    -webkit-transform: scale(0);
2862
    -moz-transform: scale(0);
2863
    -ms-transform: scale(0);
2864
    -o-transform: scale(0);
2865
    transform: scale(0);
2866
    -webkit-transition: all 0.3s ease;
2867
    -o-transition: all 0.3s ease;
2868
    -moz-transition: all 0.3s ease;
2869
    transition: all 0.3s ease;
2870
    -webkit-transform-origin: top center;
2871
    -moz-transform-origin: top center;
2872
    -ms-transform-origin: top center;
2873
    -o-transform-origin: top center;
2874
    transform-origin: top center;
2875
}
2876
 
2877
.setting-dropdown {
2878
    top: 54px;
2879
    left: -97px;
2880
    border: none;
2881
    min-width: 305px;
2882
}
2883
 
2884
.setting-dropdown::before {
2885
    left: 99px;
2886
}
2887
 
2888
.setting-dropdown .account-dropdown__body {
2889
    border-bottom: 1px solid #f2f2f2;
2890
}
2891
 
2892
.setting-dropdown .account-dropdown__body:last-child {
2893
    border-bottom: none;
2894
}
2895
 
2896
.setting-dropdown .account-dropdown__item a {
2897
    color: #555;
2898
}
2899
 
2900
.setting-dropdown .account-dropdown__item a:hover {
2901
    color: #fff;
2902
}
2903
 
2904
.header-button-item {
2905
    cursor: pointer;
2906
}
2907
 
2908
.notifi-dropdown--no-bor {
2909
    border: none;
2910
}
2911
 
2912
.notifi-dropdown .notifi__item {
2913
    cursor: pointer;
2914
}
2915
 
2916
.account-item--style2 .image {
2917
    -webkit-border-radius: 100%;
2918
    -moz-border-radius: 100%;
2919
    border-radius: 100%;
2920
}
2921
 
2922
.account-item--style2 .content a {
2923
    font-size: 16px;
2924
    color: #ccc;
2925
    font-weight: 500;
2926
}
2927
 
2928
.account-item--style2 .content a:hover {
2929
    color: #fff;
2930
}
2931
 
2932
.account-item--style2 .account-dropdown {
2933
    top: 61px;
2934
}
2935
 
2936
.account-item--style2 .account-dropdown .info .image {
2937
    -webkit-border-radius: 100%;
2938
    -moz-border-radius: 100%;
2939
    border-radius: 100%;
2940
}
2941
 
2942
.header-desktop4 {
2943
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2944
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2945
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
2946
    position: -webkit-sticky;
2947
    position: sticky;
2948
    top: 0;
2949
    z-index: 999;
2950
    background: #fff;
2951
}
2952
 
2953
@media (max-width: 991px) {
2954
    .header-desktop4 {
2955
        position: static;
2956
    }
2957
}
2958
 
2959
.header4-wrap {
2960
    display: -webkit-box;
2961
    display: -webkit-flex;
2962
    display: -moz-box;
2963
    display: -ms-flexbox;
2964
    display: flex;
2965
    -webkit-box-pack: justify;
2966
    -webkit-justify-content: space-between;
2967
    -moz-box-pack: justify;
2968
    -ms-flex-pack: justify;
2969
    justify-content: space-between;
2970
}
2971
 
2972
.header4-wrap .header__logo {
2973
    margin: 11.5px 0;
2974
}
2975
 
2976
.header4-wrap .header__tool .header-button-item {
2977
    color: #a9b3c9;
2978
}
2979
 
2980
@media (max-width: 991px) {
2981
    .header4-wrap .header__tool .header-button-item {
2982
        margin-right: 20px;
2983
    }
2984
}
2985
 
2986
.header4-wrap .header__tool .notifi-dropdown {
2987
    top: 51px;
2988
}
2989
 
2990
@media (max-width: 991px) {
2991
    .header4-wrap .header__tool .notifi-dropdown {
2992
        left: -220px;
2993
        -webkit-transform-origin: 60% 0%;
2994
        -moz-transform-origin: 60% 0%;
2995
        -ms-transform-origin: 60% 0%;
2996
        -o-transform-origin: 60% 0%;
2997
        transform-origin: 60% 0%;
2998
    }
2999
}
3000
 
3001
.header4-wrap .header__tool .setting-dropdown {
3002
    border: 1px solid #e5e5e5;
3003
    top: 51px;
3004
}
3005
 
3006
@media (max-width: 991px) {
3007
    .header4-wrap .header__tool .setting-dropdown {
3008
        left: -240px;
3009
        -webkit-transform-origin: 85% 0%;
3010
        -moz-transform-origin: 85% 0%;
3011
        -ms-transform-origin: 85% 0%;
3012
        -o-transform-origin: 85% 0%;
3013
        transform-origin: 85% 0%;
3014
    }
3015
}
3016
 
3017
.header4-wrap .header__tool .account-dropdown {
3018
    top: 59px;
3019
}
3020
 
3021
@media (max-width: 1315px) and (min-width: 992px) {
3022
    .header4-wrap .header__tool .account-item > .content {
3023
        display: block;
3024
    }
3025
}
3026
 
3027
@media (max-width: 991px) {
3028
    .header4-wrap .header__tool .account-item > .content {
3029
        display: none;
3030
    }
3031
}
3032
 
3033
.header4-wrap .header__tool .account-item--style2 .content a {
3034
    color: #333;
3035
}
3036
 
3037
.header4-wrap .header__tool .account-item--style2 .content a:hover {
3038
    color: #222;
3039
}
3040
 
3041
.navbar-sidebar3 {
3042
    padding-right: 20px;
3043
}
3044
 
3045
.navbar-sidebar3 .navbar__list li.active > a {
3046
    background: #4272d7;
3047
    color: #fff;
3048
}
3049
 
3050
.navbar-sidebar3 .navbar__list li.active > a > .arrow > i {
3051
    color: #fff;
3052
}
3053
 
3054
.navbar-sidebar3 .navbar__list li a {
3055
    -webkit-border-radius: 3px;
3056
    -moz-border-radius: 3px;
3057
    border-radius: 3px;
3058
    padding: 18px 27px;
3059
    border-bottom: none;
3060
}
3061
 
3062
.navbar-sidebar3 .navbar__sub-list {
3063
    padding-left: 36px;
3064
    padding-top: 10px;
3065
    padding-bottom: 10px;
3066
}
3067
 
3068
.navbar-sidebar3 .navbar__sub-list li {
3069
    background: transparent;
3070
}
3071
 
3072
.navbar-sidebar3 .navbar__sub-list li a {
3073
    padding: 11.5px 27px;
3074
}
3075
 
3076
.navbar-sidebar3 .has-sub.open > a {
3077
    background: #fff;
3078
    border: 1px solid #e5e5e5;
3079
}
3080
 
3081
@media (max-width: 1199px) {
3082
    .navbar-sidebar3 {
3083
        padding-right: 0;
3084
        margin-bottom: 30px;
3085
    }
3086
}
3087
 
3088
/* ----- Overview ----- */
3089
.overview-wrap {
3090
    display: -webkit-box;
3091
    display: -webkit-flex;
3092
    display: -moz-box;
3093
    display: -ms-flexbox;
3094
    display: flex;
3095
    -webkit-box-pack: justify;
3096
    -webkit-justify-content: space-between;
3097
    -moz-box-pack: justify;
3098
    -ms-flex-pack: justify;
3099
    justify-content: space-between;
3100
    -webkit-box-align: center;
3101
    -webkit-align-items: center;
3102
    -moz-box-align: center;
3103
    -ms-flex-align: center;
3104
    align-items: center;
3105
}
3106
 
3107
@media (max-width: 767px) {
3108
    .overview-wrap {
3109
        -webkit-box-orient: vertical;
3110
        -webkit-box-direction: normal;
3111
        -webkit-flex-direction: column;
3112
        -moz-box-orient: vertical;
3113
        -moz-box-direction: normal;
3114
        -ms-flex-direction: column;
3115
        flex-direction: column;
3116
    }
3117
 
3118
    .overview-wrap .button {
3119
        -webkit-box-ordinal-group: 2;
3120
        -webkit-order: 1;
3121
        -moz-box-ordinal-group: 2;
3122
        -ms-flex-order: 1;
3123
        order: 1;
3124
    }
3125
 
3126
    .overview-wrap h2 {
3127
        -webkit-box-ordinal-group: 3;
3128
        -webkit-order: 2;
3129
        -moz-box-ordinal-group: 3;
3130
        -ms-flex-order: 2;
3131
        order: 2;
3132
    }
3133
}
3134
 
3135
.overview-item {
3136
    -webkit-border-radius: 10px;
3137
    -moz-border-radius: 10px;
3138
    border-radius: 10px;
3139
    padding: 30px;
3140
    padding-bottom: 0;
3141
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3142
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3143
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3144
    margin-bottom: 40px;
3145
}
3146
 
3147
@media (min-width: 992px) and (max-width: 1519px) {
3148
    .overview-item {
3149
        padding-left: 15px;
3150
        padding-right: 15px;
3151
    }
3152
}
3153
 
3154
.overview-item--c1 {
3155
    background-image: -moz-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%);
3156
    background-image: -webkit-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%);
3157
    background-image: -ms-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%);
3158
}
3159
 
3160
.overview-item--c2 {
3161
    background-image: -moz-linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
3162
    background-image: -webkit-linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
3163
    background-image: -ms-linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
3164
}
3165
 
3166
.overview-item--c3 {
3167
    background-image: -moz-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
3168
    background-image: -webkit-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
3169
    background-image: -ms-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
3170
}
3171
 
3172
.overview-item--c4 {
3173
    background-image: -moz-linear-gradient(90deg, #45b649 0%, #dce35b 100%);
3174
    background-image: -webkit-linear-gradient(90deg, #45b649 0%, #dce35b 100%);
3175
    background-image: -ms-linear-gradient(90deg, #45b649 0%, #dce35b 100%);
3176
}
3177
 
3178
.overview-box .icon {
3179
    display: inline-block;
3180
    vertical-align: top;
3181
    margin-right: 15px;
3182
}
3183
 
3184
.overview-box .icon i {
3185
    font-size: 60px;
3186
    color: #fff;
3187
}
3188
 
3189
@media (min-width: 992px) and (max-width: 1199px) {
3190
    .overview-box .icon {
3191
        margin-right: 3px;
3192
    }
3193
 
3194
    .overview-box .icon i {
3195
        font-size: 30px;
3196
    }
3197
}
3198
 
3199
@media (max-width: 991px) {
3200
    .overview-box .icon {
3201
        font-size: 46px;
3202
    }
3203
}
3204
 
3205
.overview-box .text {
3206
    font-weight: 300;
3207
    display: inline-block;
3208
}
3209
 
3210
.overview-box .text h2 {
3211
    font-weight: 300;
3212
    color: #fff;
3213
    font-size: 36px;
3214
    line-height: 1;
3215
    margin-bottom: 5px;
3216
}
3217
 
3218
.overview-box .text span {
3219
    font-size: 18px;
3220
    color: rgba(255, 255, 255, 0.6);
3221
}
3222
 
3223
@media (min-width: 992px) and (max-width: 1199px) {
3224
    .overview-box .text {
3225
        display: inline-block;
3226
    }
3227
 
3228
    .overview-box .text h2 {
3229
        font-size: 20px;
3230
        margin-bottom: 0;
3231
    }
3232
 
3233
    .overview-box .text span {
3234
        font-size: 14px;
3235
    }
3236
}
3237
 
3238
@media (max-width: 991px) {
3239
    .overview-box .text h2 {
3240
        font-size: 26px;
3241
    }
3242
 
3243
    .overview-box .text span {
3244
        font-size: 15px;
3245
    }
3246
}
3247
 
3248
.overview-chart {
3249
    height: 115px;
3250
    position: relative;
3251
}
3252
 
3253
.overview-chart canvas {
3254
    width: 100%;
3255
}
3256
 
3257
/* ----- Card ----- */
3258
.au-card {
3259
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3260
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3261
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3262
    padding: 40px;
3263
    padding-right: 35px;
3264
    -webkit-border-radius: 10px;
3265
    -moz-border-radius: 10px;
3266
    border-radius: 10px;
3267
    background: #fff;
3268
    overflow: hidden;
3269
}
3270
 
3271
.au-card--border {
3272
    -webkit-border-radius: 3px;
3273
    -moz-border-radius: 3px;
3274
    border-radius: 3px;
3275
}
3276
 
3277
.au-card--border .au-card-title {
3278
    -webkit-border-top-left-radius: 3px;
3279
    -moz-border-radius-topleft: 3px;
3280
    border-top-left-radius: 3px;
3281
    -webkit-border-top-right-radius: 3px;
3282
    -moz-border-radius-topright: 3px;
3283
    border-top-right-radius: 3px;
3284
}
3285
 
3286
.au-card--border .au-card-title .bg-overlay {
3287
    -webkit-border-top-left-radius: 3px;
3288
    -moz-border-radius-topleft: 3px;
3289
    border-top-left-radius: 3px;
3290
    -webkit-border-top-right-radius: 3px;
3291
    -moz-border-radius-topright: 3px;
3292
    border-top-right-radius: 3px;
3293
}
3294
 
3295
.au-card-bordered {
3296
    border: 1px solid #e5e5e5;
3297
    background: #fff;
3298
    padding: 40px;
3299
    padding-top: 42px;
3300
    padding-right: 55px;
3301
    margin-bottom: 40px;
3302
}
3303
 
3304
.au-card--bg-blue {
3305
    background-image: -moz-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
3306
    background-image: -webkit-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
3307
    background-image: -ms-linear-gradient(90deg, #396afc 0%, #2948ff 100%);
3308
}
3309
 
3310
.au-card-top-countries {
3311
    padding: 40px;
3312
    padding-top: 25px;
3313
    padding-bottom: 29px;
3314
}
3315
 
3316
.au-card--no-shadow {
3317
    -webkit-box-shadow: none;
3318
    -moz-box-shadow: none;
3319
    box-shadow: none;
3320
}
3321
 
3322
.au-card--no-pad {
3323
    padding: 0;
3324
}
3325
 
3326
.au-card-title {
3327
    position: relative;
3328
    padding: 40px;
3329
    padding-top: 45px;
3330
    padding-bottom: 47px;
3331
    -webkit-background-size: cover;
3332
    -moz-background-size: cover;
3333
    -o-background-size: cover;
3334
    background-size: cover;
3335
    background-position: center center;
3336
    background-repeat: no-repeat;
3337
    -webkit-border-top-left-radius: 10px;
3338
    -moz-border-radius-topleft: 10px;
3339
    border-top-left-radius: 10px;
3340
    -webkit-border-top-right-radius: 10px;
3341
    -moz-border-radius-topright: 10px;
3342
    border-top-right-radius: 10px;
3343
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3344
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3345
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
3346
}
3347
 
3348
.au-card-title .bg-overlay {
3349
    -webkit-border-top-left-radius: 10px;
3350
    -moz-border-radius-topleft: 10px;
3351
    border-top-left-radius: 10px;
3352
    -webkit-border-top-right-radius: 10px;
3353
    -moz-border-radius-topright: 10px;
3354
    border-top-right-radius: 10px;
3355
}
3356
 
3357
.au-card-title h3 {
3358
    position: relative;
3359
    z-index: 2;
3360
    color: #fff;
3361
    font-weight: 400;
3362
}
3363
 
3364
.au-card-title h3 i {
3365
    color: #fff;
3366
    font-size: 24px;
3367
    margin-right: 12px;
3368
}
3369
 
3370
.au-task {
3371
    color: #808080;
3372
}
3373
 
3374
.au-task--border .au-task__title {
3375
    border-left: 1px solid #e5e5e5;
3376
    border-right: 1px solid #e5e5e5;
3377
}
3378
 
3379
.au-task--border .au-task-list {
3380
    border-left: 1px solid #e5e5e5;
3381
    border-right: 1px solid #e5e5e5;
3382
}
3383
 
3384
.au-task--border .au-task__footer {
3385
    border: 1px solid #e5e5e5;
3386
    border-top: none;
3387
}
3388
 
3389
.au-task__title {
3390
    padding: 27px 15px;
3391
    padding-left: 40px;
3392
    padding-bottom: 22px;
3393
    border-bottom: 1px solid #f2f2f2;
3394
    font-size: 14px;
3395
}
3396
 
3397
.au-task-list {
3398
    height: 424px;
3399
    position: relative;
3400
    overflow-y: auto;
3401
}
3402
 
3403
.au-task__item {
3404
    border-bottom: 1px solid #f2f2f2;
3405
    -webkit-transition: all 0.5s ease;
3406
    -o-transition: all 0.5s ease;
3407
    -moz-transition: all 0.5s ease;
3408
    transition: all 0.5s ease;
3409
}
3410
 
3411
.au-task__item:hover {
3412
    background: #f7f7f7;
3413
}
3414
 
3415
.au-task__item-inner {
3416
    padding: 26px 15px;
3417
    padding-left: 40px;
3418
}
3419
 
3420
.au-task__item-inner .task {
3421
    font-size: 16px;
3422
    margin-bottom: 6px;
3423
}
3424
 
3425
.au-task__item-inner .task a {
3426
    font-size: 16px;
3427
    color: #808080;
3428
    font-weight: 400;
3429
}
3430
 
3431
.au-task__item-inner .task a:hover {
3432
    color: #333;
3433
}
3434
 
3435
.au-task__item-inner .time {
3436
    font-size: 14px;
3437
    color: #555;
3438
    text-transform: uppercase;
3439
    font-weight: 600;
3440
}
3441
 
3442
.au-task__item--danger .au-task__item-inner {
3443
    border-left: 3px solid #fa4251;
3444
}
3445
 
3446
.au-task__item--warning .au-task__item-inner {
3447
    border-left: 3px solid #ffa037;
3448
}
3449
 
3450
.au-task__item--primary .au-task__item-inner {
3451
    border-left: 3px solid #4272d7;
3452
}
3453
 
3454
.au-task__item--success .au-task__item-inner {
3455
    border-left: 3px solid #00ad5f;
3456
}
3457
 
3458
.au-task__footer {
3459
    text-align: center;
3460
    padding-top: 35px;
3461
    padding-bottom: 45px;
3462
}
3463
 
3464
.au-message__footer {
3465
    text-align: center;
3466
    padding-top: 35px;
3467
    padding-bottom: 45px;
3468
}
3469
 
3470
.au-message p {
3471
    color: #808080;
3472
}
3473
 
3474
.au-message-list {
3475
    height: 424px;
3476
    position: relative;
3477
    overflow-y: auto;
3478
}
3479
 
3480
.au-message__noti {
3481
    padding: 25px 15px;
3482
    padding-left: 40px;
3483
    padding-bottom: 22px;
3484
    border-bottom: 1px solid #f2f2f2;
3485
}
3486
 
3487
.au-message__noti p {
3488
    font-size: 14px;
3489
}
3490
 
3491
.au-message__noti p span {
3492
    font-weight: 600;
3493
}
3494
 
3495
.au-message__item {
3496
    border-bottom: 1px solid #f2f2f2;
3497
    cursor: pointer;
3498
    -webkit-transition: all 0.5s ease;
3499
    -o-transition: all 0.5s ease;
3500
    -moz-transition: all 0.5s ease;
3501
    transition: all 0.5s ease;
3502
}
3503
 
3504
.au-message__item:hover {
3505
    background: #f7f7f7;
3506
}
3507
 
3508
.au-message__item-inner {
3509
    display: -webkit-box;
3510
    display: -webkit-flex;
3511
    display: -moz-box;
3512
    display: -ms-flexbox;
3513
    display: flex;
3514
    -webkit-box-pack: justify;
3515
    -webkit-justify-content: space-between;
3516
    -moz-box-pack: justify;
3517
    -ms-flex-pack: justify;
3518
    justify-content: space-between;
3519
    -webkit-box-align: center;
3520
    -webkit-align-items: center;
3521
    -moz-box-align: center;
3522
    -ms-flex-align: center;
3523
    align-items: center;
3524
    padding: 19px 40px;
3525
    padding-right: 50px;
3526
    padding-bottom: 25px;
3527
}
3528
 
3529
@media (min-width: 992px) and (max-width: 1199px) {
3530
    .au-message__item-inner {
3531
        padding: 15px;
3532
        padding-right: 10px;
3533
        padding-bottom: 15px;
3534
    }
3535
}
3536
 
3537
@media (max-width: 767px) {
3538
    .au-message__item-inner {
3539
        padding: 15px;
3540
        padding-right: 10px;
3541
        padding-bottom: 15px;
3542
        -webkit-box-orient: vertical;
3543
        -webkit-box-direction: normal;
3544
        -webkit-flex-direction: column;
3545
        -moz-box-orient: vertical;
3546
        -moz-box-direction: normal;
3547
        -ms-flex-direction: column;
3548
        flex-direction: column;
3549
        -webkit-box-align: start;
3550
        -webkit-align-items: flex-start;
3551
        -moz-box-align: start;
3552
        -ms-flex-align: start;
3553
        align-items: flex-start;
3554
    }
3555
}
3556
 
3557
.au-message__item-time {
3558
    margin-top: 26px;
3559
}
3560
 
3561
.au-message__item-time span {
3562
    font-size: 14px;
3563
    color: #808080;
3564
}
3565
 
3566
.au-message__item-text .text {
3567
    margin-left: 60px;
3568
    padding: 7px 0;
3569
    padding-left: 23px;
3570
}
3571
 
3572
.au-message__item-text .text .name {
3573
    font-size: 16px;
3574
    font-weight: 600;
3575
    color: #666;
3576
    margin-bottom: 2px;
3577
}
3578
 
3579
.au-message__item-text .text p {
3580
    color: #808080;
3581
}
3582
 
3583
@media (max-width: 767px) {
3584
    .au-message__item-text .text {
3585
        margin: 0;
3586
        padding: 0;
3587
    }
3588
}
3589
 
3590
.avatar-wrap {
3591
    position: relative;
3592
    float: left;
3593
}
3594
 
3595
@media (max-width: 767px) {
3596
    .avatar-wrap {
3597
        float: none;
3598
        display: inline-block;
3599
        margin-bottom: 20px;
3600
    }
3601
}
3602
 
3603
.online .avatar::after {
3604
    background: #63c76a;
3605
}
3606
 
3607
.avatar {
3608
    height: 60px;
3609
    width: 60px;
3610
    -webkit-border-radius: 100%;
3611
    -moz-border-radius: 100%;
3612
    border-radius: 100%;
3613
    overflow: hidden;
3614
}
3615
 
3616
.avatar::after {
3617
    content: '';
3618
    display: block;
3619
    height: 15px;
3620
    width: 15px;
3621
    background: #ccc;
3622
    border: 2px solid #fff;
3623
    -webkit-border-radius: 100%;
3624
    -moz-border-radius: 100%;
3625
    border-radius: 100%;
3626
    position: absolute;
3627
    bottom: 0;
3628
    right: 0;
3629
}
3630
 
3631
.avatar--small {
3632
    height: 50px;
3633
    width: 50px;
3634
}
3635
 
3636
.avatar--tiny {
3637
    height: 32px;
3638
    width: 32px;
3639
}
3640
 
3641
.avatar--tiny::after {
3642
    display: none;
3643
}
3644
 
3645
.au-message__item.unread .au-message__item-inner {
3646
    border-left: 3px solid #999;
3647
}
3648
 
3649
.au-message__item.unread .au-message__item-text .text .name {
3650
    color: #333;
3651
}
3652
 
3653
.au-message__item.unread .au-message__item-text .text p {
3654
    color: #333;
3655
}
3656
 
3657
.au-chat--border .au-chat__title {
3658
    border-left: 1px solid #e5e5e5;
3659
    border-right: 1px solid #e5e5e5;
3660
}
3661
 
3662
.au-chat--border .au-chat__content {
3663
    border-left: 1px solid #e5e5e5;
3664
    border-right: 1px solid #e5e5e5;
3665
}
3666
 
3667
.au-chat--border .au-chat-textfield {
3668
    border: 1px solid #e5e5e5;
3669
    border-top: none;
3670
}
3671
 
3672
.au-chat__title {
3673
    border-bottom: 1px solid #f2f2f2;
3674
}
3675
 
3676
.au-chat-info {
3677
    display: -webkit-box;
3678
    display: -webkit-flex;
3679
    display: -moz-box;
3680
    display: -ms-flexbox;
3681
    display: flex;
3682
    -webkit-box-align: center;
3683
    -webkit-align-items: center;
3684
    -moz-box-align: center;
3685
    -ms-flex-align: center;
3686
    align-items: center;
3687
    padding: 12px 40px;
3688
}
3689
 
3690
.au-chat-info .avatar-wrap {
3691
    float: none;
3692
    display: inline-block;
3693
    margin-bottom: 0;
3694
}
3695
 
3696
.au-chat-info .nick {
3697
    margin-left: 15px;
3698
}
3699
 
3700
.au-chat-info .nick a {
3701
    font-weight: 600;
3702
    font-size: 16px;
3703
    color: #333;
3704
}
3705
 
3706
.au-chat-info .nick a:hover {
3707
    color: #666;
3708
}
3709
 
3710
.au-chat__content {
3711
    height: 400px;
3712
    overflow: auto;
3713
    padding: 30px 40px;
3714
    padding-bottom: 0;
3715
    position: relative;
3716
}
3717
 
3718
.au-chat__content2 .recei-mess {
3719
    max-width: 240px;
3720
    -webkit-border-top-left-radius: 3px;
3721
    -moz-border-radius-topleft: 3px;
3722
    border-top-left-radius: 3px;
3723
    -webkit-border-bottom-left-radius: 3px;
3724
    -moz-border-radius-bottomleft: 3px;
3725
    border-bottom-left-radius: 3px;
3726
    -webkit-border-top-right-radius: 15px;
3727
    -moz-border-radius-topright: 15px;
3728
    border-top-right-radius: 15px;
3729
    -webkit-border-bottom-right-radius: 15px;
3730
    -moz-border-radius-bottomright: 15px;
3731
    border-bottom-right-radius: 15px;
3732
}
3733
 
3734
.au-chat__content2 .send-mess {
3735
    max-width: 240px;
3736
    -webkit-border-top-right-radius: 3px;
3737
    -moz-border-radius-topright: 3px;
3738
    border-top-right-radius: 3px;
3739
    -webkit-border-bottom-right-radius: 3px;
3740
    -moz-border-radius-bottomright: 3px;
3741
    border-bottom-right-radius: 3px;
3742
    -webkit-border-top-left-radius: 15px;
3743
    -moz-border-radius-topleft: 15px;
3744
    border-top-left-radius: 15px;
3745
    -webkit-border-bottom-left-radius: 15px;
3746
    -moz-border-radius-bottomleft: 15px;
3747
    border-bottom-left-radius: 15px;
3748
}
3749
 
3750
.mess-time {
3751
    font-size: 14px;
3752
    color: #999;
3753
}
3754
 
3755
.recei-mess-wrap {
3756
    text-align: center;
3757
}
3758
 
3759
.recei-mess {
3760
    background: #f2f2f2;
3761
    -webkit-border-radius: 8px;
3762
    -moz-border-radius: 8px;
3763
    border-radius: 8px;
3764
    padding: 12px 25px;
3765
    max-width: 390px;
3766
    margin-bottom: 2px;
3767
    text-align: left;
3768
}
3769
 
3770
.recei-mess__inner {
3771
    display: -webkit-box;
3772
    display: -webkit-flex;
3773
    display: -moz-box;
3774
    display: -ms-flexbox;
3775
    display: flex;
3776
    margin-top: 6px;
3777
}
3778
 
3779
.recei-mess__inner .avatar--tiny {
3780
    -webkit-align-self: flex-end;
3781
    -ms-flex-item-align: end;
3782
    align-self: flex-end;
3783
    justify-self: flex-start;
3784
    margin-right: 10px;
3785
}
3786
 
3787
.recei-mess-list {
3788
    width: -webkit-calc(100% - 42px);
3789
    width: -moz-calc(100% - 42px);
3790
    width: calc(100% - 42px);
3791
}
3792
 
3793
.recei-mess-list .recei-mess:last-child {
3794
    margin-bottom: 0;
3795
}
3796
 
3797
.send-mess-wrap {
3798
    text-align: center;
3799
    margin-top: 20px;
3800
}
3801
 
3802
.send-mess__inner {
3803
    margin-top: 6px;
3804
    display: -webkit-box;
3805
    display: -webkit-flex;
3806
    display: -moz-box;
3807
    display: -ms-flexbox;
3808
    display: flex;
3809
    -webkit-box-pack: end;
3810
    -webkit-justify-content: flex-end;
3811
    -moz-box-pack: end;
3812
    -ms-flex-pack: end;
3813
    justify-content: flex-end;
3814
}
3815
 
3816
.send-mess {
3817
    background: #4272d7;
3818
    color: #fff;
3819
    -webkit-border-radius: 8px;
3820
    -moz-border-radius: 8px;
3821
    border-radius: 8px;
3822
    padding: 12px 25px;
3823
    max-width: 390px;
3824
    margin-bottom: 2px;
3825
    text-align: left;
3826
}
3827
 
3828
.au-chat-textfield {
3829
    padding: 40px;
3830
    padding-top: 32px;
3831
    padding-bottom: 50px;
3832
}
3833
 
3834
.au-inbox-wrap {
3835
    display: -webkit-box;
3836
    display: -webkit-flex;
3837
    display: -moz-box;
3838
    display: -ms-flexbox;
3839
    display: flex;
3840
    width: 200%;
3841
    -webkit-transition: all 0.5s ease;
3842
    -o-transition: all 0.5s ease;
3843
    -moz-transition: all 0.5s ease;
3844
    transition: all 0.5s ease;
3845
}
3846
 
3847
.au-inbox-wrap.show-chat-box {
3848
    -webkit-transform: translateX(-50%);
3849
    -moz-transform: translateX(-50%);
3850
    -ms-transform: translateX(-50%);
3851
    -o-transform: translateX(-50%);
3852
    transform: translateX(-50%);
3853
}
3854
 
3855
.au-message {
3856
    width: 50%;
3857
}
3858
 
3859
.au-chat {
3860
    width: 50%;
3861
}
3862
 
3863
.task-progress {
3864
    border: 1px solid  #e5e5e5;
3865
    background: #fff;
3866
    padding: 40px;
3867
    padding-top: 42px;
3868
    padding-right: 55px;
3869
    padding-bottom: 74px;
3870
    margin-bottom: 40px;
3871
}
3872
 
3873
.task-progress .title-3 {
3874
    margin-bottom: 32px;
3875
}
3876
 
3877
.task-progress .au-progress {
3878
    padding: 11px 0;
3879
}
3880
 
3881
.recent-report2 {
3882
    border: 1px solid #e5e5e5;
3883
    background: #fff;
3884
    padding: 40px;
3885
    padding-top: 42px;
3886
    padding-right: 55px;
3887
    padding-bottom: 51px;
3888
    margin-bottom: 40px;
3889
}
3890
 
3891
.recent-report2 .recent-rep2-chart {
3892
    height: 230px;
3893
}
3894
 
3895
.recent-report2 .chart-info {
3896
    margin-bottom: 45px;
3897
}
3898
 
3899
@media (min-width: 992px) and (max-width: 1519px) {
3900
    .recent-report2 .chart-info {
3901
        -webkit-box-orient: vertical;
3902
        -webkit-box-direction: normal;
3903
        -webkit-flex-direction: column;
3904
        -moz-box-orient: vertical;
3905
        -moz-box-direction: normal;
3906
        -ms-flex-direction: column;
3907
        flex-direction: column;
3908
    }
3909
}
3910
 
3911
@media (max-width: 991px) {
3912
    .recent-report2 .chart-info {
3913
        -webkit-box-orient: vertical;
3914
        -webkit-box-direction: normal;
3915
        -webkit-flex-direction: column;
3916
        -moz-box-orient: vertical;
3917
        -moz-box-direction: normal;
3918
        -ms-flex-direction: column;
3919
        flex-direction: column;
3920
    }
3921
}
3922
 
3923
.recent-report2 .chart-info__left {
3924
    -webkit-align-self: flex-end;
3925
    -ms-flex-item-align: end;
3926
    align-self: flex-end;
3927
    margin-bottom: -5px;
3928
}
3929
 
3930
@media (min-width: 992px) and (max-width: 1519px) {
3931
    .recent-report2 .chart-info__left {
3932
        -webkit-align-self: auto;
3933
        -ms-flex-item-align: auto;
3934
        align-self: auto;
3935
        margin-bottom: 30px;
3936
        margin-top: 20px;
3937
    }
3938
}
3939
 
3940
@media (max-width: 991px) {
3941
    .recent-report2 .chart-info__left {
3942
        -webkit-align-self: auto;
3943
        -ms-flex-item-align: auto;
3944
        align-self: auto;
3945
        margin-bottom: 30px;
3946
        margin-top: 20px;
3947
    }
3948
}
3949
 
3950
.user-data {
3951
    border: 1px solid #e5e5e5;
3952
    background: #fff;
3953
    padding-top: 44px;
3954
}
3955
 
3956
.user-data .title-3 {
3957
    padding-left: 40px;
3958
    padding-right: 55px;
3959
}
3960
 
3961
.user-data .filters {
3962
    padding-left: 40px;
3963
    padding-right: 55px;
3964
}
3965
 
3966
.user-data__footer {
3967
    padding: 29px 0;
3968
    text-align: center;
3969
}
3970
 
3971
.map-data {
3972
    border: 1px solid #e5e5e5;
3973
    background: #fff;
3974
    padding: 40px;
3975
    padding-top: 44px;
3976
    padding-right: 60px;
3977
}
3978
 
3979
.recent-report3, .chart-percent-3 {
3980
    background: #fff;
3981
    border: 1px solid #e5e5e5;
3982
    -webkit-border-radius: 2px;
3983
    -moz-border-radius: 2px;
3984
    border-radius: 2px;
3985
    padding-top: 45px;
3986
    padding-left: 40px;
3987
    padding-right: 50px;
3988
    padding-bottom: 50px;
3989
}
3990
 
3991
.recent-report3 .title-wrap {
3992
    display: -webkit-box;
3993
    display: -webkit-flex;
3994
    display: -moz-box;
3995
    display: -ms-flexbox;
3996
    display: flex;
3997
    -webkit-box-pack: justify;
3998
    -webkit-justify-content: space-between;
3999
    -moz-box-pack: justify;
4000
    -ms-flex-pack: justify;
4001
    justify-content: space-between;
4002
    margin-bottom: 27px;
4003
}
4004
 
4005
.recent-report3 .title-wrap .chart-info-wrap {
4006
    margin-top: 3px;
4007
}
4008
 
4009
.recent-report3 .title-wrap .chart-note {
4010
    font-size: 14px;
4011
    margin-right: 30px;
4012
}
4013
 
4014
.chart-percent-3 {
4015
    padding-bottom: 60px;
4016
}
4017
 
4018
.chart-percent-3 .chart-note {
4019
    display: block;
4020
    font-size: 14px;
4021
}
4022
 
4023
/* ----- Charts ----- */
4024
#chartjs-tooltip {
4025
    opacity: 1;
4026
    position: absolute;
4027
    background: rgba(0, 0, 0, 0.7);
4028
    color: white;
4029
    -webkit-border-radius: 3px;
4030
    -moz-border-radius: 3px;
4031
    border-radius: 3px;
4032
    -webkit-transition: all .1s ease;
4033
    -o-transition: all .1s ease;
4034
    -moz-transition: all .1s ease;
4035
    transition: all .1s ease;
4036
    pointer-events: none;
4037
    -webkit-transform: translate(-50%, 0);
4038
    -moz-transform: translate(-50%, 0);
4039
    -ms-transform: translate(-50%, 0);
4040
    -o-transform: translate(-50%, 0);
4041
    transform: translate(-50%, 0);
4042
}
4043
 
4044
.recent-report {
4045
    padding-bottom: 65px;
4046
    margin-bottom: 60px;
4047
}
4048
 
4049
.chart-info {
4050
    display: -webkit-box;
4051
    display: -webkit-flex;
4052
    display: -moz-box;
4053
    display: -ms-flexbox;
4054
    display: flex;
4055
    -webkit-box-pack: justify;
4056
    -webkit-justify-content: space-between;
4057
    -moz-box-pack: justify;
4058
    -ms-flex-pack: justify;
4059
    justify-content: space-between;
4060
    -webkit-box-align: baseline;
4061
    -webkit-align-items: baseline;
4062
    -moz-box-align: baseline;
4063
    -ms-flex-align: baseline;
4064
    align-items: baseline;
4065
    margin-bottom: 30px;
4066
    font-size: 14px;
4067
}
4068
 
4069
.chart-note {
4070
    text-transform: capitalize;
4071
    display: inline-block;
4072
    margin-right: 12px;
4073
    font-size: 14px;
4074
}
4075
 
4076
.chart-note .dot {
4077
    margin-right: 7px;
4078
}
4079
 
4080
.chart-statis {
4081
    display: inline-block;
4082
    margin-right: 35px;
4083
}
4084
 
4085
.chart-statis i {
4086
    font-size: 18px;
4087
    margin-right: 5px;
4088
}
4089
 
4090
.chart-statis .label {
4091
    display: block;
4092
    text-transform: capitalize;
4093
    line-height: 1.2;
4094
}
4095
 
4096
.chart-statis .index {
4097
    font-size: 18px;
4098
    color: #333;
4099
}
4100
 
4101
.recent-report__chart canvas {
4102
    height: 250px;
4103
    width: 100%;
4104
}
4105
 
4106
.chart-percent-card {
4107
    margin-bottom: 60px;
4108
    padding-top: 47px;
4109
}
4110
 
4111
.chart-percent-card .chart-note {
4112
    margin-bottom: 8px;
4113
}
4114
 
4115
.incre i {
4116
    color: #63c76a;
4117
}
4118
 
4119
.decre i {
4120
    color: #ff4b5a;
4121
}
4122
 
4123
.dot {
4124
    display: inline-block;
4125
    width: 10px;
4126
    height: 10px;
4127
    -webkit-border-radius: 100%;
4128
    -moz-border-radius: 100%;
4129
    border-radius: 100%;
4130
}
4131
 
4132
.dot--blue {
4133
    background: #00b5e9;
4134
}
4135
 
4136
.dot--green {
4137
    background: #00ad5f;
4138
}
4139
 
4140
.dot--red {
4141
    background: #fa4251;
4142
}
4143
 
4144
.chart-note-wrap {
4145
    margin-top: 20px;
4146
}
4147
 
4148
.percent-chart {
4149
    padding-right: 65px;
4150
    padding-bottom: 40px;
4151
    padding-top: 27px;
4152
}
4153
 
4154
@media (min-width: 992px) and (max-width: 1519px) {
4155
    .percent-chart {
4156
        padding-right: 0;
4157
    }
4158
}
4159
 
4160
.statistic-chart {
4161
    padding-top: 22px;
4162
}
4163
 
4164
.statistic-chart-1, .top-campaign, .chart-percent-2 {
4165
    background: #fff;
4166
    padding: 0 40px;
4167
    padding-top: 45px;
4168
    padding-bottom: 50px;
4169
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4170
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4171
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4172
    -webkit-border-radius: 3px;
4173
    -moz-border-radius: 3px;
4174
    border-radius: 3px;
4175
}
4176
 
4177
.statistic-chart-1 {
4178
    padding-bottom: 42px;
4179
    margin-bottom: 40px;
4180
}
4181
 
4182
.statistic-chart-1-note {
4183
    margin-top: 18px;
4184
    padding-left: 8px;
4185
}
4186
 
4187
.statistic-chart-1-note span {
4188
    font-size: 14px;
4189
    color: #808080;
4190
}
4191
 
4192
.statistic-chart-1-note .big {
4193
    font-size: 18px;
4194
    color: #393939;
4195
}
4196
 
4197
.top-campaign {
4198
    padding-bottom: 97px;
4199
    margin-bottom: 40px;
4200
}
4201
 
4202
.chart-percent-2 {
4203
    margin-bottom: 40px;
4204
    padding-bottom: 70px;
4205
}
4206
 
4207
.chart-percent-2 .chart-info {
4208
    -webkit-box-pack: center;
4209
    -webkit-justify-content: center;
4210
    -moz-box-pack: center;
4211
    -ms-flex-pack: center;
4212
    justify-content: center;
4213
    margin-bottom: 0;
4214
    margin-top: 30px;
4215
}
4216
 
4217
.chart-percent-2 .chart-info .chart-note {
4218
    margin-right: 34px;
4219
}
4220
 
4221
.chart-percent-2 .chart-info .chart-note:last-child {
4222
    margin-right: 0;
4223
}
4224
 
4225
/* ----- Table ----- */
4226
.table {
4227
    margin: 0;
4228
}
4229
 
4230
.table-responsive.table--no-card {
4231
    -webkit-border-radius: 10px;
4232
    -moz-border-radius: 10px;
4233
    border-radius: 10px;
4234
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
4235
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
4236
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
4237
}
4238
 
4239
.table-earning thead th {
4240
    background: #333;
4241
    font-size: 16px;
4242
    color: #fff;
4243
    vertical-align: middle;
4244
    font-weight: 400;
4245
    text-transform: capitalize;
4246
    line-height: 1;
4247
    padding: 22px 40px;
4248
    white-space: nowrap;
4249
}
4250
 
4251
.table-earning thead th.text-right {
4252
    padding-left: 15px;
4253
    padding-right: 65px;
4254
}
4255
 
4256
.table-earning tbody td {
4257
    color: #808080;
4258
    padding: 12px 40px;
4259
    white-space: nowrap;
4260
}
4261
 
4262
.table-earning tbody td.text-right {
4263
    padding-left: 15px;
4264
    padding-right: 65px;
4265
}
4266
 
4267
.table-earning tbody tr:hover td {
4268
    color: #555;
4269
    cursor: pointer;
4270
}
4271
 
4272
.table-striped tbody tr:nth-of-type(odd) {
4273
    background-color: #fff;
4274
}
4275
 
4276
.table-striped tbody tr:nth-of-type(even) {
4277
    background-color: #f5f5f5;
4278
}
4279
 
4280
.table-top-countries tbody td {
4281
    white-space: nowrap;
4282
    font-size: 14px;
4283
    color: #fff;
4284
    padding: 14px 5px;
4285
    border-top: none;
4286
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
4287
}
4288
 
4289
.table-top-countries tbody tr:last-child td {
4290
    border-bottom: none;
4291
}
4292
 
4293
.table-wrap {
4294
    display: -webkit-box;
4295
    display: -webkit-flex;
4296
    display: -moz-box;
4297
    display: -ms-flexbox;
4298
    display: flex;
4299
    -webkit-box-pack: justify;
4300
    -webkit-justify-content: space-between;
4301
    -moz-box-pack: justify;
4302
    -ms-flex-pack: justify;
4303
    justify-content: space-between;
4304
}
4305
 
4306
@media (min-width: 992px) and (max-width: 1519px) {
4307
    .table-wrap {
4308
        -webkit-box-orient: vertical;
4309
        -webkit-box-direction: normal;
4310
        -webkit-flex-direction: column;
4311
        -moz-box-orient: vertical;
4312
        -moz-box-direction: normal;
4313
        -ms-flex-direction: column;
4314
        flex-direction: column;
4315
    }
4316
}
4317
 
4318
@media (max-width: 991px) {
4319
    .table-wrap {
4320
        -webkit-box-orient: vertical;
4321
        -webkit-box-direction: normal;
4322
        -webkit-flex-direction: column;
4323
        -moz-box-orient: vertical;
4324
        -moz-box-direction: normal;
4325
        -ms-flex-direction: column;
4326
        flex-direction: column;
4327
    }
4328
}
4329
 
4330
.table-style1 {
4331
    max-width: 280px;
4332
    margin-bottom: 30px;
4333
}
4334
 
4335
.table-style1 .table tr:last-child td {
4336
    border-bottom: none;
4337
}
4338
 
4339
.table-style1 .table tr td:last-child {
4340
    padding-right: 30px;
4341
}
4342
 
4343
.table-style1 .table td {
4344
    font-size: 14px;
4345
    color: #808080;
4346
    border-top: none;
4347
    border-bottom: 1px solid #f2f2f2;
4348
    padding: 12px 6px;
4349
    vertical-align: middle;
4350
}
4351
 
4352
.table-data {
4353
    height: 472px;
4354
    overflow-y: auto;
4355
}
4356
 
4357
.table-data thead tr td {
4358
    font-size: 12px;
4359
    font-weight: 600;
4360
    color: #808080;
4361
    text-transform: uppercase;
4362
}
4363
 
4364
.table-data .table td {
4365
    border-top: none;
4366
    border-bottom: 1px solid #f2f2f2;
4367
    padding-top: 23px;
4368
    padding-bottom: 33px;
4369
    padding-left: 40px;
4370
    padding-right: 10px;
4371
}
4372
 
4373
.table-data .table tr td:last-child {
4374
    padding-right: 24px;
4375
}
4376
 
4377
.table-data tbody tr:hover td .more {
4378
    -webkit-transform: scale(1);
4379
    -moz-transform: scale(1);
4380
    -ms-transform: scale(1);
4381
    -o-transform: scale(1);
4382
    transform: scale(1);
4383
}
4384
 
4385
.table-data__info h6 {
4386
    font-size: 14px;
4387
    color: #808080;
4388
    text-transform: capitalize;
4389
    font-weight: 400;
4390
}
4391
 
4392
.table-data__info span a {
4393
    font-size: 12px;
4394
    color: #999;
4395
}
4396
 
4397
.table-data__info span a:hover {
4398
    color: #666;
4399
}
4400
 
4401
.more {
4402
    display: inline-block;
4403
    cursor: pointer;
4404
    width: 30px;
4405
    height: 30px;
4406
    background: #e5e5e5;
4407
    -webkit-border-radius: 100%;
4408
    -moz-border-radius: 100%;
4409
    border-radius: 100%;
4410
    position: relative;
4411
    -webkit-transition: all 0.4s ease;
4412
    -o-transition: all 0.4s ease;
4413
    -moz-transition: all 0.4s ease;
4414
    transition: all 0.4s ease;
4415
    -webkit-transform: scale(0);
4416
    -moz-transform: scale(0);
4417
    -ms-transform: scale(0);
4418
    -o-transform: scale(0);
4419
    transform: scale(0);
4420
}
4421
 
4422
.more i {
4423
    font-size: 20px;
4424
    color: #808080;
4425
    position: absolute;
4426
    top: 50%;
4427
    left: 50%;
4428
    -webkit-transform: translate(-50%, -50%);
4429
    -moz-transform: translate(-50%, -50%);
4430
    -ms-transform: translate(-50%, -50%);
4431
    -o-transform: translate(-50%, -50%);
4432
    transform: translate(-50%, -50%);
4433
}
4434
 
4435
.role {
4436
    display: inline-block;
4437
    line-height: 30px;
4438
    font-size: 14px;
4439
    color: #fff;
4440
    padding: 0 15px;
4441
    -webkit-border-radius: 3px;
4442
    -moz-border-radius: 3px;
4443
    border-radius: 3px;
4444
    text-transform: capitalize;
4445
}
4446
 
4447
.role.admin {
4448
    background: #fa4251;
4449
}
4450
 
4451
.role.user {
4452
    background: #00b5e9;
4453
}
4454
 
4455
.role.member {
4456
    background: #57b846;
4457
}
4458
 
4459
.table-top-campaign.table td {
4460
    border-top: none;
4461
    border-bottom: 1px solid #e5e5e5;
4462
    font-size: 14px;
4463
    padding: 12px 6px;
4464
}
4465
 
4466
.table-top-campaign.table tr td:first-child {
4467
    color: #808080;
4468
}
4469
 
4470
.table-top-campaign.table tr td:last-child {
4471
    color: #4272d7;
4472
    text-align: right;
4473
}
4474
 
4475
.table-top-campaign.table tr:last-child td {
4476
    border-bottom: none;
4477
}
4478
 
4479
@media (min-width: 1200px) {
4480
    .table-responsive-data2 {
4481
        overflow: visible;
4482
    }
4483
}
4484
 
4485
.table-data2 {
4486
    border-collapse: collapse;
4487
    overflow: visible;
4488
}
4489
 
4490
.table-data2.table thead th {
4491
    font-size: 12px;
4492
    color: #555;
4493
    text-transform: uppercase;
4494
    border: none;
4495
    font-weight: 600;
4496
    vertical-align: top;
4497
    padding: 15px 40px;
4498
    padding-right: 10px;
4499
}
4500
 
4501
.table-data2.table thead th:first-child {
4502
    padding-right: 0;
4503
}
4504
 
4505
.table-data2.table tbody {
4506
    background: #fff;
4507
}
4508
 
4509
.table-data2.table tbody tr td:first-child {
4510
    -webkit-border-top-left-radius: 3px;
4511
    -moz-border-radius-topleft: 3px;
4512
    border-top-left-radius: 3px;
4513
    -webkit-border-bottom-left-radius: 3px;
4514
    -moz-border-radius-bottomleft: 3px;
4515
    border-bottom-left-radius: 3px;
4516
    vertical-align: top;
4517
}
4518
 
4519
.table-data2.table tbody tr td:first-child .au-checkbox {
4520
    margin-top: 5px;
4521
}
4522
 
4523
@media (max-width: 1199px) {
4524
    .table-data2.table tbody tr td:first-child {
4525
        vertical-align: middle;
4526
    }
4527
 
4528
    .table-data2.table tbody tr td:first-child .au-checkbox {
4529
        margin-top: 0;
4530
    }
4531
}
4532
 
4533
.table-data2.table tbody tr td:last-child {
4534
    -webkit-border-top-right-radius: 3px;
4535
    -moz-border-radius-topright: 3px;
4536
    border-top-right-radius: 3px;
4537
    -webkit-border-bottom-right-radius: 3px;
4538
    -moz-border-radius-bottomright: 3px;
4539
    border-bottom-right-radius: 3px;
4540
    padding-right: 35px;
4541
}
4542
 
4543
.table-data2.table tbody td {
4544
    font-size: 14px;
4545
    color: #808080;
4546
    vertical-align: middle;
4547
    padding: 25px 40px;
4548
    padding-right: 10px;
4549
    border: none;
4550
}
4551
 
4552
.table-data2.table tbody td.desc {
4553
    color: #4272d7;
4554
}
4555
 
4556
.table-data2 .spacer {
4557
    height: 5px;
4558
    background: transparent;
4559
}
4560
 
4561
.tr-shadow {
4562
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4563
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4564
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
4565
}
4566
 
4567
.table-data__tool {
4568
    display: -webkit-box;
4569
    display: -webkit-flex;
4570
    display: -moz-box;
4571
    display: -ms-flexbox;
4572
    display: flex;
4573
    -webkit-box-pack: justify;
4574
    -webkit-justify-content: space-between;
4575
    -moz-box-pack: justify;
4576
    -ms-flex-pack: justify;
4577
    justify-content: space-between;
4578
    margin-bottom: 28px;
4579
}
4580
 
4581
.table-data__tool .table-data__tool-left > div {
4582
    margin-right: 12px;
4583
}
4584
 
4585
.table-data__tool .table-data__tool-right > button {
4586
    margin-right: 12px;
4587
}
4588
 
4589
@media (max-width: 991px) {
4590
    .table-data__tool {
4591
        -webkit-box-orient: vertical;
4592
        -webkit-box-direction: normal;
4593
        -webkit-flex-direction: column;
4594
        -moz-box-orient: vertical;
4595
        -moz-box-direction: normal;
4596
        -ms-flex-direction: column;
4597
        flex-direction: column;
4598
    }
4599
 
4600
    .table-data__tool .table-data__tool-right {
4601
        margin-top: 10px;
4602
    }
4603
 
4604
    .table-data__tool .table-data__tool-right > button {
4605
        margin-right: 0;
4606
        margin-bottom: 10px;
4607
    }
4608
}
4609
 
4610
.table-data-feature {
4611
    display: -webkit-box;
4612
    display: -webkit-flex;
4613
    display: -moz-box;
4614
    display: -ms-flexbox;
4615
    display: flex;
4616
    -webkit-box-pack: end;
4617
    -webkit-justify-content: flex-end;
4618
    -moz-box-pack: end;
4619
    -ms-flex-pack: end;
4620
    justify-content: flex-end;
4621
}
4622
 
4623
.table-data-feature .item {
4624
    display: block;
4625
    height: 30px;
4626
    width: 30px;
4627
    position: relative;
4628
    -webkit-border-radius: 100%;
4629
    -moz-border-radius: 100%;
4630
    border-radius: 100%;
4631
    background: #e5e5e5;
4632
    margin-right: 5px;
4633
}
4634
 
4635
.table-data-feature .item:last-child {
4636
    margin-right: 0;
4637
}
4638
 
4639
.table-data-feature .item i {
4640
    font-size: 20px;
4641
    color: #808080;
4642
    position: absolute;
4643
    top: 50%;
4644
    left: 50%;
4645
    -webkit-transform: translate(-50%, -50%);
4646
    -moz-transform: translate(-50%, -50%);
4647
    -ms-transform: translate(-50%, -50%);
4648
    -o-transform: translate(-50%, -50%);
4649
    transform: translate(-50%, -50%);
4650
}
4651
 
4652
.block-email {
4653
    font-size: 14px;
4654
    color: #808080;
4655
    display: inline-block;
4656
    background: #f2f2f2;
4657
    -webkit-border-radius: 2px;
4658
    -moz-border-radius: 2px;
4659
    border-radius: 2px;
4660
    line-height: 30px;
4661
    padding: 0 14px;
4662
}
4663
 
4664
.status--process {
4665
    color: #00ad5f;
4666
}
4667
 
4668
.status--denied {
4669
    color: #fa4251;
4670
}
4671
 
4672
.table-data3 thead {
4673
    background: #333;
4674
}
4675
 
4676
.table-data3 thead tr th {
4677
    font-size: 16px;
4678
    color: #fff;
4679
    font-weight: 400;
4680
    text-transform: capitalize;
4681
    padding: 18px 40px;
4682
    padding-right: 10px;
4683
}
4684
 
4685
.table-data3 thead tr th:first-child {
4686
    -webkit-border-top-left-radius: 3px;
4687
    -moz-border-radius-topleft: 3px;
4688
    border-top-left-radius: 3px;
4689
}
4690
 
4691
.table-data3 thead tr th:last-child {
4692
    -webkit-border-top-right-radius: 3px;
4693
    -moz-border-radius-topright: 3px;
4694
    border-top-right-radius: 3px;
4695
}
4696
 
4697
.table-data3 thead tr th:last-child {
4698
    text-align: right;
4699
    padding-right: 50px;
4700
}
4701
 
4702
.table-data3 tbody tr td:last-child {
4703
    text-align: right;
4704
    padding-right: 50px;
4705
}
4706
 
4707
.table-data3 tbody tr {
4708
    border-left: 1px solid #e5e5e5;
4709
    border-right: 1px solid #e5e5e5;
4710
}
4711
 
4712
.table-data3 tbody tr:last-child td:first-child {
4713
    -webkit-border-bottom-left-radius: 8px;
4714
    -moz-border-radius-bottomleft: 8px;
4715
    border-bottom-left-radius: 8px;
4716
}
4717
 
4718
.table-data3 tbody tr:last-child td:last-child {
4719
    -webkit-border-bottom-right-radius: 8px;
4720
    -moz-border-radius-bottomright: 8px;
4721
    border-bottom-right-radius: 8px;
4722
}
4723
 
4724
.table-data3 tbody td {
4725
    border-bottom: 1px solid #f5f5f5;
4726
    background: #fff;
4727
    font-size: 14px;
4728
    color: #808080;
4729
    padding: 12px 40px;
4730
    padding-right: 10px;
4731
}
4732
 
4733
.table-data3 tbody td.process {
4734
    color: #00ad5f;
4735
}
4736
 
4737
.table-data3 tbody td.denied {
4738
    color: #fa4251;
4739
}
4740
 
4741
/* ----- Footer ----- */
4742
.copyright {
4743
    text-align: center;
4744
    padding: 60px 0;
4745
    padding-top: 20px;
4746
}
4747
 
4748
.copyright p {
4749
    font-size: 14px;
4750
    color: #666;
4751
    line-height: -webkit-calc(24/14);
4752
    line-height: -moz-calc(24/14);
4753
    line-height: calc(24/14);
4754
}
4755
 
4756
/* ----- Breadcrumb ----- */
4757
.au-breadcrumb {
4758
    height: 75px;
4759
    background: #fff;
4760
    position: relative;
4761
    z-index: 0;
4762
}
4763
 
4764
@media (max-width: 991px) {
4765
    .au-breadcrumb {
4766
        height: 130px;
4767
    }
4768
 
4769
    .au-breadcrumb.m-t-75 {
4770
        margin-top: 0;
4771
    }
4772
}
4773
 
4774
.au-breadcrumb .section__content {
4775
    top: 50%;
4776
    -webkit-transform: translateY(-50%);
4777
    -moz-transform: translateY(-50%);
4778
    -ms-transform: translateY(-50%);
4779
    -o-transform: translateY(-50%);
4780
    transform: translateY(-50%);
4781
}
4782
 
4783
.au-breadcrumb-content {
4784
    display: -webkit-box;
4785
    display: -webkit-flex;
4786
    display: -moz-box;
4787
    display: -ms-flexbox;
4788
    display: flex;
4789
    -webkit-box-pack: justify;
4790
    -webkit-justify-content: space-between;
4791
    -moz-box-pack: justify;
4792
    -ms-flex-pack: justify;
4793
    justify-content: space-between;
4794
    -webkit-box-align: center;
4795
    -webkit-align-items: center;
4796
    -moz-box-align: center;
4797
    -ms-flex-align: center;
4798
    align-items: center;
4799
}
4800
 
4801
@media (max-width: 991px) {
4802
    .au-breadcrumb-content {
4803
        -webkit-box-orient: vertical;
4804
        -webkit-box-direction: normal;
4805
        -webkit-flex-direction: column;
4806
        -moz-box-orient: vertical;
4807
        -moz-box-direction: normal;
4808
        -ms-flex-direction: column;
4809
        flex-direction: column;
4810
        -webkit-box-pack: center;
4811
        -webkit-justify-content: center;
4812
        -moz-box-pack: center;
4813
        -ms-flex-pack: center;
4814
        justify-content: center;
4815
    }
4816
 
4817
    .au-breadcrumb-content .au-breadcrumb-left {
4818
        -webkit-box-ordinal-group: 3;
4819
        -webkit-order: 2;
4820
        -moz-box-ordinal-group: 3;
4821
        -ms-flex-order: 2;
4822
        order: 2;
4823
    }
4824
 
4825
    .au-breadcrumb-content > button {
4826
        margin-bottom: 15px;
4827
    }
4828
}
4829
 
4830
.au-breadcrumb-span {
4831
    font-size: 14px;
4832
    color: #999;
4833
    display: inline-block;
4834
}
4835
 
4836
.au-breadcrumb__list {
4837
    display: inline-block;
4838
    margin-left: 5px;
4839
}
4840
 
4841
.au-breadcrumb__list li {
4842
    font-size: 14px;
4843
    color: #999;
4844
}
4845
 
4846
.au-breadcrumb__list .list-inline-item:not(:last-child) {
4847
    margin-right: 5px;
4848
}
4849
 
4850
.au-breadcrumb__list .active a {
4851
    color: #999;
4852
}
4853
 
4854
.au-breadcrumb__list .active a:hover {
4855
    color: #333;
4856
}
4857
 
4858
.au-breadcrumb2 {
4859
    padding-top: 48px;
4860
    padding-bottom: 50px;
4861
}
4862
 
4863
.au-breadcrumb2 .au-breadcrumb-span {
4864
    color: #808080;
4865
}
4866
 
4867
.au-breadcrumb2 .au-breadcrumb__list .active a {
4868
    color: #808080;
4869
}
4870
 
4871
.au-breadcrumb2 .au-breadcrumb__list .active a:hover {
4872
    color: #666;
4873
}
4874
 
4875
.au-breadcrumb2 .au-breadcrumb__list li {
4876
    color: #808080;
4877
}
4878
 
4879
@media (max-width: 991px) {
4880
    .au-breadcrumb2 .au-breadcrumb-left {
4881
        margin-top: 20px;
4882
    }
4883
}
4884
 
4885
.au-breadcrumb3 .au-breadcrumb__list .active a:hover {
4886
    color: #ccc;
4887
}
4888
 
4889
.line-seprate {
4890
    height: 1px;
4891
    width: 100%;
4892
    background: #e5e5e5;
4893
    border: none;
4894
    margin-top: 20px;
4895
    margin-bottom: 0;
4896
}
4897
 
4898
.welcome2 {
4899
    background: #393939;
4900
}
4901
 
4902
.welcome2-inner {
4903
    display: -webkit-box;
4904
    display: -webkit-flex;
4905
    display: -moz-box;
4906
    display: -ms-flexbox;
4907
    display: flex;
4908
    -webkit-box-pack: justify;
4909
    -webkit-justify-content: space-between;
4910
    -moz-box-pack: justify;
4911
    -ms-flex-pack: justify;
4912
    justify-content: space-between;
4913
}
4914
 
4915
.welcome2-inner .welcome2-greeting {
4916
    width: -webkit-calc(100% - 500px);
4917
    width: -moz-calc(100% - 500px);
4918
    width: calc(100% - 500px);
4919
}
4920
 
4921
.welcome2-inner form {
4922
    height: 45px;
4923
}
4924
 
4925
@media (max-width: 991px) {
4926
    .welcome2-inner {
4927
        -webkit-box-orient: vertical;
4928
        -webkit-box-direction: reverse;
4929
        -webkit-flex-direction: column-reverse;
4930
        -moz-box-orient: vertical;
4931
        -moz-box-direction: reverse;
4932
        -ms-flex-direction: column-reverse;
4933
        flex-direction: column-reverse;
4934
    }
4935
 
4936
    .welcome2-inner.m-t-60 {
4937
        margin-top: 0;
4938
    }
4939
 
4940
    .welcome2-inner .welcome2-greeting {
4941
        width: 100%;
4942
    }
4943
 
4944
    .welcome2-inner form {
4945
        margin-bottom: 30px;
4946
        margin-top: 30px;
4947
        -webkit-align-self: flex-start;
4948
        -ms-flex-item-align: start;
4949
        align-self: flex-start;
4950
    }
4951
}
4952
 
4953
.welcome2-greeting h1 {
4954
    margin-bottom: 12px;
4955
}
4956
 
4957
.welcome2-greeting p {
4958
    font-size: 14px;
4959
    color: #808080;
4960
}
4961
 
4962
/* ----- Statistic ----- */
4963
.statistic {
4964
    padding-top: 57px;
4965
}
4966
 
4967
.statistic__item {
4968
    border: 1px solid #e5e5e5;
4969
    background: #fff;
4970
    padding: 20px 30px;
4971
    position: relative;
4972
    min-height: 180px;
4973
    overflow: hidden;
4974
    margin-bottom: 40px;
4975
}
4976
 
4977
@media (min-width: 992px) and (max-width: 1199px) {
4978
    .statistic__item {
4979
        padding: 20px 10px;
4980
    }
4981
}
4982
 
4983
.statistic__item h2 {
4984
    font-size: 36px;
4985
    font-weight: 300;
4986
    color: #4272d7;
4987
}
4988
 
4989
@media (min-width: 992px) and (max-width: 1199px) {
4990
    .statistic__item h2 {
4991
        font-size: 22px;
4992
    }
4993
}
4994
 
4995
.statistic__item .desc {
4996
    font-size: 18px;
4997
    text-transform: uppercase;
4998
    font-weight: 300;
4999
    color: rgba(128, 128, 128, 0.6);
5000
}
5001
 
5002
@media (min-width: 992px) and (max-width: 1199px) {
5003
    .statistic__item .desc {
5004
        font-size: 13px;
5005
    }
5006
}
5007
 
5008
.statistic__item .icon {
5009
    display: inline-block;
5010
    position: absolute;
5011
    bottom: -50px;
5012
    right: -7px;
5013
}
5014
 
5015
.statistic__item .icon i {
5016
    font-size: 180px;
5017
    color: #808080;
5018
    opacity: .2;
5019
    line-height: 1;
5020
    vertical-align: baseline;
5021
}
5022
 
5023
.statistic__item--green {
5024
    background: #00b26f;
5025
}
5026
 
5027
.statistic__item--orange {
5028
    background: #ff8300;
5029
}
5030
 
5031
.statistic__item--blue {
5032
    background: #00b5e9;
5033
}
5034
 
5035
.statistic__item--red {
5036
    background: #fa4251;
5037
}
5038
 
5039
/* ----- Statistic 2 ----- */
5040
.statistic2 {
5041
    padding-top: 50px;
5042
}
5043
 
5044
.statistic2 .statistic__item {
5045
    border: none;
5046
    -webkit-border-radius: 3px;
5047
    -moz-border-radius: 3px;
5048
    border-radius: 3px;
5049
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
5050
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
5051
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
5052
}
5053
 
5054
.statistic2 .statistic__item h2 {
5055
    color: #fff;
5056
}
5057
 
5058
.statistic2 .statistic__item .desc {
5059
    color: rgba(255, 255, 255, 0.6);
5060
}
5061
 
5062
/* ----- Progress ----- */
5063
.au-progress .au-progress__bar {
5064
    height: 10px;
5065
    position: relative;
5066
    background: #d9d9d9;
5067
    -webkit-border-radius: 5px;
5068
    -moz-border-radius: 5px;
5069
    border-radius: 5px;
5070
}
5071
 
5072
.au-progress .au-progress__bar .au-progress__inner {
5073
    position: absolute;
5074
    width: 0;
5075
    top: 0;
5076
    left: 0;
5077
    bottom: 0;
5078
    -webkit-border-radius: 5px;
5079
    -moz-border-radius: 5px;
5080
    border-radius: 5px;
5081
    -webkit-transition: width 1s ease-in-out;
5082
    -o-transition: width 1s ease-in-out;
5083
    -moz-transition: width 1s ease-in-out;
5084
    transition: width 1s ease-in-out;
5085
    background-color: #4272d7;
5086
    overflow: visible;
5087
}
5088
 
5089
.au-progress__title {
5090
    font-size: 14px;
5091
    color: #808080;
5092
    display: inline-block;
5093
    margin-bottom: 9px;
5094
}
5095
 
5096
.au-progress__value {
5097
    font-size: 14px;
5098
    color: #808080;
5099
    position: absolute;
5100
    top: -28px;
5101
    right: -15px;
5102
}
5103
 
5104
/* ----- Alert ----- */
5105
.au-alert {
5106
    border: 1px solid #fff;
5107
    background: #fff;
5108
    border-left: 3px solid #fff;
5109
    -webkit-border-radius: 0;
5110
    -moz-border-radius: 0;
5111
    border-radius: 0;
5112
    margin: 0;
5113
    -webkit-border-top-right-radius: 3px;
5114
    -moz-border-radius-topright: 3px;
5115
    border-top-right-radius: 3px;
5116
    -webkit-border-bottom-right-radius: 3px;
5117
    -moz-border-radius-bottomright: 3px;
5118
    border-bottom-right-radius: 3px;
5119
    padding: 0;
5120
    padding: 15px 30px;
5121
}
5122
 
5123
.au-alert.alert-dismissible .close {
5124
    font-size: 16px;
5125
    color: black;
5126
    opacity: 0.2;
5127
    padding: 0 23px;
5128
    top: 0;
5129
    bottom: 0;
5130
}
5131
 
5132
.au-alert > i {
5133
    font-size: 30px;
5134
    color: #00ad5f;
5135
    vertical-align: middle;
5136
    margin-right: 10px;
5137
}
5138
 
5139
.au-alert .content {
5140
    font-size: 16px;
5141
    color: #808080;
5142
}
5143
 
5144
.au-alert-success {
5145
    background: #e5f6eb;
5146
    border-color: #d9f1e3;
5147
    border-left-color: #00ad5f;
5148
}
5149
 
5150
.au-alert--70per {
5151
    width: 70.5%;
5152
    margin: 0 auto;
5153
}
5154
 
5155
@media (max-width: 991px) {
5156
    .au-alert--70per {
5157
        width: 95%;
5158
    }
5159
}
5160
 
5161
/* Switch */
5162
.switch.switch-default {
5163
    position: relative;
5164
    display: inline-block;
5165
    vertical-align: top;
5166
    width: 40px;
5167
    height: 24px;
5168
    background-color: transparent;
5169
    cursor: pointer;
5170
}
5171
 
5172
.switch.switch-default .switch-input {
5173
    position: absolute;
5174
    top: 0;
5175
    left: 0;
5176
    opacity: 0;
5177
}
5178
 
5179
.switch.switch-default .switch-label {
5180
    position: relative;
5181
    display: block;
5182
    height: inherit;
5183
    font-size: 10px;
5184
    font-weight: 600;
5185
    text-transform: uppercase;
5186
    background-color: #fff;
5187
    border: 1px solid #f2f2f2;
5188
    -webkit-border-radius: 2px;
5189
    -moz-border-radius: 2px;
5190
    border-radius: 2px;
5191
    -webkit-transition: opacity background .15s ease-out;
5192
    -o-transition: opacity background .15s ease-out;
5193
    -moz-transition: opacity background .15s ease-out;
5194
    transition: opacity background .15s ease-out;
5195
}
5196
 
5197
.switch.switch-default .switch-input:checked ~ .switch-label::before {
5198
    opacity: 0;
5199
}
5200
 
5201
.switch.switch-default .switch-input:checked ~ .switch-label::after {
5202
    opacity: 1;
5203
}
5204
 
5205
.switch.switch-default .switch-handle {
5206
    position: absolute;
5207
    top: 2px;
5208
    left: 2px;
5209
    width: 20px;
5210
    height: 20px;
5211
    background: #fff;
5212
    border: 1px solid #f2f2f2;
5213
    -webkit-border-radius: 1px;
5214
    -moz-border-radius: 1px;
5215
    border-radius: 1px;
5216
    -webkit-transition: left .15s ease-out;
5217
    -o-transition: left .15s ease-out;
5218
    -moz-transition: left .15s ease-out;
5219
    transition: left .15s ease-out;
5220
}
5221
 
5222
.switch.switch-default .switch-input:checked ~ .switch-handle {
5223
    left: 18px;
5224
}
5225
 
5226
.switch.switch-default.switch-lg {
5227
    width: 48px;
5228
    height: 28px;
5229
}
5230
 
5231
.switch.switch-default.switch-lg .switch-label {
5232
    font-size: 12px;
5233
}
5234
 
5235
.switch.switch-default.switch-lg .switch-handle {
5236
    width: 24px;
5237
    height: 24px;
5238
}
5239
 
5240
.switch.switch-default.switch-lg .switch-input:checked ~ .switch-handle {
5241
    left: 22px;
5242
}
5243
 
5244
.switch.switch-default.switch-sm {
5245
    width: 32px;
5246
    height: 20px;
5247
}
5248
 
5249
.switch.switch-default.switch-sm .switch-label {
5250
    font-size: 8px;
5251
}
5252
 
5253
.switch.switch-default.switch-sm .switch-handle {
5254
    width: 16px;
5255
    height: 16px;
5256
}
5257
 
5258
.switch.switch-default.switch-sm .switch-input:checked ~ .switch-handle {
5259
    left: 14px;
5260
}
5261
 
5262
.switch.switch-default.switch-xs {
5263
    width: 24px;
5264
    height: 16px;
5265
}
5266
 
5267
.switch.switch-default.switch-xs .switch-label {
5268
    font-size: 7px;
5269
}
5270
 
5271
.switch.switch-default.switch-xs .switch-handle {
5272
    width: 12px;
5273
    height: 12px;
5274
}
5275
 
5276
.switch.switch-default.switch-xs .switch-input:checked ~ .switch-handle {
5277
    left: 10px;
5278
}
5279
 
5280
.switch.switch-text {
5281
    position: relative;
5282
    display: inline-block;
5283
    vertical-align: top;
5284
    width: 48px;
5285
    height: 24px;
5286
    background-color: transparent;
5287
    cursor: pointer;
5288
}
5289
 
5290
.switch.switch-text .switch-input {
5291
    position: absolute;
5292
    top: 0;
5293
    left: 0;
5294
    opacity: 0;
5295
}
5296
 
5297
.switch.switch-text .switch-label {
5298
    position: relative;
5299
    display: block;
5300
    height: inherit;
5301
    font-size: 10px;
5302
    font-weight: 600;
5303
    text-transform: uppercase;
5304
    background-color: #fff;
5305
    border: 1px solid #f2f2f2;
5306
    -webkit-border-radius: 2px;
5307
    -moz-border-radius: 2px;
5308
    border-radius: 2px;
5309
    -webkit-transition: opacity background .15s ease-out;
5310
    -o-transition: opacity background .15s ease-out;
5311
    -moz-transition: opacity background .15s ease-out;
5312
    transition: opacity background .15s ease-out;
5313
}
5314
 
5315
.switch.switch-text .switch-label::before,
5316
  .switch.switch-text .switch-label::after {
5317
    position: absolute;
5318
    top: 50%;
5319
    width: 50%;
5320
    margin-top: -.5em;
5321
    line-height: 1;
5322
    text-align: center;
5323
    -webkit-transition: inherit;
5324
    -o-transition: inherit;
5325
    -moz-transition: inherit;
5326
    transition: inherit;
5327
}
5328
 
5329
.switch.switch-text .switch-label::before {
5330
    right: 1px;
5331
    color: #e9ecef;
5332
    content: attr(data-off);
5333
}
5334
 
5335
.switch.switch-text .switch-label::after {
5336
    left: 1px;
5337
    color: #fff;
5338
    content: attr(data-on);
5339
    opacity: 0;
5340
}
5341
 
5342
.switch.switch-text .switch-input:checked ~ .switch-label::before {
5343
    opacity: 0;
5344
}
5345
 
5346
.switch.switch-text .switch-input:checked ~ .switch-label::after {
5347
    opacity: 1;
5348
}
5349
 
5350
.switch.switch-text .switch-handle {
5351
    position: absolute;
5352
    top: 2px;
5353
    left: 2px;
5354
    width: 20px;
5355
    height: 20px;
5356
    background: #fff;
5357
    border: 1px solid #f2f2f2;
5358
    -webkit-border-radius: 1px;
5359
    -moz-border-radius: 1px;
5360
    border-radius: 1px;
5361
    -webkit-transition: left .15s ease-out;
5362
    -o-transition: left .15s ease-out;
5363
    -moz-transition: left .15s ease-out;
5364
    transition: left .15s ease-out;
5365
}
5366
 
5367
.switch.switch-text .switch-input:checked ~ .switch-handle {
5368
    left: 26px;
5369
}
5370
 
5371
.switch.switch-text.switch-lg {
5372
    width: 56px;
5373
    height: 28px;
5374
}
5375
 
5376
.switch.switch-text.switch-lg .switch-label {
5377
    font-size: 12px;
5378
}
5379
 
5380
.switch.switch-text.switch-lg .switch-handle {
5381
    width: 24px;
5382
    height: 24px;
5383
}
5384
 
5385
.switch.switch-text.switch-lg .switch-input:checked ~ .switch-handle {
5386
    left: 30px;
5387
}
5388
 
5389
.switch.switch-text.switch-sm {
5390
    width: 40px;
5391
    height: 20px;
5392
}
5393
 
5394
.switch.switch-text.switch-sm .switch-label {
5395
    font-size: 8px;
5396
}
5397
 
5398
.switch.switch-text.switch-sm .switch-handle {
5399
    width: 16px;
5400
    height: 16px;
5401
}
5402
 
5403
.switch.switch-text.switch-sm .switch-input:checked ~ .switch-handle {
5404
    left: 22px;
5405
}
5406
 
5407
.switch.switch-text.switch-xs {
5408
    width: 32px;
5409
    height: 16px;
5410
}
5411
 
5412
.switch.switch-text.switch-xs .switch-label {
5413
    font-size: 7px;
5414
}
5415
 
5416
.switch.switch-text.switch-xs .switch-handle {
5417
    width: 12px;
5418
    height: 12px;
5419
}
5420
 
5421
.switch.switch-text.switch-xs .switch-input:checked ~ .switch-handle {
5422
    left: 18px;
5423
}
5424
 
5425
.switch.switch-icon {
5426
    position: relative;
5427
    display: inline-block;
5428
    vertical-align: top;
5429
    width: 48px;
5430
    height: 24px;
5431
    background-color: transparent;
5432
    cursor: pointer;
5433
}
5434
 
5435
.switch.switch-icon .switch-input {
5436
    position: absolute;
5437
    top: 0;
5438
    left: 0;
5439
    opacity: 0;
5440
}
5441
 
5442
.switch.switch-icon .switch-label {
5443
    position: relative;
5444
    display: block;
5445
    height: inherit;
5446
    font-family: FontAwesome;
5447
    font-size: 10px;
5448
    font-weight: 600;
5449
    text-transform: uppercase;
5450
    background-color: #fff;
5451
    border: 1px solid #f2f2f2;
5452
    -webkit-border-radius: 2px;
5453
    -moz-border-radius: 2px;
5454
    border-radius: 2px;
5455
    -webkit-transition: opacity background .15s ease-out;
5456
    -o-transition: opacity background .15s ease-out;
5457
    -moz-transition: opacity background .15s ease-out;
5458
    transition: opacity background .15s ease-out;
5459
}
5460
 
5461
.switch.switch-icon .switch-label::before,
5462
  .switch.switch-icon .switch-label::after {
5463
    position: absolute;
5464
    top: 50%;
5465
    width: 50%;
5466
    margin-top: -.5em;
5467
    line-height: 1;
5468
    text-align: center;
5469
    -webkit-transition: inherit;
5470
    -o-transition: inherit;
5471
    -moz-transition: inherit;
5472
    transition: inherit;
5473
}
5474
 
5475
.switch.switch-icon .switch-label::before {
5476
    right: 1px;
5477
    color: #e9ecef;
5478
    content: attr(data-off);
5479
}
5480
 
5481
.switch.switch-icon .switch-label::after {
5482
    left: 1px;
5483
    color: #fff;
5484
    content: attr(data-on);
5485
    opacity: 0;
5486
}
5487
 
5488
.switch.switch-icon .switch-input:checked ~ .switch-label::before {
5489
    opacity: 0;
5490
}
5491
 
5492
.switch.switch-icon .switch-input:checked ~ .switch-label::after {
5493
    opacity: 1;
5494
}
5495
 
5496
.switch.switch-icon .switch-handle {
5497
    position: absolute;
5498
    top: 2px;
5499
    left: 2px;
5500
    width: 20px;
5501
    height: 20px;
5502
    background: #fff;
5503
    border: 1px solid #f2f2f2;
5504
    -webkit-border-radius: 1px;
5505
    -moz-border-radius: 1px;
5506
    border-radius: 1px;
5507
    -webkit-transition: left .15s ease-out;
5508
    -o-transition: left .15s ease-out;
5509
    -moz-transition: left .15s ease-out;
5510
    transition: left .15s ease-out;
5511
}
5512
 
5513
.switch.switch-icon .switch-input:checked ~ .switch-handle {
5514
    left: 26px;
5515
}
5516
 
5517
.switch.switch-icon.switch-lg {
5518
    width: 56px;
5519
    height: 28px;
5520
}
5521
 
5522
.switch.switch-icon.switch-lg .switch-label {
5523
    font-size: 12px;
5524
}
5525
 
5526
.switch.switch-icon.switch-lg .switch-handle {
5527
    width: 24px;
5528
    height: 24px;
5529
}
5530
 
5531
.switch.switch-icon.switch-lg .switch-input:checked ~ .switch-handle {
5532
    left: 30px;
5533
}
5534
 
5535
.switch.switch-icon.switch-sm {
5536
    width: 40px;
5537
    height: 20px;
5538
}
5539
 
5540
.switch.switch-icon.switch-sm .switch-label {
5541
    font-size: 8px;
5542
}
5543
 
5544
.switch.switch-icon.switch-sm .switch-handle {
5545
    width: 16px;
5546
    height: 16px;
5547
}
5548
 
5549
.switch.switch-icon.switch-sm .switch-input:checked ~ .switch-handle {
5550
    left: 22px;
5551
}
5552
 
5553
.switch.switch-icon.switch-xs {
5554
    width: 32px;
5555
    height: 16px;
5556
}
5557
 
5558
.switch.switch-icon.switch-xs .switch-label {
5559
    font-size: 7px;
5560
}
5561
 
5562
.switch.switch-icon.switch-xs .switch-handle {
5563
    width: 12px;
5564
    height: 12px;
5565
}
5566
 
5567
.switch.switch-icon.switch-xs .switch-input:checked ~ .switch-handle {
5568
    left: 18px;
5569
}
5570
 
5571
.switch.switch-3d {
5572
    position: relative;
5573
    display: inline-block;
5574
    vertical-align: top;
5575
    width: 40px;
5576
    height: 24px;
5577
    background-color: transparent;
5578
    cursor: pointer;
5579
}
5580
 
5581
.switch.switch-3d .switch-input {
5582
    position: absolute;
5583
    top: 0;
5584
    left: 0;
5585
    opacity: 0;
5586
}
5587
 
5588
.switch.switch-3d .switch-label {
5589
    position: relative;
5590
    display: block;
5591
    height: inherit;
5592
    font-size: 10px;
5593
    font-weight: 600;
5594
    text-transform: uppercase;
5595
    background-color: #f8f9fa;
5596
    border: 1px solid #f2f2f2;
5597
    -webkit-border-radius: 2px;
5598
    -moz-border-radius: 2px;
5599
    border-radius: 2px;
5600
    -webkit-transition: opacity background .15s ease-out;
5601
    -o-transition: opacity background .15s ease-out;
5602
    -moz-transition: opacity background .15s ease-out;
5603
    transition: opacity background .15s ease-out;
5604
}
5605
 
5606
.switch.switch-3d .switch-input:checked ~ .switch-label::before {
5607
    opacity: 0;
5608
}
5609
 
5610
.switch.switch-3d .switch-input:checked ~ .switch-label::after {
5611
    opacity: 1;
5612
}
5613
 
5614
.switch.switch-3d .switch-handle {
5615
    position: absolute;
5616
    top: 0;
5617
    left: 0;
5618
    width: 24px;
5619
    height: 24px;
5620
    background: #fff;
5621
    border: 1px solid #f2f2f2;
5622
    -webkit-border-radius: 1px;
5623
    -moz-border-radius: 1px;
5624
    border-radius: 1px;
5625
    -webkit-transition: left .15s ease-out;
5626
    -o-transition: left .15s ease-out;
5627
    -moz-transition: left .15s ease-out;
5628
    transition: left .15s ease-out;
5629
    border: 0;
5630
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
5631
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
5632
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
5633
}
5634
 
5635
.switch.switch-3d .switch-input:checked ~ .switch-handle {
5636
    left: 16px;
5637
}
5638
 
5639
.switch.switch-3d.switch-lg {
5640
    width: 48px;
5641
    height: 28px;
5642
}
5643
 
5644
.switch.switch-3d.switch-lg .switch-label {
5645
    font-size: 12px;
5646
}
5647
 
5648
.switch.switch-3d.switch-lg .switch-handle {
5649
    width: 28px;
5650
    height: 28px;
5651
}
5652
 
5653
.switch.switch-3d.switch-lg .switch-input:checked ~ .switch-handle {
5654
    left: 20px;
5655
}
5656
 
5657
.switch.switch-3d.switch-sm {
5658
    width: 32px;
5659
    height: 20px;
5660
}
5661
 
5662
.switch.switch-3d.switch-sm .switch-label {
5663
    font-size: 8px;
5664
}
5665
 
5666
.switch.switch-3d.switch-sm .switch-handle {
5667
    width: 20px;
5668
    height: 20px;
5669
}
5670
 
5671
.switch.switch-3d.switch-sm .switch-input:checked ~ .switch-handle {
5672
    left: 12px;
5673
}
5674
 
5675
.switch.switch-3d.switch-xs {
5676
    width: 24px;
5677
    height: 16px;
5678
}
5679
 
5680
.switch.switch-3d.switch-xs .switch-label {
5681
    font-size: 7px;
5682
}
5683
 
5684
.switch.switch-3d.switch-xs .switch-handle {
5685
    width: 16px;
5686
    height: 16px;
5687
}
5688
 
5689
.switch.switch-3d.switch-xs .switch-input:checked ~ .switch-handle {
5690
    left: 8px;
5691
}
5692
 
5693
.switch-pill .switch-label, .switch.switch-3d .switch-label,
5694
.switch-pill .switch-handle,
5695
.switch.switch-3d .switch-handle {
5696
    -webkit-border-radius: 50em !important;
5697
    -moz-border-radius: 50em !important;
5698
    border-radius: 50em !important;
5699
}
5700
 
5701
.switch-pill .switch-label::before, .switch.switch-3d .switch-label::before {
5702
    right: 2px !important;
5703
}
5704
 
5705
.switch-pill .switch-label::after, .switch.switch-3d .switch-label::after {
5706
    left: 2px !important;
5707
}
5708
 
5709
.switch-primary > .switch-input:checked ~ .switch-label {
5710
    background: #4272d7 !important;
5711
    border-color: #2858be;
5712
}
5713
 
5714
.switch-primary > .switch-input:checked ~ .switch-handle {
5715
    border-color: #2858be;
5716
}
5717
 
5718
.switch-primary-outline > .switch-input:checked ~ .switch-label {
5719
    background: #fff !important;
5720
    border-color: #4272d7;
5721
}
5722
 
5723
.switch-primary-outline > .switch-input:checked ~ .switch-label::after {
5724
    color: #4272d7;
5725
}
5726
 
5727
.switch-primary-outline > .switch-input:checked ~ .switch-handle {
5728
    border-color: #4272d7;
5729
}
5730
 
5731
.switch-primary-outline-alt > .switch-input:checked ~ .switch-label {
5732
    background: #fff !important;
5733
    border-color: #4272d7;
5734
}
5735
 
5736
.switch-primary-outline-alt > .switch-input:checked ~ .switch-label::after {
5737
    color: #4272d7;
5738
}
5739
 
5740
.switch-primary-outline-alt > .switch-input:checked ~ .switch-handle {
5741
    background: #4272d7 !important;
5742
    border-color: #4272d7;
5743
}
5744
 
5745
.switch-secondary > .switch-input:checked ~ .switch-label {
5746
    background: #868e96 !important;
5747
    border-color: #6c757d;
5748
}
5749
 
5750
.switch-secondary > .switch-input:checked ~ .switch-handle {
5751
    border-color: #6c757d;
5752
}
5753
 
5754
.switch-secondary-outline > .switch-input:checked ~ .switch-label {
5755
    background: #fff !important;
5756
    border-color: #868e96;
5757
}
5758
 
5759
.switch-secondary-outline > .switch-input:checked ~ .switch-label::after {
5760
    color: #868e96;
5761
}
5762
 
5763
.switch-secondary-outline > .switch-input:checked ~ .switch-handle {
5764
    border-color: #868e96;
5765
}
5766
 
5767
.switch-secondary-outline-alt > .switch-input:checked ~ .switch-label {
5768
    background: #fff !important;
5769
    border-color: #868e96;
5770
}
5771
 
5772
.switch-secondary-outline-alt > .switch-input:checked ~ .switch-label::after {
5773
    color: #868e96;
5774
}
5775
 
5776
.switch-secondary-outline-alt > .switch-input:checked ~ .switch-handle {
5777
    background: #868e96 !important;
5778
    border-color: #868e96;
5779
}
5780
 
5781
.switch-success > .switch-input:checked ~ .switch-label {
5782
    background: #28a745 !important;
5783
    border-color: #1e7e34;
5784
}
5785
 
5786
.switch-success > .switch-input:checked ~ .switch-handle {
5787
    border-color: #1e7e34;
5788
}
5789
 
5790
.switch-success-outline > .switch-input:checked ~ .switch-label {
5791
    background: #fff !important;
5792
    border-color: #28a745;
5793
}
5794
 
5795
.switch-success-outline > .switch-input:checked ~ .switch-label::after {
5796
    color: #28a745;
5797
}
5798
 
5799
.switch-success-outline > .switch-input:checked ~ .switch-handle {
5800
    border-color: #28a745;
5801
}
5802
 
5803
.switch-success-outline-alt > .switch-input:checked ~ .switch-label {
5804
    background: #fff !important;
5805
    border-color: #28a745;
5806
}
5807
 
5808
.switch-success-outline-alt > .switch-input:checked ~ .switch-label::after {
5809
    color: #28a745;
5810
}
5811
 
5812
.switch-success-outline-alt > .switch-input:checked ~ .switch-handle {
5813
    background: #28a745 !important;
5814
    border-color: #28a745;
5815
}
5816
 
5817
.switch-info > .switch-input:checked ~ .switch-label {
5818
    background: #17a2b8 !important;
5819
    border-color: #117a8b;
5820
}
5821
 
5822
.switch-info > .switch-input:checked ~ .switch-handle {
5823
    border-color: #117a8b;
5824
}
5825
 
5826
.switch-info-outline > .switch-input:checked ~ .switch-label {
5827
    background: #fff !important;
5828
    border-color: #17a2b8;
5829
}
5830
 
5831
.switch-info-outline > .switch-input:checked ~ .switch-label::after {
5832
    color: #17a2b8;
5833
}
5834
 
5835
.switch-info-outline > .switch-input:checked ~ .switch-handle {
5836
    border-color: #17a2b8;
5837
}
5838
 
5839
.switch-info-outline-alt > .switch-input:checked ~ .switch-label {
5840
    background: #fff !important;
5841
    border-color: #17a2b8;
5842
}
5843
 
5844
.switch-info-outline-alt > .switch-input:checked ~ .switch-label::after {
5845
    color: #17a2b8;
5846
}
5847
 
5848
.switch-info-outline-alt > .switch-input:checked ~ .switch-handle {
5849
    background: #17a2b8 !important;
5850
    border-color: #17a2b8;
5851
}
5852
 
5853
.switch-warning > .switch-input:checked ~ .switch-label {
5854
    background: #ffc107 !important;
5855
    border-color: #d39e00;
5856
}
5857
 
5858
.switch-warning > .switch-input:checked ~ .switch-handle {
5859
    border-color: #d39e00;
5860
}
5861
 
5862
.switch-warning-outline > .switch-input:checked ~ .switch-label {
5863
    background: #fff !important;
5864
    border-color: #ffc107;
5865
}
5866
 
5867
.switch-warning-outline > .switch-input:checked ~ .switch-label::after {
5868
    color: #ffc107;
5869
}
5870
 
5871
.switch-warning-outline > .switch-input:checked ~ .switch-handle {
5872
    border-color: #ffc107;
5873
}
5874
 
5875
.switch-warning-outline-alt > .switch-input:checked ~ .switch-label {
5876
    background: #fff !important;
5877
    border-color: #ffc107;
5878
}
5879
 
5880
.switch-warning-outline-alt > .switch-input:checked ~ .switch-label::after {
5881
    color: #ffc107;
5882
}
5883
 
5884
.switch-warning-outline-alt > .switch-input:checked ~ .switch-handle {
5885
    background: #ffc107 !important;
5886
    border-color: #ffc107;
5887
}
5888
 
5889
.switch-danger > .switch-input:checked ~ .switch-label {
5890
    background: #ff4b5a !important;
5891
    border-color: #ff182b;
5892
}
5893
 
5894
.switch-danger > .switch-input:checked ~ .switch-handle {
5895
    border-color: #ff182b;
5896
}
5897
 
5898
.switch-danger-outline > .switch-input:checked ~ .switch-label {
5899
    background: #fff !important;
5900
    border-color: #ff4b5a;
5901
}
5902
 
5903
.switch-danger-outline > .switch-input:checked ~ .switch-label::after {
5904
    color: #ff4b5a;
5905
}
5906
 
5907
.switch-danger-outline > .switch-input:checked ~ .switch-handle {
5908
    border-color: #ff4b5a;
5909
}
5910
 
5911
.switch-danger-outline-alt > .switch-input:checked ~ .switch-label {
5912
    background: #fff !important;
5913
    border-color: #ff4b5a;
5914
}
5915
 
5916
.switch-danger-outline-alt > .switch-input:checked ~ .switch-label::after {
5917
    color: #ff4b5a;
5918
}
5919
 
5920
.switch-danger-outline-alt > .switch-input:checked ~ .switch-handle {
5921
    background: #ff4b5a !important;
5922
    border-color: #ff4b5a;
5923
}
5924
 
5925
.switch-light > .switch-input:checked ~ .switch-label {
5926
    background: #f8f9fa !important;
5927
    border-color: #dae0e5;
5928
}
5929
 
5930
.switch-light > .switch-input:checked ~ .switch-handle {
5931
    border-color: #dae0e5;
5932
}
5933
 
5934
.switch-light-outline > .switch-input:checked ~ .switch-label {
5935
    background: #fff !important;
5936
    border-color: #f8f9fa;
5937
}
5938
 
5939
.switch-light-outline > .switch-input:checked ~ .switch-label::after {
5940
    color: #f8f9fa;
5941
}
5942
 
5943
.switch-light-outline > .switch-input:checked ~ .switch-handle {
5944
    border-color: #f8f9fa;
5945
}
5946
 
5947
.switch-light-outline-alt > .switch-input:checked ~ .switch-label {
5948
    background: #fff !important;
5949
    border-color: #f8f9fa;
5950
}
5951
 
5952
.switch-light-outline-alt > .switch-input:checked ~ .switch-label::after {
5953
    color: #f8f9fa;
5954
}
5955
 
5956
.switch-light-outline-alt > .switch-input:checked ~ .switch-handle {
5957
    background: #f8f9fa !important;
5958
    border-color: #f8f9fa;
5959
}
5960
 
5961
.switch-dark > .switch-input:checked ~ .switch-label {
5962
    background: #343a40 !important;
5963
    border-color: #1d2124;
5964
}
5965
 
5966
.switch-dark > .switch-input:checked ~ .switch-handle {
5967
    border-color: #1d2124;
5968
}
5969
 
5970
.switch-dark-outline > .switch-input:checked ~ .switch-label {
5971
    background: #fff !important;
5972
    border-color: #343a40;
5973
}
5974
 
5975
.switch-dark-outline > .switch-input:checked ~ .switch-label::after {
5976
    color: #343a40;
5977
}
5978
 
5979
.switch-dark-outline > .switch-input:checked ~ .switch-handle {
5980
    border-color: #343a40;
5981
}
5982
 
5983
.switch-dark-outline-alt > .switch-input:checked ~ .switch-label {
5984
    background: #fff !important;
5985
    border-color: #343a40;
5986
}
5987
 
5988
.switch-dark-outline-alt > .switch-input:checked ~ .switch-label::after {
5989
    color: #343a40;
5990
}
5991
 
5992
.switch-dark-outline-alt > .switch-input:checked ~ .switch-handle {
5993
    background: #343a40 !important;
5994
    border-color: #343a40;
5995
}
5996
 
5997
/*-----------------------------------------------------*/
5998
/*                   TRUMPS                            */
5999
/*-----------------------------------------------------*/
6000
/*Padding, margin*/
6001
.p-b-0 {
6002
    padding-bottom: 0px;
6003
}
6004
 
6005
.p-t-0 {
6006
    padding-top: 0px;
6007
}
6008
 
6009
.p-r-0 {
6010
    padding-right: 0px;
6011
}
6012
 
6013
.p-l-0 {
6014
    padding-left: 0px;
6015
}
6016
 
6017
.m-b-0 {
6018
    margin-bottom: 0px;
6019
}
6020
 
6021
.m-t-0 {
6022
    margin-top: 0px;
6023
}
6024
 
6025
.m-r-0 {
6026
    margin-right: 0px;
6027
}
6028
 
6029
.m-l-0 {
6030
    margin-left: 0px;
6031
}
6032
 
6033
.p-b-5 {
6034
    padding-bottom: 5px;
6035
}
6036
 
6037
.p-t-5 {
6038
    padding-top: 5px;
6039
}
6040
 
6041
.p-r-5 {
6042
    padding-right: 5px;
6043
}
6044
 
6045
.p-l-5 {
6046
    padding-left: 5px;
6047
}
6048
 
6049
.m-b-5 {
6050
    margin-bottom: 5px;
6051
}
6052
 
6053
.m-t-5 {
6054
    margin-top: 5px;
6055
}
6056
 
6057
.m-r-5 {
6058
    margin-right: 5px;
6059
}
6060
 
6061
.m-l-5 {
6062
    margin-left: 5px;
6063
}
6064
 
6065
.p-b-10 {
6066
    padding-bottom: 10px;
6067
}
6068
 
6069
.p-t-10 {
6070
    padding-top: 10px;
6071
}
6072
 
6073
.p-r-10 {
6074
    padding-right: 10px;
6075
}
6076
 
6077
.p-l-10 {
6078
    padding-left: 10px;
6079
}
6080
 
6081
.m-b-10 {
6082
    margin-bottom: 10px;
6083
}
6084
 
6085
.m-t-10 {
6086
    margin-top: 10px;
6087
}
6088
 
6089
.m-r-10 {
6090
    margin-right: 10px;
6091
}
6092
 
6093
.m-l-10 {
6094
    margin-left: 10px;
6095
}
6096
 
6097
.p-b-15 {
6098
    padding-bottom: 15px;
6099
}
6100
 
6101
.p-t-15 {
6102
    padding-top: 15px;
6103
}
6104
 
6105
.p-r-15 {
6106
    padding-right: 15px;
6107
}
6108
 
6109
.p-l-15 {
6110
    padding-left: 15px;
6111
}
6112
 
6113
.m-b-15 {
6114
    margin-bottom: 15px;
6115
}
6116
 
6117
.m-t-15 {
6118
    margin-top: 15px;
6119
}
6120
 
6121
.m-r-15 {
6122
    margin-right: 15px;
6123
}
6124
 
6125
.m-l-15 {
6126
    margin-left: 15px;
6127
}
6128
 
6129
.p-b-20 {
6130
    padding-bottom: 20px;
6131
}
6132
 
6133
.p-t-20 {
6134
    padding-top: 20px;
6135
}
6136
 
6137
.p-r-20 {
6138
    padding-right: 20px;
6139
}
6140
 
6141
.p-l-20 {
6142
    padding-left: 20px;
6143
}
6144
 
6145
.m-b-20 {
6146
    margin-bottom: 20px;
6147
}
6148
 
6149
.m-t-20 {
6150
    margin-top: 20px;
6151
}
6152
 
6153
.m-r-20 {
6154
    margin-right: 20px;
6155
}
6156
 
6157
.m-l-20 {
6158
    margin-left: 20px;
6159
}
6160
 
6161
.p-b-25 {
6162
    padding-bottom: 25px;
6163
}
6164
 
6165
.p-t-25 {
6166
    padding-top: 25px;
6167
}
6168
 
6169
.p-r-25 {
6170
    padding-right: 25px;
6171
}
6172
 
6173
.p-l-25 {
6174
    padding-left: 25px;
6175
}
6176
 
6177
.m-b-25 {
6178
    margin-bottom: 25px;
6179
}
6180
 
6181
.m-t-25 {
6182
    margin-top: 25px;
6183
}
6184
 
6185
.m-r-25 {
6186
    margin-right: 25px;
6187
}
6188
 
6189
.m-l-25 {
6190
    margin-left: 25px;
6191
}
6192
 
6193
.p-b-30 {
6194
    padding-bottom: 30px;
6195
}
6196
 
6197
.p-t-30 {
6198
    padding-top: 30px;
6199
}
6200
 
6201
.p-r-30 {
6202
    padding-right: 30px;
6203
}
6204
 
6205
.p-l-30 {
6206
    padding-left: 30px;
6207
}
6208
 
6209
.m-b-30 {
6210
    margin-bottom: 30px;
6211
}
6212
 
6213
.m-t-30 {
6214
    margin-top: 30px;
6215
}
6216
 
6217
.m-r-30 {
6218
    margin-right: 30px;
6219
}
6220
 
6221
.m-l-30 {
6222
    margin-left: 30px;
6223
}
6224
 
6225
.p-b-35 {
6226
    padding-bottom: 35px;
6227
}
6228
 
6229
.p-t-35 {
6230
    padding-top: 35px;
6231
}
6232
 
6233
.p-r-35 {
6234
    padding-right: 35px;
6235
}
6236
 
6237
.p-l-35 {
6238
    padding-left: 35px;
6239
}
6240
 
6241
.m-b-35 {
6242
    margin-bottom: 35px;
6243
}
6244
 
6245
.m-t-35 {
6246
    margin-top: 35px;
6247
}
6248
 
6249
.m-r-35 {
6250
    margin-right: 35px;
6251
}
6252
 
6253
.m-l-35 {
6254
    margin-left: 35px;
6255
}
6256
 
6257
.p-b-40 {
6258
    padding-bottom: 40px;
6259
}
6260
 
6261
.p-t-40 {
6262
    padding-top: 40px;
6263
}
6264
 
6265
.p-r-40 {
6266
    padding-right: 40px;
6267
}
6268
 
6269
.p-l-40 {
6270
    padding-left: 40px;
6271
}
6272
 
6273
.m-b-40 {
6274
    margin-bottom: 40px;
6275
}
6276
 
6277
.m-t-40 {
6278
    margin-top: 40px;
6279
}
6280
 
6281
.m-r-40 {
6282
    margin-right: 40px;
6283
}
6284
 
6285
.m-l-40 {
6286
    margin-left: 40px;
6287
}
6288
 
6289
.p-b-45 {
6290
    padding-bottom: 45px;
6291
}
6292
 
6293
.p-t-45 {
6294
    padding-top: 45px;
6295
}
6296
 
6297
.p-r-45 {
6298
    padding-right: 45px;
6299
}
6300
 
6301
.p-l-45 {
6302
    padding-left: 45px;
6303
}
6304
 
6305
.m-b-45 {
6306
    margin-bottom: 45px;
6307
}
6308
 
6309
.m-t-45 {
6310
    margin-top: 45px;
6311
}
6312
 
6313
.m-r-45 {
6314
    margin-right: 45px;
6315
}
6316
 
6317
.m-l-45 {
6318
    margin-left: 45px;
6319
}
6320
 
6321
.p-b-50 {
6322
    padding-bottom: 50px;
6323
}
6324
 
6325
.p-t-50 {
6326
    padding-top: 50px;
6327
}
6328
 
6329
.p-r-50 {
6330
    padding-right: 50px;
6331
}
6332
 
6333
.p-l-50 {
6334
    padding-left: 50px;
6335
}
6336
 
6337
.m-b-50 {
6338
    margin-bottom: 50px;
6339
}
6340
 
6341
.m-t-50 {
6342
    margin-top: 50px;
6343
}
6344
 
6345
.m-r-50 {
6346
    margin-right: 50px;
6347
}
6348
 
6349
.m-l-50 {
6350
    margin-left: 50px;
6351
}
6352
 
6353
.p-b-55 {
6354
    padding-bottom: 55px;
6355
}
6356
 
6357
.p-t-55 {
6358
    padding-top: 55px;
6359
}
6360
 
6361
.p-r-55 {
6362
    padding-right: 55px;
6363
}
6364
 
6365
.p-l-55 {
6366
    padding-left: 55px;
6367
}
6368
 
6369
.m-b-55 {
6370
    margin-bottom: 55px;
6371
}
6372
 
6373
.m-t-55 {
6374
    margin-top: 55px;
6375
}
6376
 
6377
.m-r-55 {
6378
    margin-right: 55px;
6379
}
6380
 
6381
.m-l-55 {
6382
    margin-left: 55px;
6383
}
6384
 
6385
.p-b-60 {
6386
    padding-bottom: 60px;
6387
}
6388
 
6389
.p-t-60 {
6390
    padding-top: 60px;
6391
}
6392
 
6393
.p-r-60 {
6394
    padding-right: 60px;
6395
}
6396
 
6397
.p-l-60 {
6398
    padding-left: 60px;
6399
}
6400
 
6401
.m-b-60 {
6402
    margin-bottom: 60px;
6403
}
6404
 
6405
.m-t-60 {
6406
    margin-top: 60px;
6407
}
6408
 
6409
.m-r-60 {
6410
    margin-right: 60px;
6411
}
6412
 
6413
.m-l-60 {
6414
    margin-left: 60px;
6415
}
6416
 
6417
.p-b-65 {
6418
    padding-bottom: 65px;
6419
}
6420
 
6421
.p-t-65 {
6422
    padding-top: 65px;
6423
}
6424
 
6425
.p-r-65 {
6426
    padding-right: 65px;
6427
}
6428
 
6429
.p-l-65 {
6430
    padding-left: 65px;
6431
}
6432
 
6433
.m-b-65 {
6434
    margin-bottom: 65px;
6435
}
6436
 
6437
.m-t-65 {
6438
    margin-top: 65px;
6439
}
6440
 
6441
.m-r-65 {
6442
    margin-right: 65px;
6443
}
6444
 
6445
.m-l-65 {
6446
    margin-left: 65px;
6447
}
6448
 
6449
.p-b-70 {
6450
    padding-bottom: 70px;
6451
}
6452
 
6453
.p-t-70 {
6454
    padding-top: 70px;
6455
}
6456
 
6457
.p-r-70 {
6458
    padding-right: 70px;
6459
}
6460
 
6461
.p-l-70 {
6462
    padding-left: 70px;
6463
}
6464
 
6465
.m-b-70 {
6466
    margin-bottom: 70px;
6467
}
6468
 
6469
.m-t-70 {
6470
    margin-top: 70px;
6471
}
6472
 
6473
.m-r-70 {
6474
    margin-right: 70px;
6475
}
6476
 
6477
.m-l-70 {
6478
    margin-left: 70px;
6479
}
6480
 
6481
.p-b-75 {
6482
    padding-bottom: 75px;
6483
}
6484
 
6485
.p-t-75 {
6486
    padding-top: 75px;
6487
}
6488
 
6489
.p-r-75 {
6490
    padding-right: 75px;
6491
}
6492
 
6493
.p-l-75 {
6494
    padding-left: 75px;
6495
}
6496
 
6497
.m-b-75 {
6498
    margin-bottom: 75px;
6499
}
6500
 
6501
.m-t-75 {
6502
    margin-top: 75px;
6503
}
6504
 
6505
.m-r-75 {
6506
    margin-right: 75px;
6507
}
6508
 
6509
.m-l-75 {
6510
    margin-left: 75px;
6511
}
6512
 
6513
.p-b-80 {
6514
    padding-bottom: 80px;
6515
}
6516
 
6517
.p-t-80 {
6518
    padding-top: 80px;
6519
}
6520
 
6521
.p-r-80 {
6522
    padding-right: 80px;
6523
}
6524
 
6525
.p-l-80 {
6526
    padding-left: 80px;
6527
}
6528
 
6529
.m-b-80 {
6530
    margin-bottom: 80px;
6531
}
6532
 
6533
.m-t-80 {
6534
    margin-top: 80px;
6535
}
6536
 
6537
.m-r-80 {
6538
    margin-right: 80px;
6539
}
6540
 
6541
.m-l-80 {
6542
    margin-left: 80px;
6543
}
6544
 
6545
.p-b-85 {
6546
    padding-bottom: 85px;
6547
}
6548
 
6549
.p-t-85 {
6550
    padding-top: 85px;
6551
}
6552
 
6553
.p-r-85 {
6554
    padding-right: 85px;
6555
}
6556
 
6557
.p-l-85 {
6558
    padding-left: 85px;
6559
}
6560
 
6561
.m-b-85 {
6562
    margin-bottom: 85px;
6563
}
6564
 
6565
.m-t-85 {
6566
    margin-top: 85px;
6567
}
6568
 
6569
.m-r-85 {
6570
    margin-right: 85px;
6571
}
6572
 
6573
.m-l-85 {
6574
    margin-left: 85px;
6575
}
6576
 
6577
.p-b-90 {
6578
    padding-bottom: 90px;
6579
}
6580
 
6581
.p-t-90 {
6582
    padding-top: 90px;
6583
}
6584
 
6585
.p-r-90 {
6586
    padding-right: 90px;
6587
}
6588
 
6589
.p-l-90 {
6590
    padding-left: 90px;
6591
}
6592
 
6593
.m-b-90 {
6594
    margin-bottom: 90px;
6595
}
6596
 
6597
.m-t-90 {
6598
    margin-top: 90px;
6599
}
6600
 
6601
.m-r-90 {
6602
    margin-right: 90px;
6603
}
6604
 
6605
.m-l-90 {
6606
    margin-left: 90px;
6607
}
6608
 
6609
.p-b-95 {
6610
    padding-bottom: 95px;
6611
}
6612
 
6613
.p-t-95 {
6614
    padding-top: 95px;
6615
}
6616
 
6617
.p-r-95 {
6618
    padding-right: 95px;
6619
}
6620
 
6621
.p-l-95 {
6622
    padding-left: 95px;
6623
}
6624
 
6625
.m-b-95 {
6626
    margin-bottom: 95px;
6627
}
6628
 
6629
.m-t-95 {
6630
    margin-top: 95px;
6631
}
6632
 
6633
.m-r-95 {
6634
    margin-right: 95px;
6635
}
6636
 
6637
.m-l-95 {
6638
    margin-left: 95px;
6639
}
6640
 
6641
.p-b-100 {
6642
    padding-bottom: 100px;
6643
}
6644
 
6645
.p-t-100 {
6646
    padding-top: 100px;
6647
}
6648
 
6649
.p-r-100 {
6650
    padding-right: 100px;
6651
}
6652
 
6653
.p-l-100 {
6654
    padding-left: 100px;
6655
}
6656
 
6657
.m-b-100 {
6658
    margin-bottom: 100px;
6659
}
6660
 
6661
.m-t-100 {
6662
    margin-top: 100px;
6663
}
6664
 
6665
.m-r-100 {
6666
    margin-right: 100px;
6667
}
6668
 
6669
.m-l-100 {
6670
    margin-left: 100px;
6671
}
6672
 
6673
.p-b-105 {
6674
    padding-bottom: 105px;
6675
}
6676
 
6677
.p-t-105 {
6678
    padding-top: 105px;
6679
}
6680
 
6681
.p-r-105 {
6682
    padding-right: 105px;
6683
}
6684
 
6685
.p-l-105 {
6686
    padding-left: 105px;
6687
}
6688
 
6689
.m-b-105 {
6690
    margin-bottom: 105px;
6691
}
6692
 
6693
.m-t-105 {
6694
    margin-top: 105px;
6695
}
6696
 
6697
.m-r-105 {
6698
    margin-right: 105px;
6699
}
6700
 
6701
.m-l-105 {
6702
    margin-left: 105px;
6703
}
6704
 
6705
.p-b-110 {
6706
    padding-bottom: 110px;
6707
}
6708
 
6709
.p-t-110 {
6710
    padding-top: 110px;
6711
}
6712
 
6713
.p-r-110 {
6714
    padding-right: 110px;
6715
}
6716
 
6717
.p-l-110 {
6718
    padding-left: 110px;
6719
}
6720
 
6721
.m-b-110 {
6722
    margin-bottom: 110px;
6723
}
6724
 
6725
.m-t-110 {
6726
    margin-top: 110px;
6727
}
6728
 
6729
.m-r-110 {
6730
    margin-right: 110px;
6731
}
6732
 
6733
.m-l-110 {
6734
    margin-left: 110px;
6735
}
6736
 
6737
.p-b-115 {
6738
    padding-bottom: 115px;
6739
}
6740
 
6741
.p-t-115 {
6742
    padding-top: 115px;
6743
}
6744
 
6745
.p-r-115 {
6746
    padding-right: 115px;
6747
}
6748
 
6749
.p-l-115 {
6750
    padding-left: 115px;
6751
}
6752
 
6753
.m-b-115 {
6754
    margin-bottom: 115px;
6755
}
6756
 
6757
.m-t-115 {
6758
    margin-top: 115px;
6759
}
6760
 
6761
.m-r-115 {
6762
    margin-right: 115px;
6763
}
6764
 
6765
.m-l-115 {
6766
    margin-left: 115px;
6767
}
6768
 
6769
.p-b-120 {
6770
    padding-bottom: 120px;
6771
}
6772
 
6773
.p-t-120 {
6774
    padding-top: 120px;
6775
}
6776
 
6777
.p-r-120 {
6778
    padding-right: 120px;
6779
}
6780
 
6781
.p-l-120 {
6782
    padding-left: 120px;
6783
}
6784
 
6785
.m-b-120 {
6786
    margin-bottom: 120px;
6787
}
6788
 
6789
.m-t-120 {
6790
    margin-top: 120px;
6791
}
6792
 
6793
.m-r-120 {
6794
    margin-right: 120px;
6795
}
6796
 
6797
.m-l-120 {
6798
    margin-left: 120px;
6799
}
6800
 
6801
.p-b-125 {
6802
    padding-bottom: 125px;
6803
}
6804
 
6805
.p-t-125 {
6806
    padding-top: 125px;
6807
}
6808
 
6809
.p-r-125 {
6810
    padding-right: 125px;
6811
}
6812
 
6813
.p-l-125 {
6814
    padding-left: 125px;
6815
}
6816
 
6817
.m-b-125 {
6818
    margin-bottom: 125px;
6819
}
6820
 
6821
.m-t-125 {
6822
    margin-top: 125px;
6823
}
6824
 
6825
.m-r-125 {
6826
    margin-right: 125px;
6827
}
6828
 
6829
.m-l-125 {
6830
    margin-left: 125px;
6831
}
6832
 
6833
.p-b-130 {
6834
    padding-bottom: 130px;
6835
}
6836
 
6837
.p-t-130 {
6838
    padding-top: 130px;
6839
}
6840
 
6841
.p-r-130 {
6842
    padding-right: 130px;
6843
}
6844
 
6845
.p-l-130 {
6846
    padding-left: 130px;
6847
}
6848
 
6849
.m-b-130 {
6850
    margin-bottom: 130px;
6851
}
6852
 
6853
.m-t-130 {
6854
    margin-top: 130px;
6855
}
6856
 
6857
.m-r-130 {
6858
    margin-right: 130px;
6859
}
6860
 
6861
.m-l-130 {
6862
    margin-left: 130px;
6863
}
6864
 
6865
.p-b-135 {
6866
    padding-bottom: 135px;
6867
}
6868
 
6869
.p-t-135 {
6870
    padding-top: 135px;
6871
}
6872
 
6873
.p-r-135 {
6874
    padding-right: 135px;
6875
}
6876
 
6877
.p-l-135 {
6878
    padding-left: 135px;
6879
}
6880
 
6881
.m-b-135 {
6882
    margin-bottom: 135px;
6883
}
6884
 
6885
.m-t-135 {
6886
    margin-top: 135px;
6887
}
6888
 
6889
.m-r-135 {
6890
    margin-right: 135px;
6891
}
6892
 
6893
.m-l-135 {
6894
    margin-left: 135px;
6895
}
6896
 
6897
.p-b-140 {
6898
    padding-bottom: 140px;
6899
}
6900
 
6901
.p-t-140 {
6902
    padding-top: 140px;
6903
}
6904
 
6905
.p-r-140 {
6906
    padding-right: 140px;
6907
}
6908
 
6909
.p-l-140 {
6910
    padding-left: 140px;
6911
}
6912
 
6913
.m-b-140 {
6914
    margin-bottom: 140px;
6915
}
6916
 
6917
.m-t-140 {
6918
    margin-top: 140px;
6919
}
6920
 
6921
.m-r-140 {
6922
    margin-right: 140px;
6923
}
6924
 
6925
.m-l-140 {
6926
    margin-left: 140px;
6927
}
6928
 
6929
.p-b-145 {
6930
    padding-bottom: 145px;
6931
}
6932
 
6933
.p-t-145 {
6934
    padding-top: 145px;
6935
}
6936
 
6937
.p-r-145 {
6938
    padding-right: 145px;
6939
}
6940
 
6941
.p-l-145 {
6942
    padding-left: 145px;
6943
}
6944
 
6945
.m-b-145 {
6946
    margin-bottom: 145px;
6947
}
6948
 
6949
.m-t-145 {
6950
    margin-top: 145px;
6951
}
6952
 
6953
.m-r-145 {
6954
    margin-right: 145px;
6955
}
6956
 
6957
.m-l-145 {
6958
    margin-left: 145px;
6959
}
6960
 
6961
.p-b-150 {
6962
    padding-bottom: 150px;
6963
}
6964
 
6965
.p-t-150 {
6966
    padding-top: 150px;
6967
}
6968
 
6969
.p-r-150 {
6970
    padding-right: 150px;
6971
}
6972
 
6973
.p-l-150 {
6974
    padding-left: 150px;
6975
}
6976
 
6977
.m-b-150 {
6978
    margin-bottom: 150px;
6979
}
6980
 
6981
.m-t-150 {
6982
    margin-top: 150px;
6983
}
6984
 
6985
.m-r-150 {
6986
    margin-right: 150px;
6987
}
6988
 
6989
.m-l-150 {
6990
    margin-left: 150px;
6991
}
6992
 
6993
.p-b-155 {
6994
    padding-bottom: 155px;
6995
}
6996
 
6997
.p-t-155 {
6998
    padding-top: 155px;
6999
}
7000
 
7001
.p-r-155 {
7002
    padding-right: 155px;
7003
}
7004
 
7005
.p-l-155 {
7006
    padding-left: 155px;
7007
}
7008
 
7009
.m-b-155 {
7010
    margin-bottom: 155px;
7011
}
7012
 
7013
.m-t-155 {
7014
    margin-top: 155px;
7015
}
7016
 
7017
.m-r-155 {
7018
    margin-right: 155px;
7019
}
7020
 
7021
.m-l-155 {
7022
    margin-left: 155px;
7023
}
7024
 
7025
.p-b-160 {
7026
    padding-bottom: 160px;
7027
}
7028
 
7029
.p-t-160 {
7030
    padding-top: 160px;
7031
}
7032
 
7033
.p-r-160 {
7034
    padding-right: 160px;
7035
}
7036
 
7037
.p-l-160 {
7038
    padding-left: 160px;
7039
}
7040
 
7041
.m-b-160 {
7042
    margin-bottom: 160px;
7043
}
7044
 
7045
.m-t-160 {
7046
    margin-top: 160px;
7047
}
7048
 
7049
.m-r-160 {
7050
    margin-right: 160px;
7051
}
7052
 
7053
.m-l-160 {
7054
    margin-left: 160px;
7055
}
7056
 
7057
.p-b-165 {
7058
    padding-bottom: 165px;
7059
}
7060
 
7061
.p-t-165 {
7062
    padding-top: 165px;
7063
}
7064
 
7065
.p-r-165 {
7066
    padding-right: 165px;
7067
}
7068
 
7069
.p-l-165 {
7070
    padding-left: 165px;
7071
}
7072
 
7073
.m-b-165 {
7074
    margin-bottom: 165px;
7075
}
7076
 
7077
.m-t-165 {
7078
    margin-top: 165px;
7079
}
7080
 
7081
.m-r-165 {
7082
    margin-right: 165px;
7083
}
7084
 
7085
.m-l-165 {
7086
    margin-left: 165px;
7087
}
7088
 
7089
.p-b-170 {
7090
    padding-bottom: 170px;
7091
}
7092
 
7093
.p-t-170 {
7094
    padding-top: 170px;
7095
}
7096
 
7097
.p-r-170 {
7098
    padding-right: 170px;
7099
}
7100
 
7101
.p-l-170 {
7102
    padding-left: 170px;
7103
}
7104
 
7105
.m-b-170 {
7106
    margin-bottom: 170px;
7107
}
7108
 
7109
.m-t-170 {
7110
    margin-top: 170px;
7111
}
7112
 
7113
.m-r-170 {
7114
    margin-right: 170px;
7115
}
7116
 
7117
.m-l-170 {
7118
    margin-left: 170px;
7119
}
7120
 
7121
.p-b-175 {
7122
    padding-bottom: 175px;
7123
}
7124
 
7125
.p-t-175 {
7126
    padding-top: 175px;
7127
}
7128
 
7129
.p-r-175 {
7130
    padding-right: 175px;
7131
}
7132
 
7133
.p-l-175 {
7134
    padding-left: 175px;
7135
}
7136
 
7137
.m-b-175 {
7138
    margin-bottom: 175px;
7139
}
7140
 
7141
.m-t-175 {
7142
    margin-top: 175px;
7143
}
7144
 
7145
.m-r-175 {
7146
    margin-right: 175px;
7147
}
7148
 
7149
.m-l-175 {
7150
    margin-left: 175px;
7151
}
7152
 
7153
.p-b-180 {
7154
    padding-bottom: 180px;
7155
}
7156
 
7157
.p-t-180 {
7158
    padding-top: 180px;
7159
}
7160
 
7161
.p-r-180 {
7162
    padding-right: 180px;
7163
}
7164
 
7165
.p-l-180 {
7166
    padding-left: 180px;
7167
}
7168
 
7169
.m-b-180 {
7170
    margin-bottom: 180px;
7171
}
7172
 
7173
.m-t-180 {
7174
    margin-top: 180px;
7175
}
7176
 
7177
.m-r-180 {
7178
    margin-right: 180px;
7179
}
7180
 
7181
.m-l-180 {
7182
    margin-left: 180px;
7183
}
7184
 
7185
.p-b-185 {
7186
    padding-bottom: 185px;
7187
}
7188
 
7189
.p-t-185 {
7190
    padding-top: 185px;
7191
}
7192
 
7193
.p-r-185 {
7194
    padding-right: 185px;
7195
}
7196
 
7197
.p-l-185 {
7198
    padding-left: 185px;
7199
}
7200
 
7201
.m-b-185 {
7202
    margin-bottom: 185px;
7203
}
7204
 
7205
.m-t-185 {
7206
    margin-top: 185px;
7207
}
7208
 
7209
.m-r-185 {
7210
    margin-right: 185px;
7211
}
7212
 
7213
.m-l-185 {
7214
    margin-left: 185px;
7215
}
7216
 
7217
.p-b-190 {
7218
    padding-bottom: 190px;
7219
}
7220
 
7221
.p-t-190 {
7222
    padding-top: 190px;
7223
}
7224
 
7225
.p-r-190 {
7226
    padding-right: 190px;
7227
}
7228
 
7229
.p-l-190 {
7230
    padding-left: 190px;
7231
}
7232
 
7233
.m-b-190 {
7234
    margin-bottom: 190px;
7235
}
7236
 
7237
.m-t-190 {
7238
    margin-top: 190px;
7239
}
7240
 
7241
.m-r-190 {
7242
    margin-right: 190px;
7243
}
7244
 
7245
.m-l-190 {
7246
    margin-left: 190px;
7247
}
7248
 
7249
.p-b-195 {
7250
    padding-bottom: 195px;
7251
}
7252
 
7253
.p-t-195 {
7254
    padding-top: 195px;
7255
}
7256
 
7257
.p-r-195 {
7258
    padding-right: 195px;
7259
}
7260
 
7261
.p-l-195 {
7262
    padding-left: 195px;
7263
}
7264
 
7265
.m-b-195 {
7266
    margin-bottom: 195px;
7267
}
7268
 
7269
.m-t-195 {
7270
    margin-top: 195px;
7271
}
7272
 
7273
.m-r-195 {
7274
    margin-right: 195px;
7275
}
7276
 
7277
.m-l-195 {
7278
    margin-left: 195px;
7279
}
7280
 
7281
.p-b-200 {
7282
    padding-bottom: 200px;
7283
}
7284
 
7285
.p-t-200 {
7286
    padding-top: 200px;
7287
}
7288
 
7289
.p-r-200 {
7290
    padding-right: 200px;
7291
}
7292
 
7293
.p-l-200 {
7294
    padding-left: 200px;
7295
}
7296
 
7297
.m-b-200 {
7298
    margin-bottom: 200px;
7299
}
7300
 
7301
.m-t-200 {
7302
    margin-top: 200px;
7303
}
7304
 
7305
.m-r-200 {
7306
    margin-right: 200px;
7307
}
7308
 
7309
.m-l-200 {
7310
    margin-left: 200px;
7311
}
7312
 
7313
.p-b-205 {
7314
    padding-bottom: 205px;
7315
}
7316
 
7317
.p-t-205 {
7318
    padding-top: 205px;
7319
}
7320
 
7321
.p-r-205 {
7322
    padding-right: 205px;
7323
}
7324
 
7325
.p-l-205 {
7326
    padding-left: 205px;
7327
}
7328
 
7329
.m-b-205 {
7330
    margin-bottom: 205px;
7331
}
7332
 
7333
.m-t-205 {
7334
    margin-top: 205px;
7335
}
7336
 
7337
.m-r-205 {
7338
    margin-right: 205px;
7339
}
7340
 
7341
.m-l-205 {
7342
    margin-left: 205px;
7343
}
7344
 
7345
.p-b-210 {
7346
    padding-bottom: 210px;
7347
}
7348
 
7349
.p-t-210 {
7350
    padding-top: 210px;
7351
}
7352
 
7353
.p-r-210 {
7354
    padding-right: 210px;
7355
}
7356
 
7357
.p-l-210 {
7358
    padding-left: 210px;
7359
}
7360
 
7361
.m-b-210 {
7362
    margin-bottom: 210px;
7363
}
7364
 
7365
.m-t-210 {
7366
    margin-top: 210px;
7367
}
7368
 
7369
.m-r-210 {
7370
    margin-right: 210px;
7371
}
7372
 
7373
.m-l-210 {
7374
    margin-left: 210px;
7375
}
7376
 
7377
.p-b-215 {
7378
    padding-bottom: 215px;
7379
}
7380
 
7381
.p-t-215 {
7382
    padding-top: 215px;
7383
}
7384
 
7385
.p-r-215 {
7386
    padding-right: 215px;
7387
}
7388
 
7389
.p-l-215 {
7390
    padding-left: 215px;
7391
}
7392
 
7393
.m-b-215 {
7394
    margin-bottom: 215px;
7395
}
7396
 
7397
.m-t-215 {
7398
    margin-top: 215px;
7399
}
7400
 
7401
.m-r-215 {
7402
    margin-right: 215px;
7403
}
7404
 
7405
.m-l-215 {
7406
    margin-left: 215px;
7407
}
7408
 
7409
.p-b-220 {
7410
    padding-bottom: 220px;
7411
}
7412
 
7413
.p-t-220 {
7414
    padding-top: 220px;
7415
}
7416
 
7417
.p-r-220 {
7418
    padding-right: 220px;
7419
}
7420
 
7421
.p-l-220 {
7422
    padding-left: 220px;
7423
}
7424
 
7425
.m-b-220 {
7426
    margin-bottom: 220px;
7427
}
7428
 
7429
.m-t-220 {
7430
    margin-top: 220px;
7431
}
7432
 
7433
.m-r-220 {
7434
    margin-right: 220px;
7435
}
7436
 
7437
.m-l-220 {
7438
    margin-left: 220px;
7439
}
7440
 
7441
.p-b-225 {
7442
    padding-bottom: 225px;
7443
}
7444
 
7445
.p-t-225 {
7446
    padding-top: 225px;
7447
}
7448
 
7449
.p-r-225 {
7450
    padding-right: 225px;
7451
}
7452
 
7453
.p-l-225 {
7454
    padding-left: 225px;
7455
}
7456
 
7457
.m-b-225 {
7458
    margin-bottom: 225px;
7459
}
7460
 
7461
.m-t-225 {
7462
    margin-top: 225px;
7463
}
7464
 
7465
.m-r-225 {
7466
    margin-right: 225px;
7467
}
7468
 
7469
.m-l-225 {
7470
    margin-left: 225px;
7471
}
7472
 
7473
.p-b-230 {
7474
    padding-bottom: 230px;
7475
}
7476
 
7477
.p-t-230 {
7478
    padding-top: 230px;
7479
}
7480
 
7481
.p-r-230 {
7482
    padding-right: 230px;
7483
}
7484
 
7485
.p-l-230 {
7486
    padding-left: 230px;
7487
}
7488
 
7489
.m-b-230 {
7490
    margin-bottom: 230px;
7491
}
7492
 
7493
.m-t-230 {
7494
    margin-top: 230px;
7495
}
7496
 
7497
.m-r-230 {
7498
    margin-right: 230px;
7499
}
7500
 
7501
.m-l-230 {
7502
    margin-left: 230px;
7503
}
7504
 
7505
.p-b-235 {
7506
    padding-bottom: 235px;
7507
}
7508
 
7509
.p-t-235 {
7510
    padding-top: 235px;
7511
}
7512
 
7513
.p-r-235 {
7514
    padding-right: 235px;
7515
}
7516
 
7517
.p-l-235 {
7518
    padding-left: 235px;
7519
}
7520
 
7521
.m-b-235 {
7522
    margin-bottom: 235px;
7523
}
7524
 
7525
.m-t-235 {
7526
    margin-top: 235px;
7527
}
7528
 
7529
.m-r-235 {
7530
    margin-right: 235px;
7531
}
7532
 
7533
.m-l-235 {
7534
    margin-left: 235px;
7535
}
7536
 
7537
.p-b-240 {
7538
    padding-bottom: 240px;
7539
}
7540
 
7541
.p-t-240 {
7542
    padding-top: 240px;
7543
}
7544
 
7545
.p-r-240 {
7546
    padding-right: 240px;
7547
}
7548
 
7549
.p-l-240 {
7550
    padding-left: 240px;
7551
}
7552
 
7553
.m-b-240 {
7554
    margin-bottom: 240px;
7555
}
7556
 
7557
.m-t-240 {
7558
    margin-top: 240px;
7559
}
7560
 
7561
.m-r-240 {
7562
    margin-right: 240px;
7563
}
7564
 
7565
.m-l-240 {
7566
    margin-left: 240px;
7567
}
7568
 
7569
.p-b-245 {
7570
    padding-bottom: 245px;
7571
}
7572
 
7573
.p-t-245 {
7574
    padding-top: 245px;
7575
}
7576
 
7577
.p-r-245 {
7578
    padding-right: 245px;
7579
}
7580
 
7581
.p-l-245 {
7582
    padding-left: 245px;
7583
}
7584
 
7585
.m-b-245 {
7586
    margin-bottom: 245px;
7587
}
7588
 
7589
.m-t-245 {
7590
    margin-top: 245px;
7591
}
7592
 
7593
.m-r-245 {
7594
    margin-right: 245px;
7595
}
7596
 
7597
.m-l-245 {
7598
    margin-left: 245px;
7599
}
7600
 
7601
.p-b-250 {
7602
    padding-bottom: 250px;
7603
}
7604
 
7605
.p-t-250 {
7606
    padding-top: 250px;
7607
}
7608
 
7609
.p-r-250 {
7610
    padding-right: 250px;
7611
}
7612
 
7613
.p-l-250 {
7614
    padding-left: 250px;
7615
}
7616
 
7617
.m-b-250 {
7618
    margin-bottom: 250px;
7619
}
7620
 
7621
.m-t-250 {
7622
    margin-top: 250px;
7623
}
7624
 
7625
.m-r-250 {
7626
    margin-right: 250px;
7627
}
7628
 
7629
.m-l-250 {
7630
    margin-left: 250px;
7631
}
7632
 
7633
@media (max-width: 1023px) {
7634
    .p-lg-b-0 {
7635
        padding-bottom: 0px;
7636
    }
7637
 
7638
    .p-lg-t-0 {
7639
        padding-top: 0px;
7640
    }
7641
 
7642
    .p-lg-r-0 {
7643
        padding-right: 0px;
7644
    }
7645
 
7646
    .p-lg-l-0 {
7647
        padding-left: 0px;
7648
    }
7649
 
7650
    .m-lg-b-0 {
7651
        margin-bottom: 0px;
7652
    }
7653
 
7654
    .m-lg-t-0 {
7655
        margin-top: 0px;
7656
    }
7657
 
7658
    .m-lg-r-0 {
7659
        margin-right: 0px;
7660
    }
7661
 
7662
    .m-lg-l-0 {
7663
        margin-left: 0px;
7664
    }
7665
}
7666
 
7667
@media (max-width: 991px) {
7668
    .p-md-b-0 {
7669
        padding-bottom: 0px;
7670
    }
7671
 
7672
    .p-md-t-0 {
7673
        padding-top: 0px;
7674
    }
7675
 
7676
    .p-md-r-0 {
7677
        padding-right: 0px;
7678
    }
7679
 
7680
    .p-md-l-0 {
7681
        padding-left: 0px;
7682
    }
7683
 
7684
    .m-md-b-0 {
7685
        margin-bottom: 0px;
7686
    }
7687
 
7688
    .m-md-t-0 {
7689
        margin-top: 0px;
7690
    }
7691
 
7692
    .m-md-r-0 {
7693
        margin-right: 0px;
7694
    }
7695
 
7696
    .m-md-l-0 {
7697
        margin-left: 0px;
7698
    }
7699
}
7700
 
7701
@media (max-width: 767px) {
7702
    .p-sm-b-0 {
7703
        padding-bottom: 0px;
7704
    }
7705
 
7706
    .p-sm-t-0 {
7707
        padding-top: 0px;
7708
    }
7709
 
7710
    .p-sm-r-0 {
7711
        padding-right: 0px;
7712
    }
7713
 
7714
    .p-sm-l-0 {
7715
        padding-left: 0px;
7716
    }
7717
 
7718
    .m-sm-b-0 {
7719
        margin-bottom: 0px;
7720
    }
7721
 
7722
    .m-sm-t-0 {
7723
        margin-top: 0px;
7724
    }
7725
 
7726
    .m-sm-r-0 {
7727
        margin-right: 0px;
7728
    }
7729
 
7730
    .m-sm-l-0 {
7731
        margin-left: 0px;
7732
    }
7733
}
7734
 
7735
@media (max-width: 575px) {
7736
    .p-xs-b-0 {
7737
        padding-bottom: 0px;
7738
    }
7739
 
7740
    .p-xs-t-0 {
7741
        padding-top: 0px;
7742
    }
7743
 
7744
    .p-xs-r-0 {
7745
        padding-right: 0px;
7746
    }
7747
 
7748
    .p-xs-l-0 {
7749
        padding-left: 0px;
7750
    }
7751
 
7752
    .m-xs-b-0 {
7753
        margin-bottom: 0px;
7754
    }
7755
 
7756
    .m-xs-t-0 {
7757
        margin-top: 0px;
7758
    }
7759
 
7760
    .m-xs-r-0 {
7761
        margin-right: 0px;
7762
    }
7763
 
7764
    .m-xs-l-0 {
7765
        margin-left: 0px;
7766
    }
7767
}
7768
 
7769
@media (max-width: 1023px) {
7770
    .p-lg-b-5 {
7771
        padding-bottom: 5px;
7772
    }
7773
 
7774
    .p-lg-t-5 {
7775
        padding-top: 5px;
7776
    }
7777
 
7778
    .p-lg-r-5 {
7779
        padding-right: 5px;
7780
    }
7781
 
7782
    .p-lg-l-5 {
7783
        padding-left: 5px;
7784
    }
7785
 
7786
    .m-lg-b-5 {
7787
        margin-bottom: 5px;
7788
    }
7789
 
7790
    .m-lg-t-5 {
7791
        margin-top: 5px;
7792
    }
7793
 
7794
    .m-lg-r-5 {
7795
        margin-right: 5px;
7796
    }
7797
 
7798
    .m-lg-l-5 {
7799
        margin-left: 5px;
7800
    }
7801
}
7802
 
7803
@media (max-width: 991px) {
7804
    .p-md-b-5 {
7805
        padding-bottom: 5px;
7806
    }
7807
 
7808
    .p-md-t-5 {
7809
        padding-top: 5px;
7810
    }
7811
 
7812
    .p-md-r-5 {
7813
        padding-right: 5px;
7814
    }
7815
 
7816
    .p-md-l-5 {
7817
        padding-left: 5px;
7818
    }
7819
 
7820
    .m-md-b-5 {
7821
        margin-bottom: 5px;
7822
    }
7823
 
7824
    .m-md-t-5 {
7825
        margin-top: 5px;
7826
    }
7827
 
7828
    .m-md-r-5 {
7829
        margin-right: 5px;
7830
    }
7831
 
7832
    .m-md-l-5 {
7833
        margin-left: 5px;
7834
    }
7835
}
7836
 
7837
@media (max-width: 767px) {
7838
    .p-sm-b-5 {
7839
        padding-bottom: 5px;
7840
    }
7841
 
7842
    .p-sm-t-5 {
7843
        padding-top: 5px;
7844
    }
7845
 
7846
    .p-sm-r-5 {
7847
        padding-right: 5px;
7848
    }
7849
 
7850
    .p-sm-l-5 {
7851
        padding-left: 5px;
7852
    }
7853
 
7854
    .m-sm-b-5 {
7855
        margin-bottom: 5px;
7856
    }
7857
 
7858
    .m-sm-t-5 {
7859
        margin-top: 5px;
7860
    }
7861
 
7862
    .m-sm-r-5 {
7863
        margin-right: 5px;
7864
    }
7865
 
7866
    .m-sm-l-5 {
7867
        margin-left: 5px;
7868
    }
7869
}
7870
 
7871
@media (max-width: 575px) {
7872
    .p-xs-b-5 {
7873
        padding-bottom: 5px;
7874
    }
7875
 
7876
    .p-xs-t-5 {
7877
        padding-top: 5px;
7878
    }
7879
 
7880
    .p-xs-r-5 {
7881
        padding-right: 5px;
7882
    }
7883
 
7884
    .p-xs-l-5 {
7885
        padding-left: 5px;
7886
    }
7887
 
7888
    .m-xs-b-5 {
7889
        margin-bottom: 5px;
7890
    }
7891
 
7892
    .m-xs-t-5 {
7893
        margin-top: 5px;
7894
    }
7895
 
7896
    .m-xs-r-5 {
7897
        margin-right: 5px;
7898
    }
7899
 
7900
    .m-xs-l-5 {
7901
        margin-left: 5px;
7902
    }
7903
}
7904
 
7905
@media (max-width: 1023px) {
7906
    .p-lg-b-10 {
7907
        padding-bottom: 10px;
7908
    }
7909
 
7910
    .p-lg-t-10 {
7911
        padding-top: 10px;
7912
    }
7913
 
7914
    .p-lg-r-10 {
7915
        padding-right: 10px;
7916
    }
7917
 
7918
    .p-lg-l-10 {
7919
        padding-left: 10px;
7920
    }
7921
 
7922
    .m-lg-b-10 {
7923
        margin-bottom: 10px;
7924
    }
7925
 
7926
    .m-lg-t-10 {
7927
        margin-top: 10px;
7928
    }
7929
 
7930
    .m-lg-r-10 {
7931
        margin-right: 10px;
7932
    }
7933
 
7934
    .m-lg-l-10 {
7935
        margin-left: 10px;
7936
    }
7937
}
7938
 
7939
@media (max-width: 991px) {
7940
    .p-md-b-10 {
7941
        padding-bottom: 10px;
7942
    }
7943
 
7944
    .p-md-t-10 {
7945
        padding-top: 10px;
7946
    }
7947
 
7948
    .p-md-r-10 {
7949
        padding-right: 10px;
7950
    }
7951
 
7952
    .p-md-l-10 {
7953
        padding-left: 10px;
7954
    }
7955
 
7956
    .m-md-b-10 {
7957
        margin-bottom: 10px;
7958
    }
7959
 
7960
    .m-md-t-10 {
7961
        margin-top: 10px;
7962
    }
7963
 
7964
    .m-md-r-10 {
7965
        margin-right: 10px;
7966
    }
7967
 
7968
    .m-md-l-10 {
7969
        margin-left: 10px;
7970
    }
7971
}
7972
 
7973
@media (max-width: 767px) {
7974
    .p-sm-b-10 {
7975
        padding-bottom: 10px;
7976
    }
7977
 
7978
    .p-sm-t-10 {
7979
        padding-top: 10px;
7980
    }
7981
 
7982
    .p-sm-r-10 {
7983
        padding-right: 10px;
7984
    }
7985
 
7986
    .p-sm-l-10 {
7987
        padding-left: 10px;
7988
    }
7989
 
7990
    .m-sm-b-10 {
7991
        margin-bottom: 10px;
7992
    }
7993
 
7994
    .m-sm-t-10 {
7995
        margin-top: 10px;
7996
    }
7997
 
7998
    .m-sm-r-10 {
7999
        margin-right: 10px;
8000
    }
8001
 
8002
    .m-sm-l-10 {
8003
        margin-left: 10px;
8004
    }
8005
}
8006
 
8007
@media (max-width: 575px) {
8008
    .p-xs-b-10 {
8009
        padding-bottom: 10px;
8010
    }
8011
 
8012
    .p-xs-t-10 {
8013
        padding-top: 10px;
8014
    }
8015
 
8016
    .p-xs-r-10 {
8017
        padding-right: 10px;
8018
    }
8019
 
8020
    .p-xs-l-10 {
8021
        padding-left: 10px;
8022
    }
8023
 
8024
    .m-xs-b-10 {
8025
        margin-bottom: 10px;
8026
    }
8027
 
8028
    .m-xs-t-10 {
8029
        margin-top: 10px;
8030
    }
8031
 
8032
    .m-xs-r-10 {
8033
        margin-right: 10px;
8034
    }
8035
 
8036
    .m-xs-l-10 {
8037
        margin-left: 10px;
8038
    }
8039
}
8040
 
8041
@media (max-width: 1023px) {
8042
    .p-lg-b-15 {
8043
        padding-bottom: 15px;
8044
    }
8045
 
8046
    .p-lg-t-15 {
8047
        padding-top: 15px;
8048
    }
8049
 
8050
    .p-lg-r-15 {
8051
        padding-right: 15px;
8052
    }
8053
 
8054
    .p-lg-l-15 {
8055
        padding-left: 15px;
8056
    }
8057
 
8058
    .m-lg-b-15 {
8059
        margin-bottom: 15px;
8060
    }
8061
 
8062
    .m-lg-t-15 {
8063
        margin-top: 15px;
8064
    }
8065
 
8066
    .m-lg-r-15 {
8067
        margin-right: 15px;
8068
    }
8069
 
8070
    .m-lg-l-15 {
8071
        margin-left: 15px;
8072
    }
8073
}
8074
 
8075
@media (max-width: 991px) {
8076
    .p-md-b-15 {
8077
        padding-bottom: 15px;
8078
    }
8079
 
8080
    .p-md-t-15 {
8081
        padding-top: 15px;
8082
    }
8083
 
8084
    .p-md-r-15 {
8085
        padding-right: 15px;
8086
    }
8087
 
8088
    .p-md-l-15 {
8089
        padding-left: 15px;
8090
    }
8091
 
8092
    .m-md-b-15 {
8093
        margin-bottom: 15px;
8094
    }
8095
 
8096
    .m-md-t-15 {
8097
        margin-top: 15px;
8098
    }
8099
 
8100
    .m-md-r-15 {
8101
        margin-right: 15px;
8102
    }
8103
 
8104
    .m-md-l-15 {
8105
        margin-left: 15px;
8106
    }
8107
}
8108
 
8109
@media (max-width: 767px) {
8110
    .p-sm-b-15 {
8111
        padding-bottom: 15px;
8112
    }
8113
 
8114
    .p-sm-t-15 {
8115
        padding-top: 15px;
8116
    }
8117
 
8118
    .p-sm-r-15 {
8119
        padding-right: 15px;
8120
    }
8121
 
8122
    .p-sm-l-15 {
8123
        padding-left: 15px;
8124
    }
8125
 
8126
    .m-sm-b-15 {
8127
        margin-bottom: 15px;
8128
    }
8129
 
8130
    .m-sm-t-15 {
8131
        margin-top: 15px;
8132
    }
8133
 
8134
    .m-sm-r-15 {
8135
        margin-right: 15px;
8136
    }
8137
 
8138
    .m-sm-l-15 {
8139
        margin-left: 15px;
8140
    }
8141
}
8142
 
8143
@media (max-width: 575px) {
8144
    .p-xs-b-15 {
8145
        padding-bottom: 15px;
8146
    }
8147
 
8148
    .p-xs-t-15 {
8149
        padding-top: 15px;
8150
    }
8151
 
8152
    .p-xs-r-15 {
8153
        padding-right: 15px;
8154
    }
8155
 
8156
    .p-xs-l-15 {
8157
        padding-left: 15px;
8158
    }
8159
 
8160
    .m-xs-b-15 {
8161
        margin-bottom: 15px;
8162
    }
8163
 
8164
    .m-xs-t-15 {
8165
        margin-top: 15px;
8166
    }
8167
 
8168
    .m-xs-r-15 {
8169
        margin-right: 15px;
8170
    }
8171
 
8172
    .m-xs-l-15 {
8173
        margin-left: 15px;
8174
    }
8175
}
8176
 
8177
@media (max-width: 1023px) {
8178
    .p-lg-b-20 {
8179
        padding-bottom: 20px;
8180
    }
8181
 
8182
    .p-lg-t-20 {
8183
        padding-top: 20px;
8184
    }
8185
 
8186
    .p-lg-r-20 {
8187
        padding-right: 20px;
8188
    }
8189
 
8190
    .p-lg-l-20 {
8191
        padding-left: 20px;
8192
    }
8193
 
8194
    .m-lg-b-20 {
8195
        margin-bottom: 20px;
8196
    }
8197
 
8198
    .m-lg-t-20 {
8199
        margin-top: 20px;
8200
    }
8201
 
8202
    .m-lg-r-20 {
8203
        margin-right: 20px;
8204
    }
8205
 
8206
    .m-lg-l-20 {
8207
        margin-left: 20px;
8208
    }
8209
}
8210
 
8211
@media (max-width: 991px) {
8212
    .p-md-b-20 {
8213
        padding-bottom: 20px;
8214
    }
8215
 
8216
    .p-md-t-20 {
8217
        padding-top: 20px;
8218
    }
8219
 
8220
    .p-md-r-20 {
8221
        padding-right: 20px;
8222
    }
8223
 
8224
    .p-md-l-20 {
8225
        padding-left: 20px;
8226
    }
8227
 
8228
    .m-md-b-20 {
8229
        margin-bottom: 20px;
8230
    }
8231
 
8232
    .m-md-t-20 {
8233
        margin-top: 20px;
8234
    }
8235
 
8236
    .m-md-r-20 {
8237
        margin-right: 20px;
8238
    }
8239
 
8240
    .m-md-l-20 {
8241
        margin-left: 20px;
8242
    }
8243
}
8244
 
8245
@media (max-width: 767px) {
8246
    .p-sm-b-20 {
8247
        padding-bottom: 20px;
8248
    }
8249
 
8250
    .p-sm-t-20 {
8251
        padding-top: 20px;
8252
    }
8253
 
8254
    .p-sm-r-20 {
8255
        padding-right: 20px;
8256
    }
8257
 
8258
    .p-sm-l-20 {
8259
        padding-left: 20px;
8260
    }
8261
 
8262
    .m-sm-b-20 {
8263
        margin-bottom: 20px;
8264
    }
8265
 
8266
    .m-sm-t-20 {
8267
        margin-top: 20px;
8268
    }
8269
 
8270
    .m-sm-r-20 {
8271
        margin-right: 20px;
8272
    }
8273
 
8274
    .m-sm-l-20 {
8275
        margin-left: 20px;
8276
    }
8277
}
8278
 
8279
@media (max-width: 575px) {
8280
    .p-xs-b-20 {
8281
        padding-bottom: 20px;
8282
    }
8283
 
8284
    .p-xs-t-20 {
8285
        padding-top: 20px;
8286
    }
8287
 
8288
    .p-xs-r-20 {
8289
        padding-right: 20px;
8290
    }
8291
 
8292
    .p-xs-l-20 {
8293
        padding-left: 20px;
8294
    }
8295
 
8296
    .m-xs-b-20 {
8297
        margin-bottom: 20px;
8298
    }
8299
 
8300
    .m-xs-t-20 {
8301
        margin-top: 20px;
8302
    }
8303
 
8304
    .m-xs-r-20 {
8305
        margin-right: 20px;
8306
    }
8307
 
8308
    .m-xs-l-20 {
8309
        margin-left: 20px;
8310
    }
8311
}
8312
 
8313
@media (max-width: 1023px) {
8314
    .p-lg-b-25 {
8315
        padding-bottom: 25px;
8316
    }
8317
 
8318
    .p-lg-t-25 {
8319
        padding-top: 25px;
8320
    }
8321
 
8322
    .p-lg-r-25 {
8323
        padding-right: 25px;
8324
    }
8325
 
8326
    .p-lg-l-25 {
8327
        padding-left: 25px;
8328
    }
8329
 
8330
    .m-lg-b-25 {
8331
        margin-bottom: 25px;
8332
    }
8333
 
8334
    .m-lg-t-25 {
8335
        margin-top: 25px;
8336
    }
8337
 
8338
    .m-lg-r-25 {
8339
        margin-right: 25px;
8340
    }
8341
 
8342
    .m-lg-l-25 {
8343
        margin-left: 25px;
8344
    }
8345
}
8346
 
8347
@media (max-width: 991px) {
8348
    .p-md-b-25 {
8349
        padding-bottom: 25px;
8350
    }
8351
 
8352
    .p-md-t-25 {
8353
        padding-top: 25px;
8354
    }
8355
 
8356
    .p-md-r-25 {
8357
        padding-right: 25px;
8358
    }
8359
 
8360
    .p-md-l-25 {
8361
        padding-left: 25px;
8362
    }
8363
 
8364
    .m-md-b-25 {
8365
        margin-bottom: 25px;
8366
    }
8367
 
8368
    .m-md-t-25 {
8369
        margin-top: 25px;
8370
    }
8371
 
8372
    .m-md-r-25 {
8373
        margin-right: 25px;
8374
    }
8375
 
8376
    .m-md-l-25 {
8377
        margin-left: 25px;
8378
    }
8379
}
8380
 
8381
@media (max-width: 767px) {
8382
    .p-sm-b-25 {
8383
        padding-bottom: 25px;
8384
    }
8385
 
8386
    .p-sm-t-25 {
8387
        padding-top: 25px;
8388
    }
8389
 
8390
    .p-sm-r-25 {
8391
        padding-right: 25px;
8392
    }
8393
 
8394
    .p-sm-l-25 {
8395
        padding-left: 25px;
8396
    }
8397
 
8398
    .m-sm-b-25 {
8399
        margin-bottom: 25px;
8400
    }
8401
 
8402
    .m-sm-t-25 {
8403
        margin-top: 25px;
8404
    }
8405
 
8406
    .m-sm-r-25 {
8407
        margin-right: 25px;
8408
    }
8409
 
8410
    .m-sm-l-25 {
8411
        margin-left: 25px;
8412
    }
8413
}
8414
 
8415
@media (max-width: 575px) {
8416
    .p-xs-b-25 {
8417
        padding-bottom: 25px;
8418
    }
8419
 
8420
    .p-xs-t-25 {
8421
        padding-top: 25px;
8422
    }
8423
 
8424
    .p-xs-r-25 {
8425
        padding-right: 25px;
8426
    }
8427
 
8428
    .p-xs-l-25 {
8429
        padding-left: 25px;
8430
    }
8431
 
8432
    .m-xs-b-25 {
8433
        margin-bottom: 25px;
8434
    }
8435
 
8436
    .m-xs-t-25 {
8437
        margin-top: 25px;
8438
    }
8439
 
8440
    .m-xs-r-25 {
8441
        margin-right: 25px;
8442
    }
8443
 
8444
    .m-xs-l-25 {
8445
        margin-left: 25px;
8446
    }
8447
}
8448
 
8449
@media (max-width: 1023px) {
8450
    .p-lg-b-30 {
8451
        padding-bottom: 30px;
8452
    }
8453
 
8454
    .p-lg-t-30 {
8455
        padding-top: 30px;
8456
    }
8457
 
8458
    .p-lg-r-30 {
8459
        padding-right: 30px;
8460
    }
8461
 
8462
    .p-lg-l-30 {
8463
        padding-left: 30px;
8464
    }
8465
 
8466
    .m-lg-b-30 {
8467
        margin-bottom: 30px;
8468
    }
8469
 
8470
    .m-lg-t-30 {
8471
        margin-top: 30px;
8472
    }
8473
 
8474
    .m-lg-r-30 {
8475
        margin-right: 30px;
8476
    }
8477
 
8478
    .m-lg-l-30 {
8479
        margin-left: 30px;
8480
    }
8481
}
8482
 
8483
@media (max-width: 991px) {
8484
    .p-md-b-30 {
8485
        padding-bottom: 30px;
8486
    }
8487
 
8488
    .p-md-t-30 {
8489
        padding-top: 30px;
8490
    }
8491
 
8492
    .p-md-r-30 {
8493
        padding-right: 30px;
8494
    }
8495
 
8496
    .p-md-l-30 {
8497
        padding-left: 30px;
8498
    }
8499
 
8500
    .m-md-b-30 {
8501
        margin-bottom: 30px;
8502
    }
8503
 
8504
    .m-md-t-30 {
8505
        margin-top: 30px;
8506
    }
8507
 
8508
    .m-md-r-30 {
8509
        margin-right: 30px;
8510
    }
8511
 
8512
    .m-md-l-30 {
8513
        margin-left: 30px;
8514
    }
8515
}
8516
 
8517
@media (max-width: 767px) {
8518
    .p-sm-b-30 {
8519
        padding-bottom: 30px;
8520
    }
8521
 
8522
    .p-sm-t-30 {
8523
        padding-top: 30px;
8524
    }
8525
 
8526
    .p-sm-r-30 {
8527
        padding-right: 30px;
8528
    }
8529
 
8530
    .p-sm-l-30 {
8531
        padding-left: 30px;
8532
    }
8533
 
8534
    .m-sm-b-30 {
8535
        margin-bottom: 30px;
8536
    }
8537
 
8538
    .m-sm-t-30 {
8539
        margin-top: 30px;
8540
    }
8541
 
8542
    .m-sm-r-30 {
8543
        margin-right: 30px;
8544
    }
8545
 
8546
    .m-sm-l-30 {
8547
        margin-left: 30px;
8548
    }
8549
}
8550
 
8551
@media (max-width: 575px) {
8552
    .p-xs-b-30 {
8553
        padding-bottom: 30px;
8554
    }
8555
 
8556
    .p-xs-t-30 {
8557
        padding-top: 30px;
8558
    }
8559
 
8560
    .p-xs-r-30 {
8561
        padding-right: 30px;
8562
    }
8563
 
8564
    .p-xs-l-30 {
8565
        padding-left: 30px;
8566
    }
8567
 
8568
    .m-xs-b-30 {
8569
        margin-bottom: 30px;
8570
    }
8571
 
8572
    .m-xs-t-30 {
8573
        margin-top: 30px;
8574
    }
8575
 
8576
    .m-xs-r-30 {
8577
        margin-right: 30px;
8578
    }
8579
 
8580
    .m-xs-l-30 {
8581
        margin-left: 30px;
8582
    }
8583
}
8584
 
8585
@media (max-width: 1023px) {
8586
    .p-lg-b-35 {
8587
        padding-bottom: 35px;
8588
    }
8589
 
8590
    .p-lg-t-35 {
8591
        padding-top: 35px;
8592
    }
8593
 
8594
    .p-lg-r-35 {
8595
        padding-right: 35px;
8596
    }
8597
 
8598
    .p-lg-l-35 {
8599
        padding-left: 35px;
8600
    }
8601
 
8602
    .m-lg-b-35 {
8603
        margin-bottom: 35px;
8604
    }
8605
 
8606
    .m-lg-t-35 {
8607
        margin-top: 35px;
8608
    }
8609
 
8610
    .m-lg-r-35 {
8611
        margin-right: 35px;
8612
    }
8613
 
8614
    .m-lg-l-35 {
8615
        margin-left: 35px;
8616
    }
8617
}
8618
 
8619
@media (max-width: 991px) {
8620
    .p-md-b-35 {
8621
        padding-bottom: 35px;
8622
    }
8623
 
8624
    .p-md-t-35 {
8625
        padding-top: 35px;
8626
    }
8627
 
8628
    .p-md-r-35 {
8629
        padding-right: 35px;
8630
    }
8631
 
8632
    .p-md-l-35 {
8633
        padding-left: 35px;
8634
    }
8635
 
8636
    .m-md-b-35 {
8637
        margin-bottom: 35px;
8638
    }
8639
 
8640
    .m-md-t-35 {
8641
        margin-top: 35px;
8642
    }
8643
 
8644
    .m-md-r-35 {
8645
        margin-right: 35px;
8646
    }
8647
 
8648
    .m-md-l-35 {
8649
        margin-left: 35px;
8650
    }
8651
}
8652
 
8653
@media (max-width: 767px) {
8654
    .p-sm-b-35 {
8655
        padding-bottom: 35px;
8656
    }
8657
 
8658
    .p-sm-t-35 {
8659
        padding-top: 35px;
8660
    }
8661
 
8662
    .p-sm-r-35 {
8663
        padding-right: 35px;
8664
    }
8665
 
8666
    .p-sm-l-35 {
8667
        padding-left: 35px;
8668
    }
8669
 
8670
    .m-sm-b-35 {
8671
        margin-bottom: 35px;
8672
    }
8673
 
8674
    .m-sm-t-35 {
8675
        margin-top: 35px;
8676
    }
8677
 
8678
    .m-sm-r-35 {
8679
        margin-right: 35px;
8680
    }
8681
 
8682
    .m-sm-l-35 {
8683
        margin-left: 35px;
8684
    }
8685
}
8686
 
8687
@media (max-width: 575px) {
8688
    .p-xs-b-35 {
8689
        padding-bottom: 35px;
8690
    }
8691
 
8692
    .p-xs-t-35 {
8693
        padding-top: 35px;
8694
    }
8695
 
8696
    .p-xs-r-35 {
8697
        padding-right: 35px;
8698
    }
8699
 
8700
    .p-xs-l-35 {
8701
        padding-left: 35px;
8702
    }
8703
 
8704
    .m-xs-b-35 {
8705
        margin-bottom: 35px;
8706
    }
8707
 
8708
    .m-xs-t-35 {
8709
        margin-top: 35px;
8710
    }
8711
 
8712
    .m-xs-r-35 {
8713
        margin-right: 35px;
8714
    }
8715
 
8716
    .m-xs-l-35 {
8717
        margin-left: 35px;
8718
    }
8719
}
8720
 
8721
@media (max-width: 1023px) {
8722
    .p-lg-b-40 {
8723
        padding-bottom: 40px;
8724
    }
8725
 
8726
    .p-lg-t-40 {
8727
        padding-top: 40px;
8728
    }
8729
 
8730
    .p-lg-r-40 {
8731
        padding-right: 40px;
8732
    }
8733
 
8734
    .p-lg-l-40 {
8735
        padding-left: 40px;
8736
    }
8737
 
8738
    .m-lg-b-40 {
8739
        margin-bottom: 40px;
8740
    }
8741
 
8742
    .m-lg-t-40 {
8743
        margin-top: 40px;
8744
    }
8745
 
8746
    .m-lg-r-40 {
8747
        margin-right: 40px;
8748
    }
8749
 
8750
    .m-lg-l-40 {
8751
        margin-left: 40px;
8752
    }
8753
}
8754
 
8755
@media (max-width: 991px) {
8756
    .p-md-b-40 {
8757
        padding-bottom: 40px;
8758
    }
8759
 
8760
    .p-md-t-40 {
8761
        padding-top: 40px;
8762
    }
8763
 
8764
    .p-md-r-40 {
8765
        padding-right: 40px;
8766
    }
8767
 
8768
    .p-md-l-40 {
8769
        padding-left: 40px;
8770
    }
8771
 
8772
    .m-md-b-40 {
8773
        margin-bottom: 40px;
8774
    }
8775
 
8776
    .m-md-t-40 {
8777
        margin-top: 40px;
8778
    }
8779
 
8780
    .m-md-r-40 {
8781
        margin-right: 40px;
8782
    }
8783
 
8784
    .m-md-l-40 {
8785
        margin-left: 40px;
8786
    }
8787
}
8788
 
8789
@media (max-width: 767px) {
8790
    .p-sm-b-40 {
8791
        padding-bottom: 40px;
8792
    }
8793
 
8794
    .p-sm-t-40 {
8795
        padding-top: 40px;
8796
    }
8797
 
8798
    .p-sm-r-40 {
8799
        padding-right: 40px;
8800
    }
8801
 
8802
    .p-sm-l-40 {
8803
        padding-left: 40px;
8804
    }
8805
 
8806
    .m-sm-b-40 {
8807
        margin-bottom: 40px;
8808
    }
8809
 
8810
    .m-sm-t-40 {
8811
        margin-top: 40px;
8812
    }
8813
 
8814
    .m-sm-r-40 {
8815
        margin-right: 40px;
8816
    }
8817
 
8818
    .m-sm-l-40 {
8819
        margin-left: 40px;
8820
    }
8821
}
8822
 
8823
@media (max-width: 575px) {
8824
    .p-xs-b-40 {
8825
        padding-bottom: 40px;
8826
    }
8827
 
8828
    .p-xs-t-40 {
8829
        padding-top: 40px;
8830
    }
8831
 
8832
    .p-xs-r-40 {
8833
        padding-right: 40px;
8834
    }
8835
 
8836
    .p-xs-l-40 {
8837
        padding-left: 40px;
8838
    }
8839
 
8840
    .m-xs-b-40 {
8841
        margin-bottom: 40px;
8842
    }
8843
 
8844
    .m-xs-t-40 {
8845
        margin-top: 40px;
8846
    }
8847
 
8848
    .m-xs-r-40 {
8849
        margin-right: 40px;
8850
    }
8851
 
8852
    .m-xs-l-40 {
8853
        margin-left: 40px;
8854
    }
8855
}
8856
 
8857
@media (max-width: 1023px) {
8858
    .p-lg-b-45 {
8859
        padding-bottom: 45px;
8860
    }
8861
 
8862
    .p-lg-t-45 {
8863
        padding-top: 45px;
8864
    }
8865
 
8866
    .p-lg-r-45 {
8867
        padding-right: 45px;
8868
    }
8869
 
8870
    .p-lg-l-45 {
8871
        padding-left: 45px;
8872
    }
8873
 
8874
    .m-lg-b-45 {
8875
        margin-bottom: 45px;
8876
    }
8877
 
8878
    .m-lg-t-45 {
8879
        margin-top: 45px;
8880
    }
8881
 
8882
    .m-lg-r-45 {
8883
        margin-right: 45px;
8884
    }
8885
 
8886
    .m-lg-l-45 {
8887
        margin-left: 45px;
8888
    }
8889
}
8890
 
8891
@media (max-width: 991px) {
8892
    .p-md-b-45 {
8893
        padding-bottom: 45px;
8894
    }
8895
 
8896
    .p-md-t-45 {
8897
        padding-top: 45px;
8898
    }
8899
 
8900
    .p-md-r-45 {
8901
        padding-right: 45px;
8902
    }
8903
 
8904
    .p-md-l-45 {
8905
        padding-left: 45px;
8906
    }
8907
 
8908
    .m-md-b-45 {
8909
        margin-bottom: 45px;
8910
    }
8911
 
8912
    .m-md-t-45 {
8913
        margin-top: 45px;
8914
    }
8915
 
8916
    .m-md-r-45 {
8917
        margin-right: 45px;
8918
    }
8919
 
8920
    .m-md-l-45 {
8921
        margin-left: 45px;
8922
    }
8923
}
8924
 
8925
@media (max-width: 767px) {
8926
    .p-sm-b-45 {
8927
        padding-bottom: 45px;
8928
    }
8929
 
8930
    .p-sm-t-45 {
8931
        padding-top: 45px;
8932
    }
8933
 
8934
    .p-sm-r-45 {
8935
        padding-right: 45px;
8936
    }
8937
 
8938
    .p-sm-l-45 {
8939
        padding-left: 45px;
8940
    }
8941
 
8942
    .m-sm-b-45 {
8943
        margin-bottom: 45px;
8944
    }
8945
 
8946
    .m-sm-t-45 {
8947
        margin-top: 45px;
8948
    }
8949
 
8950
    .m-sm-r-45 {
8951
        margin-right: 45px;
8952
    }
8953
 
8954
    .m-sm-l-45 {
8955
        margin-left: 45px;
8956
    }
8957
}
8958
 
8959
@media (max-width: 575px) {
8960
    .p-xs-b-45 {
8961
        padding-bottom: 45px;
8962
    }
8963
 
8964
    .p-xs-t-45 {
8965
        padding-top: 45px;
8966
    }
8967
 
8968
    .p-xs-r-45 {
8969
        padding-right: 45px;
8970
    }
8971
 
8972
    .p-xs-l-45 {
8973
        padding-left: 45px;
8974
    }
8975
 
8976
    .m-xs-b-45 {
8977
        margin-bottom: 45px;
8978
    }
8979
 
8980
    .m-xs-t-45 {
8981
        margin-top: 45px;
8982
    }
8983
 
8984
    .m-xs-r-45 {
8985
        margin-right: 45px;
8986
    }
8987
 
8988
    .m-xs-l-45 {
8989
        margin-left: 45px;
8990
    }
8991
}
8992
 
8993
@media (max-width: 1023px) {
8994
    .p-lg-b-50 {
8995
        padding-bottom: 50px;
8996
    }
8997
 
8998
    .p-lg-t-50 {
8999
        padding-top: 50px;
9000
    }
9001
 
9002
    .p-lg-r-50 {
9003
        padding-right: 50px;
9004
    }
9005
 
9006
    .p-lg-l-50 {
9007
        padding-left: 50px;
9008
    }
9009
 
9010
    .m-lg-b-50 {
9011
        margin-bottom: 50px;
9012
    }
9013
 
9014
    .m-lg-t-50 {
9015
        margin-top: 50px;
9016
    }
9017
 
9018
    .m-lg-r-50 {
9019
        margin-right: 50px;
9020
    }
9021
 
9022
    .m-lg-l-50 {
9023
        margin-left: 50px;
9024
    }
9025
}
9026
 
9027
@media (max-width: 991px) {
9028
    .p-md-b-50 {
9029
        padding-bottom: 50px;
9030
    }
9031
 
9032
    .p-md-t-50 {
9033
        padding-top: 50px;
9034
    }
9035
 
9036
    .p-md-r-50 {
9037
        padding-right: 50px;
9038
    }
9039
 
9040
    .p-md-l-50 {
9041
        padding-left: 50px;
9042
    }
9043
 
9044
    .m-md-b-50 {
9045
        margin-bottom: 50px;
9046
    }
9047
 
9048
    .m-md-t-50 {
9049
        margin-top: 50px;
9050
    }
9051
 
9052
    .m-md-r-50 {
9053
        margin-right: 50px;
9054
    }
9055
 
9056
    .m-md-l-50 {
9057
        margin-left: 50px;
9058
    }
9059
}
9060
 
9061
@media (max-width: 767px) {
9062
    .p-sm-b-50 {
9063
        padding-bottom: 50px;
9064
    }
9065
 
9066
    .p-sm-t-50 {
9067
        padding-top: 50px;
9068
    }
9069
 
9070
    .p-sm-r-50 {
9071
        padding-right: 50px;
9072
    }
9073
 
9074
    .p-sm-l-50 {
9075
        padding-left: 50px;
9076
    }
9077
 
9078
    .m-sm-b-50 {
9079
        margin-bottom: 50px;
9080
    }
9081
 
9082
    .m-sm-t-50 {
9083
        margin-top: 50px;
9084
    }
9085
 
9086
    .m-sm-r-50 {
9087
        margin-right: 50px;
9088
    }
9089
 
9090
    .m-sm-l-50 {
9091
        margin-left: 50px;
9092
    }
9093
}
9094
 
9095
@media (max-width: 575px) {
9096
    .p-xs-b-50 {
9097
        padding-bottom: 50px;
9098
    }
9099
 
9100
    .p-xs-t-50 {
9101
        padding-top: 50px;
9102
    }
9103
 
9104
    .p-xs-r-50 {
9105
        padding-right: 50px;
9106
    }
9107
 
9108
    .p-xs-l-50 {
9109
        padding-left: 50px;
9110
    }
9111
 
9112
    .m-xs-b-50 {
9113
        margin-bottom: 50px;
9114
    }
9115
 
9116
    .m-xs-t-50 {
9117
        margin-top: 50px;
9118
    }
9119
 
9120
    .m-xs-r-50 {
9121
        margin-right: 50px;
9122
    }
9123
 
9124
    .m-xs-l-50 {
9125
        margin-left: 50px;
9126
    }
9127
}
9128
 
9129
@media (max-width: 1023px) {
9130
    .p-lg-b-55 {
9131
        padding-bottom: 55px;
9132
    }
9133
 
9134
    .p-lg-t-55 {
9135
        padding-top: 55px;
9136
    }
9137
 
9138
    .p-lg-r-55 {
9139
        padding-right: 55px;
9140
    }
9141
 
9142
    .p-lg-l-55 {
9143
        padding-left: 55px;
9144
    }
9145
 
9146
    .m-lg-b-55 {
9147
        margin-bottom: 55px;
9148
    }
9149
 
9150
    .m-lg-t-55 {
9151
        margin-top: 55px;
9152
    }
9153
 
9154
    .m-lg-r-55 {
9155
        margin-right: 55px;
9156
    }
9157
 
9158
    .m-lg-l-55 {
9159
        margin-left: 55px;
9160
    }
9161
}
9162
 
9163
@media (max-width: 991px) {
9164
    .p-md-b-55 {
9165
        padding-bottom: 55px;
9166
    }
9167
 
9168
    .p-md-t-55 {
9169
        padding-top: 55px;
9170
    }
9171
 
9172
    .p-md-r-55 {
9173
        padding-right: 55px;
9174
    }
9175
 
9176
    .p-md-l-55 {
9177
        padding-left: 55px;
9178
    }
9179
 
9180
    .m-md-b-55 {
9181
        margin-bottom: 55px;
9182
    }
9183
 
9184
    .m-md-t-55 {
9185
        margin-top: 55px;
9186
    }
9187
 
9188
    .m-md-r-55 {
9189
        margin-right: 55px;
9190
    }
9191
 
9192
    .m-md-l-55 {
9193
        margin-left: 55px;
9194
    }
9195
}
9196
 
9197
@media (max-width: 767px) {
9198
    .p-sm-b-55 {
9199
        padding-bottom: 55px;
9200
    }
9201
 
9202
    .p-sm-t-55 {
9203
        padding-top: 55px;
9204
    }
9205
 
9206
    .p-sm-r-55 {
9207
        padding-right: 55px;
9208
    }
9209
 
9210
    .p-sm-l-55 {
9211
        padding-left: 55px;
9212
    }
9213
 
9214
    .m-sm-b-55 {
9215
        margin-bottom: 55px;
9216
    }
9217
 
9218
    .m-sm-t-55 {
9219
        margin-top: 55px;
9220
    }
9221
 
9222
    .m-sm-r-55 {
9223
        margin-right: 55px;
9224
    }
9225
 
9226
    .m-sm-l-55 {
9227
        margin-left: 55px;
9228
    }
9229
}
9230
 
9231
@media (max-width: 575px) {
9232
    .p-xs-b-55 {
9233
        padding-bottom: 55px;
9234
    }
9235
 
9236
    .p-xs-t-55 {
9237
        padding-top: 55px;
9238
    }
9239
 
9240
    .p-xs-r-55 {
9241
        padding-right: 55px;
9242
    }
9243
 
9244
    .p-xs-l-55 {
9245
        padding-left: 55px;
9246
    }
9247
 
9248
    .m-xs-b-55 {
9249
        margin-bottom: 55px;
9250
    }
9251
 
9252
    .m-xs-t-55 {
9253
        margin-top: 55px;
9254
    }
9255
 
9256
    .m-xs-r-55 {
9257
        margin-right: 55px;
9258
    }
9259
 
9260
    .m-xs-l-55 {
9261
        margin-left: 55px;
9262
    }
9263
}
9264
 
9265
@media (max-width: 1023px) {
9266
    .p-lg-b-60 {
9267
        padding-bottom: 60px;
9268
    }
9269
 
9270
    .p-lg-t-60 {
9271
        padding-top: 60px;
9272
    }
9273
 
9274
    .p-lg-r-60 {
9275
        padding-right: 60px;
9276
    }
9277
 
9278
    .p-lg-l-60 {
9279
        padding-left: 60px;
9280
    }
9281
 
9282
    .m-lg-b-60 {
9283
        margin-bottom: 60px;
9284
    }
9285
 
9286
    .m-lg-t-60 {
9287
        margin-top: 60px;
9288
    }
9289
 
9290
    .m-lg-r-60 {
9291
        margin-right: 60px;
9292
    }
9293
 
9294
    .m-lg-l-60 {
9295
        margin-left: 60px;
9296
    }
9297
}
9298
 
9299
@media (max-width: 991px) {
9300
    .p-md-b-60 {
9301
        padding-bottom: 60px;
9302
    }
9303
 
9304
    .p-md-t-60 {
9305
        padding-top: 60px;
9306
    }
9307
 
9308
    .p-md-r-60 {
9309
        padding-right: 60px;
9310
    }
9311
 
9312
    .p-md-l-60 {
9313
        padding-left: 60px;
9314
    }
9315
 
9316
    .m-md-b-60 {
9317
        margin-bottom: 60px;
9318
    }
9319
 
9320
    .m-md-t-60 {
9321
        margin-top: 60px;
9322
    }
9323
 
9324
    .m-md-r-60 {
9325
        margin-right: 60px;
9326
    }
9327
 
9328
    .m-md-l-60 {
9329
        margin-left: 60px;
9330
    }
9331
}
9332
 
9333
@media (max-width: 767px) {
9334
    .p-sm-b-60 {
9335
        padding-bottom: 60px;
9336
    }
9337
 
9338
    .p-sm-t-60 {
9339
        padding-top: 60px;
9340
    }
9341
 
9342
    .p-sm-r-60 {
9343
        padding-right: 60px;
9344
    }
9345
 
9346
    .p-sm-l-60 {
9347
        padding-left: 60px;
9348
    }
9349
 
9350
    .m-sm-b-60 {
9351
        margin-bottom: 60px;
9352
    }
9353
 
9354
    .m-sm-t-60 {
9355
        margin-top: 60px;
9356
    }
9357
 
9358
    .m-sm-r-60 {
9359
        margin-right: 60px;
9360
    }
9361
 
9362
    .m-sm-l-60 {
9363
        margin-left: 60px;
9364
    }
9365
}
9366
 
9367
@media (max-width: 575px) {
9368
    .p-xs-b-60 {
9369
        padding-bottom: 60px;
9370
    }
9371
 
9372
    .p-xs-t-60 {
9373
        padding-top: 60px;
9374
    }
9375
 
9376
    .p-xs-r-60 {
9377
        padding-right: 60px;
9378
    }
9379
 
9380
    .p-xs-l-60 {
9381
        padding-left: 60px;
9382
    }
9383
 
9384
    .m-xs-b-60 {
9385
        margin-bottom: 60px;
9386
    }
9387
 
9388
    .m-xs-t-60 {
9389
        margin-top: 60px;
9390
    }
9391
 
9392
    .m-xs-r-60 {
9393
        margin-right: 60px;
9394
    }
9395
 
9396
    .m-xs-l-60 {
9397
        margin-left: 60px;
9398
    }
9399
}
9400
 
9401
@media (max-width: 1023px) {
9402
    .p-lg-b-65 {
9403
        padding-bottom: 65px;
9404
    }
9405
 
9406
    .p-lg-t-65 {
9407
        padding-top: 65px;
9408
    }
9409
 
9410
    .p-lg-r-65 {
9411
        padding-right: 65px;
9412
    }
9413
 
9414
    .p-lg-l-65 {
9415
        padding-left: 65px;
9416
    }
9417
 
9418
    .m-lg-b-65 {
9419
        margin-bottom: 65px;
9420
    }
9421
 
9422
    .m-lg-t-65 {
9423
        margin-top: 65px;
9424
    }
9425
 
9426
    .m-lg-r-65 {
9427
        margin-right: 65px;
9428
    }
9429
 
9430
    .m-lg-l-65 {
9431
        margin-left: 65px;
9432
    }
9433
}
9434
 
9435
@media (max-width: 991px) {
9436
    .p-md-b-65 {
9437
        padding-bottom: 65px;
9438
    }
9439
 
9440
    .p-md-t-65 {
9441
        padding-top: 65px;
9442
    }
9443
 
9444
    .p-md-r-65 {
9445
        padding-right: 65px;
9446
    }
9447
 
9448
    .p-md-l-65 {
9449
        padding-left: 65px;
9450
    }
9451
 
9452
    .m-md-b-65 {
9453
        margin-bottom: 65px;
9454
    }
9455
 
9456
    .m-md-t-65 {
9457
        margin-top: 65px;
9458
    }
9459
 
9460
    .m-md-r-65 {
9461
        margin-right: 65px;
9462
    }
9463
 
9464
    .m-md-l-65 {
9465
        margin-left: 65px;
9466
    }
9467
}
9468
 
9469
@media (max-width: 767px) {
9470
    .p-sm-b-65 {
9471
        padding-bottom: 65px;
9472
    }
9473
 
9474
    .p-sm-t-65 {
9475
        padding-top: 65px;
9476
    }
9477
 
9478
    .p-sm-r-65 {
9479
        padding-right: 65px;
9480
    }
9481
 
9482
    .p-sm-l-65 {
9483
        padding-left: 65px;
9484
    }
9485
 
9486
    .m-sm-b-65 {
9487
        margin-bottom: 65px;
9488
    }
9489
 
9490
    .m-sm-t-65 {
9491
        margin-top: 65px;
9492
    }
9493
 
9494
    .m-sm-r-65 {
9495
        margin-right: 65px;
9496
    }
9497
 
9498
    .m-sm-l-65 {
9499
        margin-left: 65px;
9500
    }
9501
}
9502
 
9503
@media (max-width: 575px) {
9504
    .p-xs-b-65 {
9505
        padding-bottom: 65px;
9506
    }
9507
 
9508
    .p-xs-t-65 {
9509
        padding-top: 65px;
9510
    }
9511
 
9512
    .p-xs-r-65 {
9513
        padding-right: 65px;
9514
    }
9515
 
9516
    .p-xs-l-65 {
9517
        padding-left: 65px;
9518
    }
9519
 
9520
    .m-xs-b-65 {
9521
        margin-bottom: 65px;
9522
    }
9523
 
9524
    .m-xs-t-65 {
9525
        margin-top: 65px;
9526
    }
9527
 
9528
    .m-xs-r-65 {
9529
        margin-right: 65px;
9530
    }
9531
 
9532
    .m-xs-l-65 {
9533
        margin-left: 65px;
9534
    }
9535
}
9536
 
9537
@media (max-width: 1023px) {
9538
    .p-lg-b-70 {
9539
        padding-bottom: 70px;
9540
    }
9541
 
9542
    .p-lg-t-70 {
9543
        padding-top: 70px;
9544
    }
9545
 
9546
    .p-lg-r-70 {
9547
        padding-right: 70px;
9548
    }
9549
 
9550
    .p-lg-l-70 {
9551
        padding-left: 70px;
9552
    }
9553
 
9554
    .m-lg-b-70 {
9555
        margin-bottom: 70px;
9556
    }
9557
 
9558
    .m-lg-t-70 {
9559
        margin-top: 70px;
9560
    }
9561
 
9562
    .m-lg-r-70 {
9563
        margin-right: 70px;
9564
    }
9565
 
9566
    .m-lg-l-70 {
9567
        margin-left: 70px;
9568
    }
9569
}
9570
 
9571
@media (max-width: 991px) {
9572
    .p-md-b-70 {
9573
        padding-bottom: 70px;
9574
    }
9575
 
9576
    .p-md-t-70 {
9577
        padding-top: 70px;
9578
    }
9579
 
9580
    .p-md-r-70 {
9581
        padding-right: 70px;
9582
    }
9583
 
9584
    .p-md-l-70 {
9585
        padding-left: 70px;
9586
    }
9587
 
9588
    .m-md-b-70 {
9589
        margin-bottom: 70px;
9590
    }
9591
 
9592
    .m-md-t-70 {
9593
        margin-top: 70px;
9594
    }
9595
 
9596
    .m-md-r-70 {
9597
        margin-right: 70px;
9598
    }
9599
 
9600
    .m-md-l-70 {
9601
        margin-left: 70px;
9602
    }
9603
}
9604
 
9605
@media (max-width: 767px) {
9606
    .p-sm-b-70 {
9607
        padding-bottom: 70px;
9608
    }
9609
 
9610
    .p-sm-t-70 {
9611
        padding-top: 70px;
9612
    }
9613
 
9614
    .p-sm-r-70 {
9615
        padding-right: 70px;
9616
    }
9617
 
9618
    .p-sm-l-70 {
9619
        padding-left: 70px;
9620
    }
9621
 
9622
    .m-sm-b-70 {
9623
        margin-bottom: 70px;
9624
    }
9625
 
9626
    .m-sm-t-70 {
9627
        margin-top: 70px;
9628
    }
9629
 
9630
    .m-sm-r-70 {
9631
        margin-right: 70px;
9632
    }
9633
 
9634
    .m-sm-l-70 {
9635
        margin-left: 70px;
9636
    }
9637
}
9638
 
9639
@media (max-width: 575px) {
9640
    .p-xs-b-70 {
9641
        padding-bottom: 70px;
9642
    }
9643
 
9644
    .p-xs-t-70 {
9645
        padding-top: 70px;
9646
    }
9647
 
9648
    .p-xs-r-70 {
9649
        padding-right: 70px;
9650
    }
9651
 
9652
    .p-xs-l-70 {
9653
        padding-left: 70px;
9654
    }
9655
 
9656
    .m-xs-b-70 {
9657
        margin-bottom: 70px;
9658
    }
9659
 
9660
    .m-xs-t-70 {
9661
        margin-top: 70px;
9662
    }
9663
 
9664
    .m-xs-r-70 {
9665
        margin-right: 70px;
9666
    }
9667
 
9668
    .m-xs-l-70 {
9669
        margin-left: 70px;
9670
    }
9671
}
9672
 
9673
@media (max-width: 1023px) {
9674
    .p-lg-b-75 {
9675
        padding-bottom: 75px;
9676
    }
9677
 
9678
    .p-lg-t-75 {
9679
        padding-top: 75px;
9680
    }
9681
 
9682
    .p-lg-r-75 {
9683
        padding-right: 75px;
9684
    }
9685
 
9686
    .p-lg-l-75 {
9687
        padding-left: 75px;
9688
    }
9689
 
9690
    .m-lg-b-75 {
9691
        margin-bottom: 75px;
9692
    }
9693
 
9694
    .m-lg-t-75 {
9695
        margin-top: 75px;
9696
    }
9697
 
9698
    .m-lg-r-75 {
9699
        margin-right: 75px;
9700
    }
9701
 
9702
    .m-lg-l-75 {
9703
        margin-left: 75px;
9704
    }
9705
}
9706
 
9707
@media (max-width: 991px) {
9708
    .p-md-b-75 {
9709
        padding-bottom: 75px;
9710
    }
9711
 
9712
    .p-md-t-75 {
9713
        padding-top: 75px;
9714
    }
9715
 
9716
    .p-md-r-75 {
9717
        padding-right: 75px;
9718
    }
9719
 
9720
    .p-md-l-75 {
9721
        padding-left: 75px;
9722
    }
9723
 
9724
    .m-md-b-75 {
9725
        margin-bottom: 75px;
9726
    }
9727
 
9728
    .m-md-t-75 {
9729
        margin-top: 75px;
9730
    }
9731
 
9732
    .m-md-r-75 {
9733
        margin-right: 75px;
9734
    }
9735
 
9736
    .m-md-l-75 {
9737
        margin-left: 75px;
9738
    }
9739
}
9740
 
9741
@media (max-width: 767px) {
9742
    .p-sm-b-75 {
9743
        padding-bottom: 75px;
9744
    }
9745
 
9746
    .p-sm-t-75 {
9747
        padding-top: 75px;
9748
    }
9749
 
9750
    .p-sm-r-75 {
9751
        padding-right: 75px;
9752
    }
9753
 
9754
    .p-sm-l-75 {
9755
        padding-left: 75px;
9756
    }
9757
 
9758
    .m-sm-b-75 {
9759
        margin-bottom: 75px;
9760
    }
9761
 
9762
    .m-sm-t-75 {
9763
        margin-top: 75px;
9764
    }
9765
 
9766
    .m-sm-r-75 {
9767
        margin-right: 75px;
9768
    }
9769
 
9770
    .m-sm-l-75 {
9771
        margin-left: 75px;
9772
    }
9773
}
9774
 
9775
@media (max-width: 575px) {
9776
    .p-xs-b-75 {
9777
        padding-bottom: 75px;
9778
    }
9779
 
9780
    .p-xs-t-75 {
9781
        padding-top: 75px;
9782
    }
9783
 
9784
    .p-xs-r-75 {
9785
        padding-right: 75px;
9786
    }
9787
 
9788
    .p-xs-l-75 {
9789
        padding-left: 75px;
9790
    }
9791
 
9792
    .m-xs-b-75 {
9793
        margin-bottom: 75px;
9794
    }
9795
 
9796
    .m-xs-t-75 {
9797
        margin-top: 75px;
9798
    }
9799
 
9800
    .m-xs-r-75 {
9801
        margin-right: 75px;
9802
    }
9803
 
9804
    .m-xs-l-75 {
9805
        margin-left: 75px;
9806
    }
9807
}
9808
 
9809
@media (max-width: 1023px) {
9810
    .p-lg-b-80 {
9811
        padding-bottom: 80px;
9812
    }
9813
 
9814
    .p-lg-t-80 {
9815
        padding-top: 80px;
9816
    }
9817
 
9818
    .p-lg-r-80 {
9819
        padding-right: 80px;
9820
    }
9821
 
9822
    .p-lg-l-80 {
9823
        padding-left: 80px;
9824
    }
9825
 
9826
    .m-lg-b-80 {
9827
        margin-bottom: 80px;
9828
    }
9829
 
9830
    .m-lg-t-80 {
9831
        margin-top: 80px;
9832
    }
9833
 
9834
    .m-lg-r-80 {
9835
        margin-right: 80px;
9836
    }
9837
 
9838
    .m-lg-l-80 {
9839
        margin-left: 80px;
9840
    }
9841
}
9842
 
9843
@media (max-width: 991px) {
9844
    .p-md-b-80 {
9845
        padding-bottom: 80px;
9846
    }
9847
 
9848
    .p-md-t-80 {
9849
        padding-top: 80px;
9850
    }
9851
 
9852
    .p-md-r-80 {
9853
        padding-right: 80px;
9854
    }
9855
 
9856
    .p-md-l-80 {
9857
        padding-left: 80px;
9858
    }
9859
 
9860
    .m-md-b-80 {
9861
        margin-bottom: 80px;
9862
    }
9863
 
9864
    .m-md-t-80 {
9865
        margin-top: 80px;
9866
    }
9867
 
9868
    .m-md-r-80 {
9869
        margin-right: 80px;
9870
    }
9871
 
9872
    .m-md-l-80 {
9873
        margin-left: 80px;
9874
    }
9875
}
9876
 
9877
@media (max-width: 767px) {
9878
    .p-sm-b-80 {
9879
        padding-bottom: 80px;
9880
    }
9881
 
9882
    .p-sm-t-80 {
9883
        padding-top: 80px;
9884
    }
9885
 
9886
    .p-sm-r-80 {
9887
        padding-right: 80px;
9888
    }
9889
 
9890
    .p-sm-l-80 {
9891
        padding-left: 80px;
9892
    }
9893
 
9894
    .m-sm-b-80 {
9895
        margin-bottom: 80px;
9896
    }
9897
 
9898
    .m-sm-t-80 {
9899
        margin-top: 80px;
9900
    }
9901
 
9902
    .m-sm-r-80 {
9903
        margin-right: 80px;
9904
    }
9905
 
9906
    .m-sm-l-80 {
9907
        margin-left: 80px;
9908
    }
9909
}
9910
 
9911
@media (max-width: 575px) {
9912
    .p-xs-b-80 {
9913
        padding-bottom: 80px;
9914
    }
9915
 
9916
    .p-xs-t-80 {
9917
        padding-top: 80px;
9918
    }
9919
 
9920
    .p-xs-r-80 {
9921
        padding-right: 80px;
9922
    }
9923
 
9924
    .p-xs-l-80 {
9925
        padding-left: 80px;
9926
    }
9927
 
9928
    .m-xs-b-80 {
9929
        margin-bottom: 80px;
9930
    }
9931
 
9932
    .m-xs-t-80 {
9933
        margin-top: 80px;
9934
    }
9935
 
9936
    .m-xs-r-80 {
9937
        margin-right: 80px;
9938
    }
9939
 
9940
    .m-xs-l-80 {
9941
        margin-left: 80px;
9942
    }
9943
}
9944
 
9945
@media (max-width: 1023px) {
9946
    .p-lg-b-85 {
9947
        padding-bottom: 85px;
9948
    }
9949
 
9950
    .p-lg-t-85 {
9951
        padding-top: 85px;
9952
    }
9953
 
9954
    .p-lg-r-85 {
9955
        padding-right: 85px;
9956
    }
9957
 
9958
    .p-lg-l-85 {
9959
        padding-left: 85px;
9960
    }
9961
 
9962
    .m-lg-b-85 {
9963
        margin-bottom: 85px;
9964
    }
9965
 
9966
    .m-lg-t-85 {
9967
        margin-top: 85px;
9968
    }
9969
 
9970
    .m-lg-r-85 {
9971
        margin-right: 85px;
9972
    }
9973
 
9974
    .m-lg-l-85 {
9975
        margin-left: 85px;
9976
    }
9977
}
9978
 
9979
@media (max-width: 991px) {
9980
    .p-md-b-85 {
9981
        padding-bottom: 85px;
9982
    }
9983
 
9984
    .p-md-t-85 {
9985
        padding-top: 85px;
9986
    }
9987
 
9988
    .p-md-r-85 {
9989
        padding-right: 85px;
9990
    }
9991
 
9992
    .p-md-l-85 {
9993
        padding-left: 85px;
9994
    }
9995
 
9996
    .m-md-b-85 {
9997
        margin-bottom: 85px;
9998
    }
9999
 
10000
    .m-md-t-85 {
10001
        margin-top: 85px;
10002
    }
10003
 
10004
    .m-md-r-85 {
10005
        margin-right: 85px;
10006
    }
10007
 
10008
    .m-md-l-85 {
10009
        margin-left: 85px;
10010
    }
10011
}
10012
 
10013
@media (max-width: 767px) {
10014
    .p-sm-b-85 {
10015
        padding-bottom: 85px;
10016
    }
10017
 
10018
    .p-sm-t-85 {
10019
        padding-top: 85px;
10020
    }
10021
 
10022
    .p-sm-r-85 {
10023
        padding-right: 85px;
10024
    }
10025
 
10026
    .p-sm-l-85 {
10027
        padding-left: 85px;
10028
    }
10029
 
10030
    .m-sm-b-85 {
10031
        margin-bottom: 85px;
10032
    }
10033
 
10034
    .m-sm-t-85 {
10035
        margin-top: 85px;
10036
    }
10037
 
10038
    .m-sm-r-85 {
10039
        margin-right: 85px;
10040
    }
10041
 
10042
    .m-sm-l-85 {
10043
        margin-left: 85px;
10044
    }
10045
}
10046
 
10047
@media (max-width: 575px) {
10048
    .p-xs-b-85 {
10049
        padding-bottom: 85px;
10050
    }
10051
 
10052
    .p-xs-t-85 {
10053
        padding-top: 85px;
10054
    }
10055
 
10056
    .p-xs-r-85 {
10057
        padding-right: 85px;
10058
    }
10059
 
10060
    .p-xs-l-85 {
10061
        padding-left: 85px;
10062
    }
10063
 
10064
    .m-xs-b-85 {
10065
        margin-bottom: 85px;
10066
    }
10067
 
10068
    .m-xs-t-85 {
10069
        margin-top: 85px;
10070
    }
10071
 
10072
    .m-xs-r-85 {
10073
        margin-right: 85px;
10074
    }
10075
 
10076
    .m-xs-l-85 {
10077
        margin-left: 85px;
10078
    }
10079
}
10080
 
10081
@media (max-width: 1023px) {
10082
    .p-lg-b-90 {
10083
        padding-bottom: 90px;
10084
    }
10085
 
10086
    .p-lg-t-90 {
10087
        padding-top: 90px;
10088
    }
10089
 
10090
    .p-lg-r-90 {
10091
        padding-right: 90px;
10092
    }
10093
 
10094
    .p-lg-l-90 {
10095
        padding-left: 90px;
10096
    }
10097
 
10098
    .m-lg-b-90 {
10099
        margin-bottom: 90px;
10100
    }
10101
 
10102
    .m-lg-t-90 {
10103
        margin-top: 90px;
10104
    }
10105
 
10106
    .m-lg-r-90 {
10107
        margin-right: 90px;
10108
    }
10109
 
10110
    .m-lg-l-90 {
10111
        margin-left: 90px;
10112
    }
10113
}
10114
 
10115
@media (max-width: 991px) {
10116
    .p-md-b-90 {
10117
        padding-bottom: 90px;
10118
    }
10119
 
10120
    .p-md-t-90 {
10121
        padding-top: 90px;
10122
    }
10123
 
10124
    .p-md-r-90 {
10125
        padding-right: 90px;
10126
    }
10127
 
10128
    .p-md-l-90 {
10129
        padding-left: 90px;
10130
    }
10131
 
10132
    .m-md-b-90 {
10133
        margin-bottom: 90px;
10134
    }
10135
 
10136
    .m-md-t-90 {
10137
        margin-top: 90px;
10138
    }
10139
 
10140
    .m-md-r-90 {
10141
        margin-right: 90px;
10142
    }
10143
 
10144
    .m-md-l-90 {
10145
        margin-left: 90px;
10146
    }
10147
}
10148
 
10149
@media (max-width: 767px) {
10150
    .p-sm-b-90 {
10151
        padding-bottom: 90px;
10152
    }
10153
 
10154
    .p-sm-t-90 {
10155
        padding-top: 90px;
10156
    }
10157
 
10158
    .p-sm-r-90 {
10159
        padding-right: 90px;
10160
    }
10161
 
10162
    .p-sm-l-90 {
10163
        padding-left: 90px;
10164
    }
10165
 
10166
    .m-sm-b-90 {
10167
        margin-bottom: 90px;
10168
    }
10169
 
10170
    .m-sm-t-90 {
10171
        margin-top: 90px;
10172
    }
10173
 
10174
    .m-sm-r-90 {
10175
        margin-right: 90px;
10176
    }
10177
 
10178
    .m-sm-l-90 {
10179
        margin-left: 90px;
10180
    }
10181
}
10182
 
10183
@media (max-width: 575px) {
10184
    .p-xs-b-90 {
10185
        padding-bottom: 90px;
10186
    }
10187
 
10188
    .p-xs-t-90 {
10189
        padding-top: 90px;
10190
    }
10191
 
10192
    .p-xs-r-90 {
10193
        padding-right: 90px;
10194
    }
10195
 
10196
    .p-xs-l-90 {
10197
        padding-left: 90px;
10198
    }
10199
 
10200
    .m-xs-b-90 {
10201
        margin-bottom: 90px;
10202
    }
10203
 
10204
    .m-xs-t-90 {
10205
        margin-top: 90px;
10206
    }
10207
 
10208
    .m-xs-r-90 {
10209
        margin-right: 90px;
10210
    }
10211
 
10212
    .m-xs-l-90 {
10213
        margin-left: 90px;
10214
    }
10215
}
10216
 
10217
@media (max-width: 1023px) {
10218
    .p-lg-b-95 {
10219
        padding-bottom: 95px;
10220
    }
10221
 
10222
    .p-lg-t-95 {
10223
        padding-top: 95px;
10224
    }
10225
 
10226
    .p-lg-r-95 {
10227
        padding-right: 95px;
10228
    }
10229
 
10230
    .p-lg-l-95 {
10231
        padding-left: 95px;
10232
    }
10233
 
10234
    .m-lg-b-95 {
10235
        margin-bottom: 95px;
10236
    }
10237
 
10238
    .m-lg-t-95 {
10239
        margin-top: 95px;
10240
    }
10241
 
10242
    .m-lg-r-95 {
10243
        margin-right: 95px;
10244
    }
10245
 
10246
    .m-lg-l-95 {
10247
        margin-left: 95px;
10248
    }
10249
}
10250
 
10251
@media (max-width: 991px) {
10252
    .p-md-b-95 {
10253
        padding-bottom: 95px;
10254
    }
10255
 
10256
    .p-md-t-95 {
10257
        padding-top: 95px;
10258
    }
10259
 
10260
    .p-md-r-95 {
10261
        padding-right: 95px;
10262
    }
10263
 
10264
    .p-md-l-95 {
10265
        padding-left: 95px;
10266
    }
10267
 
10268
    .m-md-b-95 {
10269
        margin-bottom: 95px;
10270
    }
10271
 
10272
    .m-md-t-95 {
10273
        margin-top: 95px;
10274
    }
10275
 
10276
    .m-md-r-95 {
10277
        margin-right: 95px;
10278
    }
10279
 
10280
    .m-md-l-95 {
10281
        margin-left: 95px;
10282
    }
10283
}
10284
 
10285
@media (max-width: 767px) {
10286
    .p-sm-b-95 {
10287
        padding-bottom: 95px;
10288
    }
10289
 
10290
    .p-sm-t-95 {
10291
        padding-top: 95px;
10292
    }
10293
 
10294
    .p-sm-r-95 {
10295
        padding-right: 95px;
10296
    }
10297
 
10298
    .p-sm-l-95 {
10299
        padding-left: 95px;
10300
    }
10301
 
10302
    .m-sm-b-95 {
10303
        margin-bottom: 95px;
10304
    }
10305
 
10306
    .m-sm-t-95 {
10307
        margin-top: 95px;
10308
    }
10309
 
10310
    .m-sm-r-95 {
10311
        margin-right: 95px;
10312
    }
10313
 
10314
    .m-sm-l-95 {
10315
        margin-left: 95px;
10316
    }
10317
}
10318
 
10319
@media (max-width: 575px) {
10320
    .p-xs-b-95 {
10321
        padding-bottom: 95px;
10322
    }
10323
 
10324
    .p-xs-t-95 {
10325
        padding-top: 95px;
10326
    }
10327
 
10328
    .p-xs-r-95 {
10329
        padding-right: 95px;
10330
    }
10331
 
10332
    .p-xs-l-95 {
10333
        padding-left: 95px;
10334
    }
10335
 
10336
    .m-xs-b-95 {
10337
        margin-bottom: 95px;
10338
    }
10339
 
10340
    .m-xs-t-95 {
10341
        margin-top: 95px;
10342
    }
10343
 
10344
    .m-xs-r-95 {
10345
        margin-right: 95px;
10346
    }
10347
 
10348
    .m-xs-l-95 {
10349
        margin-left: 95px;
10350
    }
10351
}
10352
 
10353
@media (max-width: 1023px) {
10354
    .p-lg-b-100 {
10355
        padding-bottom: 100px;
10356
    }
10357
 
10358
    .p-lg-t-100 {
10359
        padding-top: 100px;
10360
    }
10361
 
10362
    .p-lg-r-100 {
10363
        padding-right: 100px;
10364
    }
10365
 
10366
    .p-lg-l-100 {
10367
        padding-left: 100px;
10368
    }
10369
 
10370
    .m-lg-b-100 {
10371
        margin-bottom: 100px;
10372
    }
10373
 
10374
    .m-lg-t-100 {
10375
        margin-top: 100px;
10376
    }
10377
 
10378
    .m-lg-r-100 {
10379
        margin-right: 100px;
10380
    }
10381
 
10382
    .m-lg-l-100 {
10383
        margin-left: 100px;
10384
    }
10385
}
10386
 
10387
@media (max-width: 991px) {
10388
    .p-md-b-100 {
10389
        padding-bottom: 100px;
10390
    }
10391
 
10392
    .p-md-t-100 {
10393
        padding-top: 100px;
10394
    }
10395
 
10396
    .p-md-r-100 {
10397
        padding-right: 100px;
10398
    }
10399
 
10400
    .p-md-l-100 {
10401
        padding-left: 100px;
10402
    }
10403
 
10404
    .m-md-b-100 {
10405
        margin-bottom: 100px;
10406
    }
10407
 
10408
    .m-md-t-100 {
10409
        margin-top: 100px;
10410
    }
10411
 
10412
    .m-md-r-100 {
10413
        margin-right: 100px;
10414
    }
10415
 
10416
    .m-md-l-100 {
10417
        margin-left: 100px;
10418
    }
10419
}
10420
 
10421
@media (max-width: 767px) {
10422
    .p-sm-b-100 {
10423
        padding-bottom: 100px;
10424
    }
10425
 
10426
    .p-sm-t-100 {
10427
        padding-top: 100px;
10428
    }
10429
 
10430
    .p-sm-r-100 {
10431
        padding-right: 100px;
10432
    }
10433
 
10434
    .p-sm-l-100 {
10435
        padding-left: 100px;
10436
    }
10437
 
10438
    .m-sm-b-100 {
10439
        margin-bottom: 100px;
10440
    }
10441
 
10442
    .m-sm-t-100 {
10443
        margin-top: 100px;
10444
    }
10445
 
10446
    .m-sm-r-100 {
10447
        margin-right: 100px;
10448
    }
10449
 
10450
    .m-sm-l-100 {
10451
        margin-left: 100px;
10452
    }
10453
}
10454
 
10455
@media (max-width: 575px) {
10456
    .p-xs-b-100 {
10457
        padding-bottom: 100px;
10458
    }
10459
 
10460
    .p-xs-t-100 {
10461
        padding-top: 100px;
10462
    }
10463
 
10464
    .p-xs-r-100 {
10465
        padding-right: 100px;
10466
    }
10467
 
10468
    .p-xs-l-100 {
10469
        padding-left: 100px;
10470
    }
10471
 
10472
    .m-xs-b-100 {
10473
        margin-bottom: 100px;
10474
    }
10475
 
10476
    .m-xs-t-100 {
10477
        margin-top: 100px;
10478
    }
10479
 
10480
    .m-xs-r-100 {
10481
        margin-right: 100px;
10482
    }
10483
 
10484
    .m-xs-l-100 {
10485
        margin-left: 100px;
10486
    }
10487
}
10488
 
10489
@media (max-width: 1023px) {
10490
    .p-lg-b-105 {
10491
        padding-bottom: 105px;
10492
    }
10493
 
10494
    .p-lg-t-105 {
10495
        padding-top: 105px;
10496
    }
10497
 
10498
    .p-lg-r-105 {
10499
        padding-right: 105px;
10500
    }
10501
 
10502
    .p-lg-l-105 {
10503
        padding-left: 105px;
10504
    }
10505
 
10506
    .m-lg-b-105 {
10507
        margin-bottom: 105px;
10508
    }
10509
 
10510
    .m-lg-t-105 {
10511
        margin-top: 105px;
10512
    }
10513
 
10514
    .m-lg-r-105 {
10515
        margin-right: 105px;
10516
    }
10517
 
10518
    .m-lg-l-105 {
10519
        margin-left: 105px;
10520
    }
10521
}
10522
 
10523
@media (max-width: 991px) {
10524
    .p-md-b-105 {
10525
        padding-bottom: 105px;
10526
    }
10527
 
10528
    .p-md-t-105 {
10529
        padding-top: 105px;
10530
    }
10531
 
10532
    .p-md-r-105 {
10533
        padding-right: 105px;
10534
    }
10535
 
10536
    .p-md-l-105 {
10537
        padding-left: 105px;
10538
    }
10539
 
10540
    .m-md-b-105 {
10541
        margin-bottom: 105px;
10542
    }
10543
 
10544
    .m-md-t-105 {
10545
        margin-top: 105px;
10546
    }
10547
 
10548
    .m-md-r-105 {
10549
        margin-right: 105px;
10550
    }
10551
 
10552
    .m-md-l-105 {
10553
        margin-left: 105px;
10554
    }
10555
}
10556
 
10557
@media (max-width: 767px) {
10558
    .p-sm-b-105 {
10559
        padding-bottom: 105px;
10560
    }
10561
 
10562
    .p-sm-t-105 {
10563
        padding-top: 105px;
10564
    }
10565
 
10566
    .p-sm-r-105 {
10567
        padding-right: 105px;
10568
    }
10569
 
10570
    .p-sm-l-105 {
10571
        padding-left: 105px;
10572
    }
10573
 
10574
    .m-sm-b-105 {
10575
        margin-bottom: 105px;
10576
    }
10577
 
10578
    .m-sm-t-105 {
10579
        margin-top: 105px;
10580
    }
10581
 
10582
    .m-sm-r-105 {
10583
        margin-right: 105px;
10584
    }
10585
 
10586
    .m-sm-l-105 {
10587
        margin-left: 105px;
10588
    }
10589
}
10590
 
10591
@media (max-width: 575px) {
10592
    .p-xs-b-105 {
10593
        padding-bottom: 105px;
10594
    }
10595
 
10596
    .p-xs-t-105 {
10597
        padding-top: 105px;
10598
    }
10599
 
10600
    .p-xs-r-105 {
10601
        padding-right: 105px;
10602
    }
10603
 
10604
    .p-xs-l-105 {
10605
        padding-left: 105px;
10606
    }
10607
 
10608
    .m-xs-b-105 {
10609
        margin-bottom: 105px;
10610
    }
10611
 
10612
    .m-xs-t-105 {
10613
        margin-top: 105px;
10614
    }
10615
 
10616
    .m-xs-r-105 {
10617
        margin-right: 105px;
10618
    }
10619
 
10620
    .m-xs-l-105 {
10621
        margin-left: 105px;
10622
    }
10623
}
10624
 
10625
@media (max-width: 1023px) {
10626
    .p-lg-b-110 {
10627
        padding-bottom: 110px;
10628
    }
10629
 
10630
    .p-lg-t-110 {
10631
        padding-top: 110px;
10632
    }
10633
 
10634
    .p-lg-r-110 {
10635
        padding-right: 110px;
10636
    }
10637
 
10638
    .p-lg-l-110 {
10639
        padding-left: 110px;
10640
    }
10641
 
10642
    .m-lg-b-110 {
10643
        margin-bottom: 110px;
10644
    }
10645
 
10646
    .m-lg-t-110 {
10647
        margin-top: 110px;
10648
    }
10649
 
10650
    .m-lg-r-110 {
10651
        margin-right: 110px;
10652
    }
10653
 
10654
    .m-lg-l-110 {
10655
        margin-left: 110px;
10656
    }
10657
}
10658
 
10659
@media (max-width: 991px) {
10660
    .p-md-b-110 {
10661
        padding-bottom: 110px;
10662
    }
10663
 
10664
    .p-md-t-110 {
10665
        padding-top: 110px;
10666
    }
10667
 
10668
    .p-md-r-110 {
10669
        padding-right: 110px;
10670
    }
10671
 
10672
    .p-md-l-110 {
10673
        padding-left: 110px;
10674
    }
10675
 
10676
    .m-md-b-110 {
10677
        margin-bottom: 110px;
10678
    }
10679
 
10680
    .m-md-t-110 {
10681
        margin-top: 110px;
10682
    }
10683
 
10684
    .m-md-r-110 {
10685
        margin-right: 110px;
10686
    }
10687
 
10688
    .m-md-l-110 {
10689
        margin-left: 110px;
10690
    }
10691
}
10692
 
10693
@media (max-width: 767px) {
10694
    .p-sm-b-110 {
10695
        padding-bottom: 110px;
10696
    }
10697
 
10698
    .p-sm-t-110 {
10699
        padding-top: 110px;
10700
    }
10701
 
10702
    .p-sm-r-110 {
10703
        padding-right: 110px;
10704
    }
10705
 
10706
    .p-sm-l-110 {
10707
        padding-left: 110px;
10708
    }
10709
 
10710
    .m-sm-b-110 {
10711
        margin-bottom: 110px;
10712
    }
10713
 
10714
    .m-sm-t-110 {
10715
        margin-top: 110px;
10716
    }
10717
 
10718
    .m-sm-r-110 {
10719
        margin-right: 110px;
10720
    }
10721
 
10722
    .m-sm-l-110 {
10723
        margin-left: 110px;
10724
    }
10725
}
10726
 
10727
@media (max-width: 575px) {
10728
    .p-xs-b-110 {
10729
        padding-bottom: 110px;
10730
    }
10731
 
10732
    .p-xs-t-110 {
10733
        padding-top: 110px;
10734
    }
10735
 
10736
    .p-xs-r-110 {
10737
        padding-right: 110px;
10738
    }
10739
 
10740
    .p-xs-l-110 {
10741
        padding-left: 110px;
10742
    }
10743
 
10744
    .m-xs-b-110 {
10745
        margin-bottom: 110px;
10746
    }
10747
 
10748
    .m-xs-t-110 {
10749
        margin-top: 110px;
10750
    }
10751
 
10752
    .m-xs-r-110 {
10753
        margin-right: 110px;
10754
    }
10755
 
10756
    .m-xs-l-110 {
10757
        margin-left: 110px;
10758
    }
10759
}
10760
 
10761
@media (max-width: 1023px) {
10762
    .p-lg-b-115 {
10763
        padding-bottom: 115px;
10764
    }
10765
 
10766
    .p-lg-t-115 {
10767
        padding-top: 115px;
10768
    }
10769
 
10770
    .p-lg-r-115 {
10771
        padding-right: 115px;
10772
    }
10773
 
10774
    .p-lg-l-115 {
10775
        padding-left: 115px;
10776
    }
10777
 
10778
    .m-lg-b-115 {
10779
        margin-bottom: 115px;
10780
    }
10781
 
10782
    .m-lg-t-115 {
10783
        margin-top: 115px;
10784
    }
10785
 
10786
    .m-lg-r-115 {
10787
        margin-right: 115px;
10788
    }
10789
 
10790
    .m-lg-l-115 {
10791
        margin-left: 115px;
10792
    }
10793
}
10794
 
10795
@media (max-width: 991px) {
10796
    .p-md-b-115 {
10797
        padding-bottom: 115px;
10798
    }
10799
 
10800
    .p-md-t-115 {
10801
        padding-top: 115px;
10802
    }
10803
 
10804
    .p-md-r-115 {
10805
        padding-right: 115px;
10806
    }
10807
 
10808
    .p-md-l-115 {
10809
        padding-left: 115px;
10810
    }
10811
 
10812
    .m-md-b-115 {
10813
        margin-bottom: 115px;
10814
    }
10815
 
10816
    .m-md-t-115 {
10817
        margin-top: 115px;
10818
    }
10819
 
10820
    .m-md-r-115 {
10821
        margin-right: 115px;
10822
    }
10823
 
10824
    .m-md-l-115 {
10825
        margin-left: 115px;
10826
    }
10827
}
10828
 
10829
@media (max-width: 767px) {
10830
    .p-sm-b-115 {
10831
        padding-bottom: 115px;
10832
    }
10833
 
10834
    .p-sm-t-115 {
10835
        padding-top: 115px;
10836
    }
10837
 
10838
    .p-sm-r-115 {
10839
        padding-right: 115px;
10840
    }
10841
 
10842
    .p-sm-l-115 {
10843
        padding-left: 115px;
10844
    }
10845
 
10846
    .m-sm-b-115 {
10847
        margin-bottom: 115px;
10848
    }
10849
 
10850
    .m-sm-t-115 {
10851
        margin-top: 115px;
10852
    }
10853
 
10854
    .m-sm-r-115 {
10855
        margin-right: 115px;
10856
    }
10857
 
10858
    .m-sm-l-115 {
10859
        margin-left: 115px;
10860
    }
10861
}
10862
 
10863
@media (max-width: 575px) {
10864
    .p-xs-b-115 {
10865
        padding-bottom: 115px;
10866
    }
10867
 
10868
    .p-xs-t-115 {
10869
        padding-top: 115px;
10870
    }
10871
 
10872
    .p-xs-r-115 {
10873
        padding-right: 115px;
10874
    }
10875
 
10876
    .p-xs-l-115 {
10877
        padding-left: 115px;
10878
    }
10879
 
10880
    .m-xs-b-115 {
10881
        margin-bottom: 115px;
10882
    }
10883
 
10884
    .m-xs-t-115 {
10885
        margin-top: 115px;
10886
    }
10887
 
10888
    .m-xs-r-115 {
10889
        margin-right: 115px;
10890
    }
10891
 
10892
    .m-xs-l-115 {
10893
        margin-left: 115px;
10894
    }
10895
}
10896
 
10897
@media (max-width: 1023px) {
10898
    .p-lg-b-120 {
10899
        padding-bottom: 120px;
10900
    }
10901
 
10902
    .p-lg-t-120 {
10903
        padding-top: 120px;
10904
    }
10905
 
10906
    .p-lg-r-120 {
10907
        padding-right: 120px;
10908
    }
10909
 
10910
    .p-lg-l-120 {
10911
        padding-left: 120px;
10912
    }
10913
 
10914
    .m-lg-b-120 {
10915
        margin-bottom: 120px;
10916
    }
10917
 
10918
    .m-lg-t-120 {
10919
        margin-top: 120px;
10920
    }
10921
 
10922
    .m-lg-r-120 {
10923
        margin-right: 120px;
10924
    }
10925
 
10926
    .m-lg-l-120 {
10927
        margin-left: 120px;
10928
    }
10929
}
10930
 
10931
@media (max-width: 991px) {
10932
    .p-md-b-120 {
10933
        padding-bottom: 120px;
10934
    }
10935
 
10936
    .p-md-t-120 {
10937
        padding-top: 120px;
10938
    }
10939
 
10940
    .p-md-r-120 {
10941
        padding-right: 120px;
10942
    }
10943
 
10944
    .p-md-l-120 {
10945
        padding-left: 120px;
10946
    }
10947
 
10948
    .m-md-b-120 {
10949
        margin-bottom: 120px;
10950
    }
10951
 
10952
    .m-md-t-120 {
10953
        margin-top: 120px;
10954
    }
10955
 
10956
    .m-md-r-120 {
10957
        margin-right: 120px;
10958
    }
10959
 
10960
    .m-md-l-120 {
10961
        margin-left: 120px;
10962
    }
10963
}
10964
 
10965
@media (max-width: 767px) {
10966
    .p-sm-b-120 {
10967
        padding-bottom: 120px;
10968
    }
10969
 
10970
    .p-sm-t-120 {
10971
        padding-top: 120px;
10972
    }
10973
 
10974
    .p-sm-r-120 {
10975
        padding-right: 120px;
10976
    }
10977
 
10978
    .p-sm-l-120 {
10979
        padding-left: 120px;
10980
    }
10981
 
10982
    .m-sm-b-120 {
10983
        margin-bottom: 120px;
10984
    }
10985
 
10986
    .m-sm-t-120 {
10987
        margin-top: 120px;
10988
    }
10989
 
10990
    .m-sm-r-120 {
10991
        margin-right: 120px;
10992
    }
10993
 
10994
    .m-sm-l-120 {
10995
        margin-left: 120px;
10996
    }
10997
}
10998
 
10999
@media (max-width: 575px) {
11000
    .p-xs-b-120 {
11001
        padding-bottom: 120px;
11002
    }
11003
 
11004
    .p-xs-t-120 {
11005
        padding-top: 120px;
11006
    }
11007
 
11008
    .p-xs-r-120 {
11009
        padding-right: 120px;
11010
    }
11011
 
11012
    .p-xs-l-120 {
11013
        padding-left: 120px;
11014
    }
11015
 
11016
    .m-xs-b-120 {
11017
        margin-bottom: 120px;
11018
    }
11019
 
11020
    .m-xs-t-120 {
11021
        margin-top: 120px;
11022
    }
11023
 
11024
    .m-xs-r-120 {
11025
        margin-right: 120px;
11026
    }
11027
 
11028
    .m-xs-l-120 {
11029
        margin-left: 120px;
11030
    }
11031
}
11032
 
11033
@media (max-width: 1023px) {
11034
    .p-lg-b-125 {
11035
        padding-bottom: 125px;
11036
    }
11037
 
11038
    .p-lg-t-125 {
11039
        padding-top: 125px;
11040
    }
11041
 
11042
    .p-lg-r-125 {
11043
        padding-right: 125px;
11044
    }
11045
 
11046
    .p-lg-l-125 {
11047
        padding-left: 125px;
11048
    }
11049
 
11050
    .m-lg-b-125 {
11051
        margin-bottom: 125px;
11052
    }
11053
 
11054
    .m-lg-t-125 {
11055
        margin-top: 125px;
11056
    }
11057
 
11058
    .m-lg-r-125 {
11059
        margin-right: 125px;
11060
    }
11061
 
11062
    .m-lg-l-125 {
11063
        margin-left: 125px;
11064
    }
11065
}
11066
 
11067
@media (max-width: 991px) {
11068
    .p-md-b-125 {
11069
        padding-bottom: 125px;
11070
    }
11071
 
11072
    .p-md-t-125 {
11073
        padding-top: 125px;
11074
    }
11075
 
11076
    .p-md-r-125 {
11077
        padding-right: 125px;
11078
    }
11079
 
11080
    .p-md-l-125 {
11081
        padding-left: 125px;
11082
    }
11083
 
11084
    .m-md-b-125 {
11085
        margin-bottom: 125px;
11086
    }
11087
 
11088
    .m-md-t-125 {
11089
        margin-top: 125px;
11090
    }
11091
 
11092
    .m-md-r-125 {
11093
        margin-right: 125px;
11094
    }
11095
 
11096
    .m-md-l-125 {
11097
        margin-left: 125px;
11098
    }
11099
}
11100
 
11101
@media (max-width: 767px) {
11102
    .p-sm-b-125 {
11103
        padding-bottom: 125px;
11104
    }
11105
 
11106
    .p-sm-t-125 {
11107
        padding-top: 125px;
11108
    }
11109
 
11110
    .p-sm-r-125 {
11111
        padding-right: 125px;
11112
    }
11113
 
11114
    .p-sm-l-125 {
11115
        padding-left: 125px;
11116
    }
11117
 
11118
    .m-sm-b-125 {
11119
        margin-bottom: 125px;
11120
    }
11121
 
11122
    .m-sm-t-125 {
11123
        margin-top: 125px;
11124
    }
11125
 
11126
    .m-sm-r-125 {
11127
        margin-right: 125px;
11128
    }
11129
 
11130
    .m-sm-l-125 {
11131
        margin-left: 125px;
11132
    }
11133
}
11134
 
11135
@media (max-width: 575px) {
11136
    .p-xs-b-125 {
11137
        padding-bottom: 125px;
11138
    }
11139
 
11140
    .p-xs-t-125 {
11141
        padding-top: 125px;
11142
    }
11143
 
11144
    .p-xs-r-125 {
11145
        padding-right: 125px;
11146
    }
11147
 
11148
    .p-xs-l-125 {
11149
        padding-left: 125px;
11150
    }
11151
 
11152
    .m-xs-b-125 {
11153
        margin-bottom: 125px;
11154
    }
11155
 
11156
    .m-xs-t-125 {
11157
        margin-top: 125px;
11158
    }
11159
 
11160
    .m-xs-r-125 {
11161
        margin-right: 125px;
11162
    }
11163
 
11164
    .m-xs-l-125 {
11165
        margin-left: 125px;
11166
    }
11167
}
11168
 
11169
@media (max-width: 1023px) {
11170
    .p-lg-b-130 {
11171
        padding-bottom: 130px;
11172
    }
11173
 
11174
    .p-lg-t-130 {
11175
        padding-top: 130px;
11176
    }
11177
 
11178
    .p-lg-r-130 {
11179
        padding-right: 130px;
11180
    }
11181
 
11182
    .p-lg-l-130 {
11183
        padding-left: 130px;
11184
    }
11185
 
11186
    .m-lg-b-130 {
11187
        margin-bottom: 130px;
11188
    }
11189
 
11190
    .m-lg-t-130 {
11191
        margin-top: 130px;
11192
    }
11193
 
11194
    .m-lg-r-130 {
11195
        margin-right: 130px;
11196
    }
11197
 
11198
    .m-lg-l-130 {
11199
        margin-left: 130px;
11200
    }
11201
}
11202
 
11203
@media (max-width: 991px) {
11204
    .p-md-b-130 {
11205
        padding-bottom: 130px;
11206
    }
11207
 
11208
    .p-md-t-130 {
11209
        padding-top: 130px;
11210
    }
11211
 
11212
    .p-md-r-130 {
11213
        padding-right: 130px;
11214
    }
11215
 
11216
    .p-md-l-130 {
11217
        padding-left: 130px;
11218
    }
11219
 
11220
    .m-md-b-130 {
11221
        margin-bottom: 130px;
11222
    }
11223
 
11224
    .m-md-t-130 {
11225
        margin-top: 130px;
11226
    }
11227
 
11228
    .m-md-r-130 {
11229
        margin-right: 130px;
11230
    }
11231
 
11232
    .m-md-l-130 {
11233
        margin-left: 130px;
11234
    }
11235
}
11236
 
11237
@media (max-width: 767px) {
11238
    .p-sm-b-130 {
11239
        padding-bottom: 130px;
11240
    }
11241
 
11242
    .p-sm-t-130 {
11243
        padding-top: 130px;
11244
    }
11245
 
11246
    .p-sm-r-130 {
11247
        padding-right: 130px;
11248
    }
11249
 
11250
    .p-sm-l-130 {
11251
        padding-left: 130px;
11252
    }
11253
 
11254
    .m-sm-b-130 {
11255
        margin-bottom: 130px;
11256
    }
11257
 
11258
    .m-sm-t-130 {
11259
        margin-top: 130px;
11260
    }
11261
 
11262
    .m-sm-r-130 {
11263
        margin-right: 130px;
11264
    }
11265
 
11266
    .m-sm-l-130 {
11267
        margin-left: 130px;
11268
    }
11269
}
11270
 
11271
@media (max-width: 575px) {
11272
    .p-xs-b-130 {
11273
        padding-bottom: 130px;
11274
    }
11275
 
11276
    .p-xs-t-130 {
11277
        padding-top: 130px;
11278
    }
11279
 
11280
    .p-xs-r-130 {
11281
        padding-right: 130px;
11282
    }
11283
 
11284
    .p-xs-l-130 {
11285
        padding-left: 130px;
11286
    }
11287
 
11288
    .m-xs-b-130 {
11289
        margin-bottom: 130px;
11290
    }
11291
 
11292
    .m-xs-t-130 {
11293
        margin-top: 130px;
11294
    }
11295
 
11296
    .m-xs-r-130 {
11297
        margin-right: 130px;
11298
    }
11299
 
11300
    .m-xs-l-130 {
11301
        margin-left: 130px;
11302
    }
11303
}
11304
 
11305
@media (max-width: 1023px) {
11306
    .p-lg-b-135 {
11307
        padding-bottom: 135px;
11308
    }
11309
 
11310
    .p-lg-t-135 {
11311
        padding-top: 135px;
11312
    }
11313
 
11314
    .p-lg-r-135 {
11315
        padding-right: 135px;
11316
    }
11317
 
11318
    .p-lg-l-135 {
11319
        padding-left: 135px;
11320
    }
11321
 
11322
    .m-lg-b-135 {
11323
        margin-bottom: 135px;
11324
    }
11325
 
11326
    .m-lg-t-135 {
11327
        margin-top: 135px;
11328
    }
11329
 
11330
    .m-lg-r-135 {
11331
        margin-right: 135px;
11332
    }
11333
 
11334
    .m-lg-l-135 {
11335
        margin-left: 135px;
11336
    }
11337
}
11338
 
11339
@media (max-width: 991px) {
11340
    .p-md-b-135 {
11341
        padding-bottom: 135px;
11342
    }
11343
 
11344
    .p-md-t-135 {
11345
        padding-top: 135px;
11346
    }
11347
 
11348
    .p-md-r-135 {
11349
        padding-right: 135px;
11350
    }
11351
 
11352
    .p-md-l-135 {
11353
        padding-left: 135px;
11354
    }
11355
 
11356
    .m-md-b-135 {
11357
        margin-bottom: 135px;
11358
    }
11359
 
11360
    .m-md-t-135 {
11361
        margin-top: 135px;
11362
    }
11363
 
11364
    .m-md-r-135 {
11365
        margin-right: 135px;
11366
    }
11367
 
11368
    .m-md-l-135 {
11369
        margin-left: 135px;
11370
    }
11371
}
11372
 
11373
@media (max-width: 767px) {
11374
    .p-sm-b-135 {
11375
        padding-bottom: 135px;
11376
    }
11377
 
11378
    .p-sm-t-135 {
11379
        padding-top: 135px;
11380
    }
11381
 
11382
    .p-sm-r-135 {
11383
        padding-right: 135px;
11384
    }
11385
 
11386
    .p-sm-l-135 {
11387
        padding-left: 135px;
11388
    }
11389
 
11390
    .m-sm-b-135 {
11391
        margin-bottom: 135px;
11392
    }
11393
 
11394
    .m-sm-t-135 {
11395
        margin-top: 135px;
11396
    }
11397
 
11398
    .m-sm-r-135 {
11399
        margin-right: 135px;
11400
    }
11401
 
11402
    .m-sm-l-135 {
11403
        margin-left: 135px;
11404
    }
11405
}
11406
 
11407
@media (max-width: 575px) {
11408
    .p-xs-b-135 {
11409
        padding-bottom: 135px;
11410
    }
11411
 
11412
    .p-xs-t-135 {
11413
        padding-top: 135px;
11414
    }
11415
 
11416
    .p-xs-r-135 {
11417
        padding-right: 135px;
11418
    }
11419
 
11420
    .p-xs-l-135 {
11421
        padding-left: 135px;
11422
    }
11423
 
11424
    .m-xs-b-135 {
11425
        margin-bottom: 135px;
11426
    }
11427
 
11428
    .m-xs-t-135 {
11429
        margin-top: 135px;
11430
    }
11431
 
11432
    .m-xs-r-135 {
11433
        margin-right: 135px;
11434
    }
11435
 
11436
    .m-xs-l-135 {
11437
        margin-left: 135px;
11438
    }
11439
}
11440
 
11441
@media (max-width: 1023px) {
11442
    .p-lg-b-140 {
11443
        padding-bottom: 140px;
11444
    }
11445
 
11446
    .p-lg-t-140 {
11447
        padding-top: 140px;
11448
    }
11449
 
11450
    .p-lg-r-140 {
11451
        padding-right: 140px;
11452
    }
11453
 
11454
    .p-lg-l-140 {
11455
        padding-left: 140px;
11456
    }
11457
 
11458
    .m-lg-b-140 {
11459
        margin-bottom: 140px;
11460
    }
11461
 
11462
    .m-lg-t-140 {
11463
        margin-top: 140px;
11464
    }
11465
 
11466
    .m-lg-r-140 {
11467
        margin-right: 140px;
11468
    }
11469
 
11470
    .m-lg-l-140 {
11471
        margin-left: 140px;
11472
    }
11473
}
11474
 
11475
@media (max-width: 991px) {
11476
    .p-md-b-140 {
11477
        padding-bottom: 140px;
11478
    }
11479
 
11480
    .p-md-t-140 {
11481
        padding-top: 140px;
11482
    }
11483
 
11484
    .p-md-r-140 {
11485
        padding-right: 140px;
11486
    }
11487
 
11488
    .p-md-l-140 {
11489
        padding-left: 140px;
11490
    }
11491
 
11492
    .m-md-b-140 {
11493
        margin-bottom: 140px;
11494
    }
11495
 
11496
    .m-md-t-140 {
11497
        margin-top: 140px;
11498
    }
11499
 
11500
    .m-md-r-140 {
11501
        margin-right: 140px;
11502
    }
11503
 
11504
    .m-md-l-140 {
11505
        margin-left: 140px;
11506
    }
11507
}
11508
 
11509
@media (max-width: 767px) {
11510
    .p-sm-b-140 {
11511
        padding-bottom: 140px;
11512
    }
11513
 
11514
    .p-sm-t-140 {
11515
        padding-top: 140px;
11516
    }
11517
 
11518
    .p-sm-r-140 {
11519
        padding-right: 140px;
11520
    }
11521
 
11522
    .p-sm-l-140 {
11523
        padding-left: 140px;
11524
    }
11525
 
11526
    .m-sm-b-140 {
11527
        margin-bottom: 140px;
11528
    }
11529
 
11530
    .m-sm-t-140 {
11531
        margin-top: 140px;
11532
    }
11533
 
11534
    .m-sm-r-140 {
11535
        margin-right: 140px;
11536
    }
11537
 
11538
    .m-sm-l-140 {
11539
        margin-left: 140px;
11540
    }
11541
}
11542
 
11543
@media (max-width: 575px) {
11544
    .p-xs-b-140 {
11545
        padding-bottom: 140px;
11546
    }
11547
 
11548
    .p-xs-t-140 {
11549
        padding-top: 140px;
11550
    }
11551
 
11552
    .p-xs-r-140 {
11553
        padding-right: 140px;
11554
    }
11555
 
11556
    .p-xs-l-140 {
11557
        padding-left: 140px;
11558
    }
11559
 
11560
    .m-xs-b-140 {
11561
        margin-bottom: 140px;
11562
    }
11563
 
11564
    .m-xs-t-140 {
11565
        margin-top: 140px;
11566
    }
11567
 
11568
    .m-xs-r-140 {
11569
        margin-right: 140px;
11570
    }
11571
 
11572
    .m-xs-l-140 {
11573
        margin-left: 140px;
11574
    }
11575
}
11576
 
11577
@media (max-width: 1023px) {
11578
    .p-lg-b-145 {
11579
        padding-bottom: 145px;
11580
    }
11581
 
11582
    .p-lg-t-145 {
11583
        padding-top: 145px;
11584
    }
11585
 
11586
    .p-lg-r-145 {
11587
        padding-right: 145px;
11588
    }
11589
 
11590
    .p-lg-l-145 {
11591
        padding-left: 145px;
11592
    }
11593
 
11594
    .m-lg-b-145 {
11595
        margin-bottom: 145px;
11596
    }
11597
 
11598
    .m-lg-t-145 {
11599
        margin-top: 145px;
11600
    }
11601
 
11602
    .m-lg-r-145 {
11603
        margin-right: 145px;
11604
    }
11605
 
11606
    .m-lg-l-145 {
11607
        margin-left: 145px;
11608
    }
11609
}
11610
 
11611
@media (max-width: 991px) {
11612
    .p-md-b-145 {
11613
        padding-bottom: 145px;
11614
    }
11615
 
11616
    .p-md-t-145 {
11617
        padding-top: 145px;
11618
    }
11619
 
11620
    .p-md-r-145 {
11621
        padding-right: 145px;
11622
    }
11623
 
11624
    .p-md-l-145 {
11625
        padding-left: 145px;
11626
    }
11627
 
11628
    .m-md-b-145 {
11629
        margin-bottom: 145px;
11630
    }
11631
 
11632
    .m-md-t-145 {
11633
        margin-top: 145px;
11634
    }
11635
 
11636
    .m-md-r-145 {
11637
        margin-right: 145px;
11638
    }
11639
 
11640
    .m-md-l-145 {
11641
        margin-left: 145px;
11642
    }
11643
}
11644
 
11645
@media (max-width: 767px) {
11646
    .p-sm-b-145 {
11647
        padding-bottom: 145px;
11648
    }
11649
 
11650
    .p-sm-t-145 {
11651
        padding-top: 145px;
11652
    }
11653
 
11654
    .p-sm-r-145 {
11655
        padding-right: 145px;
11656
    }
11657
 
11658
    .p-sm-l-145 {
11659
        padding-left: 145px;
11660
    }
11661
 
11662
    .m-sm-b-145 {
11663
        margin-bottom: 145px;
11664
    }
11665
 
11666
    .m-sm-t-145 {
11667
        margin-top: 145px;
11668
    }
11669
 
11670
    .m-sm-r-145 {
11671
        margin-right: 145px;
11672
    }
11673
 
11674
    .m-sm-l-145 {
11675
        margin-left: 145px;
11676
    }
11677
}
11678
 
11679
@media (max-width: 575px) {
11680
    .p-xs-b-145 {
11681
        padding-bottom: 145px;
11682
    }
11683
 
11684
    .p-xs-t-145 {
11685
        padding-top: 145px;
11686
    }
11687
 
11688
    .p-xs-r-145 {
11689
        padding-right: 145px;
11690
    }
11691
 
11692
    .p-xs-l-145 {
11693
        padding-left: 145px;
11694
    }
11695
 
11696
    .m-xs-b-145 {
11697
        margin-bottom: 145px;
11698
    }
11699
 
11700
    .m-xs-t-145 {
11701
        margin-top: 145px;
11702
    }
11703
 
11704
    .m-xs-r-145 {
11705
        margin-right: 145px;
11706
    }
11707
 
11708
    .m-xs-l-145 {
11709
        margin-left: 145px;
11710
    }
11711
}
11712
 
11713
@media (max-width: 1023px) {
11714
    .p-lg-b-150 {
11715
        padding-bottom: 150px;
11716
    }
11717
 
11718
    .p-lg-t-150 {
11719
        padding-top: 150px;
11720
    }
11721
 
11722
    .p-lg-r-150 {
11723
        padding-right: 150px;
11724
    }
11725
 
11726
    .p-lg-l-150 {
11727
        padding-left: 150px;
11728
    }
11729
 
11730
    .m-lg-b-150 {
11731
        margin-bottom: 150px;
11732
    }
11733
 
11734
    .m-lg-t-150 {
11735
        margin-top: 150px;
11736
    }
11737
 
11738
    .m-lg-r-150 {
11739
        margin-right: 150px;
11740
    }
11741
 
11742
    .m-lg-l-150 {
11743
        margin-left: 150px;
11744
    }
11745
}
11746
 
11747
@media (max-width: 991px) {
11748
    .p-md-b-150 {
11749
        padding-bottom: 150px;
11750
    }
11751
 
11752
    .p-md-t-150 {
11753
        padding-top: 150px;
11754
    }
11755
 
11756
    .p-md-r-150 {
11757
        padding-right: 150px;
11758
    }
11759
 
11760
    .p-md-l-150 {
11761
        padding-left: 150px;
11762
    }
11763
 
11764
    .m-md-b-150 {
11765
        margin-bottom: 150px;
11766
    }
11767
 
11768
    .m-md-t-150 {
11769
        margin-top: 150px;
11770
    }
11771
 
11772
    .m-md-r-150 {
11773
        margin-right: 150px;
11774
    }
11775
 
11776
    .m-md-l-150 {
11777
        margin-left: 150px;
11778
    }
11779
}
11780
 
11781
@media (max-width: 767px) {
11782
    .p-sm-b-150 {
11783
        padding-bottom: 150px;
11784
    }
11785
 
11786
    .p-sm-t-150 {
11787
        padding-top: 150px;
11788
    }
11789
 
11790
    .p-sm-r-150 {
11791
        padding-right: 150px;
11792
    }
11793
 
11794
    .p-sm-l-150 {
11795
        padding-left: 150px;
11796
    }
11797
 
11798
    .m-sm-b-150 {
11799
        margin-bottom: 150px;
11800
    }
11801
 
11802
    .m-sm-t-150 {
11803
        margin-top: 150px;
11804
    }
11805
 
11806
    .m-sm-r-150 {
11807
        margin-right: 150px;
11808
    }
11809
 
11810
    .m-sm-l-150 {
11811
        margin-left: 150px;
11812
    }
11813
}
11814
 
11815
@media (max-width: 575px) {
11816
    .p-xs-b-150 {
11817
        padding-bottom: 150px;
11818
    }
11819
 
11820
    .p-xs-t-150 {
11821
        padding-top: 150px;
11822
    }
11823
 
11824
    .p-xs-r-150 {
11825
        padding-right: 150px;
11826
    }
11827
 
11828
    .p-xs-l-150 {
11829
        padding-left: 150px;
11830
    }
11831
 
11832
    .m-xs-b-150 {
11833
        margin-bottom: 150px;
11834
    }
11835
 
11836
    .m-xs-t-150 {
11837
        margin-top: 150px;
11838
    }
11839
 
11840
    .m-xs-r-150 {
11841
        margin-right: 150px;
11842
    }
11843
 
11844
    .m-xs-l-150 {
11845
        margin-left: 150px;
11846
    }
11847
}
11848
 
11849
@media (max-width: 1023px) {
11850
    .p-lg-b-155 {
11851
        padding-bottom: 155px;
11852
    }
11853
 
11854
    .p-lg-t-155 {
11855
        padding-top: 155px;
11856
    }
11857
 
11858
    .p-lg-r-155 {
11859
        padding-right: 155px;
11860
    }
11861
 
11862
    .p-lg-l-155 {
11863
        padding-left: 155px;
11864
    }
11865
 
11866
    .m-lg-b-155 {
11867
        margin-bottom: 155px;
11868
    }
11869
 
11870
    .m-lg-t-155 {
11871
        margin-top: 155px;
11872
    }
11873
 
11874
    .m-lg-r-155 {
11875
        margin-right: 155px;
11876
    }
11877
 
11878
    .m-lg-l-155 {
11879
        margin-left: 155px;
11880
    }
11881
}
11882
 
11883
@media (max-width: 991px) {
11884
    .p-md-b-155 {
11885
        padding-bottom: 155px;
11886
    }
11887
 
11888
    .p-md-t-155 {
11889
        padding-top: 155px;
11890
    }
11891
 
11892
    .p-md-r-155 {
11893
        padding-right: 155px;
11894
    }
11895
 
11896
    .p-md-l-155 {
11897
        padding-left: 155px;
11898
    }
11899
 
11900
    .m-md-b-155 {
11901
        margin-bottom: 155px;
11902
    }
11903
 
11904
    .m-md-t-155 {
11905
        margin-top: 155px;
11906
    }
11907
 
11908
    .m-md-r-155 {
11909
        margin-right: 155px;
11910
    }
11911
 
11912
    .m-md-l-155 {
11913
        margin-left: 155px;
11914
    }
11915
}
11916
 
11917
@media (max-width: 767px) {
11918
    .p-sm-b-155 {
11919
        padding-bottom: 155px;
11920
    }
11921
 
11922
    .p-sm-t-155 {
11923
        padding-top: 155px;
11924
    }
11925
 
11926
    .p-sm-r-155 {
11927
        padding-right: 155px;
11928
    }
11929
 
11930
    .p-sm-l-155 {
11931
        padding-left: 155px;
11932
    }
11933
 
11934
    .m-sm-b-155 {
11935
        margin-bottom: 155px;
11936
    }
11937
 
11938
    .m-sm-t-155 {
11939
        margin-top: 155px;
11940
    }
11941
 
11942
    .m-sm-r-155 {
11943
        margin-right: 155px;
11944
    }
11945
 
11946
    .m-sm-l-155 {
11947
        margin-left: 155px;
11948
    }
11949
}
11950
 
11951
@media (max-width: 575px) {
11952
    .p-xs-b-155 {
11953
        padding-bottom: 155px;
11954
    }
11955
 
11956
    .p-xs-t-155 {
11957
        padding-top: 155px;
11958
    }
11959
 
11960
    .p-xs-r-155 {
11961
        padding-right: 155px;
11962
    }
11963
 
11964
    .p-xs-l-155 {
11965
        padding-left: 155px;
11966
    }
11967
 
11968
    .m-xs-b-155 {
11969
        margin-bottom: 155px;
11970
    }
11971
 
11972
    .m-xs-t-155 {
11973
        margin-top: 155px;
11974
    }
11975
 
11976
    .m-xs-r-155 {
11977
        margin-right: 155px;
11978
    }
11979
 
11980
    .m-xs-l-155 {
11981
        margin-left: 155px;
11982
    }
11983
}
11984
 
11985
@media (max-width: 1023px) {
11986
    .p-lg-b-160 {
11987
        padding-bottom: 160px;
11988
    }
11989
 
11990
    .p-lg-t-160 {
11991
        padding-top: 160px;
11992
    }
11993
 
11994
    .p-lg-r-160 {
11995
        padding-right: 160px;
11996
    }
11997
 
11998
    .p-lg-l-160 {
11999
        padding-left: 160px;
12000
    }
12001
 
12002
    .m-lg-b-160 {
12003
        margin-bottom: 160px;
12004
    }
12005
 
12006
    .m-lg-t-160 {
12007
        margin-top: 160px;
12008
    }
12009
 
12010
    .m-lg-r-160 {
12011
        margin-right: 160px;
12012
    }
12013
 
12014
    .m-lg-l-160 {
12015
        margin-left: 160px;
12016
    }
12017
}
12018
 
12019
@media (max-width: 991px) {
12020
    .p-md-b-160 {
12021
        padding-bottom: 160px;
12022
    }
12023
 
12024
    .p-md-t-160 {
12025
        padding-top: 160px;
12026
    }
12027
 
12028
    .p-md-r-160 {
12029
        padding-right: 160px;
12030
    }
12031
 
12032
    .p-md-l-160 {
12033
        padding-left: 160px;
12034
    }
12035
 
12036
    .m-md-b-160 {
12037
        margin-bottom: 160px;
12038
    }
12039
 
12040
    .m-md-t-160 {
12041
        margin-top: 160px;
12042
    }
12043
 
12044
    .m-md-r-160 {
12045
        margin-right: 160px;
12046
    }
12047
 
12048
    .m-md-l-160 {
12049
        margin-left: 160px;
12050
    }
12051
}
12052
 
12053
@media (max-width: 767px) {
12054
    .p-sm-b-160 {
12055
        padding-bottom: 160px;
12056
    }
12057
 
12058
    .p-sm-t-160 {
12059
        padding-top: 160px;
12060
    }
12061
 
12062
    .p-sm-r-160 {
12063
        padding-right: 160px;
12064
    }
12065
 
12066
    .p-sm-l-160 {
12067
        padding-left: 160px;
12068
    }
12069
 
12070
    .m-sm-b-160 {
12071
        margin-bottom: 160px;
12072
    }
12073
 
12074
    .m-sm-t-160 {
12075
        margin-top: 160px;
12076
    }
12077
 
12078
    .m-sm-r-160 {
12079
        margin-right: 160px;
12080
    }
12081
 
12082
    .m-sm-l-160 {
12083
        margin-left: 160px;
12084
    }
12085
}
12086
 
12087
@media (max-width: 575px) {
12088
    .p-xs-b-160 {
12089
        padding-bottom: 160px;
12090
    }
12091
 
12092
    .p-xs-t-160 {
12093
        padding-top: 160px;
12094
    }
12095
 
12096
    .p-xs-r-160 {
12097
        padding-right: 160px;
12098
    }
12099
 
12100
    .p-xs-l-160 {
12101
        padding-left: 160px;
12102
    }
12103
 
12104
    .m-xs-b-160 {
12105
        margin-bottom: 160px;
12106
    }
12107
 
12108
    .m-xs-t-160 {
12109
        margin-top: 160px;
12110
    }
12111
 
12112
    .m-xs-r-160 {
12113
        margin-right: 160px;
12114
    }
12115
 
12116
    .m-xs-l-160 {
12117
        margin-left: 160px;
12118
    }
12119
}
12120
 
12121
@media (max-width: 1023px) {
12122
    .p-lg-b-165 {
12123
        padding-bottom: 165px;
12124
    }
12125
 
12126
    .p-lg-t-165 {
12127
        padding-top: 165px;
12128
    }
12129
 
12130
    .p-lg-r-165 {
12131
        padding-right: 165px;
12132
    }
12133
 
12134
    .p-lg-l-165 {
12135
        padding-left: 165px;
12136
    }
12137
 
12138
    .m-lg-b-165 {
12139
        margin-bottom: 165px;
12140
    }
12141
 
12142
    .m-lg-t-165 {
12143
        margin-top: 165px;
12144
    }
12145
 
12146
    .m-lg-r-165 {
12147
        margin-right: 165px;
12148
    }
12149
 
12150
    .m-lg-l-165 {
12151
        margin-left: 165px;
12152
    }
12153
}
12154
 
12155
@media (max-width: 991px) {
12156
    .p-md-b-165 {
12157
        padding-bottom: 165px;
12158
    }
12159
 
12160
    .p-md-t-165 {
12161
        padding-top: 165px;
12162
    }
12163
 
12164
    .p-md-r-165 {
12165
        padding-right: 165px;
12166
    }
12167
 
12168
    .p-md-l-165 {
12169
        padding-left: 165px;
12170
    }
12171
 
12172
    .m-md-b-165 {
12173
        margin-bottom: 165px;
12174
    }
12175
 
12176
    .m-md-t-165 {
12177
        margin-top: 165px;
12178
    }
12179
 
12180
    .m-md-r-165 {
12181
        margin-right: 165px;
12182
    }
12183
 
12184
    .m-md-l-165 {
12185
        margin-left: 165px;
12186
    }
12187
}
12188
 
12189
@media (max-width: 767px) {
12190
    .p-sm-b-165 {
12191
        padding-bottom: 165px;
12192
    }
12193
 
12194
    .p-sm-t-165 {
12195
        padding-top: 165px;
12196
    }
12197
 
12198
    .p-sm-r-165 {
12199
        padding-right: 165px;
12200
    }
12201
 
12202
    .p-sm-l-165 {
12203
        padding-left: 165px;
12204
    }
12205
 
12206
    .m-sm-b-165 {
12207
        margin-bottom: 165px;
12208
    }
12209
 
12210
    .m-sm-t-165 {
12211
        margin-top: 165px;
12212
    }
12213
 
12214
    .m-sm-r-165 {
12215
        margin-right: 165px;
12216
    }
12217
 
12218
    .m-sm-l-165 {
12219
        margin-left: 165px;
12220
    }
12221
}
12222
 
12223
@media (max-width: 575px) {
12224
    .p-xs-b-165 {
12225
        padding-bottom: 165px;
12226
    }
12227
 
12228
    .p-xs-t-165 {
12229
        padding-top: 165px;
12230
    }
12231
 
12232
    .p-xs-r-165 {
12233
        padding-right: 165px;
12234
    }
12235
 
12236
    .p-xs-l-165 {
12237
        padding-left: 165px;
12238
    }
12239
 
12240
    .m-xs-b-165 {
12241
        margin-bottom: 165px;
12242
    }
12243
 
12244
    .m-xs-t-165 {
12245
        margin-top: 165px;
12246
    }
12247
 
12248
    .m-xs-r-165 {
12249
        margin-right: 165px;
12250
    }
12251
 
12252
    .m-xs-l-165 {
12253
        margin-left: 165px;
12254
    }
12255
}
12256
 
12257
@media (max-width: 1023px) {
12258
    .p-lg-b-170 {
12259
        padding-bottom: 170px;
12260
    }
12261
 
12262
    .p-lg-t-170 {
12263
        padding-top: 170px;
12264
    }
12265
 
12266
    .p-lg-r-170 {
12267
        padding-right: 170px;
12268
    }
12269
 
12270
    .p-lg-l-170 {
12271
        padding-left: 170px;
12272
    }
12273
 
12274
    .m-lg-b-170 {
12275
        margin-bottom: 170px;
12276
    }
12277
 
12278
    .m-lg-t-170 {
12279
        margin-top: 170px;
12280
    }
12281
 
12282
    .m-lg-r-170 {
12283
        margin-right: 170px;
12284
    }
12285
 
12286
    .m-lg-l-170 {
12287
        margin-left: 170px;
12288
    }
12289
}
12290
 
12291
@media (max-width: 991px) {
12292
    .p-md-b-170 {
12293
        padding-bottom: 170px;
12294
    }
12295
 
12296
    .p-md-t-170 {
12297
        padding-top: 170px;
12298
    }
12299
 
12300
    .p-md-r-170 {
12301
        padding-right: 170px;
12302
    }
12303
 
12304
    .p-md-l-170 {
12305
        padding-left: 170px;
12306
    }
12307
 
12308
    .m-md-b-170 {
12309
        margin-bottom: 170px;
12310
    }
12311
 
12312
    .m-md-t-170 {
12313
        margin-top: 170px;
12314
    }
12315
 
12316
    .m-md-r-170 {
12317
        margin-right: 170px;
12318
    }
12319
 
12320
    .m-md-l-170 {
12321
        margin-left: 170px;
12322
    }
12323
}
12324
 
12325
@media (max-width: 767px) {
12326
    .p-sm-b-170 {
12327
        padding-bottom: 170px;
12328
    }
12329
 
12330
    .p-sm-t-170 {
12331
        padding-top: 170px;
12332
    }
12333
 
12334
    .p-sm-r-170 {
12335
        padding-right: 170px;
12336
    }
12337
 
12338
    .p-sm-l-170 {
12339
        padding-left: 170px;
12340
    }
12341
 
12342
    .m-sm-b-170 {
12343
        margin-bottom: 170px;
12344
    }
12345
 
12346
    .m-sm-t-170 {
12347
        margin-top: 170px;
12348
    }
12349
 
12350
    .m-sm-r-170 {
12351
        margin-right: 170px;
12352
    }
12353
 
12354
    .m-sm-l-170 {
12355
        margin-left: 170px;
12356
    }
12357
}
12358
 
12359
@media (max-width: 575px) {
12360
    .p-xs-b-170 {
12361
        padding-bottom: 170px;
12362
    }
12363
 
12364
    .p-xs-t-170 {
12365
        padding-top: 170px;
12366
    }
12367
 
12368
    .p-xs-r-170 {
12369
        padding-right: 170px;
12370
    }
12371
 
12372
    .p-xs-l-170 {
12373
        padding-left: 170px;
12374
    }
12375
 
12376
    .m-xs-b-170 {
12377
        margin-bottom: 170px;
12378
    }
12379
 
12380
    .m-xs-t-170 {
12381
        margin-top: 170px;
12382
    }
12383
 
12384
    .m-xs-r-170 {
12385
        margin-right: 170px;
12386
    }
12387
 
12388
    .m-xs-l-170 {
12389
        margin-left: 170px;
12390
    }
12391
}
12392
 
12393
@media (max-width: 1023px) {
12394
    .p-lg-b-175 {
12395
        padding-bottom: 175px;
12396
    }
12397
 
12398
    .p-lg-t-175 {
12399
        padding-top: 175px;
12400
    }
12401
 
12402
    .p-lg-r-175 {
12403
        padding-right: 175px;
12404
    }
12405
 
12406
    .p-lg-l-175 {
12407
        padding-left: 175px;
12408
    }
12409
 
12410
    .m-lg-b-175 {
12411
        margin-bottom: 175px;
12412
    }
12413
 
12414
    .m-lg-t-175 {
12415
        margin-top: 175px;
12416
    }
12417
 
12418
    .m-lg-r-175 {
12419
        margin-right: 175px;
12420
    }
12421
 
12422
    .m-lg-l-175 {
12423
        margin-left: 175px;
12424
    }
12425
}
12426
 
12427
@media (max-width: 991px) {
12428
    .p-md-b-175 {
12429
        padding-bottom: 175px;
12430
    }
12431
 
12432
    .p-md-t-175 {
12433
        padding-top: 175px;
12434
    }
12435
 
12436
    .p-md-r-175 {
12437
        padding-right: 175px;
12438
    }
12439
 
12440
    .p-md-l-175 {
12441
        padding-left: 175px;
12442
    }
12443
 
12444
    .m-md-b-175 {
12445
        margin-bottom: 175px;
12446
    }
12447
 
12448
    .m-md-t-175 {
12449
        margin-top: 175px;
12450
    }
12451
 
12452
    .m-md-r-175 {
12453
        margin-right: 175px;
12454
    }
12455
 
12456
    .m-md-l-175 {
12457
        margin-left: 175px;
12458
    }
12459
}
12460
 
12461
@media (max-width: 767px) {
12462
    .p-sm-b-175 {
12463
        padding-bottom: 175px;
12464
    }
12465
 
12466
    .p-sm-t-175 {
12467
        padding-top: 175px;
12468
    }
12469
 
12470
    .p-sm-r-175 {
12471
        padding-right: 175px;
12472
    }
12473
 
12474
    .p-sm-l-175 {
12475
        padding-left: 175px;
12476
    }
12477
 
12478
    .m-sm-b-175 {
12479
        margin-bottom: 175px;
12480
    }
12481
 
12482
    .m-sm-t-175 {
12483
        margin-top: 175px;
12484
    }
12485
 
12486
    .m-sm-r-175 {
12487
        margin-right: 175px;
12488
    }
12489
 
12490
    .m-sm-l-175 {
12491
        margin-left: 175px;
12492
    }
12493
}
12494
 
12495
@media (max-width: 575px) {
12496
    .p-xs-b-175 {
12497
        padding-bottom: 175px;
12498
    }
12499
 
12500
    .p-xs-t-175 {
12501
        padding-top: 175px;
12502
    }
12503
 
12504
    .p-xs-r-175 {
12505
        padding-right: 175px;
12506
    }
12507
 
12508
    .p-xs-l-175 {
12509
        padding-left: 175px;
12510
    }
12511
 
12512
    .m-xs-b-175 {
12513
        margin-bottom: 175px;
12514
    }
12515
 
12516
    .m-xs-t-175 {
12517
        margin-top: 175px;
12518
    }
12519
 
12520
    .m-xs-r-175 {
12521
        margin-right: 175px;
12522
    }
12523
 
12524
    .m-xs-l-175 {
12525
        margin-left: 175px;
12526
    }
12527
}
12528
 
12529
@media (max-width: 1023px) {
12530
    .p-lg-b-180 {
12531
        padding-bottom: 180px;
12532
    }
12533
 
12534
    .p-lg-t-180 {
12535
        padding-top: 180px;
12536
    }
12537
 
12538
    .p-lg-r-180 {
12539
        padding-right: 180px;
12540
    }
12541
 
12542
    .p-lg-l-180 {
12543
        padding-left: 180px;
12544
    }
12545
 
12546
    .m-lg-b-180 {
12547
        margin-bottom: 180px;
12548
    }
12549
 
12550
    .m-lg-t-180 {
12551
        margin-top: 180px;
12552
    }
12553
 
12554
    .m-lg-r-180 {
12555
        margin-right: 180px;
12556
    }
12557
 
12558
    .m-lg-l-180 {
12559
        margin-left: 180px;
12560
    }
12561
}
12562
 
12563
@media (max-width: 991px) {
12564
    .p-md-b-180 {
12565
        padding-bottom: 180px;
12566
    }
12567
 
12568
    .p-md-t-180 {
12569
        padding-top: 180px;
12570
    }
12571
 
12572
    .p-md-r-180 {
12573
        padding-right: 180px;
12574
    }
12575
 
12576
    .p-md-l-180 {
12577
        padding-left: 180px;
12578
    }
12579
 
12580
    .m-md-b-180 {
12581
        margin-bottom: 180px;
12582
    }
12583
 
12584
    .m-md-t-180 {
12585
        margin-top: 180px;
12586
    }
12587
 
12588
    .m-md-r-180 {
12589
        margin-right: 180px;
12590
    }
12591
 
12592
    .m-md-l-180 {
12593
        margin-left: 180px;
12594
    }
12595
}
12596
 
12597
@media (max-width: 767px) {
12598
    .p-sm-b-180 {
12599
        padding-bottom: 180px;
12600
    }
12601
 
12602
    .p-sm-t-180 {
12603
        padding-top: 180px;
12604
    }
12605
 
12606
    .p-sm-r-180 {
12607
        padding-right: 180px;
12608
    }
12609
 
12610
    .p-sm-l-180 {
12611
        padding-left: 180px;
12612
    }
12613
 
12614
    .m-sm-b-180 {
12615
        margin-bottom: 180px;
12616
    }
12617
 
12618
    .m-sm-t-180 {
12619
        margin-top: 180px;
12620
    }
12621
 
12622
    .m-sm-r-180 {
12623
        margin-right: 180px;
12624
    }
12625
 
12626
    .m-sm-l-180 {
12627
        margin-left: 180px;
12628
    }
12629
}
12630
 
12631
@media (max-width: 575px) {
12632
    .p-xs-b-180 {
12633
        padding-bottom: 180px;
12634
    }
12635
 
12636
    .p-xs-t-180 {
12637
        padding-top: 180px;
12638
    }
12639
 
12640
    .p-xs-r-180 {
12641
        padding-right: 180px;
12642
    }
12643
 
12644
    .p-xs-l-180 {
12645
        padding-left: 180px;
12646
    }
12647
 
12648
    .m-xs-b-180 {
12649
        margin-bottom: 180px;
12650
    }
12651
 
12652
    .m-xs-t-180 {
12653
        margin-top: 180px;
12654
    }
12655
 
12656
    .m-xs-r-180 {
12657
        margin-right: 180px;
12658
    }
12659
 
12660
    .m-xs-l-180 {
12661
        margin-left: 180px;
12662
    }
12663
}
12664
 
12665
@media (max-width: 1023px) {
12666
    .p-lg-b-185 {
12667
        padding-bottom: 185px;
12668
    }
12669
 
12670
    .p-lg-t-185 {
12671
        padding-top: 185px;
12672
    }
12673
 
12674
    .p-lg-r-185 {
12675
        padding-right: 185px;
12676
    }
12677
 
12678
    .p-lg-l-185 {
12679
        padding-left: 185px;
12680
    }
12681
 
12682
    .m-lg-b-185 {
12683
        margin-bottom: 185px;
12684
    }
12685
 
12686
    .m-lg-t-185 {
12687
        margin-top: 185px;
12688
    }
12689
 
12690
    .m-lg-r-185 {
12691
        margin-right: 185px;
12692
    }
12693
 
12694
    .m-lg-l-185 {
12695
        margin-left: 185px;
12696
    }
12697
}
12698
 
12699
@media (max-width: 991px) {
12700
    .p-md-b-185 {
12701
        padding-bottom: 185px;
12702
    }
12703
 
12704
    .p-md-t-185 {
12705
        padding-top: 185px;
12706
    }
12707
 
12708
    .p-md-r-185 {
12709
        padding-right: 185px;
12710
    }
12711
 
12712
    .p-md-l-185 {
12713
        padding-left: 185px;
12714
    }
12715
 
12716
    .m-md-b-185 {
12717
        margin-bottom: 185px;
12718
    }
12719
 
12720
    .m-md-t-185 {
12721
        margin-top: 185px;
12722
    }
12723
 
12724
    .m-md-r-185 {
12725
        margin-right: 185px;
12726
    }
12727
 
12728
    .m-md-l-185 {
12729
        margin-left: 185px;
12730
    }
12731
}
12732
 
12733
@media (max-width: 767px) {
12734
    .p-sm-b-185 {
12735
        padding-bottom: 185px;
12736
    }
12737
 
12738
    .p-sm-t-185 {
12739
        padding-top: 185px;
12740
    }
12741
 
12742
    .p-sm-r-185 {
12743
        padding-right: 185px;
12744
    }
12745
 
12746
    .p-sm-l-185 {
12747
        padding-left: 185px;
12748
    }
12749
 
12750
    .m-sm-b-185 {
12751
        margin-bottom: 185px;
12752
    }
12753
 
12754
    .m-sm-t-185 {
12755
        margin-top: 185px;
12756
    }
12757
 
12758
    .m-sm-r-185 {
12759
        margin-right: 185px;
12760
    }
12761
 
12762
    .m-sm-l-185 {
12763
        margin-left: 185px;
12764
    }
12765
}
12766
 
12767
@media (max-width: 575px) {
12768
    .p-xs-b-185 {
12769
        padding-bottom: 185px;
12770
    }
12771
 
12772
    .p-xs-t-185 {
12773
        padding-top: 185px;
12774
    }
12775
 
12776
    .p-xs-r-185 {
12777
        padding-right: 185px;
12778
    }
12779
 
12780
    .p-xs-l-185 {
12781
        padding-left: 185px;
12782
    }
12783
 
12784
    .m-xs-b-185 {
12785
        margin-bottom: 185px;
12786
    }
12787
 
12788
    .m-xs-t-185 {
12789
        margin-top: 185px;
12790
    }
12791
 
12792
    .m-xs-r-185 {
12793
        margin-right: 185px;
12794
    }
12795
 
12796
    .m-xs-l-185 {
12797
        margin-left: 185px;
12798
    }
12799
}
12800
 
12801
@media (max-width: 1023px) {
12802
    .p-lg-b-190 {
12803
        padding-bottom: 190px;
12804
    }
12805
 
12806
    .p-lg-t-190 {
12807
        padding-top: 190px;
12808
    }
12809
 
12810
    .p-lg-r-190 {
12811
        padding-right: 190px;
12812
    }
12813
 
12814
    .p-lg-l-190 {
12815
        padding-left: 190px;
12816
    }
12817
 
12818
    .m-lg-b-190 {
12819
        margin-bottom: 190px;
12820
    }
12821
 
12822
    .m-lg-t-190 {
12823
        margin-top: 190px;
12824
    }
12825
 
12826
    .m-lg-r-190 {
12827
        margin-right: 190px;
12828
    }
12829
 
12830
    .m-lg-l-190 {
12831
        margin-left: 190px;
12832
    }
12833
}
12834
 
12835
@media (max-width: 991px) {
12836
    .p-md-b-190 {
12837
        padding-bottom: 190px;
12838
    }
12839
 
12840
    .p-md-t-190 {
12841
        padding-top: 190px;
12842
    }
12843
 
12844
    .p-md-r-190 {
12845
        padding-right: 190px;
12846
    }
12847
 
12848
    .p-md-l-190 {
12849
        padding-left: 190px;
12850
    }
12851
 
12852
    .m-md-b-190 {
12853
        margin-bottom: 190px;
12854
    }
12855
 
12856
    .m-md-t-190 {
12857
        margin-top: 190px;
12858
    }
12859
 
12860
    .m-md-r-190 {
12861
        margin-right: 190px;
12862
    }
12863
 
12864
    .m-md-l-190 {
12865
        margin-left: 190px;
12866
    }
12867
}
12868
 
12869
@media (max-width: 767px) {
12870
    .p-sm-b-190 {
12871
        padding-bottom: 190px;
12872
    }
12873
 
12874
    .p-sm-t-190 {
12875
        padding-top: 190px;
12876
    }
12877
 
12878
    .p-sm-r-190 {
12879
        padding-right: 190px;
12880
    }
12881
 
12882
    .p-sm-l-190 {
12883
        padding-left: 190px;
12884
    }
12885
 
12886
    .m-sm-b-190 {
12887
        margin-bottom: 190px;
12888
    }
12889
 
12890
    .m-sm-t-190 {
12891
        margin-top: 190px;
12892
    }
12893
 
12894
    .m-sm-r-190 {
12895
        margin-right: 190px;
12896
    }
12897
 
12898
    .m-sm-l-190 {
12899
        margin-left: 190px;
12900
    }
12901
}
12902
 
12903
@media (max-width: 575px) {
12904
    .p-xs-b-190 {
12905
        padding-bottom: 190px;
12906
    }
12907
 
12908
    .p-xs-t-190 {
12909
        padding-top: 190px;
12910
    }
12911
 
12912
    .p-xs-r-190 {
12913
        padding-right: 190px;
12914
    }
12915
 
12916
    .p-xs-l-190 {
12917
        padding-left: 190px;
12918
    }
12919
 
12920
    .m-xs-b-190 {
12921
        margin-bottom: 190px;
12922
    }
12923
 
12924
    .m-xs-t-190 {
12925
        margin-top: 190px;
12926
    }
12927
 
12928
    .m-xs-r-190 {
12929
        margin-right: 190px;
12930
    }
12931
 
12932
    .m-xs-l-190 {
12933
        margin-left: 190px;
12934
    }
12935
}
12936
 
12937
@media (max-width: 1023px) {
12938
    .p-lg-b-195 {
12939
        padding-bottom: 195px;
12940
    }
12941
 
12942
    .p-lg-t-195 {
12943
        padding-top: 195px;
12944
    }
12945
 
12946
    .p-lg-r-195 {
12947
        padding-right: 195px;
12948
    }
12949
 
12950
    .p-lg-l-195 {
12951
        padding-left: 195px;
12952
    }
12953
 
12954
    .m-lg-b-195 {
12955
        margin-bottom: 195px;
12956
    }
12957
 
12958
    .m-lg-t-195 {
12959
        margin-top: 195px;
12960
    }
12961
 
12962
    .m-lg-r-195 {
12963
        margin-right: 195px;
12964
    }
12965
 
12966
    .m-lg-l-195 {
12967
        margin-left: 195px;
12968
    }
12969
}
12970
 
12971
@media (max-width: 991px) {
12972
    .p-md-b-195 {
12973
        padding-bottom: 195px;
12974
    }
12975
 
12976
    .p-md-t-195 {
12977
        padding-top: 195px;
12978
    }
12979
 
12980
    .p-md-r-195 {
12981
        padding-right: 195px;
12982
    }
12983
 
12984
    .p-md-l-195 {
12985
        padding-left: 195px;
12986
    }
12987
 
12988
    .m-md-b-195 {
12989
        margin-bottom: 195px;
12990
    }
12991
 
12992
    .m-md-t-195 {
12993
        margin-top: 195px;
12994
    }
12995
 
12996
    .m-md-r-195 {
12997
        margin-right: 195px;
12998
    }
12999
 
13000
    .m-md-l-195 {
13001
        margin-left: 195px;
13002
    }
13003
}
13004
 
13005
@media (max-width: 767px) {
13006
    .p-sm-b-195 {
13007
        padding-bottom: 195px;
13008
    }
13009
 
13010
    .p-sm-t-195 {
13011
        padding-top: 195px;
13012
    }
13013
 
13014
    .p-sm-r-195 {
13015
        padding-right: 195px;
13016
    }
13017
 
13018
    .p-sm-l-195 {
13019
        padding-left: 195px;
13020
    }
13021
 
13022
    .m-sm-b-195 {
13023
        margin-bottom: 195px;
13024
    }
13025
 
13026
    .m-sm-t-195 {
13027
        margin-top: 195px;
13028
    }
13029
 
13030
    .m-sm-r-195 {
13031
        margin-right: 195px;
13032
    }
13033
 
13034
    .m-sm-l-195 {
13035
        margin-left: 195px;
13036
    }
13037
}
13038
 
13039
@media (max-width: 575px) {
13040
    .p-xs-b-195 {
13041
        padding-bottom: 195px;
13042
    }
13043
 
13044
    .p-xs-t-195 {
13045
        padding-top: 195px;
13046
    }
13047
 
13048
    .p-xs-r-195 {
13049
        padding-right: 195px;
13050
    }
13051
 
13052
    .p-xs-l-195 {
13053
        padding-left: 195px;
13054
    }
13055
 
13056
    .m-xs-b-195 {
13057
        margin-bottom: 195px;
13058
    }
13059
 
13060
    .m-xs-t-195 {
13061
        margin-top: 195px;
13062
    }
13063
 
13064
    .m-xs-r-195 {
13065
        margin-right: 195px;
13066
    }
13067
 
13068
    .m-xs-l-195 {
13069
        margin-left: 195px;
13070
    }
13071
}
13072
 
13073
@media (max-width: 1023px) {
13074
    .p-lg-b-200 {
13075
        padding-bottom: 200px;
13076
    }
13077
 
13078
    .p-lg-t-200 {
13079
        padding-top: 200px;
13080
    }
13081
 
13082
    .p-lg-r-200 {
13083
        padding-right: 200px;
13084
    }
13085
 
13086
    .p-lg-l-200 {
13087
        padding-left: 200px;
13088
    }
13089
 
13090
    .m-lg-b-200 {
13091
        margin-bottom: 200px;
13092
    }
13093
 
13094
    .m-lg-t-200 {
13095
        margin-top: 200px;
13096
    }
13097
 
13098
    .m-lg-r-200 {
13099
        margin-right: 200px;
13100
    }
13101
 
13102
    .m-lg-l-200 {
13103
        margin-left: 200px;
13104
    }
13105
}
13106
 
13107
@media (max-width: 991px) {
13108
    .p-md-b-200 {
13109
        padding-bottom: 200px;
13110
    }
13111
 
13112
    .p-md-t-200 {
13113
        padding-top: 200px;
13114
    }
13115
 
13116
    .p-md-r-200 {
13117
        padding-right: 200px;
13118
    }
13119
 
13120
    .p-md-l-200 {
13121
        padding-left: 200px;
13122
    }
13123
 
13124
    .m-md-b-200 {
13125
        margin-bottom: 200px;
13126
    }
13127
 
13128
    .m-md-t-200 {
13129
        margin-top: 200px;
13130
    }
13131
 
13132
    .m-md-r-200 {
13133
        margin-right: 200px;
13134
    }
13135
 
13136
    .m-md-l-200 {
13137
        margin-left: 200px;
13138
    }
13139
}
13140
 
13141
@media (max-width: 767px) {
13142
    .p-sm-b-200 {
13143
        padding-bottom: 200px;
13144
    }
13145
 
13146
    .p-sm-t-200 {
13147
        padding-top: 200px;
13148
    }
13149
 
13150
    .p-sm-r-200 {
13151
        padding-right: 200px;
13152
    }
13153
 
13154
    .p-sm-l-200 {
13155
        padding-left: 200px;
13156
    }
13157
 
13158
    .m-sm-b-200 {
13159
        margin-bottom: 200px;
13160
    }
13161
 
13162
    .m-sm-t-200 {
13163
        margin-top: 200px;
13164
    }
13165
 
13166
    .m-sm-r-200 {
13167
        margin-right: 200px;
13168
    }
13169
 
13170
    .m-sm-l-200 {
13171
        margin-left: 200px;
13172
    }
13173
}
13174
 
13175
@media (max-width: 575px) {
13176
    .p-xs-b-200 {
13177
        padding-bottom: 200px;
13178
    }
13179
 
13180
    .p-xs-t-200 {
13181
        padding-top: 200px;
13182
    }
13183
 
13184
    .p-xs-r-200 {
13185
        padding-right: 200px;
13186
    }
13187
 
13188
    .p-xs-l-200 {
13189
        padding-left: 200px;
13190
    }
13191
 
13192
    .m-xs-b-200 {
13193
        margin-bottom: 200px;
13194
    }
13195
 
13196
    .m-xs-t-200 {
13197
        margin-top: 200px;
13198
    }
13199
 
13200
    .m-xs-r-200 {
13201
        margin-right: 200px;
13202
    }
13203
 
13204
    .m-xs-l-200 {
13205
        margin-left: 200px;
13206
    }
13207
}
13208
 
13209
@media (max-width: 1023px) {
13210
    .p-lg-b-205 {
13211
        padding-bottom: 205px;
13212
    }
13213
 
13214
    .p-lg-t-205 {
13215
        padding-top: 205px;
13216
    }
13217
 
13218
    .p-lg-r-205 {
13219
        padding-right: 205px;
13220
    }
13221
 
13222
    .p-lg-l-205 {
13223
        padding-left: 205px;
13224
    }
13225
 
13226
    .m-lg-b-205 {
13227
        margin-bottom: 205px;
13228
    }
13229
 
13230
    .m-lg-t-205 {
13231
        margin-top: 205px;
13232
    }
13233
 
13234
    .m-lg-r-205 {
13235
        margin-right: 205px;
13236
    }
13237
 
13238
    .m-lg-l-205 {
13239
        margin-left: 205px;
13240
    }
13241
}
13242
 
13243
@media (max-width: 991px) {
13244
    .p-md-b-205 {
13245
        padding-bottom: 205px;
13246
    }
13247
 
13248
    .p-md-t-205 {
13249
        padding-top: 205px;
13250
    }
13251
 
13252
    .p-md-r-205 {
13253
        padding-right: 205px;
13254
    }
13255
 
13256
    .p-md-l-205 {
13257
        padding-left: 205px;
13258
    }
13259
 
13260
    .m-md-b-205 {
13261
        margin-bottom: 205px;
13262
    }
13263
 
13264
    .m-md-t-205 {
13265
        margin-top: 205px;
13266
    }
13267
 
13268
    .m-md-r-205 {
13269
        margin-right: 205px;
13270
    }
13271
 
13272
    .m-md-l-205 {
13273
        margin-left: 205px;
13274
    }
13275
}
13276
 
13277
@media (max-width: 767px) {
13278
    .p-sm-b-205 {
13279
        padding-bottom: 205px;
13280
    }
13281
 
13282
    .p-sm-t-205 {
13283
        padding-top: 205px;
13284
    }
13285
 
13286
    .p-sm-r-205 {
13287
        padding-right: 205px;
13288
    }
13289
 
13290
    .p-sm-l-205 {
13291
        padding-left: 205px;
13292
    }
13293
 
13294
    .m-sm-b-205 {
13295
        margin-bottom: 205px;
13296
    }
13297
 
13298
    .m-sm-t-205 {
13299
        margin-top: 205px;
13300
    }
13301
 
13302
    .m-sm-r-205 {
13303
        margin-right: 205px;
13304
    }
13305
 
13306
    .m-sm-l-205 {
13307
        margin-left: 205px;
13308
    }
13309
}
13310
 
13311
@media (max-width: 575px) {
13312
    .p-xs-b-205 {
13313
        padding-bottom: 205px;
13314
    }
13315
 
13316
    .p-xs-t-205 {
13317
        padding-top: 205px;
13318
    }
13319
 
13320
    .p-xs-r-205 {
13321
        padding-right: 205px;
13322
    }
13323
 
13324
    .p-xs-l-205 {
13325
        padding-left: 205px;
13326
    }
13327
 
13328
    .m-xs-b-205 {
13329
        margin-bottom: 205px;
13330
    }
13331
 
13332
    .m-xs-t-205 {
13333
        margin-top: 205px;
13334
    }
13335
 
13336
    .m-xs-r-205 {
13337
        margin-right: 205px;
13338
    }
13339
 
13340
    .m-xs-l-205 {
13341
        margin-left: 205px;
13342
    }
13343
}
13344
 
13345
@media (max-width: 1023px) {
13346
    .p-lg-b-210 {
13347
        padding-bottom: 210px;
13348
    }
13349
 
13350
    .p-lg-t-210 {
13351
        padding-top: 210px;
13352
    }
13353
 
13354
    .p-lg-r-210 {
13355
        padding-right: 210px;
13356
    }
13357
 
13358
    .p-lg-l-210 {
13359
        padding-left: 210px;
13360
    }
13361
 
13362
    .m-lg-b-210 {
13363
        margin-bottom: 210px;
13364
    }
13365
 
13366
    .m-lg-t-210 {
13367
        margin-top: 210px;
13368
    }
13369
 
13370
    .m-lg-r-210 {
13371
        margin-right: 210px;
13372
    }
13373
 
13374
    .m-lg-l-210 {
13375
        margin-left: 210px;
13376
    }
13377
}
13378
 
13379
@media (max-width: 991px) {
13380
    .p-md-b-210 {
13381
        padding-bottom: 210px;
13382
    }
13383
 
13384
    .p-md-t-210 {
13385
        padding-top: 210px;
13386
    }
13387
 
13388
    .p-md-r-210 {
13389
        padding-right: 210px;
13390
    }
13391
 
13392
    .p-md-l-210 {
13393
        padding-left: 210px;
13394
    }
13395
 
13396
    .m-md-b-210 {
13397
        margin-bottom: 210px;
13398
    }
13399
 
13400
    .m-md-t-210 {
13401
        margin-top: 210px;
13402
    }
13403
 
13404
    .m-md-r-210 {
13405
        margin-right: 210px;
13406
    }
13407
 
13408
    .m-md-l-210 {
13409
        margin-left: 210px;
13410
    }
13411
}
13412
 
13413
@media (max-width: 767px) {
13414
    .p-sm-b-210 {
13415
        padding-bottom: 210px;
13416
    }
13417
 
13418
    .p-sm-t-210 {
13419
        padding-top: 210px;
13420
    }
13421
 
13422
    .p-sm-r-210 {
13423
        padding-right: 210px;
13424
    }
13425
 
13426
    .p-sm-l-210 {
13427
        padding-left: 210px;
13428
    }
13429
 
13430
    .m-sm-b-210 {
13431
        margin-bottom: 210px;
13432
    }
13433
 
13434
    .m-sm-t-210 {
13435
        margin-top: 210px;
13436
    }
13437
 
13438
    .m-sm-r-210 {
13439
        margin-right: 210px;
13440
    }
13441
 
13442
    .m-sm-l-210 {
13443
        margin-left: 210px;
13444
    }
13445
}
13446
 
13447
@media (max-width: 575px) {
13448
    .p-xs-b-210 {
13449
        padding-bottom: 210px;
13450
    }
13451
 
13452
    .p-xs-t-210 {
13453
        padding-top: 210px;
13454
    }
13455
 
13456
    .p-xs-r-210 {
13457
        padding-right: 210px;
13458
    }
13459
 
13460
    .p-xs-l-210 {
13461
        padding-left: 210px;
13462
    }
13463
 
13464
    .m-xs-b-210 {
13465
        margin-bottom: 210px;
13466
    }
13467
 
13468
    .m-xs-t-210 {
13469
        margin-top: 210px;
13470
    }
13471
 
13472
    .m-xs-r-210 {
13473
        margin-right: 210px;
13474
    }
13475
 
13476
    .m-xs-l-210 {
13477
        margin-left: 210px;
13478
    }
13479
}
13480
 
13481
@media (max-width: 1023px) {
13482
    .p-lg-b-215 {
13483
        padding-bottom: 215px;
13484
    }
13485
 
13486
    .p-lg-t-215 {
13487
        padding-top: 215px;
13488
    }
13489
 
13490
    .p-lg-r-215 {
13491
        padding-right: 215px;
13492
    }
13493
 
13494
    .p-lg-l-215 {
13495
        padding-left: 215px;
13496
    }
13497
 
13498
    .m-lg-b-215 {
13499
        margin-bottom: 215px;
13500
    }
13501
 
13502
    .m-lg-t-215 {
13503
        margin-top: 215px;
13504
    }
13505
 
13506
    .m-lg-r-215 {
13507
        margin-right: 215px;
13508
    }
13509
 
13510
    .m-lg-l-215 {
13511
        margin-left: 215px;
13512
    }
13513
}
13514
 
13515
@media (max-width: 991px) {
13516
    .p-md-b-215 {
13517
        padding-bottom: 215px;
13518
    }
13519
 
13520
    .p-md-t-215 {
13521
        padding-top: 215px;
13522
    }
13523
 
13524
    .p-md-r-215 {
13525
        padding-right: 215px;
13526
    }
13527
 
13528
    .p-md-l-215 {
13529
        padding-left: 215px;
13530
    }
13531
 
13532
    .m-md-b-215 {
13533
        margin-bottom: 215px;
13534
    }
13535
 
13536
    .m-md-t-215 {
13537
        margin-top: 215px;
13538
    }
13539
 
13540
    .m-md-r-215 {
13541
        margin-right: 215px;
13542
    }
13543
 
13544
    .m-md-l-215 {
13545
        margin-left: 215px;
13546
    }
13547
}
13548
 
13549
@media (max-width: 767px) {
13550
    .p-sm-b-215 {
13551
        padding-bottom: 215px;
13552
    }
13553
 
13554
    .p-sm-t-215 {
13555
        padding-top: 215px;
13556
    }
13557
 
13558
    .p-sm-r-215 {
13559
        padding-right: 215px;
13560
    }
13561
 
13562
    .p-sm-l-215 {
13563
        padding-left: 215px;
13564
    }
13565
 
13566
    .m-sm-b-215 {
13567
        margin-bottom: 215px;
13568
    }
13569
 
13570
    .m-sm-t-215 {
13571
        margin-top: 215px;
13572
    }
13573
 
13574
    .m-sm-r-215 {
13575
        margin-right: 215px;
13576
    }
13577
 
13578
    .m-sm-l-215 {
13579
        margin-left: 215px;
13580
    }
13581
}
13582
 
13583
@media (max-width: 575px) {
13584
    .p-xs-b-215 {
13585
        padding-bottom: 215px;
13586
    }
13587
 
13588
    .p-xs-t-215 {
13589
        padding-top: 215px;
13590
    }
13591
 
13592
    .p-xs-r-215 {
13593
        padding-right: 215px;
13594
    }
13595
 
13596
    .p-xs-l-215 {
13597
        padding-left: 215px;
13598
    }
13599
 
13600
    .m-xs-b-215 {
13601
        margin-bottom: 215px;
13602
    }
13603
 
13604
    .m-xs-t-215 {
13605
        margin-top: 215px;
13606
    }
13607
 
13608
    .m-xs-r-215 {
13609
        margin-right: 215px;
13610
    }
13611
 
13612
    .m-xs-l-215 {
13613
        margin-left: 215px;
13614
    }
13615
}
13616
 
13617
@media (max-width: 1023px) {
13618
    .p-lg-b-220 {
13619
        padding-bottom: 220px;
13620
    }
13621
 
13622
    .p-lg-t-220 {
13623
        padding-top: 220px;
13624
    }
13625
 
13626
    .p-lg-r-220 {
13627
        padding-right: 220px;
13628
    }
13629
 
13630
    .p-lg-l-220 {
13631
        padding-left: 220px;
13632
    }
13633
 
13634
    .m-lg-b-220 {
13635
        margin-bottom: 220px;
13636
    }
13637
 
13638
    .m-lg-t-220 {
13639
        margin-top: 220px;
13640
    }
13641
 
13642
    .m-lg-r-220 {
13643
        margin-right: 220px;
13644
    }
13645
 
13646
    .m-lg-l-220 {
13647
        margin-left: 220px;
13648
    }
13649
}
13650
 
13651
@media (max-width: 991px) {
13652
    .p-md-b-220 {
13653
        padding-bottom: 220px;
13654
    }
13655
 
13656
    .p-md-t-220 {
13657
        padding-top: 220px;
13658
    }
13659
 
13660
    .p-md-r-220 {
13661
        padding-right: 220px;
13662
    }
13663
 
13664
    .p-md-l-220 {
13665
        padding-left: 220px;
13666
    }
13667
 
13668
    .m-md-b-220 {
13669
        margin-bottom: 220px;
13670
    }
13671
 
13672
    .m-md-t-220 {
13673
        margin-top: 220px;
13674
    }
13675
 
13676
    .m-md-r-220 {
13677
        margin-right: 220px;
13678
    }
13679
 
13680
    .m-md-l-220 {
13681
        margin-left: 220px;
13682
    }
13683
}
13684
 
13685
@media (max-width: 767px) {
13686
    .p-sm-b-220 {
13687
        padding-bottom: 220px;
13688
    }
13689
 
13690
    .p-sm-t-220 {
13691
        padding-top: 220px;
13692
    }
13693
 
13694
    .p-sm-r-220 {
13695
        padding-right: 220px;
13696
    }
13697
 
13698
    .p-sm-l-220 {
13699
        padding-left: 220px;
13700
    }
13701
 
13702
    .m-sm-b-220 {
13703
        margin-bottom: 220px;
13704
    }
13705
 
13706
    .m-sm-t-220 {
13707
        margin-top: 220px;
13708
    }
13709
 
13710
    .m-sm-r-220 {
13711
        margin-right: 220px;
13712
    }
13713
 
13714
    .m-sm-l-220 {
13715
        margin-left: 220px;
13716
    }
13717
}
13718
 
13719
@media (max-width: 575px) {
13720
    .p-xs-b-220 {
13721
        padding-bottom: 220px;
13722
    }
13723
 
13724
    .p-xs-t-220 {
13725
        padding-top: 220px;
13726
    }
13727
 
13728
    .p-xs-r-220 {
13729
        padding-right: 220px;
13730
    }
13731
 
13732
    .p-xs-l-220 {
13733
        padding-left: 220px;
13734
    }
13735
 
13736
    .m-xs-b-220 {
13737
        margin-bottom: 220px;
13738
    }
13739
 
13740
    .m-xs-t-220 {
13741
        margin-top: 220px;
13742
    }
13743
 
13744
    .m-xs-r-220 {
13745
        margin-right: 220px;
13746
    }
13747
 
13748
    .m-xs-l-220 {
13749
        margin-left: 220px;
13750
    }
13751
}
13752
 
13753
@media (max-width: 1023px) {
13754
    .p-lg-b-225 {
13755
        padding-bottom: 225px;
13756
    }
13757
 
13758
    .p-lg-t-225 {
13759
        padding-top: 225px;
13760
    }
13761
 
13762
    .p-lg-r-225 {
13763
        padding-right: 225px;
13764
    }
13765
 
13766
    .p-lg-l-225 {
13767
        padding-left: 225px;
13768
    }
13769
 
13770
    .m-lg-b-225 {
13771
        margin-bottom: 225px;
13772
    }
13773
 
13774
    .m-lg-t-225 {
13775
        margin-top: 225px;
13776
    }
13777
 
13778
    .m-lg-r-225 {
13779
        margin-right: 225px;
13780
    }
13781
 
13782
    .m-lg-l-225 {
13783
        margin-left: 225px;
13784
    }
13785
}
13786
 
13787
@media (max-width: 991px) {
13788
    .p-md-b-225 {
13789
        padding-bottom: 225px;
13790
    }
13791
 
13792
    .p-md-t-225 {
13793
        padding-top: 225px;
13794
    }
13795
 
13796
    .p-md-r-225 {
13797
        padding-right: 225px;
13798
    }
13799
 
13800
    .p-md-l-225 {
13801
        padding-left: 225px;
13802
    }
13803
 
13804
    .m-md-b-225 {
13805
        margin-bottom: 225px;
13806
    }
13807
 
13808
    .m-md-t-225 {
13809
        margin-top: 225px;
13810
    }
13811
 
13812
    .m-md-r-225 {
13813
        margin-right: 225px;
13814
    }
13815
 
13816
    .m-md-l-225 {
13817
        margin-left: 225px;
13818
    }
13819
}
13820
 
13821
@media (max-width: 767px) {
13822
    .p-sm-b-225 {
13823
        padding-bottom: 225px;
13824
    }
13825
 
13826
    .p-sm-t-225 {
13827
        padding-top: 225px;
13828
    }
13829
 
13830
    .p-sm-r-225 {
13831
        padding-right: 225px;
13832
    }
13833
 
13834
    .p-sm-l-225 {
13835
        padding-left: 225px;
13836
    }
13837
 
13838
    .m-sm-b-225 {
13839
        margin-bottom: 225px;
13840
    }
13841
 
13842
    .m-sm-t-225 {
13843
        margin-top: 225px;
13844
    }
13845
 
13846
    .m-sm-r-225 {
13847
        margin-right: 225px;
13848
    }
13849
 
13850
    .m-sm-l-225 {
13851
        margin-left: 225px;
13852
    }
13853
}
13854
 
13855
@media (max-width: 575px) {
13856
    .p-xs-b-225 {
13857
        padding-bottom: 225px;
13858
    }
13859
 
13860
    .p-xs-t-225 {
13861
        padding-top: 225px;
13862
    }
13863
 
13864
    .p-xs-r-225 {
13865
        padding-right: 225px;
13866
    }
13867
 
13868
    .p-xs-l-225 {
13869
        padding-left: 225px;
13870
    }
13871
 
13872
    .m-xs-b-225 {
13873
        margin-bottom: 225px;
13874
    }
13875
 
13876
    .m-xs-t-225 {
13877
        margin-top: 225px;
13878
    }
13879
 
13880
    .m-xs-r-225 {
13881
        margin-right: 225px;
13882
    }
13883
 
13884
    .m-xs-l-225 {
13885
        margin-left: 225px;
13886
    }
13887
}
13888
 
13889
@media (max-width: 1023px) {
13890
    .p-lg-b-230 {
13891
        padding-bottom: 230px;
13892
    }
13893
 
13894
    .p-lg-t-230 {
13895
        padding-top: 230px;
13896
    }
13897
 
13898
    .p-lg-r-230 {
13899
        padding-right: 230px;
13900
    }
13901
 
13902
    .p-lg-l-230 {
13903
        padding-left: 230px;
13904
    }
13905
 
13906
    .m-lg-b-230 {
13907
        margin-bottom: 230px;
13908
    }
13909
 
13910
    .m-lg-t-230 {
13911
        margin-top: 230px;
13912
    }
13913
 
13914
    .m-lg-r-230 {
13915
        margin-right: 230px;
13916
    }
13917
 
13918
    .m-lg-l-230 {
13919
        margin-left: 230px;
13920
    }
13921
}
13922
 
13923
@media (max-width: 991px) {
13924
    .p-md-b-230 {
13925
        padding-bottom: 230px;
13926
    }
13927
 
13928
    .p-md-t-230 {
13929
        padding-top: 230px;
13930
    }
13931
 
13932
    .p-md-r-230 {
13933
        padding-right: 230px;
13934
    }
13935
 
13936
    .p-md-l-230 {
13937
        padding-left: 230px;
13938
    }
13939
 
13940
    .m-md-b-230 {
13941
        margin-bottom: 230px;
13942
    }
13943
 
13944
    .m-md-t-230 {
13945
        margin-top: 230px;
13946
    }
13947
 
13948
    .m-md-r-230 {
13949
        margin-right: 230px;
13950
    }
13951
 
13952
    .m-md-l-230 {
13953
        margin-left: 230px;
13954
    }
13955
}
13956
 
13957
@media (max-width: 767px) {
13958
    .p-sm-b-230 {
13959
        padding-bottom: 230px;
13960
    }
13961
 
13962
    .p-sm-t-230 {
13963
        padding-top: 230px;
13964
    }
13965
 
13966
    .p-sm-r-230 {
13967
        padding-right: 230px;
13968
    }
13969
 
13970
    .p-sm-l-230 {
13971
        padding-left: 230px;
13972
    }
13973
 
13974
    .m-sm-b-230 {
13975
        margin-bottom: 230px;
13976
    }
13977
 
13978
    .m-sm-t-230 {
13979
        margin-top: 230px;
13980
    }
13981
 
13982
    .m-sm-r-230 {
13983
        margin-right: 230px;
13984
    }
13985
 
13986
    .m-sm-l-230 {
13987
        margin-left: 230px;
13988
    }
13989
}
13990
 
13991
@media (max-width: 575px) {
13992
    .p-xs-b-230 {
13993
        padding-bottom: 230px;
13994
    }
13995
 
13996
    .p-xs-t-230 {
13997
        padding-top: 230px;
13998
    }
13999
 
14000
    .p-xs-r-230 {
14001
        padding-right: 230px;
14002
    }
14003
 
14004
    .p-xs-l-230 {
14005
        padding-left: 230px;
14006
    }
14007
 
14008
    .m-xs-b-230 {
14009
        margin-bottom: 230px;
14010
    }
14011
 
14012
    .m-xs-t-230 {
14013
        margin-top: 230px;
14014
    }
14015
 
14016
    .m-xs-r-230 {
14017
        margin-right: 230px;
14018
    }
14019
 
14020
    .m-xs-l-230 {
14021
        margin-left: 230px;
14022
    }
14023
}
14024
 
14025
@media (max-width: 1023px) {
14026
    .p-lg-b-235 {
14027
        padding-bottom: 235px;
14028
    }
14029
 
14030
    .p-lg-t-235 {
14031
        padding-top: 235px;
14032
    }
14033
 
14034
    .p-lg-r-235 {
14035
        padding-right: 235px;
14036
    }
14037
 
14038
    .p-lg-l-235 {
14039
        padding-left: 235px;
14040
    }
14041
 
14042
    .m-lg-b-235 {
14043
        margin-bottom: 235px;
14044
    }
14045
 
14046
    .m-lg-t-235 {
14047
        margin-top: 235px;
14048
    }
14049
 
14050
    .m-lg-r-235 {
14051
        margin-right: 235px;
14052
    }
14053
 
14054
    .m-lg-l-235 {
14055
        margin-left: 235px;
14056
    }
14057
}
14058
 
14059
@media (max-width: 991px) {
14060
    .p-md-b-235 {
14061
        padding-bottom: 235px;
14062
    }
14063
 
14064
    .p-md-t-235 {
14065
        padding-top: 235px;
14066
    }
14067
 
14068
    .p-md-r-235 {
14069
        padding-right: 235px;
14070
    }
14071
 
14072
    .p-md-l-235 {
14073
        padding-left: 235px;
14074
    }
14075
 
14076
    .m-md-b-235 {
14077
        margin-bottom: 235px;
14078
    }
14079
 
14080
    .m-md-t-235 {
14081
        margin-top: 235px;
14082
    }
14083
 
14084
    .m-md-r-235 {
14085
        margin-right: 235px;
14086
    }
14087
 
14088
    .m-md-l-235 {
14089
        margin-left: 235px;
14090
    }
14091
}
14092
 
14093
@media (max-width: 767px) {
14094
    .p-sm-b-235 {
14095
        padding-bottom: 235px;
14096
    }
14097
 
14098
    .p-sm-t-235 {
14099
        padding-top: 235px;
14100
    }
14101
 
14102
    .p-sm-r-235 {
14103
        padding-right: 235px;
14104
    }
14105
 
14106
    .p-sm-l-235 {
14107
        padding-left: 235px;
14108
    }
14109
 
14110
    .m-sm-b-235 {
14111
        margin-bottom: 235px;
14112
    }
14113
 
14114
    .m-sm-t-235 {
14115
        margin-top: 235px;
14116
    }
14117
 
14118
    .m-sm-r-235 {
14119
        margin-right: 235px;
14120
    }
14121
 
14122
    .m-sm-l-235 {
14123
        margin-left: 235px;
14124
    }
14125
}
14126
 
14127
@media (max-width: 575px) {
14128
    .p-xs-b-235 {
14129
        padding-bottom: 235px;
14130
    }
14131
 
14132
    .p-xs-t-235 {
14133
        padding-top: 235px;
14134
    }
14135
 
14136
    .p-xs-r-235 {
14137
        padding-right: 235px;
14138
    }
14139
 
14140
    .p-xs-l-235 {
14141
        padding-left: 235px;
14142
    }
14143
 
14144
    .m-xs-b-235 {
14145
        margin-bottom: 235px;
14146
    }
14147
 
14148
    .m-xs-t-235 {
14149
        margin-top: 235px;
14150
    }
14151
 
14152
    .m-xs-r-235 {
14153
        margin-right: 235px;
14154
    }
14155
 
14156
    .m-xs-l-235 {
14157
        margin-left: 235px;
14158
    }
14159
}
14160
 
14161
@media (max-width: 1023px) {
14162
    .p-lg-b-240 {
14163
        padding-bottom: 240px;
14164
    }
14165
 
14166
    .p-lg-t-240 {
14167
        padding-top: 240px;
14168
    }
14169
 
14170
    .p-lg-r-240 {
14171
        padding-right: 240px;
14172
    }
14173
 
14174
    .p-lg-l-240 {
14175
        padding-left: 240px;
14176
    }
14177
 
14178
    .m-lg-b-240 {
14179
        margin-bottom: 240px;
14180
    }
14181
 
14182
    .m-lg-t-240 {
14183
        margin-top: 240px;
14184
    }
14185
 
14186
    .m-lg-r-240 {
14187
        margin-right: 240px;
14188
    }
14189
 
14190
    .m-lg-l-240 {
14191
        margin-left: 240px;
14192
    }
14193
}
14194
 
14195
@media (max-width: 991px) {
14196
    .p-md-b-240 {
14197
        padding-bottom: 240px;
14198
    }
14199
 
14200
    .p-md-t-240 {
14201
        padding-top: 240px;
14202
    }
14203
 
14204
    .p-md-r-240 {
14205
        padding-right: 240px;
14206
    }
14207
 
14208
    .p-md-l-240 {
14209
        padding-left: 240px;
14210
    }
14211
 
14212
    .m-md-b-240 {
14213
        margin-bottom: 240px;
14214
    }
14215
 
14216
    .m-md-t-240 {
14217
        margin-top: 240px;
14218
    }
14219
 
14220
    .m-md-r-240 {
14221
        margin-right: 240px;
14222
    }
14223
 
14224
    .m-md-l-240 {
14225
        margin-left: 240px;
14226
    }
14227
}
14228
 
14229
@media (max-width: 767px) {
14230
    .p-sm-b-240 {
14231
        padding-bottom: 240px;
14232
    }
14233
 
14234
    .p-sm-t-240 {
14235
        padding-top: 240px;
14236
    }
14237
 
14238
    .p-sm-r-240 {
14239
        padding-right: 240px;
14240
    }
14241
 
14242
    .p-sm-l-240 {
14243
        padding-left: 240px;
14244
    }
14245
 
14246
    .m-sm-b-240 {
14247
        margin-bottom: 240px;
14248
    }
14249
 
14250
    .m-sm-t-240 {
14251
        margin-top: 240px;
14252
    }
14253
 
14254
    .m-sm-r-240 {
14255
        margin-right: 240px;
14256
    }
14257
 
14258
    .m-sm-l-240 {
14259
        margin-left: 240px;
14260
    }
14261
}
14262
 
14263
@media (max-width: 575px) {
14264
    .p-xs-b-240 {
14265
        padding-bottom: 240px;
14266
    }
14267
 
14268
    .p-xs-t-240 {
14269
        padding-top: 240px;
14270
    }
14271
 
14272
    .p-xs-r-240 {
14273
        padding-right: 240px;
14274
    }
14275
 
14276
    .p-xs-l-240 {
14277
        padding-left: 240px;
14278
    }
14279
 
14280
    .m-xs-b-240 {
14281
        margin-bottom: 240px;
14282
    }
14283
 
14284
    .m-xs-t-240 {
14285
        margin-top: 240px;
14286
    }
14287
 
14288
    .m-xs-r-240 {
14289
        margin-right: 240px;
14290
    }
14291
 
14292
    .m-xs-l-240 {
14293
        margin-left: 240px;
14294
    }
14295
}
14296
 
14297
@media (max-width: 1023px) {
14298
    .p-lg-b-245 {
14299
        padding-bottom: 245px;
14300
    }
14301
 
14302
    .p-lg-t-245 {
14303
        padding-top: 245px;
14304
    }
14305
 
14306
    .p-lg-r-245 {
14307
        padding-right: 245px;
14308
    }
14309
 
14310
    .p-lg-l-245 {
14311
        padding-left: 245px;
14312
    }
14313
 
14314
    .m-lg-b-245 {
14315
        margin-bottom: 245px;
14316
    }
14317
 
14318
    .m-lg-t-245 {
14319
        margin-top: 245px;
14320
    }
14321
 
14322
    .m-lg-r-245 {
14323
        margin-right: 245px;
14324
    }
14325
 
14326
    .m-lg-l-245 {
14327
        margin-left: 245px;
14328
    }
14329
}
14330
 
14331
@media (max-width: 991px) {
14332
    .p-md-b-245 {
14333
        padding-bottom: 245px;
14334
    }
14335
 
14336
    .p-md-t-245 {
14337
        padding-top: 245px;
14338
    }
14339
 
14340
    .p-md-r-245 {
14341
        padding-right: 245px;
14342
    }
14343
 
14344
    .p-md-l-245 {
14345
        padding-left: 245px;
14346
    }
14347
 
14348
    .m-md-b-245 {
14349
        margin-bottom: 245px;
14350
    }
14351
 
14352
    .m-md-t-245 {
14353
        margin-top: 245px;
14354
    }
14355
 
14356
    .m-md-r-245 {
14357
        margin-right: 245px;
14358
    }
14359
 
14360
    .m-md-l-245 {
14361
        margin-left: 245px;
14362
    }
14363
}
14364
 
14365
@media (max-width: 767px) {
14366
    .p-sm-b-245 {
14367
        padding-bottom: 245px;
14368
    }
14369
 
14370
    .p-sm-t-245 {
14371
        padding-top: 245px;
14372
    }
14373
 
14374
    .p-sm-r-245 {
14375
        padding-right: 245px;
14376
    }
14377
 
14378
    .p-sm-l-245 {
14379
        padding-left: 245px;
14380
    }
14381
 
14382
    .m-sm-b-245 {
14383
        margin-bottom: 245px;
14384
    }
14385
 
14386
    .m-sm-t-245 {
14387
        margin-top: 245px;
14388
    }
14389
 
14390
    .m-sm-r-245 {
14391
        margin-right: 245px;
14392
    }
14393
 
14394
    .m-sm-l-245 {
14395
        margin-left: 245px;
14396
    }
14397
}
14398
 
14399
@media (max-width: 575px) {
14400
    .p-xs-b-245 {
14401
        padding-bottom: 245px;
14402
    }
14403
 
14404
    .p-xs-t-245 {
14405
        padding-top: 245px;
14406
    }
14407
 
14408
    .p-xs-r-245 {
14409
        padding-right: 245px;
14410
    }
14411
 
14412
    .p-xs-l-245 {
14413
        padding-left: 245px;
14414
    }
14415
 
14416
    .m-xs-b-245 {
14417
        margin-bottom: 245px;
14418
    }
14419
 
14420
    .m-xs-t-245 {
14421
        margin-top: 245px;
14422
    }
14423
 
14424
    .m-xs-r-245 {
14425
        margin-right: 245px;
14426
    }
14427
 
14428
    .m-xs-l-245 {
14429
        margin-left: 245px;
14430
    }
14431
}
14432
 
14433
@media (max-width: 1023px) {
14434
    .p-lg-b-250 {
14435
        padding-bottom: 250px;
14436
    }
14437
 
14438
    .p-lg-t-250 {
14439
        padding-top: 250px;
14440
    }
14441
 
14442
    .p-lg-r-250 {
14443
        padding-right: 250px;
14444
    }
14445
 
14446
    .p-lg-l-250 {
14447
        padding-left: 250px;
14448
    }
14449
 
14450
    .m-lg-b-250 {
14451
        margin-bottom: 250px;
14452
    }
14453
 
14454
    .m-lg-t-250 {
14455
        margin-top: 250px;
14456
    }
14457
 
14458
    .m-lg-r-250 {
14459
        margin-right: 250px;
14460
    }
14461
 
14462
    .m-lg-l-250 {
14463
        margin-left: 250px;
14464
    }
14465
}
14466
 
14467
@media (max-width: 991px) {
14468
    .p-md-b-250 {
14469
        padding-bottom: 250px;
14470
    }
14471
 
14472
    .p-md-t-250 {
14473
        padding-top: 250px;
14474
    }
14475
 
14476
    .p-md-r-250 {
14477
        padding-right: 250px;
14478
    }
14479
 
14480
    .p-md-l-250 {
14481
        padding-left: 250px;
14482
    }
14483
 
14484
    .m-md-b-250 {
14485
        margin-bottom: 250px;
14486
    }
14487
 
14488
    .m-md-t-250 {
14489
        margin-top: 250px;
14490
    }
14491
 
14492
    .m-md-r-250 {
14493
        margin-right: 250px;
14494
    }
14495
 
14496
    .m-md-l-250 {
14497
        margin-left: 250px;
14498
    }
14499
}
14500
 
14501
@media (max-width: 767px) {
14502
    .p-sm-b-250 {
14503
        padding-bottom: 250px;
14504
    }
14505
 
14506
    .p-sm-t-250 {
14507
        padding-top: 250px;
14508
    }
14509
 
14510
    .p-sm-r-250 {
14511
        padding-right: 250px;
14512
    }
14513
 
14514
    .p-sm-l-250 {
14515
        padding-left: 250px;
14516
    }
14517
 
14518
    .m-sm-b-250 {
14519
        margin-bottom: 250px;
14520
    }
14521
 
14522
    .m-sm-t-250 {
14523
        margin-top: 250px;
14524
    }
14525
 
14526
    .m-sm-r-250 {
14527
        margin-right: 250px;
14528
    }
14529
 
14530
    .m-sm-l-250 {
14531
        margin-left: 250px;
14532
    }
14533
}
14534
 
14535
@media (max-width: 575px) {
14536
    .p-xs-b-250 {
14537
        padding-bottom: 250px;
14538
    }
14539
 
14540
    .p-xs-t-250 {
14541
        padding-top: 250px;
14542
    }
14543
 
14544
    .p-xs-r-250 {
14545
        padding-right: 250px;
14546
    }
14547
 
14548
    .p-xs-l-250 {
14549
        padding-left: 250px;
14550
    }
14551
 
14552
    .m-xs-b-250 {
14553
        margin-bottom: 250px;
14554
    }
14555
 
14556
    .m-xs-t-250 {
14557
        margin-top: 250px;
14558
    }
14559
 
14560
    .m-xs-r-250 {
14561
        margin-right: 250px;
14562
    }
14563
 
14564
    .m-xs-l-250 {
14565
        margin-left: 250px;
14566
    }
14567
}
14568
 
14569
/* Background*/
14570
.bg-white {
14571
    background: #fff;
14572
}
14573
 
14574
.bg-overlay {
14575
    position: absolute;
14576
    width: 100%;
14577
    height: 100%;
14578
    top: 0;
14579
    left: 0;
14580
    z-index: 0;
14581
}
14582
 
14583
.bg-overlay--blue {
14584
    background: rgba(49, 89, 253, 0.9);
14585
}
14586
 
14587
.bg-c1 {
14588
    background: #00ad5f;
14589
}
14590
 
14591
.bg-c2 {
14592
    background: #fa4251;
14593
}
14594
 
14595
.bg-c3 {
14596
    background: #ff8300;
14597
}
14598
 
14599
.bg-flat-color-1 {
14600
    background: #20a8d8;
14601
}
14602
 
14603
.bg-flat-color-2 {
14604
    background: #63c2de;
14605
}
14606
 
14607
.bg-flat-color-3 {
14608
    background: #ffc107;
14609
}
14610
 
14611
.bg-flat-color-4 {
14612
    background: #f86c6b;
14613
}
14614
 
14615
.bg-flat-color-5 {
14616
    background: #4dbd74;
14617
}
14618
 
14619
/*Image*/
14620
.img-radius {
14621
    -webkit-border-radius: 5px;
14622
    -moz-border-radius: 5px;
14623
    border-radius: 5px;
14624
    overflow: hidden;
14625
}
14626
 
14627
.img-cir {
14628
    -webkit-border-radius: 100%;
14629
    -moz-border-radius: 100%;
14630
    border-radius: 100%;
14631
    overflow: hidden;
14632
}
14633
 
14634
.img-40 {
14635
    height: 40px;
14636
    width: 40px;
14637
}
14638
 
14639
.img-120 {
14640
    width: 120px;
14641
    height: 120px;
14642
}
14643
 
14644
.vmap {
14645
    width: 100%;
14646
    height: 400px;
14647
}
14648
 
14649
.vue-lists ul, .vue-lists ol {
14650
    padding-left: 30px;
14651
}