Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16867 | Rev 16869 | 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
 
16868 stevensc 110
img {
111
  max-width: 100%;
112
}
113
 
114
ul {
115
  list-style: none;
116
}
117
 
16848 stevensc 118
h6,
119
.h6,
120
h5,
121
.h5,
122
h4,
123
.h4,
124
h3,
125
.h3,
126
h2,
127
.h2,
128
h1,
129
.h1 {
16825 efrain 130
  margin-top: 0;
131
  margin-bottom: 0;
132
  font-weight: 500;
133
  line-height: 1.2;
134
}
135
 
16848 stevensc 136
h1,
16852 stevensc 137
h2,
138
h3 {
139
  color: var(--title-color);
140
}
141
 
142
h1,
16848 stevensc 143
.h1 {
16825 efrain 144
  font-size: calc(1.375rem + 1.5vw);
145
}
16848 stevensc 146
 
16825 efrain 147
@media (min-width: 1200px) {
16848 stevensc 148
 
149
  h1,
150
  .h1 {
16825 efrain 151
    font-size: 2.5rem;
152
  }
153
}
154
 
16848 stevensc 155
h2,
156
.h2 {
16825 efrain 157
  font-size: calc(1.325rem + 0.9vw);
158
}
16848 stevensc 159
 
16825 efrain 160
@media (min-width: 1200px) {
16848 stevensc 161
 
162
  h2,
163
  .h2 {
16825 efrain 164
    font-size: 2rem;
165
  }
166
}
167
 
16848 stevensc 168
h3,
169
.h3 {
16825 efrain 170
  font-size: calc(1.275rem + 0.3vw);
171
}
16848 stevensc 172
 
16825 efrain 173
@media (min-width: 1200px) {
16848 stevensc 174
 
175
  h3,
176
  .h3 {
16825 efrain 177
    font-size: 1.5rem;
178
  }
179
}
180
 
16848 stevensc 181
h4,
182
.h4 {
16825 efrain 183
  font-size: 1.25rem;
184
}
185
 
16848 stevensc 186
h5,
187
.h5 {
16825 efrain 188
  font-size: 1rem;
189
}
190
 
16848 stevensc 191
h6,
192
.h6 {
16825 efrain 193
  font-size: 0.875rem;
194
}
195
 
196
p {
197
  margin-top: 0;
198
  margin-bottom: 0;
199
}
200
 
201
abbr[title] {
202
  text-decoration: underline dotted;
203
  cursor: help;
204
  text-decoration-skip-ink: none;
205
}
206
 
207
address {
208
  margin-bottom: 1rem;
209
  font-style: normal;
210
  line-height: inherit;
211
}
212
 
213
ol,
214
ul {
215
  padding-left: 2rem;
216
}
217
 
218
ol,
219
ul,
220
dl {
221
  margin-top: 0;
222
  margin-bottom: 1rem;
223
}
224
 
225
ol ol,
226
ul ul,
227
ol ul,
228
ul ol {
229
  margin-bottom: 0;
230
}
231
 
232
dt {
233
  font-weight: 500;
234
}
235
 
236
dd {
237
  margin-bottom: 0.5rem;
238
  margin-left: 0;
239
}
240
 
241
blockquote {
242
  margin: 0 0 1rem;
243
}
244
 
245
b,
246
strong {
247
  font-weight: 700;
248
}
249
 
16848 stevensc 250
small,
251
.small {
16825 efrain 252
  font-size: 0.875em;
253
}
254
 
16848 stevensc 255
mark,
256
.mark {
16825 efrain 257
  padding: 0.1875em;
258
  background-color: var(--bs-highlight-bg);
259
}
260
 
261
sub,
262
sup {
263
  position: relative;
264
  font-size: 0.75em;
265
  line-height: 0;
266
  vertical-align: baseline;
267
}
268
 
269
sub {
270
  bottom: -0.25em;
271
}
272
 
273
sup {
274
  top: -0.5em;
275
}
276
 
277
a {
278
  color: var(--bs-link-color);
279
  text-decoration: none;
280
}
16848 stevensc 281
 
16825 efrain 282
a:hover {
283
  color: var(--bs-link-hover-color);
284
}
285
 
16848 stevensc 286
a:not([href]):not([class]),
287
a:not([href]):not([class]):hover {
16825 efrain 288
  color: inherit;
289
  text-decoration: none;
290
}
291
 
292
pre,
293
code,
294
kbd,
295
samp {
296
  font-family: var(--bs-font-monospace);
297
  font-size: 1em;
298
}
299
 
300
pre {
301
  display: block;
302
  margin-top: 0;
303
  margin-bottom: 1rem;
304
  overflow: auto;
305
  font-size: 0.875em;
306
}
16848 stevensc 307
 
16825 efrain 308
pre code {
309
  font-size: inherit;
310
  color: inherit;
311
  word-break: normal;
312
}
313
 
314
code {
315
  font-size: 0.875em;
316
  color: var(--bs-code-color);
317
  word-wrap: break-word;
318
}
16848 stevensc 319
 
320
a>code {
16825 efrain 321
  color: inherit;
322
}
323
 
324
kbd {
325
  padding: 0.1875rem 0.375rem;
326
  font-size: 0.875em;
327
  color: var(--bs-body-bg);
328
  background-color: var(--bs-body-color);
329
  border-radius: 0.25rem;
330
}
16848 stevensc 331
 
16825 efrain 332
kbd kbd {
333
  padding: 0;
334
  font-size: 1em;
335
}
336
 
337
figure {
338
  margin: 0 0 1rem;
339
}
340
 
341
img,
342
svg {
343
  vertical-align: middle;
344
}
345
 
346
table {
347
  caption-side: bottom;
348
  border-collapse: collapse;
349
}
350
 
351
caption {
352
  padding-top: 0.85rem;
353
  padding-bottom: 0.85rem;
354
  color: #7987a1;
355
  text-align: left;
356
}
357
 
358
th {
359
  text-align: inherit;
360
  text-align: -webkit-match-parent;
361
}
362
 
363
thead,
364
tbody,
365
tfoot,
366
tr,
367
td,
368
th {
369
  border-color: inherit;
370
  border-style: solid;
371
  border-width: 0;
372
}
373
 
374
label {
375
  display: inline-block;
376
}
377
 
378
button {
379
  border-radius: 0;
380
}
381
 
382
button:focus:not(:focus-visible) {
383
  outline: 0;
384
}
385
 
386
input,
387
button,
388
select,
389
optgroup,
390
textarea {
391
  margin: 0;
392
  font-family: inherit;
393
  font-size: inherit;
394
  line-height: inherit;
395
}
396
 
397
button,
398
select {
399
  text-transform: none;
400
}
401
 
402
[role=button] {
403
  cursor: pointer;
404
}
405
 
406
select {
407
  word-wrap: normal;
408
}
16848 stevensc 409
 
16825 efrain 410
select:disabled {
411
  opacity: 1;
412
}
413
 
414
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
415
  display: none !important;
416
}
417
 
418
button,
419
[type=button],
420
[type=reset],
421
[type=submit] {
16848 stevensc 422
  appearance: button;
16825 efrain 423
}
16848 stevensc 424
 
16825 efrain 425
button:not(:disabled),
426
[type=button]:not(:disabled),
427
[type=reset]:not(:disabled),
428
[type=submit]:not(:disabled) {
429
  cursor: pointer;
430
}
431
 
432
::-moz-focus-inner {
433
  padding: 0;
434
  border-style: none;
435
}
436
 
437
textarea {
438
  resize: vertical;
439
}
440
 
441
fieldset {
442
  min-width: 0;
443
  padding: 0;
444
  margin: 0;
445
  border: 0;
446
}
447
 
448
legend {
449
  float: left;
450
  width: 100%;
451
  padding: 0;
452
  margin-bottom: 0.5rem;
453
  font-size: calc(1.275rem + 0.3vw);
454
  line-height: inherit;
455
}
16848 stevensc 456
 
16825 efrain 457
@media (min-width: 1200px) {
458
  legend {
459
    font-size: 1.5rem;
460
  }
461
}
16848 stevensc 462
 
463
legend+* {
16825 efrain 464
  clear: left;
465
}
466
 
467
::-webkit-datetime-edit-fields-wrapper,
468
::-webkit-datetime-edit-text,
469
::-webkit-datetime-edit-minute,
470
::-webkit-datetime-edit-hour-field,
471
::-webkit-datetime-edit-day-field,
472
::-webkit-datetime-edit-month-field,
473
::-webkit-datetime-edit-year-field {
474
  padding: 0;
475
}
476
 
477
::-webkit-inner-spin-button {
478
  height: auto;
479
}
480
 
481
[type=search] {
482
  outline-offset: -2px;
16848 stevensc 483
  appearance: textfield;
16825 efrain 484
}
485
 
486
/* rtl:raw:
487
[type="tel"],
488
[type="url"],
489
[type="email"],
490
[type="number"] {
491
  direction: ltr;
492
}
493
*/
494
::-webkit-search-decoration {
495
  -webkit-appearance: none;
496
}
497
 
498
::-webkit-color-swatch-wrapper {
499
  padding: 0;
500
}
501
 
502
::file-selector-button {
503
  font: inherit;
16848 stevensc 504
  appearance: button;
16825 efrain 505
}
506
 
507
output {
508
  display: inline-block;
509
}
510
 
511
iframe {
512
  border: 0;
513
}
514
 
515
summary {
516
  display: list-item;
517
  cursor: pointer;
518
}
519
 
520
progress {
521
  vertical-align: baseline;
522
}
523
 
524
[hidden] {
525
  display: none !important;
526
}
527
 
528
.lead {
529
  font-size: 1.09375rem;
530
  font-weight: 300;
531
}
532
 
533
.display-1 {
534
  font-size: calc(1.625rem + 4.5vw);
535
  font-weight: 300;
536
  line-height: 1.2;
537
}
16848 stevensc 538
 
16825 efrain 539
@media (min-width: 1200px) {
540
  .display-1 {
541
    font-size: 5rem;
542
  }
543
}
544
 
545
.display-2 {
546
  font-size: calc(1.575rem + 3.9vw);
547
  font-weight: 300;
548
  line-height: 1.2;
549
}
16848 stevensc 550
 
16825 efrain 551
@media (min-width: 1200px) {
552
  .display-2 {
553
    font-size: 4.5rem;
554
  }
555
}
556
 
557
.display-3 {
558
  font-size: calc(1.525rem + 3.3vw);
559
  font-weight: 300;
560
  line-height: 1.2;
561
}
16848 stevensc 562
 
16825 efrain 563
@media (min-width: 1200px) {
564
  .display-3 {
565
    font-size: 4rem;
566
  }
567
}
568
 
569
.display-4 {
570
  font-size: calc(1.475rem + 2.7vw);
571
  font-weight: 300;
572
  line-height: 1.2;
573
}
16848 stevensc 574
 
16825 efrain 575
@media (min-width: 1200px) {
576
  .display-4 {
577
    font-size: 3.5rem;
578
  }
579
}
580
 
581
.display-5 {
582
  font-size: calc(1.425rem + 2.1vw);
583
  font-weight: 300;
584
  line-height: 1.2;
585
}
16848 stevensc 586
 
16825 efrain 587
@media (min-width: 1200px) {
588
  .display-5 {
589
    font-size: 3rem;
590
  }
591
}
592
 
593
.display-6 {
594
  font-size: calc(1.375rem + 1.5vw);
595
  font-weight: 300;
596
  line-height: 1.2;
597
}
16848 stevensc 598
 
16825 efrain 599
@media (min-width: 1200px) {
600
  .display-6 {
601
    font-size: 2.5rem;
602
  }
603
}
604
 
605
.list-unstyled {
606
  padding-left: 0;
607
  list-style: none;
608
}
609
 
610
.list-inline {
611
  padding-left: 0;
612
  list-style: none;
613
}
614
 
615
.list-inline-item {
616
  display: inline-block;
617
}
16848 stevensc 618
 
16825 efrain 619
.list-inline-item:not(:last-child) {
620
  margin-right: 0.5rem;
621
}
622
 
623
.initialism {
624
  font-size: 0.875em;
625
  text-transform: uppercase;
626
}
627
 
628
.blockquote {
629
  margin-bottom: 1rem;
630
  font-size: 1.09375rem;
631
}
16848 stevensc 632
 
633
.blockquote> :last-child {
16825 efrain 634
  margin-bottom: 0;
635
}
636
 
637
.blockquote-footer {
638
  margin-top: -1rem;
639
  margin-bottom: 1rem;
640
  font-size: 0.875em;
641
  color: #7987a1;
642
}
16848 stevensc 643
 
16825 efrain 644
.blockquote-footer::before {
645
  content: "— ";
646
}
647
 
648
.img-fluid {
649
  max-width: 100%;
650
  height: auto;
651
}
652
 
653
.img-thumbnail {
654
  padding: 0.25rem;
655
  background-color: #f9fafb;
656
  border: 1px solid var(--bs-border-color);
657
  border-radius: 0.25rem;
658
  max-width: 100%;
659
  height: auto;
660
}
661
 
662
.figure {
663
  display: inline-block;
664
}
665
 
666
.figure-img {
667
  margin-bottom: 0.5rem;
668
  line-height: 1;
669
}
670
 
671
.figure-caption {
672
  font-size: 0.875em;
673
  color: #7987a1;
674
}
675
 
676
.container,
677
.container-fluid,
678
.container-xxl,
679
.container-xl,
680
.container-lg,
681
.container-md,
682
.container-sm {
683
  --bs-gutter-x: 1.5rem;
684
  --bs-gutter-y: 0;
685
  width: 100%;
686
  padding-right: calc(var(--bs-gutter-x) * 0.5);
687
  padding-left: calc(var(--bs-gutter-x) * 0.5);
688
  margin-right: auto;
689
  margin-left: auto;
690
}
691
 
692
@media (min-width: 576px) {
16848 stevensc 693
 
694
  .container-sm,
695
  .container {
16825 efrain 696
    max-width: 540px;
697
  }
698
}
16848 stevensc 699
 
16825 efrain 700
@media (min-width: 768px) {
16848 stevensc 701
 
702
  .container-md,
703
  .container-sm,
704
  .container {
16825 efrain 705
    max-width: 720px;
706
  }
707
}
16848 stevensc 708
 
16825 efrain 709
@media (min-width: 992px) {
16848 stevensc 710
 
711
  .container-lg,
712
  .container-md,
713
  .container-sm,
714
  .container {
16825 efrain 715
    max-width: 960px;
716
  }
717
}
16848 stevensc 718
 
16825 efrain 719
@media (min-width: 1200px) {
16848 stevensc 720
 
721
  .container-xl,
722
  .container-lg,
723
  .container-md,
724
  .container-sm,
725
  .container {
16825 efrain 726
    max-width: 1140px;
727
  }
728
}
16848 stevensc 729
 
16825 efrain 730
@media (min-width: 1400px) {
16848 stevensc 731
 
732
  .container-xxl,
733
  .container-xl,
734
  .container-lg,
735
  .container-md,
736
  .container-sm,
737
  .container {
16825 efrain 738
    max-width: 1320px;
739
  }
740
}
16848 stevensc 741
 
16825 efrain 742
.row {
743
  --bs-gutter-x: 1.5rem;
744
  --bs-gutter-y: 0;
745
  display: flex;
746
  flex-wrap: wrap;
747
  margin-top: calc(-1 * var(--bs-gutter-y));
748
  margin-right: calc(-0.5 * var(--bs-gutter-x));
749
  margin-left: calc(-0.5 * var(--bs-gutter-x));
750
}
16848 stevensc 751
 
752
.row>* {
16825 efrain 753
  flex-shrink: 0;
754
  width: 100%;
755
  max-width: 100%;
756
  padding-right: calc(var(--bs-gutter-x) * 0.5);
757
  padding-left: calc(var(--bs-gutter-x) * 0.5);
758
  margin-top: var(--bs-gutter-y);
759
}
760
 
761
.col {
762
  flex: 1 0 0%;
763
}
764
 
16848 stevensc 765
.row-cols-auto>* {
16825 efrain 766
  flex: 0 0 auto;
767
  width: auto;
768
}
769
 
16848 stevensc 770
.row-cols-1>* {
16825 efrain 771
  flex: 0 0 auto;
772
  width: 100%;
773
}
774
 
16848 stevensc 775
.row-cols-2>* {
16825 efrain 776
  flex: 0 0 auto;
777
  width: 50%;
778
}
779
 
16848 stevensc 780
.row-cols-3>* {
16825 efrain 781
  flex: 0 0 auto;
782
  width: 33.3333333333%;
783
}
784
 
16848 stevensc 785
.row-cols-4>* {
16825 efrain 786
  flex: 0 0 auto;
787
  width: 25%;
788
}
789
 
16848 stevensc 790
.row-cols-5>* {
16825 efrain 791
  flex: 0 0 auto;
792
  width: 20%;
793
}
794
 
16848 stevensc 795
.row-cols-6>* {
16825 efrain 796
  flex: 0 0 auto;
797
  width: 16.6666666667%;
798
}
799
 
800
.col-auto {
801
  flex: 0 0 auto;
802
  width: auto;
803
}
804
 
805
.col-1 {
806
  flex: 0 0 auto;
807
  width: 8.33333333%;
808
}
809
 
810
.col-2 {
811
  flex: 0 0 auto;
812
  width: 16.66666667%;
813
}
814
 
815
.col-3 {
816
  flex: 0 0 auto;
817
  width: 25%;
818
}
819
 
820
.col-4 {
821
  flex: 0 0 auto;
822
  width: 33.33333333%;
823
}
824
 
825
.col-5 {
826
  flex: 0 0 auto;
827
  width: 41.66666667%;
828
}
829
 
830
.col-6 {
831
  flex: 0 0 auto;
832
  width: 50%;
833
}
834
 
835
.col-7 {
836
  flex: 0 0 auto;
837
  width: 58.33333333%;
838
}
839
 
840
.col-8 {
841
  flex: 0 0 auto;
842
  width: 66.66666667%;
843
}
844
 
845
.col-9 {
846
  flex: 0 0 auto;
847
  width: 75%;
848
}
849
 
850
.col-10 {
851
  flex: 0 0 auto;
852
  width: 83.33333333%;
853
}
854
 
855
.col-11 {
856
  flex: 0 0 auto;
857
  width: 91.66666667%;
858
}
859
 
860
.col-12 {
861
  flex: 0 0 auto;
862
  width: 100%;
863
}
864
 
865
.offset-1 {
866
  margin-left: 8.33333333%;
867
}
868
 
869
.offset-2 {
870
  margin-left: 16.66666667%;
871
}
872
 
873
.offset-3 {
874
  margin-left: 25%;
875
}
876
 
877
.offset-4 {
878
  margin-left: 33.33333333%;
879
}
880
 
881
.offset-5 {
882
  margin-left: 41.66666667%;
883
}
884
 
885
.offset-6 {
886
  margin-left: 50%;
887
}
888
 
889
.offset-7 {
890
  margin-left: 58.33333333%;
891
}
892
 
893
.offset-8 {
894
  margin-left: 66.66666667%;
895
}
896
 
897
.offset-9 {
898
  margin-left: 75%;
899
}
900
 
901
.offset-10 {
902
  margin-left: 83.33333333%;
903
}
904
 
905
.offset-11 {
906
  margin-left: 91.66666667%;
907
}
908
 
909
.g-0,
910
.gx-0 {
911
  --bs-gutter-x: 0;
912
}
913
 
914
.g-0,
915
.gy-0 {
916
  --bs-gutter-y: 0;
917
}
918
 
919
.g-1,
920
.gx-1 {
921
  --bs-gutter-x: 0.25rem;
922
}
923
 
924
.g-1,
925
.gy-1 {
926
  --bs-gutter-y: 0.25rem;
927
}
928
 
929
.g-2,
930
.gx-2 {
931
  --bs-gutter-x: 0.5rem;
932
}
933
 
934
.g-2,
935
.gy-2 {
936
  --bs-gutter-y: 0.5rem;
937
}
938
 
939
.g-3,
940
.gx-3 {
941
  --bs-gutter-x: 1rem;
942
}
943
 
944
.g-3,
945
.gy-3 {
946
  --bs-gutter-y: 1rem;
947
}
948
 
949
.g-4,
950
.gx-4 {
951
  --bs-gutter-x: 1.5rem;
952
}
953
 
954
.g-4,
955
.gy-4 {
956
  --bs-gutter-y: 1.5rem;
957
}
958
 
959
.g-5,
960
.gx-5 {
961
  --bs-gutter-x: 3rem;
962
}
963
 
964
.g-5,
965
.gy-5 {
966
  --bs-gutter-y: 3rem;
967
}
968
 
969
.g-6,
970
.gx-6 {
971
  --bs-gutter-x: 4.5rem;
972
}
973
 
974
.g-6,
975
.gy-6 {
976
  --bs-gutter-y: 4.5rem;
977
}
978
 
979
.g-7,
980
.gx-7 {
981
  --bs-gutter-x: 6rem;
982
}
983
 
984
.g-7,
985
.gy-7 {
986
  --bs-gutter-y: 6rem;
987
}
988
 
989
@media (min-width: 576px) {
990
  .col-sm {
991
    flex: 1 0 0%;
992
  }
16848 stevensc 993
 
994
  .row-cols-sm-auto>* {
16825 efrain 995
    flex: 0 0 auto;
996
    width: auto;
997
  }
16848 stevensc 998
 
999
  .row-cols-sm-1>* {
16825 efrain 1000
    flex: 0 0 auto;
1001
    width: 100%;
1002
  }
16848 stevensc 1003
 
1004
  .row-cols-sm-2>* {
16825 efrain 1005
    flex: 0 0 auto;
1006
    width: 50%;
1007
  }
16848 stevensc 1008
 
1009
  .row-cols-sm-3>* {
16825 efrain 1010
    flex: 0 0 auto;
1011
    width: 33.3333333333%;
1012
  }
16848 stevensc 1013
 
1014
  .row-cols-sm-4>* {
16825 efrain 1015
    flex: 0 0 auto;
1016
    width: 25%;
1017
  }
16848 stevensc 1018
 
1019
  .row-cols-sm-5>* {
16825 efrain 1020
    flex: 0 0 auto;
1021
    width: 20%;
1022
  }
16848 stevensc 1023
 
1024
  .row-cols-sm-6>* {
16825 efrain 1025
    flex: 0 0 auto;
1026
    width: 16.6666666667%;
1027
  }
16848 stevensc 1028
 
16825 efrain 1029
  .col-sm-auto {
1030
    flex: 0 0 auto;
1031
    width: auto;
1032
  }
16848 stevensc 1033
 
16825 efrain 1034
  .col-sm-1 {
1035
    flex: 0 0 auto;
1036
    width: 8.33333333%;
1037
  }
16848 stevensc 1038
 
16825 efrain 1039
  .col-sm-2 {
1040
    flex: 0 0 auto;
1041
    width: 16.66666667%;
1042
  }
16848 stevensc 1043
 
16825 efrain 1044
  .col-sm-3 {
1045
    flex: 0 0 auto;
1046
    width: 25%;
1047
  }
16848 stevensc 1048
 
16825 efrain 1049
  .col-sm-4 {
1050
    flex: 0 0 auto;
1051
    width: 33.33333333%;
1052
  }
16848 stevensc 1053
 
16825 efrain 1054
  .col-sm-5 {
1055
    flex: 0 0 auto;
1056
    width: 41.66666667%;
1057
  }
16848 stevensc 1058
 
16825 efrain 1059
  .col-sm-6 {
1060
    flex: 0 0 auto;
1061
    width: 50%;
1062
  }
16848 stevensc 1063
 
16825 efrain 1064
  .col-sm-7 {
1065
    flex: 0 0 auto;
1066
    width: 58.33333333%;
1067
  }
16848 stevensc 1068
 
16825 efrain 1069
  .col-sm-8 {
1070
    flex: 0 0 auto;
1071
    width: 66.66666667%;
1072
  }
16848 stevensc 1073
 
16825 efrain 1074
  .col-sm-9 {
1075
    flex: 0 0 auto;
1076
    width: 75%;
1077
  }
16848 stevensc 1078
 
16825 efrain 1079
  .col-sm-10 {
1080
    flex: 0 0 auto;
1081
    width: 83.33333333%;
1082
  }
16848 stevensc 1083
 
16825 efrain 1084
  .col-sm-11 {
1085
    flex: 0 0 auto;
1086
    width: 91.66666667%;
1087
  }
16848 stevensc 1088
 
16825 efrain 1089
  .col-sm-12 {
1090
    flex: 0 0 auto;
1091
    width: 100%;
1092
  }
16848 stevensc 1093
 
16825 efrain 1094
  .offset-sm-0 {
1095
    margin-left: 0;
1096
  }
16848 stevensc 1097
 
16825 efrain 1098
  .offset-sm-1 {
1099
    margin-left: 8.33333333%;
1100
  }
16848 stevensc 1101
 
16825 efrain 1102
  .offset-sm-2 {
1103
    margin-left: 16.66666667%;
1104
  }
16848 stevensc 1105
 
16825 efrain 1106
  .offset-sm-3 {
1107
    margin-left: 25%;
1108
  }
16848 stevensc 1109
 
16825 efrain 1110
  .offset-sm-4 {
1111
    margin-left: 33.33333333%;
1112
  }
16848 stevensc 1113
 
16825 efrain 1114
  .offset-sm-5 {
1115
    margin-left: 41.66666667%;
1116
  }
16848 stevensc 1117
 
16825 efrain 1118
  .offset-sm-6 {
1119
    margin-left: 50%;
1120
  }
16848 stevensc 1121
 
16825 efrain 1122
  .offset-sm-7 {
1123
    margin-left: 58.33333333%;
1124
  }
16848 stevensc 1125
 
16825 efrain 1126
  .offset-sm-8 {
1127
    margin-left: 66.66666667%;
1128
  }
16848 stevensc 1129
 
16825 efrain 1130
  .offset-sm-9 {
1131
    margin-left: 75%;
1132
  }
16848 stevensc 1133
 
16825 efrain 1134
  .offset-sm-10 {
1135
    margin-left: 83.33333333%;
1136
  }
16848 stevensc 1137
 
16825 efrain 1138
  .offset-sm-11 {
1139
    margin-left: 91.66666667%;
1140
  }
16848 stevensc 1141
 
16825 efrain 1142
  .g-sm-0,
1143
  .gx-sm-0 {
1144
    --bs-gutter-x: 0;
1145
  }
16848 stevensc 1146
 
16825 efrain 1147
  .g-sm-0,
1148
  .gy-sm-0 {
1149
    --bs-gutter-y: 0;
1150
  }
16848 stevensc 1151
 
16825 efrain 1152
  .g-sm-1,
1153
  .gx-sm-1 {
1154
    --bs-gutter-x: 0.25rem;
1155
  }
16848 stevensc 1156
 
16825 efrain 1157
  .g-sm-1,
1158
  .gy-sm-1 {
1159
    --bs-gutter-y: 0.25rem;
1160
  }
16848 stevensc 1161
 
16825 efrain 1162
  .g-sm-2,
1163
  .gx-sm-2 {
1164
    --bs-gutter-x: 0.5rem;
1165
  }
16848 stevensc 1166
 
16825 efrain 1167
  .g-sm-2,
1168
  .gy-sm-2 {
1169
    --bs-gutter-y: 0.5rem;
1170
  }
16848 stevensc 1171
 
16825 efrain 1172
  .g-sm-3,
1173
  .gx-sm-3 {
1174
    --bs-gutter-x: 1rem;
1175
  }
16848 stevensc 1176
 
16825 efrain 1177
  .g-sm-3,
1178
  .gy-sm-3 {
1179
    --bs-gutter-y: 1rem;
1180
  }
16848 stevensc 1181
 
16825 efrain 1182
  .g-sm-4,
1183
  .gx-sm-4 {
1184
    --bs-gutter-x: 1.5rem;
1185
  }
16848 stevensc 1186
 
16825 efrain 1187
  .g-sm-4,
1188
  .gy-sm-4 {
1189
    --bs-gutter-y: 1.5rem;
1190
  }
16848 stevensc 1191
 
16825 efrain 1192
  .g-sm-5,
1193
  .gx-sm-5 {
1194
    --bs-gutter-x: 3rem;
1195
  }
16848 stevensc 1196
 
16825 efrain 1197
  .g-sm-5,
1198
  .gy-sm-5 {
1199
    --bs-gutter-y: 3rem;
1200
  }
16848 stevensc 1201
 
16825 efrain 1202
  .g-sm-6,
1203
  .gx-sm-6 {
1204
    --bs-gutter-x: 4.5rem;
1205
  }
16848 stevensc 1206
 
16825 efrain 1207
  .g-sm-6,
1208
  .gy-sm-6 {
1209
    --bs-gutter-y: 4.5rem;
1210
  }
16848 stevensc 1211
 
16825 efrain 1212
  .g-sm-7,
1213
  .gx-sm-7 {
1214
    --bs-gutter-x: 6rem;
1215
  }
16848 stevensc 1216
 
16825 efrain 1217
  .g-sm-7,
1218
  .gy-sm-7 {
1219
    --bs-gutter-y: 6rem;
1220
  }
1221
}
16848 stevensc 1222
 
16825 efrain 1223
@media (min-width: 768px) {
1224
  .col-md {
1225
    flex: 1 0 0%;
1226
  }
16848 stevensc 1227
 
1228
  .row-cols-md-auto>* {
16825 efrain 1229
    flex: 0 0 auto;
1230
    width: auto;
1231
  }
16848 stevensc 1232
 
1233
  .row-cols-md-1>* {
16825 efrain 1234
    flex: 0 0 auto;
1235
    width: 100%;
1236
  }
16848 stevensc 1237
 
1238
  .row-cols-md-2>* {
16825 efrain 1239
    flex: 0 0 auto;
1240
    width: 50%;
1241
  }
16848 stevensc 1242
 
1243
  .row-cols-md-3>* {
16825 efrain 1244
    flex: 0 0 auto;
1245
    width: 33.3333333333%;
1246
  }
16848 stevensc 1247
 
1248
  .row-cols-md-4>* {
16825 efrain 1249
    flex: 0 0 auto;
1250
    width: 25%;
1251
  }
16848 stevensc 1252
 
1253
  .row-cols-md-5>* {
16825 efrain 1254
    flex: 0 0 auto;
1255
    width: 20%;
1256
  }
16848 stevensc 1257
 
1258
  .row-cols-md-6>* {
16825 efrain 1259
    flex: 0 0 auto;
1260
    width: 16.6666666667%;
1261
  }
16848 stevensc 1262
 
16825 efrain 1263
  .col-md-auto {
1264
    flex: 0 0 auto;
1265
    width: auto;
1266
  }
16848 stevensc 1267
 
16825 efrain 1268
  .col-md-1 {
1269
    flex: 0 0 auto;
1270
    width: 8.33333333%;
1271
  }
16848 stevensc 1272
 
16825 efrain 1273
  .col-md-2 {
1274
    flex: 0 0 auto;
1275
    width: 16.66666667%;
1276
  }
16848 stevensc 1277
 
16825 efrain 1278
  .col-md-3 {
1279
    flex: 0 0 auto;
1280
    width: 25%;
1281
  }
16848 stevensc 1282
 
16825 efrain 1283
  .col-md-4 {
1284
    flex: 0 0 auto;
1285
    width: 33.33333333%;
1286
  }
16848 stevensc 1287
 
16825 efrain 1288
  .col-md-5 {
1289
    flex: 0 0 auto;
1290
    width: 41.66666667%;
1291
  }
16848 stevensc 1292
 
16825 efrain 1293
  .col-md-6 {
1294
    flex: 0 0 auto;
1295
    width: 50%;
1296
  }
16848 stevensc 1297
 
16825 efrain 1298
  .col-md-7 {
1299
    flex: 0 0 auto;
1300
    width: 58.33333333%;
1301
  }
16848 stevensc 1302
 
16825 efrain 1303
  .col-md-8 {
1304
    flex: 0 0 auto;
1305
    width: 66.66666667%;
1306
  }
16848 stevensc 1307
 
16825 efrain 1308
  .col-md-9 {
1309
    flex: 0 0 auto;
1310
    width: 75%;
1311
  }
16848 stevensc 1312
 
16825 efrain 1313
  .col-md-10 {
1314
    flex: 0 0 auto;
1315
    width: 83.33333333%;
1316
  }
16848 stevensc 1317
 
16825 efrain 1318
  .col-md-11 {
1319
    flex: 0 0 auto;
1320
    width: 91.66666667%;
1321
  }
16848 stevensc 1322
 
16825 efrain 1323
  .col-md-12 {
1324
    flex: 0 0 auto;
1325
    width: 100%;
1326
  }
16848 stevensc 1327
 
16825 efrain 1328
  .offset-md-0 {
1329
    margin-left: 0;
1330
  }
16848 stevensc 1331
 
16825 efrain 1332
  .offset-md-1 {
1333
    margin-left: 8.33333333%;
1334
  }
16848 stevensc 1335
 
16825 efrain 1336
  .offset-md-2 {
1337
    margin-left: 16.66666667%;
1338
  }
16848 stevensc 1339
 
16825 efrain 1340
  .offset-md-3 {
1341
    margin-left: 25%;
1342
  }
16848 stevensc 1343
 
16825 efrain 1344
  .offset-md-4 {
1345
    margin-left: 33.33333333%;
1346
  }
16848 stevensc 1347
 
16825 efrain 1348
  .offset-md-5 {
1349
    margin-left: 41.66666667%;
1350
  }
16848 stevensc 1351
 
16825 efrain 1352
  .offset-md-6 {
1353
    margin-left: 50%;
1354
  }
16848 stevensc 1355
 
16825 efrain 1356
  .offset-md-7 {
1357
    margin-left: 58.33333333%;
1358
  }
16848 stevensc 1359
 
16825 efrain 1360
  .offset-md-8 {
1361
    margin-left: 66.66666667%;
1362
  }
16848 stevensc 1363
 
16825 efrain 1364
  .offset-md-9 {
1365
    margin-left: 75%;
1366
  }
16848 stevensc 1367
 
16825 efrain 1368
  .offset-md-10 {
1369
    margin-left: 83.33333333%;
1370
  }
16848 stevensc 1371
 
16825 efrain 1372
  .offset-md-11 {
1373
    margin-left: 91.66666667%;
1374
  }
16848 stevensc 1375
 
16825 efrain 1376
  .g-md-0,
1377
  .gx-md-0 {
1378
    --bs-gutter-x: 0;
1379
  }
16848 stevensc 1380
 
16825 efrain 1381
  .g-md-0,
1382
  .gy-md-0 {
1383
    --bs-gutter-y: 0;
1384
  }
16848 stevensc 1385
 
16825 efrain 1386
  .g-md-1,
1387
  .gx-md-1 {
1388
    --bs-gutter-x: 0.25rem;
1389
  }
16848 stevensc 1390
 
16825 efrain 1391
  .g-md-1,
1392
  .gy-md-1 {
1393
    --bs-gutter-y: 0.25rem;
1394
  }
16848 stevensc 1395
 
16825 efrain 1396
  .g-md-2,
1397
  .gx-md-2 {
1398
    --bs-gutter-x: 0.5rem;
1399
  }
16848 stevensc 1400
 
16825 efrain 1401
  .g-md-2,
1402
  .gy-md-2 {
1403
    --bs-gutter-y: 0.5rem;
1404
  }
16848 stevensc 1405
 
16825 efrain 1406
  .g-md-3,
1407
  .gx-md-3 {
1408
    --bs-gutter-x: 1rem;
1409
  }
16848 stevensc 1410
 
16825 efrain 1411
  .g-md-3,
1412
  .gy-md-3 {
1413
    --bs-gutter-y: 1rem;
1414
  }
16848 stevensc 1415
 
16825 efrain 1416
  .g-md-4,
1417
  .gx-md-4 {
1418
    --bs-gutter-x: 1.5rem;
1419
  }
16848 stevensc 1420
 
16825 efrain 1421
  .g-md-4,
1422
  .gy-md-4 {
1423
    --bs-gutter-y: 1.5rem;
1424
  }
16848 stevensc 1425
 
16825 efrain 1426
  .g-md-5,
1427
  .gx-md-5 {
1428
    --bs-gutter-x: 3rem;
1429
  }
16848 stevensc 1430
 
16825 efrain 1431
  .g-md-5,
1432
  .gy-md-5 {
1433
    --bs-gutter-y: 3rem;
1434
  }
16848 stevensc 1435
 
16825 efrain 1436
  .g-md-6,
1437
  .gx-md-6 {
1438
    --bs-gutter-x: 4.5rem;
1439
  }
16848 stevensc 1440
 
16825 efrain 1441
  .g-md-6,
1442
  .gy-md-6 {
1443
    --bs-gutter-y: 4.5rem;
1444
  }
16848 stevensc 1445
 
16825 efrain 1446
  .g-md-7,
1447
  .gx-md-7 {
1448
    --bs-gutter-x: 6rem;
1449
  }
16848 stevensc 1450
 
16825 efrain 1451
  .g-md-7,
1452
  .gy-md-7 {
1453
    --bs-gutter-y: 6rem;
1454
  }
1455
}
16848 stevensc 1456
 
16825 efrain 1457
@media (min-width: 992px) {
1458
  .col-lg {
1459
    flex: 1 0 0%;
1460
  }
16848 stevensc 1461
 
1462
  .row-cols-lg-auto>* {
16825 efrain 1463
    flex: 0 0 auto;
1464
    width: auto;
1465
  }
16848 stevensc 1466
 
1467
  .row-cols-lg-1>* {
16825 efrain 1468
    flex: 0 0 auto;
1469
    width: 100%;
1470
  }
16848 stevensc 1471
 
1472
  .row-cols-lg-2>* {
16825 efrain 1473
    flex: 0 0 auto;
1474
    width: 50%;
1475
  }
16848 stevensc 1476
 
1477
  .row-cols-lg-3>* {
16825 efrain 1478
    flex: 0 0 auto;
1479
    width: 33.3333333333%;
1480
  }
16848 stevensc 1481
 
1482
  .row-cols-lg-4>* {
16825 efrain 1483
    flex: 0 0 auto;
1484
    width: 25%;
1485
  }
16848 stevensc 1486
 
1487
  .row-cols-lg-5>* {
16825 efrain 1488
    flex: 0 0 auto;
1489
    width: 20%;
1490
  }
16848 stevensc 1491
 
1492
  .row-cols-lg-6>* {
16825 efrain 1493
    flex: 0 0 auto;
1494
    width: 16.6666666667%;
1495
  }
16848 stevensc 1496
 
16825 efrain 1497
  .col-lg-auto {
1498
    flex: 0 0 auto;
1499
    width: auto;
1500
  }
16848 stevensc 1501
 
16825 efrain 1502
  .col-lg-1 {
1503
    flex: 0 0 auto;
1504
    width: 8.33333333%;
1505
  }
16848 stevensc 1506
 
16825 efrain 1507
  .col-lg-2 {
1508
    flex: 0 0 auto;
1509
    width: 16.66666667%;
1510
  }
16848 stevensc 1511
 
16825 efrain 1512
  .col-lg-3 {
1513
    flex: 0 0 auto;
1514
    width: 25%;
1515
  }
16848 stevensc 1516
 
16825 efrain 1517
  .col-lg-4 {
1518
    flex: 0 0 auto;
1519
    width: 33.33333333%;
1520
  }
16848 stevensc 1521
 
16825 efrain 1522
  .col-lg-5 {
1523
    flex: 0 0 auto;
1524
    width: 41.66666667%;
1525
  }
16848 stevensc 1526
 
16825 efrain 1527
  .col-lg-6 {
1528
    flex: 0 0 auto;
1529
    width: 50%;
1530
  }
16848 stevensc 1531
 
16825 efrain 1532
  .col-lg-7 {
1533
    flex: 0 0 auto;
1534
    width: 58.33333333%;
1535
  }
16848 stevensc 1536
 
16825 efrain 1537
  .col-lg-8 {
1538
    flex: 0 0 auto;
1539
    width: 66.66666667%;
1540
  }
16848 stevensc 1541
 
16825 efrain 1542
  .col-lg-9 {
1543
    flex: 0 0 auto;
1544
    width: 75%;
1545
  }
16848 stevensc 1546
 
16825 efrain 1547
  .col-lg-10 {
1548
    flex: 0 0 auto;
1549
    width: 83.33333333%;
1550
  }
16848 stevensc 1551
 
16825 efrain 1552
  .col-lg-11 {
1553
    flex: 0 0 auto;
1554
    width: 91.66666667%;
1555
  }
16848 stevensc 1556
 
16825 efrain 1557
  .col-lg-12 {
1558
    flex: 0 0 auto;
1559
    width: 100%;
1560
  }
16848 stevensc 1561
 
16825 efrain 1562
  .offset-lg-0 {
1563
    margin-left: 0;
1564
  }
16848 stevensc 1565
 
16825 efrain 1566
  .offset-lg-1 {
1567
    margin-left: 8.33333333%;
1568
  }
16848 stevensc 1569
 
16825 efrain 1570
  .offset-lg-2 {
1571
    margin-left: 16.66666667%;
1572
  }
16848 stevensc 1573
 
16825 efrain 1574
  .offset-lg-3 {
1575
    margin-left: 25%;
1576
  }
16848 stevensc 1577
 
16825 efrain 1578
  .offset-lg-4 {
1579
    margin-left: 33.33333333%;
1580
  }
16848 stevensc 1581
 
16825 efrain 1582
  .offset-lg-5 {
1583
    margin-left: 41.66666667%;
1584
  }
16848 stevensc 1585
 
16825 efrain 1586
  .offset-lg-6 {
1587
    margin-left: 50%;
1588
  }
16848 stevensc 1589
 
16825 efrain 1590
  .offset-lg-7 {
1591
    margin-left: 58.33333333%;
1592
  }
16848 stevensc 1593
 
16825 efrain 1594
  .offset-lg-8 {
1595
    margin-left: 66.66666667%;
1596
  }
16848 stevensc 1597
 
16825 efrain 1598
  .offset-lg-9 {
1599
    margin-left: 75%;
1600
  }
16848 stevensc 1601
 
16825 efrain 1602
  .offset-lg-10 {
1603
    margin-left: 83.33333333%;
1604
  }
16848 stevensc 1605
 
16825 efrain 1606
  .offset-lg-11 {
1607
    margin-left: 91.66666667%;
1608
  }
16848 stevensc 1609
 
16825 efrain 1610
  .g-lg-0,
1611
  .gx-lg-0 {
1612
    --bs-gutter-x: 0;
1613
  }
16848 stevensc 1614
 
16825 efrain 1615
  .g-lg-0,
1616
  .gy-lg-0 {
1617
    --bs-gutter-y: 0;
1618
  }
16848 stevensc 1619
 
16825 efrain 1620
  .g-lg-1,
1621
  .gx-lg-1 {
1622
    --bs-gutter-x: 0.25rem;
1623
  }
16848 stevensc 1624
 
16825 efrain 1625
  .g-lg-1,
1626
  .gy-lg-1 {
1627
    --bs-gutter-y: 0.25rem;
1628
  }
16848 stevensc 1629
 
16825 efrain 1630
  .g-lg-2,
1631
  .gx-lg-2 {
1632
    --bs-gutter-x: 0.5rem;
1633
  }
16848 stevensc 1634
 
16825 efrain 1635
  .g-lg-2,
1636
  .gy-lg-2 {
1637
    --bs-gutter-y: 0.5rem;
1638
  }
16848 stevensc 1639
 
16825 efrain 1640
  .g-lg-3,
1641
  .gx-lg-3 {
1642
    --bs-gutter-x: 1rem;
1643
  }
16848 stevensc 1644
 
16825 efrain 1645
  .g-lg-3,
1646
  .gy-lg-3 {
1647
    --bs-gutter-y: 1rem;
1648
  }
16848 stevensc 1649
 
16825 efrain 1650
  .g-lg-4,
1651
  .gx-lg-4 {
1652
    --bs-gutter-x: 1.5rem;
1653
  }
16848 stevensc 1654
 
16825 efrain 1655
  .g-lg-4,
1656
  .gy-lg-4 {
1657
    --bs-gutter-y: 1.5rem;
1658
  }
16848 stevensc 1659
 
16825 efrain 1660
  .g-lg-5,
1661
  .gx-lg-5 {
1662
    --bs-gutter-x: 3rem;
1663
  }
16848 stevensc 1664
 
16825 efrain 1665
  .g-lg-5,
1666
  .gy-lg-5 {
1667
    --bs-gutter-y: 3rem;
1668
  }
16848 stevensc 1669
 
16825 efrain 1670
  .g-lg-6,
1671
  .gx-lg-6 {
1672
    --bs-gutter-x: 4.5rem;
1673
  }
16848 stevensc 1674
 
16825 efrain 1675
  .g-lg-6,
1676
  .gy-lg-6 {
1677
    --bs-gutter-y: 4.5rem;
1678
  }
16848 stevensc 1679
 
16825 efrain 1680
  .g-lg-7,
1681
  .gx-lg-7 {
1682
    --bs-gutter-x: 6rem;
1683
  }
16848 stevensc 1684
 
16825 efrain 1685
  .g-lg-7,
1686
  .gy-lg-7 {
1687
    --bs-gutter-y: 6rem;
1688
  }
1689
}
16848 stevensc 1690
 
16825 efrain 1691
@media (min-width: 1200px) {
1692
  .col-xl {
1693
    flex: 1 0 0%;
1694
  }
16848 stevensc 1695
 
1696
  .row-cols-xl-auto>* {
16825 efrain 1697
    flex: 0 0 auto;
1698
    width: auto;
1699
  }
16848 stevensc 1700
 
1701
  .row-cols-xl-1>* {
16825 efrain 1702
    flex: 0 0 auto;
1703
    width: 100%;
1704
  }
16848 stevensc 1705
 
1706
  .row-cols-xl-2>* {
16825 efrain 1707
    flex: 0 0 auto;
1708
    width: 50%;
1709
  }
16848 stevensc 1710
 
1711
  .row-cols-xl-3>* {
16825 efrain 1712
    flex: 0 0 auto;
1713
    width: 33.3333333333%;
1714
  }
16848 stevensc 1715
 
1716
  .row-cols-xl-4>* {
16825 efrain 1717
    flex: 0 0 auto;
1718
    width: 25%;
1719
  }
16848 stevensc 1720
 
1721
  .row-cols-xl-5>* {
16825 efrain 1722
    flex: 0 0 auto;
1723
    width: 20%;
1724
  }
16848 stevensc 1725
 
1726
  .row-cols-xl-6>* {
16825 efrain 1727
    flex: 0 0 auto;
1728
    width: 16.6666666667%;
1729
  }
16848 stevensc 1730
 
16825 efrain 1731
  .col-xl-auto {
1732
    flex: 0 0 auto;
1733
    width: auto;
1734
  }
16848 stevensc 1735
 
16825 efrain 1736
  .col-xl-1 {
1737
    flex: 0 0 auto;
1738
    width: 8.33333333%;
1739
  }
16848 stevensc 1740
 
16825 efrain 1741
  .col-xl-2 {
1742
    flex: 0 0 auto;
1743
    width: 16.66666667%;
1744
  }
16848 stevensc 1745
 
16825 efrain 1746
  .col-xl-3 {
1747
    flex: 0 0 auto;
1748
    width: 25%;
1749
  }
16848 stevensc 1750
 
16825 efrain 1751
  .col-xl-4 {
1752
    flex: 0 0 auto;
1753
    width: 33.33333333%;
1754
  }
16848 stevensc 1755
 
16825 efrain 1756
  .col-xl-5 {
1757
    flex: 0 0 auto;
1758
    width: 41.66666667%;
1759
  }
16848 stevensc 1760
 
16825 efrain 1761
  .col-xl-6 {
1762
    flex: 0 0 auto;
1763
    width: 50%;
1764
  }
16848 stevensc 1765
 
16825 efrain 1766
  .col-xl-7 {
1767
    flex: 0 0 auto;
1768
    width: 58.33333333%;
1769
  }
16848 stevensc 1770
 
16825 efrain 1771
  .col-xl-8 {
1772
    flex: 0 0 auto;
1773
    width: 66.66666667%;
1774
  }
16848 stevensc 1775
 
16825 efrain 1776
  .col-xl-9 {
1777
    flex: 0 0 auto;
1778
    width: 75%;
1779
  }
16848 stevensc 1780
 
16825 efrain 1781
  .col-xl-10 {
1782
    flex: 0 0 auto;
1783
    width: 83.33333333%;
1784
  }
16848 stevensc 1785
 
16825 efrain 1786
  .col-xl-11 {
1787
    flex: 0 0 auto;
1788
    width: 91.66666667%;
1789
  }
16848 stevensc 1790
 
16825 efrain 1791
  .col-xl-12 {
1792
    flex: 0 0 auto;
1793
    width: 100%;
1794
  }
16848 stevensc 1795
 
16825 efrain 1796
  .offset-xl-0 {
1797
    margin-left: 0;
1798
  }
16848 stevensc 1799
 
16825 efrain 1800
  .offset-xl-1 {
1801
    margin-left: 8.33333333%;
1802
  }
16848 stevensc 1803
 
16825 efrain 1804
  .offset-xl-2 {
1805
    margin-left: 16.66666667%;
1806
  }
16848 stevensc 1807
 
16825 efrain 1808
  .offset-xl-3 {
1809
    margin-left: 25%;
1810
  }
16848 stevensc 1811
 
16825 efrain 1812
  .offset-xl-4 {
1813
    margin-left: 33.33333333%;
1814
  }
16848 stevensc 1815
 
16825 efrain 1816
  .offset-xl-5 {
1817
    margin-left: 41.66666667%;
1818
  }
16848 stevensc 1819
 
16825 efrain 1820
  .offset-xl-6 {
1821
    margin-left: 50%;
1822
  }
16848 stevensc 1823
 
16825 efrain 1824
  .offset-xl-7 {
1825
    margin-left: 58.33333333%;
1826
  }
16848 stevensc 1827
 
16825 efrain 1828
  .offset-xl-8 {
1829
    margin-left: 66.66666667%;
1830
  }
16848 stevensc 1831
 
16825 efrain 1832
  .offset-xl-9 {
1833
    margin-left: 75%;
1834
  }
16848 stevensc 1835
 
16825 efrain 1836
  .offset-xl-10 {
1837
    margin-left: 83.33333333%;
1838
  }
16848 stevensc 1839
 
16825 efrain 1840
  .offset-xl-11 {
1841
    margin-left: 91.66666667%;
1842
  }
16848 stevensc 1843
 
16825 efrain 1844
  .g-xl-0,
1845
  .gx-xl-0 {
1846
    --bs-gutter-x: 0;
1847
  }
16848 stevensc 1848
 
16825 efrain 1849
  .g-xl-0,
1850
  .gy-xl-0 {
1851
    --bs-gutter-y: 0;
1852
  }
16848 stevensc 1853
 
16825 efrain 1854
  .g-xl-1,
1855
  .gx-xl-1 {
1856
    --bs-gutter-x: 0.25rem;
1857
  }
16848 stevensc 1858
 
16825 efrain 1859
  .g-xl-1,
1860
  .gy-xl-1 {
1861
    --bs-gutter-y: 0.25rem;
1862
  }
16848 stevensc 1863
 
16825 efrain 1864
  .g-xl-2,
1865
  .gx-xl-2 {
1866
    --bs-gutter-x: 0.5rem;
1867
  }
16848 stevensc 1868
 
16825 efrain 1869
  .g-xl-2,
1870
  .gy-xl-2 {
1871
    --bs-gutter-y: 0.5rem;
1872
  }
16848 stevensc 1873
 
16825 efrain 1874
  .g-xl-3,
1875
  .gx-xl-3 {
1876
    --bs-gutter-x: 1rem;
1877
  }
16848 stevensc 1878
 
16825 efrain 1879
  .g-xl-3,
1880
  .gy-xl-3 {
1881
    --bs-gutter-y: 1rem;
1882
  }
16848 stevensc 1883
 
16825 efrain 1884
  .g-xl-4,
1885
  .gx-xl-4 {
1886
    --bs-gutter-x: 1.5rem;
1887
  }
16848 stevensc 1888
 
16825 efrain 1889
  .g-xl-4,
1890
  .gy-xl-4 {
1891
    --bs-gutter-y: 1.5rem;
1892
  }
16848 stevensc 1893
 
16825 efrain 1894
  .g-xl-5,
1895
  .gx-xl-5 {
1896
    --bs-gutter-x: 3rem;
1897
  }
16848 stevensc 1898
 
16825 efrain 1899
  .g-xl-5,
1900
  .gy-xl-5 {
1901
    --bs-gutter-y: 3rem;
1902
  }
16848 stevensc 1903
 
16825 efrain 1904
  .g-xl-6,
1905
  .gx-xl-6 {
1906
    --bs-gutter-x: 4.5rem;
1907
  }
16848 stevensc 1908
 
16825 efrain 1909
  .g-xl-6,
1910
  .gy-xl-6 {
1911
    --bs-gutter-y: 4.5rem;
1912
  }
16848 stevensc 1913
 
16825 efrain 1914
  .g-xl-7,
1915
  .gx-xl-7 {
1916
    --bs-gutter-x: 6rem;
1917
  }
16848 stevensc 1918
 
16825 efrain 1919
  .g-xl-7,
1920
  .gy-xl-7 {
1921
    --bs-gutter-y: 6rem;
1922
  }
1923
}
16848 stevensc 1924
 
16825 efrain 1925
@media (min-width: 1400px) {
1926
  .col-xxl {
1927
    flex: 1 0 0%;
1928
  }
16848 stevensc 1929
 
1930
  .row-cols-xxl-auto>* {
16825 efrain 1931
    flex: 0 0 auto;
1932
    width: auto;
1933
  }
16848 stevensc 1934
 
1935
  .row-cols-xxl-1>* {
16825 efrain 1936
    flex: 0 0 auto;
1937
    width: 100%;
1938
  }
16848 stevensc 1939
 
1940
  .row-cols-xxl-2>* {
16825 efrain 1941
    flex: 0 0 auto;
1942
    width: 50%;
1943
  }
16848 stevensc 1944
 
1945
  .row-cols-xxl-3>* {
16825 efrain 1946
    flex: 0 0 auto;
1947
    width: 33.3333333333%;
1948
  }
16848 stevensc 1949
 
1950
  .row-cols-xxl-4>* {
16825 efrain 1951
    flex: 0 0 auto;
1952
    width: 25%;
1953
  }
16848 stevensc 1954
 
1955
  .row-cols-xxl-5>* {
16825 efrain 1956
    flex: 0 0 auto;
1957
    width: 20%;
1958
  }
16848 stevensc 1959
 
1960
  .row-cols-xxl-6>* {
16825 efrain 1961
    flex: 0 0 auto;
1962
    width: 16.6666666667%;
1963
  }
16848 stevensc 1964
 
16825 efrain 1965
  .col-xxl-auto {
1966
    flex: 0 0 auto;
1967
    width: auto;
1968
  }
16848 stevensc 1969
 
16825 efrain 1970
  .col-xxl-1 {
1971
    flex: 0 0 auto;
1972
    width: 8.33333333%;
1973
  }
16848 stevensc 1974
 
16825 efrain 1975
  .col-xxl-2 {
1976
    flex: 0 0 auto;
1977
    width: 16.66666667%;
1978
  }
16848 stevensc 1979
 
16825 efrain 1980
  .col-xxl-3 {
1981
    flex: 0 0 auto;
1982
    width: 25%;
1983
  }
16848 stevensc 1984
 
16825 efrain 1985
  .col-xxl-4 {
1986
    flex: 0 0 auto;
1987
    width: 33.33333333%;
1988
  }
16848 stevensc 1989
 
16825 efrain 1990
  .col-xxl-5 {
1991
    flex: 0 0 auto;
1992
    width: 41.66666667%;
1993
  }
16848 stevensc 1994
 
16825 efrain 1995
  .col-xxl-6 {
1996
    flex: 0 0 auto;
1997
    width: 50%;
1998
  }
16848 stevensc 1999
 
16825 efrain 2000
  .col-xxl-7 {
2001
    flex: 0 0 auto;
2002
    width: 58.33333333%;
2003
  }
16848 stevensc 2004
 
16825 efrain 2005
  .col-xxl-8 {
2006
    flex: 0 0 auto;
2007
    width: 66.66666667%;
2008
  }
16848 stevensc 2009
 
16825 efrain 2010
  .col-xxl-9 {
2011
    flex: 0 0 auto;
2012
    width: 75%;
2013
  }
16848 stevensc 2014
 
16825 efrain 2015
  .col-xxl-10 {
2016
    flex: 0 0 auto;
2017
    width: 83.33333333%;
2018
  }
16848 stevensc 2019
 
16825 efrain 2020
  .col-xxl-11 {
2021
    flex: 0 0 auto;
2022
    width: 91.66666667%;
2023
  }
16848 stevensc 2024
 
16825 efrain 2025
  .col-xxl-12 {
2026
    flex: 0 0 auto;
2027
    width: 100%;
2028
  }
16848 stevensc 2029
 
16825 efrain 2030
  .offset-xxl-0 {
2031
    margin-left: 0;
2032
  }
16848 stevensc 2033
 
16825 efrain 2034
  .offset-xxl-1 {
2035
    margin-left: 8.33333333%;
2036
  }
16848 stevensc 2037
 
16825 efrain 2038
  .offset-xxl-2 {
2039
    margin-left: 16.66666667%;
2040
  }
16848 stevensc 2041
 
16825 efrain 2042
  .offset-xxl-3 {
2043
    margin-left: 25%;
2044
  }
16848 stevensc 2045
 
16825 efrain 2046
  .offset-xxl-4 {
2047
    margin-left: 33.33333333%;
2048
  }
16848 stevensc 2049
 
16825 efrain 2050
  .offset-xxl-5 {
2051
    margin-left: 41.66666667%;
2052
  }
16848 stevensc 2053
 
16825 efrain 2054
  .offset-xxl-6 {
2055
    margin-left: 50%;
2056
  }
16848 stevensc 2057
 
16825 efrain 2058
  .offset-xxl-7 {
2059
    margin-left: 58.33333333%;
2060
  }
16848 stevensc 2061
 
16825 efrain 2062
  .offset-xxl-8 {
2063
    margin-left: 66.66666667%;
2064
  }
16848 stevensc 2065
 
16825 efrain 2066
  .offset-xxl-9 {
2067
    margin-left: 75%;
2068
  }
16848 stevensc 2069
 
16825 efrain 2070
  .offset-xxl-10 {
2071
    margin-left: 83.33333333%;
2072
  }
16848 stevensc 2073
 
16825 efrain 2074
  .offset-xxl-11 {
2075
    margin-left: 91.66666667%;
2076
  }
16848 stevensc 2077
 
16825 efrain 2078
  .g-xxl-0,
2079
  .gx-xxl-0 {
2080
    --bs-gutter-x: 0;
2081
  }
16848 stevensc 2082
 
16825 efrain 2083
  .g-xxl-0,
2084
  .gy-xxl-0 {
2085
    --bs-gutter-y: 0;
2086
  }
16848 stevensc 2087
 
16825 efrain 2088
  .g-xxl-1,
2089
  .gx-xxl-1 {
2090
    --bs-gutter-x: 0.25rem;
2091
  }
16848 stevensc 2092
 
16825 efrain 2093
  .g-xxl-1,
2094
  .gy-xxl-1 {
2095
    --bs-gutter-y: 0.25rem;
2096
  }
16848 stevensc 2097
 
16825 efrain 2098
  .g-xxl-2,
2099
  .gx-xxl-2 {
2100
    --bs-gutter-x: 0.5rem;
2101
  }
16848 stevensc 2102
 
16825 efrain 2103
  .g-xxl-2,
2104
  .gy-xxl-2 {
2105
    --bs-gutter-y: 0.5rem;
2106
  }
16848 stevensc 2107
 
16825 efrain 2108
  .g-xxl-3,
2109
  .gx-xxl-3 {
2110
    --bs-gutter-x: 1rem;
2111
  }
16848 stevensc 2112
 
16825 efrain 2113
  .g-xxl-3,
2114
  .gy-xxl-3 {
2115
    --bs-gutter-y: 1rem;
2116
  }
16848 stevensc 2117
 
16825 efrain 2118
  .g-xxl-4,
2119
  .gx-xxl-4 {
2120
    --bs-gutter-x: 1.5rem;
2121
  }
16848 stevensc 2122
 
16825 efrain 2123
  .g-xxl-4,
2124
  .gy-xxl-4 {
2125
    --bs-gutter-y: 1.5rem;
2126
  }
16848 stevensc 2127
 
16825 efrain 2128
  .g-xxl-5,
2129
  .gx-xxl-5 {
2130
    --bs-gutter-x: 3rem;
2131
  }
16848 stevensc 2132
 
16825 efrain 2133
  .g-xxl-5,
2134
  .gy-xxl-5 {
2135
    --bs-gutter-y: 3rem;
2136
  }
16848 stevensc 2137
 
16825 efrain 2138
  .g-xxl-6,
2139
  .gx-xxl-6 {
2140
    --bs-gutter-x: 4.5rem;
2141
  }
16848 stevensc 2142
 
16825 efrain 2143
  .g-xxl-6,
2144
  .gy-xxl-6 {
2145
    --bs-gutter-y: 4.5rem;
2146
  }
16848 stevensc 2147
 
16825 efrain 2148
  .g-xxl-7,
2149
  .gx-xxl-7 {
2150
    --bs-gutter-x: 6rem;
2151
  }
16848 stevensc 2152
 
16825 efrain 2153
  .g-xxl-7,
2154
  .gy-xxl-7 {
2155
    --bs-gutter-y: 6rem;
2156
  }
2157
}
16848 stevensc 2158
 
16825 efrain 2159
.table {
2160
  --bs-table-color: var(--bs-body-color);
2161
  --bs-table-bg: transparent;
2162
  --bs-table-border-color: var(--bs-border-color);
2163
  --bs-table-accent-bg: transparent;
2164
  --bs-table-striped-color: var(--bs-body-color);
2165
  --bs-table-striped-bg: #e9ecef;
2166
  --bs-table-active-color: var(--bs-body-color);
2167
  --bs-table-active-bg: #dee2e6;
2168
  --bs-table-hover-color: var(--bs-body-color);
2169
  --bs-table-hover-bg: #e9ecef;
2170
  width: 100%;
2171
  margin-bottom: 1rem;
2172
  color: var(--bs-table-color);
2173
  vertical-align: top;
2174
  border-color: var(--bs-table-border-color);
2175
}
16848 stevensc 2176
 
2177
.table> :not(caption)>*>* {
16825 efrain 2178
  padding: 0.85rem 0.85rem;
2179
  background-color: var(--bs-table-bg);
2180
  border-bottom-width: 1px;
2181
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2182
}
16848 stevensc 2183
 
2184
.table>tbody {
16825 efrain 2185
  vertical-align: inherit;
2186
}
16848 stevensc 2187
 
2188
.table>thead {
16825 efrain 2189
  vertical-align: bottom;
2190
}
2191
 
2192
.table-group-divider {
2193
  border-top: 2px solid #e9ecef;
2194
}
2195
 
2196
.caption-top {
2197
  caption-side: top;
2198
}
2199
 
16848 stevensc 2200
.table-sm> :not(caption)>*>* {
16825 efrain 2201
  padding: 0.55rem 0.55rem;
2202
}
2203
 
16848 stevensc 2204
.table-bordered> :not(caption)>* {
16825 efrain 2205
  border-width: 1px 0;
2206
}
16848 stevensc 2207
 
2208
.table-bordered> :not(caption)>*>* {
16825 efrain 2209
  border-width: 0 1px;
2210
}
2211
 
16848 stevensc 2212
.table-borderless> :not(caption)>*>* {
16825 efrain 2213
  border-bottom-width: 0;
2214
}
16848 stevensc 2215
 
2216
.table-borderless> :not(:first-child) {
16825 efrain 2217
  border-top-width: 0;
2218
}
2219
 
16848 stevensc 2220
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2221
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2222
  color: var(--bs-table-striped-color);
2223
}
2224
 
16848 stevensc 2225
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2226
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2227
  color: var(--bs-table-striped-color);
2228
}
2229
 
2230
.table-active {
2231
  --bs-table-accent-bg: var(--bs-table-active-bg);
2232
  color: var(--bs-table-active-color);
2233
}
2234
 
16848 stevensc 2235
.table-hover>tbody>tr:hover>* {
16825 efrain 2236
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2237
  color: var(--bs-table-hover-color);
2238
}
2239
 
2240
.table-primary {
2241
  --bs-table-color: #000;
2242
  --bs-table-bg: #e0e3ff;
2243
  --bs-table-border-color: #cacce6;
2244
  --bs-table-striped-bg: #d5d8f2;
2245
  --bs-table-striped-color: #000;
2246
  --bs-table-active-bg: #cacce6;
2247
  --bs-table-active-color: #000;
2248
  --bs-table-hover-bg: #cfd2ec;
2249
  --bs-table-hover-color: #000;
2250
  color: var(--bs-table-color);
2251
  border-color: var(--bs-table-border-color);
2252
}
2253
 
2254
.table-secondary {
2255
  --bs-table-color: #000;
2256
  --bs-table-bg: #e4e7ec;
2257
  --bs-table-border-color: #cdd0d4;
2258
  --bs-table-striped-bg: #d9dbe0;
2259
  --bs-table-striped-color: #000;
2260
  --bs-table-active-bg: #cdd0d4;
2261
  --bs-table-active-color: #000;
2262
  --bs-table-hover-bg: #d3d6da;
2263
  --bs-table-hover-color: #000;
2264
  color: var(--bs-table-color);
2265
  border-color: var(--bs-table-border-color);
2266
}
2267
 
2268
.table-success {
2269
  --bs-table-color: #000;
2270
  --bs-table-bg: #cdeddb;
2271
  --bs-table-border-color: #b9d5c5;
2272
  --bs-table-striped-bg: #c3e1d0;
2273
  --bs-table-striped-color: #000;
2274
  --bs-table-active-bg: #b9d5c5;
2275
  --bs-table-active-color: #000;
2276
  --bs-table-hover-bg: #bedbcb;
2277
  --bs-table-hover-color: #000;
2278
  color: var(--bs-table-color);
2279
  border-color: var(--bs-table-border-color);
2280
}
2281
 
2282
.table-info {
2283
  --bs-table-color: #000;
2284
  --bs-table-bg: #e0f6f6;
2285
  --bs-table-border-color: #cadddd;
2286
  --bs-table-striped-bg: #d5eaea;
2287
  --bs-table-striped-color: #000;
2288
  --bs-table-active-bg: #cadddd;
2289
  --bs-table-active-color: #000;
2290
  --bs-table-hover-bg: #cfe4e4;
2291
  --bs-table-hover-color: #000;
2292
  color: var(--bs-table-color);
2293
  border-color: var(--bs-table-border-color);
2294
}
2295
 
2296
.table-warning {
2297
  --bs-table-color: #000;
2298
  --bs-table-bg: #fef2cd;
2299
  --bs-table-border-color: #e5dab9;
2300
  --bs-table-striped-bg: #f1e6c3;
2301
  --bs-table-striped-color: #000;
2302
  --bs-table-active-bg: #e5dab9;
2303
  --bs-table-active-color: #000;
2304
  --bs-table-hover-bg: #ebe0be;
2305
  --bs-table-hover-color: #000;
2306
  color: var(--bs-table-color);
2307
  border-color: var(--bs-table-border-color);
2308
}
2309
 
2310
.table-danger {
2311
  --bs-table-color: #000;
2312
  --bs-table-bg: #ffd6e0;
2313
  --bs-table-border-color: #e6c1ca;
2314
  --bs-table-striped-bg: #f2cbd5;
2315
  --bs-table-striped-color: #000;
2316
  --bs-table-active-bg: #e6c1ca;
2317
  --bs-table-active-color: #000;
2318
  --bs-table-hover-bg: #ecc6cf;
2319
  --bs-table-hover-color: #000;
2320
  color: var(--bs-table-color);
2321
  border-color: var(--bs-table-border-color);
2322
}
2323
 
2324
.table-light {
2325
  --bs-table-color: #000;
2326
  --bs-table-bg: #e9ecef;
2327
  --bs-table-border-color: #d2d4d7;
2328
  --bs-table-striped-bg: #dde0e3;
2329
  --bs-table-striped-color: #000;
2330
  --bs-table-active-bg: #d2d4d7;
2331
  --bs-table-active-color: #000;
2332
  --bs-table-hover-bg: #d8dadd;
2333
  --bs-table-hover-color: #000;
2334
  color: var(--bs-table-color);
2335
  border-color: var(--bs-table-border-color);
2336
}
2337
 
2338
.table-dark {
2339
  --bs-table-color: #fff;
2340
  --bs-table-bg: #060c17;
2341
  --bs-table-border-color: #1f242e;
2342
  --bs-table-striped-bg: #121823;
2343
  --bs-table-striped-color: #fff;
2344
  --bs-table-active-bg: #1f242e;
2345
  --bs-table-active-color: #fff;
2346
  --bs-table-hover-bg: #191e28;
2347
  --bs-table-hover-color: #fff;
2348
  color: var(--bs-table-color);
2349
  border-color: var(--bs-table-border-color);
2350
}
2351
 
2352
.table-responsive {
2353
  overflow-x: auto;
2354
  -webkit-overflow-scrolling: touch;
2355
}
2356
 
2357
@media (max-width: 575.98px) {
2358
  .table-responsive-sm {
2359
    overflow-x: auto;
2360
    -webkit-overflow-scrolling: touch;
2361
  }
2362
}
16848 stevensc 2363
 
16825 efrain 2364
@media (max-width: 767.98px) {
2365
  .table-responsive-md {
2366
    overflow-x: auto;
2367
    -webkit-overflow-scrolling: touch;
2368
  }
2369
}
16848 stevensc 2370
 
16825 efrain 2371
@media (max-width: 991.98px) {
2372
  .table-responsive-lg {
2373
    overflow-x: auto;
2374
    -webkit-overflow-scrolling: touch;
2375
  }
2376
}
16848 stevensc 2377
 
16825 efrain 2378
@media (max-width: 1199.98px) {
2379
  .table-responsive-xl {
2380
    overflow-x: auto;
2381
    -webkit-overflow-scrolling: touch;
2382
  }
2383
}
16848 stevensc 2384
 
16825 efrain 2385
@media (max-width: 1399.98px) {
2386
  .table-responsive-xxl {
2387
    overflow-x: auto;
2388
    -webkit-overflow-scrolling: touch;
2389
  }
2390
}
16848 stevensc 2391
 
16825 efrain 2392
.form-label {
2393
  margin-bottom: 0.5rem;
2394
}
2395
 
2396
.col-form-label {
2397
  padding-top: calc(0.469rem + 1px);
2398
  padding-bottom: calc(0.469rem + 1px);
2399
  margin-bottom: 0;
2400
  font-size: inherit;
2401
  line-height: 1.5;
2402
}
2403
 
2404
.col-form-label-lg {
2405
  padding-top: calc(0.5rem + 1px);
2406
  padding-bottom: calc(0.5rem + 1px);
2407
  font-size: 1rem;
2408
}
2409
 
2410
.col-form-label-sm {
2411
  padding-top: calc(0.391rem + 1px);
2412
  padding-bottom: calc(0.391rem + 1px);
2413
  font-size: 0.812rem;
2414
}
2415
 
2416
.form-text {
2417
  margin-top: 0.25rem;
2418
  font-size: 0.875em;
2419
  color: #7987a1;
2420
}
2421
 
16848 stevensc 2422
.form-control,
2423
.typeahead.tt-input,
2424
.typeahead.tt-hint,
2425
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2426
  display: block;
2427
  width: 100%;
2428
  padding: 0.469rem 0.8rem;
2429
  font-size: 0.875rem;
2430
  font-weight: 400;
2431
  line-height: 1.5;
2432
  color: #000;
2433
  background-color: #fff;
2434
  background-clip: padding-box;
2435
  border: 1px solid #e9ecef;
2436
  appearance: none;
2437
  border-radius: 0.25rem;
2438
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2439
}
16848 stevensc 2440
 
16825 efrain 2441
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2442
 
2443
  .form-control,
2444
  .typeahead.tt-input,
2445
  .typeahead.tt-hint,
2446
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2447
    transition: none;
2448
  }
2449
}
16848 stevensc 2450
 
2451
.form-control[type=file],
2452
[type=file].typeahead.tt-input,
2453
[type=file].typeahead.tt-hint,
2454
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2455
  overflow: hidden;
2456
}
16848 stevensc 2457
 
2458
.form-control[type=file]:not(:disabled):not([readonly]),
2459
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2460
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2461
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2462
  cursor: pointer;
2463
}
16848 stevensc 2464
 
2465
.form-control:focus,
2466
.typeahead.tt-input:focus,
2467
.typeahead.tt-hint:focus,
2468
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2469
  color: #000;
2470
  background-color: #fff;
2471
  border-color: #cbd1db;
2472
  outline: 0;
2473
  box-shadow: none;
2474
}
16848 stevensc 2475
 
2476
.form-control::-webkit-date-and-time-value,
2477
.typeahead.tt-input::-webkit-date-and-time-value,
2478
.typeahead.tt-hint::-webkit-date-and-time-value,
2479
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2480
  height: 1.5em;
2481
}
16848 stevensc 2482
 
2483
.form-control::placeholder,
2484
.typeahead.tt-input::placeholder,
2485
.typeahead.tt-hint::placeholder,
2486
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2487
  color: #aeb7c5;
2488
  opacity: 1;
2489
}
16848 stevensc 2490
 
2491
.form-control:disabled,
2492
.typeahead.tt-input:disabled,
2493
.typeahead.tt-hint:disabled,
2494
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2495
  background-color: #e9ecef;
2496
  opacity: 1;
2497
}
16848 stevensc 2498
 
2499
.form-control::file-selector-button,
2500
.typeahead.tt-input::file-selector-button,
2501
.typeahead.tt-hint::file-selector-button,
2502
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2503
  padding: 0.469rem 0.8rem;
2504
  margin: -0.469rem -0.8rem;
2505
  margin-inline-end: 0.8rem;
2506
  color: #000;
2507
  background-color: #f8f9fa;
2508
  pointer-events: none;
2509
  border-color: inherit;
2510
  border-style: solid;
2511
  border-width: 0;
2512
  border-inline-end-width: 1px;
2513
  border-radius: 0;
2514
  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;
2515
}
16848 stevensc 2516
 
16825 efrain 2517
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2518
 
2519
  .form-control::file-selector-button,
2520
  .typeahead.tt-input::file-selector-button,
2521
  .typeahead.tt-hint::file-selector-button,
2522
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2523
    transition: none;
2524
  }
2525
}
16848 stevensc 2526
 
2527
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2528
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2529
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2530
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2531
  background-color: #ecedee;
2532
}
2533
 
2534
.form-control-plaintext {
2535
  display: block;
2536
  width: 100%;
2537
  padding: 0.469rem 0;
2538
  margin-bottom: 0;
2539
  line-height: 1.5;
2540
  color: #000;
2541
  background-color: transparent;
2542
  border: solid transparent;
2543
  border-width: 1px 0;
2544
}
16848 stevensc 2545
 
16825 efrain 2546
.form-control-plaintext:focus {
2547
  outline: 0;
2548
}
16848 stevensc 2549
 
2550
.form-control-plaintext.form-control-sm,
2551
.form-control-plaintext.form-control-lg {
16825 efrain 2552
  padding-right: 0;
2553
  padding-left: 0;
2554
}
2555
 
2556
.form-control-sm {
2557
  min-height: calc(1.5em + 0.782rem + 2px);
2558
  padding: 0.391rem 0.8rem;
2559
  font-size: 0.812rem;
2560
  border-radius: 0.25rem;
2561
}
16848 stevensc 2562
 
16825 efrain 2563
.form-control-sm::file-selector-button {
2564
  padding: 0.391rem 0.8rem;
2565
  margin: -0.391rem -0.8rem;
2566
  margin-inline-end: 0.8rem;
2567
}
2568
 
2569
.form-control-lg {
2570
  min-height: calc(1.5em + 1rem + 2px);
2571
  padding: 0.5rem 0.8rem;
2572
  font-size: 1rem;
2573
  border-radius: 0.25rem;
2574
}
16848 stevensc 2575
 
16825 efrain 2576
.form-control-lg::file-selector-button {
2577
  padding: 0.5rem 0.8rem;
2578
  margin: -0.5rem -0.8rem;
2579
  margin-inline-end: 0.8rem;
2580
}
2581
 
16848 stevensc 2582
textarea.form-control,
2583
textarea.typeahead.tt-input,
2584
textarea.typeahead.tt-hint,
2585
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2586
  min-height: calc(1.5em + 0.938rem + 2px);
2587
}
16848 stevensc 2588
 
16825 efrain 2589
textarea.form-control-sm {
2590
  min-height: calc(1.5em + 0.782rem + 2px);
2591
}
16848 stevensc 2592
 
16825 efrain 2593
textarea.form-control-lg {
2594
  min-height: calc(1.5em + 1rem + 2px);
2595
}
2596
 
2597
.form-control-color {
2598
  width: 3rem;
2599
  height: calc(1.5em + 0.938rem + 2px);
2600
  padding: 0.469rem;
2601
}
16848 stevensc 2602
 
16825 efrain 2603
.form-control-color:not(:disabled):not([readonly]) {
2604
  cursor: pointer;
2605
}
16848 stevensc 2606
 
16825 efrain 2607
.form-control-color::-moz-color-swatch {
2608
  border: 0 !important;
2609
  border-radius: 0.25rem;
2610
}
16848 stevensc 2611
 
16825 efrain 2612
.form-control-color::-webkit-color-swatch {
2613
  border-radius: 0.25rem;
2614
}
16848 stevensc 2615
 
16825 efrain 2616
.form-control-color.form-control-sm {
2617
  height: calc(1.5em + 0.782rem + 2px);
2618
}
16848 stevensc 2619
 
16825 efrain 2620
.form-control-color.form-control-lg {
2621
  height: calc(1.5em + 1rem + 2px);
2622
}
2623
 
2624
.form-select {
2625
  display: block;
2626
  width: 100%;
2627
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2628
  -moz-padding-start: calc(0.8rem - 3px);
2629
  font-size: 0.875rem;
2630
  font-weight: 400;
2631
  line-height: 1.5;
2632
  color: #000;
2633
  background-color: #fff;
2634
  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");
2635
  background-repeat: no-repeat;
2636
  background-position: right 0.8rem center;
2637
  background-size: 16px 12px;
2638
  border: 1px solid #e9ecef;
2639
  border-radius: 0.25rem;
2640
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2641
  appearance: none;
2642
}
16848 stevensc 2643
 
16825 efrain 2644
@media (prefers-reduced-motion: reduce) {
2645
  .form-select {
2646
    transition: none;
2647
  }
2648
}
16848 stevensc 2649
 
16825 efrain 2650
.form-select:focus {
2651
  border-color: #cbd1db;
2652
  outline: 0;
2653
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2654
}
16848 stevensc 2655
 
2656
.form-select[multiple],
2657
.form-select[size]:not([size="1"]) {
16825 efrain 2658
  padding-right: 0.8rem;
2659
  background-image: none;
2660
}
16848 stevensc 2661
 
16825 efrain 2662
.form-select:disabled {
2663
  background-color: #e9ecef;
2664
}
16848 stevensc 2665
 
16825 efrain 2666
.form-select:-moz-focusring {
2667
  color: transparent;
2668
  text-shadow: 0 0 0 #000;
2669
}
2670
 
2671
.form-select-sm {
2672
  padding-top: 0.391rem;
2673
  padding-bottom: 0.391rem;
2674
  padding-left: 0.8rem;
2675
  font-size: 0.812rem;
2676
  border-radius: 0.25rem;
2677
}
2678
 
2679
.form-select-lg {
2680
  padding-top: 0.5rem;
2681
  padding-bottom: 0.5rem;
2682
  padding-left: 0.8rem;
2683
  font-size: 1rem;
2684
  border-radius: 0.25rem;
2685
}
2686
 
2687
.form-check {
2688
  display: block;
2689
  min-height: 1.3125rem;
2690
  padding-left: 1.8em;
2691
  margin-bottom: 0.125rem;
2692
}
16848 stevensc 2693
 
16825 efrain 2694
.form-check .form-check-input {
2695
  float: left;
2696
  margin-left: -1.8em;
2697
}
2698
 
2699
.form-check-reverse {
2700
  padding-right: 1.8em;
2701
  padding-left: 0;
2702
  text-align: right;
2703
}
16848 stevensc 2704
 
16825 efrain 2705
.form-check-reverse .form-check-input {
2706
  float: right;
2707
  margin-right: -1.8em;
2708
  margin-left: 0;
2709
}
2710
 
2711
.form-check-input {
2712
  width: 1.3em;
2713
  height: 1.3em;
2714
  margin-top: 0.1em;
2715
  vertical-align: top;
2716
  background-color: #fff;
2717
  background-repeat: no-repeat;
2718
  background-position: center;
2719
  background-size: contain;
2720
  border: 1px solid rgba(0, 0, 0, 0.25);
2721
  appearance: none;
2722
  print-color-adjust: exact;
2723
}
16848 stevensc 2724
 
16825 efrain 2725
.form-check-input[type=checkbox] {
2726
  border-radius: 0.15em;
2727
}
16848 stevensc 2728
 
16825 efrain 2729
.form-check-input[type=radio] {
2730
  border-radius: 50%;
2731
}
16848 stevensc 2732
 
16825 efrain 2733
.form-check-input:active {
2734
  filter: brightness(90%);
2735
}
16848 stevensc 2736
 
16825 efrain 2737
.form-check-input:focus {
2738
  border-color: #cbd1db;
2739
  outline: 0;
2740
  box-shadow: none;
2741
}
16848 stevensc 2742
 
16825 efrain 2743
.form-check-input:checked {
2744
  background-color: #6571ff;
2745
  border-color: #6571ff;
2746
}
16848 stevensc 2747
 
16825 efrain 2748
.form-check-input:checked[type=checkbox] {
2749
  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");
2750
}
16848 stevensc 2751
 
16825 efrain 2752
.form-check-input:checked[type=radio] {
2753
  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");
2754
}
16848 stevensc 2755
 
16825 efrain 2756
.form-check-input[type=checkbox]:indeterminate {
2757
  background-color: #6571ff;
2758
  border-color: #6571ff;
2759
  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");
2760
}
16848 stevensc 2761
 
16825 efrain 2762
.form-check-input:disabled {
2763
  pointer-events: none;
2764
  filter: none;
2765
  opacity: 0.5;
2766
}
16848 stevensc 2767
 
2768
.form-check-input[disabled]~.form-check-label,
2769
.form-check-input:disabled~.form-check-label {
16825 efrain 2770
  cursor: default;
2771
  opacity: 0.5;
2772
}
2773
 
2774
.form-switch {
2775
  padding-left: 2.5em;
2776
}
16848 stevensc 2777
 
16825 efrain 2778
.form-switch .form-check-input {
2779
  width: 2em;
2780
  margin-left: -2.5em;
2781
  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");
2782
  background-position: left center;
2783
  border-radius: 2em;
2784
  transition: background-position 0.15s ease-in-out;
2785
}
16848 stevensc 2786
 
16825 efrain 2787
@media (prefers-reduced-motion: reduce) {
2788
  .form-switch .form-check-input {
2789
    transition: none;
2790
  }
2791
}
16848 stevensc 2792
 
16825 efrain 2793
.form-switch .form-check-input:focus {
2794
  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");
2795
}
16848 stevensc 2796
 
16825 efrain 2797
.form-switch .form-check-input:checked {
2798
  background-position: right center;
2799
  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");
2800
}
16848 stevensc 2801
 
16825 efrain 2802
.form-switch.form-check-reverse {
2803
  padding-right: 2.5em;
2804
  padding-left: 0;
2805
}
16848 stevensc 2806
 
16825 efrain 2807
.form-switch.form-check-reverse .form-check-input {
2808
  margin-right: -2.5em;
2809
  margin-left: 0;
2810
}
2811
 
2812
.form-check-inline {
2813
  display: inline-block;
2814
  margin-right: 1rem;
2815
}
2816
 
2817
.btn-check {
2818
  position: absolute;
2819
  clip: rect(0, 0, 0, 0);
2820
  pointer-events: none;
2821
}
16848 stevensc 2822
 
2823
.btn-check[disabled]+.btn,
2824
.wizard>.actions .btn-check[disabled]+a,
2825
div.tox .btn-check[disabled]+.tox-button,
2826
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2827
.fc .btn-check[disabled]+.fc-button-primary,
2828
.btn-check:disabled+.btn,
2829
.wizard>.actions .btn-check:disabled+a,
2830
div.tox .btn-check:disabled+.tox-button,
2831
.swal2-popup .swal2-actions .btn-check:disabled+button,
2832
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2833
  pointer-events: none;
2834
  filter: none;
2835
  opacity: 0.65;
2836
}
2837
 
2838
.form-range {
2839
  width: 100%;
2840
  height: 1rem;
2841
  padding: 0;
2842
  background-color: transparent;
2843
  appearance: none;
2844
}
16848 stevensc 2845
 
16825 efrain 2846
.form-range:focus {
2847
  outline: 0;
2848
}
16848 stevensc 2849
 
16825 efrain 2850
.form-range:focus::-webkit-slider-thumb {
2851
  box-shadow: 0 0 0 1px #f9fafb, none;
2852
}
16848 stevensc 2853
 
16825 efrain 2854
.form-range:focus::-moz-range-thumb {
2855
  box-shadow: 0 0 0 1px #f9fafb, none;
2856
}
16848 stevensc 2857
 
16825 efrain 2858
.form-range::-moz-focus-outer {
2859
  border: 0;
2860
}
16848 stevensc 2861
 
16825 efrain 2862
.form-range::-webkit-slider-thumb {
2863
  width: 1rem;
2864
  height: 1rem;
2865
  margin-top: -0.25rem;
2866
  background-color: #6571ff;
2867
  border: 0;
2868
  border-radius: 1rem;
2869
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2870
  appearance: none;
2871
}
16848 stevensc 2872
 
16825 efrain 2873
@media (prefers-reduced-motion: reduce) {
2874
  .form-range::-webkit-slider-thumb {
2875
    transition: none;
2876
  }
2877
}
16848 stevensc 2878
 
16825 efrain 2879
.form-range::-webkit-slider-thumb:active {
2880
  background-color: #d1d4ff;
2881
}
16848 stevensc 2882
 
16825 efrain 2883
.form-range::-webkit-slider-runnable-track {
2884
  width: 100%;
2885
  height: 0.5rem;
2886
  color: transparent;
2887
  cursor: pointer;
2888
  background-color: #dee2e6;
2889
  border-color: transparent;
2890
  border-radius: 1rem;
2891
}
16848 stevensc 2892
 
16825 efrain 2893
.form-range::-moz-range-thumb {
2894
  width: 1rem;
2895
  height: 1rem;
2896
  background-color: #6571ff;
2897
  border: 0;
2898
  border-radius: 1rem;
2899
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2900
  appearance: none;
2901
}
16848 stevensc 2902
 
16825 efrain 2903
@media (prefers-reduced-motion: reduce) {
2904
  .form-range::-moz-range-thumb {
2905
    transition: none;
2906
  }
2907
}
16848 stevensc 2908
 
16825 efrain 2909
.form-range::-moz-range-thumb:active {
2910
  background-color: #d1d4ff;
2911
}
16848 stevensc 2912
 
16825 efrain 2913
.form-range::-moz-range-track {
2914
  width: 100%;
2915
  height: 0.5rem;
2916
  color: transparent;
2917
  cursor: pointer;
2918
  background-color: #dee2e6;
2919
  border-color: transparent;
2920
  border-radius: 1rem;
2921
}
16848 stevensc 2922
 
16825 efrain 2923
.form-range:disabled {
2924
  pointer-events: none;
2925
}
16848 stevensc 2926
 
16825 efrain 2927
.form-range:disabled::-webkit-slider-thumb {
2928
  background-color: #aeb7c5;
2929
}
16848 stevensc 2930
 
16825 efrain 2931
.form-range:disabled::-moz-range-thumb {
2932
  background-color: #aeb7c5;
2933
}
2934
 
2935
.form-floating {
2936
  position: relative;
2937
}
16848 stevensc 2938
 
2939
.form-floating>.form-control,
2940
.form-floating>.typeahead.tt-input,
2941
.form-floating>.typeahead.tt-hint,
2942
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2943
.form-floating>.form-control-plaintext,
2944
.form-floating>.form-select {
16825 efrain 2945
  height: calc(3.5rem + 2px);
2946
  line-height: 1.25;
2947
}
16848 stevensc 2948
 
2949
.form-floating>label {
16825 efrain 2950
  position: absolute;
2951
  top: 0;
2952
  left: 0;
2953
  width: 100%;
2954
  height: 100%;
2955
  padding: 1rem 0.8rem;
2956
  overflow: hidden;
2957
  text-align: start;
2958
  text-overflow: ellipsis;
2959
  white-space: nowrap;
2960
  pointer-events: none;
2961
  border: 1px solid transparent;
2962
  transform-origin: 0 0;
2963
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2964
}
16848 stevensc 2965
 
16825 efrain 2966
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2967
  .form-floating>label {
16825 efrain 2968
    transition: none;
2969
  }
2970
}
16848 stevensc 2971
 
2972
.form-floating>.form-control,
2973
.form-floating>.typeahead.tt-input,
2974
.form-floating>.typeahead.tt-hint,
2975
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2976
.form-floating>.form-control-plaintext {
16825 efrain 2977
  padding: 1rem 0.8rem;
2978
}
16848 stevensc 2979
 
2980
.form-floating>.form-control::placeholder,
2981
.form-floating>.typeahead.tt-input::placeholder,
2982
.form-floating>.typeahead.tt-hint::placeholder,
2983
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2984
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2985
  color: transparent;
2986
}
16848 stevensc 2987
 
2988
.form-floating>.form-control:focus,
2989
.form-floating>.typeahead.tt-input:focus,
2990
.form-floating>.typeahead.tt-hint:focus,
2991
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2992
.form-floating>.form-control:not(:placeholder-shown),
2993
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2994
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
2995
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
2996
.form-floating>.form-control-plaintext:focus,
2997
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 2998
  padding-top: 1.625rem;
2999
  padding-bottom: 0.625rem;
3000
}
16848 stevensc 3001
 
3002
.form-floating>.form-control:-webkit-autofill,
3003
.form-floating>.typeahead.tt-input:-webkit-autofill,
3004
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3005
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3006
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3007
  padding-top: 1.625rem;
3008
  padding-bottom: 0.625rem;
3009
}
16848 stevensc 3010
 
3011
.form-floating>.form-select {
16825 efrain 3012
  padding-top: 1.625rem;
3013
  padding-bottom: 0.625rem;
3014
}
16848 stevensc 3015
 
3016
.form-floating>.form-control:focus~label,
3017
.form-floating>.typeahead.tt-input:focus~label,
3018
.form-floating>.typeahead.tt-hint:focus~label,
3019
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3020
.form-floating>.form-control:not(:placeholder-shown)~label,
3021
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3022
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3023
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3024
.form-floating>.form-control-plaintext~label,
3025
.form-floating>.form-select~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:-webkit-autofill~label,
3031
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3032
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3033
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3034
  opacity: 0.65;
3035
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3036
}
16848 stevensc 3037
 
3038
.form-floating>.form-control-plaintext~label {
16825 efrain 3039
  border-width: 1px 0;
3040
}
3041
 
3042
.input-group {
3043
  position: relative;
3044
  display: flex;
3045
  flex-wrap: wrap;
3046
  align-items: stretch;
3047
  width: 100%;
3048
}
16848 stevensc 3049
 
3050
.input-group>.form-control,
3051
.input-group>.typeahead.tt-input,
3052
.input-group>.typeahead.tt-hint,
3053
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3054
.input-group>.form-select,
3055
.input-group>.form-floating {
16825 efrain 3056
  position: relative;
3057
  flex: 1 1 auto;
3058
  width: 1%;
3059
  min-width: 0;
3060
}
16848 stevensc 3061
 
3062
.input-group>.form-control:focus,
3063
.input-group>.typeahead.tt-input:focus,
3064
.input-group>.typeahead.tt-hint:focus,
3065
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3066
.input-group>.form-select:focus,
3067
.input-group>.form-floating:focus-within {
16825 efrain 3068
  z-index: 5;
3069
}
16848 stevensc 3070
 
3071
.input-group .btn,
3072
.input-group .wizard>.actions a,
3073
.wizard>.actions .input-group a,
3074
.input-group div.tox .tox-button,
3075
div.tox .input-group .tox-button,
3076
.input-group .swal2-popup .swal2-actions button,
3077
.swal2-popup .swal2-actions .input-group button,
3078
.input-group .fc .fc-button-primary,
3079
.fc .input-group .fc-button-primary {
16825 efrain 3080
  position: relative;
3081
  z-index: 2;
3082
}
16848 stevensc 3083
 
3084
.input-group .btn:focus,
3085
.input-group .wizard>.actions a:focus,
3086
.wizard>.actions .input-group a:focus,
3087
.input-group div.tox .tox-button:focus,
3088
div.tox .input-group .tox-button:focus,
3089
.input-group .swal2-popup .swal2-actions button:focus,
3090
.swal2-popup .swal2-actions .input-group button:focus,
3091
.input-group .fc .fc-button-primary:focus,
3092
.fc .input-group .fc-button-primary:focus {
16825 efrain 3093
  z-index: 5;
3094
}
3095
 
3096
.input-group-text {
3097
  display: flex;
3098
  align-items: center;
3099
  padding: 0.469rem 0.563rem;
3100
  font-size: 0.875rem;
3101
  font-weight: 400;
3102
  line-height: 1.5;
3103
  color: #000;
3104
  text-align: center;
3105
  white-space: nowrap;
3106
  background-color: #f8f9fa;
3107
  border: 1px solid #e9ecef;
3108
  border-radius: 0.25rem;
3109
}
3110
 
16848 stevensc 3111
.input-group-lg>.form-control,
3112
.input-group-lg>.typeahead.tt-input,
3113
.input-group-lg>.typeahead.tt-hint,
3114
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3115
.input-group-lg>.form-select,
3116
.input-group-lg>.input-group-text,
3117
.input-group-lg>.btn,
3118
.wizard>.actions .input-group-lg>a,
3119
div.tox .input-group-lg>.tox-button,
3120
.swal2-popup .swal2-actions .input-group-lg>button,
3121
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3122
  padding: 0.5rem 0.8rem;
3123
  font-size: 1rem;
3124
  border-radius: 0.25rem;
3125
}
3126
 
16848 stevensc 3127
.input-group-sm>.form-control,
3128
.input-group-sm>.typeahead.tt-input,
3129
.input-group-sm>.typeahead.tt-hint,
3130
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3131
.input-group-sm>.form-select,
3132
.input-group-sm>.input-group-text,
3133
.input-group-sm>.btn,
3134
.wizard>.actions .input-group-sm>a,
3135
div.tox .input-group-sm>.tox-button,
3136
.swal2-popup .swal2-actions .input-group-sm>button,
3137
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3138
  padding: 0.391rem 0.8rem;
3139
  font-size: 0.812rem;
3140
  border-radius: 0.25rem;
3141
}
3142
 
16848 stevensc 3143
.input-group-lg>.form-select,
3144
.input-group-sm>.form-select {
16825 efrain 3145
  padding-right: 3.2rem;
3146
}
3147
 
16848 stevensc 3148
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3149
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3150
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3151
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3152
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3153
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3154
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3155
  border-top-right-radius: 0;
3156
  border-bottom-right-radius: 0;
3157
}
16848 stevensc 3158
 
3159
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3160
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3161
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3162
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3163
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3164
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3165
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3166
  border-top-right-radius: 0;
3167
  border-bottom-right-radius: 0;
3168
}
16848 stevensc 3169
 
3170
.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 3171
  margin-left: -1px;
3172
  border-top-left-radius: 0;
3173
  border-bottom-left-radius: 0;
3174
}
16848 stevensc 3175
 
3176
.input-group>.form-floating:not(:first-child)>.form-control,
3177
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3178
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3179
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3180
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3181
  border-top-left-radius: 0;
3182
  border-bottom-left-radius: 0;
3183
}
3184
 
3185
.valid-feedback {
3186
  display: none;
3187
  width: 100%;
3188
  margin-top: 0.25rem;
3189
  font-size: 0.875em;
3190
  color: #05a34a;
3191
}
3192
 
3193
.valid-tooltip {
3194
  position: absolute;
3195
  top: 100%;
3196
  z-index: 5;
3197
  display: none;
3198
  max-width: 100%;
3199
  padding: 0.25rem 0.5rem;
3200
  margin-top: 0.1rem;
3201
  font-size: 0.812rem;
3202
  color: #fff;
3203
  background-color: rgba(5, 163, 74, 0.9);
3204
  border-radius: 0.25rem;
3205
}
3206
 
16848 stevensc 3207
.was-validated :valid~.valid-feedback,
3208
.was-validated :valid~.valid-tooltip,
3209
.is-valid~.valid-feedback,
3210
.is-valid~.valid-tooltip {
16825 efrain 3211
  display: block;
3212
}
3213
 
16848 stevensc 3214
.was-validated .form-control:valid,
3215
.was-validated .typeahead.tt-input:valid,
3216
.was-validated .typeahead.tt-hint:valid,
3217
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3218
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3219
.form-control.is-valid,
3220
.is-valid.typeahead.tt-input,
3221
.is-valid.typeahead.tt-hint,
3222
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3223
  border-color: #05a34a;
3224
  padding-right: calc(1.5em + 0.938rem);
3225
  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");
3226
  background-repeat: no-repeat;
3227
  background-position: right calc(0.375em + 0.2345rem) center;
3228
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3229
}
16848 stevensc 3230
 
3231
.was-validated .form-control:valid:focus,
3232
.was-validated .typeahead.tt-input:valid:focus,
3233
.was-validated .typeahead.tt-hint:valid:focus,
3234
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3235
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3236
.form-control.is-valid:focus,
3237
.is-valid.typeahead.tt-input:focus,
3238
.is-valid.typeahead.tt-hint:focus,
3239
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3240
  border-color: #05a34a;
3241
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3242
}
3243
 
16848 stevensc 3244
.was-validated textarea.form-control:valid,
3245
.was-validated textarea.typeahead.tt-input:valid,
3246
.was-validated textarea.typeahead.tt-hint:valid,
3247
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3248
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3249
textarea.form-control.is-valid,
3250
textarea.is-valid.typeahead.tt-input,
3251
textarea.is-valid.typeahead.tt-hint,
3252
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3253
  padding-right: calc(1.5em + 0.938rem);
3254
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3255
}
3256
 
16848 stevensc 3257
.was-validated .form-select:valid,
3258
.form-select.is-valid {
16825 efrain 3259
  border-color: #05a34a;
3260
}
16848 stevensc 3261
 
3262
.was-validated .form-select:valid:not([multiple]):not([size]),
3263
.was-validated .form-select:valid:not([multiple])[size="1"],
3264
.form-select.is-valid:not([multiple]):not([size]),
3265
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3266
  padding-right: 4.4rem;
3267
  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");
3268
  background-position: right 0.8rem center, center right 2.4rem;
3269
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3270
}
16848 stevensc 3271
 
3272
.was-validated .form-select:valid:focus,
3273
.form-select.is-valid:focus {
16825 efrain 3274
  border-color: #05a34a;
3275
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3276
}
3277
 
16848 stevensc 3278
.was-validated .form-control-color:valid,
3279
.form-control-color.is-valid {
16825 efrain 3280
  width: calc(3rem + calc(1.5em + 0.938rem));
3281
}
3282
 
16848 stevensc 3283
.was-validated .form-check-input:valid,
3284
.form-check-input.is-valid {
16825 efrain 3285
  border-color: #05a34a;
3286
}
16848 stevensc 3287
 
3288
.was-validated .form-check-input:valid:checked,
3289
.form-check-input.is-valid:checked {
16825 efrain 3290
  background-color: #05a34a;
3291
}
16848 stevensc 3292
 
3293
.was-validated .form-check-input:valid:focus,
3294
.form-check-input.is-valid:focus {
16825 efrain 3295
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3296
}
16848 stevensc 3297
 
3298
.was-validated .form-check-input:valid~.form-check-label,
3299
.form-check-input.is-valid~.form-check-label {
16825 efrain 3300
  color: #05a34a;
3301
}
3302
 
16848 stevensc 3303
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3304
  margin-left: 0.5em;
3305
}
3306
 
16848 stevensc 3307
.was-validated .input-group>.form-control:not(:focus):valid,
3308
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3309
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3310
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3311
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3312
.input-group>.form-control:not(:focus).is-valid,
3313
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3314
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3315
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3316
.was-validated .input-group>.form-select:not(:focus):valid,
3317
.input-group>.form-select:not(:focus).is-valid,
3318
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3319
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3320
  z-index: 3;
3321
}
3322
 
3323
.invalid-feedback {
3324
  display: none;
3325
  width: 100%;
3326
  margin-top: 0.25rem;
3327
  font-size: 0.875em;
3328
  color: #ff3366;
3329
}
3330
 
3331
.invalid-tooltip {
3332
  position: absolute;
3333
  top: 100%;
3334
  z-index: 5;
3335
  display: none;
3336
  max-width: 100%;
3337
  padding: 0.25rem 0.5rem;
3338
  margin-top: 0.1rem;
3339
  font-size: 0.812rem;
3340
  color: #fff;
3341
  background-color: rgba(255, 51, 102, 0.9);
3342
  border-radius: 0.25rem;
3343
}
3344
 
16848 stevensc 3345
.was-validated :invalid~.invalid-feedback,
3346
.was-validated :invalid~.invalid-tooltip,
3347
.is-invalid~.invalid-feedback,
3348
.is-invalid~.invalid-tooltip {
16825 efrain 3349
  display: block;
3350
}
3351
 
16848 stevensc 3352
.was-validated .form-control:invalid,
3353
.was-validated .typeahead.tt-input:invalid,
3354
.was-validated .typeahead.tt-hint:invalid,
3355
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3356
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3357
.form-control.is-invalid,
3358
.is-invalid.typeahead.tt-input,
3359
.is-invalid.typeahead.tt-hint,
3360
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3361
  border-color: #ff3366;
3362
  padding-right: calc(1.5em + 0.938rem);
3363
  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");
3364
  background-repeat: no-repeat;
3365
  background-position: right calc(0.375em + 0.2345rem) center;
3366
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3367
}
16848 stevensc 3368
 
3369
.was-validated .form-control:invalid:focus,
3370
.was-validated .typeahead.tt-input:invalid:focus,
3371
.was-validated .typeahead.tt-hint:invalid:focus,
3372
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3373
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3374
.form-control.is-invalid:focus,
3375
.is-invalid.typeahead.tt-input:focus,
3376
.is-invalid.typeahead.tt-hint:focus,
3377
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3378
  border-color: #ff3366;
3379
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3380
}
3381
 
16848 stevensc 3382
.was-validated textarea.form-control:invalid,
3383
.was-validated textarea.typeahead.tt-input:invalid,
3384
.was-validated textarea.typeahead.tt-hint:invalid,
3385
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3386
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3387
textarea.form-control.is-invalid,
3388
textarea.is-invalid.typeahead.tt-input,
3389
textarea.is-invalid.typeahead.tt-hint,
3390
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3391
  padding-right: calc(1.5em + 0.938rem);
3392
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3393
}
3394
 
16848 stevensc 3395
.was-validated .form-select:invalid,
3396
.form-select.is-invalid {
16825 efrain 3397
  border-color: #ff3366;
3398
}
16848 stevensc 3399
 
3400
.was-validated .form-select:invalid:not([multiple]):not([size]),
3401
.was-validated .form-select:invalid:not([multiple])[size="1"],
3402
.form-select.is-invalid:not([multiple]):not([size]),
3403
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3404
  padding-right: 4.4rem;
3405
  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");
3406
  background-position: right 0.8rem center, center right 2.4rem;
3407
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3408
}
16848 stevensc 3409
 
3410
.was-validated .form-select:invalid:focus,
3411
.form-select.is-invalid:focus {
16825 efrain 3412
  border-color: #ff3366;
3413
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3414
}
3415
 
16848 stevensc 3416
.was-validated .form-control-color:invalid,
3417
.form-control-color.is-invalid {
16825 efrain 3418
  width: calc(3rem + calc(1.5em + 0.938rem));
3419
}
3420
 
16848 stevensc 3421
.was-validated .form-check-input:invalid,
3422
.form-check-input.is-invalid {
16825 efrain 3423
  border-color: #ff3366;
3424
}
16848 stevensc 3425
 
3426
.was-validated .form-check-input:invalid:checked,
3427
.form-check-input.is-invalid:checked {
16825 efrain 3428
  background-color: #ff3366;
3429
}
16848 stevensc 3430
 
3431
.was-validated .form-check-input:invalid:focus,
3432
.form-check-input.is-invalid:focus {
16825 efrain 3433
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3434
}
16848 stevensc 3435
 
3436
.was-validated .form-check-input:invalid~.form-check-label,
3437
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3438
  color: #ff3366;
3439
}
3440
 
16848 stevensc 3441
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3442
  margin-left: 0.5em;
3443
}
3444
 
16848 stevensc 3445
.was-validated .input-group>.form-control:not(:focus):invalid,
3446
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3447
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3448
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3449
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3450
.input-group>.form-control:not(:focus).is-invalid,
3451
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3452
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3453
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3454
.was-validated .input-group>.form-select:not(:focus):invalid,
3455
.input-group>.form-select:not(:focus).is-invalid,
3456
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3457
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3458
  z-index: 4;
3459
}
3460
 
16848 stevensc 3461
.btn,
3462
.wizard>.actions a,
3463
.wizard>.actions a:active,
3464
.wizard>.actions a:hover,
3465
div.tox .tox-button,
3466
.swal2-popup .swal2-actions button,
3467
.fc .fc-button-primary {
16825 efrain 3468
  --bs-btn-padding-x: 0.8rem;
3469
  --bs-btn-padding-y: 0.469rem;
3470
  --bs-btn-font-family: ;
3471
  --bs-btn-font-size: 0.875rem;
3472
  --bs-btn-font-weight: 400;
3473
  --bs-btn-line-height: 1.5;
3474
  --bs-btn-color: #000;
3475
  --bs-btn-bg: transparent;
3476
  --bs-btn-border-width: 1px;
3477
  --bs-btn-border-color: transparent;
3478
  --bs-btn-border-radius: 0.25rem;
3479
  --bs-btn-hover-border-color: transparent;
3480
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3481
  --bs-btn-disabled-opacity: 0.65;
3482
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3483
  display: inline-block;
3484
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3485
  font-family: var(--bs-btn-font-family);
3486
  font-size: var(--bs-btn-font-size);
3487
  font-weight: var(--bs-btn-font-weight);
3488
  line-height: var(--bs-btn-line-height);
3489
  color: var(--bs-btn-color);
3490
  text-align: center;
3491
  vertical-align: middle;
3492
  cursor: pointer;
3493
  user-select: none;
3494
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3495
  border-radius: var(--bs-btn-border-radius);
3496
  background-color: var(--bs-btn-bg);
3497
  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;
3498
}
16848 stevensc 3499
 
16825 efrain 3500
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3501
 
3502
  .btn,
3503
  .wizard>.actions a,
3504
  .wizard>.actions a:active,
3505
  .wizard>.actions a:hover,
3506
  div.tox .tox-button,
3507
  .swal2-popup .swal2-actions button,
3508
  .fc .fc-button-primary {
16825 efrain 3509
    transition: none;
3510
  }
3511
}
16848 stevensc 3512
 
3513
.btn:hover,
3514
.wizard>.actions a:hover,
3515
div.tox .tox-button:hover,
3516
.swal2-popup .swal2-actions button:hover,
3517
.fc .fc-button-primary:hover {
16825 efrain 3518
  color: var(--bs-btn-hover-color);
3519
  background-color: var(--bs-btn-hover-bg);
3520
  border-color: var(--bs-btn-hover-border-color);
3521
}
16848 stevensc 3522
 
3523
.btn-check+.btn:hover,
3524
.wizard>.actions .btn-check+a:hover,
3525
div.tox .btn-check+.tox-button:hover,
3526
.swal2-popup .swal2-actions .btn-check+button:hover,
3527
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3528
  color: var(--bs-btn-color);
3529
  background-color: var(--bs-btn-bg);
3530
  border-color: var(--bs-btn-border-color);
3531
}
16848 stevensc 3532
 
3533
.btn:focus-visible,
3534
.wizard>.actions a:focus-visible,
3535
div.tox .tox-button:focus-visible,
3536
.swal2-popup .swal2-actions button:focus-visible,
3537
.fc .fc-button-primary:focus-visible {
16825 efrain 3538
  color: var(--bs-btn-hover-color);
3539
  background-color: var(--bs-btn-hover-bg);
3540
  border-color: var(--bs-btn-hover-border-color);
3541
  outline: 0;
3542
  box-shadow: var(--bs-btn-focus-box-shadow);
3543
}
16848 stevensc 3544
 
3545
.btn-check:focus-visible+.btn,
3546
.wizard>.actions .btn-check:focus-visible+a,
3547
div.tox .btn-check:focus-visible+.tox-button,
3548
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3549
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3550
  border-color: var(--bs-btn-hover-border-color);
3551
  outline: 0;
3552
  box-shadow: var(--bs-btn-focus-box-shadow);
3553
}
16848 stevensc 3554
 
3555
.btn-check:checked+.btn,
3556
.wizard>.actions .btn-check:checked+a,
3557
div.tox .btn-check:checked+.tox-button,
3558
.swal2-popup .swal2-actions .btn-check:checked+button,
3559
.fc .btn-check:checked+.fc-button-primary,
3560
:not(.btn-check)+.btn:active,
3561
.wizard>.actions :not(.btn-check)+a:active,
3562
div.tox :not(.btn-check)+.tox-button:active,
3563
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3564
.fc :not(.btn-check)+.fc-button-primary:active,
3565
.btn:first-child:active,
3566
.wizard>.actions a:first-child:active,
3567
div.tox .tox-button:first-child:active,
3568
.swal2-popup .swal2-actions button:first-child:active,
3569
.fc .fc-button-primary:first-child:active,
3570
.btn.active,
3571
.wizard>.actions a.active,
3572
div.tox .active.tox-button,
3573
.swal2-popup .swal2-actions button.active,
3574
.fc .active.fc-button-primary,
3575
.btn.show,
3576
.wizard>.actions a.show,
3577
div.tox .show.tox-button,
3578
.swal2-popup .swal2-actions button.show,
3579
.fc .show.fc-button-primary {
16825 efrain 3580
  color: var(--bs-btn-active-color);
3581
  background-color: var(--bs-btn-active-bg);
3582
  border-color: var(--bs-btn-active-border-color);
3583
}
16848 stevensc 3584
 
3585
.btn-check:checked+.btn:focus-visible,
3586
.wizard>.actions .btn-check:checked+a:focus-visible,
3587
div.tox .btn-check:checked+.tox-button:focus-visible,
3588
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3589
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3590
:not(.btn-check)+.btn:active:focus-visible,
3591
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3592
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3593
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3594
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3595
.btn:first-child:active:focus-visible,
3596
.wizard>.actions a:first-child:active:focus-visible,
3597
div.tox .tox-button:first-child:active:focus-visible,
3598
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3599
.fc .fc-button-primary:first-child:active:focus-visible,
3600
.btn.active:focus-visible,
3601
.wizard>.actions a.active:focus-visible,
3602
div.tox .active.tox-button:focus-visible,
3603
.swal2-popup .swal2-actions button.active:focus-visible,
3604
.fc .active.fc-button-primary:focus-visible,
3605
.btn.show:focus-visible,
3606
.wizard>.actions a.show:focus-visible,
3607
div.tox .show.tox-button:focus-visible,
3608
.swal2-popup .swal2-actions button.show:focus-visible,
3609
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3610
  box-shadow: var(--bs-btn-focus-box-shadow);
3611
}
16848 stevensc 3612
 
3613
.btn:disabled,
3614
.wizard>.actions a:disabled,
3615
div.tox .tox-button:disabled,
3616
.swal2-popup .swal2-actions button:disabled,
3617
.fc .fc-button-primary:disabled,
3618
.btn.disabled,
3619
.wizard>.actions a.disabled,
3620
div.tox .disabled.tox-button,
3621
.swal2-popup .swal2-actions button.disabled,
3622
.fc .disabled.fc-button-primary,
3623
fieldset:disabled .btn,
3624
fieldset:disabled .wizard>.actions a,
3625
.wizard>.actions fieldset:disabled a,
3626
fieldset:disabled div.tox .tox-button,
3627
div.tox fieldset:disabled .tox-button,
3628
fieldset:disabled .swal2-popup .swal2-actions button,
3629
.swal2-popup .swal2-actions fieldset:disabled button,
3630
fieldset:disabled .fc .fc-button-primary,
3631
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3632
  color: var(--bs-btn-disabled-color);
3633
  pointer-events: none;
3634
  background-color: var(--bs-btn-disabled-bg);
3635
  border-color: var(--bs-btn-disabled-border-color);
3636
  opacity: var(--bs-btn-disabled-opacity);
3637
}
3638
 
16848 stevensc 3639
.btn-primary,
3640
.wizard>.actions a,
3641
.wizard>.actions a:active,
3642
.wizard>.actions a:hover,
3643
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3644
.swal2-popup .swal2-actions button.swal2-confirm,
3645
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3646
.fc .fc-button-primary:not(:disabled):active {
3647
  --bs-btn-color: #fff;
3648
  --bs-btn-bg: #6571ff;
3649
  --bs-btn-border-color: #6571ff;
3650
  --bs-btn-hover-color: #fff;
3651
  --bs-btn-hover-bg: #5660d9;
3652
  --bs-btn-hover-border-color: #515acc;
3653
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3654
  --bs-btn-active-color: #fff;
3655
  --bs-btn-active-bg: #515acc;
3656
  --bs-btn-active-border-color: #4c55bf;
3657
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3658
  --bs-btn-disabled-color: #fff;
3659
  --bs-btn-disabled-bg: #6571ff;
3660
  --bs-btn-disabled-border-color: #6571ff;
3661
}
3662
 
16848 stevensc 3663
.btn-secondary,
3664
div.tox .tox-button--secondary {
16825 efrain 3665
  --bs-btn-color: #fff;
3666
  --bs-btn-bg: #7987a1;
3667
  --bs-btn-border-color: #7987a1;
3668
  --bs-btn-hover-color: #fff;
3669
  --bs-btn-hover-bg: #677389;
3670
  --bs-btn-hover-border-color: #616c81;
3671
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3672
  --bs-btn-active-color: #fff;
3673
  --bs-btn-active-bg: #616c81;
3674
  --bs-btn-active-border-color: #5b6579;
3675
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3676
  --bs-btn-disabled-color: #fff;
3677
  --bs-btn-disabled-bg: #7987a1;
3678
  --bs-btn-disabled-border-color: #7987a1;
3679
}
3680
 
3681
.btn-success {
3682
  --bs-btn-color: #fff;
3683
  --bs-btn-bg: #05a34a;
3684
  --bs-btn-border-color: #05a34a;
3685
  --bs-btn-hover-color: #fff;
3686
  --bs-btn-hover-bg: #048b3f;
3687
  --bs-btn-hover-border-color: #04823b;
3688
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3689
  --bs-btn-active-color: #fff;
3690
  --bs-btn-active-bg: #04823b;
3691
  --bs-btn-active-border-color: #047a38;
3692
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3693
  --bs-btn-disabled-color: #fff;
3694
  --bs-btn-disabled-bg: #05a34a;
3695
  --bs-btn-disabled-border-color: #05a34a;
3696
}
3697
 
3698
.btn-info {
3699
  --bs-btn-color: #000;
3700
  --bs-btn-bg: #66d1d1;
3701
  --bs-btn-border-color: #66d1d1;
3702
  --bs-btn-hover-color: #000;
3703
  --bs-btn-hover-bg: #7dd8d8;
3704
  --bs-btn-hover-border-color: #75d6d6;
3705
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3706
  --bs-btn-active-color: #000;
3707
  --bs-btn-active-bg: #85dada;
3708
  --bs-btn-active-border-color: #75d6d6;
3709
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3710
  --bs-btn-disabled-color: #000;
3711
  --bs-btn-disabled-bg: #66d1d1;
3712
  --bs-btn-disabled-border-color: #66d1d1;
3713
}
3714
 
3715
.btn-warning {
3716
  --bs-btn-color: #000;
3717
  --bs-btn-bg: #fbbc06;
3718
  --bs-btn-border-color: #fbbc06;
3719
  --bs-btn-hover-color: #000;
3720
  --bs-btn-hover-bg: #fcc62b;
3721
  --bs-btn-hover-border-color: #fbc31f;
3722
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3723
  --bs-btn-active-color: #000;
3724
  --bs-btn-active-bg: #fcc938;
3725
  --bs-btn-active-border-color: #fbc31f;
3726
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3727
  --bs-btn-disabled-color: #000;
3728
  --bs-btn-disabled-bg: #fbbc06;
3729
  --bs-btn-disabled-border-color: #fbbc06;
3730
}
3731
 
16848 stevensc 3732
.btn-danger,
3733
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3734
  --bs-btn-color: #fff;
3735
  --bs-btn-bg: #ff3366;
3736
  --bs-btn-border-color: #ff3366;
3737
  --bs-btn-hover-color: #fff;
3738
  --bs-btn-hover-bg: #d92b57;
3739
  --bs-btn-hover-border-color: #cc2952;
3740
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3741
  --bs-btn-active-color: #fff;
3742
  --bs-btn-active-bg: #cc2952;
3743
  --bs-btn-active-border-color: #bf264d;
3744
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3745
  --bs-btn-disabled-color: #fff;
3746
  --bs-btn-disabled-bg: #ff3366;
3747
  --bs-btn-disabled-border-color: #ff3366;
3748
}
3749
 
3750
.btn-light {
3751
  --bs-btn-color: #000;
3752
  --bs-btn-bg: #e9ecef;
3753
  --bs-btn-border-color: #e9ecef;
3754
  --bs-btn-hover-color: #000;
3755
  --bs-btn-hover-bg: #c6c9cb;
3756
  --bs-btn-hover-border-color: #babdbf;
3757
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3758
  --bs-btn-active-color: #000;
3759
  --bs-btn-active-bg: #babdbf;
3760
  --bs-btn-active-border-color: #afb1b3;
3761
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3762
  --bs-btn-disabled-color: #000;
3763
  --bs-btn-disabled-bg: #e9ecef;
3764
  --bs-btn-disabled-border-color: #e9ecef;
3765
}
3766
 
3767
.btn-dark {
3768
  --bs-btn-color: #fff;
3769
  --bs-btn-bg: #060c17;
3770
  --bs-btn-border-color: #060c17;
3771
  --bs-btn-hover-color: #fff;
3772
  --bs-btn-hover-bg: #2b303a;
3773
  --bs-btn-hover-border-color: #1f242e;
3774
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3775
  --bs-btn-active-color: #fff;
3776
  --bs-btn-active-bg: #383d45;
3777
  --bs-btn-active-border-color: #1f242e;
3778
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3779
  --bs-btn-disabled-color: #fff;
3780
  --bs-btn-disabled-bg: #060c17;
3781
  --bs-btn-disabled-border-color: #060c17;
3782
}
3783
 
16848 stevensc 3784
.btn-outline-primary,
3785
.fc .fc-button-primary {
16825 efrain 3786
  --bs-btn-color: #6571ff;
3787
  --bs-btn-border-color: #6571ff;
3788
  --bs-btn-hover-color: #fff;
3789
  --bs-btn-hover-bg: #6571ff;
3790
  --bs-btn-hover-border-color: #6571ff;
3791
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3792
  --bs-btn-active-color: #fff;
3793
  --bs-btn-active-bg: #6571ff;
3794
  --bs-btn-active-border-color: #6571ff;
3795
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3796
  --bs-btn-disabled-color: #6571ff;
3797
  --bs-btn-disabled-bg: transparent;
3798
  --bs-btn-disabled-border-color: #6571ff;
3799
  --bs-gradient: none;
3800
}
3801
 
3802
.btn-outline-secondary {
3803
  --bs-btn-color: #7987a1;
3804
  --bs-btn-border-color: #7987a1;
3805
  --bs-btn-hover-color: #fff;
3806
  --bs-btn-hover-bg: #7987a1;
3807
  --bs-btn-hover-border-color: #7987a1;
3808
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3809
  --bs-btn-active-color: #fff;
3810
  --bs-btn-active-bg: #7987a1;
3811
  --bs-btn-active-border-color: #7987a1;
3812
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3813
  --bs-btn-disabled-color: #7987a1;
3814
  --bs-btn-disabled-bg: transparent;
3815
  --bs-btn-disabled-border-color: #7987a1;
3816
  --bs-gradient: none;
3817
}
3818
 
3819
.btn-outline-success {
3820
  --bs-btn-color: #05a34a;
3821
  --bs-btn-border-color: #05a34a;
3822
  --bs-btn-hover-color: #fff;
3823
  --bs-btn-hover-bg: #05a34a;
3824
  --bs-btn-hover-border-color: #05a34a;
3825
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3826
  --bs-btn-active-color: #fff;
3827
  --bs-btn-active-bg: #05a34a;
3828
  --bs-btn-active-border-color: #05a34a;
3829
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3830
  --bs-btn-disabled-color: #05a34a;
3831
  --bs-btn-disabled-bg: transparent;
3832
  --bs-btn-disabled-border-color: #05a34a;
3833
  --bs-gradient: none;
3834
}
3835
 
3836
.btn-outline-info {
3837
  --bs-btn-color: #66d1d1;
3838
  --bs-btn-border-color: #66d1d1;
3839
  --bs-btn-hover-color: #000;
3840
  --bs-btn-hover-bg: #66d1d1;
3841
  --bs-btn-hover-border-color: #66d1d1;
3842
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3843
  --bs-btn-active-color: #000;
3844
  --bs-btn-active-bg: #66d1d1;
3845
  --bs-btn-active-border-color: #66d1d1;
3846
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3847
  --bs-btn-disabled-color: #66d1d1;
3848
  --bs-btn-disabled-bg: transparent;
3849
  --bs-btn-disabled-border-color: #66d1d1;
3850
  --bs-gradient: none;
3851
}
3852
 
3853
.btn-outline-warning {
3854
  --bs-btn-color: #fbbc06;
3855
  --bs-btn-border-color: #fbbc06;
3856
  --bs-btn-hover-color: #000;
3857
  --bs-btn-hover-bg: #fbbc06;
3858
  --bs-btn-hover-border-color: #fbbc06;
3859
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3860
  --bs-btn-active-color: #000;
3861
  --bs-btn-active-bg: #fbbc06;
3862
  --bs-btn-active-border-color: #fbbc06;
3863
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3864
  --bs-btn-disabled-color: #fbbc06;
3865
  --bs-btn-disabled-bg: transparent;
3866
  --bs-btn-disabled-border-color: #fbbc06;
3867
  --bs-gradient: none;
3868
}
3869
 
3870
.btn-outline-danger {
3871
  --bs-btn-color: #ff3366;
3872
  --bs-btn-border-color: #ff3366;
3873
  --bs-btn-hover-color: #fff;
3874
  --bs-btn-hover-bg: #ff3366;
3875
  --bs-btn-hover-border-color: #ff3366;
3876
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3877
  --bs-btn-active-color: #fff;
3878
  --bs-btn-active-bg: #ff3366;
3879
  --bs-btn-active-border-color: #ff3366;
3880
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3881
  --bs-btn-disabled-color: #ff3366;
3882
  --bs-btn-disabled-bg: transparent;
3883
  --bs-btn-disabled-border-color: #ff3366;
3884
  --bs-gradient: none;
3885
}
3886
 
3887
.btn-outline-light {
3888
  --bs-btn-color: #e9ecef;
3889
  --bs-btn-border-color: #e9ecef;
3890
  --bs-btn-hover-color: #000;
3891
  --bs-btn-hover-bg: #e9ecef;
3892
  --bs-btn-hover-border-color: #e9ecef;
3893
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3894
  --bs-btn-active-color: #000;
3895
  --bs-btn-active-bg: #e9ecef;
3896
  --bs-btn-active-border-color: #e9ecef;
3897
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3898
  --bs-btn-disabled-color: #e9ecef;
3899
  --bs-btn-disabled-bg: transparent;
3900
  --bs-btn-disabled-border-color: #e9ecef;
3901
  --bs-gradient: none;
3902
}
3903
 
3904
.btn-outline-dark {
3905
  --bs-btn-color: #060c17;
3906
  --bs-btn-border-color: #060c17;
3907
  --bs-btn-hover-color: #fff;
3908
  --bs-btn-hover-bg: #060c17;
3909
  --bs-btn-hover-border-color: #060c17;
3910
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3911
  --bs-btn-active-color: #fff;
3912
  --bs-btn-active-bg: #060c17;
3913
  --bs-btn-active-border-color: #060c17;
3914
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3915
  --bs-btn-disabled-color: #060c17;
3916
  --bs-btn-disabled-bg: transparent;
3917
  --bs-btn-disabled-border-color: #060c17;
3918
  --bs-gradient: none;
3919
}
3920
 
3921
.btn-link {
3922
  --bs-btn-font-weight: 400;
3923
  --bs-btn-color: var(--bs-link-color);
3924
  --bs-btn-bg: transparent;
3925
  --bs-btn-border-color: transparent;
3926
  --bs-btn-hover-color: var(--bs-link-hover-color);
3927
  --bs-btn-hover-border-color: transparent;
3928
  --bs-btn-active-color: var(--bs-link-hover-color);
3929
  --bs-btn-active-border-color: transparent;
3930
  --bs-btn-disabled-color: #7987a1;
3931
  --bs-btn-disabled-border-color: transparent;
3932
  --bs-btn-box-shadow: none;
3933
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3934
  text-decoration: none;
3935
}
16848 stevensc 3936
 
16825 efrain 3937
.btn-link:focus-visible {
3938
  color: var(--bs-btn-color);
3939
}
16848 stevensc 3940
 
16825 efrain 3941
.btn-link:hover {
3942
  color: var(--bs-btn-hover-color);
3943
}
3944
 
16848 stevensc 3945
.btn-lg,
3946
.btn-group-lg>.btn,
3947
.wizard>.actions .btn-group-lg>a,
3948
div.tox .btn-group-lg>.tox-button,
3949
.swal2-popup .swal2-actions .btn-group-lg>button,
3950
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3951
  --bs-btn-padding-y: 0.5rem;
3952
  --bs-btn-padding-x: 0.8rem;
3953
  --bs-btn-font-size: 1rem;
3954
  --bs-btn-border-radius: 0.25rem;
3955
}
3956
 
16848 stevensc 3957
.btn-sm,
3958
.fc .fc-button-primary,
3959
.btn-group-sm>.btn,
3960
.wizard>.actions .btn-group-sm>a,
3961
div.tox .btn-group-sm>.tox-button,
3962
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3963
  --bs-btn-padding-y: 0.391rem;
3964
  --bs-btn-padding-x: 0.8rem;
3965
  --bs-btn-font-size: 0.812rem;
3966
  --bs-btn-border-radius: 0.25rem;
3967
}
3968
 
3969
.fade {
3970
  transition: opacity 0.15s linear;
3971
}
16848 stevensc 3972
 
16825 efrain 3973
@media (prefers-reduced-motion: reduce) {
3974
  .fade {
3975
    transition: none;
3976
  }
3977
}
16848 stevensc 3978
 
16825 efrain 3979
.fade:not(.show) {
3980
  opacity: 0;
3981
}
3982
 
3983
.collapse:not(.show) {
3984
  display: none;
3985
}
3986
 
3987
.collapsing {
3988
  height: 0;
3989
  overflow: hidden;
3990
  transition: height 0.35s ease;
3991
}
16848 stevensc 3992
 
16825 efrain 3993
@media (prefers-reduced-motion: reduce) {
3994
  .collapsing {
3995
    transition: none;
3996
  }
3997
}
16848 stevensc 3998
 
16825 efrain 3999
.collapsing.collapse-horizontal {
4000
  width: 0;
4001
  height: auto;
4002
  transition: width 0.35s ease;
4003
}
16848 stevensc 4004
 
16825 efrain 4005
@media (prefers-reduced-motion: reduce) {
4006
  .collapsing.collapse-horizontal {
4007
    transition: none;
4008
  }
4009
}
4010
 
4011
.dropup,
4012
.dropend,
4013
.dropdown,
4014
.dropstart,
4015
.dropup-center,
4016
.dropdown-center {
4017
  position: relative;
4018
}
4019
 
4020
.dropdown-toggle {
4021
  white-space: nowrap;
4022
}
16848 stevensc 4023
 
16825 efrain 4024
.dropdown-toggle::after {
4025
  display: inline-block;
4026
  margin-left: 0.255em;
4027
  vertical-align: 0.255em;
4028
  content: "";
4029
  border-top: 0.3em solid;
4030
  border-right: 0.3em solid transparent;
4031
  border-bottom: 0;
4032
  border-left: 0.3em solid transparent;
4033
}
16848 stevensc 4034
 
16825 efrain 4035
.dropdown-toggle:empty::after {
4036
  margin-left: 0;
4037
}
4038
 
16848 stevensc 4039
.dropdown-menu,
4040
.tt-menu {
16825 efrain 4041
  --bs-dropdown-zindex: 1000;
4042
  --bs-dropdown-min-width: 10rem;
4043
  --bs-dropdown-padding-x: 0;
4044
  --bs-dropdown-padding-y: 0.5rem;
4045
  --bs-dropdown-spacer: 0.125rem;
4046
  --bs-dropdown-font-size: 0.875rem;
4047
  --bs-dropdown-color: #000;
4048
  --bs-dropdown-bg: #fff;
4049
  --bs-dropdown-border-color: #f2f4f9;
4050
  --bs-dropdown-border-radius: 0.25rem;
4051
  --bs-dropdown-border-width: 1px;
4052
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4053
  --bs-dropdown-divider-bg: #f2f4f9;
4054
  --bs-dropdown-divider-margin-y: 0.5rem;
4055
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4056
  --bs-dropdown-link-color: #060c17;
4057
  --bs-dropdown-link-hover-color: #050b15;
4058
  --bs-dropdown-link-hover-bg: #e9ecef;
4059
  --bs-dropdown-link-active-color: #fff;
4060
  --bs-dropdown-link-active-bg: #6571ff;
4061
  --bs-dropdown-link-disabled-color: #aeb7c5;
4062
  --bs-dropdown-item-padding-x: 1rem;
4063
  --bs-dropdown-item-padding-y: 0.25rem;
4064
  --bs-dropdown-header-color: #7987a1;
4065
  --bs-dropdown-header-padding-x: 1rem;
4066
  --bs-dropdown-header-padding-y: 0.5rem;
4067
  position: absolute;
4068
  z-index: var(--bs-dropdown-zindex);
4069
  display: none;
4070
  min-width: var(--bs-dropdown-min-width);
4071
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4072
  margin: 0;
4073
  font-size: var(--bs-dropdown-font-size);
4074
  color: var(--bs-dropdown-color);
4075
  text-align: left;
4076
  list-style: none;
4077
  background-color: var(--bs-dropdown-bg);
4078
  background-clip: padding-box;
4079
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4080
  border-radius: var(--bs-dropdown-border-radius);
4081
}
16848 stevensc 4082
 
4083
.dropdown-menu[data-bs-popper],
4084
[data-bs-popper].tt-menu {
16825 efrain 4085
  top: 100%;
4086
  left: 0;
4087
  margin-top: var(--bs-dropdown-spacer);
4088
}
4089
 
4090
.dropdown-menu-start {
4091
  --bs-position: start;
4092
}
16848 stevensc 4093
 
16825 efrain 4094
.dropdown-menu-start[data-bs-popper] {
4095
  right: auto;
4096
  left: 0;
4097
}
4098
 
4099
.dropdown-menu-end {
4100
  --bs-position: end;
4101
}
16848 stevensc 4102
 
16825 efrain 4103
.dropdown-menu-end[data-bs-popper] {
4104
  right: 0;
4105
  left: auto;
4106
}
4107
 
4108
@media (min-width: 576px) {
4109
  .dropdown-menu-sm-start {
4110
    --bs-position: start;
4111
  }
16848 stevensc 4112
 
16825 efrain 4113
  .dropdown-menu-sm-start[data-bs-popper] {
4114
    right: auto;
4115
    left: 0;
4116
  }
16848 stevensc 4117
 
16825 efrain 4118
  .dropdown-menu-sm-end {
4119
    --bs-position: end;
4120
  }
16848 stevensc 4121
 
16825 efrain 4122
  .dropdown-menu-sm-end[data-bs-popper] {
4123
    right: 0;
4124
    left: auto;
4125
  }
4126
}
16848 stevensc 4127
 
16825 efrain 4128
@media (min-width: 768px) {
4129
  .dropdown-menu-md-start {
4130
    --bs-position: start;
4131
  }
16848 stevensc 4132
 
16825 efrain 4133
  .dropdown-menu-md-start[data-bs-popper] {
4134
    right: auto;
4135
    left: 0;
4136
  }
16848 stevensc 4137
 
16825 efrain 4138
  .dropdown-menu-md-end {
4139
    --bs-position: end;
4140
  }
16848 stevensc 4141
 
16825 efrain 4142
  .dropdown-menu-md-end[data-bs-popper] {
4143
    right: 0;
4144
    left: auto;
4145
  }
4146
}
16848 stevensc 4147
 
16825 efrain 4148
@media (min-width: 992px) {
4149
  .dropdown-menu-lg-start {
4150
    --bs-position: start;
4151
  }
16848 stevensc 4152
 
16825 efrain 4153
  .dropdown-menu-lg-start[data-bs-popper] {
4154
    right: auto;
4155
    left: 0;
4156
  }
16848 stevensc 4157
 
16825 efrain 4158
  .dropdown-menu-lg-end {
4159
    --bs-position: end;
4160
  }
16848 stevensc 4161
 
16825 efrain 4162
  .dropdown-menu-lg-end[data-bs-popper] {
4163
    right: 0;
4164
    left: auto;
4165
  }
4166
}
16848 stevensc 4167
 
16825 efrain 4168
@media (min-width: 1200px) {
4169
  .dropdown-menu-xl-start {
4170
    --bs-position: start;
4171
  }
16848 stevensc 4172
 
16825 efrain 4173
  .dropdown-menu-xl-start[data-bs-popper] {
4174
    right: auto;
4175
    left: 0;
4176
  }
16848 stevensc 4177
 
16825 efrain 4178
  .dropdown-menu-xl-end {
4179
    --bs-position: end;
4180
  }
16848 stevensc 4181
 
16825 efrain 4182
  .dropdown-menu-xl-end[data-bs-popper] {
4183
    right: 0;
4184
    left: auto;
4185
  }
4186
}
16848 stevensc 4187
 
16825 efrain 4188
@media (min-width: 1400px) {
4189
  .dropdown-menu-xxl-start {
4190
    --bs-position: start;
4191
  }
16848 stevensc 4192
 
16825 efrain 4193
  .dropdown-menu-xxl-start[data-bs-popper] {
4194
    right: auto;
4195
    left: 0;
4196
  }
16848 stevensc 4197
 
16825 efrain 4198
  .dropdown-menu-xxl-end {
4199
    --bs-position: end;
4200
  }
16848 stevensc 4201
 
16825 efrain 4202
  .dropdown-menu-xxl-end[data-bs-popper] {
4203
    right: 0;
4204
    left: auto;
4205
  }
4206
}
16848 stevensc 4207
 
4208
.dropup .dropdown-menu[data-bs-popper],
4209
.dropup [data-bs-popper].tt-menu {
16825 efrain 4210
  top: auto;
4211
  bottom: 100%;
4212
  margin-top: 0;
4213
  margin-bottom: var(--bs-dropdown-spacer);
4214
}
16848 stevensc 4215
 
16825 efrain 4216
.dropup .dropdown-toggle::after {
4217
  display: inline-block;
4218
  margin-left: 0.255em;
4219
  vertical-align: 0.255em;
4220
  content: "";
4221
  border-top: 0;
4222
  border-right: 0.3em solid transparent;
4223
  border-bottom: 0.3em solid;
4224
  border-left: 0.3em solid transparent;
4225
}
16848 stevensc 4226
 
16825 efrain 4227
.dropup .dropdown-toggle:empty::after {
4228
  margin-left: 0;
4229
}
4230
 
16848 stevensc 4231
.dropend .dropdown-menu[data-bs-popper],
4232
.dropend [data-bs-popper].tt-menu {
16825 efrain 4233
  top: 0;
4234
  right: auto;
4235
  left: 100%;
4236
  margin-top: 0;
4237
  margin-left: var(--bs-dropdown-spacer);
4238
}
16848 stevensc 4239
 
16825 efrain 4240
.dropend .dropdown-toggle::after {
4241
  display: inline-block;
4242
  margin-left: 0.255em;
4243
  vertical-align: 0.255em;
4244
  content: "";
4245
  border-top: 0.3em solid transparent;
4246
  border-right: 0;
4247
  border-bottom: 0.3em solid transparent;
4248
  border-left: 0.3em solid;
4249
}
16848 stevensc 4250
 
16825 efrain 4251
.dropend .dropdown-toggle:empty::after {
4252
  margin-left: 0;
4253
}
16848 stevensc 4254
 
16825 efrain 4255
.dropend .dropdown-toggle::after {
4256
  vertical-align: 0;
4257
}
4258
 
16848 stevensc 4259
.dropstart .dropdown-menu[data-bs-popper],
4260
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4261
  top: 0;
4262
  right: 100%;
4263
  left: auto;
4264
  margin-top: 0;
4265
  margin-right: var(--bs-dropdown-spacer);
4266
}
16848 stevensc 4267
 
16825 efrain 4268
.dropstart .dropdown-toggle::after {
4269
  display: inline-block;
4270
  margin-left: 0.255em;
4271
  vertical-align: 0.255em;
4272
  content: "";
4273
}
16848 stevensc 4274
 
16825 efrain 4275
.dropstart .dropdown-toggle::after {
4276
  display: none;
4277
}
16848 stevensc 4278
 
16825 efrain 4279
.dropstart .dropdown-toggle::before {
4280
  display: inline-block;
4281
  margin-right: 0.255em;
4282
  vertical-align: 0.255em;
4283
  content: "";
4284
  border-top: 0.3em solid transparent;
4285
  border-right: 0.3em solid;
4286
  border-bottom: 0.3em solid transparent;
4287
}
16848 stevensc 4288
 
16825 efrain 4289
.dropstart .dropdown-toggle:empty::after {
4290
  margin-left: 0;
4291
}
16848 stevensc 4292
 
16825 efrain 4293
.dropstart .dropdown-toggle::before {
4294
  vertical-align: 0;
4295
}
4296
 
4297
.dropdown-divider {
4298
  height: 0;
4299
  margin: var(--bs-dropdown-divider-margin-y) 0;
4300
  overflow: hidden;
4301
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4302
  opacity: 1;
4303
}
4304
 
16848 stevensc 4305
.dropdown-item,
4306
.tt-menu .tt-suggestion {
16825 efrain 4307
  display: block;
4308
  width: 100%;
4309
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4310
  clear: both;
4311
  font-weight: 400;
4312
  color: var(--bs-dropdown-link-color);
4313
  text-align: inherit;
4314
  white-space: nowrap;
4315
  background-color: transparent;
4316
  border: 0;
4317
}
16848 stevensc 4318
 
4319
.dropdown-item:hover,
4320
.tt-menu .tt-suggestion:hover,
4321
.dropdown-item:focus,
4322
.tt-menu .tt-suggestion:focus {
16825 efrain 4323
  color: var(--bs-dropdown-link-hover-color);
4324
  background-color: var(--bs-dropdown-link-hover-bg);
4325
}
16848 stevensc 4326
 
4327
.dropdown-item.active,
4328
.tt-menu .active.tt-suggestion,
4329
.dropdown-item:active,
4330
.tt-menu .tt-suggestion:active {
16825 efrain 4331
  color: var(--bs-dropdown-link-active-color);
4332
  text-decoration: none;
4333
  background-color: var(--bs-dropdown-link-active-bg);
4334
}
16848 stevensc 4335
 
4336
.dropdown-item.disabled,
4337
.tt-menu .disabled.tt-suggestion,
4338
.dropdown-item:disabled,
4339
.tt-menu .tt-suggestion:disabled {
16825 efrain 4340
  color: var(--bs-dropdown-link-disabled-color);
4341
  pointer-events: none;
4342
  background-color: transparent;
4343
}
4344
 
16848 stevensc 4345
.dropdown-menu.show,
4346
.show.tt-menu {
16825 efrain 4347
  display: block;
4348
}
4349
 
4350
.dropdown-header {
4351
  display: block;
4352
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4353
  margin-bottom: 0;
4354
  font-size: 0.812rem;
4355
  color: var(--bs-dropdown-header-color);
4356
  white-space: nowrap;
4357
}
4358
 
4359
.dropdown-item-text {
4360
  display: block;
4361
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4362
  color: var(--bs-dropdown-link-color);
4363
}
4364
 
4365
.dropdown-menu-dark {
4366
  --bs-dropdown-color: #dee2e6;
4367
  --bs-dropdown-bg: #212a3a;
4368
  --bs-dropdown-border-color: #f2f4f9;
4369
  --bs-dropdown-box-shadow: ;
4370
  --bs-dropdown-link-color: #dee2e6;
4371
  --bs-dropdown-link-hover-color: #fff;
4372
  --bs-dropdown-divider-bg: #f2f4f9;
4373
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4374
  --bs-dropdown-link-active-color: #fff;
4375
  --bs-dropdown-link-active-bg: #6571ff;
4376
  --bs-dropdown-link-disabled-color: #aeb7c5;
4377
  --bs-dropdown-header-color: #aeb7c5;
4378
}
4379
 
4380
.btn-group,
4381
.btn-group-vertical {
4382
  position: relative;
4383
  display: inline-flex;
4384
  vertical-align: middle;
4385
}
16848 stevensc 4386
 
4387
.btn-group>.btn,
4388
.wizard>.actions .btn-group>a,
4389
div.tox .btn-group>.tox-button,
4390
.swal2-popup .swal2-actions .btn-group>button,
4391
.fc .btn-group>.fc-button-primary,
4392
.btn-group-vertical>.btn,
4393
.wizard>.actions .btn-group-vertical>a,
4394
div.tox .btn-group-vertical>.tox-button,
4395
.swal2-popup .swal2-actions .btn-group-vertical>button,
4396
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4397
  position: relative;
4398
  flex: 1 1 auto;
4399
}
16848 stevensc 4400
 
4401
.btn-group>.btn-check:checked+.btn,
4402
.wizard>.actions .btn-group>.btn-check:checked+a,
4403
div.tox .btn-group>.btn-check:checked+.tox-button,
4404
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4405
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4406
.btn-group>.btn-check:focus+.btn,
4407
.wizard>.actions .btn-group>.btn-check:focus+a,
4408
div.tox .btn-group>.btn-check:focus+.tox-button,
4409
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4410
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4411
.btn-group>.btn:hover,
4412
.wizard>.actions .btn-group>a:hover,
4413
div.tox .btn-group>.tox-button:hover,
4414
.swal2-popup .swal2-actions .btn-group>button:hover,
4415
.fc .btn-group>.fc-button-primary:hover,
4416
.btn-group>.btn:focus,
4417
.wizard>.actions .btn-group>a:focus,
4418
div.tox .btn-group>.tox-button:focus,
4419
.swal2-popup .swal2-actions .btn-group>button:focus,
4420
.fc .btn-group>.fc-button-primary:focus,
4421
.btn-group>.btn:active,
4422
.wizard>.actions .btn-group>a:active,
4423
div.tox .btn-group>.tox-button:active,
4424
.swal2-popup .swal2-actions .btn-group>button:active,
4425
.fc .btn-group>.fc-button-primary:active,
4426
.btn-group>.btn.active,
4427
.wizard>.actions .btn-group>a.active,
4428
div.tox .btn-group>.active.tox-button,
4429
.swal2-popup .swal2-actions .btn-group>button.active,
4430
.fc .btn-group>.active.fc-button-primary,
4431
.btn-group-vertical>.btn-check:checked+.btn,
4432
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4433
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4434
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4435
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4436
.btn-group-vertical>.btn-check:focus+.btn,
4437
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4438
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4439
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4440
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4441
.btn-group-vertical>.btn:hover,
4442
.wizard>.actions .btn-group-vertical>a:hover,
4443
div.tox .btn-group-vertical>.tox-button:hover,
4444
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4445
.fc .btn-group-vertical>.fc-button-primary:hover,
4446
.btn-group-vertical>.btn:focus,
4447
.wizard>.actions .btn-group-vertical>a:focus,
4448
div.tox .btn-group-vertical>.tox-button:focus,
4449
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4450
.fc .btn-group-vertical>.fc-button-primary:focus,
4451
.btn-group-vertical>.btn:active,
4452
.wizard>.actions .btn-group-vertical>a:active,
4453
div.tox .btn-group-vertical>.tox-button:active,
4454
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4455
.fc .btn-group-vertical>.fc-button-primary:active,
4456
.btn-group-vertical>.btn.active,
4457
.wizard>.actions .btn-group-vertical>a.active,
4458
div.tox .btn-group-vertical>.active.tox-button,
4459
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4460
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4461
  z-index: 1;
4462
}
4463
 
4464
.btn-toolbar {
4465
  display: flex;
4466
  flex-wrap: wrap;
4467
  justify-content: flex-start;
4468
}
16848 stevensc 4469
 
16825 efrain 4470
.btn-toolbar .input-group {
4471
  width: auto;
4472
}
4473
 
4474
.btn-group {
4475
  border-radius: 0.25rem;
4476
}
16848 stevensc 4477
 
4478
.btn-group> :not(.btn-check:first-child)+.btn,
4479
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4480
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4481
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4482
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4483
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4484
  margin-left: -1px;
4485
}
16848 stevensc 4486
 
4487
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4488
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4489
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4490
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4491
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4492
.btn-group>.btn.dropdown-toggle-split:first-child,
4493
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4494
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4495
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4496
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4497
.btn-group>.btn-group:not(:last-child)>.btn,
4498
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4499
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4500
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4501
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4502
  border-top-right-radius: 0;
4503
  border-bottom-right-radius: 0;
4504
}
16848 stevensc 4505
 
4506
.btn-group>.btn:nth-child(n+3),
4507
.wizard>.actions .btn-group>a:nth-child(n+3),
4508
div.tox .btn-group>.tox-button:nth-child(n+3),
4509
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4510
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4511
.btn-group> :not(.btn-check)+.btn,
4512
.wizard>.actions .btn-group> :not(.btn-check)+a,
4513
div.tox .btn-group> :not(.btn-check)+.tox-button,
4514
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4515
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4516
.btn-group>.btn-group:not(:first-child)>.btn,
4517
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4518
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4519
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4520
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4521
  border-top-left-radius: 0;
4522
  border-bottom-left-radius: 0;
4523
}
4524
 
4525
.dropdown-toggle-split {
4526
  padding-right: 0.6rem;
4527
  padding-left: 0.6rem;
4528
}
16848 stevensc 4529
 
4530
.dropdown-toggle-split::after,
4531
.dropup .dropdown-toggle-split::after,
4532
.dropend .dropdown-toggle-split::after {
16825 efrain 4533
  margin-left: 0;
4534
}
16848 stevensc 4535
 
16825 efrain 4536
.dropstart .dropdown-toggle-split::before {
4537
  margin-right: 0;
4538
}
4539
 
16848 stevensc 4540
.btn-sm+.dropdown-toggle-split,
4541
.fc .fc-button-primary+.dropdown-toggle-split,
4542
.btn-group-sm>.btn+.dropdown-toggle-split,
4543
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4544
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4545
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4546
  padding-right: 0.6rem;
4547
  padding-left: 0.6rem;
4548
}
4549
 
16848 stevensc 4550
.btn-lg+.dropdown-toggle-split,
4551
.btn-group-lg>.btn+.dropdown-toggle-split,
4552
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4553
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4554
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4555
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4556
  padding-right: 0.6rem;
4557
  padding-left: 0.6rem;
4558
}
4559
 
4560
.btn-group-vertical {
4561
  flex-direction: column;
4562
  align-items: flex-start;
4563
  justify-content: center;
4564
}
16848 stevensc 4565
 
4566
.btn-group-vertical>.btn,
4567
.wizard>.actions .btn-group-vertical>a,
4568
div.tox .btn-group-vertical>.tox-button,
4569
.swal2-popup .swal2-actions .btn-group-vertical>button,
4570
.fc .btn-group-vertical>.fc-button-primary,
4571
.btn-group-vertical>.btn-group {
16825 efrain 4572
  width: 100%;
4573
}
16848 stevensc 4574
 
4575
.btn-group-vertical>.btn:not(:first-child),
4576
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4577
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4578
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4579
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4580
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4581
  margin-top: -1px;
4582
}
16848 stevensc 4583
 
4584
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4585
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4586
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4587
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4588
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4589
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4590
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4591
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4592
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4593
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4594
  border-bottom-right-radius: 0;
4595
  border-bottom-left-radius: 0;
4596
}
16848 stevensc 4597
 
4598
.btn-group-vertical>.btn~.btn,
4599
.wizard>.actions .btn-group-vertical>a~.btn,
4600
.wizard>.actions .btn-group-vertical>.btn~a,
4601
.wizard>.actions .btn-group-vertical>a~a,
4602
div.tox .btn-group-vertical>.tox-button~.btn,
4603
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4604
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4605
div.tox .btn-group-vertical>.btn~.tox-button,
4606
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4607
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4608
div.tox .btn-group-vertical>.tox-button~.tox-button,
4609
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4610
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4611
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4612
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4613
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4614
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4615
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4616
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4617
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4618
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4619
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4620
.fc .btn-group-vertical>.fc-button-primary~.btn,
4621
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4622
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4623
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4624
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4625
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4626
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4627
.fc .btn-group-vertical>.btn~.fc-button-primary,
4628
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4629
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4630
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4631
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4632
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4633
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4634
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4635
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4636
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4637
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4638
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4639
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4640
  border-top-left-radius: 0;
4641
  border-top-right-radius: 0;
4642
}
4643
 
4644
.nav {
4645
  --bs-nav-link-padding-x: 1rem;
4646
  --bs-nav-link-padding-y: 0.5rem;
4647
  --bs-nav-link-font-weight: ;
4648
  --bs-nav-link-color: var(--bs-link-color);
4649
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4650
  --bs-nav-link-disabled-color: #7987a1;
4651
  display: flex;
4652
  flex-wrap: wrap;
4653
  padding-left: 0;
4654
  margin-bottom: 0;
4655
  list-style: none;
4656
}
4657
 
4658
.nav-link {
4659
  display: block;
4660
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4661
  font-size: var(--bs-nav-link-font-size);
4662
  font-weight: var(--bs-nav-link-font-weight);
4663
  color: var(--bs-nav-link-color);
4664
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4665
}
16848 stevensc 4666
 
16825 efrain 4667
@media (prefers-reduced-motion: reduce) {
4668
  .nav-link {
4669
    transition: none;
4670
  }
4671
}
16848 stevensc 4672
 
4673
.nav-link:hover,
4674
.nav-link:focus {
16825 efrain 4675
  color: var(--bs-nav-link-hover-color);
4676
}
16848 stevensc 4677
 
16825 efrain 4678
.nav-link.disabled {
4679
  color: var(--bs-nav-link-disabled-color);
4680
  pointer-events: none;
4681
  cursor: default;
4682
}
4683
 
4684
.nav-tabs {
4685
  --bs-nav-tabs-border-width: 1px;
4686
  --bs-nav-tabs-border-color: #dee2e6;
4687
  --bs-nav-tabs-border-radius: 0.25rem;
4688
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4689
  --bs-nav-tabs-link-active-color: #41516c;
4690
  --bs-nav-tabs-link-active-bg: #fff;
4691
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4692
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4693
}
16848 stevensc 4694
 
16825 efrain 4695
.nav-tabs .nav-link {
4696
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4697
  background: none;
4698
  border: var(--bs-nav-tabs-border-width) solid transparent;
4699
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4700
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4701
}
16848 stevensc 4702
 
4703
.nav-tabs .nav-link:hover,
4704
.nav-tabs .nav-link:focus {
16825 efrain 4705
  isolation: isolate;
4706
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4707
}
16848 stevensc 4708
 
4709
.nav-tabs .nav-link.disabled,
4710
.nav-tabs .nav-link:disabled {
16825 efrain 4711
  color: var(--bs-nav-link-disabled-color);
4712
  background-color: transparent;
4713
  border-color: transparent;
4714
}
16848 stevensc 4715
 
16825 efrain 4716
.nav-tabs .nav-link.active,
4717
.nav-tabs .nav-item.show .nav-link {
4718
  color: var(--bs-nav-tabs-link-active-color);
4719
  background-color: var(--bs-nav-tabs-link-active-bg);
4720
  border-color: var(--bs-nav-tabs-link-active-border-color);
4721
}
16848 stevensc 4722
 
4723
.nav-tabs .dropdown-menu,
4724
.nav-tabs .tt-menu {
16825 efrain 4725
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4726
  border-top-left-radius: 0;
4727
  border-top-right-radius: 0;
4728
}
4729
 
4730
.nav-pills {
4731
  --bs-nav-pills-border-radius: 0.25rem;
4732
  --bs-nav-pills-link-active-color: #fff;
4733
  --bs-nav-pills-link-active-bg: #6571ff;
4734
}
16848 stevensc 4735
 
16825 efrain 4736
.nav-pills .nav-link {
4737
  background: none;
4738
  border: 0;
4739
  border-radius: var(--bs-nav-pills-border-radius);
4740
}
16848 stevensc 4741
 
16825 efrain 4742
.nav-pills .nav-link:disabled {
4743
  color: var(--bs-nav-link-disabled-color);
4744
  background-color: transparent;
4745
  border-color: transparent;
4746
}
16848 stevensc 4747
 
16825 efrain 4748
.nav-pills .nav-link.active,
16848 stevensc 4749
.nav-pills .show>.nav-link {
16825 efrain 4750
  color: var(--bs-nav-pills-link-active-color);
4751
  background-color: var(--bs-nav-pills-link-active-bg);
4752
}
4753
 
16848 stevensc 4754
.nav-fill>.nav-link,
16825 efrain 4755
.nav-fill .nav-item {
4756
  flex: 1 1 auto;
4757
  text-align: center;
4758
}
4759
 
16848 stevensc 4760
.nav-justified>.nav-link,
16825 efrain 4761
.nav-justified .nav-item {
4762
  flex-basis: 0;
4763
  flex-grow: 1;
4764
  text-align: center;
4765
}
4766
 
4767
.nav-fill .nav-item .nav-link,
4768
.nav-justified .nav-item .nav-link {
4769
  width: 100%;
4770
}
4771
 
16848 stevensc 4772
.tab-content>.tab-pane {
16825 efrain 4773
  display: none;
4774
}
16848 stevensc 4775
 
4776
.tab-content>.active {
16825 efrain 4777
  display: block;
4778
}
4779
 
4780
.navbar {
4781
  --bs-navbar-padding-x: 0;
4782
  --bs-navbar-padding-y: 0.5rem;
4783
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4784
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4785
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4786
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4787
  --bs-navbar-brand-padding-y: 0.40625rem;
4788
  --bs-navbar-brand-margin-end: 1rem;
4789
  --bs-navbar-brand-font-size: 1rem;
4790
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4791
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4792
  --bs-navbar-nav-link-padding-x: 0.5rem;
4793
  --bs-navbar-toggler-padding-y: 0.25rem;
4794
  --bs-navbar-toggler-padding-x: 0.75rem;
4795
  --bs-navbar-toggler-font-size: 1rem;
4796
  --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");
4797
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4798
  --bs-navbar-toggler-border-radius: 0.25rem;
4799
  --bs-navbar-toggler-focus-width: 0;
4800
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4801
  position: relative;
4802
  display: flex;
4803
  flex-wrap: wrap;
4804
  align-items: center;
4805
  justify-content: space-between;
4806
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4807
}
16848 stevensc 4808
 
4809
.navbar>.container,
4810
.navbar>.container-fluid,
4811
.navbar>.container-sm,
4812
.navbar>.container-md,
4813
.navbar>.container-lg,
4814
.navbar>.container-xl,
4815
.navbar>.container-xxl {
16825 efrain 4816
  display: flex;
4817
  flex-wrap: inherit;
4818
  align-items: center;
4819
  justify-content: space-between;
4820
}
16848 stevensc 4821
 
16825 efrain 4822
.navbar-brand {
4823
  padding-top: var(--bs-navbar-brand-padding-y);
4824
  padding-bottom: var(--bs-navbar-brand-padding-y);
4825
  margin-right: var(--bs-navbar-brand-margin-end);
4826
  font-size: var(--bs-navbar-brand-font-size);
4827
  color: var(--bs-navbar-brand-color);
4828
  white-space: nowrap;
4829
}
16848 stevensc 4830
 
4831
.navbar-brand:hover,
4832
.navbar-brand:focus {
16825 efrain 4833
  color: var(--bs-navbar-brand-hover-color);
4834
}
4835
 
4836
.navbar-nav {
4837
  --bs-nav-link-padding-x: 0;
4838
  --bs-nav-link-padding-y: 0.5rem;
4839
  --bs-nav-link-font-weight: ;
4840
  --bs-nav-link-color: var(--bs-navbar-color);
4841
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4842
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4843
  display: flex;
4844
  flex-direction: column;
4845
  padding-left: 0;
4846
  margin-bottom: 0;
4847
  list-style: none;
4848
}
16848 stevensc 4849
 
4850
.navbar-nav .show>.nav-link,
16825 efrain 4851
.navbar-nav .nav-link.active {
4852
  color: var(--bs-navbar-active-color);
4853
}
16848 stevensc 4854
 
4855
.navbar-nav .dropdown-menu,
4856
.navbar-nav .tt-menu {
16825 efrain 4857
  position: static;
4858
}
4859
 
4860
.navbar-text {
4861
  padding-top: 0.5rem;
4862
  padding-bottom: 0.5rem;
4863
  color: var(--bs-navbar-color);
4864
}
16848 stevensc 4865
 
16825 efrain 4866
.navbar-text a,
4867
.navbar-text a:hover,
4868
.navbar-text a:focus {
4869
  color: var(--bs-navbar-active-color);
4870
}
4871
 
4872
.navbar-collapse {
4873
  flex-basis: 100%;
4874
  flex-grow: 1;
4875
  align-items: center;
4876
}
4877
 
4878
.navbar-toggler {
4879
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4880
  font-size: var(--bs-navbar-toggler-font-size);
4881
  line-height: 1;
4882
  color: var(--bs-navbar-color);
4883
  background-color: transparent;
4884
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4885
  border-radius: var(--bs-navbar-toggler-border-radius);
4886
  transition: var(--bs-navbar-toggler-transition);
4887
}
16848 stevensc 4888
 
16825 efrain 4889
@media (prefers-reduced-motion: reduce) {
4890
  .navbar-toggler {
4891
    transition: none;
4892
  }
4893
}
16848 stevensc 4894
 
16825 efrain 4895
.navbar-toggler:hover {
4896
  text-decoration: none;
4897
}
16848 stevensc 4898
 
16825 efrain 4899
.navbar-toggler:focus {
4900
  text-decoration: none;
4901
  outline: 0;
4902
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4903
}
4904
 
4905
.navbar-toggler-icon {
4906
  display: inline-block;
4907
  width: 1.5em;
4908
  height: 1.5em;
4909
  vertical-align: middle;
4910
  background-image: var(--bs-navbar-toggler-icon-bg);
4911
  background-repeat: no-repeat;
4912
  background-position: center;
4913
  background-size: 100%;
4914
}
4915
 
4916
.navbar-nav-scroll {
4917
  max-height: var(--bs-scroll-height, 75vh);
4918
  overflow-y: auto;
4919
}
4920
 
4921
@media (min-width: 576px) {
4922
  .navbar-expand-sm {
4923
    flex-wrap: nowrap;
4924
    justify-content: flex-start;
4925
  }
16848 stevensc 4926
 
16825 efrain 4927
  .navbar-expand-sm .navbar-nav {
4928
    flex-direction: row;
4929
  }
16848 stevensc 4930
 
4931
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4932
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4933
    position: absolute;
4934
  }
16848 stevensc 4935
 
16825 efrain 4936
  .navbar-expand-sm .navbar-nav .nav-link {
4937
    padding-right: var(--bs-navbar-nav-link-padding-x);
4938
    padding-left: var(--bs-navbar-nav-link-padding-x);
4939
  }
16848 stevensc 4940
 
16825 efrain 4941
  .navbar-expand-sm .navbar-nav-scroll {
4942
    overflow: visible;
4943
  }
16848 stevensc 4944
 
16825 efrain 4945
  .navbar-expand-sm .navbar-collapse {
4946
    display: flex !important;
4947
    flex-basis: auto;
4948
  }
16848 stevensc 4949
 
16825 efrain 4950
  .navbar-expand-sm .navbar-toggler {
4951
    display: none;
4952
  }
16848 stevensc 4953
 
16825 efrain 4954
  .navbar-expand-sm .offcanvas {
4955
    position: static;
4956
    z-index: auto;
4957
    flex-grow: 1;
4958
    width: auto !important;
4959
    height: auto !important;
4960
    visibility: visible !important;
4961
    background-color: transparent !important;
4962
    border: 0 !important;
4963
    transform: none !important;
4964
    transition: none;
4965
  }
16848 stevensc 4966
 
16825 efrain 4967
  .navbar-expand-sm .offcanvas .offcanvas-header {
4968
    display: none;
4969
  }
16848 stevensc 4970
 
16825 efrain 4971
  .navbar-expand-sm .offcanvas .offcanvas-body {
4972
    display: flex;
4973
    flex-grow: 0;
4974
    padding: 0;
4975
    overflow-y: visible;
4976
  }
4977
}
16848 stevensc 4978
 
16825 efrain 4979
@media (min-width: 768px) {
4980
  .navbar-expand-md {
4981
    flex-wrap: nowrap;
4982
    justify-content: flex-start;
4983
  }
16848 stevensc 4984
 
16825 efrain 4985
  .navbar-expand-md .navbar-nav {
4986
    flex-direction: row;
4987
  }
16848 stevensc 4988
 
4989
  .navbar-expand-md .navbar-nav .dropdown-menu,
4990
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4991
    position: absolute;
4992
  }
16848 stevensc 4993
 
16825 efrain 4994
  .navbar-expand-md .navbar-nav .nav-link {
4995
    padding-right: var(--bs-navbar-nav-link-padding-x);
4996
    padding-left: var(--bs-navbar-nav-link-padding-x);
4997
  }
16848 stevensc 4998
 
16825 efrain 4999
  .navbar-expand-md .navbar-nav-scroll {
5000
    overflow: visible;
5001
  }
16848 stevensc 5002
 
16825 efrain 5003
  .navbar-expand-md .navbar-collapse {
5004
    display: flex !important;
5005
    flex-basis: auto;
5006
  }
16848 stevensc 5007
 
16825 efrain 5008
  .navbar-expand-md .navbar-toggler {
5009
    display: none;
5010
  }
16848 stevensc 5011
 
16825 efrain 5012
  .navbar-expand-md .offcanvas {
5013
    position: static;
5014
    z-index: auto;
5015
    flex-grow: 1;
5016
    width: auto !important;
5017
    height: auto !important;
5018
    visibility: visible !important;
5019
    background-color: transparent !important;
5020
    border: 0 !important;
5021
    transform: none !important;
5022
    transition: none;
5023
  }
16848 stevensc 5024
 
16825 efrain 5025
  .navbar-expand-md .offcanvas .offcanvas-header {
5026
    display: none;
5027
  }
16848 stevensc 5028
 
16825 efrain 5029
  .navbar-expand-md .offcanvas .offcanvas-body {
5030
    display: flex;
5031
    flex-grow: 0;
5032
    padding: 0;
5033
    overflow-y: visible;
5034
  }
5035
}
16848 stevensc 5036
 
16825 efrain 5037
@media (min-width: 992px) {
5038
  .navbar-expand-lg {
5039
    flex-wrap: nowrap;
5040
    justify-content: flex-start;
5041
  }
16848 stevensc 5042
 
16825 efrain 5043
  .navbar-expand-lg .navbar-nav {
5044
    flex-direction: row;
5045
  }
16848 stevensc 5046
 
5047
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5048
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5049
    position: absolute;
5050
  }
16848 stevensc 5051
 
16825 efrain 5052
  .navbar-expand-lg .navbar-nav .nav-link {
5053
    padding-right: var(--bs-navbar-nav-link-padding-x);
5054
    padding-left: var(--bs-navbar-nav-link-padding-x);
5055
  }
16848 stevensc 5056
 
16825 efrain 5057
  .navbar-expand-lg .navbar-nav-scroll {
5058
    overflow: visible;
5059
  }
16848 stevensc 5060
 
16825 efrain 5061
  .navbar-expand-lg .navbar-collapse {
5062
    display: flex !important;
5063
    flex-basis: auto;
5064
  }
16848 stevensc 5065
 
16825 efrain 5066
  .navbar-expand-lg .navbar-toggler {
5067
    display: none;
5068
  }
16848 stevensc 5069
 
16825 efrain 5070
  .navbar-expand-lg .offcanvas {
5071
    position: static;
5072
    z-index: auto;
5073
    flex-grow: 1;
5074
    width: auto !important;
5075
    height: auto !important;
5076
    visibility: visible !important;
5077
    background-color: transparent !important;
5078
    border: 0 !important;
5079
    transform: none !important;
5080
    transition: none;
5081
  }
16848 stevensc 5082
 
16825 efrain 5083
  .navbar-expand-lg .offcanvas .offcanvas-header {
5084
    display: none;
5085
  }
16848 stevensc 5086
 
16825 efrain 5087
  .navbar-expand-lg .offcanvas .offcanvas-body {
5088
    display: flex;
5089
    flex-grow: 0;
5090
    padding: 0;
5091
    overflow-y: visible;
5092
  }
5093
}
16848 stevensc 5094
 
16825 efrain 5095
@media (min-width: 1200px) {
5096
  .navbar-expand-xl {
5097
    flex-wrap: nowrap;
5098
    justify-content: flex-start;
5099
  }
16848 stevensc 5100
 
16825 efrain 5101
  .navbar-expand-xl .navbar-nav {
5102
    flex-direction: row;
5103
  }
16848 stevensc 5104
 
5105
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5106
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5107
    position: absolute;
5108
  }
16848 stevensc 5109
 
16825 efrain 5110
  .navbar-expand-xl .navbar-nav .nav-link {
5111
    padding-right: var(--bs-navbar-nav-link-padding-x);
5112
    padding-left: var(--bs-navbar-nav-link-padding-x);
5113
  }
16848 stevensc 5114
 
16825 efrain 5115
  .navbar-expand-xl .navbar-nav-scroll {
5116
    overflow: visible;
5117
  }
16848 stevensc 5118
 
16825 efrain 5119
  .navbar-expand-xl .navbar-collapse {
5120
    display: flex !important;
5121
    flex-basis: auto;
5122
  }
16848 stevensc 5123
 
16825 efrain 5124
  .navbar-expand-xl .navbar-toggler {
5125
    display: none;
5126
  }
16848 stevensc 5127
 
16825 efrain 5128
  .navbar-expand-xl .offcanvas {
5129
    position: static;
5130
    z-index: auto;
5131
    flex-grow: 1;
5132
    width: auto !important;
5133
    height: auto !important;
5134
    visibility: visible !important;
5135
    background-color: transparent !important;
5136
    border: 0 !important;
5137
    transform: none !important;
5138
    transition: none;
5139
  }
16848 stevensc 5140
 
16825 efrain 5141
  .navbar-expand-xl .offcanvas .offcanvas-header {
5142
    display: none;
5143
  }
16848 stevensc 5144
 
16825 efrain 5145
  .navbar-expand-xl .offcanvas .offcanvas-body {
5146
    display: flex;
5147
    flex-grow: 0;
5148
    padding: 0;
5149
    overflow-y: visible;
5150
  }
5151
}
16848 stevensc 5152
 
16825 efrain 5153
@media (min-width: 1400px) {
5154
  .navbar-expand-xxl {
5155
    flex-wrap: nowrap;
5156
    justify-content: flex-start;
5157
  }
16848 stevensc 5158
 
16825 efrain 5159
  .navbar-expand-xxl .navbar-nav {
5160
    flex-direction: row;
5161
  }
16848 stevensc 5162
 
5163
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5164
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5165
    position: absolute;
5166
  }
16848 stevensc 5167
 
16825 efrain 5168
  .navbar-expand-xxl .navbar-nav .nav-link {
5169
    padding-right: var(--bs-navbar-nav-link-padding-x);
5170
    padding-left: var(--bs-navbar-nav-link-padding-x);
5171
  }
16848 stevensc 5172
 
16825 efrain 5173
  .navbar-expand-xxl .navbar-nav-scroll {
5174
    overflow: visible;
5175
  }
16848 stevensc 5176
 
16825 efrain 5177
  .navbar-expand-xxl .navbar-collapse {
5178
    display: flex !important;
5179
    flex-basis: auto;
5180
  }
16848 stevensc 5181
 
16825 efrain 5182
  .navbar-expand-xxl .navbar-toggler {
5183
    display: none;
5184
  }
16848 stevensc 5185
 
16825 efrain 5186
  .navbar-expand-xxl .offcanvas {
5187
    position: static;
5188
    z-index: auto;
5189
    flex-grow: 1;
5190
    width: auto !important;
5191
    height: auto !important;
5192
    visibility: visible !important;
5193
    background-color: transparent !important;
5194
    border: 0 !important;
5195
    transform: none !important;
5196
    transition: none;
5197
  }
16848 stevensc 5198
 
16825 efrain 5199
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5200
    display: none;
5201
  }
16848 stevensc 5202
 
16825 efrain 5203
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5204
    display: flex;
5205
    flex-grow: 0;
5206
    padding: 0;
5207
    overflow-y: visible;
5208
  }
5209
}
16848 stevensc 5210
 
16825 efrain 5211
.navbar-expand {
5212
  flex-wrap: nowrap;
5213
  justify-content: flex-start;
5214
}
16848 stevensc 5215
 
16825 efrain 5216
.navbar-expand .navbar-nav {
5217
  flex-direction: row;
5218
}
16848 stevensc 5219
 
5220
.navbar-expand .navbar-nav .dropdown-menu,
5221
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5222
  position: absolute;
5223
}
16848 stevensc 5224
 
16825 efrain 5225
.navbar-expand .navbar-nav .nav-link {
5226
  padding-right: var(--bs-navbar-nav-link-padding-x);
5227
  padding-left: var(--bs-navbar-nav-link-padding-x);
5228
}
16848 stevensc 5229
 
16825 efrain 5230
.navbar-expand .navbar-nav-scroll {
5231
  overflow: visible;
5232
}
16848 stevensc 5233
 
16825 efrain 5234
.navbar-expand .navbar-collapse {
5235
  display: flex !important;
5236
  flex-basis: auto;
5237
}
16848 stevensc 5238
 
16825 efrain 5239
.navbar-expand .navbar-toggler {
5240
  display: none;
5241
}
16848 stevensc 5242
 
16825 efrain 5243
.navbar-expand .offcanvas {
5244
  position: static;
5245
  z-index: auto;
5246
  flex-grow: 1;
5247
  width: auto !important;
5248
  height: auto !important;
5249
  visibility: visible !important;
5250
  background-color: transparent !important;
5251
  border: 0 !important;
5252
  transform: none !important;
5253
  transition: none;
5254
}
16848 stevensc 5255
 
16825 efrain 5256
.navbar-expand .offcanvas .offcanvas-header {
5257
  display: none;
5258
}
16848 stevensc 5259
 
16825 efrain 5260
.navbar-expand .offcanvas .offcanvas-body {
5261
  display: flex;
5262
  flex-grow: 0;
5263
  padding: 0;
5264
  overflow-y: visible;
5265
}
5266
 
5267
.navbar-dark {
5268
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5269
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5270
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5271
  --bs-navbar-active-color: #fff;
5272
  --bs-navbar-brand-color: #fff;
5273
  --bs-navbar-brand-hover-color: #fff;
5274
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5275
  --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");
5276
}
5277
 
5278
.card {
5279
  --bs-card-spacer-y: 1.5rem;
5280
  --bs-card-spacer-x: 1.5rem;
5281
  --bs-card-title-spacer-y: 0.875rem;
5282
  --bs-card-border-width: 1px;
5283
  --bs-card-border-color: #f2f4f9;
5284
  --bs-card-border-radius: 0.25rem;
5285
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5286
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5287
  --bs-card-cap-padding-y: 0.875rem;
5288
  --bs-card-cap-padding-x: 1.5rem;
5289
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5290
  --bs-card-cap-color: ;
5291
  --bs-card-height: ;
5292
  --bs-card-color: ;
5293
  --bs-card-bg: #fff;
5294
  --bs-card-img-overlay-padding: 1rem;
5295
  --bs-card-group-margin: 0.75rem;
5296
  position: relative;
5297
  display: flex;
5298
  flex-direction: column;
5299
  min-width: 0;
5300
  height: var(--bs-card-height);
5301
  word-wrap: break-word;
5302
  background-color: var(--bs-card-bg);
5303
  background-clip: border-box;
5304
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5305
  border-radius: var(--bs-card-border-radius);
5306
}
16848 stevensc 5307
 
5308
.card>hr {
16825 efrain 5309
  margin-right: 0;
5310
  margin-left: 0;
5311
}
16848 stevensc 5312
 
5313
.card>.list-group {
16825 efrain 5314
  border-top: inherit;
5315
  border-bottom: inherit;
5316
}
16848 stevensc 5317
 
5318
.card>.list-group:first-child {
16825 efrain 5319
  border-top-width: 0;
5320
  border-top-left-radius: var(--bs-card-inner-border-radius);
5321
  border-top-right-radius: var(--bs-card-inner-border-radius);
5322
}
16848 stevensc 5323
 
5324
.card>.list-group:last-child {
16825 efrain 5325
  border-bottom-width: 0;
5326
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5327
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5328
}
16848 stevensc 5329
 
5330
.card>.card-header+.list-group,
5331
.card>.list-group+.card-footer {
16825 efrain 5332
  border-top: 0;
5333
}
5334
 
5335
.card-body {
5336
  flex: 1 1 auto;
5337
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5338
  color: var(--bs-card-color);
5339
}
5340
 
5341
.card-title {
5342
  margin-bottom: var(--bs-card-title-spacer-y);
5343
}
5344
 
5345
.card-subtitle {
5346
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5347
  margin-bottom: 0;
5348
}
5349
 
5350
.card-text:last-child {
5351
  margin-bottom: 0;
5352
}
5353
 
16848 stevensc 5354
.card-link+.card-link {
16825 efrain 5355
  margin-left: var(--bs-card-spacer-x);
5356
}
5357
 
5358
.card-header {
5359
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5360
  margin-bottom: 0;
5361
  color: var(--bs-card-cap-color);
5362
  background-color: var(--bs-card-cap-bg);
5363
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5364
}
16848 stevensc 5365
 
16825 efrain 5366
.card-header:first-child {
5367
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5368
}
5369
 
5370
.card-footer {
5371
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5372
  color: var(--bs-card-cap-color);
5373
  background-color: var(--bs-card-cap-bg);
5374
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5375
}
16848 stevensc 5376
 
16825 efrain 5377
.card-footer:last-child {
5378
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5379
}
5380
 
5381
.card-header-tabs {
5382
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5383
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5384
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5385
  border-bottom: 0;
5386
}
16848 stevensc 5387
 
16825 efrain 5388
.card-header-tabs .nav-link.active {
5389
  background-color: var(--bs-card-bg);
5390
  border-bottom-color: var(--bs-card-bg);
5391
}
5392
 
5393
.card-header-pills {
5394
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5395
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5396
}
5397
 
5398
.card-img-overlay {
5399
  position: absolute;
5400
  top: 0;
5401
  right: 0;
5402
  bottom: 0;
5403
  left: 0;
5404
  padding: var(--bs-card-img-overlay-padding);
5405
  border-radius: var(--bs-card-inner-border-radius);
5406
}
5407
 
5408
.card-img,
5409
.card-img-top,
5410
.card-img-bottom {
5411
  width: 100%;
5412
}
5413
 
5414
.card-img,
5415
.card-img-top {
5416
  border-top-left-radius: var(--bs-card-inner-border-radius);
5417
  border-top-right-radius: var(--bs-card-inner-border-radius);
5418
}
5419
 
5420
.card-img,
5421
.card-img-bottom {
5422
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5423
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5424
}
5425
 
16848 stevensc 5426
.card-group>.card {
16825 efrain 5427
  margin-bottom: var(--bs-card-group-margin);
5428
}
16848 stevensc 5429
 
16825 efrain 5430
@media (min-width: 576px) {
5431
  .card-group {
5432
    display: flex;
5433
    flex-flow: row wrap;
5434
  }
16848 stevensc 5435
 
5436
  .card-group>.card {
16825 efrain 5437
    flex: 1 0 0%;
5438
    margin-bottom: 0;
5439
  }
16848 stevensc 5440
 
5441
  .card-group>.card+.card {
16825 efrain 5442
    margin-left: 0;
5443
    border-left: 0;
5444
  }
16848 stevensc 5445
 
5446
  .card-group>.card:not(:last-child) {
16825 efrain 5447
    border-top-right-radius: 0;
5448
    border-bottom-right-radius: 0;
5449
  }
16848 stevensc 5450
 
5451
  .card-group>.card:not(:last-child) .card-img-top,
5452
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5453
    border-top-right-radius: 0;
5454
  }
16848 stevensc 5455
 
5456
  .card-group>.card:not(:last-child) .card-img-bottom,
5457
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5458
    border-bottom-right-radius: 0;
5459
  }
16848 stevensc 5460
 
5461
  .card-group>.card:not(:first-child) {
16825 efrain 5462
    border-top-left-radius: 0;
5463
    border-bottom-left-radius: 0;
5464
  }
16848 stevensc 5465
 
5466
  .card-group>.card:not(:first-child) .card-img-top,
5467
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5468
    border-top-left-radius: 0;
5469
  }
16848 stevensc 5470
 
5471
  .card-group>.card:not(:first-child) .card-img-bottom,
5472
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5473
    border-bottom-left-radius: 0;
5474
  }
5475
}
5476
 
5477
.accordion {
5478
  --bs-accordion-color: #000;
5479
  --bs-accordion-bg: #fff;
5480
  --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;
5481
  --bs-accordion-border-color: #e9ecef;
5482
  --bs-accordion-border-width: 1px;
5483
  --bs-accordion-border-radius: 0.25rem;
5484
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5485
  --bs-accordion-btn-padding-x: 1.25rem;
5486
  --bs-accordion-btn-padding-y: 1rem;
5487
  --bs-accordion-btn-color: #000;
5488
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5489
  --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");
5490
  --bs-accordion-btn-icon-width: 0.875rem;
5491
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5492
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5493
  --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");
5494
  --bs-accordion-btn-focus-border-color: #cbd1db;
5495
  --bs-accordion-btn-focus-box-shadow: none;
5496
  --bs-accordion-body-padding-x: 1.25rem;
5497
  --bs-accordion-body-padding-y: 1rem;
5498
  --bs-accordion-active-color: #5b66e6;
5499
  --bs-accordion-active-bg: #f0f1ff;
5500
}
5501
 
5502
.accordion-button {
5503
  position: relative;
5504
  display: flex;
5505
  align-items: center;
5506
  width: 100%;
5507
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5508
  font-size: 0.875rem;
5509
  color: var(--bs-accordion-btn-color);
5510
  text-align: left;
5511
  background-color: var(--bs-accordion-btn-bg);
5512
  border: 0;
5513
  border-radius: 0;
5514
  overflow-anchor: none;
5515
  transition: var(--bs-accordion-transition);
5516
}
16848 stevensc 5517
 
16825 efrain 5518
@media (prefers-reduced-motion: reduce) {
5519
  .accordion-button {
5520
    transition: none;
5521
  }
5522
}
16848 stevensc 5523
 
16825 efrain 5524
.accordion-button:not(.collapsed) {
5525
  color: var(--bs-accordion-active-color);
5526
  background-color: var(--bs-accordion-active-bg);
5527
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5528
}
16848 stevensc 5529
 
16825 efrain 5530
.accordion-button:not(.collapsed)::after {
5531
  background-image: var(--bs-accordion-btn-active-icon);
5532
  transform: var(--bs-accordion-btn-icon-transform);
5533
}
16848 stevensc 5534
 
16825 efrain 5535
.accordion-button::after {
5536
  flex-shrink: 0;
5537
  width: var(--bs-accordion-btn-icon-width);
5538
  height: var(--bs-accordion-btn-icon-width);
5539
  margin-left: auto;
5540
  content: "";
5541
  background-image: var(--bs-accordion-btn-icon);
5542
  background-repeat: no-repeat;
5543
  background-size: var(--bs-accordion-btn-icon-width);
5544
  transition: var(--bs-accordion-btn-icon-transition);
5545
}
16848 stevensc 5546
 
16825 efrain 5547
@media (prefers-reduced-motion: reduce) {
5548
  .accordion-button::after {
5549
    transition: none;
5550
  }
5551
}
16848 stevensc 5552
 
16825 efrain 5553
.accordion-button:hover {
5554
  z-index: 2;
5555
}
16848 stevensc 5556
 
16825 efrain 5557
.accordion-button:focus {
5558
  z-index: 3;
5559
  border-color: var(--bs-accordion-btn-focus-border-color);
5560
  outline: 0;
5561
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5562
}
5563
 
5564
.accordion-header {
5565
  margin-bottom: 0;
5566
}
5567
 
5568
.accordion-item {
5569
  color: var(--bs-accordion-color);
5570
  background-color: var(--bs-accordion-bg);
5571
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5572
}
16848 stevensc 5573
 
16825 efrain 5574
.accordion-item:first-of-type {
5575
  border-top-left-radius: var(--bs-accordion-border-radius);
5576
  border-top-right-radius: var(--bs-accordion-border-radius);
5577
}
16848 stevensc 5578
 
16825 efrain 5579
.accordion-item:first-of-type .accordion-button {
5580
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5581
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5582
}
16848 stevensc 5583
 
16825 efrain 5584
.accordion-item:not(:first-of-type) {
5585
  border-top: 0;
5586
}
16848 stevensc 5587
 
16825 efrain 5588
.accordion-item:last-of-type {
5589
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5590
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5591
}
16848 stevensc 5592
 
16825 efrain 5593
.accordion-item:last-of-type .accordion-button.collapsed {
5594
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5595
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5596
}
16848 stevensc 5597
 
16825 efrain 5598
.accordion-item:last-of-type .accordion-collapse {
5599
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5600
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5601
}
5602
 
5603
.accordion-body {
5604
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5605
}
5606
 
5607
.accordion-flush .accordion-collapse {
5608
  border-width: 0;
5609
}
16848 stevensc 5610
 
16825 efrain 5611
.accordion-flush .accordion-item {
5612
  border-right: 0;
5613
  border-left: 0;
5614
  border-radius: 0;
5615
}
16848 stevensc 5616
 
16825 efrain 5617
.accordion-flush .accordion-item:first-child {
5618
  border-top: 0;
5619
}
16848 stevensc 5620
 
16825 efrain 5621
.accordion-flush .accordion-item:last-child {
5622
  border-bottom: 0;
5623
}
16848 stevensc 5624
 
5625
.accordion-flush .accordion-item .accordion-button,
5626
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5627
  border-radius: 0;
5628
}
5629
 
5630
.breadcrumb {
5631
  --bs-breadcrumb-padding-x: 0;
5632
  --bs-breadcrumb-padding-y: 0;
5633
  --bs-breadcrumb-margin-bottom: 1rem;
5634
  --bs-breadcrumb-bg: ;
5635
  --bs-breadcrumb-border-radius: ;
5636
  --bs-breadcrumb-divider-color: #7987a1;
5637
  --bs-breadcrumb-item-padding-x: 0.5rem;
5638
  --bs-breadcrumb-item-active-color: #7987a1;
5639
  display: flex;
5640
  flex-wrap: wrap;
5641
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5642
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5643
  font-size: var(--bs-breadcrumb-font-size);
5644
  list-style: none;
5645
  background-color: var(--bs-breadcrumb-bg);
5646
  border-radius: var(--bs-breadcrumb-border-radius);
5647
}
5648
 
16848 stevensc 5649
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5650
  padding-left: var(--bs-breadcrumb-item-padding-x);
5651
}
16848 stevensc 5652
 
5653
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5654
  float: left;
5655
  padding-right: var(--bs-breadcrumb-item-padding-x);
5656
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5657
  content: var(--bs-breadcrumb-divider, "/")
5658
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5659
  ;
16825 efrain 5660
}
16848 stevensc 5661
 
16825 efrain 5662
.breadcrumb-item.active {
5663
  color: var(--bs-breadcrumb-item-active-color);
5664
}
5665
 
5666
.pagination {
5667
  --bs-pagination-padding-x: 1rem;
5668
  --bs-pagination-padding-y: 0.469rem;
5669
  --bs-pagination-font-size: 0.875rem;
5670
  --bs-pagination-color: #6571ff;
5671
  --bs-pagination-bg: #fff;
5672
  --bs-pagination-border-width: 1px;
5673
  --bs-pagination-border-color: #dee2e6;
5674
  --bs-pagination-border-radius: 0.25rem;
5675
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5676
  --bs-pagination-hover-bg: #e9ecef;
5677
  --bs-pagination-hover-border-color: #dee2e6;
5678
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5679
  --bs-pagination-focus-bg: #e9ecef;
5680
  --bs-pagination-focus-box-shadow: none;
5681
  --bs-pagination-active-color: #fff;
5682
  --bs-pagination-active-bg: #6571ff;
5683
  --bs-pagination-active-border-color: #6571ff;
5684
  --bs-pagination-disabled-color: #7987a1;
5685
  --bs-pagination-disabled-bg: #fff;
5686
  --bs-pagination-disabled-border-color: #dee2e6;
5687
  display: flex;
5688
  padding-left: 0;
5689
  list-style: none;
5690
}
5691
 
5692
.page-link {
5693
  position: relative;
5694
  display: block;
5695
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5696
  font-size: var(--bs-pagination-font-size);
5697
  color: var(--bs-pagination-color);
5698
  background-color: var(--bs-pagination-bg);
5699
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5700
  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;
5701
}
16848 stevensc 5702
 
16825 efrain 5703
@media (prefers-reduced-motion: reduce) {
5704
  .page-link {
5705
    transition: none;
5706
  }
5707
}
16848 stevensc 5708
 
16825 efrain 5709
.page-link:hover {
5710
  z-index: 2;
5711
  color: var(--bs-pagination-hover-color);
5712
  background-color: var(--bs-pagination-hover-bg);
5713
  border-color: var(--bs-pagination-hover-border-color);
5714
}
16848 stevensc 5715
 
16825 efrain 5716
.page-link:focus {
5717
  z-index: 3;
5718
  color: var(--bs-pagination-focus-color);
5719
  background-color: var(--bs-pagination-focus-bg);
5720
  outline: 0;
5721
  box-shadow: var(--bs-pagination-focus-box-shadow);
5722
}
16848 stevensc 5723
 
5724
.page-link.active,
5725
.active>.page-link {
16825 efrain 5726
  z-index: 3;
5727
  color: var(--bs-pagination-active-color);
5728
  background-color: var(--bs-pagination-active-bg);
5729
  border-color: var(--bs-pagination-active-border-color);
5730
}
16848 stevensc 5731
 
5732
.page-link.disabled,
5733
.disabled>.page-link {
16825 efrain 5734
  color: var(--bs-pagination-disabled-color);
5735
  pointer-events: none;
5736
  background-color: var(--bs-pagination-disabled-bg);
5737
  border-color: var(--bs-pagination-disabled-border-color);
5738
}
5739
 
5740
.page-item:not(:first-child) .page-link {
5741
  margin-left: -1px;
5742
}
16848 stevensc 5743
 
16825 efrain 5744
.page-item:first-child .page-link {
5745
  border-top-left-radius: var(--bs-pagination-border-radius);
5746
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5747
}
16848 stevensc 5748
 
16825 efrain 5749
.page-item:last-child .page-link {
5750
  border-top-right-radius: var(--bs-pagination-border-radius);
5751
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5752
}
5753
 
5754
.pagination-lg {
5755
  --bs-pagination-padding-x: 1.1rem;
5756
  --bs-pagination-padding-y: 0.5rem;
5757
  --bs-pagination-font-size: 1rem;
5758
  --bs-pagination-border-radius: 0.5rem;
5759
}
5760
 
5761
.pagination-sm {
5762
  --bs-pagination-padding-x: 0.75rem;
5763
  --bs-pagination-padding-y: 0.391rem;
5764
  --bs-pagination-font-size: 0.812rem;
5765
  --bs-pagination-border-radius: 0.25rem;
5766
}
5767
 
5768
.badge {
5769
  --bs-badge-padding-x: 0.65em;
5770
  --bs-badge-padding-y: 0.35em;
5771
  --bs-badge-font-size: 0.8em;
5772
  --bs-badge-font-weight: 500;
5773
  --bs-badge-color: #fff;
5774
  --bs-badge-border-radius: 0.25rem;
5775
  display: inline-block;
5776
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5777
  font-size: var(--bs-badge-font-size);
5778
  font-weight: var(--bs-badge-font-weight);
5779
  line-height: 1;
5780
  color: var(--bs-badge-color);
5781
  text-align: center;
5782
  white-space: nowrap;
5783
  vertical-align: baseline;
5784
  border-radius: var(--bs-badge-border-radius);
5785
}
16848 stevensc 5786
 
16825 efrain 5787
.badge:empty {
5788
  display: none;
5789
}
5790
 
16848 stevensc 5791
.btn .badge,
5792
.wizard>.actions a .badge,
5793
div.tox .tox-button .badge,
5794
.swal2-popup .swal2-actions button .badge,
5795
.fc .fc-button-primary .badge {
16825 efrain 5796
  position: relative;
5797
  top: -1px;
5798
}
5799
 
5800
.alert {
5801
  --bs-alert-bg: transparent;
5802
  --bs-alert-padding-x: 1rem;
5803
  --bs-alert-padding-y: 1rem;
5804
  --bs-alert-margin-bottom: 1rem;
5805
  --bs-alert-color: inherit;
5806
  --bs-alert-border-color: transparent;
5807
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5808
  --bs-alert-border-radius: 0.25rem;
5809
  position: relative;
5810
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5811
  margin-bottom: var(--bs-alert-margin-bottom);
5812
  color: var(--bs-alert-color);
5813
  background-color: var(--bs-alert-bg);
5814
  border: var(--bs-alert-border);
5815
  border-radius: var(--bs-alert-border-radius);
5816
}
5817
 
5818
.alert-heading {
5819
  color: inherit;
5820
}
5821
 
5822
.alert-link {
5823
  font-weight: 500;
5824
}
5825
 
5826
.alert-dismissible {
5827
  padding-right: 3rem;
5828
}
16848 stevensc 5829
 
16825 efrain 5830
.alert-dismissible .btn-close {
5831
  position: absolute;
5832
  top: 0;
5833
  right: 0;
5834
  z-index: 2;
5835
  padding: 1.25rem 1rem;
5836
}
5837
 
5838
.alert-primary {
5839
  --bs-alert-color: #3d4499;
5840
  --bs-alert-bg: #e0e3ff;
5841
  --bs-alert-border-color: #d1d4ff;
5842
}
16848 stevensc 5843
 
16825 efrain 5844
.alert-primary .alert-link {
5845
  color: #31367a;
5846
}
5847
 
5848
.alert-secondary {
5849
  --bs-alert-color: #495161;
5850
  --bs-alert-bg: #e4e7ec;
5851
  --bs-alert-border-color: #d7dbe3;
5852
}
16848 stevensc 5853
 
16825 efrain 5854
.alert-secondary .alert-link {
5855
  color: #3a414e;
5856
}
5857
 
5858
.alert-success {
5859
  --bs-alert-color: #03622c;
5860
  --bs-alert-bg: #cdeddb;
5861
  --bs-alert-border-color: #b4e3c9;
5862
}
16848 stevensc 5863
 
16825 efrain 5864
.alert-success .alert-link {
5865
  color: #024e23;
5866
}
5867
 
5868
.alert-info {
5869
  --bs-alert-color: #3d7d7d;
5870
  --bs-alert-bg: #e0f6f6;
5871
  --bs-alert-border-color: #d1f1f1;
5872
}
16848 stevensc 5873
 
16825 efrain 5874
.alert-info .alert-link {
5875
  color: #316464;
5876
}
5877
 
5878
.alert-warning {
5879
  --bs-alert-color: #977104;
5880
  --bs-alert-bg: #fef2cd;
5881
  --bs-alert-border-color: #feebb4;
5882
}
16848 stevensc 5883
 
16825 efrain 5884
.alert-warning .alert-link {
5885
  color: #795a03;
5886
}
5887
 
5888
.alert-danger {
5889
  --bs-alert-color: #991f3d;
5890
  --bs-alert-bg: #ffd6e0;
5891
  --bs-alert-border-color: #ffc2d1;
5892
}
16848 stevensc 5893
 
16825 efrain 5894
.alert-danger .alert-link {
5895
  color: #7a1931;
5896
}
5897
 
5898
.alert-light {
5899
  --bs-alert-color: #8c8e8f;
5900
  --bs-alert-bg: #fbfbfc;
5901
  --bs-alert-border-color: #f8f9fa;
5902
}
16848 stevensc 5903
 
16825 efrain 5904
.alert-light .alert-link {
5905
  color: #707272;
5906
}
5907
 
5908
.alert-dark {
5909
  --bs-alert-color: #04070e;
5910
  --bs-alert-bg: #cdced1;
5911
  --bs-alert-border-color: #b4b6b9;
5912
}
16848 stevensc 5913
 
16825 efrain 5914
.alert-dark .alert-link {
5915
  color: #03060b;
5916
}
5917
 
5918
@keyframes progress-bar-stripes {
5919
  0% {
5920
    background-position-x: 1rem;
5921
  }
5922
}
16848 stevensc 5923
 
16825 efrain 5924
.progress {
5925
  --bs-progress-height: 1rem;
5926
  --bs-progress-font-size: 0.65625rem;
5927
  --bs-progress-bg: #e9ecef;
5928
  --bs-progress-border-radius: 0.25rem;
5929
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5930
  --bs-progress-bar-color: #fff;
5931
  --bs-progress-bar-bg: #6571ff;
5932
  --bs-progress-bar-transition: width 0.6s ease;
5933
  display: flex;
5934
  height: var(--bs-progress-height);
5935
  overflow: hidden;
5936
  font-size: var(--bs-progress-font-size);
5937
  background-color: var(--bs-progress-bg);
5938
  border-radius: var(--bs-progress-border-radius);
5939
}
5940
 
5941
.progress-bar {
5942
  display: flex;
5943
  flex-direction: column;
5944
  justify-content: center;
5945
  overflow: hidden;
5946
  color: var(--bs-progress-bar-color);
5947
  text-align: center;
5948
  white-space: nowrap;
5949
  background-color: var(--bs-progress-bar-bg);
5950
  transition: var(--bs-progress-bar-transition);
5951
}
16848 stevensc 5952
 
16825 efrain 5953
@media (prefers-reduced-motion: reduce) {
5954
  .progress-bar {
5955
    transition: none;
5956
  }
5957
}
5958
 
5959
.progress-bar-striped {
5960
  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);
5961
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5962
}
5963
 
5964
.progress-bar-animated {
5965
  animation: 1s linear infinite progress-bar-stripes;
5966
}
16848 stevensc 5967
 
16825 efrain 5968
@media (prefers-reduced-motion: reduce) {
5969
  .progress-bar-animated {
5970
    animation: none;
5971
  }
5972
}
5973
 
5974
.list-group {
5975
  --bs-list-group-color: #060c17;
5976
  --bs-list-group-bg: #fff;
5977
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5978
  --bs-list-group-border-width: 1px;
5979
  --bs-list-group-border-radius: 0.25rem;
5980
  --bs-list-group-item-padding-x: 1.25rem;
5981
  --bs-list-group-item-padding-y: 0.75rem;
5982
  --bs-list-group-action-color: #41516c;
5983
  --bs-list-group-action-hover-color: #41516c;
5984
  --bs-list-group-action-hover-bg: #f8f9fa;
5985
  --bs-list-group-action-active-color: #000;
5986
  --bs-list-group-action-active-bg: #e9ecef;
5987
  --bs-list-group-disabled-color: #7987a1;
5988
  --bs-list-group-disabled-bg: #fff;
5989
  --bs-list-group-active-color: #fff;
5990
  --bs-list-group-active-bg: #6571ff;
5991
  --bs-list-group-active-border-color: #6571ff;
5992
  display: flex;
5993
  flex-direction: column;
5994
  padding-left: 0;
5995
  margin-bottom: 0;
5996
  border-radius: var(--bs-list-group-border-radius);
5997
}
5998
 
5999
.list-group-numbered {
6000
  list-style-type: none;
6001
  counter-reset: section;
6002
}
16848 stevensc 6003
 
6004
.list-group-numbered>.list-group-item::before {
16825 efrain 6005
  content: counters(section, ".") ". ";
6006
  counter-increment: section;
6007
}
6008
 
6009
.list-group-item-action {
6010
  width: 100%;
6011
  color: var(--bs-list-group-action-color);
6012
  text-align: inherit;
6013
}
16848 stevensc 6014
 
6015
.list-group-item-action:hover,
6016
.list-group-item-action:focus {
16825 efrain 6017
  z-index: 1;
6018
  color: var(--bs-list-group-action-hover-color);
6019
  text-decoration: none;
6020
  background-color: var(--bs-list-group-action-hover-bg);
6021
}
16848 stevensc 6022
 
16825 efrain 6023
.list-group-item-action:active {
6024
  color: var(--bs-list-group-action-active-color);
6025
  background-color: var(--bs-list-group-action-active-bg);
6026
}
6027
 
6028
.list-group-item {
6029
  position: relative;
6030
  display: block;
6031
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6032
  color: var(--bs-list-group-color);
6033
  background-color: var(--bs-list-group-bg);
6034
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6035
}
16848 stevensc 6036
 
16825 efrain 6037
.list-group-item:first-child {
6038
  border-top-left-radius: inherit;
6039
  border-top-right-radius: inherit;
6040
}
16848 stevensc 6041
 
16825 efrain 6042
.list-group-item:last-child {
6043
  border-bottom-right-radius: inherit;
6044
  border-bottom-left-radius: inherit;
6045
}
16848 stevensc 6046
 
6047
.list-group-item.disabled,
6048
.list-group-item:disabled {
16825 efrain 6049
  color: var(--bs-list-group-disabled-color);
6050
  pointer-events: none;
6051
  background-color: var(--bs-list-group-disabled-bg);
6052
}
16848 stevensc 6053
 
16825 efrain 6054
.list-group-item.active {
6055
  z-index: 2;
6056
  color: var(--bs-list-group-active-color);
6057
  background-color: var(--bs-list-group-active-bg);
6058
  border-color: var(--bs-list-group-active-border-color);
6059
}
16848 stevensc 6060
 
6061
.list-group-item+.list-group-item {
16825 efrain 6062
  border-top-width: 0;
6063
}
16848 stevensc 6064
 
6065
.list-group-item+.list-group-item.active {
16825 efrain 6066
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6067
  border-top-width: var(--bs-list-group-border-width);
6068
}
6069
 
6070
.list-group-horizontal {
6071
  flex-direction: row;
6072
}
16848 stevensc 6073
 
6074
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6075
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6076
  border-top-right-radius: 0;
6077
}
16848 stevensc 6078
 
6079
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6080
  border-top-right-radius: var(--bs-list-group-border-radius);
6081
  border-bottom-left-radius: 0;
6082
}
16848 stevensc 6083
 
6084
.list-group-horizontal>.list-group-item.active {
16825 efrain 6085
  margin-top: 0;
6086
}
16848 stevensc 6087
 
6088
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6089
  border-top-width: var(--bs-list-group-border-width);
6090
  border-left-width: 0;
6091
}
16848 stevensc 6092
 
6093
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6094
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6095
  border-left-width: var(--bs-list-group-border-width);
6096
}
6097
 
6098
@media (min-width: 576px) {
6099
  .list-group-horizontal-sm {
6100
    flex-direction: row;
6101
  }
16848 stevensc 6102
 
6103
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6104
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6105
    border-top-right-radius: 0;
6106
  }
16848 stevensc 6107
 
6108
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6109
    border-top-right-radius: var(--bs-list-group-border-radius);
6110
    border-bottom-left-radius: 0;
6111
  }
16848 stevensc 6112
 
6113
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6114
    margin-top: 0;
6115
  }
16848 stevensc 6116
 
6117
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6118
    border-top-width: var(--bs-list-group-border-width);
6119
    border-left-width: 0;
6120
  }
16848 stevensc 6121
 
6122
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6123
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6124
    border-left-width: var(--bs-list-group-border-width);
6125
  }
6126
}
16848 stevensc 6127
 
16825 efrain 6128
@media (min-width: 768px) {
6129
  .list-group-horizontal-md {
6130
    flex-direction: row;
6131
  }
16848 stevensc 6132
 
6133
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6134
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6135
    border-top-right-radius: 0;
6136
  }
16848 stevensc 6137
 
6138
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6139
    border-top-right-radius: var(--bs-list-group-border-radius);
6140
    border-bottom-left-radius: 0;
6141
  }
16848 stevensc 6142
 
6143
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6144
    margin-top: 0;
6145
  }
16848 stevensc 6146
 
6147
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6148
    border-top-width: var(--bs-list-group-border-width);
6149
    border-left-width: 0;
6150
  }
16848 stevensc 6151
 
6152
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6153
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6154
    border-left-width: var(--bs-list-group-border-width);
6155
  }
6156
}
16848 stevensc 6157
 
16825 efrain 6158
@media (min-width: 992px) {
6159
  .list-group-horizontal-lg {
6160
    flex-direction: row;
6161
  }
16848 stevensc 6162
 
6163
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6164
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6165
    border-top-right-radius: 0;
6166
  }
16848 stevensc 6167
 
6168
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6169
    border-top-right-radius: var(--bs-list-group-border-radius);
6170
    border-bottom-left-radius: 0;
6171
  }
16848 stevensc 6172
 
6173
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6174
    margin-top: 0;
6175
  }
16848 stevensc 6176
 
6177
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6178
    border-top-width: var(--bs-list-group-border-width);
6179
    border-left-width: 0;
6180
  }
16848 stevensc 6181
 
6182
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6183
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6184
    border-left-width: var(--bs-list-group-border-width);
6185
  }
6186
}
16848 stevensc 6187
 
16825 efrain 6188
@media (min-width: 1200px) {
6189
  .list-group-horizontal-xl {
6190
    flex-direction: row;
6191
  }
16848 stevensc 6192
 
6193
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6194
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6195
    border-top-right-radius: 0;
6196
  }
16848 stevensc 6197
 
6198
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6199
    border-top-right-radius: var(--bs-list-group-border-radius);
6200
    border-bottom-left-radius: 0;
6201
  }
16848 stevensc 6202
 
6203
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6204
    margin-top: 0;
6205
  }
16848 stevensc 6206
 
6207
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6208
    border-top-width: var(--bs-list-group-border-width);
6209
    border-left-width: 0;
6210
  }
16848 stevensc 6211
 
6212
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6213
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6214
    border-left-width: var(--bs-list-group-border-width);
6215
  }
6216
}
16848 stevensc 6217
 
16825 efrain 6218
@media (min-width: 1400px) {
6219
  .list-group-horizontal-xxl {
6220
    flex-direction: row;
6221
  }
16848 stevensc 6222
 
6223
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6224
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6225
    border-top-right-radius: 0;
6226
  }
16848 stevensc 6227
 
6228
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6229
    border-top-right-radius: var(--bs-list-group-border-radius);
6230
    border-bottom-left-radius: 0;
6231
  }
16848 stevensc 6232
 
6233
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6234
    margin-top: 0;
6235
  }
16848 stevensc 6236
 
6237
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6238
    border-top-width: var(--bs-list-group-border-width);
6239
    border-left-width: 0;
6240
  }
16848 stevensc 6241
 
6242
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6243
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6244
    border-left-width: var(--bs-list-group-border-width);
6245
  }
6246
}
16848 stevensc 6247
 
16825 efrain 6248
.list-group-flush {
6249
  border-radius: 0;
6250
}
16848 stevensc 6251
 
6252
.list-group-flush>.list-group-item {
16825 efrain 6253
  border-width: 0 0 var(--bs-list-group-border-width);
6254
}
16848 stevensc 6255
 
6256
.list-group-flush>.list-group-item:last-child {
16825 efrain 6257
  border-bottom-width: 0;
6258
}
6259
 
6260
.list-group-item-primary {
6261
  color: #3d4499;
6262
  background-color: #e0e3ff;
6263
}
16848 stevensc 6264
 
6265
.list-group-item-primary.list-group-item-action:hover,
6266
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6267
  color: #3d4499;
6268
  background-color: #cacce6;
6269
}
16848 stevensc 6270
 
16825 efrain 6271
.list-group-item-primary.list-group-item-action.active {
6272
  color: #fff;
6273
  background-color: #3d4499;
6274
  border-color: #3d4499;
6275
}
6276
 
6277
.list-group-item-secondary {
6278
  color: #495161;
6279
  background-color: #e4e7ec;
6280
}
16848 stevensc 6281
 
6282
.list-group-item-secondary.list-group-item-action:hover,
6283
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6284
  color: #495161;
6285
  background-color: #cdd0d4;
6286
}
16848 stevensc 6287
 
16825 efrain 6288
.list-group-item-secondary.list-group-item-action.active {
6289
  color: #fff;
6290
  background-color: #495161;
6291
  border-color: #495161;
6292
}
6293
 
6294
.list-group-item-success {
6295
  color: #03622c;
6296
  background-color: #cdeddb;
6297
}
16848 stevensc 6298
 
6299
.list-group-item-success.list-group-item-action:hover,
6300
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6301
  color: #03622c;
6302
  background-color: #b9d5c5;
6303
}
16848 stevensc 6304
 
16825 efrain 6305
.list-group-item-success.list-group-item-action.active {
6306
  color: #fff;
6307
  background-color: #03622c;
6308
  border-color: #03622c;
6309
}
6310
 
6311
.list-group-item-info {
6312
  color: #3d7d7d;
6313
  background-color: #e0f6f6;
6314
}
16848 stevensc 6315
 
6316
.list-group-item-info.list-group-item-action:hover,
6317
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6318
  color: #3d7d7d;
6319
  background-color: #cadddd;
6320
}
16848 stevensc 6321
 
16825 efrain 6322
.list-group-item-info.list-group-item-action.active {
6323
  color: #fff;
6324
  background-color: #3d7d7d;
6325
  border-color: #3d7d7d;
6326
}
6327
 
6328
.list-group-item-warning {
6329
  color: #977104;
6330
  background-color: #fef2cd;
6331
}
16848 stevensc 6332
 
6333
.list-group-item-warning.list-group-item-action:hover,
6334
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6335
  color: #977104;
6336
  background-color: #e5dab9;
6337
}
16848 stevensc 6338
 
16825 efrain 6339
.list-group-item-warning.list-group-item-action.active {
6340
  color: #fff;
6341
  background-color: #977104;
6342
  border-color: #977104;
6343
}
6344
 
6345
.list-group-item-danger {
6346
  color: #991f3d;
6347
  background-color: #ffd6e0;
6348
}
16848 stevensc 6349
 
6350
.list-group-item-danger.list-group-item-action:hover,
6351
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6352
  color: #991f3d;
6353
  background-color: #e6c1ca;
6354
}
16848 stevensc 6355
 
16825 efrain 6356
.list-group-item-danger.list-group-item-action.active {
6357
  color: #fff;
6358
  background-color: #991f3d;
6359
  border-color: #991f3d;
6360
}
6361
 
6362
.list-group-item-light {
6363
  color: #8c8e8f;
6364
  background-color: #fbfbfc;
6365
}
16848 stevensc 6366
 
6367
.list-group-item-light.list-group-item-action:hover,
6368
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6369
  color: #8c8e8f;
6370
  background-color: #e2e2e3;
6371
}
16848 stevensc 6372
 
16825 efrain 6373
.list-group-item-light.list-group-item-action.active {
6374
  color: #fff;
6375
  background-color: #8c8e8f;
6376
  border-color: #8c8e8f;
6377
}
6378
 
6379
.list-group-item-dark {
6380
  color: #04070e;
6381
  background-color: #cdced1;
6382
}
16848 stevensc 6383
 
6384
.list-group-item-dark.list-group-item-action:hover,
6385
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6386
  color: #04070e;
6387
  background-color: #b9b9bc;
6388
}
16848 stevensc 6389
 
16825 efrain 6390
.list-group-item-dark.list-group-item-action.active {
6391
  color: #fff;
6392
  background-color: #04070e;
6393
  border-color: #04070e;
6394
}
6395
 
6396
.btn-close {
6397
  box-sizing: content-box;
6398
  width: 0.8em;
6399
  height: 0.8em;
6400
  padding: 0.25em 0.25em;
6401
  color: #000;
6402
  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;
6403
  border: 0;
6404
  border-radius: 0.25rem;
6405
  opacity: 0.5;
6406
}
16848 stevensc 6407
 
16825 efrain 6408
.btn-close:hover {
6409
  color: #000;
6410
  text-decoration: none;
6411
  opacity: 0.75;
6412
}
16848 stevensc 6413
 
16825 efrain 6414
.btn-close:focus {
6415
  outline: 0;
6416
  box-shadow: none;
6417
  opacity: 1;
6418
}
16848 stevensc 6419
 
6420
.btn-close:disabled,
6421
.btn-close.disabled {
16825 efrain 6422
  pointer-events: none;
6423
  user-select: none;
6424
  opacity: 0.25;
6425
}
6426
 
6427
.btn-close-white {
6428
  filter: invert(1) grayscale(100%) brightness(200%);
6429
}
6430
 
6431
.toast {
6432
  --bs-toast-zindex: 1090;
6433
  --bs-toast-padding-x: 0.75rem;
6434
  --bs-toast-padding-y: 0.5rem;
6435
  --bs-toast-spacing: 1.5rem;
6436
  --bs-toast-max-width: 350px;
6437
  --bs-toast-font-size: 0.875rem;
6438
  --bs-toast-color: ;
6439
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6440
  --bs-toast-border-width: 1px;
6441
  --bs-toast-border-color: var(--bs-border-color-translucent);
6442
  --bs-toast-border-radius: 0.25rem;
6443
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6444
  --bs-toast-header-color: #7987a1;
6445
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6446
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6447
  width: var(--bs-toast-max-width);
6448
  max-width: 100%;
6449
  font-size: var(--bs-toast-font-size);
6450
  color: var(--bs-toast-color);
6451
  pointer-events: auto;
6452
  background-color: var(--bs-toast-bg);
6453
  background-clip: padding-box;
6454
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6455
  box-shadow: var(--bs-toast-box-shadow);
6456
  border-radius: var(--bs-toast-border-radius);
6457
}
16848 stevensc 6458
 
16825 efrain 6459
.toast.showing {
6460
  opacity: 0;
6461
}
16848 stevensc 6462
 
16825 efrain 6463
.toast:not(.show) {
6464
  display: none;
6465
}
6466
 
6467
.toast-container {
6468
  --bs-toast-zindex: 1090;
6469
  position: absolute;
6470
  z-index: var(--bs-toast-zindex);
6471
  width: max-content;
6472
  max-width: 100%;
6473
  pointer-events: none;
6474
}
16848 stevensc 6475
 
6476
.toast-container> :not(:last-child) {
16825 efrain 6477
  margin-bottom: var(--bs-toast-spacing);
6478
}
6479
 
6480
.toast-header {
6481
  display: flex;
6482
  align-items: center;
6483
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6484
  color: var(--bs-toast-header-color);
6485
  background-color: var(--bs-toast-header-bg);
6486
  background-clip: padding-box;
6487
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6488
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6489
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6490
}
16848 stevensc 6491
 
16825 efrain 6492
.toast-header .btn-close {
6493
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6494
  margin-left: var(--bs-toast-padding-x);
6495
}
6496
 
6497
.toast-body {
6498
  padding: var(--bs-toast-padding-x);
6499
  word-wrap: break-word;
6500
}
6501
 
6502
.modal {
6503
  --bs-modal-zindex: 1055;
6504
  --bs-modal-width: 500px;
6505
  --bs-modal-padding: 1rem;
6506
  --bs-modal-margin: 0.5rem;
6507
  --bs-modal-color: ;
6508
  --bs-modal-bg: #fff;
6509
  --bs-modal-border-color: #e9ecef;
6510
  --bs-modal-border-width: 1px;
6511
  --bs-modal-border-radius: 0.5rem;
6512
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6513
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6514
  --bs-modal-header-padding-x: 1rem;
6515
  --bs-modal-header-padding-y: 1rem;
6516
  --bs-modal-header-padding: 1rem 1rem;
6517
  --bs-modal-header-border-color: var(--bs-border-color);
6518
  --bs-modal-header-border-width: 1px;
6519
  --bs-modal-title-line-height: 1.5;
6520
  --bs-modal-footer-gap: 0.5rem;
6521
  --bs-modal-footer-bg: ;
6522
  --bs-modal-footer-border-color: var(--bs-border-color);
6523
  --bs-modal-footer-border-width: 1px;
6524
  position: fixed;
6525
  top: 0;
6526
  left: 0;
6527
  z-index: var(--bs-modal-zindex);
6528
  display: none;
6529
  width: 100%;
6530
  height: 100%;
6531
  overflow-x: hidden;
6532
  overflow-y: auto;
6533
  outline: 0;
6534
}
6535
 
6536
.modal-dialog {
6537
  position: relative;
6538
  width: auto;
6539
  margin: var(--bs-modal-margin);
6540
  pointer-events: none;
6541
}
16848 stevensc 6542
 
16825 efrain 6543
.modal.fade .modal-dialog {
6544
  transition: transform 0.4s ease;
6545
  transform: scale(0.8);
6546
}
16848 stevensc 6547
 
16825 efrain 6548
@media (prefers-reduced-motion: reduce) {
6549
  .modal.fade .modal-dialog {
6550
    transition: none;
6551
  }
6552
}
16848 stevensc 6553
 
16825 efrain 6554
.modal.show .modal-dialog {
6555
  transform: none;
6556
}
16848 stevensc 6557
 
16825 efrain 6558
.modal.modal-static .modal-dialog {
6559
  transform: scale(1.02);
6560
}
6561
 
6562
.modal-dialog-scrollable {
6563
  height: calc(100% - var(--bs-modal-margin) * 2);
6564
}
16848 stevensc 6565
 
16825 efrain 6566
.modal-dialog-scrollable .modal-content {
6567
  max-height: 100%;
6568
  overflow: hidden;
6569
}
16848 stevensc 6570
 
16825 efrain 6571
.modal-dialog-scrollable .modal-body {
6572
  overflow-y: auto;
6573
}
6574
 
6575
.modal-dialog-centered {
6576
  display: flex;
6577
  align-items: center;
6578
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6579
}
6580
 
6581
.modal-content {
6582
  position: relative;
6583
  display: flex;
6584
  flex-direction: column;
6585
  width: 100%;
6586
  color: var(--bs-modal-color);
6587
  pointer-events: auto;
6588
  background-color: var(--bs-modal-bg);
6589
  background-clip: padding-box;
6590
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6591
  border-radius: var(--bs-modal-border-radius);
6592
  outline: 0;
6593
}
6594
 
6595
.modal-backdrop {
6596
  --bs-backdrop-zindex: 1050;
6597
  --bs-backdrop-bg: #000;
6598
  --bs-backdrop-opacity: 0.5;
6599
  position: fixed;
6600
  top: 0;
6601
  left: 0;
6602
  z-index: var(--bs-backdrop-zindex);
6603
  width: 100vw;
6604
  height: 100vh;
6605
  background-color: var(--bs-backdrop-bg);
6606
}
16848 stevensc 6607
 
16825 efrain 6608
.modal-backdrop.fade {
6609
  opacity: 0;
6610
}
16848 stevensc 6611
 
16825 efrain 6612
.modal-backdrop.show {
6613
  opacity: var(--bs-backdrop-opacity);
6614
}
6615
 
6616
.modal-header {
6617
  display: flex;
6618
  flex-shrink: 0;
6619
  align-items: center;
6620
  justify-content: space-between;
6621
  padding: var(--bs-modal-header-padding);
6622
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6623
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6624
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6625
}
16848 stevensc 6626
 
16825 efrain 6627
.modal-header .btn-close {
6628
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6629
  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;
6630
}
6631
 
6632
.modal-title {
6633
  margin-bottom: 0;
6634
  line-height: var(--bs-modal-title-line-height);
6635
}
6636
 
6637
.modal-body {
6638
  position: relative;
6639
  flex: 1 1 auto;
6640
  padding: var(--bs-modal-padding);
6641
}
6642
 
6643
.modal-footer {
6644
  display: flex;
6645
  flex-shrink: 0;
6646
  flex-wrap: wrap;
6647
  align-items: center;
6648
  justify-content: flex-end;
6649
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6650
  background-color: var(--bs-modal-footer-bg);
6651
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6652
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6653
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6654
}
16848 stevensc 6655
 
6656
.modal-footer>* {
16825 efrain 6657
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6658
}
6659
 
6660
@media (min-width: 576px) {
6661
  .modal {
6662
    --bs-modal-margin: 1.75rem;
6663
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6664
  }
16848 stevensc 6665
 
16825 efrain 6666
  .modal-dialog {
6667
    max-width: var(--bs-modal-width);
6668
    margin-right: auto;
6669
    margin-left: auto;
6670
  }
16848 stevensc 6671
 
16825 efrain 6672
  .modal-sm {
6673
    --bs-modal-width: 300px;
6674
  }
6675
}
16848 stevensc 6676
 
16825 efrain 6677
@media (min-width: 992px) {
16848 stevensc 6678
 
16825 efrain 6679
  .modal-lg,
6680
  .modal-xl {
6681
    --bs-modal-width: 800px;
6682
  }
6683
}
16848 stevensc 6684
 
16825 efrain 6685
@media (min-width: 1200px) {
6686
  .modal-xl {
6687
    --bs-modal-width: 1140px;
6688
  }
6689
}
16848 stevensc 6690
 
16825 efrain 6691
.modal-fullscreen {
6692
  width: 100vw;
6693
  max-width: none;
6694
  height: 100%;
6695
  margin: 0;
6696
}
16848 stevensc 6697
 
16825 efrain 6698
.modal-fullscreen .modal-content {
6699
  height: 100%;
6700
  border: 0;
6701
  border-radius: 0;
6702
}
16848 stevensc 6703
 
16825 efrain 6704
.modal-fullscreen .modal-header,
6705
.modal-fullscreen .modal-footer {
6706
  border-radius: 0;
6707
}
16848 stevensc 6708
 
16825 efrain 6709
.modal-fullscreen .modal-body {
6710
  overflow-y: auto;
6711
}
6712
 
6713
@media (max-width: 575.98px) {
6714
  .modal-fullscreen-sm-down {
6715
    width: 100vw;
6716
    max-width: none;
6717
    height: 100%;
6718
    margin: 0;
6719
  }
16848 stevensc 6720
 
16825 efrain 6721
  .modal-fullscreen-sm-down .modal-content {
6722
    height: 100%;
6723
    border: 0;
6724
    border-radius: 0;
6725
  }
16848 stevensc 6726
 
16825 efrain 6727
  .modal-fullscreen-sm-down .modal-header,
6728
  .modal-fullscreen-sm-down .modal-footer {
6729
    border-radius: 0;
6730
  }
16848 stevensc 6731
 
16825 efrain 6732
  .modal-fullscreen-sm-down .modal-body {
6733
    overflow-y: auto;
6734
  }
6735
}
16848 stevensc 6736
 
16825 efrain 6737
@media (max-width: 767.98px) {
6738
  .modal-fullscreen-md-down {
6739
    width: 100vw;
6740
    max-width: none;
6741
    height: 100%;
6742
    margin: 0;
6743
  }
16848 stevensc 6744
 
16825 efrain 6745
  .modal-fullscreen-md-down .modal-content {
6746
    height: 100%;
6747
    border: 0;
6748
    border-radius: 0;
6749
  }
16848 stevensc 6750
 
16825 efrain 6751
  .modal-fullscreen-md-down .modal-header,
6752
  .modal-fullscreen-md-down .modal-footer {
6753
    border-radius: 0;
6754
  }
16848 stevensc 6755
 
16825 efrain 6756
  .modal-fullscreen-md-down .modal-body {
6757
    overflow-y: auto;
6758
  }
6759
}
16848 stevensc 6760
 
16825 efrain 6761
@media (max-width: 991.98px) {
6762
  .modal-fullscreen-lg-down {
6763
    width: 100vw;
6764
    max-width: none;
6765
    height: 100%;
6766
    margin: 0;
6767
  }
16848 stevensc 6768
 
16825 efrain 6769
  .modal-fullscreen-lg-down .modal-content {
6770
    height: 100%;
6771
    border: 0;
6772
    border-radius: 0;
6773
  }
16848 stevensc 6774
 
16825 efrain 6775
  .modal-fullscreen-lg-down .modal-header,
6776
  .modal-fullscreen-lg-down .modal-footer {
6777
    border-radius: 0;
6778
  }
16848 stevensc 6779
 
16825 efrain 6780
  .modal-fullscreen-lg-down .modal-body {
6781
    overflow-y: auto;
6782
  }
6783
}
16848 stevensc 6784
 
16825 efrain 6785
@media (max-width: 1199.98px) {
6786
  .modal-fullscreen-xl-down {
6787
    width: 100vw;
6788
    max-width: none;
6789
    height: 100%;
6790
    margin: 0;
6791
  }
16848 stevensc 6792
 
16825 efrain 6793
  .modal-fullscreen-xl-down .modal-content {
6794
    height: 100%;
6795
    border: 0;
6796
    border-radius: 0;
6797
  }
16848 stevensc 6798
 
16825 efrain 6799
  .modal-fullscreen-xl-down .modal-header,
6800
  .modal-fullscreen-xl-down .modal-footer {
6801
    border-radius: 0;
6802
  }
16848 stevensc 6803
 
16825 efrain 6804
  .modal-fullscreen-xl-down .modal-body {
6805
    overflow-y: auto;
6806
  }
6807
}
16848 stevensc 6808
 
16825 efrain 6809
@media (max-width: 1399.98px) {
6810
  .modal-fullscreen-xxl-down {
6811
    width: 100vw;
6812
    max-width: none;
6813
    height: 100%;
6814
    margin: 0;
6815
  }
16848 stevensc 6816
 
16825 efrain 6817
  .modal-fullscreen-xxl-down .modal-content {
6818
    height: 100%;
6819
    border: 0;
6820
    border-radius: 0;
6821
  }
16848 stevensc 6822
 
16825 efrain 6823
  .modal-fullscreen-xxl-down .modal-header,
6824
  .modal-fullscreen-xxl-down .modal-footer {
6825
    border-radius: 0;
6826
  }
16848 stevensc 6827
 
16825 efrain 6828
  .modal-fullscreen-xxl-down .modal-body {
6829
    overflow-y: auto;
6830
  }
6831
}
16848 stevensc 6832
 
16825 efrain 6833
.tooltip {
6834
  --bs-tooltip-zindex: 1080;
6835
  --bs-tooltip-max-width: 200px;
6836
  --bs-tooltip-padding-x: 0.5rem;
6837
  --bs-tooltip-padding-y: 0.25rem;
6838
  --bs-tooltip-margin: ;
6839
  --bs-tooltip-font-size: 0.812rem;
6840
  --bs-tooltip-color: #fff;
6841
  --bs-tooltip-bg: #000;
6842
  --bs-tooltip-border-radius: 0.25rem;
6843
  --bs-tooltip-opacity: 0.9;
6844
  --bs-tooltip-arrow-width: 0.8rem;
6845
  --bs-tooltip-arrow-height: 0.4rem;
6846
  z-index: var(--bs-tooltip-zindex);
6847
  display: block;
6848
  padding: var(--bs-tooltip-arrow-height);
6849
  margin: var(--bs-tooltip-margin);
6850
  font-family: var(--bs-font-sans-serif);
6851
  font-style: normal;
6852
  font-weight: 400;
6853
  line-height: 1.5;
6854
  text-align: left;
6855
  text-align: start;
6856
  text-decoration: none;
6857
  text-shadow: none;
6858
  text-transform: none;
6859
  letter-spacing: normal;
6860
  word-break: normal;
6861
  white-space: normal;
6862
  word-spacing: normal;
6863
  line-break: auto;
6864
  font-size: var(--bs-tooltip-font-size);
6865
  word-wrap: break-word;
6866
  opacity: 0;
6867
}
16848 stevensc 6868
 
16825 efrain 6869
.tooltip.show {
6870
  opacity: var(--bs-tooltip-opacity);
6871
}
16848 stevensc 6872
 
16825 efrain 6873
.tooltip .tooltip-arrow {
6874
  display: block;
6875
  width: var(--bs-tooltip-arrow-width);
6876
  height: var(--bs-tooltip-arrow-height);
6877
}
16848 stevensc 6878
 
16825 efrain 6879
.tooltip .tooltip-arrow::before {
6880
  position: absolute;
6881
  content: "";
6882
  border-color: transparent;
6883
  border-style: solid;
6884
}
6885
 
16848 stevensc 6886
.bs-tooltip-top .tooltip-arrow,
6887
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6888
  bottom: 0;
6889
}
16848 stevensc 6890
 
6891
.bs-tooltip-top .tooltip-arrow::before,
6892
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6893
  top: -1px;
6894
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6895
  border-top-color: var(--bs-tooltip-bg);
6896
}
6897
 
6898
/* rtl:begin:ignore */
16848 stevensc 6899
.bs-tooltip-end .tooltip-arrow,
6900
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6901
  left: 0;
6902
  width: var(--bs-tooltip-arrow-height);
6903
  height: var(--bs-tooltip-arrow-width);
6904
}
16848 stevensc 6905
 
6906
.bs-tooltip-end .tooltip-arrow::before,
6907
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6908
  right: -1px;
6909
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6910
  border-right-color: var(--bs-tooltip-bg);
6911
}
6912
 
6913
/* rtl:end:ignore */
16848 stevensc 6914
.bs-tooltip-bottom .tooltip-arrow,
6915
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6916
  top: 0;
6917
}
16848 stevensc 6918
 
6919
.bs-tooltip-bottom .tooltip-arrow::before,
6920
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6921
  bottom: -1px;
6922
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6923
  border-bottom-color: var(--bs-tooltip-bg);
6924
}
6925
 
6926
/* rtl:begin:ignore */
16848 stevensc 6927
.bs-tooltip-start .tooltip-arrow,
6928
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6929
  right: 0;
6930
  width: var(--bs-tooltip-arrow-height);
6931
  height: var(--bs-tooltip-arrow-width);
6932
}
16848 stevensc 6933
 
6934
.bs-tooltip-start .tooltip-arrow::before,
6935
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6936
  left: -1px;
6937
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6938
  border-left-color: var(--bs-tooltip-bg);
6939
}
6940
 
6941
/* rtl:end:ignore */
6942
.tooltip-inner {
6943
  max-width: var(--bs-tooltip-max-width);
6944
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6945
  color: var(--bs-tooltip-color);
6946
  text-align: center;
6947
  background-color: var(--bs-tooltip-bg);
6948
  border-radius: var(--bs-tooltip-border-radius);
6949
}
6950
 
6951
.popover {
6952
  --bs-popover-zindex: 1070;
6953
  --bs-popover-max-width: 276px;
6954
  --bs-popover-font-size: 0.812rem;
6955
  --bs-popover-bg: #fff;
6956
  --bs-popover-border-width: 1px;
6957
  --bs-popover-border-color: #e9ecef;
6958
  --bs-popover-border-radius: 0.5rem;
6959
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6960
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6961
  --bs-popover-header-padding-x: 1rem;
6962
  --bs-popover-header-padding-y: 0.5rem;
6963
  --bs-popover-header-font-size: 0.875rem;
6964
  --bs-popover-header-color: ;
6965
  --bs-popover-header-bg: #e9ecef;
6966
  --bs-popover-body-padding-x: 1rem;
6967
  --bs-popover-body-padding-y: 1rem;
6968
  --bs-popover-body-color: #000;
6969
  --bs-popover-arrow-width: 1rem;
6970
  --bs-popover-arrow-height: 0.5rem;
6971
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6972
  z-index: var(--bs-popover-zindex);
6973
  display: block;
6974
  max-width: var(--bs-popover-max-width);
6975
  font-family: var(--bs-font-sans-serif);
6976
  font-style: normal;
6977
  font-weight: 400;
6978
  line-height: 1.5;
6979
  text-align: left;
6980
  text-align: start;
6981
  text-decoration: none;
6982
  text-shadow: none;
6983
  text-transform: none;
6984
  letter-spacing: normal;
6985
  word-break: normal;
6986
  white-space: normal;
6987
  word-spacing: normal;
6988
  line-break: auto;
6989
  font-size: var(--bs-popover-font-size);
6990
  word-wrap: break-word;
6991
  background-color: var(--bs-popover-bg);
6992
  background-clip: padding-box;
6993
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6994
  border-radius: var(--bs-popover-border-radius);
6995
}
16848 stevensc 6996
 
16825 efrain 6997
.popover .popover-arrow {
6998
  display: block;
6999
  width: var(--bs-popover-arrow-width);
7000
  height: var(--bs-popover-arrow-height);
7001
}
16848 stevensc 7002
 
7003
.popover .popover-arrow::before,
7004
.popover .popover-arrow::after {
16825 efrain 7005
  position: absolute;
7006
  display: block;
7007
  content: "";
7008
  border-color: transparent;
7009
  border-style: solid;
7010
  border-width: 0;
7011
}
7012
 
16848 stevensc 7013
.bs-popover-top>.popover-arrow,
7014
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7015
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7016
}
16848 stevensc 7017
 
7018
.bs-popover-top>.popover-arrow::before,
7019
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7020
.bs-popover-top>.popover-arrow::after,
7021
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7022
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7023
}
16848 stevensc 7024
 
7025
.bs-popover-top>.popover-arrow::before,
7026
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7027
  bottom: 0;
7028
  border-top-color: var(--bs-popover-arrow-border);
7029
}
16848 stevensc 7030
 
7031
.bs-popover-top>.popover-arrow::after,
7032
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7033
  bottom: var(--bs-popover-border-width);
7034
  border-top-color: var(--bs-popover-bg);
7035
}
7036
 
7037
/* rtl:begin:ignore */
16848 stevensc 7038
.bs-popover-end>.popover-arrow,
7039
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7040
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7041
  width: var(--bs-popover-arrow-height);
7042
  height: var(--bs-popover-arrow-width);
7043
}
16848 stevensc 7044
 
7045
.bs-popover-end>.popover-arrow::before,
7046
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7047
.bs-popover-end>.popover-arrow::after,
7048
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7049
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7050
}
16848 stevensc 7051
 
7052
.bs-popover-end>.popover-arrow::before,
7053
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7054
  left: 0;
7055
  border-right-color: var(--bs-popover-arrow-border);
7056
}
16848 stevensc 7057
 
7058
.bs-popover-end>.popover-arrow::after,
7059
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7060
  left: var(--bs-popover-border-width);
7061
  border-right-color: var(--bs-popover-bg);
7062
}
7063
 
7064
/* rtl:end:ignore */
16848 stevensc 7065
.bs-popover-bottom>.popover-arrow,
7066
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7067
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7068
}
16848 stevensc 7069
 
7070
.bs-popover-bottom>.popover-arrow::before,
7071
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7072
.bs-popover-bottom>.popover-arrow::after,
7073
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7074
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7075
}
16848 stevensc 7076
 
7077
.bs-popover-bottom>.popover-arrow::before,
7078
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7079
  top: 0;
7080
  border-bottom-color: var(--bs-popover-arrow-border);
7081
}
16848 stevensc 7082
 
7083
.bs-popover-bottom>.popover-arrow::after,
7084
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7085
  top: var(--bs-popover-border-width);
7086
  border-bottom-color: var(--bs-popover-bg);
7087
}
16848 stevensc 7088
 
7089
.bs-popover-bottom .popover-header::before,
7090
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7091
  position: absolute;
7092
  top: 0;
7093
  left: 50%;
7094
  display: block;
7095
  width: var(--bs-popover-arrow-width);
7096
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7097
  content: "";
7098
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7099
}
7100
 
7101
/* rtl:begin:ignore */
16848 stevensc 7102
.bs-popover-start>.popover-arrow,
7103
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7104
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7105
  width: var(--bs-popover-arrow-height);
7106
  height: var(--bs-popover-arrow-width);
7107
}
16848 stevensc 7108
 
7109
.bs-popover-start>.popover-arrow::before,
7110
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7111
.bs-popover-start>.popover-arrow::after,
7112
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7113
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7114
}
16848 stevensc 7115
 
7116
.bs-popover-start>.popover-arrow::before,
7117
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7118
  right: 0;
7119
  border-left-color: var(--bs-popover-arrow-border);
7120
}
16848 stevensc 7121
 
7122
.bs-popover-start>.popover-arrow::after,
7123
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7124
  right: var(--bs-popover-border-width);
7125
  border-left-color: var(--bs-popover-bg);
7126
}
7127
 
7128
/* rtl:end:ignore */
7129
.popover-header {
7130
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7131
  margin-bottom: 0;
7132
  font-size: var(--bs-popover-header-font-size);
7133
  color: var(--bs-popover-header-color);
7134
  background-color: var(--bs-popover-header-bg);
7135
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7136
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7137
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7138
}
16848 stevensc 7139
 
16825 efrain 7140
.popover-header:empty {
7141
  display: none;
7142
}
7143
 
7144
.popover-body {
7145
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7146
  color: var(--bs-popover-body-color);
7147
}
7148
 
7149
.carousel {
7150
  position: relative;
7151
}
7152
 
7153
.carousel.pointer-event {
7154
  touch-action: pan-y;
7155
}
7156
 
7157
.carousel-inner {
7158
  position: relative;
7159
  width: 100%;
7160
  overflow: hidden;
7161
}
16848 stevensc 7162
 
16825 efrain 7163
.carousel-inner::after {
7164
  display: block;
7165
  clear: both;
7166
  content: "";
7167
}
7168
 
7169
.carousel-item {
7170
  position: relative;
7171
  display: none;
7172
  float: left;
7173
  width: 100%;
7174
  margin-right: -100%;
7175
  backface-visibility: hidden;
7176
  transition: transform 0.6s ease-in-out;
7177
}
16848 stevensc 7178
 
16825 efrain 7179
@media (prefers-reduced-motion: reduce) {
7180
  .carousel-item {
7181
    transition: none;
7182
  }
7183
}
7184
 
7185
.carousel-item.active,
7186
.carousel-item-next,
7187
.carousel-item-prev {
7188
  display: block;
7189
}
7190
 
7191
/* rtl:begin:ignore */
7192
.carousel-item-next:not(.carousel-item-start),
7193
.active.carousel-item-end {
7194
  transform: translateX(100%);
7195
}
7196
 
7197
.carousel-item-prev:not(.carousel-item-end),
7198
.active.carousel-item-start {
7199
  transform: translateX(-100%);
7200
}
7201
 
7202
/* rtl:end:ignore */
7203
.carousel-fade .carousel-item {
7204
  opacity: 0;
7205
  transition-property: opacity;
7206
  transform: none;
7207
}
16848 stevensc 7208
 
16825 efrain 7209
.carousel-fade .carousel-item.active,
7210
.carousel-fade .carousel-item-next.carousel-item-start,
7211
.carousel-fade .carousel-item-prev.carousel-item-end {
7212
  z-index: 1;
7213
  opacity: 1;
7214
}
16848 stevensc 7215
 
16825 efrain 7216
.carousel-fade .active.carousel-item-start,
7217
.carousel-fade .active.carousel-item-end {
7218
  z-index: 0;
7219
  opacity: 0;
7220
  transition: opacity 0s 0.6s;
7221
}
16848 stevensc 7222
 
16825 efrain 7223
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7224
 
16825 efrain 7225
  .carousel-fade .active.carousel-item-start,
7226
  .carousel-fade .active.carousel-item-end {
7227
    transition: none;
7228
  }
7229
}
7230
 
7231
.carousel-control-prev,
7232
.carousel-control-next {
7233
  position: absolute;
7234
  top: 0;
7235
  bottom: 0;
7236
  z-index: 1;
7237
  display: flex;
7238
  align-items: center;
7239
  justify-content: center;
7240
  width: 15%;
7241
  padding: 0;
7242
  color: #fff;
7243
  text-align: center;
7244
  background: none;
7245
  border: 0;
7246
  opacity: 0.5;
7247
  transition: opacity 0.15s ease;
7248
}
16848 stevensc 7249
 
16825 efrain 7250
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7251
 
16825 efrain 7252
  .carousel-control-prev,
7253
  .carousel-control-next {
7254
    transition: none;
7255
  }
7256
}
16848 stevensc 7257
 
7258
.carousel-control-prev:hover,
7259
.carousel-control-prev:focus,
16825 efrain 7260
.carousel-control-next:hover,
7261
.carousel-control-next:focus {
7262
  color: #fff;
7263
  text-decoration: none;
7264
  outline: 0;
7265
  opacity: 0.9;
7266
}
7267
 
7268
.carousel-control-prev {
7269
  left: 0;
7270
}
7271
 
7272
.carousel-control-next {
7273
  right: 0;
7274
}
7275
 
7276
.carousel-control-prev-icon,
7277
.carousel-control-next-icon {
7278
  display: inline-block;
7279
  width: 2rem;
7280
  height: 2rem;
7281
  background-repeat: no-repeat;
7282
  background-position: 50%;
7283
  background-size: 100% 100%;
7284
}
7285
 
7286
/* rtl:options: {
7287
  "autoRename": true,
7288
  "stringMap":[ {
7289
    "name"    : "prev-next",
7290
    "search"  : "prev",
7291
    "replace" : "next"
7292
  } ]
7293
} */
7294
.carousel-control-prev-icon {
7295
  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");
7296
}
7297
 
7298
.carousel-control-next-icon {
7299
  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");
7300
}
7301
 
7302
.carousel-indicators {
7303
  position: absolute;
7304
  right: 0;
7305
  bottom: 0;
7306
  left: 0;
7307
  z-index: 2;
7308
  display: flex;
7309
  justify-content: center;
7310
  padding: 0;
7311
  margin-right: 15%;
7312
  margin-bottom: 1rem;
7313
  margin-left: 15%;
7314
  list-style: none;
7315
}
16848 stevensc 7316
 
16825 efrain 7317
.carousel-indicators [data-bs-target] {
7318
  box-sizing: content-box;
7319
  flex: 0 1 auto;
7320
  width: 30px;
7321
  height: 3px;
7322
  padding: 0;
7323
  margin-right: 3px;
7324
  margin-left: 3px;
7325
  text-indent: -999px;
7326
  cursor: pointer;
7327
  background-color: #fff;
7328
  background-clip: padding-box;
7329
  border: 0;
7330
  border-top: 10px solid transparent;
7331
  border-bottom: 10px solid transparent;
7332
  opacity: 0.5;
7333
  transition: opacity 0.6s ease;
7334
}
16848 stevensc 7335
 
16825 efrain 7336
@media (prefers-reduced-motion: reduce) {
7337
  .carousel-indicators [data-bs-target] {
7338
    transition: none;
7339
  }
7340
}
16848 stevensc 7341
 
16825 efrain 7342
.carousel-indicators .active {
7343
  opacity: 1;
7344
}
7345
 
7346
.carousel-caption {
7347
  position: absolute;
7348
  right: 15%;
7349
  bottom: 1.25rem;
7350
  left: 15%;
7351
  padding-top: 1.25rem;
7352
  padding-bottom: 1.25rem;
7353
  color: #fff;
7354
  text-align: center;
7355
}
7356
 
7357
.carousel-dark .carousel-control-prev-icon,
7358
.carousel-dark .carousel-control-next-icon {
7359
  filter: invert(1) grayscale(100);
7360
}
16848 stevensc 7361
 
16825 efrain 7362
.carousel-dark .carousel-indicators [data-bs-target] {
7363
  background-color: #000;
7364
}
16848 stevensc 7365
 
16825 efrain 7366
.carousel-dark .carousel-caption {
7367
  color: #000;
7368
}
7369
 
7370
.spinner-grow,
7371
.spinner-border {
7372
  display: inline-block;
7373
  width: var(--bs-spinner-width);
7374
  height: var(--bs-spinner-height);
7375
  vertical-align: var(--bs-spinner-vertical-align);
7376
  border-radius: 50%;
7377
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7378
}
7379
 
7380
@keyframes spinner-border {
7381
  to {
16848 stevensc 7382
    transform: rotate(360deg)
7383
      /* rtl:ignore */
7384
    ;
16825 efrain 7385
  }
7386
}
16848 stevensc 7387
 
16825 efrain 7388
.spinner-border {
7389
  --bs-spinner-width: 2rem;
7390
  --bs-spinner-height: 2rem;
7391
  --bs-spinner-vertical-align: -0.125em;
7392
  --bs-spinner-border-width: 0.25em;
7393
  --bs-spinner-animation-speed: 0.75s;
7394
  --bs-spinner-animation-name: spinner-border;
7395
  border: var(--bs-spinner-border-width) solid currentcolor;
7396
  border-right-color: transparent;
7397
}
7398
 
7399
.spinner-border-sm {
7400
  --bs-spinner-width: 1rem;
7401
  --bs-spinner-height: 1rem;
7402
  --bs-spinner-border-width: 0.2em;
7403
}
7404
 
7405
@keyframes spinner-grow {
7406
  0% {
7407
    transform: scale(0);
7408
  }
16848 stevensc 7409
 
16825 efrain 7410
  50% {
7411
    opacity: 1;
7412
    transform: none;
7413
  }
7414
}
16848 stevensc 7415
 
16825 efrain 7416
.spinner-grow {
7417
  --bs-spinner-width: 2rem;
7418
  --bs-spinner-height: 2rem;
7419
  --bs-spinner-vertical-align: -0.125em;
7420
  --bs-spinner-animation-speed: 0.75s;
7421
  --bs-spinner-animation-name: spinner-grow;
7422
  background-color: currentcolor;
7423
  opacity: 0;
7424
}
7425
 
7426
.spinner-grow-sm {
7427
  --bs-spinner-width: 1rem;
7428
  --bs-spinner-height: 1rem;
7429
}
7430
 
7431
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7432
 
16825 efrain 7433
  .spinner-border,
7434
  .spinner-grow {
7435
    --bs-spinner-animation-speed: 1.5s;
7436
  }
7437
}
16848 stevensc 7438
 
16825 efrain 7439
.clearfix::after {
7440
  display: block;
7441
  clear: both;
7442
  content: "";
7443
}
7444
 
7445
.text-bg-primary {
7446
  color: #fff !important;
7447
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7448
}
7449
 
7450
.text-bg-secondary {
7451
  color: #fff !important;
7452
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7453
}
7454
 
7455
.text-bg-success {
7456
  color: #fff !important;
7457
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7458
}
7459
 
7460
.text-bg-info {
7461
  color: #000 !important;
7462
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7463
}
7464
 
7465
.text-bg-warning {
7466
  color: #000 !important;
7467
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7468
}
7469
 
7470
.text-bg-danger {
7471
  color: #fff !important;
7472
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7473
}
7474
 
7475
.text-bg-light {
7476
  color: #000 !important;
7477
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7478
}
7479
 
7480
.text-bg-dark {
7481
  color: #fff !important;
7482
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7483
}
7484
 
7485
.link-primary {
7486
  color: #6571ff !important;
7487
}
16848 stevensc 7488
 
7489
.link-primary:hover,
7490
.link-primary:focus {
16825 efrain 7491
  color: #515acc !important;
7492
}
7493
 
7494
.link-secondary {
7495
  color: #7987a1 !important;
7496
}
16848 stevensc 7497
 
7498
.link-secondary:hover,
7499
.link-secondary:focus {
16825 efrain 7500
  color: #616c81 !important;
7501
}
7502
 
7503
.link-success {
7504
  color: #05a34a !important;
7505
}
16848 stevensc 7506
 
7507
.link-success:hover,
7508
.link-success:focus {
16825 efrain 7509
  color: #04823b !important;
7510
}
7511
 
7512
.link-info {
7513
  color: #66d1d1 !important;
7514
}
16848 stevensc 7515
 
7516
.link-info:hover,
7517
.link-info:focus {
16825 efrain 7518
  color: #85dada !important;
7519
}
7520
 
7521
.link-warning {
7522
  color: #fbbc06 !important;
7523
}
16848 stevensc 7524
 
7525
.link-warning:hover,
7526
.link-warning:focus {
16825 efrain 7527
  color: #fcc938 !important;
7528
}
7529
 
7530
.link-danger {
7531
  color: #ff3366 !important;
7532
}
16848 stevensc 7533
 
7534
.link-danger:hover,
7535
.link-danger:focus {
16825 efrain 7536
  color: #cc2952 !important;
7537
}
7538
 
7539
.link-light {
7540
  color: #e9ecef !important;
7541
}
16848 stevensc 7542
 
7543
.link-light:hover,
7544
.link-light:focus {
16825 efrain 7545
  color: #edf0f2 !important;
7546
}
7547
 
7548
.link-dark {
7549
  color: #060c17 !important;
7550
}
16848 stevensc 7551
 
7552
.link-dark:hover,
7553
.link-dark:focus {
16825 efrain 7554
  color: #050a12 !important;
7555
}
7556
 
7557
.ratio {
7558
  position: relative;
7559
  width: 100%;
7560
}
16848 stevensc 7561
 
16825 efrain 7562
.ratio::before {
7563
  display: block;
7564
  padding-top: var(--bs-aspect-ratio);
7565
  content: "";
7566
}
16848 stevensc 7567
 
7568
.ratio>* {
16825 efrain 7569
  position: absolute;
7570
  top: 0;
7571
  left: 0;
7572
  width: 100%;
7573
  height: 100%;
7574
}
7575
 
7576
.ratio-1x1 {
7577
  --bs-aspect-ratio: 100%;
7578
}
7579
 
7580
.ratio-4x3 {
7581
  --bs-aspect-ratio: 75%;
7582
}
7583
 
7584
.ratio-16x9 {
7585
  --bs-aspect-ratio: 56.25%;
7586
}
7587
 
7588
.ratio-21x9 {
7589
  --bs-aspect-ratio: 42.8571428571%;
7590
}
7591
 
7592
.fixed-top {
7593
  position: fixed;
7594
  top: 0;
7595
  right: 0;
7596
  left: 0;
7597
  z-index: 1030;
7598
}
7599
 
7600
.fixed-bottom {
7601
  position: fixed;
7602
  right: 0;
7603
  bottom: 0;
7604
  left: 0;
7605
  z-index: 1030;
7606
}
7607
 
7608
.sticky-top {
7609
  position: sticky;
7610
  top: 0;
7611
  z-index: 1020;
7612
}
7613
 
7614
.sticky-bottom {
7615
  position: sticky;
7616
  bottom: 0;
7617
  z-index: 1020;
7618
}
7619
 
7620
@media (min-width: 576px) {
7621
  .sticky-sm-top {
7622
    position: sticky;
7623
    top: 0;
7624
    z-index: 1020;
7625
  }
16848 stevensc 7626
 
16825 efrain 7627
  .sticky-sm-bottom {
7628
    position: sticky;
7629
    bottom: 0;
7630
    z-index: 1020;
7631
  }
7632
}
16848 stevensc 7633
 
16825 efrain 7634
@media (min-width: 768px) {
7635
  .sticky-md-top {
7636
    position: sticky;
7637
    top: 0;
7638
    z-index: 1020;
7639
  }
16848 stevensc 7640
 
16825 efrain 7641
  .sticky-md-bottom {
7642
    position: sticky;
7643
    bottom: 0;
7644
    z-index: 1020;
7645
  }
7646
}
16848 stevensc 7647
 
16825 efrain 7648
@media (min-width: 992px) {
7649
  .sticky-lg-top {
7650
    position: sticky;
7651
    top: 0;
7652
    z-index: 1020;
7653
  }
16848 stevensc 7654
 
16825 efrain 7655
  .sticky-lg-bottom {
7656
    position: sticky;
7657
    bottom: 0;
7658
    z-index: 1020;
7659
  }
7660
}
16848 stevensc 7661
 
16825 efrain 7662
@media (min-width: 1200px) {
7663
  .sticky-xl-top {
7664
    position: sticky;
7665
    top: 0;
7666
    z-index: 1020;
7667
  }
16848 stevensc 7668
 
16825 efrain 7669
  .sticky-xl-bottom {
7670
    position: sticky;
7671
    bottom: 0;
7672
    z-index: 1020;
7673
  }
7674
}
16848 stevensc 7675
 
16825 efrain 7676
@media (min-width: 1400px) {
7677
  .sticky-xxl-top {
7678
    position: sticky;
7679
    top: 0;
7680
    z-index: 1020;
7681
  }
16848 stevensc 7682
 
16825 efrain 7683
  .sticky-xxl-bottom {
7684
    position: sticky;
7685
    bottom: 0;
7686
    z-index: 1020;
7687
  }
7688
}
16848 stevensc 7689
 
16825 efrain 7690
.hstack {
7691
  display: flex;
7692
  flex-direction: row;
7693
  align-items: center;
7694
  align-self: stretch;
7695
}
7696
 
7697
.vstack {
7698
  display: flex;
7699
  flex: 1 1 auto;
7700
  flex-direction: column;
7701
  align-self: stretch;
7702
}
7703
 
7704
.visually-hidden,
7705
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7706
  position: absolute !important;
7707
  width: 1px !important;
7708
  height: 1px !important;
7709
  padding: 0 !important;
7710
  margin: -1px !important;
7711
  overflow: hidden !important;
7712
  clip: rect(0, 0, 0, 0) !important;
7713
  white-space: nowrap !important;
7714
  border: 0 !important;
7715
}
7716
 
7717
.stretched-link::after {
7718
  position: absolute;
7719
  top: 0;
7720
  right: 0;
7721
  bottom: 0;
7722
  left: 0;
7723
  z-index: 1;
7724
  content: "";
7725
}
7726
 
7727
.text-truncate {
7728
  overflow: hidden;
7729
  text-overflow: ellipsis;
7730
  white-space: nowrap;
7731
}
7732
 
7733
.vr {
7734
  display: inline-block;
7735
  align-self: stretch;
7736
  width: 1px;
7737
  min-height: 1em;
7738
  background-color: currentcolor;
7739
  opacity: 0.1;
7740
}
7741
 
7742
.align-baseline {
7743
  vertical-align: baseline !important;
7744
}
7745
 
7746
.align-top {
7747
  vertical-align: top !important;
7748
}
7749
 
7750
.align-middle {
7751
  vertical-align: middle !important;
7752
}
7753
 
7754
.align-bottom {
7755
  vertical-align: bottom !important;
7756
}
7757
 
7758
.align-text-bottom {
7759
  vertical-align: text-bottom !important;
7760
}
7761
 
7762
.align-text-top {
7763
  vertical-align: text-top !important;
7764
}
7765
 
7766
.float-start {
7767
  float: left !important;
7768
}
7769
 
7770
.float-end {
7771
  float: right !important;
7772
}
7773
 
7774
.float-none {
7775
  float: none !important;
7776
}
7777
 
7778
.opacity-0 {
7779
  opacity: 0 !important;
7780
}
7781
 
7782
.opacity-25 {
7783
  opacity: 0.25 !important;
7784
}
7785
 
7786
.opacity-50 {
7787
  opacity: 0.5 !important;
7788
}
7789
 
7790
.opacity-75 {
7791
  opacity: 0.75 !important;
7792
}
7793
 
7794
.opacity-100 {
7795
  opacity: 1 !important;
7796
}
7797
 
7798
.overflow-auto {
7799
  overflow: auto !important;
7800
}
7801
 
7802
.overflow-hidden {
7803
  overflow: hidden !important;
7804
}
7805
 
7806
.overflow-visible {
7807
  overflow: visible !important;
7808
}
7809
 
7810
.overflow-scroll {
7811
  overflow: scroll !important;
7812
}
7813
 
7814
.d-inline {
7815
  display: inline !important;
7816
}
7817
 
7818
.d-inline-block {
7819
  display: inline-block !important;
7820
}
7821
 
7822
.d-block {
7823
  display: block !important;
7824
}
7825
 
7826
.d-grid {
7827
  display: grid !important;
7828
}
7829
 
7830
.d-table {
7831
  display: table !important;
7832
}
7833
 
7834
.d-table-row {
7835
  display: table-row !important;
7836
}
7837
 
7838
.d-table-cell {
7839
  display: table-cell !important;
7840
}
7841
 
7842
.d-flex {
7843
  display: flex !important;
7844
}
7845
 
7846
.d-inline-flex {
7847
  display: inline-flex !important;
7848
}
7849
 
16848 stevensc 7850
.d-none,
7851
.navbar .search-form {
16825 efrain 7852
  display: none !important;
7853
}
7854
 
7855
.shadow {
7856
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7857
}
7858
 
7859
.shadow-sm {
7860
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7861
}
7862
 
7863
.shadow-lg {
7864
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7865
}
7866
 
7867
.shadow-none {
7868
  box-shadow: none !important;
7869
}
7870
 
7871
.position-static {
7872
  position: static !important;
7873
}
7874
 
7875
.position-relative {
7876
  position: relative !important;
7877
}
7878
 
7879
.position-absolute {
7880
  position: absolute !important;
7881
}
7882
 
7883
.position-fixed {
7884
  position: fixed !important;
7885
}
7886
 
7887
.position-sticky {
7888
  position: sticky !important;
7889
}
7890
 
7891
.top-0 {
7892
  top: 0 !important;
7893
}
7894
 
7895
.top-10 {
7896
  top: 10% !important;
7897
}
7898
 
7899
.top-20 {
7900
  top: 20% !important;
7901
}
7902
 
7903
.top-25 {
7904
  top: 25% !important;
7905
}
7906
 
7907
.top-30 {
7908
  top: 30% !important;
7909
}
7910
 
7911
.top-40 {
7912
  top: 40% !important;
7913
}
7914
 
7915
.top-50 {
7916
  top: 50% !important;
7917
}
7918
 
7919
.top-60 {
7920
  top: 60% !important;
7921
}
7922
 
7923
.top-70 {
7924
  top: 70% !important;
7925
}
7926
 
7927
.top-75 {
7928
  top: 75% !important;
7929
}
7930
 
7931
.top-80 {
7932
  top: 80% !important;
7933
}
7934
 
7935
.top-90 {
7936
  top: 90% !important;
7937
}
7938
 
7939
.top-100 {
7940
  top: 100% !important;
7941
}
7942
 
7943
.bottom-0 {
7944
  bottom: 0 !important;
7945
}
7946
 
7947
.bottom-10 {
7948
  bottom: 10% !important;
7949
}
7950
 
7951
.bottom-20 {
7952
  bottom: 20% !important;
7953
}
7954
 
7955
.bottom-25 {
7956
  bottom: 25% !important;
7957
}
7958
 
7959
.bottom-30 {
7960
  bottom: 30% !important;
7961
}
7962
 
7963
.bottom-40 {
7964
  bottom: 40% !important;
7965
}
7966
 
7967
.bottom-50 {
7968
  bottom: 50% !important;
7969
}
7970
 
7971
.bottom-60 {
7972
  bottom: 60% !important;
7973
}
7974
 
7975
.bottom-70 {
7976
  bottom: 70% !important;
7977
}
7978
 
7979
.bottom-75 {
7980
  bottom: 75% !important;
7981
}
7982
 
7983
.bottom-80 {
7984
  bottom: 80% !important;
7985
}
7986
 
7987
.bottom-90 {
7988
  bottom: 90% !important;
7989
}
7990
 
7991
.bottom-100 {
7992
  bottom: 100% !important;
7993
}
7994
 
7995
.start-0 {
7996
  left: 0 !important;
7997
}
7998
 
7999
.start-10 {
8000
  left: 10% !important;
8001
}
8002
 
8003
.start-20 {
8004
  left: 20% !important;
8005
}
8006
 
8007
.start-25 {
8008
  left: 25% !important;
8009
}
8010
 
8011
.start-30 {
8012
  left: 30% !important;
8013
}
8014
 
8015
.start-40 {
8016
  left: 40% !important;
8017
}
8018
 
8019
.start-50 {
8020
  left: 50% !important;
8021
}
8022
 
8023
.start-60 {
8024
  left: 60% !important;
8025
}
8026
 
8027
.start-70 {
8028
  left: 70% !important;
8029
}
8030
 
8031
.start-75 {
8032
  left: 75% !important;
8033
}
8034
 
8035
.start-80 {
8036
  left: 80% !important;
8037
}
8038
 
8039
.start-90 {
8040
  left: 90% !important;
8041
}
8042
 
8043
.start-100 {
8044
  left: 100% !important;
8045
}
8046
 
8047
.end-0 {
8048
  right: 0 !important;
8049
}
8050
 
8051
.end-10 {
8052
  right: 10% !important;
8053
}
8054
 
8055
.end-20 {
8056
  right: 20% !important;
8057
}
8058
 
8059
.end-25 {
8060
  right: 25% !important;
8061
}
8062
 
8063
.end-30 {
8064
  right: 30% !important;
8065
}
8066
 
8067
.end-40 {
8068
  right: 40% !important;
8069
}
8070
 
8071
.end-50 {
8072
  right: 50% !important;
8073
}
8074
 
8075
.end-60 {
8076
  right: 60% !important;
8077
}
8078
 
8079
.end-70 {
8080
  right: 70% !important;
8081
}
8082
 
8083
.end-75 {
8084
  right: 75% !important;
8085
}
8086
 
8087
.end-80 {
8088
  right: 80% !important;
8089
}
8090
 
8091
.end-90 {
8092
  right: 90% !important;
8093
}
8094
 
8095
.end-100 {
8096
  right: 100% !important;
8097
}
8098
 
8099
.translate-middle {
8100
  transform: translate(-50%, -50%) !important;
8101
}
8102
 
8103
.translate-middle-x {
8104
  transform: translateX(-50%) !important;
8105
}
8106
 
8107
.translate-middle-y {
8108
  transform: translateY(-50%) !important;
8109
}
8110
 
8111
.border {
8112
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8113
}
8114
 
8115
.border-0 {
8116
  border: 0 !important;
8117
}
8118
 
8119
.border-top {
8120
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8121
}
8122
 
8123
.border-top-0 {
8124
  border-top: 0 !important;
8125
}
8126
 
8127
.border-end {
8128
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8129
}
8130
 
8131
.border-end-0 {
8132
  border-right: 0 !important;
8133
}
8134
 
8135
.border-bottom {
8136
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8137
}
8138
 
8139
.border-bottom-0 {
8140
  border-bottom: 0 !important;
8141
}
8142
 
8143
.border-start {
8144
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8145
}
8146
 
8147
.border-start-0 {
8148
  border-left: 0 !important;
8149
}
8150
 
8151
.border-primary {
8152
  --bs-border-opacity: 1;
8153
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8154
}
8155
 
8156
.border-secondary {
8157
  --bs-border-opacity: 1;
8158
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8159
}
8160
 
8161
.border-success {
8162
  --bs-border-opacity: 1;
8163
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8164
}
8165
 
8166
.border-info {
8167
  --bs-border-opacity: 1;
8168
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8169
}
8170
 
8171
.border-warning {
8172
  --bs-border-opacity: 1;
8173
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8174
}
8175
 
16848 stevensc 8176
.border-danger,
8177
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8178
  --bs-border-opacity: 1;
8179
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8180
}
8181
 
8182
.border-light {
8183
  --bs-border-opacity: 1;
8184
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8185
}
8186
 
8187
.border-dark {
8188
  --bs-border-opacity: 1;
8189
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8190
}
8191
 
8192
.border-white {
8193
  --bs-border-opacity: 1;
8194
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8195
}
8196
 
8197
.border-1 {
8198
  --bs-border-width: 1px;
8199
}
8200
 
8201
.border-2 {
8202
  --bs-border-width: 2px;
8203
}
8204
 
8205
.border-3 {
8206
  --bs-border-width: 3px;
8207
}
8208
 
8209
.border-4 {
8210
  --bs-border-width: 4px;
8211
}
8212
 
8213
.border-5 {
8214
  --bs-border-width: 5px;
8215
}
8216
 
8217
.border-opacity-10 {
8218
  --bs-border-opacity: 0.1;
8219
}
8220
 
8221
.border-opacity-25 {
8222
  --bs-border-opacity: 0.25;
8223
}
8224
 
8225
.border-opacity-50 {
8226
  --bs-border-opacity: 0.5;
8227
}
8228
 
8229
.border-opacity-75 {
8230
  --bs-border-opacity: 0.75;
8231
}
8232
 
8233
.border-opacity-100 {
8234
  --bs-border-opacity: 1;
8235
}
8236
 
16854 stevensc 8237
.w-fit {
8238
  width: fit-content !important;
8239
}
8240
 
16825 efrain 8241
.w-25 {
8242
  width: 25% !important;
8243
}
8244
 
8245
.w-50 {
8246
  width: 50% !important;
8247
}
8248
 
8249
.w-75 {
8250
  width: 75% !important;
8251
}
8252
 
8253
.w-100 {
8254
  width: 100% !important;
8255
}
8256
 
8257
.w-auto {
8258
  width: auto !important;
8259
}
8260
 
8261
.mw-100 {
8262
  max-width: 100% !important;
8263
}
8264
 
8265
.vw-100 {
8266
  width: 100vw !important;
8267
}
8268
 
8269
.min-vw-100 {
8270
  min-width: 100vw !important;
8271
}
8272
 
8273
.h-25 {
8274
  height: 25% !important;
8275
}
8276
 
8277
.h-50 {
8278
  height: 50% !important;
8279
}
8280
 
8281
.h-75 {
8282
  height: 75% !important;
8283
}
8284
 
8285
.h-100 {
8286
  height: 100% !important;
8287
}
8288
 
8289
.h-auto {
8290
  height: auto !important;
8291
}
8292
 
8293
.mh-100 {
8294
  max-height: 100% !important;
8295
}
8296
 
8297
.vh-100 {
8298
  height: 100vh !important;
8299
}
8300
 
8301
.min-vh-100 {
8302
  min-height: 100vh !important;
8303
}
8304
 
8305
.flex-fill {
8306
  flex: 1 1 auto !important;
8307
}
8308
 
8309
.flex-row {
8310
  flex-direction: row !important;
8311
}
8312
 
8313
.flex-column {
8314
  flex-direction: column !important;
8315
}
8316
 
8317
.flex-row-reverse {
8318
  flex-direction: row-reverse !important;
8319
}
8320
 
8321
.flex-column-reverse {
8322
  flex-direction: column-reverse !important;
8323
}
8324
 
8325
.flex-grow-0 {
8326
  flex-grow: 0 !important;
8327
}
8328
 
8329
.flex-grow-1 {
8330
  flex-grow: 1 !important;
8331
}
8332
 
8333
.flex-shrink-0 {
8334
  flex-shrink: 0 !important;
8335
}
8336
 
8337
.flex-shrink-1 {
8338
  flex-shrink: 1 !important;
8339
}
8340
 
8341
.flex-wrap {
8342
  flex-wrap: wrap !important;
8343
}
8344
 
8345
.flex-nowrap {
8346
  flex-wrap: nowrap !important;
8347
}
8348
 
8349
.flex-wrap-reverse {
8350
  flex-wrap: wrap-reverse !important;
8351
}
8352
 
8353
.justify-content-start {
8354
  justify-content: flex-start !important;
8355
}
8356
 
8357
.justify-content-end {
8358
  justify-content: flex-end !important;
8359
}
8360
 
16848 stevensc 8361
.justify-content-center,
8362
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8363
  justify-content: center !important;
8364
}
8365
 
8366
.justify-content-between {
8367
  justify-content: space-between !important;
8368
}
8369
 
8370
.justify-content-around {
8371
  justify-content: space-around !important;
8372
}
8373
 
8374
.justify-content-evenly {
8375
  justify-content: space-evenly !important;
8376
}
8377
 
8378
.align-items-start {
8379
  align-items: flex-start !important;
8380
}
8381
 
8382
.align-items-end {
8383
  align-items: flex-end !important;
8384
}
8385
 
16848 stevensc 8386
.align-items-center,
8387
.navbar .search-form {
16825 efrain 8388
  align-items: center !important;
8389
}
8390
 
8391
.align-items-baseline {
8392
  align-items: baseline !important;
8393
}
8394
 
8395
.align-items-stretch {
8396
  align-items: stretch !important;
8397
}
8398
 
8399
.align-content-start {
8400
  align-content: flex-start !important;
8401
}
8402
 
8403
.align-content-end {
8404
  align-content: flex-end !important;
8405
}
8406
 
8407
.align-content-center {
8408
  align-content: center !important;
8409
}
8410
 
8411
.align-content-between {
8412
  align-content: space-between !important;
8413
}
8414
 
8415
.align-content-around {
8416
  align-content: space-around !important;
8417
}
8418
 
8419
.align-content-stretch {
8420
  align-content: stretch !important;
8421
}
8422
 
8423
.align-self-auto {
8424
  align-self: auto !important;
8425
}
8426
 
8427
.align-self-start {
8428
  align-self: flex-start !important;
8429
}
8430
 
8431
.align-self-end {
8432
  align-self: flex-end !important;
8433
}
8434
 
8435
.align-self-center {
8436
  align-self: center !important;
8437
}
8438
 
8439
.align-self-baseline {
8440
  align-self: baseline !important;
8441
}
8442
 
8443
.align-self-stretch {
8444
  align-self: stretch !important;
8445
}
8446
 
8447
.order-first {
8448
  order: -1 !important;
8449
}
8450
 
8451
.order-0 {
8452
  order: 0 !important;
8453
}
8454
 
8455
.order-1 {
8456
  order: 1 !important;
8457
}
8458
 
8459
.order-2 {
8460
  order: 2 !important;
8461
}
8462
 
8463
.order-3 {
8464
  order: 3 !important;
8465
}
8466
 
8467
.order-4 {
8468
  order: 4 !important;
8469
}
8470
 
8471
.order-5 {
8472
  order: 5 !important;
8473
}
8474
 
8475
.order-last {
8476
  order: 6 !important;
8477
}
8478
 
8479
.m-0 {
8480
  margin: 0 !important;
8481
}
8482
 
8483
.m-1 {
8484
  margin: 0.25rem !important;
8485
}
8486
 
8487
.m-2 {
8488
  margin: 0.5rem !important;
8489
}
8490
 
8491
.m-3 {
8492
  margin: 1rem !important;
8493
}
8494
 
8495
.m-4 {
8496
  margin: 1.5rem !important;
8497
}
8498
 
8499
.m-5 {
8500
  margin: 3rem !important;
8501
}
8502
 
8503
.m-6 {
8504
  margin: 4.5rem !important;
8505
}
8506
 
8507
.m-7 {
8508
  margin: 6rem !important;
8509
}
8510
 
8511
.m-auto {
8512
  margin: auto !important;
8513
}
8514
 
8515
.mx-0 {
8516
  margin-right: 0 !important;
8517
  margin-left: 0 !important;
8518
}
8519
 
8520
.mx-1 {
8521
  margin-right: 0.25rem !important;
8522
  margin-left: 0.25rem !important;
8523
}
8524
 
8525
.mx-2 {
8526
  margin-right: 0.5rem !important;
8527
  margin-left: 0.5rem !important;
8528
}
8529
 
8530
.mx-3 {
8531
  margin-right: 1rem !important;
8532
  margin-left: 1rem !important;
8533
}
8534
 
8535
.mx-4 {
8536
  margin-right: 1.5rem !important;
8537
  margin-left: 1.5rem !important;
8538
}
8539
 
8540
.mx-5 {
8541
  margin-right: 3rem !important;
8542
  margin-left: 3rem !important;
8543
}
8544
 
8545
.mx-6 {
8546
  margin-right: 4.5rem !important;
8547
  margin-left: 4.5rem !important;
8548
}
8549
 
8550
.mx-7 {
8551
  margin-right: 6rem !important;
8552
  margin-left: 6rem !important;
8553
}
8554
 
8555
.mx-auto {
8556
  margin-right: auto !important;
8557
  margin-left: auto !important;
8558
}
8559
 
8560
.my-0 {
8561
  margin-top: 0 !important;
8562
  margin-bottom: 0 !important;
8563
}
8564
 
8565
.my-1 {
8566
  margin-top: 0.25rem !important;
8567
  margin-bottom: 0.25rem !important;
8568
}
8569
 
8570
.my-2 {
8571
  margin-top: 0.5rem !important;
8572
  margin-bottom: 0.5rem !important;
8573
}
8574
 
8575
.my-3 {
8576
  margin-top: 1rem !important;
8577
  margin-bottom: 1rem !important;
8578
}
8579
 
8580
.my-4 {
8581
  margin-top: 1.5rem !important;
8582
  margin-bottom: 1.5rem !important;
8583
}
8584
 
8585
.my-5 {
8586
  margin-top: 3rem !important;
8587
  margin-bottom: 3rem !important;
8588
}
8589
 
8590
.my-6 {
8591
  margin-top: 4.5rem !important;
8592
  margin-bottom: 4.5rem !important;
8593
}
8594
 
8595
.my-7 {
8596
  margin-top: 6rem !important;
8597
  margin-bottom: 6rem !important;
8598
}
8599
 
8600
.my-auto {
8601
  margin-top: auto !important;
8602
  margin-bottom: auto !important;
8603
}
8604
 
8605
.mt-0 {
8606
  margin-top: 0 !important;
8607
}
8608
 
8609
.mt-1 {
8610
  margin-top: 0.25rem !important;
8611
}
8612
 
8613
.mt-2 {
8614
  margin-top: 0.5rem !important;
8615
}
8616
 
16848 stevensc 8617
.mt-3,
8618
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8619
  margin-top: 1rem !important;
8620
}
8621
 
8622
.mt-4 {
8623
  margin-top: 1.5rem !important;
8624
}
8625
 
8626
.mt-5 {
8627
  margin-top: 3rem !important;
8628
}
8629
 
8630
.mt-6 {
8631
  margin-top: 4.5rem !important;
8632
}
8633
 
8634
.mt-7 {
8635
  margin-top: 6rem !important;
8636
}
8637
 
8638
.mt-auto {
8639
  margin-top: auto !important;
8640
}
8641
 
8642
.me-0 {
8643
  margin-right: 0 !important;
8644
}
8645
 
8646
.me-1 {
8647
  margin-right: 0.25rem !important;
8648
}
8649
 
8650
.me-2 {
8651
  margin-right: 0.5rem !important;
8652
}
8653
 
8654
.me-3 {
8655
  margin-right: 1rem !important;
8656
}
8657
 
8658
.me-4 {
8659
  margin-right: 1.5rem !important;
8660
}
8661
 
8662
.me-5 {
8663
  margin-right: 3rem !important;
8664
}
8665
 
8666
.me-6 {
8667
  margin-right: 4.5rem !important;
8668
}
8669
 
8670
.me-7 {
8671
  margin-right: 6rem !important;
8672
}
8673
 
8674
.me-auto {
8675
  margin-right: auto !important;
8676
}
8677
 
8678
.mb-0 {
8679
  margin-bottom: 0 !important;
8680
}
8681
 
16848 stevensc 8682
.mb-1,
8683
.example .btn-group {
16825 efrain 8684
  margin-bottom: 0.25rem !important;
8685
}
8686
 
8687
.mb-2 {
8688
  margin-bottom: 0.5rem !important;
8689
}
8690
 
8691
.mb-3 {
8692
  margin-bottom: 1rem !important;
8693
}
8694
 
8695
.mb-4 {
8696
  margin-bottom: 1.5rem !important;
8697
}
8698
 
8699
.mb-5 {
8700
  margin-bottom: 3rem !important;
8701
}
8702
 
8703
.mb-6 {
8704
  margin-bottom: 4.5rem !important;
8705
}
8706
 
8707
.mb-7 {
8708
  margin-bottom: 6rem !important;
8709
}
8710
 
8711
.mb-auto {
8712
  margin-bottom: auto !important;
8713
}
8714
 
8715
.ms-0 {
8716
  margin-left: 0 !important;
8717
}
8718
 
8719
.ms-1 {
8720
  margin-left: 0.25rem !important;
8721
}
8722
 
8723
.ms-2 {
8724
  margin-left: 0.5rem !important;
8725
}
8726
 
8727
.ms-3 {
8728
  margin-left: 1rem !important;
8729
}
8730
 
8731
.ms-4 {
8732
  margin-left: 1.5rem !important;
8733
}
8734
 
8735
.ms-5 {
8736
  margin-left: 3rem !important;
8737
}
8738
 
8739
.ms-6 {
8740
  margin-left: 4.5rem !important;
8741
}
8742
 
8743
.ms-7 {
8744
  margin-left: 6rem !important;
8745
}
8746
 
8747
.ms-auto {
8748
  margin-left: auto !important;
8749
}
8750
 
8751
.m-n1 {
8752
  margin: -0.25rem !important;
8753
}
8754
 
8755
.m-n2 {
8756
  margin: -0.5rem !important;
8757
}
8758
 
8759
.m-n3 {
8760
  margin: -1rem !important;
8761
}
8762
 
8763
.m-n4 {
8764
  margin: -1.5rem !important;
8765
}
8766
 
8767
.m-n5 {
8768
  margin: -3rem !important;
8769
}
8770
 
8771
.m-n6 {
8772
  margin: -4.5rem !important;
8773
}
8774
 
8775
.m-n7 {
8776
  margin: -6rem !important;
8777
}
8778
 
8779
.mx-n1 {
8780
  margin-right: -0.25rem !important;
8781
  margin-left: -0.25rem !important;
8782
}
8783
 
8784
.mx-n2 {
8785
  margin-right: -0.5rem !important;
8786
  margin-left: -0.5rem !important;
8787
}
8788
 
8789
.mx-n3 {
8790
  margin-right: -1rem !important;
8791
  margin-left: -1rem !important;
8792
}
8793
 
8794
.mx-n4 {
8795
  margin-right: -1.5rem !important;
8796
  margin-left: -1.5rem !important;
8797
}
8798
 
8799
.mx-n5 {
8800
  margin-right: -3rem !important;
8801
  margin-left: -3rem !important;
8802
}
8803
 
8804
.mx-n6 {
8805
  margin-right: -4.5rem !important;
8806
  margin-left: -4.5rem !important;
8807
}
8808
 
8809
.mx-n7 {
8810
  margin-right: -6rem !important;
8811
  margin-left: -6rem !important;
8812
}
8813
 
8814
.my-n1 {
8815
  margin-top: -0.25rem !important;
8816
  margin-bottom: -0.25rem !important;
8817
}
8818
 
8819
.my-n2 {
8820
  margin-top: -0.5rem !important;
8821
  margin-bottom: -0.5rem !important;
8822
}
8823
 
8824
.my-n3 {
8825
  margin-top: -1rem !important;
8826
  margin-bottom: -1rem !important;
8827
}
8828
 
8829
.my-n4 {
8830
  margin-top: -1.5rem !important;
8831
  margin-bottom: -1.5rem !important;
8832
}
8833
 
8834
.my-n5 {
8835
  margin-top: -3rem !important;
8836
  margin-bottom: -3rem !important;
8837
}
8838
 
8839
.my-n6 {
8840
  margin-top: -4.5rem !important;
8841
  margin-bottom: -4.5rem !important;
8842
}
8843
 
8844
.my-n7 {
8845
  margin-top: -6rem !important;
8846
  margin-bottom: -6rem !important;
8847
}
8848
 
8849
.mt-n1 {
8850
  margin-top: -0.25rem !important;
8851
}
8852
 
8853
.mt-n2 {
8854
  margin-top: -0.5rem !important;
8855
}
8856
 
8857
.mt-n3 {
8858
  margin-top: -1rem !important;
8859
}
8860
 
8861
.mt-n4 {
8862
  margin-top: -1.5rem !important;
8863
}
8864
 
8865
.mt-n5 {
8866
  margin-top: -3rem !important;
8867
}
8868
 
8869
.mt-n6 {
8870
  margin-top: -4.5rem !important;
8871
}
8872
 
8873
.mt-n7 {
8874
  margin-top: -6rem !important;
8875
}
8876
 
8877
.me-n1 {
8878
  margin-right: -0.25rem !important;
8879
}
8880
 
8881
.me-n2 {
8882
  margin-right: -0.5rem !important;
8883
}
8884
 
8885
.me-n3 {
8886
  margin-right: -1rem !important;
8887
}
8888
 
8889
.me-n4 {
8890
  margin-right: -1.5rem !important;
8891
}
8892
 
8893
.me-n5 {
8894
  margin-right: -3rem !important;
8895
}
8896
 
8897
.me-n6 {
8898
  margin-right: -4.5rem !important;
8899
}
8900
 
8901
.me-n7 {
8902
  margin-right: -6rem !important;
8903
}
8904
 
8905
.mb-n1 {
8906
  margin-bottom: -0.25rem !important;
8907
}
8908
 
8909
.mb-n2 {
8910
  margin-bottom: -0.5rem !important;
8911
}
8912
 
8913
.mb-n3 {
8914
  margin-bottom: -1rem !important;
8915
}
8916
 
8917
.mb-n4 {
8918
  margin-bottom: -1.5rem !important;
8919
}
8920
 
8921
.mb-n5 {
8922
  margin-bottom: -3rem !important;
8923
}
8924
 
8925
.mb-n6 {
8926
  margin-bottom: -4.5rem !important;
8927
}
8928
 
8929
.mb-n7 {
8930
  margin-bottom: -6rem !important;
8931
}
8932
 
8933
.ms-n1 {
8934
  margin-left: -0.25rem !important;
8935
}
8936
 
8937
.ms-n2 {
8938
  margin-left: -0.5rem !important;
8939
}
8940
 
8941
.ms-n3 {
8942
  margin-left: -1rem !important;
8943
}
8944
 
8945
.ms-n4 {
8946
  margin-left: -1.5rem !important;
8947
}
8948
 
8949
.ms-n5 {
8950
  margin-left: -3rem !important;
8951
}
8952
 
8953
.ms-n6 {
8954
  margin-left: -4.5rem !important;
8955
}
8956
 
8957
.ms-n7 {
8958
  margin-left: -6rem !important;
8959
}
8960
 
8961
.p-0 {
8962
  padding: 0 !important;
8963
}
8964
 
8965
.p-1 {
8966
  padding: 0.25rem !important;
8967
}
8968
 
8969
.p-2 {
8970
  padding: 0.5rem !important;
8971
}
8972
 
8973
.p-3 {
8974
  padding: 1rem !important;
8975
}
8976
 
8977
.p-4 {
8978
  padding: 1.5rem !important;
8979
}
8980
 
8981
.p-5 {
8982
  padding: 3rem !important;
8983
}
8984
 
8985
.p-6 {
8986
  padding: 4.5rem !important;
8987
}
8988
 
8989
.p-7 {
8990
  padding: 6rem !important;
8991
}
8992
 
8993
.px-0 {
8994
  padding-right: 0 !important;
8995
  padding-left: 0 !important;
8996
}
8997
 
8998
.px-1 {
8999
  padding-right: 0.25rem !important;
9000
  padding-left: 0.25rem !important;
9001
}
9002
 
9003
.px-2 {
9004
  padding-right: 0.5rem !important;
9005
  padding-left: 0.5rem !important;
9006
}
9007
 
9008
.px-3 {
9009
  padding-right: 1rem !important;
9010
  padding-left: 1rem !important;
9011
}
9012
 
9013
.px-4 {
9014
  padding-right: 1.5rem !important;
9015
  padding-left: 1.5rem !important;
9016
}
9017
 
9018
.px-5 {
9019
  padding-right: 3rem !important;
9020
  padding-left: 3rem !important;
9021
}
9022
 
9023
.px-6 {
9024
  padding-right: 4.5rem !important;
9025
  padding-left: 4.5rem !important;
9026
}
9027
 
9028
.px-7 {
9029
  padding-right: 6rem !important;
9030
  padding-left: 6rem !important;
9031
}
9032
 
9033
.py-0 {
9034
  padding-top: 0 !important;
9035
  padding-bottom: 0 !important;
9036
}
9037
 
9038
.py-1 {
9039
  padding-top: 0.25rem !important;
9040
  padding-bottom: 0.25rem !important;
9041
}
9042
 
9043
.py-2 {
9044
  padding-top: 0.5rem !important;
9045
  padding-bottom: 0.5rem !important;
9046
}
9047
 
9048
.py-3 {
9049
  padding-top: 1rem !important;
9050
  padding-bottom: 1rem !important;
9051
}
9052
 
9053
.py-4 {
9054
  padding-top: 1.5rem !important;
9055
  padding-bottom: 1.5rem !important;
9056
}
9057
 
9058
.py-5 {
9059
  padding-top: 3rem !important;
9060
  padding-bottom: 3rem !important;
9061
}
9062
 
9063
.py-6 {
9064
  padding-top: 4.5rem !important;
9065
  padding-bottom: 4.5rem !important;
9066
}
9067
 
9068
.py-7 {
9069
  padding-top: 6rem !important;
9070
  padding-bottom: 6rem !important;
9071
}
9072
 
9073
.pt-0 {
9074
  padding-top: 0 !important;
9075
}
9076
 
9077
.pt-1 {
9078
  padding-top: 0.25rem !important;
9079
}
9080
 
9081
.pt-2 {
9082
  padding-top: 0.5rem !important;
9083
}
9084
 
9085
.pt-3 {
9086
  padding-top: 1rem !important;
9087
}
9088
 
9089
.pt-4 {
9090
  padding-top: 1.5rem !important;
9091
}
9092
 
9093
.pt-5 {
9094
  padding-top: 3rem !important;
9095
}
9096
 
9097
.pt-6 {
9098
  padding-top: 4.5rem !important;
9099
}
9100
 
9101
.pt-7 {
9102
  padding-top: 6rem !important;
9103
}
9104
 
9105
.pe-0 {
9106
  padding-right: 0 !important;
9107
}
9108
 
9109
.pe-1 {
9110
  padding-right: 0.25rem !important;
9111
}
9112
 
9113
.pe-2 {
9114
  padding-right: 0.5rem !important;
9115
}
9116
 
9117
.pe-3 {
9118
  padding-right: 1rem !important;
9119
}
9120
 
9121
.pe-4 {
9122
  padding-right: 1.5rem !important;
9123
}
9124
 
9125
.pe-5 {
9126
  padding-right: 3rem !important;
9127
}
9128
 
9129
.pe-6 {
9130
  padding-right: 4.5rem !important;
9131
}
9132
 
9133
.pe-7 {
9134
  padding-right: 6rem !important;
9135
}
9136
 
9137
.pb-0 {
9138
  padding-bottom: 0 !important;
9139
}
9140
 
9141
.pb-1 {
9142
  padding-bottom: 0.25rem !important;
9143
}
9144
 
9145
.pb-2 {
9146
  padding-bottom: 0.5rem !important;
9147
}
9148
 
9149
.pb-3 {
9150
  padding-bottom: 1rem !important;
9151
}
9152
 
9153
.pb-4 {
9154
  padding-bottom: 1.5rem !important;
9155
}
9156
 
9157
.pb-5 {
9158
  padding-bottom: 3rem !important;
9159
}
9160
 
9161
.pb-6 {
9162
  padding-bottom: 4.5rem !important;
9163
}
9164
 
9165
.pb-7 {
9166
  padding-bottom: 6rem !important;
9167
}
9168
 
9169
.ps-0 {
9170
  padding-left: 0 !important;
9171
}
9172
 
9173
.ps-1 {
9174
  padding-left: 0.25rem !important;
9175
}
9176
 
9177
.ps-2 {
9178
  padding-left: 0.5rem !important;
9179
}
9180
 
9181
.ps-3 {
9182
  padding-left: 1rem !important;
9183
}
9184
 
9185
.ps-4 {
9186
  padding-left: 1.5rem !important;
9187
}
9188
 
9189
.ps-5 {
9190
  padding-left: 3rem !important;
9191
}
9192
 
9193
.ps-6 {
9194
  padding-left: 4.5rem !important;
9195
}
9196
 
9197
.ps-7 {
9198
  padding-left: 6rem !important;
9199
}
9200
 
9201
.gap-0 {
9202
  gap: 0 !important;
9203
}
9204
 
9205
.gap-1 {
9206
  gap: 0.25rem !important;
9207
}
9208
 
9209
.gap-2 {
9210
  gap: 0.5rem !important;
9211
}
9212
 
9213
.gap-3 {
9214
  gap: 1rem !important;
9215
}
9216
 
9217
.gap-4 {
9218
  gap: 1.5rem !important;
9219
}
9220
 
9221
.gap-5 {
9222
  gap: 3rem !important;
9223
}
9224
 
9225
.gap-6 {
9226
  gap: 4.5rem !important;
9227
}
9228
 
9229
.gap-7 {
9230
  gap: 6rem !important;
9231
}
9232
 
9233
.font-monospace {
9234
  font-family: var(--bs-font-monospace) !important;
9235
}
9236
 
9237
.fs-1 {
9238
  font-size: calc(1.375rem + 1.5vw) !important;
9239
}
9240
 
9241
.fs-2 {
9242
  font-size: calc(1.325rem + 0.9vw) !important;
9243
}
9244
 
9245
.fs-3 {
9246
  font-size: calc(1.275rem + 0.3vw) !important;
9247
}
9248
 
9249
.fs-4 {
9250
  font-size: 1.25rem !important;
9251
}
9252
 
9253
.fs-5 {
9254
  font-size: 1rem !important;
9255
}
9256
 
9257
.fs-6 {
9258
  font-size: 0.875rem !important;
9259
}
9260
 
9261
.fst-italic {
9262
  font-style: italic !important;
9263
}
9264
 
9265
.fst-normal {
9266
  font-style: normal !important;
9267
}
9268
 
9269
.fw-light {
9270
  font-weight: 300 !important;
9271
}
9272
 
9273
.fw-lighter {
9274
  font-weight: lighter !important;
9275
}
9276
 
9277
.fw-normal {
9278
  font-weight: 400 !important;
9279
}
9280
 
9281
.fw-bold {
9282
  font-weight: 500 !important;
9283
}
9284
 
9285
.fw-semibold {
9286
  font-weight: 600 !important;
9287
}
9288
 
9289
.fw-bolder {
9290
  font-weight: 700 !important;
9291
}
9292
 
9293
.lh-1 {
9294
  line-height: 1 !important;
9295
}
9296
 
9297
.lh-sm {
9298
  line-height: 1.25 !important;
9299
}
9300
 
9301
.lh-base {
9302
  line-height: 1.5 !important;
9303
}
9304
 
9305
.lh-lg {
9306
  line-height: 2 !important;
9307
}
9308
 
9309
.text-start {
9310
  text-align: left !important;
9311
}
9312
 
9313
.text-end {
9314
  text-align: right !important;
9315
}
9316
 
9317
.text-center {
9318
  text-align: center !important;
9319
}
9320
 
9321
.text-decoration-none {
9322
  text-decoration: none !important;
9323
}
9324
 
9325
.text-decoration-underline {
9326
  text-decoration: underline !important;
9327
}
9328
 
9329
.text-decoration-line-through {
9330
  text-decoration: line-through !important;
9331
}
9332
 
9333
.text-lowercase {
9334
  text-transform: lowercase !important;
9335
}
9336
 
9337
.text-uppercase {
9338
  text-transform: uppercase !important;
9339
}
9340
 
9341
.text-capitalize {
9342
  text-transform: capitalize !important;
9343
}
9344
 
9345
.text-wrap {
9346
  white-space: normal !important;
9347
}
9348
 
9349
.text-nowrap {
9350
  white-space: nowrap !important;
9351
}
9352
 
9353
/* rtl:begin:remove */
9354
.text-break {
9355
  word-wrap: break-word !important;
9356
  word-break: break-word !important;
9357
}
9358
 
9359
/* rtl:end:remove */
9360
.text-primary {
9361
  --bs-text-opacity: 1;
9362
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9363
}
9364
 
9365
.text-secondary {
9366
  --bs-text-opacity: 1;
9367
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9368
}
9369
 
9370
.text-success {
9371
  --bs-text-opacity: 1;
9372
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9373
}
9374
 
9375
.text-info {
9376
  --bs-text-opacity: 1;
9377
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9378
}
9379
 
9380
.text-warning {
9381
  --bs-text-opacity: 1;
9382
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9383
}
9384
 
9385
.text-danger {
9386
  --bs-text-opacity: 1;
9387
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9388
}
9389
 
9390
.text-light {
9391
  --bs-text-opacity: 1;
9392
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9393
}
9394
 
9395
.text-dark {
9396
  --bs-text-opacity: 1;
9397
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9398
}
9399
 
9400
.text-black {
9401
  --bs-text-opacity: 1;
9402
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9403
}
9404
 
9405
.text-white {
9406
  --bs-text-opacity: 1;
9407
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9408
}
9409
 
9410
.text-body {
9411
  --bs-text-opacity: 1;
9412
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9413
}
9414
 
16848 stevensc 9415
.text-muted,
9416
.dropzone.dz-clickable .dz-message * {
16825 efrain 9417
  --bs-text-opacity: 1;
9418
  color: #7987a1 !important;
9419
}
9420
 
9421
.text-black-50 {
9422
  --bs-text-opacity: 1;
9423
  color: rgba(0, 0, 0, 0.5) !important;
9424
}
9425
 
9426
.text-white-50 {
9427
  --bs-text-opacity: 1;
9428
  color: rgba(255, 255, 255, 0.5) !important;
9429
}
9430
 
9431
.text-reset {
9432
  --bs-text-opacity: 1;
9433
  color: inherit !important;
9434
}
9435
 
9436
.text-opacity-25 {
9437
  --bs-text-opacity: 0.25;
9438
}
9439
 
9440
.text-opacity-50 {
9441
  --bs-text-opacity: 0.5;
9442
}
9443
 
9444
.text-opacity-75 {
9445
  --bs-text-opacity: 0.75;
9446
}
9447
 
9448
.text-opacity-100 {
9449
  --bs-text-opacity: 1;
9450
}
9451
 
9452
.bg-primary {
9453
  --bs-bg-opacity: 1;
9454
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9455
}
9456
 
9457
.bg-secondary {
9458
  --bs-bg-opacity: 1;
9459
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9460
}
9461
 
9462
.bg-success {
9463
  --bs-bg-opacity: 1;
9464
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9465
}
9466
 
9467
.bg-info {
9468
  --bs-bg-opacity: 1;
9469
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9470
}
9471
 
9472
.bg-warning {
9473
  --bs-bg-opacity: 1;
9474
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9475
}
9476
 
9477
.bg-danger {
9478
  --bs-bg-opacity: 1;
9479
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9480
}
9481
 
9482
.bg-light {
9483
  --bs-bg-opacity: 1;
9484
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9485
}
9486
 
9487
.bg-dark {
9488
  --bs-bg-opacity: 1;
9489
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9490
}
9491
 
9492
.bg-black {
9493
  --bs-bg-opacity: 1;
9494
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9495
}
9496
 
9497
.bg-white {
9498
  --bs-bg-opacity: 1;
9499
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9500
}
9501
 
9502
.bg-body {
9503
  --bs-bg-opacity: 1;
9504
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9505
}
9506
 
9507
.bg-transparent {
9508
  --bs-bg-opacity: 1;
9509
  background-color: transparent !important;
9510
}
9511
 
9512
.bg-opacity-10 {
9513
  --bs-bg-opacity: 0.1;
9514
}
9515
 
9516
.bg-opacity-25 {
9517
  --bs-bg-opacity: 0.25;
9518
}
9519
 
9520
.bg-opacity-50 {
9521
  --bs-bg-opacity: 0.5;
9522
}
9523
 
9524
.bg-opacity-75 {
9525
  --bs-bg-opacity: 0.75;
9526
}
9527
 
9528
.bg-opacity-100 {
9529
  --bs-bg-opacity: 1;
9530
}
9531
 
9532
.bg-gradient {
9533
  background-image: var(--bs-gradient) !important;
9534
}
9535
 
9536
.user-select-all {
9537
  user-select: all !important;
9538
}
9539
 
9540
.user-select-auto {
9541
  user-select: auto !important;
9542
}
9543
 
9544
.user-select-none {
9545
  user-select: none !important;
9546
}
9547
 
9548
.pe-none {
9549
  pointer-events: none !important;
9550
}
9551
 
9552
.pe-auto {
9553
  pointer-events: auto !important;
9554
}
9555
 
9556
.rounded {
9557
  border-radius: var(--bs-border-radius) !important;
9558
}
9559
 
9560
.rounded-0 {
9561
  border-radius: 0 !important;
9562
}
9563
 
9564
.rounded-1 {
9565
  border-radius: var(--bs-border-radius-sm) !important;
9566
}
9567
 
9568
.rounded-2 {
9569
  border-radius: var(--bs-border-radius) !important;
9570
}
9571
 
9572
.rounded-3 {
9573
  border-radius: var(--bs-border-radius-lg) !important;
9574
}
9575
 
9576
.rounded-4 {
9577
  border-radius: var(--bs-border-radius-xl) !important;
9578
}
9579
 
9580
.rounded-5 {
9581
  border-radius: var(--bs-border-radius-2xl) !important;
9582
}
9583
 
9584
.rounded-circle {
9585
  border-radius: 50% !important;
9586
}
9587
 
9588
.rounded-pill {
9589
  border-radius: var(--bs-border-radius-pill) !important;
9590
}
9591
 
9592
.rounded-top {
9593
  border-top-left-radius: var(--bs-border-radius) !important;
9594
  border-top-right-radius: var(--bs-border-radius) !important;
9595
}
9596
 
9597
.rounded-end {
9598
  border-top-right-radius: var(--bs-border-radius) !important;
9599
  border-bottom-right-radius: var(--bs-border-radius) !important;
9600
}
9601
 
9602
.rounded-bottom {
9603
  border-bottom-right-radius: var(--bs-border-radius) !important;
9604
  border-bottom-left-radius: var(--bs-border-radius) !important;
9605
}
9606
 
9607
.rounded-start {
9608
  border-bottom-left-radius: var(--bs-border-radius) !important;
9609
  border-top-left-radius: var(--bs-border-radius) !important;
9610
}
9611
 
9612
.visible {
9613
  visibility: visible !important;
9614
}
9615
 
9616
.invisible {
9617
  visibility: hidden !important;
9618
}
9619
 
9620
.bg-gray-100 {
9621
  background-color: #f8f9fa !important;
9622
}
9623
 
9624
.bg-gray-200 {
9625
  background-color: #e9ecef !important;
9626
}
9627
 
9628
.bg-gray-300 {
9629
  background-color: #dee2e6 !important;
9630
}
9631
 
9632
.bg-gray-400 {
9633
  background-color: #cbd1db !important;
9634
}
9635
 
9636
.bg-gray-500 {
9637
  background-color: #aeb7c5 !important;
9638
}
9639
 
9640
.bg-gray-600 {
9641
  background-color: #7987a1 !important;
9642
}
9643
 
9644
.bg-gray-700 {
9645
  background-color: #41516c !important;
9646
}
9647
 
9648
.bg-gray-800 {
9649
  background-color: #212a3a !important;
9650
}
9651
 
9652
.bg-gray-900 {
9653
  background-color: #060c17 !important;
9654
}
9655
 
9656
@media (min-width: 576px) {
9657
  .float-sm-start {
9658
    float: left !important;
9659
  }
16848 stevensc 9660
 
16825 efrain 9661
  .float-sm-end {
9662
    float: right !important;
9663
  }
16848 stevensc 9664
 
16825 efrain 9665
  .float-sm-none {
9666
    float: none !important;
9667
  }
16848 stevensc 9668
 
16825 efrain 9669
  .d-sm-inline {
9670
    display: inline !important;
9671
  }
16848 stevensc 9672
 
16825 efrain 9673
  .d-sm-inline-block {
9674
    display: inline-block !important;
9675
  }
16848 stevensc 9676
 
16825 efrain 9677
  .d-sm-block {
9678
    display: block !important;
9679
  }
16848 stevensc 9680
 
16825 efrain 9681
  .d-sm-grid {
9682
    display: grid !important;
9683
  }
16848 stevensc 9684
 
16825 efrain 9685
  .d-sm-table {
9686
    display: table !important;
9687
  }
16848 stevensc 9688
 
16825 efrain 9689
  .d-sm-table-row {
9690
    display: table-row !important;
9691
  }
16848 stevensc 9692
 
16825 efrain 9693
  .d-sm-table-cell {
9694
    display: table-cell !important;
9695
  }
16848 stevensc 9696
 
16825 efrain 9697
  .d-sm-flex {
9698
    display: flex !important;
9699
  }
16848 stevensc 9700
 
16825 efrain 9701
  .d-sm-inline-flex {
9702
    display: inline-flex !important;
9703
  }
16848 stevensc 9704
 
16825 efrain 9705
  .d-sm-none {
9706
    display: none !important;
9707
  }
16848 stevensc 9708
 
16825 efrain 9709
  .border-sm {
9710
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9711
  }
16848 stevensc 9712
 
16825 efrain 9713
  .border-sm-0 {
9714
    border: 0 !important;
9715
  }
16848 stevensc 9716
 
16825 efrain 9717
  .border-top-sm {
9718
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9719
  }
16848 stevensc 9720
 
16825 efrain 9721
  .border-top-sm-0 {
9722
    border-top: 0 !important;
9723
  }
16848 stevensc 9724
 
16825 efrain 9725
  .border-end-sm {
9726
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9727
  }
16848 stevensc 9728
 
16825 efrain 9729
  .border-end-sm-0 {
9730
    border-right: 0 !important;
9731
  }
16848 stevensc 9732
 
16825 efrain 9733
  .border-bottom-sm {
9734
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9735
  }
16848 stevensc 9736
 
16825 efrain 9737
  .border-bottom-sm-0 {
9738
    border-bottom: 0 !important;
9739
  }
16848 stevensc 9740
 
16825 efrain 9741
  .border-start-sm {
9742
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9743
  }
16848 stevensc 9744
 
16825 efrain 9745
  .border-start-sm-0 {
9746
    border-left: 0 !important;
9747
  }
16848 stevensc 9748
 
16825 efrain 9749
  .flex-sm-fill {
9750
    flex: 1 1 auto !important;
9751
  }
16848 stevensc 9752
 
16825 efrain 9753
  .flex-sm-row {
9754
    flex-direction: row !important;
9755
  }
16848 stevensc 9756
 
16825 efrain 9757
  .flex-sm-column {
9758
    flex-direction: column !important;
9759
  }
16848 stevensc 9760
 
16825 efrain 9761
  .flex-sm-row-reverse {
9762
    flex-direction: row-reverse !important;
9763
  }
16848 stevensc 9764
 
16825 efrain 9765
  .flex-sm-column-reverse {
9766
    flex-direction: column-reverse !important;
9767
  }
16848 stevensc 9768
 
16825 efrain 9769
  .flex-sm-grow-0 {
9770
    flex-grow: 0 !important;
9771
  }
16848 stevensc 9772
 
16825 efrain 9773
  .flex-sm-grow-1 {
9774
    flex-grow: 1 !important;
9775
  }
16848 stevensc 9776
 
16825 efrain 9777
  .flex-sm-shrink-0 {
9778
    flex-shrink: 0 !important;
9779
  }
16848 stevensc 9780
 
16825 efrain 9781
  .flex-sm-shrink-1 {
9782
    flex-shrink: 1 !important;
9783
  }
16848 stevensc 9784
 
16825 efrain 9785
  .flex-sm-wrap {
9786
    flex-wrap: wrap !important;
9787
  }
16848 stevensc 9788
 
16825 efrain 9789
  .flex-sm-nowrap {
9790
    flex-wrap: nowrap !important;
9791
  }
16848 stevensc 9792
 
16825 efrain 9793
  .flex-sm-wrap-reverse {
9794
    flex-wrap: wrap-reverse !important;
9795
  }
16848 stevensc 9796
 
16825 efrain 9797
  .justify-content-sm-start {
9798
    justify-content: flex-start !important;
9799
  }
16848 stevensc 9800
 
16825 efrain 9801
  .justify-content-sm-end {
9802
    justify-content: flex-end !important;
9803
  }
16848 stevensc 9804
 
16825 efrain 9805
  .justify-content-sm-center {
9806
    justify-content: center !important;
9807
  }
16848 stevensc 9808
 
16825 efrain 9809
  .justify-content-sm-between {
9810
    justify-content: space-between !important;
9811
  }
16848 stevensc 9812
 
16825 efrain 9813
  .justify-content-sm-around {
9814
    justify-content: space-around !important;
9815
  }
16848 stevensc 9816
 
16825 efrain 9817
  .justify-content-sm-evenly {
9818
    justify-content: space-evenly !important;
9819
  }
16848 stevensc 9820
 
16825 efrain 9821
  .align-items-sm-start {
9822
    align-items: flex-start !important;
9823
  }
16848 stevensc 9824
 
16825 efrain 9825
  .align-items-sm-end {
9826
    align-items: flex-end !important;
9827
  }
16848 stevensc 9828
 
16825 efrain 9829
  .align-items-sm-center {
9830
    align-items: center !important;
9831
  }
16848 stevensc 9832
 
16825 efrain 9833
  .align-items-sm-baseline {
9834
    align-items: baseline !important;
9835
  }
16848 stevensc 9836
 
16825 efrain 9837
  .align-items-sm-stretch {
9838
    align-items: stretch !important;
9839
  }
16848 stevensc 9840
 
16825 efrain 9841
  .align-content-sm-start {
9842
    align-content: flex-start !important;
9843
  }
16848 stevensc 9844
 
16825 efrain 9845
  .align-content-sm-end {
9846
    align-content: flex-end !important;
9847
  }
16848 stevensc 9848
 
16825 efrain 9849
  .align-content-sm-center {
9850
    align-content: center !important;
9851
  }
16848 stevensc 9852
 
16825 efrain 9853
  .align-content-sm-between {
9854
    align-content: space-between !important;
9855
  }
16848 stevensc 9856
 
16825 efrain 9857
  .align-content-sm-around {
9858
    align-content: space-around !important;
9859
  }
16848 stevensc 9860
 
16825 efrain 9861
  .align-content-sm-stretch {
9862
    align-content: stretch !important;
9863
  }
16848 stevensc 9864
 
16825 efrain 9865
  .align-self-sm-auto {
9866
    align-self: auto !important;
9867
  }
16848 stevensc 9868
 
16825 efrain 9869
  .align-self-sm-start {
9870
    align-self: flex-start !important;
9871
  }
16848 stevensc 9872
 
16825 efrain 9873
  .align-self-sm-end {
9874
    align-self: flex-end !important;
9875
  }
16848 stevensc 9876
 
16825 efrain 9877
  .align-self-sm-center {
9878
    align-self: center !important;
9879
  }
16848 stevensc 9880
 
16825 efrain 9881
  .align-self-sm-baseline {
9882
    align-self: baseline !important;
9883
  }
16848 stevensc 9884
 
16825 efrain 9885
  .align-self-sm-stretch {
9886
    align-self: stretch !important;
9887
  }
16848 stevensc 9888
 
16825 efrain 9889
  .order-sm-first {
9890
    order: -1 !important;
9891
  }
16848 stevensc 9892
 
16825 efrain 9893
  .order-sm-0 {
9894
    order: 0 !important;
9895
  }
16848 stevensc 9896
 
16825 efrain 9897
  .order-sm-1 {
9898
    order: 1 !important;
9899
  }
16848 stevensc 9900
 
16825 efrain 9901
  .order-sm-2 {
9902
    order: 2 !important;
9903
  }
16848 stevensc 9904
 
16825 efrain 9905
  .order-sm-3 {
9906
    order: 3 !important;
9907
  }
16848 stevensc 9908
 
16825 efrain 9909
  .order-sm-4 {
9910
    order: 4 !important;
9911
  }
16848 stevensc 9912
 
16825 efrain 9913
  .order-sm-5 {
9914
    order: 5 !important;
9915
  }
16848 stevensc 9916
 
16825 efrain 9917
  .order-sm-last {
9918
    order: 6 !important;
9919
  }
16848 stevensc 9920
 
16825 efrain 9921
  .m-sm-0 {
9922
    margin: 0 !important;
9923
  }
16848 stevensc 9924
 
16825 efrain 9925
  .m-sm-1 {
9926
    margin: 0.25rem !important;
9927
  }
16848 stevensc 9928
 
16825 efrain 9929
  .m-sm-2 {
9930
    margin: 0.5rem !important;
9931
  }
16848 stevensc 9932
 
16825 efrain 9933
  .m-sm-3 {
9934
    margin: 1rem !important;
9935
  }
16848 stevensc 9936
 
16825 efrain 9937
  .m-sm-4 {
9938
    margin: 1.5rem !important;
9939
  }
16848 stevensc 9940
 
16825 efrain 9941
  .m-sm-5 {
9942
    margin: 3rem !important;
9943
  }
16848 stevensc 9944
 
16825 efrain 9945
  .m-sm-6 {
9946
    margin: 4.5rem !important;
9947
  }
16848 stevensc 9948
 
16825 efrain 9949
  .m-sm-7 {
9950
    margin: 6rem !important;
9951
  }
16848 stevensc 9952
 
16825 efrain 9953
  .m-sm-auto {
9954
    margin: auto !important;
9955
  }
16848 stevensc 9956
 
16825 efrain 9957
  .mx-sm-0 {
9958
    margin-right: 0 !important;
9959
    margin-left: 0 !important;
9960
  }
16848 stevensc 9961
 
16825 efrain 9962
  .mx-sm-1 {
9963
    margin-right: 0.25rem !important;
9964
    margin-left: 0.25rem !important;
9965
  }
16848 stevensc 9966
 
16825 efrain 9967
  .mx-sm-2 {
9968
    margin-right: 0.5rem !important;
9969
    margin-left: 0.5rem !important;
9970
  }
16848 stevensc 9971
 
16825 efrain 9972
  .mx-sm-3 {
9973
    margin-right: 1rem !important;
9974
    margin-left: 1rem !important;
9975
  }
16848 stevensc 9976
 
16825 efrain 9977
  .mx-sm-4 {
9978
    margin-right: 1.5rem !important;
9979
    margin-left: 1.5rem !important;
9980
  }
16848 stevensc 9981
 
16825 efrain 9982
  .mx-sm-5 {
9983
    margin-right: 3rem !important;
9984
    margin-left: 3rem !important;
9985
  }
16848 stevensc 9986
 
16825 efrain 9987
  .mx-sm-6 {
9988
    margin-right: 4.5rem !important;
9989
    margin-left: 4.5rem !important;
9990
  }
16848 stevensc 9991
 
16825 efrain 9992
  .mx-sm-7 {
9993
    margin-right: 6rem !important;
9994
    margin-left: 6rem !important;
9995
  }
16848 stevensc 9996
 
16825 efrain 9997
  .mx-sm-auto {
9998
    margin-right: auto !important;
9999
    margin-left: auto !important;
10000
  }
16848 stevensc 10001
 
16825 efrain 10002
  .my-sm-0 {
10003
    margin-top: 0 !important;
10004
    margin-bottom: 0 !important;
10005
  }
16848 stevensc 10006
 
16825 efrain 10007
  .my-sm-1 {
10008
    margin-top: 0.25rem !important;
10009
    margin-bottom: 0.25rem !important;
10010
  }
16848 stevensc 10011
 
16825 efrain 10012
  .my-sm-2 {
10013
    margin-top: 0.5rem !important;
10014
    margin-bottom: 0.5rem !important;
10015
  }
16848 stevensc 10016
 
16825 efrain 10017
  .my-sm-3 {
10018
    margin-top: 1rem !important;
10019
    margin-bottom: 1rem !important;
10020
  }
16848 stevensc 10021
 
16825 efrain 10022
  .my-sm-4 {
10023
    margin-top: 1.5rem !important;
10024
    margin-bottom: 1.5rem !important;
10025
  }
16848 stevensc 10026
 
16825 efrain 10027
  .my-sm-5 {
10028
    margin-top: 3rem !important;
10029
    margin-bottom: 3rem !important;
10030
  }
16848 stevensc 10031
 
16825 efrain 10032
  .my-sm-6 {
10033
    margin-top: 4.5rem !important;
10034
    margin-bottom: 4.5rem !important;
10035
  }
16848 stevensc 10036
 
16825 efrain 10037
  .my-sm-7 {
10038
    margin-top: 6rem !important;
10039
    margin-bottom: 6rem !important;
10040
  }
16848 stevensc 10041
 
16825 efrain 10042
  .my-sm-auto {
10043
    margin-top: auto !important;
10044
    margin-bottom: auto !important;
10045
  }
16848 stevensc 10046
 
16825 efrain 10047
  .mt-sm-0 {
10048
    margin-top: 0 !important;
10049
  }
16848 stevensc 10050
 
16825 efrain 10051
  .mt-sm-1 {
10052
    margin-top: 0.25rem !important;
10053
  }
16848 stevensc 10054
 
16825 efrain 10055
  .mt-sm-2 {
10056
    margin-top: 0.5rem !important;
10057
  }
16848 stevensc 10058
 
16825 efrain 10059
  .mt-sm-3 {
10060
    margin-top: 1rem !important;
10061
  }
16848 stevensc 10062
 
16825 efrain 10063
  .mt-sm-4 {
10064
    margin-top: 1.5rem !important;
10065
  }
16848 stevensc 10066
 
16825 efrain 10067
  .mt-sm-5 {
10068
    margin-top: 3rem !important;
10069
  }
16848 stevensc 10070
 
16825 efrain 10071
  .mt-sm-6 {
10072
    margin-top: 4.5rem !important;
10073
  }
16848 stevensc 10074
 
16825 efrain 10075
  .mt-sm-7 {
10076
    margin-top: 6rem !important;
10077
  }
16848 stevensc 10078
 
16825 efrain 10079
  .mt-sm-auto {
10080
    margin-top: auto !important;
10081
  }
16848 stevensc 10082
 
16825 efrain 10083
  .me-sm-0 {
10084
    margin-right: 0 !important;
10085
  }
16848 stevensc 10086
 
16825 efrain 10087
  .me-sm-1 {
10088
    margin-right: 0.25rem !important;
10089
  }
16848 stevensc 10090
 
16825 efrain 10091
  .me-sm-2 {
10092
    margin-right: 0.5rem !important;
10093
  }
16848 stevensc 10094
 
16825 efrain 10095
  .me-sm-3 {
10096
    margin-right: 1rem !important;
10097
  }
16848 stevensc 10098
 
16825 efrain 10099
  .me-sm-4 {
10100
    margin-right: 1.5rem !important;
10101
  }
16848 stevensc 10102
 
16825 efrain 10103
  .me-sm-5 {
10104
    margin-right: 3rem !important;
10105
  }
16848 stevensc 10106
 
16825 efrain 10107
  .me-sm-6 {
10108
    margin-right: 4.5rem !important;
10109
  }
16848 stevensc 10110
 
16825 efrain 10111
  .me-sm-7 {
10112
    margin-right: 6rem !important;
10113
  }
16848 stevensc 10114
 
16825 efrain 10115
  .me-sm-auto {
10116
    margin-right: auto !important;
10117
  }
16848 stevensc 10118
 
16825 efrain 10119
  .mb-sm-0 {
10120
    margin-bottom: 0 !important;
10121
  }
16848 stevensc 10122
 
16825 efrain 10123
  .mb-sm-1 {
10124
    margin-bottom: 0.25rem !important;
10125
  }
16848 stevensc 10126
 
16825 efrain 10127
  .mb-sm-2 {
10128
    margin-bottom: 0.5rem !important;
10129
  }
16848 stevensc 10130
 
16825 efrain 10131
  .mb-sm-3 {
10132
    margin-bottom: 1rem !important;
10133
  }
16848 stevensc 10134
 
16825 efrain 10135
  .mb-sm-4 {
10136
    margin-bottom: 1.5rem !important;
10137
  }
16848 stevensc 10138
 
16825 efrain 10139
  .mb-sm-5 {
10140
    margin-bottom: 3rem !important;
10141
  }
16848 stevensc 10142
 
16825 efrain 10143
  .mb-sm-6 {
10144
    margin-bottom: 4.5rem !important;
10145
  }
16848 stevensc 10146
 
16825 efrain 10147
  .mb-sm-7 {
10148
    margin-bottom: 6rem !important;
10149
  }
16848 stevensc 10150
 
16825 efrain 10151
  .mb-sm-auto {
10152
    margin-bottom: auto !important;
10153
  }
16848 stevensc 10154
 
16825 efrain 10155
  .ms-sm-0 {
10156
    margin-left: 0 !important;
10157
  }
16848 stevensc 10158
 
16825 efrain 10159
  .ms-sm-1 {
10160
    margin-left: 0.25rem !important;
10161
  }
16848 stevensc 10162
 
16825 efrain 10163
  .ms-sm-2 {
10164
    margin-left: 0.5rem !important;
10165
  }
16848 stevensc 10166
 
16825 efrain 10167
  .ms-sm-3 {
10168
    margin-left: 1rem !important;
10169
  }
16848 stevensc 10170
 
16825 efrain 10171
  .ms-sm-4 {
10172
    margin-left: 1.5rem !important;
10173
  }
16848 stevensc 10174
 
16825 efrain 10175
  .ms-sm-5 {
10176
    margin-left: 3rem !important;
10177
  }
16848 stevensc 10178
 
16825 efrain 10179
  .ms-sm-6 {
10180
    margin-left: 4.5rem !important;
10181
  }
16848 stevensc 10182
 
16825 efrain 10183
  .ms-sm-7 {
10184
    margin-left: 6rem !important;
10185
  }
16848 stevensc 10186
 
16825 efrain 10187
  .ms-sm-auto {
10188
    margin-left: auto !important;
10189
  }
16848 stevensc 10190
 
16825 efrain 10191
  .m-sm-n1 {
10192
    margin: -0.25rem !important;
10193
  }
16848 stevensc 10194
 
16825 efrain 10195
  .m-sm-n2 {
10196
    margin: -0.5rem !important;
10197
  }
16848 stevensc 10198
 
16825 efrain 10199
  .m-sm-n3 {
10200
    margin: -1rem !important;
10201
  }
16848 stevensc 10202
 
16825 efrain 10203
  .m-sm-n4 {
10204
    margin: -1.5rem !important;
10205
  }
16848 stevensc 10206
 
16825 efrain 10207
  .m-sm-n5 {
10208
    margin: -3rem !important;
10209
  }
16848 stevensc 10210
 
16825 efrain 10211
  .m-sm-n6 {
10212
    margin: -4.5rem !important;
10213
  }
16848 stevensc 10214
 
16825 efrain 10215
  .m-sm-n7 {
10216
    margin: -6rem !important;
10217
  }
16848 stevensc 10218
 
16825 efrain 10219
  .mx-sm-n1 {
10220
    margin-right: -0.25rem !important;
10221
    margin-left: -0.25rem !important;
10222
  }
16848 stevensc 10223
 
16825 efrain 10224
  .mx-sm-n2 {
10225
    margin-right: -0.5rem !important;
10226
    margin-left: -0.5rem !important;
10227
  }
16848 stevensc 10228
 
16825 efrain 10229
  .mx-sm-n3 {
10230
    margin-right: -1rem !important;
10231
    margin-left: -1rem !important;
10232
  }
16848 stevensc 10233
 
16825 efrain 10234
  .mx-sm-n4 {
10235
    margin-right: -1.5rem !important;
10236
    margin-left: -1.5rem !important;
10237
  }
16848 stevensc 10238
 
16825 efrain 10239
  .mx-sm-n5 {
10240
    margin-right: -3rem !important;
10241
    margin-left: -3rem !important;
10242
  }
16848 stevensc 10243
 
16825 efrain 10244
  .mx-sm-n6 {
10245
    margin-right: -4.5rem !important;
10246
    margin-left: -4.5rem !important;
10247
  }
16848 stevensc 10248
 
16825 efrain 10249
  .mx-sm-n7 {
10250
    margin-right: -6rem !important;
10251
    margin-left: -6rem !important;
10252
  }
16848 stevensc 10253
 
16825 efrain 10254
  .my-sm-n1 {
10255
    margin-top: -0.25rem !important;
10256
    margin-bottom: -0.25rem !important;
10257
  }
16848 stevensc 10258
 
16825 efrain 10259
  .my-sm-n2 {
10260
    margin-top: -0.5rem !important;
10261
    margin-bottom: -0.5rem !important;
10262
  }
16848 stevensc 10263
 
16825 efrain 10264
  .my-sm-n3 {
10265
    margin-top: -1rem !important;
10266
    margin-bottom: -1rem !important;
10267
  }
16848 stevensc 10268
 
16825 efrain 10269
  .my-sm-n4 {
10270
    margin-top: -1.5rem !important;
10271
    margin-bottom: -1.5rem !important;
10272
  }
16848 stevensc 10273
 
16825 efrain 10274
  .my-sm-n5 {
10275
    margin-top: -3rem !important;
10276
    margin-bottom: -3rem !important;
10277
  }
16848 stevensc 10278
 
16825 efrain 10279
  .my-sm-n6 {
10280
    margin-top: -4.5rem !important;
10281
    margin-bottom: -4.5rem !important;
10282
  }
16848 stevensc 10283
 
16825 efrain 10284
  .my-sm-n7 {
10285
    margin-top: -6rem !important;
10286
    margin-bottom: -6rem !important;
10287
  }
16848 stevensc 10288
 
16825 efrain 10289
  .mt-sm-n1 {
10290
    margin-top: -0.25rem !important;
10291
  }
16848 stevensc 10292
 
16825 efrain 10293
  .mt-sm-n2 {
10294
    margin-top: -0.5rem !important;
10295
  }
16848 stevensc 10296
 
16825 efrain 10297
  .mt-sm-n3 {
10298
    margin-top: -1rem !important;
10299
  }
16848 stevensc 10300
 
16825 efrain 10301
  .mt-sm-n4 {
10302
    margin-top: -1.5rem !important;
10303
  }
16848 stevensc 10304
 
16825 efrain 10305
  .mt-sm-n5 {
10306
    margin-top: -3rem !important;
10307
  }
16848 stevensc 10308
 
16825 efrain 10309
  .mt-sm-n6 {
10310
    margin-top: -4.5rem !important;
10311
  }
16848 stevensc 10312
 
16825 efrain 10313
  .mt-sm-n7 {
10314
    margin-top: -6rem !important;
10315
  }
16848 stevensc 10316
 
16825 efrain 10317
  .me-sm-n1 {
10318
    margin-right: -0.25rem !important;
10319
  }
16848 stevensc 10320
 
16825 efrain 10321
  .me-sm-n2 {
10322
    margin-right: -0.5rem !important;
10323
  }
16848 stevensc 10324
 
16825 efrain 10325
  .me-sm-n3 {
10326
    margin-right: -1rem !important;
10327
  }
16848 stevensc 10328
 
16825 efrain 10329
  .me-sm-n4 {
10330
    margin-right: -1.5rem !important;
10331
  }
16848 stevensc 10332
 
16825 efrain 10333
  .me-sm-n5 {
10334
    margin-right: -3rem !important;
10335
  }
16848 stevensc 10336
 
16825 efrain 10337
  .me-sm-n6 {
10338
    margin-right: -4.5rem !important;
10339
  }
16848 stevensc 10340
 
16825 efrain 10341
  .me-sm-n7 {
10342
    margin-right: -6rem !important;
10343
  }
16848 stevensc 10344
 
16825 efrain 10345
  .mb-sm-n1 {
10346
    margin-bottom: -0.25rem !important;
10347
  }
16848 stevensc 10348
 
16825 efrain 10349
  .mb-sm-n2 {
10350
    margin-bottom: -0.5rem !important;
10351
  }
16848 stevensc 10352
 
16825 efrain 10353
  .mb-sm-n3 {
10354
    margin-bottom: -1rem !important;
10355
  }
16848 stevensc 10356
 
16825 efrain 10357
  .mb-sm-n4 {
10358
    margin-bottom: -1.5rem !important;
10359
  }
16848 stevensc 10360
 
16825 efrain 10361
  .mb-sm-n5 {
10362
    margin-bottom: -3rem !important;
10363
  }
16848 stevensc 10364
 
16825 efrain 10365
  .mb-sm-n6 {
10366
    margin-bottom: -4.5rem !important;
10367
  }
16848 stevensc 10368
 
16825 efrain 10369
  .mb-sm-n7 {
10370
    margin-bottom: -6rem !important;
10371
  }
16848 stevensc 10372
 
16825 efrain 10373
  .ms-sm-n1 {
10374
    margin-left: -0.25rem !important;
10375
  }
16848 stevensc 10376
 
16825 efrain 10377
  .ms-sm-n2 {
10378
    margin-left: -0.5rem !important;
10379
  }
16848 stevensc 10380
 
16825 efrain 10381
  .ms-sm-n3 {
10382
    margin-left: -1rem !important;
10383
  }
16848 stevensc 10384
 
16825 efrain 10385
  .ms-sm-n4 {
10386
    margin-left: -1.5rem !important;
10387
  }
16848 stevensc 10388
 
16825 efrain 10389
  .ms-sm-n5 {
10390
    margin-left: -3rem !important;
10391
  }
16848 stevensc 10392
 
16825 efrain 10393
  .ms-sm-n6 {
10394
    margin-left: -4.5rem !important;
10395
  }
16848 stevensc 10396
 
16825 efrain 10397
  .ms-sm-n7 {
10398
    margin-left: -6rem !important;
10399
  }
16848 stevensc 10400
 
16825 efrain 10401
  .p-sm-0 {
10402
    padding: 0 !important;
10403
  }
16848 stevensc 10404
 
16825 efrain 10405
  .p-sm-1 {
10406
    padding: 0.25rem !important;
10407
  }
16848 stevensc 10408
 
16825 efrain 10409
  .p-sm-2 {
10410
    padding: 0.5rem !important;
10411
  }
16848 stevensc 10412
 
16825 efrain 10413
  .p-sm-3 {
10414
    padding: 1rem !important;
10415
  }
16848 stevensc 10416
 
16825 efrain 10417
  .p-sm-4 {
10418
    padding: 1.5rem !important;
10419
  }
16848 stevensc 10420
 
16825 efrain 10421
  .p-sm-5 {
10422
    padding: 3rem !important;
10423
  }
16848 stevensc 10424
 
16825 efrain 10425
  .p-sm-6 {
10426
    padding: 4.5rem !important;
10427
  }
16848 stevensc 10428
 
16825 efrain 10429
  .p-sm-7 {
10430
    padding: 6rem !important;
10431
  }
16848 stevensc 10432
 
16825 efrain 10433
  .px-sm-0 {
10434
    padding-right: 0 !important;
10435
    padding-left: 0 !important;
10436
  }
16848 stevensc 10437
 
16825 efrain 10438
  .px-sm-1 {
10439
    padding-right: 0.25rem !important;
10440
    padding-left: 0.25rem !important;
10441
  }
16848 stevensc 10442
 
16825 efrain 10443
  .px-sm-2 {
10444
    padding-right: 0.5rem !important;
10445
    padding-left: 0.5rem !important;
10446
  }
16848 stevensc 10447
 
16825 efrain 10448
  .px-sm-3 {
10449
    padding-right: 1rem !important;
10450
    padding-left: 1rem !important;
10451
  }
16848 stevensc 10452
 
16825 efrain 10453
  .px-sm-4 {
10454
    padding-right: 1.5rem !important;
10455
    padding-left: 1.5rem !important;
10456
  }
16848 stevensc 10457
 
16825 efrain 10458
  .px-sm-5 {
10459
    padding-right: 3rem !important;
10460
    padding-left: 3rem !important;
10461
  }
16848 stevensc 10462
 
16825 efrain 10463
  .px-sm-6 {
10464
    padding-right: 4.5rem !important;
10465
    padding-left: 4.5rem !important;
10466
  }
16848 stevensc 10467
 
16825 efrain 10468
  .px-sm-7 {
10469
    padding-right: 6rem !important;
10470
    padding-left: 6rem !important;
10471
  }
16848 stevensc 10472
 
16825 efrain 10473
  .py-sm-0 {
10474
    padding-top: 0 !important;
10475
    padding-bottom: 0 !important;
10476
  }
16848 stevensc 10477
 
16825 efrain 10478
  .py-sm-1 {
10479
    padding-top: 0.25rem !important;
10480
    padding-bottom: 0.25rem !important;
10481
  }
16848 stevensc 10482
 
16825 efrain 10483
  .py-sm-2 {
10484
    padding-top: 0.5rem !important;
10485
    padding-bottom: 0.5rem !important;
10486
  }
16848 stevensc 10487
 
16825 efrain 10488
  .py-sm-3 {
10489
    padding-top: 1rem !important;
10490
    padding-bottom: 1rem !important;
10491
  }
16848 stevensc 10492
 
16825 efrain 10493
  .py-sm-4 {
10494
    padding-top: 1.5rem !important;
10495
    padding-bottom: 1.5rem !important;
10496
  }
16848 stevensc 10497
 
16825 efrain 10498
  .py-sm-5 {
10499
    padding-top: 3rem !important;
10500
    padding-bottom: 3rem !important;
10501
  }
16848 stevensc 10502
 
16825 efrain 10503
  .py-sm-6 {
10504
    padding-top: 4.5rem !important;
10505
    padding-bottom: 4.5rem !important;
10506
  }
16848 stevensc 10507
 
16825 efrain 10508
  .py-sm-7 {
10509
    padding-top: 6rem !important;
10510
    padding-bottom: 6rem !important;
10511
  }
16848 stevensc 10512
 
16825 efrain 10513
  .pt-sm-0 {
10514
    padding-top: 0 !important;
10515
  }
16848 stevensc 10516
 
16825 efrain 10517
  .pt-sm-1 {
10518
    padding-top: 0.25rem !important;
10519
  }
16848 stevensc 10520
 
16825 efrain 10521
  .pt-sm-2 {
10522
    padding-top: 0.5rem !important;
10523
  }
16848 stevensc 10524
 
16825 efrain 10525
  .pt-sm-3 {
10526
    padding-top: 1rem !important;
10527
  }
16848 stevensc 10528
 
16825 efrain 10529
  .pt-sm-4 {
10530
    padding-top: 1.5rem !important;
10531
  }
16848 stevensc 10532
 
16825 efrain 10533
  .pt-sm-5 {
10534
    padding-top: 3rem !important;
10535
  }
16848 stevensc 10536
 
16825 efrain 10537
  .pt-sm-6 {
10538
    padding-top: 4.5rem !important;
10539
  }
16848 stevensc 10540
 
16825 efrain 10541
  .pt-sm-7 {
10542
    padding-top: 6rem !important;
10543
  }
16848 stevensc 10544
 
16825 efrain 10545
  .pe-sm-0 {
10546
    padding-right: 0 !important;
10547
  }
16848 stevensc 10548
 
16825 efrain 10549
  .pe-sm-1 {
10550
    padding-right: 0.25rem !important;
10551
  }
16848 stevensc 10552
 
16825 efrain 10553
  .pe-sm-2 {
10554
    padding-right: 0.5rem !important;
10555
  }
16848 stevensc 10556
 
16825 efrain 10557
  .pe-sm-3 {
10558
    padding-right: 1rem !important;
10559
  }
16848 stevensc 10560
 
16825 efrain 10561
  .pe-sm-4 {
10562
    padding-right: 1.5rem !important;
10563
  }
16848 stevensc 10564
 
16825 efrain 10565
  .pe-sm-5 {
10566
    padding-right: 3rem !important;
10567
  }
16848 stevensc 10568
 
16825 efrain 10569
  .pe-sm-6 {
10570
    padding-right: 4.5rem !important;
10571
  }
16848 stevensc 10572
 
16825 efrain 10573
  .pe-sm-7 {
10574
    padding-right: 6rem !important;
10575
  }
16848 stevensc 10576
 
16825 efrain 10577
  .pb-sm-0 {
10578
    padding-bottom: 0 !important;
10579
  }
16848 stevensc 10580
 
16825 efrain 10581
  .pb-sm-1 {
10582
    padding-bottom: 0.25rem !important;
10583
  }
16848 stevensc 10584
 
16825 efrain 10585
  .pb-sm-2 {
10586
    padding-bottom: 0.5rem !important;
10587
  }
16848 stevensc 10588
 
16825 efrain 10589
  .pb-sm-3 {
10590
    padding-bottom: 1rem !important;
10591
  }
16848 stevensc 10592
 
16825 efrain 10593
  .pb-sm-4 {
10594
    padding-bottom: 1.5rem !important;
10595
  }
16848 stevensc 10596
 
16825 efrain 10597
  .pb-sm-5 {
10598
    padding-bottom: 3rem !important;
10599
  }
16848 stevensc 10600
 
16825 efrain 10601
  .pb-sm-6 {
10602
    padding-bottom: 4.5rem !important;
10603
  }
16848 stevensc 10604
 
16825 efrain 10605
  .pb-sm-7 {
10606
    padding-bottom: 6rem !important;
10607
  }
16848 stevensc 10608
 
16825 efrain 10609
  .ps-sm-0 {
10610
    padding-left: 0 !important;
10611
  }
16848 stevensc 10612
 
16825 efrain 10613
  .ps-sm-1 {
10614
    padding-left: 0.25rem !important;
10615
  }
16848 stevensc 10616
 
16825 efrain 10617
  .ps-sm-2 {
10618
    padding-left: 0.5rem !important;
10619
  }
16848 stevensc 10620
 
16825 efrain 10621
  .ps-sm-3 {
10622
    padding-left: 1rem !important;
10623
  }
16848 stevensc 10624
 
16825 efrain 10625
  .ps-sm-4 {
10626
    padding-left: 1.5rem !important;
10627
  }
16848 stevensc 10628
 
16825 efrain 10629
  .ps-sm-5 {
10630
    padding-left: 3rem !important;
10631
  }
16848 stevensc 10632
 
16825 efrain 10633
  .ps-sm-6 {
10634
    padding-left: 4.5rem !important;
10635
  }
16848 stevensc 10636
 
16825 efrain 10637
  .ps-sm-7 {
10638
    padding-left: 6rem !important;
10639
  }
16848 stevensc 10640
 
16825 efrain 10641
  .gap-sm-0 {
10642
    gap: 0 !important;
10643
  }
16848 stevensc 10644
 
16825 efrain 10645
  .gap-sm-1 {
10646
    gap: 0.25rem !important;
10647
  }
16848 stevensc 10648
 
16825 efrain 10649
  .gap-sm-2 {
10650
    gap: 0.5rem !important;
10651
  }
16848 stevensc 10652
 
16825 efrain 10653
  .gap-sm-3 {
10654
    gap: 1rem !important;
10655
  }
16848 stevensc 10656
 
16825 efrain 10657
  .gap-sm-4 {
10658
    gap: 1.5rem !important;
10659
  }
16848 stevensc 10660
 
16825 efrain 10661
  .gap-sm-5 {
10662
    gap: 3rem !important;
10663
  }
16848 stevensc 10664
 
16825 efrain 10665
  .gap-sm-6 {
10666
    gap: 4.5rem !important;
10667
  }
16848 stevensc 10668
 
16825 efrain 10669
  .gap-sm-7 {
10670
    gap: 6rem !important;
10671
  }
16848 stevensc 10672
 
16825 efrain 10673
  .text-sm-start {
10674
    text-align: left !important;
10675
  }
16848 stevensc 10676
 
16825 efrain 10677
  .text-sm-end {
10678
    text-align: right !important;
10679
  }
16848 stevensc 10680
 
16825 efrain 10681
  .text-sm-center {
10682
    text-align: center !important;
10683
  }
10684
}
16848 stevensc 10685
 
16825 efrain 10686
@media (min-width: 768px) {
10687
  .float-md-start {
10688
    float: left !important;
10689
  }
16848 stevensc 10690
 
16825 efrain 10691
  .float-md-end {
10692
    float: right !important;
10693
  }
16848 stevensc 10694
 
16825 efrain 10695
  .float-md-none {
10696
    float: none !important;
10697
  }
16848 stevensc 10698
 
16825 efrain 10699
  .d-md-inline {
10700
    display: inline !important;
10701
  }
16848 stevensc 10702
 
16825 efrain 10703
  .d-md-inline-block {
10704
    display: inline-block !important;
10705
  }
16848 stevensc 10706
 
16825 efrain 10707
  .d-md-block {
10708
    display: block !important;
10709
  }
16848 stevensc 10710
 
16825 efrain 10711
  .d-md-grid {
10712
    display: grid !important;
10713
  }
16848 stevensc 10714
 
16825 efrain 10715
  .d-md-table {
10716
    display: table !important;
10717
  }
16848 stevensc 10718
 
16825 efrain 10719
  .d-md-table-row {
10720
    display: table-row !important;
10721
  }
16848 stevensc 10722
 
16825 efrain 10723
  .d-md-table-cell {
10724
    display: table-cell !important;
10725
  }
16848 stevensc 10726
 
10727
  .d-md-flex,
10728
  .navbar .search-form {
16825 efrain 10729
    display: flex !important;
10730
  }
16848 stevensc 10731
 
16825 efrain 10732
  .d-md-inline-flex {
10733
    display: inline-flex !important;
10734
  }
16848 stevensc 10735
 
16825 efrain 10736
  .d-md-none {
10737
    display: none !important;
10738
  }
16848 stevensc 10739
 
16825 efrain 10740
  .border-md {
10741
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10742
  }
16848 stevensc 10743
 
16825 efrain 10744
  .border-md-0 {
10745
    border: 0 !important;
10746
  }
16848 stevensc 10747
 
16825 efrain 10748
  .border-top-md {
10749
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10750
  }
16848 stevensc 10751
 
16825 efrain 10752
  .border-top-md-0 {
10753
    border-top: 0 !important;
10754
  }
16848 stevensc 10755
 
16825 efrain 10756
  .border-end-md {
10757
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10758
  }
16848 stevensc 10759
 
16825 efrain 10760
  .border-end-md-0 {
10761
    border-right: 0 !important;
10762
  }
16848 stevensc 10763
 
16825 efrain 10764
  .border-bottom-md {
10765
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10766
  }
16848 stevensc 10767
 
16825 efrain 10768
  .border-bottom-md-0 {
10769
    border-bottom: 0 !important;
10770
  }
16848 stevensc 10771
 
16825 efrain 10772
  .border-start-md {
10773
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10774
  }
16848 stevensc 10775
 
16825 efrain 10776
  .border-start-md-0 {
10777
    border-left: 0 !important;
10778
  }
16848 stevensc 10779
 
16825 efrain 10780
  .flex-md-fill {
10781
    flex: 1 1 auto !important;
10782
  }
16848 stevensc 10783
 
16825 efrain 10784
  .flex-md-row {
10785
    flex-direction: row !important;
10786
  }
16848 stevensc 10787
 
16825 efrain 10788
  .flex-md-column {
10789
    flex-direction: column !important;
10790
  }
16848 stevensc 10791
 
16825 efrain 10792
  .flex-md-row-reverse {
10793
    flex-direction: row-reverse !important;
10794
  }
16848 stevensc 10795
 
16825 efrain 10796
  .flex-md-column-reverse {
10797
    flex-direction: column-reverse !important;
10798
  }
16848 stevensc 10799
 
16825 efrain 10800
  .flex-md-grow-0 {
10801
    flex-grow: 0 !important;
10802
  }
16848 stevensc 10803
 
16825 efrain 10804
  .flex-md-grow-1 {
10805
    flex-grow: 1 !important;
10806
  }
16848 stevensc 10807
 
16825 efrain 10808
  .flex-md-shrink-0 {
10809
    flex-shrink: 0 !important;
10810
  }
16848 stevensc 10811
 
16825 efrain 10812
  .flex-md-shrink-1 {
10813
    flex-shrink: 1 !important;
10814
  }
16848 stevensc 10815
 
16825 efrain 10816
  .flex-md-wrap {
10817
    flex-wrap: wrap !important;
10818
  }
16848 stevensc 10819
 
16825 efrain 10820
  .flex-md-nowrap {
10821
    flex-wrap: nowrap !important;
10822
  }
16848 stevensc 10823
 
16825 efrain 10824
  .flex-md-wrap-reverse {
10825
    flex-wrap: wrap-reverse !important;
10826
  }
16848 stevensc 10827
 
16825 efrain 10828
  .justify-content-md-start {
10829
    justify-content: flex-start !important;
10830
  }
16848 stevensc 10831
 
10832
  .justify-content-md-end,
10833
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10834
    justify-content: flex-end !important;
10835
  }
16848 stevensc 10836
 
16825 efrain 10837
  .justify-content-md-center {
10838
    justify-content: center !important;
10839
  }
16848 stevensc 10840
 
16825 efrain 10841
  .justify-content-md-between {
10842
    justify-content: space-between !important;
10843
  }
16848 stevensc 10844
 
16825 efrain 10845
  .justify-content-md-around {
10846
    justify-content: space-around !important;
10847
  }
16848 stevensc 10848
 
16825 efrain 10849
  .justify-content-md-evenly {
10850
    justify-content: space-evenly !important;
10851
  }
16848 stevensc 10852
 
16825 efrain 10853
  .align-items-md-start {
10854
    align-items: flex-start !important;
10855
  }
16848 stevensc 10856
 
16825 efrain 10857
  .align-items-md-end {
10858
    align-items: flex-end !important;
10859
  }
16848 stevensc 10860
 
16825 efrain 10861
  .align-items-md-center {
10862
    align-items: center !important;
10863
  }
16848 stevensc 10864
 
16825 efrain 10865
  .align-items-md-baseline {
10866
    align-items: baseline !important;
10867
  }
16848 stevensc 10868
 
16825 efrain 10869
  .align-items-md-stretch {
10870
    align-items: stretch !important;
10871
  }
16848 stevensc 10872
 
16825 efrain 10873
  .align-content-md-start {
10874
    align-content: flex-start !important;
10875
  }
16848 stevensc 10876
 
16825 efrain 10877
  .align-content-md-end {
10878
    align-content: flex-end !important;
10879
  }
16848 stevensc 10880
 
16825 efrain 10881
  .align-content-md-center {
10882
    align-content: center !important;
10883
  }
16848 stevensc 10884
 
16825 efrain 10885
  .align-content-md-between {
10886
    align-content: space-between !important;
10887
  }
16848 stevensc 10888
 
16825 efrain 10889
  .align-content-md-around {
10890
    align-content: space-around !important;
10891
  }
16848 stevensc 10892
 
16825 efrain 10893
  .align-content-md-stretch {
10894
    align-content: stretch !important;
10895
  }
16848 stevensc 10896
 
16825 efrain 10897
  .align-self-md-auto {
10898
    align-self: auto !important;
10899
  }
16848 stevensc 10900
 
16825 efrain 10901
  .align-self-md-start {
10902
    align-self: flex-start !important;
10903
  }
16848 stevensc 10904
 
16825 efrain 10905
  .align-self-md-end {
10906
    align-self: flex-end !important;
10907
  }
16848 stevensc 10908
 
16825 efrain 10909
  .align-self-md-center {
10910
    align-self: center !important;
10911
  }
16848 stevensc 10912
 
16825 efrain 10913
  .align-self-md-baseline {
10914
    align-self: baseline !important;
10915
  }
16848 stevensc 10916
 
16825 efrain 10917
  .align-self-md-stretch {
10918
    align-self: stretch !important;
10919
  }
16848 stevensc 10920
 
16825 efrain 10921
  .order-md-first {
10922
    order: -1 !important;
10923
  }
16848 stevensc 10924
 
16825 efrain 10925
  .order-md-0 {
10926
    order: 0 !important;
10927
  }
16848 stevensc 10928
 
16825 efrain 10929
  .order-md-1 {
10930
    order: 1 !important;
10931
  }
16848 stevensc 10932
 
16825 efrain 10933
  .order-md-2 {
10934
    order: 2 !important;
10935
  }
16848 stevensc 10936
 
16825 efrain 10937
  .order-md-3 {
10938
    order: 3 !important;
10939
  }
16848 stevensc 10940
 
16825 efrain 10941
  .order-md-4 {
10942
    order: 4 !important;
10943
  }
16848 stevensc 10944
 
16825 efrain 10945
  .order-md-5 {
10946
    order: 5 !important;
10947
  }
16848 stevensc 10948
 
16825 efrain 10949
  .order-md-last {
10950
    order: 6 !important;
10951
  }
16848 stevensc 10952
 
16825 efrain 10953
  .m-md-0 {
10954
    margin: 0 !important;
10955
  }
16848 stevensc 10956
 
16825 efrain 10957
  .m-md-1 {
10958
    margin: 0.25rem !important;
10959
  }
16848 stevensc 10960
 
16825 efrain 10961
  .m-md-2 {
10962
    margin: 0.5rem !important;
10963
  }
16848 stevensc 10964
 
16825 efrain 10965
  .m-md-3 {
10966
    margin: 1rem !important;
10967
  }
16848 stevensc 10968
 
16825 efrain 10969
  .m-md-4 {
10970
    margin: 1.5rem !important;
10971
  }
16848 stevensc 10972
 
16825 efrain 10973
  .m-md-5 {
10974
    margin: 3rem !important;
10975
  }
16848 stevensc 10976
 
16825 efrain 10977
  .m-md-6 {
10978
    margin: 4.5rem !important;
10979
  }
16848 stevensc 10980
 
16825 efrain 10981
  .m-md-7 {
10982
    margin: 6rem !important;
10983
  }
16848 stevensc 10984
 
16825 efrain 10985
  .m-md-auto {
10986
    margin: auto !important;
10987
  }
16848 stevensc 10988
 
16825 efrain 10989
  .mx-md-0 {
10990
    margin-right: 0 !important;
10991
    margin-left: 0 !important;
10992
  }
16848 stevensc 10993
 
16825 efrain 10994
  .mx-md-1 {
10995
    margin-right: 0.25rem !important;
10996
    margin-left: 0.25rem !important;
10997
  }
16848 stevensc 10998
 
16825 efrain 10999
  .mx-md-2 {
11000
    margin-right: 0.5rem !important;
11001
    margin-left: 0.5rem !important;
11002
  }
16848 stevensc 11003
 
16825 efrain 11004
  .mx-md-3 {
11005
    margin-right: 1rem !important;
11006
    margin-left: 1rem !important;
11007
  }
16848 stevensc 11008
 
16825 efrain 11009
  .mx-md-4 {
11010
    margin-right: 1.5rem !important;
11011
    margin-left: 1.5rem !important;
11012
  }
16848 stevensc 11013
 
16825 efrain 11014
  .mx-md-5 {
11015
    margin-right: 3rem !important;
11016
    margin-left: 3rem !important;
11017
  }
16848 stevensc 11018
 
16825 efrain 11019
  .mx-md-6 {
11020
    margin-right: 4.5rem !important;
11021
    margin-left: 4.5rem !important;
11022
  }
16848 stevensc 11023
 
16825 efrain 11024
  .mx-md-7 {
11025
    margin-right: 6rem !important;
11026
    margin-left: 6rem !important;
11027
  }
16848 stevensc 11028
 
16825 efrain 11029
  .mx-md-auto {
11030
    margin-right: auto !important;
11031
    margin-left: auto !important;
11032
  }
16848 stevensc 11033
 
16825 efrain 11034
  .my-md-0 {
11035
    margin-top: 0 !important;
11036
    margin-bottom: 0 !important;
11037
  }
16848 stevensc 11038
 
16825 efrain 11039
  .my-md-1 {
11040
    margin-top: 0.25rem !important;
11041
    margin-bottom: 0.25rem !important;
11042
  }
16848 stevensc 11043
 
16825 efrain 11044
  .my-md-2 {
11045
    margin-top: 0.5rem !important;
11046
    margin-bottom: 0.5rem !important;
11047
  }
16848 stevensc 11048
 
16825 efrain 11049
  .my-md-3 {
11050
    margin-top: 1rem !important;
11051
    margin-bottom: 1rem !important;
11052
  }
16848 stevensc 11053
 
16825 efrain 11054
  .my-md-4 {
11055
    margin-top: 1.5rem !important;
11056
    margin-bottom: 1.5rem !important;
11057
  }
16848 stevensc 11058
 
16825 efrain 11059
  .my-md-5 {
11060
    margin-top: 3rem !important;
11061
    margin-bottom: 3rem !important;
11062
  }
16848 stevensc 11063
 
16825 efrain 11064
  .my-md-6 {
11065
    margin-top: 4.5rem !important;
11066
    margin-bottom: 4.5rem !important;
11067
  }
16848 stevensc 11068
 
16825 efrain 11069
  .my-md-7 {
11070
    margin-top: 6rem !important;
11071
    margin-bottom: 6rem !important;
11072
  }
16848 stevensc 11073
 
16825 efrain 11074
  .my-md-auto {
11075
    margin-top: auto !important;
11076
    margin-bottom: auto !important;
11077
  }
16848 stevensc 11078
 
11079
  .mt-md-0,
11080
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11081
    margin-top: 0 !important;
11082
  }
16848 stevensc 11083
 
16825 efrain 11084
  .mt-md-1 {
11085
    margin-top: 0.25rem !important;
11086
  }
16848 stevensc 11087
 
16825 efrain 11088
  .mt-md-2 {
11089
    margin-top: 0.5rem !important;
11090
  }
16848 stevensc 11091
 
16825 efrain 11092
  .mt-md-3 {
11093
    margin-top: 1rem !important;
11094
  }
16848 stevensc 11095
 
16825 efrain 11096
  .mt-md-4 {
11097
    margin-top: 1.5rem !important;
11098
  }
16848 stevensc 11099
 
16825 efrain 11100
  .mt-md-5 {
11101
    margin-top: 3rem !important;
11102
  }
16848 stevensc 11103
 
16825 efrain 11104
  .mt-md-6 {
11105
    margin-top: 4.5rem !important;
11106
  }
16848 stevensc 11107
 
16825 efrain 11108
  .mt-md-7 {
11109
    margin-top: 6rem !important;
11110
  }
16848 stevensc 11111
 
16825 efrain 11112
  .mt-md-auto {
11113
    margin-top: auto !important;
11114
  }
16848 stevensc 11115
 
16825 efrain 11116
  .me-md-0 {
11117
    margin-right: 0 !important;
11118
  }
16848 stevensc 11119
 
16825 efrain 11120
  .me-md-1 {
11121
    margin-right: 0.25rem !important;
11122
  }
16848 stevensc 11123
 
16825 efrain 11124
  .me-md-2 {
11125
    margin-right: 0.5rem !important;
11126
  }
16848 stevensc 11127
 
16825 efrain 11128
  .me-md-3 {
11129
    margin-right: 1rem !important;
11130
  }
16848 stevensc 11131
 
16825 efrain 11132
  .me-md-4 {
11133
    margin-right: 1.5rem !important;
11134
  }
16848 stevensc 11135
 
16825 efrain 11136
  .me-md-5 {
11137
    margin-right: 3rem !important;
11138
  }
16848 stevensc 11139
 
16825 efrain 11140
  .me-md-6 {
11141
    margin-right: 4.5rem !important;
11142
  }
16848 stevensc 11143
 
16825 efrain 11144
  .me-md-7 {
11145
    margin-right: 6rem !important;
11146
  }
16848 stevensc 11147
 
16825 efrain 11148
  .me-md-auto {
11149
    margin-right: auto !important;
11150
  }
16848 stevensc 11151
 
11152
  .mb-md-0,
11153
  .example .btn-group {
16825 efrain 11154
    margin-bottom: 0 !important;
11155
  }
16848 stevensc 11156
 
16825 efrain 11157
  .mb-md-1 {
11158
    margin-bottom: 0.25rem !important;
11159
  }
16848 stevensc 11160
 
16825 efrain 11161
  .mb-md-2 {
11162
    margin-bottom: 0.5rem !important;
11163
  }
16848 stevensc 11164
 
16825 efrain 11165
  .mb-md-3 {
11166
    margin-bottom: 1rem !important;
11167
  }
16848 stevensc 11168
 
16825 efrain 11169
  .mb-md-4 {
11170
    margin-bottom: 1.5rem !important;
11171
  }
16848 stevensc 11172
 
16825 efrain 11173
  .mb-md-5 {
11174
    margin-bottom: 3rem !important;
11175
  }
16848 stevensc 11176
 
16825 efrain 11177
  .mb-md-6 {
11178
    margin-bottom: 4.5rem !important;
11179
  }
16848 stevensc 11180
 
16825 efrain 11181
  .mb-md-7 {
11182
    margin-bottom: 6rem !important;
11183
  }
16848 stevensc 11184
 
16825 efrain 11185
  .mb-md-auto {
11186
    margin-bottom: auto !important;
11187
  }
16848 stevensc 11188
 
16825 efrain 11189
  .ms-md-0 {
11190
    margin-left: 0 !important;
11191
  }
16848 stevensc 11192
 
16825 efrain 11193
  .ms-md-1 {
11194
    margin-left: 0.25rem !important;
11195
  }
16848 stevensc 11196
 
16825 efrain 11197
  .ms-md-2 {
11198
    margin-left: 0.5rem !important;
11199
  }
16848 stevensc 11200
 
16825 efrain 11201
  .ms-md-3 {
11202
    margin-left: 1rem !important;
11203
  }
16848 stevensc 11204
 
16825 efrain 11205
  .ms-md-4 {
11206
    margin-left: 1.5rem !important;
11207
  }
16848 stevensc 11208
 
16825 efrain 11209
  .ms-md-5 {
11210
    margin-left: 3rem !important;
11211
  }
16848 stevensc 11212
 
16825 efrain 11213
  .ms-md-6 {
11214
    margin-left: 4.5rem !important;
11215
  }
16848 stevensc 11216
 
16825 efrain 11217
  .ms-md-7 {
11218
    margin-left: 6rem !important;
11219
  }
16848 stevensc 11220
 
16825 efrain 11221
  .ms-md-auto {
11222
    margin-left: auto !important;
11223
  }
16848 stevensc 11224
 
16825 efrain 11225
  .m-md-n1 {
11226
    margin: -0.25rem !important;
11227
  }
16848 stevensc 11228
 
16825 efrain 11229
  .m-md-n2 {
11230
    margin: -0.5rem !important;
11231
  }
16848 stevensc 11232
 
16825 efrain 11233
  .m-md-n3 {
11234
    margin: -1rem !important;
11235
  }
16848 stevensc 11236
 
16825 efrain 11237
  .m-md-n4 {
11238
    margin: -1.5rem !important;
11239
  }
16848 stevensc 11240
 
16825 efrain 11241
  .m-md-n5 {
11242
    margin: -3rem !important;
11243
  }
16848 stevensc 11244
 
16825 efrain 11245
  .m-md-n6 {
11246
    margin: -4.5rem !important;
11247
  }
16848 stevensc 11248
 
16825 efrain 11249
  .m-md-n7 {
11250
    margin: -6rem !important;
11251
  }
16848 stevensc 11252
 
16825 efrain 11253
  .mx-md-n1 {
11254
    margin-right: -0.25rem !important;
11255
    margin-left: -0.25rem !important;
11256
  }
16848 stevensc 11257
 
16825 efrain 11258
  .mx-md-n2 {
11259
    margin-right: -0.5rem !important;
11260
    margin-left: -0.5rem !important;
11261
  }
16848 stevensc 11262
 
16825 efrain 11263
  .mx-md-n3 {
11264
    margin-right: -1rem !important;
11265
    margin-left: -1rem !important;
11266
  }
16848 stevensc 11267
 
16825 efrain 11268
  .mx-md-n4 {
11269
    margin-right: -1.5rem !important;
11270
    margin-left: -1.5rem !important;
11271
  }
16848 stevensc 11272
 
16825 efrain 11273
  .mx-md-n5 {
11274
    margin-right: -3rem !important;
11275
    margin-left: -3rem !important;
11276
  }
16848 stevensc 11277
 
16825 efrain 11278
  .mx-md-n6 {
11279
    margin-right: -4.5rem !important;
11280
    margin-left: -4.5rem !important;
11281
  }
16848 stevensc 11282
 
16825 efrain 11283
  .mx-md-n7 {
11284
    margin-right: -6rem !important;
11285
    margin-left: -6rem !important;
11286
  }
16848 stevensc 11287
 
16825 efrain 11288
  .my-md-n1 {
11289
    margin-top: -0.25rem !important;
11290
    margin-bottom: -0.25rem !important;
11291
  }
16848 stevensc 11292
 
16825 efrain 11293
  .my-md-n2 {
11294
    margin-top: -0.5rem !important;
11295
    margin-bottom: -0.5rem !important;
11296
  }
16848 stevensc 11297
 
16825 efrain 11298
  .my-md-n3 {
11299
    margin-top: -1rem !important;
11300
    margin-bottom: -1rem !important;
11301
  }
16848 stevensc 11302
 
16825 efrain 11303
  .my-md-n4 {
11304
    margin-top: -1.5rem !important;
11305
    margin-bottom: -1.5rem !important;
11306
  }
16848 stevensc 11307
 
16825 efrain 11308
  .my-md-n5 {
11309
    margin-top: -3rem !important;
11310
    margin-bottom: -3rem !important;
11311
  }
16848 stevensc 11312
 
16825 efrain 11313
  .my-md-n6 {
11314
    margin-top: -4.5rem !important;
11315
    margin-bottom: -4.5rem !important;
11316
  }
16848 stevensc 11317
 
16825 efrain 11318
  .my-md-n7 {
11319
    margin-top: -6rem !important;
11320
    margin-bottom: -6rem !important;
11321
  }
16848 stevensc 11322
 
16825 efrain 11323
  .mt-md-n1 {
11324
    margin-top: -0.25rem !important;
11325
  }
16848 stevensc 11326
 
16825 efrain 11327
  .mt-md-n2 {
11328
    margin-top: -0.5rem !important;
11329
  }
16848 stevensc 11330
 
16825 efrain 11331
  .mt-md-n3 {
11332
    margin-top: -1rem !important;
11333
  }
16848 stevensc 11334
 
16825 efrain 11335
  .mt-md-n4 {
11336
    margin-top: -1.5rem !important;
11337
  }
16848 stevensc 11338
 
16825 efrain 11339
  .mt-md-n5 {
11340
    margin-top: -3rem !important;
11341
  }
16848 stevensc 11342
 
16825 efrain 11343
  .mt-md-n6 {
11344
    margin-top: -4.5rem !important;
11345
  }
16848 stevensc 11346
 
16825 efrain 11347
  .mt-md-n7 {
11348
    margin-top: -6rem !important;
11349
  }
16848 stevensc 11350
 
16825 efrain 11351
  .me-md-n1 {
11352
    margin-right: -0.25rem !important;
11353
  }
16848 stevensc 11354
 
16825 efrain 11355
  .me-md-n2 {
11356
    margin-right: -0.5rem !important;
11357
  }
16848 stevensc 11358
 
16825 efrain 11359
  .me-md-n3 {
11360
    margin-right: -1rem !important;
11361
  }
16848 stevensc 11362
 
16825 efrain 11363
  .me-md-n4 {
11364
    margin-right: -1.5rem !important;
11365
  }
16848 stevensc 11366
 
16825 efrain 11367
  .me-md-n5 {
11368
    margin-right: -3rem !important;
11369
  }
16848 stevensc 11370
 
16825 efrain 11371
  .me-md-n6 {
11372
    margin-right: -4.5rem !important;
11373
  }
16848 stevensc 11374
 
16825 efrain 11375
  .me-md-n7 {
11376
    margin-right: -6rem !important;
11377
  }
16848 stevensc 11378
 
16825 efrain 11379
  .mb-md-n1 {
11380
    margin-bottom: -0.25rem !important;
11381
  }
16848 stevensc 11382
 
16825 efrain 11383
  .mb-md-n2 {
11384
    margin-bottom: -0.5rem !important;
11385
  }
16848 stevensc 11386
 
16825 efrain 11387
  .mb-md-n3 {
11388
    margin-bottom: -1rem !important;
11389
  }
16848 stevensc 11390
 
16825 efrain 11391
  .mb-md-n4 {
11392
    margin-bottom: -1.5rem !important;
11393
  }
16848 stevensc 11394
 
16825 efrain 11395
  .mb-md-n5 {
11396
    margin-bottom: -3rem !important;
11397
  }
16848 stevensc 11398
 
16825 efrain 11399
  .mb-md-n6 {
11400
    margin-bottom: -4.5rem !important;
11401
  }
16848 stevensc 11402
 
16825 efrain 11403
  .mb-md-n7 {
11404
    margin-bottom: -6rem !important;
11405
  }
16848 stevensc 11406
 
16825 efrain 11407
  .ms-md-n1 {
11408
    margin-left: -0.25rem !important;
11409
  }
16848 stevensc 11410
 
16825 efrain 11411
  .ms-md-n2 {
11412
    margin-left: -0.5rem !important;
11413
  }
16848 stevensc 11414
 
16825 efrain 11415
  .ms-md-n3 {
11416
    margin-left: -1rem !important;
11417
  }
16848 stevensc 11418
 
16825 efrain 11419
  .ms-md-n4 {
11420
    margin-left: -1.5rem !important;
11421
  }
16848 stevensc 11422
 
16825 efrain 11423
  .ms-md-n5 {
11424
    margin-left: -3rem !important;
11425
  }
16848 stevensc 11426
 
16825 efrain 11427
  .ms-md-n6 {
11428
    margin-left: -4.5rem !important;
11429
  }
16848 stevensc 11430
 
16825 efrain 11431
  .ms-md-n7 {
11432
    margin-left: -6rem !important;
11433
  }
16848 stevensc 11434
 
16825 efrain 11435
  .p-md-0 {
11436
    padding: 0 !important;
11437
  }
16848 stevensc 11438
 
16825 efrain 11439
  .p-md-1 {
11440
    padding: 0.25rem !important;
11441
  }
16848 stevensc 11442
 
16825 efrain 11443
  .p-md-2 {
11444
    padding: 0.5rem !important;
11445
  }
16848 stevensc 11446
 
16825 efrain 11447
  .p-md-3 {
11448
    padding: 1rem !important;
11449
  }
16848 stevensc 11450
 
16825 efrain 11451
  .p-md-4 {
11452
    padding: 1.5rem !important;
11453
  }
16848 stevensc 11454
 
16825 efrain 11455
  .p-md-5 {
11456
    padding: 3rem !important;
11457
  }
16848 stevensc 11458
 
16825 efrain 11459
  .p-md-6 {
11460
    padding: 4.5rem !important;
11461
  }
16848 stevensc 11462
 
16825 efrain 11463
  .p-md-7 {
11464
    padding: 6rem !important;
11465
  }
16848 stevensc 11466
 
16825 efrain 11467
  .px-md-0 {
11468
    padding-right: 0 !important;
11469
    padding-left: 0 !important;
11470
  }
16848 stevensc 11471
 
16825 efrain 11472
  .px-md-1 {
11473
    padding-right: 0.25rem !important;
11474
    padding-left: 0.25rem !important;
11475
  }
16848 stevensc 11476
 
16825 efrain 11477
  .px-md-2 {
11478
    padding-right: 0.5rem !important;
11479
    padding-left: 0.5rem !important;
11480
  }
16848 stevensc 11481
 
16825 efrain 11482
  .px-md-3 {
11483
    padding-right: 1rem !important;
11484
    padding-left: 1rem !important;
11485
  }
16848 stevensc 11486
 
16825 efrain 11487
  .px-md-4 {
11488
    padding-right: 1.5rem !important;
11489
    padding-left: 1.5rem !important;
11490
  }
16848 stevensc 11491
 
16825 efrain 11492
  .px-md-5 {
11493
    padding-right: 3rem !important;
11494
    padding-left: 3rem !important;
11495
  }
16848 stevensc 11496
 
16825 efrain 11497
  .px-md-6 {
11498
    padding-right: 4.5rem !important;
11499
    padding-left: 4.5rem !important;
11500
  }
16848 stevensc 11501
 
16825 efrain 11502
  .px-md-7 {
11503
    padding-right: 6rem !important;
11504
    padding-left: 6rem !important;
11505
  }
16848 stevensc 11506
 
16825 efrain 11507
  .py-md-0 {
11508
    padding-top: 0 !important;
11509
    padding-bottom: 0 !important;
11510
  }
16848 stevensc 11511
 
16825 efrain 11512
  .py-md-1 {
11513
    padding-top: 0.25rem !important;
11514
    padding-bottom: 0.25rem !important;
11515
  }
16848 stevensc 11516
 
16825 efrain 11517
  .py-md-2 {
11518
    padding-top: 0.5rem !important;
11519
    padding-bottom: 0.5rem !important;
11520
  }
16848 stevensc 11521
 
16825 efrain 11522
  .py-md-3 {
11523
    padding-top: 1rem !important;
11524
    padding-bottom: 1rem !important;
11525
  }
16848 stevensc 11526
 
16825 efrain 11527
  .py-md-4 {
11528
    padding-top: 1.5rem !important;
11529
    padding-bottom: 1.5rem !important;
11530
  }
16848 stevensc 11531
 
16825 efrain 11532
  .py-md-5 {
11533
    padding-top: 3rem !important;
11534
    padding-bottom: 3rem !important;
11535
  }
16848 stevensc 11536
 
16825 efrain 11537
  .py-md-6 {
11538
    padding-top: 4.5rem !important;
11539
    padding-bottom: 4.5rem !important;
11540
  }
16848 stevensc 11541
 
16825 efrain 11542
  .py-md-7 {
11543
    padding-top: 6rem !important;
11544
    padding-bottom: 6rem !important;
11545
  }
16848 stevensc 11546
 
16825 efrain 11547
  .pt-md-0 {
11548
    padding-top: 0 !important;
11549
  }
16848 stevensc 11550
 
16825 efrain 11551
  .pt-md-1 {
11552
    padding-top: 0.25rem !important;
11553
  }
16848 stevensc 11554
 
16825 efrain 11555
  .pt-md-2 {
11556
    padding-top: 0.5rem !important;
11557
  }
16848 stevensc 11558
 
16825 efrain 11559
  .pt-md-3 {
11560
    padding-top: 1rem !important;
11561
  }
16848 stevensc 11562
 
16825 efrain 11563
  .pt-md-4 {
11564
    padding-top: 1.5rem !important;
11565
  }
16848 stevensc 11566
 
16825 efrain 11567
  .pt-md-5 {
11568
    padding-top: 3rem !important;
11569
  }
16848 stevensc 11570
 
16825 efrain 11571
  .pt-md-6 {
11572
    padding-top: 4.5rem !important;
11573
  }
16848 stevensc 11574
 
16825 efrain 11575
  .pt-md-7 {
11576
    padding-top: 6rem !important;
11577
  }
16848 stevensc 11578
 
16825 efrain 11579
  .pe-md-0 {
11580
    padding-right: 0 !important;
11581
  }
16848 stevensc 11582
 
16825 efrain 11583
  .pe-md-1 {
11584
    padding-right: 0.25rem !important;
11585
  }
16848 stevensc 11586
 
16825 efrain 11587
  .pe-md-2 {
11588
    padding-right: 0.5rem !important;
11589
  }
16848 stevensc 11590
 
16825 efrain 11591
  .pe-md-3 {
11592
    padding-right: 1rem !important;
11593
  }
16848 stevensc 11594
 
16825 efrain 11595
  .pe-md-4 {
11596
    padding-right: 1.5rem !important;
11597
  }
16848 stevensc 11598
 
16825 efrain 11599
  .pe-md-5 {
11600
    padding-right: 3rem !important;
11601
  }
16848 stevensc 11602
 
16825 efrain 11603
  .pe-md-6 {
11604
    padding-right: 4.5rem !important;
11605
  }
16848 stevensc 11606
 
16825 efrain 11607
  .pe-md-7 {
11608
    padding-right: 6rem !important;
11609
  }
16848 stevensc 11610
 
16825 efrain 11611
  .pb-md-0 {
11612
    padding-bottom: 0 !important;
11613
  }
16848 stevensc 11614
 
16825 efrain 11615
  .pb-md-1 {
11616
    padding-bottom: 0.25rem !important;
11617
  }
16848 stevensc 11618
 
16825 efrain 11619
  .pb-md-2 {
11620
    padding-bottom: 0.5rem !important;
11621
  }
16848 stevensc 11622
 
16825 efrain 11623
  .pb-md-3 {
11624
    padding-bottom: 1rem !important;
11625
  }
16848 stevensc 11626
 
16825 efrain 11627
  .pb-md-4 {
11628
    padding-bottom: 1.5rem !important;
11629
  }
16848 stevensc 11630
 
16825 efrain 11631
  .pb-md-5 {
11632
    padding-bottom: 3rem !important;
11633
  }
16848 stevensc 11634
 
16825 efrain 11635
  .pb-md-6 {
11636
    padding-bottom: 4.5rem !important;
11637
  }
16848 stevensc 11638
 
16825 efrain 11639
  .pb-md-7 {
11640
    padding-bottom: 6rem !important;
11641
  }
16848 stevensc 11642
 
16825 efrain 11643
  .ps-md-0 {
11644
    padding-left: 0 !important;
11645
  }
16848 stevensc 11646
 
16825 efrain 11647
  .ps-md-1 {
11648
    padding-left: 0.25rem !important;
11649
  }
16848 stevensc 11650
 
16825 efrain 11651
  .ps-md-2 {
11652
    padding-left: 0.5rem !important;
11653
  }
16848 stevensc 11654
 
16825 efrain 11655
  .ps-md-3 {
11656
    padding-left: 1rem !important;
11657
  }
16848 stevensc 11658
 
16825 efrain 11659
  .ps-md-4 {
11660
    padding-left: 1.5rem !important;
11661
  }
16848 stevensc 11662
 
16825 efrain 11663
  .ps-md-5 {
11664
    padding-left: 3rem !important;
11665
  }
16848 stevensc 11666
 
16825 efrain 11667
  .ps-md-6 {
11668
    padding-left: 4.5rem !important;
11669
  }
16848 stevensc 11670
 
16825 efrain 11671
  .ps-md-7 {
11672
    padding-left: 6rem !important;
11673
  }
16848 stevensc 11674
 
16825 efrain 11675
  .gap-md-0 {
11676
    gap: 0 !important;
11677
  }
16848 stevensc 11678
 
16825 efrain 11679
  .gap-md-1 {
11680
    gap: 0.25rem !important;
11681
  }
16848 stevensc 11682
 
16825 efrain 11683
  .gap-md-2 {
11684
    gap: 0.5rem !important;
11685
  }
16848 stevensc 11686
 
16825 efrain 11687
  .gap-md-3 {
11688
    gap: 1rem !important;
11689
  }
16848 stevensc 11690
 
16825 efrain 11691
  .gap-md-4 {
11692
    gap: 1.5rem !important;
11693
  }
16848 stevensc 11694
 
16825 efrain 11695
  .gap-md-5 {
11696
    gap: 3rem !important;
11697
  }
16848 stevensc 11698
 
16825 efrain 11699
  .gap-md-6 {
11700
    gap: 4.5rem !important;
11701
  }
16848 stevensc 11702
 
16825 efrain 11703
  .gap-md-7 {
11704
    gap: 6rem !important;
11705
  }
16848 stevensc 11706
 
16825 efrain 11707
  .text-md-start {
11708
    text-align: left !important;
11709
  }
16848 stevensc 11710
 
16825 efrain 11711
  .text-md-end {
11712
    text-align: right !important;
11713
  }
16848 stevensc 11714
 
16825 efrain 11715
  .text-md-center {
11716
    text-align: center !important;
11717
  }
11718
}
16848 stevensc 11719
 
16825 efrain 11720
@media (min-width: 992px) {
11721
  .float-lg-start {
11722
    float: left !important;
11723
  }
16848 stevensc 11724
 
16825 efrain 11725
  .float-lg-end {
11726
    float: right !important;
11727
  }
16848 stevensc 11728
 
16825 efrain 11729
  .float-lg-none {
11730
    float: none !important;
11731
  }
16848 stevensc 11732
 
16825 efrain 11733
  .d-lg-inline {
11734
    display: inline !important;
11735
  }
16848 stevensc 11736
 
16825 efrain 11737
  .d-lg-inline-block {
11738
    display: inline-block !important;
11739
  }
16848 stevensc 11740
 
16825 efrain 11741
  .d-lg-block {
11742
    display: block !important;
11743
  }
16848 stevensc 11744
 
16825 efrain 11745
  .d-lg-grid {
11746
    display: grid !important;
11747
  }
16848 stevensc 11748
 
16825 efrain 11749
  .d-lg-table {
11750
    display: table !important;
11751
  }
16848 stevensc 11752
 
16825 efrain 11753
  .d-lg-table-row {
11754
    display: table-row !important;
11755
  }
16848 stevensc 11756
 
16825 efrain 11757
  .d-lg-table-cell {
11758
    display: table-cell !important;
11759
  }
16848 stevensc 11760
 
16825 efrain 11761
  .d-lg-flex {
11762
    display: flex !important;
11763
  }
16848 stevensc 11764
 
16825 efrain 11765
  .d-lg-inline-flex {
11766
    display: inline-flex !important;
11767
  }
16848 stevensc 11768
 
16825 efrain 11769
  .d-lg-none {
11770
    display: none !important;
11771
  }
16848 stevensc 11772
 
16825 efrain 11773
  .border-lg {
11774
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11775
  }
16848 stevensc 11776
 
16825 efrain 11777
  .border-lg-0 {
11778
    border: 0 !important;
11779
  }
16848 stevensc 11780
 
16825 efrain 11781
  .border-top-lg {
11782
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11783
  }
16848 stevensc 11784
 
16825 efrain 11785
  .border-top-lg-0 {
11786
    border-top: 0 !important;
11787
  }
16848 stevensc 11788
 
16825 efrain 11789
  .border-end-lg {
11790
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11791
  }
16848 stevensc 11792
 
16825 efrain 11793
  .border-end-lg-0 {
11794
    border-right: 0 !important;
11795
  }
16848 stevensc 11796
 
16825 efrain 11797
  .border-bottom-lg {
11798
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11799
  }
16848 stevensc 11800
 
16825 efrain 11801
  .border-bottom-lg-0 {
11802
    border-bottom: 0 !important;
11803
  }
16848 stevensc 11804
 
16825 efrain 11805
  .border-start-lg {
11806
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11807
  }
16848 stevensc 11808
 
16825 efrain 11809
  .border-start-lg-0 {
11810
    border-left: 0 !important;
11811
  }
16848 stevensc 11812
 
16825 efrain 11813
  .flex-lg-fill {
11814
    flex: 1 1 auto !important;
11815
  }
16848 stevensc 11816
 
16825 efrain 11817
  .flex-lg-row {
11818
    flex-direction: row !important;
11819
  }
16848 stevensc 11820
 
16825 efrain 11821
  .flex-lg-column {
11822
    flex-direction: column !important;
11823
  }
16848 stevensc 11824
 
16825 efrain 11825
  .flex-lg-row-reverse {
11826
    flex-direction: row-reverse !important;
11827
  }
16848 stevensc 11828
 
16825 efrain 11829
  .flex-lg-column-reverse {
11830
    flex-direction: column-reverse !important;
11831
  }
16848 stevensc 11832
 
16825 efrain 11833
  .flex-lg-grow-0 {
11834
    flex-grow: 0 !important;
11835
  }
16848 stevensc 11836
 
16825 efrain 11837
  .flex-lg-grow-1 {
11838
    flex-grow: 1 !important;
11839
  }
16848 stevensc 11840
 
16825 efrain 11841
  .flex-lg-shrink-0 {
11842
    flex-shrink: 0 !important;
11843
  }
16848 stevensc 11844
 
16825 efrain 11845
  .flex-lg-shrink-1 {
11846
    flex-shrink: 1 !important;
11847
  }
16848 stevensc 11848
 
16825 efrain 11849
  .flex-lg-wrap {
11850
    flex-wrap: wrap !important;
11851
  }
16848 stevensc 11852
 
16825 efrain 11853
  .flex-lg-nowrap {
11854
    flex-wrap: nowrap !important;
11855
  }
16848 stevensc 11856
 
16825 efrain 11857
  .flex-lg-wrap-reverse {
11858
    flex-wrap: wrap-reverse !important;
11859
  }
16848 stevensc 11860
 
16825 efrain 11861
  .justify-content-lg-start {
11862
    justify-content: flex-start !important;
11863
  }
16848 stevensc 11864
 
16825 efrain 11865
  .justify-content-lg-end {
11866
    justify-content: flex-end !important;
11867
  }
16848 stevensc 11868
 
16825 efrain 11869
  .justify-content-lg-center {
11870
    justify-content: center !important;
11871
  }
16848 stevensc 11872
 
16825 efrain 11873
  .justify-content-lg-between {
11874
    justify-content: space-between !important;
11875
  }
16848 stevensc 11876
 
16825 efrain 11877
  .justify-content-lg-around {
11878
    justify-content: space-around !important;
11879
  }
16848 stevensc 11880
 
16825 efrain 11881
  .justify-content-lg-evenly {
11882
    justify-content: space-evenly !important;
11883
  }
16848 stevensc 11884
 
16825 efrain 11885
  .align-items-lg-start {
11886
    align-items: flex-start !important;
11887
  }
16848 stevensc 11888
 
16825 efrain 11889
  .align-items-lg-end {
11890
    align-items: flex-end !important;
11891
  }
16848 stevensc 11892
 
16825 efrain 11893
  .align-items-lg-center {
11894
    align-items: center !important;
11895
  }
16848 stevensc 11896
 
16825 efrain 11897
  .align-items-lg-baseline {
11898
    align-items: baseline !important;
11899
  }
16848 stevensc 11900
 
16825 efrain 11901
  .align-items-lg-stretch {
11902
    align-items: stretch !important;
11903
  }
16848 stevensc 11904
 
16825 efrain 11905
  .align-content-lg-start {
11906
    align-content: flex-start !important;
11907
  }
16848 stevensc 11908
 
16825 efrain 11909
  .align-content-lg-end {
11910
    align-content: flex-end !important;
11911
  }
16848 stevensc 11912
 
16825 efrain 11913
  .align-content-lg-center {
11914
    align-content: center !important;
11915
  }
16848 stevensc 11916
 
16825 efrain 11917
  .align-content-lg-between {
11918
    align-content: space-between !important;
11919
  }
16848 stevensc 11920
 
16825 efrain 11921
  .align-content-lg-around {
11922
    align-content: space-around !important;
11923
  }
16848 stevensc 11924
 
16825 efrain 11925
  .align-content-lg-stretch {
11926
    align-content: stretch !important;
11927
  }
16848 stevensc 11928
 
16825 efrain 11929
  .align-self-lg-auto {
11930
    align-self: auto !important;
11931
  }
16848 stevensc 11932
 
16825 efrain 11933
  .align-self-lg-start {
11934
    align-self: flex-start !important;
11935
  }
16848 stevensc 11936
 
16825 efrain 11937
  .align-self-lg-end {
11938
    align-self: flex-end !important;
11939
  }
16848 stevensc 11940
 
16825 efrain 11941
  .align-self-lg-center {
11942
    align-self: center !important;
11943
  }
16848 stevensc 11944
 
16825 efrain 11945
  .align-self-lg-baseline {
11946
    align-self: baseline !important;
11947
  }
16848 stevensc 11948
 
16825 efrain 11949
  .align-self-lg-stretch {
11950
    align-self: stretch !important;
11951
  }
16848 stevensc 11952
 
16825 efrain 11953
  .order-lg-first {
11954
    order: -1 !important;
11955
  }
16848 stevensc 11956
 
16825 efrain 11957
  .order-lg-0 {
11958
    order: 0 !important;
11959
  }
16848 stevensc 11960
 
16825 efrain 11961
  .order-lg-1 {
11962
    order: 1 !important;
11963
  }
16848 stevensc 11964
 
16825 efrain 11965
  .order-lg-2 {
11966
    order: 2 !important;
11967
  }
16848 stevensc 11968
 
16825 efrain 11969
  .order-lg-3 {
11970
    order: 3 !important;
11971
  }
16848 stevensc 11972
 
16825 efrain 11973
  .order-lg-4 {
11974
    order: 4 !important;
11975
  }
16848 stevensc 11976
 
16825 efrain 11977
  .order-lg-5 {
11978
    order: 5 !important;
11979
  }
16848 stevensc 11980
 
16825 efrain 11981
  .order-lg-last {
11982
    order: 6 !important;
11983
  }
16848 stevensc 11984
 
16825 efrain 11985
  .m-lg-0 {
11986
    margin: 0 !important;
11987
  }
16848 stevensc 11988
 
16825 efrain 11989
  .m-lg-1 {
11990
    margin: 0.25rem !important;
11991
  }
16848 stevensc 11992
 
16825 efrain 11993
  .m-lg-2 {
11994
    margin: 0.5rem !important;
11995
  }
16848 stevensc 11996
 
16825 efrain 11997
  .m-lg-3 {
11998
    margin: 1rem !important;
11999
  }
16848 stevensc 12000
 
16825 efrain 12001
  .m-lg-4 {
12002
    margin: 1.5rem !important;
12003
  }
16848 stevensc 12004
 
16825 efrain 12005
  .m-lg-5 {
12006
    margin: 3rem !important;
12007
  }
16848 stevensc 12008
 
16825 efrain 12009
  .m-lg-6 {
12010
    margin: 4.5rem !important;
12011
  }
16848 stevensc 12012
 
16825 efrain 12013
  .m-lg-7 {
12014
    margin: 6rem !important;
12015
  }
16848 stevensc 12016
 
16825 efrain 12017
  .m-lg-auto {
12018
    margin: auto !important;
12019
  }
16848 stevensc 12020
 
16825 efrain 12021
  .mx-lg-0 {
12022
    margin-right: 0 !important;
12023
    margin-left: 0 !important;
12024
  }
16848 stevensc 12025
 
16825 efrain 12026
  .mx-lg-1 {
12027
    margin-right: 0.25rem !important;
12028
    margin-left: 0.25rem !important;
12029
  }
16848 stevensc 12030
 
16825 efrain 12031
  .mx-lg-2 {
12032
    margin-right: 0.5rem !important;
12033
    margin-left: 0.5rem !important;
12034
  }
16848 stevensc 12035
 
16825 efrain 12036
  .mx-lg-3 {
12037
    margin-right: 1rem !important;
12038
    margin-left: 1rem !important;
12039
  }
16848 stevensc 12040
 
16825 efrain 12041
  .mx-lg-4 {
12042
    margin-right: 1.5rem !important;
12043
    margin-left: 1.5rem !important;
12044
  }
16848 stevensc 12045
 
16825 efrain 12046
  .mx-lg-5 {
12047
    margin-right: 3rem !important;
12048
    margin-left: 3rem !important;
12049
  }
16848 stevensc 12050
 
16825 efrain 12051
  .mx-lg-6 {
12052
    margin-right: 4.5rem !important;
12053
    margin-left: 4.5rem !important;
12054
  }
16848 stevensc 12055
 
16825 efrain 12056
  .mx-lg-7 {
12057
    margin-right: 6rem !important;
12058
    margin-left: 6rem !important;
12059
  }
16848 stevensc 12060
 
16825 efrain 12061
  .mx-lg-auto {
12062
    margin-right: auto !important;
12063
    margin-left: auto !important;
12064
  }
16848 stevensc 12065
 
16825 efrain 12066
  .my-lg-0 {
12067
    margin-top: 0 !important;
12068
    margin-bottom: 0 !important;
12069
  }
16848 stevensc 12070
 
16825 efrain 12071
  .my-lg-1 {
12072
    margin-top: 0.25rem !important;
12073
    margin-bottom: 0.25rem !important;
12074
  }
16848 stevensc 12075
 
16825 efrain 12076
  .my-lg-2 {
12077
    margin-top: 0.5rem !important;
12078
    margin-bottom: 0.5rem !important;
12079
  }
16848 stevensc 12080
 
16825 efrain 12081
  .my-lg-3 {
12082
    margin-top: 1rem !important;
12083
    margin-bottom: 1rem !important;
12084
  }
16848 stevensc 12085
 
16825 efrain 12086
  .my-lg-4 {
12087
    margin-top: 1.5rem !important;
12088
    margin-bottom: 1.5rem !important;
12089
  }
16848 stevensc 12090
 
16825 efrain 12091
  .my-lg-5 {
12092
    margin-top: 3rem !important;
12093
    margin-bottom: 3rem !important;
12094
  }
16848 stevensc 12095
 
16825 efrain 12096
  .my-lg-6 {
12097
    margin-top: 4.5rem !important;
12098
    margin-bottom: 4.5rem !important;
12099
  }
16848 stevensc 12100
 
16825 efrain 12101
  .my-lg-7 {
12102
    margin-top: 6rem !important;
12103
    margin-bottom: 6rem !important;
12104
  }
16848 stevensc 12105
 
16825 efrain 12106
  .my-lg-auto {
12107
    margin-top: auto !important;
12108
    margin-bottom: auto !important;
12109
  }
16848 stevensc 12110
 
16825 efrain 12111
  .mt-lg-0 {
12112
    margin-top: 0 !important;
12113
  }
16848 stevensc 12114
 
16825 efrain 12115
  .mt-lg-1 {
12116
    margin-top: 0.25rem !important;
12117
  }
16848 stevensc 12118
 
16825 efrain 12119
  .mt-lg-2 {
12120
    margin-top: 0.5rem !important;
12121
  }
16848 stevensc 12122
 
16825 efrain 12123
  .mt-lg-3 {
12124
    margin-top: 1rem !important;
12125
  }
16848 stevensc 12126
 
16825 efrain 12127
  .mt-lg-4 {
12128
    margin-top: 1.5rem !important;
12129
  }
16848 stevensc 12130
 
16825 efrain 12131
  .mt-lg-5 {
12132
    margin-top: 3rem !important;
12133
  }
16848 stevensc 12134
 
16825 efrain 12135
  .mt-lg-6 {
12136
    margin-top: 4.5rem !important;
12137
  }
16848 stevensc 12138
 
16825 efrain 12139
  .mt-lg-7 {
12140
    margin-top: 6rem !important;
12141
  }
16848 stevensc 12142
 
16825 efrain 12143
  .mt-lg-auto {
12144
    margin-top: auto !important;
12145
  }
16848 stevensc 12146
 
16825 efrain 12147
  .me-lg-0 {
12148
    margin-right: 0 !important;
12149
  }
16848 stevensc 12150
 
16825 efrain 12151
  .me-lg-1 {
12152
    margin-right: 0.25rem !important;
12153
  }
16848 stevensc 12154
 
16825 efrain 12155
  .me-lg-2 {
12156
    margin-right: 0.5rem !important;
12157
  }
16848 stevensc 12158
 
16825 efrain 12159
  .me-lg-3 {
12160
    margin-right: 1rem !important;
12161
  }
16848 stevensc 12162
 
16825 efrain 12163
  .me-lg-4 {
12164
    margin-right: 1.5rem !important;
12165
  }
16848 stevensc 12166
 
16825 efrain 12167
  .me-lg-5 {
12168
    margin-right: 3rem !important;
12169
  }
16848 stevensc 12170
 
16825 efrain 12171
  .me-lg-6 {
12172
    margin-right: 4.5rem !important;
12173
  }
16848 stevensc 12174
 
16825 efrain 12175
  .me-lg-7 {
12176
    margin-right: 6rem !important;
12177
  }
16848 stevensc 12178
 
16825 efrain 12179
  .me-lg-auto {
12180
    margin-right: auto !important;
12181
  }
16848 stevensc 12182
 
16825 efrain 12183
  .mb-lg-0 {
12184
    margin-bottom: 0 !important;
12185
  }
16848 stevensc 12186
 
16825 efrain 12187
  .mb-lg-1 {
12188
    margin-bottom: 0.25rem !important;
12189
  }
16848 stevensc 12190
 
16825 efrain 12191
  .mb-lg-2 {
12192
    margin-bottom: 0.5rem !important;
12193
  }
16848 stevensc 12194
 
16825 efrain 12195
  .mb-lg-3 {
12196
    margin-bottom: 1rem !important;
12197
  }
16848 stevensc 12198
 
16825 efrain 12199
  .mb-lg-4 {
12200
    margin-bottom: 1.5rem !important;
12201
  }
16848 stevensc 12202
 
16825 efrain 12203
  .mb-lg-5 {
12204
    margin-bottom: 3rem !important;
12205
  }
16848 stevensc 12206
 
16825 efrain 12207
  .mb-lg-6 {
12208
    margin-bottom: 4.5rem !important;
12209
  }
16848 stevensc 12210
 
16825 efrain 12211
  .mb-lg-7 {
12212
    margin-bottom: 6rem !important;
12213
  }
16848 stevensc 12214
 
16825 efrain 12215
  .mb-lg-auto {
12216
    margin-bottom: auto !important;
12217
  }
16848 stevensc 12218
 
16825 efrain 12219
  .ms-lg-0 {
12220
    margin-left: 0 !important;
12221
  }
16848 stevensc 12222
 
16825 efrain 12223
  .ms-lg-1 {
12224
    margin-left: 0.25rem !important;
12225
  }
16848 stevensc 12226
 
16825 efrain 12227
  .ms-lg-2 {
12228
    margin-left: 0.5rem !important;
12229
  }
16848 stevensc 12230
 
16825 efrain 12231
  .ms-lg-3 {
12232
    margin-left: 1rem !important;
12233
  }
16848 stevensc 12234
 
16825 efrain 12235
  .ms-lg-4 {
12236
    margin-left: 1.5rem !important;
12237
  }
16848 stevensc 12238
 
16825 efrain 12239
  .ms-lg-5 {
12240
    margin-left: 3rem !important;
12241
  }
16848 stevensc 12242
 
16825 efrain 12243
  .ms-lg-6 {
12244
    margin-left: 4.5rem !important;
12245
  }
16848 stevensc 12246
 
16825 efrain 12247
  .ms-lg-7 {
12248
    margin-left: 6rem !important;
12249
  }
16848 stevensc 12250
 
16825 efrain 12251
  .ms-lg-auto {
12252
    margin-left: auto !important;
12253
  }
16848 stevensc 12254
 
16825 efrain 12255
  .m-lg-n1 {
12256
    margin: -0.25rem !important;
12257
  }
16848 stevensc 12258
 
16825 efrain 12259
  .m-lg-n2 {
12260
    margin: -0.5rem !important;
12261
  }
16848 stevensc 12262
 
16825 efrain 12263
  .m-lg-n3 {
12264
    margin: -1rem !important;
12265
  }
16848 stevensc 12266
 
16825 efrain 12267
  .m-lg-n4 {
12268
    margin: -1.5rem !important;
12269
  }
16848 stevensc 12270
 
16825 efrain 12271
  .m-lg-n5 {
12272
    margin: -3rem !important;
12273
  }
16848 stevensc 12274
 
16825 efrain 12275
  .m-lg-n6 {
12276
    margin: -4.5rem !important;
12277
  }
16848 stevensc 12278
 
16825 efrain 12279
  .m-lg-n7 {
12280
    margin: -6rem !important;
12281
  }
16848 stevensc 12282
 
16825 efrain 12283
  .mx-lg-n1 {
12284
    margin-right: -0.25rem !important;
12285
    margin-left: -0.25rem !important;
12286
  }
16848 stevensc 12287
 
16825 efrain 12288
  .mx-lg-n2 {
12289
    margin-right: -0.5rem !important;
12290
    margin-left: -0.5rem !important;
12291
  }
16848 stevensc 12292
 
16825 efrain 12293
  .mx-lg-n3 {
12294
    margin-right: -1rem !important;
12295
    margin-left: -1rem !important;
12296
  }
16848 stevensc 12297
 
16825 efrain 12298
  .mx-lg-n4 {
12299
    margin-right: -1.5rem !important;
12300
    margin-left: -1.5rem !important;
12301
  }
16848 stevensc 12302
 
16825 efrain 12303
  .mx-lg-n5 {
12304
    margin-right: -3rem !important;
12305
    margin-left: -3rem !important;
12306
  }
16848 stevensc 12307
 
16825 efrain 12308
  .mx-lg-n6 {
12309
    margin-right: -4.5rem !important;
12310
    margin-left: -4.5rem !important;
12311
  }
16848 stevensc 12312
 
16825 efrain 12313
  .mx-lg-n7 {
12314
    margin-right: -6rem !important;
12315
    margin-left: -6rem !important;
12316
  }
16848 stevensc 12317
 
16825 efrain 12318
  .my-lg-n1 {
12319
    margin-top: -0.25rem !important;
12320
    margin-bottom: -0.25rem !important;
12321
  }
16848 stevensc 12322
 
16825 efrain 12323
  .my-lg-n2 {
12324
    margin-top: -0.5rem !important;
12325
    margin-bottom: -0.5rem !important;
12326
  }
16848 stevensc 12327
 
16825 efrain 12328
  .my-lg-n3 {
12329
    margin-top: -1rem !important;
12330
    margin-bottom: -1rem !important;
12331
  }
16848 stevensc 12332
 
16825 efrain 12333
  .my-lg-n4 {
12334
    margin-top: -1.5rem !important;
12335
    margin-bottom: -1.5rem !important;
12336
  }
16848 stevensc 12337
 
16825 efrain 12338
  .my-lg-n5 {
12339
    margin-top: -3rem !important;
12340
    margin-bottom: -3rem !important;
12341
  }
16848 stevensc 12342
 
16825 efrain 12343
  .my-lg-n6 {
12344
    margin-top: -4.5rem !important;
12345
    margin-bottom: -4.5rem !important;
12346
  }
16848 stevensc 12347
 
16825 efrain 12348
  .my-lg-n7 {
12349
    margin-top: -6rem !important;
12350
    margin-bottom: -6rem !important;
12351
  }
16848 stevensc 12352
 
16825 efrain 12353
  .mt-lg-n1 {
12354
    margin-top: -0.25rem !important;
12355
  }
16848 stevensc 12356
 
16825 efrain 12357
  .mt-lg-n2 {
12358
    margin-top: -0.5rem !important;
12359
  }
16848 stevensc 12360
 
16825 efrain 12361
  .mt-lg-n3 {
12362
    margin-top: -1rem !important;
12363
  }
16848 stevensc 12364
 
16825 efrain 12365
  .mt-lg-n4 {
12366
    margin-top: -1.5rem !important;
12367
  }
16848 stevensc 12368
 
16825 efrain 12369
  .mt-lg-n5 {
12370
    margin-top: -3rem !important;
12371
  }
16848 stevensc 12372
 
16825 efrain 12373
  .mt-lg-n6 {
12374
    margin-top: -4.5rem !important;
12375
  }
16848 stevensc 12376
 
16825 efrain 12377
  .mt-lg-n7 {
12378
    margin-top: -6rem !important;
12379
  }
16848 stevensc 12380
 
16825 efrain 12381
  .me-lg-n1 {
12382
    margin-right: -0.25rem !important;
12383
  }
16848 stevensc 12384
 
16825 efrain 12385
  .me-lg-n2 {
12386
    margin-right: -0.5rem !important;
12387
  }
16848 stevensc 12388
 
16825 efrain 12389
  .me-lg-n3 {
12390
    margin-right: -1rem !important;
12391
  }
16848 stevensc 12392
 
16825 efrain 12393
  .me-lg-n4 {
12394
    margin-right: -1.5rem !important;
12395
  }
16848 stevensc 12396
 
16825 efrain 12397
  .me-lg-n5 {
12398
    margin-right: -3rem !important;
12399
  }
16848 stevensc 12400
 
16825 efrain 12401
  .me-lg-n6 {
12402
    margin-right: -4.5rem !important;
12403
  }
16848 stevensc 12404
 
16825 efrain 12405
  .me-lg-n7 {
12406
    margin-right: -6rem !important;
12407
  }
16848 stevensc 12408
 
16825 efrain 12409
  .mb-lg-n1 {
12410
    margin-bottom: -0.25rem !important;
12411
  }
16848 stevensc 12412
 
16825 efrain 12413
  .mb-lg-n2 {
12414
    margin-bottom: -0.5rem !important;
12415
  }
16848 stevensc 12416
 
16825 efrain 12417
  .mb-lg-n3 {
12418
    margin-bottom: -1rem !important;
12419
  }
16848 stevensc 12420
 
16825 efrain 12421
  .mb-lg-n4 {
12422
    margin-bottom: -1.5rem !important;
12423
  }
16848 stevensc 12424
 
16825 efrain 12425
  .mb-lg-n5 {
12426
    margin-bottom: -3rem !important;
12427
  }
16848 stevensc 12428
 
16825 efrain 12429
  .mb-lg-n6 {
12430
    margin-bottom: -4.5rem !important;
12431
  }
16848 stevensc 12432
 
16825 efrain 12433
  .mb-lg-n7 {
12434
    margin-bottom: -6rem !important;
12435
  }
16848 stevensc 12436
 
16825 efrain 12437
  .ms-lg-n1 {
12438
    margin-left: -0.25rem !important;
12439
  }
16848 stevensc 12440
 
16825 efrain 12441
  .ms-lg-n2 {
12442
    margin-left: -0.5rem !important;
12443
  }
16848 stevensc 12444
 
16825 efrain 12445
  .ms-lg-n3 {
12446
    margin-left: -1rem !important;
12447
  }
16848 stevensc 12448
 
16825 efrain 12449
  .ms-lg-n4 {
12450
    margin-left: -1.5rem !important;
12451
  }
16848 stevensc 12452
 
16825 efrain 12453
  .ms-lg-n5 {
12454
    margin-left: -3rem !important;
12455
  }
16848 stevensc 12456
 
16825 efrain 12457
  .ms-lg-n6 {
12458
    margin-left: -4.5rem !important;
12459
  }
16848 stevensc 12460
 
16825 efrain 12461
  .ms-lg-n7 {
12462
    margin-left: -6rem !important;
12463
  }
16848 stevensc 12464
 
16825 efrain 12465
  .p-lg-0 {
12466
    padding: 0 !important;
12467
  }
16848 stevensc 12468
 
16825 efrain 12469
  .p-lg-1 {
12470
    padding: 0.25rem !important;
12471
  }
16848 stevensc 12472
 
16825 efrain 12473
  .p-lg-2 {
12474
    padding: 0.5rem !important;
12475
  }
16848 stevensc 12476
 
16825 efrain 12477
  .p-lg-3 {
12478
    padding: 1rem !important;
12479
  }
16848 stevensc 12480
 
16825 efrain 12481
  .p-lg-4 {
12482
    padding: 1.5rem !important;
12483
  }
16848 stevensc 12484
 
16825 efrain 12485
  .p-lg-5 {
12486
    padding: 3rem !important;
12487
  }
16848 stevensc 12488
 
16825 efrain 12489
  .p-lg-6 {
12490
    padding: 4.5rem !important;
12491
  }
16848 stevensc 12492
 
16825 efrain 12493
  .p-lg-7 {
12494
    padding: 6rem !important;
12495
  }
16848 stevensc 12496
 
16825 efrain 12497
  .px-lg-0 {
12498
    padding-right: 0 !important;
12499
    padding-left: 0 !important;
12500
  }
16848 stevensc 12501
 
16825 efrain 12502
  .px-lg-1 {
12503
    padding-right: 0.25rem !important;
12504
    padding-left: 0.25rem !important;
12505
  }
16848 stevensc 12506
 
16825 efrain 12507
  .px-lg-2 {
12508
    padding-right: 0.5rem !important;
12509
    padding-left: 0.5rem !important;
12510
  }
16848 stevensc 12511
 
16825 efrain 12512
  .px-lg-3 {
12513
    padding-right: 1rem !important;
12514
    padding-left: 1rem !important;
12515
  }
16848 stevensc 12516
 
16825 efrain 12517
  .px-lg-4 {
12518
    padding-right: 1.5rem !important;
12519
    padding-left: 1.5rem !important;
12520
  }
16848 stevensc 12521
 
16825 efrain 12522
  .px-lg-5 {
12523
    padding-right: 3rem !important;
12524
    padding-left: 3rem !important;
12525
  }
16848 stevensc 12526
 
16825 efrain 12527
  .px-lg-6 {
12528
    padding-right: 4.5rem !important;
12529
    padding-left: 4.5rem !important;
12530
  }
16848 stevensc 12531
 
16825 efrain 12532
  .px-lg-7 {
12533
    padding-right: 6rem !important;
12534
    padding-left: 6rem !important;
12535
  }
16848 stevensc 12536
 
16825 efrain 12537
  .py-lg-0 {
12538
    padding-top: 0 !important;
12539
    padding-bottom: 0 !important;
12540
  }
16848 stevensc 12541
 
16825 efrain 12542
  .py-lg-1 {
12543
    padding-top: 0.25rem !important;
12544
    padding-bottom: 0.25rem !important;
12545
  }
16848 stevensc 12546
 
16825 efrain 12547
  .py-lg-2 {
12548
    padding-top: 0.5rem !important;
12549
    padding-bottom: 0.5rem !important;
12550
  }
16848 stevensc 12551
 
16825 efrain 12552
  .py-lg-3 {
12553
    padding-top: 1rem !important;
12554
    padding-bottom: 1rem !important;
12555
  }
16848 stevensc 12556
 
16825 efrain 12557
  .py-lg-4 {
12558
    padding-top: 1.5rem !important;
12559
    padding-bottom: 1.5rem !important;
12560
  }
16848 stevensc 12561
 
16825 efrain 12562
  .py-lg-5 {
12563
    padding-top: 3rem !important;
12564
    padding-bottom: 3rem !important;
12565
  }
16848 stevensc 12566
 
16825 efrain 12567
  .py-lg-6 {
12568
    padding-top: 4.5rem !important;
12569
    padding-bottom: 4.5rem !important;
12570
  }
16848 stevensc 12571
 
16825 efrain 12572
  .py-lg-7 {
12573
    padding-top: 6rem !important;
12574
    padding-bottom: 6rem !important;
12575
  }
16848 stevensc 12576
 
16825 efrain 12577
  .pt-lg-0 {
12578
    padding-top: 0 !important;
12579
  }
16848 stevensc 12580
 
16825 efrain 12581
  .pt-lg-1 {
12582
    padding-top: 0.25rem !important;
12583
  }
16848 stevensc 12584
 
16825 efrain 12585
  .pt-lg-2 {
12586
    padding-top: 0.5rem !important;
12587
  }
16848 stevensc 12588
 
16825 efrain 12589
  .pt-lg-3 {
12590
    padding-top: 1rem !important;
12591
  }
16848 stevensc 12592
 
16825 efrain 12593
  .pt-lg-4 {
12594
    padding-top: 1.5rem !important;
12595
  }
16848 stevensc 12596
 
16825 efrain 12597
  .pt-lg-5 {
12598
    padding-top: 3rem !important;
12599
  }
16848 stevensc 12600
 
16825 efrain 12601
  .pt-lg-6 {
12602
    padding-top: 4.5rem !important;
12603
  }
16848 stevensc 12604
 
16825 efrain 12605
  .pt-lg-7 {
12606
    padding-top: 6rem !important;
12607
  }
16848 stevensc 12608
 
16825 efrain 12609
  .pe-lg-0 {
12610
    padding-right: 0 !important;
12611
  }
16848 stevensc 12612
 
16825 efrain 12613
  .pe-lg-1 {
12614
    padding-right: 0.25rem !important;
12615
  }
16848 stevensc 12616
 
16825 efrain 12617
  .pe-lg-2 {
12618
    padding-right: 0.5rem !important;
12619
  }
16848 stevensc 12620
 
16825 efrain 12621
  .pe-lg-3 {
12622
    padding-right: 1rem !important;
12623
  }
16848 stevensc 12624
 
16825 efrain 12625
  .pe-lg-4 {
12626
    padding-right: 1.5rem !important;
12627
  }
16848 stevensc 12628
 
16825 efrain 12629
  .pe-lg-5 {
12630
    padding-right: 3rem !important;
12631
  }
16848 stevensc 12632
 
16825 efrain 12633
  .pe-lg-6 {
12634
    padding-right: 4.5rem !important;
12635
  }
16848 stevensc 12636
 
16825 efrain 12637
  .pe-lg-7 {
12638
    padding-right: 6rem !important;
12639
  }
16848 stevensc 12640
 
16825 efrain 12641
  .pb-lg-0 {
12642
    padding-bottom: 0 !important;
12643
  }
16848 stevensc 12644
 
16825 efrain 12645
  .pb-lg-1 {
12646
    padding-bottom: 0.25rem !important;
12647
  }
16848 stevensc 12648
 
16825 efrain 12649
  .pb-lg-2 {
12650
    padding-bottom: 0.5rem !important;
12651
  }
16848 stevensc 12652
 
16825 efrain 12653
  .pb-lg-3 {
12654
    padding-bottom: 1rem !important;
12655
  }
16848 stevensc 12656
 
16825 efrain 12657
  .pb-lg-4 {
12658
    padding-bottom: 1.5rem !important;
12659
  }
16848 stevensc 12660
 
16825 efrain 12661
  .pb-lg-5 {
12662
    padding-bottom: 3rem !important;
12663
  }
16848 stevensc 12664
 
16825 efrain 12665
  .pb-lg-6 {
12666
    padding-bottom: 4.5rem !important;
12667
  }
16848 stevensc 12668
 
16825 efrain 12669
  .pb-lg-7 {
12670
    padding-bottom: 6rem !important;
12671
  }
16848 stevensc 12672
 
16825 efrain 12673
  .ps-lg-0 {
12674
    padding-left: 0 !important;
12675
  }
16848 stevensc 12676
 
16825 efrain 12677
  .ps-lg-1 {
12678
    padding-left: 0.25rem !important;
12679
  }
16848 stevensc 12680
 
16825 efrain 12681
  .ps-lg-2 {
12682
    padding-left: 0.5rem !important;
12683
  }
16848 stevensc 12684
 
16825 efrain 12685
  .ps-lg-3 {
12686
    padding-left: 1rem !important;
12687
  }
16848 stevensc 12688
 
16825 efrain 12689
  .ps-lg-4 {
12690
    padding-left: 1.5rem !important;
12691
  }
16848 stevensc 12692
 
16825 efrain 12693
  .ps-lg-5 {
12694
    padding-left: 3rem !important;
12695
  }
16848 stevensc 12696
 
16825 efrain 12697
  .ps-lg-6 {
12698
    padding-left: 4.5rem !important;
12699
  }
16848 stevensc 12700
 
16825 efrain 12701
  .ps-lg-7 {
12702
    padding-left: 6rem !important;
12703
  }
16848 stevensc 12704
 
16825 efrain 12705
  .gap-lg-0 {
12706
    gap: 0 !important;
12707
  }
16848 stevensc 12708
 
16825 efrain 12709
  .gap-lg-1 {
12710
    gap: 0.25rem !important;
12711
  }
16848 stevensc 12712
 
16825 efrain 12713
  .gap-lg-2 {
12714
    gap: 0.5rem !important;
12715
  }
16848 stevensc 12716
 
16825 efrain 12717
  .gap-lg-3 {
12718
    gap: 1rem !important;
12719
  }
16848 stevensc 12720
 
16825 efrain 12721
  .gap-lg-4 {
12722
    gap: 1.5rem !important;
12723
  }
16848 stevensc 12724
 
16825 efrain 12725
  .gap-lg-5 {
12726
    gap: 3rem !important;
12727
  }
16848 stevensc 12728
 
16825 efrain 12729
  .gap-lg-6 {
12730
    gap: 4.5rem !important;
12731
  }
16848 stevensc 12732
 
16825 efrain 12733
  .gap-lg-7 {
12734
    gap: 6rem !important;
12735
  }
16848 stevensc 12736
 
16825 efrain 12737
  .text-lg-start {
12738
    text-align: left !important;
12739
  }
16848 stevensc 12740
 
16825 efrain 12741
  .text-lg-end {
12742
    text-align: right !important;
12743
  }
16848 stevensc 12744
 
16825 efrain 12745
  .text-lg-center {
12746
    text-align: center !important;
12747
  }
12748
}
16848 stevensc 12749
 
16825 efrain 12750
@media (min-width: 1200px) {
12751
  .float-xl-start {
12752
    float: left !important;
12753
  }
16848 stevensc 12754
 
16825 efrain 12755
  .float-xl-end {
12756
    float: right !important;
12757
  }
16848 stevensc 12758
 
16825 efrain 12759
  .float-xl-none {
12760
    float: none !important;
12761
  }
16848 stevensc 12762
 
16825 efrain 12763
  .d-xl-inline {
12764
    display: inline !important;
12765
  }
16848 stevensc 12766
 
16825 efrain 12767
  .d-xl-inline-block {
12768
    display: inline-block !important;
12769
  }
16848 stevensc 12770
 
16825 efrain 12771
  .d-xl-block {
12772
    display: block !important;
12773
  }
16848 stevensc 12774
 
16825 efrain 12775
  .d-xl-grid {
12776
    display: grid !important;
12777
  }
16848 stevensc 12778
 
16825 efrain 12779
  .d-xl-table {
12780
    display: table !important;
12781
  }
16848 stevensc 12782
 
16825 efrain 12783
  .d-xl-table-row {
12784
    display: table-row !important;
12785
  }
16848 stevensc 12786
 
16825 efrain 12787
  .d-xl-table-cell {
12788
    display: table-cell !important;
12789
  }
16848 stevensc 12790
 
16825 efrain 12791
  .d-xl-flex {
12792
    display: flex !important;
12793
  }
16848 stevensc 12794
 
16825 efrain 12795
  .d-xl-inline-flex {
12796
    display: inline-flex !important;
12797
  }
16848 stevensc 12798
 
16825 efrain 12799
  .d-xl-none {
12800
    display: none !important;
12801
  }
16848 stevensc 12802
 
16825 efrain 12803
  .border-xl {
12804
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12805
  }
16848 stevensc 12806
 
16825 efrain 12807
  .border-xl-0 {
12808
    border: 0 !important;
12809
  }
16848 stevensc 12810
 
16825 efrain 12811
  .border-top-xl {
12812
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12813
  }
16848 stevensc 12814
 
16825 efrain 12815
  .border-top-xl-0 {
12816
    border-top: 0 !important;
12817
  }
16848 stevensc 12818
 
16825 efrain 12819
  .border-end-xl {
12820
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12821
  }
16848 stevensc 12822
 
16825 efrain 12823
  .border-end-xl-0 {
12824
    border-right: 0 !important;
12825
  }
16848 stevensc 12826
 
16825 efrain 12827
  .border-bottom-xl {
12828
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12829
  }
16848 stevensc 12830
 
16825 efrain 12831
  .border-bottom-xl-0 {
12832
    border-bottom: 0 !important;
12833
  }
16848 stevensc 12834
 
16825 efrain 12835
  .border-start-xl {
12836
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12837
  }
16848 stevensc 12838
 
16825 efrain 12839
  .border-start-xl-0 {
12840
    border-left: 0 !important;
12841
  }
16848 stevensc 12842
 
16825 efrain 12843
  .flex-xl-fill {
12844
    flex: 1 1 auto !important;
12845
  }
16848 stevensc 12846
 
16825 efrain 12847
  .flex-xl-row {
12848
    flex-direction: row !important;
12849
  }
16848 stevensc 12850
 
16825 efrain 12851
  .flex-xl-column {
12852
    flex-direction: column !important;
12853
  }
16848 stevensc 12854
 
16825 efrain 12855
  .flex-xl-row-reverse {
12856
    flex-direction: row-reverse !important;
12857
  }
16848 stevensc 12858
 
16825 efrain 12859
  .flex-xl-column-reverse {
12860
    flex-direction: column-reverse !important;
12861
  }
16848 stevensc 12862
 
16825 efrain 12863
  .flex-xl-grow-0 {
12864
    flex-grow: 0 !important;
12865
  }
16848 stevensc 12866
 
16825 efrain 12867
  .flex-xl-grow-1 {
12868
    flex-grow: 1 !important;
12869
  }
16848 stevensc 12870
 
16825 efrain 12871
  .flex-xl-shrink-0 {
12872
    flex-shrink: 0 !important;
12873
  }
16848 stevensc 12874
 
16825 efrain 12875
  .flex-xl-shrink-1 {
12876
    flex-shrink: 1 !important;
12877
  }
16848 stevensc 12878
 
16825 efrain 12879
  .flex-xl-wrap {
12880
    flex-wrap: wrap !important;
12881
  }
16848 stevensc 12882
 
16825 efrain 12883
  .flex-xl-nowrap {
12884
    flex-wrap: nowrap !important;
12885
  }
16848 stevensc 12886
 
16825 efrain 12887
  .flex-xl-wrap-reverse {
12888
    flex-wrap: wrap-reverse !important;
12889
  }
16848 stevensc 12890
 
16825 efrain 12891
  .justify-content-xl-start {
12892
    justify-content: flex-start !important;
12893
  }
16848 stevensc 12894
 
16825 efrain 12895
  .justify-content-xl-end {
12896
    justify-content: flex-end !important;
12897
  }
16848 stevensc 12898
 
16825 efrain 12899
  .justify-content-xl-center {
12900
    justify-content: center !important;
12901
  }
16848 stevensc 12902
 
16825 efrain 12903
  .justify-content-xl-between {
12904
    justify-content: space-between !important;
12905
  }
16848 stevensc 12906
 
16825 efrain 12907
  .justify-content-xl-around {
12908
    justify-content: space-around !important;
12909
  }
16848 stevensc 12910
 
16825 efrain 12911
  .justify-content-xl-evenly {
12912
    justify-content: space-evenly !important;
12913
  }
16848 stevensc 12914
 
16825 efrain 12915
  .align-items-xl-start {
12916
    align-items: flex-start !important;
12917
  }
16848 stevensc 12918
 
16825 efrain 12919
  .align-items-xl-end {
12920
    align-items: flex-end !important;
12921
  }
16848 stevensc 12922
 
16825 efrain 12923
  .align-items-xl-center {
12924
    align-items: center !important;
12925
  }
16848 stevensc 12926
 
16825 efrain 12927
  .align-items-xl-baseline {
12928
    align-items: baseline !important;
12929
  }
16848 stevensc 12930
 
16825 efrain 12931
  .align-items-xl-stretch {
12932
    align-items: stretch !important;
12933
  }
16848 stevensc 12934
 
16825 efrain 12935
  .align-content-xl-start {
12936
    align-content: flex-start !important;
12937
  }
16848 stevensc 12938
 
16825 efrain 12939
  .align-content-xl-end {
12940
    align-content: flex-end !important;
12941
  }
16848 stevensc 12942
 
16825 efrain 12943
  .align-content-xl-center {
12944
    align-content: center !important;
12945
  }
16848 stevensc 12946
 
16825 efrain 12947
  .align-content-xl-between {
12948
    align-content: space-between !important;
12949
  }
16848 stevensc 12950
 
16825 efrain 12951
  .align-content-xl-around {
12952
    align-content: space-around !important;
12953
  }
16848 stevensc 12954
 
16825 efrain 12955
  .align-content-xl-stretch {
12956
    align-content: stretch !important;
12957
  }
16848 stevensc 12958
 
16825 efrain 12959
  .align-self-xl-auto {
12960
    align-self: auto !important;
12961
  }
16848 stevensc 12962
 
16825 efrain 12963
  .align-self-xl-start {
12964
    align-self: flex-start !important;
12965
  }
16848 stevensc 12966
 
16825 efrain 12967
  .align-self-xl-end {
12968
    align-self: flex-end !important;
12969
  }
16848 stevensc 12970
 
16825 efrain 12971
  .align-self-xl-center {
12972
    align-self: center !important;
12973
  }
16848 stevensc 12974
 
16825 efrain 12975
  .align-self-xl-baseline {
12976
    align-self: baseline !important;
12977
  }
16848 stevensc 12978
 
16825 efrain 12979
  .align-self-xl-stretch {
12980
    align-self: stretch !important;
12981
  }
16848 stevensc 12982
 
16825 efrain 12983
  .order-xl-first {
12984
    order: -1 !important;
12985
  }
16848 stevensc 12986
 
16825 efrain 12987
  .order-xl-0 {
12988
    order: 0 !important;
12989
  }
16848 stevensc 12990
 
16825 efrain 12991
  .order-xl-1 {
12992
    order: 1 !important;
12993
  }
16848 stevensc 12994
 
16825 efrain 12995
  .order-xl-2 {
12996
    order: 2 !important;
12997
  }
16848 stevensc 12998
 
16825 efrain 12999
  .order-xl-3 {
13000
    order: 3 !important;
13001
  }
16848 stevensc 13002
 
16825 efrain 13003
  .order-xl-4 {
13004
    order: 4 !important;
13005
  }
16848 stevensc 13006
 
16825 efrain 13007
  .order-xl-5 {
13008
    order: 5 !important;
13009
  }
16848 stevensc 13010
 
16825 efrain 13011
  .order-xl-last {
13012
    order: 6 !important;
13013
  }
16848 stevensc 13014
 
16825 efrain 13015
  .m-xl-0 {
13016
    margin: 0 !important;
13017
  }
16848 stevensc 13018
 
16825 efrain 13019
  .m-xl-1 {
13020
    margin: 0.25rem !important;
13021
  }
16848 stevensc 13022
 
16825 efrain 13023
  .m-xl-2 {
13024
    margin: 0.5rem !important;
13025
  }
16848 stevensc 13026
 
16825 efrain 13027
  .m-xl-3 {
13028
    margin: 1rem !important;
13029
  }
16848 stevensc 13030
 
16825 efrain 13031
  .m-xl-4 {
13032
    margin: 1.5rem !important;
13033
  }
16848 stevensc 13034
 
16825 efrain 13035
  .m-xl-5 {
13036
    margin: 3rem !important;
13037
  }
16848 stevensc 13038
 
16825 efrain 13039
  .m-xl-6 {
13040
    margin: 4.5rem !important;
13041
  }
16848 stevensc 13042
 
16825 efrain 13043
  .m-xl-7 {
13044
    margin: 6rem !important;
13045
  }
16848 stevensc 13046
 
16825 efrain 13047
  .m-xl-auto {
13048
    margin: auto !important;
13049
  }
16848 stevensc 13050
 
16825 efrain 13051
  .mx-xl-0 {
13052
    margin-right: 0 !important;
13053
    margin-left: 0 !important;
13054
  }
16848 stevensc 13055
 
16825 efrain 13056
  .mx-xl-1 {
13057
    margin-right: 0.25rem !important;
13058
    margin-left: 0.25rem !important;
13059
  }
16848 stevensc 13060
 
16825 efrain 13061
  .mx-xl-2 {
13062
    margin-right: 0.5rem !important;
13063
    margin-left: 0.5rem !important;
13064
  }
16848 stevensc 13065
 
16825 efrain 13066
  .mx-xl-3 {
13067
    margin-right: 1rem !important;
13068
    margin-left: 1rem !important;
13069
  }
16848 stevensc 13070
 
16825 efrain 13071
  .mx-xl-4 {
13072
    margin-right: 1.5rem !important;
13073
    margin-left: 1.5rem !important;
13074
  }
16848 stevensc 13075
 
16825 efrain 13076
  .mx-xl-5 {
13077
    margin-right: 3rem !important;
13078
    margin-left: 3rem !important;
13079
  }
16848 stevensc 13080
 
16825 efrain 13081
  .mx-xl-6 {
13082
    margin-right: 4.5rem !important;
13083
    margin-left: 4.5rem !important;
13084
  }
16848 stevensc 13085
 
16825 efrain 13086
  .mx-xl-7 {
13087
    margin-right: 6rem !important;
13088
    margin-left: 6rem !important;
13089
  }
16848 stevensc 13090
 
16825 efrain 13091
  .mx-xl-auto {
13092
    margin-right: auto !important;
13093
    margin-left: auto !important;
13094
  }
16848 stevensc 13095
 
16825 efrain 13096
  .my-xl-0 {
13097
    margin-top: 0 !important;
13098
    margin-bottom: 0 !important;
13099
  }
16848 stevensc 13100
 
16825 efrain 13101
  .my-xl-1 {
13102
    margin-top: 0.25rem !important;
13103
    margin-bottom: 0.25rem !important;
13104
  }
16848 stevensc 13105
 
16825 efrain 13106
  .my-xl-2 {
13107
    margin-top: 0.5rem !important;
13108
    margin-bottom: 0.5rem !important;
13109
  }
16848 stevensc 13110
 
16825 efrain 13111
  .my-xl-3 {
13112
    margin-top: 1rem !important;
13113
    margin-bottom: 1rem !important;
13114
  }
16848 stevensc 13115
 
16825 efrain 13116
  .my-xl-4 {
13117
    margin-top: 1.5rem !important;
13118
    margin-bottom: 1.5rem !important;
13119
  }
16848 stevensc 13120
 
16825 efrain 13121
  .my-xl-5 {
13122
    margin-top: 3rem !important;
13123
    margin-bottom: 3rem !important;
13124
  }
16848 stevensc 13125
 
16825 efrain 13126
  .my-xl-6 {
13127
    margin-top: 4.5rem !important;
13128
    margin-bottom: 4.5rem !important;
13129
  }
16848 stevensc 13130
 
16825 efrain 13131
  .my-xl-7 {
13132
    margin-top: 6rem !important;
13133
    margin-bottom: 6rem !important;
13134
  }
16848 stevensc 13135
 
16825 efrain 13136
  .my-xl-auto {
13137
    margin-top: auto !important;
13138
    margin-bottom: auto !important;
13139
  }
16848 stevensc 13140
 
16825 efrain 13141
  .mt-xl-0 {
13142
    margin-top: 0 !important;
13143
  }
16848 stevensc 13144
 
16825 efrain 13145
  .mt-xl-1 {
13146
    margin-top: 0.25rem !important;
13147
  }
16848 stevensc 13148
 
16825 efrain 13149
  .mt-xl-2 {
13150
    margin-top: 0.5rem !important;
13151
  }
16848 stevensc 13152
 
16825 efrain 13153
  .mt-xl-3 {
13154
    margin-top: 1rem !important;
13155
  }
16848 stevensc 13156
 
16825 efrain 13157
  .mt-xl-4 {
13158
    margin-top: 1.5rem !important;
13159
  }
16848 stevensc 13160
 
16825 efrain 13161
  .mt-xl-5 {
13162
    margin-top: 3rem !important;
13163
  }
16848 stevensc 13164
 
16825 efrain 13165
  .mt-xl-6 {
13166
    margin-top: 4.5rem !important;
13167
  }
16848 stevensc 13168
 
16825 efrain 13169
  .mt-xl-7 {
13170
    margin-top: 6rem !important;
13171
  }
16848 stevensc 13172
 
16825 efrain 13173
  .mt-xl-auto {
13174
    margin-top: auto !important;
13175
  }
16848 stevensc 13176
 
16825 efrain 13177
  .me-xl-0 {
13178
    margin-right: 0 !important;
13179
  }
16848 stevensc 13180
 
16825 efrain 13181
  .me-xl-1 {
13182
    margin-right: 0.25rem !important;
13183
  }
16848 stevensc 13184
 
16825 efrain 13185
  .me-xl-2 {
13186
    margin-right: 0.5rem !important;
13187
  }
16848 stevensc 13188
 
16825 efrain 13189
  .me-xl-3 {
13190
    margin-right: 1rem !important;
13191
  }
16848 stevensc 13192
 
16825 efrain 13193
  .me-xl-4 {
13194
    margin-right: 1.5rem !important;
13195
  }
16848 stevensc 13196
 
16825 efrain 13197
  .me-xl-5 {
13198
    margin-right: 3rem !important;
13199
  }
16848 stevensc 13200
 
16825 efrain 13201
  .me-xl-6 {
13202
    margin-right: 4.5rem !important;
13203
  }
16848 stevensc 13204
 
16825 efrain 13205
  .me-xl-7 {
13206
    margin-right: 6rem !important;
13207
  }
16848 stevensc 13208
 
16825 efrain 13209
  .me-xl-auto {
13210
    margin-right: auto !important;
13211
  }
16848 stevensc 13212
 
16825 efrain 13213
  .mb-xl-0 {
13214
    margin-bottom: 0 !important;
13215
  }
16848 stevensc 13216
 
16825 efrain 13217
  .mb-xl-1 {
13218
    margin-bottom: 0.25rem !important;
13219
  }
16848 stevensc 13220
 
16825 efrain 13221
  .mb-xl-2 {
13222
    margin-bottom: 0.5rem !important;
13223
  }
16848 stevensc 13224
 
16825 efrain 13225
  .mb-xl-3 {
13226
    margin-bottom: 1rem !important;
13227
  }
16848 stevensc 13228
 
16825 efrain 13229
  .mb-xl-4 {
13230
    margin-bottom: 1.5rem !important;
13231
  }
16848 stevensc 13232
 
16825 efrain 13233
  .mb-xl-5 {
13234
    margin-bottom: 3rem !important;
13235
  }
16848 stevensc 13236
 
16825 efrain 13237
  .mb-xl-6 {
13238
    margin-bottom: 4.5rem !important;
13239
  }
16848 stevensc 13240
 
16825 efrain 13241
  .mb-xl-7 {
13242
    margin-bottom: 6rem !important;
13243
  }
16848 stevensc 13244
 
16825 efrain 13245
  .mb-xl-auto {
13246
    margin-bottom: auto !important;
13247
  }
16848 stevensc 13248
 
16825 efrain 13249
  .ms-xl-0 {
13250
    margin-left: 0 !important;
13251
  }
16848 stevensc 13252
 
16825 efrain 13253
  .ms-xl-1 {
13254
    margin-left: 0.25rem !important;
13255
  }
16848 stevensc 13256
 
16825 efrain 13257
  .ms-xl-2 {
13258
    margin-left: 0.5rem !important;
13259
  }
16848 stevensc 13260
 
16825 efrain 13261
  .ms-xl-3 {
13262
    margin-left: 1rem !important;
13263
  }
16848 stevensc 13264
 
16825 efrain 13265
  .ms-xl-4 {
13266
    margin-left: 1.5rem !important;
13267
  }
16848 stevensc 13268
 
16825 efrain 13269
  .ms-xl-5 {
13270
    margin-left: 3rem !important;
13271
  }
16848 stevensc 13272
 
16825 efrain 13273
  .ms-xl-6 {
13274
    margin-left: 4.5rem !important;
13275
  }
16848 stevensc 13276
 
16825 efrain 13277
  .ms-xl-7 {
13278
    margin-left: 6rem !important;
13279
  }
16848 stevensc 13280
 
16825 efrain 13281
  .ms-xl-auto {
13282
    margin-left: auto !important;
13283
  }
16848 stevensc 13284
 
16825 efrain 13285
  .m-xl-n1 {
13286
    margin: -0.25rem !important;
13287
  }
16848 stevensc 13288
 
16825 efrain 13289
  .m-xl-n2 {
13290
    margin: -0.5rem !important;
13291
  }
16848 stevensc 13292
 
16825 efrain 13293
  .m-xl-n3 {
13294
    margin: -1rem !important;
13295
  }
16848 stevensc 13296
 
16825 efrain 13297
  .m-xl-n4 {
13298
    margin: -1.5rem !important;
13299
  }
16848 stevensc 13300
 
16825 efrain 13301
  .m-xl-n5 {
13302
    margin: -3rem !important;
13303
  }
16848 stevensc 13304
 
16825 efrain 13305
  .m-xl-n6 {
13306
    margin: -4.5rem !important;
13307
  }
16848 stevensc 13308
 
16825 efrain 13309
  .m-xl-n7 {
13310
    margin: -6rem !important;
13311
  }
16848 stevensc 13312
 
16825 efrain 13313
  .mx-xl-n1 {
13314
    margin-right: -0.25rem !important;
13315
    margin-left: -0.25rem !important;
13316
  }
16848 stevensc 13317
 
16825 efrain 13318
  .mx-xl-n2 {
13319
    margin-right: -0.5rem !important;
13320
    margin-left: -0.5rem !important;
13321
  }
16848 stevensc 13322
 
16825 efrain 13323
  .mx-xl-n3 {
13324
    margin-right: -1rem !important;
13325
    margin-left: -1rem !important;
13326
  }
16848 stevensc 13327
 
16825 efrain 13328
  .mx-xl-n4 {
13329
    margin-right: -1.5rem !important;
13330
    margin-left: -1.5rem !important;
13331
  }
16848 stevensc 13332
 
16825 efrain 13333
  .mx-xl-n5 {
13334
    margin-right: -3rem !important;
13335
    margin-left: -3rem !important;
13336
  }
16848 stevensc 13337
 
16825 efrain 13338
  .mx-xl-n6 {
13339
    margin-right: -4.5rem !important;
13340
    margin-left: -4.5rem !important;
13341
  }
16848 stevensc 13342
 
16825 efrain 13343
  .mx-xl-n7 {
13344
    margin-right: -6rem !important;
13345
    margin-left: -6rem !important;
13346
  }
16848 stevensc 13347
 
16825 efrain 13348
  .my-xl-n1 {
13349
    margin-top: -0.25rem !important;
13350
    margin-bottom: -0.25rem !important;
13351
  }
16848 stevensc 13352
 
16825 efrain 13353
  .my-xl-n2 {
13354
    margin-top: -0.5rem !important;
13355
    margin-bottom: -0.5rem !important;
13356
  }
16848 stevensc 13357
 
16825 efrain 13358
  .my-xl-n3 {
13359
    margin-top: -1rem !important;
13360
    margin-bottom: -1rem !important;
13361
  }
16848 stevensc 13362
 
16825 efrain 13363
  .my-xl-n4 {
13364
    margin-top: -1.5rem !important;
13365
    margin-bottom: -1.5rem !important;
13366
  }
16848 stevensc 13367
 
16825 efrain 13368
  .my-xl-n5 {
13369
    margin-top: -3rem !important;
13370
    margin-bottom: -3rem !important;
13371
  }
16848 stevensc 13372
 
16825 efrain 13373
  .my-xl-n6 {
13374
    margin-top: -4.5rem !important;
13375
    margin-bottom: -4.5rem !important;
13376
  }
16848 stevensc 13377
 
16825 efrain 13378
  .my-xl-n7 {
13379
    margin-top: -6rem !important;
13380
    margin-bottom: -6rem !important;
13381
  }
16848 stevensc 13382
 
16825 efrain 13383
  .mt-xl-n1 {
13384
    margin-top: -0.25rem !important;
13385
  }
16848 stevensc 13386
 
16825 efrain 13387
  .mt-xl-n2 {
13388
    margin-top: -0.5rem !important;
13389
  }
16848 stevensc 13390
 
16825 efrain 13391
  .mt-xl-n3 {
13392
    margin-top: -1rem !important;
13393
  }
16848 stevensc 13394
 
16825 efrain 13395
  .mt-xl-n4 {
13396
    margin-top: -1.5rem !important;
13397
  }
16848 stevensc 13398
 
16825 efrain 13399
  .mt-xl-n5 {
13400
    margin-top: -3rem !important;
13401
  }
16848 stevensc 13402
 
16825 efrain 13403
  .mt-xl-n6 {
13404
    margin-top: -4.5rem !important;
13405
  }
16848 stevensc 13406
 
16825 efrain 13407
  .mt-xl-n7 {
13408
    margin-top: -6rem !important;
13409
  }
16848 stevensc 13410
 
16825 efrain 13411
  .me-xl-n1 {
13412
    margin-right: -0.25rem !important;
13413
  }
16848 stevensc 13414
 
16825 efrain 13415
  .me-xl-n2 {
13416
    margin-right: -0.5rem !important;
13417
  }
16848 stevensc 13418
 
16825 efrain 13419
  .me-xl-n3 {
13420
    margin-right: -1rem !important;
13421
  }
16848 stevensc 13422
 
16825 efrain 13423
  .me-xl-n4 {
13424
    margin-right: -1.5rem !important;
13425
  }
16848 stevensc 13426
 
16825 efrain 13427
  .me-xl-n5 {
13428
    margin-right: -3rem !important;
13429
  }
16848 stevensc 13430
 
16825 efrain 13431
  .me-xl-n6 {
13432
    margin-right: -4.5rem !important;
13433
  }
16848 stevensc 13434
 
16825 efrain 13435
  .me-xl-n7 {
13436
    margin-right: -6rem !important;
13437
  }
16848 stevensc 13438
 
16825 efrain 13439
  .mb-xl-n1 {
13440
    margin-bottom: -0.25rem !important;
13441
  }
16848 stevensc 13442
 
16825 efrain 13443
  .mb-xl-n2 {
13444
    margin-bottom: -0.5rem !important;
13445
  }
16848 stevensc 13446
 
16825 efrain 13447
  .mb-xl-n3 {
13448
    margin-bottom: -1rem !important;
13449
  }
16848 stevensc 13450
 
16825 efrain 13451
  .mb-xl-n4 {
13452
    margin-bottom: -1.5rem !important;
13453
  }
16848 stevensc 13454
 
16825 efrain 13455
  .mb-xl-n5 {
13456
    margin-bottom: -3rem !important;
13457
  }
16848 stevensc 13458
 
16825 efrain 13459
  .mb-xl-n6 {
13460
    margin-bottom: -4.5rem !important;
13461
  }
16848 stevensc 13462
 
16825 efrain 13463
  .mb-xl-n7 {
13464
    margin-bottom: -6rem !important;
13465
  }
16848 stevensc 13466
 
16825 efrain 13467
  .ms-xl-n1 {
13468
    margin-left: -0.25rem !important;
13469
  }
16848 stevensc 13470
 
16825 efrain 13471
  .ms-xl-n2 {
13472
    margin-left: -0.5rem !important;
13473
  }
16848 stevensc 13474
 
16825 efrain 13475
  .ms-xl-n3 {
13476
    margin-left: -1rem !important;
13477
  }
16848 stevensc 13478
 
16825 efrain 13479
  .ms-xl-n4 {
13480
    margin-left: -1.5rem !important;
13481
  }
16848 stevensc 13482
 
16825 efrain 13483
  .ms-xl-n5 {
13484
    margin-left: -3rem !important;
13485
  }
16848 stevensc 13486
 
16825 efrain 13487
  .ms-xl-n6 {
13488
    margin-left: -4.5rem !important;
13489
  }
16848 stevensc 13490
 
16825 efrain 13491
  .ms-xl-n7 {
13492
    margin-left: -6rem !important;
13493
  }
16848 stevensc 13494
 
16825 efrain 13495
  .p-xl-0 {
13496
    padding: 0 !important;
13497
  }
16848 stevensc 13498
 
16825 efrain 13499
  .p-xl-1 {
13500
    padding: 0.25rem !important;
13501
  }
16848 stevensc 13502
 
16825 efrain 13503
  .p-xl-2 {
13504
    padding: 0.5rem !important;
13505
  }
16848 stevensc 13506
 
16825 efrain 13507
  .p-xl-3 {
13508
    padding: 1rem !important;
13509
  }
16848 stevensc 13510
 
16825 efrain 13511
  .p-xl-4 {
13512
    padding: 1.5rem !important;
13513
  }
16848 stevensc 13514
 
16825 efrain 13515
  .p-xl-5 {
13516
    padding: 3rem !important;
13517
  }
16848 stevensc 13518
 
16825 efrain 13519
  .p-xl-6 {
13520
    padding: 4.5rem !important;
13521
  }
16848 stevensc 13522
 
16825 efrain 13523
  .p-xl-7 {
13524
    padding: 6rem !important;
13525
  }
16848 stevensc 13526
 
16825 efrain 13527
  .px-xl-0 {
13528
    padding-right: 0 !important;
13529
    padding-left: 0 !important;
13530
  }
16848 stevensc 13531
 
16825 efrain 13532
  .px-xl-1 {
13533
    padding-right: 0.25rem !important;
13534
    padding-left: 0.25rem !important;
13535
  }
16848 stevensc 13536
 
16825 efrain 13537
  .px-xl-2 {
13538
    padding-right: 0.5rem !important;
13539
    padding-left: 0.5rem !important;
13540
  }
16848 stevensc 13541
 
16825 efrain 13542
  .px-xl-3 {
13543
    padding-right: 1rem !important;
13544
    padding-left: 1rem !important;
13545
  }
16848 stevensc 13546
 
16825 efrain 13547
  .px-xl-4 {
13548
    padding-right: 1.5rem !important;
13549
    padding-left: 1.5rem !important;
13550
  }
16848 stevensc 13551
 
16825 efrain 13552
  .px-xl-5 {
13553
    padding-right: 3rem !important;
13554
    padding-left: 3rem !important;
13555
  }
16848 stevensc 13556
 
16825 efrain 13557
  .px-xl-6 {
13558
    padding-right: 4.5rem !important;
13559
    padding-left: 4.5rem !important;
13560
  }
16848 stevensc 13561
 
16825 efrain 13562
  .px-xl-7 {
13563
    padding-right: 6rem !important;
13564
    padding-left: 6rem !important;
13565
  }
16848 stevensc 13566
 
16825 efrain 13567
  .py-xl-0 {
13568
    padding-top: 0 !important;
13569
    padding-bottom: 0 !important;
13570
  }
16848 stevensc 13571
 
16825 efrain 13572
  .py-xl-1 {
13573
    padding-top: 0.25rem !important;
13574
    padding-bottom: 0.25rem !important;
13575
  }
16848 stevensc 13576
 
16825 efrain 13577
  .py-xl-2 {
13578
    padding-top: 0.5rem !important;
13579
    padding-bottom: 0.5rem !important;
13580
  }
16848 stevensc 13581
 
16825 efrain 13582
  .py-xl-3 {
13583
    padding-top: 1rem !important;
13584
    padding-bottom: 1rem !important;
13585
  }
16848 stevensc 13586
 
16825 efrain 13587
  .py-xl-4 {
13588
    padding-top: 1.5rem !important;
13589
    padding-bottom: 1.5rem !important;
13590
  }
16848 stevensc 13591
 
16825 efrain 13592
  .py-xl-5 {
13593
    padding-top: 3rem !important;
13594
    padding-bottom: 3rem !important;
13595
  }
16848 stevensc 13596
 
16825 efrain 13597
  .py-xl-6 {
13598
    padding-top: 4.5rem !important;
13599
    padding-bottom: 4.5rem !important;
13600
  }
16848 stevensc 13601
 
16825 efrain 13602
  .py-xl-7 {
13603
    padding-top: 6rem !important;
13604
    padding-bottom: 6rem !important;
13605
  }
16848 stevensc 13606
 
16825 efrain 13607
  .pt-xl-0 {
13608
    padding-top: 0 !important;
13609
  }
16848 stevensc 13610
 
16825 efrain 13611
  .pt-xl-1 {
13612
    padding-top: 0.25rem !important;
13613
  }
16848 stevensc 13614
 
16825 efrain 13615
  .pt-xl-2 {
13616
    padding-top: 0.5rem !important;
13617
  }
16848 stevensc 13618
 
16825 efrain 13619
  .pt-xl-3 {
13620
    padding-top: 1rem !important;
13621
  }
16848 stevensc 13622
 
16825 efrain 13623
  .pt-xl-4 {
13624
    padding-top: 1.5rem !important;
13625
  }
16848 stevensc 13626
 
16825 efrain 13627
  .pt-xl-5 {
13628
    padding-top: 3rem !important;
13629
  }
16848 stevensc 13630
 
16825 efrain 13631
  .pt-xl-6 {
13632
    padding-top: 4.5rem !important;
13633
  }
16848 stevensc 13634
 
16825 efrain 13635
  .pt-xl-7 {
13636
    padding-top: 6rem !important;
13637
  }
16848 stevensc 13638
 
16825 efrain 13639
  .pe-xl-0 {
13640
    padding-right: 0 !important;
13641
  }
16848 stevensc 13642
 
16825 efrain 13643
  .pe-xl-1 {
13644
    padding-right: 0.25rem !important;
13645
  }
16848 stevensc 13646
 
16825 efrain 13647
  .pe-xl-2 {
13648
    padding-right: 0.5rem !important;
13649
  }
16848 stevensc 13650
 
16825 efrain 13651
  .pe-xl-3 {
13652
    padding-right: 1rem !important;
13653
  }
16848 stevensc 13654
 
16825 efrain 13655
  .pe-xl-4 {
13656
    padding-right: 1.5rem !important;
13657
  }
16848 stevensc 13658
 
16825 efrain 13659
  .pe-xl-5 {
13660
    padding-right: 3rem !important;
13661
  }
16848 stevensc 13662
 
16825 efrain 13663
  .pe-xl-6 {
13664
    padding-right: 4.5rem !important;
13665
  }
16848 stevensc 13666
 
16825 efrain 13667
  .pe-xl-7 {
13668
    padding-right: 6rem !important;
13669
  }
16848 stevensc 13670
 
16825 efrain 13671
  .pb-xl-0 {
13672
    padding-bottom: 0 !important;
13673
  }
16848 stevensc 13674
 
16825 efrain 13675
  .pb-xl-1 {
13676
    padding-bottom: 0.25rem !important;
13677
  }
16848 stevensc 13678
 
16825 efrain 13679
  .pb-xl-2 {
13680
    padding-bottom: 0.5rem !important;
13681
  }
16848 stevensc 13682
 
16825 efrain 13683
  .pb-xl-3 {
13684
    padding-bottom: 1rem !important;
13685
  }
16848 stevensc 13686
 
16825 efrain 13687
  .pb-xl-4 {
13688
    padding-bottom: 1.5rem !important;
13689
  }
16848 stevensc 13690
 
16825 efrain 13691
  .pb-xl-5 {
13692
    padding-bottom: 3rem !important;
13693
  }
16848 stevensc 13694
 
16825 efrain 13695
  .pb-xl-6 {
13696
    padding-bottom: 4.5rem !important;
13697
  }
16848 stevensc 13698
 
16825 efrain 13699
  .pb-xl-7 {
13700
    padding-bottom: 6rem !important;
13701
  }
16848 stevensc 13702
 
16825 efrain 13703
  .ps-xl-0 {
13704
    padding-left: 0 !important;
13705
  }
16848 stevensc 13706
 
16825 efrain 13707
  .ps-xl-1 {
13708
    padding-left: 0.25rem !important;
13709
  }
16848 stevensc 13710
 
16825 efrain 13711
  .ps-xl-2 {
13712
    padding-left: 0.5rem !important;
13713
  }
16848 stevensc 13714
 
16825 efrain 13715
  .ps-xl-3 {
13716
    padding-left: 1rem !important;
13717
  }
16848 stevensc 13718
 
16825 efrain 13719
  .ps-xl-4 {
13720
    padding-left: 1.5rem !important;
13721
  }
16848 stevensc 13722
 
16825 efrain 13723
  .ps-xl-5 {
13724
    padding-left: 3rem !important;
13725
  }
16848 stevensc 13726
 
16825 efrain 13727
  .ps-xl-6 {
13728
    padding-left: 4.5rem !important;
13729
  }
16848 stevensc 13730
 
16825 efrain 13731
  .ps-xl-7 {
13732
    padding-left: 6rem !important;
13733
  }
16848 stevensc 13734
 
16825 efrain 13735
  .gap-xl-0 {
13736
    gap: 0 !important;
13737
  }
16848 stevensc 13738
 
16825 efrain 13739
  .gap-xl-1 {
13740
    gap: 0.25rem !important;
13741
  }
16848 stevensc 13742
 
16825 efrain 13743
  .gap-xl-2 {
13744
    gap: 0.5rem !important;
13745
  }
16848 stevensc 13746
 
16825 efrain 13747
  .gap-xl-3 {
13748
    gap: 1rem !important;
13749
  }
16848 stevensc 13750
 
16825 efrain 13751
  .gap-xl-4 {
13752
    gap: 1.5rem !important;
13753
  }
16848 stevensc 13754
 
16825 efrain 13755
  .gap-xl-5 {
13756
    gap: 3rem !important;
13757
  }
16848 stevensc 13758
 
16825 efrain 13759
  .gap-xl-6 {
13760
    gap: 4.5rem !important;
13761
  }
16848 stevensc 13762
 
16825 efrain 13763
  .gap-xl-7 {
13764
    gap: 6rem !important;
13765
  }
16848 stevensc 13766
 
16825 efrain 13767
  .text-xl-start {
13768
    text-align: left !important;
13769
  }
16848 stevensc 13770
 
16825 efrain 13771
  .text-xl-end {
13772
    text-align: right !important;
13773
  }
16848 stevensc 13774
 
16825 efrain 13775
  .text-xl-center {
13776
    text-align: center !important;
13777
  }
13778
}
16848 stevensc 13779
 
16825 efrain 13780
@media (min-width: 1400px) {
13781
  .float-xxl-start {
13782
    float: left !important;
13783
  }
16848 stevensc 13784
 
16825 efrain 13785
  .float-xxl-end {
13786
    float: right !important;
13787
  }
16848 stevensc 13788
 
16825 efrain 13789
  .float-xxl-none {
13790
    float: none !important;
13791
  }
16848 stevensc 13792
 
16825 efrain 13793
  .d-xxl-inline {
13794
    display: inline !important;
13795
  }
16848 stevensc 13796
 
16825 efrain 13797
  .d-xxl-inline-block {
13798
    display: inline-block !important;
13799
  }
16848 stevensc 13800
 
16825 efrain 13801
  .d-xxl-block {
13802
    display: block !important;
13803
  }
16848 stevensc 13804
 
16825 efrain 13805
  .d-xxl-grid {
13806
    display: grid !important;
13807
  }
16848 stevensc 13808
 
16825 efrain 13809
  .d-xxl-table {
13810
    display: table !important;
13811
  }
16848 stevensc 13812
 
16825 efrain 13813
  .d-xxl-table-row {
13814
    display: table-row !important;
13815
  }
16848 stevensc 13816
 
16825 efrain 13817
  .d-xxl-table-cell {
13818
    display: table-cell !important;
13819
  }
16848 stevensc 13820
 
16825 efrain 13821
  .d-xxl-flex {
13822
    display: flex !important;
13823
  }
16848 stevensc 13824
 
16825 efrain 13825
  .d-xxl-inline-flex {
13826
    display: inline-flex !important;
13827
  }
16848 stevensc 13828
 
16825 efrain 13829
  .d-xxl-none {
13830
    display: none !important;
13831
  }
16848 stevensc 13832
 
16825 efrain 13833
  .border-xxl {
13834
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13835
  }
16848 stevensc 13836
 
16825 efrain 13837
  .border-xxl-0 {
13838
    border: 0 !important;
13839
  }
16848 stevensc 13840
 
16825 efrain 13841
  .border-top-xxl {
13842
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13843
  }
16848 stevensc 13844
 
16825 efrain 13845
  .border-top-xxl-0 {
13846
    border-top: 0 !important;
13847
  }
16848 stevensc 13848
 
16825 efrain 13849
  .border-end-xxl {
13850
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13851
  }
16848 stevensc 13852
 
16825 efrain 13853
  .border-end-xxl-0 {
13854
    border-right: 0 !important;
13855
  }
16848 stevensc 13856
 
16825 efrain 13857
  .border-bottom-xxl {
13858
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13859
  }
16848 stevensc 13860
 
16825 efrain 13861
  .border-bottom-xxl-0 {
13862
    border-bottom: 0 !important;
13863
  }
16848 stevensc 13864
 
16825 efrain 13865
  .border-start-xxl {
13866
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13867
  }
16848 stevensc 13868
 
16825 efrain 13869
  .border-start-xxl-0 {
13870
    border-left: 0 !important;
13871
  }
16848 stevensc 13872
 
16825 efrain 13873
  .flex-xxl-fill {
13874
    flex: 1 1 auto !important;
13875
  }
16848 stevensc 13876
 
16825 efrain 13877
  .flex-xxl-row {
13878
    flex-direction: row !important;
13879
  }
16848 stevensc 13880
 
16825 efrain 13881
  .flex-xxl-column {
13882
    flex-direction: column !important;
13883
  }
16848 stevensc 13884
 
16825 efrain 13885
  .flex-xxl-row-reverse {
13886
    flex-direction: row-reverse !important;
13887
  }
16848 stevensc 13888
 
16825 efrain 13889
  .flex-xxl-column-reverse {
13890
    flex-direction: column-reverse !important;
13891
  }
16848 stevensc 13892
 
16825 efrain 13893
  .flex-xxl-grow-0 {
13894
    flex-grow: 0 !important;
13895
  }
16848 stevensc 13896
 
16825 efrain 13897
  .flex-xxl-grow-1 {
13898
    flex-grow: 1 !important;
13899
  }
16848 stevensc 13900
 
16825 efrain 13901
  .flex-xxl-shrink-0 {
13902
    flex-shrink: 0 !important;
13903
  }
16848 stevensc 13904
 
16825 efrain 13905
  .flex-xxl-shrink-1 {
13906
    flex-shrink: 1 !important;
13907
  }
16848 stevensc 13908
 
16825 efrain 13909
  .flex-xxl-wrap {
13910
    flex-wrap: wrap !important;
13911
  }
16848 stevensc 13912
 
16825 efrain 13913
  .flex-xxl-nowrap {
13914
    flex-wrap: nowrap !important;
13915
  }
16848 stevensc 13916
 
16825 efrain 13917
  .flex-xxl-wrap-reverse {
13918
    flex-wrap: wrap-reverse !important;
13919
  }
16848 stevensc 13920
 
16825 efrain 13921
  .justify-content-xxl-start {
13922
    justify-content: flex-start !important;
13923
  }
16848 stevensc 13924
 
16825 efrain 13925
  .justify-content-xxl-end {
13926
    justify-content: flex-end !important;
13927
  }
16848 stevensc 13928
 
16825 efrain 13929
  .justify-content-xxl-center {
13930
    justify-content: center !important;
13931
  }
16848 stevensc 13932
 
16825 efrain 13933
  .justify-content-xxl-between {
13934
    justify-content: space-between !important;
13935
  }
16848 stevensc 13936
 
16825 efrain 13937
  .justify-content-xxl-around {
13938
    justify-content: space-around !important;
13939
  }
16848 stevensc 13940
 
16825 efrain 13941
  .justify-content-xxl-evenly {
13942
    justify-content: space-evenly !important;
13943
  }
16848 stevensc 13944
 
16825 efrain 13945
  .align-items-xxl-start {
13946
    align-items: flex-start !important;
13947
  }
16848 stevensc 13948
 
16825 efrain 13949
  .align-items-xxl-end {
13950
    align-items: flex-end !important;
13951
  }
16848 stevensc 13952
 
16825 efrain 13953
  .align-items-xxl-center {
13954
    align-items: center !important;
13955
  }
16848 stevensc 13956
 
16825 efrain 13957
  .align-items-xxl-baseline {
13958
    align-items: baseline !important;
13959
  }
16848 stevensc 13960
 
16825 efrain 13961
  .align-items-xxl-stretch {
13962
    align-items: stretch !important;
13963
  }
16848 stevensc 13964
 
16825 efrain 13965
  .align-content-xxl-start {
13966
    align-content: flex-start !important;
13967
  }
16848 stevensc 13968
 
16825 efrain 13969
  .align-content-xxl-end {
13970
    align-content: flex-end !important;
13971
  }
16848 stevensc 13972
 
16825 efrain 13973
  .align-content-xxl-center {
13974
    align-content: center !important;
13975
  }
16848 stevensc 13976
 
16825 efrain 13977
  .align-content-xxl-between {
13978
    align-content: space-between !important;
13979
  }
16848 stevensc 13980
 
16825 efrain 13981
  .align-content-xxl-around {
13982
    align-content: space-around !important;
13983
  }
16848 stevensc 13984
 
16825 efrain 13985
  .align-content-xxl-stretch {
13986
    align-content: stretch !important;
13987
  }
16848 stevensc 13988
 
16825 efrain 13989
  .align-self-xxl-auto {
13990
    align-self: auto !important;
13991
  }
16848 stevensc 13992
 
16825 efrain 13993
  .align-self-xxl-start {
13994
    align-self: flex-start !important;
13995
  }
16848 stevensc 13996
 
16825 efrain 13997
  .align-self-xxl-end {
13998
    align-self: flex-end !important;
13999
  }
16848 stevensc 14000
 
16825 efrain 14001
  .align-self-xxl-center {
14002
    align-self: center !important;
14003
  }
16848 stevensc 14004
 
16825 efrain 14005
  .align-self-xxl-baseline {
14006
    align-self: baseline !important;
14007
  }
16848 stevensc 14008
 
16825 efrain 14009
  .align-self-xxl-stretch {
14010
    align-self: stretch !important;
14011
  }
16848 stevensc 14012
 
16825 efrain 14013
  .order-xxl-first {
14014
    order: -1 !important;
14015
  }
16848 stevensc 14016
 
16825 efrain 14017
  .order-xxl-0 {
14018
    order: 0 !important;
14019
  }
16848 stevensc 14020
 
16825 efrain 14021
  .order-xxl-1 {
14022
    order: 1 !important;
14023
  }
16848 stevensc 14024
 
16825 efrain 14025
  .order-xxl-2 {
14026
    order: 2 !important;
14027
  }
16848 stevensc 14028
 
16825 efrain 14029
  .order-xxl-3 {
14030
    order: 3 !important;
14031
  }
16848 stevensc 14032
 
16825 efrain 14033
  .order-xxl-4 {
14034
    order: 4 !important;
14035
  }
16848 stevensc 14036
 
16825 efrain 14037
  .order-xxl-5 {
14038
    order: 5 !important;
14039
  }
16848 stevensc 14040
 
16825 efrain 14041
  .order-xxl-last {
14042
    order: 6 !important;
14043
  }
16848 stevensc 14044
 
16825 efrain 14045
  .m-xxl-0 {
14046
    margin: 0 !important;
14047
  }
16848 stevensc 14048
 
16825 efrain 14049
  .m-xxl-1 {
14050
    margin: 0.25rem !important;
14051
  }
16848 stevensc 14052
 
16825 efrain 14053
  .m-xxl-2 {
14054
    margin: 0.5rem !important;
14055
  }
16848 stevensc 14056
 
16825 efrain 14057
  .m-xxl-3 {
14058
    margin: 1rem !important;
14059
  }
16848 stevensc 14060
 
16825 efrain 14061
  .m-xxl-4 {
14062
    margin: 1.5rem !important;
14063
  }
16848 stevensc 14064
 
16825 efrain 14065
  .m-xxl-5 {
14066
    margin: 3rem !important;
14067
  }
16848 stevensc 14068
 
16825 efrain 14069
  .m-xxl-6 {
14070
    margin: 4.5rem !important;
14071
  }
16848 stevensc 14072
 
16825 efrain 14073
  .m-xxl-7 {
14074
    margin: 6rem !important;
14075
  }
16848 stevensc 14076
 
16825 efrain 14077
  .m-xxl-auto {
14078
    margin: auto !important;
14079
  }
16848 stevensc 14080
 
16825 efrain 14081
  .mx-xxl-0 {
14082
    margin-right: 0 !important;
14083
    margin-left: 0 !important;
14084
  }
16848 stevensc 14085
 
16825 efrain 14086
  .mx-xxl-1 {
14087
    margin-right: 0.25rem !important;
14088
    margin-left: 0.25rem !important;
14089
  }
16848 stevensc 14090
 
16825 efrain 14091
  .mx-xxl-2 {
14092
    margin-right: 0.5rem !important;
14093
    margin-left: 0.5rem !important;
14094
  }
16848 stevensc 14095
 
16825 efrain 14096
  .mx-xxl-3 {
14097
    margin-right: 1rem !important;
14098
    margin-left: 1rem !important;
14099
  }
16848 stevensc 14100
 
16825 efrain 14101
  .mx-xxl-4 {
14102
    margin-right: 1.5rem !important;
14103
    margin-left: 1.5rem !important;
14104
  }
16848 stevensc 14105
 
16825 efrain 14106
  .mx-xxl-5 {
14107
    margin-right: 3rem !important;
14108
    margin-left: 3rem !important;
14109
  }
16848 stevensc 14110
 
16825 efrain 14111
  .mx-xxl-6 {
14112
    margin-right: 4.5rem !important;
14113
    margin-left: 4.5rem !important;
14114
  }
16848 stevensc 14115
 
16825 efrain 14116
  .mx-xxl-7 {
14117
    margin-right: 6rem !important;
14118
    margin-left: 6rem !important;
14119
  }
16848 stevensc 14120
 
16825 efrain 14121
  .mx-xxl-auto {
14122
    margin-right: auto !important;
14123
    margin-left: auto !important;
14124
  }
16848 stevensc 14125
 
16825 efrain 14126
  .my-xxl-0 {
14127
    margin-top: 0 !important;
14128
    margin-bottom: 0 !important;
14129
  }
16848 stevensc 14130
 
16825 efrain 14131
  .my-xxl-1 {
14132
    margin-top: 0.25rem !important;
14133
    margin-bottom: 0.25rem !important;
14134
  }
16848 stevensc 14135
 
16825 efrain 14136
  .my-xxl-2 {
14137
    margin-top: 0.5rem !important;
14138
    margin-bottom: 0.5rem !important;
14139
  }
16848 stevensc 14140
 
16825 efrain 14141
  .my-xxl-3 {
14142
    margin-top: 1rem !important;
14143
    margin-bottom: 1rem !important;
14144
  }
16848 stevensc 14145
 
16825 efrain 14146
  .my-xxl-4 {
14147
    margin-top: 1.5rem !important;
14148
    margin-bottom: 1.5rem !important;
14149
  }
16848 stevensc 14150
 
16825 efrain 14151
  .my-xxl-5 {
14152
    margin-top: 3rem !important;
14153
    margin-bottom: 3rem !important;
14154
  }
16848 stevensc 14155
 
16825 efrain 14156
  .my-xxl-6 {
14157
    margin-top: 4.5rem !important;
14158
    margin-bottom: 4.5rem !important;
14159
  }
16848 stevensc 14160
 
16825 efrain 14161
  .my-xxl-7 {
14162
    margin-top: 6rem !important;
14163
    margin-bottom: 6rem !important;
14164
  }
16848 stevensc 14165
 
16825 efrain 14166
  .my-xxl-auto {
14167
    margin-top: auto !important;
14168
    margin-bottom: auto !important;
14169
  }
16848 stevensc 14170
 
16825 efrain 14171
  .mt-xxl-0 {
14172
    margin-top: 0 !important;
14173
  }
16848 stevensc 14174
 
16825 efrain 14175
  .mt-xxl-1 {
14176
    margin-top: 0.25rem !important;
14177
  }
16848 stevensc 14178
 
16825 efrain 14179
  .mt-xxl-2 {
14180
    margin-top: 0.5rem !important;
14181
  }
16848 stevensc 14182
 
16825 efrain 14183
  .mt-xxl-3 {
14184
    margin-top: 1rem !important;
14185
  }
16848 stevensc 14186
 
16825 efrain 14187
  .mt-xxl-4 {
14188
    margin-top: 1.5rem !important;
14189
  }
16848 stevensc 14190
 
16825 efrain 14191
  .mt-xxl-5 {
14192
    margin-top: 3rem !important;
14193
  }
16848 stevensc 14194
 
16825 efrain 14195
  .mt-xxl-6 {
14196
    margin-top: 4.5rem !important;
14197
  }
16848 stevensc 14198
 
16825 efrain 14199
  .mt-xxl-7 {
14200
    margin-top: 6rem !important;
14201
  }
16848 stevensc 14202
 
16825 efrain 14203
  .mt-xxl-auto {
14204
    margin-top: auto !important;
14205
  }
16848 stevensc 14206
 
16825 efrain 14207
  .me-xxl-0 {
14208
    margin-right: 0 !important;
14209
  }
16848 stevensc 14210
 
16825 efrain 14211
  .me-xxl-1 {
14212
    margin-right: 0.25rem !important;
14213
  }
16848 stevensc 14214
 
16825 efrain 14215
  .me-xxl-2 {
14216
    margin-right: 0.5rem !important;
14217
  }
16848 stevensc 14218
 
16825 efrain 14219
  .me-xxl-3 {
14220
    margin-right: 1rem !important;
14221
  }
16848 stevensc 14222
 
16825 efrain 14223
  .me-xxl-4 {
14224
    margin-right: 1.5rem !important;
14225
  }
16848 stevensc 14226
 
16825 efrain 14227
  .me-xxl-5 {
14228
    margin-right: 3rem !important;
14229
  }
16848 stevensc 14230
 
16825 efrain 14231
  .me-xxl-6 {
14232
    margin-right: 4.5rem !important;
14233
  }
16848 stevensc 14234
 
16825 efrain 14235
  .me-xxl-7 {
14236
    margin-right: 6rem !important;
14237
  }
16848 stevensc 14238
 
16825 efrain 14239
  .me-xxl-auto {
14240
    margin-right: auto !important;
14241
  }
16848 stevensc 14242
 
16825 efrain 14243
  .mb-xxl-0 {
14244
    margin-bottom: 0 !important;
14245
  }
16848 stevensc 14246
 
16825 efrain 14247
  .mb-xxl-1 {
14248
    margin-bottom: 0.25rem !important;
14249
  }
16848 stevensc 14250
 
16825 efrain 14251
  .mb-xxl-2 {
14252
    margin-bottom: 0.5rem !important;
14253
  }
16848 stevensc 14254
 
16825 efrain 14255
  .mb-xxl-3 {
14256
    margin-bottom: 1rem !important;
14257
  }
16848 stevensc 14258
 
16825 efrain 14259
  .mb-xxl-4 {
14260
    margin-bottom: 1.5rem !important;
14261
  }
16848 stevensc 14262
 
16825 efrain 14263
  .mb-xxl-5 {
14264
    margin-bottom: 3rem !important;
14265
  }
16848 stevensc 14266
 
16825 efrain 14267
  .mb-xxl-6 {
14268
    margin-bottom: 4.5rem !important;
14269
  }
16848 stevensc 14270
 
16825 efrain 14271
  .mb-xxl-7 {
14272
    margin-bottom: 6rem !important;
14273
  }
16848 stevensc 14274
 
16825 efrain 14275
  .mb-xxl-auto {
14276
    margin-bottom: auto !important;
14277
  }
16848 stevensc 14278
 
16825 efrain 14279
  .ms-xxl-0 {
14280
    margin-left: 0 !important;
14281
  }
16848 stevensc 14282
 
16825 efrain 14283
  .ms-xxl-1 {
14284
    margin-left: 0.25rem !important;
14285
  }
16848 stevensc 14286
 
16825 efrain 14287
  .ms-xxl-2 {
14288
    margin-left: 0.5rem !important;
14289
  }
16848 stevensc 14290
 
16825 efrain 14291
  .ms-xxl-3 {
14292
    margin-left: 1rem !important;
14293
  }
16848 stevensc 14294
 
16825 efrain 14295
  .ms-xxl-4 {
14296
    margin-left: 1.5rem !important;
14297
  }
16848 stevensc 14298
 
16825 efrain 14299
  .ms-xxl-5 {
14300
    margin-left: 3rem !important;
14301
  }
16848 stevensc 14302
 
16825 efrain 14303
  .ms-xxl-6 {
14304
    margin-left: 4.5rem !important;
14305
  }
16848 stevensc 14306
 
16825 efrain 14307
  .ms-xxl-7 {
14308
    margin-left: 6rem !important;
14309
  }
16848 stevensc 14310
 
16825 efrain 14311
  .ms-xxl-auto {
14312
    margin-left: auto !important;
14313
  }
16848 stevensc 14314
 
16825 efrain 14315
  .m-xxl-n1 {
14316
    margin: -0.25rem !important;
14317
  }
16848 stevensc 14318
 
16825 efrain 14319
  .m-xxl-n2 {
14320
    margin: -0.5rem !important;
14321
  }
16848 stevensc 14322
 
16825 efrain 14323
  .m-xxl-n3 {
14324
    margin: -1rem !important;
14325
  }
16848 stevensc 14326
 
16825 efrain 14327
  .m-xxl-n4 {
14328
    margin: -1.5rem !important;
14329
  }
16848 stevensc 14330
 
16825 efrain 14331
  .m-xxl-n5 {
14332
    margin: -3rem !important;
14333
  }
16848 stevensc 14334
 
16825 efrain 14335
  .m-xxl-n6 {
14336
    margin: -4.5rem !important;
14337
  }
16848 stevensc 14338
 
16825 efrain 14339
  .m-xxl-n7 {
14340
    margin: -6rem !important;
14341
  }
16848 stevensc 14342
 
16825 efrain 14343
  .mx-xxl-n1 {
14344
    margin-right: -0.25rem !important;
14345
    margin-left: -0.25rem !important;
14346
  }
16848 stevensc 14347
 
16825 efrain 14348
  .mx-xxl-n2 {
14349
    margin-right: -0.5rem !important;
14350
    margin-left: -0.5rem !important;
14351
  }
16848 stevensc 14352
 
16825 efrain 14353
  .mx-xxl-n3 {
14354
    margin-right: -1rem !important;
14355
    margin-left: -1rem !important;
14356
  }
16848 stevensc 14357
 
16825 efrain 14358
  .mx-xxl-n4 {
14359
    margin-right: -1.5rem !important;
14360
    margin-left: -1.5rem !important;
14361
  }
16848 stevensc 14362
 
16825 efrain 14363
  .mx-xxl-n5 {
14364
    margin-right: -3rem !important;
14365
    margin-left: -3rem !important;
14366
  }
16848 stevensc 14367
 
16825 efrain 14368
  .mx-xxl-n6 {
14369
    margin-right: -4.5rem !important;
14370
    margin-left: -4.5rem !important;
14371
  }
16848 stevensc 14372
 
16825 efrain 14373
  .mx-xxl-n7 {
14374
    margin-right: -6rem !important;
14375
    margin-left: -6rem !important;
14376
  }
16848 stevensc 14377
 
16825 efrain 14378
  .my-xxl-n1 {
14379
    margin-top: -0.25rem !important;
14380
    margin-bottom: -0.25rem !important;
14381
  }
16848 stevensc 14382
 
16825 efrain 14383
  .my-xxl-n2 {
14384
    margin-top: -0.5rem !important;
14385
    margin-bottom: -0.5rem !important;
14386
  }
16848 stevensc 14387
 
16825 efrain 14388
  .my-xxl-n3 {
14389
    margin-top: -1rem !important;
14390
    margin-bottom: -1rem !important;
14391
  }
16848 stevensc 14392
 
16825 efrain 14393
  .my-xxl-n4 {
14394
    margin-top: -1.5rem !important;
14395
    margin-bottom: -1.5rem !important;
14396
  }
16848 stevensc 14397
 
16825 efrain 14398
  .my-xxl-n5 {
14399
    margin-top: -3rem !important;
14400
    margin-bottom: -3rem !important;
14401
  }
16848 stevensc 14402
 
16825 efrain 14403
  .my-xxl-n6 {
14404
    margin-top: -4.5rem !important;
14405
    margin-bottom: -4.5rem !important;
14406
  }
16848 stevensc 14407
 
16825 efrain 14408
  .my-xxl-n7 {
14409
    margin-top: -6rem !important;
14410
    margin-bottom: -6rem !important;
14411
  }
16848 stevensc 14412
 
16825 efrain 14413
  .mt-xxl-n1 {
14414
    margin-top: -0.25rem !important;
14415
  }
16848 stevensc 14416
 
16825 efrain 14417
  .mt-xxl-n2 {
14418
    margin-top: -0.5rem !important;
14419
  }
16848 stevensc 14420
 
16825 efrain 14421
  .mt-xxl-n3 {
14422
    margin-top: -1rem !important;
14423
  }
16848 stevensc 14424
 
16825 efrain 14425
  .mt-xxl-n4 {
14426
    margin-top: -1.5rem !important;
14427
  }
16848 stevensc 14428
 
16825 efrain 14429
  .mt-xxl-n5 {
14430
    margin-top: -3rem !important;
14431
  }
16848 stevensc 14432
 
16825 efrain 14433
  .mt-xxl-n6 {
14434
    margin-top: -4.5rem !important;
14435
  }
16848 stevensc 14436
 
16825 efrain 14437
  .mt-xxl-n7 {
14438
    margin-top: -6rem !important;
14439
  }
16848 stevensc 14440
 
16825 efrain 14441
  .me-xxl-n1 {
14442
    margin-right: -0.25rem !important;
14443
  }
16848 stevensc 14444
 
16825 efrain 14445
  .me-xxl-n2 {
14446
    margin-right: -0.5rem !important;
14447
  }
16848 stevensc 14448
 
16825 efrain 14449
  .me-xxl-n3 {
14450
    margin-right: -1rem !important;
14451
  }
16848 stevensc 14452
 
16825 efrain 14453
  .me-xxl-n4 {
14454
    margin-right: -1.5rem !important;
14455
  }
16848 stevensc 14456
 
16825 efrain 14457
  .me-xxl-n5 {
14458
    margin-right: -3rem !important;
14459
  }
16848 stevensc 14460
 
16825 efrain 14461
  .me-xxl-n6 {
14462
    margin-right: -4.5rem !important;
14463
  }
16848 stevensc 14464
 
16825 efrain 14465
  .me-xxl-n7 {
14466
    margin-right: -6rem !important;
14467
  }
16848 stevensc 14468
 
16825 efrain 14469
  .mb-xxl-n1 {
14470
    margin-bottom: -0.25rem !important;
14471
  }
16848 stevensc 14472
 
16825 efrain 14473
  .mb-xxl-n2 {
14474
    margin-bottom: -0.5rem !important;
14475
  }
16848 stevensc 14476
 
16825 efrain 14477
  .mb-xxl-n3 {
14478
    margin-bottom: -1rem !important;
14479
  }
16848 stevensc 14480
 
16825 efrain 14481
  .mb-xxl-n4 {
14482
    margin-bottom: -1.5rem !important;
14483
  }
16848 stevensc 14484
 
16825 efrain 14485
  .mb-xxl-n5 {
14486
    margin-bottom: -3rem !important;
14487
  }
16848 stevensc 14488
 
16825 efrain 14489
  .mb-xxl-n6 {
14490
    margin-bottom: -4.5rem !important;
14491
  }
16848 stevensc 14492
 
16825 efrain 14493
  .mb-xxl-n7 {
14494
    margin-bottom: -6rem !important;
14495
  }
16848 stevensc 14496
 
16825 efrain 14497
  .ms-xxl-n1 {
14498
    margin-left: -0.25rem !important;
14499
  }
16848 stevensc 14500
 
16825 efrain 14501
  .ms-xxl-n2 {
14502
    margin-left: -0.5rem !important;
14503
  }
16848 stevensc 14504
 
16825 efrain 14505
  .ms-xxl-n3 {
14506
    margin-left: -1rem !important;
14507
  }
16848 stevensc 14508
 
16825 efrain 14509
  .ms-xxl-n4 {
14510
    margin-left: -1.5rem !important;
14511
  }
16848 stevensc 14512
 
16825 efrain 14513
  .ms-xxl-n5 {
14514
    margin-left: -3rem !important;
14515
  }
16848 stevensc 14516
 
16825 efrain 14517
  .ms-xxl-n6 {
14518
    margin-left: -4.5rem !important;
14519
  }
16848 stevensc 14520
 
16825 efrain 14521
  .ms-xxl-n7 {
14522
    margin-left: -6rem !important;
14523
  }
16848 stevensc 14524
 
16825 efrain 14525
  .p-xxl-0 {
14526
    padding: 0 !important;
14527
  }
16848 stevensc 14528
 
16825 efrain 14529
  .p-xxl-1 {
14530
    padding: 0.25rem !important;
14531
  }
16848 stevensc 14532
 
16825 efrain 14533
  .p-xxl-2 {
14534
    padding: 0.5rem !important;
14535
  }
16848 stevensc 14536
 
16825 efrain 14537
  .p-xxl-3 {
14538
    padding: 1rem !important;
14539
  }
16848 stevensc 14540
 
16825 efrain 14541
  .p-xxl-4 {
14542
    padding: 1.5rem !important;
14543
  }
16848 stevensc 14544
 
16825 efrain 14545
  .p-xxl-5 {
14546
    padding: 3rem !important;
14547
  }
16848 stevensc 14548
 
16825 efrain 14549
  .p-xxl-6 {
14550
    padding: 4.5rem !important;
14551
  }
16848 stevensc 14552
 
16825 efrain 14553
  .p-xxl-7 {
14554
    padding: 6rem !important;
14555
  }
16848 stevensc 14556
 
16825 efrain 14557
  .px-xxl-0 {
14558
    padding-right: 0 !important;
14559
    padding-left: 0 !important;
14560
  }
16848 stevensc 14561
 
16825 efrain 14562
  .px-xxl-1 {
14563
    padding-right: 0.25rem !important;
14564
    padding-left: 0.25rem !important;
14565
  }
16848 stevensc 14566
 
16825 efrain 14567
  .px-xxl-2 {
14568
    padding-right: 0.5rem !important;
14569
    padding-left: 0.5rem !important;
14570
  }
16848 stevensc 14571
 
16825 efrain 14572
  .px-xxl-3 {
14573
    padding-right: 1rem !important;
14574
    padding-left: 1rem !important;
14575
  }
16848 stevensc 14576
 
16825 efrain 14577
  .px-xxl-4 {
14578
    padding-right: 1.5rem !important;
14579
    padding-left: 1.5rem !important;
14580
  }
16848 stevensc 14581
 
16825 efrain 14582
  .px-xxl-5 {
14583
    padding-right: 3rem !important;
14584
    padding-left: 3rem !important;
14585
  }
16848 stevensc 14586
 
16825 efrain 14587
  .px-xxl-6 {
14588
    padding-right: 4.5rem !important;
14589
    padding-left: 4.5rem !important;
14590
  }
16848 stevensc 14591
 
16825 efrain 14592
  .px-xxl-7 {
14593
    padding-right: 6rem !important;
14594
    padding-left: 6rem !important;
14595
  }
16848 stevensc 14596
 
16825 efrain 14597
  .py-xxl-0 {
14598
    padding-top: 0 !important;
14599
    padding-bottom: 0 !important;
14600
  }
16848 stevensc 14601
 
16825 efrain 14602
  .py-xxl-1 {
14603
    padding-top: 0.25rem !important;
14604
    padding-bottom: 0.25rem !important;
14605
  }
16848 stevensc 14606
 
16825 efrain 14607
  .py-xxl-2 {
14608
    padding-top: 0.5rem !important;
14609
    padding-bottom: 0.5rem !important;
14610
  }
16848 stevensc 14611
 
16825 efrain 14612
  .py-xxl-3 {
14613
    padding-top: 1rem !important;
14614
    padding-bottom: 1rem !important;
14615
  }
16848 stevensc 14616
 
16825 efrain 14617
  .py-xxl-4 {
14618
    padding-top: 1.5rem !important;
14619
    padding-bottom: 1.5rem !important;
14620
  }
16848 stevensc 14621
 
16825 efrain 14622
  .py-xxl-5 {
14623
    padding-top: 3rem !important;
14624
    padding-bottom: 3rem !important;
14625
  }
16848 stevensc 14626
 
16825 efrain 14627
  .py-xxl-6 {
14628
    padding-top: 4.5rem !important;
14629
    padding-bottom: 4.5rem !important;
14630
  }
16848 stevensc 14631
 
16825 efrain 14632
  .py-xxl-7 {
14633
    padding-top: 6rem !important;
14634
    padding-bottom: 6rem !important;
14635
  }
16848 stevensc 14636
 
16825 efrain 14637
  .pt-xxl-0 {
14638
    padding-top: 0 !important;
14639
  }
16848 stevensc 14640
 
16825 efrain 14641
  .pt-xxl-1 {
14642
    padding-top: 0.25rem !important;
14643
  }
16848 stevensc 14644
 
16825 efrain 14645
  .pt-xxl-2 {
14646
    padding-top: 0.5rem !important;
14647
  }
16848 stevensc 14648
 
16825 efrain 14649
  .pt-xxl-3 {
14650
    padding-top: 1rem !important;
14651
  }
16848 stevensc 14652
 
16825 efrain 14653
  .pt-xxl-4 {
14654
    padding-top: 1.5rem !important;
14655
  }
16848 stevensc 14656
 
16825 efrain 14657
  .pt-xxl-5 {
14658
    padding-top: 3rem !important;
14659
  }
16848 stevensc 14660
 
16825 efrain 14661
  .pt-xxl-6 {
14662
    padding-top: 4.5rem !important;
14663
  }
16848 stevensc 14664
 
16825 efrain 14665
  .pt-xxl-7 {
14666
    padding-top: 6rem !important;
14667
  }
16848 stevensc 14668
 
16825 efrain 14669
  .pe-xxl-0 {
14670
    padding-right: 0 !important;
14671
  }
16848 stevensc 14672
 
16825 efrain 14673
  .pe-xxl-1 {
14674
    padding-right: 0.25rem !important;
14675
  }
16848 stevensc 14676
 
16825 efrain 14677
  .pe-xxl-2 {
14678
    padding-right: 0.5rem !important;
14679
  }
16848 stevensc 14680
 
16825 efrain 14681
  .pe-xxl-3 {
14682
    padding-right: 1rem !important;
14683
  }
16848 stevensc 14684
 
16825 efrain 14685
  .pe-xxl-4 {
14686
    padding-right: 1.5rem !important;
14687
  }
16848 stevensc 14688
 
16825 efrain 14689
  .pe-xxl-5 {
14690
    padding-right: 3rem !important;
14691
  }
16848 stevensc 14692
 
16825 efrain 14693
  .pe-xxl-6 {
14694
    padding-right: 4.5rem !important;
14695
  }
16848 stevensc 14696
 
16825 efrain 14697
  .pe-xxl-7 {
14698
    padding-right: 6rem !important;
14699
  }
16848 stevensc 14700
 
16825 efrain 14701
  .pb-xxl-0 {
14702
    padding-bottom: 0 !important;
14703
  }
16848 stevensc 14704
 
16825 efrain 14705
  .pb-xxl-1 {
14706
    padding-bottom: 0.25rem !important;
14707
  }
16848 stevensc 14708
 
16825 efrain 14709
  .pb-xxl-2 {
14710
    padding-bottom: 0.5rem !important;
14711
  }
16848 stevensc 14712
 
16825 efrain 14713
  .pb-xxl-3 {
14714
    padding-bottom: 1rem !important;
14715
  }
16848 stevensc 14716
 
16825 efrain 14717
  .pb-xxl-4 {
14718
    padding-bottom: 1.5rem !important;
14719
  }
16848 stevensc 14720
 
16825 efrain 14721
  .pb-xxl-5 {
14722
    padding-bottom: 3rem !important;
14723
  }
16848 stevensc 14724
 
16825 efrain 14725
  .pb-xxl-6 {
14726
    padding-bottom: 4.5rem !important;
14727
  }
16848 stevensc 14728
 
16825 efrain 14729
  .pb-xxl-7 {
14730
    padding-bottom: 6rem !important;
14731
  }
16848 stevensc 14732
 
16825 efrain 14733
  .ps-xxl-0 {
14734
    padding-left: 0 !important;
14735
  }
16848 stevensc 14736
 
16825 efrain 14737
  .ps-xxl-1 {
14738
    padding-left: 0.25rem !important;
14739
  }
16848 stevensc 14740
 
16825 efrain 14741
  .ps-xxl-2 {
14742
    padding-left: 0.5rem !important;
14743
  }
16848 stevensc 14744
 
16825 efrain 14745
  .ps-xxl-3 {
14746
    padding-left: 1rem !important;
14747
  }
16848 stevensc 14748
 
16825 efrain 14749
  .ps-xxl-4 {
14750
    padding-left: 1.5rem !important;
14751
  }
16848 stevensc 14752
 
16825 efrain 14753
  .ps-xxl-5 {
14754
    padding-left: 3rem !important;
14755
  }
16848 stevensc 14756
 
16825 efrain 14757
  .ps-xxl-6 {
14758
    padding-left: 4.5rem !important;
14759
  }
16848 stevensc 14760
 
16825 efrain 14761
  .ps-xxl-7 {
14762
    padding-left: 6rem !important;
14763
  }
16848 stevensc 14764
 
16825 efrain 14765
  .gap-xxl-0 {
14766
    gap: 0 !important;
14767
  }
16848 stevensc 14768
 
16825 efrain 14769
  .gap-xxl-1 {
14770
    gap: 0.25rem !important;
14771
  }
16848 stevensc 14772
 
16825 efrain 14773
  .gap-xxl-2 {
14774
    gap: 0.5rem !important;
14775
  }
16848 stevensc 14776
 
16825 efrain 14777
  .gap-xxl-3 {
14778
    gap: 1rem !important;
14779
  }
16848 stevensc 14780
 
16825 efrain 14781
  .gap-xxl-4 {
14782
    gap: 1.5rem !important;
14783
  }
16848 stevensc 14784
 
16825 efrain 14785
  .gap-xxl-5 {
14786
    gap: 3rem !important;
14787
  }
16848 stevensc 14788
 
16825 efrain 14789
  .gap-xxl-6 {
14790
    gap: 4.5rem !important;
14791
  }
16848 stevensc 14792
 
16825 efrain 14793
  .gap-xxl-7 {
14794
    gap: 6rem !important;
14795
  }
16848 stevensc 14796
 
16825 efrain 14797
  .text-xxl-start {
14798
    text-align: left !important;
14799
  }
16848 stevensc 14800
 
16825 efrain 14801
  .text-xxl-end {
14802
    text-align: right !important;
14803
  }
16848 stevensc 14804
 
16825 efrain 14805
  .text-xxl-center {
14806
    text-align: center !important;
14807
  }
14808
}
16848 stevensc 14809
 
16825 efrain 14810
@media (min-width: 1200px) {
14811
  .fs-1 {
14812
    font-size: 2.5rem !important;
14813
  }
16848 stevensc 14814
 
16825 efrain 14815
  .fs-2 {
14816
    font-size: 2rem !important;
14817
  }
16848 stevensc 14818
 
16825 efrain 14819
  .fs-3 {
14820
    font-size: 1.5rem !important;
14821
  }
14822
}
16848 stevensc 14823
 
16825 efrain 14824
@media print {
14825
  .d-print-inline {
14826
    display: inline !important;
14827
  }
16848 stevensc 14828
 
16825 efrain 14829
  .d-print-inline-block {
14830
    display: inline-block !important;
14831
  }
16848 stevensc 14832
 
16825 efrain 14833
  .d-print-block {
14834
    display: block !important;
14835
  }
16848 stevensc 14836
 
16825 efrain 14837
  .d-print-grid {
14838
    display: grid !important;
14839
  }
16848 stevensc 14840
 
16825 efrain 14841
  .d-print-table {
14842
    display: table !important;
14843
  }
16848 stevensc 14844
 
16825 efrain 14845
  .d-print-table-row {
14846
    display: table-row !important;
14847
  }
16848 stevensc 14848
 
16825 efrain 14849
  .d-print-table-cell {
14850
    display: table-cell !important;
14851
  }
16848 stevensc 14852
 
16825 efrain 14853
  .d-print-flex {
14854
    display: flex !important;
14855
  }
16848 stevensc 14856
 
16825 efrain 14857
  .d-print-inline-flex {
14858
    display: inline-flex !important;
14859
  }
16848 stevensc 14860
 
16825 efrain 14861
  .d-print-none {
14862
    display: none !important;
14863
  }
14864
}
16848 stevensc 14865
 
16825 efrain 14866
@keyframes dropdownAnimation {
14867
  from {
14868
    opacity: 0;
14869
    transform: translate3d(0, 20px, 0);
14870
  }
16848 stevensc 14871
 
16825 efrain 14872
  to {
14873
    opacity: 1;
14874
    transform: none;
14875
    transform: translate3d(0, 0px, 0);
14876
  }
14877
}
16848 stevensc 14878
 
14879
.dropdownAnimation,
14880
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14881
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14882
  -webkit-animation-name: dropdownAnimation;
14883
  animation-name: dropdownAnimation;
14884
  -webkit-animation-duration: 0.2s;
14885
  animation-duration: 0.2s;
14886
  -webkit-animation-fill-mode: both;
14887
  animation-fill-mode: both;
14888
}
14889
 
14890
@keyframes fadeOut {
14891
  from {
14892
    opacity: 1;
14893
  }
16848 stevensc 14894
 
16825 efrain 14895
  to {
14896
    opacity: 0;
14897
  }
14898
}
16848 stevensc 14899
 
16825 efrain 14900
.fadeOut {
14901
  animation-name: fadeOUt;
14902
}
14903
 
14904
@keyframes fadeInUp {
14905
  from {
14906
    opacity: 0;
14907
    transform: translate3d(0, 100%, 0);
14908
  }
16848 stevensc 14909
 
16825 efrain 14910
  to {
14911
    opacity: 1;
14912
    transform: none;
14913
  }
14914
}
16848 stevensc 14915
 
16825 efrain 14916
.fadeInUp {
14917
  animation-name: fadeInUp;
14918
}
14919
 
16848 stevensc 14920
.infinite-spin,
14921
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14922
  animation-name: spin;
14923
  animation-duration: 3s;
14924
  animation-iteration-count: infinite;
14925
  animation-timing-function: linear;
14926
}
16848 stevensc 14927
 
16825 efrain 14928
@keyframes spin {
14929
  from {
14930
    transform: rotate(0deg);
14931
  }
16848 stevensc 14932
 
16825 efrain 14933
  to {
14934
    transform: rotate(360deg);
14935
  }
14936
}
14937
 
16848 stevensc 14938
.pulse,
14939
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14940
  animation-name: pulse;
14941
  animation-duration: 0.9s;
14942
  animation-iteration-count: infinite;
14943
  animation-timing-function: ease-out;
14944
}
16848 stevensc 14945
 
16825 efrain 14946
@keyframes pulse {
14947
  0% {
14948
    opacity: 1;
14949
    width: 7px;
14950
    height: 7px;
14951
    left: 0;
14952
    top: 0;
14953
  }
16848 stevensc 14954
 
16825 efrain 14955
  95% {
14956
    opacity: 0.1;
14957
    left: -10.5px;
14958
    top: -10.5px;
14959
    width: 28px;
14960
    height: 28px;
14961
  }
16848 stevensc 14962
 
16825 efrain 14963
  100% {
14964
    opacity: 0;
14965
    width: 7px;
14966
    height: 7px;
14967
    left: 0;
14968
    top: 0;
14969
  }
14970
}
14971
 
14972
.wd-5 {
14973
  width: 5px;
14974
}
14975
 
14976
.wd-5p {
14977
  width: 5%;
14978
}
14979
 
14980
.mx-wd-5p {
14981
  max-width: 5%;
14982
}
14983
 
14984
.mn-wd-5p {
14985
  min-width: 5%;
14986
}
14987
 
14988
.wd-5-f {
14989
  width: 5px !important;
14990
}
14991
 
14992
.wd-5p-f {
14993
  width: 5% !important;
14994
}
14995
 
14996
.mx-wd-5p-f {
14997
  max-width: 5% !important;
14998
}
14999
 
15000
.mn-wd-5p-f {
15001
  min-width: 5% !important;
15002
}
15003
 
15004
.wd-10 {
15005
  width: 10px;
15006
}
15007
 
15008
.wd-10p {
15009
  width: 10%;
15010
}
15011
 
15012
.mx-wd-10p {
15013
  max-width: 10%;
15014
}
15015
 
15016
.mn-wd-10p {
15017
  min-width: 10%;
15018
}
15019
 
15020
.wd-10-f {
15021
  width: 10px !important;
15022
}
15023
 
15024
.wd-10p-f {
15025
  width: 10% !important;
15026
}
15027
 
15028
.mx-wd-10p-f {
15029
  max-width: 10% !important;
15030
}
15031
 
15032
.mn-wd-10p-f {
15033
  min-width: 10% !important;
15034
}
15035
 
15036
.wd-15 {
15037
  width: 15px;
15038
}
15039
 
15040
.wd-15p {
15041
  width: 15%;
15042
}
15043
 
15044
.mx-wd-15p {
15045
  max-width: 15%;
15046
}
15047
 
15048
.mn-wd-15p {
15049
  min-width: 15%;
15050
}
15051
 
15052
.wd-15-f {
15053
  width: 15px !important;
15054
}
15055
 
15056
.wd-15p-f {
15057
  width: 15% !important;
15058
}
15059
 
15060
.mx-wd-15p-f {
15061
  max-width: 15% !important;
15062
}
15063
 
15064
.mn-wd-15p-f {
15065
  min-width: 15% !important;
15066
}
15067
 
15068
.wd-20 {
15069
  width: 20px;
15070
}
15071
 
15072
.wd-20p {
15073
  width: 20%;
15074
}
15075
 
15076
.mx-wd-20p {
15077
  max-width: 20%;
15078
}
15079
 
15080
.mn-wd-20p {
15081
  min-width: 20%;
15082
}
15083
 
15084
.wd-20-f {
15085
  width: 20px !important;
15086
}
15087
 
15088
.wd-20p-f {
15089
  width: 20% !important;
15090
}
15091
 
15092
.mx-wd-20p-f {
15093
  max-width: 20% !important;
15094
}
15095
 
15096
.mn-wd-20p-f {
15097
  min-width: 20% !important;
15098
}
15099
 
15100
.wd-25 {
15101
  width: 25px;
15102
}
15103
 
15104
.wd-25p {
15105
  width: 25%;
15106
}
15107
 
15108
.mx-wd-25p {
15109
  max-width: 25%;
15110
}
15111
 
15112
.mn-wd-25p {
15113
  min-width: 25%;
15114
}
15115
 
15116
.wd-25-f {
15117
  width: 25px !important;
15118
}
15119
 
15120
.wd-25p-f {
15121
  width: 25% !important;
15122
}
15123
 
15124
.mx-wd-25p-f {
15125
  max-width: 25% !important;
15126
}
15127
 
15128
.mn-wd-25p-f {
15129
  min-width: 25% !important;
15130
}
15131
 
15132
.wd-30 {
15133
  width: 30px;
15134
}
15135
 
15136
.wd-30p {
15137
  width: 30%;
15138
}
15139
 
15140
.mx-wd-30p {
15141
  max-width: 30%;
15142
}
15143
 
15144
.mn-wd-30p {
15145
  min-width: 30%;
15146
}
15147
 
15148
.wd-30-f {
15149
  width: 30px !important;
15150
}
15151
 
15152
.wd-30p-f {
15153
  width: 30% !important;
15154
}
15155
 
15156
.mx-wd-30p-f {
15157
  max-width: 30% !important;
15158
}
15159
 
15160
.mn-wd-30p-f {
15161
  min-width: 30% !important;
15162
}
15163
 
15164
.wd-35 {
15165
  width: 35px;
15166
}
15167
 
15168
.wd-35p {
15169
  width: 35%;
15170
}
15171
 
15172
.mx-wd-35p {
15173
  max-width: 35%;
15174
}
15175
 
15176
.mn-wd-35p {
15177
  min-width: 35%;
15178
}
15179
 
15180
.wd-35-f {
15181
  width: 35px !important;
15182
}
15183
 
15184
.wd-35p-f {
15185
  width: 35% !important;
15186
}
15187
 
15188
.mx-wd-35p-f {
15189
  max-width: 35% !important;
15190
}
15191
 
15192
.mn-wd-35p-f {
15193
  min-width: 35% !important;
15194
}
15195
 
15196
.wd-40 {
15197
  width: 40px;
15198
}
15199
 
15200
.wd-40p {
15201
  width: 40%;
15202
}
15203
 
15204
.mx-wd-40p {
15205
  max-width: 40%;
15206
}
15207
 
15208
.mn-wd-40p {
15209
  min-width: 40%;
15210
}
15211
 
15212
.wd-40-f {
15213
  width: 40px !important;
15214
}
15215
 
15216
.wd-40p-f {
15217
  width: 40% !important;
15218
}
15219
 
15220
.mx-wd-40p-f {
15221
  max-width: 40% !important;
15222
}
15223
 
15224
.mn-wd-40p-f {
15225
  min-width: 40% !important;
15226
}
15227
 
15228
.wd-45 {
15229
  width: 45px;
15230
}
15231
 
15232
.wd-45p {
15233
  width: 45%;
15234
}
15235
 
15236
.mx-wd-45p {
15237
  max-width: 45%;
15238
}
15239
 
15240
.mn-wd-45p {
15241
  min-width: 45%;
15242
}
15243
 
15244
.wd-45-f {
15245
  width: 45px !important;
15246
}
15247
 
15248
.wd-45p-f {
15249
  width: 45% !important;
15250
}
15251
 
15252
.mx-wd-45p-f {
15253
  max-width: 45% !important;
15254
}
15255
 
15256
.mn-wd-45p-f {
15257
  min-width: 45% !important;
15258
}
15259
 
15260
.wd-50 {
15261
  width: 50px;
15262
}
15263
 
15264
.wd-50p {
15265
  width: 50%;
15266
}
15267
 
15268
.mx-wd-50p {
15269
  max-width: 50%;
15270
}
15271
 
15272
.mn-wd-50p {
15273
  min-width: 50%;
15274
}
15275
 
15276
.wd-50-f {
15277
  width: 50px !important;
15278
}
15279
 
15280
.wd-50p-f {
15281
  width: 50% !important;
15282
}
15283
 
15284
.mx-wd-50p-f {
15285
  max-width: 50% !important;
15286
}
15287
 
15288
.mn-wd-50p-f {
15289
  min-width: 50% !important;
15290
}
15291
 
15292
.wd-55 {
15293
  width: 55px;
15294
}
15295
 
15296
.wd-55p {
15297
  width: 55%;
15298
}
15299
 
15300
.mx-wd-55p {
15301
  max-width: 55%;
15302
}
15303
 
15304
.mn-wd-55p {
15305
  min-width: 55%;
15306
}
15307
 
15308
.wd-55-f {
15309
  width: 55px !important;
15310
}
15311
 
15312
.wd-55p-f {
15313
  width: 55% !important;
15314
}
15315
 
15316
.mx-wd-55p-f {
15317
  max-width: 55% !important;
15318
}
15319
 
15320
.mn-wd-55p-f {
15321
  min-width: 55% !important;
15322
}
15323
 
15324
.wd-60 {
15325
  width: 60px;
15326
}
15327
 
15328
.wd-60p {
15329
  width: 60%;
15330
}
15331
 
15332
.mx-wd-60p {
15333
  max-width: 60%;
15334
}
15335
 
15336
.mn-wd-60p {
15337
  min-width: 60%;
15338
}
15339
 
15340
.wd-60-f {
15341
  width: 60px !important;
15342
}
15343
 
15344
.wd-60p-f {
15345
  width: 60% !important;
15346
}
15347
 
15348
.mx-wd-60p-f {
15349
  max-width: 60% !important;
15350
}
15351
 
15352
.mn-wd-60p-f {
15353
  min-width: 60% !important;
15354
}
15355
 
15356
.wd-65 {
15357
  width: 65px;
15358
}
15359
 
15360
.wd-65p {
15361
  width: 65%;
15362
}
15363
 
15364
.mx-wd-65p {
15365
  max-width: 65%;
15366
}
15367
 
15368
.mn-wd-65p {
15369
  min-width: 65%;
15370
}
15371
 
15372
.wd-65-f {
15373
  width: 65px !important;
15374
}
15375
 
15376
.wd-65p-f {
15377
  width: 65% !important;
15378
}
15379
 
15380
.mx-wd-65p-f {
15381
  max-width: 65% !important;
15382
}
15383
 
15384
.mn-wd-65p-f {
15385
  min-width: 65% !important;
15386
}
15387
 
15388
.wd-70 {
15389
  width: 70px;
15390
}
15391
 
15392
.wd-70p {
15393
  width: 70%;
15394
}
15395
 
15396
.mx-wd-70p {
15397
  max-width: 70%;
15398
}
15399
 
15400
.mn-wd-70p {
15401
  min-width: 70%;
15402
}
15403
 
15404
.wd-70-f {
15405
  width: 70px !important;
15406
}
15407
 
15408
.wd-70p-f {
15409
  width: 70% !important;
15410
}
15411
 
15412
.mx-wd-70p-f {
15413
  max-width: 70% !important;
15414
}
15415
 
15416
.mn-wd-70p-f {
15417
  min-width: 70% !important;
15418
}
15419
 
15420
.wd-75 {
15421
  width: 75px;
15422
}
15423
 
15424
.wd-75p {
15425
  width: 75%;
15426
}
15427
 
15428
.mx-wd-75p {
15429
  max-width: 75%;
15430
}
15431
 
15432
.mn-wd-75p {
15433
  min-width: 75%;
15434
}
15435
 
15436
.wd-75-f {
15437
  width: 75px !important;
15438
}
15439
 
15440
.wd-75p-f {
15441
  width: 75% !important;
15442
}
15443
 
15444
.mx-wd-75p-f {
15445
  max-width: 75% !important;
15446
}
15447
 
15448
.mn-wd-75p-f {
15449
  min-width: 75% !important;
15450
}
15451
 
15452
.wd-80 {
15453
  width: 80px;
15454
}
15455
 
15456
.wd-80p {
15457
  width: 80%;
15458
}
15459
 
15460
.mx-wd-80p {
15461
  max-width: 80%;
15462
}
15463
 
15464
.mn-wd-80p {
15465
  min-width: 80%;
15466
}
15467
 
15468
.wd-80-f {
15469
  width: 80px !important;
15470
}
15471
 
15472
.wd-80p-f {
15473
  width: 80% !important;
15474
}
15475
 
15476
.mx-wd-80p-f {
15477
  max-width: 80% !important;
15478
}
15479
 
15480
.mn-wd-80p-f {
15481
  min-width: 80% !important;
15482
}
15483
 
15484
.wd-85 {
15485
  width: 85px;
15486
}
15487
 
15488
.wd-85p {
15489
  width: 85%;
15490
}
15491
 
15492
.mx-wd-85p {
15493
  max-width: 85%;
15494
}
15495
 
15496
.mn-wd-85p {
15497
  min-width: 85%;
15498
}
15499
 
15500
.wd-85-f {
15501
  width: 85px !important;
15502
}
15503
 
15504
.wd-85p-f {
15505
  width: 85% !important;
15506
}
15507
 
15508
.mx-wd-85p-f {
15509
  max-width: 85% !important;
15510
}
15511
 
15512
.mn-wd-85p-f {
15513
  min-width: 85% !important;
15514
}
15515
 
15516
.wd-90 {
15517
  width: 90px;
15518
}
15519
 
15520
.wd-90p {
15521
  width: 90%;
15522
}
15523
 
15524
.mx-wd-90p {
15525
  max-width: 90%;
15526
}
15527
 
15528
.mn-wd-90p {
15529
  min-width: 90%;
15530
}
15531
 
15532
.wd-90-f {
15533
  width: 90px !important;
15534
}
15535
 
15536
.wd-90p-f {
15537
  width: 90% !important;
15538
}
15539
 
15540
.mx-wd-90p-f {
15541
  max-width: 90% !important;
15542
}
15543
 
15544
.mn-wd-90p-f {
15545
  min-width: 90% !important;
15546
}
15547
 
15548
.wd-95 {
15549
  width: 95px;
15550
}
15551
 
15552
.wd-95p {
15553
  width: 95%;
15554
}
15555
 
15556
.mx-wd-95p {
15557
  max-width: 95%;
15558
}
15559
 
15560
.mn-wd-95p {
15561
  min-width: 95%;
15562
}
15563
 
15564
.wd-95-f {
15565
  width: 95px !important;
15566
}
15567
 
15568
.wd-95p-f {
15569
  width: 95% !important;
15570
}
15571
 
15572
.mx-wd-95p-f {
15573
  max-width: 95% !important;
15574
}
15575
 
15576
.mn-wd-95p-f {
15577
  min-width: 95% !important;
15578
}
15579
 
15580
.wd-100 {
15581
  width: 100px;
15582
}
15583
 
15584
.wd-100p {
15585
  width: 100%;
15586
}
15587
 
15588
.mx-wd-100p {
15589
  max-width: 100%;
15590
}
15591
 
15592
.mn-wd-100p {
15593
  min-width: 100%;
15594
}
15595
 
15596
.wd-100-f {
15597
  width: 100px !important;
15598
}
15599
 
15600
.wd-100p-f {
15601
  width: 100% !important;
15602
}
15603
 
15604
.mx-wd-100p-f {
15605
  max-width: 100% !important;
15606
}
15607
 
15608
.mn-wd-100p-f {
15609
  min-width: 100% !important;
15610
}
15611
 
15612
.wd-150 {
15613
  width: 150px;
15614
}
15615
 
15616
.wd-150-f {
15617
  width: 150px !important;
15618
}
15619
 
15620
.wd-200 {
15621
  width: 200px;
15622
}
15623
 
15624
.wd-200-f {
15625
  width: 200px !important;
15626
}
15627
 
15628
.wd-250 {
15629
  width: 250px;
15630
}
15631
 
15632
.wd-250-f {
15633
  width: 250px !important;
15634
}
15635
 
15636
.wd-300 {
15637
  width: 300px;
15638
}
15639
 
15640
.wd-300-f {
15641
  width: 300px !important;
15642
}
15643
 
15644
.wd-350 {
15645
  width: 350px;
15646
}
15647
 
15648
.wd-350-f {
15649
  width: 350px !important;
15650
}
15651
 
15652
.wd-400 {
15653
  width: 400px;
15654
}
15655
 
15656
.wd-400-f {
15657
  width: 400px !important;
15658
}
15659
 
15660
.wd-450 {
15661
  width: 450px;
15662
}
15663
 
15664
.wd-450-f {
15665
  width: 450px !important;
15666
}
15667
 
15668
.wd-500 {
15669
  width: 500px;
15670
}
15671
 
15672
.wd-500-f {
15673
  width: 500px !important;
15674
}
15675
 
15676
.wd-550 {
15677
  width: 550px;
15678
}
15679
 
15680
.wd-550-f {
15681
  width: 550px !important;
15682
}
15683
 
15684
.wd-600 {
15685
  width: 600px;
15686
}
15687
 
15688
.wd-600-f {
15689
  width: 600px !important;
15690
}
15691
 
15692
.wd-650 {
15693
  width: 650px;
15694
}
15695
 
15696
.wd-650-f {
15697
  width: 650px !important;
15698
}
15699
 
15700
.wd-700 {
15701
  width: 700px;
15702
}
15703
 
15704
.wd-700-f {
15705
  width: 700px !important;
15706
}
15707
 
15708
.wd-750 {
15709
  width: 750px;
15710
}
15711
 
15712
.wd-750-f {
15713
  width: 750px !important;
15714
}
15715
 
15716
.wd-800 {
15717
  width: 800px;
15718
}
15719
 
15720
.wd-800-f {
15721
  width: 800px !important;
15722
}
15723
 
15724
.wd-850 {
15725
  width: 850px;
15726
}
15727
 
15728
.wd-850-f {
15729
  width: 850px !important;
15730
}
15731
 
15732
.wd-900 {
15733
  width: 900px;
15734
}
15735
 
15736
.wd-900-f {
15737
  width: 900px !important;
15738
}
15739
 
15740
.wd-950 {
15741
  width: 950px;
15742
}
15743
 
15744
.wd-950-f {
15745
  width: 950px !important;
15746
}
15747
 
15748
.wd-1000 {
15749
  width: 1000px;
15750
}
15751
 
15752
.wd-1000-f {
15753
  width: 1000px !important;
15754
}
15755
 
15756
@media (min-width: 480px) {
15757
  .wd-xs-5 {
15758
    width: 5px;
15759
  }
16848 stevensc 15760
 
16825 efrain 15761
  .wd-xs-5p {
15762
    width: 5%;
15763
  }
16848 stevensc 15764
 
16825 efrain 15765
  .mx-wd-xs-5p {
15766
    max-width: 5%;
15767
  }
16848 stevensc 15768
 
16825 efrain 15769
  .mn-wd-xs-5p {
15770
    min-width: 5%;
15771
  }
16848 stevensc 15772
 
16825 efrain 15773
  .wd-xs-5-f {
15774
    width: 5px !important;
15775
  }
16848 stevensc 15776
 
16825 efrain 15777
  .wd-xs-5p-f {
15778
    width: 5% !important;
15779
  }
16848 stevensc 15780
 
16825 efrain 15781
  .mx-wd-xs-5p-f {
15782
    max-width: 5% !important;
15783
  }
16848 stevensc 15784
 
16825 efrain 15785
  .mn-wd-xs-5p-f {
15786
    min-width: 5% !important;
15787
  }
16848 stevensc 15788
 
16825 efrain 15789
  .wd-xs-10 {
15790
    width: 10px;
15791
  }
16848 stevensc 15792
 
16825 efrain 15793
  .wd-xs-10p {
15794
    width: 10%;
15795
  }
16848 stevensc 15796
 
16825 efrain 15797
  .mx-wd-xs-10p {
15798
    max-width: 10%;
15799
  }
16848 stevensc 15800
 
16825 efrain 15801
  .mn-wd-xs-10p {
15802
    min-width: 10%;
15803
  }
16848 stevensc 15804
 
16825 efrain 15805
  .wd-xs-10-f {
15806
    width: 10px !important;
15807
  }
16848 stevensc 15808
 
16825 efrain 15809
  .wd-xs-10p-f {
15810
    width: 10% !important;
15811
  }
16848 stevensc 15812
 
16825 efrain 15813
  .mx-wd-xs-10p-f {
15814
    max-width: 10% !important;
15815
  }
16848 stevensc 15816
 
16825 efrain 15817
  .mn-wd-xs-10p-f {
15818
    min-width: 10% !important;
15819
  }
16848 stevensc 15820
 
16825 efrain 15821
  .wd-xs-15 {
15822
    width: 15px;
15823
  }
16848 stevensc 15824
 
16825 efrain 15825
  .wd-xs-15p {
15826
    width: 15%;
15827
  }
16848 stevensc 15828
 
16825 efrain 15829
  .mx-wd-xs-15p {
15830
    max-width: 15%;
15831
  }
16848 stevensc 15832
 
16825 efrain 15833
  .mn-wd-xs-15p {
15834
    min-width: 15%;
15835
  }
16848 stevensc 15836
 
16825 efrain 15837
  .wd-xs-15-f {
15838
    width: 15px !important;
15839
  }
16848 stevensc 15840
 
16825 efrain 15841
  .wd-xs-15p-f {
15842
    width: 15% !important;
15843
  }
16848 stevensc 15844
 
16825 efrain 15845
  .mx-wd-xs-15p-f {
15846
    max-width: 15% !important;
15847
  }
16848 stevensc 15848
 
16825 efrain 15849
  .mn-wd-xs-15p-f {
15850
    min-width: 15% !important;
15851
  }
16848 stevensc 15852
 
16825 efrain 15853
  .wd-xs-20 {
15854
    width: 20px;
15855
  }
16848 stevensc 15856
 
16825 efrain 15857
  .wd-xs-20p {
15858
    width: 20%;
15859
  }
16848 stevensc 15860
 
16825 efrain 15861
  .mx-wd-xs-20p {
15862
    max-width: 20%;
15863
  }
16848 stevensc 15864
 
16825 efrain 15865
  .mn-wd-xs-20p {
15866
    min-width: 20%;
15867
  }
16848 stevensc 15868
 
16825 efrain 15869
  .wd-xs-20-f {
15870
    width: 20px !important;
15871
  }
16848 stevensc 15872
 
16825 efrain 15873
  .wd-xs-20p-f {
15874
    width: 20% !important;
15875
  }
16848 stevensc 15876
 
16825 efrain 15877
  .mx-wd-xs-20p-f {
15878
    max-width: 20% !important;
15879
  }
16848 stevensc 15880
 
16825 efrain 15881
  .mn-wd-xs-20p-f {
15882
    min-width: 20% !important;
15883
  }
16848 stevensc 15884
 
16825 efrain 15885
  .wd-xs-25 {
15886
    width: 25px;
15887
  }
16848 stevensc 15888
 
16825 efrain 15889
  .wd-xs-25p {
15890
    width: 25%;
15891
  }
16848 stevensc 15892
 
16825 efrain 15893
  .mx-wd-xs-25p {
15894
    max-width: 25%;
15895
  }
16848 stevensc 15896
 
16825 efrain 15897
  .mn-wd-xs-25p {
15898
    min-width: 25%;
15899
  }
16848 stevensc 15900
 
16825 efrain 15901
  .wd-xs-25-f {
15902
    width: 25px !important;
15903
  }
16848 stevensc 15904
 
16825 efrain 15905
  .wd-xs-25p-f {
15906
    width: 25% !important;
15907
  }
16848 stevensc 15908
 
16825 efrain 15909
  .mx-wd-xs-25p-f {
15910
    max-width: 25% !important;
15911
  }
16848 stevensc 15912
 
16825 efrain 15913
  .mn-wd-xs-25p-f {
15914
    min-width: 25% !important;
15915
  }
16848 stevensc 15916
 
16825 efrain 15917
  .wd-xs-30 {
15918
    width: 30px;
15919
  }
16848 stevensc 15920
 
16825 efrain 15921
  .wd-xs-30p {
15922
    width: 30%;
15923
  }
16848 stevensc 15924
 
16825 efrain 15925
  .mx-wd-xs-30p {
15926
    max-width: 30%;
15927
  }
16848 stevensc 15928
 
16825 efrain 15929
  .mn-wd-xs-30p {
15930
    min-width: 30%;
15931
  }
16848 stevensc 15932
 
16825 efrain 15933
  .wd-xs-30-f {
15934
    width: 30px !important;
15935
  }
16848 stevensc 15936
 
16825 efrain 15937
  .wd-xs-30p-f {
15938
    width: 30% !important;
15939
  }
16848 stevensc 15940
 
16825 efrain 15941
  .mx-wd-xs-30p-f {
15942
    max-width: 30% !important;
15943
  }
16848 stevensc 15944
 
16825 efrain 15945
  .mn-wd-xs-30p-f {
15946
    min-width: 30% !important;
15947
  }
16848 stevensc 15948
 
16825 efrain 15949
  .wd-xs-35 {
15950
    width: 35px;
15951
  }
16848 stevensc 15952
 
16825 efrain 15953
  .wd-xs-35p {
15954
    width: 35%;
15955
  }
16848 stevensc 15956
 
16825 efrain 15957
  .mx-wd-xs-35p {
15958
    max-width: 35%;
15959
  }
16848 stevensc 15960
 
16825 efrain 15961
  .mn-wd-xs-35p {
15962
    min-width: 35%;
15963
  }
16848 stevensc 15964
 
16825 efrain 15965
  .wd-xs-35-f {
15966
    width: 35px !important;
15967
  }
16848 stevensc 15968
 
16825 efrain 15969
  .wd-xs-35p-f {
15970
    width: 35% !important;
15971
  }
16848 stevensc 15972
 
16825 efrain 15973
  .mx-wd-xs-35p-f {
15974
    max-width: 35% !important;
15975
  }
16848 stevensc 15976
 
16825 efrain 15977
  .mn-wd-xs-35p-f {
15978
    min-width: 35% !important;
15979
  }
16848 stevensc 15980
 
16825 efrain 15981
  .wd-xs-40 {
15982
    width: 40px;
15983
  }
16848 stevensc 15984
 
16825 efrain 15985
  .wd-xs-40p {
15986
    width: 40%;
15987
  }
16848 stevensc 15988
 
16825 efrain 15989
  .mx-wd-xs-40p {
15990
    max-width: 40%;
15991
  }
16848 stevensc 15992
 
16825 efrain 15993
  .mn-wd-xs-40p {
15994
    min-width: 40%;
15995
  }
16848 stevensc 15996
 
16825 efrain 15997
  .wd-xs-40-f {
15998
    width: 40px !important;
15999
  }
16848 stevensc 16000
 
16825 efrain 16001
  .wd-xs-40p-f {
16002
    width: 40% !important;
16003
  }
16848 stevensc 16004
 
16825 efrain 16005
  .mx-wd-xs-40p-f {
16006
    max-width: 40% !important;
16007
  }
16848 stevensc 16008
 
16825 efrain 16009
  .mn-wd-xs-40p-f {
16010
    min-width: 40% !important;
16011
  }
16848 stevensc 16012
 
16825 efrain 16013
  .wd-xs-45 {
16014
    width: 45px;
16015
  }
16848 stevensc 16016
 
16825 efrain 16017
  .wd-xs-45p {
16018
    width: 45%;
16019
  }
16848 stevensc 16020
 
16825 efrain 16021
  .mx-wd-xs-45p {
16022
    max-width: 45%;
16023
  }
16848 stevensc 16024
 
16825 efrain 16025
  .mn-wd-xs-45p {
16026
    min-width: 45%;
16027
  }
16848 stevensc 16028
 
16825 efrain 16029
  .wd-xs-45-f {
16030
    width: 45px !important;
16031
  }
16848 stevensc 16032
 
16825 efrain 16033
  .wd-xs-45p-f {
16034
    width: 45% !important;
16035
  }
16848 stevensc 16036
 
16825 efrain 16037
  .mx-wd-xs-45p-f {
16038
    max-width: 45% !important;
16039
  }
16848 stevensc 16040
 
16825 efrain 16041
  .mn-wd-xs-45p-f {
16042
    min-width: 45% !important;
16043
  }
16848 stevensc 16044
 
16825 efrain 16045
  .wd-xs-50 {
16046
    width: 50px;
16047
  }
16848 stevensc 16048
 
16825 efrain 16049
  .wd-xs-50p {
16050
    width: 50%;
16051
  }
16848 stevensc 16052
 
16825 efrain 16053
  .mx-wd-xs-50p {
16054
    max-width: 50%;
16055
  }
16848 stevensc 16056
 
16825 efrain 16057
  .mn-wd-xs-50p {
16058
    min-width: 50%;
16059
  }
16848 stevensc 16060
 
16825 efrain 16061
  .wd-xs-50-f {
16062
    width: 50px !important;
16063
  }
16848 stevensc 16064
 
16825 efrain 16065
  .wd-xs-50p-f {
16066
    width: 50% !important;
16067
  }
16848 stevensc 16068
 
16825 efrain 16069
  .mx-wd-xs-50p-f {
16070
    max-width: 50% !important;
16071
  }
16848 stevensc 16072
 
16825 efrain 16073
  .mn-wd-xs-50p-f {
16074
    min-width: 50% !important;
16075
  }
16848 stevensc 16076
 
16825 efrain 16077
  .wd-xs-55 {
16078
    width: 55px;
16079
  }
16848 stevensc 16080
 
16825 efrain 16081
  .wd-xs-55p {
16082
    width: 55%;
16083
  }
16848 stevensc 16084
 
16825 efrain 16085
  .mx-wd-xs-55p {
16086
    max-width: 55%;
16087
  }
16848 stevensc 16088
 
16825 efrain 16089
  .mn-wd-xs-55p {
16090
    min-width: 55%;
16091
  }
16848 stevensc 16092
 
16825 efrain 16093
  .wd-xs-55-f {
16094
    width: 55px !important;
16095
  }
16848 stevensc 16096
 
16825 efrain 16097
  .wd-xs-55p-f {
16098
    width: 55% !important;
16099
  }
16848 stevensc 16100
 
16825 efrain 16101
  .mx-wd-xs-55p-f {
16102
    max-width: 55% !important;
16103
  }
16848 stevensc 16104
 
16825 efrain 16105
  .mn-wd-xs-55p-f {
16106
    min-width: 55% !important;
16107
  }
16848 stevensc 16108
 
16825 efrain 16109
  .wd-xs-60 {
16110
    width: 60px;
16111
  }
16848 stevensc 16112
 
16825 efrain 16113
  .wd-xs-60p {
16114
    width: 60%;
16115
  }
16848 stevensc 16116
 
16825 efrain 16117
  .mx-wd-xs-60p {
16118
    max-width: 60%;
16119
  }
16848 stevensc 16120
 
16825 efrain 16121
  .mn-wd-xs-60p {
16122
    min-width: 60%;
16123
  }
16848 stevensc 16124
 
16825 efrain 16125
  .wd-xs-60-f {
16126
    width: 60px !important;
16127
  }
16848 stevensc 16128
 
16825 efrain 16129
  .wd-xs-60p-f {
16130
    width: 60% !important;
16131
  }
16848 stevensc 16132
 
16825 efrain 16133
  .mx-wd-xs-60p-f {
16134
    max-width: 60% !important;
16135
  }
16848 stevensc 16136
 
16825 efrain 16137
  .mn-wd-xs-60p-f {
16138
    min-width: 60% !important;
16139
  }
16848 stevensc 16140
 
16825 efrain 16141
  .wd-xs-65 {
16142
    width: 65px;
16143
  }
16848 stevensc 16144
 
16825 efrain 16145
  .wd-xs-65p {
16146
    width: 65%;
16147
  }
16848 stevensc 16148
 
16825 efrain 16149
  .mx-wd-xs-65p {
16150
    max-width: 65%;
16151
  }
16848 stevensc 16152
 
16825 efrain 16153
  .mn-wd-xs-65p {
16154
    min-width: 65%;
16155
  }
16848 stevensc 16156
 
16825 efrain 16157
  .wd-xs-65-f {
16158
    width: 65px !important;
16159
  }
16848 stevensc 16160
 
16825 efrain 16161
  .wd-xs-65p-f {
16162
    width: 65% !important;
16163
  }
16848 stevensc 16164
 
16825 efrain 16165
  .mx-wd-xs-65p-f {
16166
    max-width: 65% !important;
16167
  }
16848 stevensc 16168
 
16825 efrain 16169
  .mn-wd-xs-65p-f {
16170
    min-width: 65% !important;
16171
  }
16848 stevensc 16172
 
16825 efrain 16173
  .wd-xs-70 {
16174
    width: 70px;
16175
  }
16848 stevensc 16176
 
16825 efrain 16177
  .wd-xs-70p {
16178
    width: 70%;
16179
  }
16848 stevensc 16180
 
16825 efrain 16181
  .mx-wd-xs-70p {
16182
    max-width: 70%;
16183
  }
16848 stevensc 16184
 
16825 efrain 16185
  .mn-wd-xs-70p {
16186
    min-width: 70%;
16187
  }
16848 stevensc 16188
 
16825 efrain 16189
  .wd-xs-70-f {
16190
    width: 70px !important;
16191
  }
16848 stevensc 16192
 
16825 efrain 16193
  .wd-xs-70p-f {
16194
    width: 70% !important;
16195
  }
16848 stevensc 16196
 
16825 efrain 16197
  .mx-wd-xs-70p-f {
16198
    max-width: 70% !important;
16199
  }
16848 stevensc 16200
 
16825 efrain 16201
  .mn-wd-xs-70p-f {
16202
    min-width: 70% !important;
16203
  }
16848 stevensc 16204
 
16825 efrain 16205
  .wd-xs-75 {
16206
    width: 75px;
16207
  }
16848 stevensc 16208
 
16825 efrain 16209
  .wd-xs-75p {
16210
    width: 75%;
16211
  }
16848 stevensc 16212
 
16825 efrain 16213
  .mx-wd-xs-75p {
16214
    max-width: 75%;
16215
  }
16848 stevensc 16216
 
16825 efrain 16217
  .mn-wd-xs-75p {
16218
    min-width: 75%;
16219
  }
16848 stevensc 16220
 
16825 efrain 16221
  .wd-xs-75-f {
16222
    width: 75px !important;
16223
  }
16848 stevensc 16224
 
16825 efrain 16225
  .wd-xs-75p-f {
16226
    width: 75% !important;
16227
  }
16848 stevensc 16228
 
16825 efrain 16229
  .mx-wd-xs-75p-f {
16230
    max-width: 75% !important;
16231
  }
16848 stevensc 16232
 
16825 efrain 16233
  .mn-wd-xs-75p-f {
16234
    min-width: 75% !important;
16235
  }
16848 stevensc 16236
 
16825 efrain 16237
  .wd-xs-80 {
16238
    width: 80px;
16239
  }
16848 stevensc 16240
 
16825 efrain 16241
  .wd-xs-80p {
16242
    width: 80%;
16243
  }
16848 stevensc 16244
 
16825 efrain 16245
  .mx-wd-xs-80p {
16246
    max-width: 80%;
16247
  }
16848 stevensc 16248
 
16825 efrain 16249
  .mn-wd-xs-80p {
16250
    min-width: 80%;
16251
  }
16848 stevensc 16252
 
16825 efrain 16253
  .wd-xs-80-f {
16254
    width: 80px !important;
16255
  }
16848 stevensc 16256
 
16825 efrain 16257
  .wd-xs-80p-f {
16258
    width: 80% !important;
16259
  }
16848 stevensc 16260
 
16825 efrain 16261
  .mx-wd-xs-80p-f {
16262
    max-width: 80% !important;
16263
  }
16848 stevensc 16264
 
16825 efrain 16265
  .mn-wd-xs-80p-f {
16266
    min-width: 80% !important;
16267
  }
16848 stevensc 16268
 
16825 efrain 16269
  .wd-xs-85 {
16270
    width: 85px;
16271
  }
16848 stevensc 16272
 
16825 efrain 16273
  .wd-xs-85p {
16274
    width: 85%;
16275
  }
16848 stevensc 16276
 
16825 efrain 16277
  .mx-wd-xs-85p {
16278
    max-width: 85%;
16279
  }
16848 stevensc 16280
 
16825 efrain 16281
  .mn-wd-xs-85p {
16282
    min-width: 85%;
16283
  }
16848 stevensc 16284
 
16825 efrain 16285
  .wd-xs-85-f {
16286
    width: 85px !important;
16287
  }
16848 stevensc 16288
 
16825 efrain 16289
  .wd-xs-85p-f {
16290
    width: 85% !important;
16291
  }
16848 stevensc 16292
 
16825 efrain 16293
  .mx-wd-xs-85p-f {
16294
    max-width: 85% !important;
16295
  }
16848 stevensc 16296
 
16825 efrain 16297
  .mn-wd-xs-85p-f {
16298
    min-width: 85% !important;
16299
  }
16848 stevensc 16300
 
16825 efrain 16301
  .wd-xs-90 {
16302
    width: 90px;
16303
  }
16848 stevensc 16304
 
16825 efrain 16305
  .wd-xs-90p {
16306
    width: 90%;
16307
  }
16848 stevensc 16308
 
16825 efrain 16309
  .mx-wd-xs-90p {
16310
    max-width: 90%;
16311
  }
16848 stevensc 16312
 
16825 efrain 16313
  .mn-wd-xs-90p {
16314
    min-width: 90%;
16315
  }
16848 stevensc 16316
 
16825 efrain 16317
  .wd-xs-90-f {
16318
    width: 90px !important;
16319
  }
16848 stevensc 16320
 
16825 efrain 16321
  .wd-xs-90p-f {
16322
    width: 90% !important;
16323
  }
16848 stevensc 16324
 
16825 efrain 16325
  .mx-wd-xs-90p-f {
16326
    max-width: 90% !important;
16327
  }
16848 stevensc 16328
 
16825 efrain 16329
  .mn-wd-xs-90p-f {
16330
    min-width: 90% !important;
16331
  }
16848 stevensc 16332
 
16825 efrain 16333
  .wd-xs-95 {
16334
    width: 95px;
16335
  }
16848 stevensc 16336
 
16825 efrain 16337
  .wd-xs-95p {
16338
    width: 95%;
16339
  }
16848 stevensc 16340
 
16825 efrain 16341
  .mx-wd-xs-95p {
16342
    max-width: 95%;
16343
  }
16848 stevensc 16344
 
16825 efrain 16345
  .mn-wd-xs-95p {
16346
    min-width: 95%;
16347
  }
16848 stevensc 16348
 
16825 efrain 16349
  .wd-xs-95-f {
16350
    width: 95px !important;
16351
  }
16848 stevensc 16352
 
16825 efrain 16353
  .wd-xs-95p-f {
16354
    width: 95% !important;
16355
  }
16848 stevensc 16356
 
16825 efrain 16357
  .mx-wd-xs-95p-f {
16358
    max-width: 95% !important;
16359
  }
16848 stevensc 16360
 
16825 efrain 16361
  .mn-wd-xs-95p-f {
16362
    min-width: 95% !important;
16363
  }
16848 stevensc 16364
 
16825 efrain 16365
  .wd-xs-100 {
16366
    width: 100px;
16367
  }
16848 stevensc 16368
 
16825 efrain 16369
  .wd-xs-100p {
16370
    width: 100%;
16371
  }
16848 stevensc 16372
 
16825 efrain 16373
  .mx-wd-xs-100p {
16374
    max-width: 100%;
16375
  }
16848 stevensc 16376
 
16825 efrain 16377
  .mn-wd-xs-100p {
16378
    min-width: 100%;
16379
  }
16848 stevensc 16380
 
16825 efrain 16381
  .wd-xs-100-f {
16382
    width: 100px !important;
16383
  }
16848 stevensc 16384
 
16825 efrain 16385
  .wd-xs-100p-f {
16386
    width: 100% !important;
16387
  }
16848 stevensc 16388
 
16825 efrain 16389
  .mx-wd-xs-100p-f {
16390
    max-width: 100% !important;
16391
  }
16848 stevensc 16392
 
16825 efrain 16393
  .mn-wd-xs-100p-f {
16394
    min-width: 100% !important;
16395
  }
16848 stevensc 16396
 
16825 efrain 16397
  .wd-xs-150 {
16398
    width: 150px;
16399
  }
16848 stevensc 16400
 
16825 efrain 16401
  .wd-xs-150p {
16402
    width: 150%;
16403
  }
16848 stevensc 16404
 
16825 efrain 16405
  .mx-wd-xs-150p {
16406
    max-width: 150%;
16407
  }
16848 stevensc 16408
 
16825 efrain 16409
  .mn-wd-xs-150p {
16410
    min-width: 150%;
16411
  }
16848 stevensc 16412
 
16825 efrain 16413
  .wd-xs-150-f {
16414
    width: 150px !important;
16415
  }
16848 stevensc 16416
 
16825 efrain 16417
  .wd-xs-150p-f {
16418
    width: 150% !important;
16419
  }
16848 stevensc 16420
 
16825 efrain 16421
  .mx-wd-xs-150p-f {
16422
    max-width: 150% !important;
16423
  }
16848 stevensc 16424
 
16825 efrain 16425
  .mn-wd-xs-150p-f {
16426
    min-width: 150% !important;
16427
  }
16848 stevensc 16428
 
16825 efrain 16429
  .wd-xs-200 {
16430
    width: 200px;
16431
  }
16848 stevensc 16432
 
16825 efrain 16433
  .wd-xs-200p {
16434
    width: 200%;
16435
  }
16848 stevensc 16436
 
16825 efrain 16437
  .mx-wd-xs-200p {
16438
    max-width: 200%;
16439
  }
16848 stevensc 16440
 
16825 efrain 16441
  .mn-wd-xs-200p {
16442
    min-width: 200%;
16443
  }
16848 stevensc 16444
 
16825 efrain 16445
  .wd-xs-200-f {
16446
    width: 200px !important;
16447
  }
16848 stevensc 16448
 
16825 efrain 16449
  .wd-xs-200p-f {
16450
    width: 200% !important;
16451
  }
16848 stevensc 16452
 
16825 efrain 16453
  .mx-wd-xs-200p-f {
16454
    max-width: 200% !important;
16455
  }
16848 stevensc 16456
 
16825 efrain 16457
  .mn-wd-xs-200p-f {
16458
    min-width: 200% !important;
16459
  }
16848 stevensc 16460
 
16825 efrain 16461
  .wd-xs-250 {
16462
    width: 250px;
16463
  }
16848 stevensc 16464
 
16825 efrain 16465
  .wd-xs-250p {
16466
    width: 250%;
16467
  }
16848 stevensc 16468
 
16825 efrain 16469
  .mx-wd-xs-250p {
16470
    max-width: 250%;
16471
  }
16848 stevensc 16472
 
16825 efrain 16473
  .mn-wd-xs-250p {
16474
    min-width: 250%;
16475
  }
16848 stevensc 16476
 
16825 efrain 16477
  .wd-xs-250-f {
16478
    width: 250px !important;
16479
  }
16848 stevensc 16480
 
16825 efrain 16481
  .wd-xs-250p-f {
16482
    width: 250% !important;
16483
  }
16848 stevensc 16484
 
16825 efrain 16485
  .mx-wd-xs-250p-f {
16486
    max-width: 250% !important;
16487
  }
16848 stevensc 16488
 
16825 efrain 16489
  .mn-wd-xs-250p-f {
16490
    min-width: 250% !important;
16491
  }
16848 stevensc 16492
 
16825 efrain 16493
  .wd-xs-300 {
16494
    width: 300px;
16495
  }
16848 stevensc 16496
 
16825 efrain 16497
  .wd-xs-300p {
16498
    width: 300%;
16499
  }
16848 stevensc 16500
 
16825 efrain 16501
  .mx-wd-xs-300p {
16502
    max-width: 300%;
16503
  }
16848 stevensc 16504
 
16825 efrain 16505
  .mn-wd-xs-300p {
16506
    min-width: 300%;
16507
  }
16848 stevensc 16508
 
16825 efrain 16509
  .wd-xs-300-f {
16510
    width: 300px !important;
16511
  }
16848 stevensc 16512
 
16825 efrain 16513
  .wd-xs-300p-f {
16514
    width: 300% !important;
16515
  }
16848 stevensc 16516
 
16825 efrain 16517
  .mx-wd-xs-300p-f {
16518
    max-width: 300% !important;
16519
  }
16848 stevensc 16520
 
16825 efrain 16521
  .mn-wd-xs-300p-f {
16522
    min-width: 300% !important;
16523
  }
16848 stevensc 16524
 
16825 efrain 16525
  .wd-xs-350 {
16526
    width: 350px;
16527
  }
16848 stevensc 16528
 
16825 efrain 16529
  .wd-xs-350p {
16530
    width: 350%;
16531
  }
16848 stevensc 16532
 
16825 efrain 16533
  .mx-wd-xs-350p {
16534
    max-width: 350%;
16535
  }
16848 stevensc 16536
 
16825 efrain 16537
  .mn-wd-xs-350p {
16538
    min-width: 350%;
16539
  }
16848 stevensc 16540
 
16825 efrain 16541
  .wd-xs-350-f {
16542
    width: 350px !important;
16543
  }
16848 stevensc 16544
 
16825 efrain 16545
  .wd-xs-350p-f {
16546
    width: 350% !important;
16547
  }
16848 stevensc 16548
 
16825 efrain 16549
  .mx-wd-xs-350p-f {
16550
    max-width: 350% !important;
16551
  }
16848 stevensc 16552
 
16825 efrain 16553
  .mn-wd-xs-350p-f {
16554
    min-width: 350% !important;
16555
  }
16848 stevensc 16556
 
16825 efrain 16557
  .wd-xs-400 {
16558
    width: 400px;
16559
  }
16848 stevensc 16560
 
16825 efrain 16561
  .wd-xs-400p {
16562
    width: 400%;
16563
  }
16848 stevensc 16564
 
16825 efrain 16565
  .mx-wd-xs-400p {
16566
    max-width: 400%;
16567
  }
16848 stevensc 16568
 
16825 efrain 16569
  .mn-wd-xs-400p {
16570
    min-width: 400%;
16571
  }
16848 stevensc 16572
 
16825 efrain 16573
  .wd-xs-400-f {
16574
    width: 400px !important;
16575
  }
16848 stevensc 16576
 
16825 efrain 16577
  .wd-xs-400p-f {
16578
    width: 400% !important;
16579
  }
16848 stevensc 16580
 
16825 efrain 16581
  .mx-wd-xs-400p-f {
16582
    max-width: 400% !important;
16583
  }
16848 stevensc 16584
 
16825 efrain 16585
  .mn-wd-xs-400p-f {
16586
    min-width: 400% !important;
16587
  }
16848 stevensc 16588
 
16825 efrain 16589
  .wd-xs-450 {
16590
    width: 450px;
16591
  }
16848 stevensc 16592
 
16825 efrain 16593
  .wd-xs-450p {
16594
    width: 450%;
16595
  }
16848 stevensc 16596
 
16825 efrain 16597
  .mx-wd-xs-450p {
16598
    max-width: 450%;
16599
  }
16848 stevensc 16600
 
16825 efrain 16601
  .mn-wd-xs-450p {
16602
    min-width: 450%;
16603
  }
16848 stevensc 16604
 
16825 efrain 16605
  .wd-xs-450-f {
16606
    width: 450px !important;
16607
  }
16848 stevensc 16608
 
16825 efrain 16609
  .wd-xs-450p-f {
16610
    width: 450% !important;
16611
  }
16848 stevensc 16612
 
16825 efrain 16613
  .mx-wd-xs-450p-f {
16614
    max-width: 450% !important;
16615
  }
16848 stevensc 16616
 
16825 efrain 16617
  .mn-wd-xs-450p-f {
16618
    min-width: 450% !important;
16619
  }
16848 stevensc 16620
 
16825 efrain 16621
  .wd-xs-500 {
16622
    width: 500px;
16623
  }
16848 stevensc 16624
 
16825 efrain 16625
  .wd-xs-500p {
16626
    width: 500%;
16627
  }
16848 stevensc 16628
 
16825 efrain 16629
  .mx-wd-xs-500p {
16630
    max-width: 500%;
16631
  }
16848 stevensc 16632
 
16825 efrain 16633
  .mn-wd-xs-500p {
16634
    min-width: 500%;
16635
  }
16848 stevensc 16636
 
16825 efrain 16637
  .wd-xs-500-f {
16638
    width: 500px !important;
16639
  }
16848 stevensc 16640
 
16825 efrain 16641
  .wd-xs-500p-f {
16642
    width: 500% !important;
16643
  }
16848 stevensc 16644
 
16825 efrain 16645
  .mx-wd-xs-500p-f {
16646
    max-width: 500% !important;
16647
  }
16848 stevensc 16648
 
16825 efrain 16649
  .mn-wd-xs-500p-f {
16650
    min-width: 500% !important;
16651
  }
16848 stevensc 16652
 
16825 efrain 16653
  .wd-xs-550 {
16654
    width: 550px;
16655
  }
16848 stevensc 16656
 
16825 efrain 16657
  .wd-xs-550p {
16658
    width: 550%;
16659
  }
16848 stevensc 16660
 
16825 efrain 16661
  .mx-wd-xs-550p {
16662
    max-width: 550%;
16663
  }
16848 stevensc 16664
 
16825 efrain 16665
  .mn-wd-xs-550p {
16666
    min-width: 550%;
16667
  }
16848 stevensc 16668
 
16825 efrain 16669
  .wd-xs-550-f {
16670
    width: 550px !important;
16671
  }
16848 stevensc 16672
 
16825 efrain 16673
  .wd-xs-550p-f {
16674
    width: 550% !important;
16675
  }
16848 stevensc 16676
 
16825 efrain 16677
  .mx-wd-xs-550p-f {
16678
    max-width: 550% !important;
16679
  }
16848 stevensc 16680
 
16825 efrain 16681
  .mn-wd-xs-550p-f {
16682
    min-width: 550% !important;
16683
  }
16848 stevensc 16684
 
16825 efrain 16685
  .wd-xs-600 {
16686
    width: 600px;
16687
  }
16848 stevensc 16688
 
16825 efrain 16689
  .wd-xs-600p {
16690
    width: 600%;
16691
  }
16848 stevensc 16692
 
16825 efrain 16693
  .mx-wd-xs-600p {
16694
    max-width: 600%;
16695
  }
16848 stevensc 16696
 
16825 efrain 16697
  .mn-wd-xs-600p {
16698
    min-width: 600%;
16699
  }
16848 stevensc 16700
 
16825 efrain 16701
  .wd-xs-600-f {
16702
    width: 600px !important;
16703
  }
16848 stevensc 16704
 
16825 efrain 16705
  .wd-xs-600p-f {
16706
    width: 600% !important;
16707
  }
16848 stevensc 16708
 
16825 efrain 16709
  .mx-wd-xs-600p-f {
16710
    max-width: 600% !important;
16711
  }
16848 stevensc 16712
 
16825 efrain 16713
  .mn-wd-xs-600p-f {
16714
    min-width: 600% !important;
16715
  }
16848 stevensc 16716
 
16825 efrain 16717
  .wd-xs-650 {
16718
    width: 650px;
16719
  }
16848 stevensc 16720
 
16825 efrain 16721
  .wd-xs-650p {
16722
    width: 650%;
16723
  }
16848 stevensc 16724
 
16825 efrain 16725
  .mx-wd-xs-650p {
16726
    max-width: 650%;
16727
  }
16848 stevensc 16728
 
16825 efrain 16729
  .mn-wd-xs-650p {
16730
    min-width: 650%;
16731
  }
16848 stevensc 16732
 
16825 efrain 16733
  .wd-xs-650-f {
16734
    width: 650px !important;
16735
  }
16848 stevensc 16736
 
16825 efrain 16737
  .wd-xs-650p-f {
16738
    width: 650% !important;
16739
  }
16848 stevensc 16740
 
16825 efrain 16741
  .mx-wd-xs-650p-f {
16742
    max-width: 650% !important;
16743
  }
16848 stevensc 16744
 
16825 efrain 16745
  .mn-wd-xs-650p-f {
16746
    min-width: 650% !important;
16747
  }
16848 stevensc 16748
 
16825 efrain 16749
  .wd-xs-700 {
16750
    width: 700px;
16751
  }
16848 stevensc 16752
 
16825 efrain 16753
  .wd-xs-700p {
16754
    width: 700%;
16755
  }
16848 stevensc 16756
 
16825 efrain 16757
  .mx-wd-xs-700p {
16758
    max-width: 700%;
16759
  }
16848 stevensc 16760
 
16825 efrain 16761
  .mn-wd-xs-700p {
16762
    min-width: 700%;
16763
  }
16848 stevensc 16764
 
16825 efrain 16765
  .wd-xs-700-f {
16766
    width: 700px !important;
16767
  }
16848 stevensc 16768
 
16825 efrain 16769
  .wd-xs-700p-f {
16770
    width: 700% !important;
16771
  }
16848 stevensc 16772
 
16825 efrain 16773
  .mx-wd-xs-700p-f {
16774
    max-width: 700% !important;
16775
  }
16848 stevensc 16776
 
16825 efrain 16777
  .mn-wd-xs-700p-f {
16778
    min-width: 700% !important;
16779
  }
16848 stevensc 16780
 
16825 efrain 16781
  .wd-xs-750 {
16782
    width: 750px;
16783
  }
16848 stevensc 16784
 
16825 efrain 16785
  .wd-xs-750p {
16786
    width: 750%;
16787
  }
16848 stevensc 16788
 
16825 efrain 16789
  .mx-wd-xs-750p {
16790
    max-width: 750%;
16791
  }
16848 stevensc 16792
 
16825 efrain 16793
  .mn-wd-xs-750p {
16794
    min-width: 750%;
16795
  }
16848 stevensc 16796
 
16825 efrain 16797
  .wd-xs-750-f {
16798
    width: 750px !important;
16799
  }
16848 stevensc 16800
 
16825 efrain 16801
  .wd-xs-750p-f {
16802
    width: 750% !important;
16803
  }
16848 stevensc 16804
 
16825 efrain 16805
  .mx-wd-xs-750p-f {
16806
    max-width: 750% !important;
16807
  }
16848 stevensc 16808
 
16825 efrain 16809
  .mn-wd-xs-750p-f {
16810
    min-width: 750% !important;
16811
  }
16848 stevensc 16812
 
16825 efrain 16813
  .wd-xs-800 {
16814
    width: 800px;
16815
  }
16848 stevensc 16816
 
16825 efrain 16817
  .wd-xs-800p {
16818
    width: 800%;
16819
  }
16848 stevensc 16820
 
16825 efrain 16821
  .mx-wd-xs-800p {
16822
    max-width: 800%;
16823
  }
16848 stevensc 16824
 
16825 efrain 16825
  .mn-wd-xs-800p {
16826
    min-width: 800%;
16827
  }
16848 stevensc 16828
 
16825 efrain 16829
  .wd-xs-800-f {
16830
    width: 800px !important;
16831
  }
16848 stevensc 16832
 
16825 efrain 16833
  .wd-xs-800p-f {
16834
    width: 800% !important;
16835
  }
16848 stevensc 16836
 
16825 efrain 16837
  .mx-wd-xs-800p-f {
16838
    max-width: 800% !important;
16839
  }
16848 stevensc 16840
 
16825 efrain 16841
  .mn-wd-xs-800p-f {
16842
    min-width: 800% !important;
16843
  }
16848 stevensc 16844
 
16825 efrain 16845
  .wd-xs-850 {
16846
    width: 850px;
16847
  }
16848 stevensc 16848
 
16825 efrain 16849
  .wd-xs-850p {
16850
    width: 850%;
16851
  }
16848 stevensc 16852
 
16825 efrain 16853
  .mx-wd-xs-850p {
16854
    max-width: 850%;
16855
  }
16848 stevensc 16856
 
16825 efrain 16857
  .mn-wd-xs-850p {
16858
    min-width: 850%;
16859
  }
16848 stevensc 16860
 
16825 efrain 16861
  .wd-xs-850-f {
16862
    width: 850px !important;
16863
  }
16848 stevensc 16864
 
16825 efrain 16865
  .wd-xs-850p-f {
16866
    width: 850% !important;
16867
  }
16848 stevensc 16868
 
16825 efrain 16869
  .mx-wd-xs-850p-f {
16870
    max-width: 850% !important;
16871
  }
16848 stevensc 16872
 
16825 efrain 16873
  .mn-wd-xs-850p-f {
16874
    min-width: 850% !important;
16875
  }
16848 stevensc 16876
 
16825 efrain 16877
  .wd-xs-900 {
16878
    width: 900px;
16879
  }
16848 stevensc 16880
 
16825 efrain 16881
  .wd-xs-900p {
16882
    width: 900%;
16883
  }
16848 stevensc 16884
 
16825 efrain 16885
  .mx-wd-xs-900p {
16886
    max-width: 900%;
16887
  }
16848 stevensc 16888
 
16825 efrain 16889
  .mn-wd-xs-900p {
16890
    min-width: 900%;
16891
  }
16848 stevensc 16892
 
16825 efrain 16893
  .wd-xs-900-f {
16894
    width: 900px !important;
16895
  }
16848 stevensc 16896
 
16825 efrain 16897
  .wd-xs-900p-f {
16898
    width: 900% !important;
16899
  }
16848 stevensc 16900
 
16825 efrain 16901
  .mx-wd-xs-900p-f {
16902
    max-width: 900% !important;
16903
  }
16848 stevensc 16904
 
16825 efrain 16905
  .mn-wd-xs-900p-f {
16906
    min-width: 900% !important;
16907
  }
16848 stevensc 16908
 
16825 efrain 16909
  .wd-xs-950 {
16910
    width: 950px;
16911
  }
16848 stevensc 16912
 
16825 efrain 16913
  .wd-xs-950p {
16914
    width: 950%;
16915
  }
16848 stevensc 16916
 
16825 efrain 16917
  .mx-wd-xs-950p {
16918
    max-width: 950%;
16919
  }
16848 stevensc 16920
 
16825 efrain 16921
  .mn-wd-xs-950p {
16922
    min-width: 950%;
16923
  }
16848 stevensc 16924
 
16825 efrain 16925
  .wd-xs-950-f {
16926
    width: 950px !important;
16927
  }
16848 stevensc 16928
 
16825 efrain 16929
  .wd-xs-950p-f {
16930
    width: 950% !important;
16931
  }
16848 stevensc 16932
 
16825 efrain 16933
  .mx-wd-xs-950p-f {
16934
    max-width: 950% !important;
16935
  }
16848 stevensc 16936
 
16825 efrain 16937
  .mn-wd-xs-950p-f {
16938
    min-width: 950% !important;
16939
  }
16848 stevensc 16940
 
16825 efrain 16941
  .wd-xs-1000 {
16942
    width: 1000px;
16943
  }
16848 stevensc 16944
 
16825 efrain 16945
  .wd-xs-1000p {
16946
    width: 1000%;
16947
  }
16848 stevensc 16948
 
16825 efrain 16949
  .mx-wd-xs-1000p {
16950
    max-width: 1000%;
16951
  }
16848 stevensc 16952
 
16825 efrain 16953
  .mn-wd-xs-1000p {
16954
    min-width: 1000%;
16955
  }
16848 stevensc 16956
 
16825 efrain 16957
  .wd-xs-1000-f {
16958
    width: 1000px !important;
16959
  }
16848 stevensc 16960
 
16825 efrain 16961
  .wd-xs-1000p-f {
16962
    width: 1000% !important;
16963
  }
16848 stevensc 16964
 
16825 efrain 16965
  .mx-wd-xs-1000p-f {
16966
    max-width: 1000% !important;
16967
  }
16848 stevensc 16968
 
16825 efrain 16969
  .mn-wd-xs-1000p-f {
16970
    min-width: 1000% !important;
16971
  }
16848 stevensc 16972
 
16825 efrain 16973
  .wd-xs-auto {
16974
    width: auto;
16975
  }
16848 stevensc 16976
 
16825 efrain 16977
  .wd-xs-auto-f {
16978
    width: auto !important;
16979
  }
16980
}
16848 stevensc 16981
 
16825 efrain 16982
@media (min-width: 576px) {
16983
  .wd-sm-5 {
16984
    width: 5px;
16985
  }
16848 stevensc 16986
 
16825 efrain 16987
  .wd-sm-5p {
16988
    width: 5%;
16989
  }
16848 stevensc 16990
 
16825 efrain 16991
  .mx-wd-sm-5p {
16992
    max-width: 5%;
16993
  }
16848 stevensc 16994
 
16825 efrain 16995
  .mn-wd-sm-5p {
16996
    min-width: 5%;
16997
  }
16848 stevensc 16998
 
16825 efrain 16999
  .wd-sm-5-f {
17000
    width: 5px !important;
17001
  }
16848 stevensc 17002
 
16825 efrain 17003
  .wd-sm-5p-f {
17004
    width: 5% !important;
17005
  }
16848 stevensc 17006
 
16825 efrain 17007
  .mx-wd-sm-5p-f {
17008
    max-width: 5% !important;
17009
  }
16848 stevensc 17010
 
16825 efrain 17011
  .mn-wd-sm-5p-f {
17012
    min-width: 5% !important;
17013
  }
16848 stevensc 17014
 
16825 efrain 17015
  .wd-sm-10 {
17016
    width: 10px;
17017
  }
16848 stevensc 17018
 
16825 efrain 17019
  .wd-sm-10p {
17020
    width: 10%;
17021
  }
16848 stevensc 17022
 
16825 efrain 17023
  .mx-wd-sm-10p {
17024
    max-width: 10%;
17025
  }
16848 stevensc 17026
 
16825 efrain 17027
  .mn-wd-sm-10p {
17028
    min-width: 10%;
17029
  }
16848 stevensc 17030
 
16825 efrain 17031
  .wd-sm-10-f {
17032
    width: 10px !important;
17033
  }
16848 stevensc 17034
 
16825 efrain 17035
  .wd-sm-10p-f {
17036
    width: 10% !important;
17037
  }
16848 stevensc 17038
 
16825 efrain 17039
  .mx-wd-sm-10p-f {
17040
    max-width: 10% !important;
17041
  }
16848 stevensc 17042
 
16825 efrain 17043
  .mn-wd-sm-10p-f {
17044
    min-width: 10% !important;
17045
  }
16848 stevensc 17046
 
16825 efrain 17047
  .wd-sm-15 {
17048
    width: 15px;
17049
  }
16848 stevensc 17050
 
16825 efrain 17051
  .wd-sm-15p {
17052
    width: 15%;
17053
  }
16848 stevensc 17054
 
16825 efrain 17055
  .mx-wd-sm-15p {
17056
    max-width: 15%;
17057
  }
16848 stevensc 17058
 
16825 efrain 17059
  .mn-wd-sm-15p {
17060
    min-width: 15%;
17061
  }
16848 stevensc 17062
 
16825 efrain 17063
  .wd-sm-15-f {
17064
    width: 15px !important;
17065
  }
16848 stevensc 17066
 
16825 efrain 17067
  .wd-sm-15p-f {
17068
    width: 15% !important;
17069
  }
16848 stevensc 17070
 
16825 efrain 17071
  .mx-wd-sm-15p-f {
17072
    max-width: 15% !important;
17073
  }
16848 stevensc 17074
 
16825 efrain 17075
  .mn-wd-sm-15p-f {
17076
    min-width: 15% !important;
17077
  }
16848 stevensc 17078
 
16825 efrain 17079
  .wd-sm-20 {
17080
    width: 20px;
17081
  }
16848 stevensc 17082
 
16825 efrain 17083
  .wd-sm-20p {
17084
    width: 20%;
17085
  }
16848 stevensc 17086
 
16825 efrain 17087
  .mx-wd-sm-20p {
17088
    max-width: 20%;
17089
  }
16848 stevensc 17090
 
16825 efrain 17091
  .mn-wd-sm-20p {
17092
    min-width: 20%;
17093
  }
16848 stevensc 17094
 
16825 efrain 17095
  .wd-sm-20-f {
17096
    width: 20px !important;
17097
  }
16848 stevensc 17098
 
16825 efrain 17099
  .wd-sm-20p-f {
17100
    width: 20% !important;
17101
  }
16848 stevensc 17102
 
16825 efrain 17103
  .mx-wd-sm-20p-f {
17104
    max-width: 20% !important;
17105
  }
16848 stevensc 17106
 
16825 efrain 17107
  .mn-wd-sm-20p-f {
17108
    min-width: 20% !important;
17109
  }
16848 stevensc 17110
 
16825 efrain 17111
  .wd-sm-25 {
17112
    width: 25px;
17113
  }
16848 stevensc 17114
 
16825 efrain 17115
  .wd-sm-25p {
17116
    width: 25%;
17117
  }
16848 stevensc 17118
 
16825 efrain 17119
  .mx-wd-sm-25p {
17120
    max-width: 25%;
17121
  }
16848 stevensc 17122
 
16825 efrain 17123
  .mn-wd-sm-25p {
17124
    min-width: 25%;
17125
  }
16848 stevensc 17126
 
16825 efrain 17127
  .wd-sm-25-f {
17128
    width: 25px !important;
17129
  }
16848 stevensc 17130
 
16825 efrain 17131
  .wd-sm-25p-f {
17132
    width: 25% !important;
17133
  }
16848 stevensc 17134
 
16825 efrain 17135
  .mx-wd-sm-25p-f {
17136
    max-width: 25% !important;
17137
  }
16848 stevensc 17138
 
16825 efrain 17139
  .mn-wd-sm-25p-f {
17140
    min-width: 25% !important;
17141
  }
16848 stevensc 17142
 
16825 efrain 17143
  .wd-sm-30 {
17144
    width: 30px;
17145
  }
16848 stevensc 17146
 
16825 efrain 17147
  .wd-sm-30p {
17148
    width: 30%;
17149
  }
16848 stevensc 17150
 
16825 efrain 17151
  .mx-wd-sm-30p {
17152
    max-width: 30%;
17153
  }
16848 stevensc 17154
 
16825 efrain 17155
  .mn-wd-sm-30p {
17156
    min-width: 30%;
17157
  }
16848 stevensc 17158
 
16825 efrain 17159
  .wd-sm-30-f {
17160
    width: 30px !important;
17161
  }
16848 stevensc 17162
 
16825 efrain 17163
  .wd-sm-30p-f {
17164
    width: 30% !important;
17165
  }
16848 stevensc 17166
 
16825 efrain 17167
  .mx-wd-sm-30p-f {
17168
    max-width: 30% !important;
17169
  }
16848 stevensc 17170
 
16825 efrain 17171
  .mn-wd-sm-30p-f {
17172
    min-width: 30% !important;
17173
  }
16848 stevensc 17174
 
16825 efrain 17175
  .wd-sm-35 {
17176
    width: 35px;
17177
  }
16848 stevensc 17178
 
16825 efrain 17179
  .wd-sm-35p {
17180
    width: 35%;
17181
  }
16848 stevensc 17182
 
16825 efrain 17183
  .mx-wd-sm-35p {
17184
    max-width: 35%;
17185
  }
16848 stevensc 17186
 
16825 efrain 17187
  .mn-wd-sm-35p {
17188
    min-width: 35%;
17189
  }
16848 stevensc 17190
 
16825 efrain 17191
  .wd-sm-35-f {
17192
    width: 35px !important;
17193
  }
16848 stevensc 17194
 
16825 efrain 17195
  .wd-sm-35p-f {
17196
    width: 35% !important;
17197
  }
16848 stevensc 17198
 
16825 efrain 17199
  .mx-wd-sm-35p-f {
17200
    max-width: 35% !important;
17201
  }
16848 stevensc 17202
 
16825 efrain 17203
  .mn-wd-sm-35p-f {
17204
    min-width: 35% !important;
17205
  }
16848 stevensc 17206
 
16825 efrain 17207
  .wd-sm-40 {
17208
    width: 40px;
17209
  }
16848 stevensc 17210
 
16825 efrain 17211
  .wd-sm-40p {
17212
    width: 40%;
17213
  }
16848 stevensc 17214
 
16825 efrain 17215
  .mx-wd-sm-40p {
17216
    max-width: 40%;
17217
  }
16848 stevensc 17218
 
16825 efrain 17219
  .mn-wd-sm-40p {
17220
    min-width: 40%;
17221
  }
16848 stevensc 17222
 
16825 efrain 17223
  .wd-sm-40-f {
17224
    width: 40px !important;
17225
  }
16848 stevensc 17226
 
16825 efrain 17227
  .wd-sm-40p-f {
17228
    width: 40% !important;
17229
  }
16848 stevensc 17230
 
16825 efrain 17231
  .mx-wd-sm-40p-f {
17232
    max-width: 40% !important;
17233
  }
16848 stevensc 17234
 
16825 efrain 17235
  .mn-wd-sm-40p-f {
17236
    min-width: 40% !important;
17237
  }
16848 stevensc 17238
 
16825 efrain 17239
  .wd-sm-45 {
17240
    width: 45px;
17241
  }
16848 stevensc 17242
 
16825 efrain 17243
  .wd-sm-45p {
17244
    width: 45%;
17245
  }
16848 stevensc 17246
 
16825 efrain 17247
  .mx-wd-sm-45p {
17248
    max-width: 45%;
17249
  }
16848 stevensc 17250
 
16825 efrain 17251
  .mn-wd-sm-45p {
17252
    min-width: 45%;
17253
  }
16848 stevensc 17254
 
16825 efrain 17255
  .wd-sm-45-f {
17256
    width: 45px !important;
17257
  }
16848 stevensc 17258
 
16825 efrain 17259
  .wd-sm-45p-f {
17260
    width: 45% !important;
17261
  }
16848 stevensc 17262
 
16825 efrain 17263
  .mx-wd-sm-45p-f {
17264
    max-width: 45% !important;
17265
  }
16848 stevensc 17266
 
16825 efrain 17267
  .mn-wd-sm-45p-f {
17268
    min-width: 45% !important;
17269
  }
16848 stevensc 17270
 
16825 efrain 17271
  .wd-sm-50 {
17272
    width: 50px;
17273
  }
16848 stevensc 17274
 
16825 efrain 17275
  .wd-sm-50p {
17276
    width: 50%;
17277
  }
16848 stevensc 17278
 
16825 efrain 17279
  .mx-wd-sm-50p {
17280
    max-width: 50%;
17281
  }
16848 stevensc 17282
 
16825 efrain 17283
  .mn-wd-sm-50p {
17284
    min-width: 50%;
17285
  }
16848 stevensc 17286
 
16825 efrain 17287
  .wd-sm-50-f {
17288
    width: 50px !important;
17289
  }
16848 stevensc 17290
 
16825 efrain 17291
  .wd-sm-50p-f {
17292
    width: 50% !important;
17293
  }
16848 stevensc 17294
 
16825 efrain 17295
  .mx-wd-sm-50p-f {
17296
    max-width: 50% !important;
17297
  }
16848 stevensc 17298
 
16825 efrain 17299
  .mn-wd-sm-50p-f {
17300
    min-width: 50% !important;
17301
  }
16848 stevensc 17302
 
16825 efrain 17303
  .wd-sm-55 {
17304
    width: 55px;
17305
  }
16848 stevensc 17306
 
16825 efrain 17307
  .wd-sm-55p {
17308
    width: 55%;
17309
  }
16848 stevensc 17310
 
16825 efrain 17311
  .mx-wd-sm-55p {
17312
    max-width: 55%;
17313
  }
16848 stevensc 17314
 
16825 efrain 17315
  .mn-wd-sm-55p {
17316
    min-width: 55%;
17317
  }
16848 stevensc 17318
 
16825 efrain 17319
  .wd-sm-55-f {
17320
    width: 55px !important;
17321
  }
16848 stevensc 17322
 
16825 efrain 17323
  .wd-sm-55p-f {
17324
    width: 55% !important;
17325
  }
16848 stevensc 17326
 
16825 efrain 17327
  .mx-wd-sm-55p-f {
17328
    max-width: 55% !important;
17329
  }
16848 stevensc 17330
 
16825 efrain 17331
  .mn-wd-sm-55p-f {
17332
    min-width: 55% !important;
17333
  }
16848 stevensc 17334
 
16825 efrain 17335
  .wd-sm-60 {
17336
    width: 60px;
17337
  }
16848 stevensc 17338
 
16825 efrain 17339
  .wd-sm-60p {
17340
    width: 60%;
17341
  }
16848 stevensc 17342
 
16825 efrain 17343
  .mx-wd-sm-60p {
17344
    max-width: 60%;
17345
  }
16848 stevensc 17346
 
16825 efrain 17347
  .mn-wd-sm-60p {
17348
    min-width: 60%;
17349
  }
16848 stevensc 17350
 
16825 efrain 17351
  .wd-sm-60-f {
17352
    width: 60px !important;
17353
  }
16848 stevensc 17354
 
16825 efrain 17355
  .wd-sm-60p-f {
17356
    width: 60% !important;
17357
  }
16848 stevensc 17358
 
16825 efrain 17359
  .mx-wd-sm-60p-f {
17360
    max-width: 60% !important;
17361
  }
16848 stevensc 17362
 
16825 efrain 17363
  .mn-wd-sm-60p-f {
17364
    min-width: 60% !important;
17365
  }
16848 stevensc 17366
 
16825 efrain 17367
  .wd-sm-65 {
17368
    width: 65px;
17369
  }
16848 stevensc 17370
 
16825 efrain 17371
  .wd-sm-65p {
17372
    width: 65%;
17373
  }
16848 stevensc 17374
 
16825 efrain 17375
  .mx-wd-sm-65p {
17376
    max-width: 65%;
17377
  }
16848 stevensc 17378
 
16825 efrain 17379
  .mn-wd-sm-65p {
17380
    min-width: 65%;
17381
  }
16848 stevensc 17382
 
16825 efrain 17383
  .wd-sm-65-f {
17384
    width: 65px !important;
17385
  }
16848 stevensc 17386
 
16825 efrain 17387
  .wd-sm-65p-f {
17388
    width: 65% !important;
17389
  }
16848 stevensc 17390
 
16825 efrain 17391
  .mx-wd-sm-65p-f {
17392
    max-width: 65% !important;
17393
  }
16848 stevensc 17394
 
16825 efrain 17395
  .mn-wd-sm-65p-f {
17396
    min-width: 65% !important;
17397
  }
16848 stevensc 17398
 
16825 efrain 17399
  .wd-sm-70 {
17400
    width: 70px;
17401
  }
16848 stevensc 17402
 
16825 efrain 17403
  .wd-sm-70p {
17404
    width: 70%;
17405
  }
16848 stevensc 17406
 
16825 efrain 17407
  .mx-wd-sm-70p {
17408
    max-width: 70%;
17409
  }
16848 stevensc 17410
 
16825 efrain 17411
  .mn-wd-sm-70p {
17412
    min-width: 70%;
17413
  }
16848 stevensc 17414
 
16825 efrain 17415
  .wd-sm-70-f {
17416
    width: 70px !important;
17417
  }
16848 stevensc 17418
 
16825 efrain 17419
  .wd-sm-70p-f {
17420
    width: 70% !important;
17421
  }
16848 stevensc 17422
 
16825 efrain 17423
  .mx-wd-sm-70p-f {
17424
    max-width: 70% !important;
17425
  }
16848 stevensc 17426
 
16825 efrain 17427
  .mn-wd-sm-70p-f {
17428
    min-width: 70% !important;
17429
  }
16848 stevensc 17430
 
16825 efrain 17431
  .wd-sm-75 {
17432
    width: 75px;
17433
  }
16848 stevensc 17434
 
16825 efrain 17435
  .wd-sm-75p {
17436
    width: 75%;
17437
  }
16848 stevensc 17438
 
16825 efrain 17439
  .mx-wd-sm-75p {
17440
    max-width: 75%;
17441
  }
16848 stevensc 17442
 
16825 efrain 17443
  .mn-wd-sm-75p {
17444
    min-width: 75%;
17445
  }
16848 stevensc 17446
 
16825 efrain 17447
  .wd-sm-75-f {
17448
    width: 75px !important;
17449
  }
16848 stevensc 17450
 
16825 efrain 17451
  .wd-sm-75p-f {
17452
    width: 75% !important;
17453
  }
16848 stevensc 17454
 
16825 efrain 17455
  .mx-wd-sm-75p-f {
17456
    max-width: 75% !important;
17457
  }
16848 stevensc 17458
 
16825 efrain 17459
  .mn-wd-sm-75p-f {
17460
    min-width: 75% !important;
17461
  }
16848 stevensc 17462
 
16825 efrain 17463
  .wd-sm-80 {
17464
    width: 80px;
17465
  }
16848 stevensc 17466
 
16825 efrain 17467
  .wd-sm-80p {
17468
    width: 80%;
17469
  }
16848 stevensc 17470
 
16825 efrain 17471
  .mx-wd-sm-80p {
17472
    max-width: 80%;
17473
  }
16848 stevensc 17474
 
16825 efrain 17475
  .mn-wd-sm-80p {
17476
    min-width: 80%;
17477
  }
16848 stevensc 17478
 
16825 efrain 17479
  .wd-sm-80-f {
17480
    width: 80px !important;
17481
  }
16848 stevensc 17482
 
16825 efrain 17483
  .wd-sm-80p-f {
17484
    width: 80% !important;
17485
  }
16848 stevensc 17486
 
16825 efrain 17487
  .mx-wd-sm-80p-f {
17488
    max-width: 80% !important;
17489
  }
16848 stevensc 17490
 
16825 efrain 17491
  .mn-wd-sm-80p-f {
17492
    min-width: 80% !important;
17493
  }
16848 stevensc 17494
 
16825 efrain 17495
  .wd-sm-85 {
17496
    width: 85px;
17497
  }
16848 stevensc 17498
 
16825 efrain 17499
  .wd-sm-85p {
17500
    width: 85%;
17501
  }
16848 stevensc 17502
 
16825 efrain 17503
  .mx-wd-sm-85p {
17504
    max-width: 85%;
17505
  }
16848 stevensc 17506
 
16825 efrain 17507
  .mn-wd-sm-85p {
17508
    min-width: 85%;
17509
  }
16848 stevensc 17510
 
16825 efrain 17511
  .wd-sm-85-f {
17512
    width: 85px !important;
17513
  }
16848 stevensc 17514
 
16825 efrain 17515
  .wd-sm-85p-f {
17516
    width: 85% !important;
17517
  }
16848 stevensc 17518
 
16825 efrain 17519
  .mx-wd-sm-85p-f {
17520
    max-width: 85% !important;
17521
  }
16848 stevensc 17522
 
16825 efrain 17523
  .mn-wd-sm-85p-f {
17524
    min-width: 85% !important;
17525
  }
16848 stevensc 17526
 
16825 efrain 17527
  .wd-sm-90 {
17528
    width: 90px;
17529
  }
16848 stevensc 17530
 
16825 efrain 17531
  .wd-sm-90p {
17532
    width: 90%;
17533
  }
16848 stevensc 17534
 
16825 efrain 17535
  .mx-wd-sm-90p {
17536
    max-width: 90%;
17537
  }
16848 stevensc 17538
 
16825 efrain 17539
  .mn-wd-sm-90p {
17540
    min-width: 90%;
17541
  }
16848 stevensc 17542
 
16825 efrain 17543
  .wd-sm-90-f {
17544
    width: 90px !important;
17545
  }
16848 stevensc 17546
 
16825 efrain 17547
  .wd-sm-90p-f {
17548
    width: 90% !important;
17549
  }
16848 stevensc 17550
 
16825 efrain 17551
  .mx-wd-sm-90p-f {
17552
    max-width: 90% !important;
17553
  }
16848 stevensc 17554
 
16825 efrain 17555
  .mn-wd-sm-90p-f {
17556
    min-width: 90% !important;
17557
  }
16848 stevensc 17558
 
16825 efrain 17559
  .wd-sm-95 {
17560
    width: 95px;
17561
  }
16848 stevensc 17562
 
16825 efrain 17563
  .wd-sm-95p {
17564
    width: 95%;
17565
  }
16848 stevensc 17566
 
16825 efrain 17567
  .mx-wd-sm-95p {
17568
    max-width: 95%;
17569
  }
16848 stevensc 17570
 
16825 efrain 17571
  .mn-wd-sm-95p {
17572
    min-width: 95%;
17573
  }
16848 stevensc 17574
 
16825 efrain 17575
  .wd-sm-95-f {
17576
    width: 95px !important;
17577
  }
16848 stevensc 17578
 
16825 efrain 17579
  .wd-sm-95p-f {
17580
    width: 95% !important;
17581
  }
16848 stevensc 17582
 
16825 efrain 17583
  .mx-wd-sm-95p-f {
17584
    max-width: 95% !important;
17585
  }
16848 stevensc 17586
 
16825 efrain 17587
  .mn-wd-sm-95p-f {
17588
    min-width: 95% !important;
17589
  }
16848 stevensc 17590
 
16825 efrain 17591
  .wd-sm-100 {
17592
    width: 100px;
17593
  }
16848 stevensc 17594
 
16825 efrain 17595
  .wd-sm-100p {
17596
    width: 100%;
17597
  }
16848 stevensc 17598
 
16825 efrain 17599
  .mx-wd-sm-100p {
17600
    max-width: 100%;
17601
  }
16848 stevensc 17602
 
16825 efrain 17603
  .mn-wd-sm-100p {
17604
    min-width: 100%;
17605
  }
16848 stevensc 17606
 
16825 efrain 17607
  .wd-sm-100-f {
17608
    width: 100px !important;
17609
  }
16848 stevensc 17610
 
16825 efrain 17611
  .wd-sm-100p-f {
17612
    width: 100% !important;
17613
  }
16848 stevensc 17614
 
16825 efrain 17615
  .mx-wd-sm-100p-f {
17616
    max-width: 100% !important;
17617
  }
16848 stevensc 17618
 
16825 efrain 17619
  .mn-wd-sm-100p-f {
17620
    min-width: 100% !important;
17621
  }
16848 stevensc 17622
 
16825 efrain 17623
  .wd-sm-150 {
17624
    width: 150px;
17625
  }
16848 stevensc 17626
 
16825 efrain 17627
  .wd-sm-150p {
17628
    width: 150%;
17629
  }
16848 stevensc 17630
 
16825 efrain 17631
  .mx-wd-sm-150p {
17632
    max-width: 150%;
17633
  }
16848 stevensc 17634
 
16825 efrain 17635
  .mn-wd-sm-150p {
17636
    min-width: 150%;
17637
  }
16848 stevensc 17638
 
16825 efrain 17639
  .wd-sm-150-f {
17640
    width: 150px !important;
17641
  }
16848 stevensc 17642
 
16825 efrain 17643
  .wd-sm-150p-f {
17644
    width: 150% !important;
17645
  }
16848 stevensc 17646
 
16825 efrain 17647
  .mx-wd-sm-150p-f {
17648
    max-width: 150% !important;
17649
  }
16848 stevensc 17650
 
16825 efrain 17651
  .mn-wd-sm-150p-f {
17652
    min-width: 150% !important;
17653
  }
16848 stevensc 17654
 
16825 efrain 17655
  .wd-sm-200 {
17656
    width: 200px;
17657
  }
16848 stevensc 17658
 
16825 efrain 17659
  .wd-sm-200p {
17660
    width: 200%;
17661
  }
16848 stevensc 17662
 
16825 efrain 17663
  .mx-wd-sm-200p {
17664
    max-width: 200%;
17665
  }
16848 stevensc 17666
 
16825 efrain 17667
  .mn-wd-sm-200p {
17668
    min-width: 200%;
17669
  }
16848 stevensc 17670
 
16825 efrain 17671
  .wd-sm-200-f {
17672
    width: 200px !important;
17673
  }
16848 stevensc 17674
 
16825 efrain 17675
  .wd-sm-200p-f {
17676
    width: 200% !important;
17677
  }
16848 stevensc 17678
 
16825 efrain 17679
  .mx-wd-sm-200p-f {
17680
    max-width: 200% !important;
17681
  }
16848 stevensc 17682
 
16825 efrain 17683
  .mn-wd-sm-200p-f {
17684
    min-width: 200% !important;
17685
  }
16848 stevensc 17686
 
16825 efrain 17687
  .wd-sm-250 {
17688
    width: 250px;
17689
  }
16848 stevensc 17690
 
16825 efrain 17691
  .wd-sm-250p {
17692
    width: 250%;
17693
  }
16848 stevensc 17694
 
16825 efrain 17695
  .mx-wd-sm-250p {
17696
    max-width: 250%;
17697
  }
16848 stevensc 17698
 
16825 efrain 17699
  .mn-wd-sm-250p {
17700
    min-width: 250%;
17701
  }
16848 stevensc 17702
 
16825 efrain 17703
  .wd-sm-250-f {
17704
    width: 250px !important;
17705
  }
16848 stevensc 17706
 
16825 efrain 17707
  .wd-sm-250p-f {
17708
    width: 250% !important;
17709
  }
16848 stevensc 17710
 
16825 efrain 17711
  .mx-wd-sm-250p-f {
17712
    max-width: 250% !important;
17713
  }
16848 stevensc 17714
 
16825 efrain 17715
  .mn-wd-sm-250p-f {
17716
    min-width: 250% !important;
17717
  }
16848 stevensc 17718
 
16825 efrain 17719
  .wd-sm-300 {
17720
    width: 300px;
17721
  }
16848 stevensc 17722
 
16825 efrain 17723
  .wd-sm-300p {
17724
    width: 300%;
17725
  }
16848 stevensc 17726
 
16825 efrain 17727
  .mx-wd-sm-300p {
17728
    max-width: 300%;
17729
  }
16848 stevensc 17730
 
16825 efrain 17731
  .mn-wd-sm-300p {
17732
    min-width: 300%;
17733
  }
16848 stevensc 17734
 
16825 efrain 17735
  .wd-sm-300-f {
17736
    width: 300px !important;
17737
  }
16848 stevensc 17738
 
16825 efrain 17739
  .wd-sm-300p-f {
17740
    width: 300% !important;
17741
  }
16848 stevensc 17742
 
16825 efrain 17743
  .mx-wd-sm-300p-f {
17744
    max-width: 300% !important;
17745
  }
16848 stevensc 17746
 
16825 efrain 17747
  .mn-wd-sm-300p-f {
17748
    min-width: 300% !important;
17749
  }
16848 stevensc 17750
 
16825 efrain 17751
  .wd-sm-350 {
17752
    width: 350px;
17753
  }
16848 stevensc 17754
 
16825 efrain 17755
  .wd-sm-350p {
17756
    width: 350%;
17757
  }
16848 stevensc 17758
 
16825 efrain 17759
  .mx-wd-sm-350p {
17760
    max-width: 350%;
17761
  }
16848 stevensc 17762
 
16825 efrain 17763
  .mn-wd-sm-350p {
17764
    min-width: 350%;
17765
  }
16848 stevensc 17766
 
16825 efrain 17767
  .wd-sm-350-f {
17768
    width: 350px !important;
17769
  }
16848 stevensc 17770
 
16825 efrain 17771
  .wd-sm-350p-f {
17772
    width: 350% !important;
17773
  }
16848 stevensc 17774
 
16825 efrain 17775
  .mx-wd-sm-350p-f {
17776
    max-width: 350% !important;
17777
  }
16848 stevensc 17778
 
16825 efrain 17779
  .mn-wd-sm-350p-f {
17780
    min-width: 350% !important;
17781
  }
16848 stevensc 17782
 
16825 efrain 17783
  .wd-sm-400 {
17784
    width: 400px;
17785
  }
16848 stevensc 17786
 
16825 efrain 17787
  .wd-sm-400p {
17788
    width: 400%;
17789
  }
16848 stevensc 17790
 
16825 efrain 17791
  .mx-wd-sm-400p {
17792
    max-width: 400%;
17793
  }
16848 stevensc 17794
 
16825 efrain 17795
  .mn-wd-sm-400p {
17796
    min-width: 400%;
17797
  }
16848 stevensc 17798
 
16825 efrain 17799
  .wd-sm-400-f {
17800
    width: 400px !important;
17801
  }
16848 stevensc 17802
 
16825 efrain 17803
  .wd-sm-400p-f {
17804
    width: 400% !important;
17805
  }
16848 stevensc 17806
 
16825 efrain 17807
  .mx-wd-sm-400p-f {
17808
    max-width: 400% !important;
17809
  }
16848 stevensc 17810
 
16825 efrain 17811
  .mn-wd-sm-400p-f {
17812
    min-width: 400% !important;
17813
  }
16848 stevensc 17814
 
16825 efrain 17815
  .wd-sm-450 {
17816
    width: 450px;
17817
  }
16848 stevensc 17818
 
16825 efrain 17819
  .wd-sm-450p {
17820
    width: 450%;
17821
  }
16848 stevensc 17822
 
16825 efrain 17823
  .mx-wd-sm-450p {
17824
    max-width: 450%;
17825
  }
16848 stevensc 17826
 
16825 efrain 17827
  .mn-wd-sm-450p {
17828
    min-width: 450%;
17829
  }
16848 stevensc 17830
 
16825 efrain 17831
  .wd-sm-450-f {
17832
    width: 450px !important;
17833
  }
16848 stevensc 17834
 
16825 efrain 17835
  .wd-sm-450p-f {
17836
    width: 450% !important;
17837
  }
16848 stevensc 17838
 
16825 efrain 17839
  .mx-wd-sm-450p-f {
17840
    max-width: 450% !important;
17841
  }
16848 stevensc 17842
 
16825 efrain 17843
  .mn-wd-sm-450p-f {
17844
    min-width: 450% !important;
17845
  }
16848 stevensc 17846
 
16825 efrain 17847
  .wd-sm-500 {
17848
    width: 500px;
17849
  }
16848 stevensc 17850
 
16825 efrain 17851
  .wd-sm-500p {
17852
    width: 500%;
17853
  }
16848 stevensc 17854
 
16825 efrain 17855
  .mx-wd-sm-500p {
17856
    max-width: 500%;
17857
  }
16848 stevensc 17858
 
16825 efrain 17859
  .mn-wd-sm-500p {
17860
    min-width: 500%;
17861
  }
16848 stevensc 17862
 
16825 efrain 17863
  .wd-sm-500-f {
17864
    width: 500px !important;
17865
  }
16848 stevensc 17866
 
16825 efrain 17867
  .wd-sm-500p-f {
17868
    width: 500% !important;
17869
  }
16848 stevensc 17870
 
16825 efrain 17871
  .mx-wd-sm-500p-f {
17872
    max-width: 500% !important;
17873
  }
16848 stevensc 17874
 
16825 efrain 17875
  .mn-wd-sm-500p-f {
17876
    min-width: 500% !important;
17877
  }
16848 stevensc 17878
 
16825 efrain 17879
  .wd-sm-550 {
17880
    width: 550px;
17881
  }
16848 stevensc 17882
 
16825 efrain 17883
  .wd-sm-550p {
17884
    width: 550%;
17885
  }
16848 stevensc 17886
 
16825 efrain 17887
  .mx-wd-sm-550p {
17888
    max-width: 550%;
17889
  }
16848 stevensc 17890
 
16825 efrain 17891
  .mn-wd-sm-550p {
17892
    min-width: 550%;
17893
  }
16848 stevensc 17894
 
16825 efrain 17895
  .wd-sm-550-f {
17896
    width: 550px !important;
17897
  }
16848 stevensc 17898
 
16825 efrain 17899
  .wd-sm-550p-f {
17900
    width: 550% !important;
17901
  }
16848 stevensc 17902
 
16825 efrain 17903
  .mx-wd-sm-550p-f {
17904
    max-width: 550% !important;
17905
  }
16848 stevensc 17906
 
16825 efrain 17907
  .mn-wd-sm-550p-f {
17908
    min-width: 550% !important;
17909
  }
16848 stevensc 17910
 
16825 efrain 17911
  .wd-sm-600 {
17912
    width: 600px;
17913
  }
16848 stevensc 17914
 
16825 efrain 17915
  .wd-sm-600p {
17916
    width: 600%;
17917
  }
16848 stevensc 17918
 
16825 efrain 17919
  .mx-wd-sm-600p {
17920
    max-width: 600%;
17921
  }
16848 stevensc 17922
 
16825 efrain 17923
  .mn-wd-sm-600p {
17924
    min-width: 600%;
17925
  }
16848 stevensc 17926
 
16825 efrain 17927
  .wd-sm-600-f {
17928
    width: 600px !important;
17929
  }
16848 stevensc 17930
 
16825 efrain 17931
  .wd-sm-600p-f {
17932
    width: 600% !important;
17933
  }
16848 stevensc 17934
 
16825 efrain 17935
  .mx-wd-sm-600p-f {
17936
    max-width: 600% !important;
17937
  }
16848 stevensc 17938
 
16825 efrain 17939
  .mn-wd-sm-600p-f {
17940
    min-width: 600% !important;
17941
  }
16848 stevensc 17942
 
16825 efrain 17943
  .wd-sm-650 {
17944
    width: 650px;
17945
  }
16848 stevensc 17946
 
16825 efrain 17947
  .wd-sm-650p {
17948
    width: 650%;
17949
  }
16848 stevensc 17950
 
16825 efrain 17951
  .mx-wd-sm-650p {
17952
    max-width: 650%;
17953
  }
16848 stevensc 17954
 
16825 efrain 17955
  .mn-wd-sm-650p {
17956
    min-width: 650%;
17957
  }
16848 stevensc 17958
 
16825 efrain 17959
  .wd-sm-650-f {
17960
    width: 650px !important;
17961
  }
16848 stevensc 17962
 
16825 efrain 17963
  .wd-sm-650p-f {
17964
    width: 650% !important;
17965
  }
16848 stevensc 17966
 
16825 efrain 17967
  .mx-wd-sm-650p-f {
17968
    max-width: 650% !important;
17969
  }
16848 stevensc 17970
 
16825 efrain 17971
  .mn-wd-sm-650p-f {
17972
    min-width: 650% !important;
17973
  }
16848 stevensc 17974
 
16825 efrain 17975
  .wd-sm-700 {
17976
    width: 700px;
17977
  }
16848 stevensc 17978
 
16825 efrain 17979
  .wd-sm-700p {
17980
    width: 700%;
17981
  }
16848 stevensc 17982
 
16825 efrain 17983
  .mx-wd-sm-700p {
17984
    max-width: 700%;
17985
  }
16848 stevensc 17986
 
16825 efrain 17987
  .mn-wd-sm-700p {
17988
    min-width: 700%;
17989
  }
16848 stevensc 17990
 
16825 efrain 17991
  .wd-sm-700-f {
17992
    width: 700px !important;
17993
  }
16848 stevensc 17994
 
16825 efrain 17995
  .wd-sm-700p-f {
17996
    width: 700% !important;
17997
  }
16848 stevensc 17998
 
16825 efrain 17999
  .mx-wd-sm-700p-f {
18000
    max-width: 700% !important;
18001
  }
16848 stevensc 18002
 
16825 efrain 18003
  .mn-wd-sm-700p-f {
18004
    min-width: 700% !important;
18005
  }
16848 stevensc 18006
 
16825 efrain 18007
  .wd-sm-750 {
18008
    width: 750px;
18009
  }
16848 stevensc 18010
 
16825 efrain 18011
  .wd-sm-750p {
18012
    width: 750%;
18013
  }
16848 stevensc 18014
 
16825 efrain 18015
  .mx-wd-sm-750p {
18016
    max-width: 750%;
18017
  }
16848 stevensc 18018
 
16825 efrain 18019
  .mn-wd-sm-750p {
18020
    min-width: 750%;
18021
  }
16848 stevensc 18022
 
16825 efrain 18023
  .wd-sm-750-f {
18024
    width: 750px !important;
18025
  }
16848 stevensc 18026
 
16825 efrain 18027
  .wd-sm-750p-f {
18028
    width: 750% !important;
18029
  }
16848 stevensc 18030
 
16825 efrain 18031
  .mx-wd-sm-750p-f {
18032
    max-width: 750% !important;
18033
  }
16848 stevensc 18034
 
16825 efrain 18035
  .mn-wd-sm-750p-f {
18036
    min-width: 750% !important;
18037
  }
16848 stevensc 18038
 
16825 efrain 18039
  .wd-sm-800 {
18040
    width: 800px;
18041
  }
16848 stevensc 18042
 
16825 efrain 18043
  .wd-sm-800p {
18044
    width: 800%;
18045
  }
16848 stevensc 18046
 
16825 efrain 18047
  .mx-wd-sm-800p {
18048
    max-width: 800%;
18049
  }
16848 stevensc 18050
 
16825 efrain 18051
  .mn-wd-sm-800p {
18052
    min-width: 800%;
18053
  }
16848 stevensc 18054
 
16825 efrain 18055
  .wd-sm-800-f {
18056
    width: 800px !important;
18057
  }
16848 stevensc 18058
 
16825 efrain 18059
  .wd-sm-800p-f {
18060
    width: 800% !important;
18061
  }
16848 stevensc 18062
 
16825 efrain 18063
  .mx-wd-sm-800p-f {
18064
    max-width: 800% !important;
18065
  }
16848 stevensc 18066
 
16825 efrain 18067
  .mn-wd-sm-800p-f {
18068
    min-width: 800% !important;
18069
  }
16848 stevensc 18070
 
16825 efrain 18071
  .wd-sm-850 {
18072
    width: 850px;
18073
  }
16848 stevensc 18074
 
16825 efrain 18075
  .wd-sm-850p {
18076
    width: 850%;
18077
  }
16848 stevensc 18078
 
16825 efrain 18079
  .mx-wd-sm-850p {
18080
    max-width: 850%;
18081
  }
16848 stevensc 18082
 
16825 efrain 18083
  .mn-wd-sm-850p {
18084
    min-width: 850%;
18085
  }
16848 stevensc 18086
 
16825 efrain 18087
  .wd-sm-850-f {
18088
    width: 850px !important;
18089
  }
16848 stevensc 18090
 
16825 efrain 18091
  .wd-sm-850p-f {
18092
    width: 850% !important;
18093
  }
16848 stevensc 18094
 
16825 efrain 18095
  .mx-wd-sm-850p-f {
18096
    max-width: 850% !important;
18097
  }
16848 stevensc 18098
 
16825 efrain 18099
  .mn-wd-sm-850p-f {
18100
    min-width: 850% !important;
18101
  }
16848 stevensc 18102
 
16825 efrain 18103
  .wd-sm-900 {
18104
    width: 900px;
18105
  }
16848 stevensc 18106
 
16825 efrain 18107
  .wd-sm-900p {
18108
    width: 900%;
18109
  }
16848 stevensc 18110
 
16825 efrain 18111
  .mx-wd-sm-900p {
18112
    max-width: 900%;
18113
  }
16848 stevensc 18114
 
16825 efrain 18115
  .mn-wd-sm-900p {
18116
    min-width: 900%;
18117
  }
16848 stevensc 18118
 
16825 efrain 18119
  .wd-sm-900-f {
18120
    width: 900px !important;
18121
  }
16848 stevensc 18122
 
16825 efrain 18123
  .wd-sm-900p-f {
18124
    width: 900% !important;
18125
  }
16848 stevensc 18126
 
16825 efrain 18127
  .mx-wd-sm-900p-f {
18128
    max-width: 900% !important;
18129
  }
16848 stevensc 18130
 
16825 efrain 18131
  .mn-wd-sm-900p-f {
18132
    min-width: 900% !important;
18133
  }
16848 stevensc 18134
 
16825 efrain 18135
  .wd-sm-950 {
18136
    width: 950px;
18137
  }
16848 stevensc 18138
 
16825 efrain 18139
  .wd-sm-950p {
18140
    width: 950%;
18141
  }
16848 stevensc 18142
 
16825 efrain 18143
  .mx-wd-sm-950p {
18144
    max-width: 950%;
18145
  }
16848 stevensc 18146
 
16825 efrain 18147
  .mn-wd-sm-950p {
18148
    min-width: 950%;
18149
  }
16848 stevensc 18150
 
16825 efrain 18151
  .wd-sm-950-f {
18152
    width: 950px !important;
18153
  }
16848 stevensc 18154
 
16825 efrain 18155
  .wd-sm-950p-f {
18156
    width: 950% !important;
18157
  }
16848 stevensc 18158
 
16825 efrain 18159
  .mx-wd-sm-950p-f {
18160
    max-width: 950% !important;
18161
  }
16848 stevensc 18162
 
16825 efrain 18163
  .mn-wd-sm-950p-f {
18164
    min-width: 950% !important;
18165
  }
16848 stevensc 18166
 
16825 efrain 18167
  .wd-sm-1000 {
18168
    width: 1000px;
18169
  }
16848 stevensc 18170
 
16825 efrain 18171
  .wd-sm-1000p {
18172
    width: 1000%;
18173
  }
16848 stevensc 18174
 
16825 efrain 18175
  .mx-wd-sm-1000p {
18176
    max-width: 1000%;
18177
  }
16848 stevensc 18178
 
16825 efrain 18179
  .mn-wd-sm-1000p {
18180
    min-width: 1000%;
18181
  }
16848 stevensc 18182
 
16825 efrain 18183
  .wd-sm-1000-f {
18184
    width: 1000px !important;
18185
  }
16848 stevensc 18186
 
16825 efrain 18187
  .wd-sm-1000p-f {
18188
    width: 1000% !important;
18189
  }
16848 stevensc 18190
 
16825 efrain 18191
  .mx-wd-sm-1000p-f {
18192
    max-width: 1000% !important;
18193
  }
16848 stevensc 18194
 
16825 efrain 18195
  .mn-wd-sm-1000p-f {
18196
    min-width: 1000% !important;
18197
  }
16848 stevensc 18198
 
16825 efrain 18199
  .wd-sm-auto {
18200
    width: auto;
18201
  }
16848 stevensc 18202
 
16825 efrain 18203
  .wd-sm-auto-f {
18204
    width: auto !important;
18205
  }
18206
}
16848 stevensc 18207
 
16825 efrain 18208
@media (min-width: 768px) {
18209
  .wd-md-5 {
18210
    width: 5px;
18211
  }
16848 stevensc 18212
 
16825 efrain 18213
  .wd-md-5p {
18214
    width: 5%;
18215
  }
16848 stevensc 18216
 
16825 efrain 18217
  .mx-wd-md-5p {
18218
    max-width: 5%;
18219
  }
16848 stevensc 18220
 
16825 efrain 18221
  .mn-wd-md-5p {
18222
    min-width: 5%;
18223
  }
16848 stevensc 18224
 
16825 efrain 18225
  .wd-md-5-f {
18226
    width: 5px !important;
18227
  }
16848 stevensc 18228
 
16825 efrain 18229
  .wd-md-5p-f {
18230
    width: 5% !important;
18231
  }
16848 stevensc 18232
 
16825 efrain 18233
  .mx-wd-md-5p-f {
18234
    max-width: 5% !important;
18235
  }
16848 stevensc 18236
 
16825 efrain 18237
  .mn-wd-md-5p-f {
18238
    min-width: 5% !important;
18239
  }
16848 stevensc 18240
 
16825 efrain 18241
  .wd-md-10 {
18242
    width: 10px;
18243
  }
16848 stevensc 18244
 
16825 efrain 18245
  .wd-md-10p {
18246
    width: 10%;
18247
  }
16848 stevensc 18248
 
16825 efrain 18249
  .mx-wd-md-10p {
18250
    max-width: 10%;
18251
  }
16848 stevensc 18252
 
16825 efrain 18253
  .mn-wd-md-10p {
18254
    min-width: 10%;
18255
  }
16848 stevensc 18256
 
16825 efrain 18257
  .wd-md-10-f {
18258
    width: 10px !important;
18259
  }
16848 stevensc 18260
 
16825 efrain 18261
  .wd-md-10p-f {
18262
    width: 10% !important;
18263
  }
16848 stevensc 18264
 
16825 efrain 18265
  .mx-wd-md-10p-f {
18266
    max-width: 10% !important;
18267
  }
16848 stevensc 18268
 
16825 efrain 18269
  .mn-wd-md-10p-f {
18270
    min-width: 10% !important;
18271
  }
16848 stevensc 18272
 
16825 efrain 18273
  .wd-md-15 {
18274
    width: 15px;
18275
  }
16848 stevensc 18276
 
16825 efrain 18277
  .wd-md-15p {
18278
    width: 15%;
18279
  }
16848 stevensc 18280
 
16825 efrain 18281
  .mx-wd-md-15p {
18282
    max-width: 15%;
18283
  }
16848 stevensc 18284
 
16825 efrain 18285
  .mn-wd-md-15p {
18286
    min-width: 15%;
18287
  }
16848 stevensc 18288
 
16825 efrain 18289
  .wd-md-15-f {
18290
    width: 15px !important;
18291
  }
16848 stevensc 18292
 
16825 efrain 18293
  .wd-md-15p-f {
18294
    width: 15% !important;
18295
  }
16848 stevensc 18296
 
16825 efrain 18297
  .mx-wd-md-15p-f {
18298
    max-width: 15% !important;
18299
  }
16848 stevensc 18300
 
16825 efrain 18301
  .mn-wd-md-15p-f {
18302
    min-width: 15% !important;
18303
  }
16848 stevensc 18304
 
16825 efrain 18305
  .wd-md-20 {
18306
    width: 20px;
18307
  }
16848 stevensc 18308
 
16825 efrain 18309
  .wd-md-20p {
18310
    width: 20%;
18311
  }
16848 stevensc 18312
 
16825 efrain 18313
  .mx-wd-md-20p {
18314
    max-width: 20%;
18315
  }
16848 stevensc 18316
 
16825 efrain 18317
  .mn-wd-md-20p {
18318
    min-width: 20%;
18319
  }
16848 stevensc 18320
 
16825 efrain 18321
  .wd-md-20-f {
18322
    width: 20px !important;
18323
  }
16848 stevensc 18324
 
16825 efrain 18325
  .wd-md-20p-f {
18326
    width: 20% !important;
18327
  }
16848 stevensc 18328
 
16825 efrain 18329
  .mx-wd-md-20p-f {
18330
    max-width: 20% !important;
18331
  }
16848 stevensc 18332
 
16825 efrain 18333
  .mn-wd-md-20p-f {
18334
    min-width: 20% !important;
18335
  }
16848 stevensc 18336
 
16825 efrain 18337
  .wd-md-25 {
18338
    width: 25px;
18339
  }
16848 stevensc 18340
 
16825 efrain 18341
  .wd-md-25p {
18342
    width: 25%;
18343
  }
16848 stevensc 18344
 
16825 efrain 18345
  .mx-wd-md-25p {
18346
    max-width: 25%;
18347
  }
16848 stevensc 18348
 
16825 efrain 18349
  .mn-wd-md-25p {
18350
    min-width: 25%;
18351
  }
16848 stevensc 18352
 
16825 efrain 18353
  .wd-md-25-f {
18354
    width: 25px !important;
18355
  }
16848 stevensc 18356
 
16825 efrain 18357
  .wd-md-25p-f {
18358
    width: 25% !important;
18359
  }
16848 stevensc 18360
 
16825 efrain 18361
  .mx-wd-md-25p-f {
18362
    max-width: 25% !important;
18363
  }
16848 stevensc 18364
 
16825 efrain 18365
  .mn-wd-md-25p-f {
18366
    min-width: 25% !important;
18367
  }
16848 stevensc 18368
 
16825 efrain 18369
  .wd-md-30 {
18370
    width: 30px;
18371
  }
16848 stevensc 18372
 
16825 efrain 18373
  .wd-md-30p {
18374
    width: 30%;
18375
  }
16848 stevensc 18376
 
16825 efrain 18377
  .mx-wd-md-30p {
18378
    max-width: 30%;
18379
  }
16848 stevensc 18380
 
16825 efrain 18381
  .mn-wd-md-30p {
18382
    min-width: 30%;
18383
  }
16848 stevensc 18384
 
16825 efrain 18385
  .wd-md-30-f {
18386
    width: 30px !important;
18387
  }
16848 stevensc 18388
 
16825 efrain 18389
  .wd-md-30p-f {
18390
    width: 30% !important;
18391
  }
16848 stevensc 18392
 
16825 efrain 18393
  .mx-wd-md-30p-f {
18394
    max-width: 30% !important;
18395
  }
16848 stevensc 18396
 
16825 efrain 18397
  .mn-wd-md-30p-f {
18398
    min-width: 30% !important;
18399
  }
16848 stevensc 18400
 
16825 efrain 18401
  .wd-md-35 {
18402
    width: 35px;
18403
  }
16848 stevensc 18404
 
16825 efrain 18405
  .wd-md-35p {
18406
    width: 35%;
18407
  }
16848 stevensc 18408
 
16825 efrain 18409
  .mx-wd-md-35p {
18410
    max-width: 35%;
18411
  }
16848 stevensc 18412
 
16825 efrain 18413
  .mn-wd-md-35p {
18414
    min-width: 35%;
18415
  }
16848 stevensc 18416
 
16825 efrain 18417
  .wd-md-35-f {
18418
    width: 35px !important;
18419
  }
16848 stevensc 18420
 
16825 efrain 18421
  .wd-md-35p-f {
18422
    width: 35% !important;
18423
  }
16848 stevensc 18424
 
16825 efrain 18425
  .mx-wd-md-35p-f {
18426
    max-width: 35% !important;
18427
  }
16848 stevensc 18428
 
16825 efrain 18429
  .mn-wd-md-35p-f {
18430
    min-width: 35% !important;
18431
  }
16848 stevensc 18432
 
16825 efrain 18433
  .wd-md-40 {
18434
    width: 40px;
18435
  }
16848 stevensc 18436
 
16825 efrain 18437
  .wd-md-40p {
18438
    width: 40%;
18439
  }
16848 stevensc 18440
 
16825 efrain 18441
  .mx-wd-md-40p {
18442
    max-width: 40%;
18443
  }
16848 stevensc 18444
 
16825 efrain 18445
  .mn-wd-md-40p {
18446
    min-width: 40%;
18447
  }
16848 stevensc 18448
 
16825 efrain 18449
  .wd-md-40-f {
18450
    width: 40px !important;
18451
  }
16848 stevensc 18452
 
16825 efrain 18453
  .wd-md-40p-f {
18454
    width: 40% !important;
18455
  }
16848 stevensc 18456
 
16825 efrain 18457
  .mx-wd-md-40p-f {
18458
    max-width: 40% !important;
18459
  }
16848 stevensc 18460
 
16825 efrain 18461
  .mn-wd-md-40p-f {
18462
    min-width: 40% !important;
18463
  }
16848 stevensc 18464
 
16825 efrain 18465
  .wd-md-45 {
18466
    width: 45px;
18467
  }
16848 stevensc 18468
 
16825 efrain 18469
  .wd-md-45p {
18470
    width: 45%;
18471
  }
16848 stevensc 18472
 
16825 efrain 18473
  .mx-wd-md-45p {
18474
    max-width: 45%;
18475
  }
16848 stevensc 18476
 
16825 efrain 18477
  .mn-wd-md-45p {
18478
    min-width: 45%;
18479
  }
16848 stevensc 18480
 
16825 efrain 18481
  .wd-md-45-f {
18482
    width: 45px !important;
18483
  }
16848 stevensc 18484
 
16825 efrain 18485
  .wd-md-45p-f {
18486
    width: 45% !important;
18487
  }
16848 stevensc 18488
 
16825 efrain 18489
  .mx-wd-md-45p-f {
18490
    max-width: 45% !important;
18491
  }
16848 stevensc 18492
 
16825 efrain 18493
  .mn-wd-md-45p-f {
18494
    min-width: 45% !important;
18495
  }
16848 stevensc 18496
 
16825 efrain 18497
  .wd-md-50 {
18498
    width: 50px;
18499
  }
16848 stevensc 18500
 
16825 efrain 18501
  .wd-md-50p {
18502
    width: 50%;
18503
  }
16848 stevensc 18504
 
16825 efrain 18505
  .mx-wd-md-50p {
18506
    max-width: 50%;
18507
  }
16848 stevensc 18508
 
16825 efrain 18509
  .mn-wd-md-50p {
18510
    min-width: 50%;
18511
  }
16848 stevensc 18512
 
16825 efrain 18513
  .wd-md-50-f {
18514
    width: 50px !important;
18515
  }
16848 stevensc 18516
 
16825 efrain 18517
  .wd-md-50p-f {
18518
    width: 50% !important;
18519
  }
16848 stevensc 18520
 
16825 efrain 18521
  .mx-wd-md-50p-f {
18522
    max-width: 50% !important;
18523
  }
16848 stevensc 18524
 
16825 efrain 18525
  .mn-wd-md-50p-f {
18526
    min-width: 50% !important;
18527
  }
16848 stevensc 18528
 
16825 efrain 18529
  .wd-md-55 {
18530
    width: 55px;
18531
  }
16848 stevensc 18532
 
16825 efrain 18533
  .wd-md-55p {
18534
    width: 55%;
18535
  }
16848 stevensc 18536
 
16825 efrain 18537
  .mx-wd-md-55p {
18538
    max-width: 55%;
18539
  }
16848 stevensc 18540
 
16825 efrain 18541
  .mn-wd-md-55p {
18542
    min-width: 55%;
18543
  }
16848 stevensc 18544
 
16825 efrain 18545
  .wd-md-55-f {
18546
    width: 55px !important;
18547
  }
16848 stevensc 18548
 
16825 efrain 18549
  .wd-md-55p-f {
18550
    width: 55% !important;
18551
  }
16848 stevensc 18552
 
16825 efrain 18553
  .mx-wd-md-55p-f {
18554
    max-width: 55% !important;
18555
  }
16848 stevensc 18556
 
16825 efrain 18557
  .mn-wd-md-55p-f {
18558
    min-width: 55% !important;
18559
  }
16848 stevensc 18560
 
16825 efrain 18561
  .wd-md-60 {
18562
    width: 60px;
18563
  }
16848 stevensc 18564
 
16825 efrain 18565
  .wd-md-60p {
18566
    width: 60%;
18567
  }
16848 stevensc 18568
 
16825 efrain 18569
  .mx-wd-md-60p {
18570
    max-width: 60%;
18571
  }
16848 stevensc 18572
 
16825 efrain 18573
  .mn-wd-md-60p {
18574
    min-width: 60%;
18575
  }
16848 stevensc 18576
 
16825 efrain 18577
  .wd-md-60-f {
18578
    width: 60px !important;
18579
  }
16848 stevensc 18580
 
16825 efrain 18581
  .wd-md-60p-f {
18582
    width: 60% !important;
18583
  }
16848 stevensc 18584
 
16825 efrain 18585
  .mx-wd-md-60p-f {
18586
    max-width: 60% !important;
18587
  }
16848 stevensc 18588
 
16825 efrain 18589
  .mn-wd-md-60p-f {
18590
    min-width: 60% !important;
18591
  }
16848 stevensc 18592
 
16825 efrain 18593
  .wd-md-65 {
18594
    width: 65px;
18595
  }
16848 stevensc 18596
 
16825 efrain 18597
  .wd-md-65p {
18598
    width: 65%;
18599
  }
16848 stevensc 18600
 
16825 efrain 18601
  .mx-wd-md-65p {
18602
    max-width: 65%;
18603
  }
16848 stevensc 18604
 
16825 efrain 18605
  .mn-wd-md-65p {
18606
    min-width: 65%;
18607
  }
16848 stevensc 18608
 
16825 efrain 18609
  .wd-md-65-f {
18610
    width: 65px !important;
18611
  }
16848 stevensc 18612
 
16825 efrain 18613
  .wd-md-65p-f {
18614
    width: 65% !important;
18615
  }
16848 stevensc 18616
 
16825 efrain 18617
  .mx-wd-md-65p-f {
18618
    max-width: 65% !important;
18619
  }
16848 stevensc 18620
 
16825 efrain 18621
  .mn-wd-md-65p-f {
18622
    min-width: 65% !important;
18623
  }
16848 stevensc 18624
 
16825 efrain 18625
  .wd-md-70 {
18626
    width: 70px;
18627
  }
16848 stevensc 18628
 
16825 efrain 18629
  .wd-md-70p {
18630
    width: 70%;
18631
  }
16848 stevensc 18632
 
16825 efrain 18633
  .mx-wd-md-70p {
18634
    max-width: 70%;
18635
  }
16848 stevensc 18636
 
16825 efrain 18637
  .mn-wd-md-70p {
18638
    min-width: 70%;
18639
  }
16848 stevensc 18640
 
16825 efrain 18641
  .wd-md-70-f {
18642
    width: 70px !important;
18643
  }
16848 stevensc 18644
 
16825 efrain 18645
  .wd-md-70p-f {
18646
    width: 70% !important;
18647
  }
16848 stevensc 18648
 
16825 efrain 18649
  .mx-wd-md-70p-f {
18650
    max-width: 70% !important;
18651
  }
16848 stevensc 18652
 
16825 efrain 18653
  .mn-wd-md-70p-f {
18654
    min-width: 70% !important;
18655
  }
16848 stevensc 18656
 
16825 efrain 18657
  .wd-md-75 {
18658
    width: 75px;
18659
  }
16848 stevensc 18660
 
16825 efrain 18661
  .wd-md-75p {
18662
    width: 75%;
18663
  }
16848 stevensc 18664
 
16825 efrain 18665
  .mx-wd-md-75p {
18666
    max-width: 75%;
18667
  }
16848 stevensc 18668
 
16825 efrain 18669
  .mn-wd-md-75p {
18670
    min-width: 75%;
18671
  }
16848 stevensc 18672
 
16825 efrain 18673
  .wd-md-75-f {
18674
    width: 75px !important;
18675
  }
16848 stevensc 18676
 
16825 efrain 18677
  .wd-md-75p-f {
18678
    width: 75% !important;
18679
  }
16848 stevensc 18680
 
16825 efrain 18681
  .mx-wd-md-75p-f {
18682
    max-width: 75% !important;
18683
  }
16848 stevensc 18684
 
16825 efrain 18685
  .mn-wd-md-75p-f {
18686
    min-width: 75% !important;
18687
  }
16848 stevensc 18688
 
16825 efrain 18689
  .wd-md-80 {
18690
    width: 80px;
18691
  }
16848 stevensc 18692
 
16825 efrain 18693
  .wd-md-80p {
18694
    width: 80%;
18695
  }
16848 stevensc 18696
 
16825 efrain 18697
  .mx-wd-md-80p {
18698
    max-width: 80%;
18699
  }
16848 stevensc 18700
 
16825 efrain 18701
  .mn-wd-md-80p {
18702
    min-width: 80%;
18703
  }
16848 stevensc 18704
 
16825 efrain 18705
  .wd-md-80-f {
18706
    width: 80px !important;
18707
  }
16848 stevensc 18708
 
16825 efrain 18709
  .wd-md-80p-f {
18710
    width: 80% !important;
18711
  }
16848 stevensc 18712
 
16825 efrain 18713
  .mx-wd-md-80p-f {
18714
    max-width: 80% !important;
18715
  }
16848 stevensc 18716
 
16825 efrain 18717
  .mn-wd-md-80p-f {
18718
    min-width: 80% !important;
18719
  }
16848 stevensc 18720
 
16825 efrain 18721
  .wd-md-85 {
18722
    width: 85px;
18723
  }
16848 stevensc 18724
 
16825 efrain 18725
  .wd-md-85p {
18726
    width: 85%;
18727
  }
16848 stevensc 18728
 
16825 efrain 18729
  .mx-wd-md-85p {
18730
    max-width: 85%;
18731
  }
16848 stevensc 18732
 
16825 efrain 18733
  .mn-wd-md-85p {
18734
    min-width: 85%;
18735
  }
16848 stevensc 18736
 
16825 efrain 18737
  .wd-md-85-f {
18738
    width: 85px !important;
18739
  }
16848 stevensc 18740
 
16825 efrain 18741
  .wd-md-85p-f {
18742
    width: 85% !important;
18743
  }
16848 stevensc 18744
 
16825 efrain 18745
  .mx-wd-md-85p-f {
18746
    max-width: 85% !important;
18747
  }
16848 stevensc 18748
 
16825 efrain 18749
  .mn-wd-md-85p-f {
18750
    min-width: 85% !important;
18751
  }
16848 stevensc 18752
 
16825 efrain 18753
  .wd-md-90 {
18754
    width: 90px;
18755
  }
16848 stevensc 18756
 
16825 efrain 18757
  .wd-md-90p {
18758
    width: 90%;
18759
  }
16848 stevensc 18760
 
16825 efrain 18761
  .mx-wd-md-90p {
18762
    max-width: 90%;
18763
  }
16848 stevensc 18764
 
16825 efrain 18765
  .mn-wd-md-90p {
18766
    min-width: 90%;
18767
  }
16848 stevensc 18768
 
16825 efrain 18769
  .wd-md-90-f {
18770
    width: 90px !important;
18771
  }
16848 stevensc 18772
 
16825 efrain 18773
  .wd-md-90p-f {
18774
    width: 90% !important;
18775
  }
16848 stevensc 18776
 
16825 efrain 18777
  .mx-wd-md-90p-f {
18778
    max-width: 90% !important;
18779
  }
16848 stevensc 18780
 
16825 efrain 18781
  .mn-wd-md-90p-f {
18782
    min-width: 90% !important;
18783
  }
16848 stevensc 18784
 
16825 efrain 18785
  .wd-md-95 {
18786
    width: 95px;
18787
  }
16848 stevensc 18788
 
16825 efrain 18789
  .wd-md-95p {
18790
    width: 95%;
18791
  }
16848 stevensc 18792
 
16825 efrain 18793
  .mx-wd-md-95p {
18794
    max-width: 95%;
18795
  }
16848 stevensc 18796
 
16825 efrain 18797
  .mn-wd-md-95p {
18798
    min-width: 95%;
18799
  }
16848 stevensc 18800
 
16825 efrain 18801
  .wd-md-95-f {
18802
    width: 95px !important;
18803
  }
16848 stevensc 18804
 
16825 efrain 18805
  .wd-md-95p-f {
18806
    width: 95% !important;
18807
  }
16848 stevensc 18808
 
16825 efrain 18809
  .mx-wd-md-95p-f {
18810
    max-width: 95% !important;
18811
  }
16848 stevensc 18812
 
16825 efrain 18813
  .mn-wd-md-95p-f {
18814
    min-width: 95% !important;
18815
  }
16848 stevensc 18816
 
16825 efrain 18817
  .wd-md-100 {
18818
    width: 100px;
18819
  }
16848 stevensc 18820
 
16825 efrain 18821
  .wd-md-100p {
18822
    width: 100%;
18823
  }
16848 stevensc 18824
 
16825 efrain 18825
  .mx-wd-md-100p {
18826
    max-width: 100%;
18827
  }
16848 stevensc 18828
 
16825 efrain 18829
  .mn-wd-md-100p {
18830
    min-width: 100%;
18831
  }
16848 stevensc 18832
 
16825 efrain 18833
  .wd-md-100-f {
18834
    width: 100px !important;
18835
  }
16848 stevensc 18836
 
16825 efrain 18837
  .wd-md-100p-f {
18838
    width: 100% !important;
18839
  }
16848 stevensc 18840
 
16825 efrain 18841
  .mx-wd-md-100p-f {
18842
    max-width: 100% !important;
18843
  }
16848 stevensc 18844
 
16825 efrain 18845
  .mn-wd-md-100p-f {
18846
    min-width: 100% !important;
18847
  }
16848 stevensc 18848
 
16825 efrain 18849
  .wd-md-150 {
18850
    width: 150px;
18851
  }
16848 stevensc 18852
 
16825 efrain 18853
  .wd-md-150p {
18854
    width: 150%;
18855
  }
16848 stevensc 18856
 
16825 efrain 18857
  .mx-wd-md-150p {
18858
    max-width: 150%;
18859
  }
16848 stevensc 18860
 
16825 efrain 18861
  .mn-wd-md-150p {
18862
    min-width: 150%;
18863
  }
16848 stevensc 18864
 
16825 efrain 18865
  .wd-md-150-f {
18866
    width: 150px !important;
18867
  }
16848 stevensc 18868
 
16825 efrain 18869
  .wd-md-150p-f {
18870
    width: 150% !important;
18871
  }
16848 stevensc 18872
 
16825 efrain 18873
  .mx-wd-md-150p-f {
18874
    max-width: 150% !important;
18875
  }
16848 stevensc 18876
 
16825 efrain 18877
  .mn-wd-md-150p-f {
18878
    min-width: 150% !important;
18879
  }
16848 stevensc 18880
 
16825 efrain 18881
  .wd-md-200 {
18882
    width: 200px;
18883
  }
16848 stevensc 18884
 
16825 efrain 18885
  .wd-md-200p {
18886
    width: 200%;
18887
  }
16848 stevensc 18888
 
16825 efrain 18889
  .mx-wd-md-200p {
18890
    max-width: 200%;
18891
  }
16848 stevensc 18892
 
16825 efrain 18893
  .mn-wd-md-200p {
18894
    min-width: 200%;
18895
  }
16848 stevensc 18896
 
16825 efrain 18897
  .wd-md-200-f {
18898
    width: 200px !important;
18899
  }
16848 stevensc 18900
 
16825 efrain 18901
  .wd-md-200p-f {
18902
    width: 200% !important;
18903
  }
16848 stevensc 18904
 
16825 efrain 18905
  .mx-wd-md-200p-f {
18906
    max-width: 200% !important;
18907
  }
16848 stevensc 18908
 
16825 efrain 18909
  .mn-wd-md-200p-f {
18910
    min-width: 200% !important;
18911
  }
16848 stevensc 18912
 
16825 efrain 18913
  .wd-md-250 {
18914
    width: 250px;
18915
  }
16848 stevensc 18916
 
16825 efrain 18917
  .wd-md-250p {
18918
    width: 250%;
18919
  }
16848 stevensc 18920
 
16825 efrain 18921
  .mx-wd-md-250p {
18922
    max-width: 250%;
18923
  }
16848 stevensc 18924
 
16825 efrain 18925
  .mn-wd-md-250p {
18926
    min-width: 250%;
18927
  }
16848 stevensc 18928
 
16825 efrain 18929
  .wd-md-250-f {
18930
    width: 250px !important;
18931
  }
16848 stevensc 18932
 
16825 efrain 18933
  .wd-md-250p-f {
18934
    width: 250% !important;
18935
  }
16848 stevensc 18936
 
16825 efrain 18937
  .mx-wd-md-250p-f {
18938
    max-width: 250% !important;
18939
  }
16848 stevensc 18940
 
16825 efrain 18941
  .mn-wd-md-250p-f {
18942
    min-width: 250% !important;
18943
  }
16848 stevensc 18944
 
16825 efrain 18945
  .wd-md-300 {
18946
    width: 300px;
18947
  }
16848 stevensc 18948
 
16825 efrain 18949
  .wd-md-300p {
18950
    width: 300%;
18951
  }
16848 stevensc 18952
 
16825 efrain 18953
  .mx-wd-md-300p {
18954
    max-width: 300%;
18955
  }
16848 stevensc 18956
 
16825 efrain 18957
  .mn-wd-md-300p {
18958
    min-width: 300%;
18959
  }
16848 stevensc 18960
 
16825 efrain 18961
  .wd-md-300-f {
18962
    width: 300px !important;
18963
  }
16848 stevensc 18964
 
16825 efrain 18965
  .wd-md-300p-f {
18966
    width: 300% !important;
18967
  }
16848 stevensc 18968
 
16825 efrain 18969
  .mx-wd-md-300p-f {
18970
    max-width: 300% !important;
18971
  }
16848 stevensc 18972
 
16825 efrain 18973
  .mn-wd-md-300p-f {
18974
    min-width: 300% !important;
18975
  }
16848 stevensc 18976
 
16825 efrain 18977
  .wd-md-350 {
18978
    width: 350px;
18979
  }
16848 stevensc 18980
 
16825 efrain 18981
  .wd-md-350p {
18982
    width: 350%;
18983
  }
16848 stevensc 18984
 
16825 efrain 18985
  .mx-wd-md-350p {
18986
    max-width: 350%;
18987
  }
16848 stevensc 18988
 
16825 efrain 18989
  .mn-wd-md-350p {
18990
    min-width: 350%;
18991
  }
16848 stevensc 18992
 
16825 efrain 18993
  .wd-md-350-f {
18994
    width: 350px !important;
18995
  }
16848 stevensc 18996
 
16825 efrain 18997
  .wd-md-350p-f {
18998
    width: 350% !important;
18999
  }
16848 stevensc 19000
 
16825 efrain 19001
  .mx-wd-md-350p-f {
19002
    max-width: 350% !important;
19003
  }
16848 stevensc 19004
 
16825 efrain 19005
  .mn-wd-md-350p-f {
19006
    min-width: 350% !important;
19007
  }
16848 stevensc 19008
 
16825 efrain 19009
  .wd-md-400 {
19010
    width: 400px;
19011
  }
16848 stevensc 19012
 
16825 efrain 19013
  .wd-md-400p {
19014
    width: 400%;
19015
  }
16848 stevensc 19016
 
16825 efrain 19017
  .mx-wd-md-400p {
19018
    max-width: 400%;
19019
  }
16848 stevensc 19020
 
16825 efrain 19021
  .mn-wd-md-400p {
19022
    min-width: 400%;
19023
  }
16848 stevensc 19024
 
16825 efrain 19025
  .wd-md-400-f {
19026
    width: 400px !important;
19027
  }
16848 stevensc 19028
 
16825 efrain 19029
  .wd-md-400p-f {
19030
    width: 400% !important;
19031
  }
16848 stevensc 19032
 
16825 efrain 19033
  .mx-wd-md-400p-f {
19034
    max-width: 400% !important;
19035
  }
16848 stevensc 19036
 
16825 efrain 19037
  .mn-wd-md-400p-f {
19038
    min-width: 400% !important;
19039
  }
16848 stevensc 19040
 
16825 efrain 19041
  .wd-md-450 {
19042
    width: 450px;
19043
  }
16848 stevensc 19044
 
16825 efrain 19045
  .wd-md-450p {
19046
    width: 450%;
19047
  }
16848 stevensc 19048
 
16825 efrain 19049
  .mx-wd-md-450p {
19050
    max-width: 450%;
19051
  }
16848 stevensc 19052
 
16825 efrain 19053
  .mn-wd-md-450p {
19054
    min-width: 450%;
19055
  }
16848 stevensc 19056
 
16825 efrain 19057
  .wd-md-450-f {
19058
    width: 450px !important;
19059
  }
16848 stevensc 19060
 
16825 efrain 19061
  .wd-md-450p-f {
19062
    width: 450% !important;
19063
  }
16848 stevensc 19064
 
16825 efrain 19065
  .mx-wd-md-450p-f {
19066
    max-width: 450% !important;
19067
  }
16848 stevensc 19068
 
16825 efrain 19069
  .mn-wd-md-450p-f {
19070
    min-width: 450% !important;
19071
  }
16848 stevensc 19072
 
16825 efrain 19073
  .wd-md-500 {
19074
    width: 500px;
19075
  }
16848 stevensc 19076
 
16825 efrain 19077
  .wd-md-500p {
19078
    width: 500%;
19079
  }
16848 stevensc 19080
 
16825 efrain 19081
  .mx-wd-md-500p {
19082
    max-width: 500%;
19083
  }
16848 stevensc 19084
 
16825 efrain 19085
  .mn-wd-md-500p {
19086
    min-width: 500%;
19087
  }
16848 stevensc 19088
 
16825 efrain 19089
  .wd-md-500-f {
19090
    width: 500px !important;
19091
  }
16848 stevensc 19092
 
16825 efrain 19093
  .wd-md-500p-f {
19094
    width: 500% !important;
19095
  }
16848 stevensc 19096
 
16825 efrain 19097
  .mx-wd-md-500p-f {
19098
    max-width: 500% !important;
19099
  }
16848 stevensc 19100
 
16825 efrain 19101
  .mn-wd-md-500p-f {
19102
    min-width: 500% !important;
19103
  }
16848 stevensc 19104
 
16825 efrain 19105
  .wd-md-550 {
19106
    width: 550px;
19107
  }
16848 stevensc 19108
 
16825 efrain 19109
  .wd-md-550p {
19110
    width: 550%;
19111
  }
16848 stevensc 19112
 
16825 efrain 19113
  .mx-wd-md-550p {
19114
    max-width: 550%;
19115
  }
16848 stevensc 19116
 
16825 efrain 19117
  .mn-wd-md-550p {
19118
    min-width: 550%;
19119
  }
16848 stevensc 19120
 
16825 efrain 19121
  .wd-md-550-f {
19122
    width: 550px !important;
19123
  }
16848 stevensc 19124
 
16825 efrain 19125
  .wd-md-550p-f {
19126
    width: 550% !important;
19127
  }
16848 stevensc 19128
 
16825 efrain 19129
  .mx-wd-md-550p-f {
19130
    max-width: 550% !important;
19131
  }
16848 stevensc 19132
 
16825 efrain 19133
  .mn-wd-md-550p-f {
19134
    min-width: 550% !important;
19135
  }
16848 stevensc 19136
 
16825 efrain 19137
  .wd-md-600 {
19138
    width: 600px;
19139
  }
16848 stevensc 19140
 
16825 efrain 19141
  .wd-md-600p {
19142
    width: 600%;
19143
  }
16848 stevensc 19144
 
16825 efrain 19145
  .mx-wd-md-600p {
19146
    max-width: 600%;
19147
  }
16848 stevensc 19148
 
16825 efrain 19149
  .mn-wd-md-600p {
19150
    min-width: 600%;
19151
  }
16848 stevensc 19152
 
16825 efrain 19153
  .wd-md-600-f {
19154
    width: 600px !important;
19155
  }
16848 stevensc 19156
 
16825 efrain 19157
  .wd-md-600p-f {
19158
    width: 600% !important;
19159
  }
16848 stevensc 19160
 
16825 efrain 19161
  .mx-wd-md-600p-f {
19162
    max-width: 600% !important;
19163
  }
16848 stevensc 19164
 
16825 efrain 19165
  .mn-wd-md-600p-f {
19166
    min-width: 600% !important;
19167
  }
16848 stevensc 19168
 
16825 efrain 19169
  .wd-md-650 {
19170
    width: 650px;
19171
  }
16848 stevensc 19172
 
16825 efrain 19173
  .wd-md-650p {
19174
    width: 650%;
19175
  }
16848 stevensc 19176
 
16825 efrain 19177
  .mx-wd-md-650p {
19178
    max-width: 650%;
19179
  }
16848 stevensc 19180
 
16825 efrain 19181
  .mn-wd-md-650p {
19182
    min-width: 650%;
19183
  }
16848 stevensc 19184
 
16825 efrain 19185
  .wd-md-650-f {
19186
    width: 650px !important;
19187
  }
16848 stevensc 19188
 
16825 efrain 19189
  .wd-md-650p-f {
19190
    width: 650% !important;
19191
  }
16848 stevensc 19192
 
16825 efrain 19193
  .mx-wd-md-650p-f {
19194
    max-width: 650% !important;
19195
  }
16848 stevensc 19196
 
16825 efrain 19197
  .mn-wd-md-650p-f {
19198
    min-width: 650% !important;
19199
  }
16848 stevensc 19200
 
16825 efrain 19201
  .wd-md-700 {
19202
    width: 700px;
19203
  }
16848 stevensc 19204
 
16825 efrain 19205
  .wd-md-700p {
19206
    width: 700%;
19207
  }
16848 stevensc 19208
 
16825 efrain 19209
  .mx-wd-md-700p {
19210
    max-width: 700%;
19211
  }
16848 stevensc 19212
 
16825 efrain 19213
  .mn-wd-md-700p {
19214
    min-width: 700%;
19215
  }
16848 stevensc 19216
 
16825 efrain 19217
  .wd-md-700-f {
19218
    width: 700px !important;
19219
  }
16848 stevensc 19220
 
16825 efrain 19221
  .wd-md-700p-f {
19222
    width: 700% !important;
19223
  }
16848 stevensc 19224
 
16825 efrain 19225
  .mx-wd-md-700p-f {
19226
    max-width: 700% !important;
19227
  }
16848 stevensc 19228
 
16825 efrain 19229
  .mn-wd-md-700p-f {
19230
    min-width: 700% !important;
19231
  }
16848 stevensc 19232
 
16825 efrain 19233
  .wd-md-750 {
19234
    width: 750px;
19235
  }
16848 stevensc 19236
 
16825 efrain 19237
  .wd-md-750p {
19238
    width: 750%;
19239
  }
16848 stevensc 19240
 
16825 efrain 19241
  .mx-wd-md-750p {
19242
    max-width: 750%;
19243
  }
16848 stevensc 19244
 
16825 efrain 19245
  .mn-wd-md-750p {
19246
    min-width: 750%;
19247
  }
16848 stevensc 19248
 
16825 efrain 19249
  .wd-md-750-f {
19250
    width: 750px !important;
19251
  }
16848 stevensc 19252
 
16825 efrain 19253
  .wd-md-750p-f {
19254
    width: 750% !important;
19255
  }
16848 stevensc 19256
 
16825 efrain 19257
  .mx-wd-md-750p-f {
19258
    max-width: 750% !important;
19259
  }
16848 stevensc 19260
 
16825 efrain 19261
  .mn-wd-md-750p-f {
19262
    min-width: 750% !important;
19263
  }
16848 stevensc 19264
 
16825 efrain 19265
  .wd-md-800 {
19266
    width: 800px;
19267
  }
16848 stevensc 19268
 
16825 efrain 19269
  .wd-md-800p {
19270
    width: 800%;
19271
  }
16848 stevensc 19272
 
16825 efrain 19273
  .mx-wd-md-800p {
19274
    max-width: 800%;
19275
  }
16848 stevensc 19276
 
16825 efrain 19277
  .mn-wd-md-800p {
19278
    min-width: 800%;
19279
  }
16848 stevensc 19280
 
16825 efrain 19281
  .wd-md-800-f {
19282
    width: 800px !important;
19283
  }
16848 stevensc 19284
 
16825 efrain 19285
  .wd-md-800p-f {
19286
    width: 800% !important;
19287
  }
16848 stevensc 19288
 
16825 efrain 19289
  .mx-wd-md-800p-f {
19290
    max-width: 800% !important;
19291
  }
16848 stevensc 19292
 
16825 efrain 19293
  .mn-wd-md-800p-f {
19294
    min-width: 800% !important;
19295
  }
16848 stevensc 19296
 
16825 efrain 19297
  .wd-md-850 {
19298
    width: 850px;
19299
  }
16848 stevensc 19300
 
16825 efrain 19301
  .wd-md-850p {
19302
    width: 850%;
19303
  }
16848 stevensc 19304
 
16825 efrain 19305
  .mx-wd-md-850p {
19306
    max-width: 850%;
19307
  }
16848 stevensc 19308
 
16825 efrain 19309
  .mn-wd-md-850p {
19310
    min-width: 850%;
19311
  }
16848 stevensc 19312
 
16825 efrain 19313
  .wd-md-850-f {
19314
    width: 850px !important;
19315
  }
16848 stevensc 19316
 
16825 efrain 19317
  .wd-md-850p-f {
19318
    width: 850% !important;
19319
  }
16848 stevensc 19320
 
16825 efrain 19321
  .mx-wd-md-850p-f {
19322
    max-width: 850% !important;
19323
  }
16848 stevensc 19324
 
16825 efrain 19325
  .mn-wd-md-850p-f {
19326
    min-width: 850% !important;
19327
  }
16848 stevensc 19328
 
16825 efrain 19329
  .wd-md-900 {
19330
    width: 900px;
19331
  }
16848 stevensc 19332
 
16825 efrain 19333
  .wd-md-900p {
19334
    width: 900%;
19335
  }
16848 stevensc 19336
 
16825 efrain 19337
  .mx-wd-md-900p {
19338
    max-width: 900%;
19339
  }
16848 stevensc 19340
 
16825 efrain 19341
  .mn-wd-md-900p {
19342
    min-width: 900%;
19343
  }
16848 stevensc 19344
 
16825 efrain 19345
  .wd-md-900-f {
19346
    width: 900px !important;
19347
  }
16848 stevensc 19348
 
16825 efrain 19349
  .wd-md-900p-f {
19350
    width: 900% !important;
19351
  }
16848 stevensc 19352
 
16825 efrain 19353
  .mx-wd-md-900p-f {
19354
    max-width: 900% !important;
19355
  }
16848 stevensc 19356
 
16825 efrain 19357
  .mn-wd-md-900p-f {
19358
    min-width: 900% !important;
19359
  }
16848 stevensc 19360
 
16825 efrain 19361
  .wd-md-950 {
19362
    width: 950px;
19363
  }
16848 stevensc 19364
 
16825 efrain 19365
  .wd-md-950p {
19366
    width: 950%;
19367
  }
16848 stevensc 19368
 
16825 efrain 19369
  .mx-wd-md-950p {
19370
    max-width: 950%;
19371
  }
16848 stevensc 19372
 
16825 efrain 19373
  .mn-wd-md-950p {
19374
    min-width: 950%;
19375
  }
16848 stevensc 19376
 
16825 efrain 19377
  .wd-md-950-f {
19378
    width: 950px !important;
19379
  }
16848 stevensc 19380
 
16825 efrain 19381
  .wd-md-950p-f {
19382
    width: 950% !important;
19383
  }
16848 stevensc 19384
 
16825 efrain 19385
  .mx-wd-md-950p-f {
19386
    max-width: 950% !important;
19387
  }
16848 stevensc 19388
 
16825 efrain 19389
  .mn-wd-md-950p-f {
19390
    min-width: 950% !important;
19391
  }
16848 stevensc 19392
 
16825 efrain 19393
  .wd-md-1000 {
19394
    width: 1000px;
19395
  }
16848 stevensc 19396
 
16825 efrain 19397
  .wd-md-1000p {
19398
    width: 1000%;
19399
  }
16848 stevensc 19400
 
16825 efrain 19401
  .mx-wd-md-1000p {
19402
    max-width: 1000%;
19403
  }
16848 stevensc 19404
 
16825 efrain 19405
  .mn-wd-md-1000p {
19406
    min-width: 1000%;
19407
  }
16848 stevensc 19408
 
16825 efrain 19409
  .wd-md-1000-f {
19410
    width: 1000px !important;
19411
  }
16848 stevensc 19412
 
16825 efrain 19413
  .wd-md-1000p-f {
19414
    width: 1000% !important;
19415
  }
16848 stevensc 19416
 
16825 efrain 19417
  .mx-wd-md-1000p-f {
19418
    max-width: 1000% !important;
19419
  }
16848 stevensc 19420
 
16825 efrain 19421
  .mn-wd-md-1000p-f {
19422
    min-width: 1000% !important;
19423
  }
16848 stevensc 19424
 
16825 efrain 19425
  .wd-md-auto {
19426
    width: auto;
19427
  }
16848 stevensc 19428
 
16825 efrain 19429
  .wd-md-auto-f {
19430
    width: auto !important;
19431
  }
16848 stevensc 19432
 
16825 efrain 19433
  .wd-md-120 {
19434
    width: 120px;
19435
  }
19436
}
16848 stevensc 19437
 
16825 efrain 19438
@media (min-width: 992px) {
19439
  .wd-lg-5 {
19440
    width: 5px;
19441
  }
16848 stevensc 19442
 
16825 efrain 19443
  .wd-lg-5p {
19444
    width: 5%;
19445
  }
16848 stevensc 19446
 
16825 efrain 19447
  .mx-wd-lg-5p {
19448
    max-width: 5%;
19449
  }
16848 stevensc 19450
 
16825 efrain 19451
  .mn-wd-lg-5p {
19452
    min-width: 5%;
19453
  }
16848 stevensc 19454
 
16825 efrain 19455
  .wd-lg-5-f {
19456
    width: 5px !important;
19457
  }
16848 stevensc 19458
 
16825 efrain 19459
  .wd-lg-5p-f {
19460
    width: 5% !important;
19461
  }
16848 stevensc 19462
 
16825 efrain 19463
  .mx-wd-lg-5p-f {
19464
    max-width: 5% !important;
19465
  }
16848 stevensc 19466
 
16825 efrain 19467
  .mn-wd-lg-5p-f {
19468
    min-width: 5% !important;
19469
  }
16848 stevensc 19470
 
16825 efrain 19471
  .wd-lg-10 {
19472
    width: 10px;
19473
  }
16848 stevensc 19474
 
16825 efrain 19475
  .wd-lg-10p {
19476
    width: 10%;
19477
  }
16848 stevensc 19478
 
16825 efrain 19479
  .mx-wd-lg-10p {
19480
    max-width: 10%;
19481
  }
16848 stevensc 19482
 
16825 efrain 19483
  .mn-wd-lg-10p {
19484
    min-width: 10%;
19485
  }
16848 stevensc 19486
 
16825 efrain 19487
  .wd-lg-10-f {
19488
    width: 10px !important;
19489
  }
16848 stevensc 19490
 
16825 efrain 19491
  .wd-lg-10p-f {
19492
    width: 10% !important;
19493
  }
16848 stevensc 19494
 
16825 efrain 19495
  .mx-wd-lg-10p-f {
19496
    max-width: 10% !important;
19497
  }
16848 stevensc 19498
 
16825 efrain 19499
  .mn-wd-lg-10p-f {
19500
    min-width: 10% !important;
19501
  }
16848 stevensc 19502
 
16825 efrain 19503
  .wd-lg-15 {
19504
    width: 15px;
19505
  }
16848 stevensc 19506
 
16825 efrain 19507
  .wd-lg-15p {
19508
    width: 15%;
19509
  }
16848 stevensc 19510
 
16825 efrain 19511
  .mx-wd-lg-15p {
19512
    max-width: 15%;
19513
  }
16848 stevensc 19514
 
16825 efrain 19515
  .mn-wd-lg-15p {
19516
    min-width: 15%;
19517
  }
16848 stevensc 19518
 
16825 efrain 19519
  .wd-lg-15-f {
19520
    width: 15px !important;
19521
  }
16848 stevensc 19522
 
16825 efrain 19523
  .wd-lg-15p-f {
19524
    width: 15% !important;
19525
  }
16848 stevensc 19526
 
16825 efrain 19527
  .mx-wd-lg-15p-f {
19528
    max-width: 15% !important;
19529
  }
16848 stevensc 19530
 
16825 efrain 19531
  .mn-wd-lg-15p-f {
19532
    min-width: 15% !important;
19533
  }
16848 stevensc 19534
 
16825 efrain 19535
  .wd-lg-20 {
19536
    width: 20px;
19537
  }
16848 stevensc 19538
 
16825 efrain 19539
  .wd-lg-20p {
19540
    width: 20%;
19541
  }
16848 stevensc 19542
 
16825 efrain 19543
  .mx-wd-lg-20p {
19544
    max-width: 20%;
19545
  }
16848 stevensc 19546
 
16825 efrain 19547
  .mn-wd-lg-20p {
19548
    min-width: 20%;
19549
  }
16848 stevensc 19550
 
16825 efrain 19551
  .wd-lg-20-f {
19552
    width: 20px !important;
19553
  }
16848 stevensc 19554
 
16825 efrain 19555
  .wd-lg-20p-f {
19556
    width: 20% !important;
19557
  }
16848 stevensc 19558
 
16825 efrain 19559
  .mx-wd-lg-20p-f {
19560
    max-width: 20% !important;
19561
  }
16848 stevensc 19562
 
16825 efrain 19563
  .mn-wd-lg-20p-f {
19564
    min-width: 20% !important;
19565
  }
16848 stevensc 19566
 
16825 efrain 19567
  .wd-lg-25 {
19568
    width: 25px;
19569
  }
16848 stevensc 19570
 
16825 efrain 19571
  .wd-lg-25p {
19572
    width: 25%;
19573
  }
16848 stevensc 19574
 
16825 efrain 19575
  .mx-wd-lg-25p {
19576
    max-width: 25%;
19577
  }
16848 stevensc 19578
 
16825 efrain 19579
  .mn-wd-lg-25p {
19580
    min-width: 25%;
19581
  }
16848 stevensc 19582
 
16825 efrain 19583
  .wd-lg-25-f {
19584
    width: 25px !important;
19585
  }
16848 stevensc 19586
 
16825 efrain 19587
  .wd-lg-25p-f {
19588
    width: 25% !important;
19589
  }
16848 stevensc 19590
 
16825 efrain 19591
  .mx-wd-lg-25p-f {
19592
    max-width: 25% !important;
19593
  }
16848 stevensc 19594
 
16825 efrain 19595
  .mn-wd-lg-25p-f {
19596
    min-width: 25% !important;
19597
  }
16848 stevensc 19598
 
16825 efrain 19599
  .wd-lg-30 {
19600
    width: 30px;
19601
  }
16848 stevensc 19602
 
16825 efrain 19603
  .wd-lg-30p {
19604
    width: 30%;
19605
  }
16848 stevensc 19606
 
16825 efrain 19607
  .mx-wd-lg-30p {
19608
    max-width: 30%;
19609
  }
16848 stevensc 19610
 
16825 efrain 19611
  .mn-wd-lg-30p {
19612
    min-width: 30%;
19613
  }
16848 stevensc 19614
 
16825 efrain 19615
  .wd-lg-30-f {
19616
    width: 30px !important;
19617
  }
16848 stevensc 19618
 
16825 efrain 19619
  .wd-lg-30p-f {
19620
    width: 30% !important;
19621
  }
16848 stevensc 19622
 
16825 efrain 19623
  .mx-wd-lg-30p-f {
19624
    max-width: 30% !important;
19625
  }
16848 stevensc 19626
 
16825 efrain 19627
  .mn-wd-lg-30p-f {
19628
    min-width: 30% !important;
19629
  }
16848 stevensc 19630
 
16825 efrain 19631
  .wd-lg-35 {
19632
    width: 35px;
19633
  }
16848 stevensc 19634
 
16825 efrain 19635
  .wd-lg-35p {
19636
    width: 35%;
19637
  }
16848 stevensc 19638
 
16825 efrain 19639
  .mx-wd-lg-35p {
19640
    max-width: 35%;
19641
  }
16848 stevensc 19642
 
16825 efrain 19643
  .mn-wd-lg-35p {
19644
    min-width: 35%;
19645
  }
16848 stevensc 19646
 
16825 efrain 19647
  .wd-lg-35-f {
19648
    width: 35px !important;
19649
  }
16848 stevensc 19650
 
16825 efrain 19651
  .wd-lg-35p-f {
19652
    width: 35% !important;
19653
  }
16848 stevensc 19654
 
16825 efrain 19655
  .mx-wd-lg-35p-f {
19656
    max-width: 35% !important;
19657
  }
16848 stevensc 19658
 
16825 efrain 19659
  .mn-wd-lg-35p-f {
19660
    min-width: 35% !important;
19661
  }
16848 stevensc 19662
 
16825 efrain 19663
  .wd-lg-40 {
19664
    width: 40px;
19665
  }
16848 stevensc 19666
 
16825 efrain 19667
  .wd-lg-40p {
19668
    width: 40%;
19669
  }
16848 stevensc 19670
 
16825 efrain 19671
  .mx-wd-lg-40p {
19672
    max-width: 40%;
19673
  }
16848 stevensc 19674
 
16825 efrain 19675
  .mn-wd-lg-40p {
19676
    min-width: 40%;
19677
  }
16848 stevensc 19678
 
16825 efrain 19679
  .wd-lg-40-f {
19680
    width: 40px !important;
19681
  }
16848 stevensc 19682
 
16825 efrain 19683
  .wd-lg-40p-f {
19684
    width: 40% !important;
19685
  }
16848 stevensc 19686
 
16825 efrain 19687
  .mx-wd-lg-40p-f {
19688
    max-width: 40% !important;
19689
  }
16848 stevensc 19690
 
16825 efrain 19691
  .mn-wd-lg-40p-f {
19692
    min-width: 40% !important;
19693
  }
16848 stevensc 19694
 
16825 efrain 19695
  .wd-lg-45 {
19696
    width: 45px;
19697
  }
16848 stevensc 19698
 
16825 efrain 19699
  .wd-lg-45p {
19700
    width: 45%;
19701
  }
16848 stevensc 19702
 
16825 efrain 19703
  .mx-wd-lg-45p {
19704
    max-width: 45%;
19705
  }
16848 stevensc 19706
 
16825 efrain 19707
  .mn-wd-lg-45p {
19708
    min-width: 45%;
19709
  }
16848 stevensc 19710
 
16825 efrain 19711
  .wd-lg-45-f {
19712
    width: 45px !important;
19713
  }
16848 stevensc 19714
 
16825 efrain 19715
  .wd-lg-45p-f {
19716
    width: 45% !important;
19717
  }
16848 stevensc 19718
 
16825 efrain 19719
  .mx-wd-lg-45p-f {
19720
    max-width: 45% !important;
19721
  }
16848 stevensc 19722
 
16825 efrain 19723
  .mn-wd-lg-45p-f {
19724
    min-width: 45% !important;
19725
  }
16848 stevensc 19726
 
16825 efrain 19727
  .wd-lg-50 {
19728
    width: 50px;
19729
  }
16848 stevensc 19730
 
16825 efrain 19731
  .wd-lg-50p {
19732
    width: 50%;
19733
  }
16848 stevensc 19734
 
16825 efrain 19735
  .mx-wd-lg-50p {
19736
    max-width: 50%;
19737
  }
16848 stevensc 19738
 
16825 efrain 19739
  .mn-wd-lg-50p {
19740
    min-width: 50%;
19741
  }
16848 stevensc 19742
 
16825 efrain 19743
  .wd-lg-50-f {
19744
    width: 50px !important;
19745
  }
16848 stevensc 19746
 
16825 efrain 19747
  .wd-lg-50p-f {
19748
    width: 50% !important;
19749
  }
16848 stevensc 19750
 
16825 efrain 19751
  .mx-wd-lg-50p-f {
19752
    max-width: 50% !important;
19753
  }
16848 stevensc 19754
 
16825 efrain 19755
  .mn-wd-lg-50p-f {
19756
    min-width: 50% !important;
19757
  }
16848 stevensc 19758
 
16825 efrain 19759
  .wd-lg-55 {
19760
    width: 55px;
19761
  }
16848 stevensc 19762
 
16825 efrain 19763
  .wd-lg-55p {
19764
    width: 55%;
19765
  }
16848 stevensc 19766
 
16825 efrain 19767
  .mx-wd-lg-55p {
19768
    max-width: 55%;
19769
  }
16848 stevensc 19770
 
16825 efrain 19771
  .mn-wd-lg-55p {
19772
    min-width: 55%;
19773
  }
16848 stevensc 19774
 
16825 efrain 19775
  .wd-lg-55-f {
19776
    width: 55px !important;
19777
  }
16848 stevensc 19778
 
16825 efrain 19779
  .wd-lg-55p-f {
19780
    width: 55% !important;
19781
  }
16848 stevensc 19782
 
16825 efrain 19783
  .mx-wd-lg-55p-f {
19784
    max-width: 55% !important;
19785
  }
16848 stevensc 19786
 
16825 efrain 19787
  .mn-wd-lg-55p-f {
19788
    min-width: 55% !important;
19789
  }
16848 stevensc 19790
 
16825 efrain 19791
  .wd-lg-60 {
19792
    width: 60px;
19793
  }
16848 stevensc 19794
 
16825 efrain 19795
  .wd-lg-60p {
19796
    width: 60%;
19797
  }
16848 stevensc 19798
 
16825 efrain 19799
  .mx-wd-lg-60p {
19800
    max-width: 60%;
19801
  }
16848 stevensc 19802
 
16825 efrain 19803
  .mn-wd-lg-60p {
19804
    min-width: 60%;
19805
  }
16848 stevensc 19806
 
16825 efrain 19807
  .wd-lg-60-f {
19808
    width: 60px !important;
19809
  }
16848 stevensc 19810
 
16825 efrain 19811
  .wd-lg-60p-f {
19812
    width: 60% !important;
19813
  }
16848 stevensc 19814
 
16825 efrain 19815
  .mx-wd-lg-60p-f {
19816
    max-width: 60% !important;
19817
  }
16848 stevensc 19818
 
16825 efrain 19819
  .mn-wd-lg-60p-f {
19820
    min-width: 60% !important;
19821
  }
16848 stevensc 19822
 
16825 efrain 19823
  .wd-lg-65 {
19824
    width: 65px;
19825
  }
16848 stevensc 19826
 
16825 efrain 19827
  .wd-lg-65p {
19828
    width: 65%;
19829
  }
16848 stevensc 19830
 
16825 efrain 19831
  .mx-wd-lg-65p {
19832
    max-width: 65%;
19833
  }
16848 stevensc 19834
 
16825 efrain 19835
  .mn-wd-lg-65p {
19836
    min-width: 65%;
19837
  }
16848 stevensc 19838
 
16825 efrain 19839
  .wd-lg-65-f {
19840
    width: 65px !important;
19841
  }
16848 stevensc 19842
 
16825 efrain 19843
  .wd-lg-65p-f {
19844
    width: 65% !important;
19845
  }
16848 stevensc 19846
 
16825 efrain 19847
  .mx-wd-lg-65p-f {
19848
    max-width: 65% !important;
19849
  }
16848 stevensc 19850
 
16825 efrain 19851
  .mn-wd-lg-65p-f {
19852
    min-width: 65% !important;
19853
  }
16848 stevensc 19854
 
16825 efrain 19855
  .wd-lg-70 {
19856
    width: 70px;
19857
  }
16848 stevensc 19858
 
16825 efrain 19859
  .wd-lg-70p {
19860
    width: 70%;
19861
  }
16848 stevensc 19862
 
16825 efrain 19863
  .mx-wd-lg-70p {
19864
    max-width: 70%;
19865
  }
16848 stevensc 19866
 
16825 efrain 19867
  .mn-wd-lg-70p {
19868
    min-width: 70%;
19869
  }
16848 stevensc 19870
 
16825 efrain 19871
  .wd-lg-70-f {
19872
    width: 70px !important;
19873
  }
16848 stevensc 19874
 
16825 efrain 19875
  .wd-lg-70p-f {
19876
    width: 70% !important;
19877
  }
16848 stevensc 19878
 
16825 efrain 19879
  .mx-wd-lg-70p-f {
19880
    max-width: 70% !important;
19881
  }
16848 stevensc 19882
 
16825 efrain 19883
  .mn-wd-lg-70p-f {
19884
    min-width: 70% !important;
19885
  }
16848 stevensc 19886
 
16825 efrain 19887
  .wd-lg-75 {
19888
    width: 75px;
19889
  }
16848 stevensc 19890
 
16825 efrain 19891
  .wd-lg-75p {
19892
    width: 75%;
19893
  }
16848 stevensc 19894
 
16825 efrain 19895
  .mx-wd-lg-75p {
19896
    max-width: 75%;
19897
  }
16848 stevensc 19898
 
16825 efrain 19899
  .mn-wd-lg-75p {
19900
    min-width: 75%;
19901
  }
16848 stevensc 19902
 
16825 efrain 19903
  .wd-lg-75-f {
19904
    width: 75px !important;
19905
  }
16848 stevensc 19906
 
16825 efrain 19907
  .wd-lg-75p-f {
19908
    width: 75% !important;
19909
  }
16848 stevensc 19910
 
16825 efrain 19911
  .mx-wd-lg-75p-f {
19912
    max-width: 75% !important;
19913
  }
16848 stevensc 19914
 
16825 efrain 19915
  .mn-wd-lg-75p-f {
19916
    min-width: 75% !important;
19917
  }
16848 stevensc 19918
 
16825 efrain 19919
  .wd-lg-80 {
19920
    width: 80px;
19921
  }
16848 stevensc 19922
 
16825 efrain 19923
  .wd-lg-80p {
19924
    width: 80%;
19925
  }
16848 stevensc 19926
 
16825 efrain 19927
  .mx-wd-lg-80p {
19928
    max-width: 80%;
19929
  }
16848 stevensc 19930
 
16825 efrain 19931
  .mn-wd-lg-80p {
19932
    min-width: 80%;
19933
  }
16848 stevensc 19934
 
16825 efrain 19935
  .wd-lg-80-f {
19936
    width: 80px !important;
19937
  }
16848 stevensc 19938
 
16825 efrain 19939
  .wd-lg-80p-f {
19940
    width: 80% !important;
19941
  }
16848 stevensc 19942
 
16825 efrain 19943
  .mx-wd-lg-80p-f {
19944
    max-width: 80% !important;
19945
  }
16848 stevensc 19946
 
16825 efrain 19947
  .mn-wd-lg-80p-f {
19948
    min-width: 80% !important;
19949
  }
16848 stevensc 19950
 
16825 efrain 19951
  .wd-lg-85 {
19952
    width: 85px;
19953
  }
16848 stevensc 19954
 
16825 efrain 19955
  .wd-lg-85p {
19956
    width: 85%;
19957
  }
16848 stevensc 19958
 
16825 efrain 19959
  .mx-wd-lg-85p {
19960
    max-width: 85%;
19961
  }
16848 stevensc 19962
 
16825 efrain 19963
  .mn-wd-lg-85p {
19964
    min-width: 85%;
19965
  }
16848 stevensc 19966
 
16825 efrain 19967
  .wd-lg-85-f {
19968
    width: 85px !important;
19969
  }
16848 stevensc 19970
 
16825 efrain 19971
  .wd-lg-85p-f {
19972
    width: 85% !important;
19973
  }
16848 stevensc 19974
 
16825 efrain 19975
  .mx-wd-lg-85p-f {
19976
    max-width: 85% !important;
19977
  }
16848 stevensc 19978
 
16825 efrain 19979
  .mn-wd-lg-85p-f {
19980
    min-width: 85% !important;
19981
  }
16848 stevensc 19982
 
16825 efrain 19983
  .wd-lg-90 {
19984
    width: 90px;
19985
  }
16848 stevensc 19986
 
16825 efrain 19987
  .wd-lg-90p {
19988
    width: 90%;
19989
  }
16848 stevensc 19990
 
16825 efrain 19991
  .mx-wd-lg-90p {
19992
    max-width: 90%;
19993
  }
16848 stevensc 19994
 
16825 efrain 19995
  .mn-wd-lg-90p {
19996
    min-width: 90%;
19997
  }
16848 stevensc 19998
 
16825 efrain 19999
  .wd-lg-90-f {
20000
    width: 90px !important;
20001
  }
16848 stevensc 20002
 
16825 efrain 20003
  .wd-lg-90p-f {
20004
    width: 90% !important;
20005
  }
16848 stevensc 20006
 
16825 efrain 20007
  .mx-wd-lg-90p-f {
20008
    max-width: 90% !important;
20009
  }
16848 stevensc 20010
 
16825 efrain 20011
  .mn-wd-lg-90p-f {
20012
    min-width: 90% !important;
20013
  }
16848 stevensc 20014
 
16825 efrain 20015
  .wd-lg-95 {
20016
    width: 95px;
20017
  }
16848 stevensc 20018
 
16825 efrain 20019
  .wd-lg-95p {
20020
    width: 95%;
20021
  }
16848 stevensc 20022
 
16825 efrain 20023
  .mx-wd-lg-95p {
20024
    max-width: 95%;
20025
  }
16848 stevensc 20026
 
16825 efrain 20027
  .mn-wd-lg-95p {
20028
    min-width: 95%;
20029
  }
16848 stevensc 20030
 
16825 efrain 20031
  .wd-lg-95-f {
20032
    width: 95px !important;
20033
  }
16848 stevensc 20034
 
16825 efrain 20035
  .wd-lg-95p-f {
20036
    width: 95% !important;
20037
  }
16848 stevensc 20038
 
16825 efrain 20039
  .mx-wd-lg-95p-f {
20040
    max-width: 95% !important;
20041
  }
16848 stevensc 20042
 
16825 efrain 20043
  .mn-wd-lg-95p-f {
20044
    min-width: 95% !important;
20045
  }
16848 stevensc 20046
 
16825 efrain 20047
  .wd-lg-100 {
20048
    width: 100px;
20049
  }
16848 stevensc 20050
 
16825 efrain 20051
  .wd-lg-100p {
20052
    width: 100%;
20053
  }
16848 stevensc 20054
 
16825 efrain 20055
  .mx-wd-lg-100p {
20056
    max-width: 100%;
20057
  }
16848 stevensc 20058
 
16825 efrain 20059
  .mn-wd-lg-100p {
20060
    min-width: 100%;
20061
  }
16848 stevensc 20062
 
16825 efrain 20063
  .wd-lg-100-f {
20064
    width: 100px !important;
20065
  }
16848 stevensc 20066
 
16825 efrain 20067
  .wd-lg-100p-f {
20068
    width: 100% !important;
20069
  }
16848 stevensc 20070
 
16825 efrain 20071
  .mx-wd-lg-100p-f {
20072
    max-width: 100% !important;
20073
  }
16848 stevensc 20074
 
16825 efrain 20075
  .mn-wd-lg-100p-f {
20076
    min-width: 100% !important;
20077
  }
16848 stevensc 20078
 
16825 efrain 20079
  .wd-lg-150 {
20080
    width: 150px;
20081
  }
16848 stevensc 20082
 
16825 efrain 20083
  .wd-lg-150p {
20084
    width: 150%;
20085
  }
16848 stevensc 20086
 
16825 efrain 20087
  .mx-wd-lg-150p {
20088
    max-width: 150%;
20089
  }
16848 stevensc 20090
 
16825 efrain 20091
  .mn-wd-lg-150p {
20092
    min-width: 150%;
20093
  }
16848 stevensc 20094
 
16825 efrain 20095
  .wd-lg-150-f {
20096
    width: 150px !important;
20097
  }
16848 stevensc 20098
 
16825 efrain 20099
  .wd-lg-150p-f {
20100
    width: 150% !important;
20101
  }
16848 stevensc 20102
 
16825 efrain 20103
  .mx-wd-lg-150p-f {
20104
    max-width: 150% !important;
20105
  }
16848 stevensc 20106
 
16825 efrain 20107
  .mn-wd-lg-150p-f {
20108
    min-width: 150% !important;
20109
  }
16848 stevensc 20110
 
16825 efrain 20111
  .wd-lg-200 {
20112
    width: 200px;
20113
  }
16848 stevensc 20114
 
16825 efrain 20115
  .wd-lg-200p {
20116
    width: 200%;
20117
  }
16848 stevensc 20118
 
16825 efrain 20119
  .mx-wd-lg-200p {
20120
    max-width: 200%;
20121
  }
16848 stevensc 20122
 
16825 efrain 20123
  .mn-wd-lg-200p {
20124
    min-width: 200%;
20125
  }
16848 stevensc 20126
 
16825 efrain 20127
  .wd-lg-200-f {
20128
    width: 200px !important;
20129
  }
16848 stevensc 20130
 
16825 efrain 20131
  .wd-lg-200p-f {
20132
    width: 200% !important;
20133
  }
16848 stevensc 20134
 
16825 efrain 20135
  .mx-wd-lg-200p-f {
20136
    max-width: 200% !important;
20137
  }
16848 stevensc 20138
 
16825 efrain 20139
  .mn-wd-lg-200p-f {
20140
    min-width: 200% !important;
20141
  }
16848 stevensc 20142
 
16825 efrain 20143
  .wd-lg-250 {
20144
    width: 250px;
20145
  }
16848 stevensc 20146
 
16825 efrain 20147
  .wd-lg-250p {
20148
    width: 250%;
20149
  }
16848 stevensc 20150
 
16825 efrain 20151
  .mx-wd-lg-250p {
20152
    max-width: 250%;
20153
  }
16848 stevensc 20154
 
16825 efrain 20155
  .mn-wd-lg-250p {
20156
    min-width: 250%;
20157
  }
16848 stevensc 20158
 
16825 efrain 20159
  .wd-lg-250-f {
20160
    width: 250px !important;
20161
  }
16848 stevensc 20162
 
16825 efrain 20163
  .wd-lg-250p-f {
20164
    width: 250% !important;
20165
  }
16848 stevensc 20166
 
16825 efrain 20167
  .mx-wd-lg-250p-f {
20168
    max-width: 250% !important;
20169
  }
16848 stevensc 20170
 
16825 efrain 20171
  .mn-wd-lg-250p-f {
20172
    min-width: 250% !important;
20173
  }
16848 stevensc 20174
 
16825 efrain 20175
  .wd-lg-300 {
20176
    width: 300px;
20177
  }
16848 stevensc 20178
 
16825 efrain 20179
  .wd-lg-300p {
20180
    width: 300%;
20181
  }
16848 stevensc 20182
 
16825 efrain 20183
  .mx-wd-lg-300p {
20184
    max-width: 300%;
20185
  }
16848 stevensc 20186
 
16825 efrain 20187
  .mn-wd-lg-300p {
20188
    min-width: 300%;
20189
  }
16848 stevensc 20190
 
16825 efrain 20191
  .wd-lg-300-f {
20192
    width: 300px !important;
20193
  }
16848 stevensc 20194
 
16825 efrain 20195
  .wd-lg-300p-f {
20196
    width: 300% !important;
20197
  }
16848 stevensc 20198
 
16825 efrain 20199
  .mx-wd-lg-300p-f {
20200
    max-width: 300% !important;
20201
  }
16848 stevensc 20202
 
16825 efrain 20203
  .mn-wd-lg-300p-f {
20204
    min-width: 300% !important;
20205
  }
16848 stevensc 20206
 
16825 efrain 20207
  .wd-lg-350 {
20208
    width: 350px;
20209
  }
16848 stevensc 20210
 
16825 efrain 20211
  .wd-lg-350p {
20212
    width: 350%;
20213
  }
16848 stevensc 20214
 
16825 efrain 20215
  .mx-wd-lg-350p {
20216
    max-width: 350%;
20217
  }
16848 stevensc 20218
 
16825 efrain 20219
  .mn-wd-lg-350p {
20220
    min-width: 350%;
20221
  }
16848 stevensc 20222
 
16825 efrain 20223
  .wd-lg-350-f {
20224
    width: 350px !important;
20225
  }
16848 stevensc 20226
 
16825 efrain 20227
  .wd-lg-350p-f {
20228
    width: 350% !important;
20229
  }
16848 stevensc 20230
 
16825 efrain 20231
  .mx-wd-lg-350p-f {
20232
    max-width: 350% !important;
20233
  }
16848 stevensc 20234
 
16825 efrain 20235
  .mn-wd-lg-350p-f {
20236
    min-width: 350% !important;
20237
  }
16848 stevensc 20238
 
16825 efrain 20239
  .wd-lg-400 {
20240
    width: 400px;
20241
  }
16848 stevensc 20242
 
16825 efrain 20243
  .wd-lg-400p {
20244
    width: 400%;
20245
  }
16848 stevensc 20246
 
16825 efrain 20247
  .mx-wd-lg-400p {
20248
    max-width: 400%;
20249
  }
16848 stevensc 20250
 
16825 efrain 20251
  .mn-wd-lg-400p {
20252
    min-width: 400%;
20253
  }
16848 stevensc 20254
 
16825 efrain 20255
  .wd-lg-400-f {
20256
    width: 400px !important;
20257
  }
16848 stevensc 20258
 
16825 efrain 20259
  .wd-lg-400p-f {
20260
    width: 400% !important;
20261
  }
16848 stevensc 20262
 
16825 efrain 20263
  .mx-wd-lg-400p-f {
20264
    max-width: 400% !important;
20265
  }
16848 stevensc 20266
 
16825 efrain 20267
  .mn-wd-lg-400p-f {
20268
    min-width: 400% !important;
20269
  }
16848 stevensc 20270
 
16825 efrain 20271
  .wd-lg-450 {
20272
    width: 450px;
20273
  }
16848 stevensc 20274
 
16825 efrain 20275
  .wd-lg-450p {
20276
    width: 450%;
20277
  }
16848 stevensc 20278
 
16825 efrain 20279
  .mx-wd-lg-450p {
20280
    max-width: 450%;
20281
  }
16848 stevensc 20282
 
16825 efrain 20283
  .mn-wd-lg-450p {
20284
    min-width: 450%;
20285
  }
16848 stevensc 20286
 
16825 efrain 20287
  .wd-lg-450-f {
20288
    width: 450px !important;
20289
  }
16848 stevensc 20290
 
16825 efrain 20291
  .wd-lg-450p-f {
20292
    width: 450% !important;
20293
  }
16848 stevensc 20294
 
16825 efrain 20295
  .mx-wd-lg-450p-f {
20296
    max-width: 450% !important;
20297
  }
16848 stevensc 20298
 
16825 efrain 20299
  .mn-wd-lg-450p-f {
20300
    min-width: 450% !important;
20301
  }
16848 stevensc 20302
 
16825 efrain 20303
  .wd-lg-500 {
20304
    width: 500px;
20305
  }
16848 stevensc 20306
 
16825 efrain 20307
  .wd-lg-500p {
20308
    width: 500%;
20309
  }
16848 stevensc 20310
 
16825 efrain 20311
  .mx-wd-lg-500p {
20312
    max-width: 500%;
20313
  }
16848 stevensc 20314
 
16825 efrain 20315
  .mn-wd-lg-500p {
20316
    min-width: 500%;
20317
  }
16848 stevensc 20318
 
16825 efrain 20319
  .wd-lg-500-f {
20320
    width: 500px !important;
20321
  }
16848 stevensc 20322
 
16825 efrain 20323
  .wd-lg-500p-f {
20324
    width: 500% !important;
20325
  }
16848 stevensc 20326
 
16825 efrain 20327
  .mx-wd-lg-500p-f {
20328
    max-width: 500% !important;
20329
  }
16848 stevensc 20330
 
16825 efrain 20331
  .mn-wd-lg-500p-f {
20332
    min-width: 500% !important;
20333
  }
16848 stevensc 20334
 
16825 efrain 20335
  .wd-lg-550 {
20336
    width: 550px;
20337
  }
16848 stevensc 20338
 
16825 efrain 20339
  .wd-lg-550p {
20340
    width: 550%;
20341
  }
16848 stevensc 20342
 
16825 efrain 20343
  .mx-wd-lg-550p {
20344
    max-width: 550%;
20345
  }
16848 stevensc 20346
 
16825 efrain 20347
  .mn-wd-lg-550p {
20348
    min-width: 550%;
20349
  }
16848 stevensc 20350
 
16825 efrain 20351
  .wd-lg-550-f {
20352
    width: 550px !important;
20353
  }
16848 stevensc 20354
 
16825 efrain 20355
  .wd-lg-550p-f {
20356
    width: 550% !important;
20357
  }
16848 stevensc 20358
 
16825 efrain 20359
  .mx-wd-lg-550p-f {
20360
    max-width: 550% !important;
20361
  }
16848 stevensc 20362
 
16825 efrain 20363
  .mn-wd-lg-550p-f {
20364
    min-width: 550% !important;
20365
  }
16848 stevensc 20366
 
16825 efrain 20367
  .wd-lg-600 {
20368
    width: 600px;
20369
  }
16848 stevensc 20370
 
16825 efrain 20371
  .wd-lg-600p {
20372
    width: 600%;
20373
  }
16848 stevensc 20374
 
16825 efrain 20375
  .mx-wd-lg-600p {
20376
    max-width: 600%;
20377
  }
16848 stevensc 20378
 
16825 efrain 20379
  .mn-wd-lg-600p {
20380
    min-width: 600%;
20381
  }
16848 stevensc 20382
 
16825 efrain 20383
  .wd-lg-600-f {
20384
    width: 600px !important;
20385
  }
16848 stevensc 20386
 
16825 efrain 20387
  .wd-lg-600p-f {
20388
    width: 600% !important;
20389
  }
16848 stevensc 20390
 
16825 efrain 20391
  .mx-wd-lg-600p-f {
20392
    max-width: 600% !important;
20393
  }
16848 stevensc 20394
 
16825 efrain 20395
  .mn-wd-lg-600p-f {
20396
    min-width: 600% !important;
20397
  }
16848 stevensc 20398
 
16825 efrain 20399
  .wd-lg-650 {
20400
    width: 650px;
20401
  }
16848 stevensc 20402
 
16825 efrain 20403
  .wd-lg-650p {
20404
    width: 650%;
20405
  }
16848 stevensc 20406
 
16825 efrain 20407
  .mx-wd-lg-650p {
20408
    max-width: 650%;
20409
  }
16848 stevensc 20410
 
16825 efrain 20411
  .mn-wd-lg-650p {
20412
    min-width: 650%;
20413
  }
16848 stevensc 20414
 
16825 efrain 20415
  .wd-lg-650-f {
20416
    width: 650px !important;
20417
  }
16848 stevensc 20418
 
16825 efrain 20419
  .wd-lg-650p-f {
20420
    width: 650% !important;
20421
  }
16848 stevensc 20422
 
16825 efrain 20423
  .mx-wd-lg-650p-f {
20424
    max-width: 650% !important;
20425
  }
16848 stevensc 20426
 
16825 efrain 20427
  .mn-wd-lg-650p-f {
20428
    min-width: 650% !important;
20429
  }
16848 stevensc 20430
 
16825 efrain 20431
  .wd-lg-700 {
20432
    width: 700px;
20433
  }
16848 stevensc 20434
 
16825 efrain 20435
  .wd-lg-700p {
20436
    width: 700%;
20437
  }
16848 stevensc 20438
 
16825 efrain 20439
  .mx-wd-lg-700p {
20440
    max-width: 700%;
20441
  }
16848 stevensc 20442
 
16825 efrain 20443
  .mn-wd-lg-700p {
20444
    min-width: 700%;
20445
  }
16848 stevensc 20446
 
16825 efrain 20447
  .wd-lg-700-f {
20448
    width: 700px !important;
20449
  }
16848 stevensc 20450
 
16825 efrain 20451
  .wd-lg-700p-f {
20452
    width: 700% !important;
20453
  }
16848 stevensc 20454
 
16825 efrain 20455
  .mx-wd-lg-700p-f {
20456
    max-width: 700% !important;
20457
  }
16848 stevensc 20458
 
16825 efrain 20459
  .mn-wd-lg-700p-f {
20460
    min-width: 700% !important;
20461
  }
16848 stevensc 20462
 
16825 efrain 20463
  .wd-lg-750 {
20464
    width: 750px;
20465
  }
16848 stevensc 20466
 
16825 efrain 20467
  .wd-lg-750p {
20468
    width: 750%;
20469
  }
16848 stevensc 20470
 
16825 efrain 20471
  .mx-wd-lg-750p {
20472
    max-width: 750%;
20473
  }
16848 stevensc 20474
 
16825 efrain 20475
  .mn-wd-lg-750p {
20476
    min-width: 750%;
20477
  }
16848 stevensc 20478
 
16825 efrain 20479
  .wd-lg-750-f {
20480
    width: 750px !important;
20481
  }
16848 stevensc 20482
 
16825 efrain 20483
  .wd-lg-750p-f {
20484
    width: 750% !important;
20485
  }
16848 stevensc 20486
 
16825 efrain 20487
  .mx-wd-lg-750p-f {
20488
    max-width: 750% !important;
20489
  }
16848 stevensc 20490
 
16825 efrain 20491
  .mn-wd-lg-750p-f {
20492
    min-width: 750% !important;
20493
  }
16848 stevensc 20494
 
16825 efrain 20495
  .wd-lg-800 {
20496
    width: 800px;
20497
  }
16848 stevensc 20498
 
16825 efrain 20499
  .wd-lg-800p {
20500
    width: 800%;
20501
  }
16848 stevensc 20502
 
16825 efrain 20503
  .mx-wd-lg-800p {
20504
    max-width: 800%;
20505
  }
16848 stevensc 20506
 
16825 efrain 20507
  .mn-wd-lg-800p {
20508
    min-width: 800%;
20509
  }
16848 stevensc 20510
 
16825 efrain 20511
  .wd-lg-800-f {
20512
    width: 800px !important;
20513
  }
16848 stevensc 20514
 
16825 efrain 20515
  .wd-lg-800p-f {
20516
    width: 800% !important;
20517
  }
16848 stevensc 20518
 
16825 efrain 20519
  .mx-wd-lg-800p-f {
20520
    max-width: 800% !important;
20521
  }
16848 stevensc 20522
 
16825 efrain 20523
  .mn-wd-lg-800p-f {
20524
    min-width: 800% !important;
20525
  }
16848 stevensc 20526
 
16825 efrain 20527
  .wd-lg-850 {
20528
    width: 850px;
20529
  }
16848 stevensc 20530
 
16825 efrain 20531
  .wd-lg-850p {
20532
    width: 850%;
20533
  }
16848 stevensc 20534
 
16825 efrain 20535
  .mx-wd-lg-850p {
20536
    max-width: 850%;
20537
  }
16848 stevensc 20538
 
16825 efrain 20539
  .mn-wd-lg-850p {
20540
    min-width: 850%;
20541
  }
16848 stevensc 20542
 
16825 efrain 20543
  .wd-lg-850-f {
20544
    width: 850px !important;
20545
  }
16848 stevensc 20546
 
16825 efrain 20547
  .wd-lg-850p-f {
20548
    width: 850% !important;
20549
  }
16848 stevensc 20550
 
16825 efrain 20551
  .mx-wd-lg-850p-f {
20552
    max-width: 850% !important;
20553
  }
16848 stevensc 20554
 
16825 efrain 20555
  .mn-wd-lg-850p-f {
20556
    min-width: 850% !important;
20557
  }
16848 stevensc 20558
 
16825 efrain 20559
  .wd-lg-900 {
20560
    width: 900px;
20561
  }
16848 stevensc 20562
 
16825 efrain 20563
  .wd-lg-900p {
20564
    width: 900%;
20565
  }
16848 stevensc 20566
 
16825 efrain 20567
  .mx-wd-lg-900p {
20568
    max-width: 900%;
20569
  }
16848 stevensc 20570
 
16825 efrain 20571
  .mn-wd-lg-900p {
20572
    min-width: 900%;
20573
  }
16848 stevensc 20574
 
16825 efrain 20575
  .wd-lg-900-f {
20576
    width: 900px !important;
20577
  }
16848 stevensc 20578
 
16825 efrain 20579
  .wd-lg-900p-f {
20580
    width: 900% !important;
20581
  }
16848 stevensc 20582
 
16825 efrain 20583
  .mx-wd-lg-900p-f {
20584
    max-width: 900% !important;
20585
  }
16848 stevensc 20586
 
16825 efrain 20587
  .mn-wd-lg-900p-f {
20588
    min-width: 900% !important;
20589
  }
16848 stevensc 20590
 
16825 efrain 20591
  .wd-lg-950 {
20592
    width: 950px;
20593
  }
16848 stevensc 20594
 
16825 efrain 20595
  .wd-lg-950p {
20596
    width: 950%;
20597
  }
16848 stevensc 20598
 
16825 efrain 20599
  .mx-wd-lg-950p {
20600
    max-width: 950%;
20601
  }
16848 stevensc 20602
 
16825 efrain 20603
  .mn-wd-lg-950p {
20604
    min-width: 950%;
20605
  }
16848 stevensc 20606
 
16825 efrain 20607
  .wd-lg-950-f {
20608
    width: 950px !important;
20609
  }
16848 stevensc 20610
 
16825 efrain 20611
  .wd-lg-950p-f {
20612
    width: 950% !important;
20613
  }
16848 stevensc 20614
 
16825 efrain 20615
  .mx-wd-lg-950p-f {
20616
    max-width: 950% !important;
20617
  }
16848 stevensc 20618
 
16825 efrain 20619
  .mn-wd-lg-950p-f {
20620
    min-width: 950% !important;
20621
  }
16848 stevensc 20622
 
16825 efrain 20623
  .wd-lg-1000 {
20624
    width: 1000px;
20625
  }
16848 stevensc 20626
 
16825 efrain 20627
  .wd-lg-1000p {
20628
    width: 1000%;
20629
  }
16848 stevensc 20630
 
16825 efrain 20631
  .mx-wd-lg-1000p {
20632
    max-width: 1000%;
20633
  }
16848 stevensc 20634
 
16825 efrain 20635
  .mn-wd-lg-1000p {
20636
    min-width: 1000%;
20637
  }
16848 stevensc 20638
 
16825 efrain 20639
  .wd-lg-1000-f {
20640
    width: 1000px !important;
20641
  }
16848 stevensc 20642
 
16825 efrain 20643
  .wd-lg-1000p-f {
20644
    width: 1000% !important;
20645
  }
16848 stevensc 20646
 
16825 efrain 20647
  .mx-wd-lg-1000p-f {
20648
    max-width: 1000% !important;
20649
  }
16848 stevensc 20650
 
16825 efrain 20651
  .mn-wd-lg-1000p-f {
20652
    min-width: 1000% !important;
20653
  }
16848 stevensc 20654
 
16825 efrain 20655
  .wd-lg-auto {
20656
    width: auto;
20657
  }
16848 stevensc 20658
 
16825 efrain 20659
  .wd-lg-auto-f {
20660
    width: auto !important;
20661
  }
20662
}
16848 stevensc 20663
 
16825 efrain 20664
@media (min-width: 1200px) {
20665
  .wd-xl-5 {
20666
    width: 5px;
20667
  }
16848 stevensc 20668
 
16825 efrain 20669
  .wd-xl-5p {
20670
    width: 5%;
20671
  }
16848 stevensc 20672
 
16825 efrain 20673
  .mx-wd-xl-5p {
20674
    max-width: 5%;
20675
  }
16848 stevensc 20676
 
16825 efrain 20677
  .mn-wd-xl-5p {
20678
    min-width: 5%;
20679
  }
16848 stevensc 20680
 
16825 efrain 20681
  .wd-xl-5-f {
20682
    width: 5px !important;
20683
  }
16848 stevensc 20684
 
16825 efrain 20685
  .wd-xl-5p-f {
20686
    width: 5% !important;
20687
  }
16848 stevensc 20688
 
16825 efrain 20689
  .mx-wd-xl-5p-f {
20690
    max-width: 5% !important;
20691
  }
16848 stevensc 20692
 
16825 efrain 20693
  .mn-wd-xl-5p-f {
20694
    min-width: 5% !important;
20695
  }
16848 stevensc 20696
 
16825 efrain 20697
  .wd-xl-10 {
20698
    width: 10px;
20699
  }
16848 stevensc 20700
 
16825 efrain 20701
  .wd-xl-10p {
20702
    width: 10%;
20703
  }
16848 stevensc 20704
 
16825 efrain 20705
  .mx-wd-xl-10p {
20706
    max-width: 10%;
20707
  }
16848 stevensc 20708
 
16825 efrain 20709
  .mn-wd-xl-10p {
20710
    min-width: 10%;
20711
  }
16848 stevensc 20712
 
16825 efrain 20713
  .wd-xl-10-f {
20714
    width: 10px !important;
20715
  }
16848 stevensc 20716
 
16825 efrain 20717
  .wd-xl-10p-f {
20718
    width: 10% !important;
20719
  }
16848 stevensc 20720
 
16825 efrain 20721
  .mx-wd-xl-10p-f {
20722
    max-width: 10% !important;
20723
  }
16848 stevensc 20724
 
16825 efrain 20725
  .mn-wd-xl-10p-f {
20726
    min-width: 10% !important;
20727
  }
16848 stevensc 20728
 
16825 efrain 20729
  .wd-xl-15 {
20730
    width: 15px;
20731
  }
16848 stevensc 20732
 
16825 efrain 20733
  .wd-xl-15p {
20734
    width: 15%;
20735
  }
16848 stevensc 20736
 
16825 efrain 20737
  .mx-wd-xl-15p {
20738
    max-width: 15%;
20739
  }
16848 stevensc 20740
 
16825 efrain 20741
  .mn-wd-xl-15p {
20742
    min-width: 15%;
20743
  }
16848 stevensc 20744
 
16825 efrain 20745
  .wd-xl-15-f {
20746
    width: 15px !important;
20747
  }
16848 stevensc 20748
 
16825 efrain 20749
  .wd-xl-15p-f {
20750
    width: 15% !important;
20751
  }
16848 stevensc 20752
 
16825 efrain 20753
  .mx-wd-xl-15p-f {
20754
    max-width: 15% !important;
20755
  }
16848 stevensc 20756
 
16825 efrain 20757
  .mn-wd-xl-15p-f {
20758
    min-width: 15% !important;
20759
  }
16848 stevensc 20760
 
16825 efrain 20761
  .wd-xl-20 {
20762
    width: 20px;
20763
  }
16848 stevensc 20764
 
16825 efrain 20765
  .wd-xl-20p {
20766
    width: 20%;
20767
  }
16848 stevensc 20768
 
16825 efrain 20769
  .mx-wd-xl-20p {
20770
    max-width: 20%;
20771
  }
16848 stevensc 20772
 
16825 efrain 20773
  .mn-wd-xl-20p {
20774
    min-width: 20%;
20775
  }
16848 stevensc 20776
 
16825 efrain 20777
  .wd-xl-20-f {
20778
    width: 20px !important;
20779
  }
16848 stevensc 20780
 
16825 efrain 20781
  .wd-xl-20p-f {
20782
    width: 20% !important;
20783
  }
16848 stevensc 20784
 
16825 efrain 20785
  .mx-wd-xl-20p-f {
20786
    max-width: 20% !important;
20787
  }
16848 stevensc 20788
 
16825 efrain 20789
  .mn-wd-xl-20p-f {
20790
    min-width: 20% !important;
20791
  }
16848 stevensc 20792
 
16825 efrain 20793
  .wd-xl-25 {
20794
    width: 25px;
20795
  }
16848 stevensc 20796
 
16825 efrain 20797
  .wd-xl-25p {
20798
    width: 25%;
20799
  }
16848 stevensc 20800
 
16825 efrain 20801
  .mx-wd-xl-25p {
20802
    max-width: 25%;
20803
  }
16848 stevensc 20804
 
16825 efrain 20805
  .mn-wd-xl-25p {
20806
    min-width: 25%;
20807
  }
16848 stevensc 20808
 
16825 efrain 20809
  .wd-xl-25-f {
20810
    width: 25px !important;
20811
  }
16848 stevensc 20812
 
16825 efrain 20813
  .wd-xl-25p-f {
20814
    width: 25% !important;
20815
  }
16848 stevensc 20816
 
16825 efrain 20817
  .mx-wd-xl-25p-f {
20818
    max-width: 25% !important;
20819
  }
16848 stevensc 20820
 
16825 efrain 20821
  .mn-wd-xl-25p-f {
20822
    min-width: 25% !important;
20823
  }
16848 stevensc 20824
 
16825 efrain 20825
  .wd-xl-30 {
20826
    width: 30px;
20827
  }
16848 stevensc 20828
 
16825 efrain 20829
  .wd-xl-30p {
20830
    width: 30%;
20831
  }
16848 stevensc 20832
 
16825 efrain 20833
  .mx-wd-xl-30p {
20834
    max-width: 30%;
20835
  }
16848 stevensc 20836
 
16825 efrain 20837
  .mn-wd-xl-30p {
20838
    min-width: 30%;
20839
  }
16848 stevensc 20840
 
16825 efrain 20841
  .wd-xl-30-f {
20842
    width: 30px !important;
20843
  }
16848 stevensc 20844
 
16825 efrain 20845
  .wd-xl-30p-f {
20846
    width: 30% !important;
20847
  }
16848 stevensc 20848
 
16825 efrain 20849
  .mx-wd-xl-30p-f {
20850
    max-width: 30% !important;
20851
  }
16848 stevensc 20852
 
16825 efrain 20853
  .mn-wd-xl-30p-f {
20854
    min-width: 30% !important;
20855
  }
16848 stevensc 20856
 
16825 efrain 20857
  .wd-xl-35 {
20858
    width: 35px;
20859
  }
16848 stevensc 20860
 
16825 efrain 20861
  .wd-xl-35p {
20862
    width: 35%;
20863
  }
16848 stevensc 20864
 
16825 efrain 20865
  .mx-wd-xl-35p {
20866
    max-width: 35%;
20867
  }
16848 stevensc 20868
 
16825 efrain 20869
  .mn-wd-xl-35p {
20870
    min-width: 35%;
20871
  }
16848 stevensc 20872
 
16825 efrain 20873
  .wd-xl-35-f {
20874
    width: 35px !important;
20875
  }
16848 stevensc 20876
 
16825 efrain 20877
  .wd-xl-35p-f {
20878
    width: 35% !important;
20879
  }
16848 stevensc 20880
 
16825 efrain 20881
  .mx-wd-xl-35p-f {
20882
    max-width: 35% !important;
20883
  }
16848 stevensc 20884
 
16825 efrain 20885
  .mn-wd-xl-35p-f {
20886
    min-width: 35% !important;
20887
  }
16848 stevensc 20888
 
16825 efrain 20889
  .wd-xl-40 {
20890
    width: 40px;
20891
  }
16848 stevensc 20892
 
16825 efrain 20893
  .wd-xl-40p {
20894
    width: 40%;
20895
  }
16848 stevensc 20896
 
16825 efrain 20897
  .mx-wd-xl-40p {
20898
    max-width: 40%;
20899
  }
16848 stevensc 20900
 
16825 efrain 20901
  .mn-wd-xl-40p {
20902
    min-width: 40%;
20903
  }
16848 stevensc 20904
 
16825 efrain 20905
  .wd-xl-40-f {
20906
    width: 40px !important;
20907
  }
16848 stevensc 20908
 
16825 efrain 20909
  .wd-xl-40p-f {
20910
    width: 40% !important;
20911
  }
16848 stevensc 20912
 
16825 efrain 20913
  .mx-wd-xl-40p-f {
20914
    max-width: 40% !important;
20915
  }
16848 stevensc 20916
 
16825 efrain 20917
  .mn-wd-xl-40p-f {
20918
    min-width: 40% !important;
20919
  }
16848 stevensc 20920
 
16825 efrain 20921
  .wd-xl-45 {
20922
    width: 45px;
20923
  }
16848 stevensc 20924
 
16825 efrain 20925
  .wd-xl-45p {
20926
    width: 45%;
20927
  }
16848 stevensc 20928
 
16825 efrain 20929
  .mx-wd-xl-45p {
20930
    max-width: 45%;
20931
  }
16848 stevensc 20932
 
16825 efrain 20933
  .mn-wd-xl-45p {
20934
    min-width: 45%;
20935
  }
16848 stevensc 20936
 
16825 efrain 20937
  .wd-xl-45-f {
20938
    width: 45px !important;
20939
  }
16848 stevensc 20940
 
16825 efrain 20941
  .wd-xl-45p-f {
20942
    width: 45% !important;
20943
  }
16848 stevensc 20944
 
16825 efrain 20945
  .mx-wd-xl-45p-f {
20946
    max-width: 45% !important;
20947
  }
16848 stevensc 20948
 
16825 efrain 20949
  .mn-wd-xl-45p-f {
20950
    min-width: 45% !important;
20951
  }
16848 stevensc 20952
 
16825 efrain 20953
  .wd-xl-50 {
20954
    width: 50px;
20955
  }
16848 stevensc 20956
 
16825 efrain 20957
  .wd-xl-50p {
20958
    width: 50%;
20959
  }
16848 stevensc 20960
 
16825 efrain 20961
  .mx-wd-xl-50p {
20962
    max-width: 50%;
20963
  }
16848 stevensc 20964
 
16825 efrain 20965
  .mn-wd-xl-50p {
20966
    min-width: 50%;
20967
  }
16848 stevensc 20968
 
16825 efrain 20969
  .wd-xl-50-f {
20970
    width: 50px !important;
20971
  }
16848 stevensc 20972
 
16825 efrain 20973
  .wd-xl-50p-f {
20974
    width: 50% !important;
20975
  }
16848 stevensc 20976
 
16825 efrain 20977
  .mx-wd-xl-50p-f {
20978
    max-width: 50% !important;
20979
  }
16848 stevensc 20980
 
16825 efrain 20981
  .mn-wd-xl-50p-f {
20982
    min-width: 50% !important;
20983
  }
16848 stevensc 20984
 
16825 efrain 20985
  .wd-xl-55 {
20986
    width: 55px;
20987
  }
16848 stevensc 20988
 
16825 efrain 20989
  .wd-xl-55p {
20990
    width: 55%;
20991
  }
16848 stevensc 20992
 
16825 efrain 20993
  .mx-wd-xl-55p {
20994
    max-width: 55%;
20995
  }
16848 stevensc 20996
 
16825 efrain 20997
  .mn-wd-xl-55p {
20998
    min-width: 55%;
20999
  }
16848 stevensc 21000
 
16825 efrain 21001
  .wd-xl-55-f {
21002
    width: 55px !important;
21003
  }
16848 stevensc 21004
 
16825 efrain 21005
  .wd-xl-55p-f {
21006
    width: 55% !important;
21007
  }
16848 stevensc 21008
 
16825 efrain 21009
  .mx-wd-xl-55p-f {
21010
    max-width: 55% !important;
21011
  }
16848 stevensc 21012
 
16825 efrain 21013
  .mn-wd-xl-55p-f {
21014
    min-width: 55% !important;
21015
  }
16848 stevensc 21016
 
16825 efrain 21017
  .wd-xl-60 {
21018
    width: 60px;
21019
  }
16848 stevensc 21020
 
16825 efrain 21021
  .wd-xl-60p {
21022
    width: 60%;
21023
  }
16848 stevensc 21024
 
16825 efrain 21025
  .mx-wd-xl-60p {
21026
    max-width: 60%;
21027
  }
16848 stevensc 21028
 
16825 efrain 21029
  .mn-wd-xl-60p {
21030
    min-width: 60%;
21031
  }
16848 stevensc 21032
 
16825 efrain 21033
  .wd-xl-60-f {
21034
    width: 60px !important;
21035
  }
16848 stevensc 21036
 
16825 efrain 21037
  .wd-xl-60p-f {
21038
    width: 60% !important;
21039
  }
16848 stevensc 21040
 
16825 efrain 21041
  .mx-wd-xl-60p-f {
21042
    max-width: 60% !important;
21043
  }
16848 stevensc 21044
 
16825 efrain 21045
  .mn-wd-xl-60p-f {
21046
    min-width: 60% !important;
21047
  }
16848 stevensc 21048
 
16825 efrain 21049
  .wd-xl-65 {
21050
    width: 65px;
21051
  }
16848 stevensc 21052
 
16825 efrain 21053
  .wd-xl-65p {
21054
    width: 65%;
21055
  }
16848 stevensc 21056
 
16825 efrain 21057
  .mx-wd-xl-65p {
21058
    max-width: 65%;
21059
  }
16848 stevensc 21060
 
16825 efrain 21061
  .mn-wd-xl-65p {
21062
    min-width: 65%;
21063
  }
16848 stevensc 21064
 
16825 efrain 21065
  .wd-xl-65-f {
21066
    width: 65px !important;
21067
  }
16848 stevensc 21068
 
16825 efrain 21069
  .wd-xl-65p-f {
21070
    width: 65% !important;
21071
  }
16848 stevensc 21072
 
16825 efrain 21073
  .mx-wd-xl-65p-f {
21074
    max-width: 65% !important;
21075
  }
16848 stevensc 21076
 
16825 efrain 21077
  .mn-wd-xl-65p-f {
21078
    min-width: 65% !important;
21079
  }
16848 stevensc 21080
 
16825 efrain 21081
  .wd-xl-70 {
21082
    width: 70px;
21083
  }
16848 stevensc 21084
 
16825 efrain 21085
  .wd-xl-70p {
21086
    width: 70%;
21087
  }
16848 stevensc 21088
 
16825 efrain 21089
  .mx-wd-xl-70p {
21090
    max-width: 70%;
21091
  }
16848 stevensc 21092
 
16825 efrain 21093
  .mn-wd-xl-70p {
21094
    min-width: 70%;
21095
  }
16848 stevensc 21096
 
16825 efrain 21097
  .wd-xl-70-f {
21098
    width: 70px !important;
21099
  }
16848 stevensc 21100
 
16825 efrain 21101
  .wd-xl-70p-f {
21102
    width: 70% !important;
21103
  }
16848 stevensc 21104
 
16825 efrain 21105
  .mx-wd-xl-70p-f {
21106
    max-width: 70% !important;
21107
  }
16848 stevensc 21108
 
16825 efrain 21109
  .mn-wd-xl-70p-f {
21110
    min-width: 70% !important;
21111
  }
16848 stevensc 21112
 
16825 efrain 21113
  .wd-xl-75 {
21114
    width: 75px;
21115
  }
16848 stevensc 21116
 
16825 efrain 21117
  .wd-xl-75p {
21118
    width: 75%;
21119
  }
16848 stevensc 21120
 
16825 efrain 21121
  .mx-wd-xl-75p {
21122
    max-width: 75%;
21123
  }
16848 stevensc 21124
 
16825 efrain 21125
  .mn-wd-xl-75p {
21126
    min-width: 75%;
21127
  }
16848 stevensc 21128
 
16825 efrain 21129
  .wd-xl-75-f {
21130
    width: 75px !important;
21131
  }
16848 stevensc 21132
 
16825 efrain 21133
  .wd-xl-75p-f {
21134
    width: 75% !important;
21135
  }
16848 stevensc 21136
 
16825 efrain 21137
  .mx-wd-xl-75p-f {
21138
    max-width: 75% !important;
21139
  }
16848 stevensc 21140
 
16825 efrain 21141
  .mn-wd-xl-75p-f {
21142
    min-width: 75% !important;
21143
  }
16848 stevensc 21144
 
16825 efrain 21145
  .wd-xl-80 {
21146
    width: 80px;
21147
  }
16848 stevensc 21148
 
16825 efrain 21149
  .wd-xl-80p {
21150
    width: 80%;
21151
  }
16848 stevensc 21152
 
16825 efrain 21153
  .mx-wd-xl-80p {
21154
    max-width: 80%;
21155
  }
16848 stevensc 21156
 
16825 efrain 21157
  .mn-wd-xl-80p {
21158
    min-width: 80%;
21159
  }
16848 stevensc 21160
 
16825 efrain 21161
  .wd-xl-80-f {
21162
    width: 80px !important;
21163
  }
16848 stevensc 21164
 
16825 efrain 21165
  .wd-xl-80p-f {
21166
    width: 80% !important;
21167
  }
16848 stevensc 21168
 
16825 efrain 21169
  .mx-wd-xl-80p-f {
21170
    max-width: 80% !important;
21171
  }
16848 stevensc 21172
 
16825 efrain 21173
  .mn-wd-xl-80p-f {
21174
    min-width: 80% !important;
21175
  }
16848 stevensc 21176
 
16825 efrain 21177
  .wd-xl-85 {
21178
    width: 85px;
21179
  }
16848 stevensc 21180
 
16825 efrain 21181
  .wd-xl-85p {
21182
    width: 85%;
21183
  }
16848 stevensc 21184
 
16825 efrain 21185
  .mx-wd-xl-85p {
21186
    max-width: 85%;
21187
  }
16848 stevensc 21188
 
16825 efrain 21189
  .mn-wd-xl-85p {
21190
    min-width: 85%;
21191
  }
16848 stevensc 21192
 
16825 efrain 21193
  .wd-xl-85-f {
21194
    width: 85px !important;
21195
  }
16848 stevensc 21196
 
16825 efrain 21197
  .wd-xl-85p-f {
21198
    width: 85% !important;
21199
  }
16848 stevensc 21200
 
16825 efrain 21201
  .mx-wd-xl-85p-f {
21202
    max-width: 85% !important;
21203
  }
16848 stevensc 21204
 
16825 efrain 21205
  .mn-wd-xl-85p-f {
21206
    min-width: 85% !important;
21207
  }
16848 stevensc 21208
 
16825 efrain 21209
  .wd-xl-90 {
21210
    width: 90px;
21211
  }
16848 stevensc 21212
 
16825 efrain 21213
  .wd-xl-90p {
21214
    width: 90%;
21215
  }
16848 stevensc 21216
 
16825 efrain 21217
  .mx-wd-xl-90p {
21218
    max-width: 90%;
21219
  }
16848 stevensc 21220
 
16825 efrain 21221
  .mn-wd-xl-90p {
21222
    min-width: 90%;
21223
  }
16848 stevensc 21224
 
16825 efrain 21225
  .wd-xl-90-f {
21226
    width: 90px !important;
21227
  }
16848 stevensc 21228
 
16825 efrain 21229
  .wd-xl-90p-f {
21230
    width: 90% !important;
21231
  }
16848 stevensc 21232
 
16825 efrain 21233
  .mx-wd-xl-90p-f {
21234
    max-width: 90% !important;
21235
  }
16848 stevensc 21236
 
16825 efrain 21237
  .mn-wd-xl-90p-f {
21238
    min-width: 90% !important;
21239
  }
16848 stevensc 21240
 
16825 efrain 21241
  .wd-xl-95 {
21242
    width: 95px;
21243
  }
16848 stevensc 21244
 
16825 efrain 21245
  .wd-xl-95p {
21246
    width: 95%;
21247
  }
16848 stevensc 21248
 
16825 efrain 21249
  .mx-wd-xl-95p {
21250
    max-width: 95%;
21251
  }
16848 stevensc 21252
 
16825 efrain 21253
  .mn-wd-xl-95p {
21254
    min-width: 95%;
21255
  }
16848 stevensc 21256
 
16825 efrain 21257
  .wd-xl-95-f {
21258
    width: 95px !important;
21259
  }
16848 stevensc 21260
 
16825 efrain 21261
  .wd-xl-95p-f {
21262
    width: 95% !important;
21263
  }
16848 stevensc 21264
 
16825 efrain 21265
  .mx-wd-xl-95p-f {
21266
    max-width: 95% !important;
21267
  }
16848 stevensc 21268
 
16825 efrain 21269
  .mn-wd-xl-95p-f {
21270
    min-width: 95% !important;
21271
  }
16848 stevensc 21272
 
16825 efrain 21273
  .wd-xl-100 {
21274
    width: 100px;
21275
  }
16848 stevensc 21276
 
16825 efrain 21277
  .wd-xl-100p {
21278
    width: 100%;
21279
  }
16848 stevensc 21280
 
16825 efrain 21281
  .mx-wd-xl-100p {
21282
    max-width: 100%;
21283
  }
16848 stevensc 21284
 
16825 efrain 21285
  .mn-wd-xl-100p {
21286
    min-width: 100%;
21287
  }
16848 stevensc 21288
 
16825 efrain 21289
  .wd-xl-100-f {
21290
    width: 100px !important;
21291
  }
16848 stevensc 21292
 
16825 efrain 21293
  .wd-xl-100p-f {
21294
    width: 100% !important;
21295
  }
16848 stevensc 21296
 
16825 efrain 21297
  .mx-wd-xl-100p-f {
21298
    max-width: 100% !important;
21299
  }
16848 stevensc 21300
 
16825 efrain 21301
  .mn-wd-xl-100p-f {
21302
    min-width: 100% !important;
21303
  }
16848 stevensc 21304
 
16825 efrain 21305
  .wd-xl-150 {
21306
    width: 150px;
21307
  }
16848 stevensc 21308
 
16825 efrain 21309
  .wd-xl-150p {
21310
    width: 150%;
21311
  }
16848 stevensc 21312
 
16825 efrain 21313
  .mx-wd-xl-150p {
21314
    max-width: 150%;
21315
  }
16848 stevensc 21316
 
16825 efrain 21317
  .mn-wd-xl-150p {
21318
    min-width: 150%;
21319
  }
16848 stevensc 21320
 
16825 efrain 21321
  .wd-xl-150-f {
21322
    width: 150px !important;
21323
  }
16848 stevensc 21324
 
16825 efrain 21325
  .wd-xl-150p-f {
21326
    width: 150% !important;
21327
  }
16848 stevensc 21328
 
16825 efrain 21329
  .mx-wd-xl-150p-f {
21330
    max-width: 150% !important;
21331
  }
16848 stevensc 21332
 
16825 efrain 21333
  .mn-wd-xl-150p-f {
21334
    min-width: 150% !important;
21335
  }
16848 stevensc 21336
 
16825 efrain 21337
  .wd-xl-200 {
21338
    width: 200px;
21339
  }
16848 stevensc 21340
 
16825 efrain 21341
  .wd-xl-200p {
21342
    width: 200%;
21343
  }
16848 stevensc 21344
 
16825 efrain 21345
  .mx-wd-xl-200p {
21346
    max-width: 200%;
21347
  }
16848 stevensc 21348
 
16825 efrain 21349
  .mn-wd-xl-200p {
21350
    min-width: 200%;
21351
  }
16848 stevensc 21352
 
16825 efrain 21353
  .wd-xl-200-f {
21354
    width: 200px !important;
21355
  }
16848 stevensc 21356
 
16825 efrain 21357
  .wd-xl-200p-f {
21358
    width: 200% !important;
21359
  }
16848 stevensc 21360
 
16825 efrain 21361
  .mx-wd-xl-200p-f {
21362
    max-width: 200% !important;
21363
  }
16848 stevensc 21364
 
16825 efrain 21365
  .mn-wd-xl-200p-f {
21366
    min-width: 200% !important;
21367
  }
16848 stevensc 21368
 
16825 efrain 21369
  .wd-xl-250 {
21370
    width: 250px;
21371
  }
16848 stevensc 21372
 
16825 efrain 21373
  .wd-xl-250p {
21374
    width: 250%;
21375
  }
16848 stevensc 21376
 
16825 efrain 21377
  .mx-wd-xl-250p {
21378
    max-width: 250%;
21379
  }
16848 stevensc 21380
 
16825 efrain 21381
  .mn-wd-xl-250p {
21382
    min-width: 250%;
21383
  }
16848 stevensc 21384
 
16825 efrain 21385
  .wd-xl-250-f {
21386
    width: 250px !important;
21387
  }
16848 stevensc 21388
 
16825 efrain 21389
  .wd-xl-250p-f {
21390
    width: 250% !important;
21391
  }
16848 stevensc 21392
 
16825 efrain 21393
  .mx-wd-xl-250p-f {
21394
    max-width: 250% !important;
21395
  }
16848 stevensc 21396
 
16825 efrain 21397
  .mn-wd-xl-250p-f {
21398
    min-width: 250% !important;
21399
  }
16848 stevensc 21400
 
16825 efrain 21401
  .wd-xl-300 {
21402
    width: 300px;
21403
  }
16848 stevensc 21404
 
16825 efrain 21405
  .wd-xl-300p {
21406
    width: 300%;
21407
  }
16848 stevensc 21408
 
16825 efrain 21409
  .mx-wd-xl-300p {
21410
    max-width: 300%;
21411
  }
16848 stevensc 21412
 
16825 efrain 21413
  .mn-wd-xl-300p {
21414
    min-width: 300%;
21415
  }
16848 stevensc 21416
 
16825 efrain 21417
  .wd-xl-300-f {
21418
    width: 300px !important;
21419
  }
16848 stevensc 21420
 
16825 efrain 21421
  .wd-xl-300p-f {
21422
    width: 300% !important;
21423
  }
16848 stevensc 21424
 
16825 efrain 21425
  .mx-wd-xl-300p-f {
21426
    max-width: 300% !important;
21427
  }
16848 stevensc 21428
 
16825 efrain 21429
  .mn-wd-xl-300p-f {
21430
    min-width: 300% !important;
21431
  }
16848 stevensc 21432
 
16825 efrain 21433
  .wd-xl-350 {
21434
    width: 350px;
21435
  }
16848 stevensc 21436
 
16825 efrain 21437
  .wd-xl-350p {
21438
    width: 350%;
21439
  }
16848 stevensc 21440
 
16825 efrain 21441
  .mx-wd-xl-350p {
21442
    max-width: 350%;
21443
  }
16848 stevensc 21444
 
16825 efrain 21445
  .mn-wd-xl-350p {
21446
    min-width: 350%;
21447
  }
16848 stevensc 21448
 
16825 efrain 21449
  .wd-xl-350-f {
21450
    width: 350px !important;
21451
  }
16848 stevensc 21452
 
16825 efrain 21453
  .wd-xl-350p-f {
21454
    width: 350% !important;
21455
  }
16848 stevensc 21456
 
16825 efrain 21457
  .mx-wd-xl-350p-f {
21458
    max-width: 350% !important;
21459
  }
16848 stevensc 21460
 
16825 efrain 21461
  .mn-wd-xl-350p-f {
21462
    min-width: 350% !important;
21463
  }
16848 stevensc 21464
 
16825 efrain 21465
  .wd-xl-400 {
21466
    width: 400px;
21467
  }
16848 stevensc 21468
 
16825 efrain 21469
  .wd-xl-400p {
21470
    width: 400%;
21471
  }
16848 stevensc 21472
 
16825 efrain 21473
  .mx-wd-xl-400p {
21474
    max-width: 400%;
21475
  }
16848 stevensc 21476
 
16825 efrain 21477
  .mn-wd-xl-400p {
21478
    min-width: 400%;
21479
  }
16848 stevensc 21480
 
16825 efrain 21481
  .wd-xl-400-f {
21482
    width: 400px !important;
21483
  }
16848 stevensc 21484
 
16825 efrain 21485
  .wd-xl-400p-f {
21486
    width: 400% !important;
21487
  }
16848 stevensc 21488
 
16825 efrain 21489
  .mx-wd-xl-400p-f {
21490
    max-width: 400% !important;
21491
  }
16848 stevensc 21492
 
16825 efrain 21493
  .mn-wd-xl-400p-f {
21494
    min-width: 400% !important;
21495
  }
16848 stevensc 21496
 
16825 efrain 21497
  .wd-xl-450 {
21498
    width: 450px;
21499
  }
16848 stevensc 21500
 
16825 efrain 21501
  .wd-xl-450p {
21502
    width: 450%;
21503
  }
16848 stevensc 21504
 
16825 efrain 21505
  .mx-wd-xl-450p {
21506
    max-width: 450%;
21507
  }
16848 stevensc 21508
 
16825 efrain 21509
  .mn-wd-xl-450p {
21510
    min-width: 450%;
21511
  }
16848 stevensc 21512
 
16825 efrain 21513
  .wd-xl-450-f {
21514
    width: 450px !important;
21515
  }
16848 stevensc 21516
 
16825 efrain 21517
  .wd-xl-450p-f {
21518
    width: 450% !important;
21519
  }
16848 stevensc 21520
 
16825 efrain 21521
  .mx-wd-xl-450p-f {
21522
    max-width: 450% !important;
21523
  }
16848 stevensc 21524
 
16825 efrain 21525
  .mn-wd-xl-450p-f {
21526
    min-width: 450% !important;
21527
  }
16848 stevensc 21528
 
16825 efrain 21529
  .wd-xl-500 {
21530
    width: 500px;
21531
  }
16848 stevensc 21532
 
16825 efrain 21533
  .wd-xl-500p {
21534
    width: 500%;
21535
  }
16848 stevensc 21536
 
16825 efrain 21537
  .mx-wd-xl-500p {
21538
    max-width: 500%;
21539
  }
16848 stevensc 21540
 
16825 efrain 21541
  .mn-wd-xl-500p {
21542
    min-width: 500%;
21543
  }
16848 stevensc 21544
 
16825 efrain 21545
  .wd-xl-500-f {
21546
    width: 500px !important;
21547
  }
16848 stevensc 21548
 
16825 efrain 21549
  .wd-xl-500p-f {
21550
    width: 500% !important;
21551
  }
16848 stevensc 21552
 
16825 efrain 21553
  .mx-wd-xl-500p-f {
21554
    max-width: 500% !important;
21555
  }
16848 stevensc 21556
 
16825 efrain 21557
  .mn-wd-xl-500p-f {
21558
    min-width: 500% !important;
21559
  }
16848 stevensc 21560
 
16825 efrain 21561
  .wd-xl-550 {
21562
    width: 550px;
21563
  }
16848 stevensc 21564
 
16825 efrain 21565
  .wd-xl-550p {
21566
    width: 550%;
21567
  }
16848 stevensc 21568
 
16825 efrain 21569
  .mx-wd-xl-550p {
21570
    max-width: 550%;
21571
  }
16848 stevensc 21572
 
16825 efrain 21573
  .mn-wd-xl-550p {
21574
    min-width: 550%;
21575
  }
16848 stevensc 21576
 
16825 efrain 21577
  .wd-xl-550-f {
21578
    width: 550px !important;
21579
  }
16848 stevensc 21580
 
16825 efrain 21581
  .wd-xl-550p-f {
21582
    width: 550% !important;
21583
  }
16848 stevensc 21584
 
16825 efrain 21585
  .mx-wd-xl-550p-f {
21586
    max-width: 550% !important;
21587
  }
16848 stevensc 21588
 
16825 efrain 21589
  .mn-wd-xl-550p-f {
21590
    min-width: 550% !important;
21591
  }
16848 stevensc 21592
 
16825 efrain 21593
  .wd-xl-600 {
21594
    width: 600px;
21595
  }
16848 stevensc 21596
 
16825 efrain 21597
  .wd-xl-600p {
21598
    width: 600%;
21599
  }
16848 stevensc 21600
 
16825 efrain 21601
  .mx-wd-xl-600p {
21602
    max-width: 600%;
21603
  }
16848 stevensc 21604
 
16825 efrain 21605
  .mn-wd-xl-600p {
21606
    min-width: 600%;
21607
  }
16848 stevensc 21608
 
16825 efrain 21609
  .wd-xl-600-f {
21610
    width: 600px !important;
21611
  }
16848 stevensc 21612
 
16825 efrain 21613
  .wd-xl-600p-f {
21614
    width: 600% !important;
21615
  }
16848 stevensc 21616
 
16825 efrain 21617
  .mx-wd-xl-600p-f {
21618
    max-width: 600% !important;
21619
  }
16848 stevensc 21620
 
16825 efrain 21621
  .mn-wd-xl-600p-f {
21622
    min-width: 600% !important;
21623
  }
16848 stevensc 21624
 
16825 efrain 21625
  .wd-xl-650 {
21626
    width: 650px;
21627
  }
16848 stevensc 21628
 
16825 efrain 21629
  .wd-xl-650p {
21630
    width: 650%;
21631
  }
16848 stevensc 21632
 
16825 efrain 21633
  .mx-wd-xl-650p {
21634
    max-width: 650%;
21635
  }
16848 stevensc 21636
 
16825 efrain 21637
  .mn-wd-xl-650p {
21638
    min-width: 650%;
21639
  }
16848 stevensc 21640
 
16825 efrain 21641
  .wd-xl-650-f {
21642
    width: 650px !important;
21643
  }
16848 stevensc 21644
 
16825 efrain 21645
  .wd-xl-650p-f {
21646
    width: 650% !important;
21647
  }
16848 stevensc 21648
 
16825 efrain 21649
  .mx-wd-xl-650p-f {
21650
    max-width: 650% !important;
21651
  }
16848 stevensc 21652
 
16825 efrain 21653
  .mn-wd-xl-650p-f {
21654
    min-width: 650% !important;
21655
  }
16848 stevensc 21656
 
16825 efrain 21657
  .wd-xl-700 {
21658
    width: 700px;
21659
  }
16848 stevensc 21660
 
16825 efrain 21661
  .wd-xl-700p {
21662
    width: 700%;
21663
  }
16848 stevensc 21664
 
16825 efrain 21665
  .mx-wd-xl-700p {
21666
    max-width: 700%;
21667
  }
16848 stevensc 21668
 
16825 efrain 21669
  .mn-wd-xl-700p {
21670
    min-width: 700%;
21671
  }
16848 stevensc 21672
 
16825 efrain 21673
  .wd-xl-700-f {
21674
    width: 700px !important;
21675
  }
16848 stevensc 21676
 
16825 efrain 21677
  .wd-xl-700p-f {
21678
    width: 700% !important;
21679
  }
16848 stevensc 21680
 
16825 efrain 21681
  .mx-wd-xl-700p-f {
21682
    max-width: 700% !important;
21683
  }
16848 stevensc 21684
 
16825 efrain 21685
  .mn-wd-xl-700p-f {
21686
    min-width: 700% !important;
21687
  }
16848 stevensc 21688
 
16825 efrain 21689
  .wd-xl-750 {
21690
    width: 750px;
21691
  }
16848 stevensc 21692
 
16825 efrain 21693
  .wd-xl-750p {
21694
    width: 750%;
21695
  }
16848 stevensc 21696
 
16825 efrain 21697
  .mx-wd-xl-750p {
21698
    max-width: 750%;
21699
  }
16848 stevensc 21700
 
16825 efrain 21701
  .mn-wd-xl-750p {
21702
    min-width: 750%;
21703
  }
16848 stevensc 21704
 
16825 efrain 21705
  .wd-xl-750-f {
21706
    width: 750px !important;
21707
  }
16848 stevensc 21708
 
16825 efrain 21709
  .wd-xl-750p-f {
21710
    width: 750% !important;
21711
  }
16848 stevensc 21712
 
16825 efrain 21713
  .mx-wd-xl-750p-f {
21714
    max-width: 750% !important;
21715
  }
16848 stevensc 21716
 
16825 efrain 21717
  .mn-wd-xl-750p-f {
21718
    min-width: 750% !important;
21719
  }
16848 stevensc 21720
 
16825 efrain 21721
  .wd-xl-800 {
21722
    width: 800px;
21723
  }
16848 stevensc 21724
 
16825 efrain 21725
  .wd-xl-800p {
21726
    width: 800%;
21727
  }
16848 stevensc 21728
 
16825 efrain 21729
  .mx-wd-xl-800p {
21730
    max-width: 800%;
21731
  }
16848 stevensc 21732
 
16825 efrain 21733
  .mn-wd-xl-800p {
21734
    min-width: 800%;
21735
  }
16848 stevensc 21736
 
16825 efrain 21737
  .wd-xl-800-f {
21738
    width: 800px !important;
21739
  }
16848 stevensc 21740
 
16825 efrain 21741
  .wd-xl-800p-f {
21742
    width: 800% !important;
21743
  }
16848 stevensc 21744
 
16825 efrain 21745
  .mx-wd-xl-800p-f {
21746
    max-width: 800% !important;
21747
  }
16848 stevensc 21748
 
16825 efrain 21749
  .mn-wd-xl-800p-f {
21750
    min-width: 800% !important;
21751
  }
16848 stevensc 21752
 
16825 efrain 21753
  .wd-xl-850 {
21754
    width: 850px;
21755
  }
16848 stevensc 21756
 
16825 efrain 21757
  .wd-xl-850p {
21758
    width: 850%;
21759
  }
16848 stevensc 21760
 
16825 efrain 21761
  .mx-wd-xl-850p {
21762
    max-width: 850%;
21763
  }
16848 stevensc 21764
 
16825 efrain 21765
  .mn-wd-xl-850p {
21766
    min-width: 850%;
21767
  }
16848 stevensc 21768
 
16825 efrain 21769
  .wd-xl-850-f {
21770
    width: 850px !important;
21771
  }
16848 stevensc 21772
 
16825 efrain 21773
  .wd-xl-850p-f {
21774
    width: 850% !important;
21775
  }
16848 stevensc 21776
 
16825 efrain 21777
  .mx-wd-xl-850p-f {
21778
    max-width: 850% !important;
21779
  }
16848 stevensc 21780
 
16825 efrain 21781
  .mn-wd-xl-850p-f {
21782
    min-width: 850% !important;
21783
  }
16848 stevensc 21784
 
16825 efrain 21785
  .wd-xl-900 {
21786
    width: 900px;
21787
  }
16848 stevensc 21788
 
16825 efrain 21789
  .wd-xl-900p {
21790
    width: 900%;
21791
  }
16848 stevensc 21792
 
16825 efrain 21793
  .mx-wd-xl-900p {
21794
    max-width: 900%;
21795
  }
16848 stevensc 21796
 
16825 efrain 21797
  .mn-wd-xl-900p {
21798
    min-width: 900%;
21799
  }
16848 stevensc 21800
 
16825 efrain 21801
  .wd-xl-900-f {
21802
    width: 900px !important;
21803
  }
16848 stevensc 21804
 
16825 efrain 21805
  .wd-xl-900p-f {
21806
    width: 900% !important;
21807
  }
16848 stevensc 21808
 
16825 efrain 21809
  .mx-wd-xl-900p-f {
21810
    max-width: 900% !important;
21811
  }
16848 stevensc 21812
 
16825 efrain 21813
  .mn-wd-xl-900p-f {
21814
    min-width: 900% !important;
21815
  }
16848 stevensc 21816
 
16825 efrain 21817
  .wd-xl-950 {
21818
    width: 950px;
21819
  }
16848 stevensc 21820
 
16825 efrain 21821
  .wd-xl-950p {
21822
    width: 950%;
21823
  }
16848 stevensc 21824
 
16825 efrain 21825
  .mx-wd-xl-950p {
21826
    max-width: 950%;
21827
  }
16848 stevensc 21828
 
16825 efrain 21829
  .mn-wd-xl-950p {
21830
    min-width: 950%;
21831
  }
16848 stevensc 21832
 
16825 efrain 21833
  .wd-xl-950-f {
21834
    width: 950px !important;
21835
  }
16848 stevensc 21836
 
16825 efrain 21837
  .wd-xl-950p-f {
21838
    width: 950% !important;
21839
  }
16848 stevensc 21840
 
16825 efrain 21841
  .mx-wd-xl-950p-f {
21842
    max-width: 950% !important;
21843
  }
16848 stevensc 21844
 
16825 efrain 21845
  .mn-wd-xl-950p-f {
21846
    min-width: 950% !important;
21847
  }
16848 stevensc 21848
 
16825 efrain 21849
  .wd-xl-1000 {
21850
    width: 1000px;
21851
  }
16848 stevensc 21852
 
16825 efrain 21853
  .wd-xl-1000p {
21854
    width: 1000%;
21855
  }
16848 stevensc 21856
 
16825 efrain 21857
  .mx-wd-xl-1000p {
21858
    max-width: 1000%;
21859
  }
16848 stevensc 21860
 
16825 efrain 21861
  .mn-wd-xl-1000p {
21862
    min-width: 1000%;
21863
  }
16848 stevensc 21864
 
16825 efrain 21865
  .wd-xl-1000-f {
21866
    width: 1000px !important;
21867
  }
16848 stevensc 21868
 
16825 efrain 21869
  .wd-xl-1000p-f {
21870
    width: 1000% !important;
21871
  }
16848 stevensc 21872
 
16825 efrain 21873
  .mx-wd-xl-1000p-f {
21874
    max-width: 1000% !important;
21875
  }
16848 stevensc 21876
 
16825 efrain 21877
  .mn-wd-xl-1000p-f {
21878
    min-width: 1000% !important;
21879
  }
16848 stevensc 21880
 
16825 efrain 21881
  .wd-xl-auto {
21882
    width: auto;
21883
  }
16848 stevensc 21884
 
16825 efrain 21885
  .wd-xl-auto {
21886
    width: auto !important;
21887
  }
21888
}
16848 stevensc 21889
 
16825 efrain 21890
@media (min-width: 1400px) {
21891
  .wd-xxl-5 {
21892
    width: 5px;
21893
  }
16848 stevensc 21894
 
16825 efrain 21895
  .wd-xxl-5p {
21896
    width: 5%;
21897
  }
16848 stevensc 21898
 
16825 efrain 21899
  .mx-wd-xxl-5p {
21900
    max-width: 5%;
21901
  }
16848 stevensc 21902
 
16825 efrain 21903
  .mn-wd-xxl-5p {
21904
    min-width: 5%;
21905
  }
16848 stevensc 21906
 
16825 efrain 21907
  .wd-xxl-5-f {
21908
    width: 5px !important;
21909
  }
16848 stevensc 21910
 
16825 efrain 21911
  .wd-xxl-5p-f {
21912
    width: 5% !important;
21913
  }
16848 stevensc 21914
 
16825 efrain 21915
  .mx-wd-xxl-5p-f {
21916
    max-width: 5% !important;
21917
  }
16848 stevensc 21918
 
16825 efrain 21919
  .mn-wd-xxl-5p-f {
21920
    min-width: 5% !important;
21921
  }
16848 stevensc 21922
 
16825 efrain 21923
  .wd-xxl-10 {
21924
    width: 10px;
21925
  }
16848 stevensc 21926
 
16825 efrain 21927
  .wd-xxl-10p {
21928
    width: 10%;
21929
  }
16848 stevensc 21930
 
16825 efrain 21931
  .mx-wd-xxl-10p {
21932
    max-width: 10%;
21933
  }
16848 stevensc 21934
 
16825 efrain 21935
  .mn-wd-xxl-10p {
21936
    min-width: 10%;
21937
  }
16848 stevensc 21938
 
16825 efrain 21939
  .wd-xxl-10-f {
21940
    width: 10px !important;
21941
  }
16848 stevensc 21942
 
16825 efrain 21943
  .wd-xxl-10p-f {
21944
    width: 10% !important;
21945
  }
16848 stevensc 21946
 
16825 efrain 21947
  .mx-wd-xxl-10p-f {
21948
    max-width: 10% !important;
21949
  }
16848 stevensc 21950
 
16825 efrain 21951
  .mn-wd-xxl-10p-f {
21952
    min-width: 10% !important;
21953
  }
16848 stevensc 21954
 
16825 efrain 21955
  .wd-xxl-15 {
21956
    width: 15px;
21957
  }
16848 stevensc 21958
 
16825 efrain 21959
  .wd-xxl-15p {
21960
    width: 15%;
21961
  }
16848 stevensc 21962
 
16825 efrain 21963
  .mx-wd-xxl-15p {
21964
    max-width: 15%;
21965
  }
16848 stevensc 21966
 
16825 efrain 21967
  .mn-wd-xxl-15p {
21968
    min-width: 15%;
21969
  }
16848 stevensc 21970
 
16825 efrain 21971
  .wd-xxl-15-f {
21972
    width: 15px !important;
21973
  }
16848 stevensc 21974
 
16825 efrain 21975
  .wd-xxl-15p-f {
21976
    width: 15% !important;
21977
  }
16848 stevensc 21978
 
16825 efrain 21979
  .mx-wd-xxl-15p-f {
21980
    max-width: 15% !important;
21981
  }
16848 stevensc 21982
 
16825 efrain 21983
  .mn-wd-xxl-15p-f {
21984
    min-width: 15% !important;
21985
  }
16848 stevensc 21986
 
16825 efrain 21987
  .wd-xxl-20 {
21988
    width: 20px;
21989
  }
16848 stevensc 21990
 
16825 efrain 21991
  .wd-xxl-20p {
21992
    width: 20%;
21993
  }
16848 stevensc 21994
 
16825 efrain 21995
  .mx-wd-xxl-20p {
21996
    max-width: 20%;
21997
  }
16848 stevensc 21998
 
16825 efrain 21999
  .mn-wd-xxl-20p {
22000
    min-width: 20%;
22001
  }
16848 stevensc 22002
 
16825 efrain 22003
  .wd-xxl-20-f {
22004
    width: 20px !important;
22005
  }
16848 stevensc 22006
 
16825 efrain 22007
  .wd-xxl-20p-f {
22008
    width: 20% !important;
22009
  }
16848 stevensc 22010
 
16825 efrain 22011
  .mx-wd-xxl-20p-f {
22012
    max-width: 20% !important;
22013
  }
16848 stevensc 22014
 
16825 efrain 22015
  .mn-wd-xxl-20p-f {
22016
    min-width: 20% !important;
22017
  }
16848 stevensc 22018
 
16825 efrain 22019
  .wd-xxl-25 {
22020
    width: 25px;
22021
  }
16848 stevensc 22022
 
16825 efrain 22023
  .wd-xxl-25p {
22024
    width: 25%;
22025
  }
16848 stevensc 22026
 
16825 efrain 22027
  .mx-wd-xxl-25p {
22028
    max-width: 25%;
22029
  }
16848 stevensc 22030
 
16825 efrain 22031
  .mn-wd-xxl-25p {
22032
    min-width: 25%;
22033
  }
16848 stevensc 22034
 
16825 efrain 22035
  .wd-xxl-25-f {
22036
    width: 25px !important;
22037
  }
16848 stevensc 22038
 
16825 efrain 22039
  .wd-xxl-25p-f {
22040
    width: 25% !important;
22041
  }
16848 stevensc 22042
 
16825 efrain 22043
  .mx-wd-xxl-25p-f {
22044
    max-width: 25% !important;
22045
  }
16848 stevensc 22046
 
16825 efrain 22047
  .mn-wd-xxl-25p-f {
22048
    min-width: 25% !important;
22049
  }
16848 stevensc 22050
 
16825 efrain 22051
  .wd-xxl-30 {
22052
    width: 30px;
22053
  }
16848 stevensc 22054
 
16825 efrain 22055
  .wd-xxl-30p {
22056
    width: 30%;
22057
  }
16848 stevensc 22058
 
16825 efrain 22059
  .mx-wd-xxl-30p {
22060
    max-width: 30%;
22061
  }
16848 stevensc 22062
 
16825 efrain 22063
  .mn-wd-xxl-30p {
22064
    min-width: 30%;
22065
  }
16848 stevensc 22066
 
16825 efrain 22067
  .wd-xxl-30-f {
22068
    width: 30px !important;
22069
  }
16848 stevensc 22070
 
16825 efrain 22071
  .wd-xxl-30p-f {
22072
    width: 30% !important;
22073
  }
16848 stevensc 22074
 
16825 efrain 22075
  .mx-wd-xxl-30p-f {
22076
    max-width: 30% !important;
22077
  }
16848 stevensc 22078
 
16825 efrain 22079
  .mn-wd-xxl-30p-f {
22080
    min-width: 30% !important;
22081
  }
16848 stevensc 22082
 
16825 efrain 22083
  .wd-xxl-35 {
22084
    width: 35px;
22085
  }
16848 stevensc 22086
 
16825 efrain 22087
  .wd-xxl-35p {
22088
    width: 35%;
22089
  }
16848 stevensc 22090
 
16825 efrain 22091
  .mx-wd-xxl-35p {
22092
    max-width: 35%;
22093
  }
16848 stevensc 22094
 
16825 efrain 22095
  .mn-wd-xxl-35p {
22096
    min-width: 35%;
22097
  }
16848 stevensc 22098
 
16825 efrain 22099
  .wd-xxl-35-f {
22100
    width: 35px !important;
22101
  }
16848 stevensc 22102
 
16825 efrain 22103
  .wd-xxl-35p-f {
22104
    width: 35% !important;
22105
  }
16848 stevensc 22106
 
16825 efrain 22107
  .mx-wd-xxl-35p-f {
22108
    max-width: 35% !important;
22109
  }
16848 stevensc 22110
 
16825 efrain 22111
  .mn-wd-xxl-35p-f {
22112
    min-width: 35% !important;
22113
  }
16848 stevensc 22114
 
16825 efrain 22115
  .wd-xxl-40 {
22116
    width: 40px;
22117
  }
16848 stevensc 22118
 
16825 efrain 22119
  .wd-xxl-40p {
22120
    width: 40%;
22121
  }
16848 stevensc 22122
 
16825 efrain 22123
  .mx-wd-xxl-40p {
22124
    max-width: 40%;
22125
  }
16848 stevensc 22126
 
16825 efrain 22127
  .mn-wd-xxl-40p {
22128
    min-width: 40%;
22129
  }
16848 stevensc 22130
 
16825 efrain 22131
  .wd-xxl-40-f {
22132
    width: 40px !important;
22133
  }
16848 stevensc 22134
 
16825 efrain 22135
  .wd-xxl-40p-f {
22136
    width: 40% !important;
22137
  }
16848 stevensc 22138
 
16825 efrain 22139
  .mx-wd-xxl-40p-f {
22140
    max-width: 40% !important;
22141
  }
16848 stevensc 22142
 
16825 efrain 22143
  .mn-wd-xxl-40p-f {
22144
    min-width: 40% !important;
22145
  }
16848 stevensc 22146
 
16825 efrain 22147
  .wd-xxl-45 {
22148
    width: 45px;
22149
  }
16848 stevensc 22150
 
16825 efrain 22151
  .wd-xxl-45p {
22152
    width: 45%;
22153
  }
16848 stevensc 22154
 
16825 efrain 22155
  .mx-wd-xxl-45p {
22156
    max-width: 45%;
22157
  }
16848 stevensc 22158
 
16825 efrain 22159
  .mn-wd-xxl-45p {
22160
    min-width: 45%;
22161
  }
16848 stevensc 22162
 
16825 efrain 22163
  .wd-xxl-45-f {
22164
    width: 45px !important;
22165
  }
16848 stevensc 22166
 
16825 efrain 22167
  .wd-xxl-45p-f {
22168
    width: 45% !important;
22169
  }
16848 stevensc 22170
 
16825 efrain 22171
  .mx-wd-xxl-45p-f {
22172
    max-width: 45% !important;
22173
  }
16848 stevensc 22174
 
16825 efrain 22175
  .mn-wd-xxl-45p-f {
22176
    min-width: 45% !important;
22177
  }
16848 stevensc 22178
 
16825 efrain 22179
  .wd-xxl-50 {
22180
    width: 50px;
22181
  }
16848 stevensc 22182
 
16825 efrain 22183
  .wd-xxl-50p {
22184
    width: 50%;
22185
  }
16848 stevensc 22186
 
16825 efrain 22187
  .mx-wd-xxl-50p {
22188
    max-width: 50%;
22189
  }
16848 stevensc 22190
 
16825 efrain 22191
  .mn-wd-xxl-50p {
22192
    min-width: 50%;
22193
  }
16848 stevensc 22194
 
16825 efrain 22195
  .wd-xxl-50-f {
22196
    width: 50px !important;
22197
  }
16848 stevensc 22198
 
16825 efrain 22199
  .wd-xxl-50p-f {
22200
    width: 50% !important;
22201
  }
16848 stevensc 22202
 
16825 efrain 22203
  .mx-wd-xxl-50p-f {
22204
    max-width: 50% !important;
22205
  }
16848 stevensc 22206
 
16825 efrain 22207
  .mn-wd-xxl-50p-f {
22208
    min-width: 50% !important;
22209
  }
16848 stevensc 22210
 
16825 efrain 22211
  .wd-xxl-55 {
22212
    width: 55px;
22213
  }
16848 stevensc 22214
 
16825 efrain 22215
  .wd-xxl-55p {
22216
    width: 55%;
22217
  }
16848 stevensc 22218
 
16825 efrain 22219
  .mx-wd-xxl-55p {
22220
    max-width: 55%;
22221
  }
16848 stevensc 22222
 
16825 efrain 22223
  .mn-wd-xxl-55p {
22224
    min-width: 55%;
22225
  }
16848 stevensc 22226
 
16825 efrain 22227
  .wd-xxl-55-f {
22228
    width: 55px !important;
22229
  }
16848 stevensc 22230
 
16825 efrain 22231
  .wd-xxl-55p-f {
22232
    width: 55% !important;
22233
  }
16848 stevensc 22234
 
16825 efrain 22235
  .mx-wd-xxl-55p-f {
22236
    max-width: 55% !important;
22237
  }
16848 stevensc 22238
 
16825 efrain 22239
  .mn-wd-xxl-55p-f {
22240
    min-width: 55% !important;
22241
  }
16848 stevensc 22242
 
16825 efrain 22243
  .wd-xxl-60 {
22244
    width: 60px;
22245
  }
16848 stevensc 22246
 
16825 efrain 22247
  .wd-xxl-60p {
22248
    width: 60%;
22249
  }
16848 stevensc 22250
 
16825 efrain 22251
  .mx-wd-xxl-60p {
22252
    max-width: 60%;
22253
  }
16848 stevensc 22254
 
16825 efrain 22255
  .mn-wd-xxl-60p {
22256
    min-width: 60%;
22257
  }
16848 stevensc 22258
 
16825 efrain 22259
  .wd-xxl-60-f {
22260
    width: 60px !important;
22261
  }
16848 stevensc 22262
 
16825 efrain 22263
  .wd-xxl-60p-f {
22264
    width: 60% !important;
22265
  }
16848 stevensc 22266
 
16825 efrain 22267
  .mx-wd-xxl-60p-f {
22268
    max-width: 60% !important;
22269
  }
16848 stevensc 22270
 
16825 efrain 22271
  .mn-wd-xxl-60p-f {
22272
    min-width: 60% !important;
22273
  }
16848 stevensc 22274
 
16825 efrain 22275
  .wd-xxl-65 {
22276
    width: 65px;
22277
  }
16848 stevensc 22278
 
16825 efrain 22279
  .wd-xxl-65p {
22280
    width: 65%;
22281
  }
16848 stevensc 22282
 
16825 efrain 22283
  .mx-wd-xxl-65p {
22284
    max-width: 65%;
22285
  }
16848 stevensc 22286
 
16825 efrain 22287
  .mn-wd-xxl-65p {
22288
    min-width: 65%;
22289
  }
16848 stevensc 22290
 
16825 efrain 22291
  .wd-xxl-65-f {
22292
    width: 65px !important;
22293
  }
16848 stevensc 22294
 
16825 efrain 22295
  .wd-xxl-65p-f {
22296
    width: 65% !important;
22297
  }
16848 stevensc 22298
 
16825 efrain 22299
  .mx-wd-xxl-65p-f {
22300
    max-width: 65% !important;
22301
  }
16848 stevensc 22302
 
16825 efrain 22303
  .mn-wd-xxl-65p-f {
22304
    min-width: 65% !important;
22305
  }
16848 stevensc 22306
 
16825 efrain 22307
  .wd-xxl-70 {
22308
    width: 70px;
22309
  }
16848 stevensc 22310
 
16825 efrain 22311
  .wd-xxl-70p {
22312
    width: 70%;
22313
  }
16848 stevensc 22314
 
16825 efrain 22315
  .mx-wd-xxl-70p {
22316
    max-width: 70%;
22317
  }
16848 stevensc 22318
 
16825 efrain 22319
  .mn-wd-xxl-70p {
22320
    min-width: 70%;
22321
  }
16848 stevensc 22322
 
16825 efrain 22323
  .wd-xxl-70-f {
22324
    width: 70px !important;
22325
  }
16848 stevensc 22326
 
16825 efrain 22327
  .wd-xxl-70p-f {
22328
    width: 70% !important;
22329
  }
16848 stevensc 22330
 
16825 efrain 22331
  .mx-wd-xxl-70p-f {
22332
    max-width: 70% !important;
22333
  }
16848 stevensc 22334
 
16825 efrain 22335
  .mn-wd-xxl-70p-f {
22336
    min-width: 70% !important;
22337
  }
16848 stevensc 22338
 
16825 efrain 22339
  .wd-xxl-75 {
22340
    width: 75px;
22341
  }
16848 stevensc 22342
 
16825 efrain 22343
  .wd-xxl-75p {
22344
    width: 75%;
22345
  }
16848 stevensc 22346
 
16825 efrain 22347
  .mx-wd-xxl-75p {
22348
    max-width: 75%;
22349
  }
16848 stevensc 22350
 
16825 efrain 22351
  .mn-wd-xxl-75p {
22352
    min-width: 75%;
22353
  }
16848 stevensc 22354
 
16825 efrain 22355
  .wd-xxl-75-f {
22356
    width: 75px !important;
22357
  }
16848 stevensc 22358
 
16825 efrain 22359
  .wd-xxl-75p-f {
22360
    width: 75% !important;
22361
  }
16848 stevensc 22362
 
16825 efrain 22363
  .mx-wd-xxl-75p-f {
22364
    max-width: 75% !important;
22365
  }
16848 stevensc 22366
 
16825 efrain 22367
  .mn-wd-xxl-75p-f {
22368
    min-width: 75% !important;
22369
  }
16848 stevensc 22370
 
16825 efrain 22371
  .wd-xxl-80 {
22372
    width: 80px;
22373
  }
16848 stevensc 22374
 
16825 efrain 22375
  .wd-xxl-80p {
22376
    width: 80%;
22377
  }
16848 stevensc 22378
 
16825 efrain 22379
  .mx-wd-xxl-80p {
22380
    max-width: 80%;
22381
  }
16848 stevensc 22382
 
16825 efrain 22383
  .mn-wd-xxl-80p {
22384
    min-width: 80%;
22385
  }
16848 stevensc 22386
 
16825 efrain 22387
  .wd-xxl-80-f {
22388
    width: 80px !important;
22389
  }
16848 stevensc 22390
 
16825 efrain 22391
  .wd-xxl-80p-f {
22392
    width: 80% !important;
22393
  }
16848 stevensc 22394
 
16825 efrain 22395
  .mx-wd-xxl-80p-f {
22396
    max-width: 80% !important;
22397
  }
16848 stevensc 22398
 
16825 efrain 22399
  .mn-wd-xxl-80p-f {
22400
    min-width: 80% !important;
22401
  }
16848 stevensc 22402
 
16825 efrain 22403
  .wd-xxl-85 {
22404
    width: 85px;
22405
  }
16848 stevensc 22406
 
16825 efrain 22407
  .wd-xxl-85p {
22408
    width: 85%;
22409
  }
16848 stevensc 22410
 
16825 efrain 22411
  .mx-wd-xxl-85p {
22412
    max-width: 85%;
22413
  }
16848 stevensc 22414
 
16825 efrain 22415
  .mn-wd-xxl-85p {
22416
    min-width: 85%;
22417
  }
16848 stevensc 22418
 
16825 efrain 22419
  .wd-xxl-85-f {
22420
    width: 85px !important;
22421
  }
16848 stevensc 22422
 
16825 efrain 22423
  .wd-xxl-85p-f {
22424
    width: 85% !important;
22425
  }
16848 stevensc 22426
 
16825 efrain 22427
  .mx-wd-xxl-85p-f {
22428
    max-width: 85% !important;
22429
  }
16848 stevensc 22430
 
16825 efrain 22431
  .mn-wd-xxl-85p-f {
22432
    min-width: 85% !important;
22433
  }
16848 stevensc 22434
 
16825 efrain 22435
  .wd-xxl-90 {
22436
    width: 90px;
22437
  }
16848 stevensc 22438
 
16825 efrain 22439
  .wd-xxl-90p {
22440
    width: 90%;
22441
  }
16848 stevensc 22442
 
16825 efrain 22443
  .mx-wd-xxl-90p {
22444
    max-width: 90%;
22445
  }
16848 stevensc 22446
 
16825 efrain 22447
  .mn-wd-xxl-90p {
22448
    min-width: 90%;
22449
  }
16848 stevensc 22450
 
16825 efrain 22451
  .wd-xxl-90-f {
22452
    width: 90px !important;
22453
  }
16848 stevensc 22454
 
16825 efrain 22455
  .wd-xxl-90p-f {
22456
    width: 90% !important;
22457
  }
16848 stevensc 22458
 
16825 efrain 22459
  .mx-wd-xxl-90p-f {
22460
    max-width: 90% !important;
22461
  }
16848 stevensc 22462
 
16825 efrain 22463
  .mn-wd-xxl-90p-f {
22464
    min-width: 90% !important;
22465
  }
16848 stevensc 22466
 
16825 efrain 22467
  .wd-xxl-95 {
22468
    width: 95px;
22469
  }
16848 stevensc 22470
 
16825 efrain 22471
  .wd-xxl-95p {
22472
    width: 95%;
22473
  }
16848 stevensc 22474
 
16825 efrain 22475
  .mx-wd-xxl-95p {
22476
    max-width: 95%;
22477
  }
16848 stevensc 22478
 
16825 efrain 22479
  .mn-wd-xxl-95p {
22480
    min-width: 95%;
22481
  }
16848 stevensc 22482
 
16825 efrain 22483
  .wd-xxl-95-f {
22484
    width: 95px !important;
22485
  }
16848 stevensc 22486
 
16825 efrain 22487
  .wd-xxl-95p-f {
22488
    width: 95% !important;
22489
  }
16848 stevensc 22490
 
16825 efrain 22491
  .mx-wd-xxl-95p-f {
22492
    max-width: 95% !important;
22493
  }
16848 stevensc 22494
 
16825 efrain 22495
  .mn-wd-xxl-95p-f {
22496
    min-width: 95% !important;
22497
  }
16848 stevensc 22498
 
16825 efrain 22499
  .wd-xxl-100 {
22500
    width: 100px;
22501
  }
16848 stevensc 22502
 
16825 efrain 22503
  .wd-xxl-100p {
22504
    width: 100%;
22505
  }
16848 stevensc 22506
 
16825 efrain 22507
  .mx-wd-xxl-100p {
22508
    max-width: 100%;
22509
  }
16848 stevensc 22510
 
16825 efrain 22511
  .mn-wd-xxl-100p {
22512
    min-width: 100%;
22513
  }
16848 stevensc 22514
 
16825 efrain 22515
  .wd-xxl-100-f {
22516
    width: 100px !important;
22517
  }
16848 stevensc 22518
 
16825 efrain 22519
  .wd-xxl-100p-f {
22520
    width: 100% !important;
22521
  }
16848 stevensc 22522
 
16825 efrain 22523
  .mx-wd-xxl-100p-f {
22524
    max-width: 100% !important;
22525
  }
16848 stevensc 22526
 
16825 efrain 22527
  .mn-wd-xxl-100p-f {
22528
    min-width: 100% !important;
22529
  }
16848 stevensc 22530
 
16825 efrain 22531
  .wd-xxl-150 {
22532
    width: 150px;
22533
  }
16848 stevensc 22534
 
16825 efrain 22535
  .wd-xxl-150p {
22536
    width: 150%;
22537
  }
16848 stevensc 22538
 
16825 efrain 22539
  .mx-wd-xxl-150p {
22540
    max-width: 150%;
22541
  }
16848 stevensc 22542
 
16825 efrain 22543
  .mn-wd-xxl-150p {
22544
    min-width: 150%;
22545
  }
16848 stevensc 22546
 
16825 efrain 22547
  .wd-xxl-150-f {
22548
    width: 150px !important;
22549
  }
16848 stevensc 22550
 
16825 efrain 22551
  .wd-xxl-150p-f {
22552
    width: 150% !important;
22553
  }
16848 stevensc 22554
 
16825 efrain 22555
  .mx-wd-xxl-150p-f {
22556
    max-width: 150% !important;
22557
  }
16848 stevensc 22558
 
16825 efrain 22559
  .mn-wd-xxl-150p-f {
22560
    min-width: 150% !important;
22561
  }
16848 stevensc 22562
 
16825 efrain 22563
  .wd-xxl-200 {
22564
    width: 200px;
22565
  }
16848 stevensc 22566
 
16825 efrain 22567
  .wd-xxl-200p {
22568
    width: 200%;
22569
  }
16848 stevensc 22570
 
16825 efrain 22571
  .mx-wd-xxl-200p {
22572
    max-width: 200%;
22573
  }
16848 stevensc 22574
 
16825 efrain 22575
  .mn-wd-xxl-200p {
22576
    min-width: 200%;
22577
  }
16848 stevensc 22578
 
16825 efrain 22579
  .wd-xxl-200-f {
22580
    width: 200px !important;
22581
  }
16848 stevensc 22582
 
16825 efrain 22583
  .wd-xxl-200p-f {
22584
    width: 200% !important;
22585
  }
16848 stevensc 22586
 
16825 efrain 22587
  .mx-wd-xxl-200p-f {
22588
    max-width: 200% !important;
22589
  }
16848 stevensc 22590
 
16825 efrain 22591
  .mn-wd-xxl-200p-f {
22592
    min-width: 200% !important;
22593
  }
16848 stevensc 22594
 
16825 efrain 22595
  .wd-xxl-250 {
22596
    width: 250px;
22597
  }
16848 stevensc 22598
 
16825 efrain 22599
  .wd-xxl-250p {
22600
    width: 250%;
22601
  }
16848 stevensc 22602
 
16825 efrain 22603
  .mx-wd-xxl-250p {
22604
    max-width: 250%;
22605
  }
16848 stevensc 22606
 
16825 efrain 22607
  .mn-wd-xxl-250p {
22608
    min-width: 250%;
22609
  }
16848 stevensc 22610
 
16825 efrain 22611
  .wd-xxl-250-f {
22612
    width: 250px !important;
22613
  }
16848 stevensc 22614
 
16825 efrain 22615
  .wd-xxl-250p-f {
22616
    width: 250% !important;
22617
  }
16848 stevensc 22618
 
16825 efrain 22619
  .mx-wd-xxl-250p-f {
22620
    max-width: 250% !important;
22621
  }
16848 stevensc 22622
 
16825 efrain 22623
  .mn-wd-xxl-250p-f {
22624
    min-width: 250% !important;
22625
  }
16848 stevensc 22626
 
16825 efrain 22627
  .wd-xxl-300 {
22628
    width: 300px;
22629
  }
16848 stevensc 22630
 
16825 efrain 22631
  .wd-xxl-300p {
22632
    width: 300%;
22633
  }
16848 stevensc 22634
 
16825 efrain 22635
  .mx-wd-xxl-300p {
22636
    max-width: 300%;
22637
  }
16848 stevensc 22638
 
16825 efrain 22639
  .mn-wd-xxl-300p {
22640
    min-width: 300%;
22641
  }
16848 stevensc 22642
 
16825 efrain 22643
  .wd-xxl-300-f {
22644
    width: 300px !important;
22645
  }
16848 stevensc 22646
 
16825 efrain 22647
  .wd-xxl-300p-f {
22648
    width: 300% !important;
22649
  }
16848 stevensc 22650
 
16825 efrain 22651
  .mx-wd-xxl-300p-f {
22652
    max-width: 300% !important;
22653
  }
16848 stevensc 22654
 
16825 efrain 22655
  .mn-wd-xxl-300p-f {
22656
    min-width: 300% !important;
22657
  }
16848 stevensc 22658
 
16825 efrain 22659
  .wd-xxl-350 {
22660
    width: 350px;
22661
  }
16848 stevensc 22662
 
16825 efrain 22663
  .wd-xxl-350p {
22664
    width: 350%;
22665
  }
16848 stevensc 22666
 
16825 efrain 22667
  .mx-wd-xxl-350p {
22668
    max-width: 350%;
22669
  }
16848 stevensc 22670
 
16825 efrain 22671
  .mn-wd-xxl-350p {
22672
    min-width: 350%;
22673
  }
16848 stevensc 22674
 
16825 efrain 22675
  .wd-xxl-350-f {
22676
    width: 350px !important;
22677
  }
16848 stevensc 22678
 
16825 efrain 22679
  .wd-xxl-350p-f {
22680
    width: 350% !important;
22681
  }
16848 stevensc 22682
 
16825 efrain 22683
  .mx-wd-xxl-350p-f {
22684
    max-width: 350% !important;
22685
  }
16848 stevensc 22686
 
16825 efrain 22687
  .mn-wd-xxl-350p-f {
22688
    min-width: 350% !important;
22689
  }
16848 stevensc 22690
 
16825 efrain 22691
  .wd-xxl-400 {
22692
    width: 400px;
22693
  }
16848 stevensc 22694
 
16825 efrain 22695
  .wd-xxl-400p {
22696
    width: 400%;
22697
  }
16848 stevensc 22698
 
16825 efrain 22699
  .mx-wd-xxl-400p {
22700
    max-width: 400%;
22701
  }
16848 stevensc 22702
 
16825 efrain 22703
  .mn-wd-xxl-400p {
22704
    min-width: 400%;
22705
  }
16848 stevensc 22706
 
16825 efrain 22707
  .wd-xxl-400-f {
22708
    width: 400px !important;
22709
  }
16848 stevensc 22710
 
16825 efrain 22711
  .wd-xxl-400p-f {
22712
    width: 400% !important;
22713
  }
16848 stevensc 22714
 
16825 efrain 22715
  .mx-wd-xxl-400p-f {
22716
    max-width: 400% !important;
22717
  }
16848 stevensc 22718
 
16825 efrain 22719
  .mn-wd-xxl-400p-f {
22720
    min-width: 400% !important;
22721
  }
16848 stevensc 22722
 
16825 efrain 22723
  .wd-xxl-450 {
22724
    width: 450px;
22725
  }
16848 stevensc 22726
 
16825 efrain 22727
  .wd-xxl-450p {
22728
    width: 450%;
22729
  }
16848 stevensc 22730
 
16825 efrain 22731
  .mx-wd-xxl-450p {
22732
    max-width: 450%;
22733
  }
16848 stevensc 22734
 
16825 efrain 22735
  .mn-wd-xxl-450p {
22736
    min-width: 450%;
22737
  }
16848 stevensc 22738
 
16825 efrain 22739
  .wd-xxl-450-f {
22740
    width: 450px !important;
22741
  }
16848 stevensc 22742
 
16825 efrain 22743
  .wd-xxl-450p-f {
22744
    width: 450% !important;
22745
  }
16848 stevensc 22746
 
16825 efrain 22747
  .mx-wd-xxl-450p-f {
22748
    max-width: 450% !important;
22749
  }
16848 stevensc 22750
 
16825 efrain 22751
  .mn-wd-xxl-450p-f {
22752
    min-width: 450% !important;
22753
  }
16848 stevensc 22754
 
16825 efrain 22755
  .wd-xxl-500 {
22756
    width: 500px;
22757
  }
16848 stevensc 22758
 
16825 efrain 22759
  .wd-xxl-500p {
22760
    width: 500%;
22761
  }
16848 stevensc 22762
 
16825 efrain 22763
  .mx-wd-xxl-500p {
22764
    max-width: 500%;
22765
  }
16848 stevensc 22766
 
16825 efrain 22767
  .mn-wd-xxl-500p {
22768
    min-width: 500%;
22769
  }
16848 stevensc 22770
 
16825 efrain 22771
  .wd-xxl-500-f {
22772
    width: 500px !important;
22773
  }
16848 stevensc 22774
 
16825 efrain 22775
  .wd-xxl-500p-f {
22776
    width: 500% !important;
22777
  }
16848 stevensc 22778
 
16825 efrain 22779
  .mx-wd-xxl-500p-f {
22780
    max-width: 500% !important;
22781
  }
16848 stevensc 22782
 
16825 efrain 22783
  .mn-wd-xxl-500p-f {
22784
    min-width: 500% !important;
22785
  }
16848 stevensc 22786
 
16825 efrain 22787
  .wd-xxl-550 {
22788
    width: 550px;
22789
  }
16848 stevensc 22790
 
16825 efrain 22791
  .wd-xxl-550p {
22792
    width: 550%;
22793
  }
16848 stevensc 22794
 
16825 efrain 22795
  .mx-wd-xxl-550p {
22796
    max-width: 550%;
22797
  }
16848 stevensc 22798
 
16825 efrain 22799
  .mn-wd-xxl-550p {
22800
    min-width: 550%;
22801
  }
16848 stevensc 22802
 
16825 efrain 22803
  .wd-xxl-550-f {
22804
    width: 550px !important;
22805
  }
16848 stevensc 22806
 
16825 efrain 22807
  .wd-xxl-550p-f {
22808
    width: 550% !important;
22809
  }
16848 stevensc 22810
 
16825 efrain 22811
  .mx-wd-xxl-550p-f {
22812
    max-width: 550% !important;
22813
  }
16848 stevensc 22814
 
16825 efrain 22815
  .mn-wd-xxl-550p-f {
22816
    min-width: 550% !important;
22817
  }
16848 stevensc 22818
 
16825 efrain 22819
  .wd-xxl-600 {
22820
    width: 600px;
22821
  }
16848 stevensc 22822
 
16825 efrain 22823
  .wd-xxl-600p {
22824
    width: 600%;
22825
  }
16848 stevensc 22826
 
16825 efrain 22827
  .mx-wd-xxl-600p {
22828
    max-width: 600%;
22829
  }
16848 stevensc 22830
 
16825 efrain 22831
  .mn-wd-xxl-600p {
22832
    min-width: 600%;
22833
  }
16848 stevensc 22834
 
16825 efrain 22835
  .wd-xxl-600-f {
22836
    width: 600px !important;
22837
  }
16848 stevensc 22838
 
16825 efrain 22839
  .wd-xxl-600p-f {
22840
    width: 600% !important;
22841
  }
16848 stevensc 22842
 
16825 efrain 22843
  .mx-wd-xxl-600p-f {
22844
    max-width: 600% !important;
22845
  }
16848 stevensc 22846
 
16825 efrain 22847
  .mn-wd-xxl-600p-f {
22848
    min-width: 600% !important;
22849
  }
16848 stevensc 22850
 
16825 efrain 22851
  .wd-xxl-650 {
22852
    width: 650px;
22853
  }
16848 stevensc 22854
 
16825 efrain 22855
  .wd-xxl-650p {
22856
    width: 650%;
22857
  }
16848 stevensc 22858
 
16825 efrain 22859
  .mx-wd-xxl-650p {
22860
    max-width: 650%;
22861
  }
16848 stevensc 22862
 
16825 efrain 22863
  .mn-wd-xxl-650p {
22864
    min-width: 650%;
22865
  }
16848 stevensc 22866
 
16825 efrain 22867
  .wd-xxl-650-f {
22868
    width: 650px !important;
22869
  }
16848 stevensc 22870
 
16825 efrain 22871
  .wd-xxl-650p-f {
22872
    width: 650% !important;
22873
  }
16848 stevensc 22874
 
16825 efrain 22875
  .mx-wd-xxl-650p-f {
22876
    max-width: 650% !important;
22877
  }
16848 stevensc 22878
 
16825 efrain 22879
  .mn-wd-xxl-650p-f {
22880
    min-width: 650% !important;
22881
  }
16848 stevensc 22882
 
16825 efrain 22883
  .wd-xxl-700 {
22884
    width: 700px;
22885
  }
16848 stevensc 22886
 
16825 efrain 22887
  .wd-xxl-700p {
22888
    width: 700%;
22889
  }
16848 stevensc 22890
 
16825 efrain 22891
  .mx-wd-xxl-700p {
22892
    max-width: 700%;
22893
  }
16848 stevensc 22894
 
16825 efrain 22895
  .mn-wd-xxl-700p {
22896
    min-width: 700%;
22897
  }
16848 stevensc 22898
 
16825 efrain 22899
  .wd-xxl-700-f {
22900
    width: 700px !important;
22901
  }
16848 stevensc 22902
 
16825 efrain 22903
  .wd-xxl-700p-f {
22904
    width: 700% !important;
22905
  }
16848 stevensc 22906
 
16825 efrain 22907
  .mx-wd-xxl-700p-f {
22908
    max-width: 700% !important;
22909
  }
16848 stevensc 22910
 
16825 efrain 22911
  .mn-wd-xxl-700p-f {
22912
    min-width: 700% !important;
22913
  }
16848 stevensc 22914
 
16825 efrain 22915
  .wd-xxl-750 {
22916
    width: 750px;
22917
  }
16848 stevensc 22918
 
16825 efrain 22919
  .wd-xxl-750p {
22920
    width: 750%;
22921
  }
16848 stevensc 22922
 
16825 efrain 22923
  .mx-wd-xxl-750p {
22924
    max-width: 750%;
22925
  }
16848 stevensc 22926
 
16825 efrain 22927
  .mn-wd-xxl-750p {
22928
    min-width: 750%;
22929
  }
16848 stevensc 22930
 
16825 efrain 22931
  .wd-xxl-750-f {
22932
    width: 750px !important;
22933
  }
16848 stevensc 22934
 
16825 efrain 22935
  .wd-xxl-750p-f {
22936
    width: 750% !important;
22937
  }
16848 stevensc 22938
 
16825 efrain 22939
  .mx-wd-xxl-750p-f {
22940
    max-width: 750% !important;
22941
  }
16848 stevensc 22942
 
16825 efrain 22943
  .mn-wd-xxl-750p-f {
22944
    min-width: 750% !important;
22945
  }
16848 stevensc 22946
 
16825 efrain 22947
  .wd-xxl-800 {
22948
    width: 800px;
22949
  }
16848 stevensc 22950
 
16825 efrain 22951
  .wd-xxl-800p {
22952
    width: 800%;
22953
  }
16848 stevensc 22954
 
16825 efrain 22955
  .mx-wd-xxl-800p {
22956
    max-width: 800%;
22957
  }
16848 stevensc 22958
 
16825 efrain 22959
  .mn-wd-xxl-800p {
22960
    min-width: 800%;
22961
  }
16848 stevensc 22962
 
16825 efrain 22963
  .wd-xxl-800-f {
22964
    width: 800px !important;
22965
  }
16848 stevensc 22966
 
16825 efrain 22967
  .wd-xxl-800p-f {
22968
    width: 800% !important;
22969
  }
16848 stevensc 22970
 
16825 efrain 22971
  .mx-wd-xxl-800p-f {
22972
    max-width: 800% !important;
22973
  }
16848 stevensc 22974
 
16825 efrain 22975
  .mn-wd-xxl-800p-f {
22976
    min-width: 800% !important;
22977
  }
16848 stevensc 22978
 
16825 efrain 22979
  .wd-xxl-850 {
22980
    width: 850px;
22981
  }
16848 stevensc 22982
 
16825 efrain 22983
  .wd-xxl-850p {
22984
    width: 850%;
22985
  }
16848 stevensc 22986
 
16825 efrain 22987
  .mx-wd-xxl-850p {
22988
    max-width: 850%;
22989
  }
16848 stevensc 22990
 
16825 efrain 22991
  .mn-wd-xxl-850p {
22992
    min-width: 850%;
22993
  }
16848 stevensc 22994
 
16825 efrain 22995
  .wd-xxl-850-f {
22996
    width: 850px !important;
22997
  }
16848 stevensc 22998
 
16825 efrain 22999
  .wd-xxl-850p-f {
23000
    width: 850% !important;
23001
  }
16848 stevensc 23002
 
16825 efrain 23003
  .mx-wd-xxl-850p-f {
23004
    max-width: 850% !important;
23005
  }
16848 stevensc 23006
 
16825 efrain 23007
  .mn-wd-xxl-850p-f {
23008
    min-width: 850% !important;
23009
  }
16848 stevensc 23010
 
16825 efrain 23011
  .wd-xxl-900 {
23012
    width: 900px;
23013
  }
16848 stevensc 23014
 
16825 efrain 23015
  .wd-xxl-900p {
23016
    width: 900%;
23017
  }
16848 stevensc 23018
 
16825 efrain 23019
  .mx-wd-xxl-900p {
23020
    max-width: 900%;
23021
  }
16848 stevensc 23022
 
16825 efrain 23023
  .mn-wd-xxl-900p {
23024
    min-width: 900%;
23025
  }
16848 stevensc 23026
 
16825 efrain 23027
  .wd-xxl-900-f {
23028
    width: 900px !important;
23029
  }
16848 stevensc 23030
 
16825 efrain 23031
  .wd-xxl-900p-f {
23032
    width: 900% !important;
23033
  }
16848 stevensc 23034
 
16825 efrain 23035
  .mx-wd-xxl-900p-f {
23036
    max-width: 900% !important;
23037
  }
16848 stevensc 23038
 
16825 efrain 23039
  .mn-wd-xxl-900p-f {
23040
    min-width: 900% !important;
23041
  }
16848 stevensc 23042
 
16825 efrain 23043
  .wd-xxl-950 {
23044
    width: 950px;
23045
  }
16848 stevensc 23046
 
16825 efrain 23047
  .wd-xxl-950p {
23048
    width: 950%;
23049
  }
16848 stevensc 23050
 
16825 efrain 23051
  .mx-wd-xxl-950p {
23052
    max-width: 950%;
23053
  }
16848 stevensc 23054
 
16825 efrain 23055
  .mn-wd-xxl-950p {
23056
    min-width: 950%;
23057
  }
16848 stevensc 23058
 
16825 efrain 23059
  .wd-xxl-950-f {
23060
    width: 950px !important;
23061
  }
16848 stevensc 23062
 
16825 efrain 23063
  .wd-xxl-950p-f {
23064
    width: 950% !important;
23065
  }
16848 stevensc 23066
 
16825 efrain 23067
  .mx-wd-xxl-950p-f {
23068
    max-width: 950% !important;
23069
  }
16848 stevensc 23070
 
16825 efrain 23071
  .mn-wd-xxl-950p-f {
23072
    min-width: 950% !important;
23073
  }
16848 stevensc 23074
 
16825 efrain 23075
  .wd-xxl-1000 {
23076
    width: 1000px;
23077
  }
16848 stevensc 23078
 
16825 efrain 23079
  .wd-xxl-1000p {
23080
    width: 1000%;
23081
  }
16848 stevensc 23082
 
16825 efrain 23083
  .mx-wd-xxl-1000p {
23084
    max-width: 1000%;
23085
  }
16848 stevensc 23086
 
16825 efrain 23087
  .mn-wd-xxl-1000p {
23088
    min-width: 1000%;
23089
  }
16848 stevensc 23090
 
16825 efrain 23091
  .wd-xxl-1000-f {
23092
    width: 1000px !important;
23093
  }
16848 stevensc 23094
 
16825 efrain 23095
  .wd-xxl-1000p-f {
23096
    width: 1000% !important;
23097
  }
16848 stevensc 23098
 
16825 efrain 23099
  .mx-wd-xxl-1000p-f {
23100
    max-width: 1000% !important;
23101
  }
16848 stevensc 23102
 
16825 efrain 23103
  .mn-wd-xxl-1000p-f {
23104
    min-width: 1000% !important;
23105
  }
16848 stevensc 23106
 
16825 efrain 23107
  .wd-xxl-auto {
23108
    width: auto;
23109
  }
16848 stevensc 23110
 
16825 efrain 23111
  .wd-xxl-auto {
23112
    width: auto !important;
23113
  }
23114
}
16848 stevensc 23115
 
16825 efrain 23116
.bg-facebook {
23117
  background: social-color("facebook");
23118
}
23119
 
23120
.bg-twitter {
23121
  background: social-color("twitter");
23122
}
23123
 
23124
.bg-google {
23125
  background: social-color("google");
23126
}
23127
 
23128
.bg-youtube {
23129
  background: social-color("youtube");
23130
}
23131
 
23132
.bg-vimeo {
23133
  background: social-color("vimeo");
23134
}
23135
 
23136
.bg-dribbble {
23137
  background: social-color("dribbble");
23138
}
23139
 
23140
.bg-github {
23141
  background: social-color("github");
23142
}
23143
 
23144
.bg-instagram {
23145
  background: social-color("instagram");
23146
}
23147
 
23148
.bg-pinterest {
23149
  background: social-color("pinterest");
23150
}
23151
 
23152
.bg-flickr {
23153
  background: social-color("flickr");
23154
}
23155
 
23156
.bg-bitbucket {
23157
  background: social-color("bitbucket");
23158
}
23159
 
23160
.bg-linkedin {
23161
  background: social-color("linkedin");
23162
}
23163
 
23164
body {
23165
  margin: 0;
23166
  padding: 0;
23167
}
23168
 
16848 stevensc 23169
.btn,
23170
.wizard>.actions a,
23171
.wizard>.actions a:active,
23172
.wizard>.actions a:hover,
23173
div.tox .tox-button,
23174
.swal2-popup .swal2-actions button,
23175
.fc .fc-button-primary,
16825 efrain 23176
.btn-group.open .dropdown-toggle,
23177
.btn:active,
23178
.btn:focus,
23179
.btn:hover,
23180
.btn:visited,
23181
a,
23182
a:active,
23183
a:checked,
23184
a:focus,
23185
a:hover,
23186
a:visited,
23187
body,
23188
button,
23189
button:active,
23190
button:hover,
23191
button:visited,
23192
div,
23193
input,
23194
input:active,
23195
input:hover,
23196
input:focus,
23197
input:visited,
23198
select,
23199
select:active,
23200
select:focus,
23201
select:visited,
23202
textarea,
23203
textarea:active,
23204
textarea:focus,
23205
textarea:visited {
23206
  -webkit-box-shadow: none;
23207
  -moz-box-shadow: none;
23208
  box-shadow: none;
23209
}
23210
 
23211
select,
23212
.form-check-input {
16848 stevensc 23213
  appearance: none;
16825 efrain 23214
  -moz-appearance: none;
23215
}
23216
 
23217
input:-webkit-autofill,
23218
input:-webkit-autofill:hover,
23219
input:-webkit-autofill:focus,
23220
input:-webkit-autofill:active {
23221
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23222
  -webkit-text-fill-color: #000;
23223
}
23224
 
23225
*:-moz-full-screen,
23226
*:-webkit-full-screen,
23227
*:fullscreen *:-ms-full-screen {
23228
  overflow: auto;
23229
}
23230
 
23231
pre {
23232
  background-color: color(gray-lighter);
23233
  padding: 15px;
23234
  font-size: 14px;
23235
}
23236
 
23237
code {
23238
  padding: 5px;
23239
  font-family: "Roboto", Helvetica, sans-serif;
23240
  font-weight: 400;
23241
  font-size: 0.875rem;
23242
  border-radius: 4px;
23243
}
23244
 
23245
.grid-margin {
23246
  margin-bottom: 1.5rem;
23247
}
23248
 
23249
@media (min-width: 576px) {
23250
  .grid-margin-sm-0 {
23251
    margin-bottom: 0;
23252
  }
23253
}
23254
 
23255
@media (min-width: 768px) {
23256
  .grid-margin-md-0 {
23257
    margin-bottom: 0;
23258
  }
23259
}
23260
 
23261
@media (min-width: 992px) {
23262
  .grid-margin-lg-0 {
23263
    margin-bottom: 0;
23264
  }
23265
}
23266
 
23267
@media (min-width: 1200px) {
23268
  .grid-margin-xl-0 {
23269
    margin-bottom: 0;
23270
  }
23271
}
23272
 
23273
.stretch-card {
23274
  display: flex;
23275
  align-items: stretch;
23276
  justify-content: stretch;
23277
}
16848 stevensc 23278
 
23279
.stretch-card>.card {
16825 efrain 23280
  width: 100%;
23281
  min-width: 100%;
23282
}
23283
 
23284
.img-lg {
23285
  width: 92px;
23286
  height: 92px;
23287
}
23288
 
23289
.img-md {
23290
  width: 75px;
23291
  height: 92px;
23292
}
23293
 
23294
.img-sm {
23295
  width: 43px;
23296
  height: 43px;
23297
}
23298
 
23299
.img-xs {
23300
  width: 36px;
23301
  height: 36px;
23302
}
23303
 
23304
.img-ss {
23305
  width: 26px;
23306
  height: 26px;
23307
}
23308
 
23309
.fw-boldest {
23310
  font-weight: 900;
23311
}
23312
 
23313
.tx-10 {
23314
  font-size: 10px;
23315
}
23316
 
23317
.tx-11 {
23318
  font-size: 11px;
23319
}
23320
 
23321
.tx-12 {
23322
  font-size: 12px;
23323
}
23324
 
23325
.tx-13 {
23326
  font-size: 13px;
23327
}
23328
 
23329
.tx-14 {
23330
  font-size: 14px;
23331
}
23332
 
23333
.tx-16 {
23334
  font-size: 16px;
23335
}
23336
 
23337
.tx-80 {
23338
  font-size: 80px;
23339
}
23340
 
23341
svg.icon-xs {
23342
  width: 12px;
23343
  height: 12px;
23344
}
23345
 
23346
svg.icon-sm {
23347
  width: 14px;
23348
  height: 14px;
23349
}
23350
 
23351
svg.icon-md {
23352
  width: 16px;
23353
  height: 16px;
23354
}
23355
 
23356
svg.icon-lg {
23357
  width: 20px;
23358
  height: 20px;
23359
}
23360
 
23361
svg.icon-xl {
23362
  width: 26px;
23363
  height: 26px;
23364
}
23365
 
23366
svg.icon-xxl {
23367
  width: 40px;
23368
  height: 40px;
23369
}
23370
 
23371
.icon-xs {
23372
  font-size: 14px;
23373
}
23374
 
23375
.icon-sm {
23376
  font-size: 16px;
23377
}
23378
 
23379
.icon-md {
23380
  font-size: 18px;
23381
}
23382
 
23383
.icon-lg {
23384
  font-size: 20px;
23385
}
23386
 
23387
.icon-xl {
23388
  font-size: 24px;
23389
}
23390
 
23391
.icon-xxl {
23392
  font-size: 30px;
23393
}
23394
 
23395
.cursor-pointer {
23396
  cursor: pointer;
23397
}
23398
 
23399
.cursor-default {
23400
  cursor: default;
23401
}
23402
 
23403
.pt-1px {
23404
  padding-top: 1px;
23405
}
23406
 
23407
.pt-2px {
23408
  padding-top: 2px;
23409
}
23410
 
23411
.pt-3px {
23412
  padding-top: 3px;
23413
}
23414
 
23415
.pb-1px {
23416
  padding-bottom: 1px;
23417
}
23418
 
23419
.pb-2px {
23420
  padding-bottom: 2px;
23421
}
23422
 
23423
.pb-3px {
23424
  padding-bottom: 3px;
23425
}
23426
 
23427
.mt-1px {
23428
  margin-top: 1px;
23429
}
23430
 
23431
.mt-2px {
23432
  margin-top: 2px;
23433
}
23434
 
23435
.mt-3px {
23436
  margin-top: 3px;
23437
}
23438
 
23439
.mb-1px {
23440
  margin-bottom: 1px;
23441
}
23442
 
23443
.mb-2px {
23444
  margin-bottom: 2px;
23445
}
23446
 
23447
.mb-3px {
23448
  margin-bottom: 3px;
23449
}
23450
 
23451
.ht-5 {
23452
  height: 5px;
23453
}
23454
 
23455
.ht-10 {
23456
  height: 10px;
23457
}
23458
 
23459
.ht-15 {
23460
  height: 15px;
23461
}
23462
 
23463
.ht-20 {
23464
  height: 20px;
23465
}
23466
 
23467
.ht-30 {
23468
  height: 30px;
23469
}
23470
 
23471
.ht-40 {
23472
  height: 40px;
23473
}
23474
 
23475
.ht-50 {
23476
  height: 50px;
23477
}
23478
 
23479
.ht-60 {
23480
  height: 60px;
23481
}
23482
 
23483
.ht-70 {
23484
  height: 70px;
23485
}
23486
 
23487
.ht-80 {
23488
  height: 80px;
23489
}
23490
 
23491
.ht-90 {
23492
  height: 90px;
23493
}
23494
 
23495
.ht-100 {
23496
  height: 100px;
23497
}
23498
 
23499
body {
23500
  -webkit-font-smoothing: antialiased;
23501
  -moz-osx-font-smoothing: grayscale;
23502
}
23503
 
23504
.text-facebook {
23505
  color: #3b5998;
23506
}
23507
 
23508
.text-twitter {
23509
  color: #1da1f2;
23510
}
23511
 
23512
.text-google {
23513
  color: #dc4e41;
23514
}
23515
 
23516
.text-youtube {
23517
  color: #f00;
23518
}
23519
 
23520
.text-vimeo {
23521
  color: #1ab7ea;
23522
}
23523
 
23524
.text-dribbble {
23525
  color: #ea4c89;
23526
}
23527
 
23528
.text-github {
23529
  color: #181717;
23530
}
23531
 
23532
.text-instagram {
23533
  color: #e4405f;
23534
}
23535
 
23536
.text-pinterest {
23537
  color: #bd081c;
23538
}
23539
 
23540
.text-flickr {
23541
  color: #0063dc;
23542
}
23543
 
23544
.text-bitbucket {
23545
  color: #0052cc;
23546
}
23547
 
23548
.text-linkedin {
23549
  color: #0077b5;
23550
}
23551
 
23552
.main-content {
23553
  color: #000;
23554
  font-size: 16px;
23555
}
16848 stevensc 23556
 
23557
.main-content>.page-title {
16825 efrain 23558
  margin-bottom: 1rem;
23559
  font-weight: 400;
23560
}
16848 stevensc 23561
 
23562
.main-content>h4,
23563
.main-content>.h4 {
16825 efrain 23564
  margin-top: 1.5rem;
23565
  margin-bottom: 0.875rem;
23566
}
16848 stevensc 23567
 
23568
.main-content>h4::before,
23569
.main-content>.h4::before {
16825 efrain 23570
  display: block;
23571
  height: 5.4rem;
23572
  margin-top: -6rem;
23573
  content: "";
23574
}
16848 stevensc 23575
 
23576
.main-content>hr {
16825 efrain 23577
  margin-top: 40px;
23578
  margin-bottom: 40px;
23579
}
16848 stevensc 23580
 
16825 efrain 23581
.main-content .example {
23582
  font-size: 0.875rem;
23583
  letter-spacing: normal;
23584
  padding: 10px;
23585
  background-color: #fff;
23586
  border: 4px solid #e9ecef;
23587
  position: relative;
23588
}
16848 stevensc 23589
 
16825 efrain 23590
@media (min-width: 576px) {
23591
  .main-content .example {
23592
    padding: 25px;
23593
  }
23594
}
16848 stevensc 23595
 
16825 efrain 23596
.main-content .highlight {
23597
  position: relative;
23598
  background-color: #fff;
23599
  padding: 15px;
23600
}
16848 stevensc 23601
 
16825 efrain 23602
.main-content .highlight pre {
23603
  padding: 15px;
23604
  font-size: 0.875rem;
23605
  font-family: "Roboto", Helvetica, sans-serif;
23606
  background: transparent;
23607
  line-height: 1.4;
23608
  margin: 0;
23609
}
16848 stevensc 23610
 
16825 efrain 23611
.main-content .highlight pre code {
23612
  font-family: "Roboto", Helvetica, sans-serif;
23613
  padding: 0;
23614
  tab-size: 8;
23615
  color: #000;
23616
  text-shadow: none;
23617
}
16848 stevensc 23618
 
23619
.main-content .highlight pre code .token.url,
23620
.main-content .highlight pre code .token.string,
23621
.main-content .highlight pre code .token.entity,
23622
.main-content .highlight pre code .token.operator {
16825 efrain 23623
  background: none;
23624
}
16848 stevensc 23625
 
16825 efrain 23626
.main-content .highlight .btn-clipboard {
23627
  position: absolute;
23628
  top: 6px;
23629
  right: 6px;
23630
  font-size: 12px;
23631
  padding: 1px 6px;
23632
  background: rgba(101, 113, 255, 0.2);
23633
}
16848 stevensc 23634
 
23635
.main-content .highlight .btn-clipboard:hover,
23636
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23637
  background: rgba(101, 113, 255, 0.3);
23638
  border-color: transparent;
23639
  transition: background 0.3s ease-in-out;
23640
}
23641
 
16848 stevensc 23642
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23643
  margin-top: 0.5rem;
23644
}
16848 stevensc 23645
 
16825 efrain 23646
.example .modal.static {
23647
  position: static;
23648
  display: block;
23649
}
16848 stevensc 23650
 
16825 efrain 23651
.example .navbar {
23652
  position: relative;
23653
  padding: 0.5rem 1rem;
23654
  left: auto;
23655
  width: 100%;
23656
  height: auto;
23657
  z-index: 9;
23658
  border-bottom: 0;
23659
  box-shadow: none;
23660
}
16848 stevensc 23661
 
16825 efrain 23662
.example .navbar .navbar-brand {
23663
  font-size: 1.25rem;
23664
}
16848 stevensc 23665
 
23666
.example .progress+.progress {
16825 efrain 23667
  margin-top: 10px;
23668
}
16848 stevensc 23669
 
16825 efrain 23670
.example .perfect-scrollbar-example {
23671
  position: relative;
23672
  max-height: 250px;
23673
  background: #fff;
23674
}
16848 stevensc 23675
 
16825 efrain 23676
.example .scrollspy-example {
23677
  position: relative;
23678
  height: 200px;
23679
  margin-top: 0.5rem;
23680
  overflow: auto;
23681
}
16848 stevensc 23682
 
16825 efrain 23683
.example .scrollspy-example-2 {
23684
  position: relative;
23685
  height: 350px;
23686
  overflow: auto;
23687
}
16848 stevensc 23688
 
16825 efrain 23689
.example nav .breadcrumb {
23690
  margin-bottom: 0.75rem;
23691
}
16848 stevensc 23692
 
16825 efrain 23693
.example nav:last-child .breadcrumb {
23694
  margin-bottom: 0;
23695
}
23696
 
23697
.page-breadcrumb {
23698
  margin-bottom: 15px;
23699
}
16848 stevensc 23700
 
16825 efrain 23701
.page-breadcrumb .breadcrumb {
23702
  padding: 0;
23703
  background: #f9fafb;
23704
}
23705
 
23706
.noble-ui-logo {
23707
  font-weight: 700;
23708
  font-size: 25px;
23709
  color: #000865;
23710
}
16848 stevensc 23711
 
16825 efrain 23712
.noble-ui-logo span {
23713
  color: #6571ff;
23714
  font-weight: 300;
23715
}
16848 stevensc 23716
 
16825 efrain 23717
.noble-ui-logo:hover {
23718
  color: #000865;
23719
}
16848 stevensc 23720
 
16825 efrain 23721
.noble-ui-logo.logo-light {
23722
  color: #000;
23723
}
23724
 
23725
.buy-now-wrapper {
23726
  position: fixed;
23727
  bottom: 30px;
23728
  right: 35px;
23729
  z-index: 99999;
23730
}
16848 stevensc 23731
 
16825 efrain 23732
.rtl .buy-now-wrapper {
23733
  right: auto;
23734
  left: 35px;
23735
}
16848 stevensc 23736
 
23737
.buy-now-wrapper .btn svg,
23738
.buy-now-wrapper .wizard>.actions a svg,
23739
.wizard>.actions .buy-now-wrapper a svg,
23740
.buy-now-wrapper div.tox .tox-button svg,
23741
div.tox .buy-now-wrapper .tox-button svg,
23742
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23743
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23744
.buy-now-wrapper .fc .fc-button-primary svg,
23745
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23746
  width: 19px !important;
23747
  height: 19px !important;
23748
}
23749
 
23750
.main-wrapper .page-wrapper {
23751
  min-height: 100vh;
23752
  background: #f9fafb;
23753
  width: calc(100% - 240px);
23754
  margin-left: 240px;
23755
  display: flex;
23756
  flex-direction: column;
23757
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23758
  transition: margin 0.1s ease, width 0.1s ease;
23759
}
16848 stevensc 23760
 
16825 efrain 23761
.main-wrapper .page-wrapper .page-content {
23762
  flex-grow: 1;
23763
  padding: 25px;
23764
  margin-top: 60px;
23765
}
16848 stevensc 23766
 
16825 efrain 23767
@media (max-width: 767px) {
23768
  .main-wrapper .page-wrapper .page-content {
23769
    padding: 25px 15px;
23770
  }
23771
}
16848 stevensc 23772
 
16825 efrain 23773
.main-wrapper .page-wrapper.full-page {
23774
  width: 100%;
23775
  margin-left: 0;
23776
}
16848 stevensc 23777
 
16825 efrain 23778
.main-wrapper .page-wrapper.full-page .page-content {
23779
  margin-top: 0;
23780
}
16848 stevensc 23781
 
16825 efrain 23782
@media (max-width: 991px) {
23783
  .main-wrapper .page-wrapper {
23784
    margin-left: 0;
23785
    width: 100%;
23786
  }
23787
}
23788
 
23789
.page-content .content-nav-wrapper {
23790
  padding: 0;
23791
  position: sticky;
23792
  top: 80px;
23793
  height: calc(100vh - 6rem);
23794
  overflow-y: auto;
23795
  border-left: 1px solid #e9ecef;
23796
  display: none;
23797
}
16848 stevensc 23798
 
16825 efrain 23799
@media (min-width: 1200px) {
23800
  .page-content .content-nav-wrapper {
23801
    display: block;
23802
  }
23803
}
16848 stevensc 23804
 
16825 efrain 23805
.page-content .content-nav-wrapper .content-nav {
23806
  padding: 0px 25px;
23807
}
16848 stevensc 23808
 
16825 efrain 23809
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23810
  padding: 0;
23811
  height: 30px;
23812
  white-space: nowrap;
23813
  color: #7987a1;
23814
  display: flex;
23815
  align-items: center;
23816
}
23817
 
23818
.navbar {
23819
  width: calc(100% - 240px);
23820
  height: 60px;
23821
  background: #fff;
23822
  border-bottom: 1px solid #e9ecef;
23823
  display: flex;
23824
  align-items: center;
23825
  padding: 0;
23826
  position: fixed;
23827
  right: 0;
23828
  left: 240px;
23829
  z-index: 978;
23830
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23831
  transition: width 0.1s ease, left 0.1s ease;
23832
}
16848 stevensc 23833
 
16825 efrain 23834
@media (max-width: 991px) {
23835
  .navbar {
23836
    width: 100%;
23837
    left: 0;
23838
  }
16848 stevensc 23839
 
16825 efrain 23840
  .navbar .navbar-content {
23841
    width: calc(100% - 70px - 1px);
23842
  }
23843
}
16848 stevensc 23844
 
16825 efrain 23845
.navbar .sidebar-toggler {
23846
  height: 100%;
23847
  border-right: 1px solid #e9ecef;
23848
  align-items: center;
23849
  padding: 0 25px;
23850
  display: none;
23851
}
16848 stevensc 23852
 
16825 efrain 23853
.navbar .sidebar-toggler svg {
23854
  width: 20px;
23855
  height: 20px;
23856
  color: #7987a1;
23857
}
16848 stevensc 23858
 
16825 efrain 23859
@media (max-width: 991px) {
23860
  .navbar .sidebar-toggler {
23861
    display: flex;
23862
  }
23863
}
16848 stevensc 23864
 
16825 efrain 23865
.navbar .search-form {
23866
  width: 100%;
23867
  margin-right: 60px;
23868
}
16848 stevensc 23869
 
16825 efrain 23870
.navbar .search-form .input-group .input-group-text {
23871
  padding: 0;
23872
  border: 0;
23873
  color: #7987a1;
23874
  background: #fff;
23875
}
16848 stevensc 23876
 
16825 efrain 23877
.navbar .search-form .input-group .input-group-text svg {
23878
  width: 20px;
23879
  height: 20px;
23880
  cursor: pointer;
23881
}
16848 stevensc 23882
 
23883
.navbar .search-form .input-group .form-control,
23884
.navbar .search-form .input-group .typeahead.tt-input,
23885
.navbar .search-form .input-group .typeahead.tt-hint,
23886
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23887
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23888
  border: 0;
23889
  margin-top: 3px;
23890
}
16848 stevensc 23891
 
16825 efrain 23892
.navbar .navbar-content {
23893
  display: flex;
23894
  width: 100%;
23895
  height: 100%;
23896
  padding-left: 25px;
23897
  padding-right: 25px;
23898
}
16848 stevensc 23899
 
16825 efrain 23900
@media (max-width: 991px) {
23901
  .navbar .navbar-content {
23902
    width: calc(100% - 70px - 1px);
23903
  }
23904
}
16848 stevensc 23905
 
16825 efrain 23906
.navbar .navbar-content .navbar-nav {
23907
  display: flex;
23908
  flex-direction: row;
23909
  margin-left: auto;
23910
}
16848 stevensc 23911
 
16825 efrain 23912
.navbar .navbar-content .navbar-nav .nav-item {
23913
  position: relative;
23914
  margin-left: 5px;
23915
  margin-right: 5px;
23916
  min-width: 30px;
23917
  display: flex;
23918
  align-items: center;
23919
}
16848 stevensc 23920
 
16825 efrain 23921
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23922
  color: #000;
23923
  padding: 0;
23924
  position: relative;
23925
  margin-left: auto;
23926
  margin-right: auto;
23927
}
16848 stevensc 23928
 
23929
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23930
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23931
  color: #6571ff;
23932
}
16848 stevensc 23933
 
16825 efrain 23934
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23935
  display: none;
23936
}
16848 stevensc 23937
 
16825 efrain 23938
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23939
  width: 20px;
23940
  height: 20px;
23941
}
16848 stevensc 23942
 
16825 efrain 23943
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23944
  position: absolute;
23945
  top: 0px;
23946
  right: 2px;
23947
}
16848 stevensc 23948
 
16825 efrain 23949
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23950
  background: #6571ff;
23951
  width: 7px;
23952
  height: 7px;
23953
  border-radius: 50%;
23954
}
16848 stevensc 23955
 
16825 efrain 23956
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23957
  background-color: #6571ff;
23958
  content: "";
23959
  display: table;
23960
  border-radius: 50%;
23961
  position: absolute;
23962
}
16848 stevensc 23963
 
16825 efrain 23964
@media (max-width: 767px) {
23965
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23966
    position: static;
23967
  }
23968
}
16848 stevensc 23969
 
23970
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23971
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23972
  width: max-content;
23973
  position: absolute;
23974
  right: -20px;
23975
  left: auto;
23976
}
16848 stevensc 23977
 
23978
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23979
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23980
  content: "";
23981
  width: 13px;
23982
  height: 13px;
23983
  background: #fff;
23984
  position: absolute;
23985
  top: -7px;
23986
  right: 28px;
23987
  transform: rotate(45deg);
23988
  border-top: 1px solid #f2f4f9;
23989
  border-left: 1px solid #f2f4f9;
23990
}
16848 stevensc 23991
 
16825 efrain 23992
@media (max-width: 767px) {
16848 stevensc 23993
 
23994
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23995
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23996
    right: 20px;
23997
    width: calc(100% - 40px);
23998
  }
16848 stevensc 23999
 
24000
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24001
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24002
    display: none;
24003
  }
24004
}
24005
 
24006
.sidebar {
24007
  width: 240px;
24008
  height: 100%;
24009
  position: fixed;
24010
  left: 0;
24011
  top: 0;
24012
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24013
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24014
  z-index: 999;
24015
}
16848 stevensc 24016
 
16825 efrain 24017
.sidebar .sidebar-header {
24018
  background: #fff;
24019
  height: 60px;
24020
  border-bottom: 1px solid #e9ecef;
24021
  display: flex;
24022
  justify-content: space-between;
24023
  align-items: center;
24024
  padding: 0 25px;
24025
  border-right: 1px solid #e9ecef;
24026
  z-index: 999;
24027
  width: 240px;
24028
  -webkit-transition: width 0.1s ease;
24029
  transition: width 0.1s ease;
24030
}
16848 stevensc 24031
 
16825 efrain 24032
.sidebar-open .sidebar .sidebar-header {
24033
  border-bottom: 1px solid #e9ecef;
24034
}
16848 stevensc 24035
 
16825 efrain 24036
.sidebar .sidebar-header .sidebar-brand {
24037
  opacity: 1;
24038
  visibility: visible;
24039
  -webkit-transition: opacity 0.5s ease;
24040
  transition: opacity 0.5s ease;
24041
  font-weight: 700;
24042
  font-size: 25px;
24043
  color: #000865;
16848 stevensc 24044
  direction: ltr
24045
    /*rtl:ignore*/
24046
  ;
16825 efrain 24047
}
16848 stevensc 24048
 
16825 efrain 24049
.sidebar .sidebar-header .sidebar-brand span {
24050
  color: #6571ff;
24051
  font-weight: 300;
24052
}
16848 stevensc 24053
 
16825 efrain 24054
.sidebar .sidebar-header .sidebar-toggler {
24055
  cursor: pointer;
24056
  width: 18px;
24057
}
16848 stevensc 24058
 
16825 efrain 24059
.sidebar .sidebar-header .sidebar-toggler span {
24060
  display: block;
24061
  width: 100%;
24062
  border-radius: 3px;
24063
  height: 2px;
24064
  background: #7987a1;
24065
  -webkit-transition: all 0.3s;
24066
  transition: all 0.3s;
24067
  position: relative;
24068
}
16848 stevensc 24069
 
24070
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24071
  margin-top: 4px;
24072
}
16848 stevensc 24073
 
16825 efrain 24074
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24075
  -webkit-animation: ease 0.6s top forwards;
24076
  animation: ease 0.6s top forwards;
24077
}
16848 stevensc 24078
 
16825 efrain 24079
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24080
  -webkit-animation: ease 0.6s top-2 forwards;
24081
  animation: ease 0.6s top-2 forwards;
24082
}
16848 stevensc 24083
 
16825 efrain 24084
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24085
  -webkit-animation: ease 0.6s scaled forwards;
24086
  animation: ease 0.6s scaled forwards;
24087
}
16848 stevensc 24088
 
16825 efrain 24089
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24090
  -webkit-animation: ease 0.6s scaled-2 forwards;
24091
  animation: ease 0.6s scaled-2 forwards;
24092
}
16848 stevensc 24093
 
16825 efrain 24094
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24095
  -webkit-animation: ease 0.6s bottom forwards;
24096
  animation: ease 0.6s bottom forwards;
24097
}
16848 stevensc 24098
 
16825 efrain 24099
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24100
  -webkit-animation: ease 0.6s bottom-2 forwards;
24101
  animation: ease 0.6s bottom-2 forwards;
24102
}
16848 stevensc 24103
 
16825 efrain 24104
@-webkit-keyframes top {
24105
  0% {
24106
    top: 0;
24107
    -webkit-transform: rotate(0);
24108
    transform: rotate(0);
24109
  }
16848 stevensc 24110
 
16825 efrain 24111
  50% {
24112
    top: 6px;
24113
    -webkit-transform: rotate(0);
24114
    transform: rotate(0);
24115
  }
16848 stevensc 24116
 
16825 efrain 24117
  100% {
24118
    top: 6px;
24119
    -webkit-transform: rotate(45deg);
24120
    transform: rotate(45deg);
24121
  }
24122
}
16848 stevensc 24123
 
16825 efrain 24124
@keyframes top {
24125
  0% {
24126
    top: 0;
24127
    -webkit-transform: rotate(0);
24128
    transform: rotate(0);
24129
  }
16848 stevensc 24130
 
16825 efrain 24131
  50% {
24132
    top: 6px;
24133
    -webkit-transform: rotate(0);
24134
    transform: rotate(0);
24135
  }
16848 stevensc 24136
 
16825 efrain 24137
  100% {
24138
    top: 6px;
24139
    -webkit-transform: rotate(45deg);
24140
    transform: rotate(45deg);
24141
  }
24142
}
16848 stevensc 24143
 
16825 efrain 24144
@-webkit-keyframes top-2 {
24145
  0% {
24146
    top: 6px;
24147
    -webkit-transform: rotate(45deg);
24148
    transform: rotate(45deg);
24149
  }
16848 stevensc 24150
 
16825 efrain 24151
  50% {
24152
    top: 6px;
24153
    -webkit-transform: rotate(0deg);
24154
    transform: rotate(0deg);
24155
  }
16848 stevensc 24156
 
16825 efrain 24157
  100% {
24158
    top: 0;
24159
    -webkit-transform: rotate(0deg);
24160
    transform: rotate(0deg);
24161
  }
24162
}
16848 stevensc 24163
 
16825 efrain 24164
@keyframes top-2 {
24165
  0% {
24166
    top: 6px;
24167
    -webkit-transform: rotate(45deg);
24168
    transform: rotate(45deg);
24169
  }
16848 stevensc 24170
 
16825 efrain 24171
  50% {
24172
    top: 6px;
24173
    -webkit-transform: rotate(0deg);
24174
    transform: rotate(0deg);
24175
  }
16848 stevensc 24176
 
16825 efrain 24177
  100% {
24178
    top: 0;
24179
    -webkit-transform: rotate(0deg);
24180
    transform: rotate(0deg);
24181
  }
24182
}
16848 stevensc 24183
 
16825 efrain 24184
@-webkit-keyframes bottom {
24185
  0% {
24186
    bottom: 0;
24187
    -webkit-transform: rotate(0);
24188
    transform: rotate(0);
24189
  }
16848 stevensc 24190
 
16825 efrain 24191
  50% {
24192
    bottom: 6px;
24193
    -webkit-transform: rotate(0);
24194
    transform: rotate(0);
24195
  }
16848 stevensc 24196
 
16825 efrain 24197
  100% {
24198
    bottom: 6px;
24199
    -webkit-transform: rotate(135deg);
24200
    transform: rotate(135deg);
24201
  }
24202
}
16848 stevensc 24203
 
16825 efrain 24204
@keyframes bottom {
24205
  0% {
24206
    bottom: 0;
24207
    -webkit-transform: rotate(0);
24208
    transform: rotate(0);
24209
  }
16848 stevensc 24210
 
16825 efrain 24211
  50% {
24212
    bottom: 6px;
24213
    -webkit-transform: rotate(0);
24214
    transform: rotate(0);
24215
  }
16848 stevensc 24216
 
16825 efrain 24217
  100% {
24218
    bottom: 6px;
24219
    -webkit-transform: rotate(135deg);
24220
    transform: rotate(135deg);
24221
  }
24222
}
16848 stevensc 24223
 
16825 efrain 24224
@-webkit-keyframes bottom-2 {
24225
  0% {
24226
    bottom: 6px;
24227
    -webkit-transform: rotate(135deg);
24228
    transform: rotate(135deg);
24229
  }
16848 stevensc 24230
 
16825 efrain 24231
  50% {
24232
    bottom: 6px;
24233
    -webkit-transform: rotate(0);
24234
    transform: rotate(0);
24235
  }
16848 stevensc 24236
 
16825 efrain 24237
  100% {
24238
    bottom: 0;
24239
    -webkit-transform: rotate(0);
24240
    transform: rotate(0);
24241
  }
24242
}
16848 stevensc 24243
 
16825 efrain 24244
@keyframes bottom-2 {
24245
  0% {
24246
    bottom: 6px;
24247
    -webkit-transform: rotate(135deg);
24248
    transform: rotate(135deg);
24249
  }
16848 stevensc 24250
 
16825 efrain 24251
  50% {
24252
    bottom: 6px;
24253
    -webkit-transform: rotate(0);
24254
    transform: rotate(0);
24255
  }
16848 stevensc 24256
 
16825 efrain 24257
  100% {
24258
    bottom: 0;
24259
    -webkit-transform: rotate(0);
24260
    transform: rotate(0);
24261
  }
24262
}
16848 stevensc 24263
 
16825 efrain 24264
@-webkit-keyframes scaled {
24265
  50% {
24266
    -webkit-transform: scale(0);
24267
    transform: scale(0);
24268
  }
16848 stevensc 24269
 
16825 efrain 24270
  100% {
24271
    -webkit-transform: scale(0);
24272
    transform: scale(0);
24273
  }
24274
}
16848 stevensc 24275
 
16825 efrain 24276
@keyframes scaled {
24277
  50% {
24278
    -webkit-transform: scale(0);
24279
    transform: scale(0);
24280
  }
16848 stevensc 24281
 
16825 efrain 24282
  100% {
24283
    -webkit-transform: scale(0);
24284
    transform: scale(0);
24285
  }
24286
}
16848 stevensc 24287
 
16825 efrain 24288
@-webkit-keyframes scaled-2 {
24289
  0% {
24290
    -webkit-transform: scale(0);
24291
    transform: scale(0);
24292
  }
16848 stevensc 24293
 
16825 efrain 24294
  50% {
24295
    -webkit-transform: scale(0);
24296
    transform: scale(0);
24297
  }
16848 stevensc 24298
 
16825 efrain 24299
  100% {
24300
    -webkit-transform: scale(1);
24301
    transform: scale(1);
24302
  }
24303
}
16848 stevensc 24304
 
16825 efrain 24305
@keyframes scaled-2 {
24306
  0% {
24307
    -webkit-transform: scale(0);
24308
    transform: scale(0);
24309
  }
16848 stevensc 24310
 
16825 efrain 24311
  50% {
24312
    -webkit-transform: scale(0);
24313
    transform: scale(0);
24314
  }
16848 stevensc 24315
 
16825 efrain 24316
  100% {
24317
    -webkit-transform: scale(1);
24318
    transform: scale(1);
24319
  }
24320
}
16848 stevensc 24321
 
16825 efrain 24322
.sidebar .sidebar-body {
24323
  max-height: calc(100% - 60px);
24324
  position: relative;
24325
  border-right: 1px solid #e9ecef;
24326
  height: 100%;
24327
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24328
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24329
  background: #fff;
24330
}
16848 stevensc 24331
 
16825 efrain 24332
.sidebar .sidebar-body .nav {
24333
  display: flex;
24334
  flex-direction: column;
24335
  padding: 25px 25px 50px 25px;
24336
}
16848 stevensc 24337
 
16825 efrain 24338
.sidebar .sidebar-body .nav .nav-item {
24339
  position: relative;
24340
}
16848 stevensc 24341
 
16825 efrain 24342
.sidebar .sidebar-body .nav .nav-item .nav-link {
24343
  display: flex;
24344
  align-items: center;
24345
  padding: 0;
24346
  height: 32px;
24347
  white-space: nowrap;
24348
  color: #000;
24349
}
16848 stevensc 24350
 
16825 efrain 24351
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24352
  width: 16px;
24353
  height: 16px;
24354
  fill: rgba(233, 236, 239, 0.21);
24355
  position: absolute;
24356
  color: inherit;
24357
}
16848 stevensc 24358
 
16825 efrain 24359
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24360
  margin-left: 30px;
24361
  font-size: 14px;
24362
  -webkit-transition: all 0.2s ease-in-out;
24363
  transition: all 0.2s ease-in-out;
24364
}
16848 stevensc 24365
 
16825 efrain 24366
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24367
  width: 14px;
24368
  height: 14px;
24369
  margin-left: auto;
24370
  -webkit-transition: all 0.3s ease;
24371
  -webkit-transition: all 0.3s ease-in-out;
24372
  transition: all 0.3s ease-in-out;
24373
  color: inherit;
24374
}
16848 stevensc 24375
 
16825 efrain 24376
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24377
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24378
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24379
  -webkit-transition: all 0.3s ease;
24380
  transition: all 0.3s ease;
24381
}
16848 stevensc 24382
 
16825 efrain 24383
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24384
  color: #6571ff;
24385
}
16848 stevensc 24386
 
16825 efrain 24387
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24388
  -webkit-transform: rotate(90deg);
24389
  transform: rotate(180deg);
24390
}
16848 stevensc 24391
 
16825 efrain 24392
.sidebar .sidebar-body .nav .nav-item.nav-category {
24393
  color: #7987a1;
24394
  font-size: 11px;
24395
  text-transform: uppercase;
24396
  font-weight: 500;
24397
  letter-spacing: 0.5px;
24398
  margin-bottom: 5px;
24399
  height: 15px;
24400
}
16848 stevensc 24401
 
16825 efrain 24402
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24403
  margin-top: 20px;
24404
}
16848 stevensc 24405
 
16825 efrain 24406
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24407
  color: #6571ff;
24408
}
16848 stevensc 24409
 
16825 efrain 24410
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24411
  margin-left: 31px;
24412
}
16848 stevensc 24413
 
16825 efrain 24414
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24415
  color: #6571ff;
24416
  fill: rgba(239, 243, 255, 0.5);
24417
}
16848 stevensc 24418
 
16825 efrain 24419
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24420
  color: #6571ff;
24421
}
16848 stevensc 24422
 
16825 efrain 24423
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24424
  content: "";
24425
  width: 3px;
24426
  height: 26px;
24427
  background: #6571ff;
24428
  position: absolute;
24429
  left: -25px;
24430
}
16848 stevensc 24431
 
16825 efrain 24432
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24433
  fill: rgba(239, 243, 255, 0.5);
24434
  color: #6571ff;
24435
}
16848 stevensc 24436
 
16825 efrain 24437
.sidebar .sidebar-body .nav.sub-menu {
24438
  padding: 0 0 15px 33px;
24439
}
16848 stevensc 24440
 
16825 efrain 24441
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24442
  position: relative;
24443
}
16848 stevensc 24444
 
16825 efrain 24445
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24446
  height: 25px;
24447
  color: #000;
24448
  font-size: 13px;
24449
  -webkit-transition: all 0.3s ease-in-out;
24450
  transition: all 0.3s ease-in-out;
24451
}
16848 stevensc 24452
 
16825 efrain 24453
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24454
  content: "";
24455
  width: 6px;
24456
  height: 6px;
24457
  border-radius: 50%;
24458
  background: transparent;
24459
  border: 1px solid #aeb9c4;
24460
  position: absolute;
24461
  left: -29px;
24462
  top: 10px;
24463
  -webkit-transition: all 0.7s ease-in-out;
24464
  -webkit-transition: all 0.4s ease-in-out;
24465
  transition: all 0.4s ease-in-out;
24466
}
16848 stevensc 24467
 
16825 efrain 24468
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24469
  color: #6571ff;
24470
}
16848 stevensc 24471
 
16825 efrain 24472
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24473
  border: 1px solid #6571ff;
24474
  background: #6571ff;
24475
}
16848 stevensc 24476
 
16825 efrain 24477
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24478
  color: #6571ff;
24479
  margin-left: 3px;
24480
}
16848 stevensc 24481
 
16825 efrain 24482
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24483
  border: 1px solid #6571ff;
24484
  background: #6571ff;
24485
}
16848 stevensc 24486
 
16825 efrain 24487
@media (max-width: 991px) {
24488
  .sidebar {
24489
    z-index: 999;
24490
    margin-left: -240px;
24491
    visibility: hidden;
24492
  }
16848 stevensc 24493
 
16825 efrain 24494
  .sidebar-open .sidebar {
24495
    margin-left: 0;
24496
    visibility: visible;
24497
  }
16848 stevensc 24498
 
16825 efrain 24499
  .sidebar .sidebar-body .nav .nav-item {
24500
    width: auto;
24501
  }
16848 stevensc 24502
 
16825 efrain 24503
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24504
    -webkit-transition: none;
24505
    transition: none;
24506
    margin: 0;
24507
  }
24508
}
24509
 
24510
.sidebar-dark .sidebar .sidebar-header {
24511
  background: #0c1427;
24512
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24513
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24514
}
16848 stevensc 24515
 
16825 efrain 24516
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24517
  color: #e9ecef;
24518
}
16848 stevensc 24519
 
16825 efrain 24520
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24521
  background: #7987a1;
24522
}
16848 stevensc 24523
 
16825 efrain 24524
.sidebar-dark .sidebar .sidebar-body {
24525
  background: #0c1427;
24526
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24527
}
16848 stevensc 24528
 
16825 efrain 24529
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24530
  color: #fff;
24531
}
16848 stevensc 24532
 
16825 efrain 24533
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24534
  color: #7987a1;
24535
}
16848 stevensc 24536
 
16825 efrain 24537
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24538
  fill: none;
24539
}
16848 stevensc 24540
 
16825 efrain 24541
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24542
  color: #6571ff;
24543
}
16848 stevensc 24544
 
24545
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24546
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24547
  fill: rgba(101, 113, 255, 0.2);
24548
}
16848 stevensc 24549
 
24550
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24551
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24552
  color: #6571ff;
24553
}
24554
 
24555
.settings-sidebar {
24556
  position: fixed;
24557
  right: -232px;
24558
  top: 130px;
24559
  width: 232px;
24560
  background: #fff;
24561
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24562
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24563
  z-index: 999;
24564
  border-radius: 0 0 0 4px;
24565
  -webkit-transition: all 0.2s ease-in-out;
24566
  transition: all 0.2s ease-in-out;
24567
}
16848 stevensc 24568
 
16825 efrain 24569
.settings-open .settings-sidebar {
24570
  right: 0;
24571
}
16848 stevensc 24572
 
16825 efrain 24573
.settings-sidebar .sidebar-body {
24574
  position: relative;
24575
  padding: 18px;
24576
}
16848 stevensc 24577
 
16825 efrain 24578
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24579
  position: absolute;
24580
  left: -44px;
24581
  top: 0;
24582
  padding: 12px;
24583
  border-radius: 4px 0 0 4px;
24584
  background: #fff;
24585
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24586
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24587
}
16848 stevensc 24588
 
16825 efrain 24589
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24590
  width: 20px;
24591
  height: 20px;
24592
  color: #7987a1;
24593
}
16848 stevensc 24594
 
16825 efrain 24595
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24596
  position: relative;
24597
  display: block;
24598
  margin-bottom: 19px;
24599
  border-radius: 6px;
24600
  border: 3px solid #e9ecef;
24601
}
16848 stevensc 24602
 
16825 efrain 24603
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24604
  content: "";
24605
  position: absolute;
24606
  top: 0;
24607
  left: 0;
24608
  width: 100%;
24609
  height: 100%;
24610
  background: rgba(101, 113, 255, 0);
24611
}
16848 stevensc 24612
 
16825 efrain 24613
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24614
  margin-bottom: 0;
24615
}
16848 stevensc 24616
 
16825 efrain 24617
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24618
  border: 3px solid #b2b8ff;
24619
}
16848 stevensc 24620
 
16825 efrain 24621
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24622
  width: 100%;
24623
  border-radius: 3px;
24624
}
16848 stevensc 24625
 
16825 efrain 24626
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24627
  background: rgba(101, 113, 255, 0.2);
24628
  -webkit-transition: all 0.3s ease-in-out;
24629
  transition: all 0.3s ease-in-out;
24630
}
24631
 
24632
.sidebar-folded .sidebar .sidebar-header {
24633
  width: 70px;
24634
}
16848 stevensc 24635
 
16825 efrain 24636
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24637
  display: none;
24638
}
16848 stevensc 24639
 
16825 efrain 24640
.sidebar-folded .page-wrapper {
24641
  width: calc(100% - 70px);
24642
  margin-left: 70px;
24643
}
16848 stevensc 24644
 
16825 efrain 24645
.sidebar-folded .page-wrapper .navbar {
24646
  width: calc(100% - 70px);
24647
  left: 70px;
24648
  right: 0;
24649
}
16848 stevensc 24650
 
16825 efrain 24651
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24652
  width: 70px;
24653
}
16848 stevensc 24654
 
16825 efrain 24655
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24656
  width: 70px;
24657
}
16848 stevensc 24658
 
16825 efrain 24659
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24660
  opacity: 0;
24661
  visibility: hidden;
24662
  width: 0;
24663
}
16848 stevensc 24664
 
16825 efrain 24665
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24666
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24667
  visibility: hidden;
24668
  opacity: 0;
24669
}
16848 stevensc 24670
 
16825 efrain 24671
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24672
  visibility: hidden;
24673
}
16848 stevensc 24674
 
16825 efrain 24675
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24676
  content: "";
24677
  width: 5px;
24678
  height: 5px;
24679
  border-radius: 50%;
24680
  background: #7987a1;
24681
  position: absolute;
24682
  top: 5px;
24683
  left: 6px;
24684
  visibility: visible;
24685
}
16848 stevensc 24686
 
16825 efrain 24687
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24688
  display: none;
24689
}
24690
 
24691
@media (max-width: 991px) {
16848 stevensc 24692
 
24693
  .sidebar-open .main-wrapper::before,
24694
  .settings-open .main-wrapper::before {
16825 efrain 24695
    content: "";
24696
    width: 100vw;
24697
    background: rgba(0, 0, 0, 0.3);
24698
    position: fixed;
24699
    top: 0;
24700
    bottom: 0;
24701
    right: 0;
24702
    z-index: 99;
24703
    -webkit-transition: all 3s ease;
24704
    transition: all 3s ease;
24705
    z-index: 980;
24706
  }
24707
}
24708
 
24709
a.badge:hover {
24710
  color: #fff;
24711
}
24712
 
24713
.alert-primary {
24714
  background-color: rgba(101, 113, 255, 0.1);
24715
  color: #4c59ff;
24716
  border-color: rgba(101, 113, 255, 0.2);
24717
}
16848 stevensc 24718
 
16825 efrain 24719
.alert-primary .alert-link {
24720
  color: #4c59ff;
24721
}
16848 stevensc 24722
 
16825 efrain 24723
.alert-primary svg {
24724
  width: 19px;
24725
  height: 19px;
24726
  margin-right: 0.5rem;
24727
}
16848 stevensc 24728
 
16825 efrain 24729
.alert-primary i {
24730
  font-size: 19px;
24731
  margin-right: 0.5rem;
24732
}
24733
 
24734
.alert-fill-primary {
24735
  --bs-alert-color: #fff;
24736
  --bs-alert-bg: #6571ff;
24737
  --bs-alert-border-color: #6571ff;
24738
}
16848 stevensc 24739
 
16825 efrain 24740
.alert-fill-primary .alert-link {
24741
  color: #cccccc;
24742
}
16848 stevensc 24743
 
16825 efrain 24744
.alert-fill-primary.alert-fill-light {
24745
  color: #7987a1;
24746
}
24747
 
24748
.alert-secondary {
24749
  background-color: rgba(121, 135, 161, 0.1);
24750
  color: #6a7a96;
24751
  border-color: rgba(121, 135, 161, 0.2);
24752
}
16848 stevensc 24753
 
16825 efrain 24754
.alert-secondary .alert-link {
24755
  color: #6a7a96;
24756
}
16848 stevensc 24757
 
16825 efrain 24758
.alert-secondary svg {
24759
  width: 19px;
24760
  height: 19px;
24761
  margin-right: 0.5rem;
24762
}
16848 stevensc 24763
 
16825 efrain 24764
.alert-secondary i {
24765
  font-size: 19px;
24766
  margin-right: 0.5rem;
24767
}
24768
 
24769
.alert-fill-secondary {
24770
  --bs-alert-color: #fff;
24771
  --bs-alert-bg: #7987a1;
24772
  --bs-alert-border-color: #7987a1;
24773
}
16848 stevensc 24774
 
16825 efrain 24775
.alert-fill-secondary .alert-link {
24776
  color: #cccccc;
24777
}
16848 stevensc 24778
 
16825 efrain 24779
.alert-fill-secondary.alert-fill-light {
24780
  color: #7987a1;
24781
}
24782
 
24783
.alert-success {
24784
  background-color: rgba(5, 163, 74, 0.1);
24785
  color: #048a3f;
24786
  border-color: rgba(5, 163, 74, 0.2);
24787
}
16848 stevensc 24788
 
16825 efrain 24789
.alert-success .alert-link {
24790
  color: #048a3f;
24791
}
16848 stevensc 24792
 
16825 efrain 24793
.alert-success svg {
24794
  width: 19px;
24795
  height: 19px;
24796
  margin-right: 0.5rem;
24797
}
16848 stevensc 24798
 
16825 efrain 24799
.alert-success i {
24800
  font-size: 19px;
24801
  margin-right: 0.5rem;
24802
}
24803
 
24804
.alert-fill-success {
24805
  --bs-alert-color: #fff;
24806
  --bs-alert-bg: #05a34a;
24807
  --bs-alert-border-color: #05a34a;
24808
}
16848 stevensc 24809
 
16825 efrain 24810
.alert-fill-success .alert-link {
24811
  color: #cccccc;
24812
}
16848 stevensc 24813
 
16825 efrain 24814
.alert-fill-success.alert-fill-light {
24815
  color: #7987a1;
24816
}
24817
 
24818
.alert-info {
24819
  background-color: rgba(102, 209, 209, 0.1);
24820
  color: #52cbcb;
24821
  border-color: rgba(102, 209, 209, 0.2);
24822
}
16848 stevensc 24823
 
16825 efrain 24824
.alert-info .alert-link {
24825
  color: #52cbcb;
24826
}
16848 stevensc 24827
 
16825 efrain 24828
.alert-info svg {
24829
  width: 19px;
24830
  height: 19px;
24831
  margin-right: 0.5rem;
24832
}
16848 stevensc 24833
 
16825 efrain 24834
.alert-info i {
24835
  font-size: 19px;
24836
  margin-right: 0.5rem;
24837
}
24838
 
24839
.alert-fill-info {
24840
  --bs-alert-color: #fff;
24841
  --bs-alert-bg: #66d1d1;
24842
  --bs-alert-border-color: #66d1d1;
24843
}
16848 stevensc 24844
 
16825 efrain 24845
.alert-fill-info .alert-link {
24846
  color: #cccccc;
24847
}
16848 stevensc 24848
 
16825 efrain 24849
.alert-fill-info.alert-fill-light {
24850
  color: #7987a1;
24851
}
24852
 
24853
.alert-warning {
24854
  background-color: rgba(251, 188, 6, 0.1);
24855
  color: #e4aa04;
24856
  border-color: rgba(251, 188, 6, 0.2);
24857
}
16848 stevensc 24858
 
16825 efrain 24859
.alert-warning .alert-link {
24860
  color: #e4aa04;
24861
}
16848 stevensc 24862
 
16825 efrain 24863
.alert-warning svg {
24864
  width: 19px;
24865
  height: 19px;
24866
  margin-right: 0.5rem;
24867
}
16848 stevensc 24868
 
16825 efrain 24869
.alert-warning i {
24870
  font-size: 19px;
24871
  margin-right: 0.5rem;
24872
}
24873
 
24874
.alert-fill-warning {
24875
  --bs-alert-color: #fff;
24876
  --bs-alert-bg: #fbbc06;
24877
  --bs-alert-border-color: #fbbc06;
24878
}
16848 stevensc 24879
 
16825 efrain 24880
.alert-fill-warning .alert-link {
24881
  color: #cccccc;
24882
}
16848 stevensc 24883
 
16825 efrain 24884
.alert-fill-warning.alert-fill-light {
24885
  color: #7987a1;
24886
}
24887
 
24888
.alert-danger {
24889
  background-color: rgba(255, 51, 102, 0.1);
24890
  color: #ff1a53;
24891
  border-color: rgba(255, 51, 102, 0.2);
24892
}
16848 stevensc 24893
 
16825 efrain 24894
.alert-danger .alert-link {
24895
  color: #ff1a53;
24896
}
16848 stevensc 24897
 
16825 efrain 24898
.alert-danger svg {
24899
  width: 19px;
24900
  height: 19px;
24901
  margin-right: 0.5rem;
24902
}
16848 stevensc 24903
 
16825 efrain 24904
.alert-danger i {
24905
  font-size: 19px;
24906
  margin-right: 0.5rem;
24907
}
24908
 
24909
.alert-fill-danger {
24910
  --bs-alert-color: #fff;
24911
  --bs-alert-bg: #ff3366;
24912
  --bs-alert-border-color: #ff3366;
24913
}
16848 stevensc 24914
 
16825 efrain 24915
.alert-fill-danger .alert-link {
24916
  color: #cccccc;
24917
}
16848 stevensc 24918
 
16825 efrain 24919
.alert-fill-danger.alert-fill-light {
24920
  color: #7987a1;
24921
}
24922
 
24923
.alert-light {
24924
  background-color: rgba(233, 236, 239, 0.1);
24925
  color: #dadfe4;
24926
  border-color: rgba(233, 236, 239, 0.2);
24927
}
16848 stevensc 24928
 
16825 efrain 24929
.alert-light .alert-link {
24930
  color: #dadfe4;
24931
}
16848 stevensc 24932
 
16825 efrain 24933
.alert-light svg {
24934
  width: 19px;
24935
  height: 19px;
24936
  margin-right: 0.5rem;
24937
}
16848 stevensc 24938
 
16825 efrain 24939
.alert-light i {
24940
  font-size: 19px;
24941
  margin-right: 0.5rem;
24942
}
24943
 
24944
.alert-fill-light {
24945
  --bs-alert-color: #fff;
24946
  --bs-alert-bg: #e9ecef;
24947
  --bs-alert-border-color: #e9ecef;
24948
}
16848 stevensc 24949
 
16825 efrain 24950
.alert-fill-light .alert-link {
24951
  color: #cccccc;
24952
}
16848 stevensc 24953
 
16825 efrain 24954
.alert-fill-light.alert-fill-light {
24955
  color: #7987a1;
24956
}
24957
 
24958
.alert-dark {
24959
  background-color: rgba(6, 12, 23, 0.1);
24960
  color: #010103;
24961
  border-color: rgba(6, 12, 23, 0.2);
24962
}
16848 stevensc 24963
 
16825 efrain 24964
.alert-dark .alert-link {
24965
  color: #010103;
24966
}
16848 stevensc 24967
 
16825 efrain 24968
.alert-dark svg {
24969
  width: 19px;
24970
  height: 19px;
24971
  margin-right: 0.5rem;
24972
}
16848 stevensc 24973
 
16825 efrain 24974
.alert-dark i {
24975
  font-size: 19px;
24976
  margin-right: 0.5rem;
24977
}
24978
 
24979
.alert-fill-dark {
24980
  --bs-alert-color: #fff;
24981
  --bs-alert-bg: #060c17;
24982
  --bs-alert-border-color: #060c17;
24983
}
16848 stevensc 24984
 
16825 efrain 24985
.alert-fill-dark .alert-link {
24986
  color: #cccccc;
24987
}
16848 stevensc 24988
 
16825 efrain 24989
.alert-fill-dark.alert-fill-light {
24990
  color: #7987a1;
24991
}
24992
 
16848 stevensc 24993
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24994
  content: "-" !important;
24995
}
16848 stevensc 24996
 
24997
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24998
  content: "•" !important;
24999
}
16848 stevensc 25000
 
25001
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25002
  content: ">" !important;
25003
}
25004
 
25005
/* Buttons */
16848 stevensc 25006
.btn i,
25007
.wizard>.actions a i,
25008
.wizard>.actions a:active i,
25009
.wizard>.actions a:hover i,
25010
div.tox .tox-button i,
25011
.swal2-popup .swal2-actions button i,
25012
.fc .fc-button-primary i {
16825 efrain 25013
  font-size: 1rem;
25014
}
16848 stevensc 25015
 
25016
.btn.btn-rounded,
25017
.wizard>.actions a.btn-rounded,
25018
div.tox .btn-rounded.tox-button,
25019
.swal2-popup .swal2-actions button.btn-rounded,
25020
.fc .btn-rounded.fc-button-primary {
16825 efrain 25021
  border-radius: 50px;
25022
}
16848 stevensc 25023
 
25024
.btn.btn-xs,
25025
.wizard>.actions a.btn-xs,
25026
div.tox .btn-xs.tox-button,
25027
.swal2-popup .swal2-actions button.btn-xs,
25028
.fc .btn-xs.fc-button-primary {
16825 efrain 25029
  padding: 0.313rem 0.8rem;
25030
  font-size: 0.75rem;
25031
}
16848 stevensc 25032
 
25033
.btn.btn-icon,
25034
.wizard>.actions a.btn-icon,
25035
div.tox .btn-icon.tox-button,
25036
.swal2-popup .swal2-actions button.btn-icon,
25037
.fc .btn-icon.fc-button-primary {
16825 efrain 25038
  width: 38px;
25039
  height: 38px;
25040
  padding: 0;
25041
  display: inline-flex;
25042
  align-items: center;
25043
  justify-content: center;
25044
}
16848 stevensc 25045
 
25046
.btn.btn-icon svg,
25047
.wizard>.actions a.btn-icon svg,
25048
div.tox .btn-icon.tox-button svg,
25049
.swal2-popup .swal2-actions button.btn-icon svg,
25050
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25051
  height: 18px;
25052
}
16848 stevensc 25053
 
25054
.btn.btn-icon.btn-xs,
25055
.wizard>.actions a.btn-icon.btn-xs,
25056
div.tox .btn-icon.btn-xs.tox-button,
25057
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25058
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25059
  width: 30px;
25060
  height: 30px;
25061
}
16848 stevensc 25062
 
25063
.btn.btn-icon.btn-xs svg,
25064
.wizard>.actions a.btn-icon.btn-xs svg,
25065
div.tox .btn-icon.btn-xs.tox-button svg,
25066
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25067
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25068
  height: 14px;
25069
}
16848 stevensc 25070
 
25071
.btn.btn-icon.btn-sm,
25072
.wizard>.actions a.btn-icon.btn-sm,
25073
div.tox .btn-icon.btn-sm.tox-button,
25074
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25075
.fc .btn-icon.fc-button-primary,
25076
.btn-group-sm>.btn.btn-icon,
25077
.wizard>.actions .btn-group-sm>a.btn-icon,
25078
div.tox .btn-group-sm>.btn-icon.tox-button,
25079
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25080
  width: 36px;
25081
  height: 36px;
25082
}
16848 stevensc 25083
 
25084
.btn.btn-icon.btn-sm svg,
25085
.wizard>.actions a.btn-icon.btn-sm svg,
25086
div.tox .btn-icon.btn-sm.tox-button svg,
25087
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25088
.fc .btn-icon.fc-button-primary svg,
25089
.btn-group-sm>.btn.btn-icon svg,
25090
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25091
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25092
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25093
  height: 15px;
25094
}
16848 stevensc 25095
 
25096
.btn.btn-icon.btn-lg,
25097
.wizard>.actions a.btn-icon.btn-lg,
25098
div.tox .btn-icon.btn-lg.tox-button,
25099
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25100
.fc .btn-icon.btn-lg.fc-button-primary,
25101
.btn-group-lg>.btn.btn-icon,
25102
.wizard>.actions .btn-group-lg>a.btn-icon,
25103
div.tox .btn-group-lg>.btn-icon.tox-button,
25104
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25105
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25106
  width: 42px;
25107
  height: 42px;
25108
}
16848 stevensc 25109
 
25110
.btn.btn-icon.btn-lg svg,
25111
.wizard>.actions a.btn-icon.btn-lg svg,
25112
div.tox .btn-icon.btn-lg.tox-button svg,
25113
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25114
.fc .btn-icon.btn-lg.fc-button-primary svg,
25115
.btn-group-lg>.btn.btn-icon svg,
25116
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25117
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25118
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25119
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25120
  height: 18px;
25121
}
16848 stevensc 25122
 
25123
.btn.btn-icon-text .btn-icon-prepend,
25124
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25125
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25126
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25127
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25128
  margin-right: 0.5rem;
25129
}
16848 stevensc 25130
 
25131
.btn.btn-icon-text .btn-icon-append,
25132
.wizard>.actions a.btn-icon-text .btn-icon-append,
25133
div.tox .btn-icon-text.tox-button .btn-icon-append,
25134
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25135
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25136
  margin-left: 0.5rem;
25137
}
16848 stevensc 25138
 
25139
.btn.btn-icon-text .btn-icon-prepend,
25140
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25141
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25142
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25143
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25144
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25145
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25146
div.tox .btn-icon-text.tox-button .btn-icon-append,
25147
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25148
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25149
  width: 18px;
25150
  height: 18px;
25151
}
16848 stevensc 25152
 
25153
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25154
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25155
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25156
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25157
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25158
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25159
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25160
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25161
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25162
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25163
  width: 14px;
25164
  height: 14px;
25165
}
16848 stevensc 25166
 
25167
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25168
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25169
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25170
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25171
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25172
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25173
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25174
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25175
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25176
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25177
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25178
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25179
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25180
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25181
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25182
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25183
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25184
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25185
  width: 15px;
25186
  height: 15px;
25187
}
16848 stevensc 25188
 
25189
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25190
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25191
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25192
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25193
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25194
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25195
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25196
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25197
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25198
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25199
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25200
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25201
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25202
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25203
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25204
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25205
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25206
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25207
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25208
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25209
  width: 18px;
25210
  height: 18px;
25211
}
25212
 
25213
.btn-facebook {
25214
  background: #3b5998;
25215
  color: #fff;
25216
}
16848 stevensc 25217
 
25218
.btn-facebook:hover,
25219
.btn-facebook:focus {
16825 efrain 25220
  background: #2d4373;
25221
  color: #fff;
25222
}
16848 stevensc 25223
 
16825 efrain 25224
.btn-facebook.btn-social-icon-text {
25225
  padding: 0 1.5rem 0 0;
25226
  background: #4c70ba;
25227
}
16848 stevensc 25228
 
16825 efrain 25229
.btn-facebook.btn-social-icon-text i {
25230
  background: #3b5998;
25231
  padding: 0.75rem;
25232
  display: inline-block;
25233
  margin-right: 1.5rem;
25234
}
25235
 
25236
.btn-outline-facebook {
25237
  border: 1px solid #3b5998;
25238
  color: #3b5998;
25239
}
16848 stevensc 25240
 
16825 efrain 25241
.btn-outline-facebook:hover {
25242
  background: #3b5998;
25243
  color: #fff;
25244
}
25245
 
25246
.btn-twitter {
25247
  background: #1da1f2;
25248
  color: #fff;
25249
}
16848 stevensc 25250
 
25251
.btn-twitter:hover,
25252
.btn-twitter:focus {
16825 efrain 25253
  background: #0c85d0;
25254
  color: #fff;
25255
}
16848 stevensc 25256
 
16825 efrain 25257
.btn-twitter.btn-social-icon-text {
25258
  padding: 0 1.5rem 0 0;
25259
  background: #4db5f5;
25260
}
16848 stevensc 25261
 
16825 efrain 25262
.btn-twitter.btn-social-icon-text i {
25263
  background: #1da1f2;
25264
  padding: 0.75rem;
25265
  display: inline-block;
25266
  margin-right: 1.5rem;
25267
}
25268
 
25269
.btn-outline-twitter {
25270
  border: 1px solid #1da1f2;
25271
  color: #1da1f2;
25272
}
16848 stevensc 25273
 
16825 efrain 25274
.btn-outline-twitter:hover {
25275
  background: #1da1f2;
25276
  color: #fff;
25277
}
25278
 
25279
.btn-google {
25280
  background: #dc4e41;
25281
  color: #fff;
25282
}
16848 stevensc 25283
 
25284
.btn-google:hover,
25285
.btn-google:focus {
16825 efrain 25286
  background: #c63224;
25287
  color: #fff;
25288
}
16848 stevensc 25289
 
16825 efrain 25290
.btn-google.btn-social-icon-text {
25291
  padding: 0 1.5rem 0 0;
25292
  background: #e4766c;
25293
}
16848 stevensc 25294
 
16825 efrain 25295
.btn-google.btn-social-icon-text i {
25296
  background: #dc4e41;
25297
  padding: 0.75rem;
25298
  display: inline-block;
25299
  margin-right: 1.5rem;
25300
}
25301
 
25302
.btn-outline-google {
25303
  border: 1px solid #dc4e41;
25304
  color: #dc4e41;
25305
}
16848 stevensc 25306
 
16825 efrain 25307
.btn-outline-google:hover {
25308
  background: #dc4e41;
25309
  color: #fff;
25310
}
25311
 
25312
.btn-youtube {
25313
  background: #f00;
25314
  color: #fff;
25315
}
16848 stevensc 25316
 
25317
.btn-youtube:hover,
25318
.btn-youtube:focus {
16825 efrain 25319
  background: #cc0000;
25320
  color: #fff;
25321
}
16848 stevensc 25322
 
16825 efrain 25323
.btn-youtube.btn-social-icon-text {
25324
  padding: 0 1.5rem 0 0;
25325
  background: #ff3333;
25326
}
16848 stevensc 25327
 
16825 efrain 25328
.btn-youtube.btn-social-icon-text i {
25329
  background: #f00;
25330
  padding: 0.75rem;
25331
  display: inline-block;
25332
  margin-right: 1.5rem;
25333
}
25334
 
25335
.btn-outline-youtube {
25336
  border: 1px solid #f00;
25337
  color: #f00;
25338
}
16848 stevensc 25339
 
16825 efrain 25340
.btn-outline-youtube:hover {
25341
  background: #f00;
25342
  color: #fff;
25343
}
25344
 
25345
.btn-vimeo {
25346
  background: #1ab7ea;
25347
  color: #fff;
25348
}
16848 stevensc 25349
 
25350
.btn-vimeo:hover,
25351
.btn-vimeo:focus {
16825 efrain 25352
  background: #1295bf;
25353
  color: #fff;
25354
}
16848 stevensc 25355
 
16825 efrain 25356
.btn-vimeo.btn-social-icon-text {
25357
  padding: 0 1.5rem 0 0;
25358
  background: #49c6ee;
25359
}
16848 stevensc 25360
 
16825 efrain 25361
.btn-vimeo.btn-social-icon-text i {
25362
  background: #1ab7ea;
25363
  padding: 0.75rem;
25364
  display: inline-block;
25365
  margin-right: 1.5rem;
25366
}
25367
 
25368
.btn-outline-vimeo {
25369
  border: 1px solid #1ab7ea;
25370
  color: #1ab7ea;
25371
}
16848 stevensc 25372
 
16825 efrain 25373
.btn-outline-vimeo:hover {
25374
  background: #1ab7ea;
25375
  color: #fff;
25376
}
25377
 
25378
.btn-dribbble {
25379
  background: #ea4c89;
25380
  color: #fff;
25381
}
16848 stevensc 25382
 
25383
.btn-dribbble:hover,
25384
.btn-dribbble:focus {
16825 efrain 25385
  background: #e51e6b;
25386
  color: #fff;
25387
}
16848 stevensc 25388
 
16825 efrain 25389
.btn-dribbble.btn-social-icon-text {
25390
  padding: 0 1.5rem 0 0;
25391
  background: #ef7aa7;
25392
}
16848 stevensc 25393
 
16825 efrain 25394
.btn-dribbble.btn-social-icon-text i {
25395
  background: #ea4c89;
25396
  padding: 0.75rem;
25397
  display: inline-block;
25398
  margin-right: 1.5rem;
25399
}
25400
 
25401
.btn-outline-dribbble {
25402
  border: 1px solid #ea4c89;
25403
  color: #ea4c89;
25404
}
16848 stevensc 25405
 
16825 efrain 25406
.btn-outline-dribbble:hover {
25407
  background: #ea4c89;
25408
  color: #fff;
25409
}
25410
 
25411
.btn-github {
25412
  background: #181717;
25413
  color: #fff;
25414
}
16848 stevensc 25415
 
25416
.btn-github:hover,
25417
.btn-github:focus {
16825 efrain 25418
  background: black;
25419
  color: #fff;
25420
}
16848 stevensc 25421
 
16825 efrain 25422
.btn-github.btn-social-icon-text {
25423
  padding: 0 1.5rem 0 0;
25424
  background: #323030;
25425
}
16848 stevensc 25426
 
16825 efrain 25427
.btn-github.btn-social-icon-text i {
25428
  background: #181717;
25429
  padding: 0.75rem;
25430
  display: inline-block;
25431
  margin-right: 1.5rem;
25432
}
25433
 
25434
.btn-outline-github {
25435
  border: 1px solid #181717;
25436
  color: #181717;
25437
}
16848 stevensc 25438
 
16825 efrain 25439
.btn-outline-github:hover {
25440
  background: #181717;
25441
  color: #fff;
25442
}
25443
 
25444
.btn-instagram {
25445
  background: #e4405f;
25446
  color: #fff;
25447
}
16848 stevensc 25448
 
25449
.btn-instagram:hover,
25450
.btn-instagram:focus {
16825 efrain 25451
  background: #d31e40;
25452
  color: #fff;
25453
}
16848 stevensc 25454
 
16825 efrain 25455
.btn-instagram.btn-social-icon-text {
25456
  padding: 0 1.5rem 0 0;
25457
  background: #ea6d84;
25458
}
16848 stevensc 25459
 
16825 efrain 25460
.btn-instagram.btn-social-icon-text i {
25461
  background: #e4405f;
25462
  padding: 0.75rem;
25463
  display: inline-block;
25464
  margin-right: 1.5rem;
25465
}
25466
 
25467
.btn-outline-instagram {
25468
  border: 1px solid #e4405f;
25469
  color: #e4405f;
25470
}
16848 stevensc 25471
 
16825 efrain 25472
.btn-outline-instagram:hover {
25473
  background: #e4405f;
25474
  color: #fff;
25475
}
25476
 
25477
.btn-pinterest {
25478
  background: #bd081c;
25479
  color: #fff;
25480
}
16848 stevensc 25481
 
25482
.btn-pinterest:hover,
25483
.btn-pinterest:focus {
16825 efrain 25484
  background: #8c0615;
25485
  color: #fff;
25486
}
16848 stevensc 25487
 
16825 efrain 25488
.btn-pinterest.btn-social-icon-text {
25489
  padding: 0 1.5rem 0 0;
25490
  background: #ee0a23;
25491
}
16848 stevensc 25492
 
16825 efrain 25493
.btn-pinterest.btn-social-icon-text i {
25494
  background: #bd081c;
25495
  padding: 0.75rem;
25496
  display: inline-block;
25497
  margin-right: 1.5rem;
25498
}
25499
 
25500
.btn-outline-pinterest {
25501
  border: 1px solid #bd081c;
25502
  color: #bd081c;
25503
}
16848 stevensc 25504
 
16825 efrain 25505
.btn-outline-pinterest:hover {
25506
  background: #bd081c;
25507
  color: #fff;
25508
}
25509
 
25510
.btn-flickr {
25511
  background: #0063dc;
25512
  color: #fff;
25513
}
16848 stevensc 25514
 
25515
.btn-flickr:hover,
25516
.btn-flickr:focus {
16825 efrain 25517
  background: #004ca9;
25518
  color: #fff;
25519
}
16848 stevensc 25520
 
16825 efrain 25521
.btn-flickr.btn-social-icon-text {
25522
  padding: 0 1.5rem 0 0;
25523
  background: #107cff;
25524
}
16848 stevensc 25525
 
16825 efrain 25526
.btn-flickr.btn-social-icon-text i {
25527
  background: #0063dc;
25528
  padding: 0.75rem;
25529
  display: inline-block;
25530
  margin-right: 1.5rem;
25531
}
25532
 
25533
.btn-outline-flickr {
25534
  border: 1px solid #0063dc;
25535
  color: #0063dc;
25536
}
16848 stevensc 25537
 
16825 efrain 25538
.btn-outline-flickr:hover {
25539
  background: #0063dc;
25540
  color: #fff;
25541
}
25542
 
25543
.btn-bitbucket {
25544
  background: #0052cc;
25545
  color: #fff;
25546
}
16848 stevensc 25547
 
25548
.btn-bitbucket:hover,
25549
.btn-bitbucket:focus {
16825 efrain 25550
  background: #003e99;
25551
  color: #fff;
25552
}
16848 stevensc 25553
 
16825 efrain 25554
.btn-bitbucket.btn-social-icon-text {
25555
  padding: 0 1.5rem 0 0;
25556
  background: #0067ff;
25557
}
16848 stevensc 25558
 
16825 efrain 25559
.btn-bitbucket.btn-social-icon-text i {
25560
  background: #0052cc;
25561
  padding: 0.75rem;
25562
  display: inline-block;
25563
  margin-right: 1.5rem;
25564
}
25565
 
25566
.btn-outline-bitbucket {
25567
  border: 1px solid #0052cc;
25568
  color: #0052cc;
25569
}
16848 stevensc 25570
 
16825 efrain 25571
.btn-outline-bitbucket:hover {
25572
  background: #0052cc;
25573
  color: #fff;
25574
}
25575
 
25576
.btn-linkedin {
25577
  background: #0077b5;
25578
  color: #fff;
25579
}
16848 stevensc 25580
 
25581
.btn-linkedin:hover,
25582
.btn-linkedin:focus {
16825 efrain 25583
  background: #005582;
25584
  color: #fff;
25585
}
16848 stevensc 25586
 
16825 efrain 25587
.btn-linkedin.btn-social-icon-text {
25588
  padding: 0 1.5rem 0 0;
25589
  background: #0099e8;
25590
}
16848 stevensc 25591
 
16825 efrain 25592
.btn-linkedin.btn-social-icon-text i {
25593
  background: #0077b5;
25594
  padding: 0.75rem;
25595
  display: inline-block;
25596
  margin-right: 1.5rem;
25597
}
25598
 
25599
.btn-outline-linkedin {
25600
  border: 1px solid #0077b5;
25601
  color: #0077b5;
25602
}
16848 stevensc 25603
 
16825 efrain 25604
.btn-outline-linkedin:hover {
25605
  background: #0077b5;
25606
  color: #fff;
25607
}
25608
 
25609
.btn-inverse-primary {
25610
  background-color: rgba(101, 113, 255, 0.2);
25611
  background-image: none;
25612
  border-color: rgba(101, 113, 255, 0);
25613
}
16848 stevensc 25614
 
16825 efrain 25615
.btn-inverse-primary:not(.btn-inverse-light) {
25616
  color: #6571ff;
25617
}
16848 stevensc 25618
 
25619
.btn-inverse-primary:hover,
25620
.btn-inverse-primary.active,
25621
.btn-inverse-primary:active,
25622
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25623
  background-color: rgba(101, 113, 255, 0.3);
25624
  border-color: rgba(101, 113, 255, 0);
25625
}
16848 stevensc 25626
 
25627
.btn-inverse-primary.focus,
25628
.btn-inverse-primary:focus {
16825 efrain 25629
  background-color: rgba(101, 113, 255, 0.3);
25630
  border-color: transparent;
25631
}
16848 stevensc 25632
 
25633
.btn-inverse-primary.disabled,
25634
.btn-inverse-primary:disabled {
16825 efrain 25635
  color: #6571ff;
25636
  background-color: transparent;
25637
}
25638
 
25639
.btn-inverse-secondary {
25640
  background-color: rgba(121, 135, 161, 0.2);
25641
  background-image: none;
25642
  border-color: rgba(121, 135, 161, 0);
25643
}
16848 stevensc 25644
 
16825 efrain 25645
.btn-inverse-secondary:not(.btn-inverse-light) {
25646
  color: #7987a1;
25647
}
16848 stevensc 25648
 
25649
.btn-inverse-secondary:hover,
25650
.btn-inverse-secondary.active,
25651
.btn-inverse-secondary:active,
25652
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25653
  background-color: rgba(121, 135, 161, 0.3);
25654
  border-color: rgba(121, 135, 161, 0);
25655
}
16848 stevensc 25656
 
25657
.btn-inverse-secondary.focus,
25658
.btn-inverse-secondary:focus {
16825 efrain 25659
  background-color: rgba(121, 135, 161, 0.3);
25660
  border-color: transparent;
25661
}
16848 stevensc 25662
 
25663
.btn-inverse-secondary.disabled,
25664
.btn-inverse-secondary:disabled {
16825 efrain 25665
  color: #7987a1;
25666
  background-color: transparent;
25667
}
25668
 
25669
.btn-inverse-success {
25670
  background-color: rgba(5, 163, 74, 0.2);
25671
  background-image: none;
25672
  border-color: rgba(5, 163, 74, 0);
25673
}
16848 stevensc 25674
 
16825 efrain 25675
.btn-inverse-success:not(.btn-inverse-light) {
25676
  color: #05a34a;
25677
}
16848 stevensc 25678
 
25679
.btn-inverse-success:hover,
25680
.btn-inverse-success.active,
25681
.btn-inverse-success:active,
25682
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25683
  background-color: rgba(5, 163, 74, 0.3);
25684
  border-color: rgba(5, 163, 74, 0);
25685
}
16848 stevensc 25686
 
25687
.btn-inverse-success.focus,
25688
.btn-inverse-success:focus {
16825 efrain 25689
  background-color: rgba(5, 163, 74, 0.3);
25690
  border-color: transparent;
25691
}
16848 stevensc 25692
 
25693
.btn-inverse-success.disabled,
25694
.btn-inverse-success:disabled {
16825 efrain 25695
  color: #05a34a;
25696
  background-color: transparent;
25697
}
25698
 
25699
.btn-inverse-info {
25700
  background-color: rgba(102, 209, 209, 0.2);
25701
  background-image: none;
25702
  border-color: rgba(102, 209, 209, 0);
25703
}
16848 stevensc 25704
 
16825 efrain 25705
.btn-inverse-info:not(.btn-inverse-light) {
25706
  color: #66d1d1;
25707
}
16848 stevensc 25708
 
25709
.btn-inverse-info:hover,
25710
.btn-inverse-info.active,
25711
.btn-inverse-info:active,
25712
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25713
  background-color: rgba(102, 209, 209, 0.3);
25714
  border-color: rgba(102, 209, 209, 0);
25715
}
16848 stevensc 25716
 
25717
.btn-inverse-info.focus,
25718
.btn-inverse-info:focus {
16825 efrain 25719
  background-color: rgba(102, 209, 209, 0.3);
25720
  border-color: transparent;
25721
}
16848 stevensc 25722
 
25723
.btn-inverse-info.disabled,
25724
.btn-inverse-info:disabled {
16825 efrain 25725
  color: #66d1d1;
25726
  background-color: transparent;
25727
}
25728
 
25729
.btn-inverse-warning {
25730
  background-color: rgba(251, 188, 6, 0.2);
25731
  background-image: none;
25732
  border-color: rgba(251, 188, 6, 0);
25733
}
16848 stevensc 25734
 
16825 efrain 25735
.btn-inverse-warning:not(.btn-inverse-light) {
25736
  color: #fbbc06;
25737
}
16848 stevensc 25738
 
25739
.btn-inverse-warning:hover,
25740
.btn-inverse-warning.active,
25741
.btn-inverse-warning:active,
25742
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25743
  background-color: rgba(251, 188, 6, 0.3);
25744
  border-color: rgba(251, 188, 6, 0);
25745
}
16848 stevensc 25746
 
25747
.btn-inverse-warning.focus,
25748
.btn-inverse-warning:focus {
16825 efrain 25749
  background-color: rgba(251, 188, 6, 0.3);
25750
  border-color: transparent;
25751
}
16848 stevensc 25752
 
25753
.btn-inverse-warning.disabled,
25754
.btn-inverse-warning:disabled {
16825 efrain 25755
  color: #fbbc06;
25756
  background-color: transparent;
25757
}
25758
 
25759
.btn-inverse-danger {
25760
  background-color: rgba(255, 51, 102, 0.2);
25761
  background-image: none;
25762
  border-color: rgba(255, 51, 102, 0);
25763
}
16848 stevensc 25764
 
16825 efrain 25765
.btn-inverse-danger:not(.btn-inverse-light) {
25766
  color: #ff3366;
25767
}
16848 stevensc 25768
 
25769
.btn-inverse-danger:hover,
25770
.btn-inverse-danger.active,
25771
.btn-inverse-danger:active,
25772
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25773
  background-color: rgba(255, 51, 102, 0.3);
25774
  border-color: rgba(255, 51, 102, 0);
25775
}
16848 stevensc 25776
 
25777
.btn-inverse-danger.focus,
25778
.btn-inverse-danger:focus {
16825 efrain 25779
  background-color: rgba(255, 51, 102, 0.3);
25780
  border-color: transparent;
25781
}
16848 stevensc 25782
 
25783
.btn-inverse-danger.disabled,
25784
.btn-inverse-danger:disabled {
16825 efrain 25785
  color: #ff3366;
25786
  background-color: transparent;
25787
}
25788
 
25789
.btn-inverse-light {
25790
  background-color: rgba(233, 236, 239, 0.2);
25791
  background-image: none;
25792
  border-color: rgba(233, 236, 239, 0);
25793
}
16848 stevensc 25794
 
16825 efrain 25795
.btn-inverse-light:not(.btn-inverse-light) {
25796
  color: #e9ecef;
25797
}
16848 stevensc 25798
 
25799
.btn-inverse-light:hover,
25800
.btn-inverse-light.active,
25801
.btn-inverse-light:active,
25802
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25803
  background-color: rgba(233, 236, 239, 0.3);
25804
  border-color: rgba(233, 236, 239, 0);
25805
}
16848 stevensc 25806
 
25807
.btn-inverse-light.focus,
25808
.btn-inverse-light:focus {
16825 efrain 25809
  background-color: rgba(233, 236, 239, 0.3);
25810
  border-color: transparent;
25811
}
16848 stevensc 25812
 
25813
.btn-inverse-light.disabled,
25814
.btn-inverse-light:disabled {
16825 efrain 25815
  color: #e9ecef;
25816
  background-color: transparent;
25817
}
25818
 
25819
.btn-inverse-dark {
25820
  background-color: rgba(6, 12, 23, 0.2);
25821
  background-image: none;
25822
  border-color: rgba(6, 12, 23, 0);
25823
}
16848 stevensc 25824
 
16825 efrain 25825
.btn-inverse-dark:not(.btn-inverse-light) {
25826
  color: #060c17;
25827
}
16848 stevensc 25828
 
25829
.btn-inverse-dark:hover,
25830
.btn-inverse-dark.active,
25831
.btn-inverse-dark:active,
25832
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25833
  background-color: rgba(6, 12, 23, 0.3);
25834
  border-color: rgba(6, 12, 23, 0);
25835
}
16848 stevensc 25836
 
25837
.btn-inverse-dark.focus,
25838
.btn-inverse-dark:focus {
16825 efrain 25839
  background-color: rgba(6, 12, 23, 0.3);
25840
  border-color: transparent;
25841
}
16848 stevensc 25842
 
25843
.btn-inverse-dark.disabled,
25844
.btn-inverse-dark:disabled {
16825 efrain 25845
  color: #060c17;
25846
  background-color: transparent;
25847
}
25848
 
25849
.card {
25850
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25851
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25852
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25853
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25854
}
16848 stevensc 25855
 
25856
.card .card-body+.card-body {
16825 efrain 25857
  padding-top: 1rem;
25858
}
16848 stevensc 25859
 
16825 efrain 25860
.card .card-title {
25861
  text-transform: uppercase;
25862
  font-size: 0.875rem;
25863
  font-weight: 500;
25864
}
25865
 
25866
.card-group {
25867
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25868
}
16848 stevensc 25869
 
16825 efrain 25870
.card-group .card {
25871
  box-shadow: none;
25872
}
25873
 
25874
.dropdown .dropdown-toggle:after,
25875
.btn-group .dropdown-toggle:after {
25876
  border-top: 0;
25877
  border-right: 0;
25878
  border-left: 0;
25879
  border-bottom: 0;
25880
  font: normal normal normal 24px/1 "feather";
25881
  content: "\e842";
25882
  width: auto;
25883
  height: auto;
25884
  vertical-align: middle;
25885
  line-height: 0.625rem;
25886
  font-size: 0.875rem;
25887
}
16848 stevensc 25888
 
16825 efrain 25889
.dropdown.dropup .dropdown-toggle::after,
25890
.btn-group.dropup .dropdown-toggle::after {
25891
  content: "\e845";
25892
}
16848 stevensc 25893
 
16825 efrain 25894
.dropdown.dropstart .dropdown-toggle::before,
25895
.btn-group.dropstart .dropdown-toggle::before {
25896
  border: 0;
25897
  font: normal normal normal 24px/1 "feather";
25898
  content: "\e843";
25899
  width: auto;
25900
  height: auto;
25901
  vertical-align: middle;
25902
  line-height: 0.625rem;
25903
  font-size: 0.875rem;
25904
}
16848 stevensc 25905
 
16825 efrain 25906
.dropdown.dropend .dropdown-toggle::after,
25907
.btn-group.dropend .dropdown-toggle::after {
25908
  content: "\e844";
25909
}
25910
 
16848 stevensc 25911
.dropdown-menu,
25912
.tt-menu {
16825 efrain 25913
  padding: 0.35rem;
25914
  margin-top: 0;
25915
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25916
}
25917
 
16848 stevensc 25918
.dropdown-item,
25919
.tt-menu .tt-suggestion {
16825 efrain 25920
  font-size: 0.812rem;
25921
  padding: 0.25rem 0.875rem;
25922
  border-radius: 2px;
25923
}
16848 stevensc 25924
 
25925
.dropdown-item i,
25926
.tt-menu .tt-suggestion i,
25927
.dropdown-item svg,
25928
.tt-menu .tt-suggestion svg {
16825 efrain 25929
  color: #7987a1;
25930
}
16848 stevensc 25931
 
25932
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25933
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25934
  background-color: rgba(101, 113, 255, 0.1);
25935
}
16848 stevensc 25936
 
25937
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25938
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25939
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25940
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25941
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25942
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25943
  color: #6571ff;
25944
}
16848 stevensc 25945
 
25946
.dropdown-item:active i,
25947
.tt-menu .tt-suggestion:active i,
25948
.dropdown-item:active svg,
25949
.tt-menu .tt-suggestion:active svg,
25950
.dropdown-item.active i,
25951
.tt-menu .active.tt-suggestion i,
25952
.dropdown-item.active svg,
25953
.tt-menu .active.tt-suggestion svg {
16825 efrain 25954
  color: #fff;
25955
}
25956
 
25957
.form-control-xs,
25958
.form-select-xs {
25959
  padding: 0.313rem 0.8rem;
25960
  font-size: 0.75rem;
25961
}
25962
 
16848 stevensc 25963
.form-control-xs+.input-group-text {
16825 efrain 25964
  padding-top: 0.313rem;
25965
  padding-bottom: 0.313rem;
25966
}
25967
 
25968
.form-check-input {
25969
  margin-top: 0.13em;
25970
}
25971
 
25972
.input-group-text svg {
25973
  width: 18px;
25974
  height: 18px;
25975
}
25976
 
25977
[type=tel],
25978
[type=url],
25979
[type=email],
25980
[type=number] {
25981
  direction: ltr;
25982
}
25983
 
25984
.icons-list {
25985
  border-left: 1px solid #e9ecef;
25986
  border-top: 1px solid #e9ecef;
25987
}
16848 stevensc 25988
 
25989
.icons-list>div {
16825 efrain 25990
  border-bottom: 1px solid #e9ecef;
25991
  border-right: 1px solid #e9ecef;
25992
  background: #f9fafb;
25993
  display: flex;
25994
  align-items: center;
25995
  padding: 15px 20px;
25996
  font-weight: 400;
25997
  transition: all 0.3s ease-in-out;
25998
}
16848 stevensc 25999
 
26000
.icons-list>div i {
16825 efrain 26001
  display: inline-block;
26002
  font-size: 20px;
26003
  text-align: left;
26004
  margin-right: 12px;
26005
  color: #7987a1;
26006
  transition: all 0.3s ease-in-out;
26007
}
16848 stevensc 26008
 
26009
.icons-list>div svg {
16825 efrain 26010
  width: 20px;
26011
  margin-right: 12px;
26012
  color: #7987a1;
26013
  transition: all 0.3s ease-in-out;
26014
}
16848 stevensc 26015
 
26016
.icons-list>div:hover {
16825 efrain 26017
  cursor: text;
26018
}
16848 stevensc 26019
 
26020
.icons-list>div:hover i,
26021
.icons-list>div:hover svg {
16825 efrain 26022
  transform: scale(1.3);
26023
  color: #6571ff;
26024
}
26025
 
26026
.nav.nav-tabs .nav-item .nav-link {
26027
  border-color: #e9ecef #e9ecef #dee2e6;
26028
  color: #000;
26029
  background-color: #f8f9fa;
26030
  cursor: pointer;
26031
}
16848 stevensc 26032
 
16825 efrain 26033
.nav.nav-tabs .nav-item .nav-link.active {
26034
  border-color: #dee2e6 #dee2e6 #fff;
26035
  color: #6571ff;
26036
  background: #fff;
26037
}
16848 stevensc 26038
 
16825 efrain 26039
.nav.nav-tabs .nav-item .nav-link.disabled {
26040
  background-color: transparent;
26041
  color: #7987a1;
26042
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26043
}
16848 stevensc 26044
 
16825 efrain 26045
.nav.nav-tabs.nav-tabs-vertical {
26046
  border-bottom: 0;
26047
}
16848 stevensc 26048
 
16825 efrain 26049
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26050
  width: 100%;
26051
  border: 1px solid transparent;
26052
  border-radius: 0;
26053
  border-color: #e9ecef #e9ecef #dee2e6;
26054
  color: #000;
26055
  background-color: #f8f9fa;
26056
}
16848 stevensc 26057
 
16825 efrain 26058
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26059
  border-radius: 0.25rem 0 0 0;
26060
}
16848 stevensc 26061
 
16825 efrain 26062
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26063
  border-radius: 0 0 0 0.25rem;
26064
}
16848 stevensc 26065
 
16825 efrain 26066
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26067
  background-color: #fff;
26068
  color: #6571ff;
26069
  border-right-color: transparent;
26070
}
16848 stevensc 26071
 
16825 efrain 26072
.nav.nav-tabs.nav-tabs-line .nav-link {
26073
  border: 0;
26074
  background-color: transparent;
26075
}
16848 stevensc 26076
 
16825 efrain 26077
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26078
  border-bottom: 2px solid #6571ff;
26079
}
26080
 
26081
.tab-content.tab-content-vertical {
26082
  height: 100%;
26083
}
26084
 
26085
.pagination .page-item .page-link svg {
26086
  width: 18px;
26087
  height: 18px;
26088
}
16848 stevensc 26089
 
16825 efrain 26090
.pagination.pagination-separated .page-item {
26091
  margin-left: 2px;
26092
  margin-right: 2px;
26093
}
16848 stevensc 26094
 
16825 efrain 26095
.pagination.pagination-separated .page-item:first-child {
26096
  margin-left: 0;
26097
}
16848 stevensc 26098
 
16825 efrain 26099
.pagination.pagination-separated .page-item:last-child {
26100
  margin-right: 0;
26101
}
16848 stevensc 26102
 
16825 efrain 26103
.pagination.pagination-rounded .page-item {
26104
  margin-right: 2px;
26105
  margin-left: 2px;
26106
}
16848 stevensc 26107
 
16825 efrain 26108
.pagination.pagination-rounded .page-item .page-link {
26109
  border-radius: 50px;
26110
}
26111
 
26112
.table {
26113
  margin-bottom: 0;
26114
}
16848 stevensc 26115
 
26116
.table> :not(:last-child)> :last-child>* {
16825 efrain 26117
  border-bottom-color: inherit;
26118
}
16848 stevensc 26119
 
16825 efrain 26120
.table thead th {
26121
  border-top: 0;
26122
  font-weight: 500;
26123
  font-size: 12px;
26124
  text-transform: uppercase;
26125
  color: #7987a1;
26126
}
16848 stevensc 26127
 
16825 efrain 26128
.table thead th i {
26129
  margin-left: 0.325rem;
26130
}
16848 stevensc 26131
 
16825 efrain 26132
.table th,
26133
.table td {
26134
  white-space: nowrap;
26135
}
16848 stevensc 26136
 
16825 efrain 26137
.table td img {
26138
  width: 36px;
26139
  height: 36px;
26140
  border-radius: 100%;
26141
}
26142
 
26143
.timeline {
26144
  border-left: 3px solid #6571ff;
26145
  border-bottom-right-radius: 0.25rem;
26146
  border-top-right-radius: 0.25rem;
26147
  background: rgba(101, 113, 255, 0.2);
26148
  margin: 0 auto;
26149
  position: relative;
26150
  padding: 50px;
26151
  list-style: none;
26152
  max-width: 40%;
26153
}
16848 stevensc 26154
 
16825 efrain 26155
@media (max-width: 767px) {
26156
  .timeline {
26157
    max-width: 98%;
26158
    padding: 25px;
26159
  }
26160
}
16848 stevensc 26161
 
16825 efrain 26162
.timeline .event {
26163
  border-bottom: 1px dashed #e9ecef;
26164
  padding-bottom: 25px;
26165
  margin-bottom: 25px;
26166
  position: relative;
26167
}
16848 stevensc 26168
 
16825 efrain 26169
@media (max-width: 767px) {
26170
  .timeline .event {
26171
    padding-top: 30px;
26172
  }
26173
}
16848 stevensc 26174
 
16825 efrain 26175
.timeline .event .title {
26176
  font-weight: 500;
26177
  font-size: 1rem;
26178
  margin-bottom: 10px;
26179
}
16848 stevensc 26180
 
16825 efrain 26181
.timeline .event:last-of-type {
26182
  padding-bottom: 0;
26183
  margin-bottom: 0;
26184
  border: none;
26185
}
16848 stevensc 26186
 
26187
.timeline .event:before,
26188
.timeline .event:after {
16825 efrain 26189
  position: absolute;
26190
  display: block;
26191
  top: 0;
26192
}
16848 stevensc 26193
 
16825 efrain 26194
.timeline .event:before {
26195
  left: -207px;
26196
  content: attr(data-date);
26197
  text-align: right;
26198
  font-weight: 500;
26199
  font-size: 0.9em;
26200
  min-width: 120px;
26201
}
16848 stevensc 26202
 
16825 efrain 26203
@media (max-width: 767px) {
26204
  .timeline .event:before {
26205
    left: 0px;
26206
    text-align: left;
26207
  }
26208
}
16848 stevensc 26209
 
16825 efrain 26210
.timeline .event:after {
26211
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26212
  box-shadow: 0 0 0 3px #6571ff;
26213
  left: -55.8px;
26214
  background: #fff;
26215
  border-radius: 50%;
26216
  height: 9px;
26217
  width: 9px;
26218
  content: "";
26219
  top: 5px;
26220
}
16848 stevensc 26221
 
16825 efrain 26222
@media (max-width: 767px) {
26223
  .timeline .event:after {
26224
    left: -31.8px;
26225
  }
26226
}
26227
 
26228
.chat-wrapper {
26229
  height: calc(100vh - 60px - 102px);
26230
}
16848 stevensc 26231
 
16825 efrain 26232
@media (max-width: 991px) {
26233
  .chat-wrapper {
26234
    min-height: 100%;
26235
  }
26236
}
16848 stevensc 26237
 
16825 efrain 26238
@media (max-width: 991px) {
26239
  .chat-wrapper {
26240
    height: 100%;
26241
  }
26242
}
16848 stevensc 26243
 
16825 efrain 26244
@media (min-width: 992px) {
26245
  .chat-wrapper .chat-aside {
26246
    padding-right: 23px;
26247
  }
26248
}
16848 stevensc 26249
 
16825 efrain 26250
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26251
  position: relative;
26252
  max-height: calc(100vh - 385px);
26253
}
16848 stevensc 26254
 
26255
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26256
  padding-top: 11px;
26257
  padding-bottom: 11px;
26258
}
16848 stevensc 26259
 
16825 efrain 26260
@media (max-width: 991px) {
26261
  .chat-wrapper .chat-content {
26262
    position: absolute;
26263
    background: #fff;
26264
    left: 0;
26265
    bottom: -1px;
26266
    top: 0;
26267
    right: 0;
26268
    display: none;
26269
  }
16848 stevensc 26270
 
16825 efrain 26271
  .chat-wrapper .chat-content.show {
26272
    display: block;
26273
  }
26274
}
16848 stevensc 26275
 
16825 efrain 26276
.chat-wrapper .chat-content .chat-header {
26277
  padding: 0 10px;
26278
}
16848 stevensc 26279
 
16825 efrain 26280
.chat-wrapper .chat-content .chat-body {
26281
  position: relative;
26282
  max-height: calc(100vh - 340px);
26283
  margin-top: 20px;
26284
  margin-bottom: 20px;
26285
}
16848 stevensc 26286
 
16825 efrain 26287
@media (max-width: 767px) {
26288
  .chat-wrapper .chat-content .chat-body {
26289
    max-height: calc(100vh - 315px);
26290
  }
26291
}
16848 stevensc 26292
 
16825 efrain 26293
@media (max-width: 991px) {
26294
  .chat-wrapper .chat-content .chat-body {
26295
    max-height: calc(100vh - 342px);
26296
  }
26297
}
16848 stevensc 26298
 
16825 efrain 26299
.chat-wrapper .chat-content .chat-body .messages {
26300
  padding: 0 10px;
26301
  list-style-type: none;
26302
}
16848 stevensc 26303
 
16825 efrain 26304
.chat-wrapper .chat-content .chat-body .messages .message-item {
26305
  display: flex;
26306
  max-width: 80%;
26307
  margin-bottom: 20px;
26308
}
16848 stevensc 26309
 
16825 efrain 26310
@media (max-width: 767px) {
26311
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26312
    max-width: 95%;
26313
  }
26314
}
16848 stevensc 26315
 
16825 efrain 26316
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26317
  position: relative;
26318
  padding: 7px 15px;
26319
  margin-bottom: 4px;
26320
  width: -webkit-fit-content;
26321
  width: -moz-fit-content;
26322
  width: fit-content;
26323
}
16848 stevensc 26324
 
16825 efrain 26325
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26326
  font-size: 12px;
26327
  color: #7987a1;
26328
}
16848 stevensc 26329
 
16825 efrain 26330
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26331
  order: 1;
26332
  margin-right: 15px;
26333
}
16848 stevensc 26334
 
16825 efrain 26335
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26336
  order: 2;
26337
}
16848 stevensc 26338
 
16825 efrain 26339
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26340
  background: rgba(101, 113, 255, 0.1);
26341
  border-radius: 0 5px 5px;
26342
}
16848 stevensc 26343
 
16825 efrain 26344
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26345
  content: "";
26346
  width: 0;
26347
  height: 0;
26348
  position: absolute;
26349
  left: -10px;
26350
  top: 0;
26351
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26352
  border-bottom: 5px solid transparent;
26353
  border-left: 5px solid transparent;
26354
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26355
}
16848 stevensc 26356
 
16825 efrain 26357
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26358
  margin-left: auto;
26359
}
16848 stevensc 26360
 
16825 efrain 26361
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26362
  order: 2;
26363
  margin-left: 15px;
26364
}
16848 stevensc 26365
 
16825 efrain 26366
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26367
  order: 1;
26368
  margin-left: auto;
26369
}
16848 stevensc 26370
 
16825 efrain 26371
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26372
  background: rgba(102, 209, 209, 0.1);
26373
  border-radius: 5px 0 5px 5px;
26374
  margin-left: auto;
26375
}
16848 stevensc 26376
 
16825 efrain 26377
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26378
  content: "";
26379
  width: 0;
26380
  height: 0;
26381
  position: absolute;
26382
  right: -10px;
26383
  top: 0;
26384
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26385
  border-bottom: 5px solid transparent;
26386
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26387
  border-right: 5px solid transparent;
26388
}
16848 stevensc 26389
 
16825 efrain 26390
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26391
  text-align: right;
26392
  display: block;
26393
}
16848 stevensc 26394
 
16825 efrain 26395
.chat-wrapper figure {
26396
  position: relative;
26397
}
16848 stevensc 26398
 
16825 efrain 26399
.chat-wrapper figure .status {
26400
  width: 11px;
26401
  height: 11px;
26402
  background: #7987a1;
26403
  position: absolute;
26404
  bottom: 0px;
26405
  right: -2px;
26406
  border-radius: 50%;
26407
  border: 2px solid #fff;
26408
}
16848 stevensc 26409
 
16825 efrain 26410
.chat-wrapper figure .status.online {
26411
  background: #05a34a;
26412
}
16848 stevensc 26413
 
16825 efrain 26414
.chat-wrapper figure .status.offline {
26415
  background: #7987a1;
26416
}
26417
 
26418
.auth-page .auth-side-wrapper {
26419
  width: 100%;
26420
  height: 100%;
26421
  background-image: url(https://via.placeholder.com/219x452);
26422
  background-size: cover;
26423
}
26424
 
26425
.email-aside-nav.collapse {
26426
  display: block;
26427
}
16848 stevensc 26428
 
16825 efrain 26429
@media (max-width: 991px) {
26430
  .email-aside-nav.collapse {
26431
    display: none;
26432
  }
26433
}
16848 stevensc 26434
 
16825 efrain 26435
@media (max-width: 991px) {
26436
  .email-aside-nav.collapse.show {
26437
    display: block;
26438
  }
26439
}
16848 stevensc 26440
 
16825 efrain 26441
.email-aside-nav .nav-item {
26442
  border-radius: 0.2rem;
26443
}
16848 stevensc 26444
 
16825 efrain 26445
.email-aside-nav .nav-item .nav-link {
26446
  color: #000;
26447
}
16848 stevensc 26448
 
16825 efrain 26449
.email-aside-nav .nav-item .nav-link svg {
26450
  color: #7987a1;
26451
}
16848 stevensc 26452
 
26453
.email-aside-nav .nav-item.active,
26454
.email-aside-nav .nav-item:hover {
16825 efrain 26455
  background: rgba(101, 113, 255, 0.1);
26456
}
16848 stevensc 26457
 
26458
.email-aside-nav .nav-item.active .nav-link,
26459
.email-aside-nav .nav-item.active .nav-link svg,
26460
.email-aside-nav .nav-item:hover .nav-link,
26461
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26462
  color: #6571ff;
26463
}
26464
 
26465
.email-list-item {
26466
  display: flex;
26467
  align-items: center;
26468
  border-bottom: 1px solid #e9ecef;
26469
  padding: 10px 20px;
26470
  cursor: pointer;
26471
}
16848 stevensc 26472
 
16825 efrain 26473
.email-list-item:hover {
26474
  background: rgba(101, 113, 255, 0.08);
26475
}
16848 stevensc 26476
 
16825 efrain 26477
.email-list-item:last-child {
26478
  margin-bottom: 5px;
26479
}
16848 stevensc 26480
 
16825 efrain 26481
.email-list-item .email-list-actions {
26482
  width: 40px;
26483
  vertical-align: top;
26484
  display: table-cell;
26485
}
16848 stevensc 26486
 
16825 efrain 26487
.email-list-item .email-list-actions .form-check {
26488
  margin-bottom: 0;
26489
}
16848 stevensc 26490
 
16825 efrain 26491
.email-list-item .email-list-actions .favorite {
26492
  display: block;
26493
  padding-left: 1px;
26494
  line-height: 15px;
26495
}
16848 stevensc 26496
 
16825 efrain 26497
.email-list-item .email-list-actions .favorite span svg {
26498
  width: 14px;
26499
  color: #7987a1;
26500
}
16848 stevensc 26501
 
16825 efrain 26502
.email-list-item .email-list-actions .favorite:hover span {
26503
  color: #8d8d8d;
26504
}
16848 stevensc 26505
 
16825 efrain 26506
.email-list-item .email-list-actions .favorite.active span svg {
26507
  color: #fbbc06;
26508
}
16848 stevensc 26509
 
16825 efrain 26510
.email-list-item .email-list-detail {
26511
  width: calc(100% - 40px);
26512
  display: flex;
26513
  justify-content: space-between;
26514
  align-items: center;
26515
  flex-grow: 1;
26516
}
16848 stevensc 26517
 
16825 efrain 26518
.email-list-item .email-list-detail .content {
26519
  overflow: hidden;
26520
}
16848 stevensc 26521
 
16825 efrain 26522
.email-list-item .email-list-detail .content .from {
26523
  display: block;
26524
  margin: 0 0 1px 0;
26525
  color: #000;
26526
}
16848 stevensc 26527
 
16825 efrain 26528
.email-list-item .email-list-detail .content .msg {
26529
  width: 97%;
26530
  color: #7987a1;
26531
  font-size: 0.8rem;
26532
  overflow: hidden;
26533
  text-overflow: ellipsis;
26534
  white-space: nowrap;
26535
}
16848 stevensc 26536
 
16825 efrain 26537
.email-list-item .email-list-detail .date {
26538
  color: #000;
26539
  white-space: nowrap;
26540
}
16848 stevensc 26541
 
16825 efrain 26542
.email-list-item .email-list-detail .date .icon svg {
26543
  width: 14px;
26544
  margin-right: 7px;
26545
  color: #3d405c;
26546
}
16848 stevensc 26547
 
16825 efrain 26548
.email-list-item.email-list-item--unread {
26549
  background-color: rgba(101, 113, 255, 0.09);
26550
}
16848 stevensc 26551
 
16825 efrain 26552
.email-list-item.email-list-item--unread .content .from {
26553
  font-weight: 500;
26554
}
16848 stevensc 26555
 
16825 efrain 26556
.email-list-item.email-list-item--unread .content .msg {
26557
  font-weight: 700;
26558
}
26559
 
26560
.ace_editor {
26561
  border-radius: 0.25rem;
26562
  margin: auto;
26563
  height: 300px;
26564
  width: 100%;
26565
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26566
}
16848 stevensc 26567
 
16825 efrain 26568
.ace_editor .ace_content {
26569
  font-size: 0.875rem;
26570
}
26571
 
26572
div.apexcharts-canvas .apexcharts-menu {
26573
  background: #fff !important;
26574
  color: #000;
26575
  border-color: #e9ecef;
26576
}
16848 stevensc 26577
 
16825 efrain 26578
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26579
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26580
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26581
div.apexcharts-canvas .apexcharts-reset-icon svg,
26582
div.apexcharts-canvas .apexcharts-pan-icon svg,
26583
div.apexcharts-canvas .apexcharts-selection-icon svg,
26584
div.apexcharts-canvas .apexcharts-menu-icon svg,
26585
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26586
  fill: #7987a1;
26587
}
16848 stevensc 26588
 
16825 efrain 26589
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26590
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26591
  display: flex;
26592
  align-items: center;
26593
}
16848 stevensc 26594
 
16825 efrain 26595
div.apexcharts-canvas .apexcharts-legend-marker {
26596
  margin-right: 3px;
26597
}
16848 stevensc 26598
 
16825 efrain 26599
div.apexcharts-canvas .apexcharts-tooltip {
26600
  background: rgba(255, 255, 255, 0.8);
26601
  color: #000;
26602
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26603
  border-radius: 0.25rem;
26604
  border: 1px solid #f2f4f9;
26605
}
16848 stevensc 26606
 
16825 efrain 26607
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26608
  border-color: #e9ecef;
26609
  background-color: #fff;
26610
}
16848 stevensc 26611
 
16825 efrain 26612
div.apexcharts-canvas .apexcharts-tooltip * {
26613
  font-family: "Roboto", Helvetica, sans-serif !important;
26614
}
16848 stevensc 26615
 
16825 efrain 26616
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26617
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26618
  padding: 0 10px;
26619
}
16848 stevensc 26620
 
16825 efrain 26621
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26622
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26623
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26624
  margin-left: 0;
26625
}
16848 stevensc 26626
 
16825 efrain 26627
div.apexcharts-canvas .apexcharts-tooltip-title {
26628
  margin-bottom: 0;
26629
}
16848 stevensc 26630
 
16825 efrain 26631
div.apexcharts-canvas .apexcharts-xaxistooltip,
26632
div.apexcharts-canvas .apexcharts-yaxistooltip {
26633
  background: #fff;
26634
  color: #000;
26635
  border-color: #f2f4f9;
26636
}
16848 stevensc 26637
 
16825 efrain 26638
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26639
  border-bottom-color: #f2f4f9;
26640
}
16848 stevensc 26641
 
16825 efrain 26642
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26643
  border-bottom-color: rgba(255, 255, 255, 0.8);
26644
}
16848 stevensc 26645
 
16825 efrain 26646
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26647
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26648
  border-left-color: #f2f4f9;
26649
}
16848 stevensc 26650
 
16825 efrain 26651
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26652
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26653
  border-left-color: rgba(255, 255, 255, 0.8);
26654
}
26655
 
26656
@media (max-width: 767px) {
26657
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26658
    text-align: left;
26659
  }
26660
}
16848 stevensc 26661
 
16825 efrain 26662
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26663
  margin-left: 10px;
26664
  margin-right: 10px;
26665
}
16848 stevensc 26666
 
16825 efrain 26667
@media (max-width: 767px) {
26668
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26669
    text-align: left;
26670
    margin-left: -19px;
26671
  }
26672
}
26673
 
26674
.dropify-wrapper {
26675
  border: 1px solid #e9ecef;
26676
  border-radius: 0.25rem;
26677
}
16848 stevensc 26678
 
16825 efrain 26679
.dropify-wrapper .dropify-message span.file-icon {
26680
  font-size: 0.875rem;
26681
  color: #7987a1;
26682
}
16848 stevensc 26683
 
16825 efrain 26684
.dropify-wrapper .dropify-message span.file-icon::before {
26685
  font-family: feather;
26686
  content: "\e8e3";
26687
  font-size: 24px;
26688
}
26689
 
26690
.dropzone {
26691
  overflow: auto;
26692
  border: 1px solid #e9ecef;
26693
  border-radius: 0.25rem;
26694
  max-height: 200px;
26695
  padding: 0;
26696
}
16848 stevensc 26697
 
16825 efrain 26698
@media (min-width: 1400px) {
26699
  .dropzone {
26700
    min-height: 200px;
26701
  }
26702
}
16848 stevensc 26703
 
16825 efrain 26704
.dropzone.dz-clickable .dz-message {
26705
  margin-top: 65px;
26706
}
16848 stevensc 26707
 
26708
.dropzone .dz-preview.dz-image-preview .dz-image,
26709
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26710
  border-radius: 0.25rem;
26711
}
26712
 
16848 stevensc 26713
.form-control.flatpickr-input,
26714
.flatpickr-input.typeahead.tt-input,
26715
.flatpickr-input.typeahead.tt-hint,
26716
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26717
  background-color: #fff;
26718
}
26719
 
26720
.flatpickr-day.selected,
26721
.flatpickr-day.startRange,
26722
.flatpickr-day.endRange,
26723
.flatpickr-day.selected.inRange,
26724
.flatpickr-day.startRange.inRange,
26725
.flatpickr-day.endRange.inRange,
26726
.flatpickr-day.selected:focus,
26727
.flatpickr-day.startRange:focus,
26728
.flatpickr-day.endRange:focus,
26729
.flatpickr-day.selected:hover,
26730
.flatpickr-day.startRange:hover,
26731
.flatpickr-day.endRange:hover,
26732
.flatpickr-day.selected.prevMonthDay,
26733
.flatpickr-day.startRange.prevMonthDay,
26734
.flatpickr-day.endRange.prevMonthDay,
26735
.flatpickr-day.selected.nextMonthDay,
26736
.flatpickr-day.startRange.nextMonthDay,
26737
.flatpickr-day.endRange.nextMonthDay {
26738
  background: #6571ff;
26739
  border-color: #6571ff;
26740
}
26741
 
26742
.flatpickr-months {
26743
  padding: 0 1rem;
26744
  padding-top: 0.5rem;
26745
}
26746
 
26747
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26748
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26749
  left: 11px;
26750
  right: auto !important;
26751
  top: 8px;
26752
}
26753
 
26754
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26755
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26756
  right: 11px;
26757
  left: auto !important;
26758
  top: 8px;
26759
}
26760
 
26761
.flatpickr-months .flatpickr-prev-month:hover svg,
26762
.flatpickr-months .flatpickr-next-month:hover svg {
26763
  fill: #6571ff;
26764
}
26765
 
26766
.flatpickr-months .flatpickr-month {
26767
  height: 42px;
26768
}
26769
 
26770
.flatpickr-current-month .flatpickr-monthDropdown-months {
26771
  font-size: 1rem;
26772
  border-radius: 0.25rem;
26773
  padding: 0.3rem 0.5rem;
26774
}
26775
 
26776
.flatpickr-weekdays {
26777
  padding: 0 10px;
26778
}
26779
 
26780
.dayContainer {
26781
  padding: 0 10px 10px;
26782
}
26783
 
26784
.fc {
26785
  --fc-button-active-bg-color: #6571ff;
26786
  --fc-button-active-border-color: #6571ff;
26787
}
16848 stevensc 26788
 
16825 efrain 26789
.fc .fc-button .fc-icon {
26790
  font-size: 1.2 em;
26791
}
16848 stevensc 26792
 
16825 efrain 26793
.fc .fc-button-primary:focus,
26794
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26795
.fc .fc-button-primary:not(:disabled):active:focus {
26796
  box-shadow: none;
26797
}
16848 stevensc 26798
 
16825 efrain 26799
.fc .fc-button-primary:disabled {
26800
  border-color: #6571ff;
26801
}
16848 stevensc 26802
 
16825 efrain 26803
@media (max-width: 767px) {
26804
  .fc .fc-toolbar {
26805
    flex-direction: column;
26806
  }
16848 stevensc 26807
 
16825 efrain 26808
  .fc .fc-toolbar .fc-toolbar-chunk {
26809
    margin-bottom: 12px;
26810
  }
26811
}
16848 stevensc 26812
 
16825 efrain 26813
.fc .fc-daygrid-day-number,
26814
.fc .fc-col-header-cell-cushion {
26815
  color: #000;
26816
}
16848 stevensc 26817
 
16825 efrain 26818
.fc .fc-daygrid-event {
26819
  padding: 4px;
26820
}
16848 stevensc 26821
 
16825 efrain 26822
.fc .fc-daygrid-day.fc-day-today {
26823
  background-color: rgba(101, 113, 255, 0.2);
26824
}
16848 stevensc 26825
 
16825 efrain 26826
.fc .fc-list-event:hover td {
26827
  background-color: rgba(101, 113, 255, 0.2);
26828
}
16848 stevensc 26829
 
16825 efrain 26830
.fc .fc-list-day-text,
26831
.fc .fc-list-day-side-text {
26832
  color: #000;
26833
}
26834
 
26835
.fc-theme-standard td,
26836
.fc-theme-standard th,
26837
.fc-theme-standard .fc-scrollgrid {
26838
  border-color: #e9ecef;
26839
}
26840
 
26841
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26842
.fc-timegrid-event.fc-event-mirror,
26843
.fc-timegrid-more-link {
26844
  box-shadow: none;
26845
}
26846
 
26847
.fc-theme-standard .fc-popover {
26848
  background-color: #fff;
26849
  border-color: #f2f4f9;
26850
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26851
}
16848 stevensc 26852
 
16825 efrain 26853
.fc-theme-standard .fc-popover .fc-popover-header {
26854
  background-color: #7987a1;
26855
}
26856
 
26857
.fc-theme-standard .fc-list-day-cushion {
26858
  background-color: #fff;
26859
}
26860
 
26861
.fc-theme-standard .fc-list {
26862
  border-color: #e9ecef;
26863
}
26864
 
26865
.fc-event {
26866
  margin-bottom: 10px;
26867
  padding: 8px;
26868
  border-radius: 2px;
26869
  background: rgba(101, 113, 255, 0.2);
26870
  border: 0;
26871
  border-left: 3px solid #6571ff;
26872
  color: #000;
26873
  font-weight: 500;
26874
}
26875
 
26876
.fc-h-event .fc-event-main {
26877
  color: #000;
26878
}
26879
 
26880
.flot-chart-wrapper .flot-chart {
26881
  width: 100%;
26882
  position: relative;
26883
  max-width: none;
26884
  height: 400px;
26885
}
16848 stevensc 26886
 
16825 efrain 26887
@media (max-width: 767px) {
26888
  .flot-chart-wrapper {
26889
    height: 200px;
26890
    min-height: 200px;
26891
  }
16848 stevensc 26892
 
16825 efrain 26893
  .flot-chart-wrapper .flot-chart {
26894
    height: 100%;
26895
  }
26896
}
26897
 
16848 stevensc 26898
.flot-text .flot-x-axis>div,
16825 efrain 26899
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26900
.flot-text .flot-y-axis>div,
16825 efrain 26901
.flot-text .flot-y-axis .flot-tick-label {
26902
  color: #000;
26903
}
26904
 
26905
.peity-custom svg {
26906
  margin-right: 10px;
26907
}
26908
 
26909
.ps__thumb-x {
26910
  background-color: #d9d9d9;
26911
  height: 4px;
26912
}
26913
 
26914
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26915
.ps__rail-x:focus>.ps__thumb-x,
26916
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26917
  background-color: #b3b3b3;
26918
  height: 6px;
26919
}
26920
 
26921
.ps__rail-x {
26922
  height: 10px;
26923
}
26924
 
26925
.ps__thumb-y {
26926
  background-color: #d9d9d9;
26927
  width: 4px;
26928
  /*rtl:raw:
26929
   left: 2px !important;
26930
  right: auto !important;
26931
   */
26932
}
26933
 
26934
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26935
.ps__rail-y:focus>.ps__thumb-y,
26936
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26937
  background-color: #b3b3b3;
26938
  width: 6px;
26939
}
26940
 
26941
.ps__rail-y {
26942
  width: 10px;
26943
  /*rtl:raw:
26944
   left: 0 !important;
26945
  right: auto !important;
26946
   */
26947
}
26948
 
26949
.ps .ps__rail-x.ps--clicking,
26950
.ps .ps__rail-x:focus,
26951
.ps .ps__rail-x:hover,
26952
.ps .ps__rail-y.ps--clicking,
26953
.ps .ps__rail-y:focus,
26954
.ps .ps__rail-y:hover {
26955
  background-color: #e9ecef;
26956
}
26957
 
26958
.swal2-popup {
26959
  font-size: 0.875rem;
26960
}
16848 stevensc 26961
 
16825 efrain 26962
.swal2-popup .swal2-title {
26963
  font-size: 25px;
26964
  line-height: 1;
26965
  font-weight: 500;
26966
  color: #000;
26967
  margin-bottom: 0;
26968
}
16848 stevensc 26969
 
16825 efrain 26970
.swal2-popup .swal2-html-container {
26971
  font-size: 0.875rem;
26972
  color: #7987a1;
26973
  font-weight: initial;
26974
  margin-top: 11px;
26975
  text-decoration: none;
26976
}
16848 stevensc 26977
 
16825 efrain 26978
.swal2-popup .swal2-actions button svg {
26979
  width: 16px;
26980
  height: 16px;
26981
}
16848 stevensc 26982
 
16825 efrain 26983
.swal2-popup .swal2-close {
26984
  font-size: 22px;
26985
}
16848 stevensc 26986
 
16825 efrain 26987
.swal2-popup .swal2-close:focus {
26988
  box-shadow: none;
26989
}
16848 stevensc 26990
 
16825 efrain 26991
.swal2-popup .swal2-timer-progress-bar {
26992
  background: #7987a1;
26993
}
26994
 
26995
.select2-container--default .select2-selection--single,
26996
.select2-container--default .select2-selection--multiple {
26997
  border: 1px solid #e9ecef;
26998
  border-radius: 0.25rem;
26999
}
16848 stevensc 27000
 
27001
.select2-container--focus.select2-container--default .select2-selection--single,
27002
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27003
  border: 1px solid #cbd1db;
27004
}
27005
 
27006
.select2-dropdown {
27007
  border: 1px solid #cbd1db;
27008
  border-radius: 0.25rem;
27009
}
27010
 
27011
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27012
  background-color: #6571ff;
27013
}
27014
 
27015
.select2-container .select2-selection--single,
27016
.select2-container .select2-selection--multiple {
27017
  height: auto;
27018
}
27019
 
27020
.select2-container--default .select2-selection--single .select2-selection__rendered {
27021
  line-height: 1.5;
27022
  padding: 0.469rem 0.8rem;
27023
}
16848 stevensc 27024
 
16825 efrain 27025
.select2-container--default .select2-selection--single .select2-selection__arrow {
27026
  height: 100%;
27027
}
16848 stevensc 27028
 
16825 efrain 27029
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27030
  left: 0;
27031
}
27032
 
27033
.select2-container--default .select2-selection--multiple {
27034
  min-height: 38px;
27035
}
16848 stevensc 27036
 
16825 efrain 27037
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27038
  padding: 0 6px;
27039
}
16848 stevensc 27040
 
16825 efrain 27041
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27042
  background-color: #6571ff;
27043
  color: #fff;
27044
  border-color: #6571ff;
27045
  padding: 1px 8px;
27046
  border-radius: 0.15rem;
27047
  margin-top: 5px;
27048
}
16848 stevensc 27049
 
16825 efrain 27050
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27051
  color: #fff;
27052
  opacity: 0.5;
27053
}
27054
 
27055
.select2-container .select2-search--inline {
27056
  margin-top: 3px;
27057
}
27058
 
27059
.EasyMDEContainer .CodeMirror {
27060
  background: #fff;
27061
  border: 1px solid #e9ecef;
27062
  color: #000;
27063
  border-bottom-left-radius: 0;
27064
  border-bottom-right-radius: 0;
27065
}
27066
 
27067
.editor-toolbar {
27068
  border: 1px solid #e9ecef;
27069
  border-bottom: 0;
27070
  border-radius: 0.25rem 0.25rem 0 0;
27071
}
16848 stevensc 27072
 
27073
.editor-toolbar,
27074
.editor-toolbar:hover {
16825 efrain 27075
  opacity: 1;
27076
}
16848 stevensc 27077
 
16825 efrain 27078
.editor-toolbar button {
27079
  color: rgba(0, 0, 0, 0.7) !important;
27080
}
16848 stevensc 27081
 
16825 efrain 27082
.editor-toolbar button:hover {
27083
  background: #e9ecef;
27084
  border: none;
27085
}
16848 stevensc 27086
 
16825 efrain 27087
.editor-toolbar i.separator {
27088
  border-left: 1px solid #e9ecef;
27089
  border-right: 1px solid #e9ecef;
27090
}
27091
 
27092
.CodeMirror-fullscreen,
27093
.editor-toolbar.fullscreen,
27094
.editor-preview-side {
27095
  z-index: 999;
27096
}
27097
 
27098
.editor-preview-side {
27099
  border-color: #e9ecef;
27100
}
27101
 
16848 stevensc 27102
.editor-toolbar button.active,
27103
.editor-toolbar button:hover {
16825 efrain 27104
  background: #e9ecef;
27105
  border-color: transparent;
27106
}
27107
 
27108
.editor-statusbar {
27109
  padding: 0 10px;
27110
  border: 1px solid #e9ecef;
27111
  border-top-color: transparent;
27112
  border-bottom-left-radius: 0.25rem;
27113
  border-bottom-right-radius: 0.25rem;
27114
}
27115
 
27116
div.tagsinput {
27117
  padding: 6px 6px 1px;
27118
  border-color: #e9ecef;
27119
  border-radius: 0.25rem;
27120
}
16848 stevensc 27121
 
16825 efrain 27122
div.tagsinput span.tag {
27123
  background: #6571ff;
27124
  color: #fff;
27125
  border: 0;
27126
  padding: 3px 7px;
27127
  font-family: inherit;
27128
  border-radius: 0.15rem;
27129
  margin-bottom: 4px;
27130
  float: left;
27131
  /*rtl:raw:
27132
  margin-left: 0;
27133
  margin-right: 5px;
27134
  */
27135
}
16848 stevensc 27136
 
16825 efrain 27137
div.tagsinput span.tag a {
27138
  font-size: 13px;
27139
  font-weight: 500;
27140
  color: #fff;
27141
  opacity: 0.5;
27142
}
16848 stevensc 27143
 
16825 efrain 27144
div.tagsinput #tags_addTag {
27145
  float: left;
27146
  /*rtl:raw:
27147
  margin-right: 5px;
27148
  */
27149
}
16848 stevensc 27150
 
16825 efrain 27151
div.tagsinput input {
27152
  margin: 0;
27153
  padding: 1px;
27154
  border-radius: 0.25rem;
27155
}
27156
 
27157
.tox.tox-tinymce {
27158
  border: 1px solid #e9ecef;
27159
  border-radius: 0.25rem;
27160
}
16848 stevensc 27161
 
16825 efrain 27162
.tox.tox-tinymce .tox-menubar,
27163
.tox.tox-tinymce .tox-toolbar-overlord,
27164
.tox.tox-tinymce .tox-toolbar,
27165
.tox.tox-tinymce .tox-toolbar__overflow,
27166
.tox.tox-tinymce .tox-toolbar__primary {
27167
  background-color: #fff;
27168
  background-image: none;
27169
  border-bottom: 1px solid #e9ecef;
27170
}
16848 stevensc 27171
 
16825 efrain 27172
.tox.tox-tinymce .tox-toolbar-overlord {
27173
  border-bottom: none;
27174
}
16848 stevensc 27175
 
16825 efrain 27176
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27177
  padding: 0;
27178
  box-shadow: none;
27179
}
16848 stevensc 27180
 
16825 efrain 27181
.tox.tox-tinymce .tox-edit-area__iframe {
27182
  background-color: #fff;
27183
}
16848 stevensc 27184
 
16825 efrain 27185
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27186
  border-right-color: #e9ecef;
27187
  border-left-color: #e9ecef;
27188
}
16848 stevensc 27189
 
16825 efrain 27190
.tox.tox-tinymce .tox-statusbar {
27191
  background-color: #fff;
27192
  border-color: #e9ecef;
27193
  color: #7987a1;
27194
}
16848 stevensc 27195
 
16825 efrain 27196
.tox.tox-tinymce .tox-statusbar a,
27197
.tox.tox-tinymce .tox-statusbar__path-item,
27198
.tox.tox-tinymce .tox-statusbar__wordcount {
27199
  color: #7987a1;
27200
}
16848 stevensc 27201
 
16825 efrain 27202
.tox.tox-tinymce .tox-mbtn {
27203
  color: #000;
27204
}
16848 stevensc 27205
 
16825 efrain 27206
.tox.tox-tinymce .tox-tbtn {
27207
  color: rgba(0, 0, 0, 0.7);
27208
}
16848 stevensc 27209
 
16825 efrain 27210
.tox.tox-tinymce .tox-tbtn:hover {
27211
  background: #e9ecef;
27212
  color: #000;
27213
}
16848 stevensc 27214
 
16825 efrain 27215
.tox.tox-tinymce .tox-tbtn:hover svg {
27216
  fill: #000;
27217
}
16848 stevensc 27218
 
16825 efrain 27219
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27220
  color: #000;
27221
}
16848 stevensc 27222
 
16825 efrain 27223
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27224
  background: #e9ecef;
27225
  color: #000;
27226
}
16848 stevensc 27227
 
16825 efrain 27228
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27229
.tox.tox-tinymce .tox-mbtn--active {
27230
  background: #e9ecef;
27231
  color: #000;
27232
}
16848 stevensc 27233
 
16825 efrain 27234
.tox.tox-tinymce .tox-tbtn svg {
27235
  fill: rgba(0, 0, 0, 0.7);
27236
}
16848 stevensc 27237
 
16825 efrain 27238
.tox.tox-tinymce .tox-tbtn--disabled svg,
27239
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27240
.tox.tox-tinymce .tox-tbtn:disabled svg,
27241
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27242
  fill: #e9ecef;
27243
}
16848 stevensc 27244
 
16825 efrain 27245
.tox.tox-tinymce .tox-split-button:hover {
27246
  box-shadow: 0 0 0 1px #e9ecef inset;
27247
}
16848 stevensc 27248
 
16825 efrain 27249
.tox.tox-tinymce .tox-split-button:focus {
27250
  background: #e9ecef;
27251
}
16848 stevensc 27252
 
16825 efrain 27253
.tox.tox-tinymce .tox-tbtn--enabled,
27254
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27255
.tox.tox-tinymce .tox-tbtn:focus {
27256
  background: #e9ecef;
27257
}
27258
 
27259
div.tox .tox-menu {
27260
  background-color: #fff;
27261
  border-color: #f2f4f9;
27262
}
16848 stevensc 27263
 
16825 efrain 27264
div.tox .tox-collection__item {
27265
  color: #000;
27266
}
16848 stevensc 27267
 
16825 efrain 27268
div.tox .tox-collection--list .tox-collection__item--enabled {
27269
  background-color: #6571ff;
27270
  color: #fff;
27271
}
16848 stevensc 27272
 
16825 efrain 27273
div.tox .tox-collection--list .tox-collection__group {
27274
  border-color: #e9ecef;
27275
}
16848 stevensc 27276
 
16825 efrain 27277
div.tox .tox-collection--toolbar .tox-collection__item--active {
27278
  background-color: #e9ecef;
27279
}
16848 stevensc 27280
 
16825 efrain 27281
div.tox .tox-collection--list .tox-collection__item--active {
27282
  background-color: #e9ecef;
27283
}
16848 stevensc 27284
 
16825 efrain 27285
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27286
  color: #000;
27287
}
16848 stevensc 27288
 
16825 efrain 27289
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27290
  color: #000;
27291
}
16848 stevensc 27292
 
16825 efrain 27293
div.tox .tox-dialog-wrap__backdrop {
27294
  background-color: rgba(0, 0, 0, 0.75);
27295
}
16848 stevensc 27296
 
16825 efrain 27297
div.tox .tox-dialog,
27298
div.tox .tox-dialog__header,
27299
div.tox .tox-dialog__footer {
27300
  background-color: #fff;
27301
  border-color: #e9ecef;
27302
  color: #000;
27303
}
16848 stevensc 27304
 
16825 efrain 27305
div.tox .tox-button--secondary:hover:not(:disabled) {
27306
  background-color: #7987a1;
27307
  border-color: #7987a1;
27308
  color: #fff;
27309
}
16848 stevensc 27310
 
16825 efrain 27311
div.tox .tox-button--naked:hover:not(:disabled) {
27312
  background-color: transparent;
27313
  border-color: transparent;
27314
}
16848 stevensc 27315
 
16825 efrain 27316
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27317
  color: #333333;
27318
}
16848 stevensc 27319
 
16825 efrain 27320
div.tox .tox-listboxfield .tox-listbox--select,
27321
div.tox .tox-textarea,
27322
div.tox .tox-textfield,
27323
div.tox .tox-toolbar-textfield {
27324
  background-color: #fff;
27325
  border-color: #e9ecef;
27326
  color: #000;
27327
}
16848 stevensc 27328
 
16825 efrain 27329
div.tox .tox-listboxfield .tox-listbox--select:focus,
27330
div.tox .tox-textarea:focus,
27331
div.tox .tox-textfield:focus {
27332
  background-color: #fff;
27333
  border-color: #cbd1db;
27334
}
16848 stevensc 27335
 
16825 efrain 27336
div.tox .tox-dialog__table tbody tr {
27337
  border-color: #e9ecef;
27338
}
16848 stevensc 27339
 
16825 efrain 27340
div.tox .tox-dialog__body {
27341
  color: #000;
27342
}
27343
 
27344
.typeahead.tt-input,
27345
.typeahead.tt-hint {
27346
  background-color: #fff !important;
27347
  /*rtl:raw:
27348
  direction: rtl;
27349
  */
27350
}
27351
 
27352
.tt-menu .tt-suggestion {
27353
  cursor: pointer;
27354
}
27355
 
16848 stevensc 27356
.tabcontrol ul,
27357
.wizard ul {
16825 efrain 27358
  display: flex;
27359
}
16848 stevensc 27360
 
16825 efrain 27361
@media (max-width: 676px) {
16848 stevensc 27362
 
27363
  .tabcontrol ul,
27364
  .wizard ul {
16825 efrain 27365
    flex-wrap: wrap;
27366
  }
27367
}
27368
 
16848 stevensc 27369
.wizard>.steps>ul>li {
16825 efrain 27370
  width: auto;
27371
  display: flex;
27372
  flex-grow: 1;
27373
}
27374
 
16848 stevensc 27375
.wizard>.steps .disabled a,
27376
.wizard>.steps .disabled a:active,
27377
.wizard>.steps .disabled a:hover {
16825 efrain 27378
  background-color: #e9ecef;
27379
  color: #000;
27380
  border: 1px solid transparent;
27381
}
27382
 
16848 stevensc 27383
.wizard>.steps .current a,
27384
.wizard>.steps .current a:active,
27385
.wizard>.steps .current a:hover {
16825 efrain 27386
  background-color: #6571ff;
27387
  border: 1px solid transparent;
27388
}
27389
 
16848 stevensc 27390
.wizard>.steps a,
27391
.wizard>.steps a:active,
27392
.wizard>.steps a:hover {
16825 efrain 27393
  padding: 0.469rem 0.8rem;
27394
  border-radius: 0.25rem;
27395
  width: 100%;
27396
}
27397
 
16848 stevensc 27398
.wizard>.steps .done a,
27399
.wizard>.steps .done a:active,
27400
.wizard>.steps .done a:hover {
16825 efrain 27401
  background-color: rgba(101, 113, 255, 0.2);
27402
  color: #6571ff;
27403
  border: 1px solid #6571ff;
27404
}
27405
 
16848 stevensc 27406
.wizard>.steps ul li a,
27407
.wizard>.steps ul li a:active,
27408
.wizard>.steps ul li a:hover {
16825 efrain 27409
  margin: 0 0.5em 0.5em 0;
27410
}
16848 stevensc 27411
 
27412
.wizard>.steps ul li:last-child a,
27413
.wizard>.steps ul li:last-child a:active,
27414
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27415
  margin: 0 0 0.5em 0;
27416
}
27417
 
16848 stevensc 27418
.wizard>.steps .number {
16825 efrain 27419
  font-size: inherit;
27420
}
27421
 
16848 stevensc 27422
.wizard>.content {
16825 efrain 27423
  background: #fff;
27424
  border: 1px solid #e9ecef;
27425
  min-height: 23em;
27426
  overflow: auto;
27427
  margin: 0.5em 0;
27428
}
27429
 
27430
@media (max-width: 767px) {
16848 stevensc 27431
  .wizard>.content>.body {
16825 efrain 27432
    width: 90%;
27433
    height: 90%;
27434
    padding: 5%;
27435
  }
27436
}
27437
 
16848 stevensc 27438
.wizard>.actions .disabled a,
27439
.wizard>.actions .disabled a:active,
27440
.wizard>.actions .disabled a:hover {
16825 efrain 27441
  background: #e9ecef;
27442
  border-color: #e9ecef;
27443
  cursor: not-allowed;
27444
  color: #aeb7c5;
27445
}
27446
 
16848 stevensc 27447
.wizard>.actions .disabled a:focus {
16825 efrain 27448
  box-shadow: none;
27449
  color: #aeb7c5;
27450
}
27451
 
16848 stevensc 27452
.wizard>.actions>ul li {
16825 efrain 27453
  margin-right: 0;
27454
  margin-left: 0.7em;
27455
}
27456
 
16848 stevensc 27457
.wizard.vertical>.steps ul {
16825 efrain 27458
  flex-direction: column;
27459
}
27460
 
16848 stevensc 27461
.wizard.vertical>.content {
16825 efrain 27462
  margin: 0 0 0.5em 2%;
27463
  width: 68%;
27464
}
27465
 
16848 stevensc 27466
.wizard.vertical>.steps a,
27467
.wizard.vertical>.steps a:active,
27468
.wizard.vertical>.steps a:hover {
16825 efrain 27469
  margin: 0 0 0.5em 0;
27470
}
27471
 
16848 stevensc 27472
.wizard.vertical>.actions {
16825 efrain 27473
  margin: 0;
27474
  width: 100%;
27475
}
27476
 
16848 stevensc 27477
.wizard.vertical>.actions>ul>li {
16825 efrain 27478
  margin: 0 0 0 0.7em;
27479
}
16848 stevensc 27480
 
27481
.pac-container {
27482
  z-index: 1200;
27483
}
27484
 
16857 stevensc 27485
.feed-section {
27486
  display: flex;
27487
  flex-direction: column;
27488
  gap: .5rem;
16858 stevensc 27489
  width: 50%;
27490
  margin: 0 auto;
16857 stevensc 27491
  box-sizing: border-box;
16865 stevensc 27492
  align-items: center;
16857 stevensc 27493
}
27494
 
16867 stevensc 27495
.theme-container {
16849 stevensc 27496
  background-color: var(--bg-color);
27497
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27498
  height: fit-content;
27499
  width: -moz-available;
27500
  width: -webkit-fill-available;
27501
  width: fill-available;
27502
  overflow: hidden;
27503
  position: relative;
16853 stevensc 27504
  border-radius: var(--border-radius);
16849 stevensc 27505
}
27506
 
16867 stevensc 27507
.theme-container span {
16849 stevensc 27508
  font-size: 0.9rem;
16853 stevensc 27509
  line-height: 1;
27510
  color: var(--subtitle-color);
27511
  font-weight: 600;
16849 stevensc 27512
}
27513
 
16867 stevensc 27514
.theme-container p {
16849 stevensc 27515
  color: var(--font-color);
27516
  font-size: 14px;
27517
  text-align: justify;
27518
  margin-bottom: 0.5rem;
27519
}
27520
 
16867 stevensc 27521
.theme-container h2 {
16849 stevensc 27522
  font-size: 1rem;
16853 stevensc 27523
  font-weight: 600;
16849 stevensc 27524
}
27525
 
16867 stevensc 27526
.theme-container input,
27527
.theme-container input:focus {
16859 stevensc 27528
  align-items: center;
27529
  color: gray;
27530
  display: flex;
27531
  min-height: 1.5rem;
27532
  gap: 5px;
27533
  width: 100%;
27534
  border: 1px solid lightgray;
27535
  background-color: rgb(255, 255, 255);
27536
  border-radius: 30px;
27537
  padding: 5px 5px 5px 1rem;
27538
}
27539
 
16849 stevensc 27540
.feed-header {
27541
  display: flex;
27542
  gap: 0.5rem;
27543
  padding: 10px 1rem;
27544
  align-items: center;
27545
  position: relative;
27546
}
27547
 
16858 stevensc 27548
.feed-header a>img {
27549
  width: 50px;
27550
  height: 50px;
27551
  border-radius: 50%;
27552
  object-fit: cover;
27553
}
27554
 
16851 stevensc 27555
.feed-info {
27556
  display: inline-flex;
16852 stevensc 27557
  flex-direction: column;
16851 stevensc 27558
  width: fit-content;
27559
}
27560
 
16852 stevensc 27561
.feed-body {
16849 stevensc 27562
  padding: 10px 1rem;
27563
  display: flex;
27564
  flex-direction: column;
27565
}
27566
 
16856 stevensc 27567
.feed-body>img,
27568
.feed-body>video {
27569
  width: 100%;
27570
  object-fit: cover;
27571
  max-height: 60vh;
27572
}
27573
 
16849 stevensc 27574
.feed-actions {
27575
  display: flex;
16851 stevensc 27576
  justify-content: flex-end;
16849 stevensc 27577
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27578
  gap: .5rem;
16849 stevensc 27579
  padding: 5px;
27580
}
27581
 
27582
.feed-actions>button {
27583
  align-items: center;
27584
  border-radius: var(--border-radius);
27585
  cursor: pointer;
27586
  display: inline-flex;
16851 stevensc 27587
  flex-direction: row;
27588
  gap: 0.5rem;
27589
  font-size: 1rem;
16849 stevensc 27590
  padding: 5px;
27591
  position: relative;
27592
}
27593
 
27594
.feed-actions>button:hover {
27595
  background-color: whitesmoke;
27596
}
27597
 
16851 stevensc 27598
.feed-actions>span,
27599
.feed-actions>svg {
27600
  color: var(--subtitle-color);
27601
  font-weight: 600;
27602
  font-size: .9rem;
27603
}
27604
 
16860 stevensc 27605
.comment-form {
27606
  display: flex;
27607
  align-items: center;
27608
  gap: 0.5rem;
27609
  width: 100%;
27610
}
27611
 
27612
.comment-list {
27613
  display: flex;
27614
  flex-direction: column;
27615
  gap: 0.5rem;
16863 stevensc 27616
  margin: 0;
16861 stevensc 27617
  list-style: none;
16863 stevensc 27618
  padding: 0.5rem;
16860 stevensc 27619
  max-height: 300px;
27620
  overflow-y: auto;
27621
  width: 100%;
27622
}
27623
 
27624
.comment-container {
27625
  background-color: var(--chat-send);
27626
  border-radius: var(--border-radius);
27627
  display: flex;
27628
  flex-direction: column;
27629
  flex-grow: 1;
27630
  gap: 0.5rem;
27631
  max-width: 100%;
27632
  overflow: hidden;
27633
  padding: 0.5rem;
27634
  position: relative;
27635
}
27636
 
16849 stevensc 27637
@media (max-width: 768px) {
16857 stevensc 27638
  .feed-section {
16858 stevensc 27639
    width: 100%;
16857 stevensc 27640
  }
27641
 
16867 stevensc 27642
  .theme-container {
16853 stevensc 27643
    border-radius: 0;
16849 stevensc 27644
  }
27645
 
16851 stevensc 27646
  .feed-actions>button {
27647
    font-size: 0.9rem;
27648
    flex-direction: column;
27649
    gap: 0;
16849 stevensc 27650
  }
27651
}
27652
 
16866 stevensc 27653
/* ============= user_profile ============= */
27654
.user_profile {
27655
  width: 100%;
27656
  background-color: #fff;
27657
  margin-bottom: 20px;
27658
  text-align: center;
27659
  margin-top: -40px;
27660
}
27661
 
27662
.user-pro-img {
27663
  width: 100%;
27664
  text-align: center;
27665
  margin-bottom: 28px;
27666
  position: relative;
27667
}
27668
 
27669
.user-pro-img .add-dp {
27670
  position: absolute;
27671
  top: 10px;
27672
  left: 60%;
27673
}
27674
 
27675
.add-dp i {
27676
  bottom: 0;
27677
  font-size: 14px;
27678
  box-shadow: none;
27679
  position: relative;
27680
  border-radius: 50px;
27681
  width: 40px;
27682
  height: 40px;
27683
  text-align: center;
27684
  background: #e44d3a;
27685
  padding: 12px;
27686
  color: #ffff;
27687
  left: 0;
27688
  top: -5px;
27689
}
27690
 
27691
.add-dp i:hover {
27692
  font-size: 14px;
27693
  border: 2px solid #fff;
27694
  background: #e44d3a;
27695
  padding: 11px;
27696
}
27697
 
27698
.add-dp {
27699
  margin: -16px;
27700
  padding: 0;
27701
}
27702
 
27703
.add-dp input[type="file"] {
27704
  opacity: 0;
27705
  padding: 10px 0px 9px;
27706
  display: none;
27707
}
27708
 
27709
#go-back {
27710
  font-size: 2rem;
27711
}
27712
 
27713
.user-pro-img img {
27714
  border-radius: 100px;
27715
  border: 5px solid #fff;
27716
  background: #fff;
27717
}
27718
 
27719
.user_pro_status {
27720
  width: 100%;
27721
  border-bottom: 1px solid #e5e5e5;
27722
  padding-bottom: 27px;
27723
}
27724
 
16867 stevensc 27725
.add-pic-box {
27726
  display: inline-block;
27727
  color: #e44d3a;
27728
  font-size: 16px;
27729
  position: absolute;
27730
  top: 30px;
27731
  right: 0;
27732
  font-weight: 600;
27733
  margin-right: 0;
27734
}
27735
 
27736
.add-pic-box.cover {
27737
  display: inline-block;
27738
  color: #e44d3a;
27739
  font-size: 16px;
27740
  position: absolute;
27741
  top: 30px;
27742
  right: 0;
27743
  font-weight: 600;
27744
  margin-right: 0;
27745
  width: 100%;
27746
}
27747
 
16868 stevensc 27748
.cover-sec img {
27749
  width: 100%;
27750
}
27751
 
27752
.cover-sec>a {
27753
  display: inline-block;
27754
  color: #e44d3a;
27755
  font-size: 16px;
27756
  background-color: #fff;
27757
  border: 1px solid #e44d3a;
27758
  position: absolute;
27759
  top: 30px;
27760
  right: 0;
27761
  padding: 10px 15px;
27762
  font-weight: 600;
27763
  margin-right: 15px;
27764
}
27765
 
27766
.cover-sec>a i {
27767
  padding-right: 5px;
27768
}
27769
 
27770
 
16866 stevensc 27771
/* ============= end user_profile ============= */
27772
 
16848 stevensc 27773
/*# sourceMappingURL=../maps/demo1/style.css.map */