Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16865 | Rev 16867 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
@charset "UTF-8";
16848 stevensc 2
 
16825 efrain 3
/*
4
* NobleUI - HTML Bootstrap 5 Admin Dashboard Template v2.0.3 (https://nobleui.com/)
5
* Copyright © 2022 NobleUI
6
* Licensed under ThemeForest License
7
*/
8
:root {
9
  --bs-blue: #0d6efd;
10
  --bs-indigo: #6610f2;
11
  --bs-purple: #6f42c1;
12
  --bs-pink: #d63384;
13
  --bs-red: #dc3545;
14
  --bs-orange: #fd7e14;
15
  --bs-yellow: #ffc107;
16
  --bs-green: #198754;
17
  --bs-teal: #20c997;
18
  --bs-cyan: #0dcaf0;
19
  --bs-black: #000;
20
  --bs-white: #fff;
21
  --bs-gray: #7987a1;
22
  --bs-gray-dark: #212a3a;
23
  --bs-gray-100: #f8f9fa;
24
  --bs-gray-200: #e9ecef;
25
  --bs-gray-300: #dee2e6;
26
  --bs-gray-400: #cbd1db;
27
  --bs-gray-500: #aeb7c5;
28
  --bs-gray-600: #7987a1;
29
  --bs-gray-700: #41516c;
30
  --bs-gray-800: #212a3a;
31
  --bs-gray-900: #060c17;
32
  --bs-primary: #6571ff;
33
  --bs-secondary: #7987a1;
34
  --bs-success: #05a34a;
35
  --bs-info: #66d1d1;
36
  --bs-warning: #fbbc06;
37
  --bs-danger: #ff3366;
38
  --bs-light: #e9ecef;
39
  --bs-dark: #060c17;
40
  --bs-primary-rgb: 101, 113, 255;
41
  --bs-secondary-rgb: 121, 135, 161;
42
  --bs-success-rgb: 5, 163, 74;
43
  --bs-info-rgb: 102, 209, 209;
44
  --bs-warning-rgb: 251, 188, 6;
45
  --bs-danger-rgb: 255, 51, 102;
46
  --bs-light-rgb: 233, 236, 239;
47
  --bs-dark-rgb: 6, 12, 23;
48
  --bs-white-rgb: 255, 255, 255;
49
  --bs-black-rgb: 0, 0, 0;
50
  --bs-body-color-rgb: 0, 0, 0;
51
  --bs-body-bg-rgb: 249, 250, 251;
52
  --bs-font-sans-serif: "Roboto", Helvetica, sans-serif;
53
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
54
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
55
  --bs-body-font-family: var(--bs-font-sans-serif);
56
  --bs-body-font-size: 0.875rem;
57
  --bs-body-font-weight: 400;
58
  --bs-body-line-height: 1.5;
59
  --bs-body-color: #000;
60
  --bs-body-bg: #f9fafb;
61
  --bs-border-width: 1px;
62
  --bs-border-style: solid;
63
  --bs-border-color: #e9ecef;
64
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
65
  --bs-border-radius: 0.25rem;
66
  --bs-border-radius-sm: 0.25rem;
67
  --bs-border-radius-lg: 0.5rem;
68
  --bs-border-radius-xl: 1rem;
69
  --bs-border-radius-2xl: 2rem;
70
  --bs-border-radius-pill: 50rem;
71
  --bs-link-color: #6571ff;
72
  --bs-link-hover-color: #515acc;
73
  --bs-code-color: #d63384;
74
  --bs-highlight-bg: #fff3cd;
75
}
76
 
77
*,
78
*::before,
79
*::after {
80
  box-sizing: border-box;
81
}
82
 
83
@media (prefers-reduced-motion: no-preference) {
84
  :root {
85
    scroll-behavior: smooth;
86
  }
87
}
88
 
89
body {
90
  margin: 0;
91
  font-family: var(--bs-body-font-family);
92
  font-size: var(--bs-body-font-size);
93
  font-weight: var(--bs-body-font-weight);
94
  line-height: var(--bs-body-line-height);
95
  color: var(--bs-body-color);
96
  text-align: var(--bs-body-text-align);
97
  background-color: var(--bs-body-bg);
98
  -webkit-text-size-adjust: 100%;
99
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
100
}
101
 
102
hr {
103
  margin: 1rem 0;
104
  color: inherit;
105
  border: 0;
106
  border-top: 1px solid;
107
  opacity: 0.1;
108
}
109
 
16848 stevensc 110
h6,
111
.h6,
112
h5,
113
.h5,
114
h4,
115
.h4,
116
h3,
117
.h3,
118
h2,
119
.h2,
120
h1,
121
.h1 {
16825 efrain 122
  margin-top: 0;
123
  margin-bottom: 0;
124
  font-weight: 500;
125
  line-height: 1.2;
126
}
127
 
16848 stevensc 128
h1,
16852 stevensc 129
h2,
130
h3 {
131
  color: var(--title-color);
132
}
133
 
134
h1,
16848 stevensc 135
.h1 {
16825 efrain 136
  font-size: calc(1.375rem + 1.5vw);
137
}
16848 stevensc 138
 
16825 efrain 139
@media (min-width: 1200px) {
16848 stevensc 140
 
141
  h1,
142
  .h1 {
16825 efrain 143
    font-size: 2.5rem;
144
  }
145
}
146
 
16848 stevensc 147
h2,
148
.h2 {
16825 efrain 149
  font-size: calc(1.325rem + 0.9vw);
150
}
16848 stevensc 151
 
16825 efrain 152
@media (min-width: 1200px) {
16848 stevensc 153
 
154
  h2,
155
  .h2 {
16825 efrain 156
    font-size: 2rem;
157
  }
158
}
159
 
16848 stevensc 160
h3,
161
.h3 {
16825 efrain 162
  font-size: calc(1.275rem + 0.3vw);
163
}
16848 stevensc 164
 
16825 efrain 165
@media (min-width: 1200px) {
16848 stevensc 166
 
167
  h3,
168
  .h3 {
16825 efrain 169
    font-size: 1.5rem;
170
  }
171
}
172
 
16848 stevensc 173
h4,
174
.h4 {
16825 efrain 175
  font-size: 1.25rem;
176
}
177
 
16848 stevensc 178
h5,
179
.h5 {
16825 efrain 180
  font-size: 1rem;
181
}
182
 
16848 stevensc 183
h6,
184
.h6 {
16825 efrain 185
  font-size: 0.875rem;
186
}
187
 
188
p {
189
  margin-top: 0;
190
  margin-bottom: 0;
191
}
192
 
193
abbr[title] {
194
  text-decoration: underline dotted;
195
  cursor: help;
196
  text-decoration-skip-ink: none;
197
}
198
 
199
address {
200
  margin-bottom: 1rem;
201
  font-style: normal;
202
  line-height: inherit;
203
}
204
 
205
ol,
206
ul {
207
  padding-left: 2rem;
208
}
209
 
210
ol,
211
ul,
212
dl {
213
  margin-top: 0;
214
  margin-bottom: 1rem;
215
}
216
 
217
ol ol,
218
ul ul,
219
ol ul,
220
ul ol {
221
  margin-bottom: 0;
222
}
223
 
224
dt {
225
  font-weight: 500;
226
}
227
 
228
dd {
229
  margin-bottom: 0.5rem;
230
  margin-left: 0;
231
}
232
 
233
blockquote {
234
  margin: 0 0 1rem;
235
}
236
 
237
b,
238
strong {
239
  font-weight: 700;
240
}
241
 
16848 stevensc 242
small,
243
.small {
16825 efrain 244
  font-size: 0.875em;
245
}
246
 
16848 stevensc 247
mark,
248
.mark {
16825 efrain 249
  padding: 0.1875em;
250
  background-color: var(--bs-highlight-bg);
251
}
252
 
253
sub,
254
sup {
255
  position: relative;
256
  font-size: 0.75em;
257
  line-height: 0;
258
  vertical-align: baseline;
259
}
260
 
261
sub {
262
  bottom: -0.25em;
263
}
264
 
265
sup {
266
  top: -0.5em;
267
}
268
 
269
a {
270
  color: var(--bs-link-color);
271
  text-decoration: none;
272
}
16848 stevensc 273
 
16825 efrain 274
a:hover {
275
  color: var(--bs-link-hover-color);
276
}
277
 
16848 stevensc 278
a:not([href]):not([class]),
279
a:not([href]):not([class]):hover {
16825 efrain 280
  color: inherit;
281
  text-decoration: none;
282
}
283
 
284
pre,
285
code,
286
kbd,
287
samp {
288
  font-family: var(--bs-font-monospace);
289
  font-size: 1em;
290
}
291
 
292
pre {
293
  display: block;
294
  margin-top: 0;
295
  margin-bottom: 1rem;
296
  overflow: auto;
297
  font-size: 0.875em;
298
}
16848 stevensc 299
 
16825 efrain 300
pre code {
301
  font-size: inherit;
302
  color: inherit;
303
  word-break: normal;
304
}
305
 
306
code {
307
  font-size: 0.875em;
308
  color: var(--bs-code-color);
309
  word-wrap: break-word;
310
}
16848 stevensc 311
 
312
a>code {
16825 efrain 313
  color: inherit;
314
}
315
 
316
kbd {
317
  padding: 0.1875rem 0.375rem;
318
  font-size: 0.875em;
319
  color: var(--bs-body-bg);
320
  background-color: var(--bs-body-color);
321
  border-radius: 0.25rem;
322
}
16848 stevensc 323
 
16825 efrain 324
kbd kbd {
325
  padding: 0;
326
  font-size: 1em;
327
}
328
 
329
figure {
330
  margin: 0 0 1rem;
331
}
332
 
333
img,
334
svg {
335
  vertical-align: middle;
336
}
337
 
338
table {
339
  caption-side: bottom;
340
  border-collapse: collapse;
341
}
342
 
343
caption {
344
  padding-top: 0.85rem;
345
  padding-bottom: 0.85rem;
346
  color: #7987a1;
347
  text-align: left;
348
}
349
 
350
th {
351
  text-align: inherit;
352
  text-align: -webkit-match-parent;
353
}
354
 
355
thead,
356
tbody,
357
tfoot,
358
tr,
359
td,
360
th {
361
  border-color: inherit;
362
  border-style: solid;
363
  border-width: 0;
364
}
365
 
366
label {
367
  display: inline-block;
368
}
369
 
370
button {
371
  border-radius: 0;
372
}
373
 
374
button:focus:not(:focus-visible) {
375
  outline: 0;
376
}
377
 
378
input,
379
button,
380
select,
381
optgroup,
382
textarea {
383
  margin: 0;
384
  font-family: inherit;
385
  font-size: inherit;
386
  line-height: inherit;
387
}
388
 
389
button,
390
select {
391
  text-transform: none;
392
}
393
 
394
[role=button] {
395
  cursor: pointer;
396
}
397
 
398
select {
399
  word-wrap: normal;
400
}
16848 stevensc 401
 
16825 efrain 402
select:disabled {
403
  opacity: 1;
404
}
405
 
406
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
407
  display: none !important;
408
}
409
 
410
button,
411
[type=button],
412
[type=reset],
413
[type=submit] {
16848 stevensc 414
  appearance: button;
16825 efrain 415
}
16848 stevensc 416
 
16825 efrain 417
button:not(:disabled),
418
[type=button]:not(:disabled),
419
[type=reset]:not(:disabled),
420
[type=submit]:not(:disabled) {
421
  cursor: pointer;
422
}
423
 
424
::-moz-focus-inner {
425
  padding: 0;
426
  border-style: none;
427
}
428
 
429
textarea {
430
  resize: vertical;
431
}
432
 
433
fieldset {
434
  min-width: 0;
435
  padding: 0;
436
  margin: 0;
437
  border: 0;
438
}
439
 
440
legend {
441
  float: left;
442
  width: 100%;
443
  padding: 0;
444
  margin-bottom: 0.5rem;
445
  font-size: calc(1.275rem + 0.3vw);
446
  line-height: inherit;
447
}
16848 stevensc 448
 
16825 efrain 449
@media (min-width: 1200px) {
450
  legend {
451
    font-size: 1.5rem;
452
  }
453
}
16848 stevensc 454
 
455
legend+* {
16825 efrain 456
  clear: left;
457
}
458
 
459
::-webkit-datetime-edit-fields-wrapper,
460
::-webkit-datetime-edit-text,
461
::-webkit-datetime-edit-minute,
462
::-webkit-datetime-edit-hour-field,
463
::-webkit-datetime-edit-day-field,
464
::-webkit-datetime-edit-month-field,
465
::-webkit-datetime-edit-year-field {
466
  padding: 0;
467
}
468
 
469
::-webkit-inner-spin-button {
470
  height: auto;
471
}
472
 
473
[type=search] {
474
  outline-offset: -2px;
16848 stevensc 475
  appearance: textfield;
16825 efrain 476
}
477
 
478
/* rtl:raw:
479
[type="tel"],
480
[type="url"],
481
[type="email"],
482
[type="number"] {
483
  direction: ltr;
484
}
485
*/
486
::-webkit-search-decoration {
487
  -webkit-appearance: none;
488
}
489
 
490
::-webkit-color-swatch-wrapper {
491
  padding: 0;
492
}
493
 
494
::file-selector-button {
495
  font: inherit;
16848 stevensc 496
  appearance: button;
16825 efrain 497
}
498
 
499
output {
500
  display: inline-block;
501
}
502
 
503
iframe {
504
  border: 0;
505
}
506
 
507
summary {
508
  display: list-item;
509
  cursor: pointer;
510
}
511
 
512
progress {
513
  vertical-align: baseline;
514
}
515
 
516
[hidden] {
517
  display: none !important;
518
}
519
 
520
.lead {
521
  font-size: 1.09375rem;
522
  font-weight: 300;
523
}
524
 
525
.display-1 {
526
  font-size: calc(1.625rem + 4.5vw);
527
  font-weight: 300;
528
  line-height: 1.2;
529
}
16848 stevensc 530
 
16825 efrain 531
@media (min-width: 1200px) {
532
  .display-1 {
533
    font-size: 5rem;
534
  }
535
}
536
 
537
.display-2 {
538
  font-size: calc(1.575rem + 3.9vw);
539
  font-weight: 300;
540
  line-height: 1.2;
541
}
16848 stevensc 542
 
16825 efrain 543
@media (min-width: 1200px) {
544
  .display-2 {
545
    font-size: 4.5rem;
546
  }
547
}
548
 
549
.display-3 {
550
  font-size: calc(1.525rem + 3.3vw);
551
  font-weight: 300;
552
  line-height: 1.2;
553
}
16848 stevensc 554
 
16825 efrain 555
@media (min-width: 1200px) {
556
  .display-3 {
557
    font-size: 4rem;
558
  }
559
}
560
 
561
.display-4 {
562
  font-size: calc(1.475rem + 2.7vw);
563
  font-weight: 300;
564
  line-height: 1.2;
565
}
16848 stevensc 566
 
16825 efrain 567
@media (min-width: 1200px) {
568
  .display-4 {
569
    font-size: 3.5rem;
570
  }
571
}
572
 
573
.display-5 {
574
  font-size: calc(1.425rem + 2.1vw);
575
  font-weight: 300;
576
  line-height: 1.2;
577
}
16848 stevensc 578
 
16825 efrain 579
@media (min-width: 1200px) {
580
  .display-5 {
581
    font-size: 3rem;
582
  }
583
}
584
 
585
.display-6 {
586
  font-size: calc(1.375rem + 1.5vw);
587
  font-weight: 300;
588
  line-height: 1.2;
589
}
16848 stevensc 590
 
16825 efrain 591
@media (min-width: 1200px) {
592
  .display-6 {
593
    font-size: 2.5rem;
594
  }
595
}
596
 
597
.list-unstyled {
598
  padding-left: 0;
599
  list-style: none;
600
}
601
 
602
.list-inline {
603
  padding-left: 0;
604
  list-style: none;
605
}
606
 
607
.list-inline-item {
608
  display: inline-block;
609
}
16848 stevensc 610
 
16825 efrain 611
.list-inline-item:not(:last-child) {
612
  margin-right: 0.5rem;
613
}
614
 
615
.initialism {
616
  font-size: 0.875em;
617
  text-transform: uppercase;
618
}
619
 
620
.blockquote {
621
  margin-bottom: 1rem;
622
  font-size: 1.09375rem;
623
}
16848 stevensc 624
 
625
.blockquote> :last-child {
16825 efrain 626
  margin-bottom: 0;
627
}
628
 
629
.blockquote-footer {
630
  margin-top: -1rem;
631
  margin-bottom: 1rem;
632
  font-size: 0.875em;
633
  color: #7987a1;
634
}
16848 stevensc 635
 
16825 efrain 636
.blockquote-footer::before {
637
  content: "— ";
638
}
639
 
640
.img-fluid {
641
  max-width: 100%;
642
  height: auto;
643
}
644
 
645
.img-thumbnail {
646
  padding: 0.25rem;
647
  background-color: #f9fafb;
648
  border: 1px solid var(--bs-border-color);
649
  border-radius: 0.25rem;
650
  max-width: 100%;
651
  height: auto;
652
}
653
 
654
.figure {
655
  display: inline-block;
656
}
657
 
658
.figure-img {
659
  margin-bottom: 0.5rem;
660
  line-height: 1;
661
}
662
 
663
.figure-caption {
664
  font-size: 0.875em;
665
  color: #7987a1;
666
}
667
 
668
.container,
669
.container-fluid,
670
.container-xxl,
671
.container-xl,
672
.container-lg,
673
.container-md,
674
.container-sm {
675
  --bs-gutter-x: 1.5rem;
676
  --bs-gutter-y: 0;
677
  width: 100%;
678
  padding-right: calc(var(--bs-gutter-x) * 0.5);
679
  padding-left: calc(var(--bs-gutter-x) * 0.5);
680
  margin-right: auto;
681
  margin-left: auto;
682
}
683
 
684
@media (min-width: 576px) {
16848 stevensc 685
 
686
  .container-sm,
687
  .container {
16825 efrain 688
    max-width: 540px;
689
  }
690
}
16848 stevensc 691
 
16825 efrain 692
@media (min-width: 768px) {
16848 stevensc 693
 
694
  .container-md,
695
  .container-sm,
696
  .container {
16825 efrain 697
    max-width: 720px;
698
  }
699
}
16848 stevensc 700
 
16825 efrain 701
@media (min-width: 992px) {
16848 stevensc 702
 
703
  .container-lg,
704
  .container-md,
705
  .container-sm,
706
  .container {
16825 efrain 707
    max-width: 960px;
708
  }
709
}
16848 stevensc 710
 
16825 efrain 711
@media (min-width: 1200px) {
16848 stevensc 712
 
713
  .container-xl,
714
  .container-lg,
715
  .container-md,
716
  .container-sm,
717
  .container {
16825 efrain 718
    max-width: 1140px;
719
  }
720
}
16848 stevensc 721
 
16825 efrain 722
@media (min-width: 1400px) {
16848 stevensc 723
 
724
  .container-xxl,
725
  .container-xl,
726
  .container-lg,
727
  .container-md,
728
  .container-sm,
729
  .container {
16825 efrain 730
    max-width: 1320px;
731
  }
732
}
16848 stevensc 733
 
16825 efrain 734
.row {
735
  --bs-gutter-x: 1.5rem;
736
  --bs-gutter-y: 0;
737
  display: flex;
738
  flex-wrap: wrap;
739
  margin-top: calc(-1 * var(--bs-gutter-y));
740
  margin-right: calc(-0.5 * var(--bs-gutter-x));
741
  margin-left: calc(-0.5 * var(--bs-gutter-x));
742
}
16848 stevensc 743
 
744
.row>* {
16825 efrain 745
  flex-shrink: 0;
746
  width: 100%;
747
  max-width: 100%;
748
  padding-right: calc(var(--bs-gutter-x) * 0.5);
749
  padding-left: calc(var(--bs-gutter-x) * 0.5);
750
  margin-top: var(--bs-gutter-y);
751
}
752
 
753
.col {
754
  flex: 1 0 0%;
755
}
756
 
16848 stevensc 757
.row-cols-auto>* {
16825 efrain 758
  flex: 0 0 auto;
759
  width: auto;
760
}
761
 
16848 stevensc 762
.row-cols-1>* {
16825 efrain 763
  flex: 0 0 auto;
764
  width: 100%;
765
}
766
 
16848 stevensc 767
.row-cols-2>* {
16825 efrain 768
  flex: 0 0 auto;
769
  width: 50%;
770
}
771
 
16848 stevensc 772
.row-cols-3>* {
16825 efrain 773
  flex: 0 0 auto;
774
  width: 33.3333333333%;
775
}
776
 
16848 stevensc 777
.row-cols-4>* {
16825 efrain 778
  flex: 0 0 auto;
779
  width: 25%;
780
}
781
 
16848 stevensc 782
.row-cols-5>* {
16825 efrain 783
  flex: 0 0 auto;
784
  width: 20%;
785
}
786
 
16848 stevensc 787
.row-cols-6>* {
16825 efrain 788
  flex: 0 0 auto;
789
  width: 16.6666666667%;
790
}
791
 
792
.col-auto {
793
  flex: 0 0 auto;
794
  width: auto;
795
}
796
 
797
.col-1 {
798
  flex: 0 0 auto;
799
  width: 8.33333333%;
800
}
801
 
802
.col-2 {
803
  flex: 0 0 auto;
804
  width: 16.66666667%;
805
}
806
 
807
.col-3 {
808
  flex: 0 0 auto;
809
  width: 25%;
810
}
811
 
812
.col-4 {
813
  flex: 0 0 auto;
814
  width: 33.33333333%;
815
}
816
 
817
.col-5 {
818
  flex: 0 0 auto;
819
  width: 41.66666667%;
820
}
821
 
822
.col-6 {
823
  flex: 0 0 auto;
824
  width: 50%;
825
}
826
 
827
.col-7 {
828
  flex: 0 0 auto;
829
  width: 58.33333333%;
830
}
831
 
832
.col-8 {
833
  flex: 0 0 auto;
834
  width: 66.66666667%;
835
}
836
 
837
.col-9 {
838
  flex: 0 0 auto;
839
  width: 75%;
840
}
841
 
842
.col-10 {
843
  flex: 0 0 auto;
844
  width: 83.33333333%;
845
}
846
 
847
.col-11 {
848
  flex: 0 0 auto;
849
  width: 91.66666667%;
850
}
851
 
852
.col-12 {
853
  flex: 0 0 auto;
854
  width: 100%;
855
}
856
 
857
.offset-1 {
858
  margin-left: 8.33333333%;
859
}
860
 
861
.offset-2 {
862
  margin-left: 16.66666667%;
863
}
864
 
865
.offset-3 {
866
  margin-left: 25%;
867
}
868
 
869
.offset-4 {
870
  margin-left: 33.33333333%;
871
}
872
 
873
.offset-5 {
874
  margin-left: 41.66666667%;
875
}
876
 
877
.offset-6 {
878
  margin-left: 50%;
879
}
880
 
881
.offset-7 {
882
  margin-left: 58.33333333%;
883
}
884
 
885
.offset-8 {
886
  margin-left: 66.66666667%;
887
}
888
 
889
.offset-9 {
890
  margin-left: 75%;
891
}
892
 
893
.offset-10 {
894
  margin-left: 83.33333333%;
895
}
896
 
897
.offset-11 {
898
  margin-left: 91.66666667%;
899
}
900
 
901
.g-0,
902
.gx-0 {
903
  --bs-gutter-x: 0;
904
}
905
 
906
.g-0,
907
.gy-0 {
908
  --bs-gutter-y: 0;
909
}
910
 
911
.g-1,
912
.gx-1 {
913
  --bs-gutter-x: 0.25rem;
914
}
915
 
916
.g-1,
917
.gy-1 {
918
  --bs-gutter-y: 0.25rem;
919
}
920
 
921
.g-2,
922
.gx-2 {
923
  --bs-gutter-x: 0.5rem;
924
}
925
 
926
.g-2,
927
.gy-2 {
928
  --bs-gutter-y: 0.5rem;
929
}
930
 
931
.g-3,
932
.gx-3 {
933
  --bs-gutter-x: 1rem;
934
}
935
 
936
.g-3,
937
.gy-3 {
938
  --bs-gutter-y: 1rem;
939
}
940
 
941
.g-4,
942
.gx-4 {
943
  --bs-gutter-x: 1.5rem;
944
}
945
 
946
.g-4,
947
.gy-4 {
948
  --bs-gutter-y: 1.5rem;
949
}
950
 
951
.g-5,
952
.gx-5 {
953
  --bs-gutter-x: 3rem;
954
}
955
 
956
.g-5,
957
.gy-5 {
958
  --bs-gutter-y: 3rem;
959
}
960
 
961
.g-6,
962
.gx-6 {
963
  --bs-gutter-x: 4.5rem;
964
}
965
 
966
.g-6,
967
.gy-6 {
968
  --bs-gutter-y: 4.5rem;
969
}
970
 
971
.g-7,
972
.gx-7 {
973
  --bs-gutter-x: 6rem;
974
}
975
 
976
.g-7,
977
.gy-7 {
978
  --bs-gutter-y: 6rem;
979
}
980
 
981
@media (min-width: 576px) {
982
  .col-sm {
983
    flex: 1 0 0%;
984
  }
16848 stevensc 985
 
986
  .row-cols-sm-auto>* {
16825 efrain 987
    flex: 0 0 auto;
988
    width: auto;
989
  }
16848 stevensc 990
 
991
  .row-cols-sm-1>* {
16825 efrain 992
    flex: 0 0 auto;
993
    width: 100%;
994
  }
16848 stevensc 995
 
996
  .row-cols-sm-2>* {
16825 efrain 997
    flex: 0 0 auto;
998
    width: 50%;
999
  }
16848 stevensc 1000
 
1001
  .row-cols-sm-3>* {
16825 efrain 1002
    flex: 0 0 auto;
1003
    width: 33.3333333333%;
1004
  }
16848 stevensc 1005
 
1006
  .row-cols-sm-4>* {
16825 efrain 1007
    flex: 0 0 auto;
1008
    width: 25%;
1009
  }
16848 stevensc 1010
 
1011
  .row-cols-sm-5>* {
16825 efrain 1012
    flex: 0 0 auto;
1013
    width: 20%;
1014
  }
16848 stevensc 1015
 
1016
  .row-cols-sm-6>* {
16825 efrain 1017
    flex: 0 0 auto;
1018
    width: 16.6666666667%;
1019
  }
16848 stevensc 1020
 
16825 efrain 1021
  .col-sm-auto {
1022
    flex: 0 0 auto;
1023
    width: auto;
1024
  }
16848 stevensc 1025
 
16825 efrain 1026
  .col-sm-1 {
1027
    flex: 0 0 auto;
1028
    width: 8.33333333%;
1029
  }
16848 stevensc 1030
 
16825 efrain 1031
  .col-sm-2 {
1032
    flex: 0 0 auto;
1033
    width: 16.66666667%;
1034
  }
16848 stevensc 1035
 
16825 efrain 1036
  .col-sm-3 {
1037
    flex: 0 0 auto;
1038
    width: 25%;
1039
  }
16848 stevensc 1040
 
16825 efrain 1041
  .col-sm-4 {
1042
    flex: 0 0 auto;
1043
    width: 33.33333333%;
1044
  }
16848 stevensc 1045
 
16825 efrain 1046
  .col-sm-5 {
1047
    flex: 0 0 auto;
1048
    width: 41.66666667%;
1049
  }
16848 stevensc 1050
 
16825 efrain 1051
  .col-sm-6 {
1052
    flex: 0 0 auto;
1053
    width: 50%;
1054
  }
16848 stevensc 1055
 
16825 efrain 1056
  .col-sm-7 {
1057
    flex: 0 0 auto;
1058
    width: 58.33333333%;
1059
  }
16848 stevensc 1060
 
16825 efrain 1061
  .col-sm-8 {
1062
    flex: 0 0 auto;
1063
    width: 66.66666667%;
1064
  }
16848 stevensc 1065
 
16825 efrain 1066
  .col-sm-9 {
1067
    flex: 0 0 auto;
1068
    width: 75%;
1069
  }
16848 stevensc 1070
 
16825 efrain 1071
  .col-sm-10 {
1072
    flex: 0 0 auto;
1073
    width: 83.33333333%;
1074
  }
16848 stevensc 1075
 
16825 efrain 1076
  .col-sm-11 {
1077
    flex: 0 0 auto;
1078
    width: 91.66666667%;
1079
  }
16848 stevensc 1080
 
16825 efrain 1081
  .col-sm-12 {
1082
    flex: 0 0 auto;
1083
    width: 100%;
1084
  }
16848 stevensc 1085
 
16825 efrain 1086
  .offset-sm-0 {
1087
    margin-left: 0;
1088
  }
16848 stevensc 1089
 
16825 efrain 1090
  .offset-sm-1 {
1091
    margin-left: 8.33333333%;
1092
  }
16848 stevensc 1093
 
16825 efrain 1094
  .offset-sm-2 {
1095
    margin-left: 16.66666667%;
1096
  }
16848 stevensc 1097
 
16825 efrain 1098
  .offset-sm-3 {
1099
    margin-left: 25%;
1100
  }
16848 stevensc 1101
 
16825 efrain 1102
  .offset-sm-4 {
1103
    margin-left: 33.33333333%;
1104
  }
16848 stevensc 1105
 
16825 efrain 1106
  .offset-sm-5 {
1107
    margin-left: 41.66666667%;
1108
  }
16848 stevensc 1109
 
16825 efrain 1110
  .offset-sm-6 {
1111
    margin-left: 50%;
1112
  }
16848 stevensc 1113
 
16825 efrain 1114
  .offset-sm-7 {
1115
    margin-left: 58.33333333%;
1116
  }
16848 stevensc 1117
 
16825 efrain 1118
  .offset-sm-8 {
1119
    margin-left: 66.66666667%;
1120
  }
16848 stevensc 1121
 
16825 efrain 1122
  .offset-sm-9 {
1123
    margin-left: 75%;
1124
  }
16848 stevensc 1125
 
16825 efrain 1126
  .offset-sm-10 {
1127
    margin-left: 83.33333333%;
1128
  }
16848 stevensc 1129
 
16825 efrain 1130
  .offset-sm-11 {
1131
    margin-left: 91.66666667%;
1132
  }
16848 stevensc 1133
 
16825 efrain 1134
  .g-sm-0,
1135
  .gx-sm-0 {
1136
    --bs-gutter-x: 0;
1137
  }
16848 stevensc 1138
 
16825 efrain 1139
  .g-sm-0,
1140
  .gy-sm-0 {
1141
    --bs-gutter-y: 0;
1142
  }
16848 stevensc 1143
 
16825 efrain 1144
  .g-sm-1,
1145
  .gx-sm-1 {
1146
    --bs-gutter-x: 0.25rem;
1147
  }
16848 stevensc 1148
 
16825 efrain 1149
  .g-sm-1,
1150
  .gy-sm-1 {
1151
    --bs-gutter-y: 0.25rem;
1152
  }
16848 stevensc 1153
 
16825 efrain 1154
  .g-sm-2,
1155
  .gx-sm-2 {
1156
    --bs-gutter-x: 0.5rem;
1157
  }
16848 stevensc 1158
 
16825 efrain 1159
  .g-sm-2,
1160
  .gy-sm-2 {
1161
    --bs-gutter-y: 0.5rem;
1162
  }
16848 stevensc 1163
 
16825 efrain 1164
  .g-sm-3,
1165
  .gx-sm-3 {
1166
    --bs-gutter-x: 1rem;
1167
  }
16848 stevensc 1168
 
16825 efrain 1169
  .g-sm-3,
1170
  .gy-sm-3 {
1171
    --bs-gutter-y: 1rem;
1172
  }
16848 stevensc 1173
 
16825 efrain 1174
  .g-sm-4,
1175
  .gx-sm-4 {
1176
    --bs-gutter-x: 1.5rem;
1177
  }
16848 stevensc 1178
 
16825 efrain 1179
  .g-sm-4,
1180
  .gy-sm-4 {
1181
    --bs-gutter-y: 1.5rem;
1182
  }
16848 stevensc 1183
 
16825 efrain 1184
  .g-sm-5,
1185
  .gx-sm-5 {
1186
    --bs-gutter-x: 3rem;
1187
  }
16848 stevensc 1188
 
16825 efrain 1189
  .g-sm-5,
1190
  .gy-sm-5 {
1191
    --bs-gutter-y: 3rem;
1192
  }
16848 stevensc 1193
 
16825 efrain 1194
  .g-sm-6,
1195
  .gx-sm-6 {
1196
    --bs-gutter-x: 4.5rem;
1197
  }
16848 stevensc 1198
 
16825 efrain 1199
  .g-sm-6,
1200
  .gy-sm-6 {
1201
    --bs-gutter-y: 4.5rem;
1202
  }
16848 stevensc 1203
 
16825 efrain 1204
  .g-sm-7,
1205
  .gx-sm-7 {
1206
    --bs-gutter-x: 6rem;
1207
  }
16848 stevensc 1208
 
16825 efrain 1209
  .g-sm-7,
1210
  .gy-sm-7 {
1211
    --bs-gutter-y: 6rem;
1212
  }
1213
}
16848 stevensc 1214
 
16825 efrain 1215
@media (min-width: 768px) {
1216
  .col-md {
1217
    flex: 1 0 0%;
1218
  }
16848 stevensc 1219
 
1220
  .row-cols-md-auto>* {
16825 efrain 1221
    flex: 0 0 auto;
1222
    width: auto;
1223
  }
16848 stevensc 1224
 
1225
  .row-cols-md-1>* {
16825 efrain 1226
    flex: 0 0 auto;
1227
    width: 100%;
1228
  }
16848 stevensc 1229
 
1230
  .row-cols-md-2>* {
16825 efrain 1231
    flex: 0 0 auto;
1232
    width: 50%;
1233
  }
16848 stevensc 1234
 
1235
  .row-cols-md-3>* {
16825 efrain 1236
    flex: 0 0 auto;
1237
    width: 33.3333333333%;
1238
  }
16848 stevensc 1239
 
1240
  .row-cols-md-4>* {
16825 efrain 1241
    flex: 0 0 auto;
1242
    width: 25%;
1243
  }
16848 stevensc 1244
 
1245
  .row-cols-md-5>* {
16825 efrain 1246
    flex: 0 0 auto;
1247
    width: 20%;
1248
  }
16848 stevensc 1249
 
1250
  .row-cols-md-6>* {
16825 efrain 1251
    flex: 0 0 auto;
1252
    width: 16.6666666667%;
1253
  }
16848 stevensc 1254
 
16825 efrain 1255
  .col-md-auto {
1256
    flex: 0 0 auto;
1257
    width: auto;
1258
  }
16848 stevensc 1259
 
16825 efrain 1260
  .col-md-1 {
1261
    flex: 0 0 auto;
1262
    width: 8.33333333%;
1263
  }
16848 stevensc 1264
 
16825 efrain 1265
  .col-md-2 {
1266
    flex: 0 0 auto;
1267
    width: 16.66666667%;
1268
  }
16848 stevensc 1269
 
16825 efrain 1270
  .col-md-3 {
1271
    flex: 0 0 auto;
1272
    width: 25%;
1273
  }
16848 stevensc 1274
 
16825 efrain 1275
  .col-md-4 {
1276
    flex: 0 0 auto;
1277
    width: 33.33333333%;
1278
  }
16848 stevensc 1279
 
16825 efrain 1280
  .col-md-5 {
1281
    flex: 0 0 auto;
1282
    width: 41.66666667%;
1283
  }
16848 stevensc 1284
 
16825 efrain 1285
  .col-md-6 {
1286
    flex: 0 0 auto;
1287
    width: 50%;
1288
  }
16848 stevensc 1289
 
16825 efrain 1290
  .col-md-7 {
1291
    flex: 0 0 auto;
1292
    width: 58.33333333%;
1293
  }
16848 stevensc 1294
 
16825 efrain 1295
  .col-md-8 {
1296
    flex: 0 0 auto;
1297
    width: 66.66666667%;
1298
  }
16848 stevensc 1299
 
16825 efrain 1300
  .col-md-9 {
1301
    flex: 0 0 auto;
1302
    width: 75%;
1303
  }
16848 stevensc 1304
 
16825 efrain 1305
  .col-md-10 {
1306
    flex: 0 0 auto;
1307
    width: 83.33333333%;
1308
  }
16848 stevensc 1309
 
16825 efrain 1310
  .col-md-11 {
1311
    flex: 0 0 auto;
1312
    width: 91.66666667%;
1313
  }
16848 stevensc 1314
 
16825 efrain 1315
  .col-md-12 {
1316
    flex: 0 0 auto;
1317
    width: 100%;
1318
  }
16848 stevensc 1319
 
16825 efrain 1320
  .offset-md-0 {
1321
    margin-left: 0;
1322
  }
16848 stevensc 1323
 
16825 efrain 1324
  .offset-md-1 {
1325
    margin-left: 8.33333333%;
1326
  }
16848 stevensc 1327
 
16825 efrain 1328
  .offset-md-2 {
1329
    margin-left: 16.66666667%;
1330
  }
16848 stevensc 1331
 
16825 efrain 1332
  .offset-md-3 {
1333
    margin-left: 25%;
1334
  }
16848 stevensc 1335
 
16825 efrain 1336
  .offset-md-4 {
1337
    margin-left: 33.33333333%;
1338
  }
16848 stevensc 1339
 
16825 efrain 1340
  .offset-md-5 {
1341
    margin-left: 41.66666667%;
1342
  }
16848 stevensc 1343
 
16825 efrain 1344
  .offset-md-6 {
1345
    margin-left: 50%;
1346
  }
16848 stevensc 1347
 
16825 efrain 1348
  .offset-md-7 {
1349
    margin-left: 58.33333333%;
1350
  }
16848 stevensc 1351
 
16825 efrain 1352
  .offset-md-8 {
1353
    margin-left: 66.66666667%;
1354
  }
16848 stevensc 1355
 
16825 efrain 1356
  .offset-md-9 {
1357
    margin-left: 75%;
1358
  }
16848 stevensc 1359
 
16825 efrain 1360
  .offset-md-10 {
1361
    margin-left: 83.33333333%;
1362
  }
16848 stevensc 1363
 
16825 efrain 1364
  .offset-md-11 {
1365
    margin-left: 91.66666667%;
1366
  }
16848 stevensc 1367
 
16825 efrain 1368
  .g-md-0,
1369
  .gx-md-0 {
1370
    --bs-gutter-x: 0;
1371
  }
16848 stevensc 1372
 
16825 efrain 1373
  .g-md-0,
1374
  .gy-md-0 {
1375
    --bs-gutter-y: 0;
1376
  }
16848 stevensc 1377
 
16825 efrain 1378
  .g-md-1,
1379
  .gx-md-1 {
1380
    --bs-gutter-x: 0.25rem;
1381
  }
16848 stevensc 1382
 
16825 efrain 1383
  .g-md-1,
1384
  .gy-md-1 {
1385
    --bs-gutter-y: 0.25rem;
1386
  }
16848 stevensc 1387
 
16825 efrain 1388
  .g-md-2,
1389
  .gx-md-2 {
1390
    --bs-gutter-x: 0.5rem;
1391
  }
16848 stevensc 1392
 
16825 efrain 1393
  .g-md-2,
1394
  .gy-md-2 {
1395
    --bs-gutter-y: 0.5rem;
1396
  }
16848 stevensc 1397
 
16825 efrain 1398
  .g-md-3,
1399
  .gx-md-3 {
1400
    --bs-gutter-x: 1rem;
1401
  }
16848 stevensc 1402
 
16825 efrain 1403
  .g-md-3,
1404
  .gy-md-3 {
1405
    --bs-gutter-y: 1rem;
1406
  }
16848 stevensc 1407
 
16825 efrain 1408
  .g-md-4,
1409
  .gx-md-4 {
1410
    --bs-gutter-x: 1.5rem;
1411
  }
16848 stevensc 1412
 
16825 efrain 1413
  .g-md-4,
1414
  .gy-md-4 {
1415
    --bs-gutter-y: 1.5rem;
1416
  }
16848 stevensc 1417
 
16825 efrain 1418
  .g-md-5,
1419
  .gx-md-5 {
1420
    --bs-gutter-x: 3rem;
1421
  }
16848 stevensc 1422
 
16825 efrain 1423
  .g-md-5,
1424
  .gy-md-5 {
1425
    --bs-gutter-y: 3rem;
1426
  }
16848 stevensc 1427
 
16825 efrain 1428
  .g-md-6,
1429
  .gx-md-6 {
1430
    --bs-gutter-x: 4.5rem;
1431
  }
16848 stevensc 1432
 
16825 efrain 1433
  .g-md-6,
1434
  .gy-md-6 {
1435
    --bs-gutter-y: 4.5rem;
1436
  }
16848 stevensc 1437
 
16825 efrain 1438
  .g-md-7,
1439
  .gx-md-7 {
1440
    --bs-gutter-x: 6rem;
1441
  }
16848 stevensc 1442
 
16825 efrain 1443
  .g-md-7,
1444
  .gy-md-7 {
1445
    --bs-gutter-y: 6rem;
1446
  }
1447
}
16848 stevensc 1448
 
16825 efrain 1449
@media (min-width: 992px) {
1450
  .col-lg {
1451
    flex: 1 0 0%;
1452
  }
16848 stevensc 1453
 
1454
  .row-cols-lg-auto>* {
16825 efrain 1455
    flex: 0 0 auto;
1456
    width: auto;
1457
  }
16848 stevensc 1458
 
1459
  .row-cols-lg-1>* {
16825 efrain 1460
    flex: 0 0 auto;
1461
    width: 100%;
1462
  }
16848 stevensc 1463
 
1464
  .row-cols-lg-2>* {
16825 efrain 1465
    flex: 0 0 auto;
1466
    width: 50%;
1467
  }
16848 stevensc 1468
 
1469
  .row-cols-lg-3>* {
16825 efrain 1470
    flex: 0 0 auto;
1471
    width: 33.3333333333%;
1472
  }
16848 stevensc 1473
 
1474
  .row-cols-lg-4>* {
16825 efrain 1475
    flex: 0 0 auto;
1476
    width: 25%;
1477
  }
16848 stevensc 1478
 
1479
  .row-cols-lg-5>* {
16825 efrain 1480
    flex: 0 0 auto;
1481
    width: 20%;
1482
  }
16848 stevensc 1483
 
1484
  .row-cols-lg-6>* {
16825 efrain 1485
    flex: 0 0 auto;
1486
    width: 16.6666666667%;
1487
  }
16848 stevensc 1488
 
16825 efrain 1489
  .col-lg-auto {
1490
    flex: 0 0 auto;
1491
    width: auto;
1492
  }
16848 stevensc 1493
 
16825 efrain 1494
  .col-lg-1 {
1495
    flex: 0 0 auto;
1496
    width: 8.33333333%;
1497
  }
16848 stevensc 1498
 
16825 efrain 1499
  .col-lg-2 {
1500
    flex: 0 0 auto;
1501
    width: 16.66666667%;
1502
  }
16848 stevensc 1503
 
16825 efrain 1504
  .col-lg-3 {
1505
    flex: 0 0 auto;
1506
    width: 25%;
1507
  }
16848 stevensc 1508
 
16825 efrain 1509
  .col-lg-4 {
1510
    flex: 0 0 auto;
1511
    width: 33.33333333%;
1512
  }
16848 stevensc 1513
 
16825 efrain 1514
  .col-lg-5 {
1515
    flex: 0 0 auto;
1516
    width: 41.66666667%;
1517
  }
16848 stevensc 1518
 
16825 efrain 1519
  .col-lg-6 {
1520
    flex: 0 0 auto;
1521
    width: 50%;
1522
  }
16848 stevensc 1523
 
16825 efrain 1524
  .col-lg-7 {
1525
    flex: 0 0 auto;
1526
    width: 58.33333333%;
1527
  }
16848 stevensc 1528
 
16825 efrain 1529
  .col-lg-8 {
1530
    flex: 0 0 auto;
1531
    width: 66.66666667%;
1532
  }
16848 stevensc 1533
 
16825 efrain 1534
  .col-lg-9 {
1535
    flex: 0 0 auto;
1536
    width: 75%;
1537
  }
16848 stevensc 1538
 
16825 efrain 1539
  .col-lg-10 {
1540
    flex: 0 0 auto;
1541
    width: 83.33333333%;
1542
  }
16848 stevensc 1543
 
16825 efrain 1544
  .col-lg-11 {
1545
    flex: 0 0 auto;
1546
    width: 91.66666667%;
1547
  }
16848 stevensc 1548
 
16825 efrain 1549
  .col-lg-12 {
1550
    flex: 0 0 auto;
1551
    width: 100%;
1552
  }
16848 stevensc 1553
 
16825 efrain 1554
  .offset-lg-0 {
1555
    margin-left: 0;
1556
  }
16848 stevensc 1557
 
16825 efrain 1558
  .offset-lg-1 {
1559
    margin-left: 8.33333333%;
1560
  }
16848 stevensc 1561
 
16825 efrain 1562
  .offset-lg-2 {
1563
    margin-left: 16.66666667%;
1564
  }
16848 stevensc 1565
 
16825 efrain 1566
  .offset-lg-3 {
1567
    margin-left: 25%;
1568
  }
16848 stevensc 1569
 
16825 efrain 1570
  .offset-lg-4 {
1571
    margin-left: 33.33333333%;
1572
  }
16848 stevensc 1573
 
16825 efrain 1574
  .offset-lg-5 {
1575
    margin-left: 41.66666667%;
1576
  }
16848 stevensc 1577
 
16825 efrain 1578
  .offset-lg-6 {
1579
    margin-left: 50%;
1580
  }
16848 stevensc 1581
 
16825 efrain 1582
  .offset-lg-7 {
1583
    margin-left: 58.33333333%;
1584
  }
16848 stevensc 1585
 
16825 efrain 1586
  .offset-lg-8 {
1587
    margin-left: 66.66666667%;
1588
  }
16848 stevensc 1589
 
16825 efrain 1590
  .offset-lg-9 {
1591
    margin-left: 75%;
1592
  }
16848 stevensc 1593
 
16825 efrain 1594
  .offset-lg-10 {
1595
    margin-left: 83.33333333%;
1596
  }
16848 stevensc 1597
 
16825 efrain 1598
  .offset-lg-11 {
1599
    margin-left: 91.66666667%;
1600
  }
16848 stevensc 1601
 
16825 efrain 1602
  .g-lg-0,
1603
  .gx-lg-0 {
1604
    --bs-gutter-x: 0;
1605
  }
16848 stevensc 1606
 
16825 efrain 1607
  .g-lg-0,
1608
  .gy-lg-0 {
1609
    --bs-gutter-y: 0;
1610
  }
16848 stevensc 1611
 
16825 efrain 1612
  .g-lg-1,
1613
  .gx-lg-1 {
1614
    --bs-gutter-x: 0.25rem;
1615
  }
16848 stevensc 1616
 
16825 efrain 1617
  .g-lg-1,
1618
  .gy-lg-1 {
1619
    --bs-gutter-y: 0.25rem;
1620
  }
16848 stevensc 1621
 
16825 efrain 1622
  .g-lg-2,
1623
  .gx-lg-2 {
1624
    --bs-gutter-x: 0.5rem;
1625
  }
16848 stevensc 1626
 
16825 efrain 1627
  .g-lg-2,
1628
  .gy-lg-2 {
1629
    --bs-gutter-y: 0.5rem;
1630
  }
16848 stevensc 1631
 
16825 efrain 1632
  .g-lg-3,
1633
  .gx-lg-3 {
1634
    --bs-gutter-x: 1rem;
1635
  }
16848 stevensc 1636
 
16825 efrain 1637
  .g-lg-3,
1638
  .gy-lg-3 {
1639
    --bs-gutter-y: 1rem;
1640
  }
16848 stevensc 1641
 
16825 efrain 1642
  .g-lg-4,
1643
  .gx-lg-4 {
1644
    --bs-gutter-x: 1.5rem;
1645
  }
16848 stevensc 1646
 
16825 efrain 1647
  .g-lg-4,
1648
  .gy-lg-4 {
1649
    --bs-gutter-y: 1.5rem;
1650
  }
16848 stevensc 1651
 
16825 efrain 1652
  .g-lg-5,
1653
  .gx-lg-5 {
1654
    --bs-gutter-x: 3rem;
1655
  }
16848 stevensc 1656
 
16825 efrain 1657
  .g-lg-5,
1658
  .gy-lg-5 {
1659
    --bs-gutter-y: 3rem;
1660
  }
16848 stevensc 1661
 
16825 efrain 1662
  .g-lg-6,
1663
  .gx-lg-6 {
1664
    --bs-gutter-x: 4.5rem;
1665
  }
16848 stevensc 1666
 
16825 efrain 1667
  .g-lg-6,
1668
  .gy-lg-6 {
1669
    --bs-gutter-y: 4.5rem;
1670
  }
16848 stevensc 1671
 
16825 efrain 1672
  .g-lg-7,
1673
  .gx-lg-7 {
1674
    --bs-gutter-x: 6rem;
1675
  }
16848 stevensc 1676
 
16825 efrain 1677
  .g-lg-7,
1678
  .gy-lg-7 {
1679
    --bs-gutter-y: 6rem;
1680
  }
1681
}
16848 stevensc 1682
 
16825 efrain 1683
@media (min-width: 1200px) {
1684
  .col-xl {
1685
    flex: 1 0 0%;
1686
  }
16848 stevensc 1687
 
1688
  .row-cols-xl-auto>* {
16825 efrain 1689
    flex: 0 0 auto;
1690
    width: auto;
1691
  }
16848 stevensc 1692
 
1693
  .row-cols-xl-1>* {
16825 efrain 1694
    flex: 0 0 auto;
1695
    width: 100%;
1696
  }
16848 stevensc 1697
 
1698
  .row-cols-xl-2>* {
16825 efrain 1699
    flex: 0 0 auto;
1700
    width: 50%;
1701
  }
16848 stevensc 1702
 
1703
  .row-cols-xl-3>* {
16825 efrain 1704
    flex: 0 0 auto;
1705
    width: 33.3333333333%;
1706
  }
16848 stevensc 1707
 
1708
  .row-cols-xl-4>* {
16825 efrain 1709
    flex: 0 0 auto;
1710
    width: 25%;
1711
  }
16848 stevensc 1712
 
1713
  .row-cols-xl-5>* {
16825 efrain 1714
    flex: 0 0 auto;
1715
    width: 20%;
1716
  }
16848 stevensc 1717
 
1718
  .row-cols-xl-6>* {
16825 efrain 1719
    flex: 0 0 auto;
1720
    width: 16.6666666667%;
1721
  }
16848 stevensc 1722
 
16825 efrain 1723
  .col-xl-auto {
1724
    flex: 0 0 auto;
1725
    width: auto;
1726
  }
16848 stevensc 1727
 
16825 efrain 1728
  .col-xl-1 {
1729
    flex: 0 0 auto;
1730
    width: 8.33333333%;
1731
  }
16848 stevensc 1732
 
16825 efrain 1733
  .col-xl-2 {
1734
    flex: 0 0 auto;
1735
    width: 16.66666667%;
1736
  }
16848 stevensc 1737
 
16825 efrain 1738
  .col-xl-3 {
1739
    flex: 0 0 auto;
1740
    width: 25%;
1741
  }
16848 stevensc 1742
 
16825 efrain 1743
  .col-xl-4 {
1744
    flex: 0 0 auto;
1745
    width: 33.33333333%;
1746
  }
16848 stevensc 1747
 
16825 efrain 1748
  .col-xl-5 {
1749
    flex: 0 0 auto;
1750
    width: 41.66666667%;
1751
  }
16848 stevensc 1752
 
16825 efrain 1753
  .col-xl-6 {
1754
    flex: 0 0 auto;
1755
    width: 50%;
1756
  }
16848 stevensc 1757
 
16825 efrain 1758
  .col-xl-7 {
1759
    flex: 0 0 auto;
1760
    width: 58.33333333%;
1761
  }
16848 stevensc 1762
 
16825 efrain 1763
  .col-xl-8 {
1764
    flex: 0 0 auto;
1765
    width: 66.66666667%;
1766
  }
16848 stevensc 1767
 
16825 efrain 1768
  .col-xl-9 {
1769
    flex: 0 0 auto;
1770
    width: 75%;
1771
  }
16848 stevensc 1772
 
16825 efrain 1773
  .col-xl-10 {
1774
    flex: 0 0 auto;
1775
    width: 83.33333333%;
1776
  }
16848 stevensc 1777
 
16825 efrain 1778
  .col-xl-11 {
1779
    flex: 0 0 auto;
1780
    width: 91.66666667%;
1781
  }
16848 stevensc 1782
 
16825 efrain 1783
  .col-xl-12 {
1784
    flex: 0 0 auto;
1785
    width: 100%;
1786
  }
16848 stevensc 1787
 
16825 efrain 1788
  .offset-xl-0 {
1789
    margin-left: 0;
1790
  }
16848 stevensc 1791
 
16825 efrain 1792
  .offset-xl-1 {
1793
    margin-left: 8.33333333%;
1794
  }
16848 stevensc 1795
 
16825 efrain 1796
  .offset-xl-2 {
1797
    margin-left: 16.66666667%;
1798
  }
16848 stevensc 1799
 
16825 efrain 1800
  .offset-xl-3 {
1801
    margin-left: 25%;
1802
  }
16848 stevensc 1803
 
16825 efrain 1804
  .offset-xl-4 {
1805
    margin-left: 33.33333333%;
1806
  }
16848 stevensc 1807
 
16825 efrain 1808
  .offset-xl-5 {
1809
    margin-left: 41.66666667%;
1810
  }
16848 stevensc 1811
 
16825 efrain 1812
  .offset-xl-6 {
1813
    margin-left: 50%;
1814
  }
16848 stevensc 1815
 
16825 efrain 1816
  .offset-xl-7 {
1817
    margin-left: 58.33333333%;
1818
  }
16848 stevensc 1819
 
16825 efrain 1820
  .offset-xl-8 {
1821
    margin-left: 66.66666667%;
1822
  }
16848 stevensc 1823
 
16825 efrain 1824
  .offset-xl-9 {
1825
    margin-left: 75%;
1826
  }
16848 stevensc 1827
 
16825 efrain 1828
  .offset-xl-10 {
1829
    margin-left: 83.33333333%;
1830
  }
16848 stevensc 1831
 
16825 efrain 1832
  .offset-xl-11 {
1833
    margin-left: 91.66666667%;
1834
  }
16848 stevensc 1835
 
16825 efrain 1836
  .g-xl-0,
1837
  .gx-xl-0 {
1838
    --bs-gutter-x: 0;
1839
  }
16848 stevensc 1840
 
16825 efrain 1841
  .g-xl-0,
1842
  .gy-xl-0 {
1843
    --bs-gutter-y: 0;
1844
  }
16848 stevensc 1845
 
16825 efrain 1846
  .g-xl-1,
1847
  .gx-xl-1 {
1848
    --bs-gutter-x: 0.25rem;
1849
  }
16848 stevensc 1850
 
16825 efrain 1851
  .g-xl-1,
1852
  .gy-xl-1 {
1853
    --bs-gutter-y: 0.25rem;
1854
  }
16848 stevensc 1855
 
16825 efrain 1856
  .g-xl-2,
1857
  .gx-xl-2 {
1858
    --bs-gutter-x: 0.5rem;
1859
  }
16848 stevensc 1860
 
16825 efrain 1861
  .g-xl-2,
1862
  .gy-xl-2 {
1863
    --bs-gutter-y: 0.5rem;
1864
  }
16848 stevensc 1865
 
16825 efrain 1866
  .g-xl-3,
1867
  .gx-xl-3 {
1868
    --bs-gutter-x: 1rem;
1869
  }
16848 stevensc 1870
 
16825 efrain 1871
  .g-xl-3,
1872
  .gy-xl-3 {
1873
    --bs-gutter-y: 1rem;
1874
  }
16848 stevensc 1875
 
16825 efrain 1876
  .g-xl-4,
1877
  .gx-xl-4 {
1878
    --bs-gutter-x: 1.5rem;
1879
  }
16848 stevensc 1880
 
16825 efrain 1881
  .g-xl-4,
1882
  .gy-xl-4 {
1883
    --bs-gutter-y: 1.5rem;
1884
  }
16848 stevensc 1885
 
16825 efrain 1886
  .g-xl-5,
1887
  .gx-xl-5 {
1888
    --bs-gutter-x: 3rem;
1889
  }
16848 stevensc 1890
 
16825 efrain 1891
  .g-xl-5,
1892
  .gy-xl-5 {
1893
    --bs-gutter-y: 3rem;
1894
  }
16848 stevensc 1895
 
16825 efrain 1896
  .g-xl-6,
1897
  .gx-xl-6 {
1898
    --bs-gutter-x: 4.5rem;
1899
  }
16848 stevensc 1900
 
16825 efrain 1901
  .g-xl-6,
1902
  .gy-xl-6 {
1903
    --bs-gutter-y: 4.5rem;
1904
  }
16848 stevensc 1905
 
16825 efrain 1906
  .g-xl-7,
1907
  .gx-xl-7 {
1908
    --bs-gutter-x: 6rem;
1909
  }
16848 stevensc 1910
 
16825 efrain 1911
  .g-xl-7,
1912
  .gy-xl-7 {
1913
    --bs-gutter-y: 6rem;
1914
  }
1915
}
16848 stevensc 1916
 
16825 efrain 1917
@media (min-width: 1400px) {
1918
  .col-xxl {
1919
    flex: 1 0 0%;
1920
  }
16848 stevensc 1921
 
1922
  .row-cols-xxl-auto>* {
16825 efrain 1923
    flex: 0 0 auto;
1924
    width: auto;
1925
  }
16848 stevensc 1926
 
1927
  .row-cols-xxl-1>* {
16825 efrain 1928
    flex: 0 0 auto;
1929
    width: 100%;
1930
  }
16848 stevensc 1931
 
1932
  .row-cols-xxl-2>* {
16825 efrain 1933
    flex: 0 0 auto;
1934
    width: 50%;
1935
  }
16848 stevensc 1936
 
1937
  .row-cols-xxl-3>* {
16825 efrain 1938
    flex: 0 0 auto;
1939
    width: 33.3333333333%;
1940
  }
16848 stevensc 1941
 
1942
  .row-cols-xxl-4>* {
16825 efrain 1943
    flex: 0 0 auto;
1944
    width: 25%;
1945
  }
16848 stevensc 1946
 
1947
  .row-cols-xxl-5>* {
16825 efrain 1948
    flex: 0 0 auto;
1949
    width: 20%;
1950
  }
16848 stevensc 1951
 
1952
  .row-cols-xxl-6>* {
16825 efrain 1953
    flex: 0 0 auto;
1954
    width: 16.6666666667%;
1955
  }
16848 stevensc 1956
 
16825 efrain 1957
  .col-xxl-auto {
1958
    flex: 0 0 auto;
1959
    width: auto;
1960
  }
16848 stevensc 1961
 
16825 efrain 1962
  .col-xxl-1 {
1963
    flex: 0 0 auto;
1964
    width: 8.33333333%;
1965
  }
16848 stevensc 1966
 
16825 efrain 1967
  .col-xxl-2 {
1968
    flex: 0 0 auto;
1969
    width: 16.66666667%;
1970
  }
16848 stevensc 1971
 
16825 efrain 1972
  .col-xxl-3 {
1973
    flex: 0 0 auto;
1974
    width: 25%;
1975
  }
16848 stevensc 1976
 
16825 efrain 1977
  .col-xxl-4 {
1978
    flex: 0 0 auto;
1979
    width: 33.33333333%;
1980
  }
16848 stevensc 1981
 
16825 efrain 1982
  .col-xxl-5 {
1983
    flex: 0 0 auto;
1984
    width: 41.66666667%;
1985
  }
16848 stevensc 1986
 
16825 efrain 1987
  .col-xxl-6 {
1988
    flex: 0 0 auto;
1989
    width: 50%;
1990
  }
16848 stevensc 1991
 
16825 efrain 1992
  .col-xxl-7 {
1993
    flex: 0 0 auto;
1994
    width: 58.33333333%;
1995
  }
16848 stevensc 1996
 
16825 efrain 1997
  .col-xxl-8 {
1998
    flex: 0 0 auto;
1999
    width: 66.66666667%;
2000
  }
16848 stevensc 2001
 
16825 efrain 2002
  .col-xxl-9 {
2003
    flex: 0 0 auto;
2004
    width: 75%;
2005
  }
16848 stevensc 2006
 
16825 efrain 2007
  .col-xxl-10 {
2008
    flex: 0 0 auto;
2009
    width: 83.33333333%;
2010
  }
16848 stevensc 2011
 
16825 efrain 2012
  .col-xxl-11 {
2013
    flex: 0 0 auto;
2014
    width: 91.66666667%;
2015
  }
16848 stevensc 2016
 
16825 efrain 2017
  .col-xxl-12 {
2018
    flex: 0 0 auto;
2019
    width: 100%;
2020
  }
16848 stevensc 2021
 
16825 efrain 2022
  .offset-xxl-0 {
2023
    margin-left: 0;
2024
  }
16848 stevensc 2025
 
16825 efrain 2026
  .offset-xxl-1 {
2027
    margin-left: 8.33333333%;
2028
  }
16848 stevensc 2029
 
16825 efrain 2030
  .offset-xxl-2 {
2031
    margin-left: 16.66666667%;
2032
  }
16848 stevensc 2033
 
16825 efrain 2034
  .offset-xxl-3 {
2035
    margin-left: 25%;
2036
  }
16848 stevensc 2037
 
16825 efrain 2038
  .offset-xxl-4 {
2039
    margin-left: 33.33333333%;
2040
  }
16848 stevensc 2041
 
16825 efrain 2042
  .offset-xxl-5 {
2043
    margin-left: 41.66666667%;
2044
  }
16848 stevensc 2045
 
16825 efrain 2046
  .offset-xxl-6 {
2047
    margin-left: 50%;
2048
  }
16848 stevensc 2049
 
16825 efrain 2050
  .offset-xxl-7 {
2051
    margin-left: 58.33333333%;
2052
  }
16848 stevensc 2053
 
16825 efrain 2054
  .offset-xxl-8 {
2055
    margin-left: 66.66666667%;
2056
  }
16848 stevensc 2057
 
16825 efrain 2058
  .offset-xxl-9 {
2059
    margin-left: 75%;
2060
  }
16848 stevensc 2061
 
16825 efrain 2062
  .offset-xxl-10 {
2063
    margin-left: 83.33333333%;
2064
  }
16848 stevensc 2065
 
16825 efrain 2066
  .offset-xxl-11 {
2067
    margin-left: 91.66666667%;
2068
  }
16848 stevensc 2069
 
16825 efrain 2070
  .g-xxl-0,
2071
  .gx-xxl-0 {
2072
    --bs-gutter-x: 0;
2073
  }
16848 stevensc 2074
 
16825 efrain 2075
  .g-xxl-0,
2076
  .gy-xxl-0 {
2077
    --bs-gutter-y: 0;
2078
  }
16848 stevensc 2079
 
16825 efrain 2080
  .g-xxl-1,
2081
  .gx-xxl-1 {
2082
    --bs-gutter-x: 0.25rem;
2083
  }
16848 stevensc 2084
 
16825 efrain 2085
  .g-xxl-1,
2086
  .gy-xxl-1 {
2087
    --bs-gutter-y: 0.25rem;
2088
  }
16848 stevensc 2089
 
16825 efrain 2090
  .g-xxl-2,
2091
  .gx-xxl-2 {
2092
    --bs-gutter-x: 0.5rem;
2093
  }
16848 stevensc 2094
 
16825 efrain 2095
  .g-xxl-2,
2096
  .gy-xxl-2 {
2097
    --bs-gutter-y: 0.5rem;
2098
  }
16848 stevensc 2099
 
16825 efrain 2100
  .g-xxl-3,
2101
  .gx-xxl-3 {
2102
    --bs-gutter-x: 1rem;
2103
  }
16848 stevensc 2104
 
16825 efrain 2105
  .g-xxl-3,
2106
  .gy-xxl-3 {
2107
    --bs-gutter-y: 1rem;
2108
  }
16848 stevensc 2109
 
16825 efrain 2110
  .g-xxl-4,
2111
  .gx-xxl-4 {
2112
    --bs-gutter-x: 1.5rem;
2113
  }
16848 stevensc 2114
 
16825 efrain 2115
  .g-xxl-4,
2116
  .gy-xxl-4 {
2117
    --bs-gutter-y: 1.5rem;
2118
  }
16848 stevensc 2119
 
16825 efrain 2120
  .g-xxl-5,
2121
  .gx-xxl-5 {
2122
    --bs-gutter-x: 3rem;
2123
  }
16848 stevensc 2124
 
16825 efrain 2125
  .g-xxl-5,
2126
  .gy-xxl-5 {
2127
    --bs-gutter-y: 3rem;
2128
  }
16848 stevensc 2129
 
16825 efrain 2130
  .g-xxl-6,
2131
  .gx-xxl-6 {
2132
    --bs-gutter-x: 4.5rem;
2133
  }
16848 stevensc 2134
 
16825 efrain 2135
  .g-xxl-6,
2136
  .gy-xxl-6 {
2137
    --bs-gutter-y: 4.5rem;
2138
  }
16848 stevensc 2139
 
16825 efrain 2140
  .g-xxl-7,
2141
  .gx-xxl-7 {
2142
    --bs-gutter-x: 6rem;
2143
  }
16848 stevensc 2144
 
16825 efrain 2145
  .g-xxl-7,
2146
  .gy-xxl-7 {
2147
    --bs-gutter-y: 6rem;
2148
  }
2149
}
16848 stevensc 2150
 
16825 efrain 2151
.table {
2152
  --bs-table-color: var(--bs-body-color);
2153
  --bs-table-bg: transparent;
2154
  --bs-table-border-color: var(--bs-border-color);
2155
  --bs-table-accent-bg: transparent;
2156
  --bs-table-striped-color: var(--bs-body-color);
2157
  --bs-table-striped-bg: #e9ecef;
2158
  --bs-table-active-color: var(--bs-body-color);
2159
  --bs-table-active-bg: #dee2e6;
2160
  --bs-table-hover-color: var(--bs-body-color);
2161
  --bs-table-hover-bg: #e9ecef;
2162
  width: 100%;
2163
  margin-bottom: 1rem;
2164
  color: var(--bs-table-color);
2165
  vertical-align: top;
2166
  border-color: var(--bs-table-border-color);
2167
}
16848 stevensc 2168
 
2169
.table> :not(caption)>*>* {
16825 efrain 2170
  padding: 0.85rem 0.85rem;
2171
  background-color: var(--bs-table-bg);
2172
  border-bottom-width: 1px;
2173
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2174
}
16848 stevensc 2175
 
2176
.table>tbody {
16825 efrain 2177
  vertical-align: inherit;
2178
}
16848 stevensc 2179
 
2180
.table>thead {
16825 efrain 2181
  vertical-align: bottom;
2182
}
2183
 
2184
.table-group-divider {
2185
  border-top: 2px solid #e9ecef;
2186
}
2187
 
2188
.caption-top {
2189
  caption-side: top;
2190
}
2191
 
16848 stevensc 2192
.table-sm> :not(caption)>*>* {
16825 efrain 2193
  padding: 0.55rem 0.55rem;
2194
}
2195
 
16848 stevensc 2196
.table-bordered> :not(caption)>* {
16825 efrain 2197
  border-width: 1px 0;
2198
}
16848 stevensc 2199
 
2200
.table-bordered> :not(caption)>*>* {
16825 efrain 2201
  border-width: 0 1px;
2202
}
2203
 
16848 stevensc 2204
.table-borderless> :not(caption)>*>* {
16825 efrain 2205
  border-bottom-width: 0;
2206
}
16848 stevensc 2207
 
2208
.table-borderless> :not(:first-child) {
16825 efrain 2209
  border-top-width: 0;
2210
}
2211
 
16848 stevensc 2212
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2213
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2214
  color: var(--bs-table-striped-color);
2215
}
2216
 
16848 stevensc 2217
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2218
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2219
  color: var(--bs-table-striped-color);
2220
}
2221
 
2222
.table-active {
2223
  --bs-table-accent-bg: var(--bs-table-active-bg);
2224
  color: var(--bs-table-active-color);
2225
}
2226
 
16848 stevensc 2227
.table-hover>tbody>tr:hover>* {
16825 efrain 2228
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2229
  color: var(--bs-table-hover-color);
2230
}
2231
 
2232
.table-primary {
2233
  --bs-table-color: #000;
2234
  --bs-table-bg: #e0e3ff;
2235
  --bs-table-border-color: #cacce6;
2236
  --bs-table-striped-bg: #d5d8f2;
2237
  --bs-table-striped-color: #000;
2238
  --bs-table-active-bg: #cacce6;
2239
  --bs-table-active-color: #000;
2240
  --bs-table-hover-bg: #cfd2ec;
2241
  --bs-table-hover-color: #000;
2242
  color: var(--bs-table-color);
2243
  border-color: var(--bs-table-border-color);
2244
}
2245
 
2246
.table-secondary {
2247
  --bs-table-color: #000;
2248
  --bs-table-bg: #e4e7ec;
2249
  --bs-table-border-color: #cdd0d4;
2250
  --bs-table-striped-bg: #d9dbe0;
2251
  --bs-table-striped-color: #000;
2252
  --bs-table-active-bg: #cdd0d4;
2253
  --bs-table-active-color: #000;
2254
  --bs-table-hover-bg: #d3d6da;
2255
  --bs-table-hover-color: #000;
2256
  color: var(--bs-table-color);
2257
  border-color: var(--bs-table-border-color);
2258
}
2259
 
2260
.table-success {
2261
  --bs-table-color: #000;
2262
  --bs-table-bg: #cdeddb;
2263
  --bs-table-border-color: #b9d5c5;
2264
  --bs-table-striped-bg: #c3e1d0;
2265
  --bs-table-striped-color: #000;
2266
  --bs-table-active-bg: #b9d5c5;
2267
  --bs-table-active-color: #000;
2268
  --bs-table-hover-bg: #bedbcb;
2269
  --bs-table-hover-color: #000;
2270
  color: var(--bs-table-color);
2271
  border-color: var(--bs-table-border-color);
2272
}
2273
 
2274
.table-info {
2275
  --bs-table-color: #000;
2276
  --bs-table-bg: #e0f6f6;
2277
  --bs-table-border-color: #cadddd;
2278
  --bs-table-striped-bg: #d5eaea;
2279
  --bs-table-striped-color: #000;
2280
  --bs-table-active-bg: #cadddd;
2281
  --bs-table-active-color: #000;
2282
  --bs-table-hover-bg: #cfe4e4;
2283
  --bs-table-hover-color: #000;
2284
  color: var(--bs-table-color);
2285
  border-color: var(--bs-table-border-color);
2286
}
2287
 
2288
.table-warning {
2289
  --bs-table-color: #000;
2290
  --bs-table-bg: #fef2cd;
2291
  --bs-table-border-color: #e5dab9;
2292
  --bs-table-striped-bg: #f1e6c3;
2293
  --bs-table-striped-color: #000;
2294
  --bs-table-active-bg: #e5dab9;
2295
  --bs-table-active-color: #000;
2296
  --bs-table-hover-bg: #ebe0be;
2297
  --bs-table-hover-color: #000;
2298
  color: var(--bs-table-color);
2299
  border-color: var(--bs-table-border-color);
2300
}
2301
 
2302
.table-danger {
2303
  --bs-table-color: #000;
2304
  --bs-table-bg: #ffd6e0;
2305
  --bs-table-border-color: #e6c1ca;
2306
  --bs-table-striped-bg: #f2cbd5;
2307
  --bs-table-striped-color: #000;
2308
  --bs-table-active-bg: #e6c1ca;
2309
  --bs-table-active-color: #000;
2310
  --bs-table-hover-bg: #ecc6cf;
2311
  --bs-table-hover-color: #000;
2312
  color: var(--bs-table-color);
2313
  border-color: var(--bs-table-border-color);
2314
}
2315
 
2316
.table-light {
2317
  --bs-table-color: #000;
2318
  --bs-table-bg: #e9ecef;
2319
  --bs-table-border-color: #d2d4d7;
2320
  --bs-table-striped-bg: #dde0e3;
2321
  --bs-table-striped-color: #000;
2322
  --bs-table-active-bg: #d2d4d7;
2323
  --bs-table-active-color: #000;
2324
  --bs-table-hover-bg: #d8dadd;
2325
  --bs-table-hover-color: #000;
2326
  color: var(--bs-table-color);
2327
  border-color: var(--bs-table-border-color);
2328
}
2329
 
2330
.table-dark {
2331
  --bs-table-color: #fff;
2332
  --bs-table-bg: #060c17;
2333
  --bs-table-border-color: #1f242e;
2334
  --bs-table-striped-bg: #121823;
2335
  --bs-table-striped-color: #fff;
2336
  --bs-table-active-bg: #1f242e;
2337
  --bs-table-active-color: #fff;
2338
  --bs-table-hover-bg: #191e28;
2339
  --bs-table-hover-color: #fff;
2340
  color: var(--bs-table-color);
2341
  border-color: var(--bs-table-border-color);
2342
}
2343
 
2344
.table-responsive {
2345
  overflow-x: auto;
2346
  -webkit-overflow-scrolling: touch;
2347
}
2348
 
2349
@media (max-width: 575.98px) {
2350
  .table-responsive-sm {
2351
    overflow-x: auto;
2352
    -webkit-overflow-scrolling: touch;
2353
  }
2354
}
16848 stevensc 2355
 
16825 efrain 2356
@media (max-width: 767.98px) {
2357
  .table-responsive-md {
2358
    overflow-x: auto;
2359
    -webkit-overflow-scrolling: touch;
2360
  }
2361
}
16848 stevensc 2362
 
16825 efrain 2363
@media (max-width: 991.98px) {
2364
  .table-responsive-lg {
2365
    overflow-x: auto;
2366
    -webkit-overflow-scrolling: touch;
2367
  }
2368
}
16848 stevensc 2369
 
16825 efrain 2370
@media (max-width: 1199.98px) {
2371
  .table-responsive-xl {
2372
    overflow-x: auto;
2373
    -webkit-overflow-scrolling: touch;
2374
  }
2375
}
16848 stevensc 2376
 
16825 efrain 2377
@media (max-width: 1399.98px) {
2378
  .table-responsive-xxl {
2379
    overflow-x: auto;
2380
    -webkit-overflow-scrolling: touch;
2381
  }
2382
}
16848 stevensc 2383
 
16825 efrain 2384
.form-label {
2385
  margin-bottom: 0.5rem;
2386
}
2387
 
2388
.col-form-label {
2389
  padding-top: calc(0.469rem + 1px);
2390
  padding-bottom: calc(0.469rem + 1px);
2391
  margin-bottom: 0;
2392
  font-size: inherit;
2393
  line-height: 1.5;
2394
}
2395
 
2396
.col-form-label-lg {
2397
  padding-top: calc(0.5rem + 1px);
2398
  padding-bottom: calc(0.5rem + 1px);
2399
  font-size: 1rem;
2400
}
2401
 
2402
.col-form-label-sm {
2403
  padding-top: calc(0.391rem + 1px);
2404
  padding-bottom: calc(0.391rem + 1px);
2405
  font-size: 0.812rem;
2406
}
2407
 
2408
.form-text {
2409
  margin-top: 0.25rem;
2410
  font-size: 0.875em;
2411
  color: #7987a1;
2412
}
2413
 
16848 stevensc 2414
.form-control,
2415
.typeahead.tt-input,
2416
.typeahead.tt-hint,
2417
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2418
  display: block;
2419
  width: 100%;
2420
  padding: 0.469rem 0.8rem;
2421
  font-size: 0.875rem;
2422
  font-weight: 400;
2423
  line-height: 1.5;
2424
  color: #000;
2425
  background-color: #fff;
2426
  background-clip: padding-box;
2427
  border: 1px solid #e9ecef;
2428
  appearance: none;
2429
  border-radius: 0.25rem;
2430
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2431
}
16848 stevensc 2432
 
16825 efrain 2433
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2434
 
2435
  .form-control,
2436
  .typeahead.tt-input,
2437
  .typeahead.tt-hint,
2438
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2439
    transition: none;
2440
  }
2441
}
16848 stevensc 2442
 
2443
.form-control[type=file],
2444
[type=file].typeahead.tt-input,
2445
[type=file].typeahead.tt-hint,
2446
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2447
  overflow: hidden;
2448
}
16848 stevensc 2449
 
2450
.form-control[type=file]:not(:disabled):not([readonly]),
2451
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2452
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2453
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2454
  cursor: pointer;
2455
}
16848 stevensc 2456
 
2457
.form-control:focus,
2458
.typeahead.tt-input:focus,
2459
.typeahead.tt-hint:focus,
2460
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2461
  color: #000;
2462
  background-color: #fff;
2463
  border-color: #cbd1db;
2464
  outline: 0;
2465
  box-shadow: none;
2466
}
16848 stevensc 2467
 
2468
.form-control::-webkit-date-and-time-value,
2469
.typeahead.tt-input::-webkit-date-and-time-value,
2470
.typeahead.tt-hint::-webkit-date-and-time-value,
2471
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2472
  height: 1.5em;
2473
}
16848 stevensc 2474
 
2475
.form-control::placeholder,
2476
.typeahead.tt-input::placeholder,
2477
.typeahead.tt-hint::placeholder,
2478
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2479
  color: #aeb7c5;
2480
  opacity: 1;
2481
}
16848 stevensc 2482
 
2483
.form-control:disabled,
2484
.typeahead.tt-input:disabled,
2485
.typeahead.tt-hint:disabled,
2486
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2487
  background-color: #e9ecef;
2488
  opacity: 1;
2489
}
16848 stevensc 2490
 
2491
.form-control::file-selector-button,
2492
.typeahead.tt-input::file-selector-button,
2493
.typeahead.tt-hint::file-selector-button,
2494
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2495
  padding: 0.469rem 0.8rem;
2496
  margin: -0.469rem -0.8rem;
2497
  margin-inline-end: 0.8rem;
2498
  color: #000;
2499
  background-color: #f8f9fa;
2500
  pointer-events: none;
2501
  border-color: inherit;
2502
  border-style: solid;
2503
  border-width: 0;
2504
  border-inline-end-width: 1px;
2505
  border-radius: 0;
2506
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2507
}
16848 stevensc 2508
 
16825 efrain 2509
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2510
 
2511
  .form-control::file-selector-button,
2512
  .typeahead.tt-input::file-selector-button,
2513
  .typeahead.tt-hint::file-selector-button,
2514
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2515
    transition: none;
2516
  }
2517
}
16848 stevensc 2518
 
2519
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2520
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2521
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2522
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2523
  background-color: #ecedee;
2524
}
2525
 
2526
.form-control-plaintext {
2527
  display: block;
2528
  width: 100%;
2529
  padding: 0.469rem 0;
2530
  margin-bottom: 0;
2531
  line-height: 1.5;
2532
  color: #000;
2533
  background-color: transparent;
2534
  border: solid transparent;
2535
  border-width: 1px 0;
2536
}
16848 stevensc 2537
 
16825 efrain 2538
.form-control-plaintext:focus {
2539
  outline: 0;
2540
}
16848 stevensc 2541
 
2542
.form-control-plaintext.form-control-sm,
2543
.form-control-plaintext.form-control-lg {
16825 efrain 2544
  padding-right: 0;
2545
  padding-left: 0;
2546
}
2547
 
2548
.form-control-sm {
2549
  min-height: calc(1.5em + 0.782rem + 2px);
2550
  padding: 0.391rem 0.8rem;
2551
  font-size: 0.812rem;
2552
  border-radius: 0.25rem;
2553
}
16848 stevensc 2554
 
16825 efrain 2555
.form-control-sm::file-selector-button {
2556
  padding: 0.391rem 0.8rem;
2557
  margin: -0.391rem -0.8rem;
2558
  margin-inline-end: 0.8rem;
2559
}
2560
 
2561
.form-control-lg {
2562
  min-height: calc(1.5em + 1rem + 2px);
2563
  padding: 0.5rem 0.8rem;
2564
  font-size: 1rem;
2565
  border-radius: 0.25rem;
2566
}
16848 stevensc 2567
 
16825 efrain 2568
.form-control-lg::file-selector-button {
2569
  padding: 0.5rem 0.8rem;
2570
  margin: -0.5rem -0.8rem;
2571
  margin-inline-end: 0.8rem;
2572
}
2573
 
16848 stevensc 2574
textarea.form-control,
2575
textarea.typeahead.tt-input,
2576
textarea.typeahead.tt-hint,
2577
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2578
  min-height: calc(1.5em + 0.938rem + 2px);
2579
}
16848 stevensc 2580
 
16825 efrain 2581
textarea.form-control-sm {
2582
  min-height: calc(1.5em + 0.782rem + 2px);
2583
}
16848 stevensc 2584
 
16825 efrain 2585
textarea.form-control-lg {
2586
  min-height: calc(1.5em + 1rem + 2px);
2587
}
2588
 
2589
.form-control-color {
2590
  width: 3rem;
2591
  height: calc(1.5em + 0.938rem + 2px);
2592
  padding: 0.469rem;
2593
}
16848 stevensc 2594
 
16825 efrain 2595
.form-control-color:not(:disabled):not([readonly]) {
2596
  cursor: pointer;
2597
}
16848 stevensc 2598
 
16825 efrain 2599
.form-control-color::-moz-color-swatch {
2600
  border: 0 !important;
2601
  border-radius: 0.25rem;
2602
}
16848 stevensc 2603
 
16825 efrain 2604
.form-control-color::-webkit-color-swatch {
2605
  border-radius: 0.25rem;
2606
}
16848 stevensc 2607
 
16825 efrain 2608
.form-control-color.form-control-sm {
2609
  height: calc(1.5em + 0.782rem + 2px);
2610
}
16848 stevensc 2611
 
16825 efrain 2612
.form-control-color.form-control-lg {
2613
  height: calc(1.5em + 1rem + 2px);
2614
}
2615
 
2616
.form-select {
2617
  display: block;
2618
  width: 100%;
2619
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2620
  -moz-padding-start: calc(0.8rem - 3px);
2621
  font-size: 0.875rem;
2622
  font-weight: 400;
2623
  line-height: 1.5;
2624
  color: #000;
2625
  background-color: #fff;
2626
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212a3a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
2627
  background-repeat: no-repeat;
2628
  background-position: right 0.8rem center;
2629
  background-size: 16px 12px;
2630
  border: 1px solid #e9ecef;
2631
  border-radius: 0.25rem;
2632
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2633
  appearance: none;
2634
}
16848 stevensc 2635
 
16825 efrain 2636
@media (prefers-reduced-motion: reduce) {
2637
  .form-select {
2638
    transition: none;
2639
  }
2640
}
16848 stevensc 2641
 
16825 efrain 2642
.form-select:focus {
2643
  border-color: #cbd1db;
2644
  outline: 0;
2645
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2646
}
16848 stevensc 2647
 
2648
.form-select[multiple],
2649
.form-select[size]:not([size="1"]) {
16825 efrain 2650
  padding-right: 0.8rem;
2651
  background-image: none;
2652
}
16848 stevensc 2653
 
16825 efrain 2654
.form-select:disabled {
2655
  background-color: #e9ecef;
2656
}
16848 stevensc 2657
 
16825 efrain 2658
.form-select:-moz-focusring {
2659
  color: transparent;
2660
  text-shadow: 0 0 0 #000;
2661
}
2662
 
2663
.form-select-sm {
2664
  padding-top: 0.391rem;
2665
  padding-bottom: 0.391rem;
2666
  padding-left: 0.8rem;
2667
  font-size: 0.812rem;
2668
  border-radius: 0.25rem;
2669
}
2670
 
2671
.form-select-lg {
2672
  padding-top: 0.5rem;
2673
  padding-bottom: 0.5rem;
2674
  padding-left: 0.8rem;
2675
  font-size: 1rem;
2676
  border-radius: 0.25rem;
2677
}
2678
 
2679
.form-check {
2680
  display: block;
2681
  min-height: 1.3125rem;
2682
  padding-left: 1.8em;
2683
  margin-bottom: 0.125rem;
2684
}
16848 stevensc 2685
 
16825 efrain 2686
.form-check .form-check-input {
2687
  float: left;
2688
  margin-left: -1.8em;
2689
}
2690
 
2691
.form-check-reverse {
2692
  padding-right: 1.8em;
2693
  padding-left: 0;
2694
  text-align: right;
2695
}
16848 stevensc 2696
 
16825 efrain 2697
.form-check-reverse .form-check-input {
2698
  float: right;
2699
  margin-right: -1.8em;
2700
  margin-left: 0;
2701
}
2702
 
2703
.form-check-input {
2704
  width: 1.3em;
2705
  height: 1.3em;
2706
  margin-top: 0.1em;
2707
  vertical-align: top;
2708
  background-color: #fff;
2709
  background-repeat: no-repeat;
2710
  background-position: center;
2711
  background-size: contain;
2712
  border: 1px solid rgba(0, 0, 0, 0.25);
2713
  appearance: none;
2714
  print-color-adjust: exact;
2715
}
16848 stevensc 2716
 
16825 efrain 2717
.form-check-input[type=checkbox] {
2718
  border-radius: 0.15em;
2719
}
16848 stevensc 2720
 
16825 efrain 2721
.form-check-input[type=radio] {
2722
  border-radius: 50%;
2723
}
16848 stevensc 2724
 
16825 efrain 2725
.form-check-input:active {
2726
  filter: brightness(90%);
2727
}
16848 stevensc 2728
 
16825 efrain 2729
.form-check-input:focus {
2730
  border-color: #cbd1db;
2731
  outline: 0;
2732
  box-shadow: none;
2733
}
16848 stevensc 2734
 
16825 efrain 2735
.form-check-input:checked {
2736
  background-color: #6571ff;
2737
  border-color: #6571ff;
2738
}
16848 stevensc 2739
 
16825 efrain 2740
.form-check-input:checked[type=checkbox] {
2741
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
2742
}
16848 stevensc 2743
 
16825 efrain 2744
.form-check-input:checked[type=radio] {
2745
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
2746
}
16848 stevensc 2747
 
16825 efrain 2748
.form-check-input[type=checkbox]:indeterminate {
2749
  background-color: #6571ff;
2750
  border-color: #6571ff;
2751
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
2752
}
16848 stevensc 2753
 
16825 efrain 2754
.form-check-input:disabled {
2755
  pointer-events: none;
2756
  filter: none;
2757
  opacity: 0.5;
2758
}
16848 stevensc 2759
 
2760
.form-check-input[disabled]~.form-check-label,
2761
.form-check-input:disabled~.form-check-label {
16825 efrain 2762
  cursor: default;
2763
  opacity: 0.5;
2764
}
2765
 
2766
.form-switch {
2767
  padding-left: 2.5em;
2768
}
16848 stevensc 2769
 
16825 efrain 2770
.form-switch .form-check-input {
2771
  width: 2em;
2772
  margin-left: -2.5em;
2773
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
2774
  background-position: left center;
2775
  border-radius: 2em;
2776
  transition: background-position 0.15s ease-in-out;
2777
}
16848 stevensc 2778
 
16825 efrain 2779
@media (prefers-reduced-motion: reduce) {
2780
  .form-switch .form-check-input {
2781
    transition: none;
2782
  }
2783
}
16848 stevensc 2784
 
16825 efrain 2785
.form-switch .form-check-input:focus {
2786
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23cbd1db'/%3e%3c/svg%3e");
2787
}
16848 stevensc 2788
 
16825 efrain 2789
.form-switch .form-check-input:checked {
2790
  background-position: right center;
2791
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
2792
}
16848 stevensc 2793
 
16825 efrain 2794
.form-switch.form-check-reverse {
2795
  padding-right: 2.5em;
2796
  padding-left: 0;
2797
}
16848 stevensc 2798
 
16825 efrain 2799
.form-switch.form-check-reverse .form-check-input {
2800
  margin-right: -2.5em;
2801
  margin-left: 0;
2802
}
2803
 
2804
.form-check-inline {
2805
  display: inline-block;
2806
  margin-right: 1rem;
2807
}
2808
 
2809
.btn-check {
2810
  position: absolute;
2811
  clip: rect(0, 0, 0, 0);
2812
  pointer-events: none;
2813
}
16848 stevensc 2814
 
2815
.btn-check[disabled]+.btn,
2816
.wizard>.actions .btn-check[disabled]+a,
2817
div.tox .btn-check[disabled]+.tox-button,
2818
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2819
.fc .btn-check[disabled]+.fc-button-primary,
2820
.btn-check:disabled+.btn,
2821
.wizard>.actions .btn-check:disabled+a,
2822
div.tox .btn-check:disabled+.tox-button,
2823
.swal2-popup .swal2-actions .btn-check:disabled+button,
2824
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2825
  pointer-events: none;
2826
  filter: none;
2827
  opacity: 0.65;
2828
}
2829
 
2830
.form-range {
2831
  width: 100%;
2832
  height: 1rem;
2833
  padding: 0;
2834
  background-color: transparent;
2835
  appearance: none;
2836
}
16848 stevensc 2837
 
16825 efrain 2838
.form-range:focus {
2839
  outline: 0;
2840
}
16848 stevensc 2841
 
16825 efrain 2842
.form-range:focus::-webkit-slider-thumb {
2843
  box-shadow: 0 0 0 1px #f9fafb, none;
2844
}
16848 stevensc 2845
 
16825 efrain 2846
.form-range:focus::-moz-range-thumb {
2847
  box-shadow: 0 0 0 1px #f9fafb, none;
2848
}
16848 stevensc 2849
 
16825 efrain 2850
.form-range::-moz-focus-outer {
2851
  border: 0;
2852
}
16848 stevensc 2853
 
16825 efrain 2854
.form-range::-webkit-slider-thumb {
2855
  width: 1rem;
2856
  height: 1rem;
2857
  margin-top: -0.25rem;
2858
  background-color: #6571ff;
2859
  border: 0;
2860
  border-radius: 1rem;
2861
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2862
  appearance: none;
2863
}
16848 stevensc 2864
 
16825 efrain 2865
@media (prefers-reduced-motion: reduce) {
2866
  .form-range::-webkit-slider-thumb {
2867
    transition: none;
2868
  }
2869
}
16848 stevensc 2870
 
16825 efrain 2871
.form-range::-webkit-slider-thumb:active {
2872
  background-color: #d1d4ff;
2873
}
16848 stevensc 2874
 
16825 efrain 2875
.form-range::-webkit-slider-runnable-track {
2876
  width: 100%;
2877
  height: 0.5rem;
2878
  color: transparent;
2879
  cursor: pointer;
2880
  background-color: #dee2e6;
2881
  border-color: transparent;
2882
  border-radius: 1rem;
2883
}
16848 stevensc 2884
 
16825 efrain 2885
.form-range::-moz-range-thumb {
2886
  width: 1rem;
2887
  height: 1rem;
2888
  background-color: #6571ff;
2889
  border: 0;
2890
  border-radius: 1rem;
2891
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2892
  appearance: none;
2893
}
16848 stevensc 2894
 
16825 efrain 2895
@media (prefers-reduced-motion: reduce) {
2896
  .form-range::-moz-range-thumb {
2897
    transition: none;
2898
  }
2899
}
16848 stevensc 2900
 
16825 efrain 2901
.form-range::-moz-range-thumb:active {
2902
  background-color: #d1d4ff;
2903
}
16848 stevensc 2904
 
16825 efrain 2905
.form-range::-moz-range-track {
2906
  width: 100%;
2907
  height: 0.5rem;
2908
  color: transparent;
2909
  cursor: pointer;
2910
  background-color: #dee2e6;
2911
  border-color: transparent;
2912
  border-radius: 1rem;
2913
}
16848 stevensc 2914
 
16825 efrain 2915
.form-range:disabled {
2916
  pointer-events: none;
2917
}
16848 stevensc 2918
 
16825 efrain 2919
.form-range:disabled::-webkit-slider-thumb {
2920
  background-color: #aeb7c5;
2921
}
16848 stevensc 2922
 
16825 efrain 2923
.form-range:disabled::-moz-range-thumb {
2924
  background-color: #aeb7c5;
2925
}
2926
 
2927
.form-floating {
2928
  position: relative;
2929
}
16848 stevensc 2930
 
2931
.form-floating>.form-control,
2932
.form-floating>.typeahead.tt-input,
2933
.form-floating>.typeahead.tt-hint,
2934
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2935
.form-floating>.form-control-plaintext,
2936
.form-floating>.form-select {
16825 efrain 2937
  height: calc(3.5rem + 2px);
2938
  line-height: 1.25;
2939
}
16848 stevensc 2940
 
2941
.form-floating>label {
16825 efrain 2942
  position: absolute;
2943
  top: 0;
2944
  left: 0;
2945
  width: 100%;
2946
  height: 100%;
2947
  padding: 1rem 0.8rem;
2948
  overflow: hidden;
2949
  text-align: start;
2950
  text-overflow: ellipsis;
2951
  white-space: nowrap;
2952
  pointer-events: none;
2953
  border: 1px solid transparent;
2954
  transform-origin: 0 0;
2955
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2956
}
16848 stevensc 2957
 
16825 efrain 2958
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2959
  .form-floating>label {
16825 efrain 2960
    transition: none;
2961
  }
2962
}
16848 stevensc 2963
 
2964
.form-floating>.form-control,
2965
.form-floating>.typeahead.tt-input,
2966
.form-floating>.typeahead.tt-hint,
2967
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2968
.form-floating>.form-control-plaintext {
16825 efrain 2969
  padding: 1rem 0.8rem;
2970
}
16848 stevensc 2971
 
2972
.form-floating>.form-control::placeholder,
2973
.form-floating>.typeahead.tt-input::placeholder,
2974
.form-floating>.typeahead.tt-hint::placeholder,
2975
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2976
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2977
  color: transparent;
2978
}
16848 stevensc 2979
 
2980
.form-floating>.form-control:focus,
2981
.form-floating>.typeahead.tt-input:focus,
2982
.form-floating>.typeahead.tt-hint:focus,
2983
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2984
.form-floating>.form-control:not(:placeholder-shown),
2985
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2986
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
2987
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
2988
.form-floating>.form-control-plaintext:focus,
2989
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 2990
  padding-top: 1.625rem;
2991
  padding-bottom: 0.625rem;
2992
}
16848 stevensc 2993
 
2994
.form-floating>.form-control:-webkit-autofill,
2995
.form-floating>.typeahead.tt-input:-webkit-autofill,
2996
.form-floating>.typeahead.tt-hint:-webkit-autofill,
2997
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
2998
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 2999
  padding-top: 1.625rem;
3000
  padding-bottom: 0.625rem;
3001
}
16848 stevensc 3002
 
3003
.form-floating>.form-select {
16825 efrain 3004
  padding-top: 1.625rem;
3005
  padding-bottom: 0.625rem;
3006
}
16848 stevensc 3007
 
3008
.form-floating>.form-control:focus~label,
3009
.form-floating>.typeahead.tt-input:focus~label,
3010
.form-floating>.typeahead.tt-hint:focus~label,
3011
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3012
.form-floating>.form-control:not(:placeholder-shown)~label,
3013
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3014
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3015
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3016
.form-floating>.form-control-plaintext~label,
3017
.form-floating>.form-select~label {
16825 efrain 3018
  opacity: 0.65;
3019
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3020
}
16848 stevensc 3021
 
3022
.form-floating>.form-control:-webkit-autofill~label,
3023
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3024
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3025
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3026
  opacity: 0.65;
3027
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3028
}
16848 stevensc 3029
 
3030
.form-floating>.form-control-plaintext~label {
16825 efrain 3031
  border-width: 1px 0;
3032
}
3033
 
3034
.input-group {
3035
  position: relative;
3036
  display: flex;
3037
  flex-wrap: wrap;
3038
  align-items: stretch;
3039
  width: 100%;
3040
}
16848 stevensc 3041
 
3042
.input-group>.form-control,
3043
.input-group>.typeahead.tt-input,
3044
.input-group>.typeahead.tt-hint,
3045
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3046
.input-group>.form-select,
3047
.input-group>.form-floating {
16825 efrain 3048
  position: relative;
3049
  flex: 1 1 auto;
3050
  width: 1%;
3051
  min-width: 0;
3052
}
16848 stevensc 3053
 
3054
.input-group>.form-control:focus,
3055
.input-group>.typeahead.tt-input:focus,
3056
.input-group>.typeahead.tt-hint:focus,
3057
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3058
.input-group>.form-select:focus,
3059
.input-group>.form-floating:focus-within {
16825 efrain 3060
  z-index: 5;
3061
}
16848 stevensc 3062
 
3063
.input-group .btn,
3064
.input-group .wizard>.actions a,
3065
.wizard>.actions .input-group a,
3066
.input-group div.tox .tox-button,
3067
div.tox .input-group .tox-button,
3068
.input-group .swal2-popup .swal2-actions button,
3069
.swal2-popup .swal2-actions .input-group button,
3070
.input-group .fc .fc-button-primary,
3071
.fc .input-group .fc-button-primary {
16825 efrain 3072
  position: relative;
3073
  z-index: 2;
3074
}
16848 stevensc 3075
 
3076
.input-group .btn:focus,
3077
.input-group .wizard>.actions a:focus,
3078
.wizard>.actions .input-group a:focus,
3079
.input-group div.tox .tox-button:focus,
3080
div.tox .input-group .tox-button:focus,
3081
.input-group .swal2-popup .swal2-actions button:focus,
3082
.swal2-popup .swal2-actions .input-group button:focus,
3083
.input-group .fc .fc-button-primary:focus,
3084
.fc .input-group .fc-button-primary:focus {
16825 efrain 3085
  z-index: 5;
3086
}
3087
 
3088
.input-group-text {
3089
  display: flex;
3090
  align-items: center;
3091
  padding: 0.469rem 0.563rem;
3092
  font-size: 0.875rem;
3093
  font-weight: 400;
3094
  line-height: 1.5;
3095
  color: #000;
3096
  text-align: center;
3097
  white-space: nowrap;
3098
  background-color: #f8f9fa;
3099
  border: 1px solid #e9ecef;
3100
  border-radius: 0.25rem;
3101
}
3102
 
16848 stevensc 3103
.input-group-lg>.form-control,
3104
.input-group-lg>.typeahead.tt-input,
3105
.input-group-lg>.typeahead.tt-hint,
3106
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3107
.input-group-lg>.form-select,
3108
.input-group-lg>.input-group-text,
3109
.input-group-lg>.btn,
3110
.wizard>.actions .input-group-lg>a,
3111
div.tox .input-group-lg>.tox-button,
3112
.swal2-popup .swal2-actions .input-group-lg>button,
3113
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3114
  padding: 0.5rem 0.8rem;
3115
  font-size: 1rem;
3116
  border-radius: 0.25rem;
3117
}
3118
 
16848 stevensc 3119
.input-group-sm>.form-control,
3120
.input-group-sm>.typeahead.tt-input,
3121
.input-group-sm>.typeahead.tt-hint,
3122
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3123
.input-group-sm>.form-select,
3124
.input-group-sm>.input-group-text,
3125
.input-group-sm>.btn,
3126
.wizard>.actions .input-group-sm>a,
3127
div.tox .input-group-sm>.tox-button,
3128
.swal2-popup .swal2-actions .input-group-sm>button,
3129
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3130
  padding: 0.391rem 0.8rem;
3131
  font-size: 0.812rem;
3132
  border-radius: 0.25rem;
3133
}
3134
 
16848 stevensc 3135
.input-group-lg>.form-select,
3136
.input-group-sm>.form-select {
16825 efrain 3137
  padding-right: 3.2rem;
3138
}
3139
 
16848 stevensc 3140
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3141
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3142
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3143
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3144
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3145
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3146
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3147
  border-top-right-radius: 0;
3148
  border-bottom-right-radius: 0;
3149
}
16848 stevensc 3150
 
3151
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3152
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3153
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3154
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3155
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3156
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3157
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3158
  border-top-right-radius: 0;
3159
  border-bottom-right-radius: 0;
3160
}
16848 stevensc 3161
 
3162
.input-group> :not(:first-child):not(.dropdown-menu):not(.tt-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
16825 efrain 3163
  margin-left: -1px;
3164
  border-top-left-radius: 0;
3165
  border-bottom-left-radius: 0;
3166
}
16848 stevensc 3167
 
3168
.input-group>.form-floating:not(:first-child)>.form-control,
3169
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3170
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3171
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3172
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3173
  border-top-left-radius: 0;
3174
  border-bottom-left-radius: 0;
3175
}
3176
 
3177
.valid-feedback {
3178
  display: none;
3179
  width: 100%;
3180
  margin-top: 0.25rem;
3181
  font-size: 0.875em;
3182
  color: #05a34a;
3183
}
3184
 
3185
.valid-tooltip {
3186
  position: absolute;
3187
  top: 100%;
3188
  z-index: 5;
3189
  display: none;
3190
  max-width: 100%;
3191
  padding: 0.25rem 0.5rem;
3192
  margin-top: 0.1rem;
3193
  font-size: 0.812rem;
3194
  color: #fff;
3195
  background-color: rgba(5, 163, 74, 0.9);
3196
  border-radius: 0.25rem;
3197
}
3198
 
16848 stevensc 3199
.was-validated :valid~.valid-feedback,
3200
.was-validated :valid~.valid-tooltip,
3201
.is-valid~.valid-feedback,
3202
.is-valid~.valid-tooltip {
16825 efrain 3203
  display: block;
3204
}
3205
 
16848 stevensc 3206
.was-validated .form-control:valid,
3207
.was-validated .typeahead.tt-input:valid,
3208
.was-validated .typeahead.tt-hint:valid,
3209
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3210
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3211
.form-control.is-valid,
3212
.is-valid.typeahead.tt-input,
3213
.is-valid.typeahead.tt-hint,
3214
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3215
  border-color: #05a34a;
3216
  padding-right: calc(1.5em + 0.938rem);
3217
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2305a34a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
3218
  background-repeat: no-repeat;
3219
  background-position: right calc(0.375em + 0.2345rem) center;
3220
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3221
}
16848 stevensc 3222
 
3223
.was-validated .form-control:valid:focus,
3224
.was-validated .typeahead.tt-input:valid:focus,
3225
.was-validated .typeahead.tt-hint:valid:focus,
3226
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3227
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3228
.form-control.is-valid:focus,
3229
.is-valid.typeahead.tt-input:focus,
3230
.is-valid.typeahead.tt-hint:focus,
3231
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3232
  border-color: #05a34a;
3233
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3234
}
3235
 
16848 stevensc 3236
.was-validated textarea.form-control:valid,
3237
.was-validated textarea.typeahead.tt-input:valid,
3238
.was-validated textarea.typeahead.tt-hint:valid,
3239
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3240
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3241
textarea.form-control.is-valid,
3242
textarea.is-valid.typeahead.tt-input,
3243
textarea.is-valid.typeahead.tt-hint,
3244
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3245
  padding-right: calc(1.5em + 0.938rem);
3246
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3247
}
3248
 
16848 stevensc 3249
.was-validated .form-select:valid,
3250
.form-select.is-valid {
16825 efrain 3251
  border-color: #05a34a;
3252
}
16848 stevensc 3253
 
3254
.was-validated .form-select:valid:not([multiple]):not([size]),
3255
.was-validated .form-select:valid:not([multiple])[size="1"],
3256
.form-select.is-valid:not([multiple]):not([size]),
3257
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3258
  padding-right: 4.4rem;
3259
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212a3a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2305a34a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
3260
  background-position: right 0.8rem center, center right 2.4rem;
3261
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3262
}
16848 stevensc 3263
 
3264
.was-validated .form-select:valid:focus,
3265
.form-select.is-valid:focus {
16825 efrain 3266
  border-color: #05a34a;
3267
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3268
}
3269
 
16848 stevensc 3270
.was-validated .form-control-color:valid,
3271
.form-control-color.is-valid {
16825 efrain 3272
  width: calc(3rem + calc(1.5em + 0.938rem));
3273
}
3274
 
16848 stevensc 3275
.was-validated .form-check-input:valid,
3276
.form-check-input.is-valid {
16825 efrain 3277
  border-color: #05a34a;
3278
}
16848 stevensc 3279
 
3280
.was-validated .form-check-input:valid:checked,
3281
.form-check-input.is-valid:checked {
16825 efrain 3282
  background-color: #05a34a;
3283
}
16848 stevensc 3284
 
3285
.was-validated .form-check-input:valid:focus,
3286
.form-check-input.is-valid:focus {
16825 efrain 3287
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3288
}
16848 stevensc 3289
 
3290
.was-validated .form-check-input:valid~.form-check-label,
3291
.form-check-input.is-valid~.form-check-label {
16825 efrain 3292
  color: #05a34a;
3293
}
3294
 
16848 stevensc 3295
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3296
  margin-left: 0.5em;
3297
}
3298
 
16848 stevensc 3299
.was-validated .input-group>.form-control:not(:focus):valid,
3300
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3301
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3302
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3303
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3304
.input-group>.form-control:not(:focus).is-valid,
3305
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3306
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3307
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3308
.was-validated .input-group>.form-select:not(:focus):valid,
3309
.input-group>.form-select:not(:focus).is-valid,
3310
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3311
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3312
  z-index: 3;
3313
}
3314
 
3315
.invalid-feedback {
3316
  display: none;
3317
  width: 100%;
3318
  margin-top: 0.25rem;
3319
  font-size: 0.875em;
3320
  color: #ff3366;
3321
}
3322
 
3323
.invalid-tooltip {
3324
  position: absolute;
3325
  top: 100%;
3326
  z-index: 5;
3327
  display: none;
3328
  max-width: 100%;
3329
  padding: 0.25rem 0.5rem;
3330
  margin-top: 0.1rem;
3331
  font-size: 0.812rem;
3332
  color: #fff;
3333
  background-color: rgba(255, 51, 102, 0.9);
3334
  border-radius: 0.25rem;
3335
}
3336
 
16848 stevensc 3337
.was-validated :invalid~.invalid-feedback,
3338
.was-validated :invalid~.invalid-tooltip,
3339
.is-invalid~.invalid-feedback,
3340
.is-invalid~.invalid-tooltip {
16825 efrain 3341
  display: block;
3342
}
3343
 
16848 stevensc 3344
.was-validated .form-control:invalid,
3345
.was-validated .typeahead.tt-input:invalid,
3346
.was-validated .typeahead.tt-hint:invalid,
3347
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3348
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3349
.form-control.is-invalid,
3350
.is-invalid.typeahead.tt-input,
3351
.is-invalid.typeahead.tt-hint,
3352
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3353
  border-color: #ff3366;
3354
  padding-right: calc(1.5em + 0.938rem);
3355
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff3366'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff3366' stroke='none'/%3e%3c/svg%3e");
3356
  background-repeat: no-repeat;
3357
  background-position: right calc(0.375em + 0.2345rem) center;
3358
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3359
}
16848 stevensc 3360
 
3361
.was-validated .form-control:invalid:focus,
3362
.was-validated .typeahead.tt-input:invalid:focus,
3363
.was-validated .typeahead.tt-hint:invalid:focus,
3364
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3365
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3366
.form-control.is-invalid:focus,
3367
.is-invalid.typeahead.tt-input:focus,
3368
.is-invalid.typeahead.tt-hint:focus,
3369
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3370
  border-color: #ff3366;
3371
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3372
}
3373
 
16848 stevensc 3374
.was-validated textarea.form-control:invalid,
3375
.was-validated textarea.typeahead.tt-input:invalid,
3376
.was-validated textarea.typeahead.tt-hint:invalid,
3377
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3378
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3379
textarea.form-control.is-invalid,
3380
textarea.is-invalid.typeahead.tt-input,
3381
textarea.is-invalid.typeahead.tt-hint,
3382
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3383
  padding-right: calc(1.5em + 0.938rem);
3384
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3385
}
3386
 
16848 stevensc 3387
.was-validated .form-select:invalid,
3388
.form-select.is-invalid {
16825 efrain 3389
  border-color: #ff3366;
3390
}
16848 stevensc 3391
 
3392
.was-validated .form-select:invalid:not([multiple]):not([size]),
3393
.was-validated .form-select:invalid:not([multiple])[size="1"],
3394
.form-select.is-invalid:not([multiple]):not([size]),
3395
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3396
  padding-right: 4.4rem;
3397
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212a3a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff3366'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff3366' stroke='none'/%3e%3c/svg%3e");
3398
  background-position: right 0.8rem center, center right 2.4rem;
3399
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3400
}
16848 stevensc 3401
 
3402
.was-validated .form-select:invalid:focus,
3403
.form-select.is-invalid:focus {
16825 efrain 3404
  border-color: #ff3366;
3405
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3406
}
3407
 
16848 stevensc 3408
.was-validated .form-control-color:invalid,
3409
.form-control-color.is-invalid {
16825 efrain 3410
  width: calc(3rem + calc(1.5em + 0.938rem));
3411
}
3412
 
16848 stevensc 3413
.was-validated .form-check-input:invalid,
3414
.form-check-input.is-invalid {
16825 efrain 3415
  border-color: #ff3366;
3416
}
16848 stevensc 3417
 
3418
.was-validated .form-check-input:invalid:checked,
3419
.form-check-input.is-invalid:checked {
16825 efrain 3420
  background-color: #ff3366;
3421
}
16848 stevensc 3422
 
3423
.was-validated .form-check-input:invalid:focus,
3424
.form-check-input.is-invalid:focus {
16825 efrain 3425
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3426
}
16848 stevensc 3427
 
3428
.was-validated .form-check-input:invalid~.form-check-label,
3429
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3430
  color: #ff3366;
3431
}
3432
 
16848 stevensc 3433
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3434
  margin-left: 0.5em;
3435
}
3436
 
16848 stevensc 3437
.was-validated .input-group>.form-control:not(:focus):invalid,
3438
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3439
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3440
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3441
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3442
.input-group>.form-control:not(:focus).is-invalid,
3443
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3444
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3445
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3446
.was-validated .input-group>.form-select:not(:focus):invalid,
3447
.input-group>.form-select:not(:focus).is-invalid,
3448
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3449
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3450
  z-index: 4;
3451
}
3452
 
16848 stevensc 3453
.btn,
3454
.wizard>.actions a,
3455
.wizard>.actions a:active,
3456
.wizard>.actions a:hover,
3457
div.tox .tox-button,
3458
.swal2-popup .swal2-actions button,
3459
.fc .fc-button-primary {
16825 efrain 3460
  --bs-btn-padding-x: 0.8rem;
3461
  --bs-btn-padding-y: 0.469rem;
3462
  --bs-btn-font-family: ;
3463
  --bs-btn-font-size: 0.875rem;
3464
  --bs-btn-font-weight: 400;
3465
  --bs-btn-line-height: 1.5;
3466
  --bs-btn-color: #000;
3467
  --bs-btn-bg: transparent;
3468
  --bs-btn-border-width: 1px;
3469
  --bs-btn-border-color: transparent;
3470
  --bs-btn-border-radius: 0.25rem;
3471
  --bs-btn-hover-border-color: transparent;
3472
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3473
  --bs-btn-disabled-opacity: 0.65;
3474
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3475
  display: inline-block;
3476
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3477
  font-family: var(--bs-btn-font-family);
3478
  font-size: var(--bs-btn-font-size);
3479
  font-weight: var(--bs-btn-font-weight);
3480
  line-height: var(--bs-btn-line-height);
3481
  color: var(--bs-btn-color);
3482
  text-align: center;
3483
  vertical-align: middle;
3484
  cursor: pointer;
3485
  user-select: none;
3486
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3487
  border-radius: var(--bs-btn-border-radius);
3488
  background-color: var(--bs-btn-bg);
3489
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
3490
}
16848 stevensc 3491
 
16825 efrain 3492
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3493
 
3494
  .btn,
3495
  .wizard>.actions a,
3496
  .wizard>.actions a:active,
3497
  .wizard>.actions a:hover,
3498
  div.tox .tox-button,
3499
  .swal2-popup .swal2-actions button,
3500
  .fc .fc-button-primary {
16825 efrain 3501
    transition: none;
3502
  }
3503
}
16848 stevensc 3504
 
3505
.btn:hover,
3506
.wizard>.actions a:hover,
3507
div.tox .tox-button:hover,
3508
.swal2-popup .swal2-actions button:hover,
3509
.fc .fc-button-primary:hover {
16825 efrain 3510
  color: var(--bs-btn-hover-color);
3511
  background-color: var(--bs-btn-hover-bg);
3512
  border-color: var(--bs-btn-hover-border-color);
3513
}
16848 stevensc 3514
 
3515
.btn-check+.btn:hover,
3516
.wizard>.actions .btn-check+a:hover,
3517
div.tox .btn-check+.tox-button:hover,
3518
.swal2-popup .swal2-actions .btn-check+button:hover,
3519
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3520
  color: var(--bs-btn-color);
3521
  background-color: var(--bs-btn-bg);
3522
  border-color: var(--bs-btn-border-color);
3523
}
16848 stevensc 3524
 
3525
.btn:focus-visible,
3526
.wizard>.actions a:focus-visible,
3527
div.tox .tox-button:focus-visible,
3528
.swal2-popup .swal2-actions button:focus-visible,
3529
.fc .fc-button-primary:focus-visible {
16825 efrain 3530
  color: var(--bs-btn-hover-color);
3531
  background-color: var(--bs-btn-hover-bg);
3532
  border-color: var(--bs-btn-hover-border-color);
3533
  outline: 0;
3534
  box-shadow: var(--bs-btn-focus-box-shadow);
3535
}
16848 stevensc 3536
 
3537
.btn-check:focus-visible+.btn,
3538
.wizard>.actions .btn-check:focus-visible+a,
3539
div.tox .btn-check:focus-visible+.tox-button,
3540
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3541
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3542
  border-color: var(--bs-btn-hover-border-color);
3543
  outline: 0;
3544
  box-shadow: var(--bs-btn-focus-box-shadow);
3545
}
16848 stevensc 3546
 
3547
.btn-check:checked+.btn,
3548
.wizard>.actions .btn-check:checked+a,
3549
div.tox .btn-check:checked+.tox-button,
3550
.swal2-popup .swal2-actions .btn-check:checked+button,
3551
.fc .btn-check:checked+.fc-button-primary,
3552
:not(.btn-check)+.btn:active,
3553
.wizard>.actions :not(.btn-check)+a:active,
3554
div.tox :not(.btn-check)+.tox-button:active,
3555
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3556
.fc :not(.btn-check)+.fc-button-primary:active,
3557
.btn:first-child:active,
3558
.wizard>.actions a:first-child:active,
3559
div.tox .tox-button:first-child:active,
3560
.swal2-popup .swal2-actions button:first-child:active,
3561
.fc .fc-button-primary:first-child:active,
3562
.btn.active,
3563
.wizard>.actions a.active,
3564
div.tox .active.tox-button,
3565
.swal2-popup .swal2-actions button.active,
3566
.fc .active.fc-button-primary,
3567
.btn.show,
3568
.wizard>.actions a.show,
3569
div.tox .show.tox-button,
3570
.swal2-popup .swal2-actions button.show,
3571
.fc .show.fc-button-primary {
16825 efrain 3572
  color: var(--bs-btn-active-color);
3573
  background-color: var(--bs-btn-active-bg);
3574
  border-color: var(--bs-btn-active-border-color);
3575
}
16848 stevensc 3576
 
3577
.btn-check:checked+.btn:focus-visible,
3578
.wizard>.actions .btn-check:checked+a:focus-visible,
3579
div.tox .btn-check:checked+.tox-button:focus-visible,
3580
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3581
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3582
:not(.btn-check)+.btn:active:focus-visible,
3583
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3584
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3585
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3586
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3587
.btn:first-child:active:focus-visible,
3588
.wizard>.actions a:first-child:active:focus-visible,
3589
div.tox .tox-button:first-child:active:focus-visible,
3590
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3591
.fc .fc-button-primary:first-child:active:focus-visible,
3592
.btn.active:focus-visible,
3593
.wizard>.actions a.active:focus-visible,
3594
div.tox .active.tox-button:focus-visible,
3595
.swal2-popup .swal2-actions button.active:focus-visible,
3596
.fc .active.fc-button-primary:focus-visible,
3597
.btn.show:focus-visible,
3598
.wizard>.actions a.show:focus-visible,
3599
div.tox .show.tox-button:focus-visible,
3600
.swal2-popup .swal2-actions button.show:focus-visible,
3601
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3602
  box-shadow: var(--bs-btn-focus-box-shadow);
3603
}
16848 stevensc 3604
 
3605
.btn:disabled,
3606
.wizard>.actions a:disabled,
3607
div.tox .tox-button:disabled,
3608
.swal2-popup .swal2-actions button:disabled,
3609
.fc .fc-button-primary:disabled,
3610
.btn.disabled,
3611
.wizard>.actions a.disabled,
3612
div.tox .disabled.tox-button,
3613
.swal2-popup .swal2-actions button.disabled,
3614
.fc .disabled.fc-button-primary,
3615
fieldset:disabled .btn,
3616
fieldset:disabled .wizard>.actions a,
3617
.wizard>.actions fieldset:disabled a,
3618
fieldset:disabled div.tox .tox-button,
3619
div.tox fieldset:disabled .tox-button,
3620
fieldset:disabled .swal2-popup .swal2-actions button,
3621
.swal2-popup .swal2-actions fieldset:disabled button,
3622
fieldset:disabled .fc .fc-button-primary,
3623
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3624
  color: var(--bs-btn-disabled-color);
3625
  pointer-events: none;
3626
  background-color: var(--bs-btn-disabled-bg);
3627
  border-color: var(--bs-btn-disabled-border-color);
3628
  opacity: var(--bs-btn-disabled-opacity);
3629
}
3630
 
16848 stevensc 3631
.btn-primary,
3632
.wizard>.actions a,
3633
.wizard>.actions a:active,
3634
.wizard>.actions a:hover,
3635
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3636
.swal2-popup .swal2-actions button.swal2-confirm,
3637
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3638
.fc .fc-button-primary:not(:disabled):active {
3639
  --bs-btn-color: #fff;
3640
  --bs-btn-bg: #6571ff;
3641
  --bs-btn-border-color: #6571ff;
3642
  --bs-btn-hover-color: #fff;
3643
  --bs-btn-hover-bg: #5660d9;
3644
  --bs-btn-hover-border-color: #515acc;
3645
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3646
  --bs-btn-active-color: #fff;
3647
  --bs-btn-active-bg: #515acc;
3648
  --bs-btn-active-border-color: #4c55bf;
3649
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3650
  --bs-btn-disabled-color: #fff;
3651
  --bs-btn-disabled-bg: #6571ff;
3652
  --bs-btn-disabled-border-color: #6571ff;
3653
}
3654
 
16848 stevensc 3655
.btn-secondary,
3656
div.tox .tox-button--secondary {
16825 efrain 3657
  --bs-btn-color: #fff;
3658
  --bs-btn-bg: #7987a1;
3659
  --bs-btn-border-color: #7987a1;
3660
  --bs-btn-hover-color: #fff;
3661
  --bs-btn-hover-bg: #677389;
3662
  --bs-btn-hover-border-color: #616c81;
3663
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3664
  --bs-btn-active-color: #fff;
3665
  --bs-btn-active-bg: #616c81;
3666
  --bs-btn-active-border-color: #5b6579;
3667
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3668
  --bs-btn-disabled-color: #fff;
3669
  --bs-btn-disabled-bg: #7987a1;
3670
  --bs-btn-disabled-border-color: #7987a1;
3671
}
3672
 
3673
.btn-success {
3674
  --bs-btn-color: #fff;
3675
  --bs-btn-bg: #05a34a;
3676
  --bs-btn-border-color: #05a34a;
3677
  --bs-btn-hover-color: #fff;
3678
  --bs-btn-hover-bg: #048b3f;
3679
  --bs-btn-hover-border-color: #04823b;
3680
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3681
  --bs-btn-active-color: #fff;
3682
  --bs-btn-active-bg: #04823b;
3683
  --bs-btn-active-border-color: #047a38;
3684
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3685
  --bs-btn-disabled-color: #fff;
3686
  --bs-btn-disabled-bg: #05a34a;
3687
  --bs-btn-disabled-border-color: #05a34a;
3688
}
3689
 
3690
.btn-info {
3691
  --bs-btn-color: #000;
3692
  --bs-btn-bg: #66d1d1;
3693
  --bs-btn-border-color: #66d1d1;
3694
  --bs-btn-hover-color: #000;
3695
  --bs-btn-hover-bg: #7dd8d8;
3696
  --bs-btn-hover-border-color: #75d6d6;
3697
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3698
  --bs-btn-active-color: #000;
3699
  --bs-btn-active-bg: #85dada;
3700
  --bs-btn-active-border-color: #75d6d6;
3701
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3702
  --bs-btn-disabled-color: #000;
3703
  --bs-btn-disabled-bg: #66d1d1;
3704
  --bs-btn-disabled-border-color: #66d1d1;
3705
}
3706
 
3707
.btn-warning {
3708
  --bs-btn-color: #000;
3709
  --bs-btn-bg: #fbbc06;
3710
  --bs-btn-border-color: #fbbc06;
3711
  --bs-btn-hover-color: #000;
3712
  --bs-btn-hover-bg: #fcc62b;
3713
  --bs-btn-hover-border-color: #fbc31f;
3714
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3715
  --bs-btn-active-color: #000;
3716
  --bs-btn-active-bg: #fcc938;
3717
  --bs-btn-active-border-color: #fbc31f;
3718
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3719
  --bs-btn-disabled-color: #000;
3720
  --bs-btn-disabled-bg: #fbbc06;
3721
  --bs-btn-disabled-border-color: #fbbc06;
3722
}
3723
 
16848 stevensc 3724
.btn-danger,
3725
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3726
  --bs-btn-color: #fff;
3727
  --bs-btn-bg: #ff3366;
3728
  --bs-btn-border-color: #ff3366;
3729
  --bs-btn-hover-color: #fff;
3730
  --bs-btn-hover-bg: #d92b57;
3731
  --bs-btn-hover-border-color: #cc2952;
3732
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3733
  --bs-btn-active-color: #fff;
3734
  --bs-btn-active-bg: #cc2952;
3735
  --bs-btn-active-border-color: #bf264d;
3736
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3737
  --bs-btn-disabled-color: #fff;
3738
  --bs-btn-disabled-bg: #ff3366;
3739
  --bs-btn-disabled-border-color: #ff3366;
3740
}
3741
 
3742
.btn-light {
3743
  --bs-btn-color: #000;
3744
  --bs-btn-bg: #e9ecef;
3745
  --bs-btn-border-color: #e9ecef;
3746
  --bs-btn-hover-color: #000;
3747
  --bs-btn-hover-bg: #c6c9cb;
3748
  --bs-btn-hover-border-color: #babdbf;
3749
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3750
  --bs-btn-active-color: #000;
3751
  --bs-btn-active-bg: #babdbf;
3752
  --bs-btn-active-border-color: #afb1b3;
3753
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3754
  --bs-btn-disabled-color: #000;
3755
  --bs-btn-disabled-bg: #e9ecef;
3756
  --bs-btn-disabled-border-color: #e9ecef;
3757
}
3758
 
3759
.btn-dark {
3760
  --bs-btn-color: #fff;
3761
  --bs-btn-bg: #060c17;
3762
  --bs-btn-border-color: #060c17;
3763
  --bs-btn-hover-color: #fff;
3764
  --bs-btn-hover-bg: #2b303a;
3765
  --bs-btn-hover-border-color: #1f242e;
3766
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3767
  --bs-btn-active-color: #fff;
3768
  --bs-btn-active-bg: #383d45;
3769
  --bs-btn-active-border-color: #1f242e;
3770
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3771
  --bs-btn-disabled-color: #fff;
3772
  --bs-btn-disabled-bg: #060c17;
3773
  --bs-btn-disabled-border-color: #060c17;
3774
}
3775
 
16848 stevensc 3776
.btn-outline-primary,
3777
.fc .fc-button-primary {
16825 efrain 3778
  --bs-btn-color: #6571ff;
3779
  --bs-btn-border-color: #6571ff;
3780
  --bs-btn-hover-color: #fff;
3781
  --bs-btn-hover-bg: #6571ff;
3782
  --bs-btn-hover-border-color: #6571ff;
3783
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3784
  --bs-btn-active-color: #fff;
3785
  --bs-btn-active-bg: #6571ff;
3786
  --bs-btn-active-border-color: #6571ff;
3787
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3788
  --bs-btn-disabled-color: #6571ff;
3789
  --bs-btn-disabled-bg: transparent;
3790
  --bs-btn-disabled-border-color: #6571ff;
3791
  --bs-gradient: none;
3792
}
3793
 
3794
.btn-outline-secondary {
3795
  --bs-btn-color: #7987a1;
3796
  --bs-btn-border-color: #7987a1;
3797
  --bs-btn-hover-color: #fff;
3798
  --bs-btn-hover-bg: #7987a1;
3799
  --bs-btn-hover-border-color: #7987a1;
3800
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3801
  --bs-btn-active-color: #fff;
3802
  --bs-btn-active-bg: #7987a1;
3803
  --bs-btn-active-border-color: #7987a1;
3804
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3805
  --bs-btn-disabled-color: #7987a1;
3806
  --bs-btn-disabled-bg: transparent;
3807
  --bs-btn-disabled-border-color: #7987a1;
3808
  --bs-gradient: none;
3809
}
3810
 
3811
.btn-outline-success {
3812
  --bs-btn-color: #05a34a;
3813
  --bs-btn-border-color: #05a34a;
3814
  --bs-btn-hover-color: #fff;
3815
  --bs-btn-hover-bg: #05a34a;
3816
  --bs-btn-hover-border-color: #05a34a;
3817
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3818
  --bs-btn-active-color: #fff;
3819
  --bs-btn-active-bg: #05a34a;
3820
  --bs-btn-active-border-color: #05a34a;
3821
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3822
  --bs-btn-disabled-color: #05a34a;
3823
  --bs-btn-disabled-bg: transparent;
3824
  --bs-btn-disabled-border-color: #05a34a;
3825
  --bs-gradient: none;
3826
}
3827
 
3828
.btn-outline-info {
3829
  --bs-btn-color: #66d1d1;
3830
  --bs-btn-border-color: #66d1d1;
3831
  --bs-btn-hover-color: #000;
3832
  --bs-btn-hover-bg: #66d1d1;
3833
  --bs-btn-hover-border-color: #66d1d1;
3834
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3835
  --bs-btn-active-color: #000;
3836
  --bs-btn-active-bg: #66d1d1;
3837
  --bs-btn-active-border-color: #66d1d1;
3838
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3839
  --bs-btn-disabled-color: #66d1d1;
3840
  --bs-btn-disabled-bg: transparent;
3841
  --bs-btn-disabled-border-color: #66d1d1;
3842
  --bs-gradient: none;
3843
}
3844
 
3845
.btn-outline-warning {
3846
  --bs-btn-color: #fbbc06;
3847
  --bs-btn-border-color: #fbbc06;
3848
  --bs-btn-hover-color: #000;
3849
  --bs-btn-hover-bg: #fbbc06;
3850
  --bs-btn-hover-border-color: #fbbc06;
3851
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3852
  --bs-btn-active-color: #000;
3853
  --bs-btn-active-bg: #fbbc06;
3854
  --bs-btn-active-border-color: #fbbc06;
3855
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3856
  --bs-btn-disabled-color: #fbbc06;
3857
  --bs-btn-disabled-bg: transparent;
3858
  --bs-btn-disabled-border-color: #fbbc06;
3859
  --bs-gradient: none;
3860
}
3861
 
3862
.btn-outline-danger {
3863
  --bs-btn-color: #ff3366;
3864
  --bs-btn-border-color: #ff3366;
3865
  --bs-btn-hover-color: #fff;
3866
  --bs-btn-hover-bg: #ff3366;
3867
  --bs-btn-hover-border-color: #ff3366;
3868
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3869
  --bs-btn-active-color: #fff;
3870
  --bs-btn-active-bg: #ff3366;
3871
  --bs-btn-active-border-color: #ff3366;
3872
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3873
  --bs-btn-disabled-color: #ff3366;
3874
  --bs-btn-disabled-bg: transparent;
3875
  --bs-btn-disabled-border-color: #ff3366;
3876
  --bs-gradient: none;
3877
}
3878
 
3879
.btn-outline-light {
3880
  --bs-btn-color: #e9ecef;
3881
  --bs-btn-border-color: #e9ecef;
3882
  --bs-btn-hover-color: #000;
3883
  --bs-btn-hover-bg: #e9ecef;
3884
  --bs-btn-hover-border-color: #e9ecef;
3885
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3886
  --bs-btn-active-color: #000;
3887
  --bs-btn-active-bg: #e9ecef;
3888
  --bs-btn-active-border-color: #e9ecef;
3889
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3890
  --bs-btn-disabled-color: #e9ecef;
3891
  --bs-btn-disabled-bg: transparent;
3892
  --bs-btn-disabled-border-color: #e9ecef;
3893
  --bs-gradient: none;
3894
}
3895
 
3896
.btn-outline-dark {
3897
  --bs-btn-color: #060c17;
3898
  --bs-btn-border-color: #060c17;
3899
  --bs-btn-hover-color: #fff;
3900
  --bs-btn-hover-bg: #060c17;
3901
  --bs-btn-hover-border-color: #060c17;
3902
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3903
  --bs-btn-active-color: #fff;
3904
  --bs-btn-active-bg: #060c17;
3905
  --bs-btn-active-border-color: #060c17;
3906
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3907
  --bs-btn-disabled-color: #060c17;
3908
  --bs-btn-disabled-bg: transparent;
3909
  --bs-btn-disabled-border-color: #060c17;
3910
  --bs-gradient: none;
3911
}
3912
 
3913
.btn-link {
3914
  --bs-btn-font-weight: 400;
3915
  --bs-btn-color: var(--bs-link-color);
3916
  --bs-btn-bg: transparent;
3917
  --bs-btn-border-color: transparent;
3918
  --bs-btn-hover-color: var(--bs-link-hover-color);
3919
  --bs-btn-hover-border-color: transparent;
3920
  --bs-btn-active-color: var(--bs-link-hover-color);
3921
  --bs-btn-active-border-color: transparent;
3922
  --bs-btn-disabled-color: #7987a1;
3923
  --bs-btn-disabled-border-color: transparent;
3924
  --bs-btn-box-shadow: none;
3925
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3926
  text-decoration: none;
3927
}
16848 stevensc 3928
 
16825 efrain 3929
.btn-link:focus-visible {
3930
  color: var(--bs-btn-color);
3931
}
16848 stevensc 3932
 
16825 efrain 3933
.btn-link:hover {
3934
  color: var(--bs-btn-hover-color);
3935
}
3936
 
16848 stevensc 3937
.btn-lg,
3938
.btn-group-lg>.btn,
3939
.wizard>.actions .btn-group-lg>a,
3940
div.tox .btn-group-lg>.tox-button,
3941
.swal2-popup .swal2-actions .btn-group-lg>button,
3942
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3943
  --bs-btn-padding-y: 0.5rem;
3944
  --bs-btn-padding-x: 0.8rem;
3945
  --bs-btn-font-size: 1rem;
3946
  --bs-btn-border-radius: 0.25rem;
3947
}
3948
 
16848 stevensc 3949
.btn-sm,
3950
.fc .fc-button-primary,
3951
.btn-group-sm>.btn,
3952
.wizard>.actions .btn-group-sm>a,
3953
div.tox .btn-group-sm>.tox-button,
3954
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3955
  --bs-btn-padding-y: 0.391rem;
3956
  --bs-btn-padding-x: 0.8rem;
3957
  --bs-btn-font-size: 0.812rem;
3958
  --bs-btn-border-radius: 0.25rem;
3959
}
3960
 
3961
.fade {
3962
  transition: opacity 0.15s linear;
3963
}
16848 stevensc 3964
 
16825 efrain 3965
@media (prefers-reduced-motion: reduce) {
3966
  .fade {
3967
    transition: none;
3968
  }
3969
}
16848 stevensc 3970
 
16825 efrain 3971
.fade:not(.show) {
3972
  opacity: 0;
3973
}
3974
 
3975
.collapse:not(.show) {
3976
  display: none;
3977
}
3978
 
3979
.collapsing {
3980
  height: 0;
3981
  overflow: hidden;
3982
  transition: height 0.35s ease;
3983
}
16848 stevensc 3984
 
16825 efrain 3985
@media (prefers-reduced-motion: reduce) {
3986
  .collapsing {
3987
    transition: none;
3988
  }
3989
}
16848 stevensc 3990
 
16825 efrain 3991
.collapsing.collapse-horizontal {
3992
  width: 0;
3993
  height: auto;
3994
  transition: width 0.35s ease;
3995
}
16848 stevensc 3996
 
16825 efrain 3997
@media (prefers-reduced-motion: reduce) {
3998
  .collapsing.collapse-horizontal {
3999
    transition: none;
4000
  }
4001
}
4002
 
4003
.dropup,
4004
.dropend,
4005
.dropdown,
4006
.dropstart,
4007
.dropup-center,
4008
.dropdown-center {
4009
  position: relative;
4010
}
4011
 
4012
.dropdown-toggle {
4013
  white-space: nowrap;
4014
}
16848 stevensc 4015
 
16825 efrain 4016
.dropdown-toggle::after {
4017
  display: inline-block;
4018
  margin-left: 0.255em;
4019
  vertical-align: 0.255em;
4020
  content: "";
4021
  border-top: 0.3em solid;
4022
  border-right: 0.3em solid transparent;
4023
  border-bottom: 0;
4024
  border-left: 0.3em solid transparent;
4025
}
16848 stevensc 4026
 
16825 efrain 4027
.dropdown-toggle:empty::after {
4028
  margin-left: 0;
4029
}
4030
 
16848 stevensc 4031
.dropdown-menu,
4032
.tt-menu {
16825 efrain 4033
  --bs-dropdown-zindex: 1000;
4034
  --bs-dropdown-min-width: 10rem;
4035
  --bs-dropdown-padding-x: 0;
4036
  --bs-dropdown-padding-y: 0.5rem;
4037
  --bs-dropdown-spacer: 0.125rem;
4038
  --bs-dropdown-font-size: 0.875rem;
4039
  --bs-dropdown-color: #000;
4040
  --bs-dropdown-bg: #fff;
4041
  --bs-dropdown-border-color: #f2f4f9;
4042
  --bs-dropdown-border-radius: 0.25rem;
4043
  --bs-dropdown-border-width: 1px;
4044
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4045
  --bs-dropdown-divider-bg: #f2f4f9;
4046
  --bs-dropdown-divider-margin-y: 0.5rem;
4047
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4048
  --bs-dropdown-link-color: #060c17;
4049
  --bs-dropdown-link-hover-color: #050b15;
4050
  --bs-dropdown-link-hover-bg: #e9ecef;
4051
  --bs-dropdown-link-active-color: #fff;
4052
  --bs-dropdown-link-active-bg: #6571ff;
4053
  --bs-dropdown-link-disabled-color: #aeb7c5;
4054
  --bs-dropdown-item-padding-x: 1rem;
4055
  --bs-dropdown-item-padding-y: 0.25rem;
4056
  --bs-dropdown-header-color: #7987a1;
4057
  --bs-dropdown-header-padding-x: 1rem;
4058
  --bs-dropdown-header-padding-y: 0.5rem;
4059
  position: absolute;
4060
  z-index: var(--bs-dropdown-zindex);
4061
  display: none;
4062
  min-width: var(--bs-dropdown-min-width);
4063
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4064
  margin: 0;
4065
  font-size: var(--bs-dropdown-font-size);
4066
  color: var(--bs-dropdown-color);
4067
  text-align: left;
4068
  list-style: none;
4069
  background-color: var(--bs-dropdown-bg);
4070
  background-clip: padding-box;
4071
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4072
  border-radius: var(--bs-dropdown-border-radius);
4073
}
16848 stevensc 4074
 
4075
.dropdown-menu[data-bs-popper],
4076
[data-bs-popper].tt-menu {
16825 efrain 4077
  top: 100%;
4078
  left: 0;
4079
  margin-top: var(--bs-dropdown-spacer);
4080
}
4081
 
4082
.dropdown-menu-start {
4083
  --bs-position: start;
4084
}
16848 stevensc 4085
 
16825 efrain 4086
.dropdown-menu-start[data-bs-popper] {
4087
  right: auto;
4088
  left: 0;
4089
}
4090
 
4091
.dropdown-menu-end {
4092
  --bs-position: end;
4093
}
16848 stevensc 4094
 
16825 efrain 4095
.dropdown-menu-end[data-bs-popper] {
4096
  right: 0;
4097
  left: auto;
4098
}
4099
 
4100
@media (min-width: 576px) {
4101
  .dropdown-menu-sm-start {
4102
    --bs-position: start;
4103
  }
16848 stevensc 4104
 
16825 efrain 4105
  .dropdown-menu-sm-start[data-bs-popper] {
4106
    right: auto;
4107
    left: 0;
4108
  }
16848 stevensc 4109
 
16825 efrain 4110
  .dropdown-menu-sm-end {
4111
    --bs-position: end;
4112
  }
16848 stevensc 4113
 
16825 efrain 4114
  .dropdown-menu-sm-end[data-bs-popper] {
4115
    right: 0;
4116
    left: auto;
4117
  }
4118
}
16848 stevensc 4119
 
16825 efrain 4120
@media (min-width: 768px) {
4121
  .dropdown-menu-md-start {
4122
    --bs-position: start;
4123
  }
16848 stevensc 4124
 
16825 efrain 4125
  .dropdown-menu-md-start[data-bs-popper] {
4126
    right: auto;
4127
    left: 0;
4128
  }
16848 stevensc 4129
 
16825 efrain 4130
  .dropdown-menu-md-end {
4131
    --bs-position: end;
4132
  }
16848 stevensc 4133
 
16825 efrain 4134
  .dropdown-menu-md-end[data-bs-popper] {
4135
    right: 0;
4136
    left: auto;
4137
  }
4138
}
16848 stevensc 4139
 
16825 efrain 4140
@media (min-width: 992px) {
4141
  .dropdown-menu-lg-start {
4142
    --bs-position: start;
4143
  }
16848 stevensc 4144
 
16825 efrain 4145
  .dropdown-menu-lg-start[data-bs-popper] {
4146
    right: auto;
4147
    left: 0;
4148
  }
16848 stevensc 4149
 
16825 efrain 4150
  .dropdown-menu-lg-end {
4151
    --bs-position: end;
4152
  }
16848 stevensc 4153
 
16825 efrain 4154
  .dropdown-menu-lg-end[data-bs-popper] {
4155
    right: 0;
4156
    left: auto;
4157
  }
4158
}
16848 stevensc 4159
 
16825 efrain 4160
@media (min-width: 1200px) {
4161
  .dropdown-menu-xl-start {
4162
    --bs-position: start;
4163
  }
16848 stevensc 4164
 
16825 efrain 4165
  .dropdown-menu-xl-start[data-bs-popper] {
4166
    right: auto;
4167
    left: 0;
4168
  }
16848 stevensc 4169
 
16825 efrain 4170
  .dropdown-menu-xl-end {
4171
    --bs-position: end;
4172
  }
16848 stevensc 4173
 
16825 efrain 4174
  .dropdown-menu-xl-end[data-bs-popper] {
4175
    right: 0;
4176
    left: auto;
4177
  }
4178
}
16848 stevensc 4179
 
16825 efrain 4180
@media (min-width: 1400px) {
4181
  .dropdown-menu-xxl-start {
4182
    --bs-position: start;
4183
  }
16848 stevensc 4184
 
16825 efrain 4185
  .dropdown-menu-xxl-start[data-bs-popper] {
4186
    right: auto;
4187
    left: 0;
4188
  }
16848 stevensc 4189
 
16825 efrain 4190
  .dropdown-menu-xxl-end {
4191
    --bs-position: end;
4192
  }
16848 stevensc 4193
 
16825 efrain 4194
  .dropdown-menu-xxl-end[data-bs-popper] {
4195
    right: 0;
4196
    left: auto;
4197
  }
4198
}
16848 stevensc 4199
 
4200
.dropup .dropdown-menu[data-bs-popper],
4201
.dropup [data-bs-popper].tt-menu {
16825 efrain 4202
  top: auto;
4203
  bottom: 100%;
4204
  margin-top: 0;
4205
  margin-bottom: var(--bs-dropdown-spacer);
4206
}
16848 stevensc 4207
 
16825 efrain 4208
.dropup .dropdown-toggle::after {
4209
  display: inline-block;
4210
  margin-left: 0.255em;
4211
  vertical-align: 0.255em;
4212
  content: "";
4213
  border-top: 0;
4214
  border-right: 0.3em solid transparent;
4215
  border-bottom: 0.3em solid;
4216
  border-left: 0.3em solid transparent;
4217
}
16848 stevensc 4218
 
16825 efrain 4219
.dropup .dropdown-toggle:empty::after {
4220
  margin-left: 0;
4221
}
4222
 
16848 stevensc 4223
.dropend .dropdown-menu[data-bs-popper],
4224
.dropend [data-bs-popper].tt-menu {
16825 efrain 4225
  top: 0;
4226
  right: auto;
4227
  left: 100%;
4228
  margin-top: 0;
4229
  margin-left: var(--bs-dropdown-spacer);
4230
}
16848 stevensc 4231
 
16825 efrain 4232
.dropend .dropdown-toggle::after {
4233
  display: inline-block;
4234
  margin-left: 0.255em;
4235
  vertical-align: 0.255em;
4236
  content: "";
4237
  border-top: 0.3em solid transparent;
4238
  border-right: 0;
4239
  border-bottom: 0.3em solid transparent;
4240
  border-left: 0.3em solid;
4241
}
16848 stevensc 4242
 
16825 efrain 4243
.dropend .dropdown-toggle:empty::after {
4244
  margin-left: 0;
4245
}
16848 stevensc 4246
 
16825 efrain 4247
.dropend .dropdown-toggle::after {
4248
  vertical-align: 0;
4249
}
4250
 
16848 stevensc 4251
.dropstart .dropdown-menu[data-bs-popper],
4252
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4253
  top: 0;
4254
  right: 100%;
4255
  left: auto;
4256
  margin-top: 0;
4257
  margin-right: var(--bs-dropdown-spacer);
4258
}
16848 stevensc 4259
 
16825 efrain 4260
.dropstart .dropdown-toggle::after {
4261
  display: inline-block;
4262
  margin-left: 0.255em;
4263
  vertical-align: 0.255em;
4264
  content: "";
4265
}
16848 stevensc 4266
 
16825 efrain 4267
.dropstart .dropdown-toggle::after {
4268
  display: none;
4269
}
16848 stevensc 4270
 
16825 efrain 4271
.dropstart .dropdown-toggle::before {
4272
  display: inline-block;
4273
  margin-right: 0.255em;
4274
  vertical-align: 0.255em;
4275
  content: "";
4276
  border-top: 0.3em solid transparent;
4277
  border-right: 0.3em solid;
4278
  border-bottom: 0.3em solid transparent;
4279
}
16848 stevensc 4280
 
16825 efrain 4281
.dropstart .dropdown-toggle:empty::after {
4282
  margin-left: 0;
4283
}
16848 stevensc 4284
 
16825 efrain 4285
.dropstart .dropdown-toggle::before {
4286
  vertical-align: 0;
4287
}
4288
 
4289
.dropdown-divider {
4290
  height: 0;
4291
  margin: var(--bs-dropdown-divider-margin-y) 0;
4292
  overflow: hidden;
4293
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4294
  opacity: 1;
4295
}
4296
 
16848 stevensc 4297
.dropdown-item,
4298
.tt-menu .tt-suggestion {
16825 efrain 4299
  display: block;
4300
  width: 100%;
4301
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4302
  clear: both;
4303
  font-weight: 400;
4304
  color: var(--bs-dropdown-link-color);
4305
  text-align: inherit;
4306
  white-space: nowrap;
4307
  background-color: transparent;
4308
  border: 0;
4309
}
16848 stevensc 4310
 
4311
.dropdown-item:hover,
4312
.tt-menu .tt-suggestion:hover,
4313
.dropdown-item:focus,
4314
.tt-menu .tt-suggestion:focus {
16825 efrain 4315
  color: var(--bs-dropdown-link-hover-color);
4316
  background-color: var(--bs-dropdown-link-hover-bg);
4317
}
16848 stevensc 4318
 
4319
.dropdown-item.active,
4320
.tt-menu .active.tt-suggestion,
4321
.dropdown-item:active,
4322
.tt-menu .tt-suggestion:active {
16825 efrain 4323
  color: var(--bs-dropdown-link-active-color);
4324
  text-decoration: none;
4325
  background-color: var(--bs-dropdown-link-active-bg);
4326
}
16848 stevensc 4327
 
4328
.dropdown-item.disabled,
4329
.tt-menu .disabled.tt-suggestion,
4330
.dropdown-item:disabled,
4331
.tt-menu .tt-suggestion:disabled {
16825 efrain 4332
  color: var(--bs-dropdown-link-disabled-color);
4333
  pointer-events: none;
4334
  background-color: transparent;
4335
}
4336
 
16848 stevensc 4337
.dropdown-menu.show,
4338
.show.tt-menu {
16825 efrain 4339
  display: block;
4340
}
4341
 
4342
.dropdown-header {
4343
  display: block;
4344
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4345
  margin-bottom: 0;
4346
  font-size: 0.812rem;
4347
  color: var(--bs-dropdown-header-color);
4348
  white-space: nowrap;
4349
}
4350
 
4351
.dropdown-item-text {
4352
  display: block;
4353
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4354
  color: var(--bs-dropdown-link-color);
4355
}
4356
 
4357
.dropdown-menu-dark {
4358
  --bs-dropdown-color: #dee2e6;
4359
  --bs-dropdown-bg: #212a3a;
4360
  --bs-dropdown-border-color: #f2f4f9;
4361
  --bs-dropdown-box-shadow: ;
4362
  --bs-dropdown-link-color: #dee2e6;
4363
  --bs-dropdown-link-hover-color: #fff;
4364
  --bs-dropdown-divider-bg: #f2f4f9;
4365
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4366
  --bs-dropdown-link-active-color: #fff;
4367
  --bs-dropdown-link-active-bg: #6571ff;
4368
  --bs-dropdown-link-disabled-color: #aeb7c5;
4369
  --bs-dropdown-header-color: #aeb7c5;
4370
}
4371
 
4372
.btn-group,
4373
.btn-group-vertical {
4374
  position: relative;
4375
  display: inline-flex;
4376
  vertical-align: middle;
4377
}
16848 stevensc 4378
 
4379
.btn-group>.btn,
4380
.wizard>.actions .btn-group>a,
4381
div.tox .btn-group>.tox-button,
4382
.swal2-popup .swal2-actions .btn-group>button,
4383
.fc .btn-group>.fc-button-primary,
4384
.btn-group-vertical>.btn,
4385
.wizard>.actions .btn-group-vertical>a,
4386
div.tox .btn-group-vertical>.tox-button,
4387
.swal2-popup .swal2-actions .btn-group-vertical>button,
4388
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4389
  position: relative;
4390
  flex: 1 1 auto;
4391
}
16848 stevensc 4392
 
4393
.btn-group>.btn-check:checked+.btn,
4394
.wizard>.actions .btn-group>.btn-check:checked+a,
4395
div.tox .btn-group>.btn-check:checked+.tox-button,
4396
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4397
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4398
.btn-group>.btn-check:focus+.btn,
4399
.wizard>.actions .btn-group>.btn-check:focus+a,
4400
div.tox .btn-group>.btn-check:focus+.tox-button,
4401
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4402
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4403
.btn-group>.btn:hover,
4404
.wizard>.actions .btn-group>a:hover,
4405
div.tox .btn-group>.tox-button:hover,
4406
.swal2-popup .swal2-actions .btn-group>button:hover,
4407
.fc .btn-group>.fc-button-primary:hover,
4408
.btn-group>.btn:focus,
4409
.wizard>.actions .btn-group>a:focus,
4410
div.tox .btn-group>.tox-button:focus,
4411
.swal2-popup .swal2-actions .btn-group>button:focus,
4412
.fc .btn-group>.fc-button-primary:focus,
4413
.btn-group>.btn:active,
4414
.wizard>.actions .btn-group>a:active,
4415
div.tox .btn-group>.tox-button:active,
4416
.swal2-popup .swal2-actions .btn-group>button:active,
4417
.fc .btn-group>.fc-button-primary:active,
4418
.btn-group>.btn.active,
4419
.wizard>.actions .btn-group>a.active,
4420
div.tox .btn-group>.active.tox-button,
4421
.swal2-popup .swal2-actions .btn-group>button.active,
4422
.fc .btn-group>.active.fc-button-primary,
4423
.btn-group-vertical>.btn-check:checked+.btn,
4424
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4425
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4426
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4427
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4428
.btn-group-vertical>.btn-check:focus+.btn,
4429
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4430
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4431
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4432
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4433
.btn-group-vertical>.btn:hover,
4434
.wizard>.actions .btn-group-vertical>a:hover,
4435
div.tox .btn-group-vertical>.tox-button:hover,
4436
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4437
.fc .btn-group-vertical>.fc-button-primary:hover,
4438
.btn-group-vertical>.btn:focus,
4439
.wizard>.actions .btn-group-vertical>a:focus,
4440
div.tox .btn-group-vertical>.tox-button:focus,
4441
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4442
.fc .btn-group-vertical>.fc-button-primary:focus,
4443
.btn-group-vertical>.btn:active,
4444
.wizard>.actions .btn-group-vertical>a:active,
4445
div.tox .btn-group-vertical>.tox-button:active,
4446
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4447
.fc .btn-group-vertical>.fc-button-primary:active,
4448
.btn-group-vertical>.btn.active,
4449
.wizard>.actions .btn-group-vertical>a.active,
4450
div.tox .btn-group-vertical>.active.tox-button,
4451
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4452
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4453
  z-index: 1;
4454
}
4455
 
4456
.btn-toolbar {
4457
  display: flex;
4458
  flex-wrap: wrap;
4459
  justify-content: flex-start;
4460
}
16848 stevensc 4461
 
16825 efrain 4462
.btn-toolbar .input-group {
4463
  width: auto;
4464
}
4465
 
4466
.btn-group {
4467
  border-radius: 0.25rem;
4468
}
16848 stevensc 4469
 
4470
.btn-group> :not(.btn-check:first-child)+.btn,
4471
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4472
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4473
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4474
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4475
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4476
  margin-left: -1px;
4477
}
16848 stevensc 4478
 
4479
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4480
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4481
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4482
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4483
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4484
.btn-group>.btn.dropdown-toggle-split:first-child,
4485
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4486
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4487
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4488
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4489
.btn-group>.btn-group:not(:last-child)>.btn,
4490
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4491
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4492
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4493
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4494
  border-top-right-radius: 0;
4495
  border-bottom-right-radius: 0;
4496
}
16848 stevensc 4497
 
4498
.btn-group>.btn:nth-child(n+3),
4499
.wizard>.actions .btn-group>a:nth-child(n+3),
4500
div.tox .btn-group>.tox-button:nth-child(n+3),
4501
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4502
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4503
.btn-group> :not(.btn-check)+.btn,
4504
.wizard>.actions .btn-group> :not(.btn-check)+a,
4505
div.tox .btn-group> :not(.btn-check)+.tox-button,
4506
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4507
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4508
.btn-group>.btn-group:not(:first-child)>.btn,
4509
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4510
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4511
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4512
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4513
  border-top-left-radius: 0;
4514
  border-bottom-left-radius: 0;
4515
}
4516
 
4517
.dropdown-toggle-split {
4518
  padding-right: 0.6rem;
4519
  padding-left: 0.6rem;
4520
}
16848 stevensc 4521
 
4522
.dropdown-toggle-split::after,
4523
.dropup .dropdown-toggle-split::after,
4524
.dropend .dropdown-toggle-split::after {
16825 efrain 4525
  margin-left: 0;
4526
}
16848 stevensc 4527
 
16825 efrain 4528
.dropstart .dropdown-toggle-split::before {
4529
  margin-right: 0;
4530
}
4531
 
16848 stevensc 4532
.btn-sm+.dropdown-toggle-split,
4533
.fc .fc-button-primary+.dropdown-toggle-split,
4534
.btn-group-sm>.btn+.dropdown-toggle-split,
4535
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4536
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4537
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4538
  padding-right: 0.6rem;
4539
  padding-left: 0.6rem;
4540
}
4541
 
16848 stevensc 4542
.btn-lg+.dropdown-toggle-split,
4543
.btn-group-lg>.btn+.dropdown-toggle-split,
4544
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4545
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4546
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4547
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4548
  padding-right: 0.6rem;
4549
  padding-left: 0.6rem;
4550
}
4551
 
4552
.btn-group-vertical {
4553
  flex-direction: column;
4554
  align-items: flex-start;
4555
  justify-content: center;
4556
}
16848 stevensc 4557
 
4558
.btn-group-vertical>.btn,
4559
.wizard>.actions .btn-group-vertical>a,
4560
div.tox .btn-group-vertical>.tox-button,
4561
.swal2-popup .swal2-actions .btn-group-vertical>button,
4562
.fc .btn-group-vertical>.fc-button-primary,
4563
.btn-group-vertical>.btn-group {
16825 efrain 4564
  width: 100%;
4565
}
16848 stevensc 4566
 
4567
.btn-group-vertical>.btn:not(:first-child),
4568
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4569
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4570
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4571
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4572
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4573
  margin-top: -1px;
4574
}
16848 stevensc 4575
 
4576
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4577
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4578
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4579
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4580
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4581
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4582
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4583
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4584
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4585
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4586
  border-bottom-right-radius: 0;
4587
  border-bottom-left-radius: 0;
4588
}
16848 stevensc 4589
 
4590
.btn-group-vertical>.btn~.btn,
4591
.wizard>.actions .btn-group-vertical>a~.btn,
4592
.wizard>.actions .btn-group-vertical>.btn~a,
4593
.wizard>.actions .btn-group-vertical>a~a,
4594
div.tox .btn-group-vertical>.tox-button~.btn,
4595
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4596
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4597
div.tox .btn-group-vertical>.btn~.tox-button,
4598
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4599
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4600
div.tox .btn-group-vertical>.tox-button~.tox-button,
4601
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4602
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4603
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4604
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4605
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4606
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4607
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4608
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4609
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4610
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4611
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4612
.fc .btn-group-vertical>.fc-button-primary~.btn,
4613
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4614
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4615
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4616
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4617
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4618
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4619
.fc .btn-group-vertical>.btn~.fc-button-primary,
4620
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4621
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4622
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4623
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4624
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4625
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4626
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4627
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4628
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4629
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4630
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4631
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4632
  border-top-left-radius: 0;
4633
  border-top-right-radius: 0;
4634
}
4635
 
4636
.nav {
4637
  --bs-nav-link-padding-x: 1rem;
4638
  --bs-nav-link-padding-y: 0.5rem;
4639
  --bs-nav-link-font-weight: ;
4640
  --bs-nav-link-color: var(--bs-link-color);
4641
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4642
  --bs-nav-link-disabled-color: #7987a1;
4643
  display: flex;
4644
  flex-wrap: wrap;
4645
  padding-left: 0;
4646
  margin-bottom: 0;
4647
  list-style: none;
4648
}
4649
 
4650
.nav-link {
4651
  display: block;
4652
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4653
  font-size: var(--bs-nav-link-font-size);
4654
  font-weight: var(--bs-nav-link-font-weight);
4655
  color: var(--bs-nav-link-color);
4656
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4657
}
16848 stevensc 4658
 
16825 efrain 4659
@media (prefers-reduced-motion: reduce) {
4660
  .nav-link {
4661
    transition: none;
4662
  }
4663
}
16848 stevensc 4664
 
4665
.nav-link:hover,
4666
.nav-link:focus {
16825 efrain 4667
  color: var(--bs-nav-link-hover-color);
4668
}
16848 stevensc 4669
 
16825 efrain 4670
.nav-link.disabled {
4671
  color: var(--bs-nav-link-disabled-color);
4672
  pointer-events: none;
4673
  cursor: default;
4674
}
4675
 
4676
.nav-tabs {
4677
  --bs-nav-tabs-border-width: 1px;
4678
  --bs-nav-tabs-border-color: #dee2e6;
4679
  --bs-nav-tabs-border-radius: 0.25rem;
4680
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4681
  --bs-nav-tabs-link-active-color: #41516c;
4682
  --bs-nav-tabs-link-active-bg: #fff;
4683
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4684
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4685
}
16848 stevensc 4686
 
16825 efrain 4687
.nav-tabs .nav-link {
4688
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4689
  background: none;
4690
  border: var(--bs-nav-tabs-border-width) solid transparent;
4691
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4692
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4693
}
16848 stevensc 4694
 
4695
.nav-tabs .nav-link:hover,
4696
.nav-tabs .nav-link:focus {
16825 efrain 4697
  isolation: isolate;
4698
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4699
}
16848 stevensc 4700
 
4701
.nav-tabs .nav-link.disabled,
4702
.nav-tabs .nav-link:disabled {
16825 efrain 4703
  color: var(--bs-nav-link-disabled-color);
4704
  background-color: transparent;
4705
  border-color: transparent;
4706
}
16848 stevensc 4707
 
16825 efrain 4708
.nav-tabs .nav-link.active,
4709
.nav-tabs .nav-item.show .nav-link {
4710
  color: var(--bs-nav-tabs-link-active-color);
4711
  background-color: var(--bs-nav-tabs-link-active-bg);
4712
  border-color: var(--bs-nav-tabs-link-active-border-color);
4713
}
16848 stevensc 4714
 
4715
.nav-tabs .dropdown-menu,
4716
.nav-tabs .tt-menu {
16825 efrain 4717
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4718
  border-top-left-radius: 0;
4719
  border-top-right-radius: 0;
4720
}
4721
 
4722
.nav-pills {
4723
  --bs-nav-pills-border-radius: 0.25rem;
4724
  --bs-nav-pills-link-active-color: #fff;
4725
  --bs-nav-pills-link-active-bg: #6571ff;
4726
}
16848 stevensc 4727
 
16825 efrain 4728
.nav-pills .nav-link {
4729
  background: none;
4730
  border: 0;
4731
  border-radius: var(--bs-nav-pills-border-radius);
4732
}
16848 stevensc 4733
 
16825 efrain 4734
.nav-pills .nav-link:disabled {
4735
  color: var(--bs-nav-link-disabled-color);
4736
  background-color: transparent;
4737
  border-color: transparent;
4738
}
16848 stevensc 4739
 
16825 efrain 4740
.nav-pills .nav-link.active,
16848 stevensc 4741
.nav-pills .show>.nav-link {
16825 efrain 4742
  color: var(--bs-nav-pills-link-active-color);
4743
  background-color: var(--bs-nav-pills-link-active-bg);
4744
}
4745
 
16848 stevensc 4746
.nav-fill>.nav-link,
16825 efrain 4747
.nav-fill .nav-item {
4748
  flex: 1 1 auto;
4749
  text-align: center;
4750
}
4751
 
16848 stevensc 4752
.nav-justified>.nav-link,
16825 efrain 4753
.nav-justified .nav-item {
4754
  flex-basis: 0;
4755
  flex-grow: 1;
4756
  text-align: center;
4757
}
4758
 
4759
.nav-fill .nav-item .nav-link,
4760
.nav-justified .nav-item .nav-link {
4761
  width: 100%;
4762
}
4763
 
16848 stevensc 4764
.tab-content>.tab-pane {
16825 efrain 4765
  display: none;
4766
}
16848 stevensc 4767
 
4768
.tab-content>.active {
16825 efrain 4769
  display: block;
4770
}
4771
 
4772
.navbar {
4773
  --bs-navbar-padding-x: 0;
4774
  --bs-navbar-padding-y: 0.5rem;
4775
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4776
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4777
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4778
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4779
  --bs-navbar-brand-padding-y: 0.40625rem;
4780
  --bs-navbar-brand-margin-end: 1rem;
4781
  --bs-navbar-brand-font-size: 1rem;
4782
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4783
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4784
  --bs-navbar-nav-link-padding-x: 0.5rem;
4785
  --bs-navbar-toggler-padding-y: 0.25rem;
4786
  --bs-navbar-toggler-padding-x: 0.75rem;
4787
  --bs-navbar-toggler-font-size: 1rem;
4788
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4789
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4790
  --bs-navbar-toggler-border-radius: 0.25rem;
4791
  --bs-navbar-toggler-focus-width: 0;
4792
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4793
  position: relative;
4794
  display: flex;
4795
  flex-wrap: wrap;
4796
  align-items: center;
4797
  justify-content: space-between;
4798
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4799
}
16848 stevensc 4800
 
4801
.navbar>.container,
4802
.navbar>.container-fluid,
4803
.navbar>.container-sm,
4804
.navbar>.container-md,
4805
.navbar>.container-lg,
4806
.navbar>.container-xl,
4807
.navbar>.container-xxl {
16825 efrain 4808
  display: flex;
4809
  flex-wrap: inherit;
4810
  align-items: center;
4811
  justify-content: space-between;
4812
}
16848 stevensc 4813
 
16825 efrain 4814
.navbar-brand {
4815
  padding-top: var(--bs-navbar-brand-padding-y);
4816
  padding-bottom: var(--bs-navbar-brand-padding-y);
4817
  margin-right: var(--bs-navbar-brand-margin-end);
4818
  font-size: var(--bs-navbar-brand-font-size);
4819
  color: var(--bs-navbar-brand-color);
4820
  white-space: nowrap;
4821
}
16848 stevensc 4822
 
4823
.navbar-brand:hover,
4824
.navbar-brand:focus {
16825 efrain 4825
  color: var(--bs-navbar-brand-hover-color);
4826
}
4827
 
4828
.navbar-nav {
4829
  --bs-nav-link-padding-x: 0;
4830
  --bs-nav-link-padding-y: 0.5rem;
4831
  --bs-nav-link-font-weight: ;
4832
  --bs-nav-link-color: var(--bs-navbar-color);
4833
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4834
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4835
  display: flex;
4836
  flex-direction: column;
4837
  padding-left: 0;
4838
  margin-bottom: 0;
4839
  list-style: none;
4840
}
16848 stevensc 4841
 
4842
.navbar-nav .show>.nav-link,
16825 efrain 4843
.navbar-nav .nav-link.active {
4844
  color: var(--bs-navbar-active-color);
4845
}
16848 stevensc 4846
 
4847
.navbar-nav .dropdown-menu,
4848
.navbar-nav .tt-menu {
16825 efrain 4849
  position: static;
4850
}
4851
 
4852
.navbar-text {
4853
  padding-top: 0.5rem;
4854
  padding-bottom: 0.5rem;
4855
  color: var(--bs-navbar-color);
4856
}
16848 stevensc 4857
 
16825 efrain 4858
.navbar-text a,
4859
.navbar-text a:hover,
4860
.navbar-text a:focus {
4861
  color: var(--bs-navbar-active-color);
4862
}
4863
 
4864
.navbar-collapse {
4865
  flex-basis: 100%;
4866
  flex-grow: 1;
4867
  align-items: center;
4868
}
4869
 
4870
.navbar-toggler {
4871
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4872
  font-size: var(--bs-navbar-toggler-font-size);
4873
  line-height: 1;
4874
  color: var(--bs-navbar-color);
4875
  background-color: transparent;
4876
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4877
  border-radius: var(--bs-navbar-toggler-border-radius);
4878
  transition: var(--bs-navbar-toggler-transition);
4879
}
16848 stevensc 4880
 
16825 efrain 4881
@media (prefers-reduced-motion: reduce) {
4882
  .navbar-toggler {
4883
    transition: none;
4884
  }
4885
}
16848 stevensc 4886
 
16825 efrain 4887
.navbar-toggler:hover {
4888
  text-decoration: none;
4889
}
16848 stevensc 4890
 
16825 efrain 4891
.navbar-toggler:focus {
4892
  text-decoration: none;
4893
  outline: 0;
4894
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4895
}
4896
 
4897
.navbar-toggler-icon {
4898
  display: inline-block;
4899
  width: 1.5em;
4900
  height: 1.5em;
4901
  vertical-align: middle;
4902
  background-image: var(--bs-navbar-toggler-icon-bg);
4903
  background-repeat: no-repeat;
4904
  background-position: center;
4905
  background-size: 100%;
4906
}
4907
 
4908
.navbar-nav-scroll {
4909
  max-height: var(--bs-scroll-height, 75vh);
4910
  overflow-y: auto;
4911
}
4912
 
4913
@media (min-width: 576px) {
4914
  .navbar-expand-sm {
4915
    flex-wrap: nowrap;
4916
    justify-content: flex-start;
4917
  }
16848 stevensc 4918
 
16825 efrain 4919
  .navbar-expand-sm .navbar-nav {
4920
    flex-direction: row;
4921
  }
16848 stevensc 4922
 
4923
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4924
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4925
    position: absolute;
4926
  }
16848 stevensc 4927
 
16825 efrain 4928
  .navbar-expand-sm .navbar-nav .nav-link {
4929
    padding-right: var(--bs-navbar-nav-link-padding-x);
4930
    padding-left: var(--bs-navbar-nav-link-padding-x);
4931
  }
16848 stevensc 4932
 
16825 efrain 4933
  .navbar-expand-sm .navbar-nav-scroll {
4934
    overflow: visible;
4935
  }
16848 stevensc 4936
 
16825 efrain 4937
  .navbar-expand-sm .navbar-collapse {
4938
    display: flex !important;
4939
    flex-basis: auto;
4940
  }
16848 stevensc 4941
 
16825 efrain 4942
  .navbar-expand-sm .navbar-toggler {
4943
    display: none;
4944
  }
16848 stevensc 4945
 
16825 efrain 4946
  .navbar-expand-sm .offcanvas {
4947
    position: static;
4948
    z-index: auto;
4949
    flex-grow: 1;
4950
    width: auto !important;
4951
    height: auto !important;
4952
    visibility: visible !important;
4953
    background-color: transparent !important;
4954
    border: 0 !important;
4955
    transform: none !important;
4956
    transition: none;
4957
  }
16848 stevensc 4958
 
16825 efrain 4959
  .navbar-expand-sm .offcanvas .offcanvas-header {
4960
    display: none;
4961
  }
16848 stevensc 4962
 
16825 efrain 4963
  .navbar-expand-sm .offcanvas .offcanvas-body {
4964
    display: flex;
4965
    flex-grow: 0;
4966
    padding: 0;
4967
    overflow-y: visible;
4968
  }
4969
}
16848 stevensc 4970
 
16825 efrain 4971
@media (min-width: 768px) {
4972
  .navbar-expand-md {
4973
    flex-wrap: nowrap;
4974
    justify-content: flex-start;
4975
  }
16848 stevensc 4976
 
16825 efrain 4977
  .navbar-expand-md .navbar-nav {
4978
    flex-direction: row;
4979
  }
16848 stevensc 4980
 
4981
  .navbar-expand-md .navbar-nav .dropdown-menu,
4982
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4983
    position: absolute;
4984
  }
16848 stevensc 4985
 
16825 efrain 4986
  .navbar-expand-md .navbar-nav .nav-link {
4987
    padding-right: var(--bs-navbar-nav-link-padding-x);
4988
    padding-left: var(--bs-navbar-nav-link-padding-x);
4989
  }
16848 stevensc 4990
 
16825 efrain 4991
  .navbar-expand-md .navbar-nav-scroll {
4992
    overflow: visible;
4993
  }
16848 stevensc 4994
 
16825 efrain 4995
  .navbar-expand-md .navbar-collapse {
4996
    display: flex !important;
4997
    flex-basis: auto;
4998
  }
16848 stevensc 4999
 
16825 efrain 5000
  .navbar-expand-md .navbar-toggler {
5001
    display: none;
5002
  }
16848 stevensc 5003
 
16825 efrain 5004
  .navbar-expand-md .offcanvas {
5005
    position: static;
5006
    z-index: auto;
5007
    flex-grow: 1;
5008
    width: auto !important;
5009
    height: auto !important;
5010
    visibility: visible !important;
5011
    background-color: transparent !important;
5012
    border: 0 !important;
5013
    transform: none !important;
5014
    transition: none;
5015
  }
16848 stevensc 5016
 
16825 efrain 5017
  .navbar-expand-md .offcanvas .offcanvas-header {
5018
    display: none;
5019
  }
16848 stevensc 5020
 
16825 efrain 5021
  .navbar-expand-md .offcanvas .offcanvas-body {
5022
    display: flex;
5023
    flex-grow: 0;
5024
    padding: 0;
5025
    overflow-y: visible;
5026
  }
5027
}
16848 stevensc 5028
 
16825 efrain 5029
@media (min-width: 992px) {
5030
  .navbar-expand-lg {
5031
    flex-wrap: nowrap;
5032
    justify-content: flex-start;
5033
  }
16848 stevensc 5034
 
16825 efrain 5035
  .navbar-expand-lg .navbar-nav {
5036
    flex-direction: row;
5037
  }
16848 stevensc 5038
 
5039
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5040
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5041
    position: absolute;
5042
  }
16848 stevensc 5043
 
16825 efrain 5044
  .navbar-expand-lg .navbar-nav .nav-link {
5045
    padding-right: var(--bs-navbar-nav-link-padding-x);
5046
    padding-left: var(--bs-navbar-nav-link-padding-x);
5047
  }
16848 stevensc 5048
 
16825 efrain 5049
  .navbar-expand-lg .navbar-nav-scroll {
5050
    overflow: visible;
5051
  }
16848 stevensc 5052
 
16825 efrain 5053
  .navbar-expand-lg .navbar-collapse {
5054
    display: flex !important;
5055
    flex-basis: auto;
5056
  }
16848 stevensc 5057
 
16825 efrain 5058
  .navbar-expand-lg .navbar-toggler {
5059
    display: none;
5060
  }
16848 stevensc 5061
 
16825 efrain 5062
  .navbar-expand-lg .offcanvas {
5063
    position: static;
5064
    z-index: auto;
5065
    flex-grow: 1;
5066
    width: auto !important;
5067
    height: auto !important;
5068
    visibility: visible !important;
5069
    background-color: transparent !important;
5070
    border: 0 !important;
5071
    transform: none !important;
5072
    transition: none;
5073
  }
16848 stevensc 5074
 
16825 efrain 5075
  .navbar-expand-lg .offcanvas .offcanvas-header {
5076
    display: none;
5077
  }
16848 stevensc 5078
 
16825 efrain 5079
  .navbar-expand-lg .offcanvas .offcanvas-body {
5080
    display: flex;
5081
    flex-grow: 0;
5082
    padding: 0;
5083
    overflow-y: visible;
5084
  }
5085
}
16848 stevensc 5086
 
16825 efrain 5087
@media (min-width: 1200px) {
5088
  .navbar-expand-xl {
5089
    flex-wrap: nowrap;
5090
    justify-content: flex-start;
5091
  }
16848 stevensc 5092
 
16825 efrain 5093
  .navbar-expand-xl .navbar-nav {
5094
    flex-direction: row;
5095
  }
16848 stevensc 5096
 
5097
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5098
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5099
    position: absolute;
5100
  }
16848 stevensc 5101
 
16825 efrain 5102
  .navbar-expand-xl .navbar-nav .nav-link {
5103
    padding-right: var(--bs-navbar-nav-link-padding-x);
5104
    padding-left: var(--bs-navbar-nav-link-padding-x);
5105
  }
16848 stevensc 5106
 
16825 efrain 5107
  .navbar-expand-xl .navbar-nav-scroll {
5108
    overflow: visible;
5109
  }
16848 stevensc 5110
 
16825 efrain 5111
  .navbar-expand-xl .navbar-collapse {
5112
    display: flex !important;
5113
    flex-basis: auto;
5114
  }
16848 stevensc 5115
 
16825 efrain 5116
  .navbar-expand-xl .navbar-toggler {
5117
    display: none;
5118
  }
16848 stevensc 5119
 
16825 efrain 5120
  .navbar-expand-xl .offcanvas {
5121
    position: static;
5122
    z-index: auto;
5123
    flex-grow: 1;
5124
    width: auto !important;
5125
    height: auto !important;
5126
    visibility: visible !important;
5127
    background-color: transparent !important;
5128
    border: 0 !important;
5129
    transform: none !important;
5130
    transition: none;
5131
  }
16848 stevensc 5132
 
16825 efrain 5133
  .navbar-expand-xl .offcanvas .offcanvas-header {
5134
    display: none;
5135
  }
16848 stevensc 5136
 
16825 efrain 5137
  .navbar-expand-xl .offcanvas .offcanvas-body {
5138
    display: flex;
5139
    flex-grow: 0;
5140
    padding: 0;
5141
    overflow-y: visible;
5142
  }
5143
}
16848 stevensc 5144
 
16825 efrain 5145
@media (min-width: 1400px) {
5146
  .navbar-expand-xxl {
5147
    flex-wrap: nowrap;
5148
    justify-content: flex-start;
5149
  }
16848 stevensc 5150
 
16825 efrain 5151
  .navbar-expand-xxl .navbar-nav {
5152
    flex-direction: row;
5153
  }
16848 stevensc 5154
 
5155
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5156
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5157
    position: absolute;
5158
  }
16848 stevensc 5159
 
16825 efrain 5160
  .navbar-expand-xxl .navbar-nav .nav-link {
5161
    padding-right: var(--bs-navbar-nav-link-padding-x);
5162
    padding-left: var(--bs-navbar-nav-link-padding-x);
5163
  }
16848 stevensc 5164
 
16825 efrain 5165
  .navbar-expand-xxl .navbar-nav-scroll {
5166
    overflow: visible;
5167
  }
16848 stevensc 5168
 
16825 efrain 5169
  .navbar-expand-xxl .navbar-collapse {
5170
    display: flex !important;
5171
    flex-basis: auto;
5172
  }
16848 stevensc 5173
 
16825 efrain 5174
  .navbar-expand-xxl .navbar-toggler {
5175
    display: none;
5176
  }
16848 stevensc 5177
 
16825 efrain 5178
  .navbar-expand-xxl .offcanvas {
5179
    position: static;
5180
    z-index: auto;
5181
    flex-grow: 1;
5182
    width: auto !important;
5183
    height: auto !important;
5184
    visibility: visible !important;
5185
    background-color: transparent !important;
5186
    border: 0 !important;
5187
    transform: none !important;
5188
    transition: none;
5189
  }
16848 stevensc 5190
 
16825 efrain 5191
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5192
    display: none;
5193
  }
16848 stevensc 5194
 
16825 efrain 5195
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5196
    display: flex;
5197
    flex-grow: 0;
5198
    padding: 0;
5199
    overflow-y: visible;
5200
  }
5201
}
16848 stevensc 5202
 
16825 efrain 5203
.navbar-expand {
5204
  flex-wrap: nowrap;
5205
  justify-content: flex-start;
5206
}
16848 stevensc 5207
 
16825 efrain 5208
.navbar-expand .navbar-nav {
5209
  flex-direction: row;
5210
}
16848 stevensc 5211
 
5212
.navbar-expand .navbar-nav .dropdown-menu,
5213
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5214
  position: absolute;
5215
}
16848 stevensc 5216
 
16825 efrain 5217
.navbar-expand .navbar-nav .nav-link {
5218
  padding-right: var(--bs-navbar-nav-link-padding-x);
5219
  padding-left: var(--bs-navbar-nav-link-padding-x);
5220
}
16848 stevensc 5221
 
16825 efrain 5222
.navbar-expand .navbar-nav-scroll {
5223
  overflow: visible;
5224
}
16848 stevensc 5225
 
16825 efrain 5226
.navbar-expand .navbar-collapse {
5227
  display: flex !important;
5228
  flex-basis: auto;
5229
}
16848 stevensc 5230
 
16825 efrain 5231
.navbar-expand .navbar-toggler {
5232
  display: none;
5233
}
16848 stevensc 5234
 
16825 efrain 5235
.navbar-expand .offcanvas {
5236
  position: static;
5237
  z-index: auto;
5238
  flex-grow: 1;
5239
  width: auto !important;
5240
  height: auto !important;
5241
  visibility: visible !important;
5242
  background-color: transparent !important;
5243
  border: 0 !important;
5244
  transform: none !important;
5245
  transition: none;
5246
}
16848 stevensc 5247
 
16825 efrain 5248
.navbar-expand .offcanvas .offcanvas-header {
5249
  display: none;
5250
}
16848 stevensc 5251
 
16825 efrain 5252
.navbar-expand .offcanvas .offcanvas-body {
5253
  display: flex;
5254
  flex-grow: 0;
5255
  padding: 0;
5256
  overflow-y: visible;
5257
}
5258
 
5259
.navbar-dark {
5260
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5261
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5262
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5263
  --bs-navbar-active-color: #fff;
5264
  --bs-navbar-brand-color: #fff;
5265
  --bs-navbar-brand-hover-color: #fff;
5266
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5267
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
5268
}
5269
 
5270
.card {
5271
  --bs-card-spacer-y: 1.5rem;
5272
  --bs-card-spacer-x: 1.5rem;
5273
  --bs-card-title-spacer-y: 0.875rem;
5274
  --bs-card-border-width: 1px;
5275
  --bs-card-border-color: #f2f4f9;
5276
  --bs-card-border-radius: 0.25rem;
5277
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5278
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5279
  --bs-card-cap-padding-y: 0.875rem;
5280
  --bs-card-cap-padding-x: 1.5rem;
5281
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5282
  --bs-card-cap-color: ;
5283
  --bs-card-height: ;
5284
  --bs-card-color: ;
5285
  --bs-card-bg: #fff;
5286
  --bs-card-img-overlay-padding: 1rem;
5287
  --bs-card-group-margin: 0.75rem;
5288
  position: relative;
5289
  display: flex;
5290
  flex-direction: column;
5291
  min-width: 0;
5292
  height: var(--bs-card-height);
5293
  word-wrap: break-word;
5294
  background-color: var(--bs-card-bg);
5295
  background-clip: border-box;
5296
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5297
  border-radius: var(--bs-card-border-radius);
5298
}
16848 stevensc 5299
 
5300
.card>hr {
16825 efrain 5301
  margin-right: 0;
5302
  margin-left: 0;
5303
}
16848 stevensc 5304
 
5305
.card>.list-group {
16825 efrain 5306
  border-top: inherit;
5307
  border-bottom: inherit;
5308
}
16848 stevensc 5309
 
5310
.card>.list-group:first-child {
16825 efrain 5311
  border-top-width: 0;
5312
  border-top-left-radius: var(--bs-card-inner-border-radius);
5313
  border-top-right-radius: var(--bs-card-inner-border-radius);
5314
}
16848 stevensc 5315
 
5316
.card>.list-group:last-child {
16825 efrain 5317
  border-bottom-width: 0;
5318
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5319
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5320
}
16848 stevensc 5321
 
5322
.card>.card-header+.list-group,
5323
.card>.list-group+.card-footer {
16825 efrain 5324
  border-top: 0;
5325
}
5326
 
5327
.card-body {
5328
  flex: 1 1 auto;
5329
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5330
  color: var(--bs-card-color);
5331
}
5332
 
5333
.card-title {
5334
  margin-bottom: var(--bs-card-title-spacer-y);
5335
}
5336
 
5337
.card-subtitle {
5338
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5339
  margin-bottom: 0;
5340
}
5341
 
5342
.card-text:last-child {
5343
  margin-bottom: 0;
5344
}
5345
 
16848 stevensc 5346
.card-link+.card-link {
16825 efrain 5347
  margin-left: var(--bs-card-spacer-x);
5348
}
5349
 
5350
.card-header {
5351
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5352
  margin-bottom: 0;
5353
  color: var(--bs-card-cap-color);
5354
  background-color: var(--bs-card-cap-bg);
5355
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5356
}
16848 stevensc 5357
 
16825 efrain 5358
.card-header:first-child {
5359
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5360
}
5361
 
5362
.card-footer {
5363
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5364
  color: var(--bs-card-cap-color);
5365
  background-color: var(--bs-card-cap-bg);
5366
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5367
}
16848 stevensc 5368
 
16825 efrain 5369
.card-footer:last-child {
5370
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5371
}
5372
 
5373
.card-header-tabs {
5374
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5375
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5376
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5377
  border-bottom: 0;
5378
}
16848 stevensc 5379
 
16825 efrain 5380
.card-header-tabs .nav-link.active {
5381
  background-color: var(--bs-card-bg);
5382
  border-bottom-color: var(--bs-card-bg);
5383
}
5384
 
5385
.card-header-pills {
5386
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5387
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5388
}
5389
 
5390
.card-img-overlay {
5391
  position: absolute;
5392
  top: 0;
5393
  right: 0;
5394
  bottom: 0;
5395
  left: 0;
5396
  padding: var(--bs-card-img-overlay-padding);
5397
  border-radius: var(--bs-card-inner-border-radius);
5398
}
5399
 
5400
.card-img,
5401
.card-img-top,
5402
.card-img-bottom {
5403
  width: 100%;
5404
}
5405
 
5406
.card-img,
5407
.card-img-top {
5408
  border-top-left-radius: var(--bs-card-inner-border-radius);
5409
  border-top-right-radius: var(--bs-card-inner-border-radius);
5410
}
5411
 
5412
.card-img,
5413
.card-img-bottom {
5414
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5415
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5416
}
5417
 
16848 stevensc 5418
.card-group>.card {
16825 efrain 5419
  margin-bottom: var(--bs-card-group-margin);
5420
}
16848 stevensc 5421
 
16825 efrain 5422
@media (min-width: 576px) {
5423
  .card-group {
5424
    display: flex;
5425
    flex-flow: row wrap;
5426
  }
16848 stevensc 5427
 
5428
  .card-group>.card {
16825 efrain 5429
    flex: 1 0 0%;
5430
    margin-bottom: 0;
5431
  }
16848 stevensc 5432
 
5433
  .card-group>.card+.card {
16825 efrain 5434
    margin-left: 0;
5435
    border-left: 0;
5436
  }
16848 stevensc 5437
 
5438
  .card-group>.card:not(:last-child) {
16825 efrain 5439
    border-top-right-radius: 0;
5440
    border-bottom-right-radius: 0;
5441
  }
16848 stevensc 5442
 
5443
  .card-group>.card:not(:last-child) .card-img-top,
5444
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5445
    border-top-right-radius: 0;
5446
  }
16848 stevensc 5447
 
5448
  .card-group>.card:not(:last-child) .card-img-bottom,
5449
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5450
    border-bottom-right-radius: 0;
5451
  }
16848 stevensc 5452
 
5453
  .card-group>.card:not(:first-child) {
16825 efrain 5454
    border-top-left-radius: 0;
5455
    border-bottom-left-radius: 0;
5456
  }
16848 stevensc 5457
 
5458
  .card-group>.card:not(:first-child) .card-img-top,
5459
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5460
    border-top-left-radius: 0;
5461
  }
16848 stevensc 5462
 
5463
  .card-group>.card:not(:first-child) .card-img-bottom,
5464
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5465
    border-bottom-left-radius: 0;
5466
  }
5467
}
5468
 
5469
.accordion {
5470
  --bs-accordion-color: #000;
5471
  --bs-accordion-bg: #fff;
5472
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
5473
  --bs-accordion-border-color: #e9ecef;
5474
  --bs-accordion-border-width: 1px;
5475
  --bs-accordion-border-radius: 0.25rem;
5476
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5477
  --bs-accordion-btn-padding-x: 1.25rem;
5478
  --bs-accordion-btn-padding-y: 1rem;
5479
  --bs-accordion-btn-color: #000;
5480
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5481
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
5482
  --bs-accordion-btn-icon-width: 0.875rem;
5483
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5484
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5485
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b66e6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
5486
  --bs-accordion-btn-focus-border-color: #cbd1db;
5487
  --bs-accordion-btn-focus-box-shadow: none;
5488
  --bs-accordion-body-padding-x: 1.25rem;
5489
  --bs-accordion-body-padding-y: 1rem;
5490
  --bs-accordion-active-color: #5b66e6;
5491
  --bs-accordion-active-bg: #f0f1ff;
5492
}
5493
 
5494
.accordion-button {
5495
  position: relative;
5496
  display: flex;
5497
  align-items: center;
5498
  width: 100%;
5499
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5500
  font-size: 0.875rem;
5501
  color: var(--bs-accordion-btn-color);
5502
  text-align: left;
5503
  background-color: var(--bs-accordion-btn-bg);
5504
  border: 0;
5505
  border-radius: 0;
5506
  overflow-anchor: none;
5507
  transition: var(--bs-accordion-transition);
5508
}
16848 stevensc 5509
 
16825 efrain 5510
@media (prefers-reduced-motion: reduce) {
5511
  .accordion-button {
5512
    transition: none;
5513
  }
5514
}
16848 stevensc 5515
 
16825 efrain 5516
.accordion-button:not(.collapsed) {
5517
  color: var(--bs-accordion-active-color);
5518
  background-color: var(--bs-accordion-active-bg);
5519
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5520
}
16848 stevensc 5521
 
16825 efrain 5522
.accordion-button:not(.collapsed)::after {
5523
  background-image: var(--bs-accordion-btn-active-icon);
5524
  transform: var(--bs-accordion-btn-icon-transform);
5525
}
16848 stevensc 5526
 
16825 efrain 5527
.accordion-button::after {
5528
  flex-shrink: 0;
5529
  width: var(--bs-accordion-btn-icon-width);
5530
  height: var(--bs-accordion-btn-icon-width);
5531
  margin-left: auto;
5532
  content: "";
5533
  background-image: var(--bs-accordion-btn-icon);
5534
  background-repeat: no-repeat;
5535
  background-size: var(--bs-accordion-btn-icon-width);
5536
  transition: var(--bs-accordion-btn-icon-transition);
5537
}
16848 stevensc 5538
 
16825 efrain 5539
@media (prefers-reduced-motion: reduce) {
5540
  .accordion-button::after {
5541
    transition: none;
5542
  }
5543
}
16848 stevensc 5544
 
16825 efrain 5545
.accordion-button:hover {
5546
  z-index: 2;
5547
}
16848 stevensc 5548
 
16825 efrain 5549
.accordion-button:focus {
5550
  z-index: 3;
5551
  border-color: var(--bs-accordion-btn-focus-border-color);
5552
  outline: 0;
5553
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5554
}
5555
 
5556
.accordion-header {
5557
  margin-bottom: 0;
5558
}
5559
 
5560
.accordion-item {
5561
  color: var(--bs-accordion-color);
5562
  background-color: var(--bs-accordion-bg);
5563
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5564
}
16848 stevensc 5565
 
16825 efrain 5566
.accordion-item:first-of-type {
5567
  border-top-left-radius: var(--bs-accordion-border-radius);
5568
  border-top-right-radius: var(--bs-accordion-border-radius);
5569
}
16848 stevensc 5570
 
16825 efrain 5571
.accordion-item:first-of-type .accordion-button {
5572
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5573
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5574
}
16848 stevensc 5575
 
16825 efrain 5576
.accordion-item:not(:first-of-type) {
5577
  border-top: 0;
5578
}
16848 stevensc 5579
 
16825 efrain 5580
.accordion-item:last-of-type {
5581
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5582
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5583
}
16848 stevensc 5584
 
16825 efrain 5585
.accordion-item:last-of-type .accordion-button.collapsed {
5586
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5587
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5588
}
16848 stevensc 5589
 
16825 efrain 5590
.accordion-item:last-of-type .accordion-collapse {
5591
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5592
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5593
}
5594
 
5595
.accordion-body {
5596
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5597
}
5598
 
5599
.accordion-flush .accordion-collapse {
5600
  border-width: 0;
5601
}
16848 stevensc 5602
 
16825 efrain 5603
.accordion-flush .accordion-item {
5604
  border-right: 0;
5605
  border-left: 0;
5606
  border-radius: 0;
5607
}
16848 stevensc 5608
 
16825 efrain 5609
.accordion-flush .accordion-item:first-child {
5610
  border-top: 0;
5611
}
16848 stevensc 5612
 
16825 efrain 5613
.accordion-flush .accordion-item:last-child {
5614
  border-bottom: 0;
5615
}
16848 stevensc 5616
 
5617
.accordion-flush .accordion-item .accordion-button,
5618
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5619
  border-radius: 0;
5620
}
5621
 
5622
.breadcrumb {
5623
  --bs-breadcrumb-padding-x: 0;
5624
  --bs-breadcrumb-padding-y: 0;
5625
  --bs-breadcrumb-margin-bottom: 1rem;
5626
  --bs-breadcrumb-bg: ;
5627
  --bs-breadcrumb-border-radius: ;
5628
  --bs-breadcrumb-divider-color: #7987a1;
5629
  --bs-breadcrumb-item-padding-x: 0.5rem;
5630
  --bs-breadcrumb-item-active-color: #7987a1;
5631
  display: flex;
5632
  flex-wrap: wrap;
5633
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5634
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5635
  font-size: var(--bs-breadcrumb-font-size);
5636
  list-style: none;
5637
  background-color: var(--bs-breadcrumb-bg);
5638
  border-radius: var(--bs-breadcrumb-border-radius);
5639
}
5640
 
16848 stevensc 5641
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5642
  padding-left: var(--bs-breadcrumb-item-padding-x);
5643
}
16848 stevensc 5644
 
5645
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5646
  float: left;
5647
  padding-right: var(--bs-breadcrumb-item-padding-x);
5648
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5649
  content: var(--bs-breadcrumb-divider, "/")
5650
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5651
  ;
16825 efrain 5652
}
16848 stevensc 5653
 
16825 efrain 5654
.breadcrumb-item.active {
5655
  color: var(--bs-breadcrumb-item-active-color);
5656
}
5657
 
5658
.pagination {
5659
  --bs-pagination-padding-x: 1rem;
5660
  --bs-pagination-padding-y: 0.469rem;
5661
  --bs-pagination-font-size: 0.875rem;
5662
  --bs-pagination-color: #6571ff;
5663
  --bs-pagination-bg: #fff;
5664
  --bs-pagination-border-width: 1px;
5665
  --bs-pagination-border-color: #dee2e6;
5666
  --bs-pagination-border-radius: 0.25rem;
5667
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5668
  --bs-pagination-hover-bg: #e9ecef;
5669
  --bs-pagination-hover-border-color: #dee2e6;
5670
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5671
  --bs-pagination-focus-bg: #e9ecef;
5672
  --bs-pagination-focus-box-shadow: none;
5673
  --bs-pagination-active-color: #fff;
5674
  --bs-pagination-active-bg: #6571ff;
5675
  --bs-pagination-active-border-color: #6571ff;
5676
  --bs-pagination-disabled-color: #7987a1;
5677
  --bs-pagination-disabled-bg: #fff;
5678
  --bs-pagination-disabled-border-color: #dee2e6;
5679
  display: flex;
5680
  padding-left: 0;
5681
  list-style: none;
5682
}
5683
 
5684
.page-link {
5685
  position: relative;
5686
  display: block;
5687
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5688
  font-size: var(--bs-pagination-font-size);
5689
  color: var(--bs-pagination-color);
5690
  background-color: var(--bs-pagination-bg);
5691
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5692
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
5693
}
16848 stevensc 5694
 
16825 efrain 5695
@media (prefers-reduced-motion: reduce) {
5696
  .page-link {
5697
    transition: none;
5698
  }
5699
}
16848 stevensc 5700
 
16825 efrain 5701
.page-link:hover {
5702
  z-index: 2;
5703
  color: var(--bs-pagination-hover-color);
5704
  background-color: var(--bs-pagination-hover-bg);
5705
  border-color: var(--bs-pagination-hover-border-color);
5706
}
16848 stevensc 5707
 
16825 efrain 5708
.page-link:focus {
5709
  z-index: 3;
5710
  color: var(--bs-pagination-focus-color);
5711
  background-color: var(--bs-pagination-focus-bg);
5712
  outline: 0;
5713
  box-shadow: var(--bs-pagination-focus-box-shadow);
5714
}
16848 stevensc 5715
 
5716
.page-link.active,
5717
.active>.page-link {
16825 efrain 5718
  z-index: 3;
5719
  color: var(--bs-pagination-active-color);
5720
  background-color: var(--bs-pagination-active-bg);
5721
  border-color: var(--bs-pagination-active-border-color);
5722
}
16848 stevensc 5723
 
5724
.page-link.disabled,
5725
.disabled>.page-link {
16825 efrain 5726
  color: var(--bs-pagination-disabled-color);
5727
  pointer-events: none;
5728
  background-color: var(--bs-pagination-disabled-bg);
5729
  border-color: var(--bs-pagination-disabled-border-color);
5730
}
5731
 
5732
.page-item:not(:first-child) .page-link {
5733
  margin-left: -1px;
5734
}
16848 stevensc 5735
 
16825 efrain 5736
.page-item:first-child .page-link {
5737
  border-top-left-radius: var(--bs-pagination-border-radius);
5738
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5739
}
16848 stevensc 5740
 
16825 efrain 5741
.page-item:last-child .page-link {
5742
  border-top-right-radius: var(--bs-pagination-border-radius);
5743
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5744
}
5745
 
5746
.pagination-lg {
5747
  --bs-pagination-padding-x: 1.1rem;
5748
  --bs-pagination-padding-y: 0.5rem;
5749
  --bs-pagination-font-size: 1rem;
5750
  --bs-pagination-border-radius: 0.5rem;
5751
}
5752
 
5753
.pagination-sm {
5754
  --bs-pagination-padding-x: 0.75rem;
5755
  --bs-pagination-padding-y: 0.391rem;
5756
  --bs-pagination-font-size: 0.812rem;
5757
  --bs-pagination-border-radius: 0.25rem;
5758
}
5759
 
5760
.badge {
5761
  --bs-badge-padding-x: 0.65em;
5762
  --bs-badge-padding-y: 0.35em;
5763
  --bs-badge-font-size: 0.8em;
5764
  --bs-badge-font-weight: 500;
5765
  --bs-badge-color: #fff;
5766
  --bs-badge-border-radius: 0.25rem;
5767
  display: inline-block;
5768
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5769
  font-size: var(--bs-badge-font-size);
5770
  font-weight: var(--bs-badge-font-weight);
5771
  line-height: 1;
5772
  color: var(--bs-badge-color);
5773
  text-align: center;
5774
  white-space: nowrap;
5775
  vertical-align: baseline;
5776
  border-radius: var(--bs-badge-border-radius);
5777
}
16848 stevensc 5778
 
16825 efrain 5779
.badge:empty {
5780
  display: none;
5781
}
5782
 
16848 stevensc 5783
.btn .badge,
5784
.wizard>.actions a .badge,
5785
div.tox .tox-button .badge,
5786
.swal2-popup .swal2-actions button .badge,
5787
.fc .fc-button-primary .badge {
16825 efrain 5788
  position: relative;
5789
  top: -1px;
5790
}
5791
 
5792
.alert {
5793
  --bs-alert-bg: transparent;
5794
  --bs-alert-padding-x: 1rem;
5795
  --bs-alert-padding-y: 1rem;
5796
  --bs-alert-margin-bottom: 1rem;
5797
  --bs-alert-color: inherit;
5798
  --bs-alert-border-color: transparent;
5799
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5800
  --bs-alert-border-radius: 0.25rem;
5801
  position: relative;
5802
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5803
  margin-bottom: var(--bs-alert-margin-bottom);
5804
  color: var(--bs-alert-color);
5805
  background-color: var(--bs-alert-bg);
5806
  border: var(--bs-alert-border);
5807
  border-radius: var(--bs-alert-border-radius);
5808
}
5809
 
5810
.alert-heading {
5811
  color: inherit;
5812
}
5813
 
5814
.alert-link {
5815
  font-weight: 500;
5816
}
5817
 
5818
.alert-dismissible {
5819
  padding-right: 3rem;
5820
}
16848 stevensc 5821
 
16825 efrain 5822
.alert-dismissible .btn-close {
5823
  position: absolute;
5824
  top: 0;
5825
  right: 0;
5826
  z-index: 2;
5827
  padding: 1.25rem 1rem;
5828
}
5829
 
5830
.alert-primary {
5831
  --bs-alert-color: #3d4499;
5832
  --bs-alert-bg: #e0e3ff;
5833
  --bs-alert-border-color: #d1d4ff;
5834
}
16848 stevensc 5835
 
16825 efrain 5836
.alert-primary .alert-link {
5837
  color: #31367a;
5838
}
5839
 
5840
.alert-secondary {
5841
  --bs-alert-color: #495161;
5842
  --bs-alert-bg: #e4e7ec;
5843
  --bs-alert-border-color: #d7dbe3;
5844
}
16848 stevensc 5845
 
16825 efrain 5846
.alert-secondary .alert-link {
5847
  color: #3a414e;
5848
}
5849
 
5850
.alert-success {
5851
  --bs-alert-color: #03622c;
5852
  --bs-alert-bg: #cdeddb;
5853
  --bs-alert-border-color: #b4e3c9;
5854
}
16848 stevensc 5855
 
16825 efrain 5856
.alert-success .alert-link {
5857
  color: #024e23;
5858
}
5859
 
5860
.alert-info {
5861
  --bs-alert-color: #3d7d7d;
5862
  --bs-alert-bg: #e0f6f6;
5863
  --bs-alert-border-color: #d1f1f1;
5864
}
16848 stevensc 5865
 
16825 efrain 5866
.alert-info .alert-link {
5867
  color: #316464;
5868
}
5869
 
5870
.alert-warning {
5871
  --bs-alert-color: #977104;
5872
  --bs-alert-bg: #fef2cd;
5873
  --bs-alert-border-color: #feebb4;
5874
}
16848 stevensc 5875
 
16825 efrain 5876
.alert-warning .alert-link {
5877
  color: #795a03;
5878
}
5879
 
5880
.alert-danger {
5881
  --bs-alert-color: #991f3d;
5882
  --bs-alert-bg: #ffd6e0;
5883
  --bs-alert-border-color: #ffc2d1;
5884
}
16848 stevensc 5885
 
16825 efrain 5886
.alert-danger .alert-link {
5887
  color: #7a1931;
5888
}
5889
 
5890
.alert-light {
5891
  --bs-alert-color: #8c8e8f;
5892
  --bs-alert-bg: #fbfbfc;
5893
  --bs-alert-border-color: #f8f9fa;
5894
}
16848 stevensc 5895
 
16825 efrain 5896
.alert-light .alert-link {
5897
  color: #707272;
5898
}
5899
 
5900
.alert-dark {
5901
  --bs-alert-color: #04070e;
5902
  --bs-alert-bg: #cdced1;
5903
  --bs-alert-border-color: #b4b6b9;
5904
}
16848 stevensc 5905
 
16825 efrain 5906
.alert-dark .alert-link {
5907
  color: #03060b;
5908
}
5909
 
5910
@keyframes progress-bar-stripes {
5911
  0% {
5912
    background-position-x: 1rem;
5913
  }
5914
}
16848 stevensc 5915
 
16825 efrain 5916
.progress {
5917
  --bs-progress-height: 1rem;
5918
  --bs-progress-font-size: 0.65625rem;
5919
  --bs-progress-bg: #e9ecef;
5920
  --bs-progress-border-radius: 0.25rem;
5921
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5922
  --bs-progress-bar-color: #fff;
5923
  --bs-progress-bar-bg: #6571ff;
5924
  --bs-progress-bar-transition: width 0.6s ease;
5925
  display: flex;
5926
  height: var(--bs-progress-height);
5927
  overflow: hidden;
5928
  font-size: var(--bs-progress-font-size);
5929
  background-color: var(--bs-progress-bg);
5930
  border-radius: var(--bs-progress-border-radius);
5931
}
5932
 
5933
.progress-bar {
5934
  display: flex;
5935
  flex-direction: column;
5936
  justify-content: center;
5937
  overflow: hidden;
5938
  color: var(--bs-progress-bar-color);
5939
  text-align: center;
5940
  white-space: nowrap;
5941
  background-color: var(--bs-progress-bar-bg);
5942
  transition: var(--bs-progress-bar-transition);
5943
}
16848 stevensc 5944
 
16825 efrain 5945
@media (prefers-reduced-motion: reduce) {
5946
  .progress-bar {
5947
    transition: none;
5948
  }
5949
}
5950
 
5951
.progress-bar-striped {
5952
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5953
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5954
}
5955
 
5956
.progress-bar-animated {
5957
  animation: 1s linear infinite progress-bar-stripes;
5958
}
16848 stevensc 5959
 
16825 efrain 5960
@media (prefers-reduced-motion: reduce) {
5961
  .progress-bar-animated {
5962
    animation: none;
5963
  }
5964
}
5965
 
5966
.list-group {
5967
  --bs-list-group-color: #060c17;
5968
  --bs-list-group-bg: #fff;
5969
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5970
  --bs-list-group-border-width: 1px;
5971
  --bs-list-group-border-radius: 0.25rem;
5972
  --bs-list-group-item-padding-x: 1.25rem;
5973
  --bs-list-group-item-padding-y: 0.75rem;
5974
  --bs-list-group-action-color: #41516c;
5975
  --bs-list-group-action-hover-color: #41516c;
5976
  --bs-list-group-action-hover-bg: #f8f9fa;
5977
  --bs-list-group-action-active-color: #000;
5978
  --bs-list-group-action-active-bg: #e9ecef;
5979
  --bs-list-group-disabled-color: #7987a1;
5980
  --bs-list-group-disabled-bg: #fff;
5981
  --bs-list-group-active-color: #fff;
5982
  --bs-list-group-active-bg: #6571ff;
5983
  --bs-list-group-active-border-color: #6571ff;
5984
  display: flex;
5985
  flex-direction: column;
5986
  padding-left: 0;
5987
  margin-bottom: 0;
5988
  border-radius: var(--bs-list-group-border-radius);
5989
}
5990
 
5991
.list-group-numbered {
5992
  list-style-type: none;
5993
  counter-reset: section;
5994
}
16848 stevensc 5995
 
5996
.list-group-numbered>.list-group-item::before {
16825 efrain 5997
  content: counters(section, ".") ". ";
5998
  counter-increment: section;
5999
}
6000
 
6001
.list-group-item-action {
6002
  width: 100%;
6003
  color: var(--bs-list-group-action-color);
6004
  text-align: inherit;
6005
}
16848 stevensc 6006
 
6007
.list-group-item-action:hover,
6008
.list-group-item-action:focus {
16825 efrain 6009
  z-index: 1;
6010
  color: var(--bs-list-group-action-hover-color);
6011
  text-decoration: none;
6012
  background-color: var(--bs-list-group-action-hover-bg);
6013
}
16848 stevensc 6014
 
16825 efrain 6015
.list-group-item-action:active {
6016
  color: var(--bs-list-group-action-active-color);
6017
  background-color: var(--bs-list-group-action-active-bg);
6018
}
6019
 
6020
.list-group-item {
6021
  position: relative;
6022
  display: block;
6023
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6024
  color: var(--bs-list-group-color);
6025
  background-color: var(--bs-list-group-bg);
6026
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6027
}
16848 stevensc 6028
 
16825 efrain 6029
.list-group-item:first-child {
6030
  border-top-left-radius: inherit;
6031
  border-top-right-radius: inherit;
6032
}
16848 stevensc 6033
 
16825 efrain 6034
.list-group-item:last-child {
6035
  border-bottom-right-radius: inherit;
6036
  border-bottom-left-radius: inherit;
6037
}
16848 stevensc 6038
 
6039
.list-group-item.disabled,
6040
.list-group-item:disabled {
16825 efrain 6041
  color: var(--bs-list-group-disabled-color);
6042
  pointer-events: none;
6043
  background-color: var(--bs-list-group-disabled-bg);
6044
}
16848 stevensc 6045
 
16825 efrain 6046
.list-group-item.active {
6047
  z-index: 2;
6048
  color: var(--bs-list-group-active-color);
6049
  background-color: var(--bs-list-group-active-bg);
6050
  border-color: var(--bs-list-group-active-border-color);
6051
}
16848 stevensc 6052
 
6053
.list-group-item+.list-group-item {
16825 efrain 6054
  border-top-width: 0;
6055
}
16848 stevensc 6056
 
6057
.list-group-item+.list-group-item.active {
16825 efrain 6058
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6059
  border-top-width: var(--bs-list-group-border-width);
6060
}
6061
 
6062
.list-group-horizontal {
6063
  flex-direction: row;
6064
}
16848 stevensc 6065
 
6066
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6067
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6068
  border-top-right-radius: 0;
6069
}
16848 stevensc 6070
 
6071
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6072
  border-top-right-radius: var(--bs-list-group-border-radius);
6073
  border-bottom-left-radius: 0;
6074
}
16848 stevensc 6075
 
6076
.list-group-horizontal>.list-group-item.active {
16825 efrain 6077
  margin-top: 0;
6078
}
16848 stevensc 6079
 
6080
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6081
  border-top-width: var(--bs-list-group-border-width);
6082
  border-left-width: 0;
6083
}
16848 stevensc 6084
 
6085
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6086
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6087
  border-left-width: var(--bs-list-group-border-width);
6088
}
6089
 
6090
@media (min-width: 576px) {
6091
  .list-group-horizontal-sm {
6092
    flex-direction: row;
6093
  }
16848 stevensc 6094
 
6095
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6096
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6097
    border-top-right-radius: 0;
6098
  }
16848 stevensc 6099
 
6100
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6101
    border-top-right-radius: var(--bs-list-group-border-radius);
6102
    border-bottom-left-radius: 0;
6103
  }
16848 stevensc 6104
 
6105
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6106
    margin-top: 0;
6107
  }
16848 stevensc 6108
 
6109
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6110
    border-top-width: var(--bs-list-group-border-width);
6111
    border-left-width: 0;
6112
  }
16848 stevensc 6113
 
6114
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6115
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6116
    border-left-width: var(--bs-list-group-border-width);
6117
  }
6118
}
16848 stevensc 6119
 
16825 efrain 6120
@media (min-width: 768px) {
6121
  .list-group-horizontal-md {
6122
    flex-direction: row;
6123
  }
16848 stevensc 6124
 
6125
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6126
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6127
    border-top-right-radius: 0;
6128
  }
16848 stevensc 6129
 
6130
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6131
    border-top-right-radius: var(--bs-list-group-border-radius);
6132
    border-bottom-left-radius: 0;
6133
  }
16848 stevensc 6134
 
6135
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6136
    margin-top: 0;
6137
  }
16848 stevensc 6138
 
6139
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6140
    border-top-width: var(--bs-list-group-border-width);
6141
    border-left-width: 0;
6142
  }
16848 stevensc 6143
 
6144
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6145
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6146
    border-left-width: var(--bs-list-group-border-width);
6147
  }
6148
}
16848 stevensc 6149
 
16825 efrain 6150
@media (min-width: 992px) {
6151
  .list-group-horizontal-lg {
6152
    flex-direction: row;
6153
  }
16848 stevensc 6154
 
6155
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6156
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6157
    border-top-right-radius: 0;
6158
  }
16848 stevensc 6159
 
6160
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6161
    border-top-right-radius: var(--bs-list-group-border-radius);
6162
    border-bottom-left-radius: 0;
6163
  }
16848 stevensc 6164
 
6165
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6166
    margin-top: 0;
6167
  }
16848 stevensc 6168
 
6169
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6170
    border-top-width: var(--bs-list-group-border-width);
6171
    border-left-width: 0;
6172
  }
16848 stevensc 6173
 
6174
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6175
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6176
    border-left-width: var(--bs-list-group-border-width);
6177
  }
6178
}
16848 stevensc 6179
 
16825 efrain 6180
@media (min-width: 1200px) {
6181
  .list-group-horizontal-xl {
6182
    flex-direction: row;
6183
  }
16848 stevensc 6184
 
6185
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6186
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6187
    border-top-right-radius: 0;
6188
  }
16848 stevensc 6189
 
6190
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6191
    border-top-right-radius: var(--bs-list-group-border-radius);
6192
    border-bottom-left-radius: 0;
6193
  }
16848 stevensc 6194
 
6195
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6196
    margin-top: 0;
6197
  }
16848 stevensc 6198
 
6199
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6200
    border-top-width: var(--bs-list-group-border-width);
6201
    border-left-width: 0;
6202
  }
16848 stevensc 6203
 
6204
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6205
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6206
    border-left-width: var(--bs-list-group-border-width);
6207
  }
6208
}
16848 stevensc 6209
 
16825 efrain 6210
@media (min-width: 1400px) {
6211
  .list-group-horizontal-xxl {
6212
    flex-direction: row;
6213
  }
16848 stevensc 6214
 
6215
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6216
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6217
    border-top-right-radius: 0;
6218
  }
16848 stevensc 6219
 
6220
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6221
    border-top-right-radius: var(--bs-list-group-border-radius);
6222
    border-bottom-left-radius: 0;
6223
  }
16848 stevensc 6224
 
6225
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6226
    margin-top: 0;
6227
  }
16848 stevensc 6228
 
6229
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6230
    border-top-width: var(--bs-list-group-border-width);
6231
    border-left-width: 0;
6232
  }
16848 stevensc 6233
 
6234
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6235
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6236
    border-left-width: var(--bs-list-group-border-width);
6237
  }
6238
}
16848 stevensc 6239
 
16825 efrain 6240
.list-group-flush {
6241
  border-radius: 0;
6242
}
16848 stevensc 6243
 
6244
.list-group-flush>.list-group-item {
16825 efrain 6245
  border-width: 0 0 var(--bs-list-group-border-width);
6246
}
16848 stevensc 6247
 
6248
.list-group-flush>.list-group-item:last-child {
16825 efrain 6249
  border-bottom-width: 0;
6250
}
6251
 
6252
.list-group-item-primary {
6253
  color: #3d4499;
6254
  background-color: #e0e3ff;
6255
}
16848 stevensc 6256
 
6257
.list-group-item-primary.list-group-item-action:hover,
6258
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6259
  color: #3d4499;
6260
  background-color: #cacce6;
6261
}
16848 stevensc 6262
 
16825 efrain 6263
.list-group-item-primary.list-group-item-action.active {
6264
  color: #fff;
6265
  background-color: #3d4499;
6266
  border-color: #3d4499;
6267
}
6268
 
6269
.list-group-item-secondary {
6270
  color: #495161;
6271
  background-color: #e4e7ec;
6272
}
16848 stevensc 6273
 
6274
.list-group-item-secondary.list-group-item-action:hover,
6275
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6276
  color: #495161;
6277
  background-color: #cdd0d4;
6278
}
16848 stevensc 6279
 
16825 efrain 6280
.list-group-item-secondary.list-group-item-action.active {
6281
  color: #fff;
6282
  background-color: #495161;
6283
  border-color: #495161;
6284
}
6285
 
6286
.list-group-item-success {
6287
  color: #03622c;
6288
  background-color: #cdeddb;
6289
}
16848 stevensc 6290
 
6291
.list-group-item-success.list-group-item-action:hover,
6292
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6293
  color: #03622c;
6294
  background-color: #b9d5c5;
6295
}
16848 stevensc 6296
 
16825 efrain 6297
.list-group-item-success.list-group-item-action.active {
6298
  color: #fff;
6299
  background-color: #03622c;
6300
  border-color: #03622c;
6301
}
6302
 
6303
.list-group-item-info {
6304
  color: #3d7d7d;
6305
  background-color: #e0f6f6;
6306
}
16848 stevensc 6307
 
6308
.list-group-item-info.list-group-item-action:hover,
6309
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6310
  color: #3d7d7d;
6311
  background-color: #cadddd;
6312
}
16848 stevensc 6313
 
16825 efrain 6314
.list-group-item-info.list-group-item-action.active {
6315
  color: #fff;
6316
  background-color: #3d7d7d;
6317
  border-color: #3d7d7d;
6318
}
6319
 
6320
.list-group-item-warning {
6321
  color: #977104;
6322
  background-color: #fef2cd;
6323
}
16848 stevensc 6324
 
6325
.list-group-item-warning.list-group-item-action:hover,
6326
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6327
  color: #977104;
6328
  background-color: #e5dab9;
6329
}
16848 stevensc 6330
 
16825 efrain 6331
.list-group-item-warning.list-group-item-action.active {
6332
  color: #fff;
6333
  background-color: #977104;
6334
  border-color: #977104;
6335
}
6336
 
6337
.list-group-item-danger {
6338
  color: #991f3d;
6339
  background-color: #ffd6e0;
6340
}
16848 stevensc 6341
 
6342
.list-group-item-danger.list-group-item-action:hover,
6343
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6344
  color: #991f3d;
6345
  background-color: #e6c1ca;
6346
}
16848 stevensc 6347
 
16825 efrain 6348
.list-group-item-danger.list-group-item-action.active {
6349
  color: #fff;
6350
  background-color: #991f3d;
6351
  border-color: #991f3d;
6352
}
6353
 
6354
.list-group-item-light {
6355
  color: #8c8e8f;
6356
  background-color: #fbfbfc;
6357
}
16848 stevensc 6358
 
6359
.list-group-item-light.list-group-item-action:hover,
6360
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6361
  color: #8c8e8f;
6362
  background-color: #e2e2e3;
6363
}
16848 stevensc 6364
 
16825 efrain 6365
.list-group-item-light.list-group-item-action.active {
6366
  color: #fff;
6367
  background-color: #8c8e8f;
6368
  border-color: #8c8e8f;
6369
}
6370
 
6371
.list-group-item-dark {
6372
  color: #04070e;
6373
  background-color: #cdced1;
6374
}
16848 stevensc 6375
 
6376
.list-group-item-dark.list-group-item-action:hover,
6377
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6378
  color: #04070e;
6379
  background-color: #b9b9bc;
6380
}
16848 stevensc 6381
 
16825 efrain 6382
.list-group-item-dark.list-group-item-action.active {
6383
  color: #fff;
6384
  background-color: #04070e;
6385
  border-color: #04070e;
6386
}
6387
 
6388
.btn-close {
6389
  box-sizing: content-box;
6390
  width: 0.8em;
6391
  height: 0.8em;
6392
  padding: 0.25em 0.25em;
6393
  color: #000;
6394
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/0.8em auto no-repeat;
6395
  border: 0;
6396
  border-radius: 0.25rem;
6397
  opacity: 0.5;
6398
}
16848 stevensc 6399
 
16825 efrain 6400
.btn-close:hover {
6401
  color: #000;
6402
  text-decoration: none;
6403
  opacity: 0.75;
6404
}
16848 stevensc 6405
 
16825 efrain 6406
.btn-close:focus {
6407
  outline: 0;
6408
  box-shadow: none;
6409
  opacity: 1;
6410
}
16848 stevensc 6411
 
6412
.btn-close:disabled,
6413
.btn-close.disabled {
16825 efrain 6414
  pointer-events: none;
6415
  user-select: none;
6416
  opacity: 0.25;
6417
}
6418
 
6419
.btn-close-white {
6420
  filter: invert(1) grayscale(100%) brightness(200%);
6421
}
6422
 
6423
.toast {
6424
  --bs-toast-zindex: 1090;
6425
  --bs-toast-padding-x: 0.75rem;
6426
  --bs-toast-padding-y: 0.5rem;
6427
  --bs-toast-spacing: 1.5rem;
6428
  --bs-toast-max-width: 350px;
6429
  --bs-toast-font-size: 0.875rem;
6430
  --bs-toast-color: ;
6431
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6432
  --bs-toast-border-width: 1px;
6433
  --bs-toast-border-color: var(--bs-border-color-translucent);
6434
  --bs-toast-border-radius: 0.25rem;
6435
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6436
  --bs-toast-header-color: #7987a1;
6437
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6438
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6439
  width: var(--bs-toast-max-width);
6440
  max-width: 100%;
6441
  font-size: var(--bs-toast-font-size);
6442
  color: var(--bs-toast-color);
6443
  pointer-events: auto;
6444
  background-color: var(--bs-toast-bg);
6445
  background-clip: padding-box;
6446
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6447
  box-shadow: var(--bs-toast-box-shadow);
6448
  border-radius: var(--bs-toast-border-radius);
6449
}
16848 stevensc 6450
 
16825 efrain 6451
.toast.showing {
6452
  opacity: 0;
6453
}
16848 stevensc 6454
 
16825 efrain 6455
.toast:not(.show) {
6456
  display: none;
6457
}
6458
 
6459
.toast-container {
6460
  --bs-toast-zindex: 1090;
6461
  position: absolute;
6462
  z-index: var(--bs-toast-zindex);
6463
  width: max-content;
6464
  max-width: 100%;
6465
  pointer-events: none;
6466
}
16848 stevensc 6467
 
6468
.toast-container> :not(:last-child) {
16825 efrain 6469
  margin-bottom: var(--bs-toast-spacing);
6470
}
6471
 
6472
.toast-header {
6473
  display: flex;
6474
  align-items: center;
6475
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6476
  color: var(--bs-toast-header-color);
6477
  background-color: var(--bs-toast-header-bg);
6478
  background-clip: padding-box;
6479
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6480
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6481
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6482
}
16848 stevensc 6483
 
16825 efrain 6484
.toast-header .btn-close {
6485
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6486
  margin-left: var(--bs-toast-padding-x);
6487
}
6488
 
6489
.toast-body {
6490
  padding: var(--bs-toast-padding-x);
6491
  word-wrap: break-word;
6492
}
6493
 
6494
.modal {
6495
  --bs-modal-zindex: 1055;
6496
  --bs-modal-width: 500px;
6497
  --bs-modal-padding: 1rem;
6498
  --bs-modal-margin: 0.5rem;
6499
  --bs-modal-color: ;
6500
  --bs-modal-bg: #fff;
6501
  --bs-modal-border-color: #e9ecef;
6502
  --bs-modal-border-width: 1px;
6503
  --bs-modal-border-radius: 0.5rem;
6504
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6505
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6506
  --bs-modal-header-padding-x: 1rem;
6507
  --bs-modal-header-padding-y: 1rem;
6508
  --bs-modal-header-padding: 1rem 1rem;
6509
  --bs-modal-header-border-color: var(--bs-border-color);
6510
  --bs-modal-header-border-width: 1px;
6511
  --bs-modal-title-line-height: 1.5;
6512
  --bs-modal-footer-gap: 0.5rem;
6513
  --bs-modal-footer-bg: ;
6514
  --bs-modal-footer-border-color: var(--bs-border-color);
6515
  --bs-modal-footer-border-width: 1px;
6516
  position: fixed;
6517
  top: 0;
6518
  left: 0;
6519
  z-index: var(--bs-modal-zindex);
6520
  display: none;
6521
  width: 100%;
6522
  height: 100%;
6523
  overflow-x: hidden;
6524
  overflow-y: auto;
6525
  outline: 0;
6526
}
6527
 
6528
.modal-dialog {
6529
  position: relative;
6530
  width: auto;
6531
  margin: var(--bs-modal-margin);
6532
  pointer-events: none;
6533
}
16848 stevensc 6534
 
16825 efrain 6535
.modal.fade .modal-dialog {
6536
  transition: transform 0.4s ease;
6537
  transform: scale(0.8);
6538
}
16848 stevensc 6539
 
16825 efrain 6540
@media (prefers-reduced-motion: reduce) {
6541
  .modal.fade .modal-dialog {
6542
    transition: none;
6543
  }
6544
}
16848 stevensc 6545
 
16825 efrain 6546
.modal.show .modal-dialog {
6547
  transform: none;
6548
}
16848 stevensc 6549
 
16825 efrain 6550
.modal.modal-static .modal-dialog {
6551
  transform: scale(1.02);
6552
}
6553
 
6554
.modal-dialog-scrollable {
6555
  height: calc(100% - var(--bs-modal-margin) * 2);
6556
}
16848 stevensc 6557
 
16825 efrain 6558
.modal-dialog-scrollable .modal-content {
6559
  max-height: 100%;
6560
  overflow: hidden;
6561
}
16848 stevensc 6562
 
16825 efrain 6563
.modal-dialog-scrollable .modal-body {
6564
  overflow-y: auto;
6565
}
6566
 
6567
.modal-dialog-centered {
6568
  display: flex;
6569
  align-items: center;
6570
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6571
}
6572
 
6573
.modal-content {
6574
  position: relative;
6575
  display: flex;
6576
  flex-direction: column;
6577
  width: 100%;
6578
  color: var(--bs-modal-color);
6579
  pointer-events: auto;
6580
  background-color: var(--bs-modal-bg);
6581
  background-clip: padding-box;
6582
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6583
  border-radius: var(--bs-modal-border-radius);
6584
  outline: 0;
6585
}
6586
 
6587
.modal-backdrop {
6588
  --bs-backdrop-zindex: 1050;
6589
  --bs-backdrop-bg: #000;
6590
  --bs-backdrop-opacity: 0.5;
6591
  position: fixed;
6592
  top: 0;
6593
  left: 0;
6594
  z-index: var(--bs-backdrop-zindex);
6595
  width: 100vw;
6596
  height: 100vh;
6597
  background-color: var(--bs-backdrop-bg);
6598
}
16848 stevensc 6599
 
16825 efrain 6600
.modal-backdrop.fade {
6601
  opacity: 0;
6602
}
16848 stevensc 6603
 
16825 efrain 6604
.modal-backdrop.show {
6605
  opacity: var(--bs-backdrop-opacity);
6606
}
6607
 
6608
.modal-header {
6609
  display: flex;
6610
  flex-shrink: 0;
6611
  align-items: center;
6612
  justify-content: space-between;
6613
  padding: var(--bs-modal-header-padding);
6614
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6615
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6616
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6617
}
16848 stevensc 6618
 
16825 efrain 6619
.modal-header .btn-close {
6620
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6621
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
6622
}
6623
 
6624
.modal-title {
6625
  margin-bottom: 0;
6626
  line-height: var(--bs-modal-title-line-height);
6627
}
6628
 
6629
.modal-body {
6630
  position: relative;
6631
  flex: 1 1 auto;
6632
  padding: var(--bs-modal-padding);
6633
}
6634
 
6635
.modal-footer {
6636
  display: flex;
6637
  flex-shrink: 0;
6638
  flex-wrap: wrap;
6639
  align-items: center;
6640
  justify-content: flex-end;
6641
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6642
  background-color: var(--bs-modal-footer-bg);
6643
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6644
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6645
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6646
}
16848 stevensc 6647
 
6648
.modal-footer>* {
16825 efrain 6649
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6650
}
6651
 
6652
@media (min-width: 576px) {
6653
  .modal {
6654
    --bs-modal-margin: 1.75rem;
6655
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6656
  }
16848 stevensc 6657
 
16825 efrain 6658
  .modal-dialog {
6659
    max-width: var(--bs-modal-width);
6660
    margin-right: auto;
6661
    margin-left: auto;
6662
  }
16848 stevensc 6663
 
16825 efrain 6664
  .modal-sm {
6665
    --bs-modal-width: 300px;
6666
  }
6667
}
16848 stevensc 6668
 
16825 efrain 6669
@media (min-width: 992px) {
16848 stevensc 6670
 
16825 efrain 6671
  .modal-lg,
6672
  .modal-xl {
6673
    --bs-modal-width: 800px;
6674
  }
6675
}
16848 stevensc 6676
 
16825 efrain 6677
@media (min-width: 1200px) {
6678
  .modal-xl {
6679
    --bs-modal-width: 1140px;
6680
  }
6681
}
16848 stevensc 6682
 
16825 efrain 6683
.modal-fullscreen {
6684
  width: 100vw;
6685
  max-width: none;
6686
  height: 100%;
6687
  margin: 0;
6688
}
16848 stevensc 6689
 
16825 efrain 6690
.modal-fullscreen .modal-content {
6691
  height: 100%;
6692
  border: 0;
6693
  border-radius: 0;
6694
}
16848 stevensc 6695
 
16825 efrain 6696
.modal-fullscreen .modal-header,
6697
.modal-fullscreen .modal-footer {
6698
  border-radius: 0;
6699
}
16848 stevensc 6700
 
16825 efrain 6701
.modal-fullscreen .modal-body {
6702
  overflow-y: auto;
6703
}
6704
 
6705
@media (max-width: 575.98px) {
6706
  .modal-fullscreen-sm-down {
6707
    width: 100vw;
6708
    max-width: none;
6709
    height: 100%;
6710
    margin: 0;
6711
  }
16848 stevensc 6712
 
16825 efrain 6713
  .modal-fullscreen-sm-down .modal-content {
6714
    height: 100%;
6715
    border: 0;
6716
    border-radius: 0;
6717
  }
16848 stevensc 6718
 
16825 efrain 6719
  .modal-fullscreen-sm-down .modal-header,
6720
  .modal-fullscreen-sm-down .modal-footer {
6721
    border-radius: 0;
6722
  }
16848 stevensc 6723
 
16825 efrain 6724
  .modal-fullscreen-sm-down .modal-body {
6725
    overflow-y: auto;
6726
  }
6727
}
16848 stevensc 6728
 
16825 efrain 6729
@media (max-width: 767.98px) {
6730
  .modal-fullscreen-md-down {
6731
    width: 100vw;
6732
    max-width: none;
6733
    height: 100%;
6734
    margin: 0;
6735
  }
16848 stevensc 6736
 
16825 efrain 6737
  .modal-fullscreen-md-down .modal-content {
6738
    height: 100%;
6739
    border: 0;
6740
    border-radius: 0;
6741
  }
16848 stevensc 6742
 
16825 efrain 6743
  .modal-fullscreen-md-down .modal-header,
6744
  .modal-fullscreen-md-down .modal-footer {
6745
    border-radius: 0;
6746
  }
16848 stevensc 6747
 
16825 efrain 6748
  .modal-fullscreen-md-down .modal-body {
6749
    overflow-y: auto;
6750
  }
6751
}
16848 stevensc 6752
 
16825 efrain 6753
@media (max-width: 991.98px) {
6754
  .modal-fullscreen-lg-down {
6755
    width: 100vw;
6756
    max-width: none;
6757
    height: 100%;
6758
    margin: 0;
6759
  }
16848 stevensc 6760
 
16825 efrain 6761
  .modal-fullscreen-lg-down .modal-content {
6762
    height: 100%;
6763
    border: 0;
6764
    border-radius: 0;
6765
  }
16848 stevensc 6766
 
16825 efrain 6767
  .modal-fullscreen-lg-down .modal-header,
6768
  .modal-fullscreen-lg-down .modal-footer {
6769
    border-radius: 0;
6770
  }
16848 stevensc 6771
 
16825 efrain 6772
  .modal-fullscreen-lg-down .modal-body {
6773
    overflow-y: auto;
6774
  }
6775
}
16848 stevensc 6776
 
16825 efrain 6777
@media (max-width: 1199.98px) {
6778
  .modal-fullscreen-xl-down {
6779
    width: 100vw;
6780
    max-width: none;
6781
    height: 100%;
6782
    margin: 0;
6783
  }
16848 stevensc 6784
 
16825 efrain 6785
  .modal-fullscreen-xl-down .modal-content {
6786
    height: 100%;
6787
    border: 0;
6788
    border-radius: 0;
6789
  }
16848 stevensc 6790
 
16825 efrain 6791
  .modal-fullscreen-xl-down .modal-header,
6792
  .modal-fullscreen-xl-down .modal-footer {
6793
    border-radius: 0;
6794
  }
16848 stevensc 6795
 
16825 efrain 6796
  .modal-fullscreen-xl-down .modal-body {
6797
    overflow-y: auto;
6798
  }
6799
}
16848 stevensc 6800
 
16825 efrain 6801
@media (max-width: 1399.98px) {
6802
  .modal-fullscreen-xxl-down {
6803
    width: 100vw;
6804
    max-width: none;
6805
    height: 100%;
6806
    margin: 0;
6807
  }
16848 stevensc 6808
 
16825 efrain 6809
  .modal-fullscreen-xxl-down .modal-content {
6810
    height: 100%;
6811
    border: 0;
6812
    border-radius: 0;
6813
  }
16848 stevensc 6814
 
16825 efrain 6815
  .modal-fullscreen-xxl-down .modal-header,
6816
  .modal-fullscreen-xxl-down .modal-footer {
6817
    border-radius: 0;
6818
  }
16848 stevensc 6819
 
16825 efrain 6820
  .modal-fullscreen-xxl-down .modal-body {
6821
    overflow-y: auto;
6822
  }
6823
}
16848 stevensc 6824
 
16825 efrain 6825
.tooltip {
6826
  --bs-tooltip-zindex: 1080;
6827
  --bs-tooltip-max-width: 200px;
6828
  --bs-tooltip-padding-x: 0.5rem;
6829
  --bs-tooltip-padding-y: 0.25rem;
6830
  --bs-tooltip-margin: ;
6831
  --bs-tooltip-font-size: 0.812rem;
6832
  --bs-tooltip-color: #fff;
6833
  --bs-tooltip-bg: #000;
6834
  --bs-tooltip-border-radius: 0.25rem;
6835
  --bs-tooltip-opacity: 0.9;
6836
  --bs-tooltip-arrow-width: 0.8rem;
6837
  --bs-tooltip-arrow-height: 0.4rem;
6838
  z-index: var(--bs-tooltip-zindex);
6839
  display: block;
6840
  padding: var(--bs-tooltip-arrow-height);
6841
  margin: var(--bs-tooltip-margin);
6842
  font-family: var(--bs-font-sans-serif);
6843
  font-style: normal;
6844
  font-weight: 400;
6845
  line-height: 1.5;
6846
  text-align: left;
6847
  text-align: start;
6848
  text-decoration: none;
6849
  text-shadow: none;
6850
  text-transform: none;
6851
  letter-spacing: normal;
6852
  word-break: normal;
6853
  white-space: normal;
6854
  word-spacing: normal;
6855
  line-break: auto;
6856
  font-size: var(--bs-tooltip-font-size);
6857
  word-wrap: break-word;
6858
  opacity: 0;
6859
}
16848 stevensc 6860
 
16825 efrain 6861
.tooltip.show {
6862
  opacity: var(--bs-tooltip-opacity);
6863
}
16848 stevensc 6864
 
16825 efrain 6865
.tooltip .tooltip-arrow {
6866
  display: block;
6867
  width: var(--bs-tooltip-arrow-width);
6868
  height: var(--bs-tooltip-arrow-height);
6869
}
16848 stevensc 6870
 
16825 efrain 6871
.tooltip .tooltip-arrow::before {
6872
  position: absolute;
6873
  content: "";
6874
  border-color: transparent;
6875
  border-style: solid;
6876
}
6877
 
16848 stevensc 6878
.bs-tooltip-top .tooltip-arrow,
6879
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6880
  bottom: 0;
6881
}
16848 stevensc 6882
 
6883
.bs-tooltip-top .tooltip-arrow::before,
6884
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6885
  top: -1px;
6886
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6887
  border-top-color: var(--bs-tooltip-bg);
6888
}
6889
 
6890
/* rtl:begin:ignore */
16848 stevensc 6891
.bs-tooltip-end .tooltip-arrow,
6892
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6893
  left: 0;
6894
  width: var(--bs-tooltip-arrow-height);
6895
  height: var(--bs-tooltip-arrow-width);
6896
}
16848 stevensc 6897
 
6898
.bs-tooltip-end .tooltip-arrow::before,
6899
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6900
  right: -1px;
6901
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6902
  border-right-color: var(--bs-tooltip-bg);
6903
}
6904
 
6905
/* rtl:end:ignore */
16848 stevensc 6906
.bs-tooltip-bottom .tooltip-arrow,
6907
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6908
  top: 0;
6909
}
16848 stevensc 6910
 
6911
.bs-tooltip-bottom .tooltip-arrow::before,
6912
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6913
  bottom: -1px;
6914
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6915
  border-bottom-color: var(--bs-tooltip-bg);
6916
}
6917
 
6918
/* rtl:begin:ignore */
16848 stevensc 6919
.bs-tooltip-start .tooltip-arrow,
6920
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6921
  right: 0;
6922
  width: var(--bs-tooltip-arrow-height);
6923
  height: var(--bs-tooltip-arrow-width);
6924
}
16848 stevensc 6925
 
6926
.bs-tooltip-start .tooltip-arrow::before,
6927
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6928
  left: -1px;
6929
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6930
  border-left-color: var(--bs-tooltip-bg);
6931
}
6932
 
6933
/* rtl:end:ignore */
6934
.tooltip-inner {
6935
  max-width: var(--bs-tooltip-max-width);
6936
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6937
  color: var(--bs-tooltip-color);
6938
  text-align: center;
6939
  background-color: var(--bs-tooltip-bg);
6940
  border-radius: var(--bs-tooltip-border-radius);
6941
}
6942
 
6943
.popover {
6944
  --bs-popover-zindex: 1070;
6945
  --bs-popover-max-width: 276px;
6946
  --bs-popover-font-size: 0.812rem;
6947
  --bs-popover-bg: #fff;
6948
  --bs-popover-border-width: 1px;
6949
  --bs-popover-border-color: #e9ecef;
6950
  --bs-popover-border-radius: 0.5rem;
6951
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6952
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6953
  --bs-popover-header-padding-x: 1rem;
6954
  --bs-popover-header-padding-y: 0.5rem;
6955
  --bs-popover-header-font-size: 0.875rem;
6956
  --bs-popover-header-color: ;
6957
  --bs-popover-header-bg: #e9ecef;
6958
  --bs-popover-body-padding-x: 1rem;
6959
  --bs-popover-body-padding-y: 1rem;
6960
  --bs-popover-body-color: #000;
6961
  --bs-popover-arrow-width: 1rem;
6962
  --bs-popover-arrow-height: 0.5rem;
6963
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6964
  z-index: var(--bs-popover-zindex);
6965
  display: block;
6966
  max-width: var(--bs-popover-max-width);
6967
  font-family: var(--bs-font-sans-serif);
6968
  font-style: normal;
6969
  font-weight: 400;
6970
  line-height: 1.5;
6971
  text-align: left;
6972
  text-align: start;
6973
  text-decoration: none;
6974
  text-shadow: none;
6975
  text-transform: none;
6976
  letter-spacing: normal;
6977
  word-break: normal;
6978
  white-space: normal;
6979
  word-spacing: normal;
6980
  line-break: auto;
6981
  font-size: var(--bs-popover-font-size);
6982
  word-wrap: break-word;
6983
  background-color: var(--bs-popover-bg);
6984
  background-clip: padding-box;
6985
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6986
  border-radius: var(--bs-popover-border-radius);
6987
}
16848 stevensc 6988
 
16825 efrain 6989
.popover .popover-arrow {
6990
  display: block;
6991
  width: var(--bs-popover-arrow-width);
6992
  height: var(--bs-popover-arrow-height);
6993
}
16848 stevensc 6994
 
6995
.popover .popover-arrow::before,
6996
.popover .popover-arrow::after {
16825 efrain 6997
  position: absolute;
6998
  display: block;
6999
  content: "";
7000
  border-color: transparent;
7001
  border-style: solid;
7002
  border-width: 0;
7003
}
7004
 
16848 stevensc 7005
.bs-popover-top>.popover-arrow,
7006
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7007
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7008
}
16848 stevensc 7009
 
7010
.bs-popover-top>.popover-arrow::before,
7011
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7012
.bs-popover-top>.popover-arrow::after,
7013
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7014
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7015
}
16848 stevensc 7016
 
7017
.bs-popover-top>.popover-arrow::before,
7018
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7019
  bottom: 0;
7020
  border-top-color: var(--bs-popover-arrow-border);
7021
}
16848 stevensc 7022
 
7023
.bs-popover-top>.popover-arrow::after,
7024
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7025
  bottom: var(--bs-popover-border-width);
7026
  border-top-color: var(--bs-popover-bg);
7027
}
7028
 
7029
/* rtl:begin:ignore */
16848 stevensc 7030
.bs-popover-end>.popover-arrow,
7031
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7032
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7033
  width: var(--bs-popover-arrow-height);
7034
  height: var(--bs-popover-arrow-width);
7035
}
16848 stevensc 7036
 
7037
.bs-popover-end>.popover-arrow::before,
7038
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7039
.bs-popover-end>.popover-arrow::after,
7040
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7041
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7042
}
16848 stevensc 7043
 
7044
.bs-popover-end>.popover-arrow::before,
7045
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7046
  left: 0;
7047
  border-right-color: var(--bs-popover-arrow-border);
7048
}
16848 stevensc 7049
 
7050
.bs-popover-end>.popover-arrow::after,
7051
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7052
  left: var(--bs-popover-border-width);
7053
  border-right-color: var(--bs-popover-bg);
7054
}
7055
 
7056
/* rtl:end:ignore */
16848 stevensc 7057
.bs-popover-bottom>.popover-arrow,
7058
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7059
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7060
}
16848 stevensc 7061
 
7062
.bs-popover-bottom>.popover-arrow::before,
7063
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7064
.bs-popover-bottom>.popover-arrow::after,
7065
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7066
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7067
}
16848 stevensc 7068
 
7069
.bs-popover-bottom>.popover-arrow::before,
7070
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7071
  top: 0;
7072
  border-bottom-color: var(--bs-popover-arrow-border);
7073
}
16848 stevensc 7074
 
7075
.bs-popover-bottom>.popover-arrow::after,
7076
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7077
  top: var(--bs-popover-border-width);
7078
  border-bottom-color: var(--bs-popover-bg);
7079
}
16848 stevensc 7080
 
7081
.bs-popover-bottom .popover-header::before,
7082
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7083
  position: absolute;
7084
  top: 0;
7085
  left: 50%;
7086
  display: block;
7087
  width: var(--bs-popover-arrow-width);
7088
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7089
  content: "";
7090
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7091
}
7092
 
7093
/* rtl:begin:ignore */
16848 stevensc 7094
.bs-popover-start>.popover-arrow,
7095
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7096
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7097
  width: var(--bs-popover-arrow-height);
7098
  height: var(--bs-popover-arrow-width);
7099
}
16848 stevensc 7100
 
7101
.bs-popover-start>.popover-arrow::before,
7102
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7103
.bs-popover-start>.popover-arrow::after,
7104
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7105
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7106
}
16848 stevensc 7107
 
7108
.bs-popover-start>.popover-arrow::before,
7109
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7110
  right: 0;
7111
  border-left-color: var(--bs-popover-arrow-border);
7112
}
16848 stevensc 7113
 
7114
.bs-popover-start>.popover-arrow::after,
7115
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7116
  right: var(--bs-popover-border-width);
7117
  border-left-color: var(--bs-popover-bg);
7118
}
7119
 
7120
/* rtl:end:ignore */
7121
.popover-header {
7122
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7123
  margin-bottom: 0;
7124
  font-size: var(--bs-popover-header-font-size);
7125
  color: var(--bs-popover-header-color);
7126
  background-color: var(--bs-popover-header-bg);
7127
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7128
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7129
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7130
}
16848 stevensc 7131
 
16825 efrain 7132
.popover-header:empty {
7133
  display: none;
7134
}
7135
 
7136
.popover-body {
7137
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7138
  color: var(--bs-popover-body-color);
7139
}
7140
 
7141
.carousel {
7142
  position: relative;
7143
}
7144
 
7145
.carousel.pointer-event {
7146
  touch-action: pan-y;
7147
}
7148
 
7149
.carousel-inner {
7150
  position: relative;
7151
  width: 100%;
7152
  overflow: hidden;
7153
}
16848 stevensc 7154
 
16825 efrain 7155
.carousel-inner::after {
7156
  display: block;
7157
  clear: both;
7158
  content: "";
7159
}
7160
 
7161
.carousel-item {
7162
  position: relative;
7163
  display: none;
7164
  float: left;
7165
  width: 100%;
7166
  margin-right: -100%;
7167
  backface-visibility: hidden;
7168
  transition: transform 0.6s ease-in-out;
7169
}
16848 stevensc 7170
 
16825 efrain 7171
@media (prefers-reduced-motion: reduce) {
7172
  .carousel-item {
7173
    transition: none;
7174
  }
7175
}
7176
 
7177
.carousel-item.active,
7178
.carousel-item-next,
7179
.carousel-item-prev {
7180
  display: block;
7181
}
7182
 
7183
/* rtl:begin:ignore */
7184
.carousel-item-next:not(.carousel-item-start),
7185
.active.carousel-item-end {
7186
  transform: translateX(100%);
7187
}
7188
 
7189
.carousel-item-prev:not(.carousel-item-end),
7190
.active.carousel-item-start {
7191
  transform: translateX(-100%);
7192
}
7193
 
7194
/* rtl:end:ignore */
7195
.carousel-fade .carousel-item {
7196
  opacity: 0;
7197
  transition-property: opacity;
7198
  transform: none;
7199
}
16848 stevensc 7200
 
16825 efrain 7201
.carousel-fade .carousel-item.active,
7202
.carousel-fade .carousel-item-next.carousel-item-start,
7203
.carousel-fade .carousel-item-prev.carousel-item-end {
7204
  z-index: 1;
7205
  opacity: 1;
7206
}
16848 stevensc 7207
 
16825 efrain 7208
.carousel-fade .active.carousel-item-start,
7209
.carousel-fade .active.carousel-item-end {
7210
  z-index: 0;
7211
  opacity: 0;
7212
  transition: opacity 0s 0.6s;
7213
}
16848 stevensc 7214
 
16825 efrain 7215
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7216
 
16825 efrain 7217
  .carousel-fade .active.carousel-item-start,
7218
  .carousel-fade .active.carousel-item-end {
7219
    transition: none;
7220
  }
7221
}
7222
 
7223
.carousel-control-prev,
7224
.carousel-control-next {
7225
  position: absolute;
7226
  top: 0;
7227
  bottom: 0;
7228
  z-index: 1;
7229
  display: flex;
7230
  align-items: center;
7231
  justify-content: center;
7232
  width: 15%;
7233
  padding: 0;
7234
  color: #fff;
7235
  text-align: center;
7236
  background: none;
7237
  border: 0;
7238
  opacity: 0.5;
7239
  transition: opacity 0.15s ease;
7240
}
16848 stevensc 7241
 
16825 efrain 7242
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7243
 
16825 efrain 7244
  .carousel-control-prev,
7245
  .carousel-control-next {
7246
    transition: none;
7247
  }
7248
}
16848 stevensc 7249
 
7250
.carousel-control-prev:hover,
7251
.carousel-control-prev:focus,
16825 efrain 7252
.carousel-control-next:hover,
7253
.carousel-control-next:focus {
7254
  color: #fff;
7255
  text-decoration: none;
7256
  outline: 0;
7257
  opacity: 0.9;
7258
}
7259
 
7260
.carousel-control-prev {
7261
  left: 0;
7262
}
7263
 
7264
.carousel-control-next {
7265
  right: 0;
7266
}
7267
 
7268
.carousel-control-prev-icon,
7269
.carousel-control-next-icon {
7270
  display: inline-block;
7271
  width: 2rem;
7272
  height: 2rem;
7273
  background-repeat: no-repeat;
7274
  background-position: 50%;
7275
  background-size: 100% 100%;
7276
}
7277
 
7278
/* rtl:options: {
7279
  "autoRename": true,
7280
  "stringMap":[ {
7281
    "name"    : "prev-next",
7282
    "search"  : "prev",
7283
    "replace" : "next"
7284
  } ]
7285
} */
7286
.carousel-control-prev-icon {
7287
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
7288
}
7289
 
7290
.carousel-control-next-icon {
7291
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
7292
}
7293
 
7294
.carousel-indicators {
7295
  position: absolute;
7296
  right: 0;
7297
  bottom: 0;
7298
  left: 0;
7299
  z-index: 2;
7300
  display: flex;
7301
  justify-content: center;
7302
  padding: 0;
7303
  margin-right: 15%;
7304
  margin-bottom: 1rem;
7305
  margin-left: 15%;
7306
  list-style: none;
7307
}
16848 stevensc 7308
 
16825 efrain 7309
.carousel-indicators [data-bs-target] {
7310
  box-sizing: content-box;
7311
  flex: 0 1 auto;
7312
  width: 30px;
7313
  height: 3px;
7314
  padding: 0;
7315
  margin-right: 3px;
7316
  margin-left: 3px;
7317
  text-indent: -999px;
7318
  cursor: pointer;
7319
  background-color: #fff;
7320
  background-clip: padding-box;
7321
  border: 0;
7322
  border-top: 10px solid transparent;
7323
  border-bottom: 10px solid transparent;
7324
  opacity: 0.5;
7325
  transition: opacity 0.6s ease;
7326
}
16848 stevensc 7327
 
16825 efrain 7328
@media (prefers-reduced-motion: reduce) {
7329
  .carousel-indicators [data-bs-target] {
7330
    transition: none;
7331
  }
7332
}
16848 stevensc 7333
 
16825 efrain 7334
.carousel-indicators .active {
7335
  opacity: 1;
7336
}
7337
 
7338
.carousel-caption {
7339
  position: absolute;
7340
  right: 15%;
7341
  bottom: 1.25rem;
7342
  left: 15%;
7343
  padding-top: 1.25rem;
7344
  padding-bottom: 1.25rem;
7345
  color: #fff;
7346
  text-align: center;
7347
}
7348
 
7349
.carousel-dark .carousel-control-prev-icon,
7350
.carousel-dark .carousel-control-next-icon {
7351
  filter: invert(1) grayscale(100);
7352
}
16848 stevensc 7353
 
16825 efrain 7354
.carousel-dark .carousel-indicators [data-bs-target] {
7355
  background-color: #000;
7356
}
16848 stevensc 7357
 
16825 efrain 7358
.carousel-dark .carousel-caption {
7359
  color: #000;
7360
}
7361
 
7362
.spinner-grow,
7363
.spinner-border {
7364
  display: inline-block;
7365
  width: var(--bs-spinner-width);
7366
  height: var(--bs-spinner-height);
7367
  vertical-align: var(--bs-spinner-vertical-align);
7368
  border-radius: 50%;
7369
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7370
}
7371
 
7372
@keyframes spinner-border {
7373
  to {
16848 stevensc 7374
    transform: rotate(360deg)
7375
      /* rtl:ignore */
7376
    ;
16825 efrain 7377
  }
7378
}
16848 stevensc 7379
 
16825 efrain 7380
.spinner-border {
7381
  --bs-spinner-width: 2rem;
7382
  --bs-spinner-height: 2rem;
7383
  --bs-spinner-vertical-align: -0.125em;
7384
  --bs-spinner-border-width: 0.25em;
7385
  --bs-spinner-animation-speed: 0.75s;
7386
  --bs-spinner-animation-name: spinner-border;
7387
  border: var(--bs-spinner-border-width) solid currentcolor;
7388
  border-right-color: transparent;
7389
}
7390
 
7391
.spinner-border-sm {
7392
  --bs-spinner-width: 1rem;
7393
  --bs-spinner-height: 1rem;
7394
  --bs-spinner-border-width: 0.2em;
7395
}
7396
 
7397
@keyframes spinner-grow {
7398
  0% {
7399
    transform: scale(0);
7400
  }
16848 stevensc 7401
 
16825 efrain 7402
  50% {
7403
    opacity: 1;
7404
    transform: none;
7405
  }
7406
}
16848 stevensc 7407
 
16825 efrain 7408
.spinner-grow {
7409
  --bs-spinner-width: 2rem;
7410
  --bs-spinner-height: 2rem;
7411
  --bs-spinner-vertical-align: -0.125em;
7412
  --bs-spinner-animation-speed: 0.75s;
7413
  --bs-spinner-animation-name: spinner-grow;
7414
  background-color: currentcolor;
7415
  opacity: 0;
7416
}
7417
 
7418
.spinner-grow-sm {
7419
  --bs-spinner-width: 1rem;
7420
  --bs-spinner-height: 1rem;
7421
}
7422
 
7423
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7424
 
16825 efrain 7425
  .spinner-border,
7426
  .spinner-grow {
7427
    --bs-spinner-animation-speed: 1.5s;
7428
  }
7429
}
16848 stevensc 7430
 
16825 efrain 7431
.clearfix::after {
7432
  display: block;
7433
  clear: both;
7434
  content: "";
7435
}
7436
 
7437
.text-bg-primary {
7438
  color: #fff !important;
7439
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7440
}
7441
 
7442
.text-bg-secondary {
7443
  color: #fff !important;
7444
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7445
}
7446
 
7447
.text-bg-success {
7448
  color: #fff !important;
7449
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7450
}
7451
 
7452
.text-bg-info {
7453
  color: #000 !important;
7454
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7455
}
7456
 
7457
.text-bg-warning {
7458
  color: #000 !important;
7459
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7460
}
7461
 
7462
.text-bg-danger {
7463
  color: #fff !important;
7464
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7465
}
7466
 
7467
.text-bg-light {
7468
  color: #000 !important;
7469
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7470
}
7471
 
7472
.text-bg-dark {
7473
  color: #fff !important;
7474
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7475
}
7476
 
7477
.link-primary {
7478
  color: #6571ff !important;
7479
}
16848 stevensc 7480
 
7481
.link-primary:hover,
7482
.link-primary:focus {
16825 efrain 7483
  color: #515acc !important;
7484
}
7485
 
7486
.link-secondary {
7487
  color: #7987a1 !important;
7488
}
16848 stevensc 7489
 
7490
.link-secondary:hover,
7491
.link-secondary:focus {
16825 efrain 7492
  color: #616c81 !important;
7493
}
7494
 
7495
.link-success {
7496
  color: #05a34a !important;
7497
}
16848 stevensc 7498
 
7499
.link-success:hover,
7500
.link-success:focus {
16825 efrain 7501
  color: #04823b !important;
7502
}
7503
 
7504
.link-info {
7505
  color: #66d1d1 !important;
7506
}
16848 stevensc 7507
 
7508
.link-info:hover,
7509
.link-info:focus {
16825 efrain 7510
  color: #85dada !important;
7511
}
7512
 
7513
.link-warning {
7514
  color: #fbbc06 !important;
7515
}
16848 stevensc 7516
 
7517
.link-warning:hover,
7518
.link-warning:focus {
16825 efrain 7519
  color: #fcc938 !important;
7520
}
7521
 
7522
.link-danger {
7523
  color: #ff3366 !important;
7524
}
16848 stevensc 7525
 
7526
.link-danger:hover,
7527
.link-danger:focus {
16825 efrain 7528
  color: #cc2952 !important;
7529
}
7530
 
7531
.link-light {
7532
  color: #e9ecef !important;
7533
}
16848 stevensc 7534
 
7535
.link-light:hover,
7536
.link-light:focus {
16825 efrain 7537
  color: #edf0f2 !important;
7538
}
7539
 
7540
.link-dark {
7541
  color: #060c17 !important;
7542
}
16848 stevensc 7543
 
7544
.link-dark:hover,
7545
.link-dark:focus {
16825 efrain 7546
  color: #050a12 !important;
7547
}
7548
 
7549
.ratio {
7550
  position: relative;
7551
  width: 100%;
7552
}
16848 stevensc 7553
 
16825 efrain 7554
.ratio::before {
7555
  display: block;
7556
  padding-top: var(--bs-aspect-ratio);
7557
  content: "";
7558
}
16848 stevensc 7559
 
7560
.ratio>* {
16825 efrain 7561
  position: absolute;
7562
  top: 0;
7563
  left: 0;
7564
  width: 100%;
7565
  height: 100%;
7566
}
7567
 
7568
.ratio-1x1 {
7569
  --bs-aspect-ratio: 100%;
7570
}
7571
 
7572
.ratio-4x3 {
7573
  --bs-aspect-ratio: 75%;
7574
}
7575
 
7576
.ratio-16x9 {
7577
  --bs-aspect-ratio: 56.25%;
7578
}
7579
 
7580
.ratio-21x9 {
7581
  --bs-aspect-ratio: 42.8571428571%;
7582
}
7583
 
7584
.fixed-top {
7585
  position: fixed;
7586
  top: 0;
7587
  right: 0;
7588
  left: 0;
7589
  z-index: 1030;
7590
}
7591
 
7592
.fixed-bottom {
7593
  position: fixed;
7594
  right: 0;
7595
  bottom: 0;
7596
  left: 0;
7597
  z-index: 1030;
7598
}
7599
 
7600
.sticky-top {
7601
  position: sticky;
7602
  top: 0;
7603
  z-index: 1020;
7604
}
7605
 
7606
.sticky-bottom {
7607
  position: sticky;
7608
  bottom: 0;
7609
  z-index: 1020;
7610
}
7611
 
7612
@media (min-width: 576px) {
7613
  .sticky-sm-top {
7614
    position: sticky;
7615
    top: 0;
7616
    z-index: 1020;
7617
  }
16848 stevensc 7618
 
16825 efrain 7619
  .sticky-sm-bottom {
7620
    position: sticky;
7621
    bottom: 0;
7622
    z-index: 1020;
7623
  }
7624
}
16848 stevensc 7625
 
16825 efrain 7626
@media (min-width: 768px) {
7627
  .sticky-md-top {
7628
    position: sticky;
7629
    top: 0;
7630
    z-index: 1020;
7631
  }
16848 stevensc 7632
 
16825 efrain 7633
  .sticky-md-bottom {
7634
    position: sticky;
7635
    bottom: 0;
7636
    z-index: 1020;
7637
  }
7638
}
16848 stevensc 7639
 
16825 efrain 7640
@media (min-width: 992px) {
7641
  .sticky-lg-top {
7642
    position: sticky;
7643
    top: 0;
7644
    z-index: 1020;
7645
  }
16848 stevensc 7646
 
16825 efrain 7647
  .sticky-lg-bottom {
7648
    position: sticky;
7649
    bottom: 0;
7650
    z-index: 1020;
7651
  }
7652
}
16848 stevensc 7653
 
16825 efrain 7654
@media (min-width: 1200px) {
7655
  .sticky-xl-top {
7656
    position: sticky;
7657
    top: 0;
7658
    z-index: 1020;
7659
  }
16848 stevensc 7660
 
16825 efrain 7661
  .sticky-xl-bottom {
7662
    position: sticky;
7663
    bottom: 0;
7664
    z-index: 1020;
7665
  }
7666
}
16848 stevensc 7667
 
16825 efrain 7668
@media (min-width: 1400px) {
7669
  .sticky-xxl-top {
7670
    position: sticky;
7671
    top: 0;
7672
    z-index: 1020;
7673
  }
16848 stevensc 7674
 
16825 efrain 7675
  .sticky-xxl-bottom {
7676
    position: sticky;
7677
    bottom: 0;
7678
    z-index: 1020;
7679
  }
7680
}
16848 stevensc 7681
 
16825 efrain 7682
.hstack {
7683
  display: flex;
7684
  flex-direction: row;
7685
  align-items: center;
7686
  align-self: stretch;
7687
}
7688
 
7689
.vstack {
7690
  display: flex;
7691
  flex: 1 1 auto;
7692
  flex-direction: column;
7693
  align-self: stretch;
7694
}
7695
 
7696
.visually-hidden,
7697
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7698
  position: absolute !important;
7699
  width: 1px !important;
7700
  height: 1px !important;
7701
  padding: 0 !important;
7702
  margin: -1px !important;
7703
  overflow: hidden !important;
7704
  clip: rect(0, 0, 0, 0) !important;
7705
  white-space: nowrap !important;
7706
  border: 0 !important;
7707
}
7708
 
7709
.stretched-link::after {
7710
  position: absolute;
7711
  top: 0;
7712
  right: 0;
7713
  bottom: 0;
7714
  left: 0;
7715
  z-index: 1;
7716
  content: "";
7717
}
7718
 
7719
.text-truncate {
7720
  overflow: hidden;
7721
  text-overflow: ellipsis;
7722
  white-space: nowrap;
7723
}
7724
 
7725
.vr {
7726
  display: inline-block;
7727
  align-self: stretch;
7728
  width: 1px;
7729
  min-height: 1em;
7730
  background-color: currentcolor;
7731
  opacity: 0.1;
7732
}
7733
 
7734
.align-baseline {
7735
  vertical-align: baseline !important;
7736
}
7737
 
7738
.align-top {
7739
  vertical-align: top !important;
7740
}
7741
 
7742
.align-middle {
7743
  vertical-align: middle !important;
7744
}
7745
 
7746
.align-bottom {
7747
  vertical-align: bottom !important;
7748
}
7749
 
7750
.align-text-bottom {
7751
  vertical-align: text-bottom !important;
7752
}
7753
 
7754
.align-text-top {
7755
  vertical-align: text-top !important;
7756
}
7757
 
7758
.float-start {
7759
  float: left !important;
7760
}
7761
 
7762
.float-end {
7763
  float: right !important;
7764
}
7765
 
7766
.float-none {
7767
  float: none !important;
7768
}
7769
 
7770
.opacity-0 {
7771
  opacity: 0 !important;
7772
}
7773
 
7774
.opacity-25 {
7775
  opacity: 0.25 !important;
7776
}
7777
 
7778
.opacity-50 {
7779
  opacity: 0.5 !important;
7780
}
7781
 
7782
.opacity-75 {
7783
  opacity: 0.75 !important;
7784
}
7785
 
7786
.opacity-100 {
7787
  opacity: 1 !important;
7788
}
7789
 
7790
.overflow-auto {
7791
  overflow: auto !important;
7792
}
7793
 
7794
.overflow-hidden {
7795
  overflow: hidden !important;
7796
}
7797
 
7798
.overflow-visible {
7799
  overflow: visible !important;
7800
}
7801
 
7802
.overflow-scroll {
7803
  overflow: scroll !important;
7804
}
7805
 
7806
.d-inline {
7807
  display: inline !important;
7808
}
7809
 
7810
.d-inline-block {
7811
  display: inline-block !important;
7812
}
7813
 
7814
.d-block {
7815
  display: block !important;
7816
}
7817
 
7818
.d-grid {
7819
  display: grid !important;
7820
}
7821
 
7822
.d-table {
7823
  display: table !important;
7824
}
7825
 
7826
.d-table-row {
7827
  display: table-row !important;
7828
}
7829
 
7830
.d-table-cell {
7831
  display: table-cell !important;
7832
}
7833
 
7834
.d-flex {
7835
  display: flex !important;
7836
}
7837
 
7838
.d-inline-flex {
7839
  display: inline-flex !important;
7840
}
7841
 
16848 stevensc 7842
.d-none,
7843
.navbar .search-form {
16825 efrain 7844
  display: none !important;
7845
}
7846
 
7847
.shadow {
7848
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7849
}
7850
 
7851
.shadow-sm {
7852
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7853
}
7854
 
7855
.shadow-lg {
7856
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7857
}
7858
 
7859
.shadow-none {
7860
  box-shadow: none !important;
7861
}
7862
 
7863
.position-static {
7864
  position: static !important;
7865
}
7866
 
7867
.position-relative {
7868
  position: relative !important;
7869
}
7870
 
7871
.position-absolute {
7872
  position: absolute !important;
7873
}
7874
 
7875
.position-fixed {
7876
  position: fixed !important;
7877
}
7878
 
7879
.position-sticky {
7880
  position: sticky !important;
7881
}
7882
 
7883
.top-0 {
7884
  top: 0 !important;
7885
}
7886
 
7887
.top-10 {
7888
  top: 10% !important;
7889
}
7890
 
7891
.top-20 {
7892
  top: 20% !important;
7893
}
7894
 
7895
.top-25 {
7896
  top: 25% !important;
7897
}
7898
 
7899
.top-30 {
7900
  top: 30% !important;
7901
}
7902
 
7903
.top-40 {
7904
  top: 40% !important;
7905
}
7906
 
7907
.top-50 {
7908
  top: 50% !important;
7909
}
7910
 
7911
.top-60 {
7912
  top: 60% !important;
7913
}
7914
 
7915
.top-70 {
7916
  top: 70% !important;
7917
}
7918
 
7919
.top-75 {
7920
  top: 75% !important;
7921
}
7922
 
7923
.top-80 {
7924
  top: 80% !important;
7925
}
7926
 
7927
.top-90 {
7928
  top: 90% !important;
7929
}
7930
 
7931
.top-100 {
7932
  top: 100% !important;
7933
}
7934
 
7935
.bottom-0 {
7936
  bottom: 0 !important;
7937
}
7938
 
7939
.bottom-10 {
7940
  bottom: 10% !important;
7941
}
7942
 
7943
.bottom-20 {
7944
  bottom: 20% !important;
7945
}
7946
 
7947
.bottom-25 {
7948
  bottom: 25% !important;
7949
}
7950
 
7951
.bottom-30 {
7952
  bottom: 30% !important;
7953
}
7954
 
7955
.bottom-40 {
7956
  bottom: 40% !important;
7957
}
7958
 
7959
.bottom-50 {
7960
  bottom: 50% !important;
7961
}
7962
 
7963
.bottom-60 {
7964
  bottom: 60% !important;
7965
}
7966
 
7967
.bottom-70 {
7968
  bottom: 70% !important;
7969
}
7970
 
7971
.bottom-75 {
7972
  bottom: 75% !important;
7973
}
7974
 
7975
.bottom-80 {
7976
  bottom: 80% !important;
7977
}
7978
 
7979
.bottom-90 {
7980
  bottom: 90% !important;
7981
}
7982
 
7983
.bottom-100 {
7984
  bottom: 100% !important;
7985
}
7986
 
7987
.start-0 {
7988
  left: 0 !important;
7989
}
7990
 
7991
.start-10 {
7992
  left: 10% !important;
7993
}
7994
 
7995
.start-20 {
7996
  left: 20% !important;
7997
}
7998
 
7999
.start-25 {
8000
  left: 25% !important;
8001
}
8002
 
8003
.start-30 {
8004
  left: 30% !important;
8005
}
8006
 
8007
.start-40 {
8008
  left: 40% !important;
8009
}
8010
 
8011
.start-50 {
8012
  left: 50% !important;
8013
}
8014
 
8015
.start-60 {
8016
  left: 60% !important;
8017
}
8018
 
8019
.start-70 {
8020
  left: 70% !important;
8021
}
8022
 
8023
.start-75 {
8024
  left: 75% !important;
8025
}
8026
 
8027
.start-80 {
8028
  left: 80% !important;
8029
}
8030
 
8031
.start-90 {
8032
  left: 90% !important;
8033
}
8034
 
8035
.start-100 {
8036
  left: 100% !important;
8037
}
8038
 
8039
.end-0 {
8040
  right: 0 !important;
8041
}
8042
 
8043
.end-10 {
8044
  right: 10% !important;
8045
}
8046
 
8047
.end-20 {
8048
  right: 20% !important;
8049
}
8050
 
8051
.end-25 {
8052
  right: 25% !important;
8053
}
8054
 
8055
.end-30 {
8056
  right: 30% !important;
8057
}
8058
 
8059
.end-40 {
8060
  right: 40% !important;
8061
}
8062
 
8063
.end-50 {
8064
  right: 50% !important;
8065
}
8066
 
8067
.end-60 {
8068
  right: 60% !important;
8069
}
8070
 
8071
.end-70 {
8072
  right: 70% !important;
8073
}
8074
 
8075
.end-75 {
8076
  right: 75% !important;
8077
}
8078
 
8079
.end-80 {
8080
  right: 80% !important;
8081
}
8082
 
8083
.end-90 {
8084
  right: 90% !important;
8085
}
8086
 
8087
.end-100 {
8088
  right: 100% !important;
8089
}
8090
 
8091
.translate-middle {
8092
  transform: translate(-50%, -50%) !important;
8093
}
8094
 
8095
.translate-middle-x {
8096
  transform: translateX(-50%) !important;
8097
}
8098
 
8099
.translate-middle-y {
8100
  transform: translateY(-50%) !important;
8101
}
8102
 
8103
.border {
8104
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8105
}
8106
 
8107
.border-0 {
8108
  border: 0 !important;
8109
}
8110
 
8111
.border-top {
8112
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8113
}
8114
 
8115
.border-top-0 {
8116
  border-top: 0 !important;
8117
}
8118
 
8119
.border-end {
8120
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8121
}
8122
 
8123
.border-end-0 {
8124
  border-right: 0 !important;
8125
}
8126
 
8127
.border-bottom {
8128
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8129
}
8130
 
8131
.border-bottom-0 {
8132
  border-bottom: 0 !important;
8133
}
8134
 
8135
.border-start {
8136
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8137
}
8138
 
8139
.border-start-0 {
8140
  border-left: 0 !important;
8141
}
8142
 
8143
.border-primary {
8144
  --bs-border-opacity: 1;
8145
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8146
}
8147
 
8148
.border-secondary {
8149
  --bs-border-opacity: 1;
8150
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8151
}
8152
 
8153
.border-success {
8154
  --bs-border-opacity: 1;
8155
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8156
}
8157
 
8158
.border-info {
8159
  --bs-border-opacity: 1;
8160
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8161
}
8162
 
8163
.border-warning {
8164
  --bs-border-opacity: 1;
8165
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8166
}
8167
 
16848 stevensc 8168
.border-danger,
8169
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8170
  --bs-border-opacity: 1;
8171
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8172
}
8173
 
8174
.border-light {
8175
  --bs-border-opacity: 1;
8176
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8177
}
8178
 
8179
.border-dark {
8180
  --bs-border-opacity: 1;
8181
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8182
}
8183
 
8184
.border-white {
8185
  --bs-border-opacity: 1;
8186
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8187
}
8188
 
8189
.border-1 {
8190
  --bs-border-width: 1px;
8191
}
8192
 
8193
.border-2 {
8194
  --bs-border-width: 2px;
8195
}
8196
 
8197
.border-3 {
8198
  --bs-border-width: 3px;
8199
}
8200
 
8201
.border-4 {
8202
  --bs-border-width: 4px;
8203
}
8204
 
8205
.border-5 {
8206
  --bs-border-width: 5px;
8207
}
8208
 
8209
.border-opacity-10 {
8210
  --bs-border-opacity: 0.1;
8211
}
8212
 
8213
.border-opacity-25 {
8214
  --bs-border-opacity: 0.25;
8215
}
8216
 
8217
.border-opacity-50 {
8218
  --bs-border-opacity: 0.5;
8219
}
8220
 
8221
.border-opacity-75 {
8222
  --bs-border-opacity: 0.75;
8223
}
8224
 
8225
.border-opacity-100 {
8226
  --bs-border-opacity: 1;
8227
}
8228
 
16854 stevensc 8229
.w-fit {
8230
  width: fit-content !important;
8231
}
8232
 
16825 efrain 8233
.w-25 {
8234
  width: 25% !important;
8235
}
8236
 
8237
.w-50 {
8238
  width: 50% !important;
8239
}
8240
 
8241
.w-75 {
8242
  width: 75% !important;
8243
}
8244
 
8245
.w-100 {
8246
  width: 100% !important;
8247
}
8248
 
8249
.w-auto {
8250
  width: auto !important;
8251
}
8252
 
8253
.mw-100 {
8254
  max-width: 100% !important;
8255
}
8256
 
8257
.vw-100 {
8258
  width: 100vw !important;
8259
}
8260
 
8261
.min-vw-100 {
8262
  min-width: 100vw !important;
8263
}
8264
 
8265
.h-25 {
8266
  height: 25% !important;
8267
}
8268
 
8269
.h-50 {
8270
  height: 50% !important;
8271
}
8272
 
8273
.h-75 {
8274
  height: 75% !important;
8275
}
8276
 
8277
.h-100 {
8278
  height: 100% !important;
8279
}
8280
 
8281
.h-auto {
8282
  height: auto !important;
8283
}
8284
 
8285
.mh-100 {
8286
  max-height: 100% !important;
8287
}
8288
 
8289
.vh-100 {
8290
  height: 100vh !important;
8291
}
8292
 
8293
.min-vh-100 {
8294
  min-height: 100vh !important;
8295
}
8296
 
8297
.flex-fill {
8298
  flex: 1 1 auto !important;
8299
}
8300
 
8301
.flex-row {
8302
  flex-direction: row !important;
8303
}
8304
 
8305
.flex-column {
8306
  flex-direction: column !important;
8307
}
8308
 
8309
.flex-row-reverse {
8310
  flex-direction: row-reverse !important;
8311
}
8312
 
8313
.flex-column-reverse {
8314
  flex-direction: column-reverse !important;
8315
}
8316
 
8317
.flex-grow-0 {
8318
  flex-grow: 0 !important;
8319
}
8320
 
8321
.flex-grow-1 {
8322
  flex-grow: 1 !important;
8323
}
8324
 
8325
.flex-shrink-0 {
8326
  flex-shrink: 0 !important;
8327
}
8328
 
8329
.flex-shrink-1 {
8330
  flex-shrink: 1 !important;
8331
}
8332
 
8333
.flex-wrap {
8334
  flex-wrap: wrap !important;
8335
}
8336
 
8337
.flex-nowrap {
8338
  flex-wrap: nowrap !important;
8339
}
8340
 
8341
.flex-wrap-reverse {
8342
  flex-wrap: wrap-reverse !important;
8343
}
8344
 
8345
.justify-content-start {
8346
  justify-content: flex-start !important;
8347
}
8348
 
8349
.justify-content-end {
8350
  justify-content: flex-end !important;
8351
}
8352
 
16848 stevensc 8353
.justify-content-center,
8354
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8355
  justify-content: center !important;
8356
}
8357
 
8358
.justify-content-between {
8359
  justify-content: space-between !important;
8360
}
8361
 
8362
.justify-content-around {
8363
  justify-content: space-around !important;
8364
}
8365
 
8366
.justify-content-evenly {
8367
  justify-content: space-evenly !important;
8368
}
8369
 
8370
.align-items-start {
8371
  align-items: flex-start !important;
8372
}
8373
 
8374
.align-items-end {
8375
  align-items: flex-end !important;
8376
}
8377
 
16848 stevensc 8378
.align-items-center,
8379
.navbar .search-form {
16825 efrain 8380
  align-items: center !important;
8381
}
8382
 
8383
.align-items-baseline {
8384
  align-items: baseline !important;
8385
}
8386
 
8387
.align-items-stretch {
8388
  align-items: stretch !important;
8389
}
8390
 
8391
.align-content-start {
8392
  align-content: flex-start !important;
8393
}
8394
 
8395
.align-content-end {
8396
  align-content: flex-end !important;
8397
}
8398
 
8399
.align-content-center {
8400
  align-content: center !important;
8401
}
8402
 
8403
.align-content-between {
8404
  align-content: space-between !important;
8405
}
8406
 
8407
.align-content-around {
8408
  align-content: space-around !important;
8409
}
8410
 
8411
.align-content-stretch {
8412
  align-content: stretch !important;
8413
}
8414
 
8415
.align-self-auto {
8416
  align-self: auto !important;
8417
}
8418
 
8419
.align-self-start {
8420
  align-self: flex-start !important;
8421
}
8422
 
8423
.align-self-end {
8424
  align-self: flex-end !important;
8425
}
8426
 
8427
.align-self-center {
8428
  align-self: center !important;
8429
}
8430
 
8431
.align-self-baseline {
8432
  align-self: baseline !important;
8433
}
8434
 
8435
.align-self-stretch {
8436
  align-self: stretch !important;
8437
}
8438
 
8439
.order-first {
8440
  order: -1 !important;
8441
}
8442
 
8443
.order-0 {
8444
  order: 0 !important;
8445
}
8446
 
8447
.order-1 {
8448
  order: 1 !important;
8449
}
8450
 
8451
.order-2 {
8452
  order: 2 !important;
8453
}
8454
 
8455
.order-3 {
8456
  order: 3 !important;
8457
}
8458
 
8459
.order-4 {
8460
  order: 4 !important;
8461
}
8462
 
8463
.order-5 {
8464
  order: 5 !important;
8465
}
8466
 
8467
.order-last {
8468
  order: 6 !important;
8469
}
8470
 
8471
.m-0 {
8472
  margin: 0 !important;
8473
}
8474
 
8475
.m-1 {
8476
  margin: 0.25rem !important;
8477
}
8478
 
8479
.m-2 {
8480
  margin: 0.5rem !important;
8481
}
8482
 
8483
.m-3 {
8484
  margin: 1rem !important;
8485
}
8486
 
8487
.m-4 {
8488
  margin: 1.5rem !important;
8489
}
8490
 
8491
.m-5 {
8492
  margin: 3rem !important;
8493
}
8494
 
8495
.m-6 {
8496
  margin: 4.5rem !important;
8497
}
8498
 
8499
.m-7 {
8500
  margin: 6rem !important;
8501
}
8502
 
8503
.m-auto {
8504
  margin: auto !important;
8505
}
8506
 
8507
.mx-0 {
8508
  margin-right: 0 !important;
8509
  margin-left: 0 !important;
8510
}
8511
 
8512
.mx-1 {
8513
  margin-right: 0.25rem !important;
8514
  margin-left: 0.25rem !important;
8515
}
8516
 
8517
.mx-2 {
8518
  margin-right: 0.5rem !important;
8519
  margin-left: 0.5rem !important;
8520
}
8521
 
8522
.mx-3 {
8523
  margin-right: 1rem !important;
8524
  margin-left: 1rem !important;
8525
}
8526
 
8527
.mx-4 {
8528
  margin-right: 1.5rem !important;
8529
  margin-left: 1.5rem !important;
8530
}
8531
 
8532
.mx-5 {
8533
  margin-right: 3rem !important;
8534
  margin-left: 3rem !important;
8535
}
8536
 
8537
.mx-6 {
8538
  margin-right: 4.5rem !important;
8539
  margin-left: 4.5rem !important;
8540
}
8541
 
8542
.mx-7 {
8543
  margin-right: 6rem !important;
8544
  margin-left: 6rem !important;
8545
}
8546
 
8547
.mx-auto {
8548
  margin-right: auto !important;
8549
  margin-left: auto !important;
8550
}
8551
 
8552
.my-0 {
8553
  margin-top: 0 !important;
8554
  margin-bottom: 0 !important;
8555
}
8556
 
8557
.my-1 {
8558
  margin-top: 0.25rem !important;
8559
  margin-bottom: 0.25rem !important;
8560
}
8561
 
8562
.my-2 {
8563
  margin-top: 0.5rem !important;
8564
  margin-bottom: 0.5rem !important;
8565
}
8566
 
8567
.my-3 {
8568
  margin-top: 1rem !important;
8569
  margin-bottom: 1rem !important;
8570
}
8571
 
8572
.my-4 {
8573
  margin-top: 1.5rem !important;
8574
  margin-bottom: 1.5rem !important;
8575
}
8576
 
8577
.my-5 {
8578
  margin-top: 3rem !important;
8579
  margin-bottom: 3rem !important;
8580
}
8581
 
8582
.my-6 {
8583
  margin-top: 4.5rem !important;
8584
  margin-bottom: 4.5rem !important;
8585
}
8586
 
8587
.my-7 {
8588
  margin-top: 6rem !important;
8589
  margin-bottom: 6rem !important;
8590
}
8591
 
8592
.my-auto {
8593
  margin-top: auto !important;
8594
  margin-bottom: auto !important;
8595
}
8596
 
8597
.mt-0 {
8598
  margin-top: 0 !important;
8599
}
8600
 
8601
.mt-1 {
8602
  margin-top: 0.25rem !important;
8603
}
8604
 
8605
.mt-2 {
8606
  margin-top: 0.5rem !important;
8607
}
8608
 
16848 stevensc 8609
.mt-3,
8610
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8611
  margin-top: 1rem !important;
8612
}
8613
 
8614
.mt-4 {
8615
  margin-top: 1.5rem !important;
8616
}
8617
 
8618
.mt-5 {
8619
  margin-top: 3rem !important;
8620
}
8621
 
8622
.mt-6 {
8623
  margin-top: 4.5rem !important;
8624
}
8625
 
8626
.mt-7 {
8627
  margin-top: 6rem !important;
8628
}
8629
 
8630
.mt-auto {
8631
  margin-top: auto !important;
8632
}
8633
 
8634
.me-0 {
8635
  margin-right: 0 !important;
8636
}
8637
 
8638
.me-1 {
8639
  margin-right: 0.25rem !important;
8640
}
8641
 
8642
.me-2 {
8643
  margin-right: 0.5rem !important;
8644
}
8645
 
8646
.me-3 {
8647
  margin-right: 1rem !important;
8648
}
8649
 
8650
.me-4 {
8651
  margin-right: 1.5rem !important;
8652
}
8653
 
8654
.me-5 {
8655
  margin-right: 3rem !important;
8656
}
8657
 
8658
.me-6 {
8659
  margin-right: 4.5rem !important;
8660
}
8661
 
8662
.me-7 {
8663
  margin-right: 6rem !important;
8664
}
8665
 
8666
.me-auto {
8667
  margin-right: auto !important;
8668
}
8669
 
8670
.mb-0 {
8671
  margin-bottom: 0 !important;
8672
}
8673
 
16848 stevensc 8674
.mb-1,
8675
.example .btn-group {
16825 efrain 8676
  margin-bottom: 0.25rem !important;
8677
}
8678
 
8679
.mb-2 {
8680
  margin-bottom: 0.5rem !important;
8681
}
8682
 
8683
.mb-3 {
8684
  margin-bottom: 1rem !important;
8685
}
8686
 
8687
.mb-4 {
8688
  margin-bottom: 1.5rem !important;
8689
}
8690
 
8691
.mb-5 {
8692
  margin-bottom: 3rem !important;
8693
}
8694
 
8695
.mb-6 {
8696
  margin-bottom: 4.5rem !important;
8697
}
8698
 
8699
.mb-7 {
8700
  margin-bottom: 6rem !important;
8701
}
8702
 
8703
.mb-auto {
8704
  margin-bottom: auto !important;
8705
}
8706
 
8707
.ms-0 {
8708
  margin-left: 0 !important;
8709
}
8710
 
8711
.ms-1 {
8712
  margin-left: 0.25rem !important;
8713
}
8714
 
8715
.ms-2 {
8716
  margin-left: 0.5rem !important;
8717
}
8718
 
8719
.ms-3 {
8720
  margin-left: 1rem !important;
8721
}
8722
 
8723
.ms-4 {
8724
  margin-left: 1.5rem !important;
8725
}
8726
 
8727
.ms-5 {
8728
  margin-left: 3rem !important;
8729
}
8730
 
8731
.ms-6 {
8732
  margin-left: 4.5rem !important;
8733
}
8734
 
8735
.ms-7 {
8736
  margin-left: 6rem !important;
8737
}
8738
 
8739
.ms-auto {
8740
  margin-left: auto !important;
8741
}
8742
 
8743
.m-n1 {
8744
  margin: -0.25rem !important;
8745
}
8746
 
8747
.m-n2 {
8748
  margin: -0.5rem !important;
8749
}
8750
 
8751
.m-n3 {
8752
  margin: -1rem !important;
8753
}
8754
 
8755
.m-n4 {
8756
  margin: -1.5rem !important;
8757
}
8758
 
8759
.m-n5 {
8760
  margin: -3rem !important;
8761
}
8762
 
8763
.m-n6 {
8764
  margin: -4.5rem !important;
8765
}
8766
 
8767
.m-n7 {
8768
  margin: -6rem !important;
8769
}
8770
 
8771
.mx-n1 {
8772
  margin-right: -0.25rem !important;
8773
  margin-left: -0.25rem !important;
8774
}
8775
 
8776
.mx-n2 {
8777
  margin-right: -0.5rem !important;
8778
  margin-left: -0.5rem !important;
8779
}
8780
 
8781
.mx-n3 {
8782
  margin-right: -1rem !important;
8783
  margin-left: -1rem !important;
8784
}
8785
 
8786
.mx-n4 {
8787
  margin-right: -1.5rem !important;
8788
  margin-left: -1.5rem !important;
8789
}
8790
 
8791
.mx-n5 {
8792
  margin-right: -3rem !important;
8793
  margin-left: -3rem !important;
8794
}
8795
 
8796
.mx-n6 {
8797
  margin-right: -4.5rem !important;
8798
  margin-left: -4.5rem !important;
8799
}
8800
 
8801
.mx-n7 {
8802
  margin-right: -6rem !important;
8803
  margin-left: -6rem !important;
8804
}
8805
 
8806
.my-n1 {
8807
  margin-top: -0.25rem !important;
8808
  margin-bottom: -0.25rem !important;
8809
}
8810
 
8811
.my-n2 {
8812
  margin-top: -0.5rem !important;
8813
  margin-bottom: -0.5rem !important;
8814
}
8815
 
8816
.my-n3 {
8817
  margin-top: -1rem !important;
8818
  margin-bottom: -1rem !important;
8819
}
8820
 
8821
.my-n4 {
8822
  margin-top: -1.5rem !important;
8823
  margin-bottom: -1.5rem !important;
8824
}
8825
 
8826
.my-n5 {
8827
  margin-top: -3rem !important;
8828
  margin-bottom: -3rem !important;
8829
}
8830
 
8831
.my-n6 {
8832
  margin-top: -4.5rem !important;
8833
  margin-bottom: -4.5rem !important;
8834
}
8835
 
8836
.my-n7 {
8837
  margin-top: -6rem !important;
8838
  margin-bottom: -6rem !important;
8839
}
8840
 
8841
.mt-n1 {
8842
  margin-top: -0.25rem !important;
8843
}
8844
 
8845
.mt-n2 {
8846
  margin-top: -0.5rem !important;
8847
}
8848
 
8849
.mt-n3 {
8850
  margin-top: -1rem !important;
8851
}
8852
 
8853
.mt-n4 {
8854
  margin-top: -1.5rem !important;
8855
}
8856
 
8857
.mt-n5 {
8858
  margin-top: -3rem !important;
8859
}
8860
 
8861
.mt-n6 {
8862
  margin-top: -4.5rem !important;
8863
}
8864
 
8865
.mt-n7 {
8866
  margin-top: -6rem !important;
8867
}
8868
 
8869
.me-n1 {
8870
  margin-right: -0.25rem !important;
8871
}
8872
 
8873
.me-n2 {
8874
  margin-right: -0.5rem !important;
8875
}
8876
 
8877
.me-n3 {
8878
  margin-right: -1rem !important;
8879
}
8880
 
8881
.me-n4 {
8882
  margin-right: -1.5rem !important;
8883
}
8884
 
8885
.me-n5 {
8886
  margin-right: -3rem !important;
8887
}
8888
 
8889
.me-n6 {
8890
  margin-right: -4.5rem !important;
8891
}
8892
 
8893
.me-n7 {
8894
  margin-right: -6rem !important;
8895
}
8896
 
8897
.mb-n1 {
8898
  margin-bottom: -0.25rem !important;
8899
}
8900
 
8901
.mb-n2 {
8902
  margin-bottom: -0.5rem !important;
8903
}
8904
 
8905
.mb-n3 {
8906
  margin-bottom: -1rem !important;
8907
}
8908
 
8909
.mb-n4 {
8910
  margin-bottom: -1.5rem !important;
8911
}
8912
 
8913
.mb-n5 {
8914
  margin-bottom: -3rem !important;
8915
}
8916
 
8917
.mb-n6 {
8918
  margin-bottom: -4.5rem !important;
8919
}
8920
 
8921
.mb-n7 {
8922
  margin-bottom: -6rem !important;
8923
}
8924
 
8925
.ms-n1 {
8926
  margin-left: -0.25rem !important;
8927
}
8928
 
8929
.ms-n2 {
8930
  margin-left: -0.5rem !important;
8931
}
8932
 
8933
.ms-n3 {
8934
  margin-left: -1rem !important;
8935
}
8936
 
8937
.ms-n4 {
8938
  margin-left: -1.5rem !important;
8939
}
8940
 
8941
.ms-n5 {
8942
  margin-left: -3rem !important;
8943
}
8944
 
8945
.ms-n6 {
8946
  margin-left: -4.5rem !important;
8947
}
8948
 
8949
.ms-n7 {
8950
  margin-left: -6rem !important;
8951
}
8952
 
8953
.p-0 {
8954
  padding: 0 !important;
8955
}
8956
 
8957
.p-1 {
8958
  padding: 0.25rem !important;
8959
}
8960
 
8961
.p-2 {
8962
  padding: 0.5rem !important;
8963
}
8964
 
8965
.p-3 {
8966
  padding: 1rem !important;
8967
}
8968
 
8969
.p-4 {
8970
  padding: 1.5rem !important;
8971
}
8972
 
8973
.p-5 {
8974
  padding: 3rem !important;
8975
}
8976
 
8977
.p-6 {
8978
  padding: 4.5rem !important;
8979
}
8980
 
8981
.p-7 {
8982
  padding: 6rem !important;
8983
}
8984
 
8985
.px-0 {
8986
  padding-right: 0 !important;
8987
  padding-left: 0 !important;
8988
}
8989
 
8990
.px-1 {
8991
  padding-right: 0.25rem !important;
8992
  padding-left: 0.25rem !important;
8993
}
8994
 
8995
.px-2 {
8996
  padding-right: 0.5rem !important;
8997
  padding-left: 0.5rem !important;
8998
}
8999
 
9000
.px-3 {
9001
  padding-right: 1rem !important;
9002
  padding-left: 1rem !important;
9003
}
9004
 
9005
.px-4 {
9006
  padding-right: 1.5rem !important;
9007
  padding-left: 1.5rem !important;
9008
}
9009
 
9010
.px-5 {
9011
  padding-right: 3rem !important;
9012
  padding-left: 3rem !important;
9013
}
9014
 
9015
.px-6 {
9016
  padding-right: 4.5rem !important;
9017
  padding-left: 4.5rem !important;
9018
}
9019
 
9020
.px-7 {
9021
  padding-right: 6rem !important;
9022
  padding-left: 6rem !important;
9023
}
9024
 
9025
.py-0 {
9026
  padding-top: 0 !important;
9027
  padding-bottom: 0 !important;
9028
}
9029
 
9030
.py-1 {
9031
  padding-top: 0.25rem !important;
9032
  padding-bottom: 0.25rem !important;
9033
}
9034
 
9035
.py-2 {
9036
  padding-top: 0.5rem !important;
9037
  padding-bottom: 0.5rem !important;
9038
}
9039
 
9040
.py-3 {
9041
  padding-top: 1rem !important;
9042
  padding-bottom: 1rem !important;
9043
}
9044
 
9045
.py-4 {
9046
  padding-top: 1.5rem !important;
9047
  padding-bottom: 1.5rem !important;
9048
}
9049
 
9050
.py-5 {
9051
  padding-top: 3rem !important;
9052
  padding-bottom: 3rem !important;
9053
}
9054
 
9055
.py-6 {
9056
  padding-top: 4.5rem !important;
9057
  padding-bottom: 4.5rem !important;
9058
}
9059
 
9060
.py-7 {
9061
  padding-top: 6rem !important;
9062
  padding-bottom: 6rem !important;
9063
}
9064
 
9065
.pt-0 {
9066
  padding-top: 0 !important;
9067
}
9068
 
9069
.pt-1 {
9070
  padding-top: 0.25rem !important;
9071
}
9072
 
9073
.pt-2 {
9074
  padding-top: 0.5rem !important;
9075
}
9076
 
9077
.pt-3 {
9078
  padding-top: 1rem !important;
9079
}
9080
 
9081
.pt-4 {
9082
  padding-top: 1.5rem !important;
9083
}
9084
 
9085
.pt-5 {
9086
  padding-top: 3rem !important;
9087
}
9088
 
9089
.pt-6 {
9090
  padding-top: 4.5rem !important;
9091
}
9092
 
9093
.pt-7 {
9094
  padding-top: 6rem !important;
9095
}
9096
 
9097
.pe-0 {
9098
  padding-right: 0 !important;
9099
}
9100
 
9101
.pe-1 {
9102
  padding-right: 0.25rem !important;
9103
}
9104
 
9105
.pe-2 {
9106
  padding-right: 0.5rem !important;
9107
}
9108
 
9109
.pe-3 {
9110
  padding-right: 1rem !important;
9111
}
9112
 
9113
.pe-4 {
9114
  padding-right: 1.5rem !important;
9115
}
9116
 
9117
.pe-5 {
9118
  padding-right: 3rem !important;
9119
}
9120
 
9121
.pe-6 {
9122
  padding-right: 4.5rem !important;
9123
}
9124
 
9125
.pe-7 {
9126
  padding-right: 6rem !important;
9127
}
9128
 
9129
.pb-0 {
9130
  padding-bottom: 0 !important;
9131
}
9132
 
9133
.pb-1 {
9134
  padding-bottom: 0.25rem !important;
9135
}
9136
 
9137
.pb-2 {
9138
  padding-bottom: 0.5rem !important;
9139
}
9140
 
9141
.pb-3 {
9142
  padding-bottom: 1rem !important;
9143
}
9144
 
9145
.pb-4 {
9146
  padding-bottom: 1.5rem !important;
9147
}
9148
 
9149
.pb-5 {
9150
  padding-bottom: 3rem !important;
9151
}
9152
 
9153
.pb-6 {
9154
  padding-bottom: 4.5rem !important;
9155
}
9156
 
9157
.pb-7 {
9158
  padding-bottom: 6rem !important;
9159
}
9160
 
9161
.ps-0 {
9162
  padding-left: 0 !important;
9163
}
9164
 
9165
.ps-1 {
9166
  padding-left: 0.25rem !important;
9167
}
9168
 
9169
.ps-2 {
9170
  padding-left: 0.5rem !important;
9171
}
9172
 
9173
.ps-3 {
9174
  padding-left: 1rem !important;
9175
}
9176
 
9177
.ps-4 {
9178
  padding-left: 1.5rem !important;
9179
}
9180
 
9181
.ps-5 {
9182
  padding-left: 3rem !important;
9183
}
9184
 
9185
.ps-6 {
9186
  padding-left: 4.5rem !important;
9187
}
9188
 
9189
.ps-7 {
9190
  padding-left: 6rem !important;
9191
}
9192
 
9193
.gap-0 {
9194
  gap: 0 !important;
9195
}
9196
 
9197
.gap-1 {
9198
  gap: 0.25rem !important;
9199
}
9200
 
9201
.gap-2 {
9202
  gap: 0.5rem !important;
9203
}
9204
 
9205
.gap-3 {
9206
  gap: 1rem !important;
9207
}
9208
 
9209
.gap-4 {
9210
  gap: 1.5rem !important;
9211
}
9212
 
9213
.gap-5 {
9214
  gap: 3rem !important;
9215
}
9216
 
9217
.gap-6 {
9218
  gap: 4.5rem !important;
9219
}
9220
 
9221
.gap-7 {
9222
  gap: 6rem !important;
9223
}
9224
 
9225
.font-monospace {
9226
  font-family: var(--bs-font-monospace) !important;
9227
}
9228
 
9229
.fs-1 {
9230
  font-size: calc(1.375rem + 1.5vw) !important;
9231
}
9232
 
9233
.fs-2 {
9234
  font-size: calc(1.325rem + 0.9vw) !important;
9235
}
9236
 
9237
.fs-3 {
9238
  font-size: calc(1.275rem + 0.3vw) !important;
9239
}
9240
 
9241
.fs-4 {
9242
  font-size: 1.25rem !important;
9243
}
9244
 
9245
.fs-5 {
9246
  font-size: 1rem !important;
9247
}
9248
 
9249
.fs-6 {
9250
  font-size: 0.875rem !important;
9251
}
9252
 
9253
.fst-italic {
9254
  font-style: italic !important;
9255
}
9256
 
9257
.fst-normal {
9258
  font-style: normal !important;
9259
}
9260
 
9261
.fw-light {
9262
  font-weight: 300 !important;
9263
}
9264
 
9265
.fw-lighter {
9266
  font-weight: lighter !important;
9267
}
9268
 
9269
.fw-normal {
9270
  font-weight: 400 !important;
9271
}
9272
 
9273
.fw-bold {
9274
  font-weight: 500 !important;
9275
}
9276
 
9277
.fw-semibold {
9278
  font-weight: 600 !important;
9279
}
9280
 
9281
.fw-bolder {
9282
  font-weight: 700 !important;
9283
}
9284
 
9285
.lh-1 {
9286
  line-height: 1 !important;
9287
}
9288
 
9289
.lh-sm {
9290
  line-height: 1.25 !important;
9291
}
9292
 
9293
.lh-base {
9294
  line-height: 1.5 !important;
9295
}
9296
 
9297
.lh-lg {
9298
  line-height: 2 !important;
9299
}
9300
 
9301
.text-start {
9302
  text-align: left !important;
9303
}
9304
 
9305
.text-end {
9306
  text-align: right !important;
9307
}
9308
 
9309
.text-center {
9310
  text-align: center !important;
9311
}
9312
 
9313
.text-decoration-none {
9314
  text-decoration: none !important;
9315
}
9316
 
9317
.text-decoration-underline {
9318
  text-decoration: underline !important;
9319
}
9320
 
9321
.text-decoration-line-through {
9322
  text-decoration: line-through !important;
9323
}
9324
 
9325
.text-lowercase {
9326
  text-transform: lowercase !important;
9327
}
9328
 
9329
.text-uppercase {
9330
  text-transform: uppercase !important;
9331
}
9332
 
9333
.text-capitalize {
9334
  text-transform: capitalize !important;
9335
}
9336
 
9337
.text-wrap {
9338
  white-space: normal !important;
9339
}
9340
 
9341
.text-nowrap {
9342
  white-space: nowrap !important;
9343
}
9344
 
9345
/* rtl:begin:remove */
9346
.text-break {
9347
  word-wrap: break-word !important;
9348
  word-break: break-word !important;
9349
}
9350
 
9351
/* rtl:end:remove */
9352
.text-primary {
9353
  --bs-text-opacity: 1;
9354
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9355
}
9356
 
9357
.text-secondary {
9358
  --bs-text-opacity: 1;
9359
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9360
}
9361
 
9362
.text-success {
9363
  --bs-text-opacity: 1;
9364
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9365
}
9366
 
9367
.text-info {
9368
  --bs-text-opacity: 1;
9369
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9370
}
9371
 
9372
.text-warning {
9373
  --bs-text-opacity: 1;
9374
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9375
}
9376
 
9377
.text-danger {
9378
  --bs-text-opacity: 1;
9379
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9380
}
9381
 
9382
.text-light {
9383
  --bs-text-opacity: 1;
9384
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9385
}
9386
 
9387
.text-dark {
9388
  --bs-text-opacity: 1;
9389
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9390
}
9391
 
9392
.text-black {
9393
  --bs-text-opacity: 1;
9394
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9395
}
9396
 
9397
.text-white {
9398
  --bs-text-opacity: 1;
9399
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9400
}
9401
 
9402
.text-body {
9403
  --bs-text-opacity: 1;
9404
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9405
}
9406
 
16848 stevensc 9407
.text-muted,
9408
.dropzone.dz-clickable .dz-message * {
16825 efrain 9409
  --bs-text-opacity: 1;
9410
  color: #7987a1 !important;
9411
}
9412
 
9413
.text-black-50 {
9414
  --bs-text-opacity: 1;
9415
  color: rgba(0, 0, 0, 0.5) !important;
9416
}
9417
 
9418
.text-white-50 {
9419
  --bs-text-opacity: 1;
9420
  color: rgba(255, 255, 255, 0.5) !important;
9421
}
9422
 
9423
.text-reset {
9424
  --bs-text-opacity: 1;
9425
  color: inherit !important;
9426
}
9427
 
9428
.text-opacity-25 {
9429
  --bs-text-opacity: 0.25;
9430
}
9431
 
9432
.text-opacity-50 {
9433
  --bs-text-opacity: 0.5;
9434
}
9435
 
9436
.text-opacity-75 {
9437
  --bs-text-opacity: 0.75;
9438
}
9439
 
9440
.text-opacity-100 {
9441
  --bs-text-opacity: 1;
9442
}
9443
 
9444
.bg-primary {
9445
  --bs-bg-opacity: 1;
9446
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9447
}
9448
 
9449
.bg-secondary {
9450
  --bs-bg-opacity: 1;
9451
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9452
}
9453
 
9454
.bg-success {
9455
  --bs-bg-opacity: 1;
9456
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9457
}
9458
 
9459
.bg-info {
9460
  --bs-bg-opacity: 1;
9461
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9462
}
9463
 
9464
.bg-warning {
9465
  --bs-bg-opacity: 1;
9466
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9467
}
9468
 
9469
.bg-danger {
9470
  --bs-bg-opacity: 1;
9471
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9472
}
9473
 
9474
.bg-light {
9475
  --bs-bg-opacity: 1;
9476
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9477
}
9478
 
9479
.bg-dark {
9480
  --bs-bg-opacity: 1;
9481
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9482
}
9483
 
9484
.bg-black {
9485
  --bs-bg-opacity: 1;
9486
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9487
}
9488
 
9489
.bg-white {
9490
  --bs-bg-opacity: 1;
9491
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9492
}
9493
 
9494
.bg-body {
9495
  --bs-bg-opacity: 1;
9496
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9497
}
9498
 
9499
.bg-transparent {
9500
  --bs-bg-opacity: 1;
9501
  background-color: transparent !important;
9502
}
9503
 
9504
.bg-opacity-10 {
9505
  --bs-bg-opacity: 0.1;
9506
}
9507
 
9508
.bg-opacity-25 {
9509
  --bs-bg-opacity: 0.25;
9510
}
9511
 
9512
.bg-opacity-50 {
9513
  --bs-bg-opacity: 0.5;
9514
}
9515
 
9516
.bg-opacity-75 {
9517
  --bs-bg-opacity: 0.75;
9518
}
9519
 
9520
.bg-opacity-100 {
9521
  --bs-bg-opacity: 1;
9522
}
9523
 
9524
.bg-gradient {
9525
  background-image: var(--bs-gradient) !important;
9526
}
9527
 
9528
.user-select-all {
9529
  user-select: all !important;
9530
}
9531
 
9532
.user-select-auto {
9533
  user-select: auto !important;
9534
}
9535
 
9536
.user-select-none {
9537
  user-select: none !important;
9538
}
9539
 
9540
.pe-none {
9541
  pointer-events: none !important;
9542
}
9543
 
9544
.pe-auto {
9545
  pointer-events: auto !important;
9546
}
9547
 
9548
.rounded {
9549
  border-radius: var(--bs-border-radius) !important;
9550
}
9551
 
9552
.rounded-0 {
9553
  border-radius: 0 !important;
9554
}
9555
 
9556
.rounded-1 {
9557
  border-radius: var(--bs-border-radius-sm) !important;
9558
}
9559
 
9560
.rounded-2 {
9561
  border-radius: var(--bs-border-radius) !important;
9562
}
9563
 
9564
.rounded-3 {
9565
  border-radius: var(--bs-border-radius-lg) !important;
9566
}
9567
 
9568
.rounded-4 {
9569
  border-radius: var(--bs-border-radius-xl) !important;
9570
}
9571
 
9572
.rounded-5 {
9573
  border-radius: var(--bs-border-radius-2xl) !important;
9574
}
9575
 
9576
.rounded-circle {
9577
  border-radius: 50% !important;
9578
}
9579
 
9580
.rounded-pill {
9581
  border-radius: var(--bs-border-radius-pill) !important;
9582
}
9583
 
9584
.rounded-top {
9585
  border-top-left-radius: var(--bs-border-radius) !important;
9586
  border-top-right-radius: var(--bs-border-radius) !important;
9587
}
9588
 
9589
.rounded-end {
9590
  border-top-right-radius: var(--bs-border-radius) !important;
9591
  border-bottom-right-radius: var(--bs-border-radius) !important;
9592
}
9593
 
9594
.rounded-bottom {
9595
  border-bottom-right-radius: var(--bs-border-radius) !important;
9596
  border-bottom-left-radius: var(--bs-border-radius) !important;
9597
}
9598
 
9599
.rounded-start {
9600
  border-bottom-left-radius: var(--bs-border-radius) !important;
9601
  border-top-left-radius: var(--bs-border-radius) !important;
9602
}
9603
 
9604
.visible {
9605
  visibility: visible !important;
9606
}
9607
 
9608
.invisible {
9609
  visibility: hidden !important;
9610
}
9611
 
9612
.bg-gray-100 {
9613
  background-color: #f8f9fa !important;
9614
}
9615
 
9616
.bg-gray-200 {
9617
  background-color: #e9ecef !important;
9618
}
9619
 
9620
.bg-gray-300 {
9621
  background-color: #dee2e6 !important;
9622
}
9623
 
9624
.bg-gray-400 {
9625
  background-color: #cbd1db !important;
9626
}
9627
 
9628
.bg-gray-500 {
9629
  background-color: #aeb7c5 !important;
9630
}
9631
 
9632
.bg-gray-600 {
9633
  background-color: #7987a1 !important;
9634
}
9635
 
9636
.bg-gray-700 {
9637
  background-color: #41516c !important;
9638
}
9639
 
9640
.bg-gray-800 {
9641
  background-color: #212a3a !important;
9642
}
9643
 
9644
.bg-gray-900 {
9645
  background-color: #060c17 !important;
9646
}
9647
 
9648
@media (min-width: 576px) {
9649
  .float-sm-start {
9650
    float: left !important;
9651
  }
16848 stevensc 9652
 
16825 efrain 9653
  .float-sm-end {
9654
    float: right !important;
9655
  }
16848 stevensc 9656
 
16825 efrain 9657
  .float-sm-none {
9658
    float: none !important;
9659
  }
16848 stevensc 9660
 
16825 efrain 9661
  .d-sm-inline {
9662
    display: inline !important;
9663
  }
16848 stevensc 9664
 
16825 efrain 9665
  .d-sm-inline-block {
9666
    display: inline-block !important;
9667
  }
16848 stevensc 9668
 
16825 efrain 9669
  .d-sm-block {
9670
    display: block !important;
9671
  }
16848 stevensc 9672
 
16825 efrain 9673
  .d-sm-grid {
9674
    display: grid !important;
9675
  }
16848 stevensc 9676
 
16825 efrain 9677
  .d-sm-table {
9678
    display: table !important;
9679
  }
16848 stevensc 9680
 
16825 efrain 9681
  .d-sm-table-row {
9682
    display: table-row !important;
9683
  }
16848 stevensc 9684
 
16825 efrain 9685
  .d-sm-table-cell {
9686
    display: table-cell !important;
9687
  }
16848 stevensc 9688
 
16825 efrain 9689
  .d-sm-flex {
9690
    display: flex !important;
9691
  }
16848 stevensc 9692
 
16825 efrain 9693
  .d-sm-inline-flex {
9694
    display: inline-flex !important;
9695
  }
16848 stevensc 9696
 
16825 efrain 9697
  .d-sm-none {
9698
    display: none !important;
9699
  }
16848 stevensc 9700
 
16825 efrain 9701
  .border-sm {
9702
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9703
  }
16848 stevensc 9704
 
16825 efrain 9705
  .border-sm-0 {
9706
    border: 0 !important;
9707
  }
16848 stevensc 9708
 
16825 efrain 9709
  .border-top-sm {
9710
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9711
  }
16848 stevensc 9712
 
16825 efrain 9713
  .border-top-sm-0 {
9714
    border-top: 0 !important;
9715
  }
16848 stevensc 9716
 
16825 efrain 9717
  .border-end-sm {
9718
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9719
  }
16848 stevensc 9720
 
16825 efrain 9721
  .border-end-sm-0 {
9722
    border-right: 0 !important;
9723
  }
16848 stevensc 9724
 
16825 efrain 9725
  .border-bottom-sm {
9726
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9727
  }
16848 stevensc 9728
 
16825 efrain 9729
  .border-bottom-sm-0 {
9730
    border-bottom: 0 !important;
9731
  }
16848 stevensc 9732
 
16825 efrain 9733
  .border-start-sm {
9734
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9735
  }
16848 stevensc 9736
 
16825 efrain 9737
  .border-start-sm-0 {
9738
    border-left: 0 !important;
9739
  }
16848 stevensc 9740
 
16825 efrain 9741
  .flex-sm-fill {
9742
    flex: 1 1 auto !important;
9743
  }
16848 stevensc 9744
 
16825 efrain 9745
  .flex-sm-row {
9746
    flex-direction: row !important;
9747
  }
16848 stevensc 9748
 
16825 efrain 9749
  .flex-sm-column {
9750
    flex-direction: column !important;
9751
  }
16848 stevensc 9752
 
16825 efrain 9753
  .flex-sm-row-reverse {
9754
    flex-direction: row-reverse !important;
9755
  }
16848 stevensc 9756
 
16825 efrain 9757
  .flex-sm-column-reverse {
9758
    flex-direction: column-reverse !important;
9759
  }
16848 stevensc 9760
 
16825 efrain 9761
  .flex-sm-grow-0 {
9762
    flex-grow: 0 !important;
9763
  }
16848 stevensc 9764
 
16825 efrain 9765
  .flex-sm-grow-1 {
9766
    flex-grow: 1 !important;
9767
  }
16848 stevensc 9768
 
16825 efrain 9769
  .flex-sm-shrink-0 {
9770
    flex-shrink: 0 !important;
9771
  }
16848 stevensc 9772
 
16825 efrain 9773
  .flex-sm-shrink-1 {
9774
    flex-shrink: 1 !important;
9775
  }
16848 stevensc 9776
 
16825 efrain 9777
  .flex-sm-wrap {
9778
    flex-wrap: wrap !important;
9779
  }
16848 stevensc 9780
 
16825 efrain 9781
  .flex-sm-nowrap {
9782
    flex-wrap: nowrap !important;
9783
  }
16848 stevensc 9784
 
16825 efrain 9785
  .flex-sm-wrap-reverse {
9786
    flex-wrap: wrap-reverse !important;
9787
  }
16848 stevensc 9788
 
16825 efrain 9789
  .justify-content-sm-start {
9790
    justify-content: flex-start !important;
9791
  }
16848 stevensc 9792
 
16825 efrain 9793
  .justify-content-sm-end {
9794
    justify-content: flex-end !important;
9795
  }
16848 stevensc 9796
 
16825 efrain 9797
  .justify-content-sm-center {
9798
    justify-content: center !important;
9799
  }
16848 stevensc 9800
 
16825 efrain 9801
  .justify-content-sm-between {
9802
    justify-content: space-between !important;
9803
  }
16848 stevensc 9804
 
16825 efrain 9805
  .justify-content-sm-around {
9806
    justify-content: space-around !important;
9807
  }
16848 stevensc 9808
 
16825 efrain 9809
  .justify-content-sm-evenly {
9810
    justify-content: space-evenly !important;
9811
  }
16848 stevensc 9812
 
16825 efrain 9813
  .align-items-sm-start {
9814
    align-items: flex-start !important;
9815
  }
16848 stevensc 9816
 
16825 efrain 9817
  .align-items-sm-end {
9818
    align-items: flex-end !important;
9819
  }
16848 stevensc 9820
 
16825 efrain 9821
  .align-items-sm-center {
9822
    align-items: center !important;
9823
  }
16848 stevensc 9824
 
16825 efrain 9825
  .align-items-sm-baseline {
9826
    align-items: baseline !important;
9827
  }
16848 stevensc 9828
 
16825 efrain 9829
  .align-items-sm-stretch {
9830
    align-items: stretch !important;
9831
  }
16848 stevensc 9832
 
16825 efrain 9833
  .align-content-sm-start {
9834
    align-content: flex-start !important;
9835
  }
16848 stevensc 9836
 
16825 efrain 9837
  .align-content-sm-end {
9838
    align-content: flex-end !important;
9839
  }
16848 stevensc 9840
 
16825 efrain 9841
  .align-content-sm-center {
9842
    align-content: center !important;
9843
  }
16848 stevensc 9844
 
16825 efrain 9845
  .align-content-sm-between {
9846
    align-content: space-between !important;
9847
  }
16848 stevensc 9848
 
16825 efrain 9849
  .align-content-sm-around {
9850
    align-content: space-around !important;
9851
  }
16848 stevensc 9852
 
16825 efrain 9853
  .align-content-sm-stretch {
9854
    align-content: stretch !important;
9855
  }
16848 stevensc 9856
 
16825 efrain 9857
  .align-self-sm-auto {
9858
    align-self: auto !important;
9859
  }
16848 stevensc 9860
 
16825 efrain 9861
  .align-self-sm-start {
9862
    align-self: flex-start !important;
9863
  }
16848 stevensc 9864
 
16825 efrain 9865
  .align-self-sm-end {
9866
    align-self: flex-end !important;
9867
  }
16848 stevensc 9868
 
16825 efrain 9869
  .align-self-sm-center {
9870
    align-self: center !important;
9871
  }
16848 stevensc 9872
 
16825 efrain 9873
  .align-self-sm-baseline {
9874
    align-self: baseline !important;
9875
  }
16848 stevensc 9876
 
16825 efrain 9877
  .align-self-sm-stretch {
9878
    align-self: stretch !important;
9879
  }
16848 stevensc 9880
 
16825 efrain 9881
  .order-sm-first {
9882
    order: -1 !important;
9883
  }
16848 stevensc 9884
 
16825 efrain 9885
  .order-sm-0 {
9886
    order: 0 !important;
9887
  }
16848 stevensc 9888
 
16825 efrain 9889
  .order-sm-1 {
9890
    order: 1 !important;
9891
  }
16848 stevensc 9892
 
16825 efrain 9893
  .order-sm-2 {
9894
    order: 2 !important;
9895
  }
16848 stevensc 9896
 
16825 efrain 9897
  .order-sm-3 {
9898
    order: 3 !important;
9899
  }
16848 stevensc 9900
 
16825 efrain 9901
  .order-sm-4 {
9902
    order: 4 !important;
9903
  }
16848 stevensc 9904
 
16825 efrain 9905
  .order-sm-5 {
9906
    order: 5 !important;
9907
  }
16848 stevensc 9908
 
16825 efrain 9909
  .order-sm-last {
9910
    order: 6 !important;
9911
  }
16848 stevensc 9912
 
16825 efrain 9913
  .m-sm-0 {
9914
    margin: 0 !important;
9915
  }
16848 stevensc 9916
 
16825 efrain 9917
  .m-sm-1 {
9918
    margin: 0.25rem !important;
9919
  }
16848 stevensc 9920
 
16825 efrain 9921
  .m-sm-2 {
9922
    margin: 0.5rem !important;
9923
  }
16848 stevensc 9924
 
16825 efrain 9925
  .m-sm-3 {
9926
    margin: 1rem !important;
9927
  }
16848 stevensc 9928
 
16825 efrain 9929
  .m-sm-4 {
9930
    margin: 1.5rem !important;
9931
  }
16848 stevensc 9932
 
16825 efrain 9933
  .m-sm-5 {
9934
    margin: 3rem !important;
9935
  }
16848 stevensc 9936
 
16825 efrain 9937
  .m-sm-6 {
9938
    margin: 4.5rem !important;
9939
  }
16848 stevensc 9940
 
16825 efrain 9941
  .m-sm-7 {
9942
    margin: 6rem !important;
9943
  }
16848 stevensc 9944
 
16825 efrain 9945
  .m-sm-auto {
9946
    margin: auto !important;
9947
  }
16848 stevensc 9948
 
16825 efrain 9949
  .mx-sm-0 {
9950
    margin-right: 0 !important;
9951
    margin-left: 0 !important;
9952
  }
16848 stevensc 9953
 
16825 efrain 9954
  .mx-sm-1 {
9955
    margin-right: 0.25rem !important;
9956
    margin-left: 0.25rem !important;
9957
  }
16848 stevensc 9958
 
16825 efrain 9959
  .mx-sm-2 {
9960
    margin-right: 0.5rem !important;
9961
    margin-left: 0.5rem !important;
9962
  }
16848 stevensc 9963
 
16825 efrain 9964
  .mx-sm-3 {
9965
    margin-right: 1rem !important;
9966
    margin-left: 1rem !important;
9967
  }
16848 stevensc 9968
 
16825 efrain 9969
  .mx-sm-4 {
9970
    margin-right: 1.5rem !important;
9971
    margin-left: 1.5rem !important;
9972
  }
16848 stevensc 9973
 
16825 efrain 9974
  .mx-sm-5 {
9975
    margin-right: 3rem !important;
9976
    margin-left: 3rem !important;
9977
  }
16848 stevensc 9978
 
16825 efrain 9979
  .mx-sm-6 {
9980
    margin-right: 4.5rem !important;
9981
    margin-left: 4.5rem !important;
9982
  }
16848 stevensc 9983
 
16825 efrain 9984
  .mx-sm-7 {
9985
    margin-right: 6rem !important;
9986
    margin-left: 6rem !important;
9987
  }
16848 stevensc 9988
 
16825 efrain 9989
  .mx-sm-auto {
9990
    margin-right: auto !important;
9991
    margin-left: auto !important;
9992
  }
16848 stevensc 9993
 
16825 efrain 9994
  .my-sm-0 {
9995
    margin-top: 0 !important;
9996
    margin-bottom: 0 !important;
9997
  }
16848 stevensc 9998
 
16825 efrain 9999
  .my-sm-1 {
10000
    margin-top: 0.25rem !important;
10001
    margin-bottom: 0.25rem !important;
10002
  }
16848 stevensc 10003
 
16825 efrain 10004
  .my-sm-2 {
10005
    margin-top: 0.5rem !important;
10006
    margin-bottom: 0.5rem !important;
10007
  }
16848 stevensc 10008
 
16825 efrain 10009
  .my-sm-3 {
10010
    margin-top: 1rem !important;
10011
    margin-bottom: 1rem !important;
10012
  }
16848 stevensc 10013
 
16825 efrain 10014
  .my-sm-4 {
10015
    margin-top: 1.5rem !important;
10016
    margin-bottom: 1.5rem !important;
10017
  }
16848 stevensc 10018
 
16825 efrain 10019
  .my-sm-5 {
10020
    margin-top: 3rem !important;
10021
    margin-bottom: 3rem !important;
10022
  }
16848 stevensc 10023
 
16825 efrain 10024
  .my-sm-6 {
10025
    margin-top: 4.5rem !important;
10026
    margin-bottom: 4.5rem !important;
10027
  }
16848 stevensc 10028
 
16825 efrain 10029
  .my-sm-7 {
10030
    margin-top: 6rem !important;
10031
    margin-bottom: 6rem !important;
10032
  }
16848 stevensc 10033
 
16825 efrain 10034
  .my-sm-auto {
10035
    margin-top: auto !important;
10036
    margin-bottom: auto !important;
10037
  }
16848 stevensc 10038
 
16825 efrain 10039
  .mt-sm-0 {
10040
    margin-top: 0 !important;
10041
  }
16848 stevensc 10042
 
16825 efrain 10043
  .mt-sm-1 {
10044
    margin-top: 0.25rem !important;
10045
  }
16848 stevensc 10046
 
16825 efrain 10047
  .mt-sm-2 {
10048
    margin-top: 0.5rem !important;
10049
  }
16848 stevensc 10050
 
16825 efrain 10051
  .mt-sm-3 {
10052
    margin-top: 1rem !important;
10053
  }
16848 stevensc 10054
 
16825 efrain 10055
  .mt-sm-4 {
10056
    margin-top: 1.5rem !important;
10057
  }
16848 stevensc 10058
 
16825 efrain 10059
  .mt-sm-5 {
10060
    margin-top: 3rem !important;
10061
  }
16848 stevensc 10062
 
16825 efrain 10063
  .mt-sm-6 {
10064
    margin-top: 4.5rem !important;
10065
  }
16848 stevensc 10066
 
16825 efrain 10067
  .mt-sm-7 {
10068
    margin-top: 6rem !important;
10069
  }
16848 stevensc 10070
 
16825 efrain 10071
  .mt-sm-auto {
10072
    margin-top: auto !important;
10073
  }
16848 stevensc 10074
 
16825 efrain 10075
  .me-sm-0 {
10076
    margin-right: 0 !important;
10077
  }
16848 stevensc 10078
 
16825 efrain 10079
  .me-sm-1 {
10080
    margin-right: 0.25rem !important;
10081
  }
16848 stevensc 10082
 
16825 efrain 10083
  .me-sm-2 {
10084
    margin-right: 0.5rem !important;
10085
  }
16848 stevensc 10086
 
16825 efrain 10087
  .me-sm-3 {
10088
    margin-right: 1rem !important;
10089
  }
16848 stevensc 10090
 
16825 efrain 10091
  .me-sm-4 {
10092
    margin-right: 1.5rem !important;
10093
  }
16848 stevensc 10094
 
16825 efrain 10095
  .me-sm-5 {
10096
    margin-right: 3rem !important;
10097
  }
16848 stevensc 10098
 
16825 efrain 10099
  .me-sm-6 {
10100
    margin-right: 4.5rem !important;
10101
  }
16848 stevensc 10102
 
16825 efrain 10103
  .me-sm-7 {
10104
    margin-right: 6rem !important;
10105
  }
16848 stevensc 10106
 
16825 efrain 10107
  .me-sm-auto {
10108
    margin-right: auto !important;
10109
  }
16848 stevensc 10110
 
16825 efrain 10111
  .mb-sm-0 {
10112
    margin-bottom: 0 !important;
10113
  }
16848 stevensc 10114
 
16825 efrain 10115
  .mb-sm-1 {
10116
    margin-bottom: 0.25rem !important;
10117
  }
16848 stevensc 10118
 
16825 efrain 10119
  .mb-sm-2 {
10120
    margin-bottom: 0.5rem !important;
10121
  }
16848 stevensc 10122
 
16825 efrain 10123
  .mb-sm-3 {
10124
    margin-bottom: 1rem !important;
10125
  }
16848 stevensc 10126
 
16825 efrain 10127
  .mb-sm-4 {
10128
    margin-bottom: 1.5rem !important;
10129
  }
16848 stevensc 10130
 
16825 efrain 10131
  .mb-sm-5 {
10132
    margin-bottom: 3rem !important;
10133
  }
16848 stevensc 10134
 
16825 efrain 10135
  .mb-sm-6 {
10136
    margin-bottom: 4.5rem !important;
10137
  }
16848 stevensc 10138
 
16825 efrain 10139
  .mb-sm-7 {
10140
    margin-bottom: 6rem !important;
10141
  }
16848 stevensc 10142
 
16825 efrain 10143
  .mb-sm-auto {
10144
    margin-bottom: auto !important;
10145
  }
16848 stevensc 10146
 
16825 efrain 10147
  .ms-sm-0 {
10148
    margin-left: 0 !important;
10149
  }
16848 stevensc 10150
 
16825 efrain 10151
  .ms-sm-1 {
10152
    margin-left: 0.25rem !important;
10153
  }
16848 stevensc 10154
 
16825 efrain 10155
  .ms-sm-2 {
10156
    margin-left: 0.5rem !important;
10157
  }
16848 stevensc 10158
 
16825 efrain 10159
  .ms-sm-3 {
10160
    margin-left: 1rem !important;
10161
  }
16848 stevensc 10162
 
16825 efrain 10163
  .ms-sm-4 {
10164
    margin-left: 1.5rem !important;
10165
  }
16848 stevensc 10166
 
16825 efrain 10167
  .ms-sm-5 {
10168
    margin-left: 3rem !important;
10169
  }
16848 stevensc 10170
 
16825 efrain 10171
  .ms-sm-6 {
10172
    margin-left: 4.5rem !important;
10173
  }
16848 stevensc 10174
 
16825 efrain 10175
  .ms-sm-7 {
10176
    margin-left: 6rem !important;
10177
  }
16848 stevensc 10178
 
16825 efrain 10179
  .ms-sm-auto {
10180
    margin-left: auto !important;
10181
  }
16848 stevensc 10182
 
16825 efrain 10183
  .m-sm-n1 {
10184
    margin: -0.25rem !important;
10185
  }
16848 stevensc 10186
 
16825 efrain 10187
  .m-sm-n2 {
10188
    margin: -0.5rem !important;
10189
  }
16848 stevensc 10190
 
16825 efrain 10191
  .m-sm-n3 {
10192
    margin: -1rem !important;
10193
  }
16848 stevensc 10194
 
16825 efrain 10195
  .m-sm-n4 {
10196
    margin: -1.5rem !important;
10197
  }
16848 stevensc 10198
 
16825 efrain 10199
  .m-sm-n5 {
10200
    margin: -3rem !important;
10201
  }
16848 stevensc 10202
 
16825 efrain 10203
  .m-sm-n6 {
10204
    margin: -4.5rem !important;
10205
  }
16848 stevensc 10206
 
16825 efrain 10207
  .m-sm-n7 {
10208
    margin: -6rem !important;
10209
  }
16848 stevensc 10210
 
16825 efrain 10211
  .mx-sm-n1 {
10212
    margin-right: -0.25rem !important;
10213
    margin-left: -0.25rem !important;
10214
  }
16848 stevensc 10215
 
16825 efrain 10216
  .mx-sm-n2 {
10217
    margin-right: -0.5rem !important;
10218
    margin-left: -0.5rem !important;
10219
  }
16848 stevensc 10220
 
16825 efrain 10221
  .mx-sm-n3 {
10222
    margin-right: -1rem !important;
10223
    margin-left: -1rem !important;
10224
  }
16848 stevensc 10225
 
16825 efrain 10226
  .mx-sm-n4 {
10227
    margin-right: -1.5rem !important;
10228
    margin-left: -1.5rem !important;
10229
  }
16848 stevensc 10230
 
16825 efrain 10231
  .mx-sm-n5 {
10232
    margin-right: -3rem !important;
10233
    margin-left: -3rem !important;
10234
  }
16848 stevensc 10235
 
16825 efrain 10236
  .mx-sm-n6 {
10237
    margin-right: -4.5rem !important;
10238
    margin-left: -4.5rem !important;
10239
  }
16848 stevensc 10240
 
16825 efrain 10241
  .mx-sm-n7 {
10242
    margin-right: -6rem !important;
10243
    margin-left: -6rem !important;
10244
  }
16848 stevensc 10245
 
16825 efrain 10246
  .my-sm-n1 {
10247
    margin-top: -0.25rem !important;
10248
    margin-bottom: -0.25rem !important;
10249
  }
16848 stevensc 10250
 
16825 efrain 10251
  .my-sm-n2 {
10252
    margin-top: -0.5rem !important;
10253
    margin-bottom: -0.5rem !important;
10254
  }
16848 stevensc 10255
 
16825 efrain 10256
  .my-sm-n3 {
10257
    margin-top: -1rem !important;
10258
    margin-bottom: -1rem !important;
10259
  }
16848 stevensc 10260
 
16825 efrain 10261
  .my-sm-n4 {
10262
    margin-top: -1.5rem !important;
10263
    margin-bottom: -1.5rem !important;
10264
  }
16848 stevensc 10265
 
16825 efrain 10266
  .my-sm-n5 {
10267
    margin-top: -3rem !important;
10268
    margin-bottom: -3rem !important;
10269
  }
16848 stevensc 10270
 
16825 efrain 10271
  .my-sm-n6 {
10272
    margin-top: -4.5rem !important;
10273
    margin-bottom: -4.5rem !important;
10274
  }
16848 stevensc 10275
 
16825 efrain 10276
  .my-sm-n7 {
10277
    margin-top: -6rem !important;
10278
    margin-bottom: -6rem !important;
10279
  }
16848 stevensc 10280
 
16825 efrain 10281
  .mt-sm-n1 {
10282
    margin-top: -0.25rem !important;
10283
  }
16848 stevensc 10284
 
16825 efrain 10285
  .mt-sm-n2 {
10286
    margin-top: -0.5rem !important;
10287
  }
16848 stevensc 10288
 
16825 efrain 10289
  .mt-sm-n3 {
10290
    margin-top: -1rem !important;
10291
  }
16848 stevensc 10292
 
16825 efrain 10293
  .mt-sm-n4 {
10294
    margin-top: -1.5rem !important;
10295
  }
16848 stevensc 10296
 
16825 efrain 10297
  .mt-sm-n5 {
10298
    margin-top: -3rem !important;
10299
  }
16848 stevensc 10300
 
16825 efrain 10301
  .mt-sm-n6 {
10302
    margin-top: -4.5rem !important;
10303
  }
16848 stevensc 10304
 
16825 efrain 10305
  .mt-sm-n7 {
10306
    margin-top: -6rem !important;
10307
  }
16848 stevensc 10308
 
16825 efrain 10309
  .me-sm-n1 {
10310
    margin-right: -0.25rem !important;
10311
  }
16848 stevensc 10312
 
16825 efrain 10313
  .me-sm-n2 {
10314
    margin-right: -0.5rem !important;
10315
  }
16848 stevensc 10316
 
16825 efrain 10317
  .me-sm-n3 {
10318
    margin-right: -1rem !important;
10319
  }
16848 stevensc 10320
 
16825 efrain 10321
  .me-sm-n4 {
10322
    margin-right: -1.5rem !important;
10323
  }
16848 stevensc 10324
 
16825 efrain 10325
  .me-sm-n5 {
10326
    margin-right: -3rem !important;
10327
  }
16848 stevensc 10328
 
16825 efrain 10329
  .me-sm-n6 {
10330
    margin-right: -4.5rem !important;
10331
  }
16848 stevensc 10332
 
16825 efrain 10333
  .me-sm-n7 {
10334
    margin-right: -6rem !important;
10335
  }
16848 stevensc 10336
 
16825 efrain 10337
  .mb-sm-n1 {
10338
    margin-bottom: -0.25rem !important;
10339
  }
16848 stevensc 10340
 
16825 efrain 10341
  .mb-sm-n2 {
10342
    margin-bottom: -0.5rem !important;
10343
  }
16848 stevensc 10344
 
16825 efrain 10345
  .mb-sm-n3 {
10346
    margin-bottom: -1rem !important;
10347
  }
16848 stevensc 10348
 
16825 efrain 10349
  .mb-sm-n4 {
10350
    margin-bottom: -1.5rem !important;
10351
  }
16848 stevensc 10352
 
16825 efrain 10353
  .mb-sm-n5 {
10354
    margin-bottom: -3rem !important;
10355
  }
16848 stevensc 10356
 
16825 efrain 10357
  .mb-sm-n6 {
10358
    margin-bottom: -4.5rem !important;
10359
  }
16848 stevensc 10360
 
16825 efrain 10361
  .mb-sm-n7 {
10362
    margin-bottom: -6rem !important;
10363
  }
16848 stevensc 10364
 
16825 efrain 10365
  .ms-sm-n1 {
10366
    margin-left: -0.25rem !important;
10367
  }
16848 stevensc 10368
 
16825 efrain 10369
  .ms-sm-n2 {
10370
    margin-left: -0.5rem !important;
10371
  }
16848 stevensc 10372
 
16825 efrain 10373
  .ms-sm-n3 {
10374
    margin-left: -1rem !important;
10375
  }
16848 stevensc 10376
 
16825 efrain 10377
  .ms-sm-n4 {
10378
    margin-left: -1.5rem !important;
10379
  }
16848 stevensc 10380
 
16825 efrain 10381
  .ms-sm-n5 {
10382
    margin-left: -3rem !important;
10383
  }
16848 stevensc 10384
 
16825 efrain 10385
  .ms-sm-n6 {
10386
    margin-left: -4.5rem !important;
10387
  }
16848 stevensc 10388
 
16825 efrain 10389
  .ms-sm-n7 {
10390
    margin-left: -6rem !important;
10391
  }
16848 stevensc 10392
 
16825 efrain 10393
  .p-sm-0 {
10394
    padding: 0 !important;
10395
  }
16848 stevensc 10396
 
16825 efrain 10397
  .p-sm-1 {
10398
    padding: 0.25rem !important;
10399
  }
16848 stevensc 10400
 
16825 efrain 10401
  .p-sm-2 {
10402
    padding: 0.5rem !important;
10403
  }
16848 stevensc 10404
 
16825 efrain 10405
  .p-sm-3 {
10406
    padding: 1rem !important;
10407
  }
16848 stevensc 10408
 
16825 efrain 10409
  .p-sm-4 {
10410
    padding: 1.5rem !important;
10411
  }
16848 stevensc 10412
 
16825 efrain 10413
  .p-sm-5 {
10414
    padding: 3rem !important;
10415
  }
16848 stevensc 10416
 
16825 efrain 10417
  .p-sm-6 {
10418
    padding: 4.5rem !important;
10419
  }
16848 stevensc 10420
 
16825 efrain 10421
  .p-sm-7 {
10422
    padding: 6rem !important;
10423
  }
16848 stevensc 10424
 
16825 efrain 10425
  .px-sm-0 {
10426
    padding-right: 0 !important;
10427
    padding-left: 0 !important;
10428
  }
16848 stevensc 10429
 
16825 efrain 10430
  .px-sm-1 {
10431
    padding-right: 0.25rem !important;
10432
    padding-left: 0.25rem !important;
10433
  }
16848 stevensc 10434
 
16825 efrain 10435
  .px-sm-2 {
10436
    padding-right: 0.5rem !important;
10437
    padding-left: 0.5rem !important;
10438
  }
16848 stevensc 10439
 
16825 efrain 10440
  .px-sm-3 {
10441
    padding-right: 1rem !important;
10442
    padding-left: 1rem !important;
10443
  }
16848 stevensc 10444
 
16825 efrain 10445
  .px-sm-4 {
10446
    padding-right: 1.5rem !important;
10447
    padding-left: 1.5rem !important;
10448
  }
16848 stevensc 10449
 
16825 efrain 10450
  .px-sm-5 {
10451
    padding-right: 3rem !important;
10452
    padding-left: 3rem !important;
10453
  }
16848 stevensc 10454
 
16825 efrain 10455
  .px-sm-6 {
10456
    padding-right: 4.5rem !important;
10457
    padding-left: 4.5rem !important;
10458
  }
16848 stevensc 10459
 
16825 efrain 10460
  .px-sm-7 {
10461
    padding-right: 6rem !important;
10462
    padding-left: 6rem !important;
10463
  }
16848 stevensc 10464
 
16825 efrain 10465
  .py-sm-0 {
10466
    padding-top: 0 !important;
10467
    padding-bottom: 0 !important;
10468
  }
16848 stevensc 10469
 
16825 efrain 10470
  .py-sm-1 {
10471
    padding-top: 0.25rem !important;
10472
    padding-bottom: 0.25rem !important;
10473
  }
16848 stevensc 10474
 
16825 efrain 10475
  .py-sm-2 {
10476
    padding-top: 0.5rem !important;
10477
    padding-bottom: 0.5rem !important;
10478
  }
16848 stevensc 10479
 
16825 efrain 10480
  .py-sm-3 {
10481
    padding-top: 1rem !important;
10482
    padding-bottom: 1rem !important;
10483
  }
16848 stevensc 10484
 
16825 efrain 10485
  .py-sm-4 {
10486
    padding-top: 1.5rem !important;
10487
    padding-bottom: 1.5rem !important;
10488
  }
16848 stevensc 10489
 
16825 efrain 10490
  .py-sm-5 {
10491
    padding-top: 3rem !important;
10492
    padding-bottom: 3rem !important;
10493
  }
16848 stevensc 10494
 
16825 efrain 10495
  .py-sm-6 {
10496
    padding-top: 4.5rem !important;
10497
    padding-bottom: 4.5rem !important;
10498
  }
16848 stevensc 10499
 
16825 efrain 10500
  .py-sm-7 {
10501
    padding-top: 6rem !important;
10502
    padding-bottom: 6rem !important;
10503
  }
16848 stevensc 10504
 
16825 efrain 10505
  .pt-sm-0 {
10506
    padding-top: 0 !important;
10507
  }
16848 stevensc 10508
 
16825 efrain 10509
  .pt-sm-1 {
10510
    padding-top: 0.25rem !important;
10511
  }
16848 stevensc 10512
 
16825 efrain 10513
  .pt-sm-2 {
10514
    padding-top: 0.5rem !important;
10515
  }
16848 stevensc 10516
 
16825 efrain 10517
  .pt-sm-3 {
10518
    padding-top: 1rem !important;
10519
  }
16848 stevensc 10520
 
16825 efrain 10521
  .pt-sm-4 {
10522
    padding-top: 1.5rem !important;
10523
  }
16848 stevensc 10524
 
16825 efrain 10525
  .pt-sm-5 {
10526
    padding-top: 3rem !important;
10527
  }
16848 stevensc 10528
 
16825 efrain 10529
  .pt-sm-6 {
10530
    padding-top: 4.5rem !important;
10531
  }
16848 stevensc 10532
 
16825 efrain 10533
  .pt-sm-7 {
10534
    padding-top: 6rem !important;
10535
  }
16848 stevensc 10536
 
16825 efrain 10537
  .pe-sm-0 {
10538
    padding-right: 0 !important;
10539
  }
16848 stevensc 10540
 
16825 efrain 10541
  .pe-sm-1 {
10542
    padding-right: 0.25rem !important;
10543
  }
16848 stevensc 10544
 
16825 efrain 10545
  .pe-sm-2 {
10546
    padding-right: 0.5rem !important;
10547
  }
16848 stevensc 10548
 
16825 efrain 10549
  .pe-sm-3 {
10550
    padding-right: 1rem !important;
10551
  }
16848 stevensc 10552
 
16825 efrain 10553
  .pe-sm-4 {
10554
    padding-right: 1.5rem !important;
10555
  }
16848 stevensc 10556
 
16825 efrain 10557
  .pe-sm-5 {
10558
    padding-right: 3rem !important;
10559
  }
16848 stevensc 10560
 
16825 efrain 10561
  .pe-sm-6 {
10562
    padding-right: 4.5rem !important;
10563
  }
16848 stevensc 10564
 
16825 efrain 10565
  .pe-sm-7 {
10566
    padding-right: 6rem !important;
10567
  }
16848 stevensc 10568
 
16825 efrain 10569
  .pb-sm-0 {
10570
    padding-bottom: 0 !important;
10571
  }
16848 stevensc 10572
 
16825 efrain 10573
  .pb-sm-1 {
10574
    padding-bottom: 0.25rem !important;
10575
  }
16848 stevensc 10576
 
16825 efrain 10577
  .pb-sm-2 {
10578
    padding-bottom: 0.5rem !important;
10579
  }
16848 stevensc 10580
 
16825 efrain 10581
  .pb-sm-3 {
10582
    padding-bottom: 1rem !important;
10583
  }
16848 stevensc 10584
 
16825 efrain 10585
  .pb-sm-4 {
10586
    padding-bottom: 1.5rem !important;
10587
  }
16848 stevensc 10588
 
16825 efrain 10589
  .pb-sm-5 {
10590
    padding-bottom: 3rem !important;
10591
  }
16848 stevensc 10592
 
16825 efrain 10593
  .pb-sm-6 {
10594
    padding-bottom: 4.5rem !important;
10595
  }
16848 stevensc 10596
 
16825 efrain 10597
  .pb-sm-7 {
10598
    padding-bottom: 6rem !important;
10599
  }
16848 stevensc 10600
 
16825 efrain 10601
  .ps-sm-0 {
10602
    padding-left: 0 !important;
10603
  }
16848 stevensc 10604
 
16825 efrain 10605
  .ps-sm-1 {
10606
    padding-left: 0.25rem !important;
10607
  }
16848 stevensc 10608
 
16825 efrain 10609
  .ps-sm-2 {
10610
    padding-left: 0.5rem !important;
10611
  }
16848 stevensc 10612
 
16825 efrain 10613
  .ps-sm-3 {
10614
    padding-left: 1rem !important;
10615
  }
16848 stevensc 10616
 
16825 efrain 10617
  .ps-sm-4 {
10618
    padding-left: 1.5rem !important;
10619
  }
16848 stevensc 10620
 
16825 efrain 10621
  .ps-sm-5 {
10622
    padding-left: 3rem !important;
10623
  }
16848 stevensc 10624
 
16825 efrain 10625
  .ps-sm-6 {
10626
    padding-left: 4.5rem !important;
10627
  }
16848 stevensc 10628
 
16825 efrain 10629
  .ps-sm-7 {
10630
    padding-left: 6rem !important;
10631
  }
16848 stevensc 10632
 
16825 efrain 10633
  .gap-sm-0 {
10634
    gap: 0 !important;
10635
  }
16848 stevensc 10636
 
16825 efrain 10637
  .gap-sm-1 {
10638
    gap: 0.25rem !important;
10639
  }
16848 stevensc 10640
 
16825 efrain 10641
  .gap-sm-2 {
10642
    gap: 0.5rem !important;
10643
  }
16848 stevensc 10644
 
16825 efrain 10645
  .gap-sm-3 {
10646
    gap: 1rem !important;
10647
  }
16848 stevensc 10648
 
16825 efrain 10649
  .gap-sm-4 {
10650
    gap: 1.5rem !important;
10651
  }
16848 stevensc 10652
 
16825 efrain 10653
  .gap-sm-5 {
10654
    gap: 3rem !important;
10655
  }
16848 stevensc 10656
 
16825 efrain 10657
  .gap-sm-6 {
10658
    gap: 4.5rem !important;
10659
  }
16848 stevensc 10660
 
16825 efrain 10661
  .gap-sm-7 {
10662
    gap: 6rem !important;
10663
  }
16848 stevensc 10664
 
16825 efrain 10665
  .text-sm-start {
10666
    text-align: left !important;
10667
  }
16848 stevensc 10668
 
16825 efrain 10669
  .text-sm-end {
10670
    text-align: right !important;
10671
  }
16848 stevensc 10672
 
16825 efrain 10673
  .text-sm-center {
10674
    text-align: center !important;
10675
  }
10676
}
16848 stevensc 10677
 
16825 efrain 10678
@media (min-width: 768px) {
10679
  .float-md-start {
10680
    float: left !important;
10681
  }
16848 stevensc 10682
 
16825 efrain 10683
  .float-md-end {
10684
    float: right !important;
10685
  }
16848 stevensc 10686
 
16825 efrain 10687
  .float-md-none {
10688
    float: none !important;
10689
  }
16848 stevensc 10690
 
16825 efrain 10691
  .d-md-inline {
10692
    display: inline !important;
10693
  }
16848 stevensc 10694
 
16825 efrain 10695
  .d-md-inline-block {
10696
    display: inline-block !important;
10697
  }
16848 stevensc 10698
 
16825 efrain 10699
  .d-md-block {
10700
    display: block !important;
10701
  }
16848 stevensc 10702
 
16825 efrain 10703
  .d-md-grid {
10704
    display: grid !important;
10705
  }
16848 stevensc 10706
 
16825 efrain 10707
  .d-md-table {
10708
    display: table !important;
10709
  }
16848 stevensc 10710
 
16825 efrain 10711
  .d-md-table-row {
10712
    display: table-row !important;
10713
  }
16848 stevensc 10714
 
16825 efrain 10715
  .d-md-table-cell {
10716
    display: table-cell !important;
10717
  }
16848 stevensc 10718
 
10719
  .d-md-flex,
10720
  .navbar .search-form {
16825 efrain 10721
    display: flex !important;
10722
  }
16848 stevensc 10723
 
16825 efrain 10724
  .d-md-inline-flex {
10725
    display: inline-flex !important;
10726
  }
16848 stevensc 10727
 
16825 efrain 10728
  .d-md-none {
10729
    display: none !important;
10730
  }
16848 stevensc 10731
 
16825 efrain 10732
  .border-md {
10733
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10734
  }
16848 stevensc 10735
 
16825 efrain 10736
  .border-md-0 {
10737
    border: 0 !important;
10738
  }
16848 stevensc 10739
 
16825 efrain 10740
  .border-top-md {
10741
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10742
  }
16848 stevensc 10743
 
16825 efrain 10744
  .border-top-md-0 {
10745
    border-top: 0 !important;
10746
  }
16848 stevensc 10747
 
16825 efrain 10748
  .border-end-md {
10749
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10750
  }
16848 stevensc 10751
 
16825 efrain 10752
  .border-end-md-0 {
10753
    border-right: 0 !important;
10754
  }
16848 stevensc 10755
 
16825 efrain 10756
  .border-bottom-md {
10757
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10758
  }
16848 stevensc 10759
 
16825 efrain 10760
  .border-bottom-md-0 {
10761
    border-bottom: 0 !important;
10762
  }
16848 stevensc 10763
 
16825 efrain 10764
  .border-start-md {
10765
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10766
  }
16848 stevensc 10767
 
16825 efrain 10768
  .border-start-md-0 {
10769
    border-left: 0 !important;
10770
  }
16848 stevensc 10771
 
16825 efrain 10772
  .flex-md-fill {
10773
    flex: 1 1 auto !important;
10774
  }
16848 stevensc 10775
 
16825 efrain 10776
  .flex-md-row {
10777
    flex-direction: row !important;
10778
  }
16848 stevensc 10779
 
16825 efrain 10780
  .flex-md-column {
10781
    flex-direction: column !important;
10782
  }
16848 stevensc 10783
 
16825 efrain 10784
  .flex-md-row-reverse {
10785
    flex-direction: row-reverse !important;
10786
  }
16848 stevensc 10787
 
16825 efrain 10788
  .flex-md-column-reverse {
10789
    flex-direction: column-reverse !important;
10790
  }
16848 stevensc 10791
 
16825 efrain 10792
  .flex-md-grow-0 {
10793
    flex-grow: 0 !important;
10794
  }
16848 stevensc 10795
 
16825 efrain 10796
  .flex-md-grow-1 {
10797
    flex-grow: 1 !important;
10798
  }
16848 stevensc 10799
 
16825 efrain 10800
  .flex-md-shrink-0 {
10801
    flex-shrink: 0 !important;
10802
  }
16848 stevensc 10803
 
16825 efrain 10804
  .flex-md-shrink-1 {
10805
    flex-shrink: 1 !important;
10806
  }
16848 stevensc 10807
 
16825 efrain 10808
  .flex-md-wrap {
10809
    flex-wrap: wrap !important;
10810
  }
16848 stevensc 10811
 
16825 efrain 10812
  .flex-md-nowrap {
10813
    flex-wrap: nowrap !important;
10814
  }
16848 stevensc 10815
 
16825 efrain 10816
  .flex-md-wrap-reverse {
10817
    flex-wrap: wrap-reverse !important;
10818
  }
16848 stevensc 10819
 
16825 efrain 10820
  .justify-content-md-start {
10821
    justify-content: flex-start !important;
10822
  }
16848 stevensc 10823
 
10824
  .justify-content-md-end,
10825
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10826
    justify-content: flex-end !important;
10827
  }
16848 stevensc 10828
 
16825 efrain 10829
  .justify-content-md-center {
10830
    justify-content: center !important;
10831
  }
16848 stevensc 10832
 
16825 efrain 10833
  .justify-content-md-between {
10834
    justify-content: space-between !important;
10835
  }
16848 stevensc 10836
 
16825 efrain 10837
  .justify-content-md-around {
10838
    justify-content: space-around !important;
10839
  }
16848 stevensc 10840
 
16825 efrain 10841
  .justify-content-md-evenly {
10842
    justify-content: space-evenly !important;
10843
  }
16848 stevensc 10844
 
16825 efrain 10845
  .align-items-md-start {
10846
    align-items: flex-start !important;
10847
  }
16848 stevensc 10848
 
16825 efrain 10849
  .align-items-md-end {
10850
    align-items: flex-end !important;
10851
  }
16848 stevensc 10852
 
16825 efrain 10853
  .align-items-md-center {
10854
    align-items: center !important;
10855
  }
16848 stevensc 10856
 
16825 efrain 10857
  .align-items-md-baseline {
10858
    align-items: baseline !important;
10859
  }
16848 stevensc 10860
 
16825 efrain 10861
  .align-items-md-stretch {
10862
    align-items: stretch !important;
10863
  }
16848 stevensc 10864
 
16825 efrain 10865
  .align-content-md-start {
10866
    align-content: flex-start !important;
10867
  }
16848 stevensc 10868
 
16825 efrain 10869
  .align-content-md-end {
10870
    align-content: flex-end !important;
10871
  }
16848 stevensc 10872
 
16825 efrain 10873
  .align-content-md-center {
10874
    align-content: center !important;
10875
  }
16848 stevensc 10876
 
16825 efrain 10877
  .align-content-md-between {
10878
    align-content: space-between !important;
10879
  }
16848 stevensc 10880
 
16825 efrain 10881
  .align-content-md-around {
10882
    align-content: space-around !important;
10883
  }
16848 stevensc 10884
 
16825 efrain 10885
  .align-content-md-stretch {
10886
    align-content: stretch !important;
10887
  }
16848 stevensc 10888
 
16825 efrain 10889
  .align-self-md-auto {
10890
    align-self: auto !important;
10891
  }
16848 stevensc 10892
 
16825 efrain 10893
  .align-self-md-start {
10894
    align-self: flex-start !important;
10895
  }
16848 stevensc 10896
 
16825 efrain 10897
  .align-self-md-end {
10898
    align-self: flex-end !important;
10899
  }
16848 stevensc 10900
 
16825 efrain 10901
  .align-self-md-center {
10902
    align-self: center !important;
10903
  }
16848 stevensc 10904
 
16825 efrain 10905
  .align-self-md-baseline {
10906
    align-self: baseline !important;
10907
  }
16848 stevensc 10908
 
16825 efrain 10909
  .align-self-md-stretch {
10910
    align-self: stretch !important;
10911
  }
16848 stevensc 10912
 
16825 efrain 10913
  .order-md-first {
10914
    order: -1 !important;
10915
  }
16848 stevensc 10916
 
16825 efrain 10917
  .order-md-0 {
10918
    order: 0 !important;
10919
  }
16848 stevensc 10920
 
16825 efrain 10921
  .order-md-1 {
10922
    order: 1 !important;
10923
  }
16848 stevensc 10924
 
16825 efrain 10925
  .order-md-2 {
10926
    order: 2 !important;
10927
  }
16848 stevensc 10928
 
16825 efrain 10929
  .order-md-3 {
10930
    order: 3 !important;
10931
  }
16848 stevensc 10932
 
16825 efrain 10933
  .order-md-4 {
10934
    order: 4 !important;
10935
  }
16848 stevensc 10936
 
16825 efrain 10937
  .order-md-5 {
10938
    order: 5 !important;
10939
  }
16848 stevensc 10940
 
16825 efrain 10941
  .order-md-last {
10942
    order: 6 !important;
10943
  }
16848 stevensc 10944
 
16825 efrain 10945
  .m-md-0 {
10946
    margin: 0 !important;
10947
  }
16848 stevensc 10948
 
16825 efrain 10949
  .m-md-1 {
10950
    margin: 0.25rem !important;
10951
  }
16848 stevensc 10952
 
16825 efrain 10953
  .m-md-2 {
10954
    margin: 0.5rem !important;
10955
  }
16848 stevensc 10956
 
16825 efrain 10957
  .m-md-3 {
10958
    margin: 1rem !important;
10959
  }
16848 stevensc 10960
 
16825 efrain 10961
  .m-md-4 {
10962
    margin: 1.5rem !important;
10963
  }
16848 stevensc 10964
 
16825 efrain 10965
  .m-md-5 {
10966
    margin: 3rem !important;
10967
  }
16848 stevensc 10968
 
16825 efrain 10969
  .m-md-6 {
10970
    margin: 4.5rem !important;
10971
  }
16848 stevensc 10972
 
16825 efrain 10973
  .m-md-7 {
10974
    margin: 6rem !important;
10975
  }
16848 stevensc 10976
 
16825 efrain 10977
  .m-md-auto {
10978
    margin: auto !important;
10979
  }
16848 stevensc 10980
 
16825 efrain 10981
  .mx-md-0 {
10982
    margin-right: 0 !important;
10983
    margin-left: 0 !important;
10984
  }
16848 stevensc 10985
 
16825 efrain 10986
  .mx-md-1 {
10987
    margin-right: 0.25rem !important;
10988
    margin-left: 0.25rem !important;
10989
  }
16848 stevensc 10990
 
16825 efrain 10991
  .mx-md-2 {
10992
    margin-right: 0.5rem !important;
10993
    margin-left: 0.5rem !important;
10994
  }
16848 stevensc 10995
 
16825 efrain 10996
  .mx-md-3 {
10997
    margin-right: 1rem !important;
10998
    margin-left: 1rem !important;
10999
  }
16848 stevensc 11000
 
16825 efrain 11001
  .mx-md-4 {
11002
    margin-right: 1.5rem !important;
11003
    margin-left: 1.5rem !important;
11004
  }
16848 stevensc 11005
 
16825 efrain 11006
  .mx-md-5 {
11007
    margin-right: 3rem !important;
11008
    margin-left: 3rem !important;
11009
  }
16848 stevensc 11010
 
16825 efrain 11011
  .mx-md-6 {
11012
    margin-right: 4.5rem !important;
11013
    margin-left: 4.5rem !important;
11014
  }
16848 stevensc 11015
 
16825 efrain 11016
  .mx-md-7 {
11017
    margin-right: 6rem !important;
11018
    margin-left: 6rem !important;
11019
  }
16848 stevensc 11020
 
16825 efrain 11021
  .mx-md-auto {
11022
    margin-right: auto !important;
11023
    margin-left: auto !important;
11024
  }
16848 stevensc 11025
 
16825 efrain 11026
  .my-md-0 {
11027
    margin-top: 0 !important;
11028
    margin-bottom: 0 !important;
11029
  }
16848 stevensc 11030
 
16825 efrain 11031
  .my-md-1 {
11032
    margin-top: 0.25rem !important;
11033
    margin-bottom: 0.25rem !important;
11034
  }
16848 stevensc 11035
 
16825 efrain 11036
  .my-md-2 {
11037
    margin-top: 0.5rem !important;
11038
    margin-bottom: 0.5rem !important;
11039
  }
16848 stevensc 11040
 
16825 efrain 11041
  .my-md-3 {
11042
    margin-top: 1rem !important;
11043
    margin-bottom: 1rem !important;
11044
  }
16848 stevensc 11045
 
16825 efrain 11046
  .my-md-4 {
11047
    margin-top: 1.5rem !important;
11048
    margin-bottom: 1.5rem !important;
11049
  }
16848 stevensc 11050
 
16825 efrain 11051
  .my-md-5 {
11052
    margin-top: 3rem !important;
11053
    margin-bottom: 3rem !important;
11054
  }
16848 stevensc 11055
 
16825 efrain 11056
  .my-md-6 {
11057
    margin-top: 4.5rem !important;
11058
    margin-bottom: 4.5rem !important;
11059
  }
16848 stevensc 11060
 
16825 efrain 11061
  .my-md-7 {
11062
    margin-top: 6rem !important;
11063
    margin-bottom: 6rem !important;
11064
  }
16848 stevensc 11065
 
16825 efrain 11066
  .my-md-auto {
11067
    margin-top: auto !important;
11068
    margin-bottom: auto !important;
11069
  }
16848 stevensc 11070
 
11071
  .mt-md-0,
11072
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11073
    margin-top: 0 !important;
11074
  }
16848 stevensc 11075
 
16825 efrain 11076
  .mt-md-1 {
11077
    margin-top: 0.25rem !important;
11078
  }
16848 stevensc 11079
 
16825 efrain 11080
  .mt-md-2 {
11081
    margin-top: 0.5rem !important;
11082
  }
16848 stevensc 11083
 
16825 efrain 11084
  .mt-md-3 {
11085
    margin-top: 1rem !important;
11086
  }
16848 stevensc 11087
 
16825 efrain 11088
  .mt-md-4 {
11089
    margin-top: 1.5rem !important;
11090
  }
16848 stevensc 11091
 
16825 efrain 11092
  .mt-md-5 {
11093
    margin-top: 3rem !important;
11094
  }
16848 stevensc 11095
 
16825 efrain 11096
  .mt-md-6 {
11097
    margin-top: 4.5rem !important;
11098
  }
16848 stevensc 11099
 
16825 efrain 11100
  .mt-md-7 {
11101
    margin-top: 6rem !important;
11102
  }
16848 stevensc 11103
 
16825 efrain 11104
  .mt-md-auto {
11105
    margin-top: auto !important;
11106
  }
16848 stevensc 11107
 
16825 efrain 11108
  .me-md-0 {
11109
    margin-right: 0 !important;
11110
  }
16848 stevensc 11111
 
16825 efrain 11112
  .me-md-1 {
11113
    margin-right: 0.25rem !important;
11114
  }
16848 stevensc 11115
 
16825 efrain 11116
  .me-md-2 {
11117
    margin-right: 0.5rem !important;
11118
  }
16848 stevensc 11119
 
16825 efrain 11120
  .me-md-3 {
11121
    margin-right: 1rem !important;
11122
  }
16848 stevensc 11123
 
16825 efrain 11124
  .me-md-4 {
11125
    margin-right: 1.5rem !important;
11126
  }
16848 stevensc 11127
 
16825 efrain 11128
  .me-md-5 {
11129
    margin-right: 3rem !important;
11130
  }
16848 stevensc 11131
 
16825 efrain 11132
  .me-md-6 {
11133
    margin-right: 4.5rem !important;
11134
  }
16848 stevensc 11135
 
16825 efrain 11136
  .me-md-7 {
11137
    margin-right: 6rem !important;
11138
  }
16848 stevensc 11139
 
16825 efrain 11140
  .me-md-auto {
11141
    margin-right: auto !important;
11142
  }
16848 stevensc 11143
 
11144
  .mb-md-0,
11145
  .example .btn-group {
16825 efrain 11146
    margin-bottom: 0 !important;
11147
  }
16848 stevensc 11148
 
16825 efrain 11149
  .mb-md-1 {
11150
    margin-bottom: 0.25rem !important;
11151
  }
16848 stevensc 11152
 
16825 efrain 11153
  .mb-md-2 {
11154
    margin-bottom: 0.5rem !important;
11155
  }
16848 stevensc 11156
 
16825 efrain 11157
  .mb-md-3 {
11158
    margin-bottom: 1rem !important;
11159
  }
16848 stevensc 11160
 
16825 efrain 11161
  .mb-md-4 {
11162
    margin-bottom: 1.5rem !important;
11163
  }
16848 stevensc 11164
 
16825 efrain 11165
  .mb-md-5 {
11166
    margin-bottom: 3rem !important;
11167
  }
16848 stevensc 11168
 
16825 efrain 11169
  .mb-md-6 {
11170
    margin-bottom: 4.5rem !important;
11171
  }
16848 stevensc 11172
 
16825 efrain 11173
  .mb-md-7 {
11174
    margin-bottom: 6rem !important;
11175
  }
16848 stevensc 11176
 
16825 efrain 11177
  .mb-md-auto {
11178
    margin-bottom: auto !important;
11179
  }
16848 stevensc 11180
 
16825 efrain 11181
  .ms-md-0 {
11182
    margin-left: 0 !important;
11183
  }
16848 stevensc 11184
 
16825 efrain 11185
  .ms-md-1 {
11186
    margin-left: 0.25rem !important;
11187
  }
16848 stevensc 11188
 
16825 efrain 11189
  .ms-md-2 {
11190
    margin-left: 0.5rem !important;
11191
  }
16848 stevensc 11192
 
16825 efrain 11193
  .ms-md-3 {
11194
    margin-left: 1rem !important;
11195
  }
16848 stevensc 11196
 
16825 efrain 11197
  .ms-md-4 {
11198
    margin-left: 1.5rem !important;
11199
  }
16848 stevensc 11200
 
16825 efrain 11201
  .ms-md-5 {
11202
    margin-left: 3rem !important;
11203
  }
16848 stevensc 11204
 
16825 efrain 11205
  .ms-md-6 {
11206
    margin-left: 4.5rem !important;
11207
  }
16848 stevensc 11208
 
16825 efrain 11209
  .ms-md-7 {
11210
    margin-left: 6rem !important;
11211
  }
16848 stevensc 11212
 
16825 efrain 11213
  .ms-md-auto {
11214
    margin-left: auto !important;
11215
  }
16848 stevensc 11216
 
16825 efrain 11217
  .m-md-n1 {
11218
    margin: -0.25rem !important;
11219
  }
16848 stevensc 11220
 
16825 efrain 11221
  .m-md-n2 {
11222
    margin: -0.5rem !important;
11223
  }
16848 stevensc 11224
 
16825 efrain 11225
  .m-md-n3 {
11226
    margin: -1rem !important;
11227
  }
16848 stevensc 11228
 
16825 efrain 11229
  .m-md-n4 {
11230
    margin: -1.5rem !important;
11231
  }
16848 stevensc 11232
 
16825 efrain 11233
  .m-md-n5 {
11234
    margin: -3rem !important;
11235
  }
16848 stevensc 11236
 
16825 efrain 11237
  .m-md-n6 {
11238
    margin: -4.5rem !important;
11239
  }
16848 stevensc 11240
 
16825 efrain 11241
  .m-md-n7 {
11242
    margin: -6rem !important;
11243
  }
16848 stevensc 11244
 
16825 efrain 11245
  .mx-md-n1 {
11246
    margin-right: -0.25rem !important;
11247
    margin-left: -0.25rem !important;
11248
  }
16848 stevensc 11249
 
16825 efrain 11250
  .mx-md-n2 {
11251
    margin-right: -0.5rem !important;
11252
    margin-left: -0.5rem !important;
11253
  }
16848 stevensc 11254
 
16825 efrain 11255
  .mx-md-n3 {
11256
    margin-right: -1rem !important;
11257
    margin-left: -1rem !important;
11258
  }
16848 stevensc 11259
 
16825 efrain 11260
  .mx-md-n4 {
11261
    margin-right: -1.5rem !important;
11262
    margin-left: -1.5rem !important;
11263
  }
16848 stevensc 11264
 
16825 efrain 11265
  .mx-md-n5 {
11266
    margin-right: -3rem !important;
11267
    margin-left: -3rem !important;
11268
  }
16848 stevensc 11269
 
16825 efrain 11270
  .mx-md-n6 {
11271
    margin-right: -4.5rem !important;
11272
    margin-left: -4.5rem !important;
11273
  }
16848 stevensc 11274
 
16825 efrain 11275
  .mx-md-n7 {
11276
    margin-right: -6rem !important;
11277
    margin-left: -6rem !important;
11278
  }
16848 stevensc 11279
 
16825 efrain 11280
  .my-md-n1 {
11281
    margin-top: -0.25rem !important;
11282
    margin-bottom: -0.25rem !important;
11283
  }
16848 stevensc 11284
 
16825 efrain 11285
  .my-md-n2 {
11286
    margin-top: -0.5rem !important;
11287
    margin-bottom: -0.5rem !important;
11288
  }
16848 stevensc 11289
 
16825 efrain 11290
  .my-md-n3 {
11291
    margin-top: -1rem !important;
11292
    margin-bottom: -1rem !important;
11293
  }
16848 stevensc 11294
 
16825 efrain 11295
  .my-md-n4 {
11296
    margin-top: -1.5rem !important;
11297
    margin-bottom: -1.5rem !important;
11298
  }
16848 stevensc 11299
 
16825 efrain 11300
  .my-md-n5 {
11301
    margin-top: -3rem !important;
11302
    margin-bottom: -3rem !important;
11303
  }
16848 stevensc 11304
 
16825 efrain 11305
  .my-md-n6 {
11306
    margin-top: -4.5rem !important;
11307
    margin-bottom: -4.5rem !important;
11308
  }
16848 stevensc 11309
 
16825 efrain 11310
  .my-md-n7 {
11311
    margin-top: -6rem !important;
11312
    margin-bottom: -6rem !important;
11313
  }
16848 stevensc 11314
 
16825 efrain 11315
  .mt-md-n1 {
11316
    margin-top: -0.25rem !important;
11317
  }
16848 stevensc 11318
 
16825 efrain 11319
  .mt-md-n2 {
11320
    margin-top: -0.5rem !important;
11321
  }
16848 stevensc 11322
 
16825 efrain 11323
  .mt-md-n3 {
11324
    margin-top: -1rem !important;
11325
  }
16848 stevensc 11326
 
16825 efrain 11327
  .mt-md-n4 {
11328
    margin-top: -1.5rem !important;
11329
  }
16848 stevensc 11330
 
16825 efrain 11331
  .mt-md-n5 {
11332
    margin-top: -3rem !important;
11333
  }
16848 stevensc 11334
 
16825 efrain 11335
  .mt-md-n6 {
11336
    margin-top: -4.5rem !important;
11337
  }
16848 stevensc 11338
 
16825 efrain 11339
  .mt-md-n7 {
11340
    margin-top: -6rem !important;
11341
  }
16848 stevensc 11342
 
16825 efrain 11343
  .me-md-n1 {
11344
    margin-right: -0.25rem !important;
11345
  }
16848 stevensc 11346
 
16825 efrain 11347
  .me-md-n2 {
11348
    margin-right: -0.5rem !important;
11349
  }
16848 stevensc 11350
 
16825 efrain 11351
  .me-md-n3 {
11352
    margin-right: -1rem !important;
11353
  }
16848 stevensc 11354
 
16825 efrain 11355
  .me-md-n4 {
11356
    margin-right: -1.5rem !important;
11357
  }
16848 stevensc 11358
 
16825 efrain 11359
  .me-md-n5 {
11360
    margin-right: -3rem !important;
11361
  }
16848 stevensc 11362
 
16825 efrain 11363
  .me-md-n6 {
11364
    margin-right: -4.5rem !important;
11365
  }
16848 stevensc 11366
 
16825 efrain 11367
  .me-md-n7 {
11368
    margin-right: -6rem !important;
11369
  }
16848 stevensc 11370
 
16825 efrain 11371
  .mb-md-n1 {
11372
    margin-bottom: -0.25rem !important;
11373
  }
16848 stevensc 11374
 
16825 efrain 11375
  .mb-md-n2 {
11376
    margin-bottom: -0.5rem !important;
11377
  }
16848 stevensc 11378
 
16825 efrain 11379
  .mb-md-n3 {
11380
    margin-bottom: -1rem !important;
11381
  }
16848 stevensc 11382
 
16825 efrain 11383
  .mb-md-n4 {
11384
    margin-bottom: -1.5rem !important;
11385
  }
16848 stevensc 11386
 
16825 efrain 11387
  .mb-md-n5 {
11388
    margin-bottom: -3rem !important;
11389
  }
16848 stevensc 11390
 
16825 efrain 11391
  .mb-md-n6 {
11392
    margin-bottom: -4.5rem !important;
11393
  }
16848 stevensc 11394
 
16825 efrain 11395
  .mb-md-n7 {
11396
    margin-bottom: -6rem !important;
11397
  }
16848 stevensc 11398
 
16825 efrain 11399
  .ms-md-n1 {
11400
    margin-left: -0.25rem !important;
11401
  }
16848 stevensc 11402
 
16825 efrain 11403
  .ms-md-n2 {
11404
    margin-left: -0.5rem !important;
11405
  }
16848 stevensc 11406
 
16825 efrain 11407
  .ms-md-n3 {
11408
    margin-left: -1rem !important;
11409
  }
16848 stevensc 11410
 
16825 efrain 11411
  .ms-md-n4 {
11412
    margin-left: -1.5rem !important;
11413
  }
16848 stevensc 11414
 
16825 efrain 11415
  .ms-md-n5 {
11416
    margin-left: -3rem !important;
11417
  }
16848 stevensc 11418
 
16825 efrain 11419
  .ms-md-n6 {
11420
    margin-left: -4.5rem !important;
11421
  }
16848 stevensc 11422
 
16825 efrain 11423
  .ms-md-n7 {
11424
    margin-left: -6rem !important;
11425
  }
16848 stevensc 11426
 
16825 efrain 11427
  .p-md-0 {
11428
    padding: 0 !important;
11429
  }
16848 stevensc 11430
 
16825 efrain 11431
  .p-md-1 {
11432
    padding: 0.25rem !important;
11433
  }
16848 stevensc 11434
 
16825 efrain 11435
  .p-md-2 {
11436
    padding: 0.5rem !important;
11437
  }
16848 stevensc 11438
 
16825 efrain 11439
  .p-md-3 {
11440
    padding: 1rem !important;
11441
  }
16848 stevensc 11442
 
16825 efrain 11443
  .p-md-4 {
11444
    padding: 1.5rem !important;
11445
  }
16848 stevensc 11446
 
16825 efrain 11447
  .p-md-5 {
11448
    padding: 3rem !important;
11449
  }
16848 stevensc 11450
 
16825 efrain 11451
  .p-md-6 {
11452
    padding: 4.5rem !important;
11453
  }
16848 stevensc 11454
 
16825 efrain 11455
  .p-md-7 {
11456
    padding: 6rem !important;
11457
  }
16848 stevensc 11458
 
16825 efrain 11459
  .px-md-0 {
11460
    padding-right: 0 !important;
11461
    padding-left: 0 !important;
11462
  }
16848 stevensc 11463
 
16825 efrain 11464
  .px-md-1 {
11465
    padding-right: 0.25rem !important;
11466
    padding-left: 0.25rem !important;
11467
  }
16848 stevensc 11468
 
16825 efrain 11469
  .px-md-2 {
11470
    padding-right: 0.5rem !important;
11471
    padding-left: 0.5rem !important;
11472
  }
16848 stevensc 11473
 
16825 efrain 11474
  .px-md-3 {
11475
    padding-right: 1rem !important;
11476
    padding-left: 1rem !important;
11477
  }
16848 stevensc 11478
 
16825 efrain 11479
  .px-md-4 {
11480
    padding-right: 1.5rem !important;
11481
    padding-left: 1.5rem !important;
11482
  }
16848 stevensc 11483
 
16825 efrain 11484
  .px-md-5 {
11485
    padding-right: 3rem !important;
11486
    padding-left: 3rem !important;
11487
  }
16848 stevensc 11488
 
16825 efrain 11489
  .px-md-6 {
11490
    padding-right: 4.5rem !important;
11491
    padding-left: 4.5rem !important;
11492
  }
16848 stevensc 11493
 
16825 efrain 11494
  .px-md-7 {
11495
    padding-right: 6rem !important;
11496
    padding-left: 6rem !important;
11497
  }
16848 stevensc 11498
 
16825 efrain 11499
  .py-md-0 {
11500
    padding-top: 0 !important;
11501
    padding-bottom: 0 !important;
11502
  }
16848 stevensc 11503
 
16825 efrain 11504
  .py-md-1 {
11505
    padding-top: 0.25rem !important;
11506
    padding-bottom: 0.25rem !important;
11507
  }
16848 stevensc 11508
 
16825 efrain 11509
  .py-md-2 {
11510
    padding-top: 0.5rem !important;
11511
    padding-bottom: 0.5rem !important;
11512
  }
16848 stevensc 11513
 
16825 efrain 11514
  .py-md-3 {
11515
    padding-top: 1rem !important;
11516
    padding-bottom: 1rem !important;
11517
  }
16848 stevensc 11518
 
16825 efrain 11519
  .py-md-4 {
11520
    padding-top: 1.5rem !important;
11521
    padding-bottom: 1.5rem !important;
11522
  }
16848 stevensc 11523
 
16825 efrain 11524
  .py-md-5 {
11525
    padding-top: 3rem !important;
11526
    padding-bottom: 3rem !important;
11527
  }
16848 stevensc 11528
 
16825 efrain 11529
  .py-md-6 {
11530
    padding-top: 4.5rem !important;
11531
    padding-bottom: 4.5rem !important;
11532
  }
16848 stevensc 11533
 
16825 efrain 11534
  .py-md-7 {
11535
    padding-top: 6rem !important;
11536
    padding-bottom: 6rem !important;
11537
  }
16848 stevensc 11538
 
16825 efrain 11539
  .pt-md-0 {
11540
    padding-top: 0 !important;
11541
  }
16848 stevensc 11542
 
16825 efrain 11543
  .pt-md-1 {
11544
    padding-top: 0.25rem !important;
11545
  }
16848 stevensc 11546
 
16825 efrain 11547
  .pt-md-2 {
11548
    padding-top: 0.5rem !important;
11549
  }
16848 stevensc 11550
 
16825 efrain 11551
  .pt-md-3 {
11552
    padding-top: 1rem !important;
11553
  }
16848 stevensc 11554
 
16825 efrain 11555
  .pt-md-4 {
11556
    padding-top: 1.5rem !important;
11557
  }
16848 stevensc 11558
 
16825 efrain 11559
  .pt-md-5 {
11560
    padding-top: 3rem !important;
11561
  }
16848 stevensc 11562
 
16825 efrain 11563
  .pt-md-6 {
11564
    padding-top: 4.5rem !important;
11565
  }
16848 stevensc 11566
 
16825 efrain 11567
  .pt-md-7 {
11568
    padding-top: 6rem !important;
11569
  }
16848 stevensc 11570
 
16825 efrain 11571
  .pe-md-0 {
11572
    padding-right: 0 !important;
11573
  }
16848 stevensc 11574
 
16825 efrain 11575
  .pe-md-1 {
11576
    padding-right: 0.25rem !important;
11577
  }
16848 stevensc 11578
 
16825 efrain 11579
  .pe-md-2 {
11580
    padding-right: 0.5rem !important;
11581
  }
16848 stevensc 11582
 
16825 efrain 11583
  .pe-md-3 {
11584
    padding-right: 1rem !important;
11585
  }
16848 stevensc 11586
 
16825 efrain 11587
  .pe-md-4 {
11588
    padding-right: 1.5rem !important;
11589
  }
16848 stevensc 11590
 
16825 efrain 11591
  .pe-md-5 {
11592
    padding-right: 3rem !important;
11593
  }
16848 stevensc 11594
 
16825 efrain 11595
  .pe-md-6 {
11596
    padding-right: 4.5rem !important;
11597
  }
16848 stevensc 11598
 
16825 efrain 11599
  .pe-md-7 {
11600
    padding-right: 6rem !important;
11601
  }
16848 stevensc 11602
 
16825 efrain 11603
  .pb-md-0 {
11604
    padding-bottom: 0 !important;
11605
  }
16848 stevensc 11606
 
16825 efrain 11607
  .pb-md-1 {
11608
    padding-bottom: 0.25rem !important;
11609
  }
16848 stevensc 11610
 
16825 efrain 11611
  .pb-md-2 {
11612
    padding-bottom: 0.5rem !important;
11613
  }
16848 stevensc 11614
 
16825 efrain 11615
  .pb-md-3 {
11616
    padding-bottom: 1rem !important;
11617
  }
16848 stevensc 11618
 
16825 efrain 11619
  .pb-md-4 {
11620
    padding-bottom: 1.5rem !important;
11621
  }
16848 stevensc 11622
 
16825 efrain 11623
  .pb-md-5 {
11624
    padding-bottom: 3rem !important;
11625
  }
16848 stevensc 11626
 
16825 efrain 11627
  .pb-md-6 {
11628
    padding-bottom: 4.5rem !important;
11629
  }
16848 stevensc 11630
 
16825 efrain 11631
  .pb-md-7 {
11632
    padding-bottom: 6rem !important;
11633
  }
16848 stevensc 11634
 
16825 efrain 11635
  .ps-md-0 {
11636
    padding-left: 0 !important;
11637
  }
16848 stevensc 11638
 
16825 efrain 11639
  .ps-md-1 {
11640
    padding-left: 0.25rem !important;
11641
  }
16848 stevensc 11642
 
16825 efrain 11643
  .ps-md-2 {
11644
    padding-left: 0.5rem !important;
11645
  }
16848 stevensc 11646
 
16825 efrain 11647
  .ps-md-3 {
11648
    padding-left: 1rem !important;
11649
  }
16848 stevensc 11650
 
16825 efrain 11651
  .ps-md-4 {
11652
    padding-left: 1.5rem !important;
11653
  }
16848 stevensc 11654
 
16825 efrain 11655
  .ps-md-5 {
11656
    padding-left: 3rem !important;
11657
  }
16848 stevensc 11658
 
16825 efrain 11659
  .ps-md-6 {
11660
    padding-left: 4.5rem !important;
11661
  }
16848 stevensc 11662
 
16825 efrain 11663
  .ps-md-7 {
11664
    padding-left: 6rem !important;
11665
  }
16848 stevensc 11666
 
16825 efrain 11667
  .gap-md-0 {
11668
    gap: 0 !important;
11669
  }
16848 stevensc 11670
 
16825 efrain 11671
  .gap-md-1 {
11672
    gap: 0.25rem !important;
11673
  }
16848 stevensc 11674
 
16825 efrain 11675
  .gap-md-2 {
11676
    gap: 0.5rem !important;
11677
  }
16848 stevensc 11678
 
16825 efrain 11679
  .gap-md-3 {
11680
    gap: 1rem !important;
11681
  }
16848 stevensc 11682
 
16825 efrain 11683
  .gap-md-4 {
11684
    gap: 1.5rem !important;
11685
  }
16848 stevensc 11686
 
16825 efrain 11687
  .gap-md-5 {
11688
    gap: 3rem !important;
11689
  }
16848 stevensc 11690
 
16825 efrain 11691
  .gap-md-6 {
11692
    gap: 4.5rem !important;
11693
  }
16848 stevensc 11694
 
16825 efrain 11695
  .gap-md-7 {
11696
    gap: 6rem !important;
11697
  }
16848 stevensc 11698
 
16825 efrain 11699
  .text-md-start {
11700
    text-align: left !important;
11701
  }
16848 stevensc 11702
 
16825 efrain 11703
  .text-md-end {
11704
    text-align: right !important;
11705
  }
16848 stevensc 11706
 
16825 efrain 11707
  .text-md-center {
11708
    text-align: center !important;
11709
  }
11710
}
16848 stevensc 11711
 
16825 efrain 11712
@media (min-width: 992px) {
11713
  .float-lg-start {
11714
    float: left !important;
11715
  }
16848 stevensc 11716
 
16825 efrain 11717
  .float-lg-end {
11718
    float: right !important;
11719
  }
16848 stevensc 11720
 
16825 efrain 11721
  .float-lg-none {
11722
    float: none !important;
11723
  }
16848 stevensc 11724
 
16825 efrain 11725
  .d-lg-inline {
11726
    display: inline !important;
11727
  }
16848 stevensc 11728
 
16825 efrain 11729
  .d-lg-inline-block {
11730
    display: inline-block !important;
11731
  }
16848 stevensc 11732
 
16825 efrain 11733
  .d-lg-block {
11734
    display: block !important;
11735
  }
16848 stevensc 11736
 
16825 efrain 11737
  .d-lg-grid {
11738
    display: grid !important;
11739
  }
16848 stevensc 11740
 
16825 efrain 11741
  .d-lg-table {
11742
    display: table !important;
11743
  }
16848 stevensc 11744
 
16825 efrain 11745
  .d-lg-table-row {
11746
    display: table-row !important;
11747
  }
16848 stevensc 11748
 
16825 efrain 11749
  .d-lg-table-cell {
11750
    display: table-cell !important;
11751
  }
16848 stevensc 11752
 
16825 efrain 11753
  .d-lg-flex {
11754
    display: flex !important;
11755
  }
16848 stevensc 11756
 
16825 efrain 11757
  .d-lg-inline-flex {
11758
    display: inline-flex !important;
11759
  }
16848 stevensc 11760
 
16825 efrain 11761
  .d-lg-none {
11762
    display: none !important;
11763
  }
16848 stevensc 11764
 
16825 efrain 11765
  .border-lg {
11766
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11767
  }
16848 stevensc 11768
 
16825 efrain 11769
  .border-lg-0 {
11770
    border: 0 !important;
11771
  }
16848 stevensc 11772
 
16825 efrain 11773
  .border-top-lg {
11774
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11775
  }
16848 stevensc 11776
 
16825 efrain 11777
  .border-top-lg-0 {
11778
    border-top: 0 !important;
11779
  }
16848 stevensc 11780
 
16825 efrain 11781
  .border-end-lg {
11782
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11783
  }
16848 stevensc 11784
 
16825 efrain 11785
  .border-end-lg-0 {
11786
    border-right: 0 !important;
11787
  }
16848 stevensc 11788
 
16825 efrain 11789
  .border-bottom-lg {
11790
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11791
  }
16848 stevensc 11792
 
16825 efrain 11793
  .border-bottom-lg-0 {
11794
    border-bottom: 0 !important;
11795
  }
16848 stevensc 11796
 
16825 efrain 11797
  .border-start-lg {
11798
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11799
  }
16848 stevensc 11800
 
16825 efrain 11801
  .border-start-lg-0 {
11802
    border-left: 0 !important;
11803
  }
16848 stevensc 11804
 
16825 efrain 11805
  .flex-lg-fill {
11806
    flex: 1 1 auto !important;
11807
  }
16848 stevensc 11808
 
16825 efrain 11809
  .flex-lg-row {
11810
    flex-direction: row !important;
11811
  }
16848 stevensc 11812
 
16825 efrain 11813
  .flex-lg-column {
11814
    flex-direction: column !important;
11815
  }
16848 stevensc 11816
 
16825 efrain 11817
  .flex-lg-row-reverse {
11818
    flex-direction: row-reverse !important;
11819
  }
16848 stevensc 11820
 
16825 efrain 11821
  .flex-lg-column-reverse {
11822
    flex-direction: column-reverse !important;
11823
  }
16848 stevensc 11824
 
16825 efrain 11825
  .flex-lg-grow-0 {
11826
    flex-grow: 0 !important;
11827
  }
16848 stevensc 11828
 
16825 efrain 11829
  .flex-lg-grow-1 {
11830
    flex-grow: 1 !important;
11831
  }
16848 stevensc 11832
 
16825 efrain 11833
  .flex-lg-shrink-0 {
11834
    flex-shrink: 0 !important;
11835
  }
16848 stevensc 11836
 
16825 efrain 11837
  .flex-lg-shrink-1 {
11838
    flex-shrink: 1 !important;
11839
  }
16848 stevensc 11840
 
16825 efrain 11841
  .flex-lg-wrap {
11842
    flex-wrap: wrap !important;
11843
  }
16848 stevensc 11844
 
16825 efrain 11845
  .flex-lg-nowrap {
11846
    flex-wrap: nowrap !important;
11847
  }
16848 stevensc 11848
 
16825 efrain 11849
  .flex-lg-wrap-reverse {
11850
    flex-wrap: wrap-reverse !important;
11851
  }
16848 stevensc 11852
 
16825 efrain 11853
  .justify-content-lg-start {
11854
    justify-content: flex-start !important;
11855
  }
16848 stevensc 11856
 
16825 efrain 11857
  .justify-content-lg-end {
11858
    justify-content: flex-end !important;
11859
  }
16848 stevensc 11860
 
16825 efrain 11861
  .justify-content-lg-center {
11862
    justify-content: center !important;
11863
  }
16848 stevensc 11864
 
16825 efrain 11865
  .justify-content-lg-between {
11866
    justify-content: space-between !important;
11867
  }
16848 stevensc 11868
 
16825 efrain 11869
  .justify-content-lg-around {
11870
    justify-content: space-around !important;
11871
  }
16848 stevensc 11872
 
16825 efrain 11873
  .justify-content-lg-evenly {
11874
    justify-content: space-evenly !important;
11875
  }
16848 stevensc 11876
 
16825 efrain 11877
  .align-items-lg-start {
11878
    align-items: flex-start !important;
11879
  }
16848 stevensc 11880
 
16825 efrain 11881
  .align-items-lg-end {
11882
    align-items: flex-end !important;
11883
  }
16848 stevensc 11884
 
16825 efrain 11885
  .align-items-lg-center {
11886
    align-items: center !important;
11887
  }
16848 stevensc 11888
 
16825 efrain 11889
  .align-items-lg-baseline {
11890
    align-items: baseline !important;
11891
  }
16848 stevensc 11892
 
16825 efrain 11893
  .align-items-lg-stretch {
11894
    align-items: stretch !important;
11895
  }
16848 stevensc 11896
 
16825 efrain 11897
  .align-content-lg-start {
11898
    align-content: flex-start !important;
11899
  }
16848 stevensc 11900
 
16825 efrain 11901
  .align-content-lg-end {
11902
    align-content: flex-end !important;
11903
  }
16848 stevensc 11904
 
16825 efrain 11905
  .align-content-lg-center {
11906
    align-content: center !important;
11907
  }
16848 stevensc 11908
 
16825 efrain 11909
  .align-content-lg-between {
11910
    align-content: space-between !important;
11911
  }
16848 stevensc 11912
 
16825 efrain 11913
  .align-content-lg-around {
11914
    align-content: space-around !important;
11915
  }
16848 stevensc 11916
 
16825 efrain 11917
  .align-content-lg-stretch {
11918
    align-content: stretch !important;
11919
  }
16848 stevensc 11920
 
16825 efrain 11921
  .align-self-lg-auto {
11922
    align-self: auto !important;
11923
  }
16848 stevensc 11924
 
16825 efrain 11925
  .align-self-lg-start {
11926
    align-self: flex-start !important;
11927
  }
16848 stevensc 11928
 
16825 efrain 11929
  .align-self-lg-end {
11930
    align-self: flex-end !important;
11931
  }
16848 stevensc 11932
 
16825 efrain 11933
  .align-self-lg-center {
11934
    align-self: center !important;
11935
  }
16848 stevensc 11936
 
16825 efrain 11937
  .align-self-lg-baseline {
11938
    align-self: baseline !important;
11939
  }
16848 stevensc 11940
 
16825 efrain 11941
  .align-self-lg-stretch {
11942
    align-self: stretch !important;
11943
  }
16848 stevensc 11944
 
16825 efrain 11945
  .order-lg-first {
11946
    order: -1 !important;
11947
  }
16848 stevensc 11948
 
16825 efrain 11949
  .order-lg-0 {
11950
    order: 0 !important;
11951
  }
16848 stevensc 11952
 
16825 efrain 11953
  .order-lg-1 {
11954
    order: 1 !important;
11955
  }
16848 stevensc 11956
 
16825 efrain 11957
  .order-lg-2 {
11958
    order: 2 !important;
11959
  }
16848 stevensc 11960
 
16825 efrain 11961
  .order-lg-3 {
11962
    order: 3 !important;
11963
  }
16848 stevensc 11964
 
16825 efrain 11965
  .order-lg-4 {
11966
    order: 4 !important;
11967
  }
16848 stevensc 11968
 
16825 efrain 11969
  .order-lg-5 {
11970
    order: 5 !important;
11971
  }
16848 stevensc 11972
 
16825 efrain 11973
  .order-lg-last {
11974
    order: 6 !important;
11975
  }
16848 stevensc 11976
 
16825 efrain 11977
  .m-lg-0 {
11978
    margin: 0 !important;
11979
  }
16848 stevensc 11980
 
16825 efrain 11981
  .m-lg-1 {
11982
    margin: 0.25rem !important;
11983
  }
16848 stevensc 11984
 
16825 efrain 11985
  .m-lg-2 {
11986
    margin: 0.5rem !important;
11987
  }
16848 stevensc 11988
 
16825 efrain 11989
  .m-lg-3 {
11990
    margin: 1rem !important;
11991
  }
16848 stevensc 11992
 
16825 efrain 11993
  .m-lg-4 {
11994
    margin: 1.5rem !important;
11995
  }
16848 stevensc 11996
 
16825 efrain 11997
  .m-lg-5 {
11998
    margin: 3rem !important;
11999
  }
16848 stevensc 12000
 
16825 efrain 12001
  .m-lg-6 {
12002
    margin: 4.5rem !important;
12003
  }
16848 stevensc 12004
 
16825 efrain 12005
  .m-lg-7 {
12006
    margin: 6rem !important;
12007
  }
16848 stevensc 12008
 
16825 efrain 12009
  .m-lg-auto {
12010
    margin: auto !important;
12011
  }
16848 stevensc 12012
 
16825 efrain 12013
  .mx-lg-0 {
12014
    margin-right: 0 !important;
12015
    margin-left: 0 !important;
12016
  }
16848 stevensc 12017
 
16825 efrain 12018
  .mx-lg-1 {
12019
    margin-right: 0.25rem !important;
12020
    margin-left: 0.25rem !important;
12021
  }
16848 stevensc 12022
 
16825 efrain 12023
  .mx-lg-2 {
12024
    margin-right: 0.5rem !important;
12025
    margin-left: 0.5rem !important;
12026
  }
16848 stevensc 12027
 
16825 efrain 12028
  .mx-lg-3 {
12029
    margin-right: 1rem !important;
12030
    margin-left: 1rem !important;
12031
  }
16848 stevensc 12032
 
16825 efrain 12033
  .mx-lg-4 {
12034
    margin-right: 1.5rem !important;
12035
    margin-left: 1.5rem !important;
12036
  }
16848 stevensc 12037
 
16825 efrain 12038
  .mx-lg-5 {
12039
    margin-right: 3rem !important;
12040
    margin-left: 3rem !important;
12041
  }
16848 stevensc 12042
 
16825 efrain 12043
  .mx-lg-6 {
12044
    margin-right: 4.5rem !important;
12045
    margin-left: 4.5rem !important;
12046
  }
16848 stevensc 12047
 
16825 efrain 12048
  .mx-lg-7 {
12049
    margin-right: 6rem !important;
12050
    margin-left: 6rem !important;
12051
  }
16848 stevensc 12052
 
16825 efrain 12053
  .mx-lg-auto {
12054
    margin-right: auto !important;
12055
    margin-left: auto !important;
12056
  }
16848 stevensc 12057
 
16825 efrain 12058
  .my-lg-0 {
12059
    margin-top: 0 !important;
12060
    margin-bottom: 0 !important;
12061
  }
16848 stevensc 12062
 
16825 efrain 12063
  .my-lg-1 {
12064
    margin-top: 0.25rem !important;
12065
    margin-bottom: 0.25rem !important;
12066
  }
16848 stevensc 12067
 
16825 efrain 12068
  .my-lg-2 {
12069
    margin-top: 0.5rem !important;
12070
    margin-bottom: 0.5rem !important;
12071
  }
16848 stevensc 12072
 
16825 efrain 12073
  .my-lg-3 {
12074
    margin-top: 1rem !important;
12075
    margin-bottom: 1rem !important;
12076
  }
16848 stevensc 12077
 
16825 efrain 12078
  .my-lg-4 {
12079
    margin-top: 1.5rem !important;
12080
    margin-bottom: 1.5rem !important;
12081
  }
16848 stevensc 12082
 
16825 efrain 12083
  .my-lg-5 {
12084
    margin-top: 3rem !important;
12085
    margin-bottom: 3rem !important;
12086
  }
16848 stevensc 12087
 
16825 efrain 12088
  .my-lg-6 {
12089
    margin-top: 4.5rem !important;
12090
    margin-bottom: 4.5rem !important;
12091
  }
16848 stevensc 12092
 
16825 efrain 12093
  .my-lg-7 {
12094
    margin-top: 6rem !important;
12095
    margin-bottom: 6rem !important;
12096
  }
16848 stevensc 12097
 
16825 efrain 12098
  .my-lg-auto {
12099
    margin-top: auto !important;
12100
    margin-bottom: auto !important;
12101
  }
16848 stevensc 12102
 
16825 efrain 12103
  .mt-lg-0 {
12104
    margin-top: 0 !important;
12105
  }
16848 stevensc 12106
 
16825 efrain 12107
  .mt-lg-1 {
12108
    margin-top: 0.25rem !important;
12109
  }
16848 stevensc 12110
 
16825 efrain 12111
  .mt-lg-2 {
12112
    margin-top: 0.5rem !important;
12113
  }
16848 stevensc 12114
 
16825 efrain 12115
  .mt-lg-3 {
12116
    margin-top: 1rem !important;
12117
  }
16848 stevensc 12118
 
16825 efrain 12119
  .mt-lg-4 {
12120
    margin-top: 1.5rem !important;
12121
  }
16848 stevensc 12122
 
16825 efrain 12123
  .mt-lg-5 {
12124
    margin-top: 3rem !important;
12125
  }
16848 stevensc 12126
 
16825 efrain 12127
  .mt-lg-6 {
12128
    margin-top: 4.5rem !important;
12129
  }
16848 stevensc 12130
 
16825 efrain 12131
  .mt-lg-7 {
12132
    margin-top: 6rem !important;
12133
  }
16848 stevensc 12134
 
16825 efrain 12135
  .mt-lg-auto {
12136
    margin-top: auto !important;
12137
  }
16848 stevensc 12138
 
16825 efrain 12139
  .me-lg-0 {
12140
    margin-right: 0 !important;
12141
  }
16848 stevensc 12142
 
16825 efrain 12143
  .me-lg-1 {
12144
    margin-right: 0.25rem !important;
12145
  }
16848 stevensc 12146
 
16825 efrain 12147
  .me-lg-2 {
12148
    margin-right: 0.5rem !important;
12149
  }
16848 stevensc 12150
 
16825 efrain 12151
  .me-lg-3 {
12152
    margin-right: 1rem !important;
12153
  }
16848 stevensc 12154
 
16825 efrain 12155
  .me-lg-4 {
12156
    margin-right: 1.5rem !important;
12157
  }
16848 stevensc 12158
 
16825 efrain 12159
  .me-lg-5 {
12160
    margin-right: 3rem !important;
12161
  }
16848 stevensc 12162
 
16825 efrain 12163
  .me-lg-6 {
12164
    margin-right: 4.5rem !important;
12165
  }
16848 stevensc 12166
 
16825 efrain 12167
  .me-lg-7 {
12168
    margin-right: 6rem !important;
12169
  }
16848 stevensc 12170
 
16825 efrain 12171
  .me-lg-auto {
12172
    margin-right: auto !important;
12173
  }
16848 stevensc 12174
 
16825 efrain 12175
  .mb-lg-0 {
12176
    margin-bottom: 0 !important;
12177
  }
16848 stevensc 12178
 
16825 efrain 12179
  .mb-lg-1 {
12180
    margin-bottom: 0.25rem !important;
12181
  }
16848 stevensc 12182
 
16825 efrain 12183
  .mb-lg-2 {
12184
    margin-bottom: 0.5rem !important;
12185
  }
16848 stevensc 12186
 
16825 efrain 12187
  .mb-lg-3 {
12188
    margin-bottom: 1rem !important;
12189
  }
16848 stevensc 12190
 
16825 efrain 12191
  .mb-lg-4 {
12192
    margin-bottom: 1.5rem !important;
12193
  }
16848 stevensc 12194
 
16825 efrain 12195
  .mb-lg-5 {
12196
    margin-bottom: 3rem !important;
12197
  }
16848 stevensc 12198
 
16825 efrain 12199
  .mb-lg-6 {
12200
    margin-bottom: 4.5rem !important;
12201
  }
16848 stevensc 12202
 
16825 efrain 12203
  .mb-lg-7 {
12204
    margin-bottom: 6rem !important;
12205
  }
16848 stevensc 12206
 
16825 efrain 12207
  .mb-lg-auto {
12208
    margin-bottom: auto !important;
12209
  }
16848 stevensc 12210
 
16825 efrain 12211
  .ms-lg-0 {
12212
    margin-left: 0 !important;
12213
  }
16848 stevensc 12214
 
16825 efrain 12215
  .ms-lg-1 {
12216
    margin-left: 0.25rem !important;
12217
  }
16848 stevensc 12218
 
16825 efrain 12219
  .ms-lg-2 {
12220
    margin-left: 0.5rem !important;
12221
  }
16848 stevensc 12222
 
16825 efrain 12223
  .ms-lg-3 {
12224
    margin-left: 1rem !important;
12225
  }
16848 stevensc 12226
 
16825 efrain 12227
  .ms-lg-4 {
12228
    margin-left: 1.5rem !important;
12229
  }
16848 stevensc 12230
 
16825 efrain 12231
  .ms-lg-5 {
12232
    margin-left: 3rem !important;
12233
  }
16848 stevensc 12234
 
16825 efrain 12235
  .ms-lg-6 {
12236
    margin-left: 4.5rem !important;
12237
  }
16848 stevensc 12238
 
16825 efrain 12239
  .ms-lg-7 {
12240
    margin-left: 6rem !important;
12241
  }
16848 stevensc 12242
 
16825 efrain 12243
  .ms-lg-auto {
12244
    margin-left: auto !important;
12245
  }
16848 stevensc 12246
 
16825 efrain 12247
  .m-lg-n1 {
12248
    margin: -0.25rem !important;
12249
  }
16848 stevensc 12250
 
16825 efrain 12251
  .m-lg-n2 {
12252
    margin: -0.5rem !important;
12253
  }
16848 stevensc 12254
 
16825 efrain 12255
  .m-lg-n3 {
12256
    margin: -1rem !important;
12257
  }
16848 stevensc 12258
 
16825 efrain 12259
  .m-lg-n4 {
12260
    margin: -1.5rem !important;
12261
  }
16848 stevensc 12262
 
16825 efrain 12263
  .m-lg-n5 {
12264
    margin: -3rem !important;
12265
  }
16848 stevensc 12266
 
16825 efrain 12267
  .m-lg-n6 {
12268
    margin: -4.5rem !important;
12269
  }
16848 stevensc 12270
 
16825 efrain 12271
  .m-lg-n7 {
12272
    margin: -6rem !important;
12273
  }
16848 stevensc 12274
 
16825 efrain 12275
  .mx-lg-n1 {
12276
    margin-right: -0.25rem !important;
12277
    margin-left: -0.25rem !important;
12278
  }
16848 stevensc 12279
 
16825 efrain 12280
  .mx-lg-n2 {
12281
    margin-right: -0.5rem !important;
12282
    margin-left: -0.5rem !important;
12283
  }
16848 stevensc 12284
 
16825 efrain 12285
  .mx-lg-n3 {
12286
    margin-right: -1rem !important;
12287
    margin-left: -1rem !important;
12288
  }
16848 stevensc 12289
 
16825 efrain 12290
  .mx-lg-n4 {
12291
    margin-right: -1.5rem !important;
12292
    margin-left: -1.5rem !important;
12293
  }
16848 stevensc 12294
 
16825 efrain 12295
  .mx-lg-n5 {
12296
    margin-right: -3rem !important;
12297
    margin-left: -3rem !important;
12298
  }
16848 stevensc 12299
 
16825 efrain 12300
  .mx-lg-n6 {
12301
    margin-right: -4.5rem !important;
12302
    margin-left: -4.5rem !important;
12303
  }
16848 stevensc 12304
 
16825 efrain 12305
  .mx-lg-n7 {
12306
    margin-right: -6rem !important;
12307
    margin-left: -6rem !important;
12308
  }
16848 stevensc 12309
 
16825 efrain 12310
  .my-lg-n1 {
12311
    margin-top: -0.25rem !important;
12312
    margin-bottom: -0.25rem !important;
12313
  }
16848 stevensc 12314
 
16825 efrain 12315
  .my-lg-n2 {
12316
    margin-top: -0.5rem !important;
12317
    margin-bottom: -0.5rem !important;
12318
  }
16848 stevensc 12319
 
16825 efrain 12320
  .my-lg-n3 {
12321
    margin-top: -1rem !important;
12322
    margin-bottom: -1rem !important;
12323
  }
16848 stevensc 12324
 
16825 efrain 12325
  .my-lg-n4 {
12326
    margin-top: -1.5rem !important;
12327
    margin-bottom: -1.5rem !important;
12328
  }
16848 stevensc 12329
 
16825 efrain 12330
  .my-lg-n5 {
12331
    margin-top: -3rem !important;
12332
    margin-bottom: -3rem !important;
12333
  }
16848 stevensc 12334
 
16825 efrain 12335
  .my-lg-n6 {
12336
    margin-top: -4.5rem !important;
12337
    margin-bottom: -4.5rem !important;
12338
  }
16848 stevensc 12339
 
16825 efrain 12340
  .my-lg-n7 {
12341
    margin-top: -6rem !important;
12342
    margin-bottom: -6rem !important;
12343
  }
16848 stevensc 12344
 
16825 efrain 12345
  .mt-lg-n1 {
12346
    margin-top: -0.25rem !important;
12347
  }
16848 stevensc 12348
 
16825 efrain 12349
  .mt-lg-n2 {
12350
    margin-top: -0.5rem !important;
12351
  }
16848 stevensc 12352
 
16825 efrain 12353
  .mt-lg-n3 {
12354
    margin-top: -1rem !important;
12355
  }
16848 stevensc 12356
 
16825 efrain 12357
  .mt-lg-n4 {
12358
    margin-top: -1.5rem !important;
12359
  }
16848 stevensc 12360
 
16825 efrain 12361
  .mt-lg-n5 {
12362
    margin-top: -3rem !important;
12363
  }
16848 stevensc 12364
 
16825 efrain 12365
  .mt-lg-n6 {
12366
    margin-top: -4.5rem !important;
12367
  }
16848 stevensc 12368
 
16825 efrain 12369
  .mt-lg-n7 {
12370
    margin-top: -6rem !important;
12371
  }
16848 stevensc 12372
 
16825 efrain 12373
  .me-lg-n1 {
12374
    margin-right: -0.25rem !important;
12375
  }
16848 stevensc 12376
 
16825 efrain 12377
  .me-lg-n2 {
12378
    margin-right: -0.5rem !important;
12379
  }
16848 stevensc 12380
 
16825 efrain 12381
  .me-lg-n3 {
12382
    margin-right: -1rem !important;
12383
  }
16848 stevensc 12384
 
16825 efrain 12385
  .me-lg-n4 {
12386
    margin-right: -1.5rem !important;
12387
  }
16848 stevensc 12388
 
16825 efrain 12389
  .me-lg-n5 {
12390
    margin-right: -3rem !important;
12391
  }
16848 stevensc 12392
 
16825 efrain 12393
  .me-lg-n6 {
12394
    margin-right: -4.5rem !important;
12395
  }
16848 stevensc 12396
 
16825 efrain 12397
  .me-lg-n7 {
12398
    margin-right: -6rem !important;
12399
  }
16848 stevensc 12400
 
16825 efrain 12401
  .mb-lg-n1 {
12402
    margin-bottom: -0.25rem !important;
12403
  }
16848 stevensc 12404
 
16825 efrain 12405
  .mb-lg-n2 {
12406
    margin-bottom: -0.5rem !important;
12407
  }
16848 stevensc 12408
 
16825 efrain 12409
  .mb-lg-n3 {
12410
    margin-bottom: -1rem !important;
12411
  }
16848 stevensc 12412
 
16825 efrain 12413
  .mb-lg-n4 {
12414
    margin-bottom: -1.5rem !important;
12415
  }
16848 stevensc 12416
 
16825 efrain 12417
  .mb-lg-n5 {
12418
    margin-bottom: -3rem !important;
12419
  }
16848 stevensc 12420
 
16825 efrain 12421
  .mb-lg-n6 {
12422
    margin-bottom: -4.5rem !important;
12423
  }
16848 stevensc 12424
 
16825 efrain 12425
  .mb-lg-n7 {
12426
    margin-bottom: -6rem !important;
12427
  }
16848 stevensc 12428
 
16825 efrain 12429
  .ms-lg-n1 {
12430
    margin-left: -0.25rem !important;
12431
  }
16848 stevensc 12432
 
16825 efrain 12433
  .ms-lg-n2 {
12434
    margin-left: -0.5rem !important;
12435
  }
16848 stevensc 12436
 
16825 efrain 12437
  .ms-lg-n3 {
12438
    margin-left: -1rem !important;
12439
  }
16848 stevensc 12440
 
16825 efrain 12441
  .ms-lg-n4 {
12442
    margin-left: -1.5rem !important;
12443
  }
16848 stevensc 12444
 
16825 efrain 12445
  .ms-lg-n5 {
12446
    margin-left: -3rem !important;
12447
  }
16848 stevensc 12448
 
16825 efrain 12449
  .ms-lg-n6 {
12450
    margin-left: -4.5rem !important;
12451
  }
16848 stevensc 12452
 
16825 efrain 12453
  .ms-lg-n7 {
12454
    margin-left: -6rem !important;
12455
  }
16848 stevensc 12456
 
16825 efrain 12457
  .p-lg-0 {
12458
    padding: 0 !important;
12459
  }
16848 stevensc 12460
 
16825 efrain 12461
  .p-lg-1 {
12462
    padding: 0.25rem !important;
12463
  }
16848 stevensc 12464
 
16825 efrain 12465
  .p-lg-2 {
12466
    padding: 0.5rem !important;
12467
  }
16848 stevensc 12468
 
16825 efrain 12469
  .p-lg-3 {
12470
    padding: 1rem !important;
12471
  }
16848 stevensc 12472
 
16825 efrain 12473
  .p-lg-4 {
12474
    padding: 1.5rem !important;
12475
  }
16848 stevensc 12476
 
16825 efrain 12477
  .p-lg-5 {
12478
    padding: 3rem !important;
12479
  }
16848 stevensc 12480
 
16825 efrain 12481
  .p-lg-6 {
12482
    padding: 4.5rem !important;
12483
  }
16848 stevensc 12484
 
16825 efrain 12485
  .p-lg-7 {
12486
    padding: 6rem !important;
12487
  }
16848 stevensc 12488
 
16825 efrain 12489
  .px-lg-0 {
12490
    padding-right: 0 !important;
12491
    padding-left: 0 !important;
12492
  }
16848 stevensc 12493
 
16825 efrain 12494
  .px-lg-1 {
12495
    padding-right: 0.25rem !important;
12496
    padding-left: 0.25rem !important;
12497
  }
16848 stevensc 12498
 
16825 efrain 12499
  .px-lg-2 {
12500
    padding-right: 0.5rem !important;
12501
    padding-left: 0.5rem !important;
12502
  }
16848 stevensc 12503
 
16825 efrain 12504
  .px-lg-3 {
12505
    padding-right: 1rem !important;
12506
    padding-left: 1rem !important;
12507
  }
16848 stevensc 12508
 
16825 efrain 12509
  .px-lg-4 {
12510
    padding-right: 1.5rem !important;
12511
    padding-left: 1.5rem !important;
12512
  }
16848 stevensc 12513
 
16825 efrain 12514
  .px-lg-5 {
12515
    padding-right: 3rem !important;
12516
    padding-left: 3rem !important;
12517
  }
16848 stevensc 12518
 
16825 efrain 12519
  .px-lg-6 {
12520
    padding-right: 4.5rem !important;
12521
    padding-left: 4.5rem !important;
12522
  }
16848 stevensc 12523
 
16825 efrain 12524
  .px-lg-7 {
12525
    padding-right: 6rem !important;
12526
    padding-left: 6rem !important;
12527
  }
16848 stevensc 12528
 
16825 efrain 12529
  .py-lg-0 {
12530
    padding-top: 0 !important;
12531
    padding-bottom: 0 !important;
12532
  }
16848 stevensc 12533
 
16825 efrain 12534
  .py-lg-1 {
12535
    padding-top: 0.25rem !important;
12536
    padding-bottom: 0.25rem !important;
12537
  }
16848 stevensc 12538
 
16825 efrain 12539
  .py-lg-2 {
12540
    padding-top: 0.5rem !important;
12541
    padding-bottom: 0.5rem !important;
12542
  }
16848 stevensc 12543
 
16825 efrain 12544
  .py-lg-3 {
12545
    padding-top: 1rem !important;
12546
    padding-bottom: 1rem !important;
12547
  }
16848 stevensc 12548
 
16825 efrain 12549
  .py-lg-4 {
12550
    padding-top: 1.5rem !important;
12551
    padding-bottom: 1.5rem !important;
12552
  }
16848 stevensc 12553
 
16825 efrain 12554
  .py-lg-5 {
12555
    padding-top: 3rem !important;
12556
    padding-bottom: 3rem !important;
12557
  }
16848 stevensc 12558
 
16825 efrain 12559
  .py-lg-6 {
12560
    padding-top: 4.5rem !important;
12561
    padding-bottom: 4.5rem !important;
12562
  }
16848 stevensc 12563
 
16825 efrain 12564
  .py-lg-7 {
12565
    padding-top: 6rem !important;
12566
    padding-bottom: 6rem !important;
12567
  }
16848 stevensc 12568
 
16825 efrain 12569
  .pt-lg-0 {
12570
    padding-top: 0 !important;
12571
  }
16848 stevensc 12572
 
16825 efrain 12573
  .pt-lg-1 {
12574
    padding-top: 0.25rem !important;
12575
  }
16848 stevensc 12576
 
16825 efrain 12577
  .pt-lg-2 {
12578
    padding-top: 0.5rem !important;
12579
  }
16848 stevensc 12580
 
16825 efrain 12581
  .pt-lg-3 {
12582
    padding-top: 1rem !important;
12583
  }
16848 stevensc 12584
 
16825 efrain 12585
  .pt-lg-4 {
12586
    padding-top: 1.5rem !important;
12587
  }
16848 stevensc 12588
 
16825 efrain 12589
  .pt-lg-5 {
12590
    padding-top: 3rem !important;
12591
  }
16848 stevensc 12592
 
16825 efrain 12593
  .pt-lg-6 {
12594
    padding-top: 4.5rem !important;
12595
  }
16848 stevensc 12596
 
16825 efrain 12597
  .pt-lg-7 {
12598
    padding-top: 6rem !important;
12599
  }
16848 stevensc 12600
 
16825 efrain 12601
  .pe-lg-0 {
12602
    padding-right: 0 !important;
12603
  }
16848 stevensc 12604
 
16825 efrain 12605
  .pe-lg-1 {
12606
    padding-right: 0.25rem !important;
12607
  }
16848 stevensc 12608
 
16825 efrain 12609
  .pe-lg-2 {
12610
    padding-right: 0.5rem !important;
12611
  }
16848 stevensc 12612
 
16825 efrain 12613
  .pe-lg-3 {
12614
    padding-right: 1rem !important;
12615
  }
16848 stevensc 12616
 
16825 efrain 12617
  .pe-lg-4 {
12618
    padding-right: 1.5rem !important;
12619
  }
16848 stevensc 12620
 
16825 efrain 12621
  .pe-lg-5 {
12622
    padding-right: 3rem !important;
12623
  }
16848 stevensc 12624
 
16825 efrain 12625
  .pe-lg-6 {
12626
    padding-right: 4.5rem !important;
12627
  }
16848 stevensc 12628
 
16825 efrain 12629
  .pe-lg-7 {
12630
    padding-right: 6rem !important;
12631
  }
16848 stevensc 12632
 
16825 efrain 12633
  .pb-lg-0 {
12634
    padding-bottom: 0 !important;
12635
  }
16848 stevensc 12636
 
16825 efrain 12637
  .pb-lg-1 {
12638
    padding-bottom: 0.25rem !important;
12639
  }
16848 stevensc 12640
 
16825 efrain 12641
  .pb-lg-2 {
12642
    padding-bottom: 0.5rem !important;
12643
  }
16848 stevensc 12644
 
16825 efrain 12645
  .pb-lg-3 {
12646
    padding-bottom: 1rem !important;
12647
  }
16848 stevensc 12648
 
16825 efrain 12649
  .pb-lg-4 {
12650
    padding-bottom: 1.5rem !important;
12651
  }
16848 stevensc 12652
 
16825 efrain 12653
  .pb-lg-5 {
12654
    padding-bottom: 3rem !important;
12655
  }
16848 stevensc 12656
 
16825 efrain 12657
  .pb-lg-6 {
12658
    padding-bottom: 4.5rem !important;
12659
  }
16848 stevensc 12660
 
16825 efrain 12661
  .pb-lg-7 {
12662
    padding-bottom: 6rem !important;
12663
  }
16848 stevensc 12664
 
16825 efrain 12665
  .ps-lg-0 {
12666
    padding-left: 0 !important;
12667
  }
16848 stevensc 12668
 
16825 efrain 12669
  .ps-lg-1 {
12670
    padding-left: 0.25rem !important;
12671
  }
16848 stevensc 12672
 
16825 efrain 12673
  .ps-lg-2 {
12674
    padding-left: 0.5rem !important;
12675
  }
16848 stevensc 12676
 
16825 efrain 12677
  .ps-lg-3 {
12678
    padding-left: 1rem !important;
12679
  }
16848 stevensc 12680
 
16825 efrain 12681
  .ps-lg-4 {
12682
    padding-left: 1.5rem !important;
12683
  }
16848 stevensc 12684
 
16825 efrain 12685
  .ps-lg-5 {
12686
    padding-left: 3rem !important;
12687
  }
16848 stevensc 12688
 
16825 efrain 12689
  .ps-lg-6 {
12690
    padding-left: 4.5rem !important;
12691
  }
16848 stevensc 12692
 
16825 efrain 12693
  .ps-lg-7 {
12694
    padding-left: 6rem !important;
12695
  }
16848 stevensc 12696
 
16825 efrain 12697
  .gap-lg-0 {
12698
    gap: 0 !important;
12699
  }
16848 stevensc 12700
 
16825 efrain 12701
  .gap-lg-1 {
12702
    gap: 0.25rem !important;
12703
  }
16848 stevensc 12704
 
16825 efrain 12705
  .gap-lg-2 {
12706
    gap: 0.5rem !important;
12707
  }
16848 stevensc 12708
 
16825 efrain 12709
  .gap-lg-3 {
12710
    gap: 1rem !important;
12711
  }
16848 stevensc 12712
 
16825 efrain 12713
  .gap-lg-4 {
12714
    gap: 1.5rem !important;
12715
  }
16848 stevensc 12716
 
16825 efrain 12717
  .gap-lg-5 {
12718
    gap: 3rem !important;
12719
  }
16848 stevensc 12720
 
16825 efrain 12721
  .gap-lg-6 {
12722
    gap: 4.5rem !important;
12723
  }
16848 stevensc 12724
 
16825 efrain 12725
  .gap-lg-7 {
12726
    gap: 6rem !important;
12727
  }
16848 stevensc 12728
 
16825 efrain 12729
  .text-lg-start {
12730
    text-align: left !important;
12731
  }
16848 stevensc 12732
 
16825 efrain 12733
  .text-lg-end {
12734
    text-align: right !important;
12735
  }
16848 stevensc 12736
 
16825 efrain 12737
  .text-lg-center {
12738
    text-align: center !important;
12739
  }
12740
}
16848 stevensc 12741
 
16825 efrain 12742
@media (min-width: 1200px) {
12743
  .float-xl-start {
12744
    float: left !important;
12745
  }
16848 stevensc 12746
 
16825 efrain 12747
  .float-xl-end {
12748
    float: right !important;
12749
  }
16848 stevensc 12750
 
16825 efrain 12751
  .float-xl-none {
12752
    float: none !important;
12753
  }
16848 stevensc 12754
 
16825 efrain 12755
  .d-xl-inline {
12756
    display: inline !important;
12757
  }
16848 stevensc 12758
 
16825 efrain 12759
  .d-xl-inline-block {
12760
    display: inline-block !important;
12761
  }
16848 stevensc 12762
 
16825 efrain 12763
  .d-xl-block {
12764
    display: block !important;
12765
  }
16848 stevensc 12766
 
16825 efrain 12767
  .d-xl-grid {
12768
    display: grid !important;
12769
  }
16848 stevensc 12770
 
16825 efrain 12771
  .d-xl-table {
12772
    display: table !important;
12773
  }
16848 stevensc 12774
 
16825 efrain 12775
  .d-xl-table-row {
12776
    display: table-row !important;
12777
  }
16848 stevensc 12778
 
16825 efrain 12779
  .d-xl-table-cell {
12780
    display: table-cell !important;
12781
  }
16848 stevensc 12782
 
16825 efrain 12783
  .d-xl-flex {
12784
    display: flex !important;
12785
  }
16848 stevensc 12786
 
16825 efrain 12787
  .d-xl-inline-flex {
12788
    display: inline-flex !important;
12789
  }
16848 stevensc 12790
 
16825 efrain 12791
  .d-xl-none {
12792
    display: none !important;
12793
  }
16848 stevensc 12794
 
16825 efrain 12795
  .border-xl {
12796
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12797
  }
16848 stevensc 12798
 
16825 efrain 12799
  .border-xl-0 {
12800
    border: 0 !important;
12801
  }
16848 stevensc 12802
 
16825 efrain 12803
  .border-top-xl {
12804
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12805
  }
16848 stevensc 12806
 
16825 efrain 12807
  .border-top-xl-0 {
12808
    border-top: 0 !important;
12809
  }
16848 stevensc 12810
 
16825 efrain 12811
  .border-end-xl {
12812
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12813
  }
16848 stevensc 12814
 
16825 efrain 12815
  .border-end-xl-0 {
12816
    border-right: 0 !important;
12817
  }
16848 stevensc 12818
 
16825 efrain 12819
  .border-bottom-xl {
12820
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12821
  }
16848 stevensc 12822
 
16825 efrain 12823
  .border-bottom-xl-0 {
12824
    border-bottom: 0 !important;
12825
  }
16848 stevensc 12826
 
16825 efrain 12827
  .border-start-xl {
12828
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12829
  }
16848 stevensc 12830
 
16825 efrain 12831
  .border-start-xl-0 {
12832
    border-left: 0 !important;
12833
  }
16848 stevensc 12834
 
16825 efrain 12835
  .flex-xl-fill {
12836
    flex: 1 1 auto !important;
12837
  }
16848 stevensc 12838
 
16825 efrain 12839
  .flex-xl-row {
12840
    flex-direction: row !important;
12841
  }
16848 stevensc 12842
 
16825 efrain 12843
  .flex-xl-column {
12844
    flex-direction: column !important;
12845
  }
16848 stevensc 12846
 
16825 efrain 12847
  .flex-xl-row-reverse {
12848
    flex-direction: row-reverse !important;
12849
  }
16848 stevensc 12850
 
16825 efrain 12851
  .flex-xl-column-reverse {
12852
    flex-direction: column-reverse !important;
12853
  }
16848 stevensc 12854
 
16825 efrain 12855
  .flex-xl-grow-0 {
12856
    flex-grow: 0 !important;
12857
  }
16848 stevensc 12858
 
16825 efrain 12859
  .flex-xl-grow-1 {
12860
    flex-grow: 1 !important;
12861
  }
16848 stevensc 12862
 
16825 efrain 12863
  .flex-xl-shrink-0 {
12864
    flex-shrink: 0 !important;
12865
  }
16848 stevensc 12866
 
16825 efrain 12867
  .flex-xl-shrink-1 {
12868
    flex-shrink: 1 !important;
12869
  }
16848 stevensc 12870
 
16825 efrain 12871
  .flex-xl-wrap {
12872
    flex-wrap: wrap !important;
12873
  }
16848 stevensc 12874
 
16825 efrain 12875
  .flex-xl-nowrap {
12876
    flex-wrap: nowrap !important;
12877
  }
16848 stevensc 12878
 
16825 efrain 12879
  .flex-xl-wrap-reverse {
12880
    flex-wrap: wrap-reverse !important;
12881
  }
16848 stevensc 12882
 
16825 efrain 12883
  .justify-content-xl-start {
12884
    justify-content: flex-start !important;
12885
  }
16848 stevensc 12886
 
16825 efrain 12887
  .justify-content-xl-end {
12888
    justify-content: flex-end !important;
12889
  }
16848 stevensc 12890
 
16825 efrain 12891
  .justify-content-xl-center {
12892
    justify-content: center !important;
12893
  }
16848 stevensc 12894
 
16825 efrain 12895
  .justify-content-xl-between {
12896
    justify-content: space-between !important;
12897
  }
16848 stevensc 12898
 
16825 efrain 12899
  .justify-content-xl-around {
12900
    justify-content: space-around !important;
12901
  }
16848 stevensc 12902
 
16825 efrain 12903
  .justify-content-xl-evenly {
12904
    justify-content: space-evenly !important;
12905
  }
16848 stevensc 12906
 
16825 efrain 12907
  .align-items-xl-start {
12908
    align-items: flex-start !important;
12909
  }
16848 stevensc 12910
 
16825 efrain 12911
  .align-items-xl-end {
12912
    align-items: flex-end !important;
12913
  }
16848 stevensc 12914
 
16825 efrain 12915
  .align-items-xl-center {
12916
    align-items: center !important;
12917
  }
16848 stevensc 12918
 
16825 efrain 12919
  .align-items-xl-baseline {
12920
    align-items: baseline !important;
12921
  }
16848 stevensc 12922
 
16825 efrain 12923
  .align-items-xl-stretch {
12924
    align-items: stretch !important;
12925
  }
16848 stevensc 12926
 
16825 efrain 12927
  .align-content-xl-start {
12928
    align-content: flex-start !important;
12929
  }
16848 stevensc 12930
 
16825 efrain 12931
  .align-content-xl-end {
12932
    align-content: flex-end !important;
12933
  }
16848 stevensc 12934
 
16825 efrain 12935
  .align-content-xl-center {
12936
    align-content: center !important;
12937
  }
16848 stevensc 12938
 
16825 efrain 12939
  .align-content-xl-between {
12940
    align-content: space-between !important;
12941
  }
16848 stevensc 12942
 
16825 efrain 12943
  .align-content-xl-around {
12944
    align-content: space-around !important;
12945
  }
16848 stevensc 12946
 
16825 efrain 12947
  .align-content-xl-stretch {
12948
    align-content: stretch !important;
12949
  }
16848 stevensc 12950
 
16825 efrain 12951
  .align-self-xl-auto {
12952
    align-self: auto !important;
12953
  }
16848 stevensc 12954
 
16825 efrain 12955
  .align-self-xl-start {
12956
    align-self: flex-start !important;
12957
  }
16848 stevensc 12958
 
16825 efrain 12959
  .align-self-xl-end {
12960
    align-self: flex-end !important;
12961
  }
16848 stevensc 12962
 
16825 efrain 12963
  .align-self-xl-center {
12964
    align-self: center !important;
12965
  }
16848 stevensc 12966
 
16825 efrain 12967
  .align-self-xl-baseline {
12968
    align-self: baseline !important;
12969
  }
16848 stevensc 12970
 
16825 efrain 12971
  .align-self-xl-stretch {
12972
    align-self: stretch !important;
12973
  }
16848 stevensc 12974
 
16825 efrain 12975
  .order-xl-first {
12976
    order: -1 !important;
12977
  }
16848 stevensc 12978
 
16825 efrain 12979
  .order-xl-0 {
12980
    order: 0 !important;
12981
  }
16848 stevensc 12982
 
16825 efrain 12983
  .order-xl-1 {
12984
    order: 1 !important;
12985
  }
16848 stevensc 12986
 
16825 efrain 12987
  .order-xl-2 {
12988
    order: 2 !important;
12989
  }
16848 stevensc 12990
 
16825 efrain 12991
  .order-xl-3 {
12992
    order: 3 !important;
12993
  }
16848 stevensc 12994
 
16825 efrain 12995
  .order-xl-4 {
12996
    order: 4 !important;
12997
  }
16848 stevensc 12998
 
16825 efrain 12999
  .order-xl-5 {
13000
    order: 5 !important;
13001
  }
16848 stevensc 13002
 
16825 efrain 13003
  .order-xl-last {
13004
    order: 6 !important;
13005
  }
16848 stevensc 13006
 
16825 efrain 13007
  .m-xl-0 {
13008
    margin: 0 !important;
13009
  }
16848 stevensc 13010
 
16825 efrain 13011
  .m-xl-1 {
13012
    margin: 0.25rem !important;
13013
  }
16848 stevensc 13014
 
16825 efrain 13015
  .m-xl-2 {
13016
    margin: 0.5rem !important;
13017
  }
16848 stevensc 13018
 
16825 efrain 13019
  .m-xl-3 {
13020
    margin: 1rem !important;
13021
  }
16848 stevensc 13022
 
16825 efrain 13023
  .m-xl-4 {
13024
    margin: 1.5rem !important;
13025
  }
16848 stevensc 13026
 
16825 efrain 13027
  .m-xl-5 {
13028
    margin: 3rem !important;
13029
  }
16848 stevensc 13030
 
16825 efrain 13031
  .m-xl-6 {
13032
    margin: 4.5rem !important;
13033
  }
16848 stevensc 13034
 
16825 efrain 13035
  .m-xl-7 {
13036
    margin: 6rem !important;
13037
  }
16848 stevensc 13038
 
16825 efrain 13039
  .m-xl-auto {
13040
    margin: auto !important;
13041
  }
16848 stevensc 13042
 
16825 efrain 13043
  .mx-xl-0 {
13044
    margin-right: 0 !important;
13045
    margin-left: 0 !important;
13046
  }
16848 stevensc 13047
 
16825 efrain 13048
  .mx-xl-1 {
13049
    margin-right: 0.25rem !important;
13050
    margin-left: 0.25rem !important;
13051
  }
16848 stevensc 13052
 
16825 efrain 13053
  .mx-xl-2 {
13054
    margin-right: 0.5rem !important;
13055
    margin-left: 0.5rem !important;
13056
  }
16848 stevensc 13057
 
16825 efrain 13058
  .mx-xl-3 {
13059
    margin-right: 1rem !important;
13060
    margin-left: 1rem !important;
13061
  }
16848 stevensc 13062
 
16825 efrain 13063
  .mx-xl-4 {
13064
    margin-right: 1.5rem !important;
13065
    margin-left: 1.5rem !important;
13066
  }
16848 stevensc 13067
 
16825 efrain 13068
  .mx-xl-5 {
13069
    margin-right: 3rem !important;
13070
    margin-left: 3rem !important;
13071
  }
16848 stevensc 13072
 
16825 efrain 13073
  .mx-xl-6 {
13074
    margin-right: 4.5rem !important;
13075
    margin-left: 4.5rem !important;
13076
  }
16848 stevensc 13077
 
16825 efrain 13078
  .mx-xl-7 {
13079
    margin-right: 6rem !important;
13080
    margin-left: 6rem !important;
13081
  }
16848 stevensc 13082
 
16825 efrain 13083
  .mx-xl-auto {
13084
    margin-right: auto !important;
13085
    margin-left: auto !important;
13086
  }
16848 stevensc 13087
 
16825 efrain 13088
  .my-xl-0 {
13089
    margin-top: 0 !important;
13090
    margin-bottom: 0 !important;
13091
  }
16848 stevensc 13092
 
16825 efrain 13093
  .my-xl-1 {
13094
    margin-top: 0.25rem !important;
13095
    margin-bottom: 0.25rem !important;
13096
  }
16848 stevensc 13097
 
16825 efrain 13098
  .my-xl-2 {
13099
    margin-top: 0.5rem !important;
13100
    margin-bottom: 0.5rem !important;
13101
  }
16848 stevensc 13102
 
16825 efrain 13103
  .my-xl-3 {
13104
    margin-top: 1rem !important;
13105
    margin-bottom: 1rem !important;
13106
  }
16848 stevensc 13107
 
16825 efrain 13108
  .my-xl-4 {
13109
    margin-top: 1.5rem !important;
13110
    margin-bottom: 1.5rem !important;
13111
  }
16848 stevensc 13112
 
16825 efrain 13113
  .my-xl-5 {
13114
    margin-top: 3rem !important;
13115
    margin-bottom: 3rem !important;
13116
  }
16848 stevensc 13117
 
16825 efrain 13118
  .my-xl-6 {
13119
    margin-top: 4.5rem !important;
13120
    margin-bottom: 4.5rem !important;
13121
  }
16848 stevensc 13122
 
16825 efrain 13123
  .my-xl-7 {
13124
    margin-top: 6rem !important;
13125
    margin-bottom: 6rem !important;
13126
  }
16848 stevensc 13127
 
16825 efrain 13128
  .my-xl-auto {
13129
    margin-top: auto !important;
13130
    margin-bottom: auto !important;
13131
  }
16848 stevensc 13132
 
16825 efrain 13133
  .mt-xl-0 {
13134
    margin-top: 0 !important;
13135
  }
16848 stevensc 13136
 
16825 efrain 13137
  .mt-xl-1 {
13138
    margin-top: 0.25rem !important;
13139
  }
16848 stevensc 13140
 
16825 efrain 13141
  .mt-xl-2 {
13142
    margin-top: 0.5rem !important;
13143
  }
16848 stevensc 13144
 
16825 efrain 13145
  .mt-xl-3 {
13146
    margin-top: 1rem !important;
13147
  }
16848 stevensc 13148
 
16825 efrain 13149
  .mt-xl-4 {
13150
    margin-top: 1.5rem !important;
13151
  }
16848 stevensc 13152
 
16825 efrain 13153
  .mt-xl-5 {
13154
    margin-top: 3rem !important;
13155
  }
16848 stevensc 13156
 
16825 efrain 13157
  .mt-xl-6 {
13158
    margin-top: 4.5rem !important;
13159
  }
16848 stevensc 13160
 
16825 efrain 13161
  .mt-xl-7 {
13162
    margin-top: 6rem !important;
13163
  }
16848 stevensc 13164
 
16825 efrain 13165
  .mt-xl-auto {
13166
    margin-top: auto !important;
13167
  }
16848 stevensc 13168
 
16825 efrain 13169
  .me-xl-0 {
13170
    margin-right: 0 !important;
13171
  }
16848 stevensc 13172
 
16825 efrain 13173
  .me-xl-1 {
13174
    margin-right: 0.25rem !important;
13175
  }
16848 stevensc 13176
 
16825 efrain 13177
  .me-xl-2 {
13178
    margin-right: 0.5rem !important;
13179
  }
16848 stevensc 13180
 
16825 efrain 13181
  .me-xl-3 {
13182
    margin-right: 1rem !important;
13183
  }
16848 stevensc 13184
 
16825 efrain 13185
  .me-xl-4 {
13186
    margin-right: 1.5rem !important;
13187
  }
16848 stevensc 13188
 
16825 efrain 13189
  .me-xl-5 {
13190
    margin-right: 3rem !important;
13191
  }
16848 stevensc 13192
 
16825 efrain 13193
  .me-xl-6 {
13194
    margin-right: 4.5rem !important;
13195
  }
16848 stevensc 13196
 
16825 efrain 13197
  .me-xl-7 {
13198
    margin-right: 6rem !important;
13199
  }
16848 stevensc 13200
 
16825 efrain 13201
  .me-xl-auto {
13202
    margin-right: auto !important;
13203
  }
16848 stevensc 13204
 
16825 efrain 13205
  .mb-xl-0 {
13206
    margin-bottom: 0 !important;
13207
  }
16848 stevensc 13208
 
16825 efrain 13209
  .mb-xl-1 {
13210
    margin-bottom: 0.25rem !important;
13211
  }
16848 stevensc 13212
 
16825 efrain 13213
  .mb-xl-2 {
13214
    margin-bottom: 0.5rem !important;
13215
  }
16848 stevensc 13216
 
16825 efrain 13217
  .mb-xl-3 {
13218
    margin-bottom: 1rem !important;
13219
  }
16848 stevensc 13220
 
16825 efrain 13221
  .mb-xl-4 {
13222
    margin-bottom: 1.5rem !important;
13223
  }
16848 stevensc 13224
 
16825 efrain 13225
  .mb-xl-5 {
13226
    margin-bottom: 3rem !important;
13227
  }
16848 stevensc 13228
 
16825 efrain 13229
  .mb-xl-6 {
13230
    margin-bottom: 4.5rem !important;
13231
  }
16848 stevensc 13232
 
16825 efrain 13233
  .mb-xl-7 {
13234
    margin-bottom: 6rem !important;
13235
  }
16848 stevensc 13236
 
16825 efrain 13237
  .mb-xl-auto {
13238
    margin-bottom: auto !important;
13239
  }
16848 stevensc 13240
 
16825 efrain 13241
  .ms-xl-0 {
13242
    margin-left: 0 !important;
13243
  }
16848 stevensc 13244
 
16825 efrain 13245
  .ms-xl-1 {
13246
    margin-left: 0.25rem !important;
13247
  }
16848 stevensc 13248
 
16825 efrain 13249
  .ms-xl-2 {
13250
    margin-left: 0.5rem !important;
13251
  }
16848 stevensc 13252
 
16825 efrain 13253
  .ms-xl-3 {
13254
    margin-left: 1rem !important;
13255
  }
16848 stevensc 13256
 
16825 efrain 13257
  .ms-xl-4 {
13258
    margin-left: 1.5rem !important;
13259
  }
16848 stevensc 13260
 
16825 efrain 13261
  .ms-xl-5 {
13262
    margin-left: 3rem !important;
13263
  }
16848 stevensc 13264
 
16825 efrain 13265
  .ms-xl-6 {
13266
    margin-left: 4.5rem !important;
13267
  }
16848 stevensc 13268
 
16825 efrain 13269
  .ms-xl-7 {
13270
    margin-left: 6rem !important;
13271
  }
16848 stevensc 13272
 
16825 efrain 13273
  .ms-xl-auto {
13274
    margin-left: auto !important;
13275
  }
16848 stevensc 13276
 
16825 efrain 13277
  .m-xl-n1 {
13278
    margin: -0.25rem !important;
13279
  }
16848 stevensc 13280
 
16825 efrain 13281
  .m-xl-n2 {
13282
    margin: -0.5rem !important;
13283
  }
16848 stevensc 13284
 
16825 efrain 13285
  .m-xl-n3 {
13286
    margin: -1rem !important;
13287
  }
16848 stevensc 13288
 
16825 efrain 13289
  .m-xl-n4 {
13290
    margin: -1.5rem !important;
13291
  }
16848 stevensc 13292
 
16825 efrain 13293
  .m-xl-n5 {
13294
    margin: -3rem !important;
13295
  }
16848 stevensc 13296
 
16825 efrain 13297
  .m-xl-n6 {
13298
    margin: -4.5rem !important;
13299
  }
16848 stevensc 13300
 
16825 efrain 13301
  .m-xl-n7 {
13302
    margin: -6rem !important;
13303
  }
16848 stevensc 13304
 
16825 efrain 13305
  .mx-xl-n1 {
13306
    margin-right: -0.25rem !important;
13307
    margin-left: -0.25rem !important;
13308
  }
16848 stevensc 13309
 
16825 efrain 13310
  .mx-xl-n2 {
13311
    margin-right: -0.5rem !important;
13312
    margin-left: -0.5rem !important;
13313
  }
16848 stevensc 13314
 
16825 efrain 13315
  .mx-xl-n3 {
13316
    margin-right: -1rem !important;
13317
    margin-left: -1rem !important;
13318
  }
16848 stevensc 13319
 
16825 efrain 13320
  .mx-xl-n4 {
13321
    margin-right: -1.5rem !important;
13322
    margin-left: -1.5rem !important;
13323
  }
16848 stevensc 13324
 
16825 efrain 13325
  .mx-xl-n5 {
13326
    margin-right: -3rem !important;
13327
    margin-left: -3rem !important;
13328
  }
16848 stevensc 13329
 
16825 efrain 13330
  .mx-xl-n6 {
13331
    margin-right: -4.5rem !important;
13332
    margin-left: -4.5rem !important;
13333
  }
16848 stevensc 13334
 
16825 efrain 13335
  .mx-xl-n7 {
13336
    margin-right: -6rem !important;
13337
    margin-left: -6rem !important;
13338
  }
16848 stevensc 13339
 
16825 efrain 13340
  .my-xl-n1 {
13341
    margin-top: -0.25rem !important;
13342
    margin-bottom: -0.25rem !important;
13343
  }
16848 stevensc 13344
 
16825 efrain 13345
  .my-xl-n2 {
13346
    margin-top: -0.5rem !important;
13347
    margin-bottom: -0.5rem !important;
13348
  }
16848 stevensc 13349
 
16825 efrain 13350
  .my-xl-n3 {
13351
    margin-top: -1rem !important;
13352
    margin-bottom: -1rem !important;
13353
  }
16848 stevensc 13354
 
16825 efrain 13355
  .my-xl-n4 {
13356
    margin-top: -1.5rem !important;
13357
    margin-bottom: -1.5rem !important;
13358
  }
16848 stevensc 13359
 
16825 efrain 13360
  .my-xl-n5 {
13361
    margin-top: -3rem !important;
13362
    margin-bottom: -3rem !important;
13363
  }
16848 stevensc 13364
 
16825 efrain 13365
  .my-xl-n6 {
13366
    margin-top: -4.5rem !important;
13367
    margin-bottom: -4.5rem !important;
13368
  }
16848 stevensc 13369
 
16825 efrain 13370
  .my-xl-n7 {
13371
    margin-top: -6rem !important;
13372
    margin-bottom: -6rem !important;
13373
  }
16848 stevensc 13374
 
16825 efrain 13375
  .mt-xl-n1 {
13376
    margin-top: -0.25rem !important;
13377
  }
16848 stevensc 13378
 
16825 efrain 13379
  .mt-xl-n2 {
13380
    margin-top: -0.5rem !important;
13381
  }
16848 stevensc 13382
 
16825 efrain 13383
  .mt-xl-n3 {
13384
    margin-top: -1rem !important;
13385
  }
16848 stevensc 13386
 
16825 efrain 13387
  .mt-xl-n4 {
13388
    margin-top: -1.5rem !important;
13389
  }
16848 stevensc 13390
 
16825 efrain 13391
  .mt-xl-n5 {
13392
    margin-top: -3rem !important;
13393
  }
16848 stevensc 13394
 
16825 efrain 13395
  .mt-xl-n6 {
13396
    margin-top: -4.5rem !important;
13397
  }
16848 stevensc 13398
 
16825 efrain 13399
  .mt-xl-n7 {
13400
    margin-top: -6rem !important;
13401
  }
16848 stevensc 13402
 
16825 efrain 13403
  .me-xl-n1 {
13404
    margin-right: -0.25rem !important;
13405
  }
16848 stevensc 13406
 
16825 efrain 13407
  .me-xl-n2 {
13408
    margin-right: -0.5rem !important;
13409
  }
16848 stevensc 13410
 
16825 efrain 13411
  .me-xl-n3 {
13412
    margin-right: -1rem !important;
13413
  }
16848 stevensc 13414
 
16825 efrain 13415
  .me-xl-n4 {
13416
    margin-right: -1.5rem !important;
13417
  }
16848 stevensc 13418
 
16825 efrain 13419
  .me-xl-n5 {
13420
    margin-right: -3rem !important;
13421
  }
16848 stevensc 13422
 
16825 efrain 13423
  .me-xl-n6 {
13424
    margin-right: -4.5rem !important;
13425
  }
16848 stevensc 13426
 
16825 efrain 13427
  .me-xl-n7 {
13428
    margin-right: -6rem !important;
13429
  }
16848 stevensc 13430
 
16825 efrain 13431
  .mb-xl-n1 {
13432
    margin-bottom: -0.25rem !important;
13433
  }
16848 stevensc 13434
 
16825 efrain 13435
  .mb-xl-n2 {
13436
    margin-bottom: -0.5rem !important;
13437
  }
16848 stevensc 13438
 
16825 efrain 13439
  .mb-xl-n3 {
13440
    margin-bottom: -1rem !important;
13441
  }
16848 stevensc 13442
 
16825 efrain 13443
  .mb-xl-n4 {
13444
    margin-bottom: -1.5rem !important;
13445
  }
16848 stevensc 13446
 
16825 efrain 13447
  .mb-xl-n5 {
13448
    margin-bottom: -3rem !important;
13449
  }
16848 stevensc 13450
 
16825 efrain 13451
  .mb-xl-n6 {
13452
    margin-bottom: -4.5rem !important;
13453
  }
16848 stevensc 13454
 
16825 efrain 13455
  .mb-xl-n7 {
13456
    margin-bottom: -6rem !important;
13457
  }
16848 stevensc 13458
 
16825 efrain 13459
  .ms-xl-n1 {
13460
    margin-left: -0.25rem !important;
13461
  }
16848 stevensc 13462
 
16825 efrain 13463
  .ms-xl-n2 {
13464
    margin-left: -0.5rem !important;
13465
  }
16848 stevensc 13466
 
16825 efrain 13467
  .ms-xl-n3 {
13468
    margin-left: -1rem !important;
13469
  }
16848 stevensc 13470
 
16825 efrain 13471
  .ms-xl-n4 {
13472
    margin-left: -1.5rem !important;
13473
  }
16848 stevensc 13474
 
16825 efrain 13475
  .ms-xl-n5 {
13476
    margin-left: -3rem !important;
13477
  }
16848 stevensc 13478
 
16825 efrain 13479
  .ms-xl-n6 {
13480
    margin-left: -4.5rem !important;
13481
  }
16848 stevensc 13482
 
16825 efrain 13483
  .ms-xl-n7 {
13484
    margin-left: -6rem !important;
13485
  }
16848 stevensc 13486
 
16825 efrain 13487
  .p-xl-0 {
13488
    padding: 0 !important;
13489
  }
16848 stevensc 13490
 
16825 efrain 13491
  .p-xl-1 {
13492
    padding: 0.25rem !important;
13493
  }
16848 stevensc 13494
 
16825 efrain 13495
  .p-xl-2 {
13496
    padding: 0.5rem !important;
13497
  }
16848 stevensc 13498
 
16825 efrain 13499
  .p-xl-3 {
13500
    padding: 1rem !important;
13501
  }
16848 stevensc 13502
 
16825 efrain 13503
  .p-xl-4 {
13504
    padding: 1.5rem !important;
13505
  }
16848 stevensc 13506
 
16825 efrain 13507
  .p-xl-5 {
13508
    padding: 3rem !important;
13509
  }
16848 stevensc 13510
 
16825 efrain 13511
  .p-xl-6 {
13512
    padding: 4.5rem !important;
13513
  }
16848 stevensc 13514
 
16825 efrain 13515
  .p-xl-7 {
13516
    padding: 6rem !important;
13517
  }
16848 stevensc 13518
 
16825 efrain 13519
  .px-xl-0 {
13520
    padding-right: 0 !important;
13521
    padding-left: 0 !important;
13522
  }
16848 stevensc 13523
 
16825 efrain 13524
  .px-xl-1 {
13525
    padding-right: 0.25rem !important;
13526
    padding-left: 0.25rem !important;
13527
  }
16848 stevensc 13528
 
16825 efrain 13529
  .px-xl-2 {
13530
    padding-right: 0.5rem !important;
13531
    padding-left: 0.5rem !important;
13532
  }
16848 stevensc 13533
 
16825 efrain 13534
  .px-xl-3 {
13535
    padding-right: 1rem !important;
13536
    padding-left: 1rem !important;
13537
  }
16848 stevensc 13538
 
16825 efrain 13539
  .px-xl-4 {
13540
    padding-right: 1.5rem !important;
13541
    padding-left: 1.5rem !important;
13542
  }
16848 stevensc 13543
 
16825 efrain 13544
  .px-xl-5 {
13545
    padding-right: 3rem !important;
13546
    padding-left: 3rem !important;
13547
  }
16848 stevensc 13548
 
16825 efrain 13549
  .px-xl-6 {
13550
    padding-right: 4.5rem !important;
13551
    padding-left: 4.5rem !important;
13552
  }
16848 stevensc 13553
 
16825 efrain 13554
  .px-xl-7 {
13555
    padding-right: 6rem !important;
13556
    padding-left: 6rem !important;
13557
  }
16848 stevensc 13558
 
16825 efrain 13559
  .py-xl-0 {
13560
    padding-top: 0 !important;
13561
    padding-bottom: 0 !important;
13562
  }
16848 stevensc 13563
 
16825 efrain 13564
  .py-xl-1 {
13565
    padding-top: 0.25rem !important;
13566
    padding-bottom: 0.25rem !important;
13567
  }
16848 stevensc 13568
 
16825 efrain 13569
  .py-xl-2 {
13570
    padding-top: 0.5rem !important;
13571
    padding-bottom: 0.5rem !important;
13572
  }
16848 stevensc 13573
 
16825 efrain 13574
  .py-xl-3 {
13575
    padding-top: 1rem !important;
13576
    padding-bottom: 1rem !important;
13577
  }
16848 stevensc 13578
 
16825 efrain 13579
  .py-xl-4 {
13580
    padding-top: 1.5rem !important;
13581
    padding-bottom: 1.5rem !important;
13582
  }
16848 stevensc 13583
 
16825 efrain 13584
  .py-xl-5 {
13585
    padding-top: 3rem !important;
13586
    padding-bottom: 3rem !important;
13587
  }
16848 stevensc 13588
 
16825 efrain 13589
  .py-xl-6 {
13590
    padding-top: 4.5rem !important;
13591
    padding-bottom: 4.5rem !important;
13592
  }
16848 stevensc 13593
 
16825 efrain 13594
  .py-xl-7 {
13595
    padding-top: 6rem !important;
13596
    padding-bottom: 6rem !important;
13597
  }
16848 stevensc 13598
 
16825 efrain 13599
  .pt-xl-0 {
13600
    padding-top: 0 !important;
13601
  }
16848 stevensc 13602
 
16825 efrain 13603
  .pt-xl-1 {
13604
    padding-top: 0.25rem !important;
13605
  }
16848 stevensc 13606
 
16825 efrain 13607
  .pt-xl-2 {
13608
    padding-top: 0.5rem !important;
13609
  }
16848 stevensc 13610
 
16825 efrain 13611
  .pt-xl-3 {
13612
    padding-top: 1rem !important;
13613
  }
16848 stevensc 13614
 
16825 efrain 13615
  .pt-xl-4 {
13616
    padding-top: 1.5rem !important;
13617
  }
16848 stevensc 13618
 
16825 efrain 13619
  .pt-xl-5 {
13620
    padding-top: 3rem !important;
13621
  }
16848 stevensc 13622
 
16825 efrain 13623
  .pt-xl-6 {
13624
    padding-top: 4.5rem !important;
13625
  }
16848 stevensc 13626
 
16825 efrain 13627
  .pt-xl-7 {
13628
    padding-top: 6rem !important;
13629
  }
16848 stevensc 13630
 
16825 efrain 13631
  .pe-xl-0 {
13632
    padding-right: 0 !important;
13633
  }
16848 stevensc 13634
 
16825 efrain 13635
  .pe-xl-1 {
13636
    padding-right: 0.25rem !important;
13637
  }
16848 stevensc 13638
 
16825 efrain 13639
  .pe-xl-2 {
13640
    padding-right: 0.5rem !important;
13641
  }
16848 stevensc 13642
 
16825 efrain 13643
  .pe-xl-3 {
13644
    padding-right: 1rem !important;
13645
  }
16848 stevensc 13646
 
16825 efrain 13647
  .pe-xl-4 {
13648
    padding-right: 1.5rem !important;
13649
  }
16848 stevensc 13650
 
16825 efrain 13651
  .pe-xl-5 {
13652
    padding-right: 3rem !important;
13653
  }
16848 stevensc 13654
 
16825 efrain 13655
  .pe-xl-6 {
13656
    padding-right: 4.5rem !important;
13657
  }
16848 stevensc 13658
 
16825 efrain 13659
  .pe-xl-7 {
13660
    padding-right: 6rem !important;
13661
  }
16848 stevensc 13662
 
16825 efrain 13663
  .pb-xl-0 {
13664
    padding-bottom: 0 !important;
13665
  }
16848 stevensc 13666
 
16825 efrain 13667
  .pb-xl-1 {
13668
    padding-bottom: 0.25rem !important;
13669
  }
16848 stevensc 13670
 
16825 efrain 13671
  .pb-xl-2 {
13672
    padding-bottom: 0.5rem !important;
13673
  }
16848 stevensc 13674
 
16825 efrain 13675
  .pb-xl-3 {
13676
    padding-bottom: 1rem !important;
13677
  }
16848 stevensc 13678
 
16825 efrain 13679
  .pb-xl-4 {
13680
    padding-bottom: 1.5rem !important;
13681
  }
16848 stevensc 13682
 
16825 efrain 13683
  .pb-xl-5 {
13684
    padding-bottom: 3rem !important;
13685
  }
16848 stevensc 13686
 
16825 efrain 13687
  .pb-xl-6 {
13688
    padding-bottom: 4.5rem !important;
13689
  }
16848 stevensc 13690
 
16825 efrain 13691
  .pb-xl-7 {
13692
    padding-bottom: 6rem !important;
13693
  }
16848 stevensc 13694
 
16825 efrain 13695
  .ps-xl-0 {
13696
    padding-left: 0 !important;
13697
  }
16848 stevensc 13698
 
16825 efrain 13699
  .ps-xl-1 {
13700
    padding-left: 0.25rem !important;
13701
  }
16848 stevensc 13702
 
16825 efrain 13703
  .ps-xl-2 {
13704
    padding-left: 0.5rem !important;
13705
  }
16848 stevensc 13706
 
16825 efrain 13707
  .ps-xl-3 {
13708
    padding-left: 1rem !important;
13709
  }
16848 stevensc 13710
 
16825 efrain 13711
  .ps-xl-4 {
13712
    padding-left: 1.5rem !important;
13713
  }
16848 stevensc 13714
 
16825 efrain 13715
  .ps-xl-5 {
13716
    padding-left: 3rem !important;
13717
  }
16848 stevensc 13718
 
16825 efrain 13719
  .ps-xl-6 {
13720
    padding-left: 4.5rem !important;
13721
  }
16848 stevensc 13722
 
16825 efrain 13723
  .ps-xl-7 {
13724
    padding-left: 6rem !important;
13725
  }
16848 stevensc 13726
 
16825 efrain 13727
  .gap-xl-0 {
13728
    gap: 0 !important;
13729
  }
16848 stevensc 13730
 
16825 efrain 13731
  .gap-xl-1 {
13732
    gap: 0.25rem !important;
13733
  }
16848 stevensc 13734
 
16825 efrain 13735
  .gap-xl-2 {
13736
    gap: 0.5rem !important;
13737
  }
16848 stevensc 13738
 
16825 efrain 13739
  .gap-xl-3 {
13740
    gap: 1rem !important;
13741
  }
16848 stevensc 13742
 
16825 efrain 13743
  .gap-xl-4 {
13744
    gap: 1.5rem !important;
13745
  }
16848 stevensc 13746
 
16825 efrain 13747
  .gap-xl-5 {
13748
    gap: 3rem !important;
13749
  }
16848 stevensc 13750
 
16825 efrain 13751
  .gap-xl-6 {
13752
    gap: 4.5rem !important;
13753
  }
16848 stevensc 13754
 
16825 efrain 13755
  .gap-xl-7 {
13756
    gap: 6rem !important;
13757
  }
16848 stevensc 13758
 
16825 efrain 13759
  .text-xl-start {
13760
    text-align: left !important;
13761
  }
16848 stevensc 13762
 
16825 efrain 13763
  .text-xl-end {
13764
    text-align: right !important;
13765
  }
16848 stevensc 13766
 
16825 efrain 13767
  .text-xl-center {
13768
    text-align: center !important;
13769
  }
13770
}
16848 stevensc 13771
 
16825 efrain 13772
@media (min-width: 1400px) {
13773
  .float-xxl-start {
13774
    float: left !important;
13775
  }
16848 stevensc 13776
 
16825 efrain 13777
  .float-xxl-end {
13778
    float: right !important;
13779
  }
16848 stevensc 13780
 
16825 efrain 13781
  .float-xxl-none {
13782
    float: none !important;
13783
  }
16848 stevensc 13784
 
16825 efrain 13785
  .d-xxl-inline {
13786
    display: inline !important;
13787
  }
16848 stevensc 13788
 
16825 efrain 13789
  .d-xxl-inline-block {
13790
    display: inline-block !important;
13791
  }
16848 stevensc 13792
 
16825 efrain 13793
  .d-xxl-block {
13794
    display: block !important;
13795
  }
16848 stevensc 13796
 
16825 efrain 13797
  .d-xxl-grid {
13798
    display: grid !important;
13799
  }
16848 stevensc 13800
 
16825 efrain 13801
  .d-xxl-table {
13802
    display: table !important;
13803
  }
16848 stevensc 13804
 
16825 efrain 13805
  .d-xxl-table-row {
13806
    display: table-row !important;
13807
  }
16848 stevensc 13808
 
16825 efrain 13809
  .d-xxl-table-cell {
13810
    display: table-cell !important;
13811
  }
16848 stevensc 13812
 
16825 efrain 13813
  .d-xxl-flex {
13814
    display: flex !important;
13815
  }
16848 stevensc 13816
 
16825 efrain 13817
  .d-xxl-inline-flex {
13818
    display: inline-flex !important;
13819
  }
16848 stevensc 13820
 
16825 efrain 13821
  .d-xxl-none {
13822
    display: none !important;
13823
  }
16848 stevensc 13824
 
16825 efrain 13825
  .border-xxl {
13826
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13827
  }
16848 stevensc 13828
 
16825 efrain 13829
  .border-xxl-0 {
13830
    border: 0 !important;
13831
  }
16848 stevensc 13832
 
16825 efrain 13833
  .border-top-xxl {
13834
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13835
  }
16848 stevensc 13836
 
16825 efrain 13837
  .border-top-xxl-0 {
13838
    border-top: 0 !important;
13839
  }
16848 stevensc 13840
 
16825 efrain 13841
  .border-end-xxl {
13842
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13843
  }
16848 stevensc 13844
 
16825 efrain 13845
  .border-end-xxl-0 {
13846
    border-right: 0 !important;
13847
  }
16848 stevensc 13848
 
16825 efrain 13849
  .border-bottom-xxl {
13850
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13851
  }
16848 stevensc 13852
 
16825 efrain 13853
  .border-bottom-xxl-0 {
13854
    border-bottom: 0 !important;
13855
  }
16848 stevensc 13856
 
16825 efrain 13857
  .border-start-xxl {
13858
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13859
  }
16848 stevensc 13860
 
16825 efrain 13861
  .border-start-xxl-0 {
13862
    border-left: 0 !important;
13863
  }
16848 stevensc 13864
 
16825 efrain 13865
  .flex-xxl-fill {
13866
    flex: 1 1 auto !important;
13867
  }
16848 stevensc 13868
 
16825 efrain 13869
  .flex-xxl-row {
13870
    flex-direction: row !important;
13871
  }
16848 stevensc 13872
 
16825 efrain 13873
  .flex-xxl-column {
13874
    flex-direction: column !important;
13875
  }
16848 stevensc 13876
 
16825 efrain 13877
  .flex-xxl-row-reverse {
13878
    flex-direction: row-reverse !important;
13879
  }
16848 stevensc 13880
 
16825 efrain 13881
  .flex-xxl-column-reverse {
13882
    flex-direction: column-reverse !important;
13883
  }
16848 stevensc 13884
 
16825 efrain 13885
  .flex-xxl-grow-0 {
13886
    flex-grow: 0 !important;
13887
  }
16848 stevensc 13888
 
16825 efrain 13889
  .flex-xxl-grow-1 {
13890
    flex-grow: 1 !important;
13891
  }
16848 stevensc 13892
 
16825 efrain 13893
  .flex-xxl-shrink-0 {
13894
    flex-shrink: 0 !important;
13895
  }
16848 stevensc 13896
 
16825 efrain 13897
  .flex-xxl-shrink-1 {
13898
    flex-shrink: 1 !important;
13899
  }
16848 stevensc 13900
 
16825 efrain 13901
  .flex-xxl-wrap {
13902
    flex-wrap: wrap !important;
13903
  }
16848 stevensc 13904
 
16825 efrain 13905
  .flex-xxl-nowrap {
13906
    flex-wrap: nowrap !important;
13907
  }
16848 stevensc 13908
 
16825 efrain 13909
  .flex-xxl-wrap-reverse {
13910
    flex-wrap: wrap-reverse !important;
13911
  }
16848 stevensc 13912
 
16825 efrain 13913
  .justify-content-xxl-start {
13914
    justify-content: flex-start !important;
13915
  }
16848 stevensc 13916
 
16825 efrain 13917
  .justify-content-xxl-end {
13918
    justify-content: flex-end !important;
13919
  }
16848 stevensc 13920
 
16825 efrain 13921
  .justify-content-xxl-center {
13922
    justify-content: center !important;
13923
  }
16848 stevensc 13924
 
16825 efrain 13925
  .justify-content-xxl-between {
13926
    justify-content: space-between !important;
13927
  }
16848 stevensc 13928
 
16825 efrain 13929
  .justify-content-xxl-around {
13930
    justify-content: space-around !important;
13931
  }
16848 stevensc 13932
 
16825 efrain 13933
  .justify-content-xxl-evenly {
13934
    justify-content: space-evenly !important;
13935
  }
16848 stevensc 13936
 
16825 efrain 13937
  .align-items-xxl-start {
13938
    align-items: flex-start !important;
13939
  }
16848 stevensc 13940
 
16825 efrain 13941
  .align-items-xxl-end {
13942
    align-items: flex-end !important;
13943
  }
16848 stevensc 13944
 
16825 efrain 13945
  .align-items-xxl-center {
13946
    align-items: center !important;
13947
  }
16848 stevensc 13948
 
16825 efrain 13949
  .align-items-xxl-baseline {
13950
    align-items: baseline !important;
13951
  }
16848 stevensc 13952
 
16825 efrain 13953
  .align-items-xxl-stretch {
13954
    align-items: stretch !important;
13955
  }
16848 stevensc 13956
 
16825 efrain 13957
  .align-content-xxl-start {
13958
    align-content: flex-start !important;
13959
  }
16848 stevensc 13960
 
16825 efrain 13961
  .align-content-xxl-end {
13962
    align-content: flex-end !important;
13963
  }
16848 stevensc 13964
 
16825 efrain 13965
  .align-content-xxl-center {
13966
    align-content: center !important;
13967
  }
16848 stevensc 13968
 
16825 efrain 13969
  .align-content-xxl-between {
13970
    align-content: space-between !important;
13971
  }
16848 stevensc 13972
 
16825 efrain 13973
  .align-content-xxl-around {
13974
    align-content: space-around !important;
13975
  }
16848 stevensc 13976
 
16825 efrain 13977
  .align-content-xxl-stretch {
13978
    align-content: stretch !important;
13979
  }
16848 stevensc 13980
 
16825 efrain 13981
  .align-self-xxl-auto {
13982
    align-self: auto !important;
13983
  }
16848 stevensc 13984
 
16825 efrain 13985
  .align-self-xxl-start {
13986
    align-self: flex-start !important;
13987
  }
16848 stevensc 13988
 
16825 efrain 13989
  .align-self-xxl-end {
13990
    align-self: flex-end !important;
13991
  }
16848 stevensc 13992
 
16825 efrain 13993
  .align-self-xxl-center {
13994
    align-self: center !important;
13995
  }
16848 stevensc 13996
 
16825 efrain 13997
  .align-self-xxl-baseline {
13998
    align-self: baseline !important;
13999
  }
16848 stevensc 14000
 
16825 efrain 14001
  .align-self-xxl-stretch {
14002
    align-self: stretch !important;
14003
  }
16848 stevensc 14004
 
16825 efrain 14005
  .order-xxl-first {
14006
    order: -1 !important;
14007
  }
16848 stevensc 14008
 
16825 efrain 14009
  .order-xxl-0 {
14010
    order: 0 !important;
14011
  }
16848 stevensc 14012
 
16825 efrain 14013
  .order-xxl-1 {
14014
    order: 1 !important;
14015
  }
16848 stevensc 14016
 
16825 efrain 14017
  .order-xxl-2 {
14018
    order: 2 !important;
14019
  }
16848 stevensc 14020
 
16825 efrain 14021
  .order-xxl-3 {
14022
    order: 3 !important;
14023
  }
16848 stevensc 14024
 
16825 efrain 14025
  .order-xxl-4 {
14026
    order: 4 !important;
14027
  }
16848 stevensc 14028
 
16825 efrain 14029
  .order-xxl-5 {
14030
    order: 5 !important;
14031
  }
16848 stevensc 14032
 
16825 efrain 14033
  .order-xxl-last {
14034
    order: 6 !important;
14035
  }
16848 stevensc 14036
 
16825 efrain 14037
  .m-xxl-0 {
14038
    margin: 0 !important;
14039
  }
16848 stevensc 14040
 
16825 efrain 14041
  .m-xxl-1 {
14042
    margin: 0.25rem !important;
14043
  }
16848 stevensc 14044
 
16825 efrain 14045
  .m-xxl-2 {
14046
    margin: 0.5rem !important;
14047
  }
16848 stevensc 14048
 
16825 efrain 14049
  .m-xxl-3 {
14050
    margin: 1rem !important;
14051
  }
16848 stevensc 14052
 
16825 efrain 14053
  .m-xxl-4 {
14054
    margin: 1.5rem !important;
14055
  }
16848 stevensc 14056
 
16825 efrain 14057
  .m-xxl-5 {
14058
    margin: 3rem !important;
14059
  }
16848 stevensc 14060
 
16825 efrain 14061
  .m-xxl-6 {
14062
    margin: 4.5rem !important;
14063
  }
16848 stevensc 14064
 
16825 efrain 14065
  .m-xxl-7 {
14066
    margin: 6rem !important;
14067
  }
16848 stevensc 14068
 
16825 efrain 14069
  .m-xxl-auto {
14070
    margin: auto !important;
14071
  }
16848 stevensc 14072
 
16825 efrain 14073
  .mx-xxl-0 {
14074
    margin-right: 0 !important;
14075
    margin-left: 0 !important;
14076
  }
16848 stevensc 14077
 
16825 efrain 14078
  .mx-xxl-1 {
14079
    margin-right: 0.25rem !important;
14080
    margin-left: 0.25rem !important;
14081
  }
16848 stevensc 14082
 
16825 efrain 14083
  .mx-xxl-2 {
14084
    margin-right: 0.5rem !important;
14085
    margin-left: 0.5rem !important;
14086
  }
16848 stevensc 14087
 
16825 efrain 14088
  .mx-xxl-3 {
14089
    margin-right: 1rem !important;
14090
    margin-left: 1rem !important;
14091
  }
16848 stevensc 14092
 
16825 efrain 14093
  .mx-xxl-4 {
14094
    margin-right: 1.5rem !important;
14095
    margin-left: 1.5rem !important;
14096
  }
16848 stevensc 14097
 
16825 efrain 14098
  .mx-xxl-5 {
14099
    margin-right: 3rem !important;
14100
    margin-left: 3rem !important;
14101
  }
16848 stevensc 14102
 
16825 efrain 14103
  .mx-xxl-6 {
14104
    margin-right: 4.5rem !important;
14105
    margin-left: 4.5rem !important;
14106
  }
16848 stevensc 14107
 
16825 efrain 14108
  .mx-xxl-7 {
14109
    margin-right: 6rem !important;
14110
    margin-left: 6rem !important;
14111
  }
16848 stevensc 14112
 
16825 efrain 14113
  .mx-xxl-auto {
14114
    margin-right: auto !important;
14115
    margin-left: auto !important;
14116
  }
16848 stevensc 14117
 
16825 efrain 14118
  .my-xxl-0 {
14119
    margin-top: 0 !important;
14120
    margin-bottom: 0 !important;
14121
  }
16848 stevensc 14122
 
16825 efrain 14123
  .my-xxl-1 {
14124
    margin-top: 0.25rem !important;
14125
    margin-bottom: 0.25rem !important;
14126
  }
16848 stevensc 14127
 
16825 efrain 14128
  .my-xxl-2 {
14129
    margin-top: 0.5rem !important;
14130
    margin-bottom: 0.5rem !important;
14131
  }
16848 stevensc 14132
 
16825 efrain 14133
  .my-xxl-3 {
14134
    margin-top: 1rem !important;
14135
    margin-bottom: 1rem !important;
14136
  }
16848 stevensc 14137
 
16825 efrain 14138
  .my-xxl-4 {
14139
    margin-top: 1.5rem !important;
14140
    margin-bottom: 1.5rem !important;
14141
  }
16848 stevensc 14142
 
16825 efrain 14143
  .my-xxl-5 {
14144
    margin-top: 3rem !important;
14145
    margin-bottom: 3rem !important;
14146
  }
16848 stevensc 14147
 
16825 efrain 14148
  .my-xxl-6 {
14149
    margin-top: 4.5rem !important;
14150
    margin-bottom: 4.5rem !important;
14151
  }
16848 stevensc 14152
 
16825 efrain 14153
  .my-xxl-7 {
14154
    margin-top: 6rem !important;
14155
    margin-bottom: 6rem !important;
14156
  }
16848 stevensc 14157
 
16825 efrain 14158
  .my-xxl-auto {
14159
    margin-top: auto !important;
14160
    margin-bottom: auto !important;
14161
  }
16848 stevensc 14162
 
16825 efrain 14163
  .mt-xxl-0 {
14164
    margin-top: 0 !important;
14165
  }
16848 stevensc 14166
 
16825 efrain 14167
  .mt-xxl-1 {
14168
    margin-top: 0.25rem !important;
14169
  }
16848 stevensc 14170
 
16825 efrain 14171
  .mt-xxl-2 {
14172
    margin-top: 0.5rem !important;
14173
  }
16848 stevensc 14174
 
16825 efrain 14175
  .mt-xxl-3 {
14176
    margin-top: 1rem !important;
14177
  }
16848 stevensc 14178
 
16825 efrain 14179
  .mt-xxl-4 {
14180
    margin-top: 1.5rem !important;
14181
  }
16848 stevensc 14182
 
16825 efrain 14183
  .mt-xxl-5 {
14184
    margin-top: 3rem !important;
14185
  }
16848 stevensc 14186
 
16825 efrain 14187
  .mt-xxl-6 {
14188
    margin-top: 4.5rem !important;
14189
  }
16848 stevensc 14190
 
16825 efrain 14191
  .mt-xxl-7 {
14192
    margin-top: 6rem !important;
14193
  }
16848 stevensc 14194
 
16825 efrain 14195
  .mt-xxl-auto {
14196
    margin-top: auto !important;
14197
  }
16848 stevensc 14198
 
16825 efrain 14199
  .me-xxl-0 {
14200
    margin-right: 0 !important;
14201
  }
16848 stevensc 14202
 
16825 efrain 14203
  .me-xxl-1 {
14204
    margin-right: 0.25rem !important;
14205
  }
16848 stevensc 14206
 
16825 efrain 14207
  .me-xxl-2 {
14208
    margin-right: 0.5rem !important;
14209
  }
16848 stevensc 14210
 
16825 efrain 14211
  .me-xxl-3 {
14212
    margin-right: 1rem !important;
14213
  }
16848 stevensc 14214
 
16825 efrain 14215
  .me-xxl-4 {
14216
    margin-right: 1.5rem !important;
14217
  }
16848 stevensc 14218
 
16825 efrain 14219
  .me-xxl-5 {
14220
    margin-right: 3rem !important;
14221
  }
16848 stevensc 14222
 
16825 efrain 14223
  .me-xxl-6 {
14224
    margin-right: 4.5rem !important;
14225
  }
16848 stevensc 14226
 
16825 efrain 14227
  .me-xxl-7 {
14228
    margin-right: 6rem !important;
14229
  }
16848 stevensc 14230
 
16825 efrain 14231
  .me-xxl-auto {
14232
    margin-right: auto !important;
14233
  }
16848 stevensc 14234
 
16825 efrain 14235
  .mb-xxl-0 {
14236
    margin-bottom: 0 !important;
14237
  }
16848 stevensc 14238
 
16825 efrain 14239
  .mb-xxl-1 {
14240
    margin-bottom: 0.25rem !important;
14241
  }
16848 stevensc 14242
 
16825 efrain 14243
  .mb-xxl-2 {
14244
    margin-bottom: 0.5rem !important;
14245
  }
16848 stevensc 14246
 
16825 efrain 14247
  .mb-xxl-3 {
14248
    margin-bottom: 1rem !important;
14249
  }
16848 stevensc 14250
 
16825 efrain 14251
  .mb-xxl-4 {
14252
    margin-bottom: 1.5rem !important;
14253
  }
16848 stevensc 14254
 
16825 efrain 14255
  .mb-xxl-5 {
14256
    margin-bottom: 3rem !important;
14257
  }
16848 stevensc 14258
 
16825 efrain 14259
  .mb-xxl-6 {
14260
    margin-bottom: 4.5rem !important;
14261
  }
16848 stevensc 14262
 
16825 efrain 14263
  .mb-xxl-7 {
14264
    margin-bottom: 6rem !important;
14265
  }
16848 stevensc 14266
 
16825 efrain 14267
  .mb-xxl-auto {
14268
    margin-bottom: auto !important;
14269
  }
16848 stevensc 14270
 
16825 efrain 14271
  .ms-xxl-0 {
14272
    margin-left: 0 !important;
14273
  }
16848 stevensc 14274
 
16825 efrain 14275
  .ms-xxl-1 {
14276
    margin-left: 0.25rem !important;
14277
  }
16848 stevensc 14278
 
16825 efrain 14279
  .ms-xxl-2 {
14280
    margin-left: 0.5rem !important;
14281
  }
16848 stevensc 14282
 
16825 efrain 14283
  .ms-xxl-3 {
14284
    margin-left: 1rem !important;
14285
  }
16848 stevensc 14286
 
16825 efrain 14287
  .ms-xxl-4 {
14288
    margin-left: 1.5rem !important;
14289
  }
16848 stevensc 14290
 
16825 efrain 14291
  .ms-xxl-5 {
14292
    margin-left: 3rem !important;
14293
  }
16848 stevensc 14294
 
16825 efrain 14295
  .ms-xxl-6 {
14296
    margin-left: 4.5rem !important;
14297
  }
16848 stevensc 14298
 
16825 efrain 14299
  .ms-xxl-7 {
14300
    margin-left: 6rem !important;
14301
  }
16848 stevensc 14302
 
16825 efrain 14303
  .ms-xxl-auto {
14304
    margin-left: auto !important;
14305
  }
16848 stevensc 14306
 
16825 efrain 14307
  .m-xxl-n1 {
14308
    margin: -0.25rem !important;
14309
  }
16848 stevensc 14310
 
16825 efrain 14311
  .m-xxl-n2 {
14312
    margin: -0.5rem !important;
14313
  }
16848 stevensc 14314
 
16825 efrain 14315
  .m-xxl-n3 {
14316
    margin: -1rem !important;
14317
  }
16848 stevensc 14318
 
16825 efrain 14319
  .m-xxl-n4 {
14320
    margin: -1.5rem !important;
14321
  }
16848 stevensc 14322
 
16825 efrain 14323
  .m-xxl-n5 {
14324
    margin: -3rem !important;
14325
  }
16848 stevensc 14326
 
16825 efrain 14327
  .m-xxl-n6 {
14328
    margin: -4.5rem !important;
14329
  }
16848 stevensc 14330
 
16825 efrain 14331
  .m-xxl-n7 {
14332
    margin: -6rem !important;
14333
  }
16848 stevensc 14334
 
16825 efrain 14335
  .mx-xxl-n1 {
14336
    margin-right: -0.25rem !important;
14337
    margin-left: -0.25rem !important;
14338
  }
16848 stevensc 14339
 
16825 efrain 14340
  .mx-xxl-n2 {
14341
    margin-right: -0.5rem !important;
14342
    margin-left: -0.5rem !important;
14343
  }
16848 stevensc 14344
 
16825 efrain 14345
  .mx-xxl-n3 {
14346
    margin-right: -1rem !important;
14347
    margin-left: -1rem !important;
14348
  }
16848 stevensc 14349
 
16825 efrain 14350
  .mx-xxl-n4 {
14351
    margin-right: -1.5rem !important;
14352
    margin-left: -1.5rem !important;
14353
  }
16848 stevensc 14354
 
16825 efrain 14355
  .mx-xxl-n5 {
14356
    margin-right: -3rem !important;
14357
    margin-left: -3rem !important;
14358
  }
16848 stevensc 14359
 
16825 efrain 14360
  .mx-xxl-n6 {
14361
    margin-right: -4.5rem !important;
14362
    margin-left: -4.5rem !important;
14363
  }
16848 stevensc 14364
 
16825 efrain 14365
  .mx-xxl-n7 {
14366
    margin-right: -6rem !important;
14367
    margin-left: -6rem !important;
14368
  }
16848 stevensc 14369
 
16825 efrain 14370
  .my-xxl-n1 {
14371
    margin-top: -0.25rem !important;
14372
    margin-bottom: -0.25rem !important;
14373
  }
16848 stevensc 14374
 
16825 efrain 14375
  .my-xxl-n2 {
14376
    margin-top: -0.5rem !important;
14377
    margin-bottom: -0.5rem !important;
14378
  }
16848 stevensc 14379
 
16825 efrain 14380
  .my-xxl-n3 {
14381
    margin-top: -1rem !important;
14382
    margin-bottom: -1rem !important;
14383
  }
16848 stevensc 14384
 
16825 efrain 14385
  .my-xxl-n4 {
14386
    margin-top: -1.5rem !important;
14387
    margin-bottom: -1.5rem !important;
14388
  }
16848 stevensc 14389
 
16825 efrain 14390
  .my-xxl-n5 {
14391
    margin-top: -3rem !important;
14392
    margin-bottom: -3rem !important;
14393
  }
16848 stevensc 14394
 
16825 efrain 14395
  .my-xxl-n6 {
14396
    margin-top: -4.5rem !important;
14397
    margin-bottom: -4.5rem !important;
14398
  }
16848 stevensc 14399
 
16825 efrain 14400
  .my-xxl-n7 {
14401
    margin-top: -6rem !important;
14402
    margin-bottom: -6rem !important;
14403
  }
16848 stevensc 14404
 
16825 efrain 14405
  .mt-xxl-n1 {
14406
    margin-top: -0.25rem !important;
14407
  }
16848 stevensc 14408
 
16825 efrain 14409
  .mt-xxl-n2 {
14410
    margin-top: -0.5rem !important;
14411
  }
16848 stevensc 14412
 
16825 efrain 14413
  .mt-xxl-n3 {
14414
    margin-top: -1rem !important;
14415
  }
16848 stevensc 14416
 
16825 efrain 14417
  .mt-xxl-n4 {
14418
    margin-top: -1.5rem !important;
14419
  }
16848 stevensc 14420
 
16825 efrain 14421
  .mt-xxl-n5 {
14422
    margin-top: -3rem !important;
14423
  }
16848 stevensc 14424
 
16825 efrain 14425
  .mt-xxl-n6 {
14426
    margin-top: -4.5rem !important;
14427
  }
16848 stevensc 14428
 
16825 efrain 14429
  .mt-xxl-n7 {
14430
    margin-top: -6rem !important;
14431
  }
16848 stevensc 14432
 
16825 efrain 14433
  .me-xxl-n1 {
14434
    margin-right: -0.25rem !important;
14435
  }
16848 stevensc 14436
 
16825 efrain 14437
  .me-xxl-n2 {
14438
    margin-right: -0.5rem !important;
14439
  }
16848 stevensc 14440
 
16825 efrain 14441
  .me-xxl-n3 {
14442
    margin-right: -1rem !important;
14443
  }
16848 stevensc 14444
 
16825 efrain 14445
  .me-xxl-n4 {
14446
    margin-right: -1.5rem !important;
14447
  }
16848 stevensc 14448
 
16825 efrain 14449
  .me-xxl-n5 {
14450
    margin-right: -3rem !important;
14451
  }
16848 stevensc 14452
 
16825 efrain 14453
  .me-xxl-n6 {
14454
    margin-right: -4.5rem !important;
14455
  }
16848 stevensc 14456
 
16825 efrain 14457
  .me-xxl-n7 {
14458
    margin-right: -6rem !important;
14459
  }
16848 stevensc 14460
 
16825 efrain 14461
  .mb-xxl-n1 {
14462
    margin-bottom: -0.25rem !important;
14463
  }
16848 stevensc 14464
 
16825 efrain 14465
  .mb-xxl-n2 {
14466
    margin-bottom: -0.5rem !important;
14467
  }
16848 stevensc 14468
 
16825 efrain 14469
  .mb-xxl-n3 {
14470
    margin-bottom: -1rem !important;
14471
  }
16848 stevensc 14472
 
16825 efrain 14473
  .mb-xxl-n4 {
14474
    margin-bottom: -1.5rem !important;
14475
  }
16848 stevensc 14476
 
16825 efrain 14477
  .mb-xxl-n5 {
14478
    margin-bottom: -3rem !important;
14479
  }
16848 stevensc 14480
 
16825 efrain 14481
  .mb-xxl-n6 {
14482
    margin-bottom: -4.5rem !important;
14483
  }
16848 stevensc 14484
 
16825 efrain 14485
  .mb-xxl-n7 {
14486
    margin-bottom: -6rem !important;
14487
  }
16848 stevensc 14488
 
16825 efrain 14489
  .ms-xxl-n1 {
14490
    margin-left: -0.25rem !important;
14491
  }
16848 stevensc 14492
 
16825 efrain 14493
  .ms-xxl-n2 {
14494
    margin-left: -0.5rem !important;
14495
  }
16848 stevensc 14496
 
16825 efrain 14497
  .ms-xxl-n3 {
14498
    margin-left: -1rem !important;
14499
  }
16848 stevensc 14500
 
16825 efrain 14501
  .ms-xxl-n4 {
14502
    margin-left: -1.5rem !important;
14503
  }
16848 stevensc 14504
 
16825 efrain 14505
  .ms-xxl-n5 {
14506
    margin-left: -3rem !important;
14507
  }
16848 stevensc 14508
 
16825 efrain 14509
  .ms-xxl-n6 {
14510
    margin-left: -4.5rem !important;
14511
  }
16848 stevensc 14512
 
16825 efrain 14513
  .ms-xxl-n7 {
14514
    margin-left: -6rem !important;
14515
  }
16848 stevensc 14516
 
16825 efrain 14517
  .p-xxl-0 {
14518
    padding: 0 !important;
14519
  }
16848 stevensc 14520
 
16825 efrain 14521
  .p-xxl-1 {
14522
    padding: 0.25rem !important;
14523
  }
16848 stevensc 14524
 
16825 efrain 14525
  .p-xxl-2 {
14526
    padding: 0.5rem !important;
14527
  }
16848 stevensc 14528
 
16825 efrain 14529
  .p-xxl-3 {
14530
    padding: 1rem !important;
14531
  }
16848 stevensc 14532
 
16825 efrain 14533
  .p-xxl-4 {
14534
    padding: 1.5rem !important;
14535
  }
16848 stevensc 14536
 
16825 efrain 14537
  .p-xxl-5 {
14538
    padding: 3rem !important;
14539
  }
16848 stevensc 14540
 
16825 efrain 14541
  .p-xxl-6 {
14542
    padding: 4.5rem !important;
14543
  }
16848 stevensc 14544
 
16825 efrain 14545
  .p-xxl-7 {
14546
    padding: 6rem !important;
14547
  }
16848 stevensc 14548
 
16825 efrain 14549
  .px-xxl-0 {
14550
    padding-right: 0 !important;
14551
    padding-left: 0 !important;
14552
  }
16848 stevensc 14553
 
16825 efrain 14554
  .px-xxl-1 {
14555
    padding-right: 0.25rem !important;
14556
    padding-left: 0.25rem !important;
14557
  }
16848 stevensc 14558
 
16825 efrain 14559
  .px-xxl-2 {
14560
    padding-right: 0.5rem !important;
14561
    padding-left: 0.5rem !important;
14562
  }
16848 stevensc 14563
 
16825 efrain 14564
  .px-xxl-3 {
14565
    padding-right: 1rem !important;
14566
    padding-left: 1rem !important;
14567
  }
16848 stevensc 14568
 
16825 efrain 14569
  .px-xxl-4 {
14570
    padding-right: 1.5rem !important;
14571
    padding-left: 1.5rem !important;
14572
  }
16848 stevensc 14573
 
16825 efrain 14574
  .px-xxl-5 {
14575
    padding-right: 3rem !important;
14576
    padding-left: 3rem !important;
14577
  }
16848 stevensc 14578
 
16825 efrain 14579
  .px-xxl-6 {
14580
    padding-right: 4.5rem !important;
14581
    padding-left: 4.5rem !important;
14582
  }
16848 stevensc 14583
 
16825 efrain 14584
  .px-xxl-7 {
14585
    padding-right: 6rem !important;
14586
    padding-left: 6rem !important;
14587
  }
16848 stevensc 14588
 
16825 efrain 14589
  .py-xxl-0 {
14590
    padding-top: 0 !important;
14591
    padding-bottom: 0 !important;
14592
  }
16848 stevensc 14593
 
16825 efrain 14594
  .py-xxl-1 {
14595
    padding-top: 0.25rem !important;
14596
    padding-bottom: 0.25rem !important;
14597
  }
16848 stevensc 14598
 
16825 efrain 14599
  .py-xxl-2 {
14600
    padding-top: 0.5rem !important;
14601
    padding-bottom: 0.5rem !important;
14602
  }
16848 stevensc 14603
 
16825 efrain 14604
  .py-xxl-3 {
14605
    padding-top: 1rem !important;
14606
    padding-bottom: 1rem !important;
14607
  }
16848 stevensc 14608
 
16825 efrain 14609
  .py-xxl-4 {
14610
    padding-top: 1.5rem !important;
14611
    padding-bottom: 1.5rem !important;
14612
  }
16848 stevensc 14613
 
16825 efrain 14614
  .py-xxl-5 {
14615
    padding-top: 3rem !important;
14616
    padding-bottom: 3rem !important;
14617
  }
16848 stevensc 14618
 
16825 efrain 14619
  .py-xxl-6 {
14620
    padding-top: 4.5rem !important;
14621
    padding-bottom: 4.5rem !important;
14622
  }
16848 stevensc 14623
 
16825 efrain 14624
  .py-xxl-7 {
14625
    padding-top: 6rem !important;
14626
    padding-bottom: 6rem !important;
14627
  }
16848 stevensc 14628
 
16825 efrain 14629
  .pt-xxl-0 {
14630
    padding-top: 0 !important;
14631
  }
16848 stevensc 14632
 
16825 efrain 14633
  .pt-xxl-1 {
14634
    padding-top: 0.25rem !important;
14635
  }
16848 stevensc 14636
 
16825 efrain 14637
  .pt-xxl-2 {
14638
    padding-top: 0.5rem !important;
14639
  }
16848 stevensc 14640
 
16825 efrain 14641
  .pt-xxl-3 {
14642
    padding-top: 1rem !important;
14643
  }
16848 stevensc 14644
 
16825 efrain 14645
  .pt-xxl-4 {
14646
    padding-top: 1.5rem !important;
14647
  }
16848 stevensc 14648
 
16825 efrain 14649
  .pt-xxl-5 {
14650
    padding-top: 3rem !important;
14651
  }
16848 stevensc 14652
 
16825 efrain 14653
  .pt-xxl-6 {
14654
    padding-top: 4.5rem !important;
14655
  }
16848 stevensc 14656
 
16825 efrain 14657
  .pt-xxl-7 {
14658
    padding-top: 6rem !important;
14659
  }
16848 stevensc 14660
 
16825 efrain 14661
  .pe-xxl-0 {
14662
    padding-right: 0 !important;
14663
  }
16848 stevensc 14664
 
16825 efrain 14665
  .pe-xxl-1 {
14666
    padding-right: 0.25rem !important;
14667
  }
16848 stevensc 14668
 
16825 efrain 14669
  .pe-xxl-2 {
14670
    padding-right: 0.5rem !important;
14671
  }
16848 stevensc 14672
 
16825 efrain 14673
  .pe-xxl-3 {
14674
    padding-right: 1rem !important;
14675
  }
16848 stevensc 14676
 
16825 efrain 14677
  .pe-xxl-4 {
14678
    padding-right: 1.5rem !important;
14679
  }
16848 stevensc 14680
 
16825 efrain 14681
  .pe-xxl-5 {
14682
    padding-right: 3rem !important;
14683
  }
16848 stevensc 14684
 
16825 efrain 14685
  .pe-xxl-6 {
14686
    padding-right: 4.5rem !important;
14687
  }
16848 stevensc 14688
 
16825 efrain 14689
  .pe-xxl-7 {
14690
    padding-right: 6rem !important;
14691
  }
16848 stevensc 14692
 
16825 efrain 14693
  .pb-xxl-0 {
14694
    padding-bottom: 0 !important;
14695
  }
16848 stevensc 14696
 
16825 efrain 14697
  .pb-xxl-1 {
14698
    padding-bottom: 0.25rem !important;
14699
  }
16848 stevensc 14700
 
16825 efrain 14701
  .pb-xxl-2 {
14702
    padding-bottom: 0.5rem !important;
14703
  }
16848 stevensc 14704
 
16825 efrain 14705
  .pb-xxl-3 {
14706
    padding-bottom: 1rem !important;
14707
  }
16848 stevensc 14708
 
16825 efrain 14709
  .pb-xxl-4 {
14710
    padding-bottom: 1.5rem !important;
14711
  }
16848 stevensc 14712
 
16825 efrain 14713
  .pb-xxl-5 {
14714
    padding-bottom: 3rem !important;
14715
  }
16848 stevensc 14716
 
16825 efrain 14717
  .pb-xxl-6 {
14718
    padding-bottom: 4.5rem !important;
14719
  }
16848 stevensc 14720
 
16825 efrain 14721
  .pb-xxl-7 {
14722
    padding-bottom: 6rem !important;
14723
  }
16848 stevensc 14724
 
16825 efrain 14725
  .ps-xxl-0 {
14726
    padding-left: 0 !important;
14727
  }
16848 stevensc 14728
 
16825 efrain 14729
  .ps-xxl-1 {
14730
    padding-left: 0.25rem !important;
14731
  }
16848 stevensc 14732
 
16825 efrain 14733
  .ps-xxl-2 {
14734
    padding-left: 0.5rem !important;
14735
  }
16848 stevensc 14736
 
16825 efrain 14737
  .ps-xxl-3 {
14738
    padding-left: 1rem !important;
14739
  }
16848 stevensc 14740
 
16825 efrain 14741
  .ps-xxl-4 {
14742
    padding-left: 1.5rem !important;
14743
  }
16848 stevensc 14744
 
16825 efrain 14745
  .ps-xxl-5 {
14746
    padding-left: 3rem !important;
14747
  }
16848 stevensc 14748
 
16825 efrain 14749
  .ps-xxl-6 {
14750
    padding-left: 4.5rem !important;
14751
  }
16848 stevensc 14752
 
16825 efrain 14753
  .ps-xxl-7 {
14754
    padding-left: 6rem !important;
14755
  }
16848 stevensc 14756
 
16825 efrain 14757
  .gap-xxl-0 {
14758
    gap: 0 !important;
14759
  }
16848 stevensc 14760
 
16825 efrain 14761
  .gap-xxl-1 {
14762
    gap: 0.25rem !important;
14763
  }
16848 stevensc 14764
 
16825 efrain 14765
  .gap-xxl-2 {
14766
    gap: 0.5rem !important;
14767
  }
16848 stevensc 14768
 
16825 efrain 14769
  .gap-xxl-3 {
14770
    gap: 1rem !important;
14771
  }
16848 stevensc 14772
 
16825 efrain 14773
  .gap-xxl-4 {
14774
    gap: 1.5rem !important;
14775
  }
16848 stevensc 14776
 
16825 efrain 14777
  .gap-xxl-5 {
14778
    gap: 3rem !important;
14779
  }
16848 stevensc 14780
 
16825 efrain 14781
  .gap-xxl-6 {
14782
    gap: 4.5rem !important;
14783
  }
16848 stevensc 14784
 
16825 efrain 14785
  .gap-xxl-7 {
14786
    gap: 6rem !important;
14787
  }
16848 stevensc 14788
 
16825 efrain 14789
  .text-xxl-start {
14790
    text-align: left !important;
14791
  }
16848 stevensc 14792
 
16825 efrain 14793
  .text-xxl-end {
14794
    text-align: right !important;
14795
  }
16848 stevensc 14796
 
16825 efrain 14797
  .text-xxl-center {
14798
    text-align: center !important;
14799
  }
14800
}
16848 stevensc 14801
 
16825 efrain 14802
@media (min-width: 1200px) {
14803
  .fs-1 {
14804
    font-size: 2.5rem !important;
14805
  }
16848 stevensc 14806
 
16825 efrain 14807
  .fs-2 {
14808
    font-size: 2rem !important;
14809
  }
16848 stevensc 14810
 
16825 efrain 14811
  .fs-3 {
14812
    font-size: 1.5rem !important;
14813
  }
14814
}
16848 stevensc 14815
 
16825 efrain 14816
@media print {
14817
  .d-print-inline {
14818
    display: inline !important;
14819
  }
16848 stevensc 14820
 
16825 efrain 14821
  .d-print-inline-block {
14822
    display: inline-block !important;
14823
  }
16848 stevensc 14824
 
16825 efrain 14825
  .d-print-block {
14826
    display: block !important;
14827
  }
16848 stevensc 14828
 
16825 efrain 14829
  .d-print-grid {
14830
    display: grid !important;
14831
  }
16848 stevensc 14832
 
16825 efrain 14833
  .d-print-table {
14834
    display: table !important;
14835
  }
16848 stevensc 14836
 
16825 efrain 14837
  .d-print-table-row {
14838
    display: table-row !important;
14839
  }
16848 stevensc 14840
 
16825 efrain 14841
  .d-print-table-cell {
14842
    display: table-cell !important;
14843
  }
16848 stevensc 14844
 
16825 efrain 14845
  .d-print-flex {
14846
    display: flex !important;
14847
  }
16848 stevensc 14848
 
16825 efrain 14849
  .d-print-inline-flex {
14850
    display: inline-flex !important;
14851
  }
16848 stevensc 14852
 
16825 efrain 14853
  .d-print-none {
14854
    display: none !important;
14855
  }
14856
}
16848 stevensc 14857
 
16825 efrain 14858
@keyframes dropdownAnimation {
14859
  from {
14860
    opacity: 0;
14861
    transform: translate3d(0, 20px, 0);
14862
  }
16848 stevensc 14863
 
16825 efrain 14864
  to {
14865
    opacity: 1;
14866
    transform: none;
14867
    transform: translate3d(0, 0px, 0);
14868
  }
14869
}
16848 stevensc 14870
 
14871
.dropdownAnimation,
14872
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14873
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14874
  -webkit-animation-name: dropdownAnimation;
14875
  animation-name: dropdownAnimation;
14876
  -webkit-animation-duration: 0.2s;
14877
  animation-duration: 0.2s;
14878
  -webkit-animation-fill-mode: both;
14879
  animation-fill-mode: both;
14880
}
14881
 
14882
@keyframes fadeOut {
14883
  from {
14884
    opacity: 1;
14885
  }
16848 stevensc 14886
 
16825 efrain 14887
  to {
14888
    opacity: 0;
14889
  }
14890
}
16848 stevensc 14891
 
16825 efrain 14892
.fadeOut {
14893
  animation-name: fadeOUt;
14894
}
14895
 
14896
@keyframes fadeInUp {
14897
  from {
14898
    opacity: 0;
14899
    transform: translate3d(0, 100%, 0);
14900
  }
16848 stevensc 14901
 
16825 efrain 14902
  to {
14903
    opacity: 1;
14904
    transform: none;
14905
  }
14906
}
16848 stevensc 14907
 
16825 efrain 14908
.fadeInUp {
14909
  animation-name: fadeInUp;
14910
}
14911
 
16848 stevensc 14912
.infinite-spin,
14913
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14914
  animation-name: spin;
14915
  animation-duration: 3s;
14916
  animation-iteration-count: infinite;
14917
  animation-timing-function: linear;
14918
}
16848 stevensc 14919
 
16825 efrain 14920
@keyframes spin {
14921
  from {
14922
    transform: rotate(0deg);
14923
  }
16848 stevensc 14924
 
16825 efrain 14925
  to {
14926
    transform: rotate(360deg);
14927
  }
14928
}
14929
 
16848 stevensc 14930
.pulse,
14931
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14932
  animation-name: pulse;
14933
  animation-duration: 0.9s;
14934
  animation-iteration-count: infinite;
14935
  animation-timing-function: ease-out;
14936
}
16848 stevensc 14937
 
16825 efrain 14938
@keyframes pulse {
14939
  0% {
14940
    opacity: 1;
14941
    width: 7px;
14942
    height: 7px;
14943
    left: 0;
14944
    top: 0;
14945
  }
16848 stevensc 14946
 
16825 efrain 14947
  95% {
14948
    opacity: 0.1;
14949
    left: -10.5px;
14950
    top: -10.5px;
14951
    width: 28px;
14952
    height: 28px;
14953
  }
16848 stevensc 14954
 
16825 efrain 14955
  100% {
14956
    opacity: 0;
14957
    width: 7px;
14958
    height: 7px;
14959
    left: 0;
14960
    top: 0;
14961
  }
14962
}
14963
 
14964
.wd-5 {
14965
  width: 5px;
14966
}
14967
 
14968
.wd-5p {
14969
  width: 5%;
14970
}
14971
 
14972
.mx-wd-5p {
14973
  max-width: 5%;
14974
}
14975
 
14976
.mn-wd-5p {
14977
  min-width: 5%;
14978
}
14979
 
14980
.wd-5-f {
14981
  width: 5px !important;
14982
}
14983
 
14984
.wd-5p-f {
14985
  width: 5% !important;
14986
}
14987
 
14988
.mx-wd-5p-f {
14989
  max-width: 5% !important;
14990
}
14991
 
14992
.mn-wd-5p-f {
14993
  min-width: 5% !important;
14994
}
14995
 
14996
.wd-10 {
14997
  width: 10px;
14998
}
14999
 
15000
.wd-10p {
15001
  width: 10%;
15002
}
15003
 
15004
.mx-wd-10p {
15005
  max-width: 10%;
15006
}
15007
 
15008
.mn-wd-10p {
15009
  min-width: 10%;
15010
}
15011
 
15012
.wd-10-f {
15013
  width: 10px !important;
15014
}
15015
 
15016
.wd-10p-f {
15017
  width: 10% !important;
15018
}
15019
 
15020
.mx-wd-10p-f {
15021
  max-width: 10% !important;
15022
}
15023
 
15024
.mn-wd-10p-f {
15025
  min-width: 10% !important;
15026
}
15027
 
15028
.wd-15 {
15029
  width: 15px;
15030
}
15031
 
15032
.wd-15p {
15033
  width: 15%;
15034
}
15035
 
15036
.mx-wd-15p {
15037
  max-width: 15%;
15038
}
15039
 
15040
.mn-wd-15p {
15041
  min-width: 15%;
15042
}
15043
 
15044
.wd-15-f {
15045
  width: 15px !important;
15046
}
15047
 
15048
.wd-15p-f {
15049
  width: 15% !important;
15050
}
15051
 
15052
.mx-wd-15p-f {
15053
  max-width: 15% !important;
15054
}
15055
 
15056
.mn-wd-15p-f {
15057
  min-width: 15% !important;
15058
}
15059
 
15060
.wd-20 {
15061
  width: 20px;
15062
}
15063
 
15064
.wd-20p {
15065
  width: 20%;
15066
}
15067
 
15068
.mx-wd-20p {
15069
  max-width: 20%;
15070
}
15071
 
15072
.mn-wd-20p {
15073
  min-width: 20%;
15074
}
15075
 
15076
.wd-20-f {
15077
  width: 20px !important;
15078
}
15079
 
15080
.wd-20p-f {
15081
  width: 20% !important;
15082
}
15083
 
15084
.mx-wd-20p-f {
15085
  max-width: 20% !important;
15086
}
15087
 
15088
.mn-wd-20p-f {
15089
  min-width: 20% !important;
15090
}
15091
 
15092
.wd-25 {
15093
  width: 25px;
15094
}
15095
 
15096
.wd-25p {
15097
  width: 25%;
15098
}
15099
 
15100
.mx-wd-25p {
15101
  max-width: 25%;
15102
}
15103
 
15104
.mn-wd-25p {
15105
  min-width: 25%;
15106
}
15107
 
15108
.wd-25-f {
15109
  width: 25px !important;
15110
}
15111
 
15112
.wd-25p-f {
15113
  width: 25% !important;
15114
}
15115
 
15116
.mx-wd-25p-f {
15117
  max-width: 25% !important;
15118
}
15119
 
15120
.mn-wd-25p-f {
15121
  min-width: 25% !important;
15122
}
15123
 
15124
.wd-30 {
15125
  width: 30px;
15126
}
15127
 
15128
.wd-30p {
15129
  width: 30%;
15130
}
15131
 
15132
.mx-wd-30p {
15133
  max-width: 30%;
15134
}
15135
 
15136
.mn-wd-30p {
15137
  min-width: 30%;
15138
}
15139
 
15140
.wd-30-f {
15141
  width: 30px !important;
15142
}
15143
 
15144
.wd-30p-f {
15145
  width: 30% !important;
15146
}
15147
 
15148
.mx-wd-30p-f {
15149
  max-width: 30% !important;
15150
}
15151
 
15152
.mn-wd-30p-f {
15153
  min-width: 30% !important;
15154
}
15155
 
15156
.wd-35 {
15157
  width: 35px;
15158
}
15159
 
15160
.wd-35p {
15161
  width: 35%;
15162
}
15163
 
15164
.mx-wd-35p {
15165
  max-width: 35%;
15166
}
15167
 
15168
.mn-wd-35p {
15169
  min-width: 35%;
15170
}
15171
 
15172
.wd-35-f {
15173
  width: 35px !important;
15174
}
15175
 
15176
.wd-35p-f {
15177
  width: 35% !important;
15178
}
15179
 
15180
.mx-wd-35p-f {
15181
  max-width: 35% !important;
15182
}
15183
 
15184
.mn-wd-35p-f {
15185
  min-width: 35% !important;
15186
}
15187
 
15188
.wd-40 {
15189
  width: 40px;
15190
}
15191
 
15192
.wd-40p {
15193
  width: 40%;
15194
}
15195
 
15196
.mx-wd-40p {
15197
  max-width: 40%;
15198
}
15199
 
15200
.mn-wd-40p {
15201
  min-width: 40%;
15202
}
15203
 
15204
.wd-40-f {
15205
  width: 40px !important;
15206
}
15207
 
15208
.wd-40p-f {
15209
  width: 40% !important;
15210
}
15211
 
15212
.mx-wd-40p-f {
15213
  max-width: 40% !important;
15214
}
15215
 
15216
.mn-wd-40p-f {
15217
  min-width: 40% !important;
15218
}
15219
 
15220
.wd-45 {
15221
  width: 45px;
15222
}
15223
 
15224
.wd-45p {
15225
  width: 45%;
15226
}
15227
 
15228
.mx-wd-45p {
15229
  max-width: 45%;
15230
}
15231
 
15232
.mn-wd-45p {
15233
  min-width: 45%;
15234
}
15235
 
15236
.wd-45-f {
15237
  width: 45px !important;
15238
}
15239
 
15240
.wd-45p-f {
15241
  width: 45% !important;
15242
}
15243
 
15244
.mx-wd-45p-f {
15245
  max-width: 45% !important;
15246
}
15247
 
15248
.mn-wd-45p-f {
15249
  min-width: 45% !important;
15250
}
15251
 
15252
.wd-50 {
15253
  width: 50px;
15254
}
15255
 
15256
.wd-50p {
15257
  width: 50%;
15258
}
15259
 
15260
.mx-wd-50p {
15261
  max-width: 50%;
15262
}
15263
 
15264
.mn-wd-50p {
15265
  min-width: 50%;
15266
}
15267
 
15268
.wd-50-f {
15269
  width: 50px !important;
15270
}
15271
 
15272
.wd-50p-f {
15273
  width: 50% !important;
15274
}
15275
 
15276
.mx-wd-50p-f {
15277
  max-width: 50% !important;
15278
}
15279
 
15280
.mn-wd-50p-f {
15281
  min-width: 50% !important;
15282
}
15283
 
15284
.wd-55 {
15285
  width: 55px;
15286
}
15287
 
15288
.wd-55p {
15289
  width: 55%;
15290
}
15291
 
15292
.mx-wd-55p {
15293
  max-width: 55%;
15294
}
15295
 
15296
.mn-wd-55p {
15297
  min-width: 55%;
15298
}
15299
 
15300
.wd-55-f {
15301
  width: 55px !important;
15302
}
15303
 
15304
.wd-55p-f {
15305
  width: 55% !important;
15306
}
15307
 
15308
.mx-wd-55p-f {
15309
  max-width: 55% !important;
15310
}
15311
 
15312
.mn-wd-55p-f {
15313
  min-width: 55% !important;
15314
}
15315
 
15316
.wd-60 {
15317
  width: 60px;
15318
}
15319
 
15320
.wd-60p {
15321
  width: 60%;
15322
}
15323
 
15324
.mx-wd-60p {
15325
  max-width: 60%;
15326
}
15327
 
15328
.mn-wd-60p {
15329
  min-width: 60%;
15330
}
15331
 
15332
.wd-60-f {
15333
  width: 60px !important;
15334
}
15335
 
15336
.wd-60p-f {
15337
  width: 60% !important;
15338
}
15339
 
15340
.mx-wd-60p-f {
15341
  max-width: 60% !important;
15342
}
15343
 
15344
.mn-wd-60p-f {
15345
  min-width: 60% !important;
15346
}
15347
 
15348
.wd-65 {
15349
  width: 65px;
15350
}
15351
 
15352
.wd-65p {
15353
  width: 65%;
15354
}
15355
 
15356
.mx-wd-65p {
15357
  max-width: 65%;
15358
}
15359
 
15360
.mn-wd-65p {
15361
  min-width: 65%;
15362
}
15363
 
15364
.wd-65-f {
15365
  width: 65px !important;
15366
}
15367
 
15368
.wd-65p-f {
15369
  width: 65% !important;
15370
}
15371
 
15372
.mx-wd-65p-f {
15373
  max-width: 65% !important;
15374
}
15375
 
15376
.mn-wd-65p-f {
15377
  min-width: 65% !important;
15378
}
15379
 
15380
.wd-70 {
15381
  width: 70px;
15382
}
15383
 
15384
.wd-70p {
15385
  width: 70%;
15386
}
15387
 
15388
.mx-wd-70p {
15389
  max-width: 70%;
15390
}
15391
 
15392
.mn-wd-70p {
15393
  min-width: 70%;
15394
}
15395
 
15396
.wd-70-f {
15397
  width: 70px !important;
15398
}
15399
 
15400
.wd-70p-f {
15401
  width: 70% !important;
15402
}
15403
 
15404
.mx-wd-70p-f {
15405
  max-width: 70% !important;
15406
}
15407
 
15408
.mn-wd-70p-f {
15409
  min-width: 70% !important;
15410
}
15411
 
15412
.wd-75 {
15413
  width: 75px;
15414
}
15415
 
15416
.wd-75p {
15417
  width: 75%;
15418
}
15419
 
15420
.mx-wd-75p {
15421
  max-width: 75%;
15422
}
15423
 
15424
.mn-wd-75p {
15425
  min-width: 75%;
15426
}
15427
 
15428
.wd-75-f {
15429
  width: 75px !important;
15430
}
15431
 
15432
.wd-75p-f {
15433
  width: 75% !important;
15434
}
15435
 
15436
.mx-wd-75p-f {
15437
  max-width: 75% !important;
15438
}
15439
 
15440
.mn-wd-75p-f {
15441
  min-width: 75% !important;
15442
}
15443
 
15444
.wd-80 {
15445
  width: 80px;
15446
}
15447
 
15448
.wd-80p {
15449
  width: 80%;
15450
}
15451
 
15452
.mx-wd-80p {
15453
  max-width: 80%;
15454
}
15455
 
15456
.mn-wd-80p {
15457
  min-width: 80%;
15458
}
15459
 
15460
.wd-80-f {
15461
  width: 80px !important;
15462
}
15463
 
15464
.wd-80p-f {
15465
  width: 80% !important;
15466
}
15467
 
15468
.mx-wd-80p-f {
15469
  max-width: 80% !important;
15470
}
15471
 
15472
.mn-wd-80p-f {
15473
  min-width: 80% !important;
15474
}
15475
 
15476
.wd-85 {
15477
  width: 85px;
15478
}
15479
 
15480
.wd-85p {
15481
  width: 85%;
15482
}
15483
 
15484
.mx-wd-85p {
15485
  max-width: 85%;
15486
}
15487
 
15488
.mn-wd-85p {
15489
  min-width: 85%;
15490
}
15491
 
15492
.wd-85-f {
15493
  width: 85px !important;
15494
}
15495
 
15496
.wd-85p-f {
15497
  width: 85% !important;
15498
}
15499
 
15500
.mx-wd-85p-f {
15501
  max-width: 85% !important;
15502
}
15503
 
15504
.mn-wd-85p-f {
15505
  min-width: 85% !important;
15506
}
15507
 
15508
.wd-90 {
15509
  width: 90px;
15510
}
15511
 
15512
.wd-90p {
15513
  width: 90%;
15514
}
15515
 
15516
.mx-wd-90p {
15517
  max-width: 90%;
15518
}
15519
 
15520
.mn-wd-90p {
15521
  min-width: 90%;
15522
}
15523
 
15524
.wd-90-f {
15525
  width: 90px !important;
15526
}
15527
 
15528
.wd-90p-f {
15529
  width: 90% !important;
15530
}
15531
 
15532
.mx-wd-90p-f {
15533
  max-width: 90% !important;
15534
}
15535
 
15536
.mn-wd-90p-f {
15537
  min-width: 90% !important;
15538
}
15539
 
15540
.wd-95 {
15541
  width: 95px;
15542
}
15543
 
15544
.wd-95p {
15545
  width: 95%;
15546
}
15547
 
15548
.mx-wd-95p {
15549
  max-width: 95%;
15550
}
15551
 
15552
.mn-wd-95p {
15553
  min-width: 95%;
15554
}
15555
 
15556
.wd-95-f {
15557
  width: 95px !important;
15558
}
15559
 
15560
.wd-95p-f {
15561
  width: 95% !important;
15562
}
15563
 
15564
.mx-wd-95p-f {
15565
  max-width: 95% !important;
15566
}
15567
 
15568
.mn-wd-95p-f {
15569
  min-width: 95% !important;
15570
}
15571
 
15572
.wd-100 {
15573
  width: 100px;
15574
}
15575
 
15576
.wd-100p {
15577
  width: 100%;
15578
}
15579
 
15580
.mx-wd-100p {
15581
  max-width: 100%;
15582
}
15583
 
15584
.mn-wd-100p {
15585
  min-width: 100%;
15586
}
15587
 
15588
.wd-100-f {
15589
  width: 100px !important;
15590
}
15591
 
15592
.wd-100p-f {
15593
  width: 100% !important;
15594
}
15595
 
15596
.mx-wd-100p-f {
15597
  max-width: 100% !important;
15598
}
15599
 
15600
.mn-wd-100p-f {
15601
  min-width: 100% !important;
15602
}
15603
 
15604
.wd-150 {
15605
  width: 150px;
15606
}
15607
 
15608
.wd-150-f {
15609
  width: 150px !important;
15610
}
15611
 
15612
.wd-200 {
15613
  width: 200px;
15614
}
15615
 
15616
.wd-200-f {
15617
  width: 200px !important;
15618
}
15619
 
15620
.wd-250 {
15621
  width: 250px;
15622
}
15623
 
15624
.wd-250-f {
15625
  width: 250px !important;
15626
}
15627
 
15628
.wd-300 {
15629
  width: 300px;
15630
}
15631
 
15632
.wd-300-f {
15633
  width: 300px !important;
15634
}
15635
 
15636
.wd-350 {
15637
  width: 350px;
15638
}
15639
 
15640
.wd-350-f {
15641
  width: 350px !important;
15642
}
15643
 
15644
.wd-400 {
15645
  width: 400px;
15646
}
15647
 
15648
.wd-400-f {
15649
  width: 400px !important;
15650
}
15651
 
15652
.wd-450 {
15653
  width: 450px;
15654
}
15655
 
15656
.wd-450-f {
15657
  width: 450px !important;
15658
}
15659
 
15660
.wd-500 {
15661
  width: 500px;
15662
}
15663
 
15664
.wd-500-f {
15665
  width: 500px !important;
15666
}
15667
 
15668
.wd-550 {
15669
  width: 550px;
15670
}
15671
 
15672
.wd-550-f {
15673
  width: 550px !important;
15674
}
15675
 
15676
.wd-600 {
15677
  width: 600px;
15678
}
15679
 
15680
.wd-600-f {
15681
  width: 600px !important;
15682
}
15683
 
15684
.wd-650 {
15685
  width: 650px;
15686
}
15687
 
15688
.wd-650-f {
15689
  width: 650px !important;
15690
}
15691
 
15692
.wd-700 {
15693
  width: 700px;
15694
}
15695
 
15696
.wd-700-f {
15697
  width: 700px !important;
15698
}
15699
 
15700
.wd-750 {
15701
  width: 750px;
15702
}
15703
 
15704
.wd-750-f {
15705
  width: 750px !important;
15706
}
15707
 
15708
.wd-800 {
15709
  width: 800px;
15710
}
15711
 
15712
.wd-800-f {
15713
  width: 800px !important;
15714
}
15715
 
15716
.wd-850 {
15717
  width: 850px;
15718
}
15719
 
15720
.wd-850-f {
15721
  width: 850px !important;
15722
}
15723
 
15724
.wd-900 {
15725
  width: 900px;
15726
}
15727
 
15728
.wd-900-f {
15729
  width: 900px !important;
15730
}
15731
 
15732
.wd-950 {
15733
  width: 950px;
15734
}
15735
 
15736
.wd-950-f {
15737
  width: 950px !important;
15738
}
15739
 
15740
.wd-1000 {
15741
  width: 1000px;
15742
}
15743
 
15744
.wd-1000-f {
15745
  width: 1000px !important;
15746
}
15747
 
15748
@media (min-width: 480px) {
15749
  .wd-xs-5 {
15750
    width: 5px;
15751
  }
16848 stevensc 15752
 
16825 efrain 15753
  .wd-xs-5p {
15754
    width: 5%;
15755
  }
16848 stevensc 15756
 
16825 efrain 15757
  .mx-wd-xs-5p {
15758
    max-width: 5%;
15759
  }
16848 stevensc 15760
 
16825 efrain 15761
  .mn-wd-xs-5p {
15762
    min-width: 5%;
15763
  }
16848 stevensc 15764
 
16825 efrain 15765
  .wd-xs-5-f {
15766
    width: 5px !important;
15767
  }
16848 stevensc 15768
 
16825 efrain 15769
  .wd-xs-5p-f {
15770
    width: 5% !important;
15771
  }
16848 stevensc 15772
 
16825 efrain 15773
  .mx-wd-xs-5p-f {
15774
    max-width: 5% !important;
15775
  }
16848 stevensc 15776
 
16825 efrain 15777
  .mn-wd-xs-5p-f {
15778
    min-width: 5% !important;
15779
  }
16848 stevensc 15780
 
16825 efrain 15781
  .wd-xs-10 {
15782
    width: 10px;
15783
  }
16848 stevensc 15784
 
16825 efrain 15785
  .wd-xs-10p {
15786
    width: 10%;
15787
  }
16848 stevensc 15788
 
16825 efrain 15789
  .mx-wd-xs-10p {
15790
    max-width: 10%;
15791
  }
16848 stevensc 15792
 
16825 efrain 15793
  .mn-wd-xs-10p {
15794
    min-width: 10%;
15795
  }
16848 stevensc 15796
 
16825 efrain 15797
  .wd-xs-10-f {
15798
    width: 10px !important;
15799
  }
16848 stevensc 15800
 
16825 efrain 15801
  .wd-xs-10p-f {
15802
    width: 10% !important;
15803
  }
16848 stevensc 15804
 
16825 efrain 15805
  .mx-wd-xs-10p-f {
15806
    max-width: 10% !important;
15807
  }
16848 stevensc 15808
 
16825 efrain 15809
  .mn-wd-xs-10p-f {
15810
    min-width: 10% !important;
15811
  }
16848 stevensc 15812
 
16825 efrain 15813
  .wd-xs-15 {
15814
    width: 15px;
15815
  }
16848 stevensc 15816
 
16825 efrain 15817
  .wd-xs-15p {
15818
    width: 15%;
15819
  }
16848 stevensc 15820
 
16825 efrain 15821
  .mx-wd-xs-15p {
15822
    max-width: 15%;
15823
  }
16848 stevensc 15824
 
16825 efrain 15825
  .mn-wd-xs-15p {
15826
    min-width: 15%;
15827
  }
16848 stevensc 15828
 
16825 efrain 15829
  .wd-xs-15-f {
15830
    width: 15px !important;
15831
  }
16848 stevensc 15832
 
16825 efrain 15833
  .wd-xs-15p-f {
15834
    width: 15% !important;
15835
  }
16848 stevensc 15836
 
16825 efrain 15837
  .mx-wd-xs-15p-f {
15838
    max-width: 15% !important;
15839
  }
16848 stevensc 15840
 
16825 efrain 15841
  .mn-wd-xs-15p-f {
15842
    min-width: 15% !important;
15843
  }
16848 stevensc 15844
 
16825 efrain 15845
  .wd-xs-20 {
15846
    width: 20px;
15847
  }
16848 stevensc 15848
 
16825 efrain 15849
  .wd-xs-20p {
15850
    width: 20%;
15851
  }
16848 stevensc 15852
 
16825 efrain 15853
  .mx-wd-xs-20p {
15854
    max-width: 20%;
15855
  }
16848 stevensc 15856
 
16825 efrain 15857
  .mn-wd-xs-20p {
15858
    min-width: 20%;
15859
  }
16848 stevensc 15860
 
16825 efrain 15861
  .wd-xs-20-f {
15862
    width: 20px !important;
15863
  }
16848 stevensc 15864
 
16825 efrain 15865
  .wd-xs-20p-f {
15866
    width: 20% !important;
15867
  }
16848 stevensc 15868
 
16825 efrain 15869
  .mx-wd-xs-20p-f {
15870
    max-width: 20% !important;
15871
  }
16848 stevensc 15872
 
16825 efrain 15873
  .mn-wd-xs-20p-f {
15874
    min-width: 20% !important;
15875
  }
16848 stevensc 15876
 
16825 efrain 15877
  .wd-xs-25 {
15878
    width: 25px;
15879
  }
16848 stevensc 15880
 
16825 efrain 15881
  .wd-xs-25p {
15882
    width: 25%;
15883
  }
16848 stevensc 15884
 
16825 efrain 15885
  .mx-wd-xs-25p {
15886
    max-width: 25%;
15887
  }
16848 stevensc 15888
 
16825 efrain 15889
  .mn-wd-xs-25p {
15890
    min-width: 25%;
15891
  }
16848 stevensc 15892
 
16825 efrain 15893
  .wd-xs-25-f {
15894
    width: 25px !important;
15895
  }
16848 stevensc 15896
 
16825 efrain 15897
  .wd-xs-25p-f {
15898
    width: 25% !important;
15899
  }
16848 stevensc 15900
 
16825 efrain 15901
  .mx-wd-xs-25p-f {
15902
    max-width: 25% !important;
15903
  }
16848 stevensc 15904
 
16825 efrain 15905
  .mn-wd-xs-25p-f {
15906
    min-width: 25% !important;
15907
  }
16848 stevensc 15908
 
16825 efrain 15909
  .wd-xs-30 {
15910
    width: 30px;
15911
  }
16848 stevensc 15912
 
16825 efrain 15913
  .wd-xs-30p {
15914
    width: 30%;
15915
  }
16848 stevensc 15916
 
16825 efrain 15917
  .mx-wd-xs-30p {
15918
    max-width: 30%;
15919
  }
16848 stevensc 15920
 
16825 efrain 15921
  .mn-wd-xs-30p {
15922
    min-width: 30%;
15923
  }
16848 stevensc 15924
 
16825 efrain 15925
  .wd-xs-30-f {
15926
    width: 30px !important;
15927
  }
16848 stevensc 15928
 
16825 efrain 15929
  .wd-xs-30p-f {
15930
    width: 30% !important;
15931
  }
16848 stevensc 15932
 
16825 efrain 15933
  .mx-wd-xs-30p-f {
15934
    max-width: 30% !important;
15935
  }
16848 stevensc 15936
 
16825 efrain 15937
  .mn-wd-xs-30p-f {
15938
    min-width: 30% !important;
15939
  }
16848 stevensc 15940
 
16825 efrain 15941
  .wd-xs-35 {
15942
    width: 35px;
15943
  }
16848 stevensc 15944
 
16825 efrain 15945
  .wd-xs-35p {
15946
    width: 35%;
15947
  }
16848 stevensc 15948
 
16825 efrain 15949
  .mx-wd-xs-35p {
15950
    max-width: 35%;
15951
  }
16848 stevensc 15952
 
16825 efrain 15953
  .mn-wd-xs-35p {
15954
    min-width: 35%;
15955
  }
16848 stevensc 15956
 
16825 efrain 15957
  .wd-xs-35-f {
15958
    width: 35px !important;
15959
  }
16848 stevensc 15960
 
16825 efrain 15961
  .wd-xs-35p-f {
15962
    width: 35% !important;
15963
  }
16848 stevensc 15964
 
16825 efrain 15965
  .mx-wd-xs-35p-f {
15966
    max-width: 35% !important;
15967
  }
16848 stevensc 15968
 
16825 efrain 15969
  .mn-wd-xs-35p-f {
15970
    min-width: 35% !important;
15971
  }
16848 stevensc 15972
 
16825 efrain 15973
  .wd-xs-40 {
15974
    width: 40px;
15975
  }
16848 stevensc 15976
 
16825 efrain 15977
  .wd-xs-40p {
15978
    width: 40%;
15979
  }
16848 stevensc 15980
 
16825 efrain 15981
  .mx-wd-xs-40p {
15982
    max-width: 40%;
15983
  }
16848 stevensc 15984
 
16825 efrain 15985
  .mn-wd-xs-40p {
15986
    min-width: 40%;
15987
  }
16848 stevensc 15988
 
16825 efrain 15989
  .wd-xs-40-f {
15990
    width: 40px !important;
15991
  }
16848 stevensc 15992
 
16825 efrain 15993
  .wd-xs-40p-f {
15994
    width: 40% !important;
15995
  }
16848 stevensc 15996
 
16825 efrain 15997
  .mx-wd-xs-40p-f {
15998
    max-width: 40% !important;
15999
  }
16848 stevensc 16000
 
16825 efrain 16001
  .mn-wd-xs-40p-f {
16002
    min-width: 40% !important;
16003
  }
16848 stevensc 16004
 
16825 efrain 16005
  .wd-xs-45 {
16006
    width: 45px;
16007
  }
16848 stevensc 16008
 
16825 efrain 16009
  .wd-xs-45p {
16010
    width: 45%;
16011
  }
16848 stevensc 16012
 
16825 efrain 16013
  .mx-wd-xs-45p {
16014
    max-width: 45%;
16015
  }
16848 stevensc 16016
 
16825 efrain 16017
  .mn-wd-xs-45p {
16018
    min-width: 45%;
16019
  }
16848 stevensc 16020
 
16825 efrain 16021
  .wd-xs-45-f {
16022
    width: 45px !important;
16023
  }
16848 stevensc 16024
 
16825 efrain 16025
  .wd-xs-45p-f {
16026
    width: 45% !important;
16027
  }
16848 stevensc 16028
 
16825 efrain 16029
  .mx-wd-xs-45p-f {
16030
    max-width: 45% !important;
16031
  }
16848 stevensc 16032
 
16825 efrain 16033
  .mn-wd-xs-45p-f {
16034
    min-width: 45% !important;
16035
  }
16848 stevensc 16036
 
16825 efrain 16037
  .wd-xs-50 {
16038
    width: 50px;
16039
  }
16848 stevensc 16040
 
16825 efrain 16041
  .wd-xs-50p {
16042
    width: 50%;
16043
  }
16848 stevensc 16044
 
16825 efrain 16045
  .mx-wd-xs-50p {
16046
    max-width: 50%;
16047
  }
16848 stevensc 16048
 
16825 efrain 16049
  .mn-wd-xs-50p {
16050
    min-width: 50%;
16051
  }
16848 stevensc 16052
 
16825 efrain 16053
  .wd-xs-50-f {
16054
    width: 50px !important;
16055
  }
16848 stevensc 16056
 
16825 efrain 16057
  .wd-xs-50p-f {
16058
    width: 50% !important;
16059
  }
16848 stevensc 16060
 
16825 efrain 16061
  .mx-wd-xs-50p-f {
16062
    max-width: 50% !important;
16063
  }
16848 stevensc 16064
 
16825 efrain 16065
  .mn-wd-xs-50p-f {
16066
    min-width: 50% !important;
16067
  }
16848 stevensc 16068
 
16825 efrain 16069
  .wd-xs-55 {
16070
    width: 55px;
16071
  }
16848 stevensc 16072
 
16825 efrain 16073
  .wd-xs-55p {
16074
    width: 55%;
16075
  }
16848 stevensc 16076
 
16825 efrain 16077
  .mx-wd-xs-55p {
16078
    max-width: 55%;
16079
  }
16848 stevensc 16080
 
16825 efrain 16081
  .mn-wd-xs-55p {
16082
    min-width: 55%;
16083
  }
16848 stevensc 16084
 
16825 efrain 16085
  .wd-xs-55-f {
16086
    width: 55px !important;
16087
  }
16848 stevensc 16088
 
16825 efrain 16089
  .wd-xs-55p-f {
16090
    width: 55% !important;
16091
  }
16848 stevensc 16092
 
16825 efrain 16093
  .mx-wd-xs-55p-f {
16094
    max-width: 55% !important;
16095
  }
16848 stevensc 16096
 
16825 efrain 16097
  .mn-wd-xs-55p-f {
16098
    min-width: 55% !important;
16099
  }
16848 stevensc 16100
 
16825 efrain 16101
  .wd-xs-60 {
16102
    width: 60px;
16103
  }
16848 stevensc 16104
 
16825 efrain 16105
  .wd-xs-60p {
16106
    width: 60%;
16107
  }
16848 stevensc 16108
 
16825 efrain 16109
  .mx-wd-xs-60p {
16110
    max-width: 60%;
16111
  }
16848 stevensc 16112
 
16825 efrain 16113
  .mn-wd-xs-60p {
16114
    min-width: 60%;
16115
  }
16848 stevensc 16116
 
16825 efrain 16117
  .wd-xs-60-f {
16118
    width: 60px !important;
16119
  }
16848 stevensc 16120
 
16825 efrain 16121
  .wd-xs-60p-f {
16122
    width: 60% !important;
16123
  }
16848 stevensc 16124
 
16825 efrain 16125
  .mx-wd-xs-60p-f {
16126
    max-width: 60% !important;
16127
  }
16848 stevensc 16128
 
16825 efrain 16129
  .mn-wd-xs-60p-f {
16130
    min-width: 60% !important;
16131
  }
16848 stevensc 16132
 
16825 efrain 16133
  .wd-xs-65 {
16134
    width: 65px;
16135
  }
16848 stevensc 16136
 
16825 efrain 16137
  .wd-xs-65p {
16138
    width: 65%;
16139
  }
16848 stevensc 16140
 
16825 efrain 16141
  .mx-wd-xs-65p {
16142
    max-width: 65%;
16143
  }
16848 stevensc 16144
 
16825 efrain 16145
  .mn-wd-xs-65p {
16146
    min-width: 65%;
16147
  }
16848 stevensc 16148
 
16825 efrain 16149
  .wd-xs-65-f {
16150
    width: 65px !important;
16151
  }
16848 stevensc 16152
 
16825 efrain 16153
  .wd-xs-65p-f {
16154
    width: 65% !important;
16155
  }
16848 stevensc 16156
 
16825 efrain 16157
  .mx-wd-xs-65p-f {
16158
    max-width: 65% !important;
16159
  }
16848 stevensc 16160
 
16825 efrain 16161
  .mn-wd-xs-65p-f {
16162
    min-width: 65% !important;
16163
  }
16848 stevensc 16164
 
16825 efrain 16165
  .wd-xs-70 {
16166
    width: 70px;
16167
  }
16848 stevensc 16168
 
16825 efrain 16169
  .wd-xs-70p {
16170
    width: 70%;
16171
  }
16848 stevensc 16172
 
16825 efrain 16173
  .mx-wd-xs-70p {
16174
    max-width: 70%;
16175
  }
16848 stevensc 16176
 
16825 efrain 16177
  .mn-wd-xs-70p {
16178
    min-width: 70%;
16179
  }
16848 stevensc 16180
 
16825 efrain 16181
  .wd-xs-70-f {
16182
    width: 70px !important;
16183
  }
16848 stevensc 16184
 
16825 efrain 16185
  .wd-xs-70p-f {
16186
    width: 70% !important;
16187
  }
16848 stevensc 16188
 
16825 efrain 16189
  .mx-wd-xs-70p-f {
16190
    max-width: 70% !important;
16191
  }
16848 stevensc 16192
 
16825 efrain 16193
  .mn-wd-xs-70p-f {
16194
    min-width: 70% !important;
16195
  }
16848 stevensc 16196
 
16825 efrain 16197
  .wd-xs-75 {
16198
    width: 75px;
16199
  }
16848 stevensc 16200
 
16825 efrain 16201
  .wd-xs-75p {
16202
    width: 75%;
16203
  }
16848 stevensc 16204
 
16825 efrain 16205
  .mx-wd-xs-75p {
16206
    max-width: 75%;
16207
  }
16848 stevensc 16208
 
16825 efrain 16209
  .mn-wd-xs-75p {
16210
    min-width: 75%;
16211
  }
16848 stevensc 16212
 
16825 efrain 16213
  .wd-xs-75-f {
16214
    width: 75px !important;
16215
  }
16848 stevensc 16216
 
16825 efrain 16217
  .wd-xs-75p-f {
16218
    width: 75% !important;
16219
  }
16848 stevensc 16220
 
16825 efrain 16221
  .mx-wd-xs-75p-f {
16222
    max-width: 75% !important;
16223
  }
16848 stevensc 16224
 
16825 efrain 16225
  .mn-wd-xs-75p-f {
16226
    min-width: 75% !important;
16227
  }
16848 stevensc 16228
 
16825 efrain 16229
  .wd-xs-80 {
16230
    width: 80px;
16231
  }
16848 stevensc 16232
 
16825 efrain 16233
  .wd-xs-80p {
16234
    width: 80%;
16235
  }
16848 stevensc 16236
 
16825 efrain 16237
  .mx-wd-xs-80p {
16238
    max-width: 80%;
16239
  }
16848 stevensc 16240
 
16825 efrain 16241
  .mn-wd-xs-80p {
16242
    min-width: 80%;
16243
  }
16848 stevensc 16244
 
16825 efrain 16245
  .wd-xs-80-f {
16246
    width: 80px !important;
16247
  }
16848 stevensc 16248
 
16825 efrain 16249
  .wd-xs-80p-f {
16250
    width: 80% !important;
16251
  }
16848 stevensc 16252
 
16825 efrain 16253
  .mx-wd-xs-80p-f {
16254
    max-width: 80% !important;
16255
  }
16848 stevensc 16256
 
16825 efrain 16257
  .mn-wd-xs-80p-f {
16258
    min-width: 80% !important;
16259
  }
16848 stevensc 16260
 
16825 efrain 16261
  .wd-xs-85 {
16262
    width: 85px;
16263
  }
16848 stevensc 16264
 
16825 efrain 16265
  .wd-xs-85p {
16266
    width: 85%;
16267
  }
16848 stevensc 16268
 
16825 efrain 16269
  .mx-wd-xs-85p {
16270
    max-width: 85%;
16271
  }
16848 stevensc 16272
 
16825 efrain 16273
  .mn-wd-xs-85p {
16274
    min-width: 85%;
16275
  }
16848 stevensc 16276
 
16825 efrain 16277
  .wd-xs-85-f {
16278
    width: 85px !important;
16279
  }
16848 stevensc 16280
 
16825 efrain 16281
  .wd-xs-85p-f {
16282
    width: 85% !important;
16283
  }
16848 stevensc 16284
 
16825 efrain 16285
  .mx-wd-xs-85p-f {
16286
    max-width: 85% !important;
16287
  }
16848 stevensc 16288
 
16825 efrain 16289
  .mn-wd-xs-85p-f {
16290
    min-width: 85% !important;
16291
  }
16848 stevensc 16292
 
16825 efrain 16293
  .wd-xs-90 {
16294
    width: 90px;
16295
  }
16848 stevensc 16296
 
16825 efrain 16297
  .wd-xs-90p {
16298
    width: 90%;
16299
  }
16848 stevensc 16300
 
16825 efrain 16301
  .mx-wd-xs-90p {
16302
    max-width: 90%;
16303
  }
16848 stevensc 16304
 
16825 efrain 16305
  .mn-wd-xs-90p {
16306
    min-width: 90%;
16307
  }
16848 stevensc 16308
 
16825 efrain 16309
  .wd-xs-90-f {
16310
    width: 90px !important;
16311
  }
16848 stevensc 16312
 
16825 efrain 16313
  .wd-xs-90p-f {
16314
    width: 90% !important;
16315
  }
16848 stevensc 16316
 
16825 efrain 16317
  .mx-wd-xs-90p-f {
16318
    max-width: 90% !important;
16319
  }
16848 stevensc 16320
 
16825 efrain 16321
  .mn-wd-xs-90p-f {
16322
    min-width: 90% !important;
16323
  }
16848 stevensc 16324
 
16825 efrain 16325
  .wd-xs-95 {
16326
    width: 95px;
16327
  }
16848 stevensc 16328
 
16825 efrain 16329
  .wd-xs-95p {
16330
    width: 95%;
16331
  }
16848 stevensc 16332
 
16825 efrain 16333
  .mx-wd-xs-95p {
16334
    max-width: 95%;
16335
  }
16848 stevensc 16336
 
16825 efrain 16337
  .mn-wd-xs-95p {
16338
    min-width: 95%;
16339
  }
16848 stevensc 16340
 
16825 efrain 16341
  .wd-xs-95-f {
16342
    width: 95px !important;
16343
  }
16848 stevensc 16344
 
16825 efrain 16345
  .wd-xs-95p-f {
16346
    width: 95% !important;
16347
  }
16848 stevensc 16348
 
16825 efrain 16349
  .mx-wd-xs-95p-f {
16350
    max-width: 95% !important;
16351
  }
16848 stevensc 16352
 
16825 efrain 16353
  .mn-wd-xs-95p-f {
16354
    min-width: 95% !important;
16355
  }
16848 stevensc 16356
 
16825 efrain 16357
  .wd-xs-100 {
16358
    width: 100px;
16359
  }
16848 stevensc 16360
 
16825 efrain 16361
  .wd-xs-100p {
16362
    width: 100%;
16363
  }
16848 stevensc 16364
 
16825 efrain 16365
  .mx-wd-xs-100p {
16366
    max-width: 100%;
16367
  }
16848 stevensc 16368
 
16825 efrain 16369
  .mn-wd-xs-100p {
16370
    min-width: 100%;
16371
  }
16848 stevensc 16372
 
16825 efrain 16373
  .wd-xs-100-f {
16374
    width: 100px !important;
16375
  }
16848 stevensc 16376
 
16825 efrain 16377
  .wd-xs-100p-f {
16378
    width: 100% !important;
16379
  }
16848 stevensc 16380
 
16825 efrain 16381
  .mx-wd-xs-100p-f {
16382
    max-width: 100% !important;
16383
  }
16848 stevensc 16384
 
16825 efrain 16385
  .mn-wd-xs-100p-f {
16386
    min-width: 100% !important;
16387
  }
16848 stevensc 16388
 
16825 efrain 16389
  .wd-xs-150 {
16390
    width: 150px;
16391
  }
16848 stevensc 16392
 
16825 efrain 16393
  .wd-xs-150p {
16394
    width: 150%;
16395
  }
16848 stevensc 16396
 
16825 efrain 16397
  .mx-wd-xs-150p {
16398
    max-width: 150%;
16399
  }
16848 stevensc 16400
 
16825 efrain 16401
  .mn-wd-xs-150p {
16402
    min-width: 150%;
16403
  }
16848 stevensc 16404
 
16825 efrain 16405
  .wd-xs-150-f {
16406
    width: 150px !important;
16407
  }
16848 stevensc 16408
 
16825 efrain 16409
  .wd-xs-150p-f {
16410
    width: 150% !important;
16411
  }
16848 stevensc 16412
 
16825 efrain 16413
  .mx-wd-xs-150p-f {
16414
    max-width: 150% !important;
16415
  }
16848 stevensc 16416
 
16825 efrain 16417
  .mn-wd-xs-150p-f {
16418
    min-width: 150% !important;
16419
  }
16848 stevensc 16420
 
16825 efrain 16421
  .wd-xs-200 {
16422
    width: 200px;
16423
  }
16848 stevensc 16424
 
16825 efrain 16425
  .wd-xs-200p {
16426
    width: 200%;
16427
  }
16848 stevensc 16428
 
16825 efrain 16429
  .mx-wd-xs-200p {
16430
    max-width: 200%;
16431
  }
16848 stevensc 16432
 
16825 efrain 16433
  .mn-wd-xs-200p {
16434
    min-width: 200%;
16435
  }
16848 stevensc 16436
 
16825 efrain 16437
  .wd-xs-200-f {
16438
    width: 200px !important;
16439
  }
16848 stevensc 16440
 
16825 efrain 16441
  .wd-xs-200p-f {
16442
    width: 200% !important;
16443
  }
16848 stevensc 16444
 
16825 efrain 16445
  .mx-wd-xs-200p-f {
16446
    max-width: 200% !important;
16447
  }
16848 stevensc 16448
 
16825 efrain 16449
  .mn-wd-xs-200p-f {
16450
    min-width: 200% !important;
16451
  }
16848 stevensc 16452
 
16825 efrain 16453
  .wd-xs-250 {
16454
    width: 250px;
16455
  }
16848 stevensc 16456
 
16825 efrain 16457
  .wd-xs-250p {
16458
    width: 250%;
16459
  }
16848 stevensc 16460
 
16825 efrain 16461
  .mx-wd-xs-250p {
16462
    max-width: 250%;
16463
  }
16848 stevensc 16464
 
16825 efrain 16465
  .mn-wd-xs-250p {
16466
    min-width: 250%;
16467
  }
16848 stevensc 16468
 
16825 efrain 16469
  .wd-xs-250-f {
16470
    width: 250px !important;
16471
  }
16848 stevensc 16472
 
16825 efrain 16473
  .wd-xs-250p-f {
16474
    width: 250% !important;
16475
  }
16848 stevensc 16476
 
16825 efrain 16477
  .mx-wd-xs-250p-f {
16478
    max-width: 250% !important;
16479
  }
16848 stevensc 16480
 
16825 efrain 16481
  .mn-wd-xs-250p-f {
16482
    min-width: 250% !important;
16483
  }
16848 stevensc 16484
 
16825 efrain 16485
  .wd-xs-300 {
16486
    width: 300px;
16487
  }
16848 stevensc 16488
 
16825 efrain 16489
  .wd-xs-300p {
16490
    width: 300%;
16491
  }
16848 stevensc 16492
 
16825 efrain 16493
  .mx-wd-xs-300p {
16494
    max-width: 300%;
16495
  }
16848 stevensc 16496
 
16825 efrain 16497
  .mn-wd-xs-300p {
16498
    min-width: 300%;
16499
  }
16848 stevensc 16500
 
16825 efrain 16501
  .wd-xs-300-f {
16502
    width: 300px !important;
16503
  }
16848 stevensc 16504
 
16825 efrain 16505
  .wd-xs-300p-f {
16506
    width: 300% !important;
16507
  }
16848 stevensc 16508
 
16825 efrain 16509
  .mx-wd-xs-300p-f {
16510
    max-width: 300% !important;
16511
  }
16848 stevensc 16512
 
16825 efrain 16513
  .mn-wd-xs-300p-f {
16514
    min-width: 300% !important;
16515
  }
16848 stevensc 16516
 
16825 efrain 16517
  .wd-xs-350 {
16518
    width: 350px;
16519
  }
16848 stevensc 16520
 
16825 efrain 16521
  .wd-xs-350p {
16522
    width: 350%;
16523
  }
16848 stevensc 16524
 
16825 efrain 16525
  .mx-wd-xs-350p {
16526
    max-width: 350%;
16527
  }
16848 stevensc 16528
 
16825 efrain 16529
  .mn-wd-xs-350p {
16530
    min-width: 350%;
16531
  }
16848 stevensc 16532
 
16825 efrain 16533
  .wd-xs-350-f {
16534
    width: 350px !important;
16535
  }
16848 stevensc 16536
 
16825 efrain 16537
  .wd-xs-350p-f {
16538
    width: 350% !important;
16539
  }
16848 stevensc 16540
 
16825 efrain 16541
  .mx-wd-xs-350p-f {
16542
    max-width: 350% !important;
16543
  }
16848 stevensc 16544
 
16825 efrain 16545
  .mn-wd-xs-350p-f {
16546
    min-width: 350% !important;
16547
  }
16848 stevensc 16548
 
16825 efrain 16549
  .wd-xs-400 {
16550
    width: 400px;
16551
  }
16848 stevensc 16552
 
16825 efrain 16553
  .wd-xs-400p {
16554
    width: 400%;
16555
  }
16848 stevensc 16556
 
16825 efrain 16557
  .mx-wd-xs-400p {
16558
    max-width: 400%;
16559
  }
16848 stevensc 16560
 
16825 efrain 16561
  .mn-wd-xs-400p {
16562
    min-width: 400%;
16563
  }
16848 stevensc 16564
 
16825 efrain 16565
  .wd-xs-400-f {
16566
    width: 400px !important;
16567
  }
16848 stevensc 16568
 
16825 efrain 16569
  .wd-xs-400p-f {
16570
    width: 400% !important;
16571
  }
16848 stevensc 16572
 
16825 efrain 16573
  .mx-wd-xs-400p-f {
16574
    max-width: 400% !important;
16575
  }
16848 stevensc 16576
 
16825 efrain 16577
  .mn-wd-xs-400p-f {
16578
    min-width: 400% !important;
16579
  }
16848 stevensc 16580
 
16825 efrain 16581
  .wd-xs-450 {
16582
    width: 450px;
16583
  }
16848 stevensc 16584
 
16825 efrain 16585
  .wd-xs-450p {
16586
    width: 450%;
16587
  }
16848 stevensc 16588
 
16825 efrain 16589
  .mx-wd-xs-450p {
16590
    max-width: 450%;
16591
  }
16848 stevensc 16592
 
16825 efrain 16593
  .mn-wd-xs-450p {
16594
    min-width: 450%;
16595
  }
16848 stevensc 16596
 
16825 efrain 16597
  .wd-xs-450-f {
16598
    width: 450px !important;
16599
  }
16848 stevensc 16600
 
16825 efrain 16601
  .wd-xs-450p-f {
16602
    width: 450% !important;
16603
  }
16848 stevensc 16604
 
16825 efrain 16605
  .mx-wd-xs-450p-f {
16606
    max-width: 450% !important;
16607
  }
16848 stevensc 16608
 
16825 efrain 16609
  .mn-wd-xs-450p-f {
16610
    min-width: 450% !important;
16611
  }
16848 stevensc 16612
 
16825 efrain 16613
  .wd-xs-500 {
16614
    width: 500px;
16615
  }
16848 stevensc 16616
 
16825 efrain 16617
  .wd-xs-500p {
16618
    width: 500%;
16619
  }
16848 stevensc 16620
 
16825 efrain 16621
  .mx-wd-xs-500p {
16622
    max-width: 500%;
16623
  }
16848 stevensc 16624
 
16825 efrain 16625
  .mn-wd-xs-500p {
16626
    min-width: 500%;
16627
  }
16848 stevensc 16628
 
16825 efrain 16629
  .wd-xs-500-f {
16630
    width: 500px !important;
16631
  }
16848 stevensc 16632
 
16825 efrain 16633
  .wd-xs-500p-f {
16634
    width: 500% !important;
16635
  }
16848 stevensc 16636
 
16825 efrain 16637
  .mx-wd-xs-500p-f {
16638
    max-width: 500% !important;
16639
  }
16848 stevensc 16640
 
16825 efrain 16641
  .mn-wd-xs-500p-f {
16642
    min-width: 500% !important;
16643
  }
16848 stevensc 16644
 
16825 efrain 16645
  .wd-xs-550 {
16646
    width: 550px;
16647
  }
16848 stevensc 16648
 
16825 efrain 16649
  .wd-xs-550p {
16650
    width: 550%;
16651
  }
16848 stevensc 16652
 
16825 efrain 16653
  .mx-wd-xs-550p {
16654
    max-width: 550%;
16655
  }
16848 stevensc 16656
 
16825 efrain 16657
  .mn-wd-xs-550p {
16658
    min-width: 550%;
16659
  }
16848 stevensc 16660
 
16825 efrain 16661
  .wd-xs-550-f {
16662
    width: 550px !important;
16663
  }
16848 stevensc 16664
 
16825 efrain 16665
  .wd-xs-550p-f {
16666
    width: 550% !important;
16667
  }
16848 stevensc 16668
 
16825 efrain 16669
  .mx-wd-xs-550p-f {
16670
    max-width: 550% !important;
16671
  }
16848 stevensc 16672
 
16825 efrain 16673
  .mn-wd-xs-550p-f {
16674
    min-width: 550% !important;
16675
  }
16848 stevensc 16676
 
16825 efrain 16677
  .wd-xs-600 {
16678
    width: 600px;
16679
  }
16848 stevensc 16680
 
16825 efrain 16681
  .wd-xs-600p {
16682
    width: 600%;
16683
  }
16848 stevensc 16684
 
16825 efrain 16685
  .mx-wd-xs-600p {
16686
    max-width: 600%;
16687
  }
16848 stevensc 16688
 
16825 efrain 16689
  .mn-wd-xs-600p {
16690
    min-width: 600%;
16691
  }
16848 stevensc 16692
 
16825 efrain 16693
  .wd-xs-600-f {
16694
    width: 600px !important;
16695
  }
16848 stevensc 16696
 
16825 efrain 16697
  .wd-xs-600p-f {
16698
    width: 600% !important;
16699
  }
16848 stevensc 16700
 
16825 efrain 16701
  .mx-wd-xs-600p-f {
16702
    max-width: 600% !important;
16703
  }
16848 stevensc 16704
 
16825 efrain 16705
  .mn-wd-xs-600p-f {
16706
    min-width: 600% !important;
16707
  }
16848 stevensc 16708
 
16825 efrain 16709
  .wd-xs-650 {
16710
    width: 650px;
16711
  }
16848 stevensc 16712
 
16825 efrain 16713
  .wd-xs-650p {
16714
    width: 650%;
16715
  }
16848 stevensc 16716
 
16825 efrain 16717
  .mx-wd-xs-650p {
16718
    max-width: 650%;
16719
  }
16848 stevensc 16720
 
16825 efrain 16721
  .mn-wd-xs-650p {
16722
    min-width: 650%;
16723
  }
16848 stevensc 16724
 
16825 efrain 16725
  .wd-xs-650-f {
16726
    width: 650px !important;
16727
  }
16848 stevensc 16728
 
16825 efrain 16729
  .wd-xs-650p-f {
16730
    width: 650% !important;
16731
  }
16848 stevensc 16732
 
16825 efrain 16733
  .mx-wd-xs-650p-f {
16734
    max-width: 650% !important;
16735
  }
16848 stevensc 16736
 
16825 efrain 16737
  .mn-wd-xs-650p-f {
16738
    min-width: 650% !important;
16739
  }
16848 stevensc 16740
 
16825 efrain 16741
  .wd-xs-700 {
16742
    width: 700px;
16743
  }
16848 stevensc 16744
 
16825 efrain 16745
  .wd-xs-700p {
16746
    width: 700%;
16747
  }
16848 stevensc 16748
 
16825 efrain 16749
  .mx-wd-xs-700p {
16750
    max-width: 700%;
16751
  }
16848 stevensc 16752
 
16825 efrain 16753
  .mn-wd-xs-700p {
16754
    min-width: 700%;
16755
  }
16848 stevensc 16756
 
16825 efrain 16757
  .wd-xs-700-f {
16758
    width: 700px !important;
16759
  }
16848 stevensc 16760
 
16825 efrain 16761
  .wd-xs-700p-f {
16762
    width: 700% !important;
16763
  }
16848 stevensc 16764
 
16825 efrain 16765
  .mx-wd-xs-700p-f {
16766
    max-width: 700% !important;
16767
  }
16848 stevensc 16768
 
16825 efrain 16769
  .mn-wd-xs-700p-f {
16770
    min-width: 700% !important;
16771
  }
16848 stevensc 16772
 
16825 efrain 16773
  .wd-xs-750 {
16774
    width: 750px;
16775
  }
16848 stevensc 16776
 
16825 efrain 16777
  .wd-xs-750p {
16778
    width: 750%;
16779
  }
16848 stevensc 16780
 
16825 efrain 16781
  .mx-wd-xs-750p {
16782
    max-width: 750%;
16783
  }
16848 stevensc 16784
 
16825 efrain 16785
  .mn-wd-xs-750p {
16786
    min-width: 750%;
16787
  }
16848 stevensc 16788
 
16825 efrain 16789
  .wd-xs-750-f {
16790
    width: 750px !important;
16791
  }
16848 stevensc 16792
 
16825 efrain 16793
  .wd-xs-750p-f {
16794
    width: 750% !important;
16795
  }
16848 stevensc 16796
 
16825 efrain 16797
  .mx-wd-xs-750p-f {
16798
    max-width: 750% !important;
16799
  }
16848 stevensc 16800
 
16825 efrain 16801
  .mn-wd-xs-750p-f {
16802
    min-width: 750% !important;
16803
  }
16848 stevensc 16804
 
16825 efrain 16805
  .wd-xs-800 {
16806
    width: 800px;
16807
  }
16848 stevensc 16808
 
16825 efrain 16809
  .wd-xs-800p {
16810
    width: 800%;
16811
  }
16848 stevensc 16812
 
16825 efrain 16813
  .mx-wd-xs-800p {
16814
    max-width: 800%;
16815
  }
16848 stevensc 16816
 
16825 efrain 16817
  .mn-wd-xs-800p {
16818
    min-width: 800%;
16819
  }
16848 stevensc 16820
 
16825 efrain 16821
  .wd-xs-800-f {
16822
    width: 800px !important;
16823
  }
16848 stevensc 16824
 
16825 efrain 16825
  .wd-xs-800p-f {
16826
    width: 800% !important;
16827
  }
16848 stevensc 16828
 
16825 efrain 16829
  .mx-wd-xs-800p-f {
16830
    max-width: 800% !important;
16831
  }
16848 stevensc 16832
 
16825 efrain 16833
  .mn-wd-xs-800p-f {
16834
    min-width: 800% !important;
16835
  }
16848 stevensc 16836
 
16825 efrain 16837
  .wd-xs-850 {
16838
    width: 850px;
16839
  }
16848 stevensc 16840
 
16825 efrain 16841
  .wd-xs-850p {
16842
    width: 850%;
16843
  }
16848 stevensc 16844
 
16825 efrain 16845
  .mx-wd-xs-850p {
16846
    max-width: 850%;
16847
  }
16848 stevensc 16848
 
16825 efrain 16849
  .mn-wd-xs-850p {
16850
    min-width: 850%;
16851
  }
16848 stevensc 16852
 
16825 efrain 16853
  .wd-xs-850-f {
16854
    width: 850px !important;
16855
  }
16848 stevensc 16856
 
16825 efrain 16857
  .wd-xs-850p-f {
16858
    width: 850% !important;
16859
  }
16848 stevensc 16860
 
16825 efrain 16861
  .mx-wd-xs-850p-f {
16862
    max-width: 850% !important;
16863
  }
16848 stevensc 16864
 
16825 efrain 16865
  .mn-wd-xs-850p-f {
16866
    min-width: 850% !important;
16867
  }
16848 stevensc 16868
 
16825 efrain 16869
  .wd-xs-900 {
16870
    width: 900px;
16871
  }
16848 stevensc 16872
 
16825 efrain 16873
  .wd-xs-900p {
16874
    width: 900%;
16875
  }
16848 stevensc 16876
 
16825 efrain 16877
  .mx-wd-xs-900p {
16878
    max-width: 900%;
16879
  }
16848 stevensc 16880
 
16825 efrain 16881
  .mn-wd-xs-900p {
16882
    min-width: 900%;
16883
  }
16848 stevensc 16884
 
16825 efrain 16885
  .wd-xs-900-f {
16886
    width: 900px !important;
16887
  }
16848 stevensc 16888
 
16825 efrain 16889
  .wd-xs-900p-f {
16890
    width: 900% !important;
16891
  }
16848 stevensc 16892
 
16825 efrain 16893
  .mx-wd-xs-900p-f {
16894
    max-width: 900% !important;
16895
  }
16848 stevensc 16896
 
16825 efrain 16897
  .mn-wd-xs-900p-f {
16898
    min-width: 900% !important;
16899
  }
16848 stevensc 16900
 
16825 efrain 16901
  .wd-xs-950 {
16902
    width: 950px;
16903
  }
16848 stevensc 16904
 
16825 efrain 16905
  .wd-xs-950p {
16906
    width: 950%;
16907
  }
16848 stevensc 16908
 
16825 efrain 16909
  .mx-wd-xs-950p {
16910
    max-width: 950%;
16911
  }
16848 stevensc 16912
 
16825 efrain 16913
  .mn-wd-xs-950p {
16914
    min-width: 950%;
16915
  }
16848 stevensc 16916
 
16825 efrain 16917
  .wd-xs-950-f {
16918
    width: 950px !important;
16919
  }
16848 stevensc 16920
 
16825 efrain 16921
  .wd-xs-950p-f {
16922
    width: 950% !important;
16923
  }
16848 stevensc 16924
 
16825 efrain 16925
  .mx-wd-xs-950p-f {
16926
    max-width: 950% !important;
16927
  }
16848 stevensc 16928
 
16825 efrain 16929
  .mn-wd-xs-950p-f {
16930
    min-width: 950% !important;
16931
  }
16848 stevensc 16932
 
16825 efrain 16933
  .wd-xs-1000 {
16934
    width: 1000px;
16935
  }
16848 stevensc 16936
 
16825 efrain 16937
  .wd-xs-1000p {
16938
    width: 1000%;
16939
  }
16848 stevensc 16940
 
16825 efrain 16941
  .mx-wd-xs-1000p {
16942
    max-width: 1000%;
16943
  }
16848 stevensc 16944
 
16825 efrain 16945
  .mn-wd-xs-1000p {
16946
    min-width: 1000%;
16947
  }
16848 stevensc 16948
 
16825 efrain 16949
  .wd-xs-1000-f {
16950
    width: 1000px !important;
16951
  }
16848 stevensc 16952
 
16825 efrain 16953
  .wd-xs-1000p-f {
16954
    width: 1000% !important;
16955
  }
16848 stevensc 16956
 
16825 efrain 16957
  .mx-wd-xs-1000p-f {
16958
    max-width: 1000% !important;
16959
  }
16848 stevensc 16960
 
16825 efrain 16961
  .mn-wd-xs-1000p-f {
16962
    min-width: 1000% !important;
16963
  }
16848 stevensc 16964
 
16825 efrain 16965
  .wd-xs-auto {
16966
    width: auto;
16967
  }
16848 stevensc 16968
 
16825 efrain 16969
  .wd-xs-auto-f {
16970
    width: auto !important;
16971
  }
16972
}
16848 stevensc 16973
 
16825 efrain 16974
@media (min-width: 576px) {
16975
  .wd-sm-5 {
16976
    width: 5px;
16977
  }
16848 stevensc 16978
 
16825 efrain 16979
  .wd-sm-5p {
16980
    width: 5%;
16981
  }
16848 stevensc 16982
 
16825 efrain 16983
  .mx-wd-sm-5p {
16984
    max-width: 5%;
16985
  }
16848 stevensc 16986
 
16825 efrain 16987
  .mn-wd-sm-5p {
16988
    min-width: 5%;
16989
  }
16848 stevensc 16990
 
16825 efrain 16991
  .wd-sm-5-f {
16992
    width: 5px !important;
16993
  }
16848 stevensc 16994
 
16825 efrain 16995
  .wd-sm-5p-f {
16996
    width: 5% !important;
16997
  }
16848 stevensc 16998
 
16825 efrain 16999
  .mx-wd-sm-5p-f {
17000
    max-width: 5% !important;
17001
  }
16848 stevensc 17002
 
16825 efrain 17003
  .mn-wd-sm-5p-f {
17004
    min-width: 5% !important;
17005
  }
16848 stevensc 17006
 
16825 efrain 17007
  .wd-sm-10 {
17008
    width: 10px;
17009
  }
16848 stevensc 17010
 
16825 efrain 17011
  .wd-sm-10p {
17012
    width: 10%;
17013
  }
16848 stevensc 17014
 
16825 efrain 17015
  .mx-wd-sm-10p {
17016
    max-width: 10%;
17017
  }
16848 stevensc 17018
 
16825 efrain 17019
  .mn-wd-sm-10p {
17020
    min-width: 10%;
17021
  }
16848 stevensc 17022
 
16825 efrain 17023
  .wd-sm-10-f {
17024
    width: 10px !important;
17025
  }
16848 stevensc 17026
 
16825 efrain 17027
  .wd-sm-10p-f {
17028
    width: 10% !important;
17029
  }
16848 stevensc 17030
 
16825 efrain 17031
  .mx-wd-sm-10p-f {
17032
    max-width: 10% !important;
17033
  }
16848 stevensc 17034
 
16825 efrain 17035
  .mn-wd-sm-10p-f {
17036
    min-width: 10% !important;
17037
  }
16848 stevensc 17038
 
16825 efrain 17039
  .wd-sm-15 {
17040
    width: 15px;
17041
  }
16848 stevensc 17042
 
16825 efrain 17043
  .wd-sm-15p {
17044
    width: 15%;
17045
  }
16848 stevensc 17046
 
16825 efrain 17047
  .mx-wd-sm-15p {
17048
    max-width: 15%;
17049
  }
16848 stevensc 17050
 
16825 efrain 17051
  .mn-wd-sm-15p {
17052
    min-width: 15%;
17053
  }
16848 stevensc 17054
 
16825 efrain 17055
  .wd-sm-15-f {
17056
    width: 15px !important;
17057
  }
16848 stevensc 17058
 
16825 efrain 17059
  .wd-sm-15p-f {
17060
    width: 15% !important;
17061
  }
16848 stevensc 17062
 
16825 efrain 17063
  .mx-wd-sm-15p-f {
17064
    max-width: 15% !important;
17065
  }
16848 stevensc 17066
 
16825 efrain 17067
  .mn-wd-sm-15p-f {
17068
    min-width: 15% !important;
17069
  }
16848 stevensc 17070
 
16825 efrain 17071
  .wd-sm-20 {
17072
    width: 20px;
17073
  }
16848 stevensc 17074
 
16825 efrain 17075
  .wd-sm-20p {
17076
    width: 20%;
17077
  }
16848 stevensc 17078
 
16825 efrain 17079
  .mx-wd-sm-20p {
17080
    max-width: 20%;
17081
  }
16848 stevensc 17082
 
16825 efrain 17083
  .mn-wd-sm-20p {
17084
    min-width: 20%;
17085
  }
16848 stevensc 17086
 
16825 efrain 17087
  .wd-sm-20-f {
17088
    width: 20px !important;
17089
  }
16848 stevensc 17090
 
16825 efrain 17091
  .wd-sm-20p-f {
17092
    width: 20% !important;
17093
  }
16848 stevensc 17094
 
16825 efrain 17095
  .mx-wd-sm-20p-f {
17096
    max-width: 20% !important;
17097
  }
16848 stevensc 17098
 
16825 efrain 17099
  .mn-wd-sm-20p-f {
17100
    min-width: 20% !important;
17101
  }
16848 stevensc 17102
 
16825 efrain 17103
  .wd-sm-25 {
17104
    width: 25px;
17105
  }
16848 stevensc 17106
 
16825 efrain 17107
  .wd-sm-25p {
17108
    width: 25%;
17109
  }
16848 stevensc 17110
 
16825 efrain 17111
  .mx-wd-sm-25p {
17112
    max-width: 25%;
17113
  }
16848 stevensc 17114
 
16825 efrain 17115
  .mn-wd-sm-25p {
17116
    min-width: 25%;
17117
  }
16848 stevensc 17118
 
16825 efrain 17119
  .wd-sm-25-f {
17120
    width: 25px !important;
17121
  }
16848 stevensc 17122
 
16825 efrain 17123
  .wd-sm-25p-f {
17124
    width: 25% !important;
17125
  }
16848 stevensc 17126
 
16825 efrain 17127
  .mx-wd-sm-25p-f {
17128
    max-width: 25% !important;
17129
  }
16848 stevensc 17130
 
16825 efrain 17131
  .mn-wd-sm-25p-f {
17132
    min-width: 25% !important;
17133
  }
16848 stevensc 17134
 
16825 efrain 17135
  .wd-sm-30 {
17136
    width: 30px;
17137
  }
16848 stevensc 17138
 
16825 efrain 17139
  .wd-sm-30p {
17140
    width: 30%;
17141
  }
16848 stevensc 17142
 
16825 efrain 17143
  .mx-wd-sm-30p {
17144
    max-width: 30%;
17145
  }
16848 stevensc 17146
 
16825 efrain 17147
  .mn-wd-sm-30p {
17148
    min-width: 30%;
17149
  }
16848 stevensc 17150
 
16825 efrain 17151
  .wd-sm-30-f {
17152
    width: 30px !important;
17153
  }
16848 stevensc 17154
 
16825 efrain 17155
  .wd-sm-30p-f {
17156
    width: 30% !important;
17157
  }
16848 stevensc 17158
 
16825 efrain 17159
  .mx-wd-sm-30p-f {
17160
    max-width: 30% !important;
17161
  }
16848 stevensc 17162
 
16825 efrain 17163
  .mn-wd-sm-30p-f {
17164
    min-width: 30% !important;
17165
  }
16848 stevensc 17166
 
16825 efrain 17167
  .wd-sm-35 {
17168
    width: 35px;
17169
  }
16848 stevensc 17170
 
16825 efrain 17171
  .wd-sm-35p {
17172
    width: 35%;
17173
  }
16848 stevensc 17174
 
16825 efrain 17175
  .mx-wd-sm-35p {
17176
    max-width: 35%;
17177
  }
16848 stevensc 17178
 
16825 efrain 17179
  .mn-wd-sm-35p {
17180
    min-width: 35%;
17181
  }
16848 stevensc 17182
 
16825 efrain 17183
  .wd-sm-35-f {
17184
    width: 35px !important;
17185
  }
16848 stevensc 17186
 
16825 efrain 17187
  .wd-sm-35p-f {
17188
    width: 35% !important;
17189
  }
16848 stevensc 17190
 
16825 efrain 17191
  .mx-wd-sm-35p-f {
17192
    max-width: 35% !important;
17193
  }
16848 stevensc 17194
 
16825 efrain 17195
  .mn-wd-sm-35p-f {
17196
    min-width: 35% !important;
17197
  }
16848 stevensc 17198
 
16825 efrain 17199
  .wd-sm-40 {
17200
    width: 40px;
17201
  }
16848 stevensc 17202
 
16825 efrain 17203
  .wd-sm-40p {
17204
    width: 40%;
17205
  }
16848 stevensc 17206
 
16825 efrain 17207
  .mx-wd-sm-40p {
17208
    max-width: 40%;
17209
  }
16848 stevensc 17210
 
16825 efrain 17211
  .mn-wd-sm-40p {
17212
    min-width: 40%;
17213
  }
16848 stevensc 17214
 
16825 efrain 17215
  .wd-sm-40-f {
17216
    width: 40px !important;
17217
  }
16848 stevensc 17218
 
16825 efrain 17219
  .wd-sm-40p-f {
17220
    width: 40% !important;
17221
  }
16848 stevensc 17222
 
16825 efrain 17223
  .mx-wd-sm-40p-f {
17224
    max-width: 40% !important;
17225
  }
16848 stevensc 17226
 
16825 efrain 17227
  .mn-wd-sm-40p-f {
17228
    min-width: 40% !important;
17229
  }
16848 stevensc 17230
 
16825 efrain 17231
  .wd-sm-45 {
17232
    width: 45px;
17233
  }
16848 stevensc 17234
 
16825 efrain 17235
  .wd-sm-45p {
17236
    width: 45%;
17237
  }
16848 stevensc 17238
 
16825 efrain 17239
  .mx-wd-sm-45p {
17240
    max-width: 45%;
17241
  }
16848 stevensc 17242
 
16825 efrain 17243
  .mn-wd-sm-45p {
17244
    min-width: 45%;
17245
  }
16848 stevensc 17246
 
16825 efrain 17247
  .wd-sm-45-f {
17248
    width: 45px !important;
17249
  }
16848 stevensc 17250
 
16825 efrain 17251
  .wd-sm-45p-f {
17252
    width: 45% !important;
17253
  }
16848 stevensc 17254
 
16825 efrain 17255
  .mx-wd-sm-45p-f {
17256
    max-width: 45% !important;
17257
  }
16848 stevensc 17258
 
16825 efrain 17259
  .mn-wd-sm-45p-f {
17260
    min-width: 45% !important;
17261
  }
16848 stevensc 17262
 
16825 efrain 17263
  .wd-sm-50 {
17264
    width: 50px;
17265
  }
16848 stevensc 17266
 
16825 efrain 17267
  .wd-sm-50p {
17268
    width: 50%;
17269
  }
16848 stevensc 17270
 
16825 efrain 17271
  .mx-wd-sm-50p {
17272
    max-width: 50%;
17273
  }
16848 stevensc 17274
 
16825 efrain 17275
  .mn-wd-sm-50p {
17276
    min-width: 50%;
17277
  }
16848 stevensc 17278
 
16825 efrain 17279
  .wd-sm-50-f {
17280
    width: 50px !important;
17281
  }
16848 stevensc 17282
 
16825 efrain 17283
  .wd-sm-50p-f {
17284
    width: 50% !important;
17285
  }
16848 stevensc 17286
 
16825 efrain 17287
  .mx-wd-sm-50p-f {
17288
    max-width: 50% !important;
17289
  }
16848 stevensc 17290
 
16825 efrain 17291
  .mn-wd-sm-50p-f {
17292
    min-width: 50% !important;
17293
  }
16848 stevensc 17294
 
16825 efrain 17295
  .wd-sm-55 {
17296
    width: 55px;
17297
  }
16848 stevensc 17298
 
16825 efrain 17299
  .wd-sm-55p {
17300
    width: 55%;
17301
  }
16848 stevensc 17302
 
16825 efrain 17303
  .mx-wd-sm-55p {
17304
    max-width: 55%;
17305
  }
16848 stevensc 17306
 
16825 efrain 17307
  .mn-wd-sm-55p {
17308
    min-width: 55%;
17309
  }
16848 stevensc 17310
 
16825 efrain 17311
  .wd-sm-55-f {
17312
    width: 55px !important;
17313
  }
16848 stevensc 17314
 
16825 efrain 17315
  .wd-sm-55p-f {
17316
    width: 55% !important;
17317
  }
16848 stevensc 17318
 
16825 efrain 17319
  .mx-wd-sm-55p-f {
17320
    max-width: 55% !important;
17321
  }
16848 stevensc 17322
 
16825 efrain 17323
  .mn-wd-sm-55p-f {
17324
    min-width: 55% !important;
17325
  }
16848 stevensc 17326
 
16825 efrain 17327
  .wd-sm-60 {
17328
    width: 60px;
17329
  }
16848 stevensc 17330
 
16825 efrain 17331
  .wd-sm-60p {
17332
    width: 60%;
17333
  }
16848 stevensc 17334
 
16825 efrain 17335
  .mx-wd-sm-60p {
17336
    max-width: 60%;
17337
  }
16848 stevensc 17338
 
16825 efrain 17339
  .mn-wd-sm-60p {
17340
    min-width: 60%;
17341
  }
16848 stevensc 17342
 
16825 efrain 17343
  .wd-sm-60-f {
17344
    width: 60px !important;
17345
  }
16848 stevensc 17346
 
16825 efrain 17347
  .wd-sm-60p-f {
17348
    width: 60% !important;
17349
  }
16848 stevensc 17350
 
16825 efrain 17351
  .mx-wd-sm-60p-f {
17352
    max-width: 60% !important;
17353
  }
16848 stevensc 17354
 
16825 efrain 17355
  .mn-wd-sm-60p-f {
17356
    min-width: 60% !important;
17357
  }
16848 stevensc 17358
 
16825 efrain 17359
  .wd-sm-65 {
17360
    width: 65px;
17361
  }
16848 stevensc 17362
 
16825 efrain 17363
  .wd-sm-65p {
17364
    width: 65%;
17365
  }
16848 stevensc 17366
 
16825 efrain 17367
  .mx-wd-sm-65p {
17368
    max-width: 65%;
17369
  }
16848 stevensc 17370
 
16825 efrain 17371
  .mn-wd-sm-65p {
17372
    min-width: 65%;
17373
  }
16848 stevensc 17374
 
16825 efrain 17375
  .wd-sm-65-f {
17376
    width: 65px !important;
17377
  }
16848 stevensc 17378
 
16825 efrain 17379
  .wd-sm-65p-f {
17380
    width: 65% !important;
17381
  }
16848 stevensc 17382
 
16825 efrain 17383
  .mx-wd-sm-65p-f {
17384
    max-width: 65% !important;
17385
  }
16848 stevensc 17386
 
16825 efrain 17387
  .mn-wd-sm-65p-f {
17388
    min-width: 65% !important;
17389
  }
16848 stevensc 17390
 
16825 efrain 17391
  .wd-sm-70 {
17392
    width: 70px;
17393
  }
16848 stevensc 17394
 
16825 efrain 17395
  .wd-sm-70p {
17396
    width: 70%;
17397
  }
16848 stevensc 17398
 
16825 efrain 17399
  .mx-wd-sm-70p {
17400
    max-width: 70%;
17401
  }
16848 stevensc 17402
 
16825 efrain 17403
  .mn-wd-sm-70p {
17404
    min-width: 70%;
17405
  }
16848 stevensc 17406
 
16825 efrain 17407
  .wd-sm-70-f {
17408
    width: 70px !important;
17409
  }
16848 stevensc 17410
 
16825 efrain 17411
  .wd-sm-70p-f {
17412
    width: 70% !important;
17413
  }
16848 stevensc 17414
 
16825 efrain 17415
  .mx-wd-sm-70p-f {
17416
    max-width: 70% !important;
17417
  }
16848 stevensc 17418
 
16825 efrain 17419
  .mn-wd-sm-70p-f {
17420
    min-width: 70% !important;
17421
  }
16848 stevensc 17422
 
16825 efrain 17423
  .wd-sm-75 {
17424
    width: 75px;
17425
  }
16848 stevensc 17426
 
16825 efrain 17427
  .wd-sm-75p {
17428
    width: 75%;
17429
  }
16848 stevensc 17430
 
16825 efrain 17431
  .mx-wd-sm-75p {
17432
    max-width: 75%;
17433
  }
16848 stevensc 17434
 
16825 efrain 17435
  .mn-wd-sm-75p {
17436
    min-width: 75%;
17437
  }
16848 stevensc 17438
 
16825 efrain 17439
  .wd-sm-75-f {
17440
    width: 75px !important;
17441
  }
16848 stevensc 17442
 
16825 efrain 17443
  .wd-sm-75p-f {
17444
    width: 75% !important;
17445
  }
16848 stevensc 17446
 
16825 efrain 17447
  .mx-wd-sm-75p-f {
17448
    max-width: 75% !important;
17449
  }
16848 stevensc 17450
 
16825 efrain 17451
  .mn-wd-sm-75p-f {
17452
    min-width: 75% !important;
17453
  }
16848 stevensc 17454
 
16825 efrain 17455
  .wd-sm-80 {
17456
    width: 80px;
17457
  }
16848 stevensc 17458
 
16825 efrain 17459
  .wd-sm-80p {
17460
    width: 80%;
17461
  }
16848 stevensc 17462
 
16825 efrain 17463
  .mx-wd-sm-80p {
17464
    max-width: 80%;
17465
  }
16848 stevensc 17466
 
16825 efrain 17467
  .mn-wd-sm-80p {
17468
    min-width: 80%;
17469
  }
16848 stevensc 17470
 
16825 efrain 17471
  .wd-sm-80-f {
17472
    width: 80px !important;
17473
  }
16848 stevensc 17474
 
16825 efrain 17475
  .wd-sm-80p-f {
17476
    width: 80% !important;
17477
  }
16848 stevensc 17478
 
16825 efrain 17479
  .mx-wd-sm-80p-f {
17480
    max-width: 80% !important;
17481
  }
16848 stevensc 17482
 
16825 efrain 17483
  .mn-wd-sm-80p-f {
17484
    min-width: 80% !important;
17485
  }
16848 stevensc 17486
 
16825 efrain 17487
  .wd-sm-85 {
17488
    width: 85px;
17489
  }
16848 stevensc 17490
 
16825 efrain 17491
  .wd-sm-85p {
17492
    width: 85%;
17493
  }
16848 stevensc 17494
 
16825 efrain 17495
  .mx-wd-sm-85p {
17496
    max-width: 85%;
17497
  }
16848 stevensc 17498
 
16825 efrain 17499
  .mn-wd-sm-85p {
17500
    min-width: 85%;
17501
  }
16848 stevensc 17502
 
16825 efrain 17503
  .wd-sm-85-f {
17504
    width: 85px !important;
17505
  }
16848 stevensc 17506
 
16825 efrain 17507
  .wd-sm-85p-f {
17508
    width: 85% !important;
17509
  }
16848 stevensc 17510
 
16825 efrain 17511
  .mx-wd-sm-85p-f {
17512
    max-width: 85% !important;
17513
  }
16848 stevensc 17514
 
16825 efrain 17515
  .mn-wd-sm-85p-f {
17516
    min-width: 85% !important;
17517
  }
16848 stevensc 17518
 
16825 efrain 17519
  .wd-sm-90 {
17520
    width: 90px;
17521
  }
16848 stevensc 17522
 
16825 efrain 17523
  .wd-sm-90p {
17524
    width: 90%;
17525
  }
16848 stevensc 17526
 
16825 efrain 17527
  .mx-wd-sm-90p {
17528
    max-width: 90%;
17529
  }
16848 stevensc 17530
 
16825 efrain 17531
  .mn-wd-sm-90p {
17532
    min-width: 90%;
17533
  }
16848 stevensc 17534
 
16825 efrain 17535
  .wd-sm-90-f {
17536
    width: 90px !important;
17537
  }
16848 stevensc 17538
 
16825 efrain 17539
  .wd-sm-90p-f {
17540
    width: 90% !important;
17541
  }
16848 stevensc 17542
 
16825 efrain 17543
  .mx-wd-sm-90p-f {
17544
    max-width: 90% !important;
17545
  }
16848 stevensc 17546
 
16825 efrain 17547
  .mn-wd-sm-90p-f {
17548
    min-width: 90% !important;
17549
  }
16848 stevensc 17550
 
16825 efrain 17551
  .wd-sm-95 {
17552
    width: 95px;
17553
  }
16848 stevensc 17554
 
16825 efrain 17555
  .wd-sm-95p {
17556
    width: 95%;
17557
  }
16848 stevensc 17558
 
16825 efrain 17559
  .mx-wd-sm-95p {
17560
    max-width: 95%;
17561
  }
16848 stevensc 17562
 
16825 efrain 17563
  .mn-wd-sm-95p {
17564
    min-width: 95%;
17565
  }
16848 stevensc 17566
 
16825 efrain 17567
  .wd-sm-95-f {
17568
    width: 95px !important;
17569
  }
16848 stevensc 17570
 
16825 efrain 17571
  .wd-sm-95p-f {
17572
    width: 95% !important;
17573
  }
16848 stevensc 17574
 
16825 efrain 17575
  .mx-wd-sm-95p-f {
17576
    max-width: 95% !important;
17577
  }
16848 stevensc 17578
 
16825 efrain 17579
  .mn-wd-sm-95p-f {
17580
    min-width: 95% !important;
17581
  }
16848 stevensc 17582
 
16825 efrain 17583
  .wd-sm-100 {
17584
    width: 100px;
17585
  }
16848 stevensc 17586
 
16825 efrain 17587
  .wd-sm-100p {
17588
    width: 100%;
17589
  }
16848 stevensc 17590
 
16825 efrain 17591
  .mx-wd-sm-100p {
17592
    max-width: 100%;
17593
  }
16848 stevensc 17594
 
16825 efrain 17595
  .mn-wd-sm-100p {
17596
    min-width: 100%;
17597
  }
16848 stevensc 17598
 
16825 efrain 17599
  .wd-sm-100-f {
17600
    width: 100px !important;
17601
  }
16848 stevensc 17602
 
16825 efrain 17603
  .wd-sm-100p-f {
17604
    width: 100% !important;
17605
  }
16848 stevensc 17606
 
16825 efrain 17607
  .mx-wd-sm-100p-f {
17608
    max-width: 100% !important;
17609
  }
16848 stevensc 17610
 
16825 efrain 17611
  .mn-wd-sm-100p-f {
17612
    min-width: 100% !important;
17613
  }
16848 stevensc 17614
 
16825 efrain 17615
  .wd-sm-150 {
17616
    width: 150px;
17617
  }
16848 stevensc 17618
 
16825 efrain 17619
  .wd-sm-150p {
17620
    width: 150%;
17621
  }
16848 stevensc 17622
 
16825 efrain 17623
  .mx-wd-sm-150p {
17624
    max-width: 150%;
17625
  }
16848 stevensc 17626
 
16825 efrain 17627
  .mn-wd-sm-150p {
17628
    min-width: 150%;
17629
  }
16848 stevensc 17630
 
16825 efrain 17631
  .wd-sm-150-f {
17632
    width: 150px !important;
17633
  }
16848 stevensc 17634
 
16825 efrain 17635
  .wd-sm-150p-f {
17636
    width: 150% !important;
17637
  }
16848 stevensc 17638
 
16825 efrain 17639
  .mx-wd-sm-150p-f {
17640
    max-width: 150% !important;
17641
  }
16848 stevensc 17642
 
16825 efrain 17643
  .mn-wd-sm-150p-f {
17644
    min-width: 150% !important;
17645
  }
16848 stevensc 17646
 
16825 efrain 17647
  .wd-sm-200 {
17648
    width: 200px;
17649
  }
16848 stevensc 17650
 
16825 efrain 17651
  .wd-sm-200p {
17652
    width: 200%;
17653
  }
16848 stevensc 17654
 
16825 efrain 17655
  .mx-wd-sm-200p {
17656
    max-width: 200%;
17657
  }
16848 stevensc 17658
 
16825 efrain 17659
  .mn-wd-sm-200p {
17660
    min-width: 200%;
17661
  }
16848 stevensc 17662
 
16825 efrain 17663
  .wd-sm-200-f {
17664
    width: 200px !important;
17665
  }
16848 stevensc 17666
 
16825 efrain 17667
  .wd-sm-200p-f {
17668
    width: 200% !important;
17669
  }
16848 stevensc 17670
 
16825 efrain 17671
  .mx-wd-sm-200p-f {
17672
    max-width: 200% !important;
17673
  }
16848 stevensc 17674
 
16825 efrain 17675
  .mn-wd-sm-200p-f {
17676
    min-width: 200% !important;
17677
  }
16848 stevensc 17678
 
16825 efrain 17679
  .wd-sm-250 {
17680
    width: 250px;
17681
  }
16848 stevensc 17682
 
16825 efrain 17683
  .wd-sm-250p {
17684
    width: 250%;
17685
  }
16848 stevensc 17686
 
16825 efrain 17687
  .mx-wd-sm-250p {
17688
    max-width: 250%;
17689
  }
16848 stevensc 17690
 
16825 efrain 17691
  .mn-wd-sm-250p {
17692
    min-width: 250%;
17693
  }
16848 stevensc 17694
 
16825 efrain 17695
  .wd-sm-250-f {
17696
    width: 250px !important;
17697
  }
16848 stevensc 17698
 
16825 efrain 17699
  .wd-sm-250p-f {
17700
    width: 250% !important;
17701
  }
16848 stevensc 17702
 
16825 efrain 17703
  .mx-wd-sm-250p-f {
17704
    max-width: 250% !important;
17705
  }
16848 stevensc 17706
 
16825 efrain 17707
  .mn-wd-sm-250p-f {
17708
    min-width: 250% !important;
17709
  }
16848 stevensc 17710
 
16825 efrain 17711
  .wd-sm-300 {
17712
    width: 300px;
17713
  }
16848 stevensc 17714
 
16825 efrain 17715
  .wd-sm-300p {
17716
    width: 300%;
17717
  }
16848 stevensc 17718
 
16825 efrain 17719
  .mx-wd-sm-300p {
17720
    max-width: 300%;
17721
  }
16848 stevensc 17722
 
16825 efrain 17723
  .mn-wd-sm-300p {
17724
    min-width: 300%;
17725
  }
16848 stevensc 17726
 
16825 efrain 17727
  .wd-sm-300-f {
17728
    width: 300px !important;
17729
  }
16848 stevensc 17730
 
16825 efrain 17731
  .wd-sm-300p-f {
17732
    width: 300% !important;
17733
  }
16848 stevensc 17734
 
16825 efrain 17735
  .mx-wd-sm-300p-f {
17736
    max-width: 300% !important;
17737
  }
16848 stevensc 17738
 
16825 efrain 17739
  .mn-wd-sm-300p-f {
17740
    min-width: 300% !important;
17741
  }
16848 stevensc 17742
 
16825 efrain 17743
  .wd-sm-350 {
17744
    width: 350px;
17745
  }
16848 stevensc 17746
 
16825 efrain 17747
  .wd-sm-350p {
17748
    width: 350%;
17749
  }
16848 stevensc 17750
 
16825 efrain 17751
  .mx-wd-sm-350p {
17752
    max-width: 350%;
17753
  }
16848 stevensc 17754
 
16825 efrain 17755
  .mn-wd-sm-350p {
17756
    min-width: 350%;
17757
  }
16848 stevensc 17758
 
16825 efrain 17759
  .wd-sm-350-f {
17760
    width: 350px !important;
17761
  }
16848 stevensc 17762
 
16825 efrain 17763
  .wd-sm-350p-f {
17764
    width: 350% !important;
17765
  }
16848 stevensc 17766
 
16825 efrain 17767
  .mx-wd-sm-350p-f {
17768
    max-width: 350% !important;
17769
  }
16848 stevensc 17770
 
16825 efrain 17771
  .mn-wd-sm-350p-f {
17772
    min-width: 350% !important;
17773
  }
16848 stevensc 17774
 
16825 efrain 17775
  .wd-sm-400 {
17776
    width: 400px;
17777
  }
16848 stevensc 17778
 
16825 efrain 17779
  .wd-sm-400p {
17780
    width: 400%;
17781
  }
16848 stevensc 17782
 
16825 efrain 17783
  .mx-wd-sm-400p {
17784
    max-width: 400%;
17785
  }
16848 stevensc 17786
 
16825 efrain 17787
  .mn-wd-sm-400p {
17788
    min-width: 400%;
17789
  }
16848 stevensc 17790
 
16825 efrain 17791
  .wd-sm-400-f {
17792
    width: 400px !important;
17793
  }
16848 stevensc 17794
 
16825 efrain 17795
  .wd-sm-400p-f {
17796
    width: 400% !important;
17797
  }
16848 stevensc 17798
 
16825 efrain 17799
  .mx-wd-sm-400p-f {
17800
    max-width: 400% !important;
17801
  }
16848 stevensc 17802
 
16825 efrain 17803
  .mn-wd-sm-400p-f {
17804
    min-width: 400% !important;
17805
  }
16848 stevensc 17806
 
16825 efrain 17807
  .wd-sm-450 {
17808
    width: 450px;
17809
  }
16848 stevensc 17810
 
16825 efrain 17811
  .wd-sm-450p {
17812
    width: 450%;
17813
  }
16848 stevensc 17814
 
16825 efrain 17815
  .mx-wd-sm-450p {
17816
    max-width: 450%;
17817
  }
16848 stevensc 17818
 
16825 efrain 17819
  .mn-wd-sm-450p {
17820
    min-width: 450%;
17821
  }
16848 stevensc 17822
 
16825 efrain 17823
  .wd-sm-450-f {
17824
    width: 450px !important;
17825
  }
16848 stevensc 17826
 
16825 efrain 17827
  .wd-sm-450p-f {
17828
    width: 450% !important;
17829
  }
16848 stevensc 17830
 
16825 efrain 17831
  .mx-wd-sm-450p-f {
17832
    max-width: 450% !important;
17833
  }
16848 stevensc 17834
 
16825 efrain 17835
  .mn-wd-sm-450p-f {
17836
    min-width: 450% !important;
17837
  }
16848 stevensc 17838
 
16825 efrain 17839
  .wd-sm-500 {
17840
    width: 500px;
17841
  }
16848 stevensc 17842
 
16825 efrain 17843
  .wd-sm-500p {
17844
    width: 500%;
17845
  }
16848 stevensc 17846
 
16825 efrain 17847
  .mx-wd-sm-500p {
17848
    max-width: 500%;
17849
  }
16848 stevensc 17850
 
16825 efrain 17851
  .mn-wd-sm-500p {
17852
    min-width: 500%;
17853
  }
16848 stevensc 17854
 
16825 efrain 17855
  .wd-sm-500-f {
17856
    width: 500px !important;
17857
  }
16848 stevensc 17858
 
16825 efrain 17859
  .wd-sm-500p-f {
17860
    width: 500% !important;
17861
  }
16848 stevensc 17862
 
16825 efrain 17863
  .mx-wd-sm-500p-f {
17864
    max-width: 500% !important;
17865
  }
16848 stevensc 17866
 
16825 efrain 17867
  .mn-wd-sm-500p-f {
17868
    min-width: 500% !important;
17869
  }
16848 stevensc 17870
 
16825 efrain 17871
  .wd-sm-550 {
17872
    width: 550px;
17873
  }
16848 stevensc 17874
 
16825 efrain 17875
  .wd-sm-550p {
17876
    width: 550%;
17877
  }
16848 stevensc 17878
 
16825 efrain 17879
  .mx-wd-sm-550p {
17880
    max-width: 550%;
17881
  }
16848 stevensc 17882
 
16825 efrain 17883
  .mn-wd-sm-550p {
17884
    min-width: 550%;
17885
  }
16848 stevensc 17886
 
16825 efrain 17887
  .wd-sm-550-f {
17888
    width: 550px !important;
17889
  }
16848 stevensc 17890
 
16825 efrain 17891
  .wd-sm-550p-f {
17892
    width: 550% !important;
17893
  }
16848 stevensc 17894
 
16825 efrain 17895
  .mx-wd-sm-550p-f {
17896
    max-width: 550% !important;
17897
  }
16848 stevensc 17898
 
16825 efrain 17899
  .mn-wd-sm-550p-f {
17900
    min-width: 550% !important;
17901
  }
16848 stevensc 17902
 
16825 efrain 17903
  .wd-sm-600 {
17904
    width: 600px;
17905
  }
16848 stevensc 17906
 
16825 efrain 17907
  .wd-sm-600p {
17908
    width: 600%;
17909
  }
16848 stevensc 17910
 
16825 efrain 17911
  .mx-wd-sm-600p {
17912
    max-width: 600%;
17913
  }
16848 stevensc 17914
 
16825 efrain 17915
  .mn-wd-sm-600p {
17916
    min-width: 600%;
17917
  }
16848 stevensc 17918
 
16825 efrain 17919
  .wd-sm-600-f {
17920
    width: 600px !important;
17921
  }
16848 stevensc 17922
 
16825 efrain 17923
  .wd-sm-600p-f {
17924
    width: 600% !important;
17925
  }
16848 stevensc 17926
 
16825 efrain 17927
  .mx-wd-sm-600p-f {
17928
    max-width: 600% !important;
17929
  }
16848 stevensc 17930
 
16825 efrain 17931
  .mn-wd-sm-600p-f {
17932
    min-width: 600% !important;
17933
  }
16848 stevensc 17934
 
16825 efrain 17935
  .wd-sm-650 {
17936
    width: 650px;
17937
  }
16848 stevensc 17938
 
16825 efrain 17939
  .wd-sm-650p {
17940
    width: 650%;
17941
  }
16848 stevensc 17942
 
16825 efrain 17943
  .mx-wd-sm-650p {
17944
    max-width: 650%;
17945
  }
16848 stevensc 17946
 
16825 efrain 17947
  .mn-wd-sm-650p {
17948
    min-width: 650%;
17949
  }
16848 stevensc 17950
 
16825 efrain 17951
  .wd-sm-650-f {
17952
    width: 650px !important;
17953
  }
16848 stevensc 17954
 
16825 efrain 17955
  .wd-sm-650p-f {
17956
    width: 650% !important;
17957
  }
16848 stevensc 17958
 
16825 efrain 17959
  .mx-wd-sm-650p-f {
17960
    max-width: 650% !important;
17961
  }
16848 stevensc 17962
 
16825 efrain 17963
  .mn-wd-sm-650p-f {
17964
    min-width: 650% !important;
17965
  }
16848 stevensc 17966
 
16825 efrain 17967
  .wd-sm-700 {
17968
    width: 700px;
17969
  }
16848 stevensc 17970
 
16825 efrain 17971
  .wd-sm-700p {
17972
    width: 700%;
17973
  }
16848 stevensc 17974
 
16825 efrain 17975
  .mx-wd-sm-700p {
17976
    max-width: 700%;
17977
  }
16848 stevensc 17978
 
16825 efrain 17979
  .mn-wd-sm-700p {
17980
    min-width: 700%;
17981
  }
16848 stevensc 17982
 
16825 efrain 17983
  .wd-sm-700-f {
17984
    width: 700px !important;
17985
  }
16848 stevensc 17986
 
16825 efrain 17987
  .wd-sm-700p-f {
17988
    width: 700% !important;
17989
  }
16848 stevensc 17990
 
16825 efrain 17991
  .mx-wd-sm-700p-f {
17992
    max-width: 700% !important;
17993
  }
16848 stevensc 17994
 
16825 efrain 17995
  .mn-wd-sm-700p-f {
17996
    min-width: 700% !important;
17997
  }
16848 stevensc 17998
 
16825 efrain 17999
  .wd-sm-750 {
18000
    width: 750px;
18001
  }
16848 stevensc 18002
 
16825 efrain 18003
  .wd-sm-750p {
18004
    width: 750%;
18005
  }
16848 stevensc 18006
 
16825 efrain 18007
  .mx-wd-sm-750p {
18008
    max-width: 750%;
18009
  }
16848 stevensc 18010
 
16825 efrain 18011
  .mn-wd-sm-750p {
18012
    min-width: 750%;
18013
  }
16848 stevensc 18014
 
16825 efrain 18015
  .wd-sm-750-f {
18016
    width: 750px !important;
18017
  }
16848 stevensc 18018
 
16825 efrain 18019
  .wd-sm-750p-f {
18020
    width: 750% !important;
18021
  }
16848 stevensc 18022
 
16825 efrain 18023
  .mx-wd-sm-750p-f {
18024
    max-width: 750% !important;
18025
  }
16848 stevensc 18026
 
16825 efrain 18027
  .mn-wd-sm-750p-f {
18028
    min-width: 750% !important;
18029
  }
16848 stevensc 18030
 
16825 efrain 18031
  .wd-sm-800 {
18032
    width: 800px;
18033
  }
16848 stevensc 18034
 
16825 efrain 18035
  .wd-sm-800p {
18036
    width: 800%;
18037
  }
16848 stevensc 18038
 
16825 efrain 18039
  .mx-wd-sm-800p {
18040
    max-width: 800%;
18041
  }
16848 stevensc 18042
 
16825 efrain 18043
  .mn-wd-sm-800p {
18044
    min-width: 800%;
18045
  }
16848 stevensc 18046
 
16825 efrain 18047
  .wd-sm-800-f {
18048
    width: 800px !important;
18049
  }
16848 stevensc 18050
 
16825 efrain 18051
  .wd-sm-800p-f {
18052
    width: 800% !important;
18053
  }
16848 stevensc 18054
 
16825 efrain 18055
  .mx-wd-sm-800p-f {
18056
    max-width: 800% !important;
18057
  }
16848 stevensc 18058
 
16825 efrain 18059
  .mn-wd-sm-800p-f {
18060
    min-width: 800% !important;
18061
  }
16848 stevensc 18062
 
16825 efrain 18063
  .wd-sm-850 {
18064
    width: 850px;
18065
  }
16848 stevensc 18066
 
16825 efrain 18067
  .wd-sm-850p {
18068
    width: 850%;
18069
  }
16848 stevensc 18070
 
16825 efrain 18071
  .mx-wd-sm-850p {
18072
    max-width: 850%;
18073
  }
16848 stevensc 18074
 
16825 efrain 18075
  .mn-wd-sm-850p {
18076
    min-width: 850%;
18077
  }
16848 stevensc 18078
 
16825 efrain 18079
  .wd-sm-850-f {
18080
    width: 850px !important;
18081
  }
16848 stevensc 18082
 
16825 efrain 18083
  .wd-sm-850p-f {
18084
    width: 850% !important;
18085
  }
16848 stevensc 18086
 
16825 efrain 18087
  .mx-wd-sm-850p-f {
18088
    max-width: 850% !important;
18089
  }
16848 stevensc 18090
 
16825 efrain 18091
  .mn-wd-sm-850p-f {
18092
    min-width: 850% !important;
18093
  }
16848 stevensc 18094
 
16825 efrain 18095
  .wd-sm-900 {
18096
    width: 900px;
18097
  }
16848 stevensc 18098
 
16825 efrain 18099
  .wd-sm-900p {
18100
    width: 900%;
18101
  }
16848 stevensc 18102
 
16825 efrain 18103
  .mx-wd-sm-900p {
18104
    max-width: 900%;
18105
  }
16848 stevensc 18106
 
16825 efrain 18107
  .mn-wd-sm-900p {
18108
    min-width: 900%;
18109
  }
16848 stevensc 18110
 
16825 efrain 18111
  .wd-sm-900-f {
18112
    width: 900px !important;
18113
  }
16848 stevensc 18114
 
16825 efrain 18115
  .wd-sm-900p-f {
18116
    width: 900% !important;
18117
  }
16848 stevensc 18118
 
16825 efrain 18119
  .mx-wd-sm-900p-f {
18120
    max-width: 900% !important;
18121
  }
16848 stevensc 18122
 
16825 efrain 18123
  .mn-wd-sm-900p-f {
18124
    min-width: 900% !important;
18125
  }
16848 stevensc 18126
 
16825 efrain 18127
  .wd-sm-950 {
18128
    width: 950px;
18129
  }
16848 stevensc 18130
 
16825 efrain 18131
  .wd-sm-950p {
18132
    width: 950%;
18133
  }
16848 stevensc 18134
 
16825 efrain 18135
  .mx-wd-sm-950p {
18136
    max-width: 950%;
18137
  }
16848 stevensc 18138
 
16825 efrain 18139
  .mn-wd-sm-950p {
18140
    min-width: 950%;
18141
  }
16848 stevensc 18142
 
16825 efrain 18143
  .wd-sm-950-f {
18144
    width: 950px !important;
18145
  }
16848 stevensc 18146
 
16825 efrain 18147
  .wd-sm-950p-f {
18148
    width: 950% !important;
18149
  }
16848 stevensc 18150
 
16825 efrain 18151
  .mx-wd-sm-950p-f {
18152
    max-width: 950% !important;
18153
  }
16848 stevensc 18154
 
16825 efrain 18155
  .mn-wd-sm-950p-f {
18156
    min-width: 950% !important;
18157
  }
16848 stevensc 18158
 
16825 efrain 18159
  .wd-sm-1000 {
18160
    width: 1000px;
18161
  }
16848 stevensc 18162
 
16825 efrain 18163
  .wd-sm-1000p {
18164
    width: 1000%;
18165
  }
16848 stevensc 18166
 
16825 efrain 18167
  .mx-wd-sm-1000p {
18168
    max-width: 1000%;
18169
  }
16848 stevensc 18170
 
16825 efrain 18171
  .mn-wd-sm-1000p {
18172
    min-width: 1000%;
18173
  }
16848 stevensc 18174
 
16825 efrain 18175
  .wd-sm-1000-f {
18176
    width: 1000px !important;
18177
  }
16848 stevensc 18178
 
16825 efrain 18179
  .wd-sm-1000p-f {
18180
    width: 1000% !important;
18181
  }
16848 stevensc 18182
 
16825 efrain 18183
  .mx-wd-sm-1000p-f {
18184
    max-width: 1000% !important;
18185
  }
16848 stevensc 18186
 
16825 efrain 18187
  .mn-wd-sm-1000p-f {
18188
    min-width: 1000% !important;
18189
  }
16848 stevensc 18190
 
16825 efrain 18191
  .wd-sm-auto {
18192
    width: auto;
18193
  }
16848 stevensc 18194
 
16825 efrain 18195
  .wd-sm-auto-f {
18196
    width: auto !important;
18197
  }
18198
}
16848 stevensc 18199
 
16825 efrain 18200
@media (min-width: 768px) {
18201
  .wd-md-5 {
18202
    width: 5px;
18203
  }
16848 stevensc 18204
 
16825 efrain 18205
  .wd-md-5p {
18206
    width: 5%;
18207
  }
16848 stevensc 18208
 
16825 efrain 18209
  .mx-wd-md-5p {
18210
    max-width: 5%;
18211
  }
16848 stevensc 18212
 
16825 efrain 18213
  .mn-wd-md-5p {
18214
    min-width: 5%;
18215
  }
16848 stevensc 18216
 
16825 efrain 18217
  .wd-md-5-f {
18218
    width: 5px !important;
18219
  }
16848 stevensc 18220
 
16825 efrain 18221
  .wd-md-5p-f {
18222
    width: 5% !important;
18223
  }
16848 stevensc 18224
 
16825 efrain 18225
  .mx-wd-md-5p-f {
18226
    max-width: 5% !important;
18227
  }
16848 stevensc 18228
 
16825 efrain 18229
  .mn-wd-md-5p-f {
18230
    min-width: 5% !important;
18231
  }
16848 stevensc 18232
 
16825 efrain 18233
  .wd-md-10 {
18234
    width: 10px;
18235
  }
16848 stevensc 18236
 
16825 efrain 18237
  .wd-md-10p {
18238
    width: 10%;
18239
  }
16848 stevensc 18240
 
16825 efrain 18241
  .mx-wd-md-10p {
18242
    max-width: 10%;
18243
  }
16848 stevensc 18244
 
16825 efrain 18245
  .mn-wd-md-10p {
18246
    min-width: 10%;
18247
  }
16848 stevensc 18248
 
16825 efrain 18249
  .wd-md-10-f {
18250
    width: 10px !important;
18251
  }
16848 stevensc 18252
 
16825 efrain 18253
  .wd-md-10p-f {
18254
    width: 10% !important;
18255
  }
16848 stevensc 18256
 
16825 efrain 18257
  .mx-wd-md-10p-f {
18258
    max-width: 10% !important;
18259
  }
16848 stevensc 18260
 
16825 efrain 18261
  .mn-wd-md-10p-f {
18262
    min-width: 10% !important;
18263
  }
16848 stevensc 18264
 
16825 efrain 18265
  .wd-md-15 {
18266
    width: 15px;
18267
  }
16848 stevensc 18268
 
16825 efrain 18269
  .wd-md-15p {
18270
    width: 15%;
18271
  }
16848 stevensc 18272
 
16825 efrain 18273
  .mx-wd-md-15p {
18274
    max-width: 15%;
18275
  }
16848 stevensc 18276
 
16825 efrain 18277
  .mn-wd-md-15p {
18278
    min-width: 15%;
18279
  }
16848 stevensc 18280
 
16825 efrain 18281
  .wd-md-15-f {
18282
    width: 15px !important;
18283
  }
16848 stevensc 18284
 
16825 efrain 18285
  .wd-md-15p-f {
18286
    width: 15% !important;
18287
  }
16848 stevensc 18288
 
16825 efrain 18289
  .mx-wd-md-15p-f {
18290
    max-width: 15% !important;
18291
  }
16848 stevensc 18292
 
16825 efrain 18293
  .mn-wd-md-15p-f {
18294
    min-width: 15% !important;
18295
  }
16848 stevensc 18296
 
16825 efrain 18297
  .wd-md-20 {
18298
    width: 20px;
18299
  }
16848 stevensc 18300
 
16825 efrain 18301
  .wd-md-20p {
18302
    width: 20%;
18303
  }
16848 stevensc 18304
 
16825 efrain 18305
  .mx-wd-md-20p {
18306
    max-width: 20%;
18307
  }
16848 stevensc 18308
 
16825 efrain 18309
  .mn-wd-md-20p {
18310
    min-width: 20%;
18311
  }
16848 stevensc 18312
 
16825 efrain 18313
  .wd-md-20-f {
18314
    width: 20px !important;
18315
  }
16848 stevensc 18316
 
16825 efrain 18317
  .wd-md-20p-f {
18318
    width: 20% !important;
18319
  }
16848 stevensc 18320
 
16825 efrain 18321
  .mx-wd-md-20p-f {
18322
    max-width: 20% !important;
18323
  }
16848 stevensc 18324
 
16825 efrain 18325
  .mn-wd-md-20p-f {
18326
    min-width: 20% !important;
18327
  }
16848 stevensc 18328
 
16825 efrain 18329
  .wd-md-25 {
18330
    width: 25px;
18331
  }
16848 stevensc 18332
 
16825 efrain 18333
  .wd-md-25p {
18334
    width: 25%;
18335
  }
16848 stevensc 18336
 
16825 efrain 18337
  .mx-wd-md-25p {
18338
    max-width: 25%;
18339
  }
16848 stevensc 18340
 
16825 efrain 18341
  .mn-wd-md-25p {
18342
    min-width: 25%;
18343
  }
16848 stevensc 18344
 
16825 efrain 18345
  .wd-md-25-f {
18346
    width: 25px !important;
18347
  }
16848 stevensc 18348
 
16825 efrain 18349
  .wd-md-25p-f {
18350
    width: 25% !important;
18351
  }
16848 stevensc 18352
 
16825 efrain 18353
  .mx-wd-md-25p-f {
18354
    max-width: 25% !important;
18355
  }
16848 stevensc 18356
 
16825 efrain 18357
  .mn-wd-md-25p-f {
18358
    min-width: 25% !important;
18359
  }
16848 stevensc 18360
 
16825 efrain 18361
  .wd-md-30 {
18362
    width: 30px;
18363
  }
16848 stevensc 18364
 
16825 efrain 18365
  .wd-md-30p {
18366
    width: 30%;
18367
  }
16848 stevensc 18368
 
16825 efrain 18369
  .mx-wd-md-30p {
18370
    max-width: 30%;
18371
  }
16848 stevensc 18372
 
16825 efrain 18373
  .mn-wd-md-30p {
18374
    min-width: 30%;
18375
  }
16848 stevensc 18376
 
16825 efrain 18377
  .wd-md-30-f {
18378
    width: 30px !important;
18379
  }
16848 stevensc 18380
 
16825 efrain 18381
  .wd-md-30p-f {
18382
    width: 30% !important;
18383
  }
16848 stevensc 18384
 
16825 efrain 18385
  .mx-wd-md-30p-f {
18386
    max-width: 30% !important;
18387
  }
16848 stevensc 18388
 
16825 efrain 18389
  .mn-wd-md-30p-f {
18390
    min-width: 30% !important;
18391
  }
16848 stevensc 18392
 
16825 efrain 18393
  .wd-md-35 {
18394
    width: 35px;
18395
  }
16848 stevensc 18396
 
16825 efrain 18397
  .wd-md-35p {
18398
    width: 35%;
18399
  }
16848 stevensc 18400
 
16825 efrain 18401
  .mx-wd-md-35p {
18402
    max-width: 35%;
18403
  }
16848 stevensc 18404
 
16825 efrain 18405
  .mn-wd-md-35p {
18406
    min-width: 35%;
18407
  }
16848 stevensc 18408
 
16825 efrain 18409
  .wd-md-35-f {
18410
    width: 35px !important;
18411
  }
16848 stevensc 18412
 
16825 efrain 18413
  .wd-md-35p-f {
18414
    width: 35% !important;
18415
  }
16848 stevensc 18416
 
16825 efrain 18417
  .mx-wd-md-35p-f {
18418
    max-width: 35% !important;
18419
  }
16848 stevensc 18420
 
16825 efrain 18421
  .mn-wd-md-35p-f {
18422
    min-width: 35% !important;
18423
  }
16848 stevensc 18424
 
16825 efrain 18425
  .wd-md-40 {
18426
    width: 40px;
18427
  }
16848 stevensc 18428
 
16825 efrain 18429
  .wd-md-40p {
18430
    width: 40%;
18431
  }
16848 stevensc 18432
 
16825 efrain 18433
  .mx-wd-md-40p {
18434
    max-width: 40%;
18435
  }
16848 stevensc 18436
 
16825 efrain 18437
  .mn-wd-md-40p {
18438
    min-width: 40%;
18439
  }
16848 stevensc 18440
 
16825 efrain 18441
  .wd-md-40-f {
18442
    width: 40px !important;
18443
  }
16848 stevensc 18444
 
16825 efrain 18445
  .wd-md-40p-f {
18446
    width: 40% !important;
18447
  }
16848 stevensc 18448
 
16825 efrain 18449
  .mx-wd-md-40p-f {
18450
    max-width: 40% !important;
18451
  }
16848 stevensc 18452
 
16825 efrain 18453
  .mn-wd-md-40p-f {
18454
    min-width: 40% !important;
18455
  }
16848 stevensc 18456
 
16825 efrain 18457
  .wd-md-45 {
18458
    width: 45px;
18459
  }
16848 stevensc 18460
 
16825 efrain 18461
  .wd-md-45p {
18462
    width: 45%;
18463
  }
16848 stevensc 18464
 
16825 efrain 18465
  .mx-wd-md-45p {
18466
    max-width: 45%;
18467
  }
16848 stevensc 18468
 
16825 efrain 18469
  .mn-wd-md-45p {
18470
    min-width: 45%;
18471
  }
16848 stevensc 18472
 
16825 efrain 18473
  .wd-md-45-f {
18474
    width: 45px !important;
18475
  }
16848 stevensc 18476
 
16825 efrain 18477
  .wd-md-45p-f {
18478
    width: 45% !important;
18479
  }
16848 stevensc 18480
 
16825 efrain 18481
  .mx-wd-md-45p-f {
18482
    max-width: 45% !important;
18483
  }
16848 stevensc 18484
 
16825 efrain 18485
  .mn-wd-md-45p-f {
18486
    min-width: 45% !important;
18487
  }
16848 stevensc 18488
 
16825 efrain 18489
  .wd-md-50 {
18490
    width: 50px;
18491
  }
16848 stevensc 18492
 
16825 efrain 18493
  .wd-md-50p {
18494
    width: 50%;
18495
  }
16848 stevensc 18496
 
16825 efrain 18497
  .mx-wd-md-50p {
18498
    max-width: 50%;
18499
  }
16848 stevensc 18500
 
16825 efrain 18501
  .mn-wd-md-50p {
18502
    min-width: 50%;
18503
  }
16848 stevensc 18504
 
16825 efrain 18505
  .wd-md-50-f {
18506
    width: 50px !important;
18507
  }
16848 stevensc 18508
 
16825 efrain 18509
  .wd-md-50p-f {
18510
    width: 50% !important;
18511
  }
16848 stevensc 18512
 
16825 efrain 18513
  .mx-wd-md-50p-f {
18514
    max-width: 50% !important;
18515
  }
16848 stevensc 18516
 
16825 efrain 18517
  .mn-wd-md-50p-f {
18518
    min-width: 50% !important;
18519
  }
16848 stevensc 18520
 
16825 efrain 18521
  .wd-md-55 {
18522
    width: 55px;
18523
  }
16848 stevensc 18524
 
16825 efrain 18525
  .wd-md-55p {
18526
    width: 55%;
18527
  }
16848 stevensc 18528
 
16825 efrain 18529
  .mx-wd-md-55p {
18530
    max-width: 55%;
18531
  }
16848 stevensc 18532
 
16825 efrain 18533
  .mn-wd-md-55p {
18534
    min-width: 55%;
18535
  }
16848 stevensc 18536
 
16825 efrain 18537
  .wd-md-55-f {
18538
    width: 55px !important;
18539
  }
16848 stevensc 18540
 
16825 efrain 18541
  .wd-md-55p-f {
18542
    width: 55% !important;
18543
  }
16848 stevensc 18544
 
16825 efrain 18545
  .mx-wd-md-55p-f {
18546
    max-width: 55% !important;
18547
  }
16848 stevensc 18548
 
16825 efrain 18549
  .mn-wd-md-55p-f {
18550
    min-width: 55% !important;
18551
  }
16848 stevensc 18552
 
16825 efrain 18553
  .wd-md-60 {
18554
    width: 60px;
18555
  }
16848 stevensc 18556
 
16825 efrain 18557
  .wd-md-60p {
18558
    width: 60%;
18559
  }
16848 stevensc 18560
 
16825 efrain 18561
  .mx-wd-md-60p {
18562
    max-width: 60%;
18563
  }
16848 stevensc 18564
 
16825 efrain 18565
  .mn-wd-md-60p {
18566
    min-width: 60%;
18567
  }
16848 stevensc 18568
 
16825 efrain 18569
  .wd-md-60-f {
18570
    width: 60px !important;
18571
  }
16848 stevensc 18572
 
16825 efrain 18573
  .wd-md-60p-f {
18574
    width: 60% !important;
18575
  }
16848 stevensc 18576
 
16825 efrain 18577
  .mx-wd-md-60p-f {
18578
    max-width: 60% !important;
18579
  }
16848 stevensc 18580
 
16825 efrain 18581
  .mn-wd-md-60p-f {
18582
    min-width: 60% !important;
18583
  }
16848 stevensc 18584
 
16825 efrain 18585
  .wd-md-65 {
18586
    width: 65px;
18587
  }
16848 stevensc 18588
 
16825 efrain 18589
  .wd-md-65p {
18590
    width: 65%;
18591
  }
16848 stevensc 18592
 
16825 efrain 18593
  .mx-wd-md-65p {
18594
    max-width: 65%;
18595
  }
16848 stevensc 18596
 
16825 efrain 18597
  .mn-wd-md-65p {
18598
    min-width: 65%;
18599
  }
16848 stevensc 18600
 
16825 efrain 18601
  .wd-md-65-f {
18602
    width: 65px !important;
18603
  }
16848 stevensc 18604
 
16825 efrain 18605
  .wd-md-65p-f {
18606
    width: 65% !important;
18607
  }
16848 stevensc 18608
 
16825 efrain 18609
  .mx-wd-md-65p-f {
18610
    max-width: 65% !important;
18611
  }
16848 stevensc 18612
 
16825 efrain 18613
  .mn-wd-md-65p-f {
18614
    min-width: 65% !important;
18615
  }
16848 stevensc 18616
 
16825 efrain 18617
  .wd-md-70 {
18618
    width: 70px;
18619
  }
16848 stevensc 18620
 
16825 efrain 18621
  .wd-md-70p {
18622
    width: 70%;
18623
  }
16848 stevensc 18624
 
16825 efrain 18625
  .mx-wd-md-70p {
18626
    max-width: 70%;
18627
  }
16848 stevensc 18628
 
16825 efrain 18629
  .mn-wd-md-70p {
18630
    min-width: 70%;
18631
  }
16848 stevensc 18632
 
16825 efrain 18633
  .wd-md-70-f {
18634
    width: 70px !important;
18635
  }
16848 stevensc 18636
 
16825 efrain 18637
  .wd-md-70p-f {
18638
    width: 70% !important;
18639
  }
16848 stevensc 18640
 
16825 efrain 18641
  .mx-wd-md-70p-f {
18642
    max-width: 70% !important;
18643
  }
16848 stevensc 18644
 
16825 efrain 18645
  .mn-wd-md-70p-f {
18646
    min-width: 70% !important;
18647
  }
16848 stevensc 18648
 
16825 efrain 18649
  .wd-md-75 {
18650
    width: 75px;
18651
  }
16848 stevensc 18652
 
16825 efrain 18653
  .wd-md-75p {
18654
    width: 75%;
18655
  }
16848 stevensc 18656
 
16825 efrain 18657
  .mx-wd-md-75p {
18658
    max-width: 75%;
18659
  }
16848 stevensc 18660
 
16825 efrain 18661
  .mn-wd-md-75p {
18662
    min-width: 75%;
18663
  }
16848 stevensc 18664
 
16825 efrain 18665
  .wd-md-75-f {
18666
    width: 75px !important;
18667
  }
16848 stevensc 18668
 
16825 efrain 18669
  .wd-md-75p-f {
18670
    width: 75% !important;
18671
  }
16848 stevensc 18672
 
16825 efrain 18673
  .mx-wd-md-75p-f {
18674
    max-width: 75% !important;
18675
  }
16848 stevensc 18676
 
16825 efrain 18677
  .mn-wd-md-75p-f {
18678
    min-width: 75% !important;
18679
  }
16848 stevensc 18680
 
16825 efrain 18681
  .wd-md-80 {
18682
    width: 80px;
18683
  }
16848 stevensc 18684
 
16825 efrain 18685
  .wd-md-80p {
18686
    width: 80%;
18687
  }
16848 stevensc 18688
 
16825 efrain 18689
  .mx-wd-md-80p {
18690
    max-width: 80%;
18691
  }
16848 stevensc 18692
 
16825 efrain 18693
  .mn-wd-md-80p {
18694
    min-width: 80%;
18695
  }
16848 stevensc 18696
 
16825 efrain 18697
  .wd-md-80-f {
18698
    width: 80px !important;
18699
  }
16848 stevensc 18700
 
16825 efrain 18701
  .wd-md-80p-f {
18702
    width: 80% !important;
18703
  }
16848 stevensc 18704
 
16825 efrain 18705
  .mx-wd-md-80p-f {
18706
    max-width: 80% !important;
18707
  }
16848 stevensc 18708
 
16825 efrain 18709
  .mn-wd-md-80p-f {
18710
    min-width: 80% !important;
18711
  }
16848 stevensc 18712
 
16825 efrain 18713
  .wd-md-85 {
18714
    width: 85px;
18715
  }
16848 stevensc 18716
 
16825 efrain 18717
  .wd-md-85p {
18718
    width: 85%;
18719
  }
16848 stevensc 18720
 
16825 efrain 18721
  .mx-wd-md-85p {
18722
    max-width: 85%;
18723
  }
16848 stevensc 18724
 
16825 efrain 18725
  .mn-wd-md-85p {
18726
    min-width: 85%;
18727
  }
16848 stevensc 18728
 
16825 efrain 18729
  .wd-md-85-f {
18730
    width: 85px !important;
18731
  }
16848 stevensc 18732
 
16825 efrain 18733
  .wd-md-85p-f {
18734
    width: 85% !important;
18735
  }
16848 stevensc 18736
 
16825 efrain 18737
  .mx-wd-md-85p-f {
18738
    max-width: 85% !important;
18739
  }
16848 stevensc 18740
 
16825 efrain 18741
  .mn-wd-md-85p-f {
18742
    min-width: 85% !important;
18743
  }
16848 stevensc 18744
 
16825 efrain 18745
  .wd-md-90 {
18746
    width: 90px;
18747
  }
16848 stevensc 18748
 
16825 efrain 18749
  .wd-md-90p {
18750
    width: 90%;
18751
  }
16848 stevensc 18752
 
16825 efrain 18753
  .mx-wd-md-90p {
18754
    max-width: 90%;
18755
  }
16848 stevensc 18756
 
16825 efrain 18757
  .mn-wd-md-90p {
18758
    min-width: 90%;
18759
  }
16848 stevensc 18760
 
16825 efrain 18761
  .wd-md-90-f {
18762
    width: 90px !important;
18763
  }
16848 stevensc 18764
 
16825 efrain 18765
  .wd-md-90p-f {
18766
    width: 90% !important;
18767
  }
16848 stevensc 18768
 
16825 efrain 18769
  .mx-wd-md-90p-f {
18770
    max-width: 90% !important;
18771
  }
16848 stevensc 18772
 
16825 efrain 18773
  .mn-wd-md-90p-f {
18774
    min-width: 90% !important;
18775
  }
16848 stevensc 18776
 
16825 efrain 18777
  .wd-md-95 {
18778
    width: 95px;
18779
  }
16848 stevensc 18780
 
16825 efrain 18781
  .wd-md-95p {
18782
    width: 95%;
18783
  }
16848 stevensc 18784
 
16825 efrain 18785
  .mx-wd-md-95p {
18786
    max-width: 95%;
18787
  }
16848 stevensc 18788
 
16825 efrain 18789
  .mn-wd-md-95p {
18790
    min-width: 95%;
18791
  }
16848 stevensc 18792
 
16825 efrain 18793
  .wd-md-95-f {
18794
    width: 95px !important;
18795
  }
16848 stevensc 18796
 
16825 efrain 18797
  .wd-md-95p-f {
18798
    width: 95% !important;
18799
  }
16848 stevensc 18800
 
16825 efrain 18801
  .mx-wd-md-95p-f {
18802
    max-width: 95% !important;
18803
  }
16848 stevensc 18804
 
16825 efrain 18805
  .mn-wd-md-95p-f {
18806
    min-width: 95% !important;
18807
  }
16848 stevensc 18808
 
16825 efrain 18809
  .wd-md-100 {
18810
    width: 100px;
18811
  }
16848 stevensc 18812
 
16825 efrain 18813
  .wd-md-100p {
18814
    width: 100%;
18815
  }
16848 stevensc 18816
 
16825 efrain 18817
  .mx-wd-md-100p {
18818
    max-width: 100%;
18819
  }
16848 stevensc 18820
 
16825 efrain 18821
  .mn-wd-md-100p {
18822
    min-width: 100%;
18823
  }
16848 stevensc 18824
 
16825 efrain 18825
  .wd-md-100-f {
18826
    width: 100px !important;
18827
  }
16848 stevensc 18828
 
16825 efrain 18829
  .wd-md-100p-f {
18830
    width: 100% !important;
18831
  }
16848 stevensc 18832
 
16825 efrain 18833
  .mx-wd-md-100p-f {
18834
    max-width: 100% !important;
18835
  }
16848 stevensc 18836
 
16825 efrain 18837
  .mn-wd-md-100p-f {
18838
    min-width: 100% !important;
18839
  }
16848 stevensc 18840
 
16825 efrain 18841
  .wd-md-150 {
18842
    width: 150px;
18843
  }
16848 stevensc 18844
 
16825 efrain 18845
  .wd-md-150p {
18846
    width: 150%;
18847
  }
16848 stevensc 18848
 
16825 efrain 18849
  .mx-wd-md-150p {
18850
    max-width: 150%;
18851
  }
16848 stevensc 18852
 
16825 efrain 18853
  .mn-wd-md-150p {
18854
    min-width: 150%;
18855
  }
16848 stevensc 18856
 
16825 efrain 18857
  .wd-md-150-f {
18858
    width: 150px !important;
18859
  }
16848 stevensc 18860
 
16825 efrain 18861
  .wd-md-150p-f {
18862
    width: 150% !important;
18863
  }
16848 stevensc 18864
 
16825 efrain 18865
  .mx-wd-md-150p-f {
18866
    max-width: 150% !important;
18867
  }
16848 stevensc 18868
 
16825 efrain 18869
  .mn-wd-md-150p-f {
18870
    min-width: 150% !important;
18871
  }
16848 stevensc 18872
 
16825 efrain 18873
  .wd-md-200 {
18874
    width: 200px;
18875
  }
16848 stevensc 18876
 
16825 efrain 18877
  .wd-md-200p {
18878
    width: 200%;
18879
  }
16848 stevensc 18880
 
16825 efrain 18881
  .mx-wd-md-200p {
18882
    max-width: 200%;
18883
  }
16848 stevensc 18884
 
16825 efrain 18885
  .mn-wd-md-200p {
18886
    min-width: 200%;
18887
  }
16848 stevensc 18888
 
16825 efrain 18889
  .wd-md-200-f {
18890
    width: 200px !important;
18891
  }
16848 stevensc 18892
 
16825 efrain 18893
  .wd-md-200p-f {
18894
    width: 200% !important;
18895
  }
16848 stevensc 18896
 
16825 efrain 18897
  .mx-wd-md-200p-f {
18898
    max-width: 200% !important;
18899
  }
16848 stevensc 18900
 
16825 efrain 18901
  .mn-wd-md-200p-f {
18902
    min-width: 200% !important;
18903
  }
16848 stevensc 18904
 
16825 efrain 18905
  .wd-md-250 {
18906
    width: 250px;
18907
  }
16848 stevensc 18908
 
16825 efrain 18909
  .wd-md-250p {
18910
    width: 250%;
18911
  }
16848 stevensc 18912
 
16825 efrain 18913
  .mx-wd-md-250p {
18914
    max-width: 250%;
18915
  }
16848 stevensc 18916
 
16825 efrain 18917
  .mn-wd-md-250p {
18918
    min-width: 250%;
18919
  }
16848 stevensc 18920
 
16825 efrain 18921
  .wd-md-250-f {
18922
    width: 250px !important;
18923
  }
16848 stevensc 18924
 
16825 efrain 18925
  .wd-md-250p-f {
18926
    width: 250% !important;
18927
  }
16848 stevensc 18928
 
16825 efrain 18929
  .mx-wd-md-250p-f {
18930
    max-width: 250% !important;
18931
  }
16848 stevensc 18932
 
16825 efrain 18933
  .mn-wd-md-250p-f {
18934
    min-width: 250% !important;
18935
  }
16848 stevensc 18936
 
16825 efrain 18937
  .wd-md-300 {
18938
    width: 300px;
18939
  }
16848 stevensc 18940
 
16825 efrain 18941
  .wd-md-300p {
18942
    width: 300%;
18943
  }
16848 stevensc 18944
 
16825 efrain 18945
  .mx-wd-md-300p {
18946
    max-width: 300%;
18947
  }
16848 stevensc 18948
 
16825 efrain 18949
  .mn-wd-md-300p {
18950
    min-width: 300%;
18951
  }
16848 stevensc 18952
 
16825 efrain 18953
  .wd-md-300-f {
18954
    width: 300px !important;
18955
  }
16848 stevensc 18956
 
16825 efrain 18957
  .wd-md-300p-f {
18958
    width: 300% !important;
18959
  }
16848 stevensc 18960
 
16825 efrain 18961
  .mx-wd-md-300p-f {
18962
    max-width: 300% !important;
18963
  }
16848 stevensc 18964
 
16825 efrain 18965
  .mn-wd-md-300p-f {
18966
    min-width: 300% !important;
18967
  }
16848 stevensc 18968
 
16825 efrain 18969
  .wd-md-350 {
18970
    width: 350px;
18971
  }
16848 stevensc 18972
 
16825 efrain 18973
  .wd-md-350p {
18974
    width: 350%;
18975
  }
16848 stevensc 18976
 
16825 efrain 18977
  .mx-wd-md-350p {
18978
    max-width: 350%;
18979
  }
16848 stevensc 18980
 
16825 efrain 18981
  .mn-wd-md-350p {
18982
    min-width: 350%;
18983
  }
16848 stevensc 18984
 
16825 efrain 18985
  .wd-md-350-f {
18986
    width: 350px !important;
18987
  }
16848 stevensc 18988
 
16825 efrain 18989
  .wd-md-350p-f {
18990
    width: 350% !important;
18991
  }
16848 stevensc 18992
 
16825 efrain 18993
  .mx-wd-md-350p-f {
18994
    max-width: 350% !important;
18995
  }
16848 stevensc 18996
 
16825 efrain 18997
  .mn-wd-md-350p-f {
18998
    min-width: 350% !important;
18999
  }
16848 stevensc 19000
 
16825 efrain 19001
  .wd-md-400 {
19002
    width: 400px;
19003
  }
16848 stevensc 19004
 
16825 efrain 19005
  .wd-md-400p {
19006
    width: 400%;
19007
  }
16848 stevensc 19008
 
16825 efrain 19009
  .mx-wd-md-400p {
19010
    max-width: 400%;
19011
  }
16848 stevensc 19012
 
16825 efrain 19013
  .mn-wd-md-400p {
19014
    min-width: 400%;
19015
  }
16848 stevensc 19016
 
16825 efrain 19017
  .wd-md-400-f {
19018
    width: 400px !important;
19019
  }
16848 stevensc 19020
 
16825 efrain 19021
  .wd-md-400p-f {
19022
    width: 400% !important;
19023
  }
16848 stevensc 19024
 
16825 efrain 19025
  .mx-wd-md-400p-f {
19026
    max-width: 400% !important;
19027
  }
16848 stevensc 19028
 
16825 efrain 19029
  .mn-wd-md-400p-f {
19030
    min-width: 400% !important;
19031
  }
16848 stevensc 19032
 
16825 efrain 19033
  .wd-md-450 {
19034
    width: 450px;
19035
  }
16848 stevensc 19036
 
16825 efrain 19037
  .wd-md-450p {
19038
    width: 450%;
19039
  }
16848 stevensc 19040
 
16825 efrain 19041
  .mx-wd-md-450p {
19042
    max-width: 450%;
19043
  }
16848 stevensc 19044
 
16825 efrain 19045
  .mn-wd-md-450p {
19046
    min-width: 450%;
19047
  }
16848 stevensc 19048
 
16825 efrain 19049
  .wd-md-450-f {
19050
    width: 450px !important;
19051
  }
16848 stevensc 19052
 
16825 efrain 19053
  .wd-md-450p-f {
19054
    width: 450% !important;
19055
  }
16848 stevensc 19056
 
16825 efrain 19057
  .mx-wd-md-450p-f {
19058
    max-width: 450% !important;
19059
  }
16848 stevensc 19060
 
16825 efrain 19061
  .mn-wd-md-450p-f {
19062
    min-width: 450% !important;
19063
  }
16848 stevensc 19064
 
16825 efrain 19065
  .wd-md-500 {
19066
    width: 500px;
19067
  }
16848 stevensc 19068
 
16825 efrain 19069
  .wd-md-500p {
19070
    width: 500%;
19071
  }
16848 stevensc 19072
 
16825 efrain 19073
  .mx-wd-md-500p {
19074
    max-width: 500%;
19075
  }
16848 stevensc 19076
 
16825 efrain 19077
  .mn-wd-md-500p {
19078
    min-width: 500%;
19079
  }
16848 stevensc 19080
 
16825 efrain 19081
  .wd-md-500-f {
19082
    width: 500px !important;
19083
  }
16848 stevensc 19084
 
16825 efrain 19085
  .wd-md-500p-f {
19086
    width: 500% !important;
19087
  }
16848 stevensc 19088
 
16825 efrain 19089
  .mx-wd-md-500p-f {
19090
    max-width: 500% !important;
19091
  }
16848 stevensc 19092
 
16825 efrain 19093
  .mn-wd-md-500p-f {
19094
    min-width: 500% !important;
19095
  }
16848 stevensc 19096
 
16825 efrain 19097
  .wd-md-550 {
19098
    width: 550px;
19099
  }
16848 stevensc 19100
 
16825 efrain 19101
  .wd-md-550p {
19102
    width: 550%;
19103
  }
16848 stevensc 19104
 
16825 efrain 19105
  .mx-wd-md-550p {
19106
    max-width: 550%;
19107
  }
16848 stevensc 19108
 
16825 efrain 19109
  .mn-wd-md-550p {
19110
    min-width: 550%;
19111
  }
16848 stevensc 19112
 
16825 efrain 19113
  .wd-md-550-f {
19114
    width: 550px !important;
19115
  }
16848 stevensc 19116
 
16825 efrain 19117
  .wd-md-550p-f {
19118
    width: 550% !important;
19119
  }
16848 stevensc 19120
 
16825 efrain 19121
  .mx-wd-md-550p-f {
19122
    max-width: 550% !important;
19123
  }
16848 stevensc 19124
 
16825 efrain 19125
  .mn-wd-md-550p-f {
19126
    min-width: 550% !important;
19127
  }
16848 stevensc 19128
 
16825 efrain 19129
  .wd-md-600 {
19130
    width: 600px;
19131
  }
16848 stevensc 19132
 
16825 efrain 19133
  .wd-md-600p {
19134
    width: 600%;
19135
  }
16848 stevensc 19136
 
16825 efrain 19137
  .mx-wd-md-600p {
19138
    max-width: 600%;
19139
  }
16848 stevensc 19140
 
16825 efrain 19141
  .mn-wd-md-600p {
19142
    min-width: 600%;
19143
  }
16848 stevensc 19144
 
16825 efrain 19145
  .wd-md-600-f {
19146
    width: 600px !important;
19147
  }
16848 stevensc 19148
 
16825 efrain 19149
  .wd-md-600p-f {
19150
    width: 600% !important;
19151
  }
16848 stevensc 19152
 
16825 efrain 19153
  .mx-wd-md-600p-f {
19154
    max-width: 600% !important;
19155
  }
16848 stevensc 19156
 
16825 efrain 19157
  .mn-wd-md-600p-f {
19158
    min-width: 600% !important;
19159
  }
16848 stevensc 19160
 
16825 efrain 19161
  .wd-md-650 {
19162
    width: 650px;
19163
  }
16848 stevensc 19164
 
16825 efrain 19165
  .wd-md-650p {
19166
    width: 650%;
19167
  }
16848 stevensc 19168
 
16825 efrain 19169
  .mx-wd-md-650p {
19170
    max-width: 650%;
19171
  }
16848 stevensc 19172
 
16825 efrain 19173
  .mn-wd-md-650p {
19174
    min-width: 650%;
19175
  }
16848 stevensc 19176
 
16825 efrain 19177
  .wd-md-650-f {
19178
    width: 650px !important;
19179
  }
16848 stevensc 19180
 
16825 efrain 19181
  .wd-md-650p-f {
19182
    width: 650% !important;
19183
  }
16848 stevensc 19184
 
16825 efrain 19185
  .mx-wd-md-650p-f {
19186
    max-width: 650% !important;
19187
  }
16848 stevensc 19188
 
16825 efrain 19189
  .mn-wd-md-650p-f {
19190
    min-width: 650% !important;
19191
  }
16848 stevensc 19192
 
16825 efrain 19193
  .wd-md-700 {
19194
    width: 700px;
19195
  }
16848 stevensc 19196
 
16825 efrain 19197
  .wd-md-700p {
19198
    width: 700%;
19199
  }
16848 stevensc 19200
 
16825 efrain 19201
  .mx-wd-md-700p {
19202
    max-width: 700%;
19203
  }
16848 stevensc 19204
 
16825 efrain 19205
  .mn-wd-md-700p {
19206
    min-width: 700%;
19207
  }
16848 stevensc 19208
 
16825 efrain 19209
  .wd-md-700-f {
19210
    width: 700px !important;
19211
  }
16848 stevensc 19212
 
16825 efrain 19213
  .wd-md-700p-f {
19214
    width: 700% !important;
19215
  }
16848 stevensc 19216
 
16825 efrain 19217
  .mx-wd-md-700p-f {
19218
    max-width: 700% !important;
19219
  }
16848 stevensc 19220
 
16825 efrain 19221
  .mn-wd-md-700p-f {
19222
    min-width: 700% !important;
19223
  }
16848 stevensc 19224
 
16825 efrain 19225
  .wd-md-750 {
19226
    width: 750px;
19227
  }
16848 stevensc 19228
 
16825 efrain 19229
  .wd-md-750p {
19230
    width: 750%;
19231
  }
16848 stevensc 19232
 
16825 efrain 19233
  .mx-wd-md-750p {
19234
    max-width: 750%;
19235
  }
16848 stevensc 19236
 
16825 efrain 19237
  .mn-wd-md-750p {
19238
    min-width: 750%;
19239
  }
16848 stevensc 19240
 
16825 efrain 19241
  .wd-md-750-f {
19242
    width: 750px !important;
19243
  }
16848 stevensc 19244
 
16825 efrain 19245
  .wd-md-750p-f {
19246
    width: 750% !important;
19247
  }
16848 stevensc 19248
 
16825 efrain 19249
  .mx-wd-md-750p-f {
19250
    max-width: 750% !important;
19251
  }
16848 stevensc 19252
 
16825 efrain 19253
  .mn-wd-md-750p-f {
19254
    min-width: 750% !important;
19255
  }
16848 stevensc 19256
 
16825 efrain 19257
  .wd-md-800 {
19258
    width: 800px;
19259
  }
16848 stevensc 19260
 
16825 efrain 19261
  .wd-md-800p {
19262
    width: 800%;
19263
  }
16848 stevensc 19264
 
16825 efrain 19265
  .mx-wd-md-800p {
19266
    max-width: 800%;
19267
  }
16848 stevensc 19268
 
16825 efrain 19269
  .mn-wd-md-800p {
19270
    min-width: 800%;
19271
  }
16848 stevensc 19272
 
16825 efrain 19273
  .wd-md-800-f {
19274
    width: 800px !important;
19275
  }
16848 stevensc 19276
 
16825 efrain 19277
  .wd-md-800p-f {
19278
    width: 800% !important;
19279
  }
16848 stevensc 19280
 
16825 efrain 19281
  .mx-wd-md-800p-f {
19282
    max-width: 800% !important;
19283
  }
16848 stevensc 19284
 
16825 efrain 19285
  .mn-wd-md-800p-f {
19286
    min-width: 800% !important;
19287
  }
16848 stevensc 19288
 
16825 efrain 19289
  .wd-md-850 {
19290
    width: 850px;
19291
  }
16848 stevensc 19292
 
16825 efrain 19293
  .wd-md-850p {
19294
    width: 850%;
19295
  }
16848 stevensc 19296
 
16825 efrain 19297
  .mx-wd-md-850p {
19298
    max-width: 850%;
19299
  }
16848 stevensc 19300
 
16825 efrain 19301
  .mn-wd-md-850p {
19302
    min-width: 850%;
19303
  }
16848 stevensc 19304
 
16825 efrain 19305
  .wd-md-850-f {
19306
    width: 850px !important;
19307
  }
16848 stevensc 19308
 
16825 efrain 19309
  .wd-md-850p-f {
19310
    width: 850% !important;
19311
  }
16848 stevensc 19312
 
16825 efrain 19313
  .mx-wd-md-850p-f {
19314
    max-width: 850% !important;
19315
  }
16848 stevensc 19316
 
16825 efrain 19317
  .mn-wd-md-850p-f {
19318
    min-width: 850% !important;
19319
  }
16848 stevensc 19320
 
16825 efrain 19321
  .wd-md-900 {
19322
    width: 900px;
19323
  }
16848 stevensc 19324
 
16825 efrain 19325
  .wd-md-900p {
19326
    width: 900%;
19327
  }
16848 stevensc 19328
 
16825 efrain 19329
  .mx-wd-md-900p {
19330
    max-width: 900%;
19331
  }
16848 stevensc 19332
 
16825 efrain 19333
  .mn-wd-md-900p {
19334
    min-width: 900%;
19335
  }
16848 stevensc 19336
 
16825 efrain 19337
  .wd-md-900-f {
19338
    width: 900px !important;
19339
  }
16848 stevensc 19340
 
16825 efrain 19341
  .wd-md-900p-f {
19342
    width: 900% !important;
19343
  }
16848 stevensc 19344
 
16825 efrain 19345
  .mx-wd-md-900p-f {
19346
    max-width: 900% !important;
19347
  }
16848 stevensc 19348
 
16825 efrain 19349
  .mn-wd-md-900p-f {
19350
    min-width: 900% !important;
19351
  }
16848 stevensc 19352
 
16825 efrain 19353
  .wd-md-950 {
19354
    width: 950px;
19355
  }
16848 stevensc 19356
 
16825 efrain 19357
  .wd-md-950p {
19358
    width: 950%;
19359
  }
16848 stevensc 19360
 
16825 efrain 19361
  .mx-wd-md-950p {
19362
    max-width: 950%;
19363
  }
16848 stevensc 19364
 
16825 efrain 19365
  .mn-wd-md-950p {
19366
    min-width: 950%;
19367
  }
16848 stevensc 19368
 
16825 efrain 19369
  .wd-md-950-f {
19370
    width: 950px !important;
19371
  }
16848 stevensc 19372
 
16825 efrain 19373
  .wd-md-950p-f {
19374
    width: 950% !important;
19375
  }
16848 stevensc 19376
 
16825 efrain 19377
  .mx-wd-md-950p-f {
19378
    max-width: 950% !important;
19379
  }
16848 stevensc 19380
 
16825 efrain 19381
  .mn-wd-md-950p-f {
19382
    min-width: 950% !important;
19383
  }
16848 stevensc 19384
 
16825 efrain 19385
  .wd-md-1000 {
19386
    width: 1000px;
19387
  }
16848 stevensc 19388
 
16825 efrain 19389
  .wd-md-1000p {
19390
    width: 1000%;
19391
  }
16848 stevensc 19392
 
16825 efrain 19393
  .mx-wd-md-1000p {
19394
    max-width: 1000%;
19395
  }
16848 stevensc 19396
 
16825 efrain 19397
  .mn-wd-md-1000p {
19398
    min-width: 1000%;
19399
  }
16848 stevensc 19400
 
16825 efrain 19401
  .wd-md-1000-f {
19402
    width: 1000px !important;
19403
  }
16848 stevensc 19404
 
16825 efrain 19405
  .wd-md-1000p-f {
19406
    width: 1000% !important;
19407
  }
16848 stevensc 19408
 
16825 efrain 19409
  .mx-wd-md-1000p-f {
19410
    max-width: 1000% !important;
19411
  }
16848 stevensc 19412
 
16825 efrain 19413
  .mn-wd-md-1000p-f {
19414
    min-width: 1000% !important;
19415
  }
16848 stevensc 19416
 
16825 efrain 19417
  .wd-md-auto {
19418
    width: auto;
19419
  }
16848 stevensc 19420
 
16825 efrain 19421
  .wd-md-auto-f {
19422
    width: auto !important;
19423
  }
16848 stevensc 19424
 
16825 efrain 19425
  .wd-md-120 {
19426
    width: 120px;
19427
  }
19428
}
16848 stevensc 19429
 
16825 efrain 19430
@media (min-width: 992px) {
19431
  .wd-lg-5 {
19432
    width: 5px;
19433
  }
16848 stevensc 19434
 
16825 efrain 19435
  .wd-lg-5p {
19436
    width: 5%;
19437
  }
16848 stevensc 19438
 
16825 efrain 19439
  .mx-wd-lg-5p {
19440
    max-width: 5%;
19441
  }
16848 stevensc 19442
 
16825 efrain 19443
  .mn-wd-lg-5p {
19444
    min-width: 5%;
19445
  }
16848 stevensc 19446
 
16825 efrain 19447
  .wd-lg-5-f {
19448
    width: 5px !important;
19449
  }
16848 stevensc 19450
 
16825 efrain 19451
  .wd-lg-5p-f {
19452
    width: 5% !important;
19453
  }
16848 stevensc 19454
 
16825 efrain 19455
  .mx-wd-lg-5p-f {
19456
    max-width: 5% !important;
19457
  }
16848 stevensc 19458
 
16825 efrain 19459
  .mn-wd-lg-5p-f {
19460
    min-width: 5% !important;
19461
  }
16848 stevensc 19462
 
16825 efrain 19463
  .wd-lg-10 {
19464
    width: 10px;
19465
  }
16848 stevensc 19466
 
16825 efrain 19467
  .wd-lg-10p {
19468
    width: 10%;
19469
  }
16848 stevensc 19470
 
16825 efrain 19471
  .mx-wd-lg-10p {
19472
    max-width: 10%;
19473
  }
16848 stevensc 19474
 
16825 efrain 19475
  .mn-wd-lg-10p {
19476
    min-width: 10%;
19477
  }
16848 stevensc 19478
 
16825 efrain 19479
  .wd-lg-10-f {
19480
    width: 10px !important;
19481
  }
16848 stevensc 19482
 
16825 efrain 19483
  .wd-lg-10p-f {
19484
    width: 10% !important;
19485
  }
16848 stevensc 19486
 
16825 efrain 19487
  .mx-wd-lg-10p-f {
19488
    max-width: 10% !important;
19489
  }
16848 stevensc 19490
 
16825 efrain 19491
  .mn-wd-lg-10p-f {
19492
    min-width: 10% !important;
19493
  }
16848 stevensc 19494
 
16825 efrain 19495
  .wd-lg-15 {
19496
    width: 15px;
19497
  }
16848 stevensc 19498
 
16825 efrain 19499
  .wd-lg-15p {
19500
    width: 15%;
19501
  }
16848 stevensc 19502
 
16825 efrain 19503
  .mx-wd-lg-15p {
19504
    max-width: 15%;
19505
  }
16848 stevensc 19506
 
16825 efrain 19507
  .mn-wd-lg-15p {
19508
    min-width: 15%;
19509
  }
16848 stevensc 19510
 
16825 efrain 19511
  .wd-lg-15-f {
19512
    width: 15px !important;
19513
  }
16848 stevensc 19514
 
16825 efrain 19515
  .wd-lg-15p-f {
19516
    width: 15% !important;
19517
  }
16848 stevensc 19518
 
16825 efrain 19519
  .mx-wd-lg-15p-f {
19520
    max-width: 15% !important;
19521
  }
16848 stevensc 19522
 
16825 efrain 19523
  .mn-wd-lg-15p-f {
19524
    min-width: 15% !important;
19525
  }
16848 stevensc 19526
 
16825 efrain 19527
  .wd-lg-20 {
19528
    width: 20px;
19529
  }
16848 stevensc 19530
 
16825 efrain 19531
  .wd-lg-20p {
19532
    width: 20%;
19533
  }
16848 stevensc 19534
 
16825 efrain 19535
  .mx-wd-lg-20p {
19536
    max-width: 20%;
19537
  }
16848 stevensc 19538
 
16825 efrain 19539
  .mn-wd-lg-20p {
19540
    min-width: 20%;
19541
  }
16848 stevensc 19542
 
16825 efrain 19543
  .wd-lg-20-f {
19544
    width: 20px !important;
19545
  }
16848 stevensc 19546
 
16825 efrain 19547
  .wd-lg-20p-f {
19548
    width: 20% !important;
19549
  }
16848 stevensc 19550
 
16825 efrain 19551
  .mx-wd-lg-20p-f {
19552
    max-width: 20% !important;
19553
  }
16848 stevensc 19554
 
16825 efrain 19555
  .mn-wd-lg-20p-f {
19556
    min-width: 20% !important;
19557
  }
16848 stevensc 19558
 
16825 efrain 19559
  .wd-lg-25 {
19560
    width: 25px;
19561
  }
16848 stevensc 19562
 
16825 efrain 19563
  .wd-lg-25p {
19564
    width: 25%;
19565
  }
16848 stevensc 19566
 
16825 efrain 19567
  .mx-wd-lg-25p {
19568
    max-width: 25%;
19569
  }
16848 stevensc 19570
 
16825 efrain 19571
  .mn-wd-lg-25p {
19572
    min-width: 25%;
19573
  }
16848 stevensc 19574
 
16825 efrain 19575
  .wd-lg-25-f {
19576
    width: 25px !important;
19577
  }
16848 stevensc 19578
 
16825 efrain 19579
  .wd-lg-25p-f {
19580
    width: 25% !important;
19581
  }
16848 stevensc 19582
 
16825 efrain 19583
  .mx-wd-lg-25p-f {
19584
    max-width: 25% !important;
19585
  }
16848 stevensc 19586
 
16825 efrain 19587
  .mn-wd-lg-25p-f {
19588
    min-width: 25% !important;
19589
  }
16848 stevensc 19590
 
16825 efrain 19591
  .wd-lg-30 {
19592
    width: 30px;
19593
  }
16848 stevensc 19594
 
16825 efrain 19595
  .wd-lg-30p {
19596
    width: 30%;
19597
  }
16848 stevensc 19598
 
16825 efrain 19599
  .mx-wd-lg-30p {
19600
    max-width: 30%;
19601
  }
16848 stevensc 19602
 
16825 efrain 19603
  .mn-wd-lg-30p {
19604
    min-width: 30%;
19605
  }
16848 stevensc 19606
 
16825 efrain 19607
  .wd-lg-30-f {
19608
    width: 30px !important;
19609
  }
16848 stevensc 19610
 
16825 efrain 19611
  .wd-lg-30p-f {
19612
    width: 30% !important;
19613
  }
16848 stevensc 19614
 
16825 efrain 19615
  .mx-wd-lg-30p-f {
19616
    max-width: 30% !important;
19617
  }
16848 stevensc 19618
 
16825 efrain 19619
  .mn-wd-lg-30p-f {
19620
    min-width: 30% !important;
19621
  }
16848 stevensc 19622
 
16825 efrain 19623
  .wd-lg-35 {
19624
    width: 35px;
19625
  }
16848 stevensc 19626
 
16825 efrain 19627
  .wd-lg-35p {
19628
    width: 35%;
19629
  }
16848 stevensc 19630
 
16825 efrain 19631
  .mx-wd-lg-35p {
19632
    max-width: 35%;
19633
  }
16848 stevensc 19634
 
16825 efrain 19635
  .mn-wd-lg-35p {
19636
    min-width: 35%;
19637
  }
16848 stevensc 19638
 
16825 efrain 19639
  .wd-lg-35-f {
19640
    width: 35px !important;
19641
  }
16848 stevensc 19642
 
16825 efrain 19643
  .wd-lg-35p-f {
19644
    width: 35% !important;
19645
  }
16848 stevensc 19646
 
16825 efrain 19647
  .mx-wd-lg-35p-f {
19648
    max-width: 35% !important;
19649
  }
16848 stevensc 19650
 
16825 efrain 19651
  .mn-wd-lg-35p-f {
19652
    min-width: 35% !important;
19653
  }
16848 stevensc 19654
 
16825 efrain 19655
  .wd-lg-40 {
19656
    width: 40px;
19657
  }
16848 stevensc 19658
 
16825 efrain 19659
  .wd-lg-40p {
19660
    width: 40%;
19661
  }
16848 stevensc 19662
 
16825 efrain 19663
  .mx-wd-lg-40p {
19664
    max-width: 40%;
19665
  }
16848 stevensc 19666
 
16825 efrain 19667
  .mn-wd-lg-40p {
19668
    min-width: 40%;
19669
  }
16848 stevensc 19670
 
16825 efrain 19671
  .wd-lg-40-f {
19672
    width: 40px !important;
19673
  }
16848 stevensc 19674
 
16825 efrain 19675
  .wd-lg-40p-f {
19676
    width: 40% !important;
19677
  }
16848 stevensc 19678
 
16825 efrain 19679
  .mx-wd-lg-40p-f {
19680
    max-width: 40% !important;
19681
  }
16848 stevensc 19682
 
16825 efrain 19683
  .mn-wd-lg-40p-f {
19684
    min-width: 40% !important;
19685
  }
16848 stevensc 19686
 
16825 efrain 19687
  .wd-lg-45 {
19688
    width: 45px;
19689
  }
16848 stevensc 19690
 
16825 efrain 19691
  .wd-lg-45p {
19692
    width: 45%;
19693
  }
16848 stevensc 19694
 
16825 efrain 19695
  .mx-wd-lg-45p {
19696
    max-width: 45%;
19697
  }
16848 stevensc 19698
 
16825 efrain 19699
  .mn-wd-lg-45p {
19700
    min-width: 45%;
19701
  }
16848 stevensc 19702
 
16825 efrain 19703
  .wd-lg-45-f {
19704
    width: 45px !important;
19705
  }
16848 stevensc 19706
 
16825 efrain 19707
  .wd-lg-45p-f {
19708
    width: 45% !important;
19709
  }
16848 stevensc 19710
 
16825 efrain 19711
  .mx-wd-lg-45p-f {
19712
    max-width: 45% !important;
19713
  }
16848 stevensc 19714
 
16825 efrain 19715
  .mn-wd-lg-45p-f {
19716
    min-width: 45% !important;
19717
  }
16848 stevensc 19718
 
16825 efrain 19719
  .wd-lg-50 {
19720
    width: 50px;
19721
  }
16848 stevensc 19722
 
16825 efrain 19723
  .wd-lg-50p {
19724
    width: 50%;
19725
  }
16848 stevensc 19726
 
16825 efrain 19727
  .mx-wd-lg-50p {
19728
    max-width: 50%;
19729
  }
16848 stevensc 19730
 
16825 efrain 19731
  .mn-wd-lg-50p {
19732
    min-width: 50%;
19733
  }
16848 stevensc 19734
 
16825 efrain 19735
  .wd-lg-50-f {
19736
    width: 50px !important;
19737
  }
16848 stevensc 19738
 
16825 efrain 19739
  .wd-lg-50p-f {
19740
    width: 50% !important;
19741
  }
16848 stevensc 19742
 
16825 efrain 19743
  .mx-wd-lg-50p-f {
19744
    max-width: 50% !important;
19745
  }
16848 stevensc 19746
 
16825 efrain 19747
  .mn-wd-lg-50p-f {
19748
    min-width: 50% !important;
19749
  }
16848 stevensc 19750
 
16825 efrain 19751
  .wd-lg-55 {
19752
    width: 55px;
19753
  }
16848 stevensc 19754
 
16825 efrain 19755
  .wd-lg-55p {
19756
    width: 55%;
19757
  }
16848 stevensc 19758
 
16825 efrain 19759
  .mx-wd-lg-55p {
19760
    max-width: 55%;
19761
  }
16848 stevensc 19762
 
16825 efrain 19763
  .mn-wd-lg-55p {
19764
    min-width: 55%;
19765
  }
16848 stevensc 19766
 
16825 efrain 19767
  .wd-lg-55-f {
19768
    width: 55px !important;
19769
  }
16848 stevensc 19770
 
16825 efrain 19771
  .wd-lg-55p-f {
19772
    width: 55% !important;
19773
  }
16848 stevensc 19774
 
16825 efrain 19775
  .mx-wd-lg-55p-f {
19776
    max-width: 55% !important;
19777
  }
16848 stevensc 19778
 
16825 efrain 19779
  .mn-wd-lg-55p-f {
19780
    min-width: 55% !important;
19781
  }
16848 stevensc 19782
 
16825 efrain 19783
  .wd-lg-60 {
19784
    width: 60px;
19785
  }
16848 stevensc 19786
 
16825 efrain 19787
  .wd-lg-60p {
19788
    width: 60%;
19789
  }
16848 stevensc 19790
 
16825 efrain 19791
  .mx-wd-lg-60p {
19792
    max-width: 60%;
19793
  }
16848 stevensc 19794
 
16825 efrain 19795
  .mn-wd-lg-60p {
19796
    min-width: 60%;
19797
  }
16848 stevensc 19798
 
16825 efrain 19799
  .wd-lg-60-f {
19800
    width: 60px !important;
19801
  }
16848 stevensc 19802
 
16825 efrain 19803
  .wd-lg-60p-f {
19804
    width: 60% !important;
19805
  }
16848 stevensc 19806
 
16825 efrain 19807
  .mx-wd-lg-60p-f {
19808
    max-width: 60% !important;
19809
  }
16848 stevensc 19810
 
16825 efrain 19811
  .mn-wd-lg-60p-f {
19812
    min-width: 60% !important;
19813
  }
16848 stevensc 19814
 
16825 efrain 19815
  .wd-lg-65 {
19816
    width: 65px;
19817
  }
16848 stevensc 19818
 
16825 efrain 19819
  .wd-lg-65p {
19820
    width: 65%;
19821
  }
16848 stevensc 19822
 
16825 efrain 19823
  .mx-wd-lg-65p {
19824
    max-width: 65%;
19825
  }
16848 stevensc 19826
 
16825 efrain 19827
  .mn-wd-lg-65p {
19828
    min-width: 65%;
19829
  }
16848 stevensc 19830
 
16825 efrain 19831
  .wd-lg-65-f {
19832
    width: 65px !important;
19833
  }
16848 stevensc 19834
 
16825 efrain 19835
  .wd-lg-65p-f {
19836
    width: 65% !important;
19837
  }
16848 stevensc 19838
 
16825 efrain 19839
  .mx-wd-lg-65p-f {
19840
    max-width: 65% !important;
19841
  }
16848 stevensc 19842
 
16825 efrain 19843
  .mn-wd-lg-65p-f {
19844
    min-width: 65% !important;
19845
  }
16848 stevensc 19846
 
16825 efrain 19847
  .wd-lg-70 {
19848
    width: 70px;
19849
  }
16848 stevensc 19850
 
16825 efrain 19851
  .wd-lg-70p {
19852
    width: 70%;
19853
  }
16848 stevensc 19854
 
16825 efrain 19855
  .mx-wd-lg-70p {
19856
    max-width: 70%;
19857
  }
16848 stevensc 19858
 
16825 efrain 19859
  .mn-wd-lg-70p {
19860
    min-width: 70%;
19861
  }
16848 stevensc 19862
 
16825 efrain 19863
  .wd-lg-70-f {
19864
    width: 70px !important;
19865
  }
16848 stevensc 19866
 
16825 efrain 19867
  .wd-lg-70p-f {
19868
    width: 70% !important;
19869
  }
16848 stevensc 19870
 
16825 efrain 19871
  .mx-wd-lg-70p-f {
19872
    max-width: 70% !important;
19873
  }
16848 stevensc 19874
 
16825 efrain 19875
  .mn-wd-lg-70p-f {
19876
    min-width: 70% !important;
19877
  }
16848 stevensc 19878
 
16825 efrain 19879
  .wd-lg-75 {
19880
    width: 75px;
19881
  }
16848 stevensc 19882
 
16825 efrain 19883
  .wd-lg-75p {
19884
    width: 75%;
19885
  }
16848 stevensc 19886
 
16825 efrain 19887
  .mx-wd-lg-75p {
19888
    max-width: 75%;
19889
  }
16848 stevensc 19890
 
16825 efrain 19891
  .mn-wd-lg-75p {
19892
    min-width: 75%;
19893
  }
16848 stevensc 19894
 
16825 efrain 19895
  .wd-lg-75-f {
19896
    width: 75px !important;
19897
  }
16848 stevensc 19898
 
16825 efrain 19899
  .wd-lg-75p-f {
19900
    width: 75% !important;
19901
  }
16848 stevensc 19902
 
16825 efrain 19903
  .mx-wd-lg-75p-f {
19904
    max-width: 75% !important;
19905
  }
16848 stevensc 19906
 
16825 efrain 19907
  .mn-wd-lg-75p-f {
19908
    min-width: 75% !important;
19909
  }
16848 stevensc 19910
 
16825 efrain 19911
  .wd-lg-80 {
19912
    width: 80px;
19913
  }
16848 stevensc 19914
 
16825 efrain 19915
  .wd-lg-80p {
19916
    width: 80%;
19917
  }
16848 stevensc 19918
 
16825 efrain 19919
  .mx-wd-lg-80p {
19920
    max-width: 80%;
19921
  }
16848 stevensc 19922
 
16825 efrain 19923
  .mn-wd-lg-80p {
19924
    min-width: 80%;
19925
  }
16848 stevensc 19926
 
16825 efrain 19927
  .wd-lg-80-f {
19928
    width: 80px !important;
19929
  }
16848 stevensc 19930
 
16825 efrain 19931
  .wd-lg-80p-f {
19932
    width: 80% !important;
19933
  }
16848 stevensc 19934
 
16825 efrain 19935
  .mx-wd-lg-80p-f {
19936
    max-width: 80% !important;
19937
  }
16848 stevensc 19938
 
16825 efrain 19939
  .mn-wd-lg-80p-f {
19940
    min-width: 80% !important;
19941
  }
16848 stevensc 19942
 
16825 efrain 19943
  .wd-lg-85 {
19944
    width: 85px;
19945
  }
16848 stevensc 19946
 
16825 efrain 19947
  .wd-lg-85p {
19948
    width: 85%;
19949
  }
16848 stevensc 19950
 
16825 efrain 19951
  .mx-wd-lg-85p {
19952
    max-width: 85%;
19953
  }
16848 stevensc 19954
 
16825 efrain 19955
  .mn-wd-lg-85p {
19956
    min-width: 85%;
19957
  }
16848 stevensc 19958
 
16825 efrain 19959
  .wd-lg-85-f {
19960
    width: 85px !important;
19961
  }
16848 stevensc 19962
 
16825 efrain 19963
  .wd-lg-85p-f {
19964
    width: 85% !important;
19965
  }
16848 stevensc 19966
 
16825 efrain 19967
  .mx-wd-lg-85p-f {
19968
    max-width: 85% !important;
19969
  }
16848 stevensc 19970
 
16825 efrain 19971
  .mn-wd-lg-85p-f {
19972
    min-width: 85% !important;
19973
  }
16848 stevensc 19974
 
16825 efrain 19975
  .wd-lg-90 {
19976
    width: 90px;
19977
  }
16848 stevensc 19978
 
16825 efrain 19979
  .wd-lg-90p {
19980
    width: 90%;
19981
  }
16848 stevensc 19982
 
16825 efrain 19983
  .mx-wd-lg-90p {
19984
    max-width: 90%;
19985
  }
16848 stevensc 19986
 
16825 efrain 19987
  .mn-wd-lg-90p {
19988
    min-width: 90%;
19989
  }
16848 stevensc 19990
 
16825 efrain 19991
  .wd-lg-90-f {
19992
    width: 90px !important;
19993
  }
16848 stevensc 19994
 
16825 efrain 19995
  .wd-lg-90p-f {
19996
    width: 90% !important;
19997
  }
16848 stevensc 19998
 
16825 efrain 19999
  .mx-wd-lg-90p-f {
20000
    max-width: 90% !important;
20001
  }
16848 stevensc 20002
 
16825 efrain 20003
  .mn-wd-lg-90p-f {
20004
    min-width: 90% !important;
20005
  }
16848 stevensc 20006
 
16825 efrain 20007
  .wd-lg-95 {
20008
    width: 95px;
20009
  }
16848 stevensc 20010
 
16825 efrain 20011
  .wd-lg-95p {
20012
    width: 95%;
20013
  }
16848 stevensc 20014
 
16825 efrain 20015
  .mx-wd-lg-95p {
20016
    max-width: 95%;
20017
  }
16848 stevensc 20018
 
16825 efrain 20019
  .mn-wd-lg-95p {
20020
    min-width: 95%;
20021
  }
16848 stevensc 20022
 
16825 efrain 20023
  .wd-lg-95-f {
20024
    width: 95px !important;
20025
  }
16848 stevensc 20026
 
16825 efrain 20027
  .wd-lg-95p-f {
20028
    width: 95% !important;
20029
  }
16848 stevensc 20030
 
16825 efrain 20031
  .mx-wd-lg-95p-f {
20032
    max-width: 95% !important;
20033
  }
16848 stevensc 20034
 
16825 efrain 20035
  .mn-wd-lg-95p-f {
20036
    min-width: 95% !important;
20037
  }
16848 stevensc 20038
 
16825 efrain 20039
  .wd-lg-100 {
20040
    width: 100px;
20041
  }
16848 stevensc 20042
 
16825 efrain 20043
  .wd-lg-100p {
20044
    width: 100%;
20045
  }
16848 stevensc 20046
 
16825 efrain 20047
  .mx-wd-lg-100p {
20048
    max-width: 100%;
20049
  }
16848 stevensc 20050
 
16825 efrain 20051
  .mn-wd-lg-100p {
20052
    min-width: 100%;
20053
  }
16848 stevensc 20054
 
16825 efrain 20055
  .wd-lg-100-f {
20056
    width: 100px !important;
20057
  }
16848 stevensc 20058
 
16825 efrain 20059
  .wd-lg-100p-f {
20060
    width: 100% !important;
20061
  }
16848 stevensc 20062
 
16825 efrain 20063
  .mx-wd-lg-100p-f {
20064
    max-width: 100% !important;
20065
  }
16848 stevensc 20066
 
16825 efrain 20067
  .mn-wd-lg-100p-f {
20068
    min-width: 100% !important;
20069
  }
16848 stevensc 20070
 
16825 efrain 20071
  .wd-lg-150 {
20072
    width: 150px;
20073
  }
16848 stevensc 20074
 
16825 efrain 20075
  .wd-lg-150p {
20076
    width: 150%;
20077
  }
16848 stevensc 20078
 
16825 efrain 20079
  .mx-wd-lg-150p {
20080
    max-width: 150%;
20081
  }
16848 stevensc 20082
 
16825 efrain 20083
  .mn-wd-lg-150p {
20084
    min-width: 150%;
20085
  }
16848 stevensc 20086
 
16825 efrain 20087
  .wd-lg-150-f {
20088
    width: 150px !important;
20089
  }
16848 stevensc 20090
 
16825 efrain 20091
  .wd-lg-150p-f {
20092
    width: 150% !important;
20093
  }
16848 stevensc 20094
 
16825 efrain 20095
  .mx-wd-lg-150p-f {
20096
    max-width: 150% !important;
20097
  }
16848 stevensc 20098
 
16825 efrain 20099
  .mn-wd-lg-150p-f {
20100
    min-width: 150% !important;
20101
  }
16848 stevensc 20102
 
16825 efrain 20103
  .wd-lg-200 {
20104
    width: 200px;
20105
  }
16848 stevensc 20106
 
16825 efrain 20107
  .wd-lg-200p {
20108
    width: 200%;
20109
  }
16848 stevensc 20110
 
16825 efrain 20111
  .mx-wd-lg-200p {
20112
    max-width: 200%;
20113
  }
16848 stevensc 20114
 
16825 efrain 20115
  .mn-wd-lg-200p {
20116
    min-width: 200%;
20117
  }
16848 stevensc 20118
 
16825 efrain 20119
  .wd-lg-200-f {
20120
    width: 200px !important;
20121
  }
16848 stevensc 20122
 
16825 efrain 20123
  .wd-lg-200p-f {
20124
    width: 200% !important;
20125
  }
16848 stevensc 20126
 
16825 efrain 20127
  .mx-wd-lg-200p-f {
20128
    max-width: 200% !important;
20129
  }
16848 stevensc 20130
 
16825 efrain 20131
  .mn-wd-lg-200p-f {
20132
    min-width: 200% !important;
20133
  }
16848 stevensc 20134
 
16825 efrain 20135
  .wd-lg-250 {
20136
    width: 250px;
20137
  }
16848 stevensc 20138
 
16825 efrain 20139
  .wd-lg-250p {
20140
    width: 250%;
20141
  }
16848 stevensc 20142
 
16825 efrain 20143
  .mx-wd-lg-250p {
20144
    max-width: 250%;
20145
  }
16848 stevensc 20146
 
16825 efrain 20147
  .mn-wd-lg-250p {
20148
    min-width: 250%;
20149
  }
16848 stevensc 20150
 
16825 efrain 20151
  .wd-lg-250-f {
20152
    width: 250px !important;
20153
  }
16848 stevensc 20154
 
16825 efrain 20155
  .wd-lg-250p-f {
20156
    width: 250% !important;
20157
  }
16848 stevensc 20158
 
16825 efrain 20159
  .mx-wd-lg-250p-f {
20160
    max-width: 250% !important;
20161
  }
16848 stevensc 20162
 
16825 efrain 20163
  .mn-wd-lg-250p-f {
20164
    min-width: 250% !important;
20165
  }
16848 stevensc 20166
 
16825 efrain 20167
  .wd-lg-300 {
20168
    width: 300px;
20169
  }
16848 stevensc 20170
 
16825 efrain 20171
  .wd-lg-300p {
20172
    width: 300%;
20173
  }
16848 stevensc 20174
 
16825 efrain 20175
  .mx-wd-lg-300p {
20176
    max-width: 300%;
20177
  }
16848 stevensc 20178
 
16825 efrain 20179
  .mn-wd-lg-300p {
20180
    min-width: 300%;
20181
  }
16848 stevensc 20182
 
16825 efrain 20183
  .wd-lg-300-f {
20184
    width: 300px !important;
20185
  }
16848 stevensc 20186
 
16825 efrain 20187
  .wd-lg-300p-f {
20188
    width: 300% !important;
20189
  }
16848 stevensc 20190
 
16825 efrain 20191
  .mx-wd-lg-300p-f {
20192
    max-width: 300% !important;
20193
  }
16848 stevensc 20194
 
16825 efrain 20195
  .mn-wd-lg-300p-f {
20196
    min-width: 300% !important;
20197
  }
16848 stevensc 20198
 
16825 efrain 20199
  .wd-lg-350 {
20200
    width: 350px;
20201
  }
16848 stevensc 20202
 
16825 efrain 20203
  .wd-lg-350p {
20204
    width: 350%;
20205
  }
16848 stevensc 20206
 
16825 efrain 20207
  .mx-wd-lg-350p {
20208
    max-width: 350%;
20209
  }
16848 stevensc 20210
 
16825 efrain 20211
  .mn-wd-lg-350p {
20212
    min-width: 350%;
20213
  }
16848 stevensc 20214
 
16825 efrain 20215
  .wd-lg-350-f {
20216
    width: 350px !important;
20217
  }
16848 stevensc 20218
 
16825 efrain 20219
  .wd-lg-350p-f {
20220
    width: 350% !important;
20221
  }
16848 stevensc 20222
 
16825 efrain 20223
  .mx-wd-lg-350p-f {
20224
    max-width: 350% !important;
20225
  }
16848 stevensc 20226
 
16825 efrain 20227
  .mn-wd-lg-350p-f {
20228
    min-width: 350% !important;
20229
  }
16848 stevensc 20230
 
16825 efrain 20231
  .wd-lg-400 {
20232
    width: 400px;
20233
  }
16848 stevensc 20234
 
16825 efrain 20235
  .wd-lg-400p {
20236
    width: 400%;
20237
  }
16848 stevensc 20238
 
16825 efrain 20239
  .mx-wd-lg-400p {
20240
    max-width: 400%;
20241
  }
16848 stevensc 20242
 
16825 efrain 20243
  .mn-wd-lg-400p {
20244
    min-width: 400%;
20245
  }
16848 stevensc 20246
 
16825 efrain 20247
  .wd-lg-400-f {
20248
    width: 400px !important;
20249
  }
16848 stevensc 20250
 
16825 efrain 20251
  .wd-lg-400p-f {
20252
    width: 400% !important;
20253
  }
16848 stevensc 20254
 
16825 efrain 20255
  .mx-wd-lg-400p-f {
20256
    max-width: 400% !important;
20257
  }
16848 stevensc 20258
 
16825 efrain 20259
  .mn-wd-lg-400p-f {
20260
    min-width: 400% !important;
20261
  }
16848 stevensc 20262
 
16825 efrain 20263
  .wd-lg-450 {
20264
    width: 450px;
20265
  }
16848 stevensc 20266
 
16825 efrain 20267
  .wd-lg-450p {
20268
    width: 450%;
20269
  }
16848 stevensc 20270
 
16825 efrain 20271
  .mx-wd-lg-450p {
20272
    max-width: 450%;
20273
  }
16848 stevensc 20274
 
16825 efrain 20275
  .mn-wd-lg-450p {
20276
    min-width: 450%;
20277
  }
16848 stevensc 20278
 
16825 efrain 20279
  .wd-lg-450-f {
20280
    width: 450px !important;
20281
  }
16848 stevensc 20282
 
16825 efrain 20283
  .wd-lg-450p-f {
20284
    width: 450% !important;
20285
  }
16848 stevensc 20286
 
16825 efrain 20287
  .mx-wd-lg-450p-f {
20288
    max-width: 450% !important;
20289
  }
16848 stevensc 20290
 
16825 efrain 20291
  .mn-wd-lg-450p-f {
20292
    min-width: 450% !important;
20293
  }
16848 stevensc 20294
 
16825 efrain 20295
  .wd-lg-500 {
20296
    width: 500px;
20297
  }
16848 stevensc 20298
 
16825 efrain 20299
  .wd-lg-500p {
20300
    width: 500%;
20301
  }
16848 stevensc 20302
 
16825 efrain 20303
  .mx-wd-lg-500p {
20304
    max-width: 500%;
20305
  }
16848 stevensc 20306
 
16825 efrain 20307
  .mn-wd-lg-500p {
20308
    min-width: 500%;
20309
  }
16848 stevensc 20310
 
16825 efrain 20311
  .wd-lg-500-f {
20312
    width: 500px !important;
20313
  }
16848 stevensc 20314
 
16825 efrain 20315
  .wd-lg-500p-f {
20316
    width: 500% !important;
20317
  }
16848 stevensc 20318
 
16825 efrain 20319
  .mx-wd-lg-500p-f {
20320
    max-width: 500% !important;
20321
  }
16848 stevensc 20322
 
16825 efrain 20323
  .mn-wd-lg-500p-f {
20324
    min-width: 500% !important;
20325
  }
16848 stevensc 20326
 
16825 efrain 20327
  .wd-lg-550 {
20328
    width: 550px;
20329
  }
16848 stevensc 20330
 
16825 efrain 20331
  .wd-lg-550p {
20332
    width: 550%;
20333
  }
16848 stevensc 20334
 
16825 efrain 20335
  .mx-wd-lg-550p {
20336
    max-width: 550%;
20337
  }
16848 stevensc 20338
 
16825 efrain 20339
  .mn-wd-lg-550p {
20340
    min-width: 550%;
20341
  }
16848 stevensc 20342
 
16825 efrain 20343
  .wd-lg-550-f {
20344
    width: 550px !important;
20345
  }
16848 stevensc 20346
 
16825 efrain 20347
  .wd-lg-550p-f {
20348
    width: 550% !important;
20349
  }
16848 stevensc 20350
 
16825 efrain 20351
  .mx-wd-lg-550p-f {
20352
    max-width: 550% !important;
20353
  }
16848 stevensc 20354
 
16825 efrain 20355
  .mn-wd-lg-550p-f {
20356
    min-width: 550% !important;
20357
  }
16848 stevensc 20358
 
16825 efrain 20359
  .wd-lg-600 {
20360
    width: 600px;
20361
  }
16848 stevensc 20362
 
16825 efrain 20363
  .wd-lg-600p {
20364
    width: 600%;
20365
  }
16848 stevensc 20366
 
16825 efrain 20367
  .mx-wd-lg-600p {
20368
    max-width: 600%;
20369
  }
16848 stevensc 20370
 
16825 efrain 20371
  .mn-wd-lg-600p {
20372
    min-width: 600%;
20373
  }
16848 stevensc 20374
 
16825 efrain 20375
  .wd-lg-600-f {
20376
    width: 600px !important;
20377
  }
16848 stevensc 20378
 
16825 efrain 20379
  .wd-lg-600p-f {
20380
    width: 600% !important;
20381
  }
16848 stevensc 20382
 
16825 efrain 20383
  .mx-wd-lg-600p-f {
20384
    max-width: 600% !important;
20385
  }
16848 stevensc 20386
 
16825 efrain 20387
  .mn-wd-lg-600p-f {
20388
    min-width: 600% !important;
20389
  }
16848 stevensc 20390
 
16825 efrain 20391
  .wd-lg-650 {
20392
    width: 650px;
20393
  }
16848 stevensc 20394
 
16825 efrain 20395
  .wd-lg-650p {
20396
    width: 650%;
20397
  }
16848 stevensc 20398
 
16825 efrain 20399
  .mx-wd-lg-650p {
20400
    max-width: 650%;
20401
  }
16848 stevensc 20402
 
16825 efrain 20403
  .mn-wd-lg-650p {
20404
    min-width: 650%;
20405
  }
16848 stevensc 20406
 
16825 efrain 20407
  .wd-lg-650-f {
20408
    width: 650px !important;
20409
  }
16848 stevensc 20410
 
16825 efrain 20411
  .wd-lg-650p-f {
20412
    width: 650% !important;
20413
  }
16848 stevensc 20414
 
16825 efrain 20415
  .mx-wd-lg-650p-f {
20416
    max-width: 650% !important;
20417
  }
16848 stevensc 20418
 
16825 efrain 20419
  .mn-wd-lg-650p-f {
20420
    min-width: 650% !important;
20421
  }
16848 stevensc 20422
 
16825 efrain 20423
  .wd-lg-700 {
20424
    width: 700px;
20425
  }
16848 stevensc 20426
 
16825 efrain 20427
  .wd-lg-700p {
20428
    width: 700%;
20429
  }
16848 stevensc 20430
 
16825 efrain 20431
  .mx-wd-lg-700p {
20432
    max-width: 700%;
20433
  }
16848 stevensc 20434
 
16825 efrain 20435
  .mn-wd-lg-700p {
20436
    min-width: 700%;
20437
  }
16848 stevensc 20438
 
16825 efrain 20439
  .wd-lg-700-f {
20440
    width: 700px !important;
20441
  }
16848 stevensc 20442
 
16825 efrain 20443
  .wd-lg-700p-f {
20444
    width: 700% !important;
20445
  }
16848 stevensc 20446
 
16825 efrain 20447
  .mx-wd-lg-700p-f {
20448
    max-width: 700% !important;
20449
  }
16848 stevensc 20450
 
16825 efrain 20451
  .mn-wd-lg-700p-f {
20452
    min-width: 700% !important;
20453
  }
16848 stevensc 20454
 
16825 efrain 20455
  .wd-lg-750 {
20456
    width: 750px;
20457
  }
16848 stevensc 20458
 
16825 efrain 20459
  .wd-lg-750p {
20460
    width: 750%;
20461
  }
16848 stevensc 20462
 
16825 efrain 20463
  .mx-wd-lg-750p {
20464
    max-width: 750%;
20465
  }
16848 stevensc 20466
 
16825 efrain 20467
  .mn-wd-lg-750p {
20468
    min-width: 750%;
20469
  }
16848 stevensc 20470
 
16825 efrain 20471
  .wd-lg-750-f {
20472
    width: 750px !important;
20473
  }
16848 stevensc 20474
 
16825 efrain 20475
  .wd-lg-750p-f {
20476
    width: 750% !important;
20477
  }
16848 stevensc 20478
 
16825 efrain 20479
  .mx-wd-lg-750p-f {
20480
    max-width: 750% !important;
20481
  }
16848 stevensc 20482
 
16825 efrain 20483
  .mn-wd-lg-750p-f {
20484
    min-width: 750% !important;
20485
  }
16848 stevensc 20486
 
16825 efrain 20487
  .wd-lg-800 {
20488
    width: 800px;
20489
  }
16848 stevensc 20490
 
16825 efrain 20491
  .wd-lg-800p {
20492
    width: 800%;
20493
  }
16848 stevensc 20494
 
16825 efrain 20495
  .mx-wd-lg-800p {
20496
    max-width: 800%;
20497
  }
16848 stevensc 20498
 
16825 efrain 20499
  .mn-wd-lg-800p {
20500
    min-width: 800%;
20501
  }
16848 stevensc 20502
 
16825 efrain 20503
  .wd-lg-800-f {
20504
    width: 800px !important;
20505
  }
16848 stevensc 20506
 
16825 efrain 20507
  .wd-lg-800p-f {
20508
    width: 800% !important;
20509
  }
16848 stevensc 20510
 
16825 efrain 20511
  .mx-wd-lg-800p-f {
20512
    max-width: 800% !important;
20513
  }
16848 stevensc 20514
 
16825 efrain 20515
  .mn-wd-lg-800p-f {
20516
    min-width: 800% !important;
20517
  }
16848 stevensc 20518
 
16825 efrain 20519
  .wd-lg-850 {
20520
    width: 850px;
20521
  }
16848 stevensc 20522
 
16825 efrain 20523
  .wd-lg-850p {
20524
    width: 850%;
20525
  }
16848 stevensc 20526
 
16825 efrain 20527
  .mx-wd-lg-850p {
20528
    max-width: 850%;
20529
  }
16848 stevensc 20530
 
16825 efrain 20531
  .mn-wd-lg-850p {
20532
    min-width: 850%;
20533
  }
16848 stevensc 20534
 
16825 efrain 20535
  .wd-lg-850-f {
20536
    width: 850px !important;
20537
  }
16848 stevensc 20538
 
16825 efrain 20539
  .wd-lg-850p-f {
20540
    width: 850% !important;
20541
  }
16848 stevensc 20542
 
16825 efrain 20543
  .mx-wd-lg-850p-f {
20544
    max-width: 850% !important;
20545
  }
16848 stevensc 20546
 
16825 efrain 20547
  .mn-wd-lg-850p-f {
20548
    min-width: 850% !important;
20549
  }
16848 stevensc 20550
 
16825 efrain 20551
  .wd-lg-900 {
20552
    width: 900px;
20553
  }
16848 stevensc 20554
 
16825 efrain 20555
  .wd-lg-900p {
20556
    width: 900%;
20557
  }
16848 stevensc 20558
 
16825 efrain 20559
  .mx-wd-lg-900p {
20560
    max-width: 900%;
20561
  }
16848 stevensc 20562
 
16825 efrain 20563
  .mn-wd-lg-900p {
20564
    min-width: 900%;
20565
  }
16848 stevensc 20566
 
16825 efrain 20567
  .wd-lg-900-f {
20568
    width: 900px !important;
20569
  }
16848 stevensc 20570
 
16825 efrain 20571
  .wd-lg-900p-f {
20572
    width: 900% !important;
20573
  }
16848 stevensc 20574
 
16825 efrain 20575
  .mx-wd-lg-900p-f {
20576
    max-width: 900% !important;
20577
  }
16848 stevensc 20578
 
16825 efrain 20579
  .mn-wd-lg-900p-f {
20580
    min-width: 900% !important;
20581
  }
16848 stevensc 20582
 
16825 efrain 20583
  .wd-lg-950 {
20584
    width: 950px;
20585
  }
16848 stevensc 20586
 
16825 efrain 20587
  .wd-lg-950p {
20588
    width: 950%;
20589
  }
16848 stevensc 20590
 
16825 efrain 20591
  .mx-wd-lg-950p {
20592
    max-width: 950%;
20593
  }
16848 stevensc 20594
 
16825 efrain 20595
  .mn-wd-lg-950p {
20596
    min-width: 950%;
20597
  }
16848 stevensc 20598
 
16825 efrain 20599
  .wd-lg-950-f {
20600
    width: 950px !important;
20601
  }
16848 stevensc 20602
 
16825 efrain 20603
  .wd-lg-950p-f {
20604
    width: 950% !important;
20605
  }
16848 stevensc 20606
 
16825 efrain 20607
  .mx-wd-lg-950p-f {
20608
    max-width: 950% !important;
20609
  }
16848 stevensc 20610
 
16825 efrain 20611
  .mn-wd-lg-950p-f {
20612
    min-width: 950% !important;
20613
  }
16848 stevensc 20614
 
16825 efrain 20615
  .wd-lg-1000 {
20616
    width: 1000px;
20617
  }
16848 stevensc 20618
 
16825 efrain 20619
  .wd-lg-1000p {
20620
    width: 1000%;
20621
  }
16848 stevensc 20622
 
16825 efrain 20623
  .mx-wd-lg-1000p {
20624
    max-width: 1000%;
20625
  }
16848 stevensc 20626
 
16825 efrain 20627
  .mn-wd-lg-1000p {
20628
    min-width: 1000%;
20629
  }
16848 stevensc 20630
 
16825 efrain 20631
  .wd-lg-1000-f {
20632
    width: 1000px !important;
20633
  }
16848 stevensc 20634
 
16825 efrain 20635
  .wd-lg-1000p-f {
20636
    width: 1000% !important;
20637
  }
16848 stevensc 20638
 
16825 efrain 20639
  .mx-wd-lg-1000p-f {
20640
    max-width: 1000% !important;
20641
  }
16848 stevensc 20642
 
16825 efrain 20643
  .mn-wd-lg-1000p-f {
20644
    min-width: 1000% !important;
20645
  }
16848 stevensc 20646
 
16825 efrain 20647
  .wd-lg-auto {
20648
    width: auto;
20649
  }
16848 stevensc 20650
 
16825 efrain 20651
  .wd-lg-auto-f {
20652
    width: auto !important;
20653
  }
20654
}
16848 stevensc 20655
 
16825 efrain 20656
@media (min-width: 1200px) {
20657
  .wd-xl-5 {
20658
    width: 5px;
20659
  }
16848 stevensc 20660
 
16825 efrain 20661
  .wd-xl-5p {
20662
    width: 5%;
20663
  }
16848 stevensc 20664
 
16825 efrain 20665
  .mx-wd-xl-5p {
20666
    max-width: 5%;
20667
  }
16848 stevensc 20668
 
16825 efrain 20669
  .mn-wd-xl-5p {
20670
    min-width: 5%;
20671
  }
16848 stevensc 20672
 
16825 efrain 20673
  .wd-xl-5-f {
20674
    width: 5px !important;
20675
  }
16848 stevensc 20676
 
16825 efrain 20677
  .wd-xl-5p-f {
20678
    width: 5% !important;
20679
  }
16848 stevensc 20680
 
16825 efrain 20681
  .mx-wd-xl-5p-f {
20682
    max-width: 5% !important;
20683
  }
16848 stevensc 20684
 
16825 efrain 20685
  .mn-wd-xl-5p-f {
20686
    min-width: 5% !important;
20687
  }
16848 stevensc 20688
 
16825 efrain 20689
  .wd-xl-10 {
20690
    width: 10px;
20691
  }
16848 stevensc 20692
 
16825 efrain 20693
  .wd-xl-10p {
20694
    width: 10%;
20695
  }
16848 stevensc 20696
 
16825 efrain 20697
  .mx-wd-xl-10p {
20698
    max-width: 10%;
20699
  }
16848 stevensc 20700
 
16825 efrain 20701
  .mn-wd-xl-10p {
20702
    min-width: 10%;
20703
  }
16848 stevensc 20704
 
16825 efrain 20705
  .wd-xl-10-f {
20706
    width: 10px !important;
20707
  }
16848 stevensc 20708
 
16825 efrain 20709
  .wd-xl-10p-f {
20710
    width: 10% !important;
20711
  }
16848 stevensc 20712
 
16825 efrain 20713
  .mx-wd-xl-10p-f {
20714
    max-width: 10% !important;
20715
  }
16848 stevensc 20716
 
16825 efrain 20717
  .mn-wd-xl-10p-f {
20718
    min-width: 10% !important;
20719
  }
16848 stevensc 20720
 
16825 efrain 20721
  .wd-xl-15 {
20722
    width: 15px;
20723
  }
16848 stevensc 20724
 
16825 efrain 20725
  .wd-xl-15p {
20726
    width: 15%;
20727
  }
16848 stevensc 20728
 
16825 efrain 20729
  .mx-wd-xl-15p {
20730
    max-width: 15%;
20731
  }
16848 stevensc 20732
 
16825 efrain 20733
  .mn-wd-xl-15p {
20734
    min-width: 15%;
20735
  }
16848 stevensc 20736
 
16825 efrain 20737
  .wd-xl-15-f {
20738
    width: 15px !important;
20739
  }
16848 stevensc 20740
 
16825 efrain 20741
  .wd-xl-15p-f {
20742
    width: 15% !important;
20743
  }
16848 stevensc 20744
 
16825 efrain 20745
  .mx-wd-xl-15p-f {
20746
    max-width: 15% !important;
20747
  }
16848 stevensc 20748
 
16825 efrain 20749
  .mn-wd-xl-15p-f {
20750
    min-width: 15% !important;
20751
  }
16848 stevensc 20752
 
16825 efrain 20753
  .wd-xl-20 {
20754
    width: 20px;
20755
  }
16848 stevensc 20756
 
16825 efrain 20757
  .wd-xl-20p {
20758
    width: 20%;
20759
  }
16848 stevensc 20760
 
16825 efrain 20761
  .mx-wd-xl-20p {
20762
    max-width: 20%;
20763
  }
16848 stevensc 20764
 
16825 efrain 20765
  .mn-wd-xl-20p {
20766
    min-width: 20%;
20767
  }
16848 stevensc 20768
 
16825 efrain 20769
  .wd-xl-20-f {
20770
    width: 20px !important;
20771
  }
16848 stevensc 20772
 
16825 efrain 20773
  .wd-xl-20p-f {
20774
    width: 20% !important;
20775
  }
16848 stevensc 20776
 
16825 efrain 20777
  .mx-wd-xl-20p-f {
20778
    max-width: 20% !important;
20779
  }
16848 stevensc 20780
 
16825 efrain 20781
  .mn-wd-xl-20p-f {
20782
    min-width: 20% !important;
20783
  }
16848 stevensc 20784
 
16825 efrain 20785
  .wd-xl-25 {
20786
    width: 25px;
20787
  }
16848 stevensc 20788
 
16825 efrain 20789
  .wd-xl-25p {
20790
    width: 25%;
20791
  }
16848 stevensc 20792
 
16825 efrain 20793
  .mx-wd-xl-25p {
20794
    max-width: 25%;
20795
  }
16848 stevensc 20796
 
16825 efrain 20797
  .mn-wd-xl-25p {
20798
    min-width: 25%;
20799
  }
16848 stevensc 20800
 
16825 efrain 20801
  .wd-xl-25-f {
20802
    width: 25px !important;
20803
  }
16848 stevensc 20804
 
16825 efrain 20805
  .wd-xl-25p-f {
20806
    width: 25% !important;
20807
  }
16848 stevensc 20808
 
16825 efrain 20809
  .mx-wd-xl-25p-f {
20810
    max-width: 25% !important;
20811
  }
16848 stevensc 20812
 
16825 efrain 20813
  .mn-wd-xl-25p-f {
20814
    min-width: 25% !important;
20815
  }
16848 stevensc 20816
 
16825 efrain 20817
  .wd-xl-30 {
20818
    width: 30px;
20819
  }
16848 stevensc 20820
 
16825 efrain 20821
  .wd-xl-30p {
20822
    width: 30%;
20823
  }
16848 stevensc 20824
 
16825 efrain 20825
  .mx-wd-xl-30p {
20826
    max-width: 30%;
20827
  }
16848 stevensc 20828
 
16825 efrain 20829
  .mn-wd-xl-30p {
20830
    min-width: 30%;
20831
  }
16848 stevensc 20832
 
16825 efrain 20833
  .wd-xl-30-f {
20834
    width: 30px !important;
20835
  }
16848 stevensc 20836
 
16825 efrain 20837
  .wd-xl-30p-f {
20838
    width: 30% !important;
20839
  }
16848 stevensc 20840
 
16825 efrain 20841
  .mx-wd-xl-30p-f {
20842
    max-width: 30% !important;
20843
  }
16848 stevensc 20844
 
16825 efrain 20845
  .mn-wd-xl-30p-f {
20846
    min-width: 30% !important;
20847
  }
16848 stevensc 20848
 
16825 efrain 20849
  .wd-xl-35 {
20850
    width: 35px;
20851
  }
16848 stevensc 20852
 
16825 efrain 20853
  .wd-xl-35p {
20854
    width: 35%;
20855
  }
16848 stevensc 20856
 
16825 efrain 20857
  .mx-wd-xl-35p {
20858
    max-width: 35%;
20859
  }
16848 stevensc 20860
 
16825 efrain 20861
  .mn-wd-xl-35p {
20862
    min-width: 35%;
20863
  }
16848 stevensc 20864
 
16825 efrain 20865
  .wd-xl-35-f {
20866
    width: 35px !important;
20867
  }
16848 stevensc 20868
 
16825 efrain 20869
  .wd-xl-35p-f {
20870
    width: 35% !important;
20871
  }
16848 stevensc 20872
 
16825 efrain 20873
  .mx-wd-xl-35p-f {
20874
    max-width: 35% !important;
20875
  }
16848 stevensc 20876
 
16825 efrain 20877
  .mn-wd-xl-35p-f {
20878
    min-width: 35% !important;
20879
  }
16848 stevensc 20880
 
16825 efrain 20881
  .wd-xl-40 {
20882
    width: 40px;
20883
  }
16848 stevensc 20884
 
16825 efrain 20885
  .wd-xl-40p {
20886
    width: 40%;
20887
  }
16848 stevensc 20888
 
16825 efrain 20889
  .mx-wd-xl-40p {
20890
    max-width: 40%;
20891
  }
16848 stevensc 20892
 
16825 efrain 20893
  .mn-wd-xl-40p {
20894
    min-width: 40%;
20895
  }
16848 stevensc 20896
 
16825 efrain 20897
  .wd-xl-40-f {
20898
    width: 40px !important;
20899
  }
16848 stevensc 20900
 
16825 efrain 20901
  .wd-xl-40p-f {
20902
    width: 40% !important;
20903
  }
16848 stevensc 20904
 
16825 efrain 20905
  .mx-wd-xl-40p-f {
20906
    max-width: 40% !important;
20907
  }
16848 stevensc 20908
 
16825 efrain 20909
  .mn-wd-xl-40p-f {
20910
    min-width: 40% !important;
20911
  }
16848 stevensc 20912
 
16825 efrain 20913
  .wd-xl-45 {
20914
    width: 45px;
20915
  }
16848 stevensc 20916
 
16825 efrain 20917
  .wd-xl-45p {
20918
    width: 45%;
20919
  }
16848 stevensc 20920
 
16825 efrain 20921
  .mx-wd-xl-45p {
20922
    max-width: 45%;
20923
  }
16848 stevensc 20924
 
16825 efrain 20925
  .mn-wd-xl-45p {
20926
    min-width: 45%;
20927
  }
16848 stevensc 20928
 
16825 efrain 20929
  .wd-xl-45-f {
20930
    width: 45px !important;
20931
  }
16848 stevensc 20932
 
16825 efrain 20933
  .wd-xl-45p-f {
20934
    width: 45% !important;
20935
  }
16848 stevensc 20936
 
16825 efrain 20937
  .mx-wd-xl-45p-f {
20938
    max-width: 45% !important;
20939
  }
16848 stevensc 20940
 
16825 efrain 20941
  .mn-wd-xl-45p-f {
20942
    min-width: 45% !important;
20943
  }
16848 stevensc 20944
 
16825 efrain 20945
  .wd-xl-50 {
20946
    width: 50px;
20947
  }
16848 stevensc 20948
 
16825 efrain 20949
  .wd-xl-50p {
20950
    width: 50%;
20951
  }
16848 stevensc 20952
 
16825 efrain 20953
  .mx-wd-xl-50p {
20954
    max-width: 50%;
20955
  }
16848 stevensc 20956
 
16825 efrain 20957
  .mn-wd-xl-50p {
20958
    min-width: 50%;
20959
  }
16848 stevensc 20960
 
16825 efrain 20961
  .wd-xl-50-f {
20962
    width: 50px !important;
20963
  }
16848 stevensc 20964
 
16825 efrain 20965
  .wd-xl-50p-f {
20966
    width: 50% !important;
20967
  }
16848 stevensc 20968
 
16825 efrain 20969
  .mx-wd-xl-50p-f {
20970
    max-width: 50% !important;
20971
  }
16848 stevensc 20972
 
16825 efrain 20973
  .mn-wd-xl-50p-f {
20974
    min-width: 50% !important;
20975
  }
16848 stevensc 20976
 
16825 efrain 20977
  .wd-xl-55 {
20978
    width: 55px;
20979
  }
16848 stevensc 20980
 
16825 efrain 20981
  .wd-xl-55p {
20982
    width: 55%;
20983
  }
16848 stevensc 20984
 
16825 efrain 20985
  .mx-wd-xl-55p {
20986
    max-width: 55%;
20987
  }
16848 stevensc 20988
 
16825 efrain 20989
  .mn-wd-xl-55p {
20990
    min-width: 55%;
20991
  }
16848 stevensc 20992
 
16825 efrain 20993
  .wd-xl-55-f {
20994
    width: 55px !important;
20995
  }
16848 stevensc 20996
 
16825 efrain 20997
  .wd-xl-55p-f {
20998
    width: 55% !important;
20999
  }
16848 stevensc 21000
 
16825 efrain 21001
  .mx-wd-xl-55p-f {
21002
    max-width: 55% !important;
21003
  }
16848 stevensc 21004
 
16825 efrain 21005
  .mn-wd-xl-55p-f {
21006
    min-width: 55% !important;
21007
  }
16848 stevensc 21008
 
16825 efrain 21009
  .wd-xl-60 {
21010
    width: 60px;
21011
  }
16848 stevensc 21012
 
16825 efrain 21013
  .wd-xl-60p {
21014
    width: 60%;
21015
  }
16848 stevensc 21016
 
16825 efrain 21017
  .mx-wd-xl-60p {
21018
    max-width: 60%;
21019
  }
16848 stevensc 21020
 
16825 efrain 21021
  .mn-wd-xl-60p {
21022
    min-width: 60%;
21023
  }
16848 stevensc 21024
 
16825 efrain 21025
  .wd-xl-60-f {
21026
    width: 60px !important;
21027
  }
16848 stevensc 21028
 
16825 efrain 21029
  .wd-xl-60p-f {
21030
    width: 60% !important;
21031
  }
16848 stevensc 21032
 
16825 efrain 21033
  .mx-wd-xl-60p-f {
21034
    max-width: 60% !important;
21035
  }
16848 stevensc 21036
 
16825 efrain 21037
  .mn-wd-xl-60p-f {
21038
    min-width: 60% !important;
21039
  }
16848 stevensc 21040
 
16825 efrain 21041
  .wd-xl-65 {
21042
    width: 65px;
21043
  }
16848 stevensc 21044
 
16825 efrain 21045
  .wd-xl-65p {
21046
    width: 65%;
21047
  }
16848 stevensc 21048
 
16825 efrain 21049
  .mx-wd-xl-65p {
21050
    max-width: 65%;
21051
  }
16848 stevensc 21052
 
16825 efrain 21053
  .mn-wd-xl-65p {
21054
    min-width: 65%;
21055
  }
16848 stevensc 21056
 
16825 efrain 21057
  .wd-xl-65-f {
21058
    width: 65px !important;
21059
  }
16848 stevensc 21060
 
16825 efrain 21061
  .wd-xl-65p-f {
21062
    width: 65% !important;
21063
  }
16848 stevensc 21064
 
16825 efrain 21065
  .mx-wd-xl-65p-f {
21066
    max-width: 65% !important;
21067
  }
16848 stevensc 21068
 
16825 efrain 21069
  .mn-wd-xl-65p-f {
21070
    min-width: 65% !important;
21071
  }
16848 stevensc 21072
 
16825 efrain 21073
  .wd-xl-70 {
21074
    width: 70px;
21075
  }
16848 stevensc 21076
 
16825 efrain 21077
  .wd-xl-70p {
21078
    width: 70%;
21079
  }
16848 stevensc 21080
 
16825 efrain 21081
  .mx-wd-xl-70p {
21082
    max-width: 70%;
21083
  }
16848 stevensc 21084
 
16825 efrain 21085
  .mn-wd-xl-70p {
21086
    min-width: 70%;
21087
  }
16848 stevensc 21088
 
16825 efrain 21089
  .wd-xl-70-f {
21090
    width: 70px !important;
21091
  }
16848 stevensc 21092
 
16825 efrain 21093
  .wd-xl-70p-f {
21094
    width: 70% !important;
21095
  }
16848 stevensc 21096
 
16825 efrain 21097
  .mx-wd-xl-70p-f {
21098
    max-width: 70% !important;
21099
  }
16848 stevensc 21100
 
16825 efrain 21101
  .mn-wd-xl-70p-f {
21102
    min-width: 70% !important;
21103
  }
16848 stevensc 21104
 
16825 efrain 21105
  .wd-xl-75 {
21106
    width: 75px;
21107
  }
16848 stevensc 21108
 
16825 efrain 21109
  .wd-xl-75p {
21110
    width: 75%;
21111
  }
16848 stevensc 21112
 
16825 efrain 21113
  .mx-wd-xl-75p {
21114
    max-width: 75%;
21115
  }
16848 stevensc 21116
 
16825 efrain 21117
  .mn-wd-xl-75p {
21118
    min-width: 75%;
21119
  }
16848 stevensc 21120
 
16825 efrain 21121
  .wd-xl-75-f {
21122
    width: 75px !important;
21123
  }
16848 stevensc 21124
 
16825 efrain 21125
  .wd-xl-75p-f {
21126
    width: 75% !important;
21127
  }
16848 stevensc 21128
 
16825 efrain 21129
  .mx-wd-xl-75p-f {
21130
    max-width: 75% !important;
21131
  }
16848 stevensc 21132
 
16825 efrain 21133
  .mn-wd-xl-75p-f {
21134
    min-width: 75% !important;
21135
  }
16848 stevensc 21136
 
16825 efrain 21137
  .wd-xl-80 {
21138
    width: 80px;
21139
  }
16848 stevensc 21140
 
16825 efrain 21141
  .wd-xl-80p {
21142
    width: 80%;
21143
  }
16848 stevensc 21144
 
16825 efrain 21145
  .mx-wd-xl-80p {
21146
    max-width: 80%;
21147
  }
16848 stevensc 21148
 
16825 efrain 21149
  .mn-wd-xl-80p {
21150
    min-width: 80%;
21151
  }
16848 stevensc 21152
 
16825 efrain 21153
  .wd-xl-80-f {
21154
    width: 80px !important;
21155
  }
16848 stevensc 21156
 
16825 efrain 21157
  .wd-xl-80p-f {
21158
    width: 80% !important;
21159
  }
16848 stevensc 21160
 
16825 efrain 21161
  .mx-wd-xl-80p-f {
21162
    max-width: 80% !important;
21163
  }
16848 stevensc 21164
 
16825 efrain 21165
  .mn-wd-xl-80p-f {
21166
    min-width: 80% !important;
21167
  }
16848 stevensc 21168
 
16825 efrain 21169
  .wd-xl-85 {
21170
    width: 85px;
21171
  }
16848 stevensc 21172
 
16825 efrain 21173
  .wd-xl-85p {
21174
    width: 85%;
21175
  }
16848 stevensc 21176
 
16825 efrain 21177
  .mx-wd-xl-85p {
21178
    max-width: 85%;
21179
  }
16848 stevensc 21180
 
16825 efrain 21181
  .mn-wd-xl-85p {
21182
    min-width: 85%;
21183
  }
16848 stevensc 21184
 
16825 efrain 21185
  .wd-xl-85-f {
21186
    width: 85px !important;
21187
  }
16848 stevensc 21188
 
16825 efrain 21189
  .wd-xl-85p-f {
21190
    width: 85% !important;
21191
  }
16848 stevensc 21192
 
16825 efrain 21193
  .mx-wd-xl-85p-f {
21194
    max-width: 85% !important;
21195
  }
16848 stevensc 21196
 
16825 efrain 21197
  .mn-wd-xl-85p-f {
21198
    min-width: 85% !important;
21199
  }
16848 stevensc 21200
 
16825 efrain 21201
  .wd-xl-90 {
21202
    width: 90px;
21203
  }
16848 stevensc 21204
 
16825 efrain 21205
  .wd-xl-90p {
21206
    width: 90%;
21207
  }
16848 stevensc 21208
 
16825 efrain 21209
  .mx-wd-xl-90p {
21210
    max-width: 90%;
21211
  }
16848 stevensc 21212
 
16825 efrain 21213
  .mn-wd-xl-90p {
21214
    min-width: 90%;
21215
  }
16848 stevensc 21216
 
16825 efrain 21217
  .wd-xl-90-f {
21218
    width: 90px !important;
21219
  }
16848 stevensc 21220
 
16825 efrain 21221
  .wd-xl-90p-f {
21222
    width: 90% !important;
21223
  }
16848 stevensc 21224
 
16825 efrain 21225
  .mx-wd-xl-90p-f {
21226
    max-width: 90% !important;
21227
  }
16848 stevensc 21228
 
16825 efrain 21229
  .mn-wd-xl-90p-f {
21230
    min-width: 90% !important;
21231
  }
16848 stevensc 21232
 
16825 efrain 21233
  .wd-xl-95 {
21234
    width: 95px;
21235
  }
16848 stevensc 21236
 
16825 efrain 21237
  .wd-xl-95p {
21238
    width: 95%;
21239
  }
16848 stevensc 21240
 
16825 efrain 21241
  .mx-wd-xl-95p {
21242
    max-width: 95%;
21243
  }
16848 stevensc 21244
 
16825 efrain 21245
  .mn-wd-xl-95p {
21246
    min-width: 95%;
21247
  }
16848 stevensc 21248
 
16825 efrain 21249
  .wd-xl-95-f {
21250
    width: 95px !important;
21251
  }
16848 stevensc 21252
 
16825 efrain 21253
  .wd-xl-95p-f {
21254
    width: 95% !important;
21255
  }
16848 stevensc 21256
 
16825 efrain 21257
  .mx-wd-xl-95p-f {
21258
    max-width: 95% !important;
21259
  }
16848 stevensc 21260
 
16825 efrain 21261
  .mn-wd-xl-95p-f {
21262
    min-width: 95% !important;
21263
  }
16848 stevensc 21264
 
16825 efrain 21265
  .wd-xl-100 {
21266
    width: 100px;
21267
  }
16848 stevensc 21268
 
16825 efrain 21269
  .wd-xl-100p {
21270
    width: 100%;
21271
  }
16848 stevensc 21272
 
16825 efrain 21273
  .mx-wd-xl-100p {
21274
    max-width: 100%;
21275
  }
16848 stevensc 21276
 
16825 efrain 21277
  .mn-wd-xl-100p {
21278
    min-width: 100%;
21279
  }
16848 stevensc 21280
 
16825 efrain 21281
  .wd-xl-100-f {
21282
    width: 100px !important;
21283
  }
16848 stevensc 21284
 
16825 efrain 21285
  .wd-xl-100p-f {
21286
    width: 100% !important;
21287
  }
16848 stevensc 21288
 
16825 efrain 21289
  .mx-wd-xl-100p-f {
21290
    max-width: 100% !important;
21291
  }
16848 stevensc 21292
 
16825 efrain 21293
  .mn-wd-xl-100p-f {
21294
    min-width: 100% !important;
21295
  }
16848 stevensc 21296
 
16825 efrain 21297
  .wd-xl-150 {
21298
    width: 150px;
21299
  }
16848 stevensc 21300
 
16825 efrain 21301
  .wd-xl-150p {
21302
    width: 150%;
21303
  }
16848 stevensc 21304
 
16825 efrain 21305
  .mx-wd-xl-150p {
21306
    max-width: 150%;
21307
  }
16848 stevensc 21308
 
16825 efrain 21309
  .mn-wd-xl-150p {
21310
    min-width: 150%;
21311
  }
16848 stevensc 21312
 
16825 efrain 21313
  .wd-xl-150-f {
21314
    width: 150px !important;
21315
  }
16848 stevensc 21316
 
16825 efrain 21317
  .wd-xl-150p-f {
21318
    width: 150% !important;
21319
  }
16848 stevensc 21320
 
16825 efrain 21321
  .mx-wd-xl-150p-f {
21322
    max-width: 150% !important;
21323
  }
16848 stevensc 21324
 
16825 efrain 21325
  .mn-wd-xl-150p-f {
21326
    min-width: 150% !important;
21327
  }
16848 stevensc 21328
 
16825 efrain 21329
  .wd-xl-200 {
21330
    width: 200px;
21331
  }
16848 stevensc 21332
 
16825 efrain 21333
  .wd-xl-200p {
21334
    width: 200%;
21335
  }
16848 stevensc 21336
 
16825 efrain 21337
  .mx-wd-xl-200p {
21338
    max-width: 200%;
21339
  }
16848 stevensc 21340
 
16825 efrain 21341
  .mn-wd-xl-200p {
21342
    min-width: 200%;
21343
  }
16848 stevensc 21344
 
16825 efrain 21345
  .wd-xl-200-f {
21346
    width: 200px !important;
21347
  }
16848 stevensc 21348
 
16825 efrain 21349
  .wd-xl-200p-f {
21350
    width: 200% !important;
21351
  }
16848 stevensc 21352
 
16825 efrain 21353
  .mx-wd-xl-200p-f {
21354
    max-width: 200% !important;
21355
  }
16848 stevensc 21356
 
16825 efrain 21357
  .mn-wd-xl-200p-f {
21358
    min-width: 200% !important;
21359
  }
16848 stevensc 21360
 
16825 efrain 21361
  .wd-xl-250 {
21362
    width: 250px;
21363
  }
16848 stevensc 21364
 
16825 efrain 21365
  .wd-xl-250p {
21366
    width: 250%;
21367
  }
16848 stevensc 21368
 
16825 efrain 21369
  .mx-wd-xl-250p {
21370
    max-width: 250%;
21371
  }
16848 stevensc 21372
 
16825 efrain 21373
  .mn-wd-xl-250p {
21374
    min-width: 250%;
21375
  }
16848 stevensc 21376
 
16825 efrain 21377
  .wd-xl-250-f {
21378
    width: 250px !important;
21379
  }
16848 stevensc 21380
 
16825 efrain 21381
  .wd-xl-250p-f {
21382
    width: 250% !important;
21383
  }
16848 stevensc 21384
 
16825 efrain 21385
  .mx-wd-xl-250p-f {
21386
    max-width: 250% !important;
21387
  }
16848 stevensc 21388
 
16825 efrain 21389
  .mn-wd-xl-250p-f {
21390
    min-width: 250% !important;
21391
  }
16848 stevensc 21392
 
16825 efrain 21393
  .wd-xl-300 {
21394
    width: 300px;
21395
  }
16848 stevensc 21396
 
16825 efrain 21397
  .wd-xl-300p {
21398
    width: 300%;
21399
  }
16848 stevensc 21400
 
16825 efrain 21401
  .mx-wd-xl-300p {
21402
    max-width: 300%;
21403
  }
16848 stevensc 21404
 
16825 efrain 21405
  .mn-wd-xl-300p {
21406
    min-width: 300%;
21407
  }
16848 stevensc 21408
 
16825 efrain 21409
  .wd-xl-300-f {
21410
    width: 300px !important;
21411
  }
16848 stevensc 21412
 
16825 efrain 21413
  .wd-xl-300p-f {
21414
    width: 300% !important;
21415
  }
16848 stevensc 21416
 
16825 efrain 21417
  .mx-wd-xl-300p-f {
21418
    max-width: 300% !important;
21419
  }
16848 stevensc 21420
 
16825 efrain 21421
  .mn-wd-xl-300p-f {
21422
    min-width: 300% !important;
21423
  }
16848 stevensc 21424
 
16825 efrain 21425
  .wd-xl-350 {
21426
    width: 350px;
21427
  }
16848 stevensc 21428
 
16825 efrain 21429
  .wd-xl-350p {
21430
    width: 350%;
21431
  }
16848 stevensc 21432
 
16825 efrain 21433
  .mx-wd-xl-350p {
21434
    max-width: 350%;
21435
  }
16848 stevensc 21436
 
16825 efrain 21437
  .mn-wd-xl-350p {
21438
    min-width: 350%;
21439
  }
16848 stevensc 21440
 
16825 efrain 21441
  .wd-xl-350-f {
21442
    width: 350px !important;
21443
  }
16848 stevensc 21444
 
16825 efrain 21445
  .wd-xl-350p-f {
21446
    width: 350% !important;
21447
  }
16848 stevensc 21448
 
16825 efrain 21449
  .mx-wd-xl-350p-f {
21450
    max-width: 350% !important;
21451
  }
16848 stevensc 21452
 
16825 efrain 21453
  .mn-wd-xl-350p-f {
21454
    min-width: 350% !important;
21455
  }
16848 stevensc 21456
 
16825 efrain 21457
  .wd-xl-400 {
21458
    width: 400px;
21459
  }
16848 stevensc 21460
 
16825 efrain 21461
  .wd-xl-400p {
21462
    width: 400%;
21463
  }
16848 stevensc 21464
 
16825 efrain 21465
  .mx-wd-xl-400p {
21466
    max-width: 400%;
21467
  }
16848 stevensc 21468
 
16825 efrain 21469
  .mn-wd-xl-400p {
21470
    min-width: 400%;
21471
  }
16848 stevensc 21472
 
16825 efrain 21473
  .wd-xl-400-f {
21474
    width: 400px !important;
21475
  }
16848 stevensc 21476
 
16825 efrain 21477
  .wd-xl-400p-f {
21478
    width: 400% !important;
21479
  }
16848 stevensc 21480
 
16825 efrain 21481
  .mx-wd-xl-400p-f {
21482
    max-width: 400% !important;
21483
  }
16848 stevensc 21484
 
16825 efrain 21485
  .mn-wd-xl-400p-f {
21486
    min-width: 400% !important;
21487
  }
16848 stevensc 21488
 
16825 efrain 21489
  .wd-xl-450 {
21490
    width: 450px;
21491
  }
16848 stevensc 21492
 
16825 efrain 21493
  .wd-xl-450p {
21494
    width: 450%;
21495
  }
16848 stevensc 21496
 
16825 efrain 21497
  .mx-wd-xl-450p {
21498
    max-width: 450%;
21499
  }
16848 stevensc 21500
 
16825 efrain 21501
  .mn-wd-xl-450p {
21502
    min-width: 450%;
21503
  }
16848 stevensc 21504
 
16825 efrain 21505
  .wd-xl-450-f {
21506
    width: 450px !important;
21507
  }
16848 stevensc 21508
 
16825 efrain 21509
  .wd-xl-450p-f {
21510
    width: 450% !important;
21511
  }
16848 stevensc 21512
 
16825 efrain 21513
  .mx-wd-xl-450p-f {
21514
    max-width: 450% !important;
21515
  }
16848 stevensc 21516
 
16825 efrain 21517
  .mn-wd-xl-450p-f {
21518
    min-width: 450% !important;
21519
  }
16848 stevensc 21520
 
16825 efrain 21521
  .wd-xl-500 {
21522
    width: 500px;
21523
  }
16848 stevensc 21524
 
16825 efrain 21525
  .wd-xl-500p {
21526
    width: 500%;
21527
  }
16848 stevensc 21528
 
16825 efrain 21529
  .mx-wd-xl-500p {
21530
    max-width: 500%;
21531
  }
16848 stevensc 21532
 
16825 efrain 21533
  .mn-wd-xl-500p {
21534
    min-width: 500%;
21535
  }
16848 stevensc 21536
 
16825 efrain 21537
  .wd-xl-500-f {
21538
    width: 500px !important;
21539
  }
16848 stevensc 21540
 
16825 efrain 21541
  .wd-xl-500p-f {
21542
    width: 500% !important;
21543
  }
16848 stevensc 21544
 
16825 efrain 21545
  .mx-wd-xl-500p-f {
21546
    max-width: 500% !important;
21547
  }
16848 stevensc 21548
 
16825 efrain 21549
  .mn-wd-xl-500p-f {
21550
    min-width: 500% !important;
21551
  }
16848 stevensc 21552
 
16825 efrain 21553
  .wd-xl-550 {
21554
    width: 550px;
21555
  }
16848 stevensc 21556
 
16825 efrain 21557
  .wd-xl-550p {
21558
    width: 550%;
21559
  }
16848 stevensc 21560
 
16825 efrain 21561
  .mx-wd-xl-550p {
21562
    max-width: 550%;
21563
  }
16848 stevensc 21564
 
16825 efrain 21565
  .mn-wd-xl-550p {
21566
    min-width: 550%;
21567
  }
16848 stevensc 21568
 
16825 efrain 21569
  .wd-xl-550-f {
21570
    width: 550px !important;
21571
  }
16848 stevensc 21572
 
16825 efrain 21573
  .wd-xl-550p-f {
21574
    width: 550% !important;
21575
  }
16848 stevensc 21576
 
16825 efrain 21577
  .mx-wd-xl-550p-f {
21578
    max-width: 550% !important;
21579
  }
16848 stevensc 21580
 
16825 efrain 21581
  .mn-wd-xl-550p-f {
21582
    min-width: 550% !important;
21583
  }
16848 stevensc 21584
 
16825 efrain 21585
  .wd-xl-600 {
21586
    width: 600px;
21587
  }
16848 stevensc 21588
 
16825 efrain 21589
  .wd-xl-600p {
21590
    width: 600%;
21591
  }
16848 stevensc 21592
 
16825 efrain 21593
  .mx-wd-xl-600p {
21594
    max-width: 600%;
21595
  }
16848 stevensc 21596
 
16825 efrain 21597
  .mn-wd-xl-600p {
21598
    min-width: 600%;
21599
  }
16848 stevensc 21600
 
16825 efrain 21601
  .wd-xl-600-f {
21602
    width: 600px !important;
21603
  }
16848 stevensc 21604
 
16825 efrain 21605
  .wd-xl-600p-f {
21606
    width: 600% !important;
21607
  }
16848 stevensc 21608
 
16825 efrain 21609
  .mx-wd-xl-600p-f {
21610
    max-width: 600% !important;
21611
  }
16848 stevensc 21612
 
16825 efrain 21613
  .mn-wd-xl-600p-f {
21614
    min-width: 600% !important;
21615
  }
16848 stevensc 21616
 
16825 efrain 21617
  .wd-xl-650 {
21618
    width: 650px;
21619
  }
16848 stevensc 21620
 
16825 efrain 21621
  .wd-xl-650p {
21622
    width: 650%;
21623
  }
16848 stevensc 21624
 
16825 efrain 21625
  .mx-wd-xl-650p {
21626
    max-width: 650%;
21627
  }
16848 stevensc 21628
 
16825 efrain 21629
  .mn-wd-xl-650p {
21630
    min-width: 650%;
21631
  }
16848 stevensc 21632
 
16825 efrain 21633
  .wd-xl-650-f {
21634
    width: 650px !important;
21635
  }
16848 stevensc 21636
 
16825 efrain 21637
  .wd-xl-650p-f {
21638
    width: 650% !important;
21639
  }
16848 stevensc 21640
 
16825 efrain 21641
  .mx-wd-xl-650p-f {
21642
    max-width: 650% !important;
21643
  }
16848 stevensc 21644
 
16825 efrain 21645
  .mn-wd-xl-650p-f {
21646
    min-width: 650% !important;
21647
  }
16848 stevensc 21648
 
16825 efrain 21649
  .wd-xl-700 {
21650
    width: 700px;
21651
  }
16848 stevensc 21652
 
16825 efrain 21653
  .wd-xl-700p {
21654
    width: 700%;
21655
  }
16848 stevensc 21656
 
16825 efrain 21657
  .mx-wd-xl-700p {
21658
    max-width: 700%;
21659
  }
16848 stevensc 21660
 
16825 efrain 21661
  .mn-wd-xl-700p {
21662
    min-width: 700%;
21663
  }
16848 stevensc 21664
 
16825 efrain 21665
  .wd-xl-700-f {
21666
    width: 700px !important;
21667
  }
16848 stevensc 21668
 
16825 efrain 21669
  .wd-xl-700p-f {
21670
    width: 700% !important;
21671
  }
16848 stevensc 21672
 
16825 efrain 21673
  .mx-wd-xl-700p-f {
21674
    max-width: 700% !important;
21675
  }
16848 stevensc 21676
 
16825 efrain 21677
  .mn-wd-xl-700p-f {
21678
    min-width: 700% !important;
21679
  }
16848 stevensc 21680
 
16825 efrain 21681
  .wd-xl-750 {
21682
    width: 750px;
21683
  }
16848 stevensc 21684
 
16825 efrain 21685
  .wd-xl-750p {
21686
    width: 750%;
21687
  }
16848 stevensc 21688
 
16825 efrain 21689
  .mx-wd-xl-750p {
21690
    max-width: 750%;
21691
  }
16848 stevensc 21692
 
16825 efrain 21693
  .mn-wd-xl-750p {
21694
    min-width: 750%;
21695
  }
16848 stevensc 21696
 
16825 efrain 21697
  .wd-xl-750-f {
21698
    width: 750px !important;
21699
  }
16848 stevensc 21700
 
16825 efrain 21701
  .wd-xl-750p-f {
21702
    width: 750% !important;
21703
  }
16848 stevensc 21704
 
16825 efrain 21705
  .mx-wd-xl-750p-f {
21706
    max-width: 750% !important;
21707
  }
16848 stevensc 21708
 
16825 efrain 21709
  .mn-wd-xl-750p-f {
21710
    min-width: 750% !important;
21711
  }
16848 stevensc 21712
 
16825 efrain 21713
  .wd-xl-800 {
21714
    width: 800px;
21715
  }
16848 stevensc 21716
 
16825 efrain 21717
  .wd-xl-800p {
21718
    width: 800%;
21719
  }
16848 stevensc 21720
 
16825 efrain 21721
  .mx-wd-xl-800p {
21722
    max-width: 800%;
21723
  }
16848 stevensc 21724
 
16825 efrain 21725
  .mn-wd-xl-800p {
21726
    min-width: 800%;
21727
  }
16848 stevensc 21728
 
16825 efrain 21729
  .wd-xl-800-f {
21730
    width: 800px !important;
21731
  }
16848 stevensc 21732
 
16825 efrain 21733
  .wd-xl-800p-f {
21734
    width: 800% !important;
21735
  }
16848 stevensc 21736
 
16825 efrain 21737
  .mx-wd-xl-800p-f {
21738
    max-width: 800% !important;
21739
  }
16848 stevensc 21740
 
16825 efrain 21741
  .mn-wd-xl-800p-f {
21742
    min-width: 800% !important;
21743
  }
16848 stevensc 21744
 
16825 efrain 21745
  .wd-xl-850 {
21746
    width: 850px;
21747
  }
16848 stevensc 21748
 
16825 efrain 21749
  .wd-xl-850p {
21750
    width: 850%;
21751
  }
16848 stevensc 21752
 
16825 efrain 21753
  .mx-wd-xl-850p {
21754
    max-width: 850%;
21755
  }
16848 stevensc 21756
 
16825 efrain 21757
  .mn-wd-xl-850p {
21758
    min-width: 850%;
21759
  }
16848 stevensc 21760
 
16825 efrain 21761
  .wd-xl-850-f {
21762
    width: 850px !important;
21763
  }
16848 stevensc 21764
 
16825 efrain 21765
  .wd-xl-850p-f {
21766
    width: 850% !important;
21767
  }
16848 stevensc 21768
 
16825 efrain 21769
  .mx-wd-xl-850p-f {
21770
    max-width: 850% !important;
21771
  }
16848 stevensc 21772
 
16825 efrain 21773
  .mn-wd-xl-850p-f {
21774
    min-width: 850% !important;
21775
  }
16848 stevensc 21776
 
16825 efrain 21777
  .wd-xl-900 {
21778
    width: 900px;
21779
  }
16848 stevensc 21780
 
16825 efrain 21781
  .wd-xl-900p {
21782
    width: 900%;
21783
  }
16848 stevensc 21784
 
16825 efrain 21785
  .mx-wd-xl-900p {
21786
    max-width: 900%;
21787
  }
16848 stevensc 21788
 
16825 efrain 21789
  .mn-wd-xl-900p {
21790
    min-width: 900%;
21791
  }
16848 stevensc 21792
 
16825 efrain 21793
  .wd-xl-900-f {
21794
    width: 900px !important;
21795
  }
16848 stevensc 21796
 
16825 efrain 21797
  .wd-xl-900p-f {
21798
    width: 900% !important;
21799
  }
16848 stevensc 21800
 
16825 efrain 21801
  .mx-wd-xl-900p-f {
21802
    max-width: 900% !important;
21803
  }
16848 stevensc 21804
 
16825 efrain 21805
  .mn-wd-xl-900p-f {
21806
    min-width: 900% !important;
21807
  }
16848 stevensc 21808
 
16825 efrain 21809
  .wd-xl-950 {
21810
    width: 950px;
21811
  }
16848 stevensc 21812
 
16825 efrain 21813
  .wd-xl-950p {
21814
    width: 950%;
21815
  }
16848 stevensc 21816
 
16825 efrain 21817
  .mx-wd-xl-950p {
21818
    max-width: 950%;
21819
  }
16848 stevensc 21820
 
16825 efrain 21821
  .mn-wd-xl-950p {
21822
    min-width: 950%;
21823
  }
16848 stevensc 21824
 
16825 efrain 21825
  .wd-xl-950-f {
21826
    width: 950px !important;
21827
  }
16848 stevensc 21828
 
16825 efrain 21829
  .wd-xl-950p-f {
21830
    width: 950% !important;
21831
  }
16848 stevensc 21832
 
16825 efrain 21833
  .mx-wd-xl-950p-f {
21834
    max-width: 950% !important;
21835
  }
16848 stevensc 21836
 
16825 efrain 21837
  .mn-wd-xl-950p-f {
21838
    min-width: 950% !important;
21839
  }
16848 stevensc 21840
 
16825 efrain 21841
  .wd-xl-1000 {
21842
    width: 1000px;
21843
  }
16848 stevensc 21844
 
16825 efrain 21845
  .wd-xl-1000p {
21846
    width: 1000%;
21847
  }
16848 stevensc 21848
 
16825 efrain 21849
  .mx-wd-xl-1000p {
21850
    max-width: 1000%;
21851
  }
16848 stevensc 21852
 
16825 efrain 21853
  .mn-wd-xl-1000p {
21854
    min-width: 1000%;
21855
  }
16848 stevensc 21856
 
16825 efrain 21857
  .wd-xl-1000-f {
21858
    width: 1000px !important;
21859
  }
16848 stevensc 21860
 
16825 efrain 21861
  .wd-xl-1000p-f {
21862
    width: 1000% !important;
21863
  }
16848 stevensc 21864
 
16825 efrain 21865
  .mx-wd-xl-1000p-f {
21866
    max-width: 1000% !important;
21867
  }
16848 stevensc 21868
 
16825 efrain 21869
  .mn-wd-xl-1000p-f {
21870
    min-width: 1000% !important;
21871
  }
16848 stevensc 21872
 
16825 efrain 21873
  .wd-xl-auto {
21874
    width: auto;
21875
  }
16848 stevensc 21876
 
16825 efrain 21877
  .wd-xl-auto {
21878
    width: auto !important;
21879
  }
21880
}
16848 stevensc 21881
 
16825 efrain 21882
@media (min-width: 1400px) {
21883
  .wd-xxl-5 {
21884
    width: 5px;
21885
  }
16848 stevensc 21886
 
16825 efrain 21887
  .wd-xxl-5p {
21888
    width: 5%;
21889
  }
16848 stevensc 21890
 
16825 efrain 21891
  .mx-wd-xxl-5p {
21892
    max-width: 5%;
21893
  }
16848 stevensc 21894
 
16825 efrain 21895
  .mn-wd-xxl-5p {
21896
    min-width: 5%;
21897
  }
16848 stevensc 21898
 
16825 efrain 21899
  .wd-xxl-5-f {
21900
    width: 5px !important;
21901
  }
16848 stevensc 21902
 
16825 efrain 21903
  .wd-xxl-5p-f {
21904
    width: 5% !important;
21905
  }
16848 stevensc 21906
 
16825 efrain 21907
  .mx-wd-xxl-5p-f {
21908
    max-width: 5% !important;
21909
  }
16848 stevensc 21910
 
16825 efrain 21911
  .mn-wd-xxl-5p-f {
21912
    min-width: 5% !important;
21913
  }
16848 stevensc 21914
 
16825 efrain 21915
  .wd-xxl-10 {
21916
    width: 10px;
21917
  }
16848 stevensc 21918
 
16825 efrain 21919
  .wd-xxl-10p {
21920
    width: 10%;
21921
  }
16848 stevensc 21922
 
16825 efrain 21923
  .mx-wd-xxl-10p {
21924
    max-width: 10%;
21925
  }
16848 stevensc 21926
 
16825 efrain 21927
  .mn-wd-xxl-10p {
21928
    min-width: 10%;
21929
  }
16848 stevensc 21930
 
16825 efrain 21931
  .wd-xxl-10-f {
21932
    width: 10px !important;
21933
  }
16848 stevensc 21934
 
16825 efrain 21935
  .wd-xxl-10p-f {
21936
    width: 10% !important;
21937
  }
16848 stevensc 21938
 
16825 efrain 21939
  .mx-wd-xxl-10p-f {
21940
    max-width: 10% !important;
21941
  }
16848 stevensc 21942
 
16825 efrain 21943
  .mn-wd-xxl-10p-f {
21944
    min-width: 10% !important;
21945
  }
16848 stevensc 21946
 
16825 efrain 21947
  .wd-xxl-15 {
21948
    width: 15px;
21949
  }
16848 stevensc 21950
 
16825 efrain 21951
  .wd-xxl-15p {
21952
    width: 15%;
21953
  }
16848 stevensc 21954
 
16825 efrain 21955
  .mx-wd-xxl-15p {
21956
    max-width: 15%;
21957
  }
16848 stevensc 21958
 
16825 efrain 21959
  .mn-wd-xxl-15p {
21960
    min-width: 15%;
21961
  }
16848 stevensc 21962
 
16825 efrain 21963
  .wd-xxl-15-f {
21964
    width: 15px !important;
21965
  }
16848 stevensc 21966
 
16825 efrain 21967
  .wd-xxl-15p-f {
21968
    width: 15% !important;
21969
  }
16848 stevensc 21970
 
16825 efrain 21971
  .mx-wd-xxl-15p-f {
21972
    max-width: 15% !important;
21973
  }
16848 stevensc 21974
 
16825 efrain 21975
  .mn-wd-xxl-15p-f {
21976
    min-width: 15% !important;
21977
  }
16848 stevensc 21978
 
16825 efrain 21979
  .wd-xxl-20 {
21980
    width: 20px;
21981
  }
16848 stevensc 21982
 
16825 efrain 21983
  .wd-xxl-20p {
21984
    width: 20%;
21985
  }
16848 stevensc 21986
 
16825 efrain 21987
  .mx-wd-xxl-20p {
21988
    max-width: 20%;
21989
  }
16848 stevensc 21990
 
16825 efrain 21991
  .mn-wd-xxl-20p {
21992
    min-width: 20%;
21993
  }
16848 stevensc 21994
 
16825 efrain 21995
  .wd-xxl-20-f {
21996
    width: 20px !important;
21997
  }
16848 stevensc 21998
 
16825 efrain 21999
  .wd-xxl-20p-f {
22000
    width: 20% !important;
22001
  }
16848 stevensc 22002
 
16825 efrain 22003
  .mx-wd-xxl-20p-f {
22004
    max-width: 20% !important;
22005
  }
16848 stevensc 22006
 
16825 efrain 22007
  .mn-wd-xxl-20p-f {
22008
    min-width: 20% !important;
22009
  }
16848 stevensc 22010
 
16825 efrain 22011
  .wd-xxl-25 {
22012
    width: 25px;
22013
  }
16848 stevensc 22014
 
16825 efrain 22015
  .wd-xxl-25p {
22016
    width: 25%;
22017
  }
16848 stevensc 22018
 
16825 efrain 22019
  .mx-wd-xxl-25p {
22020
    max-width: 25%;
22021
  }
16848 stevensc 22022
 
16825 efrain 22023
  .mn-wd-xxl-25p {
22024
    min-width: 25%;
22025
  }
16848 stevensc 22026
 
16825 efrain 22027
  .wd-xxl-25-f {
22028
    width: 25px !important;
22029
  }
16848 stevensc 22030
 
16825 efrain 22031
  .wd-xxl-25p-f {
22032
    width: 25% !important;
22033
  }
16848 stevensc 22034
 
16825 efrain 22035
  .mx-wd-xxl-25p-f {
22036
    max-width: 25% !important;
22037
  }
16848 stevensc 22038
 
16825 efrain 22039
  .mn-wd-xxl-25p-f {
22040
    min-width: 25% !important;
22041
  }
16848 stevensc 22042
 
16825 efrain 22043
  .wd-xxl-30 {
22044
    width: 30px;
22045
  }
16848 stevensc 22046
 
16825 efrain 22047
  .wd-xxl-30p {
22048
    width: 30%;
22049
  }
16848 stevensc 22050
 
16825 efrain 22051
  .mx-wd-xxl-30p {
22052
    max-width: 30%;
22053
  }
16848 stevensc 22054
 
16825 efrain 22055
  .mn-wd-xxl-30p {
22056
    min-width: 30%;
22057
  }
16848 stevensc 22058
 
16825 efrain 22059
  .wd-xxl-30-f {
22060
    width: 30px !important;
22061
  }
16848 stevensc 22062
 
16825 efrain 22063
  .wd-xxl-30p-f {
22064
    width: 30% !important;
22065
  }
16848 stevensc 22066
 
16825 efrain 22067
  .mx-wd-xxl-30p-f {
22068
    max-width: 30% !important;
22069
  }
16848 stevensc 22070
 
16825 efrain 22071
  .mn-wd-xxl-30p-f {
22072
    min-width: 30% !important;
22073
  }
16848 stevensc 22074
 
16825 efrain 22075
  .wd-xxl-35 {
22076
    width: 35px;
22077
  }
16848 stevensc 22078
 
16825 efrain 22079
  .wd-xxl-35p {
22080
    width: 35%;
22081
  }
16848 stevensc 22082
 
16825 efrain 22083
  .mx-wd-xxl-35p {
22084
    max-width: 35%;
22085
  }
16848 stevensc 22086
 
16825 efrain 22087
  .mn-wd-xxl-35p {
22088
    min-width: 35%;
22089
  }
16848 stevensc 22090
 
16825 efrain 22091
  .wd-xxl-35-f {
22092
    width: 35px !important;
22093
  }
16848 stevensc 22094
 
16825 efrain 22095
  .wd-xxl-35p-f {
22096
    width: 35% !important;
22097
  }
16848 stevensc 22098
 
16825 efrain 22099
  .mx-wd-xxl-35p-f {
22100
    max-width: 35% !important;
22101
  }
16848 stevensc 22102
 
16825 efrain 22103
  .mn-wd-xxl-35p-f {
22104
    min-width: 35% !important;
22105
  }
16848 stevensc 22106
 
16825 efrain 22107
  .wd-xxl-40 {
22108
    width: 40px;
22109
  }
16848 stevensc 22110
 
16825 efrain 22111
  .wd-xxl-40p {
22112
    width: 40%;
22113
  }
16848 stevensc 22114
 
16825 efrain 22115
  .mx-wd-xxl-40p {
22116
    max-width: 40%;
22117
  }
16848 stevensc 22118
 
16825 efrain 22119
  .mn-wd-xxl-40p {
22120
    min-width: 40%;
22121
  }
16848 stevensc 22122
 
16825 efrain 22123
  .wd-xxl-40-f {
22124
    width: 40px !important;
22125
  }
16848 stevensc 22126
 
16825 efrain 22127
  .wd-xxl-40p-f {
22128
    width: 40% !important;
22129
  }
16848 stevensc 22130
 
16825 efrain 22131
  .mx-wd-xxl-40p-f {
22132
    max-width: 40% !important;
22133
  }
16848 stevensc 22134
 
16825 efrain 22135
  .mn-wd-xxl-40p-f {
22136
    min-width: 40% !important;
22137
  }
16848 stevensc 22138
 
16825 efrain 22139
  .wd-xxl-45 {
22140
    width: 45px;
22141
  }
16848 stevensc 22142
 
16825 efrain 22143
  .wd-xxl-45p {
22144
    width: 45%;
22145
  }
16848 stevensc 22146
 
16825 efrain 22147
  .mx-wd-xxl-45p {
22148
    max-width: 45%;
22149
  }
16848 stevensc 22150
 
16825 efrain 22151
  .mn-wd-xxl-45p {
22152
    min-width: 45%;
22153
  }
16848 stevensc 22154
 
16825 efrain 22155
  .wd-xxl-45-f {
22156
    width: 45px !important;
22157
  }
16848 stevensc 22158
 
16825 efrain 22159
  .wd-xxl-45p-f {
22160
    width: 45% !important;
22161
  }
16848 stevensc 22162
 
16825 efrain 22163
  .mx-wd-xxl-45p-f {
22164
    max-width: 45% !important;
22165
  }
16848 stevensc 22166
 
16825 efrain 22167
  .mn-wd-xxl-45p-f {
22168
    min-width: 45% !important;
22169
  }
16848 stevensc 22170
 
16825 efrain 22171
  .wd-xxl-50 {
22172
    width: 50px;
22173
  }
16848 stevensc 22174
 
16825 efrain 22175
  .wd-xxl-50p {
22176
    width: 50%;
22177
  }
16848 stevensc 22178
 
16825 efrain 22179
  .mx-wd-xxl-50p {
22180
    max-width: 50%;
22181
  }
16848 stevensc 22182
 
16825 efrain 22183
  .mn-wd-xxl-50p {
22184
    min-width: 50%;
22185
  }
16848 stevensc 22186
 
16825 efrain 22187
  .wd-xxl-50-f {
22188
    width: 50px !important;
22189
  }
16848 stevensc 22190
 
16825 efrain 22191
  .wd-xxl-50p-f {
22192
    width: 50% !important;
22193
  }
16848 stevensc 22194
 
16825 efrain 22195
  .mx-wd-xxl-50p-f {
22196
    max-width: 50% !important;
22197
  }
16848 stevensc 22198
 
16825 efrain 22199
  .mn-wd-xxl-50p-f {
22200
    min-width: 50% !important;
22201
  }
16848 stevensc 22202
 
16825 efrain 22203
  .wd-xxl-55 {
22204
    width: 55px;
22205
  }
16848 stevensc 22206
 
16825 efrain 22207
  .wd-xxl-55p {
22208
    width: 55%;
22209
  }
16848 stevensc 22210
 
16825 efrain 22211
  .mx-wd-xxl-55p {
22212
    max-width: 55%;
22213
  }
16848 stevensc 22214
 
16825 efrain 22215
  .mn-wd-xxl-55p {
22216
    min-width: 55%;
22217
  }
16848 stevensc 22218
 
16825 efrain 22219
  .wd-xxl-55-f {
22220
    width: 55px !important;
22221
  }
16848 stevensc 22222
 
16825 efrain 22223
  .wd-xxl-55p-f {
22224
    width: 55% !important;
22225
  }
16848 stevensc 22226
 
16825 efrain 22227
  .mx-wd-xxl-55p-f {
22228
    max-width: 55% !important;
22229
  }
16848 stevensc 22230
 
16825 efrain 22231
  .mn-wd-xxl-55p-f {
22232
    min-width: 55% !important;
22233
  }
16848 stevensc 22234
 
16825 efrain 22235
  .wd-xxl-60 {
22236
    width: 60px;
22237
  }
16848 stevensc 22238
 
16825 efrain 22239
  .wd-xxl-60p {
22240
    width: 60%;
22241
  }
16848 stevensc 22242
 
16825 efrain 22243
  .mx-wd-xxl-60p {
22244
    max-width: 60%;
22245
  }
16848 stevensc 22246
 
16825 efrain 22247
  .mn-wd-xxl-60p {
22248
    min-width: 60%;
22249
  }
16848 stevensc 22250
 
16825 efrain 22251
  .wd-xxl-60-f {
22252
    width: 60px !important;
22253
  }
16848 stevensc 22254
 
16825 efrain 22255
  .wd-xxl-60p-f {
22256
    width: 60% !important;
22257
  }
16848 stevensc 22258
 
16825 efrain 22259
  .mx-wd-xxl-60p-f {
22260
    max-width: 60% !important;
22261
  }
16848 stevensc 22262
 
16825 efrain 22263
  .mn-wd-xxl-60p-f {
22264
    min-width: 60% !important;
22265
  }
16848 stevensc 22266
 
16825 efrain 22267
  .wd-xxl-65 {
22268
    width: 65px;
22269
  }
16848 stevensc 22270
 
16825 efrain 22271
  .wd-xxl-65p {
22272
    width: 65%;
22273
  }
16848 stevensc 22274
 
16825 efrain 22275
  .mx-wd-xxl-65p {
22276
    max-width: 65%;
22277
  }
16848 stevensc 22278
 
16825 efrain 22279
  .mn-wd-xxl-65p {
22280
    min-width: 65%;
22281
  }
16848 stevensc 22282
 
16825 efrain 22283
  .wd-xxl-65-f {
22284
    width: 65px !important;
22285
  }
16848 stevensc 22286
 
16825 efrain 22287
  .wd-xxl-65p-f {
22288
    width: 65% !important;
22289
  }
16848 stevensc 22290
 
16825 efrain 22291
  .mx-wd-xxl-65p-f {
22292
    max-width: 65% !important;
22293
  }
16848 stevensc 22294
 
16825 efrain 22295
  .mn-wd-xxl-65p-f {
22296
    min-width: 65% !important;
22297
  }
16848 stevensc 22298
 
16825 efrain 22299
  .wd-xxl-70 {
22300
    width: 70px;
22301
  }
16848 stevensc 22302
 
16825 efrain 22303
  .wd-xxl-70p {
22304
    width: 70%;
22305
  }
16848 stevensc 22306
 
16825 efrain 22307
  .mx-wd-xxl-70p {
22308
    max-width: 70%;
22309
  }
16848 stevensc 22310
 
16825 efrain 22311
  .mn-wd-xxl-70p {
22312
    min-width: 70%;
22313
  }
16848 stevensc 22314
 
16825 efrain 22315
  .wd-xxl-70-f {
22316
    width: 70px !important;
22317
  }
16848 stevensc 22318
 
16825 efrain 22319
  .wd-xxl-70p-f {
22320
    width: 70% !important;
22321
  }
16848 stevensc 22322
 
16825 efrain 22323
  .mx-wd-xxl-70p-f {
22324
    max-width: 70% !important;
22325
  }
16848 stevensc 22326
 
16825 efrain 22327
  .mn-wd-xxl-70p-f {
22328
    min-width: 70% !important;
22329
  }
16848 stevensc 22330
 
16825 efrain 22331
  .wd-xxl-75 {
22332
    width: 75px;
22333
  }
16848 stevensc 22334
 
16825 efrain 22335
  .wd-xxl-75p {
22336
    width: 75%;
22337
  }
16848 stevensc 22338
 
16825 efrain 22339
  .mx-wd-xxl-75p {
22340
    max-width: 75%;
22341
  }
16848 stevensc 22342
 
16825 efrain 22343
  .mn-wd-xxl-75p {
22344
    min-width: 75%;
22345
  }
16848 stevensc 22346
 
16825 efrain 22347
  .wd-xxl-75-f {
22348
    width: 75px !important;
22349
  }
16848 stevensc 22350
 
16825 efrain 22351
  .wd-xxl-75p-f {
22352
    width: 75% !important;
22353
  }
16848 stevensc 22354
 
16825 efrain 22355
  .mx-wd-xxl-75p-f {
22356
    max-width: 75% !important;
22357
  }
16848 stevensc 22358
 
16825 efrain 22359
  .mn-wd-xxl-75p-f {
22360
    min-width: 75% !important;
22361
  }
16848 stevensc 22362
 
16825 efrain 22363
  .wd-xxl-80 {
22364
    width: 80px;
22365
  }
16848 stevensc 22366
 
16825 efrain 22367
  .wd-xxl-80p {
22368
    width: 80%;
22369
  }
16848 stevensc 22370
 
16825 efrain 22371
  .mx-wd-xxl-80p {
22372
    max-width: 80%;
22373
  }
16848 stevensc 22374
 
16825 efrain 22375
  .mn-wd-xxl-80p {
22376
    min-width: 80%;
22377
  }
16848 stevensc 22378
 
16825 efrain 22379
  .wd-xxl-80-f {
22380
    width: 80px !important;
22381
  }
16848 stevensc 22382
 
16825 efrain 22383
  .wd-xxl-80p-f {
22384
    width: 80% !important;
22385
  }
16848 stevensc 22386
 
16825 efrain 22387
  .mx-wd-xxl-80p-f {
22388
    max-width: 80% !important;
22389
  }
16848 stevensc 22390
 
16825 efrain 22391
  .mn-wd-xxl-80p-f {
22392
    min-width: 80% !important;
22393
  }
16848 stevensc 22394
 
16825 efrain 22395
  .wd-xxl-85 {
22396
    width: 85px;
22397
  }
16848 stevensc 22398
 
16825 efrain 22399
  .wd-xxl-85p {
22400
    width: 85%;
22401
  }
16848 stevensc 22402
 
16825 efrain 22403
  .mx-wd-xxl-85p {
22404
    max-width: 85%;
22405
  }
16848 stevensc 22406
 
16825 efrain 22407
  .mn-wd-xxl-85p {
22408
    min-width: 85%;
22409
  }
16848 stevensc 22410
 
16825 efrain 22411
  .wd-xxl-85-f {
22412
    width: 85px !important;
22413
  }
16848 stevensc 22414
 
16825 efrain 22415
  .wd-xxl-85p-f {
22416
    width: 85% !important;
22417
  }
16848 stevensc 22418
 
16825 efrain 22419
  .mx-wd-xxl-85p-f {
22420
    max-width: 85% !important;
22421
  }
16848 stevensc 22422
 
16825 efrain 22423
  .mn-wd-xxl-85p-f {
22424
    min-width: 85% !important;
22425
  }
16848 stevensc 22426
 
16825 efrain 22427
  .wd-xxl-90 {
22428
    width: 90px;
22429
  }
16848 stevensc 22430
 
16825 efrain 22431
  .wd-xxl-90p {
22432
    width: 90%;
22433
  }
16848 stevensc 22434
 
16825 efrain 22435
  .mx-wd-xxl-90p {
22436
    max-width: 90%;
22437
  }
16848 stevensc 22438
 
16825 efrain 22439
  .mn-wd-xxl-90p {
22440
    min-width: 90%;
22441
  }
16848 stevensc 22442
 
16825 efrain 22443
  .wd-xxl-90-f {
22444
    width: 90px !important;
22445
  }
16848 stevensc 22446
 
16825 efrain 22447
  .wd-xxl-90p-f {
22448
    width: 90% !important;
22449
  }
16848 stevensc 22450
 
16825 efrain 22451
  .mx-wd-xxl-90p-f {
22452
    max-width: 90% !important;
22453
  }
16848 stevensc 22454
 
16825 efrain 22455
  .mn-wd-xxl-90p-f {
22456
    min-width: 90% !important;
22457
  }
16848 stevensc 22458
 
16825 efrain 22459
  .wd-xxl-95 {
22460
    width: 95px;
22461
  }
16848 stevensc 22462
 
16825 efrain 22463
  .wd-xxl-95p {
22464
    width: 95%;
22465
  }
16848 stevensc 22466
 
16825 efrain 22467
  .mx-wd-xxl-95p {
22468
    max-width: 95%;
22469
  }
16848 stevensc 22470
 
16825 efrain 22471
  .mn-wd-xxl-95p {
22472
    min-width: 95%;
22473
  }
16848 stevensc 22474
 
16825 efrain 22475
  .wd-xxl-95-f {
22476
    width: 95px !important;
22477
  }
16848 stevensc 22478
 
16825 efrain 22479
  .wd-xxl-95p-f {
22480
    width: 95% !important;
22481
  }
16848 stevensc 22482
 
16825 efrain 22483
  .mx-wd-xxl-95p-f {
22484
    max-width: 95% !important;
22485
  }
16848 stevensc 22486
 
16825 efrain 22487
  .mn-wd-xxl-95p-f {
22488
    min-width: 95% !important;
22489
  }
16848 stevensc 22490
 
16825 efrain 22491
  .wd-xxl-100 {
22492
    width: 100px;
22493
  }
16848 stevensc 22494
 
16825 efrain 22495
  .wd-xxl-100p {
22496
    width: 100%;
22497
  }
16848 stevensc 22498
 
16825 efrain 22499
  .mx-wd-xxl-100p {
22500
    max-width: 100%;
22501
  }
16848 stevensc 22502
 
16825 efrain 22503
  .mn-wd-xxl-100p {
22504
    min-width: 100%;
22505
  }
16848 stevensc 22506
 
16825 efrain 22507
  .wd-xxl-100-f {
22508
    width: 100px !important;
22509
  }
16848 stevensc 22510
 
16825 efrain 22511
  .wd-xxl-100p-f {
22512
    width: 100% !important;
22513
  }
16848 stevensc 22514
 
16825 efrain 22515
  .mx-wd-xxl-100p-f {
22516
    max-width: 100% !important;
22517
  }
16848 stevensc 22518
 
16825 efrain 22519
  .mn-wd-xxl-100p-f {
22520
    min-width: 100% !important;
22521
  }
16848 stevensc 22522
 
16825 efrain 22523
  .wd-xxl-150 {
22524
    width: 150px;
22525
  }
16848 stevensc 22526
 
16825 efrain 22527
  .wd-xxl-150p {
22528
    width: 150%;
22529
  }
16848 stevensc 22530
 
16825 efrain 22531
  .mx-wd-xxl-150p {
22532
    max-width: 150%;
22533
  }
16848 stevensc 22534
 
16825 efrain 22535
  .mn-wd-xxl-150p {
22536
    min-width: 150%;
22537
  }
16848 stevensc 22538
 
16825 efrain 22539
  .wd-xxl-150-f {
22540
    width: 150px !important;
22541
  }
16848 stevensc 22542
 
16825 efrain 22543
  .wd-xxl-150p-f {
22544
    width: 150% !important;
22545
  }
16848 stevensc 22546
 
16825 efrain 22547
  .mx-wd-xxl-150p-f {
22548
    max-width: 150% !important;
22549
  }
16848 stevensc 22550
 
16825 efrain 22551
  .mn-wd-xxl-150p-f {
22552
    min-width: 150% !important;
22553
  }
16848 stevensc 22554
 
16825 efrain 22555
  .wd-xxl-200 {
22556
    width: 200px;
22557
  }
16848 stevensc 22558
 
16825 efrain 22559
  .wd-xxl-200p {
22560
    width: 200%;
22561
  }
16848 stevensc 22562
 
16825 efrain 22563
  .mx-wd-xxl-200p {
22564
    max-width: 200%;
22565
  }
16848 stevensc 22566
 
16825 efrain 22567
  .mn-wd-xxl-200p {
22568
    min-width: 200%;
22569
  }
16848 stevensc 22570
 
16825 efrain 22571
  .wd-xxl-200-f {
22572
    width: 200px !important;
22573
  }
16848 stevensc 22574
 
16825 efrain 22575
  .wd-xxl-200p-f {
22576
    width: 200% !important;
22577
  }
16848 stevensc 22578
 
16825 efrain 22579
  .mx-wd-xxl-200p-f {
22580
    max-width: 200% !important;
22581
  }
16848 stevensc 22582
 
16825 efrain 22583
  .mn-wd-xxl-200p-f {
22584
    min-width: 200% !important;
22585
  }
16848 stevensc 22586
 
16825 efrain 22587
  .wd-xxl-250 {
22588
    width: 250px;
22589
  }
16848 stevensc 22590
 
16825 efrain 22591
  .wd-xxl-250p {
22592
    width: 250%;
22593
  }
16848 stevensc 22594
 
16825 efrain 22595
  .mx-wd-xxl-250p {
22596
    max-width: 250%;
22597
  }
16848 stevensc 22598
 
16825 efrain 22599
  .mn-wd-xxl-250p {
22600
    min-width: 250%;
22601
  }
16848 stevensc 22602
 
16825 efrain 22603
  .wd-xxl-250-f {
22604
    width: 250px !important;
22605
  }
16848 stevensc 22606
 
16825 efrain 22607
  .wd-xxl-250p-f {
22608
    width: 250% !important;
22609
  }
16848 stevensc 22610
 
16825 efrain 22611
  .mx-wd-xxl-250p-f {
22612
    max-width: 250% !important;
22613
  }
16848 stevensc 22614
 
16825 efrain 22615
  .mn-wd-xxl-250p-f {
22616
    min-width: 250% !important;
22617
  }
16848 stevensc 22618
 
16825 efrain 22619
  .wd-xxl-300 {
22620
    width: 300px;
22621
  }
16848 stevensc 22622
 
16825 efrain 22623
  .wd-xxl-300p {
22624
    width: 300%;
22625
  }
16848 stevensc 22626
 
16825 efrain 22627
  .mx-wd-xxl-300p {
22628
    max-width: 300%;
22629
  }
16848 stevensc 22630
 
16825 efrain 22631
  .mn-wd-xxl-300p {
22632
    min-width: 300%;
22633
  }
16848 stevensc 22634
 
16825 efrain 22635
  .wd-xxl-300-f {
22636
    width: 300px !important;
22637
  }
16848 stevensc 22638
 
16825 efrain 22639
  .wd-xxl-300p-f {
22640
    width: 300% !important;
22641
  }
16848 stevensc 22642
 
16825 efrain 22643
  .mx-wd-xxl-300p-f {
22644
    max-width: 300% !important;
22645
  }
16848 stevensc 22646
 
16825 efrain 22647
  .mn-wd-xxl-300p-f {
22648
    min-width: 300% !important;
22649
  }
16848 stevensc 22650
 
16825 efrain 22651
  .wd-xxl-350 {
22652
    width: 350px;
22653
  }
16848 stevensc 22654
 
16825 efrain 22655
  .wd-xxl-350p {
22656
    width: 350%;
22657
  }
16848 stevensc 22658
 
16825 efrain 22659
  .mx-wd-xxl-350p {
22660
    max-width: 350%;
22661
  }
16848 stevensc 22662
 
16825 efrain 22663
  .mn-wd-xxl-350p {
22664
    min-width: 350%;
22665
  }
16848 stevensc 22666
 
16825 efrain 22667
  .wd-xxl-350-f {
22668
    width: 350px !important;
22669
  }
16848 stevensc 22670
 
16825 efrain 22671
  .wd-xxl-350p-f {
22672
    width: 350% !important;
22673
  }
16848 stevensc 22674
 
16825 efrain 22675
  .mx-wd-xxl-350p-f {
22676
    max-width: 350% !important;
22677
  }
16848 stevensc 22678
 
16825 efrain 22679
  .mn-wd-xxl-350p-f {
22680
    min-width: 350% !important;
22681
  }
16848 stevensc 22682
 
16825 efrain 22683
  .wd-xxl-400 {
22684
    width: 400px;
22685
  }
16848 stevensc 22686
 
16825 efrain 22687
  .wd-xxl-400p {
22688
    width: 400%;
22689
  }
16848 stevensc 22690
 
16825 efrain 22691
  .mx-wd-xxl-400p {
22692
    max-width: 400%;
22693
  }
16848 stevensc 22694
 
16825 efrain 22695
  .mn-wd-xxl-400p {
22696
    min-width: 400%;
22697
  }
16848 stevensc 22698
 
16825 efrain 22699
  .wd-xxl-400-f {
22700
    width: 400px !important;
22701
  }
16848 stevensc 22702
 
16825 efrain 22703
  .wd-xxl-400p-f {
22704
    width: 400% !important;
22705
  }
16848 stevensc 22706
 
16825 efrain 22707
  .mx-wd-xxl-400p-f {
22708
    max-width: 400% !important;
22709
  }
16848 stevensc 22710
 
16825 efrain 22711
  .mn-wd-xxl-400p-f {
22712
    min-width: 400% !important;
22713
  }
16848 stevensc 22714
 
16825 efrain 22715
  .wd-xxl-450 {
22716
    width: 450px;
22717
  }
16848 stevensc 22718
 
16825 efrain 22719
  .wd-xxl-450p {
22720
    width: 450%;
22721
  }
16848 stevensc 22722
 
16825 efrain 22723
  .mx-wd-xxl-450p {
22724
    max-width: 450%;
22725
  }
16848 stevensc 22726
 
16825 efrain 22727
  .mn-wd-xxl-450p {
22728
    min-width: 450%;
22729
  }
16848 stevensc 22730
 
16825 efrain 22731
  .wd-xxl-450-f {
22732
    width: 450px !important;
22733
  }
16848 stevensc 22734
 
16825 efrain 22735
  .wd-xxl-450p-f {
22736
    width: 450% !important;
22737
  }
16848 stevensc 22738
 
16825 efrain 22739
  .mx-wd-xxl-450p-f {
22740
    max-width: 450% !important;
22741
  }
16848 stevensc 22742
 
16825 efrain 22743
  .mn-wd-xxl-450p-f {
22744
    min-width: 450% !important;
22745
  }
16848 stevensc 22746
 
16825 efrain 22747
  .wd-xxl-500 {
22748
    width: 500px;
22749
  }
16848 stevensc 22750
 
16825 efrain 22751
  .wd-xxl-500p {
22752
    width: 500%;
22753
  }
16848 stevensc 22754
 
16825 efrain 22755
  .mx-wd-xxl-500p {
22756
    max-width: 500%;
22757
  }
16848 stevensc 22758
 
16825 efrain 22759
  .mn-wd-xxl-500p {
22760
    min-width: 500%;
22761
  }
16848 stevensc 22762
 
16825 efrain 22763
  .wd-xxl-500-f {
22764
    width: 500px !important;
22765
  }
16848 stevensc 22766
 
16825 efrain 22767
  .wd-xxl-500p-f {
22768
    width: 500% !important;
22769
  }
16848 stevensc 22770
 
16825 efrain 22771
  .mx-wd-xxl-500p-f {
22772
    max-width: 500% !important;
22773
  }
16848 stevensc 22774
 
16825 efrain 22775
  .mn-wd-xxl-500p-f {
22776
    min-width: 500% !important;
22777
  }
16848 stevensc 22778
 
16825 efrain 22779
  .wd-xxl-550 {
22780
    width: 550px;
22781
  }
16848 stevensc 22782
 
16825 efrain 22783
  .wd-xxl-550p {
22784
    width: 550%;
22785
  }
16848 stevensc 22786
 
16825 efrain 22787
  .mx-wd-xxl-550p {
22788
    max-width: 550%;
22789
  }
16848 stevensc 22790
 
16825 efrain 22791
  .mn-wd-xxl-550p {
22792
    min-width: 550%;
22793
  }
16848 stevensc 22794
 
16825 efrain 22795
  .wd-xxl-550-f {
22796
    width: 550px !important;
22797
  }
16848 stevensc 22798
 
16825 efrain 22799
  .wd-xxl-550p-f {
22800
    width: 550% !important;
22801
  }
16848 stevensc 22802
 
16825 efrain 22803
  .mx-wd-xxl-550p-f {
22804
    max-width: 550% !important;
22805
  }
16848 stevensc 22806
 
16825 efrain 22807
  .mn-wd-xxl-550p-f {
22808
    min-width: 550% !important;
22809
  }
16848 stevensc 22810
 
16825 efrain 22811
  .wd-xxl-600 {
22812
    width: 600px;
22813
  }
16848 stevensc 22814
 
16825 efrain 22815
  .wd-xxl-600p {
22816
    width: 600%;
22817
  }
16848 stevensc 22818
 
16825 efrain 22819
  .mx-wd-xxl-600p {
22820
    max-width: 600%;
22821
  }
16848 stevensc 22822
 
16825 efrain 22823
  .mn-wd-xxl-600p {
22824
    min-width: 600%;
22825
  }
16848 stevensc 22826
 
16825 efrain 22827
  .wd-xxl-600-f {
22828
    width: 600px !important;
22829
  }
16848 stevensc 22830
 
16825 efrain 22831
  .wd-xxl-600p-f {
22832
    width: 600% !important;
22833
  }
16848 stevensc 22834
 
16825 efrain 22835
  .mx-wd-xxl-600p-f {
22836
    max-width: 600% !important;
22837
  }
16848 stevensc 22838
 
16825 efrain 22839
  .mn-wd-xxl-600p-f {
22840
    min-width: 600% !important;
22841
  }
16848 stevensc 22842
 
16825 efrain 22843
  .wd-xxl-650 {
22844
    width: 650px;
22845
  }
16848 stevensc 22846
 
16825 efrain 22847
  .wd-xxl-650p {
22848
    width: 650%;
22849
  }
16848 stevensc 22850
 
16825 efrain 22851
  .mx-wd-xxl-650p {
22852
    max-width: 650%;
22853
  }
16848 stevensc 22854
 
16825 efrain 22855
  .mn-wd-xxl-650p {
22856
    min-width: 650%;
22857
  }
16848 stevensc 22858
 
16825 efrain 22859
  .wd-xxl-650-f {
22860
    width: 650px !important;
22861
  }
16848 stevensc 22862
 
16825 efrain 22863
  .wd-xxl-650p-f {
22864
    width: 650% !important;
22865
  }
16848 stevensc 22866
 
16825 efrain 22867
  .mx-wd-xxl-650p-f {
22868
    max-width: 650% !important;
22869
  }
16848 stevensc 22870
 
16825 efrain 22871
  .mn-wd-xxl-650p-f {
22872
    min-width: 650% !important;
22873
  }
16848 stevensc 22874
 
16825 efrain 22875
  .wd-xxl-700 {
22876
    width: 700px;
22877
  }
16848 stevensc 22878
 
16825 efrain 22879
  .wd-xxl-700p {
22880
    width: 700%;
22881
  }
16848 stevensc 22882
 
16825 efrain 22883
  .mx-wd-xxl-700p {
22884
    max-width: 700%;
22885
  }
16848 stevensc 22886
 
16825 efrain 22887
  .mn-wd-xxl-700p {
22888
    min-width: 700%;
22889
  }
16848 stevensc 22890
 
16825 efrain 22891
  .wd-xxl-700-f {
22892
    width: 700px !important;
22893
  }
16848 stevensc 22894
 
16825 efrain 22895
  .wd-xxl-700p-f {
22896
    width: 700% !important;
22897
  }
16848 stevensc 22898
 
16825 efrain 22899
  .mx-wd-xxl-700p-f {
22900
    max-width: 700% !important;
22901
  }
16848 stevensc 22902
 
16825 efrain 22903
  .mn-wd-xxl-700p-f {
22904
    min-width: 700% !important;
22905
  }
16848 stevensc 22906
 
16825 efrain 22907
  .wd-xxl-750 {
22908
    width: 750px;
22909
  }
16848 stevensc 22910
 
16825 efrain 22911
  .wd-xxl-750p {
22912
    width: 750%;
22913
  }
16848 stevensc 22914
 
16825 efrain 22915
  .mx-wd-xxl-750p {
22916
    max-width: 750%;
22917
  }
16848 stevensc 22918
 
16825 efrain 22919
  .mn-wd-xxl-750p {
22920
    min-width: 750%;
22921
  }
16848 stevensc 22922
 
16825 efrain 22923
  .wd-xxl-750-f {
22924
    width: 750px !important;
22925
  }
16848 stevensc 22926
 
16825 efrain 22927
  .wd-xxl-750p-f {
22928
    width: 750% !important;
22929
  }
16848 stevensc 22930
 
16825 efrain 22931
  .mx-wd-xxl-750p-f {
22932
    max-width: 750% !important;
22933
  }
16848 stevensc 22934
 
16825 efrain 22935
  .mn-wd-xxl-750p-f {
22936
    min-width: 750% !important;
22937
  }
16848 stevensc 22938
 
16825 efrain 22939
  .wd-xxl-800 {
22940
    width: 800px;
22941
  }
16848 stevensc 22942
 
16825 efrain 22943
  .wd-xxl-800p {
22944
    width: 800%;
22945
  }
16848 stevensc 22946
 
16825 efrain 22947
  .mx-wd-xxl-800p {
22948
    max-width: 800%;
22949
  }
16848 stevensc 22950
 
16825 efrain 22951
  .mn-wd-xxl-800p {
22952
    min-width: 800%;
22953
  }
16848 stevensc 22954
 
16825 efrain 22955
  .wd-xxl-800-f {
22956
    width: 800px !important;
22957
  }
16848 stevensc 22958
 
16825 efrain 22959
  .wd-xxl-800p-f {
22960
    width: 800% !important;
22961
  }
16848 stevensc 22962
 
16825 efrain 22963
  .mx-wd-xxl-800p-f {
22964
    max-width: 800% !important;
22965
  }
16848 stevensc 22966
 
16825 efrain 22967
  .mn-wd-xxl-800p-f {
22968
    min-width: 800% !important;
22969
  }
16848 stevensc 22970
 
16825 efrain 22971
  .wd-xxl-850 {
22972
    width: 850px;
22973
  }
16848 stevensc 22974
 
16825 efrain 22975
  .wd-xxl-850p {
22976
    width: 850%;
22977
  }
16848 stevensc 22978
 
16825 efrain 22979
  .mx-wd-xxl-850p {
22980
    max-width: 850%;
22981
  }
16848 stevensc 22982
 
16825 efrain 22983
  .mn-wd-xxl-850p {
22984
    min-width: 850%;
22985
  }
16848 stevensc 22986
 
16825 efrain 22987
  .wd-xxl-850-f {
22988
    width: 850px !important;
22989
  }
16848 stevensc 22990
 
16825 efrain 22991
  .wd-xxl-850p-f {
22992
    width: 850% !important;
22993
  }
16848 stevensc 22994
 
16825 efrain 22995
  .mx-wd-xxl-850p-f {
22996
    max-width: 850% !important;
22997
  }
16848 stevensc 22998
 
16825 efrain 22999
  .mn-wd-xxl-850p-f {
23000
    min-width: 850% !important;
23001
  }
16848 stevensc 23002
 
16825 efrain 23003
  .wd-xxl-900 {
23004
    width: 900px;
23005
  }
16848 stevensc 23006
 
16825 efrain 23007
  .wd-xxl-900p {
23008
    width: 900%;
23009
  }
16848 stevensc 23010
 
16825 efrain 23011
  .mx-wd-xxl-900p {
23012
    max-width: 900%;
23013
  }
16848 stevensc 23014
 
16825 efrain 23015
  .mn-wd-xxl-900p {
23016
    min-width: 900%;
23017
  }
16848 stevensc 23018
 
16825 efrain 23019
  .wd-xxl-900-f {
23020
    width: 900px !important;
23021
  }
16848 stevensc 23022
 
16825 efrain 23023
  .wd-xxl-900p-f {
23024
    width: 900% !important;
23025
  }
16848 stevensc 23026
 
16825 efrain 23027
  .mx-wd-xxl-900p-f {
23028
    max-width: 900% !important;
23029
  }
16848 stevensc 23030
 
16825 efrain 23031
  .mn-wd-xxl-900p-f {
23032
    min-width: 900% !important;
23033
  }
16848 stevensc 23034
 
16825 efrain 23035
  .wd-xxl-950 {
23036
    width: 950px;
23037
  }
16848 stevensc 23038
 
16825 efrain 23039
  .wd-xxl-950p {
23040
    width: 950%;
23041
  }
16848 stevensc 23042
 
16825 efrain 23043
  .mx-wd-xxl-950p {
23044
    max-width: 950%;
23045
  }
16848 stevensc 23046
 
16825 efrain 23047
  .mn-wd-xxl-950p {
23048
    min-width: 950%;
23049
  }
16848 stevensc 23050
 
16825 efrain 23051
  .wd-xxl-950-f {
23052
    width: 950px !important;
23053
  }
16848 stevensc 23054
 
16825 efrain 23055
  .wd-xxl-950p-f {
23056
    width: 950% !important;
23057
  }
16848 stevensc 23058
 
16825 efrain 23059
  .mx-wd-xxl-950p-f {
23060
    max-width: 950% !important;
23061
  }
16848 stevensc 23062
 
16825 efrain 23063
  .mn-wd-xxl-950p-f {
23064
    min-width: 950% !important;
23065
  }
16848 stevensc 23066
 
16825 efrain 23067
  .wd-xxl-1000 {
23068
    width: 1000px;
23069
  }
16848 stevensc 23070
 
16825 efrain 23071
  .wd-xxl-1000p {
23072
    width: 1000%;
23073
  }
16848 stevensc 23074
 
16825 efrain 23075
  .mx-wd-xxl-1000p {
23076
    max-width: 1000%;
23077
  }
16848 stevensc 23078
 
16825 efrain 23079
  .mn-wd-xxl-1000p {
23080
    min-width: 1000%;
23081
  }
16848 stevensc 23082
 
16825 efrain 23083
  .wd-xxl-1000-f {
23084
    width: 1000px !important;
23085
  }
16848 stevensc 23086
 
16825 efrain 23087
  .wd-xxl-1000p-f {
23088
    width: 1000% !important;
23089
  }
16848 stevensc 23090
 
16825 efrain 23091
  .mx-wd-xxl-1000p-f {
23092
    max-width: 1000% !important;
23093
  }
16848 stevensc 23094
 
16825 efrain 23095
  .mn-wd-xxl-1000p-f {
23096
    min-width: 1000% !important;
23097
  }
16848 stevensc 23098
 
16825 efrain 23099
  .wd-xxl-auto {
23100
    width: auto;
23101
  }
16848 stevensc 23102
 
16825 efrain 23103
  .wd-xxl-auto {
23104
    width: auto !important;
23105
  }
23106
}
16848 stevensc 23107
 
16825 efrain 23108
.bg-facebook {
23109
  background: social-color("facebook");
23110
}
23111
 
23112
.bg-twitter {
23113
  background: social-color("twitter");
23114
}
23115
 
23116
.bg-google {
23117
  background: social-color("google");
23118
}
23119
 
23120
.bg-youtube {
23121
  background: social-color("youtube");
23122
}
23123
 
23124
.bg-vimeo {
23125
  background: social-color("vimeo");
23126
}
23127
 
23128
.bg-dribbble {
23129
  background: social-color("dribbble");
23130
}
23131
 
23132
.bg-github {
23133
  background: social-color("github");
23134
}
23135
 
23136
.bg-instagram {
23137
  background: social-color("instagram");
23138
}
23139
 
23140
.bg-pinterest {
23141
  background: social-color("pinterest");
23142
}
23143
 
23144
.bg-flickr {
23145
  background: social-color("flickr");
23146
}
23147
 
23148
.bg-bitbucket {
23149
  background: social-color("bitbucket");
23150
}
23151
 
23152
.bg-linkedin {
23153
  background: social-color("linkedin");
23154
}
23155
 
23156
body {
23157
  margin: 0;
23158
  padding: 0;
23159
}
23160
 
16848 stevensc 23161
.btn,
23162
.wizard>.actions a,
23163
.wizard>.actions a:active,
23164
.wizard>.actions a:hover,
23165
div.tox .tox-button,
23166
.swal2-popup .swal2-actions button,
23167
.fc .fc-button-primary,
16825 efrain 23168
.btn-group.open .dropdown-toggle,
23169
.btn:active,
23170
.btn:focus,
23171
.btn:hover,
23172
.btn:visited,
23173
a,
23174
a:active,
23175
a:checked,
23176
a:focus,
23177
a:hover,
23178
a:visited,
23179
body,
23180
button,
23181
button:active,
23182
button:hover,
23183
button:visited,
23184
div,
23185
input,
23186
input:active,
23187
input:hover,
23188
input:focus,
23189
input:visited,
23190
select,
23191
select:active,
23192
select:focus,
23193
select:visited,
23194
textarea,
23195
textarea:active,
23196
textarea:focus,
23197
textarea:visited {
23198
  -webkit-box-shadow: none;
23199
  -moz-box-shadow: none;
23200
  box-shadow: none;
23201
}
23202
 
23203
select,
23204
.form-check-input {
16848 stevensc 23205
  appearance: none;
16825 efrain 23206
  -moz-appearance: none;
23207
}
23208
 
23209
input:-webkit-autofill,
23210
input:-webkit-autofill:hover,
23211
input:-webkit-autofill:focus,
23212
input:-webkit-autofill:active {
23213
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23214
  -webkit-text-fill-color: #000;
23215
}
23216
 
23217
*:-moz-full-screen,
23218
*:-webkit-full-screen,
23219
*:fullscreen *:-ms-full-screen {
23220
  overflow: auto;
23221
}
23222
 
23223
pre {
23224
  background-color: color(gray-lighter);
23225
  padding: 15px;
23226
  font-size: 14px;
23227
}
23228
 
23229
code {
23230
  padding: 5px;
23231
  font-family: "Roboto", Helvetica, sans-serif;
23232
  font-weight: 400;
23233
  font-size: 0.875rem;
23234
  border-radius: 4px;
23235
}
23236
 
23237
.grid-margin {
23238
  margin-bottom: 1.5rem;
23239
}
23240
 
23241
@media (min-width: 576px) {
23242
  .grid-margin-sm-0 {
23243
    margin-bottom: 0;
23244
  }
23245
}
23246
 
23247
@media (min-width: 768px) {
23248
  .grid-margin-md-0 {
23249
    margin-bottom: 0;
23250
  }
23251
}
23252
 
23253
@media (min-width: 992px) {
23254
  .grid-margin-lg-0 {
23255
    margin-bottom: 0;
23256
  }
23257
}
23258
 
23259
@media (min-width: 1200px) {
23260
  .grid-margin-xl-0 {
23261
    margin-bottom: 0;
23262
  }
23263
}
23264
 
23265
.stretch-card {
23266
  display: flex;
23267
  align-items: stretch;
23268
  justify-content: stretch;
23269
}
16848 stevensc 23270
 
23271
.stretch-card>.card {
16825 efrain 23272
  width: 100%;
23273
  min-width: 100%;
23274
}
23275
 
23276
.img-lg {
23277
  width: 92px;
23278
  height: 92px;
23279
}
23280
 
23281
.img-md {
23282
  width: 75px;
23283
  height: 92px;
23284
}
23285
 
23286
.img-sm {
23287
  width: 43px;
23288
  height: 43px;
23289
}
23290
 
23291
.img-xs {
23292
  width: 36px;
23293
  height: 36px;
23294
}
23295
 
23296
.img-ss {
23297
  width: 26px;
23298
  height: 26px;
23299
}
23300
 
23301
.fw-boldest {
23302
  font-weight: 900;
23303
}
23304
 
23305
.tx-10 {
23306
  font-size: 10px;
23307
}
23308
 
23309
.tx-11 {
23310
  font-size: 11px;
23311
}
23312
 
23313
.tx-12 {
23314
  font-size: 12px;
23315
}
23316
 
23317
.tx-13 {
23318
  font-size: 13px;
23319
}
23320
 
23321
.tx-14 {
23322
  font-size: 14px;
23323
}
23324
 
23325
.tx-16 {
23326
  font-size: 16px;
23327
}
23328
 
23329
.tx-80 {
23330
  font-size: 80px;
23331
}
23332
 
23333
svg.icon-xs {
23334
  width: 12px;
23335
  height: 12px;
23336
}
23337
 
23338
svg.icon-sm {
23339
  width: 14px;
23340
  height: 14px;
23341
}
23342
 
23343
svg.icon-md {
23344
  width: 16px;
23345
  height: 16px;
23346
}
23347
 
23348
svg.icon-lg {
23349
  width: 20px;
23350
  height: 20px;
23351
}
23352
 
23353
svg.icon-xl {
23354
  width: 26px;
23355
  height: 26px;
23356
}
23357
 
23358
svg.icon-xxl {
23359
  width: 40px;
23360
  height: 40px;
23361
}
23362
 
23363
.icon-xs {
23364
  font-size: 14px;
23365
}
23366
 
23367
.icon-sm {
23368
  font-size: 16px;
23369
}
23370
 
23371
.icon-md {
23372
  font-size: 18px;
23373
}
23374
 
23375
.icon-lg {
23376
  font-size: 20px;
23377
}
23378
 
23379
.icon-xl {
23380
  font-size: 24px;
23381
}
23382
 
23383
.icon-xxl {
23384
  font-size: 30px;
23385
}
23386
 
23387
.cursor-pointer {
23388
  cursor: pointer;
23389
}
23390
 
23391
.cursor-default {
23392
  cursor: default;
23393
}
23394
 
23395
.pt-1px {
23396
  padding-top: 1px;
23397
}
23398
 
23399
.pt-2px {
23400
  padding-top: 2px;
23401
}
23402
 
23403
.pt-3px {
23404
  padding-top: 3px;
23405
}
23406
 
23407
.pb-1px {
23408
  padding-bottom: 1px;
23409
}
23410
 
23411
.pb-2px {
23412
  padding-bottom: 2px;
23413
}
23414
 
23415
.pb-3px {
23416
  padding-bottom: 3px;
23417
}
23418
 
23419
.mt-1px {
23420
  margin-top: 1px;
23421
}
23422
 
23423
.mt-2px {
23424
  margin-top: 2px;
23425
}
23426
 
23427
.mt-3px {
23428
  margin-top: 3px;
23429
}
23430
 
23431
.mb-1px {
23432
  margin-bottom: 1px;
23433
}
23434
 
23435
.mb-2px {
23436
  margin-bottom: 2px;
23437
}
23438
 
23439
.mb-3px {
23440
  margin-bottom: 3px;
23441
}
23442
 
23443
.ht-5 {
23444
  height: 5px;
23445
}
23446
 
23447
.ht-10 {
23448
  height: 10px;
23449
}
23450
 
23451
.ht-15 {
23452
  height: 15px;
23453
}
23454
 
23455
.ht-20 {
23456
  height: 20px;
23457
}
23458
 
23459
.ht-30 {
23460
  height: 30px;
23461
}
23462
 
23463
.ht-40 {
23464
  height: 40px;
23465
}
23466
 
23467
.ht-50 {
23468
  height: 50px;
23469
}
23470
 
23471
.ht-60 {
23472
  height: 60px;
23473
}
23474
 
23475
.ht-70 {
23476
  height: 70px;
23477
}
23478
 
23479
.ht-80 {
23480
  height: 80px;
23481
}
23482
 
23483
.ht-90 {
23484
  height: 90px;
23485
}
23486
 
23487
.ht-100 {
23488
  height: 100px;
23489
}
23490
 
23491
body {
23492
  -webkit-font-smoothing: antialiased;
23493
  -moz-osx-font-smoothing: grayscale;
23494
}
23495
 
23496
.text-facebook {
23497
  color: #3b5998;
23498
}
23499
 
23500
.text-twitter {
23501
  color: #1da1f2;
23502
}
23503
 
23504
.text-google {
23505
  color: #dc4e41;
23506
}
23507
 
23508
.text-youtube {
23509
  color: #f00;
23510
}
23511
 
23512
.text-vimeo {
23513
  color: #1ab7ea;
23514
}
23515
 
23516
.text-dribbble {
23517
  color: #ea4c89;
23518
}
23519
 
23520
.text-github {
23521
  color: #181717;
23522
}
23523
 
23524
.text-instagram {
23525
  color: #e4405f;
23526
}
23527
 
23528
.text-pinterest {
23529
  color: #bd081c;
23530
}
23531
 
23532
.text-flickr {
23533
  color: #0063dc;
23534
}
23535
 
23536
.text-bitbucket {
23537
  color: #0052cc;
23538
}
23539
 
23540
.text-linkedin {
23541
  color: #0077b5;
23542
}
23543
 
23544
.main-content {
23545
  color: #000;
23546
  font-size: 16px;
23547
}
16848 stevensc 23548
 
23549
.main-content>.page-title {
16825 efrain 23550
  margin-bottom: 1rem;
23551
  font-weight: 400;
23552
}
16848 stevensc 23553
 
23554
.main-content>h4,
23555
.main-content>.h4 {
16825 efrain 23556
  margin-top: 1.5rem;
23557
  margin-bottom: 0.875rem;
23558
}
16848 stevensc 23559
 
23560
.main-content>h4::before,
23561
.main-content>.h4::before {
16825 efrain 23562
  display: block;
23563
  height: 5.4rem;
23564
  margin-top: -6rem;
23565
  content: "";
23566
}
16848 stevensc 23567
 
23568
.main-content>hr {
16825 efrain 23569
  margin-top: 40px;
23570
  margin-bottom: 40px;
23571
}
16848 stevensc 23572
 
16825 efrain 23573
.main-content .example {
23574
  font-size: 0.875rem;
23575
  letter-spacing: normal;
23576
  padding: 10px;
23577
  background-color: #fff;
23578
  border: 4px solid #e9ecef;
23579
  position: relative;
23580
}
16848 stevensc 23581
 
16825 efrain 23582
@media (min-width: 576px) {
23583
  .main-content .example {
23584
    padding: 25px;
23585
  }
23586
}
16848 stevensc 23587
 
16825 efrain 23588
.main-content .highlight {
23589
  position: relative;
23590
  background-color: #fff;
23591
  padding: 15px;
23592
}
16848 stevensc 23593
 
16825 efrain 23594
.main-content .highlight pre {
23595
  padding: 15px;
23596
  font-size: 0.875rem;
23597
  font-family: "Roboto", Helvetica, sans-serif;
23598
  background: transparent;
23599
  line-height: 1.4;
23600
  margin: 0;
23601
}
16848 stevensc 23602
 
16825 efrain 23603
.main-content .highlight pre code {
23604
  font-family: "Roboto", Helvetica, sans-serif;
23605
  padding: 0;
23606
  tab-size: 8;
23607
  color: #000;
23608
  text-shadow: none;
23609
}
16848 stevensc 23610
 
23611
.main-content .highlight pre code .token.url,
23612
.main-content .highlight pre code .token.string,
23613
.main-content .highlight pre code .token.entity,
23614
.main-content .highlight pre code .token.operator {
16825 efrain 23615
  background: none;
23616
}
16848 stevensc 23617
 
16825 efrain 23618
.main-content .highlight .btn-clipboard {
23619
  position: absolute;
23620
  top: 6px;
23621
  right: 6px;
23622
  font-size: 12px;
23623
  padding: 1px 6px;
23624
  background: rgba(101, 113, 255, 0.2);
23625
}
16848 stevensc 23626
 
23627
.main-content .highlight .btn-clipboard:hover,
23628
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23629
  background: rgba(101, 113, 255, 0.3);
23630
  border-color: transparent;
23631
  transition: background 0.3s ease-in-out;
23632
}
23633
 
16848 stevensc 23634
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23635
  margin-top: 0.5rem;
23636
}
16848 stevensc 23637
 
16825 efrain 23638
.example .modal.static {
23639
  position: static;
23640
  display: block;
23641
}
16848 stevensc 23642
 
16825 efrain 23643
.example .navbar {
23644
  position: relative;
23645
  padding: 0.5rem 1rem;
23646
  left: auto;
23647
  width: 100%;
23648
  height: auto;
23649
  z-index: 9;
23650
  border-bottom: 0;
23651
  box-shadow: none;
23652
}
16848 stevensc 23653
 
16825 efrain 23654
.example .navbar .navbar-brand {
23655
  font-size: 1.25rem;
23656
}
16848 stevensc 23657
 
23658
.example .progress+.progress {
16825 efrain 23659
  margin-top: 10px;
23660
}
16848 stevensc 23661
 
16825 efrain 23662
.example .perfect-scrollbar-example {
23663
  position: relative;
23664
  max-height: 250px;
23665
  background: #fff;
23666
}
16848 stevensc 23667
 
16825 efrain 23668
.example .scrollspy-example {
23669
  position: relative;
23670
  height: 200px;
23671
  margin-top: 0.5rem;
23672
  overflow: auto;
23673
}
16848 stevensc 23674
 
16825 efrain 23675
.example .scrollspy-example-2 {
23676
  position: relative;
23677
  height: 350px;
23678
  overflow: auto;
23679
}
16848 stevensc 23680
 
16825 efrain 23681
.example nav .breadcrumb {
23682
  margin-bottom: 0.75rem;
23683
}
16848 stevensc 23684
 
16825 efrain 23685
.example nav:last-child .breadcrumb {
23686
  margin-bottom: 0;
23687
}
23688
 
23689
.page-breadcrumb {
23690
  margin-bottom: 15px;
23691
}
16848 stevensc 23692
 
16825 efrain 23693
.page-breadcrumb .breadcrumb {
23694
  padding: 0;
23695
  background: #f9fafb;
23696
}
23697
 
23698
.noble-ui-logo {
23699
  font-weight: 700;
23700
  font-size: 25px;
23701
  color: #000865;
23702
}
16848 stevensc 23703
 
16825 efrain 23704
.noble-ui-logo span {
23705
  color: #6571ff;
23706
  font-weight: 300;
23707
}
16848 stevensc 23708
 
16825 efrain 23709
.noble-ui-logo:hover {
23710
  color: #000865;
23711
}
16848 stevensc 23712
 
16825 efrain 23713
.noble-ui-logo.logo-light {
23714
  color: #000;
23715
}
23716
 
23717
.buy-now-wrapper {
23718
  position: fixed;
23719
  bottom: 30px;
23720
  right: 35px;
23721
  z-index: 99999;
23722
}
16848 stevensc 23723
 
16825 efrain 23724
.rtl .buy-now-wrapper {
23725
  right: auto;
23726
  left: 35px;
23727
}
16848 stevensc 23728
 
23729
.buy-now-wrapper .btn svg,
23730
.buy-now-wrapper .wizard>.actions a svg,
23731
.wizard>.actions .buy-now-wrapper a svg,
23732
.buy-now-wrapper div.tox .tox-button svg,
23733
div.tox .buy-now-wrapper .tox-button svg,
23734
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23735
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23736
.buy-now-wrapper .fc .fc-button-primary svg,
23737
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23738
  width: 19px !important;
23739
  height: 19px !important;
23740
}
23741
 
23742
.main-wrapper .page-wrapper {
23743
  min-height: 100vh;
23744
  background: #f9fafb;
23745
  width: calc(100% - 240px);
23746
  margin-left: 240px;
23747
  display: flex;
23748
  flex-direction: column;
23749
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23750
  transition: margin 0.1s ease, width 0.1s ease;
23751
}
16848 stevensc 23752
 
16825 efrain 23753
.main-wrapper .page-wrapper .page-content {
23754
  flex-grow: 1;
23755
  padding: 25px;
23756
  margin-top: 60px;
23757
}
16848 stevensc 23758
 
16825 efrain 23759
@media (max-width: 767px) {
23760
  .main-wrapper .page-wrapper .page-content {
23761
    padding: 25px 15px;
23762
  }
23763
}
16848 stevensc 23764
 
16825 efrain 23765
.main-wrapper .page-wrapper.full-page {
23766
  width: 100%;
23767
  margin-left: 0;
23768
}
16848 stevensc 23769
 
16825 efrain 23770
.main-wrapper .page-wrapper.full-page .page-content {
23771
  margin-top: 0;
23772
}
16848 stevensc 23773
 
16825 efrain 23774
@media (max-width: 991px) {
23775
  .main-wrapper .page-wrapper {
23776
    margin-left: 0;
23777
    width: 100%;
23778
  }
23779
}
23780
 
23781
.page-content .content-nav-wrapper {
23782
  padding: 0;
23783
  position: sticky;
23784
  top: 80px;
23785
  height: calc(100vh - 6rem);
23786
  overflow-y: auto;
23787
  border-left: 1px solid #e9ecef;
23788
  display: none;
23789
}
16848 stevensc 23790
 
16825 efrain 23791
@media (min-width: 1200px) {
23792
  .page-content .content-nav-wrapper {
23793
    display: block;
23794
  }
23795
}
16848 stevensc 23796
 
16825 efrain 23797
.page-content .content-nav-wrapper .content-nav {
23798
  padding: 0px 25px;
23799
}
16848 stevensc 23800
 
16825 efrain 23801
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23802
  padding: 0;
23803
  height: 30px;
23804
  white-space: nowrap;
23805
  color: #7987a1;
23806
  display: flex;
23807
  align-items: center;
23808
}
23809
 
23810
.navbar {
23811
  width: calc(100% - 240px);
23812
  height: 60px;
23813
  background: #fff;
23814
  border-bottom: 1px solid #e9ecef;
23815
  display: flex;
23816
  align-items: center;
23817
  padding: 0;
23818
  position: fixed;
23819
  right: 0;
23820
  left: 240px;
23821
  z-index: 978;
23822
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23823
  transition: width 0.1s ease, left 0.1s ease;
23824
}
16848 stevensc 23825
 
16825 efrain 23826
@media (max-width: 991px) {
23827
  .navbar {
23828
    width: 100%;
23829
    left: 0;
23830
  }
16848 stevensc 23831
 
16825 efrain 23832
  .navbar .navbar-content {
23833
    width: calc(100% - 70px - 1px);
23834
  }
23835
}
16848 stevensc 23836
 
16825 efrain 23837
.navbar .sidebar-toggler {
23838
  height: 100%;
23839
  border-right: 1px solid #e9ecef;
23840
  align-items: center;
23841
  padding: 0 25px;
23842
  display: none;
23843
}
16848 stevensc 23844
 
16825 efrain 23845
.navbar .sidebar-toggler svg {
23846
  width: 20px;
23847
  height: 20px;
23848
  color: #7987a1;
23849
}
16848 stevensc 23850
 
16825 efrain 23851
@media (max-width: 991px) {
23852
  .navbar .sidebar-toggler {
23853
    display: flex;
23854
  }
23855
}
16848 stevensc 23856
 
16825 efrain 23857
.navbar .search-form {
23858
  width: 100%;
23859
  margin-right: 60px;
23860
}
16848 stevensc 23861
 
16825 efrain 23862
.navbar .search-form .input-group .input-group-text {
23863
  padding: 0;
23864
  border: 0;
23865
  color: #7987a1;
23866
  background: #fff;
23867
}
16848 stevensc 23868
 
16825 efrain 23869
.navbar .search-form .input-group .input-group-text svg {
23870
  width: 20px;
23871
  height: 20px;
23872
  cursor: pointer;
23873
}
16848 stevensc 23874
 
23875
.navbar .search-form .input-group .form-control,
23876
.navbar .search-form .input-group .typeahead.tt-input,
23877
.navbar .search-form .input-group .typeahead.tt-hint,
23878
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23879
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23880
  border: 0;
23881
  margin-top: 3px;
23882
}
16848 stevensc 23883
 
16825 efrain 23884
.navbar .navbar-content {
23885
  display: flex;
23886
  width: 100%;
23887
  height: 100%;
23888
  padding-left: 25px;
23889
  padding-right: 25px;
23890
}
16848 stevensc 23891
 
16825 efrain 23892
@media (max-width: 991px) {
23893
  .navbar .navbar-content {
23894
    width: calc(100% - 70px - 1px);
23895
  }
23896
}
16848 stevensc 23897
 
16825 efrain 23898
.navbar .navbar-content .navbar-nav {
23899
  display: flex;
23900
  flex-direction: row;
23901
  margin-left: auto;
23902
}
16848 stevensc 23903
 
16825 efrain 23904
.navbar .navbar-content .navbar-nav .nav-item {
23905
  position: relative;
23906
  margin-left: 5px;
23907
  margin-right: 5px;
23908
  min-width: 30px;
23909
  display: flex;
23910
  align-items: center;
23911
}
16848 stevensc 23912
 
16825 efrain 23913
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23914
  color: #000;
23915
  padding: 0;
23916
  position: relative;
23917
  margin-left: auto;
23918
  margin-right: auto;
23919
}
16848 stevensc 23920
 
23921
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23922
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23923
  color: #6571ff;
23924
}
16848 stevensc 23925
 
16825 efrain 23926
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23927
  display: none;
23928
}
16848 stevensc 23929
 
16825 efrain 23930
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23931
  width: 20px;
23932
  height: 20px;
23933
}
16848 stevensc 23934
 
16825 efrain 23935
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23936
  position: absolute;
23937
  top: 0px;
23938
  right: 2px;
23939
}
16848 stevensc 23940
 
16825 efrain 23941
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23942
  background: #6571ff;
23943
  width: 7px;
23944
  height: 7px;
23945
  border-radius: 50%;
23946
}
16848 stevensc 23947
 
16825 efrain 23948
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23949
  background-color: #6571ff;
23950
  content: "";
23951
  display: table;
23952
  border-radius: 50%;
23953
  position: absolute;
23954
}
16848 stevensc 23955
 
16825 efrain 23956
@media (max-width: 767px) {
23957
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23958
    position: static;
23959
  }
23960
}
16848 stevensc 23961
 
23962
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23963
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23964
  width: max-content;
23965
  position: absolute;
23966
  right: -20px;
23967
  left: auto;
23968
}
16848 stevensc 23969
 
23970
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23971
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23972
  content: "";
23973
  width: 13px;
23974
  height: 13px;
23975
  background: #fff;
23976
  position: absolute;
23977
  top: -7px;
23978
  right: 28px;
23979
  transform: rotate(45deg);
23980
  border-top: 1px solid #f2f4f9;
23981
  border-left: 1px solid #f2f4f9;
23982
}
16848 stevensc 23983
 
16825 efrain 23984
@media (max-width: 767px) {
16848 stevensc 23985
 
23986
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23987
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23988
    right: 20px;
23989
    width: calc(100% - 40px);
23990
  }
16848 stevensc 23991
 
23992
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23993
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23994
    display: none;
23995
  }
23996
}
23997
 
23998
.sidebar {
23999
  width: 240px;
24000
  height: 100%;
24001
  position: fixed;
24002
  left: 0;
24003
  top: 0;
24004
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24005
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24006
  z-index: 999;
24007
}
16848 stevensc 24008
 
16825 efrain 24009
.sidebar .sidebar-header {
24010
  background: #fff;
24011
  height: 60px;
24012
  border-bottom: 1px solid #e9ecef;
24013
  display: flex;
24014
  justify-content: space-between;
24015
  align-items: center;
24016
  padding: 0 25px;
24017
  border-right: 1px solid #e9ecef;
24018
  z-index: 999;
24019
  width: 240px;
24020
  -webkit-transition: width 0.1s ease;
24021
  transition: width 0.1s ease;
24022
}
16848 stevensc 24023
 
16825 efrain 24024
.sidebar-open .sidebar .sidebar-header {
24025
  border-bottom: 1px solid #e9ecef;
24026
}
16848 stevensc 24027
 
16825 efrain 24028
.sidebar .sidebar-header .sidebar-brand {
24029
  opacity: 1;
24030
  visibility: visible;
24031
  -webkit-transition: opacity 0.5s ease;
24032
  transition: opacity 0.5s ease;
24033
  font-weight: 700;
24034
  font-size: 25px;
24035
  color: #000865;
16848 stevensc 24036
  direction: ltr
24037
    /*rtl:ignore*/
24038
  ;
16825 efrain 24039
}
16848 stevensc 24040
 
16825 efrain 24041
.sidebar .sidebar-header .sidebar-brand span {
24042
  color: #6571ff;
24043
  font-weight: 300;
24044
}
16848 stevensc 24045
 
16825 efrain 24046
.sidebar .sidebar-header .sidebar-toggler {
24047
  cursor: pointer;
24048
  width: 18px;
24049
}
16848 stevensc 24050
 
16825 efrain 24051
.sidebar .sidebar-header .sidebar-toggler span {
24052
  display: block;
24053
  width: 100%;
24054
  border-radius: 3px;
24055
  height: 2px;
24056
  background: #7987a1;
24057
  -webkit-transition: all 0.3s;
24058
  transition: all 0.3s;
24059
  position: relative;
24060
}
16848 stevensc 24061
 
24062
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24063
  margin-top: 4px;
24064
}
16848 stevensc 24065
 
16825 efrain 24066
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24067
  -webkit-animation: ease 0.6s top forwards;
24068
  animation: ease 0.6s top forwards;
24069
}
16848 stevensc 24070
 
16825 efrain 24071
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24072
  -webkit-animation: ease 0.6s top-2 forwards;
24073
  animation: ease 0.6s top-2 forwards;
24074
}
16848 stevensc 24075
 
16825 efrain 24076
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24077
  -webkit-animation: ease 0.6s scaled forwards;
24078
  animation: ease 0.6s scaled forwards;
24079
}
16848 stevensc 24080
 
16825 efrain 24081
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24082
  -webkit-animation: ease 0.6s scaled-2 forwards;
24083
  animation: ease 0.6s scaled-2 forwards;
24084
}
16848 stevensc 24085
 
16825 efrain 24086
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24087
  -webkit-animation: ease 0.6s bottom forwards;
24088
  animation: ease 0.6s bottom forwards;
24089
}
16848 stevensc 24090
 
16825 efrain 24091
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24092
  -webkit-animation: ease 0.6s bottom-2 forwards;
24093
  animation: ease 0.6s bottom-2 forwards;
24094
}
16848 stevensc 24095
 
16825 efrain 24096
@-webkit-keyframes top {
24097
  0% {
24098
    top: 0;
24099
    -webkit-transform: rotate(0);
24100
    transform: rotate(0);
24101
  }
16848 stevensc 24102
 
16825 efrain 24103
  50% {
24104
    top: 6px;
24105
    -webkit-transform: rotate(0);
24106
    transform: rotate(0);
24107
  }
16848 stevensc 24108
 
16825 efrain 24109
  100% {
24110
    top: 6px;
24111
    -webkit-transform: rotate(45deg);
24112
    transform: rotate(45deg);
24113
  }
24114
}
16848 stevensc 24115
 
16825 efrain 24116
@keyframes top {
24117
  0% {
24118
    top: 0;
24119
    -webkit-transform: rotate(0);
24120
    transform: rotate(0);
24121
  }
16848 stevensc 24122
 
16825 efrain 24123
  50% {
24124
    top: 6px;
24125
    -webkit-transform: rotate(0);
24126
    transform: rotate(0);
24127
  }
16848 stevensc 24128
 
16825 efrain 24129
  100% {
24130
    top: 6px;
24131
    -webkit-transform: rotate(45deg);
24132
    transform: rotate(45deg);
24133
  }
24134
}
16848 stevensc 24135
 
16825 efrain 24136
@-webkit-keyframes top-2 {
24137
  0% {
24138
    top: 6px;
24139
    -webkit-transform: rotate(45deg);
24140
    transform: rotate(45deg);
24141
  }
16848 stevensc 24142
 
16825 efrain 24143
  50% {
24144
    top: 6px;
24145
    -webkit-transform: rotate(0deg);
24146
    transform: rotate(0deg);
24147
  }
16848 stevensc 24148
 
16825 efrain 24149
  100% {
24150
    top: 0;
24151
    -webkit-transform: rotate(0deg);
24152
    transform: rotate(0deg);
24153
  }
24154
}
16848 stevensc 24155
 
16825 efrain 24156
@keyframes top-2 {
24157
  0% {
24158
    top: 6px;
24159
    -webkit-transform: rotate(45deg);
24160
    transform: rotate(45deg);
24161
  }
16848 stevensc 24162
 
16825 efrain 24163
  50% {
24164
    top: 6px;
24165
    -webkit-transform: rotate(0deg);
24166
    transform: rotate(0deg);
24167
  }
16848 stevensc 24168
 
16825 efrain 24169
  100% {
24170
    top: 0;
24171
    -webkit-transform: rotate(0deg);
24172
    transform: rotate(0deg);
24173
  }
24174
}
16848 stevensc 24175
 
16825 efrain 24176
@-webkit-keyframes bottom {
24177
  0% {
24178
    bottom: 0;
24179
    -webkit-transform: rotate(0);
24180
    transform: rotate(0);
24181
  }
16848 stevensc 24182
 
16825 efrain 24183
  50% {
24184
    bottom: 6px;
24185
    -webkit-transform: rotate(0);
24186
    transform: rotate(0);
24187
  }
16848 stevensc 24188
 
16825 efrain 24189
  100% {
24190
    bottom: 6px;
24191
    -webkit-transform: rotate(135deg);
24192
    transform: rotate(135deg);
24193
  }
24194
}
16848 stevensc 24195
 
16825 efrain 24196
@keyframes bottom {
24197
  0% {
24198
    bottom: 0;
24199
    -webkit-transform: rotate(0);
24200
    transform: rotate(0);
24201
  }
16848 stevensc 24202
 
16825 efrain 24203
  50% {
24204
    bottom: 6px;
24205
    -webkit-transform: rotate(0);
24206
    transform: rotate(0);
24207
  }
16848 stevensc 24208
 
16825 efrain 24209
  100% {
24210
    bottom: 6px;
24211
    -webkit-transform: rotate(135deg);
24212
    transform: rotate(135deg);
24213
  }
24214
}
16848 stevensc 24215
 
16825 efrain 24216
@-webkit-keyframes bottom-2 {
24217
  0% {
24218
    bottom: 6px;
24219
    -webkit-transform: rotate(135deg);
24220
    transform: rotate(135deg);
24221
  }
16848 stevensc 24222
 
16825 efrain 24223
  50% {
24224
    bottom: 6px;
24225
    -webkit-transform: rotate(0);
24226
    transform: rotate(0);
24227
  }
16848 stevensc 24228
 
16825 efrain 24229
  100% {
24230
    bottom: 0;
24231
    -webkit-transform: rotate(0);
24232
    transform: rotate(0);
24233
  }
24234
}
16848 stevensc 24235
 
16825 efrain 24236
@keyframes bottom-2 {
24237
  0% {
24238
    bottom: 6px;
24239
    -webkit-transform: rotate(135deg);
24240
    transform: rotate(135deg);
24241
  }
16848 stevensc 24242
 
16825 efrain 24243
  50% {
24244
    bottom: 6px;
24245
    -webkit-transform: rotate(0);
24246
    transform: rotate(0);
24247
  }
16848 stevensc 24248
 
16825 efrain 24249
  100% {
24250
    bottom: 0;
24251
    -webkit-transform: rotate(0);
24252
    transform: rotate(0);
24253
  }
24254
}
16848 stevensc 24255
 
16825 efrain 24256
@-webkit-keyframes scaled {
24257
  50% {
24258
    -webkit-transform: scale(0);
24259
    transform: scale(0);
24260
  }
16848 stevensc 24261
 
16825 efrain 24262
  100% {
24263
    -webkit-transform: scale(0);
24264
    transform: scale(0);
24265
  }
24266
}
16848 stevensc 24267
 
16825 efrain 24268
@keyframes scaled {
24269
  50% {
24270
    -webkit-transform: scale(0);
24271
    transform: scale(0);
24272
  }
16848 stevensc 24273
 
16825 efrain 24274
  100% {
24275
    -webkit-transform: scale(0);
24276
    transform: scale(0);
24277
  }
24278
}
16848 stevensc 24279
 
16825 efrain 24280
@-webkit-keyframes scaled-2 {
24281
  0% {
24282
    -webkit-transform: scale(0);
24283
    transform: scale(0);
24284
  }
16848 stevensc 24285
 
16825 efrain 24286
  50% {
24287
    -webkit-transform: scale(0);
24288
    transform: scale(0);
24289
  }
16848 stevensc 24290
 
16825 efrain 24291
  100% {
24292
    -webkit-transform: scale(1);
24293
    transform: scale(1);
24294
  }
24295
}
16848 stevensc 24296
 
16825 efrain 24297
@keyframes scaled-2 {
24298
  0% {
24299
    -webkit-transform: scale(0);
24300
    transform: scale(0);
24301
  }
16848 stevensc 24302
 
16825 efrain 24303
  50% {
24304
    -webkit-transform: scale(0);
24305
    transform: scale(0);
24306
  }
16848 stevensc 24307
 
16825 efrain 24308
  100% {
24309
    -webkit-transform: scale(1);
24310
    transform: scale(1);
24311
  }
24312
}
16848 stevensc 24313
 
16825 efrain 24314
.sidebar .sidebar-body {
24315
  max-height: calc(100% - 60px);
24316
  position: relative;
24317
  border-right: 1px solid #e9ecef;
24318
  height: 100%;
24319
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24320
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24321
  background: #fff;
24322
}
16848 stevensc 24323
 
16825 efrain 24324
.sidebar .sidebar-body .nav {
24325
  display: flex;
24326
  flex-direction: column;
24327
  padding: 25px 25px 50px 25px;
24328
}
16848 stevensc 24329
 
16825 efrain 24330
.sidebar .sidebar-body .nav .nav-item {
24331
  position: relative;
24332
}
16848 stevensc 24333
 
16825 efrain 24334
.sidebar .sidebar-body .nav .nav-item .nav-link {
24335
  display: flex;
24336
  align-items: center;
24337
  padding: 0;
24338
  height: 32px;
24339
  white-space: nowrap;
24340
  color: #000;
24341
}
16848 stevensc 24342
 
16825 efrain 24343
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24344
  width: 16px;
24345
  height: 16px;
24346
  fill: rgba(233, 236, 239, 0.21);
24347
  position: absolute;
24348
  color: inherit;
24349
}
16848 stevensc 24350
 
16825 efrain 24351
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24352
  margin-left: 30px;
24353
  font-size: 14px;
24354
  -webkit-transition: all 0.2s ease-in-out;
24355
  transition: all 0.2s ease-in-out;
24356
}
16848 stevensc 24357
 
16825 efrain 24358
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24359
  width: 14px;
24360
  height: 14px;
24361
  margin-left: auto;
24362
  -webkit-transition: all 0.3s ease;
24363
  -webkit-transition: all 0.3s ease-in-out;
24364
  transition: all 0.3s ease-in-out;
24365
  color: inherit;
24366
}
16848 stevensc 24367
 
16825 efrain 24368
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24369
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24370
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24371
  -webkit-transition: all 0.3s ease;
24372
  transition: all 0.3s ease;
24373
}
16848 stevensc 24374
 
16825 efrain 24375
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24376
  color: #6571ff;
24377
}
16848 stevensc 24378
 
16825 efrain 24379
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24380
  -webkit-transform: rotate(90deg);
24381
  transform: rotate(180deg);
24382
}
16848 stevensc 24383
 
16825 efrain 24384
.sidebar .sidebar-body .nav .nav-item.nav-category {
24385
  color: #7987a1;
24386
  font-size: 11px;
24387
  text-transform: uppercase;
24388
  font-weight: 500;
24389
  letter-spacing: 0.5px;
24390
  margin-bottom: 5px;
24391
  height: 15px;
24392
}
16848 stevensc 24393
 
16825 efrain 24394
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24395
  margin-top: 20px;
24396
}
16848 stevensc 24397
 
16825 efrain 24398
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24399
  color: #6571ff;
24400
}
16848 stevensc 24401
 
16825 efrain 24402
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24403
  margin-left: 31px;
24404
}
16848 stevensc 24405
 
16825 efrain 24406
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24407
  color: #6571ff;
24408
  fill: rgba(239, 243, 255, 0.5);
24409
}
16848 stevensc 24410
 
16825 efrain 24411
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24412
  color: #6571ff;
24413
}
16848 stevensc 24414
 
16825 efrain 24415
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24416
  content: "";
24417
  width: 3px;
24418
  height: 26px;
24419
  background: #6571ff;
24420
  position: absolute;
24421
  left: -25px;
24422
}
16848 stevensc 24423
 
16825 efrain 24424
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24425
  fill: rgba(239, 243, 255, 0.5);
24426
  color: #6571ff;
24427
}
16848 stevensc 24428
 
16825 efrain 24429
.sidebar .sidebar-body .nav.sub-menu {
24430
  padding: 0 0 15px 33px;
24431
}
16848 stevensc 24432
 
16825 efrain 24433
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24434
  position: relative;
24435
}
16848 stevensc 24436
 
16825 efrain 24437
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24438
  height: 25px;
24439
  color: #000;
24440
  font-size: 13px;
24441
  -webkit-transition: all 0.3s ease-in-out;
24442
  transition: all 0.3s ease-in-out;
24443
}
16848 stevensc 24444
 
16825 efrain 24445
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24446
  content: "";
24447
  width: 6px;
24448
  height: 6px;
24449
  border-radius: 50%;
24450
  background: transparent;
24451
  border: 1px solid #aeb9c4;
24452
  position: absolute;
24453
  left: -29px;
24454
  top: 10px;
24455
  -webkit-transition: all 0.7s ease-in-out;
24456
  -webkit-transition: all 0.4s ease-in-out;
24457
  transition: all 0.4s ease-in-out;
24458
}
16848 stevensc 24459
 
16825 efrain 24460
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24461
  color: #6571ff;
24462
}
16848 stevensc 24463
 
16825 efrain 24464
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24465
  border: 1px solid #6571ff;
24466
  background: #6571ff;
24467
}
16848 stevensc 24468
 
16825 efrain 24469
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24470
  color: #6571ff;
24471
  margin-left: 3px;
24472
}
16848 stevensc 24473
 
16825 efrain 24474
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24475
  border: 1px solid #6571ff;
24476
  background: #6571ff;
24477
}
16848 stevensc 24478
 
16825 efrain 24479
@media (max-width: 991px) {
24480
  .sidebar {
24481
    z-index: 999;
24482
    margin-left: -240px;
24483
    visibility: hidden;
24484
  }
16848 stevensc 24485
 
16825 efrain 24486
  .sidebar-open .sidebar {
24487
    margin-left: 0;
24488
    visibility: visible;
24489
  }
16848 stevensc 24490
 
16825 efrain 24491
  .sidebar .sidebar-body .nav .nav-item {
24492
    width: auto;
24493
  }
16848 stevensc 24494
 
16825 efrain 24495
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24496
    -webkit-transition: none;
24497
    transition: none;
24498
    margin: 0;
24499
  }
24500
}
24501
 
24502
.sidebar-dark .sidebar .sidebar-header {
24503
  background: #0c1427;
24504
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24505
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24506
}
16848 stevensc 24507
 
16825 efrain 24508
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24509
  color: #e9ecef;
24510
}
16848 stevensc 24511
 
16825 efrain 24512
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24513
  background: #7987a1;
24514
}
16848 stevensc 24515
 
16825 efrain 24516
.sidebar-dark .sidebar .sidebar-body {
24517
  background: #0c1427;
24518
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24519
}
16848 stevensc 24520
 
16825 efrain 24521
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24522
  color: #fff;
24523
}
16848 stevensc 24524
 
16825 efrain 24525
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24526
  color: #7987a1;
24527
}
16848 stevensc 24528
 
16825 efrain 24529
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24530
  fill: none;
24531
}
16848 stevensc 24532
 
16825 efrain 24533
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24534
  color: #6571ff;
24535
}
16848 stevensc 24536
 
24537
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24538
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24539
  fill: rgba(101, 113, 255, 0.2);
24540
}
16848 stevensc 24541
 
24542
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24543
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24544
  color: #6571ff;
24545
}
24546
 
24547
.settings-sidebar {
24548
  position: fixed;
24549
  right: -232px;
24550
  top: 130px;
24551
  width: 232px;
24552
  background: #fff;
24553
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24554
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24555
  z-index: 999;
24556
  border-radius: 0 0 0 4px;
24557
  -webkit-transition: all 0.2s ease-in-out;
24558
  transition: all 0.2s ease-in-out;
24559
}
16848 stevensc 24560
 
16825 efrain 24561
.settings-open .settings-sidebar {
24562
  right: 0;
24563
}
16848 stevensc 24564
 
16825 efrain 24565
.settings-sidebar .sidebar-body {
24566
  position: relative;
24567
  padding: 18px;
24568
}
16848 stevensc 24569
 
16825 efrain 24570
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24571
  position: absolute;
24572
  left: -44px;
24573
  top: 0;
24574
  padding: 12px;
24575
  border-radius: 4px 0 0 4px;
24576
  background: #fff;
24577
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24578
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24579
}
16848 stevensc 24580
 
16825 efrain 24581
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24582
  width: 20px;
24583
  height: 20px;
24584
  color: #7987a1;
24585
}
16848 stevensc 24586
 
16825 efrain 24587
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24588
  position: relative;
24589
  display: block;
24590
  margin-bottom: 19px;
24591
  border-radius: 6px;
24592
  border: 3px solid #e9ecef;
24593
}
16848 stevensc 24594
 
16825 efrain 24595
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24596
  content: "";
24597
  position: absolute;
24598
  top: 0;
24599
  left: 0;
24600
  width: 100%;
24601
  height: 100%;
24602
  background: rgba(101, 113, 255, 0);
24603
}
16848 stevensc 24604
 
16825 efrain 24605
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24606
  margin-bottom: 0;
24607
}
16848 stevensc 24608
 
16825 efrain 24609
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24610
  border: 3px solid #b2b8ff;
24611
}
16848 stevensc 24612
 
16825 efrain 24613
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24614
  width: 100%;
24615
  border-radius: 3px;
24616
}
16848 stevensc 24617
 
16825 efrain 24618
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24619
  background: rgba(101, 113, 255, 0.2);
24620
  -webkit-transition: all 0.3s ease-in-out;
24621
  transition: all 0.3s ease-in-out;
24622
}
24623
 
24624
.sidebar-folded .sidebar .sidebar-header {
24625
  width: 70px;
24626
}
16848 stevensc 24627
 
16825 efrain 24628
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24629
  display: none;
24630
}
16848 stevensc 24631
 
16825 efrain 24632
.sidebar-folded .page-wrapper {
24633
  width: calc(100% - 70px);
24634
  margin-left: 70px;
24635
}
16848 stevensc 24636
 
16825 efrain 24637
.sidebar-folded .page-wrapper .navbar {
24638
  width: calc(100% - 70px);
24639
  left: 70px;
24640
  right: 0;
24641
}
16848 stevensc 24642
 
16825 efrain 24643
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24644
  width: 70px;
24645
}
16848 stevensc 24646
 
16825 efrain 24647
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24648
  width: 70px;
24649
}
16848 stevensc 24650
 
16825 efrain 24651
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24652
  opacity: 0;
24653
  visibility: hidden;
24654
  width: 0;
24655
}
16848 stevensc 24656
 
16825 efrain 24657
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24658
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24659
  visibility: hidden;
24660
  opacity: 0;
24661
}
16848 stevensc 24662
 
16825 efrain 24663
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24664
  visibility: hidden;
24665
}
16848 stevensc 24666
 
16825 efrain 24667
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24668
  content: "";
24669
  width: 5px;
24670
  height: 5px;
24671
  border-radius: 50%;
24672
  background: #7987a1;
24673
  position: absolute;
24674
  top: 5px;
24675
  left: 6px;
24676
  visibility: visible;
24677
}
16848 stevensc 24678
 
16825 efrain 24679
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24680
  display: none;
24681
}
24682
 
24683
@media (max-width: 991px) {
16848 stevensc 24684
 
24685
  .sidebar-open .main-wrapper::before,
24686
  .settings-open .main-wrapper::before {
16825 efrain 24687
    content: "";
24688
    width: 100vw;
24689
    background: rgba(0, 0, 0, 0.3);
24690
    position: fixed;
24691
    top: 0;
24692
    bottom: 0;
24693
    right: 0;
24694
    z-index: 99;
24695
    -webkit-transition: all 3s ease;
24696
    transition: all 3s ease;
24697
    z-index: 980;
24698
  }
24699
}
24700
 
24701
a.badge:hover {
24702
  color: #fff;
24703
}
24704
 
24705
.alert-primary {
24706
  background-color: rgba(101, 113, 255, 0.1);
24707
  color: #4c59ff;
24708
  border-color: rgba(101, 113, 255, 0.2);
24709
}
16848 stevensc 24710
 
16825 efrain 24711
.alert-primary .alert-link {
24712
  color: #4c59ff;
24713
}
16848 stevensc 24714
 
16825 efrain 24715
.alert-primary svg {
24716
  width: 19px;
24717
  height: 19px;
24718
  margin-right: 0.5rem;
24719
}
16848 stevensc 24720
 
16825 efrain 24721
.alert-primary i {
24722
  font-size: 19px;
24723
  margin-right: 0.5rem;
24724
}
24725
 
24726
.alert-fill-primary {
24727
  --bs-alert-color: #fff;
24728
  --bs-alert-bg: #6571ff;
24729
  --bs-alert-border-color: #6571ff;
24730
}
16848 stevensc 24731
 
16825 efrain 24732
.alert-fill-primary .alert-link {
24733
  color: #cccccc;
24734
}
16848 stevensc 24735
 
16825 efrain 24736
.alert-fill-primary.alert-fill-light {
24737
  color: #7987a1;
24738
}
24739
 
24740
.alert-secondary {
24741
  background-color: rgba(121, 135, 161, 0.1);
24742
  color: #6a7a96;
24743
  border-color: rgba(121, 135, 161, 0.2);
24744
}
16848 stevensc 24745
 
16825 efrain 24746
.alert-secondary .alert-link {
24747
  color: #6a7a96;
24748
}
16848 stevensc 24749
 
16825 efrain 24750
.alert-secondary svg {
24751
  width: 19px;
24752
  height: 19px;
24753
  margin-right: 0.5rem;
24754
}
16848 stevensc 24755
 
16825 efrain 24756
.alert-secondary i {
24757
  font-size: 19px;
24758
  margin-right: 0.5rem;
24759
}
24760
 
24761
.alert-fill-secondary {
24762
  --bs-alert-color: #fff;
24763
  --bs-alert-bg: #7987a1;
24764
  --bs-alert-border-color: #7987a1;
24765
}
16848 stevensc 24766
 
16825 efrain 24767
.alert-fill-secondary .alert-link {
24768
  color: #cccccc;
24769
}
16848 stevensc 24770
 
16825 efrain 24771
.alert-fill-secondary.alert-fill-light {
24772
  color: #7987a1;
24773
}
24774
 
24775
.alert-success {
24776
  background-color: rgba(5, 163, 74, 0.1);
24777
  color: #048a3f;
24778
  border-color: rgba(5, 163, 74, 0.2);
24779
}
16848 stevensc 24780
 
16825 efrain 24781
.alert-success .alert-link {
24782
  color: #048a3f;
24783
}
16848 stevensc 24784
 
16825 efrain 24785
.alert-success svg {
24786
  width: 19px;
24787
  height: 19px;
24788
  margin-right: 0.5rem;
24789
}
16848 stevensc 24790
 
16825 efrain 24791
.alert-success i {
24792
  font-size: 19px;
24793
  margin-right: 0.5rem;
24794
}
24795
 
24796
.alert-fill-success {
24797
  --bs-alert-color: #fff;
24798
  --bs-alert-bg: #05a34a;
24799
  --bs-alert-border-color: #05a34a;
24800
}
16848 stevensc 24801
 
16825 efrain 24802
.alert-fill-success .alert-link {
24803
  color: #cccccc;
24804
}
16848 stevensc 24805
 
16825 efrain 24806
.alert-fill-success.alert-fill-light {
24807
  color: #7987a1;
24808
}
24809
 
24810
.alert-info {
24811
  background-color: rgba(102, 209, 209, 0.1);
24812
  color: #52cbcb;
24813
  border-color: rgba(102, 209, 209, 0.2);
24814
}
16848 stevensc 24815
 
16825 efrain 24816
.alert-info .alert-link {
24817
  color: #52cbcb;
24818
}
16848 stevensc 24819
 
16825 efrain 24820
.alert-info svg {
24821
  width: 19px;
24822
  height: 19px;
24823
  margin-right: 0.5rem;
24824
}
16848 stevensc 24825
 
16825 efrain 24826
.alert-info i {
24827
  font-size: 19px;
24828
  margin-right: 0.5rem;
24829
}
24830
 
24831
.alert-fill-info {
24832
  --bs-alert-color: #fff;
24833
  --bs-alert-bg: #66d1d1;
24834
  --bs-alert-border-color: #66d1d1;
24835
}
16848 stevensc 24836
 
16825 efrain 24837
.alert-fill-info .alert-link {
24838
  color: #cccccc;
24839
}
16848 stevensc 24840
 
16825 efrain 24841
.alert-fill-info.alert-fill-light {
24842
  color: #7987a1;
24843
}
24844
 
24845
.alert-warning {
24846
  background-color: rgba(251, 188, 6, 0.1);
24847
  color: #e4aa04;
24848
  border-color: rgba(251, 188, 6, 0.2);
24849
}
16848 stevensc 24850
 
16825 efrain 24851
.alert-warning .alert-link {
24852
  color: #e4aa04;
24853
}
16848 stevensc 24854
 
16825 efrain 24855
.alert-warning svg {
24856
  width: 19px;
24857
  height: 19px;
24858
  margin-right: 0.5rem;
24859
}
16848 stevensc 24860
 
16825 efrain 24861
.alert-warning i {
24862
  font-size: 19px;
24863
  margin-right: 0.5rem;
24864
}
24865
 
24866
.alert-fill-warning {
24867
  --bs-alert-color: #fff;
24868
  --bs-alert-bg: #fbbc06;
24869
  --bs-alert-border-color: #fbbc06;
24870
}
16848 stevensc 24871
 
16825 efrain 24872
.alert-fill-warning .alert-link {
24873
  color: #cccccc;
24874
}
16848 stevensc 24875
 
16825 efrain 24876
.alert-fill-warning.alert-fill-light {
24877
  color: #7987a1;
24878
}
24879
 
24880
.alert-danger {
24881
  background-color: rgba(255, 51, 102, 0.1);
24882
  color: #ff1a53;
24883
  border-color: rgba(255, 51, 102, 0.2);
24884
}
16848 stevensc 24885
 
16825 efrain 24886
.alert-danger .alert-link {
24887
  color: #ff1a53;
24888
}
16848 stevensc 24889
 
16825 efrain 24890
.alert-danger svg {
24891
  width: 19px;
24892
  height: 19px;
24893
  margin-right: 0.5rem;
24894
}
16848 stevensc 24895
 
16825 efrain 24896
.alert-danger i {
24897
  font-size: 19px;
24898
  margin-right: 0.5rem;
24899
}
24900
 
24901
.alert-fill-danger {
24902
  --bs-alert-color: #fff;
24903
  --bs-alert-bg: #ff3366;
24904
  --bs-alert-border-color: #ff3366;
24905
}
16848 stevensc 24906
 
16825 efrain 24907
.alert-fill-danger .alert-link {
24908
  color: #cccccc;
24909
}
16848 stevensc 24910
 
16825 efrain 24911
.alert-fill-danger.alert-fill-light {
24912
  color: #7987a1;
24913
}
24914
 
24915
.alert-light {
24916
  background-color: rgba(233, 236, 239, 0.1);
24917
  color: #dadfe4;
24918
  border-color: rgba(233, 236, 239, 0.2);
24919
}
16848 stevensc 24920
 
16825 efrain 24921
.alert-light .alert-link {
24922
  color: #dadfe4;
24923
}
16848 stevensc 24924
 
16825 efrain 24925
.alert-light svg {
24926
  width: 19px;
24927
  height: 19px;
24928
  margin-right: 0.5rem;
24929
}
16848 stevensc 24930
 
16825 efrain 24931
.alert-light i {
24932
  font-size: 19px;
24933
  margin-right: 0.5rem;
24934
}
24935
 
24936
.alert-fill-light {
24937
  --bs-alert-color: #fff;
24938
  --bs-alert-bg: #e9ecef;
24939
  --bs-alert-border-color: #e9ecef;
24940
}
16848 stevensc 24941
 
16825 efrain 24942
.alert-fill-light .alert-link {
24943
  color: #cccccc;
24944
}
16848 stevensc 24945
 
16825 efrain 24946
.alert-fill-light.alert-fill-light {
24947
  color: #7987a1;
24948
}
24949
 
24950
.alert-dark {
24951
  background-color: rgba(6, 12, 23, 0.1);
24952
  color: #010103;
24953
  border-color: rgba(6, 12, 23, 0.2);
24954
}
16848 stevensc 24955
 
16825 efrain 24956
.alert-dark .alert-link {
24957
  color: #010103;
24958
}
16848 stevensc 24959
 
16825 efrain 24960
.alert-dark svg {
24961
  width: 19px;
24962
  height: 19px;
24963
  margin-right: 0.5rem;
24964
}
16848 stevensc 24965
 
16825 efrain 24966
.alert-dark i {
24967
  font-size: 19px;
24968
  margin-right: 0.5rem;
24969
}
24970
 
24971
.alert-fill-dark {
24972
  --bs-alert-color: #fff;
24973
  --bs-alert-bg: #060c17;
24974
  --bs-alert-border-color: #060c17;
24975
}
16848 stevensc 24976
 
16825 efrain 24977
.alert-fill-dark .alert-link {
24978
  color: #cccccc;
24979
}
16848 stevensc 24980
 
16825 efrain 24981
.alert-fill-dark.alert-fill-light {
24982
  color: #7987a1;
24983
}
24984
 
16848 stevensc 24985
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24986
  content: "-" !important;
24987
}
16848 stevensc 24988
 
24989
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24990
  content: "•" !important;
24991
}
16848 stevensc 24992
 
24993
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24994
  content: ">" !important;
24995
}
24996
 
24997
/* Buttons */
16848 stevensc 24998
.btn i,
24999
.wizard>.actions a i,
25000
.wizard>.actions a:active i,
25001
.wizard>.actions a:hover i,
25002
div.tox .tox-button i,
25003
.swal2-popup .swal2-actions button i,
25004
.fc .fc-button-primary i {
16825 efrain 25005
  font-size: 1rem;
25006
}
16848 stevensc 25007
 
25008
.btn.btn-rounded,
25009
.wizard>.actions a.btn-rounded,
25010
div.tox .btn-rounded.tox-button,
25011
.swal2-popup .swal2-actions button.btn-rounded,
25012
.fc .btn-rounded.fc-button-primary {
16825 efrain 25013
  border-radius: 50px;
25014
}
16848 stevensc 25015
 
25016
.btn.btn-xs,
25017
.wizard>.actions a.btn-xs,
25018
div.tox .btn-xs.tox-button,
25019
.swal2-popup .swal2-actions button.btn-xs,
25020
.fc .btn-xs.fc-button-primary {
16825 efrain 25021
  padding: 0.313rem 0.8rem;
25022
  font-size: 0.75rem;
25023
}
16848 stevensc 25024
 
25025
.btn.btn-icon,
25026
.wizard>.actions a.btn-icon,
25027
div.tox .btn-icon.tox-button,
25028
.swal2-popup .swal2-actions button.btn-icon,
25029
.fc .btn-icon.fc-button-primary {
16825 efrain 25030
  width: 38px;
25031
  height: 38px;
25032
  padding: 0;
25033
  display: inline-flex;
25034
  align-items: center;
25035
  justify-content: center;
25036
}
16848 stevensc 25037
 
25038
.btn.btn-icon svg,
25039
.wizard>.actions a.btn-icon svg,
25040
div.tox .btn-icon.tox-button svg,
25041
.swal2-popup .swal2-actions button.btn-icon svg,
25042
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25043
  height: 18px;
25044
}
16848 stevensc 25045
 
25046
.btn.btn-icon.btn-xs,
25047
.wizard>.actions a.btn-icon.btn-xs,
25048
div.tox .btn-icon.btn-xs.tox-button,
25049
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25050
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25051
  width: 30px;
25052
  height: 30px;
25053
}
16848 stevensc 25054
 
25055
.btn.btn-icon.btn-xs svg,
25056
.wizard>.actions a.btn-icon.btn-xs svg,
25057
div.tox .btn-icon.btn-xs.tox-button svg,
25058
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25059
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25060
  height: 14px;
25061
}
16848 stevensc 25062
 
25063
.btn.btn-icon.btn-sm,
25064
.wizard>.actions a.btn-icon.btn-sm,
25065
div.tox .btn-icon.btn-sm.tox-button,
25066
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25067
.fc .btn-icon.fc-button-primary,
25068
.btn-group-sm>.btn.btn-icon,
25069
.wizard>.actions .btn-group-sm>a.btn-icon,
25070
div.tox .btn-group-sm>.btn-icon.tox-button,
25071
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25072
  width: 36px;
25073
  height: 36px;
25074
}
16848 stevensc 25075
 
25076
.btn.btn-icon.btn-sm svg,
25077
.wizard>.actions a.btn-icon.btn-sm svg,
25078
div.tox .btn-icon.btn-sm.tox-button svg,
25079
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25080
.fc .btn-icon.fc-button-primary svg,
25081
.btn-group-sm>.btn.btn-icon svg,
25082
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25083
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25084
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25085
  height: 15px;
25086
}
16848 stevensc 25087
 
25088
.btn.btn-icon.btn-lg,
25089
.wizard>.actions a.btn-icon.btn-lg,
25090
div.tox .btn-icon.btn-lg.tox-button,
25091
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25092
.fc .btn-icon.btn-lg.fc-button-primary,
25093
.btn-group-lg>.btn.btn-icon,
25094
.wizard>.actions .btn-group-lg>a.btn-icon,
25095
div.tox .btn-group-lg>.btn-icon.tox-button,
25096
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25097
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25098
  width: 42px;
25099
  height: 42px;
25100
}
16848 stevensc 25101
 
25102
.btn.btn-icon.btn-lg svg,
25103
.wizard>.actions a.btn-icon.btn-lg svg,
25104
div.tox .btn-icon.btn-lg.tox-button svg,
25105
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25106
.fc .btn-icon.btn-lg.fc-button-primary svg,
25107
.btn-group-lg>.btn.btn-icon svg,
25108
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25109
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25110
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25111
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25112
  height: 18px;
25113
}
16848 stevensc 25114
 
25115
.btn.btn-icon-text .btn-icon-prepend,
25116
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25117
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25118
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25119
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25120
  margin-right: 0.5rem;
25121
}
16848 stevensc 25122
 
25123
.btn.btn-icon-text .btn-icon-append,
25124
.wizard>.actions a.btn-icon-text .btn-icon-append,
25125
div.tox .btn-icon-text.tox-button .btn-icon-append,
25126
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25127
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25128
  margin-left: 0.5rem;
25129
}
16848 stevensc 25130
 
25131
.btn.btn-icon-text .btn-icon-prepend,
25132
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25133
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25134
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25135
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25136
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25137
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25138
div.tox .btn-icon-text.tox-button .btn-icon-append,
25139
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25140
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25141
  width: 18px;
25142
  height: 18px;
25143
}
16848 stevensc 25144
 
25145
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25146
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25147
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25148
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25149
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25150
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25151
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25152
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25153
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25154
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25155
  width: 14px;
25156
  height: 14px;
25157
}
16848 stevensc 25158
 
25159
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25160
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25161
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25162
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25163
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25164
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25165
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25166
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25167
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25168
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25169
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25170
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25171
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25172
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25173
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25174
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25175
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25176
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25177
  width: 15px;
25178
  height: 15px;
25179
}
16848 stevensc 25180
 
25181
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25182
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25183
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25184
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25185
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25186
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25187
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25188
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25189
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25190
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25191
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25192
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25193
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25194
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25195
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25196
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25197
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25198
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25199
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25200
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25201
  width: 18px;
25202
  height: 18px;
25203
}
25204
 
25205
.btn-facebook {
25206
  background: #3b5998;
25207
  color: #fff;
25208
}
16848 stevensc 25209
 
25210
.btn-facebook:hover,
25211
.btn-facebook:focus {
16825 efrain 25212
  background: #2d4373;
25213
  color: #fff;
25214
}
16848 stevensc 25215
 
16825 efrain 25216
.btn-facebook.btn-social-icon-text {
25217
  padding: 0 1.5rem 0 0;
25218
  background: #4c70ba;
25219
}
16848 stevensc 25220
 
16825 efrain 25221
.btn-facebook.btn-social-icon-text i {
25222
  background: #3b5998;
25223
  padding: 0.75rem;
25224
  display: inline-block;
25225
  margin-right: 1.5rem;
25226
}
25227
 
25228
.btn-outline-facebook {
25229
  border: 1px solid #3b5998;
25230
  color: #3b5998;
25231
}
16848 stevensc 25232
 
16825 efrain 25233
.btn-outline-facebook:hover {
25234
  background: #3b5998;
25235
  color: #fff;
25236
}
25237
 
25238
.btn-twitter {
25239
  background: #1da1f2;
25240
  color: #fff;
25241
}
16848 stevensc 25242
 
25243
.btn-twitter:hover,
25244
.btn-twitter:focus {
16825 efrain 25245
  background: #0c85d0;
25246
  color: #fff;
25247
}
16848 stevensc 25248
 
16825 efrain 25249
.btn-twitter.btn-social-icon-text {
25250
  padding: 0 1.5rem 0 0;
25251
  background: #4db5f5;
25252
}
16848 stevensc 25253
 
16825 efrain 25254
.btn-twitter.btn-social-icon-text i {
25255
  background: #1da1f2;
25256
  padding: 0.75rem;
25257
  display: inline-block;
25258
  margin-right: 1.5rem;
25259
}
25260
 
25261
.btn-outline-twitter {
25262
  border: 1px solid #1da1f2;
25263
  color: #1da1f2;
25264
}
16848 stevensc 25265
 
16825 efrain 25266
.btn-outline-twitter:hover {
25267
  background: #1da1f2;
25268
  color: #fff;
25269
}
25270
 
25271
.btn-google {
25272
  background: #dc4e41;
25273
  color: #fff;
25274
}
16848 stevensc 25275
 
25276
.btn-google:hover,
25277
.btn-google:focus {
16825 efrain 25278
  background: #c63224;
25279
  color: #fff;
25280
}
16848 stevensc 25281
 
16825 efrain 25282
.btn-google.btn-social-icon-text {
25283
  padding: 0 1.5rem 0 0;
25284
  background: #e4766c;
25285
}
16848 stevensc 25286
 
16825 efrain 25287
.btn-google.btn-social-icon-text i {
25288
  background: #dc4e41;
25289
  padding: 0.75rem;
25290
  display: inline-block;
25291
  margin-right: 1.5rem;
25292
}
25293
 
25294
.btn-outline-google {
25295
  border: 1px solid #dc4e41;
25296
  color: #dc4e41;
25297
}
16848 stevensc 25298
 
16825 efrain 25299
.btn-outline-google:hover {
25300
  background: #dc4e41;
25301
  color: #fff;
25302
}
25303
 
25304
.btn-youtube {
25305
  background: #f00;
25306
  color: #fff;
25307
}
16848 stevensc 25308
 
25309
.btn-youtube:hover,
25310
.btn-youtube:focus {
16825 efrain 25311
  background: #cc0000;
25312
  color: #fff;
25313
}
16848 stevensc 25314
 
16825 efrain 25315
.btn-youtube.btn-social-icon-text {
25316
  padding: 0 1.5rem 0 0;
25317
  background: #ff3333;
25318
}
16848 stevensc 25319
 
16825 efrain 25320
.btn-youtube.btn-social-icon-text i {
25321
  background: #f00;
25322
  padding: 0.75rem;
25323
  display: inline-block;
25324
  margin-right: 1.5rem;
25325
}
25326
 
25327
.btn-outline-youtube {
25328
  border: 1px solid #f00;
25329
  color: #f00;
25330
}
16848 stevensc 25331
 
16825 efrain 25332
.btn-outline-youtube:hover {
25333
  background: #f00;
25334
  color: #fff;
25335
}
25336
 
25337
.btn-vimeo {
25338
  background: #1ab7ea;
25339
  color: #fff;
25340
}
16848 stevensc 25341
 
25342
.btn-vimeo:hover,
25343
.btn-vimeo:focus {
16825 efrain 25344
  background: #1295bf;
25345
  color: #fff;
25346
}
16848 stevensc 25347
 
16825 efrain 25348
.btn-vimeo.btn-social-icon-text {
25349
  padding: 0 1.5rem 0 0;
25350
  background: #49c6ee;
25351
}
16848 stevensc 25352
 
16825 efrain 25353
.btn-vimeo.btn-social-icon-text i {
25354
  background: #1ab7ea;
25355
  padding: 0.75rem;
25356
  display: inline-block;
25357
  margin-right: 1.5rem;
25358
}
25359
 
25360
.btn-outline-vimeo {
25361
  border: 1px solid #1ab7ea;
25362
  color: #1ab7ea;
25363
}
16848 stevensc 25364
 
16825 efrain 25365
.btn-outline-vimeo:hover {
25366
  background: #1ab7ea;
25367
  color: #fff;
25368
}
25369
 
25370
.btn-dribbble {
25371
  background: #ea4c89;
25372
  color: #fff;
25373
}
16848 stevensc 25374
 
25375
.btn-dribbble:hover,
25376
.btn-dribbble:focus {
16825 efrain 25377
  background: #e51e6b;
25378
  color: #fff;
25379
}
16848 stevensc 25380
 
16825 efrain 25381
.btn-dribbble.btn-social-icon-text {
25382
  padding: 0 1.5rem 0 0;
25383
  background: #ef7aa7;
25384
}
16848 stevensc 25385
 
16825 efrain 25386
.btn-dribbble.btn-social-icon-text i {
25387
  background: #ea4c89;
25388
  padding: 0.75rem;
25389
  display: inline-block;
25390
  margin-right: 1.5rem;
25391
}
25392
 
25393
.btn-outline-dribbble {
25394
  border: 1px solid #ea4c89;
25395
  color: #ea4c89;
25396
}
16848 stevensc 25397
 
16825 efrain 25398
.btn-outline-dribbble:hover {
25399
  background: #ea4c89;
25400
  color: #fff;
25401
}
25402
 
25403
.btn-github {
25404
  background: #181717;
25405
  color: #fff;
25406
}
16848 stevensc 25407
 
25408
.btn-github:hover,
25409
.btn-github:focus {
16825 efrain 25410
  background: black;
25411
  color: #fff;
25412
}
16848 stevensc 25413
 
16825 efrain 25414
.btn-github.btn-social-icon-text {
25415
  padding: 0 1.5rem 0 0;
25416
  background: #323030;
25417
}
16848 stevensc 25418
 
16825 efrain 25419
.btn-github.btn-social-icon-text i {
25420
  background: #181717;
25421
  padding: 0.75rem;
25422
  display: inline-block;
25423
  margin-right: 1.5rem;
25424
}
25425
 
25426
.btn-outline-github {
25427
  border: 1px solid #181717;
25428
  color: #181717;
25429
}
16848 stevensc 25430
 
16825 efrain 25431
.btn-outline-github:hover {
25432
  background: #181717;
25433
  color: #fff;
25434
}
25435
 
25436
.btn-instagram {
25437
  background: #e4405f;
25438
  color: #fff;
25439
}
16848 stevensc 25440
 
25441
.btn-instagram:hover,
25442
.btn-instagram:focus {
16825 efrain 25443
  background: #d31e40;
25444
  color: #fff;
25445
}
16848 stevensc 25446
 
16825 efrain 25447
.btn-instagram.btn-social-icon-text {
25448
  padding: 0 1.5rem 0 0;
25449
  background: #ea6d84;
25450
}
16848 stevensc 25451
 
16825 efrain 25452
.btn-instagram.btn-social-icon-text i {
25453
  background: #e4405f;
25454
  padding: 0.75rem;
25455
  display: inline-block;
25456
  margin-right: 1.5rem;
25457
}
25458
 
25459
.btn-outline-instagram {
25460
  border: 1px solid #e4405f;
25461
  color: #e4405f;
25462
}
16848 stevensc 25463
 
16825 efrain 25464
.btn-outline-instagram:hover {
25465
  background: #e4405f;
25466
  color: #fff;
25467
}
25468
 
25469
.btn-pinterest {
25470
  background: #bd081c;
25471
  color: #fff;
25472
}
16848 stevensc 25473
 
25474
.btn-pinterest:hover,
25475
.btn-pinterest:focus {
16825 efrain 25476
  background: #8c0615;
25477
  color: #fff;
25478
}
16848 stevensc 25479
 
16825 efrain 25480
.btn-pinterest.btn-social-icon-text {
25481
  padding: 0 1.5rem 0 0;
25482
  background: #ee0a23;
25483
}
16848 stevensc 25484
 
16825 efrain 25485
.btn-pinterest.btn-social-icon-text i {
25486
  background: #bd081c;
25487
  padding: 0.75rem;
25488
  display: inline-block;
25489
  margin-right: 1.5rem;
25490
}
25491
 
25492
.btn-outline-pinterest {
25493
  border: 1px solid #bd081c;
25494
  color: #bd081c;
25495
}
16848 stevensc 25496
 
16825 efrain 25497
.btn-outline-pinterest:hover {
25498
  background: #bd081c;
25499
  color: #fff;
25500
}
25501
 
25502
.btn-flickr {
25503
  background: #0063dc;
25504
  color: #fff;
25505
}
16848 stevensc 25506
 
25507
.btn-flickr:hover,
25508
.btn-flickr:focus {
16825 efrain 25509
  background: #004ca9;
25510
  color: #fff;
25511
}
16848 stevensc 25512
 
16825 efrain 25513
.btn-flickr.btn-social-icon-text {
25514
  padding: 0 1.5rem 0 0;
25515
  background: #107cff;
25516
}
16848 stevensc 25517
 
16825 efrain 25518
.btn-flickr.btn-social-icon-text i {
25519
  background: #0063dc;
25520
  padding: 0.75rem;
25521
  display: inline-block;
25522
  margin-right: 1.5rem;
25523
}
25524
 
25525
.btn-outline-flickr {
25526
  border: 1px solid #0063dc;
25527
  color: #0063dc;
25528
}
16848 stevensc 25529
 
16825 efrain 25530
.btn-outline-flickr:hover {
25531
  background: #0063dc;
25532
  color: #fff;
25533
}
25534
 
25535
.btn-bitbucket {
25536
  background: #0052cc;
25537
  color: #fff;
25538
}
16848 stevensc 25539
 
25540
.btn-bitbucket:hover,
25541
.btn-bitbucket:focus {
16825 efrain 25542
  background: #003e99;
25543
  color: #fff;
25544
}
16848 stevensc 25545
 
16825 efrain 25546
.btn-bitbucket.btn-social-icon-text {
25547
  padding: 0 1.5rem 0 0;
25548
  background: #0067ff;
25549
}
16848 stevensc 25550
 
16825 efrain 25551
.btn-bitbucket.btn-social-icon-text i {
25552
  background: #0052cc;
25553
  padding: 0.75rem;
25554
  display: inline-block;
25555
  margin-right: 1.5rem;
25556
}
25557
 
25558
.btn-outline-bitbucket {
25559
  border: 1px solid #0052cc;
25560
  color: #0052cc;
25561
}
16848 stevensc 25562
 
16825 efrain 25563
.btn-outline-bitbucket:hover {
25564
  background: #0052cc;
25565
  color: #fff;
25566
}
25567
 
25568
.btn-linkedin {
25569
  background: #0077b5;
25570
  color: #fff;
25571
}
16848 stevensc 25572
 
25573
.btn-linkedin:hover,
25574
.btn-linkedin:focus {
16825 efrain 25575
  background: #005582;
25576
  color: #fff;
25577
}
16848 stevensc 25578
 
16825 efrain 25579
.btn-linkedin.btn-social-icon-text {
25580
  padding: 0 1.5rem 0 0;
25581
  background: #0099e8;
25582
}
16848 stevensc 25583
 
16825 efrain 25584
.btn-linkedin.btn-social-icon-text i {
25585
  background: #0077b5;
25586
  padding: 0.75rem;
25587
  display: inline-block;
25588
  margin-right: 1.5rem;
25589
}
25590
 
25591
.btn-outline-linkedin {
25592
  border: 1px solid #0077b5;
25593
  color: #0077b5;
25594
}
16848 stevensc 25595
 
16825 efrain 25596
.btn-outline-linkedin:hover {
25597
  background: #0077b5;
25598
  color: #fff;
25599
}
25600
 
25601
.btn-inverse-primary {
25602
  background-color: rgba(101, 113, 255, 0.2);
25603
  background-image: none;
25604
  border-color: rgba(101, 113, 255, 0);
25605
}
16848 stevensc 25606
 
16825 efrain 25607
.btn-inverse-primary:not(.btn-inverse-light) {
25608
  color: #6571ff;
25609
}
16848 stevensc 25610
 
25611
.btn-inverse-primary:hover,
25612
.btn-inverse-primary.active,
25613
.btn-inverse-primary:active,
25614
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25615
  background-color: rgba(101, 113, 255, 0.3);
25616
  border-color: rgba(101, 113, 255, 0);
25617
}
16848 stevensc 25618
 
25619
.btn-inverse-primary.focus,
25620
.btn-inverse-primary:focus {
16825 efrain 25621
  background-color: rgba(101, 113, 255, 0.3);
25622
  border-color: transparent;
25623
}
16848 stevensc 25624
 
25625
.btn-inverse-primary.disabled,
25626
.btn-inverse-primary:disabled {
16825 efrain 25627
  color: #6571ff;
25628
  background-color: transparent;
25629
}
25630
 
25631
.btn-inverse-secondary {
25632
  background-color: rgba(121, 135, 161, 0.2);
25633
  background-image: none;
25634
  border-color: rgba(121, 135, 161, 0);
25635
}
16848 stevensc 25636
 
16825 efrain 25637
.btn-inverse-secondary:not(.btn-inverse-light) {
25638
  color: #7987a1;
25639
}
16848 stevensc 25640
 
25641
.btn-inverse-secondary:hover,
25642
.btn-inverse-secondary.active,
25643
.btn-inverse-secondary:active,
25644
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25645
  background-color: rgba(121, 135, 161, 0.3);
25646
  border-color: rgba(121, 135, 161, 0);
25647
}
16848 stevensc 25648
 
25649
.btn-inverse-secondary.focus,
25650
.btn-inverse-secondary:focus {
16825 efrain 25651
  background-color: rgba(121, 135, 161, 0.3);
25652
  border-color: transparent;
25653
}
16848 stevensc 25654
 
25655
.btn-inverse-secondary.disabled,
25656
.btn-inverse-secondary:disabled {
16825 efrain 25657
  color: #7987a1;
25658
  background-color: transparent;
25659
}
25660
 
25661
.btn-inverse-success {
25662
  background-color: rgba(5, 163, 74, 0.2);
25663
  background-image: none;
25664
  border-color: rgba(5, 163, 74, 0);
25665
}
16848 stevensc 25666
 
16825 efrain 25667
.btn-inverse-success:not(.btn-inverse-light) {
25668
  color: #05a34a;
25669
}
16848 stevensc 25670
 
25671
.btn-inverse-success:hover,
25672
.btn-inverse-success.active,
25673
.btn-inverse-success:active,
25674
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25675
  background-color: rgba(5, 163, 74, 0.3);
25676
  border-color: rgba(5, 163, 74, 0);
25677
}
16848 stevensc 25678
 
25679
.btn-inverse-success.focus,
25680
.btn-inverse-success:focus {
16825 efrain 25681
  background-color: rgba(5, 163, 74, 0.3);
25682
  border-color: transparent;
25683
}
16848 stevensc 25684
 
25685
.btn-inverse-success.disabled,
25686
.btn-inverse-success:disabled {
16825 efrain 25687
  color: #05a34a;
25688
  background-color: transparent;
25689
}
25690
 
25691
.btn-inverse-info {
25692
  background-color: rgba(102, 209, 209, 0.2);
25693
  background-image: none;
25694
  border-color: rgba(102, 209, 209, 0);
25695
}
16848 stevensc 25696
 
16825 efrain 25697
.btn-inverse-info:not(.btn-inverse-light) {
25698
  color: #66d1d1;
25699
}
16848 stevensc 25700
 
25701
.btn-inverse-info:hover,
25702
.btn-inverse-info.active,
25703
.btn-inverse-info:active,
25704
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25705
  background-color: rgba(102, 209, 209, 0.3);
25706
  border-color: rgba(102, 209, 209, 0);
25707
}
16848 stevensc 25708
 
25709
.btn-inverse-info.focus,
25710
.btn-inverse-info:focus {
16825 efrain 25711
  background-color: rgba(102, 209, 209, 0.3);
25712
  border-color: transparent;
25713
}
16848 stevensc 25714
 
25715
.btn-inverse-info.disabled,
25716
.btn-inverse-info:disabled {
16825 efrain 25717
  color: #66d1d1;
25718
  background-color: transparent;
25719
}
25720
 
25721
.btn-inverse-warning {
25722
  background-color: rgba(251, 188, 6, 0.2);
25723
  background-image: none;
25724
  border-color: rgba(251, 188, 6, 0);
25725
}
16848 stevensc 25726
 
16825 efrain 25727
.btn-inverse-warning:not(.btn-inverse-light) {
25728
  color: #fbbc06;
25729
}
16848 stevensc 25730
 
25731
.btn-inverse-warning:hover,
25732
.btn-inverse-warning.active,
25733
.btn-inverse-warning:active,
25734
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25735
  background-color: rgba(251, 188, 6, 0.3);
25736
  border-color: rgba(251, 188, 6, 0);
25737
}
16848 stevensc 25738
 
25739
.btn-inverse-warning.focus,
25740
.btn-inverse-warning:focus {
16825 efrain 25741
  background-color: rgba(251, 188, 6, 0.3);
25742
  border-color: transparent;
25743
}
16848 stevensc 25744
 
25745
.btn-inverse-warning.disabled,
25746
.btn-inverse-warning:disabled {
16825 efrain 25747
  color: #fbbc06;
25748
  background-color: transparent;
25749
}
25750
 
25751
.btn-inverse-danger {
25752
  background-color: rgba(255, 51, 102, 0.2);
25753
  background-image: none;
25754
  border-color: rgba(255, 51, 102, 0);
25755
}
16848 stevensc 25756
 
16825 efrain 25757
.btn-inverse-danger:not(.btn-inverse-light) {
25758
  color: #ff3366;
25759
}
16848 stevensc 25760
 
25761
.btn-inverse-danger:hover,
25762
.btn-inverse-danger.active,
25763
.btn-inverse-danger:active,
25764
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25765
  background-color: rgba(255, 51, 102, 0.3);
25766
  border-color: rgba(255, 51, 102, 0);
25767
}
16848 stevensc 25768
 
25769
.btn-inverse-danger.focus,
25770
.btn-inverse-danger:focus {
16825 efrain 25771
  background-color: rgba(255, 51, 102, 0.3);
25772
  border-color: transparent;
25773
}
16848 stevensc 25774
 
25775
.btn-inverse-danger.disabled,
25776
.btn-inverse-danger:disabled {
16825 efrain 25777
  color: #ff3366;
25778
  background-color: transparent;
25779
}
25780
 
25781
.btn-inverse-light {
25782
  background-color: rgba(233, 236, 239, 0.2);
25783
  background-image: none;
25784
  border-color: rgba(233, 236, 239, 0);
25785
}
16848 stevensc 25786
 
16825 efrain 25787
.btn-inverse-light:not(.btn-inverse-light) {
25788
  color: #e9ecef;
25789
}
16848 stevensc 25790
 
25791
.btn-inverse-light:hover,
25792
.btn-inverse-light.active,
25793
.btn-inverse-light:active,
25794
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25795
  background-color: rgba(233, 236, 239, 0.3);
25796
  border-color: rgba(233, 236, 239, 0);
25797
}
16848 stevensc 25798
 
25799
.btn-inverse-light.focus,
25800
.btn-inverse-light:focus {
16825 efrain 25801
  background-color: rgba(233, 236, 239, 0.3);
25802
  border-color: transparent;
25803
}
16848 stevensc 25804
 
25805
.btn-inverse-light.disabled,
25806
.btn-inverse-light:disabled {
16825 efrain 25807
  color: #e9ecef;
25808
  background-color: transparent;
25809
}
25810
 
25811
.btn-inverse-dark {
25812
  background-color: rgba(6, 12, 23, 0.2);
25813
  background-image: none;
25814
  border-color: rgba(6, 12, 23, 0);
25815
}
16848 stevensc 25816
 
16825 efrain 25817
.btn-inverse-dark:not(.btn-inverse-light) {
25818
  color: #060c17;
25819
}
16848 stevensc 25820
 
25821
.btn-inverse-dark:hover,
25822
.btn-inverse-dark.active,
25823
.btn-inverse-dark:active,
25824
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25825
  background-color: rgba(6, 12, 23, 0.3);
25826
  border-color: rgba(6, 12, 23, 0);
25827
}
16848 stevensc 25828
 
25829
.btn-inverse-dark.focus,
25830
.btn-inverse-dark:focus {
16825 efrain 25831
  background-color: rgba(6, 12, 23, 0.3);
25832
  border-color: transparent;
25833
}
16848 stevensc 25834
 
25835
.btn-inverse-dark.disabled,
25836
.btn-inverse-dark:disabled {
16825 efrain 25837
  color: #060c17;
25838
  background-color: transparent;
25839
}
25840
 
25841
.card {
25842
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25843
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25844
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25845
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25846
}
16848 stevensc 25847
 
25848
.card .card-body+.card-body {
16825 efrain 25849
  padding-top: 1rem;
25850
}
16848 stevensc 25851
 
16825 efrain 25852
.card .card-title {
25853
  text-transform: uppercase;
25854
  font-size: 0.875rem;
25855
  font-weight: 500;
25856
}
25857
 
25858
.card-group {
25859
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25860
}
16848 stevensc 25861
 
16825 efrain 25862
.card-group .card {
25863
  box-shadow: none;
25864
}
25865
 
25866
.dropdown .dropdown-toggle:after,
25867
.btn-group .dropdown-toggle:after {
25868
  border-top: 0;
25869
  border-right: 0;
25870
  border-left: 0;
25871
  border-bottom: 0;
25872
  font: normal normal normal 24px/1 "feather";
25873
  content: "\e842";
25874
  width: auto;
25875
  height: auto;
25876
  vertical-align: middle;
25877
  line-height: 0.625rem;
25878
  font-size: 0.875rem;
25879
}
16848 stevensc 25880
 
16825 efrain 25881
.dropdown.dropup .dropdown-toggle::after,
25882
.btn-group.dropup .dropdown-toggle::after {
25883
  content: "\e845";
25884
}
16848 stevensc 25885
 
16825 efrain 25886
.dropdown.dropstart .dropdown-toggle::before,
25887
.btn-group.dropstart .dropdown-toggle::before {
25888
  border: 0;
25889
  font: normal normal normal 24px/1 "feather";
25890
  content: "\e843";
25891
  width: auto;
25892
  height: auto;
25893
  vertical-align: middle;
25894
  line-height: 0.625rem;
25895
  font-size: 0.875rem;
25896
}
16848 stevensc 25897
 
16825 efrain 25898
.dropdown.dropend .dropdown-toggle::after,
25899
.btn-group.dropend .dropdown-toggle::after {
25900
  content: "\e844";
25901
}
25902
 
16848 stevensc 25903
.dropdown-menu,
25904
.tt-menu {
16825 efrain 25905
  padding: 0.35rem;
25906
  margin-top: 0;
25907
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25908
}
25909
 
16848 stevensc 25910
.dropdown-item,
25911
.tt-menu .tt-suggestion {
16825 efrain 25912
  font-size: 0.812rem;
25913
  padding: 0.25rem 0.875rem;
25914
  border-radius: 2px;
25915
}
16848 stevensc 25916
 
25917
.dropdown-item i,
25918
.tt-menu .tt-suggestion i,
25919
.dropdown-item svg,
25920
.tt-menu .tt-suggestion svg {
16825 efrain 25921
  color: #7987a1;
25922
}
16848 stevensc 25923
 
25924
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25925
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25926
  background-color: rgba(101, 113, 255, 0.1);
25927
}
16848 stevensc 25928
 
25929
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25930
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25931
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25932
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25933
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25934
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25935
  color: #6571ff;
25936
}
16848 stevensc 25937
 
25938
.dropdown-item:active i,
25939
.tt-menu .tt-suggestion:active i,
25940
.dropdown-item:active svg,
25941
.tt-menu .tt-suggestion:active svg,
25942
.dropdown-item.active i,
25943
.tt-menu .active.tt-suggestion i,
25944
.dropdown-item.active svg,
25945
.tt-menu .active.tt-suggestion svg {
16825 efrain 25946
  color: #fff;
25947
}
25948
 
25949
.form-control-xs,
25950
.form-select-xs {
25951
  padding: 0.313rem 0.8rem;
25952
  font-size: 0.75rem;
25953
}
25954
 
16848 stevensc 25955
.form-control-xs+.input-group-text {
16825 efrain 25956
  padding-top: 0.313rem;
25957
  padding-bottom: 0.313rem;
25958
}
25959
 
25960
.form-check-input {
25961
  margin-top: 0.13em;
25962
}
25963
 
25964
.input-group-text svg {
25965
  width: 18px;
25966
  height: 18px;
25967
}
25968
 
25969
[type=tel],
25970
[type=url],
25971
[type=email],
25972
[type=number] {
25973
  direction: ltr;
25974
}
25975
 
25976
.icons-list {
25977
  border-left: 1px solid #e9ecef;
25978
  border-top: 1px solid #e9ecef;
25979
}
16848 stevensc 25980
 
25981
.icons-list>div {
16825 efrain 25982
  border-bottom: 1px solid #e9ecef;
25983
  border-right: 1px solid #e9ecef;
25984
  background: #f9fafb;
25985
  display: flex;
25986
  align-items: center;
25987
  padding: 15px 20px;
25988
  font-weight: 400;
25989
  transition: all 0.3s ease-in-out;
25990
}
16848 stevensc 25991
 
25992
.icons-list>div i {
16825 efrain 25993
  display: inline-block;
25994
  font-size: 20px;
25995
  text-align: left;
25996
  margin-right: 12px;
25997
  color: #7987a1;
25998
  transition: all 0.3s ease-in-out;
25999
}
16848 stevensc 26000
 
26001
.icons-list>div svg {
16825 efrain 26002
  width: 20px;
26003
  margin-right: 12px;
26004
  color: #7987a1;
26005
  transition: all 0.3s ease-in-out;
26006
}
16848 stevensc 26007
 
26008
.icons-list>div:hover {
16825 efrain 26009
  cursor: text;
26010
}
16848 stevensc 26011
 
26012
.icons-list>div:hover i,
26013
.icons-list>div:hover svg {
16825 efrain 26014
  transform: scale(1.3);
26015
  color: #6571ff;
26016
}
26017
 
26018
.nav.nav-tabs .nav-item .nav-link {
26019
  border-color: #e9ecef #e9ecef #dee2e6;
26020
  color: #000;
26021
  background-color: #f8f9fa;
26022
  cursor: pointer;
26023
}
16848 stevensc 26024
 
16825 efrain 26025
.nav.nav-tabs .nav-item .nav-link.active {
26026
  border-color: #dee2e6 #dee2e6 #fff;
26027
  color: #6571ff;
26028
  background: #fff;
26029
}
16848 stevensc 26030
 
16825 efrain 26031
.nav.nav-tabs .nav-item .nav-link.disabled {
26032
  background-color: transparent;
26033
  color: #7987a1;
26034
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26035
}
16848 stevensc 26036
 
16825 efrain 26037
.nav.nav-tabs.nav-tabs-vertical {
26038
  border-bottom: 0;
26039
}
16848 stevensc 26040
 
16825 efrain 26041
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26042
  width: 100%;
26043
  border: 1px solid transparent;
26044
  border-radius: 0;
26045
  border-color: #e9ecef #e9ecef #dee2e6;
26046
  color: #000;
26047
  background-color: #f8f9fa;
26048
}
16848 stevensc 26049
 
16825 efrain 26050
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26051
  border-radius: 0.25rem 0 0 0;
26052
}
16848 stevensc 26053
 
16825 efrain 26054
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26055
  border-radius: 0 0 0 0.25rem;
26056
}
16848 stevensc 26057
 
16825 efrain 26058
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26059
  background-color: #fff;
26060
  color: #6571ff;
26061
  border-right-color: transparent;
26062
}
16848 stevensc 26063
 
16825 efrain 26064
.nav.nav-tabs.nav-tabs-line .nav-link {
26065
  border: 0;
26066
  background-color: transparent;
26067
}
16848 stevensc 26068
 
16825 efrain 26069
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26070
  border-bottom: 2px solid #6571ff;
26071
}
26072
 
26073
.tab-content.tab-content-vertical {
26074
  height: 100%;
26075
}
26076
 
26077
.pagination .page-item .page-link svg {
26078
  width: 18px;
26079
  height: 18px;
26080
}
16848 stevensc 26081
 
16825 efrain 26082
.pagination.pagination-separated .page-item {
26083
  margin-left: 2px;
26084
  margin-right: 2px;
26085
}
16848 stevensc 26086
 
16825 efrain 26087
.pagination.pagination-separated .page-item:first-child {
26088
  margin-left: 0;
26089
}
16848 stevensc 26090
 
16825 efrain 26091
.pagination.pagination-separated .page-item:last-child {
26092
  margin-right: 0;
26093
}
16848 stevensc 26094
 
16825 efrain 26095
.pagination.pagination-rounded .page-item {
26096
  margin-right: 2px;
26097
  margin-left: 2px;
26098
}
16848 stevensc 26099
 
16825 efrain 26100
.pagination.pagination-rounded .page-item .page-link {
26101
  border-radius: 50px;
26102
}
26103
 
26104
.table {
26105
  margin-bottom: 0;
26106
}
16848 stevensc 26107
 
26108
.table> :not(:last-child)> :last-child>* {
16825 efrain 26109
  border-bottom-color: inherit;
26110
}
16848 stevensc 26111
 
16825 efrain 26112
.table thead th {
26113
  border-top: 0;
26114
  font-weight: 500;
26115
  font-size: 12px;
26116
  text-transform: uppercase;
26117
  color: #7987a1;
26118
}
16848 stevensc 26119
 
16825 efrain 26120
.table thead th i {
26121
  margin-left: 0.325rem;
26122
}
16848 stevensc 26123
 
16825 efrain 26124
.table th,
26125
.table td {
26126
  white-space: nowrap;
26127
}
16848 stevensc 26128
 
16825 efrain 26129
.table td img {
26130
  width: 36px;
26131
  height: 36px;
26132
  border-radius: 100%;
26133
}
26134
 
26135
.timeline {
26136
  border-left: 3px solid #6571ff;
26137
  border-bottom-right-radius: 0.25rem;
26138
  border-top-right-radius: 0.25rem;
26139
  background: rgba(101, 113, 255, 0.2);
26140
  margin: 0 auto;
26141
  position: relative;
26142
  padding: 50px;
26143
  list-style: none;
26144
  max-width: 40%;
26145
}
16848 stevensc 26146
 
16825 efrain 26147
@media (max-width: 767px) {
26148
  .timeline {
26149
    max-width: 98%;
26150
    padding: 25px;
26151
  }
26152
}
16848 stevensc 26153
 
16825 efrain 26154
.timeline .event {
26155
  border-bottom: 1px dashed #e9ecef;
26156
  padding-bottom: 25px;
26157
  margin-bottom: 25px;
26158
  position: relative;
26159
}
16848 stevensc 26160
 
16825 efrain 26161
@media (max-width: 767px) {
26162
  .timeline .event {
26163
    padding-top: 30px;
26164
  }
26165
}
16848 stevensc 26166
 
16825 efrain 26167
.timeline .event .title {
26168
  font-weight: 500;
26169
  font-size: 1rem;
26170
  margin-bottom: 10px;
26171
}
16848 stevensc 26172
 
16825 efrain 26173
.timeline .event:last-of-type {
26174
  padding-bottom: 0;
26175
  margin-bottom: 0;
26176
  border: none;
26177
}
16848 stevensc 26178
 
26179
.timeline .event:before,
26180
.timeline .event:after {
16825 efrain 26181
  position: absolute;
26182
  display: block;
26183
  top: 0;
26184
}
16848 stevensc 26185
 
16825 efrain 26186
.timeline .event:before {
26187
  left: -207px;
26188
  content: attr(data-date);
26189
  text-align: right;
26190
  font-weight: 500;
26191
  font-size: 0.9em;
26192
  min-width: 120px;
26193
}
16848 stevensc 26194
 
16825 efrain 26195
@media (max-width: 767px) {
26196
  .timeline .event:before {
26197
    left: 0px;
26198
    text-align: left;
26199
  }
26200
}
16848 stevensc 26201
 
16825 efrain 26202
.timeline .event:after {
26203
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26204
  box-shadow: 0 0 0 3px #6571ff;
26205
  left: -55.8px;
26206
  background: #fff;
26207
  border-radius: 50%;
26208
  height: 9px;
26209
  width: 9px;
26210
  content: "";
26211
  top: 5px;
26212
}
16848 stevensc 26213
 
16825 efrain 26214
@media (max-width: 767px) {
26215
  .timeline .event:after {
26216
    left: -31.8px;
26217
  }
26218
}
26219
 
26220
.chat-wrapper {
26221
  height: calc(100vh - 60px - 102px);
26222
}
16848 stevensc 26223
 
16825 efrain 26224
@media (max-width: 991px) {
26225
  .chat-wrapper {
26226
    min-height: 100%;
26227
  }
26228
}
16848 stevensc 26229
 
16825 efrain 26230
@media (max-width: 991px) {
26231
  .chat-wrapper {
26232
    height: 100%;
26233
  }
26234
}
16848 stevensc 26235
 
16825 efrain 26236
@media (min-width: 992px) {
26237
  .chat-wrapper .chat-aside {
26238
    padding-right: 23px;
26239
  }
26240
}
16848 stevensc 26241
 
16825 efrain 26242
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26243
  position: relative;
26244
  max-height: calc(100vh - 385px);
26245
}
16848 stevensc 26246
 
26247
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26248
  padding-top: 11px;
26249
  padding-bottom: 11px;
26250
}
16848 stevensc 26251
 
16825 efrain 26252
@media (max-width: 991px) {
26253
  .chat-wrapper .chat-content {
26254
    position: absolute;
26255
    background: #fff;
26256
    left: 0;
26257
    bottom: -1px;
26258
    top: 0;
26259
    right: 0;
26260
    display: none;
26261
  }
16848 stevensc 26262
 
16825 efrain 26263
  .chat-wrapper .chat-content.show {
26264
    display: block;
26265
  }
26266
}
16848 stevensc 26267
 
16825 efrain 26268
.chat-wrapper .chat-content .chat-header {
26269
  padding: 0 10px;
26270
}
16848 stevensc 26271
 
16825 efrain 26272
.chat-wrapper .chat-content .chat-body {
26273
  position: relative;
26274
  max-height: calc(100vh - 340px);
26275
  margin-top: 20px;
26276
  margin-bottom: 20px;
26277
}
16848 stevensc 26278
 
16825 efrain 26279
@media (max-width: 767px) {
26280
  .chat-wrapper .chat-content .chat-body {
26281
    max-height: calc(100vh - 315px);
26282
  }
26283
}
16848 stevensc 26284
 
16825 efrain 26285
@media (max-width: 991px) {
26286
  .chat-wrapper .chat-content .chat-body {
26287
    max-height: calc(100vh - 342px);
26288
  }
26289
}
16848 stevensc 26290
 
16825 efrain 26291
.chat-wrapper .chat-content .chat-body .messages {
26292
  padding: 0 10px;
26293
  list-style-type: none;
26294
}
16848 stevensc 26295
 
16825 efrain 26296
.chat-wrapper .chat-content .chat-body .messages .message-item {
26297
  display: flex;
26298
  max-width: 80%;
26299
  margin-bottom: 20px;
26300
}
16848 stevensc 26301
 
16825 efrain 26302
@media (max-width: 767px) {
26303
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26304
    max-width: 95%;
26305
  }
26306
}
16848 stevensc 26307
 
16825 efrain 26308
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26309
  position: relative;
26310
  padding: 7px 15px;
26311
  margin-bottom: 4px;
26312
  width: -webkit-fit-content;
26313
  width: -moz-fit-content;
26314
  width: fit-content;
26315
}
16848 stevensc 26316
 
16825 efrain 26317
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26318
  font-size: 12px;
26319
  color: #7987a1;
26320
}
16848 stevensc 26321
 
16825 efrain 26322
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26323
  order: 1;
26324
  margin-right: 15px;
26325
}
16848 stevensc 26326
 
16825 efrain 26327
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26328
  order: 2;
26329
}
16848 stevensc 26330
 
16825 efrain 26331
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26332
  background: rgba(101, 113, 255, 0.1);
26333
  border-radius: 0 5px 5px;
26334
}
16848 stevensc 26335
 
16825 efrain 26336
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26337
  content: "";
26338
  width: 0;
26339
  height: 0;
26340
  position: absolute;
26341
  left: -10px;
26342
  top: 0;
26343
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26344
  border-bottom: 5px solid transparent;
26345
  border-left: 5px solid transparent;
26346
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26347
}
16848 stevensc 26348
 
16825 efrain 26349
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26350
  margin-left: auto;
26351
}
16848 stevensc 26352
 
16825 efrain 26353
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26354
  order: 2;
26355
  margin-left: 15px;
26356
}
16848 stevensc 26357
 
16825 efrain 26358
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26359
  order: 1;
26360
  margin-left: auto;
26361
}
16848 stevensc 26362
 
16825 efrain 26363
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26364
  background: rgba(102, 209, 209, 0.1);
26365
  border-radius: 5px 0 5px 5px;
26366
  margin-left: auto;
26367
}
16848 stevensc 26368
 
16825 efrain 26369
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26370
  content: "";
26371
  width: 0;
26372
  height: 0;
26373
  position: absolute;
26374
  right: -10px;
26375
  top: 0;
26376
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26377
  border-bottom: 5px solid transparent;
26378
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26379
  border-right: 5px solid transparent;
26380
}
16848 stevensc 26381
 
16825 efrain 26382
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26383
  text-align: right;
26384
  display: block;
26385
}
16848 stevensc 26386
 
16825 efrain 26387
.chat-wrapper figure {
26388
  position: relative;
26389
}
16848 stevensc 26390
 
16825 efrain 26391
.chat-wrapper figure .status {
26392
  width: 11px;
26393
  height: 11px;
26394
  background: #7987a1;
26395
  position: absolute;
26396
  bottom: 0px;
26397
  right: -2px;
26398
  border-radius: 50%;
26399
  border: 2px solid #fff;
26400
}
16848 stevensc 26401
 
16825 efrain 26402
.chat-wrapper figure .status.online {
26403
  background: #05a34a;
26404
}
16848 stevensc 26405
 
16825 efrain 26406
.chat-wrapper figure .status.offline {
26407
  background: #7987a1;
26408
}
26409
 
26410
.auth-page .auth-side-wrapper {
26411
  width: 100%;
26412
  height: 100%;
26413
  background-image: url(https://via.placeholder.com/219x452);
26414
  background-size: cover;
26415
}
26416
 
26417
.email-aside-nav.collapse {
26418
  display: block;
26419
}
16848 stevensc 26420
 
16825 efrain 26421
@media (max-width: 991px) {
26422
  .email-aside-nav.collapse {
26423
    display: none;
26424
  }
26425
}
16848 stevensc 26426
 
16825 efrain 26427
@media (max-width: 991px) {
26428
  .email-aside-nav.collapse.show {
26429
    display: block;
26430
  }
26431
}
16848 stevensc 26432
 
16825 efrain 26433
.email-aside-nav .nav-item {
26434
  border-radius: 0.2rem;
26435
}
16848 stevensc 26436
 
16825 efrain 26437
.email-aside-nav .nav-item .nav-link {
26438
  color: #000;
26439
}
16848 stevensc 26440
 
16825 efrain 26441
.email-aside-nav .nav-item .nav-link svg {
26442
  color: #7987a1;
26443
}
16848 stevensc 26444
 
26445
.email-aside-nav .nav-item.active,
26446
.email-aside-nav .nav-item:hover {
16825 efrain 26447
  background: rgba(101, 113, 255, 0.1);
26448
}
16848 stevensc 26449
 
26450
.email-aside-nav .nav-item.active .nav-link,
26451
.email-aside-nav .nav-item.active .nav-link svg,
26452
.email-aside-nav .nav-item:hover .nav-link,
26453
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26454
  color: #6571ff;
26455
}
26456
 
26457
.email-list-item {
26458
  display: flex;
26459
  align-items: center;
26460
  border-bottom: 1px solid #e9ecef;
26461
  padding: 10px 20px;
26462
  cursor: pointer;
26463
}
16848 stevensc 26464
 
16825 efrain 26465
.email-list-item:hover {
26466
  background: rgba(101, 113, 255, 0.08);
26467
}
16848 stevensc 26468
 
16825 efrain 26469
.email-list-item:last-child {
26470
  margin-bottom: 5px;
26471
}
16848 stevensc 26472
 
16825 efrain 26473
.email-list-item .email-list-actions {
26474
  width: 40px;
26475
  vertical-align: top;
26476
  display: table-cell;
26477
}
16848 stevensc 26478
 
16825 efrain 26479
.email-list-item .email-list-actions .form-check {
26480
  margin-bottom: 0;
26481
}
16848 stevensc 26482
 
16825 efrain 26483
.email-list-item .email-list-actions .favorite {
26484
  display: block;
26485
  padding-left: 1px;
26486
  line-height: 15px;
26487
}
16848 stevensc 26488
 
16825 efrain 26489
.email-list-item .email-list-actions .favorite span svg {
26490
  width: 14px;
26491
  color: #7987a1;
26492
}
16848 stevensc 26493
 
16825 efrain 26494
.email-list-item .email-list-actions .favorite:hover span {
26495
  color: #8d8d8d;
26496
}
16848 stevensc 26497
 
16825 efrain 26498
.email-list-item .email-list-actions .favorite.active span svg {
26499
  color: #fbbc06;
26500
}
16848 stevensc 26501
 
16825 efrain 26502
.email-list-item .email-list-detail {
26503
  width: calc(100% - 40px);
26504
  display: flex;
26505
  justify-content: space-between;
26506
  align-items: center;
26507
  flex-grow: 1;
26508
}
16848 stevensc 26509
 
16825 efrain 26510
.email-list-item .email-list-detail .content {
26511
  overflow: hidden;
26512
}
16848 stevensc 26513
 
16825 efrain 26514
.email-list-item .email-list-detail .content .from {
26515
  display: block;
26516
  margin: 0 0 1px 0;
26517
  color: #000;
26518
}
16848 stevensc 26519
 
16825 efrain 26520
.email-list-item .email-list-detail .content .msg {
26521
  width: 97%;
26522
  color: #7987a1;
26523
  font-size: 0.8rem;
26524
  overflow: hidden;
26525
  text-overflow: ellipsis;
26526
  white-space: nowrap;
26527
}
16848 stevensc 26528
 
16825 efrain 26529
.email-list-item .email-list-detail .date {
26530
  color: #000;
26531
  white-space: nowrap;
26532
}
16848 stevensc 26533
 
16825 efrain 26534
.email-list-item .email-list-detail .date .icon svg {
26535
  width: 14px;
26536
  margin-right: 7px;
26537
  color: #3d405c;
26538
}
16848 stevensc 26539
 
16825 efrain 26540
.email-list-item.email-list-item--unread {
26541
  background-color: rgba(101, 113, 255, 0.09);
26542
}
16848 stevensc 26543
 
16825 efrain 26544
.email-list-item.email-list-item--unread .content .from {
26545
  font-weight: 500;
26546
}
16848 stevensc 26547
 
16825 efrain 26548
.email-list-item.email-list-item--unread .content .msg {
26549
  font-weight: 700;
26550
}
26551
 
26552
.ace_editor {
26553
  border-radius: 0.25rem;
26554
  margin: auto;
26555
  height: 300px;
26556
  width: 100%;
26557
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26558
}
16848 stevensc 26559
 
16825 efrain 26560
.ace_editor .ace_content {
26561
  font-size: 0.875rem;
26562
}
26563
 
26564
div.apexcharts-canvas .apexcharts-menu {
26565
  background: #fff !important;
26566
  color: #000;
26567
  border-color: #e9ecef;
26568
}
16848 stevensc 26569
 
16825 efrain 26570
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26571
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26572
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26573
div.apexcharts-canvas .apexcharts-reset-icon svg,
26574
div.apexcharts-canvas .apexcharts-pan-icon svg,
26575
div.apexcharts-canvas .apexcharts-selection-icon svg,
26576
div.apexcharts-canvas .apexcharts-menu-icon svg,
26577
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26578
  fill: #7987a1;
26579
}
16848 stevensc 26580
 
16825 efrain 26581
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26582
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26583
  display: flex;
26584
  align-items: center;
26585
}
16848 stevensc 26586
 
16825 efrain 26587
div.apexcharts-canvas .apexcharts-legend-marker {
26588
  margin-right: 3px;
26589
}
16848 stevensc 26590
 
16825 efrain 26591
div.apexcharts-canvas .apexcharts-tooltip {
26592
  background: rgba(255, 255, 255, 0.8);
26593
  color: #000;
26594
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26595
  border-radius: 0.25rem;
26596
  border: 1px solid #f2f4f9;
26597
}
16848 stevensc 26598
 
16825 efrain 26599
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26600
  border-color: #e9ecef;
26601
  background-color: #fff;
26602
}
16848 stevensc 26603
 
16825 efrain 26604
div.apexcharts-canvas .apexcharts-tooltip * {
26605
  font-family: "Roboto", Helvetica, sans-serif !important;
26606
}
16848 stevensc 26607
 
16825 efrain 26608
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26609
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26610
  padding: 0 10px;
26611
}
16848 stevensc 26612
 
16825 efrain 26613
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26614
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26615
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26616
  margin-left: 0;
26617
}
16848 stevensc 26618
 
16825 efrain 26619
div.apexcharts-canvas .apexcharts-tooltip-title {
26620
  margin-bottom: 0;
26621
}
16848 stevensc 26622
 
16825 efrain 26623
div.apexcharts-canvas .apexcharts-xaxistooltip,
26624
div.apexcharts-canvas .apexcharts-yaxistooltip {
26625
  background: #fff;
26626
  color: #000;
26627
  border-color: #f2f4f9;
26628
}
16848 stevensc 26629
 
16825 efrain 26630
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26631
  border-bottom-color: #f2f4f9;
26632
}
16848 stevensc 26633
 
16825 efrain 26634
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26635
  border-bottom-color: rgba(255, 255, 255, 0.8);
26636
}
16848 stevensc 26637
 
16825 efrain 26638
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26639
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26640
  border-left-color: #f2f4f9;
26641
}
16848 stevensc 26642
 
16825 efrain 26643
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26644
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26645
  border-left-color: rgba(255, 255, 255, 0.8);
26646
}
26647
 
26648
@media (max-width: 767px) {
26649
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26650
    text-align: left;
26651
  }
26652
}
16848 stevensc 26653
 
16825 efrain 26654
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26655
  margin-left: 10px;
26656
  margin-right: 10px;
26657
}
16848 stevensc 26658
 
16825 efrain 26659
@media (max-width: 767px) {
26660
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26661
    text-align: left;
26662
    margin-left: -19px;
26663
  }
26664
}
26665
 
26666
.dropify-wrapper {
26667
  border: 1px solid #e9ecef;
26668
  border-radius: 0.25rem;
26669
}
16848 stevensc 26670
 
16825 efrain 26671
.dropify-wrapper .dropify-message span.file-icon {
26672
  font-size: 0.875rem;
26673
  color: #7987a1;
26674
}
16848 stevensc 26675
 
16825 efrain 26676
.dropify-wrapper .dropify-message span.file-icon::before {
26677
  font-family: feather;
26678
  content: "\e8e3";
26679
  font-size: 24px;
26680
}
26681
 
26682
.dropzone {
26683
  overflow: auto;
26684
  border: 1px solid #e9ecef;
26685
  border-radius: 0.25rem;
26686
  max-height: 200px;
26687
  padding: 0;
26688
}
16848 stevensc 26689
 
16825 efrain 26690
@media (min-width: 1400px) {
26691
  .dropzone {
26692
    min-height: 200px;
26693
  }
26694
}
16848 stevensc 26695
 
16825 efrain 26696
.dropzone.dz-clickable .dz-message {
26697
  margin-top: 65px;
26698
}
16848 stevensc 26699
 
26700
.dropzone .dz-preview.dz-image-preview .dz-image,
26701
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26702
  border-radius: 0.25rem;
26703
}
26704
 
16848 stevensc 26705
.form-control.flatpickr-input,
26706
.flatpickr-input.typeahead.tt-input,
26707
.flatpickr-input.typeahead.tt-hint,
26708
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26709
  background-color: #fff;
26710
}
26711
 
26712
.flatpickr-day.selected,
26713
.flatpickr-day.startRange,
26714
.flatpickr-day.endRange,
26715
.flatpickr-day.selected.inRange,
26716
.flatpickr-day.startRange.inRange,
26717
.flatpickr-day.endRange.inRange,
26718
.flatpickr-day.selected:focus,
26719
.flatpickr-day.startRange:focus,
26720
.flatpickr-day.endRange:focus,
26721
.flatpickr-day.selected:hover,
26722
.flatpickr-day.startRange:hover,
26723
.flatpickr-day.endRange:hover,
26724
.flatpickr-day.selected.prevMonthDay,
26725
.flatpickr-day.startRange.prevMonthDay,
26726
.flatpickr-day.endRange.prevMonthDay,
26727
.flatpickr-day.selected.nextMonthDay,
26728
.flatpickr-day.startRange.nextMonthDay,
26729
.flatpickr-day.endRange.nextMonthDay {
26730
  background: #6571ff;
26731
  border-color: #6571ff;
26732
}
26733
 
26734
.flatpickr-months {
26735
  padding: 0 1rem;
26736
  padding-top: 0.5rem;
26737
}
26738
 
26739
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26740
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26741
  left: 11px;
26742
  right: auto !important;
26743
  top: 8px;
26744
}
26745
 
26746
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26747
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26748
  right: 11px;
26749
  left: auto !important;
26750
  top: 8px;
26751
}
26752
 
26753
.flatpickr-months .flatpickr-prev-month:hover svg,
26754
.flatpickr-months .flatpickr-next-month:hover svg {
26755
  fill: #6571ff;
26756
}
26757
 
26758
.flatpickr-months .flatpickr-month {
26759
  height: 42px;
26760
}
26761
 
26762
.flatpickr-current-month .flatpickr-monthDropdown-months {
26763
  font-size: 1rem;
26764
  border-radius: 0.25rem;
26765
  padding: 0.3rem 0.5rem;
26766
}
26767
 
26768
.flatpickr-weekdays {
26769
  padding: 0 10px;
26770
}
26771
 
26772
.dayContainer {
26773
  padding: 0 10px 10px;
26774
}
26775
 
26776
.fc {
26777
  --fc-button-active-bg-color: #6571ff;
26778
  --fc-button-active-border-color: #6571ff;
26779
}
16848 stevensc 26780
 
16825 efrain 26781
.fc .fc-button .fc-icon {
26782
  font-size: 1.2 em;
26783
}
16848 stevensc 26784
 
16825 efrain 26785
.fc .fc-button-primary:focus,
26786
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26787
.fc .fc-button-primary:not(:disabled):active:focus {
26788
  box-shadow: none;
26789
}
16848 stevensc 26790
 
16825 efrain 26791
.fc .fc-button-primary:disabled {
26792
  border-color: #6571ff;
26793
}
16848 stevensc 26794
 
16825 efrain 26795
@media (max-width: 767px) {
26796
  .fc .fc-toolbar {
26797
    flex-direction: column;
26798
  }
16848 stevensc 26799
 
16825 efrain 26800
  .fc .fc-toolbar .fc-toolbar-chunk {
26801
    margin-bottom: 12px;
26802
  }
26803
}
16848 stevensc 26804
 
16825 efrain 26805
.fc .fc-daygrid-day-number,
26806
.fc .fc-col-header-cell-cushion {
26807
  color: #000;
26808
}
16848 stevensc 26809
 
16825 efrain 26810
.fc .fc-daygrid-event {
26811
  padding: 4px;
26812
}
16848 stevensc 26813
 
16825 efrain 26814
.fc .fc-daygrid-day.fc-day-today {
26815
  background-color: rgba(101, 113, 255, 0.2);
26816
}
16848 stevensc 26817
 
16825 efrain 26818
.fc .fc-list-event:hover td {
26819
  background-color: rgba(101, 113, 255, 0.2);
26820
}
16848 stevensc 26821
 
16825 efrain 26822
.fc .fc-list-day-text,
26823
.fc .fc-list-day-side-text {
26824
  color: #000;
26825
}
26826
 
26827
.fc-theme-standard td,
26828
.fc-theme-standard th,
26829
.fc-theme-standard .fc-scrollgrid {
26830
  border-color: #e9ecef;
26831
}
26832
 
26833
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26834
.fc-timegrid-event.fc-event-mirror,
26835
.fc-timegrid-more-link {
26836
  box-shadow: none;
26837
}
26838
 
26839
.fc-theme-standard .fc-popover {
26840
  background-color: #fff;
26841
  border-color: #f2f4f9;
26842
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26843
}
16848 stevensc 26844
 
16825 efrain 26845
.fc-theme-standard .fc-popover .fc-popover-header {
26846
  background-color: #7987a1;
26847
}
26848
 
26849
.fc-theme-standard .fc-list-day-cushion {
26850
  background-color: #fff;
26851
}
26852
 
26853
.fc-theme-standard .fc-list {
26854
  border-color: #e9ecef;
26855
}
26856
 
26857
.fc-event {
26858
  margin-bottom: 10px;
26859
  padding: 8px;
26860
  border-radius: 2px;
26861
  background: rgba(101, 113, 255, 0.2);
26862
  border: 0;
26863
  border-left: 3px solid #6571ff;
26864
  color: #000;
26865
  font-weight: 500;
26866
}
26867
 
26868
.fc-h-event .fc-event-main {
26869
  color: #000;
26870
}
26871
 
26872
.flot-chart-wrapper .flot-chart {
26873
  width: 100%;
26874
  position: relative;
26875
  max-width: none;
26876
  height: 400px;
26877
}
16848 stevensc 26878
 
16825 efrain 26879
@media (max-width: 767px) {
26880
  .flot-chart-wrapper {
26881
    height: 200px;
26882
    min-height: 200px;
26883
  }
16848 stevensc 26884
 
16825 efrain 26885
  .flot-chart-wrapper .flot-chart {
26886
    height: 100%;
26887
  }
26888
}
26889
 
16848 stevensc 26890
.flot-text .flot-x-axis>div,
16825 efrain 26891
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26892
.flot-text .flot-y-axis>div,
16825 efrain 26893
.flot-text .flot-y-axis .flot-tick-label {
26894
  color: #000;
26895
}
26896
 
26897
.peity-custom svg {
26898
  margin-right: 10px;
26899
}
26900
 
26901
.ps__thumb-x {
26902
  background-color: #d9d9d9;
26903
  height: 4px;
26904
}
26905
 
26906
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26907
.ps__rail-x:focus>.ps__thumb-x,
26908
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26909
  background-color: #b3b3b3;
26910
  height: 6px;
26911
}
26912
 
26913
.ps__rail-x {
26914
  height: 10px;
26915
}
26916
 
26917
.ps__thumb-y {
26918
  background-color: #d9d9d9;
26919
  width: 4px;
26920
  /*rtl:raw:
26921
   left: 2px !important;
26922
  right: auto !important;
26923
   */
26924
}
26925
 
26926
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26927
.ps__rail-y:focus>.ps__thumb-y,
26928
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26929
  background-color: #b3b3b3;
26930
  width: 6px;
26931
}
26932
 
26933
.ps__rail-y {
26934
  width: 10px;
26935
  /*rtl:raw:
26936
   left: 0 !important;
26937
  right: auto !important;
26938
   */
26939
}
26940
 
26941
.ps .ps__rail-x.ps--clicking,
26942
.ps .ps__rail-x:focus,
26943
.ps .ps__rail-x:hover,
26944
.ps .ps__rail-y.ps--clicking,
26945
.ps .ps__rail-y:focus,
26946
.ps .ps__rail-y:hover {
26947
  background-color: #e9ecef;
26948
}
26949
 
26950
.swal2-popup {
26951
  font-size: 0.875rem;
26952
}
16848 stevensc 26953
 
16825 efrain 26954
.swal2-popup .swal2-title {
26955
  font-size: 25px;
26956
  line-height: 1;
26957
  font-weight: 500;
26958
  color: #000;
26959
  margin-bottom: 0;
26960
}
16848 stevensc 26961
 
16825 efrain 26962
.swal2-popup .swal2-html-container {
26963
  font-size: 0.875rem;
26964
  color: #7987a1;
26965
  font-weight: initial;
26966
  margin-top: 11px;
26967
  text-decoration: none;
26968
}
16848 stevensc 26969
 
16825 efrain 26970
.swal2-popup .swal2-actions button svg {
26971
  width: 16px;
26972
  height: 16px;
26973
}
16848 stevensc 26974
 
16825 efrain 26975
.swal2-popup .swal2-close {
26976
  font-size: 22px;
26977
}
16848 stevensc 26978
 
16825 efrain 26979
.swal2-popup .swal2-close:focus {
26980
  box-shadow: none;
26981
}
16848 stevensc 26982
 
16825 efrain 26983
.swal2-popup .swal2-timer-progress-bar {
26984
  background: #7987a1;
26985
}
26986
 
26987
.select2-container--default .select2-selection--single,
26988
.select2-container--default .select2-selection--multiple {
26989
  border: 1px solid #e9ecef;
26990
  border-radius: 0.25rem;
26991
}
16848 stevensc 26992
 
26993
.select2-container--focus.select2-container--default .select2-selection--single,
26994
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 26995
  border: 1px solid #cbd1db;
26996
}
26997
 
26998
.select2-dropdown {
26999
  border: 1px solid #cbd1db;
27000
  border-radius: 0.25rem;
27001
}
27002
 
27003
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27004
  background-color: #6571ff;
27005
}
27006
 
27007
.select2-container .select2-selection--single,
27008
.select2-container .select2-selection--multiple {
27009
  height: auto;
27010
}
27011
 
27012
.select2-container--default .select2-selection--single .select2-selection__rendered {
27013
  line-height: 1.5;
27014
  padding: 0.469rem 0.8rem;
27015
}
16848 stevensc 27016
 
16825 efrain 27017
.select2-container--default .select2-selection--single .select2-selection__arrow {
27018
  height: 100%;
27019
}
16848 stevensc 27020
 
16825 efrain 27021
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27022
  left: 0;
27023
}
27024
 
27025
.select2-container--default .select2-selection--multiple {
27026
  min-height: 38px;
27027
}
16848 stevensc 27028
 
16825 efrain 27029
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27030
  padding: 0 6px;
27031
}
16848 stevensc 27032
 
16825 efrain 27033
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27034
  background-color: #6571ff;
27035
  color: #fff;
27036
  border-color: #6571ff;
27037
  padding: 1px 8px;
27038
  border-radius: 0.15rem;
27039
  margin-top: 5px;
27040
}
16848 stevensc 27041
 
16825 efrain 27042
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27043
  color: #fff;
27044
  opacity: 0.5;
27045
}
27046
 
27047
.select2-container .select2-search--inline {
27048
  margin-top: 3px;
27049
}
27050
 
27051
.EasyMDEContainer .CodeMirror {
27052
  background: #fff;
27053
  border: 1px solid #e9ecef;
27054
  color: #000;
27055
  border-bottom-left-radius: 0;
27056
  border-bottom-right-radius: 0;
27057
}
27058
 
27059
.editor-toolbar {
27060
  border: 1px solid #e9ecef;
27061
  border-bottom: 0;
27062
  border-radius: 0.25rem 0.25rem 0 0;
27063
}
16848 stevensc 27064
 
27065
.editor-toolbar,
27066
.editor-toolbar:hover {
16825 efrain 27067
  opacity: 1;
27068
}
16848 stevensc 27069
 
16825 efrain 27070
.editor-toolbar button {
27071
  color: rgba(0, 0, 0, 0.7) !important;
27072
}
16848 stevensc 27073
 
16825 efrain 27074
.editor-toolbar button:hover {
27075
  background: #e9ecef;
27076
  border: none;
27077
}
16848 stevensc 27078
 
16825 efrain 27079
.editor-toolbar i.separator {
27080
  border-left: 1px solid #e9ecef;
27081
  border-right: 1px solid #e9ecef;
27082
}
27083
 
27084
.CodeMirror-fullscreen,
27085
.editor-toolbar.fullscreen,
27086
.editor-preview-side {
27087
  z-index: 999;
27088
}
27089
 
27090
.editor-preview-side {
27091
  border-color: #e9ecef;
27092
}
27093
 
16848 stevensc 27094
.editor-toolbar button.active,
27095
.editor-toolbar button:hover {
16825 efrain 27096
  background: #e9ecef;
27097
  border-color: transparent;
27098
}
27099
 
27100
.editor-statusbar {
27101
  padding: 0 10px;
27102
  border: 1px solid #e9ecef;
27103
  border-top-color: transparent;
27104
  border-bottom-left-radius: 0.25rem;
27105
  border-bottom-right-radius: 0.25rem;
27106
}
27107
 
27108
div.tagsinput {
27109
  padding: 6px 6px 1px;
27110
  border-color: #e9ecef;
27111
  border-radius: 0.25rem;
27112
}
16848 stevensc 27113
 
16825 efrain 27114
div.tagsinput span.tag {
27115
  background: #6571ff;
27116
  color: #fff;
27117
  border: 0;
27118
  padding: 3px 7px;
27119
  font-family: inherit;
27120
  border-radius: 0.15rem;
27121
  margin-bottom: 4px;
27122
  float: left;
27123
  /*rtl:raw:
27124
  margin-left: 0;
27125
  margin-right: 5px;
27126
  */
27127
}
16848 stevensc 27128
 
16825 efrain 27129
div.tagsinput span.tag a {
27130
  font-size: 13px;
27131
  font-weight: 500;
27132
  color: #fff;
27133
  opacity: 0.5;
27134
}
16848 stevensc 27135
 
16825 efrain 27136
div.tagsinput #tags_addTag {
27137
  float: left;
27138
  /*rtl:raw:
27139
  margin-right: 5px;
27140
  */
27141
}
16848 stevensc 27142
 
16825 efrain 27143
div.tagsinput input {
27144
  margin: 0;
27145
  padding: 1px;
27146
  border-radius: 0.25rem;
27147
}
27148
 
27149
.tox.tox-tinymce {
27150
  border: 1px solid #e9ecef;
27151
  border-radius: 0.25rem;
27152
}
16848 stevensc 27153
 
16825 efrain 27154
.tox.tox-tinymce .tox-menubar,
27155
.tox.tox-tinymce .tox-toolbar-overlord,
27156
.tox.tox-tinymce .tox-toolbar,
27157
.tox.tox-tinymce .tox-toolbar__overflow,
27158
.tox.tox-tinymce .tox-toolbar__primary {
27159
  background-color: #fff;
27160
  background-image: none;
27161
  border-bottom: 1px solid #e9ecef;
27162
}
16848 stevensc 27163
 
16825 efrain 27164
.tox.tox-tinymce .tox-toolbar-overlord {
27165
  border-bottom: none;
27166
}
16848 stevensc 27167
 
16825 efrain 27168
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27169
  padding: 0;
27170
  box-shadow: none;
27171
}
16848 stevensc 27172
 
16825 efrain 27173
.tox.tox-tinymce .tox-edit-area__iframe {
27174
  background-color: #fff;
27175
}
16848 stevensc 27176
 
16825 efrain 27177
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27178
  border-right-color: #e9ecef;
27179
  border-left-color: #e9ecef;
27180
}
16848 stevensc 27181
 
16825 efrain 27182
.tox.tox-tinymce .tox-statusbar {
27183
  background-color: #fff;
27184
  border-color: #e9ecef;
27185
  color: #7987a1;
27186
}
16848 stevensc 27187
 
16825 efrain 27188
.tox.tox-tinymce .tox-statusbar a,
27189
.tox.tox-tinymce .tox-statusbar__path-item,
27190
.tox.tox-tinymce .tox-statusbar__wordcount {
27191
  color: #7987a1;
27192
}
16848 stevensc 27193
 
16825 efrain 27194
.tox.tox-tinymce .tox-mbtn {
27195
  color: #000;
27196
}
16848 stevensc 27197
 
16825 efrain 27198
.tox.tox-tinymce .tox-tbtn {
27199
  color: rgba(0, 0, 0, 0.7);
27200
}
16848 stevensc 27201
 
16825 efrain 27202
.tox.tox-tinymce .tox-tbtn:hover {
27203
  background: #e9ecef;
27204
  color: #000;
27205
}
16848 stevensc 27206
 
16825 efrain 27207
.tox.tox-tinymce .tox-tbtn:hover svg {
27208
  fill: #000;
27209
}
16848 stevensc 27210
 
16825 efrain 27211
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27212
  color: #000;
27213
}
16848 stevensc 27214
 
16825 efrain 27215
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27216
  background: #e9ecef;
27217
  color: #000;
27218
}
16848 stevensc 27219
 
16825 efrain 27220
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27221
.tox.tox-tinymce .tox-mbtn--active {
27222
  background: #e9ecef;
27223
  color: #000;
27224
}
16848 stevensc 27225
 
16825 efrain 27226
.tox.tox-tinymce .tox-tbtn svg {
27227
  fill: rgba(0, 0, 0, 0.7);
27228
}
16848 stevensc 27229
 
16825 efrain 27230
.tox.tox-tinymce .tox-tbtn--disabled svg,
27231
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27232
.tox.tox-tinymce .tox-tbtn:disabled svg,
27233
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27234
  fill: #e9ecef;
27235
}
16848 stevensc 27236
 
16825 efrain 27237
.tox.tox-tinymce .tox-split-button:hover {
27238
  box-shadow: 0 0 0 1px #e9ecef inset;
27239
}
16848 stevensc 27240
 
16825 efrain 27241
.tox.tox-tinymce .tox-split-button:focus {
27242
  background: #e9ecef;
27243
}
16848 stevensc 27244
 
16825 efrain 27245
.tox.tox-tinymce .tox-tbtn--enabled,
27246
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27247
.tox.tox-tinymce .tox-tbtn:focus {
27248
  background: #e9ecef;
27249
}
27250
 
27251
div.tox .tox-menu {
27252
  background-color: #fff;
27253
  border-color: #f2f4f9;
27254
}
16848 stevensc 27255
 
16825 efrain 27256
div.tox .tox-collection__item {
27257
  color: #000;
27258
}
16848 stevensc 27259
 
16825 efrain 27260
div.tox .tox-collection--list .tox-collection__item--enabled {
27261
  background-color: #6571ff;
27262
  color: #fff;
27263
}
16848 stevensc 27264
 
16825 efrain 27265
div.tox .tox-collection--list .tox-collection__group {
27266
  border-color: #e9ecef;
27267
}
16848 stevensc 27268
 
16825 efrain 27269
div.tox .tox-collection--toolbar .tox-collection__item--active {
27270
  background-color: #e9ecef;
27271
}
16848 stevensc 27272
 
16825 efrain 27273
div.tox .tox-collection--list .tox-collection__item--active {
27274
  background-color: #e9ecef;
27275
}
16848 stevensc 27276
 
16825 efrain 27277
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27278
  color: #000;
27279
}
16848 stevensc 27280
 
16825 efrain 27281
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27282
  color: #000;
27283
}
16848 stevensc 27284
 
16825 efrain 27285
div.tox .tox-dialog-wrap__backdrop {
27286
  background-color: rgba(0, 0, 0, 0.75);
27287
}
16848 stevensc 27288
 
16825 efrain 27289
div.tox .tox-dialog,
27290
div.tox .tox-dialog__header,
27291
div.tox .tox-dialog__footer {
27292
  background-color: #fff;
27293
  border-color: #e9ecef;
27294
  color: #000;
27295
}
16848 stevensc 27296
 
16825 efrain 27297
div.tox .tox-button--secondary:hover:not(:disabled) {
27298
  background-color: #7987a1;
27299
  border-color: #7987a1;
27300
  color: #fff;
27301
}
16848 stevensc 27302
 
16825 efrain 27303
div.tox .tox-button--naked:hover:not(:disabled) {
27304
  background-color: transparent;
27305
  border-color: transparent;
27306
}
16848 stevensc 27307
 
16825 efrain 27308
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27309
  color: #333333;
27310
}
16848 stevensc 27311
 
16825 efrain 27312
div.tox .tox-listboxfield .tox-listbox--select,
27313
div.tox .tox-textarea,
27314
div.tox .tox-textfield,
27315
div.tox .tox-toolbar-textfield {
27316
  background-color: #fff;
27317
  border-color: #e9ecef;
27318
  color: #000;
27319
}
16848 stevensc 27320
 
16825 efrain 27321
div.tox .tox-listboxfield .tox-listbox--select:focus,
27322
div.tox .tox-textarea:focus,
27323
div.tox .tox-textfield:focus {
27324
  background-color: #fff;
27325
  border-color: #cbd1db;
27326
}
16848 stevensc 27327
 
16825 efrain 27328
div.tox .tox-dialog__table tbody tr {
27329
  border-color: #e9ecef;
27330
}
16848 stevensc 27331
 
16825 efrain 27332
div.tox .tox-dialog__body {
27333
  color: #000;
27334
}
27335
 
27336
.typeahead.tt-input,
27337
.typeahead.tt-hint {
27338
  background-color: #fff !important;
27339
  /*rtl:raw:
27340
  direction: rtl;
27341
  */
27342
}
27343
 
27344
.tt-menu .tt-suggestion {
27345
  cursor: pointer;
27346
}
27347
 
16848 stevensc 27348
.tabcontrol ul,
27349
.wizard ul {
16825 efrain 27350
  display: flex;
27351
}
16848 stevensc 27352
 
16825 efrain 27353
@media (max-width: 676px) {
16848 stevensc 27354
 
27355
  .tabcontrol ul,
27356
  .wizard ul {
16825 efrain 27357
    flex-wrap: wrap;
27358
  }
27359
}
27360
 
16848 stevensc 27361
.wizard>.steps>ul>li {
16825 efrain 27362
  width: auto;
27363
  display: flex;
27364
  flex-grow: 1;
27365
}
27366
 
16848 stevensc 27367
.wizard>.steps .disabled a,
27368
.wizard>.steps .disabled a:active,
27369
.wizard>.steps .disabled a:hover {
16825 efrain 27370
  background-color: #e9ecef;
27371
  color: #000;
27372
  border: 1px solid transparent;
27373
}
27374
 
16848 stevensc 27375
.wizard>.steps .current a,
27376
.wizard>.steps .current a:active,
27377
.wizard>.steps .current a:hover {
16825 efrain 27378
  background-color: #6571ff;
27379
  border: 1px solid transparent;
27380
}
27381
 
16848 stevensc 27382
.wizard>.steps a,
27383
.wizard>.steps a:active,
27384
.wizard>.steps a:hover {
16825 efrain 27385
  padding: 0.469rem 0.8rem;
27386
  border-radius: 0.25rem;
27387
  width: 100%;
27388
}
27389
 
16848 stevensc 27390
.wizard>.steps .done a,
27391
.wizard>.steps .done a:active,
27392
.wizard>.steps .done a:hover {
16825 efrain 27393
  background-color: rgba(101, 113, 255, 0.2);
27394
  color: #6571ff;
27395
  border: 1px solid #6571ff;
27396
}
27397
 
16848 stevensc 27398
.wizard>.steps ul li a,
27399
.wizard>.steps ul li a:active,
27400
.wizard>.steps ul li a:hover {
16825 efrain 27401
  margin: 0 0.5em 0.5em 0;
27402
}
16848 stevensc 27403
 
27404
.wizard>.steps ul li:last-child a,
27405
.wizard>.steps ul li:last-child a:active,
27406
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27407
  margin: 0 0 0.5em 0;
27408
}
27409
 
16848 stevensc 27410
.wizard>.steps .number {
16825 efrain 27411
  font-size: inherit;
27412
}
27413
 
16848 stevensc 27414
.wizard>.content {
16825 efrain 27415
  background: #fff;
27416
  border: 1px solid #e9ecef;
27417
  min-height: 23em;
27418
  overflow: auto;
27419
  margin: 0.5em 0;
27420
}
27421
 
27422
@media (max-width: 767px) {
16848 stevensc 27423
  .wizard>.content>.body {
16825 efrain 27424
    width: 90%;
27425
    height: 90%;
27426
    padding: 5%;
27427
  }
27428
}
27429
 
16848 stevensc 27430
.wizard>.actions .disabled a,
27431
.wizard>.actions .disabled a:active,
27432
.wizard>.actions .disabled a:hover {
16825 efrain 27433
  background: #e9ecef;
27434
  border-color: #e9ecef;
27435
  cursor: not-allowed;
27436
  color: #aeb7c5;
27437
}
27438
 
16848 stevensc 27439
.wizard>.actions .disabled a:focus {
16825 efrain 27440
  box-shadow: none;
27441
  color: #aeb7c5;
27442
}
27443
 
16848 stevensc 27444
.wizard>.actions>ul li {
16825 efrain 27445
  margin-right: 0;
27446
  margin-left: 0.7em;
27447
}
27448
 
16848 stevensc 27449
.wizard.vertical>.steps ul {
16825 efrain 27450
  flex-direction: column;
27451
}
27452
 
16848 stevensc 27453
.wizard.vertical>.content {
16825 efrain 27454
  margin: 0 0 0.5em 2%;
27455
  width: 68%;
27456
}
27457
 
16848 stevensc 27458
.wizard.vertical>.steps a,
27459
.wizard.vertical>.steps a:active,
27460
.wizard.vertical>.steps a:hover {
16825 efrain 27461
  margin: 0 0 0.5em 0;
27462
}
27463
 
16848 stevensc 27464
.wizard.vertical>.actions {
16825 efrain 27465
  margin: 0;
27466
  width: 100%;
27467
}
27468
 
16848 stevensc 27469
.wizard.vertical>.actions>ul>li {
16825 efrain 27470
  margin: 0 0 0 0.7em;
27471
}
16848 stevensc 27472
 
27473
.pac-container {
27474
  z-index: 1200;
27475
}
27476
 
16857 stevensc 27477
.feed-section {
27478
  display: flex;
27479
  flex-direction: column;
27480
  gap: .5rem;
16858 stevensc 27481
  width: 50%;
27482
  margin: 0 auto;
16857 stevensc 27483
  box-sizing: border-box;
16865 stevensc 27484
  align-items: center;
16857 stevensc 27485
}
27486
 
16849 stevensc 27487
.feed-container {
27488
  background-color: var(--bg-color);
27489
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27490
  height: fit-content;
27491
  width: -moz-available;
27492
  width: -webkit-fill-available;
27493
  width: fill-available;
27494
  overflow: hidden;
27495
  position: relative;
16853 stevensc 27496
  border-radius: var(--border-radius);
16849 stevensc 27497
}
27498
 
27499
.feed-container span {
27500
  font-size: 0.9rem;
16853 stevensc 27501
  line-height: 1;
27502
  color: var(--subtitle-color);
27503
  font-weight: 600;
16849 stevensc 27504
}
27505
 
27506
.feed-container p {
27507
  color: var(--font-color);
27508
  font-size: 14px;
27509
  text-align: justify;
27510
  margin-bottom: 0.5rem;
27511
}
27512
 
27513
.feed-container h2 {
27514
  font-size: 1rem;
16853 stevensc 27515
  font-weight: 600;
16849 stevensc 27516
}
27517
 
16859 stevensc 27518
.feed-container input,
27519
.feed-container input:focus {
27520
  align-items: center;
27521
  color: gray;
27522
  display: flex;
27523
  min-height: 1.5rem;
27524
  gap: 5px;
27525
  width: 100%;
27526
  border: 1px solid lightgray;
27527
  background-color: rgb(255, 255, 255);
27528
  border-radius: 30px;
27529
  padding: 5px 5px 5px 1rem;
27530
}
27531
 
16849 stevensc 27532
.feed-header {
27533
  display: flex;
27534
  gap: 0.5rem;
27535
  padding: 10px 1rem;
27536
  align-items: center;
27537
  position: relative;
27538
}
27539
 
16858 stevensc 27540
.feed-header a>img {
27541
  width: 50px;
27542
  height: 50px;
27543
  border-radius: 50%;
27544
  object-fit: cover;
27545
}
27546
 
16851 stevensc 27547
.feed-info {
27548
  display: inline-flex;
16852 stevensc 27549
  flex-direction: column;
16851 stevensc 27550
  width: fit-content;
27551
}
27552
 
16852 stevensc 27553
.feed-body {
16849 stevensc 27554
  padding: 10px 1rem;
27555
  display: flex;
27556
  flex-direction: column;
27557
}
27558
 
16856 stevensc 27559
.feed-body>img,
27560
.feed-body>video {
27561
  width: 100%;
27562
  object-fit: cover;
27563
  max-height: 60vh;
27564
}
27565
 
16849 stevensc 27566
.feed-actions {
27567
  display: flex;
16851 stevensc 27568
  justify-content: flex-end;
16849 stevensc 27569
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27570
  gap: .5rem;
16849 stevensc 27571
  padding: 5px;
27572
}
27573
 
27574
.feed-actions>button {
27575
  align-items: center;
27576
  border-radius: var(--border-radius);
27577
  cursor: pointer;
27578
  display: inline-flex;
16851 stevensc 27579
  flex-direction: row;
27580
  gap: 0.5rem;
27581
  font-size: 1rem;
16849 stevensc 27582
  padding: 5px;
27583
  position: relative;
27584
}
27585
 
27586
.feed-actions>button:hover {
27587
  background-color: whitesmoke;
27588
}
27589
 
16851 stevensc 27590
.feed-actions>span,
27591
.feed-actions>svg {
27592
  color: var(--subtitle-color);
27593
  font-weight: 600;
27594
  font-size: .9rem;
27595
}
27596
 
16860 stevensc 27597
.comment-form {
27598
  display: flex;
27599
  align-items: center;
27600
  gap: 0.5rem;
27601
  width: 100%;
27602
}
27603
 
27604
.comment-list {
27605
  display: flex;
27606
  flex-direction: column;
27607
  gap: 0.5rem;
16863 stevensc 27608
  margin: 0;
16861 stevensc 27609
  list-style: none;
16863 stevensc 27610
  padding: 0.5rem;
16860 stevensc 27611
  max-height: 300px;
27612
  overflow-y: auto;
27613
  width: 100%;
27614
}
27615
 
27616
.comment-container {
27617
  background-color: var(--chat-send);
27618
  border-radius: var(--border-radius);
27619
  display: flex;
27620
  flex-direction: column;
27621
  flex-grow: 1;
27622
  gap: 0.5rem;
27623
  max-width: 100%;
27624
  overflow: hidden;
27625
  padding: 0.5rem;
27626
  position: relative;
27627
}
27628
 
16849 stevensc 27629
@media (max-width: 768px) {
16857 stevensc 27630
  .feed-section {
16858 stevensc 27631
    width: 100%;
16857 stevensc 27632
  }
27633
 
16849 stevensc 27634
  .feed-container {
16853 stevensc 27635
    border-radius: 0;
16849 stevensc 27636
  }
27637
 
16851 stevensc 27638
  .feed-actions>button {
27639
    font-size: 0.9rem;
27640
    flex-direction: column;
27641
    gap: 0;
16849 stevensc 27642
  }
27643
}
27644
 
16866 stevensc 27645
/* ============= user_profile ============= */
27646
.user_profile {
27647
  width: 100%;
27648
  background-color: #fff;
27649
  margin-bottom: 20px;
27650
  text-align: center;
27651
  margin-top: -40px;
27652
}
27653
 
27654
.user-pro-img {
27655
  width: 100%;
27656
  text-align: center;
27657
  margin-bottom: 28px;
27658
  position: relative;
27659
}
27660
 
27661
.user-pro-img .add-dp {
27662
  position: absolute;
27663
  top: 10px;
27664
  left: 60%;
27665
}
27666
 
27667
.add-dp i {
27668
  bottom: 0;
27669
  font-size: 14px;
27670
  box-shadow: none;
27671
  position: relative;
27672
  border-radius: 50px;
27673
  width: 40px;
27674
  height: 40px;
27675
  text-align: center;
27676
  background: #e44d3a;
27677
  padding: 12px;
27678
  color: #ffff;
27679
  left: 0;
27680
  top: -5px;
27681
}
27682
 
27683
.add-dp i:hover {
27684
  font-size: 14px;
27685
  border: 2px solid #fff;
27686
  background: #e44d3a;
27687
  padding: 11px;
27688
}
27689
 
27690
.add-dp {
27691
  margin: -16px;
27692
  padding: 0;
27693
}
27694
 
27695
.add-dp input[type="file"] {
27696
  opacity: 0;
27697
  padding: 10px 0px 9px;
27698
  display: none;
27699
}
27700
 
27701
#go-back {
27702
  font-size: 2rem;
27703
}
27704
 
27705
.user-pro-img img {
27706
  border-radius: 100px;
27707
  border: 5px solid #fff;
27708
  background: #fff;
27709
}
27710
 
27711
.user_pro_status {
27712
  width: 100%;
27713
  border-bottom: 1px solid #e5e5e5;
27714
  padding-bottom: 27px;
27715
}
27716
 
27717
/* ============= end user_profile ============= */
27718
 
16848 stevensc 27719
/*# sourceMappingURL=../maps/demo1/style.css.map */