Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16869 | Rev 16873 | 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
 
16869 stevensc 110
button {
111
  margin: 0;
112
  padding: 0;
113
  background: transparent;
114
  border: 0;
115
}
116
 
16868 stevensc 117
img {
118
  max-width: 100%;
119
}
120
 
121
ul {
122
  list-style: none;
123
}
124
 
16848 stevensc 125
h6,
126
.h6,
127
h5,
128
.h5,
129
h4,
130
.h4,
131
h3,
132
.h3,
133
h2,
134
.h2,
135
h1,
136
.h1 {
16825 efrain 137
  margin-top: 0;
138
  margin-bottom: 0;
139
  font-weight: 500;
140
  line-height: 1.2;
141
}
142
 
16848 stevensc 143
h1,
16852 stevensc 144
h2,
145
h3 {
146
  color: var(--title-color);
147
}
148
 
149
h1,
16848 stevensc 150
.h1 {
16825 efrain 151
  font-size: calc(1.375rem + 1.5vw);
152
}
16848 stevensc 153
 
16825 efrain 154
@media (min-width: 1200px) {
16848 stevensc 155
 
156
  h1,
157
  .h1 {
16825 efrain 158
    font-size: 2.5rem;
159
  }
160
}
161
 
16848 stevensc 162
h2,
163
.h2 {
16825 efrain 164
  font-size: calc(1.325rem + 0.9vw);
165
}
16848 stevensc 166
 
16825 efrain 167
@media (min-width: 1200px) {
16848 stevensc 168
 
169
  h2,
170
  .h2 {
16825 efrain 171
    font-size: 2rem;
172
  }
173
}
174
 
16848 stevensc 175
h3,
176
.h3 {
16825 efrain 177
  font-size: calc(1.275rem + 0.3vw);
178
}
16848 stevensc 179
 
16825 efrain 180
@media (min-width: 1200px) {
16848 stevensc 181
 
182
  h3,
183
  .h3 {
16825 efrain 184
    font-size: 1.5rem;
185
  }
186
}
187
 
16848 stevensc 188
h4,
189
.h4 {
16825 efrain 190
  font-size: 1.25rem;
191
}
192
 
16848 stevensc 193
h5,
194
.h5 {
16825 efrain 195
  font-size: 1rem;
196
}
197
 
16848 stevensc 198
h6,
199
.h6 {
16825 efrain 200
  font-size: 0.875rem;
201
}
202
 
203
p {
204
  margin-top: 0;
205
  margin-bottom: 0;
206
}
207
 
208
abbr[title] {
209
  text-decoration: underline dotted;
210
  cursor: help;
211
  text-decoration-skip-ink: none;
212
}
213
 
214
address {
215
  margin-bottom: 1rem;
216
  font-style: normal;
217
  line-height: inherit;
218
}
219
 
220
ol,
221
ul {
222
  padding-left: 2rem;
223
}
224
 
225
ol,
226
ul,
227
dl {
228
  margin-top: 0;
229
  margin-bottom: 1rem;
230
}
231
 
232
ol ol,
233
ul ul,
234
ol ul,
235
ul ol {
236
  margin-bottom: 0;
237
}
238
 
239
dt {
240
  font-weight: 500;
241
}
242
 
243
dd {
244
  margin-bottom: 0.5rem;
245
  margin-left: 0;
246
}
247
 
248
blockquote {
249
  margin: 0 0 1rem;
250
}
251
 
252
b,
253
strong {
254
  font-weight: 700;
255
}
256
 
16848 stevensc 257
small,
258
.small {
16825 efrain 259
  font-size: 0.875em;
260
}
261
 
16848 stevensc 262
mark,
263
.mark {
16825 efrain 264
  padding: 0.1875em;
265
  background-color: var(--bs-highlight-bg);
266
}
267
 
268
sub,
269
sup {
270
  position: relative;
271
  font-size: 0.75em;
272
  line-height: 0;
273
  vertical-align: baseline;
274
}
275
 
276
sub {
277
  bottom: -0.25em;
278
}
279
 
280
sup {
281
  top: -0.5em;
282
}
283
 
284
a {
285
  color: var(--bs-link-color);
286
  text-decoration: none;
287
}
16848 stevensc 288
 
16825 efrain 289
a:hover {
290
  color: var(--bs-link-hover-color);
291
}
292
 
16848 stevensc 293
a:not([href]):not([class]),
294
a:not([href]):not([class]):hover {
16825 efrain 295
  color: inherit;
296
  text-decoration: none;
297
}
298
 
299
pre,
300
code,
301
kbd,
302
samp {
303
  font-family: var(--bs-font-monospace);
304
  font-size: 1em;
305
}
306
 
307
pre {
308
  display: block;
309
  margin-top: 0;
310
  margin-bottom: 1rem;
311
  overflow: auto;
312
  font-size: 0.875em;
313
}
16848 stevensc 314
 
16825 efrain 315
pre code {
316
  font-size: inherit;
317
  color: inherit;
318
  word-break: normal;
319
}
320
 
321
code {
322
  font-size: 0.875em;
323
  color: var(--bs-code-color);
324
  word-wrap: break-word;
325
}
16848 stevensc 326
 
327
a>code {
16825 efrain 328
  color: inherit;
329
}
330
 
331
kbd {
332
  padding: 0.1875rem 0.375rem;
333
  font-size: 0.875em;
334
  color: var(--bs-body-bg);
335
  background-color: var(--bs-body-color);
336
  border-radius: 0.25rem;
337
}
16848 stevensc 338
 
16825 efrain 339
kbd kbd {
340
  padding: 0;
341
  font-size: 1em;
342
}
343
 
344
figure {
345
  margin: 0 0 1rem;
346
}
347
 
348
img,
349
svg {
350
  vertical-align: middle;
351
}
352
 
353
table {
354
  caption-side: bottom;
355
  border-collapse: collapse;
356
}
357
 
358
caption {
359
  padding-top: 0.85rem;
360
  padding-bottom: 0.85rem;
361
  color: #7987a1;
362
  text-align: left;
363
}
364
 
365
th {
366
  text-align: inherit;
367
  text-align: -webkit-match-parent;
368
}
369
 
370
thead,
371
tbody,
372
tfoot,
373
tr,
374
td,
375
th {
376
  border-color: inherit;
377
  border-style: solid;
378
  border-width: 0;
379
}
380
 
381
label {
382
  display: inline-block;
383
}
384
 
385
button {
386
  border-radius: 0;
387
}
388
 
389
button:focus:not(:focus-visible) {
390
  outline: 0;
391
}
392
 
393
input,
394
button,
395
select,
396
optgroup,
397
textarea {
398
  margin: 0;
399
  font-family: inherit;
400
  font-size: inherit;
401
  line-height: inherit;
402
}
403
 
404
button,
405
select {
406
  text-transform: none;
407
}
408
 
409
[role=button] {
410
  cursor: pointer;
411
}
412
 
413
select {
414
  word-wrap: normal;
415
}
16848 stevensc 416
 
16825 efrain 417
select:disabled {
418
  opacity: 1;
419
}
420
 
421
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
422
  display: none !important;
423
}
424
 
425
button,
426
[type=button],
427
[type=reset],
428
[type=submit] {
16848 stevensc 429
  appearance: button;
16825 efrain 430
}
16848 stevensc 431
 
16825 efrain 432
button:not(:disabled),
433
[type=button]:not(:disabled),
434
[type=reset]:not(:disabled),
435
[type=submit]:not(:disabled) {
436
  cursor: pointer;
437
}
438
 
439
::-moz-focus-inner {
440
  padding: 0;
441
  border-style: none;
442
}
443
 
444
textarea {
445
  resize: vertical;
446
}
447
 
448
fieldset {
449
  min-width: 0;
450
  padding: 0;
451
  margin: 0;
452
  border: 0;
453
}
454
 
455
legend {
456
  float: left;
457
  width: 100%;
458
  padding: 0;
459
  margin-bottom: 0.5rem;
460
  font-size: calc(1.275rem + 0.3vw);
461
  line-height: inherit;
462
}
16848 stevensc 463
 
16825 efrain 464
@media (min-width: 1200px) {
465
  legend {
466
    font-size: 1.5rem;
467
  }
468
}
16848 stevensc 469
 
470
legend+* {
16825 efrain 471
  clear: left;
472
}
473
 
474
::-webkit-datetime-edit-fields-wrapper,
475
::-webkit-datetime-edit-text,
476
::-webkit-datetime-edit-minute,
477
::-webkit-datetime-edit-hour-field,
478
::-webkit-datetime-edit-day-field,
479
::-webkit-datetime-edit-month-field,
480
::-webkit-datetime-edit-year-field {
481
  padding: 0;
482
}
483
 
484
::-webkit-inner-spin-button {
485
  height: auto;
486
}
487
 
488
[type=search] {
489
  outline-offset: -2px;
16848 stevensc 490
  appearance: textfield;
16825 efrain 491
}
492
 
493
/* rtl:raw:
494
[type="tel"],
495
[type="url"],
496
[type="email"],
497
[type="number"] {
498
  direction: ltr;
499
}
500
*/
501
::-webkit-search-decoration {
502
  -webkit-appearance: none;
503
}
504
 
505
::-webkit-color-swatch-wrapper {
506
  padding: 0;
507
}
508
 
509
::file-selector-button {
510
  font: inherit;
16848 stevensc 511
  appearance: button;
16825 efrain 512
}
513
 
514
output {
515
  display: inline-block;
516
}
517
 
518
iframe {
519
  border: 0;
520
}
521
 
522
summary {
523
  display: list-item;
524
  cursor: pointer;
525
}
526
 
527
progress {
528
  vertical-align: baseline;
529
}
530
 
531
[hidden] {
532
  display: none !important;
533
}
534
 
535
.lead {
536
  font-size: 1.09375rem;
537
  font-weight: 300;
538
}
539
 
540
.display-1 {
541
  font-size: calc(1.625rem + 4.5vw);
542
  font-weight: 300;
543
  line-height: 1.2;
544
}
16848 stevensc 545
 
16825 efrain 546
@media (min-width: 1200px) {
547
  .display-1 {
548
    font-size: 5rem;
549
  }
550
}
551
 
552
.display-2 {
553
  font-size: calc(1.575rem + 3.9vw);
554
  font-weight: 300;
555
  line-height: 1.2;
556
}
16848 stevensc 557
 
16825 efrain 558
@media (min-width: 1200px) {
559
  .display-2 {
560
    font-size: 4.5rem;
561
  }
562
}
563
 
564
.display-3 {
565
  font-size: calc(1.525rem + 3.3vw);
566
  font-weight: 300;
567
  line-height: 1.2;
568
}
16848 stevensc 569
 
16825 efrain 570
@media (min-width: 1200px) {
571
  .display-3 {
572
    font-size: 4rem;
573
  }
574
}
575
 
576
.display-4 {
577
  font-size: calc(1.475rem + 2.7vw);
578
  font-weight: 300;
579
  line-height: 1.2;
580
}
16848 stevensc 581
 
16825 efrain 582
@media (min-width: 1200px) {
583
  .display-4 {
584
    font-size: 3.5rem;
585
  }
586
}
587
 
588
.display-5 {
589
  font-size: calc(1.425rem + 2.1vw);
590
  font-weight: 300;
591
  line-height: 1.2;
592
}
16848 stevensc 593
 
16825 efrain 594
@media (min-width: 1200px) {
595
  .display-5 {
596
    font-size: 3rem;
597
  }
598
}
599
 
600
.display-6 {
601
  font-size: calc(1.375rem + 1.5vw);
602
  font-weight: 300;
603
  line-height: 1.2;
604
}
16848 stevensc 605
 
16825 efrain 606
@media (min-width: 1200px) {
607
  .display-6 {
608
    font-size: 2.5rem;
609
  }
610
}
611
 
612
.list-unstyled {
613
  padding-left: 0;
614
  list-style: none;
615
}
616
 
617
.list-inline {
618
  padding-left: 0;
619
  list-style: none;
620
}
621
 
622
.list-inline-item {
623
  display: inline-block;
624
}
16848 stevensc 625
 
16825 efrain 626
.list-inline-item:not(:last-child) {
627
  margin-right: 0.5rem;
628
}
629
 
630
.initialism {
631
  font-size: 0.875em;
632
  text-transform: uppercase;
633
}
634
 
635
.blockquote {
636
  margin-bottom: 1rem;
637
  font-size: 1.09375rem;
638
}
16848 stevensc 639
 
640
.blockquote> :last-child {
16825 efrain 641
  margin-bottom: 0;
642
}
643
 
644
.blockquote-footer {
645
  margin-top: -1rem;
646
  margin-bottom: 1rem;
647
  font-size: 0.875em;
648
  color: #7987a1;
649
}
16848 stevensc 650
 
16825 efrain 651
.blockquote-footer::before {
652
  content: "— ";
653
}
654
 
655
.img-fluid {
656
  max-width: 100%;
657
  height: auto;
658
}
659
 
660
.img-thumbnail {
661
  padding: 0.25rem;
662
  background-color: #f9fafb;
663
  border: 1px solid var(--bs-border-color);
664
  border-radius: 0.25rem;
665
  max-width: 100%;
666
  height: auto;
667
}
668
 
669
.figure {
670
  display: inline-block;
671
}
672
 
673
.figure-img {
674
  margin-bottom: 0.5rem;
675
  line-height: 1;
676
}
677
 
678
.figure-caption {
679
  font-size: 0.875em;
680
  color: #7987a1;
681
}
682
 
683
.container,
684
.container-fluid,
685
.container-xxl,
686
.container-xl,
687
.container-lg,
688
.container-md,
689
.container-sm {
690
  --bs-gutter-x: 1.5rem;
691
  --bs-gutter-y: 0;
692
  width: 100%;
693
  padding-right: calc(var(--bs-gutter-x) * 0.5);
694
  padding-left: calc(var(--bs-gutter-x) * 0.5);
695
  margin-right: auto;
696
  margin-left: auto;
697
}
698
 
699
@media (min-width: 576px) {
16848 stevensc 700
 
701
  .container-sm,
702
  .container {
16825 efrain 703
    max-width: 540px;
704
  }
705
}
16848 stevensc 706
 
16825 efrain 707
@media (min-width: 768px) {
16848 stevensc 708
 
709
  .container-md,
710
  .container-sm,
711
  .container {
16825 efrain 712
    max-width: 720px;
713
  }
714
}
16848 stevensc 715
 
16825 efrain 716
@media (min-width: 992px) {
16848 stevensc 717
 
718
  .container-lg,
719
  .container-md,
720
  .container-sm,
721
  .container {
16825 efrain 722
    max-width: 960px;
723
  }
724
}
16848 stevensc 725
 
16825 efrain 726
@media (min-width: 1200px) {
16848 stevensc 727
 
728
  .container-xl,
729
  .container-lg,
730
  .container-md,
731
  .container-sm,
732
  .container {
16825 efrain 733
    max-width: 1140px;
734
  }
735
}
16848 stevensc 736
 
16825 efrain 737
@media (min-width: 1400px) {
16848 stevensc 738
 
739
  .container-xxl,
740
  .container-xl,
741
  .container-lg,
742
  .container-md,
743
  .container-sm,
744
  .container {
16825 efrain 745
    max-width: 1320px;
746
  }
747
}
16848 stevensc 748
 
16825 efrain 749
.row {
750
  --bs-gutter-x: 1.5rem;
751
  --bs-gutter-y: 0;
752
  display: flex;
753
  flex-wrap: wrap;
754
  margin-top: calc(-1 * var(--bs-gutter-y));
755
  margin-right: calc(-0.5 * var(--bs-gutter-x));
756
  margin-left: calc(-0.5 * var(--bs-gutter-x));
757
}
16848 stevensc 758
 
759
.row>* {
16825 efrain 760
  flex-shrink: 0;
761
  width: 100%;
762
  max-width: 100%;
763
  padding-right: calc(var(--bs-gutter-x) * 0.5);
764
  padding-left: calc(var(--bs-gutter-x) * 0.5);
765
  margin-top: var(--bs-gutter-y);
766
}
767
 
768
.col {
769
  flex: 1 0 0%;
770
}
771
 
16848 stevensc 772
.row-cols-auto>* {
16825 efrain 773
  flex: 0 0 auto;
774
  width: auto;
775
}
776
 
16848 stevensc 777
.row-cols-1>* {
16825 efrain 778
  flex: 0 0 auto;
779
  width: 100%;
780
}
781
 
16848 stevensc 782
.row-cols-2>* {
16825 efrain 783
  flex: 0 0 auto;
784
  width: 50%;
785
}
786
 
16848 stevensc 787
.row-cols-3>* {
16825 efrain 788
  flex: 0 0 auto;
789
  width: 33.3333333333%;
790
}
791
 
16848 stevensc 792
.row-cols-4>* {
16825 efrain 793
  flex: 0 0 auto;
794
  width: 25%;
795
}
796
 
16848 stevensc 797
.row-cols-5>* {
16825 efrain 798
  flex: 0 0 auto;
799
  width: 20%;
800
}
801
 
16848 stevensc 802
.row-cols-6>* {
16825 efrain 803
  flex: 0 0 auto;
804
  width: 16.6666666667%;
805
}
806
 
807
.col-auto {
808
  flex: 0 0 auto;
809
  width: auto;
810
}
811
 
812
.col-1 {
813
  flex: 0 0 auto;
814
  width: 8.33333333%;
815
}
816
 
817
.col-2 {
818
  flex: 0 0 auto;
819
  width: 16.66666667%;
820
}
821
 
822
.col-3 {
823
  flex: 0 0 auto;
824
  width: 25%;
825
}
826
 
827
.col-4 {
828
  flex: 0 0 auto;
829
  width: 33.33333333%;
830
}
831
 
832
.col-5 {
833
  flex: 0 0 auto;
834
  width: 41.66666667%;
835
}
836
 
837
.col-6 {
838
  flex: 0 0 auto;
839
  width: 50%;
840
}
841
 
842
.col-7 {
843
  flex: 0 0 auto;
844
  width: 58.33333333%;
845
}
846
 
847
.col-8 {
848
  flex: 0 0 auto;
849
  width: 66.66666667%;
850
}
851
 
852
.col-9 {
853
  flex: 0 0 auto;
854
  width: 75%;
855
}
856
 
857
.col-10 {
858
  flex: 0 0 auto;
859
  width: 83.33333333%;
860
}
861
 
862
.col-11 {
863
  flex: 0 0 auto;
864
  width: 91.66666667%;
865
}
866
 
867
.col-12 {
868
  flex: 0 0 auto;
869
  width: 100%;
870
}
871
 
872
.offset-1 {
873
  margin-left: 8.33333333%;
874
}
875
 
876
.offset-2 {
877
  margin-left: 16.66666667%;
878
}
879
 
880
.offset-3 {
881
  margin-left: 25%;
882
}
883
 
884
.offset-4 {
885
  margin-left: 33.33333333%;
886
}
887
 
888
.offset-5 {
889
  margin-left: 41.66666667%;
890
}
891
 
892
.offset-6 {
893
  margin-left: 50%;
894
}
895
 
896
.offset-7 {
897
  margin-left: 58.33333333%;
898
}
899
 
900
.offset-8 {
901
  margin-left: 66.66666667%;
902
}
903
 
904
.offset-9 {
905
  margin-left: 75%;
906
}
907
 
908
.offset-10 {
909
  margin-left: 83.33333333%;
910
}
911
 
912
.offset-11 {
913
  margin-left: 91.66666667%;
914
}
915
 
916
.g-0,
917
.gx-0 {
918
  --bs-gutter-x: 0;
919
}
920
 
921
.g-0,
922
.gy-0 {
923
  --bs-gutter-y: 0;
924
}
925
 
926
.g-1,
927
.gx-1 {
928
  --bs-gutter-x: 0.25rem;
929
}
930
 
931
.g-1,
932
.gy-1 {
933
  --bs-gutter-y: 0.25rem;
934
}
935
 
936
.g-2,
937
.gx-2 {
938
  --bs-gutter-x: 0.5rem;
939
}
940
 
941
.g-2,
942
.gy-2 {
943
  --bs-gutter-y: 0.5rem;
944
}
945
 
946
.g-3,
947
.gx-3 {
948
  --bs-gutter-x: 1rem;
949
}
950
 
951
.g-3,
952
.gy-3 {
953
  --bs-gutter-y: 1rem;
954
}
955
 
956
.g-4,
957
.gx-4 {
958
  --bs-gutter-x: 1.5rem;
959
}
960
 
961
.g-4,
962
.gy-4 {
963
  --bs-gutter-y: 1.5rem;
964
}
965
 
966
.g-5,
967
.gx-5 {
968
  --bs-gutter-x: 3rem;
969
}
970
 
971
.g-5,
972
.gy-5 {
973
  --bs-gutter-y: 3rem;
974
}
975
 
976
.g-6,
977
.gx-6 {
978
  --bs-gutter-x: 4.5rem;
979
}
980
 
981
.g-6,
982
.gy-6 {
983
  --bs-gutter-y: 4.5rem;
984
}
985
 
986
.g-7,
987
.gx-7 {
988
  --bs-gutter-x: 6rem;
989
}
990
 
991
.g-7,
992
.gy-7 {
993
  --bs-gutter-y: 6rem;
994
}
995
 
996
@media (min-width: 576px) {
997
  .col-sm {
998
    flex: 1 0 0%;
999
  }
16848 stevensc 1000
 
1001
  .row-cols-sm-auto>* {
16825 efrain 1002
    flex: 0 0 auto;
1003
    width: auto;
1004
  }
16848 stevensc 1005
 
1006
  .row-cols-sm-1>* {
16825 efrain 1007
    flex: 0 0 auto;
1008
    width: 100%;
1009
  }
16848 stevensc 1010
 
1011
  .row-cols-sm-2>* {
16825 efrain 1012
    flex: 0 0 auto;
1013
    width: 50%;
1014
  }
16848 stevensc 1015
 
1016
  .row-cols-sm-3>* {
16825 efrain 1017
    flex: 0 0 auto;
1018
    width: 33.3333333333%;
1019
  }
16848 stevensc 1020
 
1021
  .row-cols-sm-4>* {
16825 efrain 1022
    flex: 0 0 auto;
1023
    width: 25%;
1024
  }
16848 stevensc 1025
 
1026
  .row-cols-sm-5>* {
16825 efrain 1027
    flex: 0 0 auto;
1028
    width: 20%;
1029
  }
16848 stevensc 1030
 
1031
  .row-cols-sm-6>* {
16825 efrain 1032
    flex: 0 0 auto;
1033
    width: 16.6666666667%;
1034
  }
16848 stevensc 1035
 
16825 efrain 1036
  .col-sm-auto {
1037
    flex: 0 0 auto;
1038
    width: auto;
1039
  }
16848 stevensc 1040
 
16825 efrain 1041
  .col-sm-1 {
1042
    flex: 0 0 auto;
1043
    width: 8.33333333%;
1044
  }
16848 stevensc 1045
 
16825 efrain 1046
  .col-sm-2 {
1047
    flex: 0 0 auto;
1048
    width: 16.66666667%;
1049
  }
16848 stevensc 1050
 
16825 efrain 1051
  .col-sm-3 {
1052
    flex: 0 0 auto;
1053
    width: 25%;
1054
  }
16848 stevensc 1055
 
16825 efrain 1056
  .col-sm-4 {
1057
    flex: 0 0 auto;
1058
    width: 33.33333333%;
1059
  }
16848 stevensc 1060
 
16825 efrain 1061
  .col-sm-5 {
1062
    flex: 0 0 auto;
1063
    width: 41.66666667%;
1064
  }
16848 stevensc 1065
 
16825 efrain 1066
  .col-sm-6 {
1067
    flex: 0 0 auto;
1068
    width: 50%;
1069
  }
16848 stevensc 1070
 
16825 efrain 1071
  .col-sm-7 {
1072
    flex: 0 0 auto;
1073
    width: 58.33333333%;
1074
  }
16848 stevensc 1075
 
16825 efrain 1076
  .col-sm-8 {
1077
    flex: 0 0 auto;
1078
    width: 66.66666667%;
1079
  }
16848 stevensc 1080
 
16825 efrain 1081
  .col-sm-9 {
1082
    flex: 0 0 auto;
1083
    width: 75%;
1084
  }
16848 stevensc 1085
 
16825 efrain 1086
  .col-sm-10 {
1087
    flex: 0 0 auto;
1088
    width: 83.33333333%;
1089
  }
16848 stevensc 1090
 
16825 efrain 1091
  .col-sm-11 {
1092
    flex: 0 0 auto;
1093
    width: 91.66666667%;
1094
  }
16848 stevensc 1095
 
16825 efrain 1096
  .col-sm-12 {
1097
    flex: 0 0 auto;
1098
    width: 100%;
1099
  }
16848 stevensc 1100
 
16825 efrain 1101
  .offset-sm-0 {
1102
    margin-left: 0;
1103
  }
16848 stevensc 1104
 
16825 efrain 1105
  .offset-sm-1 {
1106
    margin-left: 8.33333333%;
1107
  }
16848 stevensc 1108
 
16825 efrain 1109
  .offset-sm-2 {
1110
    margin-left: 16.66666667%;
1111
  }
16848 stevensc 1112
 
16825 efrain 1113
  .offset-sm-3 {
1114
    margin-left: 25%;
1115
  }
16848 stevensc 1116
 
16825 efrain 1117
  .offset-sm-4 {
1118
    margin-left: 33.33333333%;
1119
  }
16848 stevensc 1120
 
16825 efrain 1121
  .offset-sm-5 {
1122
    margin-left: 41.66666667%;
1123
  }
16848 stevensc 1124
 
16825 efrain 1125
  .offset-sm-6 {
1126
    margin-left: 50%;
1127
  }
16848 stevensc 1128
 
16825 efrain 1129
  .offset-sm-7 {
1130
    margin-left: 58.33333333%;
1131
  }
16848 stevensc 1132
 
16825 efrain 1133
  .offset-sm-8 {
1134
    margin-left: 66.66666667%;
1135
  }
16848 stevensc 1136
 
16825 efrain 1137
  .offset-sm-9 {
1138
    margin-left: 75%;
1139
  }
16848 stevensc 1140
 
16825 efrain 1141
  .offset-sm-10 {
1142
    margin-left: 83.33333333%;
1143
  }
16848 stevensc 1144
 
16825 efrain 1145
  .offset-sm-11 {
1146
    margin-left: 91.66666667%;
1147
  }
16848 stevensc 1148
 
16825 efrain 1149
  .g-sm-0,
1150
  .gx-sm-0 {
1151
    --bs-gutter-x: 0;
1152
  }
16848 stevensc 1153
 
16825 efrain 1154
  .g-sm-0,
1155
  .gy-sm-0 {
1156
    --bs-gutter-y: 0;
1157
  }
16848 stevensc 1158
 
16825 efrain 1159
  .g-sm-1,
1160
  .gx-sm-1 {
1161
    --bs-gutter-x: 0.25rem;
1162
  }
16848 stevensc 1163
 
16825 efrain 1164
  .g-sm-1,
1165
  .gy-sm-1 {
1166
    --bs-gutter-y: 0.25rem;
1167
  }
16848 stevensc 1168
 
16825 efrain 1169
  .g-sm-2,
1170
  .gx-sm-2 {
1171
    --bs-gutter-x: 0.5rem;
1172
  }
16848 stevensc 1173
 
16825 efrain 1174
  .g-sm-2,
1175
  .gy-sm-2 {
1176
    --bs-gutter-y: 0.5rem;
1177
  }
16848 stevensc 1178
 
16825 efrain 1179
  .g-sm-3,
1180
  .gx-sm-3 {
1181
    --bs-gutter-x: 1rem;
1182
  }
16848 stevensc 1183
 
16825 efrain 1184
  .g-sm-3,
1185
  .gy-sm-3 {
1186
    --bs-gutter-y: 1rem;
1187
  }
16848 stevensc 1188
 
16825 efrain 1189
  .g-sm-4,
1190
  .gx-sm-4 {
1191
    --bs-gutter-x: 1.5rem;
1192
  }
16848 stevensc 1193
 
16825 efrain 1194
  .g-sm-4,
1195
  .gy-sm-4 {
1196
    --bs-gutter-y: 1.5rem;
1197
  }
16848 stevensc 1198
 
16825 efrain 1199
  .g-sm-5,
1200
  .gx-sm-5 {
1201
    --bs-gutter-x: 3rem;
1202
  }
16848 stevensc 1203
 
16825 efrain 1204
  .g-sm-5,
1205
  .gy-sm-5 {
1206
    --bs-gutter-y: 3rem;
1207
  }
16848 stevensc 1208
 
16825 efrain 1209
  .g-sm-6,
1210
  .gx-sm-6 {
1211
    --bs-gutter-x: 4.5rem;
1212
  }
16848 stevensc 1213
 
16825 efrain 1214
  .g-sm-6,
1215
  .gy-sm-6 {
1216
    --bs-gutter-y: 4.5rem;
1217
  }
16848 stevensc 1218
 
16825 efrain 1219
  .g-sm-7,
1220
  .gx-sm-7 {
1221
    --bs-gutter-x: 6rem;
1222
  }
16848 stevensc 1223
 
16825 efrain 1224
  .g-sm-7,
1225
  .gy-sm-7 {
1226
    --bs-gutter-y: 6rem;
1227
  }
1228
}
16848 stevensc 1229
 
16825 efrain 1230
@media (min-width: 768px) {
1231
  .col-md {
1232
    flex: 1 0 0%;
1233
  }
16848 stevensc 1234
 
1235
  .row-cols-md-auto>* {
16825 efrain 1236
    flex: 0 0 auto;
1237
    width: auto;
1238
  }
16848 stevensc 1239
 
1240
  .row-cols-md-1>* {
16825 efrain 1241
    flex: 0 0 auto;
1242
    width: 100%;
1243
  }
16848 stevensc 1244
 
1245
  .row-cols-md-2>* {
16825 efrain 1246
    flex: 0 0 auto;
1247
    width: 50%;
1248
  }
16848 stevensc 1249
 
1250
  .row-cols-md-3>* {
16825 efrain 1251
    flex: 0 0 auto;
1252
    width: 33.3333333333%;
1253
  }
16848 stevensc 1254
 
1255
  .row-cols-md-4>* {
16825 efrain 1256
    flex: 0 0 auto;
1257
    width: 25%;
1258
  }
16848 stevensc 1259
 
1260
  .row-cols-md-5>* {
16825 efrain 1261
    flex: 0 0 auto;
1262
    width: 20%;
1263
  }
16848 stevensc 1264
 
1265
  .row-cols-md-6>* {
16825 efrain 1266
    flex: 0 0 auto;
1267
    width: 16.6666666667%;
1268
  }
16848 stevensc 1269
 
16825 efrain 1270
  .col-md-auto {
1271
    flex: 0 0 auto;
1272
    width: auto;
1273
  }
16848 stevensc 1274
 
16825 efrain 1275
  .col-md-1 {
1276
    flex: 0 0 auto;
1277
    width: 8.33333333%;
1278
  }
16848 stevensc 1279
 
16825 efrain 1280
  .col-md-2 {
1281
    flex: 0 0 auto;
1282
    width: 16.66666667%;
1283
  }
16848 stevensc 1284
 
16825 efrain 1285
  .col-md-3 {
1286
    flex: 0 0 auto;
1287
    width: 25%;
1288
  }
16848 stevensc 1289
 
16825 efrain 1290
  .col-md-4 {
1291
    flex: 0 0 auto;
1292
    width: 33.33333333%;
1293
  }
16848 stevensc 1294
 
16825 efrain 1295
  .col-md-5 {
1296
    flex: 0 0 auto;
1297
    width: 41.66666667%;
1298
  }
16848 stevensc 1299
 
16825 efrain 1300
  .col-md-6 {
1301
    flex: 0 0 auto;
1302
    width: 50%;
1303
  }
16848 stevensc 1304
 
16825 efrain 1305
  .col-md-7 {
1306
    flex: 0 0 auto;
1307
    width: 58.33333333%;
1308
  }
16848 stevensc 1309
 
16825 efrain 1310
  .col-md-8 {
1311
    flex: 0 0 auto;
1312
    width: 66.66666667%;
1313
  }
16848 stevensc 1314
 
16825 efrain 1315
  .col-md-9 {
1316
    flex: 0 0 auto;
1317
    width: 75%;
1318
  }
16848 stevensc 1319
 
16825 efrain 1320
  .col-md-10 {
1321
    flex: 0 0 auto;
1322
    width: 83.33333333%;
1323
  }
16848 stevensc 1324
 
16825 efrain 1325
  .col-md-11 {
1326
    flex: 0 0 auto;
1327
    width: 91.66666667%;
1328
  }
16848 stevensc 1329
 
16825 efrain 1330
  .col-md-12 {
1331
    flex: 0 0 auto;
1332
    width: 100%;
1333
  }
16848 stevensc 1334
 
16825 efrain 1335
  .offset-md-0 {
1336
    margin-left: 0;
1337
  }
16848 stevensc 1338
 
16825 efrain 1339
  .offset-md-1 {
1340
    margin-left: 8.33333333%;
1341
  }
16848 stevensc 1342
 
16825 efrain 1343
  .offset-md-2 {
1344
    margin-left: 16.66666667%;
1345
  }
16848 stevensc 1346
 
16825 efrain 1347
  .offset-md-3 {
1348
    margin-left: 25%;
1349
  }
16848 stevensc 1350
 
16825 efrain 1351
  .offset-md-4 {
1352
    margin-left: 33.33333333%;
1353
  }
16848 stevensc 1354
 
16825 efrain 1355
  .offset-md-5 {
1356
    margin-left: 41.66666667%;
1357
  }
16848 stevensc 1358
 
16825 efrain 1359
  .offset-md-6 {
1360
    margin-left: 50%;
1361
  }
16848 stevensc 1362
 
16825 efrain 1363
  .offset-md-7 {
1364
    margin-left: 58.33333333%;
1365
  }
16848 stevensc 1366
 
16825 efrain 1367
  .offset-md-8 {
1368
    margin-left: 66.66666667%;
1369
  }
16848 stevensc 1370
 
16825 efrain 1371
  .offset-md-9 {
1372
    margin-left: 75%;
1373
  }
16848 stevensc 1374
 
16825 efrain 1375
  .offset-md-10 {
1376
    margin-left: 83.33333333%;
1377
  }
16848 stevensc 1378
 
16825 efrain 1379
  .offset-md-11 {
1380
    margin-left: 91.66666667%;
1381
  }
16848 stevensc 1382
 
16825 efrain 1383
  .g-md-0,
1384
  .gx-md-0 {
1385
    --bs-gutter-x: 0;
1386
  }
16848 stevensc 1387
 
16825 efrain 1388
  .g-md-0,
1389
  .gy-md-0 {
1390
    --bs-gutter-y: 0;
1391
  }
16848 stevensc 1392
 
16825 efrain 1393
  .g-md-1,
1394
  .gx-md-1 {
1395
    --bs-gutter-x: 0.25rem;
1396
  }
16848 stevensc 1397
 
16825 efrain 1398
  .g-md-1,
1399
  .gy-md-1 {
1400
    --bs-gutter-y: 0.25rem;
1401
  }
16848 stevensc 1402
 
16825 efrain 1403
  .g-md-2,
1404
  .gx-md-2 {
1405
    --bs-gutter-x: 0.5rem;
1406
  }
16848 stevensc 1407
 
16825 efrain 1408
  .g-md-2,
1409
  .gy-md-2 {
1410
    --bs-gutter-y: 0.5rem;
1411
  }
16848 stevensc 1412
 
16825 efrain 1413
  .g-md-3,
1414
  .gx-md-3 {
1415
    --bs-gutter-x: 1rem;
1416
  }
16848 stevensc 1417
 
16825 efrain 1418
  .g-md-3,
1419
  .gy-md-3 {
1420
    --bs-gutter-y: 1rem;
1421
  }
16848 stevensc 1422
 
16825 efrain 1423
  .g-md-4,
1424
  .gx-md-4 {
1425
    --bs-gutter-x: 1.5rem;
1426
  }
16848 stevensc 1427
 
16825 efrain 1428
  .g-md-4,
1429
  .gy-md-4 {
1430
    --bs-gutter-y: 1.5rem;
1431
  }
16848 stevensc 1432
 
16825 efrain 1433
  .g-md-5,
1434
  .gx-md-5 {
1435
    --bs-gutter-x: 3rem;
1436
  }
16848 stevensc 1437
 
16825 efrain 1438
  .g-md-5,
1439
  .gy-md-5 {
1440
    --bs-gutter-y: 3rem;
1441
  }
16848 stevensc 1442
 
16825 efrain 1443
  .g-md-6,
1444
  .gx-md-6 {
1445
    --bs-gutter-x: 4.5rem;
1446
  }
16848 stevensc 1447
 
16825 efrain 1448
  .g-md-6,
1449
  .gy-md-6 {
1450
    --bs-gutter-y: 4.5rem;
1451
  }
16848 stevensc 1452
 
16825 efrain 1453
  .g-md-7,
1454
  .gx-md-7 {
1455
    --bs-gutter-x: 6rem;
1456
  }
16848 stevensc 1457
 
16825 efrain 1458
  .g-md-7,
1459
  .gy-md-7 {
1460
    --bs-gutter-y: 6rem;
1461
  }
1462
}
16848 stevensc 1463
 
16825 efrain 1464
@media (min-width: 992px) {
1465
  .col-lg {
1466
    flex: 1 0 0%;
1467
  }
16848 stevensc 1468
 
1469
  .row-cols-lg-auto>* {
16825 efrain 1470
    flex: 0 0 auto;
1471
    width: auto;
1472
  }
16848 stevensc 1473
 
1474
  .row-cols-lg-1>* {
16825 efrain 1475
    flex: 0 0 auto;
1476
    width: 100%;
1477
  }
16848 stevensc 1478
 
1479
  .row-cols-lg-2>* {
16825 efrain 1480
    flex: 0 0 auto;
1481
    width: 50%;
1482
  }
16848 stevensc 1483
 
1484
  .row-cols-lg-3>* {
16825 efrain 1485
    flex: 0 0 auto;
1486
    width: 33.3333333333%;
1487
  }
16848 stevensc 1488
 
1489
  .row-cols-lg-4>* {
16825 efrain 1490
    flex: 0 0 auto;
1491
    width: 25%;
1492
  }
16848 stevensc 1493
 
1494
  .row-cols-lg-5>* {
16825 efrain 1495
    flex: 0 0 auto;
1496
    width: 20%;
1497
  }
16848 stevensc 1498
 
1499
  .row-cols-lg-6>* {
16825 efrain 1500
    flex: 0 0 auto;
1501
    width: 16.6666666667%;
1502
  }
16848 stevensc 1503
 
16825 efrain 1504
  .col-lg-auto {
1505
    flex: 0 0 auto;
1506
    width: auto;
1507
  }
16848 stevensc 1508
 
16825 efrain 1509
  .col-lg-1 {
1510
    flex: 0 0 auto;
1511
    width: 8.33333333%;
1512
  }
16848 stevensc 1513
 
16825 efrain 1514
  .col-lg-2 {
1515
    flex: 0 0 auto;
1516
    width: 16.66666667%;
1517
  }
16848 stevensc 1518
 
16825 efrain 1519
  .col-lg-3 {
1520
    flex: 0 0 auto;
1521
    width: 25%;
1522
  }
16848 stevensc 1523
 
16825 efrain 1524
  .col-lg-4 {
1525
    flex: 0 0 auto;
1526
    width: 33.33333333%;
1527
  }
16848 stevensc 1528
 
16825 efrain 1529
  .col-lg-5 {
1530
    flex: 0 0 auto;
1531
    width: 41.66666667%;
1532
  }
16848 stevensc 1533
 
16825 efrain 1534
  .col-lg-6 {
1535
    flex: 0 0 auto;
1536
    width: 50%;
1537
  }
16848 stevensc 1538
 
16825 efrain 1539
  .col-lg-7 {
1540
    flex: 0 0 auto;
1541
    width: 58.33333333%;
1542
  }
16848 stevensc 1543
 
16825 efrain 1544
  .col-lg-8 {
1545
    flex: 0 0 auto;
1546
    width: 66.66666667%;
1547
  }
16848 stevensc 1548
 
16825 efrain 1549
  .col-lg-9 {
1550
    flex: 0 0 auto;
1551
    width: 75%;
1552
  }
16848 stevensc 1553
 
16825 efrain 1554
  .col-lg-10 {
1555
    flex: 0 0 auto;
1556
    width: 83.33333333%;
1557
  }
16848 stevensc 1558
 
16825 efrain 1559
  .col-lg-11 {
1560
    flex: 0 0 auto;
1561
    width: 91.66666667%;
1562
  }
16848 stevensc 1563
 
16825 efrain 1564
  .col-lg-12 {
1565
    flex: 0 0 auto;
1566
    width: 100%;
1567
  }
16848 stevensc 1568
 
16825 efrain 1569
  .offset-lg-0 {
1570
    margin-left: 0;
1571
  }
16848 stevensc 1572
 
16825 efrain 1573
  .offset-lg-1 {
1574
    margin-left: 8.33333333%;
1575
  }
16848 stevensc 1576
 
16825 efrain 1577
  .offset-lg-2 {
1578
    margin-left: 16.66666667%;
1579
  }
16848 stevensc 1580
 
16825 efrain 1581
  .offset-lg-3 {
1582
    margin-left: 25%;
1583
  }
16848 stevensc 1584
 
16825 efrain 1585
  .offset-lg-4 {
1586
    margin-left: 33.33333333%;
1587
  }
16848 stevensc 1588
 
16825 efrain 1589
  .offset-lg-5 {
1590
    margin-left: 41.66666667%;
1591
  }
16848 stevensc 1592
 
16825 efrain 1593
  .offset-lg-6 {
1594
    margin-left: 50%;
1595
  }
16848 stevensc 1596
 
16825 efrain 1597
  .offset-lg-7 {
1598
    margin-left: 58.33333333%;
1599
  }
16848 stevensc 1600
 
16825 efrain 1601
  .offset-lg-8 {
1602
    margin-left: 66.66666667%;
1603
  }
16848 stevensc 1604
 
16825 efrain 1605
  .offset-lg-9 {
1606
    margin-left: 75%;
1607
  }
16848 stevensc 1608
 
16825 efrain 1609
  .offset-lg-10 {
1610
    margin-left: 83.33333333%;
1611
  }
16848 stevensc 1612
 
16825 efrain 1613
  .offset-lg-11 {
1614
    margin-left: 91.66666667%;
1615
  }
16848 stevensc 1616
 
16825 efrain 1617
  .g-lg-0,
1618
  .gx-lg-0 {
1619
    --bs-gutter-x: 0;
1620
  }
16848 stevensc 1621
 
16825 efrain 1622
  .g-lg-0,
1623
  .gy-lg-0 {
1624
    --bs-gutter-y: 0;
1625
  }
16848 stevensc 1626
 
16825 efrain 1627
  .g-lg-1,
1628
  .gx-lg-1 {
1629
    --bs-gutter-x: 0.25rem;
1630
  }
16848 stevensc 1631
 
16825 efrain 1632
  .g-lg-1,
1633
  .gy-lg-1 {
1634
    --bs-gutter-y: 0.25rem;
1635
  }
16848 stevensc 1636
 
16825 efrain 1637
  .g-lg-2,
1638
  .gx-lg-2 {
1639
    --bs-gutter-x: 0.5rem;
1640
  }
16848 stevensc 1641
 
16825 efrain 1642
  .g-lg-2,
1643
  .gy-lg-2 {
1644
    --bs-gutter-y: 0.5rem;
1645
  }
16848 stevensc 1646
 
16825 efrain 1647
  .g-lg-3,
1648
  .gx-lg-3 {
1649
    --bs-gutter-x: 1rem;
1650
  }
16848 stevensc 1651
 
16825 efrain 1652
  .g-lg-3,
1653
  .gy-lg-3 {
1654
    --bs-gutter-y: 1rem;
1655
  }
16848 stevensc 1656
 
16825 efrain 1657
  .g-lg-4,
1658
  .gx-lg-4 {
1659
    --bs-gutter-x: 1.5rem;
1660
  }
16848 stevensc 1661
 
16825 efrain 1662
  .g-lg-4,
1663
  .gy-lg-4 {
1664
    --bs-gutter-y: 1.5rem;
1665
  }
16848 stevensc 1666
 
16825 efrain 1667
  .g-lg-5,
1668
  .gx-lg-5 {
1669
    --bs-gutter-x: 3rem;
1670
  }
16848 stevensc 1671
 
16825 efrain 1672
  .g-lg-5,
1673
  .gy-lg-5 {
1674
    --bs-gutter-y: 3rem;
1675
  }
16848 stevensc 1676
 
16825 efrain 1677
  .g-lg-6,
1678
  .gx-lg-6 {
1679
    --bs-gutter-x: 4.5rem;
1680
  }
16848 stevensc 1681
 
16825 efrain 1682
  .g-lg-6,
1683
  .gy-lg-6 {
1684
    --bs-gutter-y: 4.5rem;
1685
  }
16848 stevensc 1686
 
16825 efrain 1687
  .g-lg-7,
1688
  .gx-lg-7 {
1689
    --bs-gutter-x: 6rem;
1690
  }
16848 stevensc 1691
 
16825 efrain 1692
  .g-lg-7,
1693
  .gy-lg-7 {
1694
    --bs-gutter-y: 6rem;
1695
  }
1696
}
16848 stevensc 1697
 
16825 efrain 1698
@media (min-width: 1200px) {
1699
  .col-xl {
1700
    flex: 1 0 0%;
1701
  }
16848 stevensc 1702
 
1703
  .row-cols-xl-auto>* {
16825 efrain 1704
    flex: 0 0 auto;
1705
    width: auto;
1706
  }
16848 stevensc 1707
 
1708
  .row-cols-xl-1>* {
16825 efrain 1709
    flex: 0 0 auto;
1710
    width: 100%;
1711
  }
16848 stevensc 1712
 
1713
  .row-cols-xl-2>* {
16825 efrain 1714
    flex: 0 0 auto;
1715
    width: 50%;
1716
  }
16848 stevensc 1717
 
1718
  .row-cols-xl-3>* {
16825 efrain 1719
    flex: 0 0 auto;
1720
    width: 33.3333333333%;
1721
  }
16848 stevensc 1722
 
1723
  .row-cols-xl-4>* {
16825 efrain 1724
    flex: 0 0 auto;
1725
    width: 25%;
1726
  }
16848 stevensc 1727
 
1728
  .row-cols-xl-5>* {
16825 efrain 1729
    flex: 0 0 auto;
1730
    width: 20%;
1731
  }
16848 stevensc 1732
 
1733
  .row-cols-xl-6>* {
16825 efrain 1734
    flex: 0 0 auto;
1735
    width: 16.6666666667%;
1736
  }
16848 stevensc 1737
 
16825 efrain 1738
  .col-xl-auto {
1739
    flex: 0 0 auto;
1740
    width: auto;
1741
  }
16848 stevensc 1742
 
16825 efrain 1743
  .col-xl-1 {
1744
    flex: 0 0 auto;
1745
    width: 8.33333333%;
1746
  }
16848 stevensc 1747
 
16825 efrain 1748
  .col-xl-2 {
1749
    flex: 0 0 auto;
1750
    width: 16.66666667%;
1751
  }
16848 stevensc 1752
 
16825 efrain 1753
  .col-xl-3 {
1754
    flex: 0 0 auto;
1755
    width: 25%;
1756
  }
16848 stevensc 1757
 
16825 efrain 1758
  .col-xl-4 {
1759
    flex: 0 0 auto;
1760
    width: 33.33333333%;
1761
  }
16848 stevensc 1762
 
16825 efrain 1763
  .col-xl-5 {
1764
    flex: 0 0 auto;
1765
    width: 41.66666667%;
1766
  }
16848 stevensc 1767
 
16825 efrain 1768
  .col-xl-6 {
1769
    flex: 0 0 auto;
1770
    width: 50%;
1771
  }
16848 stevensc 1772
 
16825 efrain 1773
  .col-xl-7 {
1774
    flex: 0 0 auto;
1775
    width: 58.33333333%;
1776
  }
16848 stevensc 1777
 
16825 efrain 1778
  .col-xl-8 {
1779
    flex: 0 0 auto;
1780
    width: 66.66666667%;
1781
  }
16848 stevensc 1782
 
16825 efrain 1783
  .col-xl-9 {
1784
    flex: 0 0 auto;
1785
    width: 75%;
1786
  }
16848 stevensc 1787
 
16825 efrain 1788
  .col-xl-10 {
1789
    flex: 0 0 auto;
1790
    width: 83.33333333%;
1791
  }
16848 stevensc 1792
 
16825 efrain 1793
  .col-xl-11 {
1794
    flex: 0 0 auto;
1795
    width: 91.66666667%;
1796
  }
16848 stevensc 1797
 
16825 efrain 1798
  .col-xl-12 {
1799
    flex: 0 0 auto;
1800
    width: 100%;
1801
  }
16848 stevensc 1802
 
16825 efrain 1803
  .offset-xl-0 {
1804
    margin-left: 0;
1805
  }
16848 stevensc 1806
 
16825 efrain 1807
  .offset-xl-1 {
1808
    margin-left: 8.33333333%;
1809
  }
16848 stevensc 1810
 
16825 efrain 1811
  .offset-xl-2 {
1812
    margin-left: 16.66666667%;
1813
  }
16848 stevensc 1814
 
16825 efrain 1815
  .offset-xl-3 {
1816
    margin-left: 25%;
1817
  }
16848 stevensc 1818
 
16825 efrain 1819
  .offset-xl-4 {
1820
    margin-left: 33.33333333%;
1821
  }
16848 stevensc 1822
 
16825 efrain 1823
  .offset-xl-5 {
1824
    margin-left: 41.66666667%;
1825
  }
16848 stevensc 1826
 
16825 efrain 1827
  .offset-xl-6 {
1828
    margin-left: 50%;
1829
  }
16848 stevensc 1830
 
16825 efrain 1831
  .offset-xl-7 {
1832
    margin-left: 58.33333333%;
1833
  }
16848 stevensc 1834
 
16825 efrain 1835
  .offset-xl-8 {
1836
    margin-left: 66.66666667%;
1837
  }
16848 stevensc 1838
 
16825 efrain 1839
  .offset-xl-9 {
1840
    margin-left: 75%;
1841
  }
16848 stevensc 1842
 
16825 efrain 1843
  .offset-xl-10 {
1844
    margin-left: 83.33333333%;
1845
  }
16848 stevensc 1846
 
16825 efrain 1847
  .offset-xl-11 {
1848
    margin-left: 91.66666667%;
1849
  }
16848 stevensc 1850
 
16825 efrain 1851
  .g-xl-0,
1852
  .gx-xl-0 {
1853
    --bs-gutter-x: 0;
1854
  }
16848 stevensc 1855
 
16825 efrain 1856
  .g-xl-0,
1857
  .gy-xl-0 {
1858
    --bs-gutter-y: 0;
1859
  }
16848 stevensc 1860
 
16825 efrain 1861
  .g-xl-1,
1862
  .gx-xl-1 {
1863
    --bs-gutter-x: 0.25rem;
1864
  }
16848 stevensc 1865
 
16825 efrain 1866
  .g-xl-1,
1867
  .gy-xl-1 {
1868
    --bs-gutter-y: 0.25rem;
1869
  }
16848 stevensc 1870
 
16825 efrain 1871
  .g-xl-2,
1872
  .gx-xl-2 {
1873
    --bs-gutter-x: 0.5rem;
1874
  }
16848 stevensc 1875
 
16825 efrain 1876
  .g-xl-2,
1877
  .gy-xl-2 {
1878
    --bs-gutter-y: 0.5rem;
1879
  }
16848 stevensc 1880
 
16825 efrain 1881
  .g-xl-3,
1882
  .gx-xl-3 {
1883
    --bs-gutter-x: 1rem;
1884
  }
16848 stevensc 1885
 
16825 efrain 1886
  .g-xl-3,
1887
  .gy-xl-3 {
1888
    --bs-gutter-y: 1rem;
1889
  }
16848 stevensc 1890
 
16825 efrain 1891
  .g-xl-4,
1892
  .gx-xl-4 {
1893
    --bs-gutter-x: 1.5rem;
1894
  }
16848 stevensc 1895
 
16825 efrain 1896
  .g-xl-4,
1897
  .gy-xl-4 {
1898
    --bs-gutter-y: 1.5rem;
1899
  }
16848 stevensc 1900
 
16825 efrain 1901
  .g-xl-5,
1902
  .gx-xl-5 {
1903
    --bs-gutter-x: 3rem;
1904
  }
16848 stevensc 1905
 
16825 efrain 1906
  .g-xl-5,
1907
  .gy-xl-5 {
1908
    --bs-gutter-y: 3rem;
1909
  }
16848 stevensc 1910
 
16825 efrain 1911
  .g-xl-6,
1912
  .gx-xl-6 {
1913
    --bs-gutter-x: 4.5rem;
1914
  }
16848 stevensc 1915
 
16825 efrain 1916
  .g-xl-6,
1917
  .gy-xl-6 {
1918
    --bs-gutter-y: 4.5rem;
1919
  }
16848 stevensc 1920
 
16825 efrain 1921
  .g-xl-7,
1922
  .gx-xl-7 {
1923
    --bs-gutter-x: 6rem;
1924
  }
16848 stevensc 1925
 
16825 efrain 1926
  .g-xl-7,
1927
  .gy-xl-7 {
1928
    --bs-gutter-y: 6rem;
1929
  }
1930
}
16848 stevensc 1931
 
16825 efrain 1932
@media (min-width: 1400px) {
1933
  .col-xxl {
1934
    flex: 1 0 0%;
1935
  }
16848 stevensc 1936
 
1937
  .row-cols-xxl-auto>* {
16825 efrain 1938
    flex: 0 0 auto;
1939
    width: auto;
1940
  }
16848 stevensc 1941
 
1942
  .row-cols-xxl-1>* {
16825 efrain 1943
    flex: 0 0 auto;
1944
    width: 100%;
1945
  }
16848 stevensc 1946
 
1947
  .row-cols-xxl-2>* {
16825 efrain 1948
    flex: 0 0 auto;
1949
    width: 50%;
1950
  }
16848 stevensc 1951
 
1952
  .row-cols-xxl-3>* {
16825 efrain 1953
    flex: 0 0 auto;
1954
    width: 33.3333333333%;
1955
  }
16848 stevensc 1956
 
1957
  .row-cols-xxl-4>* {
16825 efrain 1958
    flex: 0 0 auto;
1959
    width: 25%;
1960
  }
16848 stevensc 1961
 
1962
  .row-cols-xxl-5>* {
16825 efrain 1963
    flex: 0 0 auto;
1964
    width: 20%;
1965
  }
16848 stevensc 1966
 
1967
  .row-cols-xxl-6>* {
16825 efrain 1968
    flex: 0 0 auto;
1969
    width: 16.6666666667%;
1970
  }
16848 stevensc 1971
 
16825 efrain 1972
  .col-xxl-auto {
1973
    flex: 0 0 auto;
1974
    width: auto;
1975
  }
16848 stevensc 1976
 
16825 efrain 1977
  .col-xxl-1 {
1978
    flex: 0 0 auto;
1979
    width: 8.33333333%;
1980
  }
16848 stevensc 1981
 
16825 efrain 1982
  .col-xxl-2 {
1983
    flex: 0 0 auto;
1984
    width: 16.66666667%;
1985
  }
16848 stevensc 1986
 
16825 efrain 1987
  .col-xxl-3 {
1988
    flex: 0 0 auto;
1989
    width: 25%;
1990
  }
16848 stevensc 1991
 
16825 efrain 1992
  .col-xxl-4 {
1993
    flex: 0 0 auto;
1994
    width: 33.33333333%;
1995
  }
16848 stevensc 1996
 
16825 efrain 1997
  .col-xxl-5 {
1998
    flex: 0 0 auto;
1999
    width: 41.66666667%;
2000
  }
16848 stevensc 2001
 
16825 efrain 2002
  .col-xxl-6 {
2003
    flex: 0 0 auto;
2004
    width: 50%;
2005
  }
16848 stevensc 2006
 
16825 efrain 2007
  .col-xxl-7 {
2008
    flex: 0 0 auto;
2009
    width: 58.33333333%;
2010
  }
16848 stevensc 2011
 
16825 efrain 2012
  .col-xxl-8 {
2013
    flex: 0 0 auto;
2014
    width: 66.66666667%;
2015
  }
16848 stevensc 2016
 
16825 efrain 2017
  .col-xxl-9 {
2018
    flex: 0 0 auto;
2019
    width: 75%;
2020
  }
16848 stevensc 2021
 
16825 efrain 2022
  .col-xxl-10 {
2023
    flex: 0 0 auto;
2024
    width: 83.33333333%;
2025
  }
16848 stevensc 2026
 
16825 efrain 2027
  .col-xxl-11 {
2028
    flex: 0 0 auto;
2029
    width: 91.66666667%;
2030
  }
16848 stevensc 2031
 
16825 efrain 2032
  .col-xxl-12 {
2033
    flex: 0 0 auto;
2034
    width: 100%;
2035
  }
16848 stevensc 2036
 
16825 efrain 2037
  .offset-xxl-0 {
2038
    margin-left: 0;
2039
  }
16848 stevensc 2040
 
16825 efrain 2041
  .offset-xxl-1 {
2042
    margin-left: 8.33333333%;
2043
  }
16848 stevensc 2044
 
16825 efrain 2045
  .offset-xxl-2 {
2046
    margin-left: 16.66666667%;
2047
  }
16848 stevensc 2048
 
16825 efrain 2049
  .offset-xxl-3 {
2050
    margin-left: 25%;
2051
  }
16848 stevensc 2052
 
16825 efrain 2053
  .offset-xxl-4 {
2054
    margin-left: 33.33333333%;
2055
  }
16848 stevensc 2056
 
16825 efrain 2057
  .offset-xxl-5 {
2058
    margin-left: 41.66666667%;
2059
  }
16848 stevensc 2060
 
16825 efrain 2061
  .offset-xxl-6 {
2062
    margin-left: 50%;
2063
  }
16848 stevensc 2064
 
16825 efrain 2065
  .offset-xxl-7 {
2066
    margin-left: 58.33333333%;
2067
  }
16848 stevensc 2068
 
16825 efrain 2069
  .offset-xxl-8 {
2070
    margin-left: 66.66666667%;
2071
  }
16848 stevensc 2072
 
16825 efrain 2073
  .offset-xxl-9 {
2074
    margin-left: 75%;
2075
  }
16848 stevensc 2076
 
16825 efrain 2077
  .offset-xxl-10 {
2078
    margin-left: 83.33333333%;
2079
  }
16848 stevensc 2080
 
16825 efrain 2081
  .offset-xxl-11 {
2082
    margin-left: 91.66666667%;
2083
  }
16848 stevensc 2084
 
16825 efrain 2085
  .g-xxl-0,
2086
  .gx-xxl-0 {
2087
    --bs-gutter-x: 0;
2088
  }
16848 stevensc 2089
 
16825 efrain 2090
  .g-xxl-0,
2091
  .gy-xxl-0 {
2092
    --bs-gutter-y: 0;
2093
  }
16848 stevensc 2094
 
16825 efrain 2095
  .g-xxl-1,
2096
  .gx-xxl-1 {
2097
    --bs-gutter-x: 0.25rem;
2098
  }
16848 stevensc 2099
 
16825 efrain 2100
  .g-xxl-1,
2101
  .gy-xxl-1 {
2102
    --bs-gutter-y: 0.25rem;
2103
  }
16848 stevensc 2104
 
16825 efrain 2105
  .g-xxl-2,
2106
  .gx-xxl-2 {
2107
    --bs-gutter-x: 0.5rem;
2108
  }
16848 stevensc 2109
 
16825 efrain 2110
  .g-xxl-2,
2111
  .gy-xxl-2 {
2112
    --bs-gutter-y: 0.5rem;
2113
  }
16848 stevensc 2114
 
16825 efrain 2115
  .g-xxl-3,
2116
  .gx-xxl-3 {
2117
    --bs-gutter-x: 1rem;
2118
  }
16848 stevensc 2119
 
16825 efrain 2120
  .g-xxl-3,
2121
  .gy-xxl-3 {
2122
    --bs-gutter-y: 1rem;
2123
  }
16848 stevensc 2124
 
16825 efrain 2125
  .g-xxl-4,
2126
  .gx-xxl-4 {
2127
    --bs-gutter-x: 1.5rem;
2128
  }
16848 stevensc 2129
 
16825 efrain 2130
  .g-xxl-4,
2131
  .gy-xxl-4 {
2132
    --bs-gutter-y: 1.5rem;
2133
  }
16848 stevensc 2134
 
16825 efrain 2135
  .g-xxl-5,
2136
  .gx-xxl-5 {
2137
    --bs-gutter-x: 3rem;
2138
  }
16848 stevensc 2139
 
16825 efrain 2140
  .g-xxl-5,
2141
  .gy-xxl-5 {
2142
    --bs-gutter-y: 3rem;
2143
  }
16848 stevensc 2144
 
16825 efrain 2145
  .g-xxl-6,
2146
  .gx-xxl-6 {
2147
    --bs-gutter-x: 4.5rem;
2148
  }
16848 stevensc 2149
 
16825 efrain 2150
  .g-xxl-6,
2151
  .gy-xxl-6 {
2152
    --bs-gutter-y: 4.5rem;
2153
  }
16848 stevensc 2154
 
16825 efrain 2155
  .g-xxl-7,
2156
  .gx-xxl-7 {
2157
    --bs-gutter-x: 6rem;
2158
  }
16848 stevensc 2159
 
16825 efrain 2160
  .g-xxl-7,
2161
  .gy-xxl-7 {
2162
    --bs-gutter-y: 6rem;
2163
  }
2164
}
16848 stevensc 2165
 
16825 efrain 2166
.table {
2167
  --bs-table-color: var(--bs-body-color);
2168
  --bs-table-bg: transparent;
2169
  --bs-table-border-color: var(--bs-border-color);
2170
  --bs-table-accent-bg: transparent;
2171
  --bs-table-striped-color: var(--bs-body-color);
2172
  --bs-table-striped-bg: #e9ecef;
2173
  --bs-table-active-color: var(--bs-body-color);
2174
  --bs-table-active-bg: #dee2e6;
2175
  --bs-table-hover-color: var(--bs-body-color);
2176
  --bs-table-hover-bg: #e9ecef;
2177
  width: 100%;
2178
  margin-bottom: 1rem;
2179
  color: var(--bs-table-color);
2180
  vertical-align: top;
2181
  border-color: var(--bs-table-border-color);
2182
}
16848 stevensc 2183
 
2184
.table> :not(caption)>*>* {
16825 efrain 2185
  padding: 0.85rem 0.85rem;
2186
  background-color: var(--bs-table-bg);
2187
  border-bottom-width: 1px;
2188
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2189
}
16848 stevensc 2190
 
2191
.table>tbody {
16825 efrain 2192
  vertical-align: inherit;
2193
}
16848 stevensc 2194
 
2195
.table>thead {
16825 efrain 2196
  vertical-align: bottom;
2197
}
2198
 
2199
.table-group-divider {
2200
  border-top: 2px solid #e9ecef;
2201
}
2202
 
2203
.caption-top {
2204
  caption-side: top;
2205
}
2206
 
16848 stevensc 2207
.table-sm> :not(caption)>*>* {
16825 efrain 2208
  padding: 0.55rem 0.55rem;
2209
}
2210
 
16848 stevensc 2211
.table-bordered> :not(caption)>* {
16825 efrain 2212
  border-width: 1px 0;
2213
}
16848 stevensc 2214
 
2215
.table-bordered> :not(caption)>*>* {
16825 efrain 2216
  border-width: 0 1px;
2217
}
2218
 
16848 stevensc 2219
.table-borderless> :not(caption)>*>* {
16825 efrain 2220
  border-bottom-width: 0;
2221
}
16848 stevensc 2222
 
2223
.table-borderless> :not(:first-child) {
16825 efrain 2224
  border-top-width: 0;
2225
}
2226
 
16848 stevensc 2227
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2228
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2229
  color: var(--bs-table-striped-color);
2230
}
2231
 
16848 stevensc 2232
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2233
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2234
  color: var(--bs-table-striped-color);
2235
}
2236
 
2237
.table-active {
2238
  --bs-table-accent-bg: var(--bs-table-active-bg);
2239
  color: var(--bs-table-active-color);
2240
}
2241
 
16848 stevensc 2242
.table-hover>tbody>tr:hover>* {
16825 efrain 2243
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2244
  color: var(--bs-table-hover-color);
2245
}
2246
 
2247
.table-primary {
2248
  --bs-table-color: #000;
2249
  --bs-table-bg: #e0e3ff;
2250
  --bs-table-border-color: #cacce6;
2251
  --bs-table-striped-bg: #d5d8f2;
2252
  --bs-table-striped-color: #000;
2253
  --bs-table-active-bg: #cacce6;
2254
  --bs-table-active-color: #000;
2255
  --bs-table-hover-bg: #cfd2ec;
2256
  --bs-table-hover-color: #000;
2257
  color: var(--bs-table-color);
2258
  border-color: var(--bs-table-border-color);
2259
}
2260
 
2261
.table-secondary {
2262
  --bs-table-color: #000;
2263
  --bs-table-bg: #e4e7ec;
2264
  --bs-table-border-color: #cdd0d4;
2265
  --bs-table-striped-bg: #d9dbe0;
2266
  --bs-table-striped-color: #000;
2267
  --bs-table-active-bg: #cdd0d4;
2268
  --bs-table-active-color: #000;
2269
  --bs-table-hover-bg: #d3d6da;
2270
  --bs-table-hover-color: #000;
2271
  color: var(--bs-table-color);
2272
  border-color: var(--bs-table-border-color);
2273
}
2274
 
2275
.table-success {
2276
  --bs-table-color: #000;
2277
  --bs-table-bg: #cdeddb;
2278
  --bs-table-border-color: #b9d5c5;
2279
  --bs-table-striped-bg: #c3e1d0;
2280
  --bs-table-striped-color: #000;
2281
  --bs-table-active-bg: #b9d5c5;
2282
  --bs-table-active-color: #000;
2283
  --bs-table-hover-bg: #bedbcb;
2284
  --bs-table-hover-color: #000;
2285
  color: var(--bs-table-color);
2286
  border-color: var(--bs-table-border-color);
2287
}
2288
 
2289
.table-info {
2290
  --bs-table-color: #000;
2291
  --bs-table-bg: #e0f6f6;
2292
  --bs-table-border-color: #cadddd;
2293
  --bs-table-striped-bg: #d5eaea;
2294
  --bs-table-striped-color: #000;
2295
  --bs-table-active-bg: #cadddd;
2296
  --bs-table-active-color: #000;
2297
  --bs-table-hover-bg: #cfe4e4;
2298
  --bs-table-hover-color: #000;
2299
  color: var(--bs-table-color);
2300
  border-color: var(--bs-table-border-color);
2301
}
2302
 
2303
.table-warning {
2304
  --bs-table-color: #000;
2305
  --bs-table-bg: #fef2cd;
2306
  --bs-table-border-color: #e5dab9;
2307
  --bs-table-striped-bg: #f1e6c3;
2308
  --bs-table-striped-color: #000;
2309
  --bs-table-active-bg: #e5dab9;
2310
  --bs-table-active-color: #000;
2311
  --bs-table-hover-bg: #ebe0be;
2312
  --bs-table-hover-color: #000;
2313
  color: var(--bs-table-color);
2314
  border-color: var(--bs-table-border-color);
2315
}
2316
 
2317
.table-danger {
2318
  --bs-table-color: #000;
2319
  --bs-table-bg: #ffd6e0;
2320
  --bs-table-border-color: #e6c1ca;
2321
  --bs-table-striped-bg: #f2cbd5;
2322
  --bs-table-striped-color: #000;
2323
  --bs-table-active-bg: #e6c1ca;
2324
  --bs-table-active-color: #000;
2325
  --bs-table-hover-bg: #ecc6cf;
2326
  --bs-table-hover-color: #000;
2327
  color: var(--bs-table-color);
2328
  border-color: var(--bs-table-border-color);
2329
}
2330
 
2331
.table-light {
2332
  --bs-table-color: #000;
2333
  --bs-table-bg: #e9ecef;
2334
  --bs-table-border-color: #d2d4d7;
2335
  --bs-table-striped-bg: #dde0e3;
2336
  --bs-table-striped-color: #000;
2337
  --bs-table-active-bg: #d2d4d7;
2338
  --bs-table-active-color: #000;
2339
  --bs-table-hover-bg: #d8dadd;
2340
  --bs-table-hover-color: #000;
2341
  color: var(--bs-table-color);
2342
  border-color: var(--bs-table-border-color);
2343
}
2344
 
2345
.table-dark {
2346
  --bs-table-color: #fff;
2347
  --bs-table-bg: #060c17;
2348
  --bs-table-border-color: #1f242e;
2349
  --bs-table-striped-bg: #121823;
2350
  --bs-table-striped-color: #fff;
2351
  --bs-table-active-bg: #1f242e;
2352
  --bs-table-active-color: #fff;
2353
  --bs-table-hover-bg: #191e28;
2354
  --bs-table-hover-color: #fff;
2355
  color: var(--bs-table-color);
2356
  border-color: var(--bs-table-border-color);
2357
}
2358
 
2359
.table-responsive {
2360
  overflow-x: auto;
2361
  -webkit-overflow-scrolling: touch;
2362
}
2363
 
2364
@media (max-width: 575.98px) {
2365
  .table-responsive-sm {
2366
    overflow-x: auto;
2367
    -webkit-overflow-scrolling: touch;
2368
  }
2369
}
16848 stevensc 2370
 
16825 efrain 2371
@media (max-width: 767.98px) {
2372
  .table-responsive-md {
2373
    overflow-x: auto;
2374
    -webkit-overflow-scrolling: touch;
2375
  }
2376
}
16848 stevensc 2377
 
16825 efrain 2378
@media (max-width: 991.98px) {
2379
  .table-responsive-lg {
2380
    overflow-x: auto;
2381
    -webkit-overflow-scrolling: touch;
2382
  }
2383
}
16848 stevensc 2384
 
16825 efrain 2385
@media (max-width: 1199.98px) {
2386
  .table-responsive-xl {
2387
    overflow-x: auto;
2388
    -webkit-overflow-scrolling: touch;
2389
  }
2390
}
16848 stevensc 2391
 
16825 efrain 2392
@media (max-width: 1399.98px) {
2393
  .table-responsive-xxl {
2394
    overflow-x: auto;
2395
    -webkit-overflow-scrolling: touch;
2396
  }
2397
}
16848 stevensc 2398
 
16825 efrain 2399
.form-label {
2400
  margin-bottom: 0.5rem;
2401
}
2402
 
2403
.col-form-label {
2404
  padding-top: calc(0.469rem + 1px);
2405
  padding-bottom: calc(0.469rem + 1px);
2406
  margin-bottom: 0;
2407
  font-size: inherit;
2408
  line-height: 1.5;
2409
}
2410
 
2411
.col-form-label-lg {
2412
  padding-top: calc(0.5rem + 1px);
2413
  padding-bottom: calc(0.5rem + 1px);
2414
  font-size: 1rem;
2415
}
2416
 
2417
.col-form-label-sm {
2418
  padding-top: calc(0.391rem + 1px);
2419
  padding-bottom: calc(0.391rem + 1px);
2420
  font-size: 0.812rem;
2421
}
2422
 
2423
.form-text {
2424
  margin-top: 0.25rem;
2425
  font-size: 0.875em;
2426
  color: #7987a1;
2427
}
2428
 
16848 stevensc 2429
.form-control,
2430
.typeahead.tt-input,
2431
.typeahead.tt-hint,
2432
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2433
  display: block;
2434
  width: 100%;
2435
  padding: 0.469rem 0.8rem;
2436
  font-size: 0.875rem;
2437
  font-weight: 400;
2438
  line-height: 1.5;
2439
  color: #000;
2440
  background-color: #fff;
2441
  background-clip: padding-box;
2442
  border: 1px solid #e9ecef;
2443
  appearance: none;
2444
  border-radius: 0.25rem;
2445
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2446
}
16848 stevensc 2447
 
16825 efrain 2448
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2449
 
2450
  .form-control,
2451
  .typeahead.tt-input,
2452
  .typeahead.tt-hint,
2453
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2454
    transition: none;
2455
  }
2456
}
16848 stevensc 2457
 
2458
.form-control[type=file],
2459
[type=file].typeahead.tt-input,
2460
[type=file].typeahead.tt-hint,
2461
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2462
  overflow: hidden;
2463
}
16848 stevensc 2464
 
2465
.form-control[type=file]:not(:disabled):not([readonly]),
2466
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2467
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2468
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2469
  cursor: pointer;
2470
}
16848 stevensc 2471
 
2472
.form-control:focus,
2473
.typeahead.tt-input:focus,
2474
.typeahead.tt-hint:focus,
2475
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2476
  color: #000;
2477
  background-color: #fff;
2478
  border-color: #cbd1db;
2479
  outline: 0;
2480
  box-shadow: none;
2481
}
16848 stevensc 2482
 
2483
.form-control::-webkit-date-and-time-value,
2484
.typeahead.tt-input::-webkit-date-and-time-value,
2485
.typeahead.tt-hint::-webkit-date-and-time-value,
2486
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2487
  height: 1.5em;
2488
}
16848 stevensc 2489
 
2490
.form-control::placeholder,
2491
.typeahead.tt-input::placeholder,
2492
.typeahead.tt-hint::placeholder,
2493
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2494
  color: #aeb7c5;
2495
  opacity: 1;
2496
}
16848 stevensc 2497
 
2498
.form-control:disabled,
2499
.typeahead.tt-input:disabled,
2500
.typeahead.tt-hint:disabled,
2501
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2502
  background-color: #e9ecef;
2503
  opacity: 1;
2504
}
16848 stevensc 2505
 
2506
.form-control::file-selector-button,
2507
.typeahead.tt-input::file-selector-button,
2508
.typeahead.tt-hint::file-selector-button,
2509
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2510
  padding: 0.469rem 0.8rem;
2511
  margin: -0.469rem -0.8rem;
2512
  margin-inline-end: 0.8rem;
2513
  color: #000;
2514
  background-color: #f8f9fa;
2515
  pointer-events: none;
2516
  border-color: inherit;
2517
  border-style: solid;
2518
  border-width: 0;
2519
  border-inline-end-width: 1px;
2520
  border-radius: 0;
2521
  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;
2522
}
16848 stevensc 2523
 
16825 efrain 2524
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2525
 
2526
  .form-control::file-selector-button,
2527
  .typeahead.tt-input::file-selector-button,
2528
  .typeahead.tt-hint::file-selector-button,
2529
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2530
    transition: none;
2531
  }
2532
}
16848 stevensc 2533
 
2534
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2535
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2536
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2537
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2538
  background-color: #ecedee;
2539
}
2540
 
2541
.form-control-plaintext {
2542
  display: block;
2543
  width: 100%;
2544
  padding: 0.469rem 0;
2545
  margin-bottom: 0;
2546
  line-height: 1.5;
2547
  color: #000;
2548
  background-color: transparent;
2549
  border: solid transparent;
2550
  border-width: 1px 0;
2551
}
16848 stevensc 2552
 
16825 efrain 2553
.form-control-plaintext:focus {
2554
  outline: 0;
2555
}
16848 stevensc 2556
 
2557
.form-control-plaintext.form-control-sm,
2558
.form-control-plaintext.form-control-lg {
16825 efrain 2559
  padding-right: 0;
2560
  padding-left: 0;
2561
}
2562
 
2563
.form-control-sm {
2564
  min-height: calc(1.5em + 0.782rem + 2px);
2565
  padding: 0.391rem 0.8rem;
2566
  font-size: 0.812rem;
2567
  border-radius: 0.25rem;
2568
}
16848 stevensc 2569
 
16825 efrain 2570
.form-control-sm::file-selector-button {
2571
  padding: 0.391rem 0.8rem;
2572
  margin: -0.391rem -0.8rem;
2573
  margin-inline-end: 0.8rem;
2574
}
2575
 
2576
.form-control-lg {
2577
  min-height: calc(1.5em + 1rem + 2px);
2578
  padding: 0.5rem 0.8rem;
2579
  font-size: 1rem;
2580
  border-radius: 0.25rem;
2581
}
16848 stevensc 2582
 
16825 efrain 2583
.form-control-lg::file-selector-button {
2584
  padding: 0.5rem 0.8rem;
2585
  margin: -0.5rem -0.8rem;
2586
  margin-inline-end: 0.8rem;
2587
}
2588
 
16848 stevensc 2589
textarea.form-control,
2590
textarea.typeahead.tt-input,
2591
textarea.typeahead.tt-hint,
2592
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2593
  min-height: calc(1.5em + 0.938rem + 2px);
2594
}
16848 stevensc 2595
 
16825 efrain 2596
textarea.form-control-sm {
2597
  min-height: calc(1.5em + 0.782rem + 2px);
2598
}
16848 stevensc 2599
 
16825 efrain 2600
textarea.form-control-lg {
2601
  min-height: calc(1.5em + 1rem + 2px);
2602
}
2603
 
2604
.form-control-color {
2605
  width: 3rem;
2606
  height: calc(1.5em + 0.938rem + 2px);
2607
  padding: 0.469rem;
2608
}
16848 stevensc 2609
 
16825 efrain 2610
.form-control-color:not(:disabled):not([readonly]) {
2611
  cursor: pointer;
2612
}
16848 stevensc 2613
 
16825 efrain 2614
.form-control-color::-moz-color-swatch {
2615
  border: 0 !important;
2616
  border-radius: 0.25rem;
2617
}
16848 stevensc 2618
 
16825 efrain 2619
.form-control-color::-webkit-color-swatch {
2620
  border-radius: 0.25rem;
2621
}
16848 stevensc 2622
 
16825 efrain 2623
.form-control-color.form-control-sm {
2624
  height: calc(1.5em + 0.782rem + 2px);
2625
}
16848 stevensc 2626
 
16825 efrain 2627
.form-control-color.form-control-lg {
2628
  height: calc(1.5em + 1rem + 2px);
2629
}
2630
 
2631
.form-select {
2632
  display: block;
2633
  width: 100%;
2634
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2635
  -moz-padding-start: calc(0.8rem - 3px);
2636
  font-size: 0.875rem;
2637
  font-weight: 400;
2638
  line-height: 1.5;
2639
  color: #000;
2640
  background-color: #fff;
2641
  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");
2642
  background-repeat: no-repeat;
2643
  background-position: right 0.8rem center;
2644
  background-size: 16px 12px;
2645
  border: 1px solid #e9ecef;
2646
  border-radius: 0.25rem;
2647
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2648
  appearance: none;
2649
}
16848 stevensc 2650
 
16825 efrain 2651
@media (prefers-reduced-motion: reduce) {
2652
  .form-select {
2653
    transition: none;
2654
  }
2655
}
16848 stevensc 2656
 
16825 efrain 2657
.form-select:focus {
2658
  border-color: #cbd1db;
2659
  outline: 0;
2660
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2661
}
16848 stevensc 2662
 
2663
.form-select[multiple],
2664
.form-select[size]:not([size="1"]) {
16825 efrain 2665
  padding-right: 0.8rem;
2666
  background-image: none;
2667
}
16848 stevensc 2668
 
16825 efrain 2669
.form-select:disabled {
2670
  background-color: #e9ecef;
2671
}
16848 stevensc 2672
 
16825 efrain 2673
.form-select:-moz-focusring {
2674
  color: transparent;
2675
  text-shadow: 0 0 0 #000;
2676
}
2677
 
2678
.form-select-sm {
2679
  padding-top: 0.391rem;
2680
  padding-bottom: 0.391rem;
2681
  padding-left: 0.8rem;
2682
  font-size: 0.812rem;
2683
  border-radius: 0.25rem;
2684
}
2685
 
2686
.form-select-lg {
2687
  padding-top: 0.5rem;
2688
  padding-bottom: 0.5rem;
2689
  padding-left: 0.8rem;
2690
  font-size: 1rem;
2691
  border-radius: 0.25rem;
2692
}
2693
 
2694
.form-check {
2695
  display: block;
2696
  min-height: 1.3125rem;
2697
  padding-left: 1.8em;
2698
  margin-bottom: 0.125rem;
2699
}
16848 stevensc 2700
 
16825 efrain 2701
.form-check .form-check-input {
2702
  float: left;
2703
  margin-left: -1.8em;
2704
}
2705
 
2706
.form-check-reverse {
2707
  padding-right: 1.8em;
2708
  padding-left: 0;
2709
  text-align: right;
2710
}
16848 stevensc 2711
 
16825 efrain 2712
.form-check-reverse .form-check-input {
2713
  float: right;
2714
  margin-right: -1.8em;
2715
  margin-left: 0;
2716
}
2717
 
2718
.form-check-input {
2719
  width: 1.3em;
2720
  height: 1.3em;
2721
  margin-top: 0.1em;
2722
  vertical-align: top;
2723
  background-color: #fff;
2724
  background-repeat: no-repeat;
2725
  background-position: center;
2726
  background-size: contain;
2727
  border: 1px solid rgba(0, 0, 0, 0.25);
2728
  appearance: none;
2729
  print-color-adjust: exact;
2730
}
16848 stevensc 2731
 
16825 efrain 2732
.form-check-input[type=checkbox] {
2733
  border-radius: 0.15em;
2734
}
16848 stevensc 2735
 
16825 efrain 2736
.form-check-input[type=radio] {
2737
  border-radius: 50%;
2738
}
16848 stevensc 2739
 
16825 efrain 2740
.form-check-input:active {
2741
  filter: brightness(90%);
2742
}
16848 stevensc 2743
 
16825 efrain 2744
.form-check-input:focus {
2745
  border-color: #cbd1db;
2746
  outline: 0;
2747
  box-shadow: none;
2748
}
16848 stevensc 2749
 
16825 efrain 2750
.form-check-input:checked {
2751
  background-color: #6571ff;
2752
  border-color: #6571ff;
2753
}
16848 stevensc 2754
 
16825 efrain 2755
.form-check-input:checked[type=checkbox] {
2756
  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");
2757
}
16848 stevensc 2758
 
16825 efrain 2759
.form-check-input:checked[type=radio] {
2760
  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");
2761
}
16848 stevensc 2762
 
16825 efrain 2763
.form-check-input[type=checkbox]:indeterminate {
2764
  background-color: #6571ff;
2765
  border-color: #6571ff;
2766
  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");
2767
}
16848 stevensc 2768
 
16825 efrain 2769
.form-check-input:disabled {
2770
  pointer-events: none;
2771
  filter: none;
2772
  opacity: 0.5;
2773
}
16848 stevensc 2774
 
2775
.form-check-input[disabled]~.form-check-label,
2776
.form-check-input:disabled~.form-check-label {
16825 efrain 2777
  cursor: default;
2778
  opacity: 0.5;
2779
}
2780
 
2781
.form-switch {
2782
  padding-left: 2.5em;
2783
}
16848 stevensc 2784
 
16825 efrain 2785
.form-switch .form-check-input {
2786
  width: 2em;
2787
  margin-left: -2.5em;
2788
  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");
2789
  background-position: left center;
2790
  border-radius: 2em;
2791
  transition: background-position 0.15s ease-in-out;
2792
}
16848 stevensc 2793
 
16825 efrain 2794
@media (prefers-reduced-motion: reduce) {
2795
  .form-switch .form-check-input {
2796
    transition: none;
2797
  }
2798
}
16848 stevensc 2799
 
16825 efrain 2800
.form-switch .form-check-input:focus {
2801
  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");
2802
}
16848 stevensc 2803
 
16825 efrain 2804
.form-switch .form-check-input:checked {
2805
  background-position: right center;
2806
  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");
2807
}
16848 stevensc 2808
 
16825 efrain 2809
.form-switch.form-check-reverse {
2810
  padding-right: 2.5em;
2811
  padding-left: 0;
2812
}
16848 stevensc 2813
 
16825 efrain 2814
.form-switch.form-check-reverse .form-check-input {
2815
  margin-right: -2.5em;
2816
  margin-left: 0;
2817
}
2818
 
2819
.form-check-inline {
2820
  display: inline-block;
2821
  margin-right: 1rem;
2822
}
2823
 
2824
.btn-check {
2825
  position: absolute;
2826
  clip: rect(0, 0, 0, 0);
2827
  pointer-events: none;
2828
}
16848 stevensc 2829
 
2830
.btn-check[disabled]+.btn,
2831
.wizard>.actions .btn-check[disabled]+a,
2832
div.tox .btn-check[disabled]+.tox-button,
2833
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2834
.fc .btn-check[disabled]+.fc-button-primary,
2835
.btn-check:disabled+.btn,
2836
.wizard>.actions .btn-check:disabled+a,
2837
div.tox .btn-check:disabled+.tox-button,
2838
.swal2-popup .swal2-actions .btn-check:disabled+button,
2839
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2840
  pointer-events: none;
2841
  filter: none;
2842
  opacity: 0.65;
2843
}
2844
 
2845
.form-range {
2846
  width: 100%;
2847
  height: 1rem;
2848
  padding: 0;
2849
  background-color: transparent;
2850
  appearance: none;
2851
}
16848 stevensc 2852
 
16825 efrain 2853
.form-range:focus {
2854
  outline: 0;
2855
}
16848 stevensc 2856
 
16825 efrain 2857
.form-range:focus::-webkit-slider-thumb {
2858
  box-shadow: 0 0 0 1px #f9fafb, none;
2859
}
16848 stevensc 2860
 
16825 efrain 2861
.form-range:focus::-moz-range-thumb {
2862
  box-shadow: 0 0 0 1px #f9fafb, none;
2863
}
16848 stevensc 2864
 
16825 efrain 2865
.form-range::-moz-focus-outer {
2866
  border: 0;
2867
}
16848 stevensc 2868
 
16825 efrain 2869
.form-range::-webkit-slider-thumb {
2870
  width: 1rem;
2871
  height: 1rem;
2872
  margin-top: -0.25rem;
2873
  background-color: #6571ff;
2874
  border: 0;
2875
  border-radius: 1rem;
2876
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2877
  appearance: none;
2878
}
16848 stevensc 2879
 
16825 efrain 2880
@media (prefers-reduced-motion: reduce) {
2881
  .form-range::-webkit-slider-thumb {
2882
    transition: none;
2883
  }
2884
}
16848 stevensc 2885
 
16825 efrain 2886
.form-range::-webkit-slider-thumb:active {
2887
  background-color: #d1d4ff;
2888
}
16848 stevensc 2889
 
16825 efrain 2890
.form-range::-webkit-slider-runnable-track {
2891
  width: 100%;
2892
  height: 0.5rem;
2893
  color: transparent;
2894
  cursor: pointer;
2895
  background-color: #dee2e6;
2896
  border-color: transparent;
2897
  border-radius: 1rem;
2898
}
16848 stevensc 2899
 
16825 efrain 2900
.form-range::-moz-range-thumb {
2901
  width: 1rem;
2902
  height: 1rem;
2903
  background-color: #6571ff;
2904
  border: 0;
2905
  border-radius: 1rem;
2906
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2907
  appearance: none;
2908
}
16848 stevensc 2909
 
16825 efrain 2910
@media (prefers-reduced-motion: reduce) {
2911
  .form-range::-moz-range-thumb {
2912
    transition: none;
2913
  }
2914
}
16848 stevensc 2915
 
16825 efrain 2916
.form-range::-moz-range-thumb:active {
2917
  background-color: #d1d4ff;
2918
}
16848 stevensc 2919
 
16825 efrain 2920
.form-range::-moz-range-track {
2921
  width: 100%;
2922
  height: 0.5rem;
2923
  color: transparent;
2924
  cursor: pointer;
2925
  background-color: #dee2e6;
2926
  border-color: transparent;
2927
  border-radius: 1rem;
2928
}
16848 stevensc 2929
 
16825 efrain 2930
.form-range:disabled {
2931
  pointer-events: none;
2932
}
16848 stevensc 2933
 
16825 efrain 2934
.form-range:disabled::-webkit-slider-thumb {
2935
  background-color: #aeb7c5;
2936
}
16848 stevensc 2937
 
16825 efrain 2938
.form-range:disabled::-moz-range-thumb {
2939
  background-color: #aeb7c5;
2940
}
2941
 
2942
.form-floating {
2943
  position: relative;
2944
}
16848 stevensc 2945
 
2946
.form-floating>.form-control,
2947
.form-floating>.typeahead.tt-input,
2948
.form-floating>.typeahead.tt-hint,
2949
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2950
.form-floating>.form-control-plaintext,
2951
.form-floating>.form-select {
16825 efrain 2952
  height: calc(3.5rem + 2px);
2953
  line-height: 1.25;
2954
}
16848 stevensc 2955
 
2956
.form-floating>label {
16825 efrain 2957
  position: absolute;
2958
  top: 0;
2959
  left: 0;
2960
  width: 100%;
2961
  height: 100%;
2962
  padding: 1rem 0.8rem;
2963
  overflow: hidden;
2964
  text-align: start;
2965
  text-overflow: ellipsis;
2966
  white-space: nowrap;
2967
  pointer-events: none;
2968
  border: 1px solid transparent;
2969
  transform-origin: 0 0;
2970
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2971
}
16848 stevensc 2972
 
16825 efrain 2973
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2974
  .form-floating>label {
16825 efrain 2975
    transition: none;
2976
  }
2977
}
16848 stevensc 2978
 
2979
.form-floating>.form-control,
2980
.form-floating>.typeahead.tt-input,
2981
.form-floating>.typeahead.tt-hint,
2982
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2983
.form-floating>.form-control-plaintext {
16825 efrain 2984
  padding: 1rem 0.8rem;
2985
}
16848 stevensc 2986
 
2987
.form-floating>.form-control::placeholder,
2988
.form-floating>.typeahead.tt-input::placeholder,
2989
.form-floating>.typeahead.tt-hint::placeholder,
2990
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2991
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2992
  color: transparent;
2993
}
16848 stevensc 2994
 
2995
.form-floating>.form-control:focus,
2996
.form-floating>.typeahead.tt-input:focus,
2997
.form-floating>.typeahead.tt-hint:focus,
2998
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2999
.form-floating>.form-control:not(:placeholder-shown),
3000
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
3001
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
3002
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3003
.form-floating>.form-control-plaintext:focus,
3004
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3005
  padding-top: 1.625rem;
3006
  padding-bottom: 0.625rem;
3007
}
16848 stevensc 3008
 
3009
.form-floating>.form-control:-webkit-autofill,
3010
.form-floating>.typeahead.tt-input:-webkit-autofill,
3011
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3012
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3013
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3014
  padding-top: 1.625rem;
3015
  padding-bottom: 0.625rem;
3016
}
16848 stevensc 3017
 
3018
.form-floating>.form-select {
16825 efrain 3019
  padding-top: 1.625rem;
3020
  padding-bottom: 0.625rem;
3021
}
16848 stevensc 3022
 
3023
.form-floating>.form-control:focus~label,
3024
.form-floating>.typeahead.tt-input:focus~label,
3025
.form-floating>.typeahead.tt-hint:focus~label,
3026
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3027
.form-floating>.form-control:not(:placeholder-shown)~label,
3028
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3029
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3030
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3031
.form-floating>.form-control-plaintext~label,
3032
.form-floating>.form-select~label {
16825 efrain 3033
  opacity: 0.65;
3034
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3035
}
16848 stevensc 3036
 
3037
.form-floating>.form-control:-webkit-autofill~label,
3038
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3039
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3040
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3041
  opacity: 0.65;
3042
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3043
}
16848 stevensc 3044
 
3045
.form-floating>.form-control-plaintext~label {
16825 efrain 3046
  border-width: 1px 0;
3047
}
3048
 
3049
.input-group {
3050
  position: relative;
3051
  display: flex;
3052
  flex-wrap: wrap;
3053
  align-items: stretch;
3054
  width: 100%;
3055
}
16848 stevensc 3056
 
3057
.input-group>.form-control,
3058
.input-group>.typeahead.tt-input,
3059
.input-group>.typeahead.tt-hint,
3060
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3061
.input-group>.form-select,
3062
.input-group>.form-floating {
16825 efrain 3063
  position: relative;
3064
  flex: 1 1 auto;
3065
  width: 1%;
3066
  min-width: 0;
3067
}
16848 stevensc 3068
 
3069
.input-group>.form-control:focus,
3070
.input-group>.typeahead.tt-input:focus,
3071
.input-group>.typeahead.tt-hint:focus,
3072
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3073
.input-group>.form-select:focus,
3074
.input-group>.form-floating:focus-within {
16825 efrain 3075
  z-index: 5;
3076
}
16848 stevensc 3077
 
3078
.input-group .btn,
3079
.input-group .wizard>.actions a,
3080
.wizard>.actions .input-group a,
3081
.input-group div.tox .tox-button,
3082
div.tox .input-group .tox-button,
3083
.input-group .swal2-popup .swal2-actions button,
3084
.swal2-popup .swal2-actions .input-group button,
3085
.input-group .fc .fc-button-primary,
3086
.fc .input-group .fc-button-primary {
16825 efrain 3087
  position: relative;
3088
  z-index: 2;
3089
}
16848 stevensc 3090
 
3091
.input-group .btn:focus,
3092
.input-group .wizard>.actions a:focus,
3093
.wizard>.actions .input-group a:focus,
3094
.input-group div.tox .tox-button:focus,
3095
div.tox .input-group .tox-button:focus,
3096
.input-group .swal2-popup .swal2-actions button:focus,
3097
.swal2-popup .swal2-actions .input-group button:focus,
3098
.input-group .fc .fc-button-primary:focus,
3099
.fc .input-group .fc-button-primary:focus {
16825 efrain 3100
  z-index: 5;
3101
}
3102
 
3103
.input-group-text {
3104
  display: flex;
3105
  align-items: center;
3106
  padding: 0.469rem 0.563rem;
3107
  font-size: 0.875rem;
3108
  font-weight: 400;
3109
  line-height: 1.5;
3110
  color: #000;
3111
  text-align: center;
3112
  white-space: nowrap;
3113
  background-color: #f8f9fa;
3114
  border: 1px solid #e9ecef;
3115
  border-radius: 0.25rem;
3116
}
3117
 
16848 stevensc 3118
.input-group-lg>.form-control,
3119
.input-group-lg>.typeahead.tt-input,
3120
.input-group-lg>.typeahead.tt-hint,
3121
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3122
.input-group-lg>.form-select,
3123
.input-group-lg>.input-group-text,
3124
.input-group-lg>.btn,
3125
.wizard>.actions .input-group-lg>a,
3126
div.tox .input-group-lg>.tox-button,
3127
.swal2-popup .swal2-actions .input-group-lg>button,
3128
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3129
  padding: 0.5rem 0.8rem;
3130
  font-size: 1rem;
3131
  border-radius: 0.25rem;
3132
}
3133
 
16848 stevensc 3134
.input-group-sm>.form-control,
3135
.input-group-sm>.typeahead.tt-input,
3136
.input-group-sm>.typeahead.tt-hint,
3137
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3138
.input-group-sm>.form-select,
3139
.input-group-sm>.input-group-text,
3140
.input-group-sm>.btn,
3141
.wizard>.actions .input-group-sm>a,
3142
div.tox .input-group-sm>.tox-button,
3143
.swal2-popup .swal2-actions .input-group-sm>button,
3144
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3145
  padding: 0.391rem 0.8rem;
3146
  font-size: 0.812rem;
3147
  border-radius: 0.25rem;
3148
}
3149
 
16848 stevensc 3150
.input-group-lg>.form-select,
3151
.input-group-sm>.form-select {
16825 efrain 3152
  padding-right: 3.2rem;
3153
}
3154
 
16848 stevensc 3155
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3156
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3157
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3158
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3159
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3160
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3161
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3162
  border-top-right-radius: 0;
3163
  border-bottom-right-radius: 0;
3164
}
16848 stevensc 3165
 
3166
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3167
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3168
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3169
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3170
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3171
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3172
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3173
  border-top-right-radius: 0;
3174
  border-bottom-right-radius: 0;
3175
}
16848 stevensc 3176
 
3177
.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 3178
  margin-left: -1px;
3179
  border-top-left-radius: 0;
3180
  border-bottom-left-radius: 0;
3181
}
16848 stevensc 3182
 
3183
.input-group>.form-floating:not(:first-child)>.form-control,
3184
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3185
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3186
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3187
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3188
  border-top-left-radius: 0;
3189
  border-bottom-left-radius: 0;
3190
}
3191
 
3192
.valid-feedback {
3193
  display: none;
3194
  width: 100%;
3195
  margin-top: 0.25rem;
3196
  font-size: 0.875em;
3197
  color: #05a34a;
3198
}
3199
 
3200
.valid-tooltip {
3201
  position: absolute;
3202
  top: 100%;
3203
  z-index: 5;
3204
  display: none;
3205
  max-width: 100%;
3206
  padding: 0.25rem 0.5rem;
3207
  margin-top: 0.1rem;
3208
  font-size: 0.812rem;
3209
  color: #fff;
3210
  background-color: rgba(5, 163, 74, 0.9);
3211
  border-radius: 0.25rem;
3212
}
3213
 
16848 stevensc 3214
.was-validated :valid~.valid-feedback,
3215
.was-validated :valid~.valid-tooltip,
3216
.is-valid~.valid-feedback,
3217
.is-valid~.valid-tooltip {
16825 efrain 3218
  display: block;
3219
}
3220
 
16848 stevensc 3221
.was-validated .form-control:valid,
3222
.was-validated .typeahead.tt-input:valid,
3223
.was-validated .typeahead.tt-hint:valid,
3224
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3225
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3226
.form-control.is-valid,
3227
.is-valid.typeahead.tt-input,
3228
.is-valid.typeahead.tt-hint,
3229
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3230
  border-color: #05a34a;
3231
  padding-right: calc(1.5em + 0.938rem);
3232
  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");
3233
  background-repeat: no-repeat;
3234
  background-position: right calc(0.375em + 0.2345rem) center;
3235
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3236
}
16848 stevensc 3237
 
3238
.was-validated .form-control:valid:focus,
3239
.was-validated .typeahead.tt-input:valid:focus,
3240
.was-validated .typeahead.tt-hint:valid:focus,
3241
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3242
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3243
.form-control.is-valid:focus,
3244
.is-valid.typeahead.tt-input:focus,
3245
.is-valid.typeahead.tt-hint:focus,
3246
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3247
  border-color: #05a34a;
3248
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3249
}
3250
 
16848 stevensc 3251
.was-validated textarea.form-control:valid,
3252
.was-validated textarea.typeahead.tt-input:valid,
3253
.was-validated textarea.typeahead.tt-hint:valid,
3254
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3255
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3256
textarea.form-control.is-valid,
3257
textarea.is-valid.typeahead.tt-input,
3258
textarea.is-valid.typeahead.tt-hint,
3259
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3260
  padding-right: calc(1.5em + 0.938rem);
3261
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3262
}
3263
 
16848 stevensc 3264
.was-validated .form-select:valid,
3265
.form-select.is-valid {
16825 efrain 3266
  border-color: #05a34a;
3267
}
16848 stevensc 3268
 
3269
.was-validated .form-select:valid:not([multiple]):not([size]),
3270
.was-validated .form-select:valid:not([multiple])[size="1"],
3271
.form-select.is-valid:not([multiple]):not([size]),
3272
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3273
  padding-right: 4.4rem;
3274
  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");
3275
  background-position: right 0.8rem center, center right 2.4rem;
3276
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3277
}
16848 stevensc 3278
 
3279
.was-validated .form-select:valid:focus,
3280
.form-select.is-valid:focus {
16825 efrain 3281
  border-color: #05a34a;
3282
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3283
}
3284
 
16848 stevensc 3285
.was-validated .form-control-color:valid,
3286
.form-control-color.is-valid {
16825 efrain 3287
  width: calc(3rem + calc(1.5em + 0.938rem));
3288
}
3289
 
16848 stevensc 3290
.was-validated .form-check-input:valid,
3291
.form-check-input.is-valid {
16825 efrain 3292
  border-color: #05a34a;
3293
}
16848 stevensc 3294
 
3295
.was-validated .form-check-input:valid:checked,
3296
.form-check-input.is-valid:checked {
16825 efrain 3297
  background-color: #05a34a;
3298
}
16848 stevensc 3299
 
3300
.was-validated .form-check-input:valid:focus,
3301
.form-check-input.is-valid:focus {
16825 efrain 3302
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3303
}
16848 stevensc 3304
 
3305
.was-validated .form-check-input:valid~.form-check-label,
3306
.form-check-input.is-valid~.form-check-label {
16825 efrain 3307
  color: #05a34a;
3308
}
3309
 
16848 stevensc 3310
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3311
  margin-left: 0.5em;
3312
}
3313
 
16848 stevensc 3314
.was-validated .input-group>.form-control:not(:focus):valid,
3315
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3316
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3317
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3318
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3319
.input-group>.form-control:not(:focus).is-valid,
3320
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3321
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3322
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3323
.was-validated .input-group>.form-select:not(:focus):valid,
3324
.input-group>.form-select:not(:focus).is-valid,
3325
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3326
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3327
  z-index: 3;
3328
}
3329
 
3330
.invalid-feedback {
3331
  display: none;
3332
  width: 100%;
3333
  margin-top: 0.25rem;
3334
  font-size: 0.875em;
3335
  color: #ff3366;
3336
}
3337
 
3338
.invalid-tooltip {
3339
  position: absolute;
3340
  top: 100%;
3341
  z-index: 5;
3342
  display: none;
3343
  max-width: 100%;
3344
  padding: 0.25rem 0.5rem;
3345
  margin-top: 0.1rem;
3346
  font-size: 0.812rem;
3347
  color: #fff;
3348
  background-color: rgba(255, 51, 102, 0.9);
3349
  border-radius: 0.25rem;
3350
}
3351
 
16848 stevensc 3352
.was-validated :invalid~.invalid-feedback,
3353
.was-validated :invalid~.invalid-tooltip,
3354
.is-invalid~.invalid-feedback,
3355
.is-invalid~.invalid-tooltip {
16825 efrain 3356
  display: block;
3357
}
3358
 
16848 stevensc 3359
.was-validated .form-control:invalid,
3360
.was-validated .typeahead.tt-input:invalid,
3361
.was-validated .typeahead.tt-hint:invalid,
3362
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3363
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3364
.form-control.is-invalid,
3365
.is-invalid.typeahead.tt-input,
3366
.is-invalid.typeahead.tt-hint,
3367
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3368
  border-color: #ff3366;
3369
  padding-right: calc(1.5em + 0.938rem);
3370
  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");
3371
  background-repeat: no-repeat;
3372
  background-position: right calc(0.375em + 0.2345rem) center;
3373
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3374
}
16848 stevensc 3375
 
3376
.was-validated .form-control:invalid:focus,
3377
.was-validated .typeahead.tt-input:invalid:focus,
3378
.was-validated .typeahead.tt-hint:invalid:focus,
3379
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3380
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3381
.form-control.is-invalid:focus,
3382
.is-invalid.typeahead.tt-input:focus,
3383
.is-invalid.typeahead.tt-hint:focus,
3384
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3385
  border-color: #ff3366;
3386
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3387
}
3388
 
16848 stevensc 3389
.was-validated textarea.form-control:invalid,
3390
.was-validated textarea.typeahead.tt-input:invalid,
3391
.was-validated textarea.typeahead.tt-hint:invalid,
3392
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3393
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3394
textarea.form-control.is-invalid,
3395
textarea.is-invalid.typeahead.tt-input,
3396
textarea.is-invalid.typeahead.tt-hint,
3397
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3398
  padding-right: calc(1.5em + 0.938rem);
3399
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3400
}
3401
 
16848 stevensc 3402
.was-validated .form-select:invalid,
3403
.form-select.is-invalid {
16825 efrain 3404
  border-color: #ff3366;
3405
}
16848 stevensc 3406
 
3407
.was-validated .form-select:invalid:not([multiple]):not([size]),
3408
.was-validated .form-select:invalid:not([multiple])[size="1"],
3409
.form-select.is-invalid:not([multiple]):not([size]),
3410
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3411
  padding-right: 4.4rem;
3412
  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");
3413
  background-position: right 0.8rem center, center right 2.4rem;
3414
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3415
}
16848 stevensc 3416
 
3417
.was-validated .form-select:invalid:focus,
3418
.form-select.is-invalid:focus {
16825 efrain 3419
  border-color: #ff3366;
3420
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3421
}
3422
 
16848 stevensc 3423
.was-validated .form-control-color:invalid,
3424
.form-control-color.is-invalid {
16825 efrain 3425
  width: calc(3rem + calc(1.5em + 0.938rem));
3426
}
3427
 
16848 stevensc 3428
.was-validated .form-check-input:invalid,
3429
.form-check-input.is-invalid {
16825 efrain 3430
  border-color: #ff3366;
3431
}
16848 stevensc 3432
 
3433
.was-validated .form-check-input:invalid:checked,
3434
.form-check-input.is-invalid:checked {
16825 efrain 3435
  background-color: #ff3366;
3436
}
16848 stevensc 3437
 
3438
.was-validated .form-check-input:invalid:focus,
3439
.form-check-input.is-invalid:focus {
16825 efrain 3440
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3441
}
16848 stevensc 3442
 
3443
.was-validated .form-check-input:invalid~.form-check-label,
3444
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3445
  color: #ff3366;
3446
}
3447
 
16848 stevensc 3448
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3449
  margin-left: 0.5em;
3450
}
3451
 
16848 stevensc 3452
.was-validated .input-group>.form-control:not(:focus):invalid,
3453
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3454
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3455
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3456
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3457
.input-group>.form-control:not(:focus).is-invalid,
3458
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3459
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3460
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3461
.was-validated .input-group>.form-select:not(:focus):invalid,
3462
.input-group>.form-select:not(:focus).is-invalid,
3463
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3464
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3465
  z-index: 4;
3466
}
3467
 
16848 stevensc 3468
.btn,
3469
.wizard>.actions a,
3470
.wizard>.actions a:active,
3471
.wizard>.actions a:hover,
3472
div.tox .tox-button,
3473
.swal2-popup .swal2-actions button,
3474
.fc .fc-button-primary {
16825 efrain 3475
  --bs-btn-padding-x: 0.8rem;
3476
  --bs-btn-padding-y: 0.469rem;
3477
  --bs-btn-font-family: ;
3478
  --bs-btn-font-size: 0.875rem;
3479
  --bs-btn-font-weight: 400;
3480
  --bs-btn-line-height: 1.5;
3481
  --bs-btn-color: #000;
3482
  --bs-btn-bg: transparent;
3483
  --bs-btn-border-width: 1px;
3484
  --bs-btn-border-color: transparent;
3485
  --bs-btn-border-radius: 0.25rem;
3486
  --bs-btn-hover-border-color: transparent;
3487
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3488
  --bs-btn-disabled-opacity: 0.65;
3489
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3490
  display: inline-block;
3491
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3492
  font-family: var(--bs-btn-font-family);
3493
  font-size: var(--bs-btn-font-size);
3494
  font-weight: var(--bs-btn-font-weight);
3495
  line-height: var(--bs-btn-line-height);
3496
  color: var(--bs-btn-color);
3497
  text-align: center;
3498
  vertical-align: middle;
3499
  cursor: pointer;
3500
  user-select: none;
3501
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3502
  border-radius: var(--bs-btn-border-radius);
3503
  background-color: var(--bs-btn-bg);
3504
  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;
3505
}
16848 stevensc 3506
 
16825 efrain 3507
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3508
 
3509
  .btn,
3510
  .wizard>.actions a,
3511
  .wizard>.actions a:active,
3512
  .wizard>.actions a:hover,
3513
  div.tox .tox-button,
3514
  .swal2-popup .swal2-actions button,
3515
  .fc .fc-button-primary {
16825 efrain 3516
    transition: none;
3517
  }
3518
}
16848 stevensc 3519
 
3520
.btn:hover,
3521
.wizard>.actions a:hover,
3522
div.tox .tox-button:hover,
3523
.swal2-popup .swal2-actions button:hover,
3524
.fc .fc-button-primary:hover {
16825 efrain 3525
  color: var(--bs-btn-hover-color);
3526
  background-color: var(--bs-btn-hover-bg);
3527
  border-color: var(--bs-btn-hover-border-color);
3528
}
16848 stevensc 3529
 
3530
.btn-check+.btn:hover,
3531
.wizard>.actions .btn-check+a:hover,
3532
div.tox .btn-check+.tox-button:hover,
3533
.swal2-popup .swal2-actions .btn-check+button:hover,
3534
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3535
  color: var(--bs-btn-color);
3536
  background-color: var(--bs-btn-bg);
3537
  border-color: var(--bs-btn-border-color);
3538
}
16848 stevensc 3539
 
3540
.btn:focus-visible,
3541
.wizard>.actions a:focus-visible,
3542
div.tox .tox-button:focus-visible,
3543
.swal2-popup .swal2-actions button:focus-visible,
3544
.fc .fc-button-primary:focus-visible {
16825 efrain 3545
  color: var(--bs-btn-hover-color);
3546
  background-color: var(--bs-btn-hover-bg);
3547
  border-color: var(--bs-btn-hover-border-color);
3548
  outline: 0;
3549
  box-shadow: var(--bs-btn-focus-box-shadow);
3550
}
16848 stevensc 3551
 
3552
.btn-check:focus-visible+.btn,
3553
.wizard>.actions .btn-check:focus-visible+a,
3554
div.tox .btn-check:focus-visible+.tox-button,
3555
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3556
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3557
  border-color: var(--bs-btn-hover-border-color);
3558
  outline: 0;
3559
  box-shadow: var(--bs-btn-focus-box-shadow);
3560
}
16848 stevensc 3561
 
3562
.btn-check:checked+.btn,
3563
.wizard>.actions .btn-check:checked+a,
3564
div.tox .btn-check:checked+.tox-button,
3565
.swal2-popup .swal2-actions .btn-check:checked+button,
3566
.fc .btn-check:checked+.fc-button-primary,
3567
:not(.btn-check)+.btn:active,
3568
.wizard>.actions :not(.btn-check)+a:active,
3569
div.tox :not(.btn-check)+.tox-button:active,
3570
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3571
.fc :not(.btn-check)+.fc-button-primary:active,
3572
.btn:first-child:active,
3573
.wizard>.actions a:first-child:active,
3574
div.tox .tox-button:first-child:active,
3575
.swal2-popup .swal2-actions button:first-child:active,
3576
.fc .fc-button-primary:first-child:active,
3577
.btn.active,
3578
.wizard>.actions a.active,
3579
div.tox .active.tox-button,
3580
.swal2-popup .swal2-actions button.active,
3581
.fc .active.fc-button-primary,
3582
.btn.show,
3583
.wizard>.actions a.show,
3584
div.tox .show.tox-button,
3585
.swal2-popup .swal2-actions button.show,
3586
.fc .show.fc-button-primary {
16825 efrain 3587
  color: var(--bs-btn-active-color);
3588
  background-color: var(--bs-btn-active-bg);
3589
  border-color: var(--bs-btn-active-border-color);
3590
}
16848 stevensc 3591
 
3592
.btn-check:checked+.btn:focus-visible,
3593
.wizard>.actions .btn-check:checked+a:focus-visible,
3594
div.tox .btn-check:checked+.tox-button:focus-visible,
3595
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3596
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3597
:not(.btn-check)+.btn:active:focus-visible,
3598
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3599
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3600
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3601
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3602
.btn:first-child:active:focus-visible,
3603
.wizard>.actions a:first-child:active:focus-visible,
3604
div.tox .tox-button:first-child:active:focus-visible,
3605
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3606
.fc .fc-button-primary:first-child:active:focus-visible,
3607
.btn.active:focus-visible,
3608
.wizard>.actions a.active:focus-visible,
3609
div.tox .active.tox-button:focus-visible,
3610
.swal2-popup .swal2-actions button.active:focus-visible,
3611
.fc .active.fc-button-primary:focus-visible,
3612
.btn.show:focus-visible,
3613
.wizard>.actions a.show:focus-visible,
3614
div.tox .show.tox-button:focus-visible,
3615
.swal2-popup .swal2-actions button.show:focus-visible,
3616
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3617
  box-shadow: var(--bs-btn-focus-box-shadow);
3618
}
16848 stevensc 3619
 
3620
.btn:disabled,
3621
.wizard>.actions a:disabled,
3622
div.tox .tox-button:disabled,
3623
.swal2-popup .swal2-actions button:disabled,
3624
.fc .fc-button-primary:disabled,
3625
.btn.disabled,
3626
.wizard>.actions a.disabled,
3627
div.tox .disabled.tox-button,
3628
.swal2-popup .swal2-actions button.disabled,
3629
.fc .disabled.fc-button-primary,
3630
fieldset:disabled .btn,
3631
fieldset:disabled .wizard>.actions a,
3632
.wizard>.actions fieldset:disabled a,
3633
fieldset:disabled div.tox .tox-button,
3634
div.tox fieldset:disabled .tox-button,
3635
fieldset:disabled .swal2-popup .swal2-actions button,
3636
.swal2-popup .swal2-actions fieldset:disabled button,
3637
fieldset:disabled .fc .fc-button-primary,
3638
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3639
  color: var(--bs-btn-disabled-color);
3640
  pointer-events: none;
3641
  background-color: var(--bs-btn-disabled-bg);
3642
  border-color: var(--bs-btn-disabled-border-color);
3643
  opacity: var(--bs-btn-disabled-opacity);
3644
}
3645
 
16848 stevensc 3646
.btn-primary,
3647
.wizard>.actions a,
3648
.wizard>.actions a:active,
3649
.wizard>.actions a:hover,
3650
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3651
.swal2-popup .swal2-actions button.swal2-confirm,
3652
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3653
.fc .fc-button-primary:not(:disabled):active {
3654
  --bs-btn-color: #fff;
3655
  --bs-btn-bg: #6571ff;
3656
  --bs-btn-border-color: #6571ff;
3657
  --bs-btn-hover-color: #fff;
3658
  --bs-btn-hover-bg: #5660d9;
3659
  --bs-btn-hover-border-color: #515acc;
3660
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3661
  --bs-btn-active-color: #fff;
3662
  --bs-btn-active-bg: #515acc;
3663
  --bs-btn-active-border-color: #4c55bf;
3664
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3665
  --bs-btn-disabled-color: #fff;
3666
  --bs-btn-disabled-bg: #6571ff;
3667
  --bs-btn-disabled-border-color: #6571ff;
3668
}
3669
 
16848 stevensc 3670
.btn-secondary,
3671
div.tox .tox-button--secondary {
16825 efrain 3672
  --bs-btn-color: #fff;
3673
  --bs-btn-bg: #7987a1;
3674
  --bs-btn-border-color: #7987a1;
3675
  --bs-btn-hover-color: #fff;
3676
  --bs-btn-hover-bg: #677389;
3677
  --bs-btn-hover-border-color: #616c81;
3678
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3679
  --bs-btn-active-color: #fff;
3680
  --bs-btn-active-bg: #616c81;
3681
  --bs-btn-active-border-color: #5b6579;
3682
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3683
  --bs-btn-disabled-color: #fff;
3684
  --bs-btn-disabled-bg: #7987a1;
3685
  --bs-btn-disabled-border-color: #7987a1;
3686
}
3687
 
3688
.btn-success {
3689
  --bs-btn-color: #fff;
3690
  --bs-btn-bg: #05a34a;
3691
  --bs-btn-border-color: #05a34a;
3692
  --bs-btn-hover-color: #fff;
3693
  --bs-btn-hover-bg: #048b3f;
3694
  --bs-btn-hover-border-color: #04823b;
3695
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3696
  --bs-btn-active-color: #fff;
3697
  --bs-btn-active-bg: #04823b;
3698
  --bs-btn-active-border-color: #047a38;
3699
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3700
  --bs-btn-disabled-color: #fff;
3701
  --bs-btn-disabled-bg: #05a34a;
3702
  --bs-btn-disabled-border-color: #05a34a;
3703
}
3704
 
3705
.btn-info {
3706
  --bs-btn-color: #000;
3707
  --bs-btn-bg: #66d1d1;
3708
  --bs-btn-border-color: #66d1d1;
3709
  --bs-btn-hover-color: #000;
3710
  --bs-btn-hover-bg: #7dd8d8;
3711
  --bs-btn-hover-border-color: #75d6d6;
3712
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3713
  --bs-btn-active-color: #000;
3714
  --bs-btn-active-bg: #85dada;
3715
  --bs-btn-active-border-color: #75d6d6;
3716
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3717
  --bs-btn-disabled-color: #000;
3718
  --bs-btn-disabled-bg: #66d1d1;
3719
  --bs-btn-disabled-border-color: #66d1d1;
3720
}
3721
 
3722
.btn-warning {
3723
  --bs-btn-color: #000;
3724
  --bs-btn-bg: #fbbc06;
3725
  --bs-btn-border-color: #fbbc06;
3726
  --bs-btn-hover-color: #000;
3727
  --bs-btn-hover-bg: #fcc62b;
3728
  --bs-btn-hover-border-color: #fbc31f;
3729
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3730
  --bs-btn-active-color: #000;
3731
  --bs-btn-active-bg: #fcc938;
3732
  --bs-btn-active-border-color: #fbc31f;
3733
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3734
  --bs-btn-disabled-color: #000;
3735
  --bs-btn-disabled-bg: #fbbc06;
3736
  --bs-btn-disabled-border-color: #fbbc06;
3737
}
3738
 
16848 stevensc 3739
.btn-danger,
3740
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3741
  --bs-btn-color: #fff;
3742
  --bs-btn-bg: #ff3366;
3743
  --bs-btn-border-color: #ff3366;
3744
  --bs-btn-hover-color: #fff;
3745
  --bs-btn-hover-bg: #d92b57;
3746
  --bs-btn-hover-border-color: #cc2952;
3747
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3748
  --bs-btn-active-color: #fff;
3749
  --bs-btn-active-bg: #cc2952;
3750
  --bs-btn-active-border-color: #bf264d;
3751
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3752
  --bs-btn-disabled-color: #fff;
3753
  --bs-btn-disabled-bg: #ff3366;
3754
  --bs-btn-disabled-border-color: #ff3366;
3755
}
3756
 
3757
.btn-light {
3758
  --bs-btn-color: #000;
3759
  --bs-btn-bg: #e9ecef;
3760
  --bs-btn-border-color: #e9ecef;
3761
  --bs-btn-hover-color: #000;
3762
  --bs-btn-hover-bg: #c6c9cb;
3763
  --bs-btn-hover-border-color: #babdbf;
3764
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3765
  --bs-btn-active-color: #000;
3766
  --bs-btn-active-bg: #babdbf;
3767
  --bs-btn-active-border-color: #afb1b3;
3768
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3769
  --bs-btn-disabled-color: #000;
3770
  --bs-btn-disabled-bg: #e9ecef;
3771
  --bs-btn-disabled-border-color: #e9ecef;
3772
}
3773
 
3774
.btn-dark {
3775
  --bs-btn-color: #fff;
3776
  --bs-btn-bg: #060c17;
3777
  --bs-btn-border-color: #060c17;
3778
  --bs-btn-hover-color: #fff;
3779
  --bs-btn-hover-bg: #2b303a;
3780
  --bs-btn-hover-border-color: #1f242e;
3781
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3782
  --bs-btn-active-color: #fff;
3783
  --bs-btn-active-bg: #383d45;
3784
  --bs-btn-active-border-color: #1f242e;
3785
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3786
  --bs-btn-disabled-color: #fff;
3787
  --bs-btn-disabled-bg: #060c17;
3788
  --bs-btn-disabled-border-color: #060c17;
3789
}
3790
 
16848 stevensc 3791
.btn-outline-primary,
3792
.fc .fc-button-primary {
16825 efrain 3793
  --bs-btn-color: #6571ff;
3794
  --bs-btn-border-color: #6571ff;
3795
  --bs-btn-hover-color: #fff;
3796
  --bs-btn-hover-bg: #6571ff;
3797
  --bs-btn-hover-border-color: #6571ff;
3798
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3799
  --bs-btn-active-color: #fff;
3800
  --bs-btn-active-bg: #6571ff;
3801
  --bs-btn-active-border-color: #6571ff;
3802
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3803
  --bs-btn-disabled-color: #6571ff;
3804
  --bs-btn-disabled-bg: transparent;
3805
  --bs-btn-disabled-border-color: #6571ff;
3806
  --bs-gradient: none;
3807
}
3808
 
3809
.btn-outline-secondary {
3810
  --bs-btn-color: #7987a1;
3811
  --bs-btn-border-color: #7987a1;
3812
  --bs-btn-hover-color: #fff;
3813
  --bs-btn-hover-bg: #7987a1;
3814
  --bs-btn-hover-border-color: #7987a1;
3815
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3816
  --bs-btn-active-color: #fff;
3817
  --bs-btn-active-bg: #7987a1;
3818
  --bs-btn-active-border-color: #7987a1;
3819
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3820
  --bs-btn-disabled-color: #7987a1;
3821
  --bs-btn-disabled-bg: transparent;
3822
  --bs-btn-disabled-border-color: #7987a1;
3823
  --bs-gradient: none;
3824
}
3825
 
3826
.btn-outline-success {
3827
  --bs-btn-color: #05a34a;
3828
  --bs-btn-border-color: #05a34a;
3829
  --bs-btn-hover-color: #fff;
3830
  --bs-btn-hover-bg: #05a34a;
3831
  --bs-btn-hover-border-color: #05a34a;
3832
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3833
  --bs-btn-active-color: #fff;
3834
  --bs-btn-active-bg: #05a34a;
3835
  --bs-btn-active-border-color: #05a34a;
3836
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3837
  --bs-btn-disabled-color: #05a34a;
3838
  --bs-btn-disabled-bg: transparent;
3839
  --bs-btn-disabled-border-color: #05a34a;
3840
  --bs-gradient: none;
3841
}
3842
 
3843
.btn-outline-info {
3844
  --bs-btn-color: #66d1d1;
3845
  --bs-btn-border-color: #66d1d1;
3846
  --bs-btn-hover-color: #000;
3847
  --bs-btn-hover-bg: #66d1d1;
3848
  --bs-btn-hover-border-color: #66d1d1;
3849
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3850
  --bs-btn-active-color: #000;
3851
  --bs-btn-active-bg: #66d1d1;
3852
  --bs-btn-active-border-color: #66d1d1;
3853
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3854
  --bs-btn-disabled-color: #66d1d1;
3855
  --bs-btn-disabled-bg: transparent;
3856
  --bs-btn-disabled-border-color: #66d1d1;
3857
  --bs-gradient: none;
3858
}
3859
 
3860
.btn-outline-warning {
3861
  --bs-btn-color: #fbbc06;
3862
  --bs-btn-border-color: #fbbc06;
3863
  --bs-btn-hover-color: #000;
3864
  --bs-btn-hover-bg: #fbbc06;
3865
  --bs-btn-hover-border-color: #fbbc06;
3866
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3867
  --bs-btn-active-color: #000;
3868
  --bs-btn-active-bg: #fbbc06;
3869
  --bs-btn-active-border-color: #fbbc06;
3870
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3871
  --bs-btn-disabled-color: #fbbc06;
3872
  --bs-btn-disabled-bg: transparent;
3873
  --bs-btn-disabled-border-color: #fbbc06;
3874
  --bs-gradient: none;
3875
}
3876
 
3877
.btn-outline-danger {
3878
  --bs-btn-color: #ff3366;
3879
  --bs-btn-border-color: #ff3366;
3880
  --bs-btn-hover-color: #fff;
3881
  --bs-btn-hover-bg: #ff3366;
3882
  --bs-btn-hover-border-color: #ff3366;
3883
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3884
  --bs-btn-active-color: #fff;
3885
  --bs-btn-active-bg: #ff3366;
3886
  --bs-btn-active-border-color: #ff3366;
3887
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3888
  --bs-btn-disabled-color: #ff3366;
3889
  --bs-btn-disabled-bg: transparent;
3890
  --bs-btn-disabled-border-color: #ff3366;
3891
  --bs-gradient: none;
3892
}
3893
 
3894
.btn-outline-light {
3895
  --bs-btn-color: #e9ecef;
3896
  --bs-btn-border-color: #e9ecef;
3897
  --bs-btn-hover-color: #000;
3898
  --bs-btn-hover-bg: #e9ecef;
3899
  --bs-btn-hover-border-color: #e9ecef;
3900
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3901
  --bs-btn-active-color: #000;
3902
  --bs-btn-active-bg: #e9ecef;
3903
  --bs-btn-active-border-color: #e9ecef;
3904
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3905
  --bs-btn-disabled-color: #e9ecef;
3906
  --bs-btn-disabled-bg: transparent;
3907
  --bs-btn-disabled-border-color: #e9ecef;
3908
  --bs-gradient: none;
3909
}
3910
 
3911
.btn-outline-dark {
3912
  --bs-btn-color: #060c17;
3913
  --bs-btn-border-color: #060c17;
3914
  --bs-btn-hover-color: #fff;
3915
  --bs-btn-hover-bg: #060c17;
3916
  --bs-btn-hover-border-color: #060c17;
3917
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3918
  --bs-btn-active-color: #fff;
3919
  --bs-btn-active-bg: #060c17;
3920
  --bs-btn-active-border-color: #060c17;
3921
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3922
  --bs-btn-disabled-color: #060c17;
3923
  --bs-btn-disabled-bg: transparent;
3924
  --bs-btn-disabled-border-color: #060c17;
3925
  --bs-gradient: none;
3926
}
3927
 
3928
.btn-link {
3929
  --bs-btn-font-weight: 400;
3930
  --bs-btn-color: var(--bs-link-color);
3931
  --bs-btn-bg: transparent;
3932
  --bs-btn-border-color: transparent;
3933
  --bs-btn-hover-color: var(--bs-link-hover-color);
3934
  --bs-btn-hover-border-color: transparent;
3935
  --bs-btn-active-color: var(--bs-link-hover-color);
3936
  --bs-btn-active-border-color: transparent;
3937
  --bs-btn-disabled-color: #7987a1;
3938
  --bs-btn-disabled-border-color: transparent;
3939
  --bs-btn-box-shadow: none;
3940
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3941
  text-decoration: none;
3942
}
16848 stevensc 3943
 
16825 efrain 3944
.btn-link:focus-visible {
3945
  color: var(--bs-btn-color);
3946
}
16848 stevensc 3947
 
16825 efrain 3948
.btn-link:hover {
3949
  color: var(--bs-btn-hover-color);
3950
}
3951
 
16848 stevensc 3952
.btn-lg,
3953
.btn-group-lg>.btn,
3954
.wizard>.actions .btn-group-lg>a,
3955
div.tox .btn-group-lg>.tox-button,
3956
.swal2-popup .swal2-actions .btn-group-lg>button,
3957
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3958
  --bs-btn-padding-y: 0.5rem;
3959
  --bs-btn-padding-x: 0.8rem;
3960
  --bs-btn-font-size: 1rem;
3961
  --bs-btn-border-radius: 0.25rem;
3962
}
3963
 
16848 stevensc 3964
.btn-sm,
3965
.fc .fc-button-primary,
3966
.btn-group-sm>.btn,
3967
.wizard>.actions .btn-group-sm>a,
3968
div.tox .btn-group-sm>.tox-button,
3969
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3970
  --bs-btn-padding-y: 0.391rem;
3971
  --bs-btn-padding-x: 0.8rem;
3972
  --bs-btn-font-size: 0.812rem;
3973
  --bs-btn-border-radius: 0.25rem;
3974
}
3975
 
3976
.fade {
3977
  transition: opacity 0.15s linear;
3978
}
16848 stevensc 3979
 
16825 efrain 3980
@media (prefers-reduced-motion: reduce) {
3981
  .fade {
3982
    transition: none;
3983
  }
3984
}
16848 stevensc 3985
 
16825 efrain 3986
.fade:not(.show) {
3987
  opacity: 0;
3988
}
3989
 
3990
.collapse:not(.show) {
3991
  display: none;
3992
}
3993
 
3994
.collapsing {
3995
  height: 0;
3996
  overflow: hidden;
3997
  transition: height 0.35s ease;
3998
}
16848 stevensc 3999
 
16825 efrain 4000
@media (prefers-reduced-motion: reduce) {
4001
  .collapsing {
4002
    transition: none;
4003
  }
4004
}
16848 stevensc 4005
 
16825 efrain 4006
.collapsing.collapse-horizontal {
4007
  width: 0;
4008
  height: auto;
4009
  transition: width 0.35s ease;
4010
}
16848 stevensc 4011
 
16825 efrain 4012
@media (prefers-reduced-motion: reduce) {
4013
  .collapsing.collapse-horizontal {
4014
    transition: none;
4015
  }
4016
}
4017
 
4018
.dropup,
4019
.dropend,
4020
.dropdown,
4021
.dropstart,
4022
.dropup-center,
4023
.dropdown-center {
4024
  position: relative;
4025
}
4026
 
4027
.dropdown-toggle {
4028
  white-space: nowrap;
4029
}
16848 stevensc 4030
 
16825 efrain 4031
.dropdown-toggle::after {
4032
  display: inline-block;
4033
  margin-left: 0.255em;
4034
  vertical-align: 0.255em;
4035
  content: "";
4036
  border-top: 0.3em solid;
4037
  border-right: 0.3em solid transparent;
4038
  border-bottom: 0;
4039
  border-left: 0.3em solid transparent;
4040
}
16848 stevensc 4041
 
16825 efrain 4042
.dropdown-toggle:empty::after {
4043
  margin-left: 0;
4044
}
4045
 
16848 stevensc 4046
.dropdown-menu,
4047
.tt-menu {
16825 efrain 4048
  --bs-dropdown-zindex: 1000;
4049
  --bs-dropdown-min-width: 10rem;
4050
  --bs-dropdown-padding-x: 0;
4051
  --bs-dropdown-padding-y: 0.5rem;
4052
  --bs-dropdown-spacer: 0.125rem;
4053
  --bs-dropdown-font-size: 0.875rem;
4054
  --bs-dropdown-color: #000;
4055
  --bs-dropdown-bg: #fff;
4056
  --bs-dropdown-border-color: #f2f4f9;
4057
  --bs-dropdown-border-radius: 0.25rem;
4058
  --bs-dropdown-border-width: 1px;
4059
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4060
  --bs-dropdown-divider-bg: #f2f4f9;
4061
  --bs-dropdown-divider-margin-y: 0.5rem;
4062
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4063
  --bs-dropdown-link-color: #060c17;
4064
  --bs-dropdown-link-hover-color: #050b15;
4065
  --bs-dropdown-link-hover-bg: #e9ecef;
4066
  --bs-dropdown-link-active-color: #fff;
4067
  --bs-dropdown-link-active-bg: #6571ff;
4068
  --bs-dropdown-link-disabled-color: #aeb7c5;
4069
  --bs-dropdown-item-padding-x: 1rem;
4070
  --bs-dropdown-item-padding-y: 0.25rem;
4071
  --bs-dropdown-header-color: #7987a1;
4072
  --bs-dropdown-header-padding-x: 1rem;
4073
  --bs-dropdown-header-padding-y: 0.5rem;
4074
  position: absolute;
4075
  z-index: var(--bs-dropdown-zindex);
4076
  display: none;
4077
  min-width: var(--bs-dropdown-min-width);
4078
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4079
  margin: 0;
4080
  font-size: var(--bs-dropdown-font-size);
4081
  color: var(--bs-dropdown-color);
4082
  text-align: left;
4083
  list-style: none;
4084
  background-color: var(--bs-dropdown-bg);
4085
  background-clip: padding-box;
4086
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4087
  border-radius: var(--bs-dropdown-border-radius);
4088
}
16848 stevensc 4089
 
4090
.dropdown-menu[data-bs-popper],
4091
[data-bs-popper].tt-menu {
16825 efrain 4092
  top: 100%;
4093
  left: 0;
4094
  margin-top: var(--bs-dropdown-spacer);
4095
}
4096
 
4097
.dropdown-menu-start {
4098
  --bs-position: start;
4099
}
16848 stevensc 4100
 
16825 efrain 4101
.dropdown-menu-start[data-bs-popper] {
4102
  right: auto;
4103
  left: 0;
4104
}
4105
 
4106
.dropdown-menu-end {
4107
  --bs-position: end;
4108
}
16848 stevensc 4109
 
16825 efrain 4110
.dropdown-menu-end[data-bs-popper] {
4111
  right: 0;
4112
  left: auto;
4113
}
4114
 
4115
@media (min-width: 576px) {
4116
  .dropdown-menu-sm-start {
4117
    --bs-position: start;
4118
  }
16848 stevensc 4119
 
16825 efrain 4120
  .dropdown-menu-sm-start[data-bs-popper] {
4121
    right: auto;
4122
    left: 0;
4123
  }
16848 stevensc 4124
 
16825 efrain 4125
  .dropdown-menu-sm-end {
4126
    --bs-position: end;
4127
  }
16848 stevensc 4128
 
16825 efrain 4129
  .dropdown-menu-sm-end[data-bs-popper] {
4130
    right: 0;
4131
    left: auto;
4132
  }
4133
}
16848 stevensc 4134
 
16825 efrain 4135
@media (min-width: 768px) {
4136
  .dropdown-menu-md-start {
4137
    --bs-position: start;
4138
  }
16848 stevensc 4139
 
16825 efrain 4140
  .dropdown-menu-md-start[data-bs-popper] {
4141
    right: auto;
4142
    left: 0;
4143
  }
16848 stevensc 4144
 
16825 efrain 4145
  .dropdown-menu-md-end {
4146
    --bs-position: end;
4147
  }
16848 stevensc 4148
 
16825 efrain 4149
  .dropdown-menu-md-end[data-bs-popper] {
4150
    right: 0;
4151
    left: auto;
4152
  }
4153
}
16848 stevensc 4154
 
16825 efrain 4155
@media (min-width: 992px) {
4156
  .dropdown-menu-lg-start {
4157
    --bs-position: start;
4158
  }
16848 stevensc 4159
 
16825 efrain 4160
  .dropdown-menu-lg-start[data-bs-popper] {
4161
    right: auto;
4162
    left: 0;
4163
  }
16848 stevensc 4164
 
16825 efrain 4165
  .dropdown-menu-lg-end {
4166
    --bs-position: end;
4167
  }
16848 stevensc 4168
 
16825 efrain 4169
  .dropdown-menu-lg-end[data-bs-popper] {
4170
    right: 0;
4171
    left: auto;
4172
  }
4173
}
16848 stevensc 4174
 
16825 efrain 4175
@media (min-width: 1200px) {
4176
  .dropdown-menu-xl-start {
4177
    --bs-position: start;
4178
  }
16848 stevensc 4179
 
16825 efrain 4180
  .dropdown-menu-xl-start[data-bs-popper] {
4181
    right: auto;
4182
    left: 0;
4183
  }
16848 stevensc 4184
 
16825 efrain 4185
  .dropdown-menu-xl-end {
4186
    --bs-position: end;
4187
  }
16848 stevensc 4188
 
16825 efrain 4189
  .dropdown-menu-xl-end[data-bs-popper] {
4190
    right: 0;
4191
    left: auto;
4192
  }
4193
}
16848 stevensc 4194
 
16825 efrain 4195
@media (min-width: 1400px) {
4196
  .dropdown-menu-xxl-start {
4197
    --bs-position: start;
4198
  }
16848 stevensc 4199
 
16825 efrain 4200
  .dropdown-menu-xxl-start[data-bs-popper] {
4201
    right: auto;
4202
    left: 0;
4203
  }
16848 stevensc 4204
 
16825 efrain 4205
  .dropdown-menu-xxl-end {
4206
    --bs-position: end;
4207
  }
16848 stevensc 4208
 
16825 efrain 4209
  .dropdown-menu-xxl-end[data-bs-popper] {
4210
    right: 0;
4211
    left: auto;
4212
  }
4213
}
16848 stevensc 4214
 
4215
.dropup .dropdown-menu[data-bs-popper],
4216
.dropup [data-bs-popper].tt-menu {
16825 efrain 4217
  top: auto;
4218
  bottom: 100%;
4219
  margin-top: 0;
4220
  margin-bottom: var(--bs-dropdown-spacer);
4221
}
16848 stevensc 4222
 
16825 efrain 4223
.dropup .dropdown-toggle::after {
4224
  display: inline-block;
4225
  margin-left: 0.255em;
4226
  vertical-align: 0.255em;
4227
  content: "";
4228
  border-top: 0;
4229
  border-right: 0.3em solid transparent;
4230
  border-bottom: 0.3em solid;
4231
  border-left: 0.3em solid transparent;
4232
}
16848 stevensc 4233
 
16825 efrain 4234
.dropup .dropdown-toggle:empty::after {
4235
  margin-left: 0;
4236
}
4237
 
16848 stevensc 4238
.dropend .dropdown-menu[data-bs-popper],
4239
.dropend [data-bs-popper].tt-menu {
16825 efrain 4240
  top: 0;
4241
  right: auto;
4242
  left: 100%;
4243
  margin-top: 0;
4244
  margin-left: var(--bs-dropdown-spacer);
4245
}
16848 stevensc 4246
 
16825 efrain 4247
.dropend .dropdown-toggle::after {
4248
  display: inline-block;
4249
  margin-left: 0.255em;
4250
  vertical-align: 0.255em;
4251
  content: "";
4252
  border-top: 0.3em solid transparent;
4253
  border-right: 0;
4254
  border-bottom: 0.3em solid transparent;
4255
  border-left: 0.3em solid;
4256
}
16848 stevensc 4257
 
16825 efrain 4258
.dropend .dropdown-toggle:empty::after {
4259
  margin-left: 0;
4260
}
16848 stevensc 4261
 
16825 efrain 4262
.dropend .dropdown-toggle::after {
4263
  vertical-align: 0;
4264
}
4265
 
16848 stevensc 4266
.dropstart .dropdown-menu[data-bs-popper],
4267
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4268
  top: 0;
4269
  right: 100%;
4270
  left: auto;
4271
  margin-top: 0;
4272
  margin-right: var(--bs-dropdown-spacer);
4273
}
16848 stevensc 4274
 
16825 efrain 4275
.dropstart .dropdown-toggle::after {
4276
  display: inline-block;
4277
  margin-left: 0.255em;
4278
  vertical-align: 0.255em;
4279
  content: "";
4280
}
16848 stevensc 4281
 
16825 efrain 4282
.dropstart .dropdown-toggle::after {
4283
  display: none;
4284
}
16848 stevensc 4285
 
16825 efrain 4286
.dropstart .dropdown-toggle::before {
4287
  display: inline-block;
4288
  margin-right: 0.255em;
4289
  vertical-align: 0.255em;
4290
  content: "";
4291
  border-top: 0.3em solid transparent;
4292
  border-right: 0.3em solid;
4293
  border-bottom: 0.3em solid transparent;
4294
}
16848 stevensc 4295
 
16825 efrain 4296
.dropstart .dropdown-toggle:empty::after {
4297
  margin-left: 0;
4298
}
16848 stevensc 4299
 
16825 efrain 4300
.dropstart .dropdown-toggle::before {
4301
  vertical-align: 0;
4302
}
4303
 
4304
.dropdown-divider {
4305
  height: 0;
4306
  margin: var(--bs-dropdown-divider-margin-y) 0;
4307
  overflow: hidden;
4308
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4309
  opacity: 1;
4310
}
4311
 
16848 stevensc 4312
.dropdown-item,
4313
.tt-menu .tt-suggestion {
16825 efrain 4314
  display: block;
4315
  width: 100%;
4316
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4317
  clear: both;
4318
  font-weight: 400;
4319
  color: var(--bs-dropdown-link-color);
4320
  text-align: inherit;
4321
  white-space: nowrap;
4322
  background-color: transparent;
4323
  border: 0;
4324
}
16848 stevensc 4325
 
4326
.dropdown-item:hover,
4327
.tt-menu .tt-suggestion:hover,
4328
.dropdown-item:focus,
4329
.tt-menu .tt-suggestion:focus {
16825 efrain 4330
  color: var(--bs-dropdown-link-hover-color);
4331
  background-color: var(--bs-dropdown-link-hover-bg);
4332
}
16848 stevensc 4333
 
4334
.dropdown-item.active,
4335
.tt-menu .active.tt-suggestion,
4336
.dropdown-item:active,
4337
.tt-menu .tt-suggestion:active {
16825 efrain 4338
  color: var(--bs-dropdown-link-active-color);
4339
  text-decoration: none;
4340
  background-color: var(--bs-dropdown-link-active-bg);
4341
}
16848 stevensc 4342
 
4343
.dropdown-item.disabled,
4344
.tt-menu .disabled.tt-suggestion,
4345
.dropdown-item:disabled,
4346
.tt-menu .tt-suggestion:disabled {
16825 efrain 4347
  color: var(--bs-dropdown-link-disabled-color);
4348
  pointer-events: none;
4349
  background-color: transparent;
4350
}
4351
 
16848 stevensc 4352
.dropdown-menu.show,
4353
.show.tt-menu {
16825 efrain 4354
  display: block;
4355
}
4356
 
4357
.dropdown-header {
4358
  display: block;
4359
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4360
  margin-bottom: 0;
4361
  font-size: 0.812rem;
4362
  color: var(--bs-dropdown-header-color);
4363
  white-space: nowrap;
4364
}
4365
 
4366
.dropdown-item-text {
4367
  display: block;
4368
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4369
  color: var(--bs-dropdown-link-color);
4370
}
4371
 
4372
.dropdown-menu-dark {
4373
  --bs-dropdown-color: #dee2e6;
4374
  --bs-dropdown-bg: #212a3a;
4375
  --bs-dropdown-border-color: #f2f4f9;
4376
  --bs-dropdown-box-shadow: ;
4377
  --bs-dropdown-link-color: #dee2e6;
4378
  --bs-dropdown-link-hover-color: #fff;
4379
  --bs-dropdown-divider-bg: #f2f4f9;
4380
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4381
  --bs-dropdown-link-active-color: #fff;
4382
  --bs-dropdown-link-active-bg: #6571ff;
4383
  --bs-dropdown-link-disabled-color: #aeb7c5;
4384
  --bs-dropdown-header-color: #aeb7c5;
4385
}
4386
 
4387
.btn-group,
4388
.btn-group-vertical {
4389
  position: relative;
4390
  display: inline-flex;
4391
  vertical-align: middle;
4392
}
16848 stevensc 4393
 
4394
.btn-group>.btn,
4395
.wizard>.actions .btn-group>a,
4396
div.tox .btn-group>.tox-button,
4397
.swal2-popup .swal2-actions .btn-group>button,
4398
.fc .btn-group>.fc-button-primary,
4399
.btn-group-vertical>.btn,
4400
.wizard>.actions .btn-group-vertical>a,
4401
div.tox .btn-group-vertical>.tox-button,
4402
.swal2-popup .swal2-actions .btn-group-vertical>button,
4403
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4404
  position: relative;
4405
  flex: 1 1 auto;
4406
}
16848 stevensc 4407
 
4408
.btn-group>.btn-check:checked+.btn,
4409
.wizard>.actions .btn-group>.btn-check:checked+a,
4410
div.tox .btn-group>.btn-check:checked+.tox-button,
4411
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4412
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4413
.btn-group>.btn-check:focus+.btn,
4414
.wizard>.actions .btn-group>.btn-check:focus+a,
4415
div.tox .btn-group>.btn-check:focus+.tox-button,
4416
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4417
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4418
.btn-group>.btn:hover,
4419
.wizard>.actions .btn-group>a:hover,
4420
div.tox .btn-group>.tox-button:hover,
4421
.swal2-popup .swal2-actions .btn-group>button:hover,
4422
.fc .btn-group>.fc-button-primary:hover,
4423
.btn-group>.btn:focus,
4424
.wizard>.actions .btn-group>a:focus,
4425
div.tox .btn-group>.tox-button:focus,
4426
.swal2-popup .swal2-actions .btn-group>button:focus,
4427
.fc .btn-group>.fc-button-primary:focus,
4428
.btn-group>.btn:active,
4429
.wizard>.actions .btn-group>a:active,
4430
div.tox .btn-group>.tox-button:active,
4431
.swal2-popup .swal2-actions .btn-group>button:active,
4432
.fc .btn-group>.fc-button-primary:active,
4433
.btn-group>.btn.active,
4434
.wizard>.actions .btn-group>a.active,
4435
div.tox .btn-group>.active.tox-button,
4436
.swal2-popup .swal2-actions .btn-group>button.active,
4437
.fc .btn-group>.active.fc-button-primary,
4438
.btn-group-vertical>.btn-check:checked+.btn,
4439
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4440
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4441
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4442
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4443
.btn-group-vertical>.btn-check:focus+.btn,
4444
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4445
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4446
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4447
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4448
.btn-group-vertical>.btn:hover,
4449
.wizard>.actions .btn-group-vertical>a:hover,
4450
div.tox .btn-group-vertical>.tox-button:hover,
4451
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4452
.fc .btn-group-vertical>.fc-button-primary:hover,
4453
.btn-group-vertical>.btn:focus,
4454
.wizard>.actions .btn-group-vertical>a:focus,
4455
div.tox .btn-group-vertical>.tox-button:focus,
4456
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4457
.fc .btn-group-vertical>.fc-button-primary:focus,
4458
.btn-group-vertical>.btn:active,
4459
.wizard>.actions .btn-group-vertical>a:active,
4460
div.tox .btn-group-vertical>.tox-button:active,
4461
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4462
.fc .btn-group-vertical>.fc-button-primary:active,
4463
.btn-group-vertical>.btn.active,
4464
.wizard>.actions .btn-group-vertical>a.active,
4465
div.tox .btn-group-vertical>.active.tox-button,
4466
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4467
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4468
  z-index: 1;
4469
}
4470
 
4471
.btn-toolbar {
4472
  display: flex;
4473
  flex-wrap: wrap;
4474
  justify-content: flex-start;
4475
}
16848 stevensc 4476
 
16825 efrain 4477
.btn-toolbar .input-group {
4478
  width: auto;
4479
}
4480
 
4481
.btn-group {
4482
  border-radius: 0.25rem;
4483
}
16848 stevensc 4484
 
4485
.btn-group> :not(.btn-check:first-child)+.btn,
4486
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4487
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4488
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4489
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4490
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4491
  margin-left: -1px;
4492
}
16848 stevensc 4493
 
4494
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4495
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4496
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4497
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4498
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4499
.btn-group>.btn.dropdown-toggle-split:first-child,
4500
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4501
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4502
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4503
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4504
.btn-group>.btn-group:not(:last-child)>.btn,
4505
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4506
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4507
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4508
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4509
  border-top-right-radius: 0;
4510
  border-bottom-right-radius: 0;
4511
}
16848 stevensc 4512
 
4513
.btn-group>.btn:nth-child(n+3),
4514
.wizard>.actions .btn-group>a:nth-child(n+3),
4515
div.tox .btn-group>.tox-button:nth-child(n+3),
4516
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4517
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4518
.btn-group> :not(.btn-check)+.btn,
4519
.wizard>.actions .btn-group> :not(.btn-check)+a,
4520
div.tox .btn-group> :not(.btn-check)+.tox-button,
4521
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4522
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4523
.btn-group>.btn-group:not(:first-child)>.btn,
4524
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4525
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4526
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4527
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4528
  border-top-left-radius: 0;
4529
  border-bottom-left-radius: 0;
4530
}
4531
 
4532
.dropdown-toggle-split {
4533
  padding-right: 0.6rem;
4534
  padding-left: 0.6rem;
4535
}
16848 stevensc 4536
 
4537
.dropdown-toggle-split::after,
4538
.dropup .dropdown-toggle-split::after,
4539
.dropend .dropdown-toggle-split::after {
16825 efrain 4540
  margin-left: 0;
4541
}
16848 stevensc 4542
 
16825 efrain 4543
.dropstart .dropdown-toggle-split::before {
4544
  margin-right: 0;
4545
}
4546
 
16848 stevensc 4547
.btn-sm+.dropdown-toggle-split,
4548
.fc .fc-button-primary+.dropdown-toggle-split,
4549
.btn-group-sm>.btn+.dropdown-toggle-split,
4550
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4551
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4552
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4553
  padding-right: 0.6rem;
4554
  padding-left: 0.6rem;
4555
}
4556
 
16848 stevensc 4557
.btn-lg+.dropdown-toggle-split,
4558
.btn-group-lg>.btn+.dropdown-toggle-split,
4559
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4560
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4561
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4562
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4563
  padding-right: 0.6rem;
4564
  padding-left: 0.6rem;
4565
}
4566
 
4567
.btn-group-vertical {
4568
  flex-direction: column;
4569
  align-items: flex-start;
4570
  justify-content: center;
4571
}
16848 stevensc 4572
 
4573
.btn-group-vertical>.btn,
4574
.wizard>.actions .btn-group-vertical>a,
4575
div.tox .btn-group-vertical>.tox-button,
4576
.swal2-popup .swal2-actions .btn-group-vertical>button,
4577
.fc .btn-group-vertical>.fc-button-primary,
4578
.btn-group-vertical>.btn-group {
16825 efrain 4579
  width: 100%;
4580
}
16848 stevensc 4581
 
4582
.btn-group-vertical>.btn:not(:first-child),
4583
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4584
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4585
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4586
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4587
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4588
  margin-top: -1px;
4589
}
16848 stevensc 4590
 
4591
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4592
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4593
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4594
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4595
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4596
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4597
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4598
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4599
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4600
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4601
  border-bottom-right-radius: 0;
4602
  border-bottom-left-radius: 0;
4603
}
16848 stevensc 4604
 
4605
.btn-group-vertical>.btn~.btn,
4606
.wizard>.actions .btn-group-vertical>a~.btn,
4607
.wizard>.actions .btn-group-vertical>.btn~a,
4608
.wizard>.actions .btn-group-vertical>a~a,
4609
div.tox .btn-group-vertical>.tox-button~.btn,
4610
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4611
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4612
div.tox .btn-group-vertical>.btn~.tox-button,
4613
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4614
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4615
div.tox .btn-group-vertical>.tox-button~.tox-button,
4616
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4617
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4618
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4619
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4620
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4621
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4622
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4623
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4624
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4625
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4626
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4627
.fc .btn-group-vertical>.fc-button-primary~.btn,
4628
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4629
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4630
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4631
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4632
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4633
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4634
.fc .btn-group-vertical>.btn~.fc-button-primary,
4635
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4636
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4637
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4638
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4639
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4640
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4641
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4642
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4643
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4644
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4645
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4646
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4647
  border-top-left-radius: 0;
4648
  border-top-right-radius: 0;
4649
}
4650
 
4651
.nav {
4652
  --bs-nav-link-padding-x: 1rem;
4653
  --bs-nav-link-padding-y: 0.5rem;
4654
  --bs-nav-link-font-weight: ;
4655
  --bs-nav-link-color: var(--bs-link-color);
4656
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4657
  --bs-nav-link-disabled-color: #7987a1;
4658
  display: flex;
4659
  flex-wrap: wrap;
4660
  padding-left: 0;
4661
  margin-bottom: 0;
4662
  list-style: none;
4663
}
4664
 
4665
.nav-link {
4666
  display: block;
4667
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4668
  font-size: var(--bs-nav-link-font-size);
4669
  font-weight: var(--bs-nav-link-font-weight);
4670
  color: var(--bs-nav-link-color);
4671
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4672
}
16848 stevensc 4673
 
16825 efrain 4674
@media (prefers-reduced-motion: reduce) {
4675
  .nav-link {
4676
    transition: none;
4677
  }
4678
}
16848 stevensc 4679
 
4680
.nav-link:hover,
4681
.nav-link:focus {
16825 efrain 4682
  color: var(--bs-nav-link-hover-color);
4683
}
16848 stevensc 4684
 
16825 efrain 4685
.nav-link.disabled {
4686
  color: var(--bs-nav-link-disabled-color);
4687
  pointer-events: none;
4688
  cursor: default;
4689
}
4690
 
4691
.nav-tabs {
4692
  --bs-nav-tabs-border-width: 1px;
4693
  --bs-nav-tabs-border-color: #dee2e6;
4694
  --bs-nav-tabs-border-radius: 0.25rem;
4695
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4696
  --bs-nav-tabs-link-active-color: #41516c;
4697
  --bs-nav-tabs-link-active-bg: #fff;
4698
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4699
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4700
}
16848 stevensc 4701
 
16825 efrain 4702
.nav-tabs .nav-link {
4703
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4704
  background: none;
4705
  border: var(--bs-nav-tabs-border-width) solid transparent;
4706
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4707
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4708
}
16848 stevensc 4709
 
4710
.nav-tabs .nav-link:hover,
4711
.nav-tabs .nav-link:focus {
16825 efrain 4712
  isolation: isolate;
4713
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4714
}
16848 stevensc 4715
 
4716
.nav-tabs .nav-link.disabled,
4717
.nav-tabs .nav-link:disabled {
16825 efrain 4718
  color: var(--bs-nav-link-disabled-color);
4719
  background-color: transparent;
4720
  border-color: transparent;
4721
}
16848 stevensc 4722
 
16825 efrain 4723
.nav-tabs .nav-link.active,
4724
.nav-tabs .nav-item.show .nav-link {
4725
  color: var(--bs-nav-tabs-link-active-color);
4726
  background-color: var(--bs-nav-tabs-link-active-bg);
4727
  border-color: var(--bs-nav-tabs-link-active-border-color);
4728
}
16848 stevensc 4729
 
4730
.nav-tabs .dropdown-menu,
4731
.nav-tabs .tt-menu {
16825 efrain 4732
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4733
  border-top-left-radius: 0;
4734
  border-top-right-radius: 0;
4735
}
4736
 
4737
.nav-pills {
4738
  --bs-nav-pills-border-radius: 0.25rem;
4739
  --bs-nav-pills-link-active-color: #fff;
4740
  --bs-nav-pills-link-active-bg: #6571ff;
4741
}
16848 stevensc 4742
 
16825 efrain 4743
.nav-pills .nav-link {
4744
  background: none;
4745
  border: 0;
4746
  border-radius: var(--bs-nav-pills-border-radius);
4747
}
16848 stevensc 4748
 
16825 efrain 4749
.nav-pills .nav-link:disabled {
4750
  color: var(--bs-nav-link-disabled-color);
4751
  background-color: transparent;
4752
  border-color: transparent;
4753
}
16848 stevensc 4754
 
16825 efrain 4755
.nav-pills .nav-link.active,
16848 stevensc 4756
.nav-pills .show>.nav-link {
16825 efrain 4757
  color: var(--bs-nav-pills-link-active-color);
4758
  background-color: var(--bs-nav-pills-link-active-bg);
4759
}
4760
 
16848 stevensc 4761
.nav-fill>.nav-link,
16825 efrain 4762
.nav-fill .nav-item {
4763
  flex: 1 1 auto;
4764
  text-align: center;
4765
}
4766
 
16848 stevensc 4767
.nav-justified>.nav-link,
16825 efrain 4768
.nav-justified .nav-item {
4769
  flex-basis: 0;
4770
  flex-grow: 1;
4771
  text-align: center;
4772
}
4773
 
4774
.nav-fill .nav-item .nav-link,
4775
.nav-justified .nav-item .nav-link {
4776
  width: 100%;
4777
}
4778
 
16848 stevensc 4779
.tab-content>.tab-pane {
16825 efrain 4780
  display: none;
4781
}
16848 stevensc 4782
 
4783
.tab-content>.active {
16825 efrain 4784
  display: block;
4785
}
4786
 
4787
.navbar {
4788
  --bs-navbar-padding-x: 0;
4789
  --bs-navbar-padding-y: 0.5rem;
4790
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4791
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4792
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4793
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4794
  --bs-navbar-brand-padding-y: 0.40625rem;
4795
  --bs-navbar-brand-margin-end: 1rem;
4796
  --bs-navbar-brand-font-size: 1rem;
4797
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4798
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4799
  --bs-navbar-nav-link-padding-x: 0.5rem;
4800
  --bs-navbar-toggler-padding-y: 0.25rem;
4801
  --bs-navbar-toggler-padding-x: 0.75rem;
4802
  --bs-navbar-toggler-font-size: 1rem;
4803
  --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");
4804
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4805
  --bs-navbar-toggler-border-radius: 0.25rem;
4806
  --bs-navbar-toggler-focus-width: 0;
4807
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4808
  position: relative;
4809
  display: flex;
4810
  flex-wrap: wrap;
4811
  align-items: center;
4812
  justify-content: space-between;
4813
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4814
}
16848 stevensc 4815
 
4816
.navbar>.container,
4817
.navbar>.container-fluid,
4818
.navbar>.container-sm,
4819
.navbar>.container-md,
4820
.navbar>.container-lg,
4821
.navbar>.container-xl,
4822
.navbar>.container-xxl {
16825 efrain 4823
  display: flex;
4824
  flex-wrap: inherit;
4825
  align-items: center;
4826
  justify-content: space-between;
4827
}
16848 stevensc 4828
 
16825 efrain 4829
.navbar-brand {
4830
  padding-top: var(--bs-navbar-brand-padding-y);
4831
  padding-bottom: var(--bs-navbar-brand-padding-y);
4832
  margin-right: var(--bs-navbar-brand-margin-end);
4833
  font-size: var(--bs-navbar-brand-font-size);
4834
  color: var(--bs-navbar-brand-color);
4835
  white-space: nowrap;
4836
}
16848 stevensc 4837
 
4838
.navbar-brand:hover,
4839
.navbar-brand:focus {
16825 efrain 4840
  color: var(--bs-navbar-brand-hover-color);
4841
}
4842
 
4843
.navbar-nav {
4844
  --bs-nav-link-padding-x: 0;
4845
  --bs-nav-link-padding-y: 0.5rem;
4846
  --bs-nav-link-font-weight: ;
4847
  --bs-nav-link-color: var(--bs-navbar-color);
4848
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4849
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4850
  display: flex;
4851
  flex-direction: column;
4852
  padding-left: 0;
4853
  margin-bottom: 0;
4854
  list-style: none;
4855
}
16848 stevensc 4856
 
4857
.navbar-nav .show>.nav-link,
16825 efrain 4858
.navbar-nav .nav-link.active {
4859
  color: var(--bs-navbar-active-color);
4860
}
16848 stevensc 4861
 
4862
.navbar-nav .dropdown-menu,
4863
.navbar-nav .tt-menu {
16825 efrain 4864
  position: static;
4865
}
4866
 
4867
.navbar-text {
4868
  padding-top: 0.5rem;
4869
  padding-bottom: 0.5rem;
4870
  color: var(--bs-navbar-color);
4871
}
16848 stevensc 4872
 
16825 efrain 4873
.navbar-text a,
4874
.navbar-text a:hover,
4875
.navbar-text a:focus {
4876
  color: var(--bs-navbar-active-color);
4877
}
4878
 
4879
.navbar-collapse {
4880
  flex-basis: 100%;
4881
  flex-grow: 1;
4882
  align-items: center;
4883
}
4884
 
4885
.navbar-toggler {
4886
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4887
  font-size: var(--bs-navbar-toggler-font-size);
4888
  line-height: 1;
4889
  color: var(--bs-navbar-color);
4890
  background-color: transparent;
4891
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4892
  border-radius: var(--bs-navbar-toggler-border-radius);
4893
  transition: var(--bs-navbar-toggler-transition);
4894
}
16848 stevensc 4895
 
16825 efrain 4896
@media (prefers-reduced-motion: reduce) {
4897
  .navbar-toggler {
4898
    transition: none;
4899
  }
4900
}
16848 stevensc 4901
 
16825 efrain 4902
.navbar-toggler:hover {
4903
  text-decoration: none;
4904
}
16848 stevensc 4905
 
16825 efrain 4906
.navbar-toggler:focus {
4907
  text-decoration: none;
4908
  outline: 0;
4909
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4910
}
4911
 
4912
.navbar-toggler-icon {
4913
  display: inline-block;
4914
  width: 1.5em;
4915
  height: 1.5em;
4916
  vertical-align: middle;
4917
  background-image: var(--bs-navbar-toggler-icon-bg);
4918
  background-repeat: no-repeat;
4919
  background-position: center;
4920
  background-size: 100%;
4921
}
4922
 
4923
.navbar-nav-scroll {
4924
  max-height: var(--bs-scroll-height, 75vh);
4925
  overflow-y: auto;
4926
}
4927
 
4928
@media (min-width: 576px) {
4929
  .navbar-expand-sm {
4930
    flex-wrap: nowrap;
4931
    justify-content: flex-start;
4932
  }
16848 stevensc 4933
 
16825 efrain 4934
  .navbar-expand-sm .navbar-nav {
4935
    flex-direction: row;
4936
  }
16848 stevensc 4937
 
4938
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4939
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4940
    position: absolute;
4941
  }
16848 stevensc 4942
 
16825 efrain 4943
  .navbar-expand-sm .navbar-nav .nav-link {
4944
    padding-right: var(--bs-navbar-nav-link-padding-x);
4945
    padding-left: var(--bs-navbar-nav-link-padding-x);
4946
  }
16848 stevensc 4947
 
16825 efrain 4948
  .navbar-expand-sm .navbar-nav-scroll {
4949
    overflow: visible;
4950
  }
16848 stevensc 4951
 
16825 efrain 4952
  .navbar-expand-sm .navbar-collapse {
4953
    display: flex !important;
4954
    flex-basis: auto;
4955
  }
16848 stevensc 4956
 
16825 efrain 4957
  .navbar-expand-sm .navbar-toggler {
4958
    display: none;
4959
  }
16848 stevensc 4960
 
16825 efrain 4961
  .navbar-expand-sm .offcanvas {
4962
    position: static;
4963
    z-index: auto;
4964
    flex-grow: 1;
4965
    width: auto !important;
4966
    height: auto !important;
4967
    visibility: visible !important;
4968
    background-color: transparent !important;
4969
    border: 0 !important;
4970
    transform: none !important;
4971
    transition: none;
4972
  }
16848 stevensc 4973
 
16825 efrain 4974
  .navbar-expand-sm .offcanvas .offcanvas-header {
4975
    display: none;
4976
  }
16848 stevensc 4977
 
16825 efrain 4978
  .navbar-expand-sm .offcanvas .offcanvas-body {
4979
    display: flex;
4980
    flex-grow: 0;
4981
    padding: 0;
4982
    overflow-y: visible;
4983
  }
4984
}
16848 stevensc 4985
 
16825 efrain 4986
@media (min-width: 768px) {
4987
  .navbar-expand-md {
4988
    flex-wrap: nowrap;
4989
    justify-content: flex-start;
4990
  }
16848 stevensc 4991
 
16825 efrain 4992
  .navbar-expand-md .navbar-nav {
4993
    flex-direction: row;
4994
  }
16848 stevensc 4995
 
4996
  .navbar-expand-md .navbar-nav .dropdown-menu,
4997
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4998
    position: absolute;
4999
  }
16848 stevensc 5000
 
16825 efrain 5001
  .navbar-expand-md .navbar-nav .nav-link {
5002
    padding-right: var(--bs-navbar-nav-link-padding-x);
5003
    padding-left: var(--bs-navbar-nav-link-padding-x);
5004
  }
16848 stevensc 5005
 
16825 efrain 5006
  .navbar-expand-md .navbar-nav-scroll {
5007
    overflow: visible;
5008
  }
16848 stevensc 5009
 
16825 efrain 5010
  .navbar-expand-md .navbar-collapse {
5011
    display: flex !important;
5012
    flex-basis: auto;
5013
  }
16848 stevensc 5014
 
16825 efrain 5015
  .navbar-expand-md .navbar-toggler {
5016
    display: none;
5017
  }
16848 stevensc 5018
 
16825 efrain 5019
  .navbar-expand-md .offcanvas {
5020
    position: static;
5021
    z-index: auto;
5022
    flex-grow: 1;
5023
    width: auto !important;
5024
    height: auto !important;
5025
    visibility: visible !important;
5026
    background-color: transparent !important;
5027
    border: 0 !important;
5028
    transform: none !important;
5029
    transition: none;
5030
  }
16848 stevensc 5031
 
16825 efrain 5032
  .navbar-expand-md .offcanvas .offcanvas-header {
5033
    display: none;
5034
  }
16848 stevensc 5035
 
16825 efrain 5036
  .navbar-expand-md .offcanvas .offcanvas-body {
5037
    display: flex;
5038
    flex-grow: 0;
5039
    padding: 0;
5040
    overflow-y: visible;
5041
  }
5042
}
16848 stevensc 5043
 
16825 efrain 5044
@media (min-width: 992px) {
5045
  .navbar-expand-lg {
5046
    flex-wrap: nowrap;
5047
    justify-content: flex-start;
5048
  }
16848 stevensc 5049
 
16825 efrain 5050
  .navbar-expand-lg .navbar-nav {
5051
    flex-direction: row;
5052
  }
16848 stevensc 5053
 
5054
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5055
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5056
    position: absolute;
5057
  }
16848 stevensc 5058
 
16825 efrain 5059
  .navbar-expand-lg .navbar-nav .nav-link {
5060
    padding-right: var(--bs-navbar-nav-link-padding-x);
5061
    padding-left: var(--bs-navbar-nav-link-padding-x);
5062
  }
16848 stevensc 5063
 
16825 efrain 5064
  .navbar-expand-lg .navbar-nav-scroll {
5065
    overflow: visible;
5066
  }
16848 stevensc 5067
 
16825 efrain 5068
  .navbar-expand-lg .navbar-collapse {
5069
    display: flex !important;
5070
    flex-basis: auto;
5071
  }
16848 stevensc 5072
 
16825 efrain 5073
  .navbar-expand-lg .navbar-toggler {
5074
    display: none;
5075
  }
16848 stevensc 5076
 
16825 efrain 5077
  .navbar-expand-lg .offcanvas {
5078
    position: static;
5079
    z-index: auto;
5080
    flex-grow: 1;
5081
    width: auto !important;
5082
    height: auto !important;
5083
    visibility: visible !important;
5084
    background-color: transparent !important;
5085
    border: 0 !important;
5086
    transform: none !important;
5087
    transition: none;
5088
  }
16848 stevensc 5089
 
16825 efrain 5090
  .navbar-expand-lg .offcanvas .offcanvas-header {
5091
    display: none;
5092
  }
16848 stevensc 5093
 
16825 efrain 5094
  .navbar-expand-lg .offcanvas .offcanvas-body {
5095
    display: flex;
5096
    flex-grow: 0;
5097
    padding: 0;
5098
    overflow-y: visible;
5099
  }
5100
}
16848 stevensc 5101
 
16825 efrain 5102
@media (min-width: 1200px) {
5103
  .navbar-expand-xl {
5104
    flex-wrap: nowrap;
5105
    justify-content: flex-start;
5106
  }
16848 stevensc 5107
 
16825 efrain 5108
  .navbar-expand-xl .navbar-nav {
5109
    flex-direction: row;
5110
  }
16848 stevensc 5111
 
5112
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5113
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5114
    position: absolute;
5115
  }
16848 stevensc 5116
 
16825 efrain 5117
  .navbar-expand-xl .navbar-nav .nav-link {
5118
    padding-right: var(--bs-navbar-nav-link-padding-x);
5119
    padding-left: var(--bs-navbar-nav-link-padding-x);
5120
  }
16848 stevensc 5121
 
16825 efrain 5122
  .navbar-expand-xl .navbar-nav-scroll {
5123
    overflow: visible;
5124
  }
16848 stevensc 5125
 
16825 efrain 5126
  .navbar-expand-xl .navbar-collapse {
5127
    display: flex !important;
5128
    flex-basis: auto;
5129
  }
16848 stevensc 5130
 
16825 efrain 5131
  .navbar-expand-xl .navbar-toggler {
5132
    display: none;
5133
  }
16848 stevensc 5134
 
16825 efrain 5135
  .navbar-expand-xl .offcanvas {
5136
    position: static;
5137
    z-index: auto;
5138
    flex-grow: 1;
5139
    width: auto !important;
5140
    height: auto !important;
5141
    visibility: visible !important;
5142
    background-color: transparent !important;
5143
    border: 0 !important;
5144
    transform: none !important;
5145
    transition: none;
5146
  }
16848 stevensc 5147
 
16825 efrain 5148
  .navbar-expand-xl .offcanvas .offcanvas-header {
5149
    display: none;
5150
  }
16848 stevensc 5151
 
16825 efrain 5152
  .navbar-expand-xl .offcanvas .offcanvas-body {
5153
    display: flex;
5154
    flex-grow: 0;
5155
    padding: 0;
5156
    overflow-y: visible;
5157
  }
5158
}
16848 stevensc 5159
 
16825 efrain 5160
@media (min-width: 1400px) {
5161
  .navbar-expand-xxl {
5162
    flex-wrap: nowrap;
5163
    justify-content: flex-start;
5164
  }
16848 stevensc 5165
 
16825 efrain 5166
  .navbar-expand-xxl .navbar-nav {
5167
    flex-direction: row;
5168
  }
16848 stevensc 5169
 
5170
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5171
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5172
    position: absolute;
5173
  }
16848 stevensc 5174
 
16825 efrain 5175
  .navbar-expand-xxl .navbar-nav .nav-link {
5176
    padding-right: var(--bs-navbar-nav-link-padding-x);
5177
    padding-left: var(--bs-navbar-nav-link-padding-x);
5178
  }
16848 stevensc 5179
 
16825 efrain 5180
  .navbar-expand-xxl .navbar-nav-scroll {
5181
    overflow: visible;
5182
  }
16848 stevensc 5183
 
16825 efrain 5184
  .navbar-expand-xxl .navbar-collapse {
5185
    display: flex !important;
5186
    flex-basis: auto;
5187
  }
16848 stevensc 5188
 
16825 efrain 5189
  .navbar-expand-xxl .navbar-toggler {
5190
    display: none;
5191
  }
16848 stevensc 5192
 
16825 efrain 5193
  .navbar-expand-xxl .offcanvas {
5194
    position: static;
5195
    z-index: auto;
5196
    flex-grow: 1;
5197
    width: auto !important;
5198
    height: auto !important;
5199
    visibility: visible !important;
5200
    background-color: transparent !important;
5201
    border: 0 !important;
5202
    transform: none !important;
5203
    transition: none;
5204
  }
16848 stevensc 5205
 
16825 efrain 5206
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5207
    display: none;
5208
  }
16848 stevensc 5209
 
16825 efrain 5210
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5211
    display: flex;
5212
    flex-grow: 0;
5213
    padding: 0;
5214
    overflow-y: visible;
5215
  }
5216
}
16848 stevensc 5217
 
16825 efrain 5218
.navbar-expand {
5219
  flex-wrap: nowrap;
5220
  justify-content: flex-start;
5221
}
16848 stevensc 5222
 
16825 efrain 5223
.navbar-expand .navbar-nav {
5224
  flex-direction: row;
5225
}
16848 stevensc 5226
 
5227
.navbar-expand .navbar-nav .dropdown-menu,
5228
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5229
  position: absolute;
5230
}
16848 stevensc 5231
 
16825 efrain 5232
.navbar-expand .navbar-nav .nav-link {
5233
  padding-right: var(--bs-navbar-nav-link-padding-x);
5234
  padding-left: var(--bs-navbar-nav-link-padding-x);
5235
}
16848 stevensc 5236
 
16825 efrain 5237
.navbar-expand .navbar-nav-scroll {
5238
  overflow: visible;
5239
}
16848 stevensc 5240
 
16825 efrain 5241
.navbar-expand .navbar-collapse {
5242
  display: flex !important;
5243
  flex-basis: auto;
5244
}
16848 stevensc 5245
 
16825 efrain 5246
.navbar-expand .navbar-toggler {
5247
  display: none;
5248
}
16848 stevensc 5249
 
16825 efrain 5250
.navbar-expand .offcanvas {
5251
  position: static;
5252
  z-index: auto;
5253
  flex-grow: 1;
5254
  width: auto !important;
5255
  height: auto !important;
5256
  visibility: visible !important;
5257
  background-color: transparent !important;
5258
  border: 0 !important;
5259
  transform: none !important;
5260
  transition: none;
5261
}
16848 stevensc 5262
 
16825 efrain 5263
.navbar-expand .offcanvas .offcanvas-header {
5264
  display: none;
5265
}
16848 stevensc 5266
 
16825 efrain 5267
.navbar-expand .offcanvas .offcanvas-body {
5268
  display: flex;
5269
  flex-grow: 0;
5270
  padding: 0;
5271
  overflow-y: visible;
5272
}
5273
 
5274
.navbar-dark {
5275
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5276
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5277
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5278
  --bs-navbar-active-color: #fff;
5279
  --bs-navbar-brand-color: #fff;
5280
  --bs-navbar-brand-hover-color: #fff;
5281
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5282
  --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");
5283
}
5284
 
5285
.card {
5286
  --bs-card-spacer-y: 1.5rem;
5287
  --bs-card-spacer-x: 1.5rem;
5288
  --bs-card-title-spacer-y: 0.875rem;
5289
  --bs-card-border-width: 1px;
5290
  --bs-card-border-color: #f2f4f9;
5291
  --bs-card-border-radius: 0.25rem;
5292
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5293
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5294
  --bs-card-cap-padding-y: 0.875rem;
5295
  --bs-card-cap-padding-x: 1.5rem;
5296
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5297
  --bs-card-cap-color: ;
5298
  --bs-card-height: ;
5299
  --bs-card-color: ;
5300
  --bs-card-bg: #fff;
5301
  --bs-card-img-overlay-padding: 1rem;
5302
  --bs-card-group-margin: 0.75rem;
5303
  position: relative;
5304
  display: flex;
5305
  flex-direction: column;
5306
  min-width: 0;
5307
  height: var(--bs-card-height);
5308
  word-wrap: break-word;
5309
  background-color: var(--bs-card-bg);
5310
  background-clip: border-box;
5311
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5312
  border-radius: var(--bs-card-border-radius);
5313
}
16848 stevensc 5314
 
5315
.card>hr {
16825 efrain 5316
  margin-right: 0;
5317
  margin-left: 0;
5318
}
16848 stevensc 5319
 
5320
.card>.list-group {
16825 efrain 5321
  border-top: inherit;
5322
  border-bottom: inherit;
5323
}
16848 stevensc 5324
 
5325
.card>.list-group:first-child {
16825 efrain 5326
  border-top-width: 0;
5327
  border-top-left-radius: var(--bs-card-inner-border-radius);
5328
  border-top-right-radius: var(--bs-card-inner-border-radius);
5329
}
16848 stevensc 5330
 
5331
.card>.list-group:last-child {
16825 efrain 5332
  border-bottom-width: 0;
5333
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5334
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5335
}
16848 stevensc 5336
 
5337
.card>.card-header+.list-group,
5338
.card>.list-group+.card-footer {
16825 efrain 5339
  border-top: 0;
5340
}
5341
 
5342
.card-body {
5343
  flex: 1 1 auto;
5344
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5345
  color: var(--bs-card-color);
5346
}
5347
 
5348
.card-title {
5349
  margin-bottom: var(--bs-card-title-spacer-y);
5350
}
5351
 
5352
.card-subtitle {
5353
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5354
  margin-bottom: 0;
5355
}
5356
 
5357
.card-text:last-child {
5358
  margin-bottom: 0;
5359
}
5360
 
16848 stevensc 5361
.card-link+.card-link {
16825 efrain 5362
  margin-left: var(--bs-card-spacer-x);
5363
}
5364
 
5365
.card-header {
5366
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5367
  margin-bottom: 0;
5368
  color: var(--bs-card-cap-color);
5369
  background-color: var(--bs-card-cap-bg);
5370
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5371
}
16848 stevensc 5372
 
16825 efrain 5373
.card-header:first-child {
5374
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5375
}
5376
 
5377
.card-footer {
5378
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5379
  color: var(--bs-card-cap-color);
5380
  background-color: var(--bs-card-cap-bg);
5381
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5382
}
16848 stevensc 5383
 
16825 efrain 5384
.card-footer:last-child {
5385
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5386
}
5387
 
5388
.card-header-tabs {
5389
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5390
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5391
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5392
  border-bottom: 0;
5393
}
16848 stevensc 5394
 
16825 efrain 5395
.card-header-tabs .nav-link.active {
5396
  background-color: var(--bs-card-bg);
5397
  border-bottom-color: var(--bs-card-bg);
5398
}
5399
 
5400
.card-header-pills {
5401
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5402
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5403
}
5404
 
5405
.card-img-overlay {
5406
  position: absolute;
5407
  top: 0;
5408
  right: 0;
5409
  bottom: 0;
5410
  left: 0;
5411
  padding: var(--bs-card-img-overlay-padding);
5412
  border-radius: var(--bs-card-inner-border-radius);
5413
}
5414
 
5415
.card-img,
5416
.card-img-top,
5417
.card-img-bottom {
5418
  width: 100%;
5419
}
5420
 
5421
.card-img,
5422
.card-img-top {
5423
  border-top-left-radius: var(--bs-card-inner-border-radius);
5424
  border-top-right-radius: var(--bs-card-inner-border-radius);
5425
}
5426
 
5427
.card-img,
5428
.card-img-bottom {
5429
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5430
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5431
}
5432
 
16848 stevensc 5433
.card-group>.card {
16825 efrain 5434
  margin-bottom: var(--bs-card-group-margin);
5435
}
16848 stevensc 5436
 
16825 efrain 5437
@media (min-width: 576px) {
5438
  .card-group {
5439
    display: flex;
5440
    flex-flow: row wrap;
5441
  }
16848 stevensc 5442
 
5443
  .card-group>.card {
16825 efrain 5444
    flex: 1 0 0%;
5445
    margin-bottom: 0;
5446
  }
16848 stevensc 5447
 
5448
  .card-group>.card+.card {
16825 efrain 5449
    margin-left: 0;
5450
    border-left: 0;
5451
  }
16848 stevensc 5452
 
5453
  .card-group>.card:not(:last-child) {
16825 efrain 5454
    border-top-right-radius: 0;
5455
    border-bottom-right-radius: 0;
5456
  }
16848 stevensc 5457
 
5458
  .card-group>.card:not(:last-child) .card-img-top,
5459
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5460
    border-top-right-radius: 0;
5461
  }
16848 stevensc 5462
 
5463
  .card-group>.card:not(:last-child) .card-img-bottom,
5464
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5465
    border-bottom-right-radius: 0;
5466
  }
16848 stevensc 5467
 
5468
  .card-group>.card:not(:first-child) {
16825 efrain 5469
    border-top-left-radius: 0;
5470
    border-bottom-left-radius: 0;
5471
  }
16848 stevensc 5472
 
5473
  .card-group>.card:not(:first-child) .card-img-top,
5474
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5475
    border-top-left-radius: 0;
5476
  }
16848 stevensc 5477
 
5478
  .card-group>.card:not(:first-child) .card-img-bottom,
5479
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5480
    border-bottom-left-radius: 0;
5481
  }
5482
}
5483
 
5484
.accordion {
5485
  --bs-accordion-color: #000;
5486
  --bs-accordion-bg: #fff;
5487
  --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;
5488
  --bs-accordion-border-color: #e9ecef;
5489
  --bs-accordion-border-width: 1px;
5490
  --bs-accordion-border-radius: 0.25rem;
5491
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5492
  --bs-accordion-btn-padding-x: 1.25rem;
5493
  --bs-accordion-btn-padding-y: 1rem;
5494
  --bs-accordion-btn-color: #000;
5495
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5496
  --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");
5497
  --bs-accordion-btn-icon-width: 0.875rem;
5498
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5499
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5500
  --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");
5501
  --bs-accordion-btn-focus-border-color: #cbd1db;
5502
  --bs-accordion-btn-focus-box-shadow: none;
5503
  --bs-accordion-body-padding-x: 1.25rem;
5504
  --bs-accordion-body-padding-y: 1rem;
5505
  --bs-accordion-active-color: #5b66e6;
5506
  --bs-accordion-active-bg: #f0f1ff;
5507
}
5508
 
5509
.accordion-button {
5510
  position: relative;
5511
  display: flex;
5512
  align-items: center;
5513
  width: 100%;
5514
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5515
  font-size: 0.875rem;
5516
  color: var(--bs-accordion-btn-color);
5517
  text-align: left;
5518
  background-color: var(--bs-accordion-btn-bg);
5519
  border: 0;
5520
  border-radius: 0;
5521
  overflow-anchor: none;
5522
  transition: var(--bs-accordion-transition);
5523
}
16848 stevensc 5524
 
16825 efrain 5525
@media (prefers-reduced-motion: reduce) {
5526
  .accordion-button {
5527
    transition: none;
5528
  }
5529
}
16848 stevensc 5530
 
16825 efrain 5531
.accordion-button:not(.collapsed) {
5532
  color: var(--bs-accordion-active-color);
5533
  background-color: var(--bs-accordion-active-bg);
5534
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5535
}
16848 stevensc 5536
 
16825 efrain 5537
.accordion-button:not(.collapsed)::after {
5538
  background-image: var(--bs-accordion-btn-active-icon);
5539
  transform: var(--bs-accordion-btn-icon-transform);
5540
}
16848 stevensc 5541
 
16825 efrain 5542
.accordion-button::after {
5543
  flex-shrink: 0;
5544
  width: var(--bs-accordion-btn-icon-width);
5545
  height: var(--bs-accordion-btn-icon-width);
5546
  margin-left: auto;
5547
  content: "";
5548
  background-image: var(--bs-accordion-btn-icon);
5549
  background-repeat: no-repeat;
5550
  background-size: var(--bs-accordion-btn-icon-width);
5551
  transition: var(--bs-accordion-btn-icon-transition);
5552
}
16848 stevensc 5553
 
16825 efrain 5554
@media (prefers-reduced-motion: reduce) {
5555
  .accordion-button::after {
5556
    transition: none;
5557
  }
5558
}
16848 stevensc 5559
 
16825 efrain 5560
.accordion-button:hover {
5561
  z-index: 2;
5562
}
16848 stevensc 5563
 
16825 efrain 5564
.accordion-button:focus {
5565
  z-index: 3;
5566
  border-color: var(--bs-accordion-btn-focus-border-color);
5567
  outline: 0;
5568
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5569
}
5570
 
5571
.accordion-header {
5572
  margin-bottom: 0;
5573
}
5574
 
5575
.accordion-item {
5576
  color: var(--bs-accordion-color);
5577
  background-color: var(--bs-accordion-bg);
5578
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5579
}
16848 stevensc 5580
 
16825 efrain 5581
.accordion-item:first-of-type {
5582
  border-top-left-radius: var(--bs-accordion-border-radius);
5583
  border-top-right-radius: var(--bs-accordion-border-radius);
5584
}
16848 stevensc 5585
 
16825 efrain 5586
.accordion-item:first-of-type .accordion-button {
5587
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5588
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5589
}
16848 stevensc 5590
 
16825 efrain 5591
.accordion-item:not(:first-of-type) {
5592
  border-top: 0;
5593
}
16848 stevensc 5594
 
16825 efrain 5595
.accordion-item:last-of-type {
5596
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5597
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5598
}
16848 stevensc 5599
 
16825 efrain 5600
.accordion-item:last-of-type .accordion-button.collapsed {
5601
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5602
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5603
}
16848 stevensc 5604
 
16825 efrain 5605
.accordion-item:last-of-type .accordion-collapse {
5606
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5607
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5608
}
5609
 
5610
.accordion-body {
5611
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5612
}
5613
 
5614
.accordion-flush .accordion-collapse {
5615
  border-width: 0;
5616
}
16848 stevensc 5617
 
16825 efrain 5618
.accordion-flush .accordion-item {
5619
  border-right: 0;
5620
  border-left: 0;
5621
  border-radius: 0;
5622
}
16848 stevensc 5623
 
16825 efrain 5624
.accordion-flush .accordion-item:first-child {
5625
  border-top: 0;
5626
}
16848 stevensc 5627
 
16825 efrain 5628
.accordion-flush .accordion-item:last-child {
5629
  border-bottom: 0;
5630
}
16848 stevensc 5631
 
5632
.accordion-flush .accordion-item .accordion-button,
5633
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5634
  border-radius: 0;
5635
}
5636
 
5637
.breadcrumb {
5638
  --bs-breadcrumb-padding-x: 0;
5639
  --bs-breadcrumb-padding-y: 0;
5640
  --bs-breadcrumb-margin-bottom: 1rem;
5641
  --bs-breadcrumb-bg: ;
5642
  --bs-breadcrumb-border-radius: ;
5643
  --bs-breadcrumb-divider-color: #7987a1;
5644
  --bs-breadcrumb-item-padding-x: 0.5rem;
5645
  --bs-breadcrumb-item-active-color: #7987a1;
5646
  display: flex;
5647
  flex-wrap: wrap;
5648
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5649
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5650
  font-size: var(--bs-breadcrumb-font-size);
5651
  list-style: none;
5652
  background-color: var(--bs-breadcrumb-bg);
5653
  border-radius: var(--bs-breadcrumb-border-radius);
5654
}
5655
 
16848 stevensc 5656
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5657
  padding-left: var(--bs-breadcrumb-item-padding-x);
5658
}
16848 stevensc 5659
 
5660
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5661
  float: left;
5662
  padding-right: var(--bs-breadcrumb-item-padding-x);
5663
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5664
  content: var(--bs-breadcrumb-divider, "/")
5665
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5666
  ;
16825 efrain 5667
}
16848 stevensc 5668
 
16825 efrain 5669
.breadcrumb-item.active {
5670
  color: var(--bs-breadcrumb-item-active-color);
5671
}
5672
 
5673
.pagination {
5674
  --bs-pagination-padding-x: 1rem;
5675
  --bs-pagination-padding-y: 0.469rem;
5676
  --bs-pagination-font-size: 0.875rem;
5677
  --bs-pagination-color: #6571ff;
5678
  --bs-pagination-bg: #fff;
5679
  --bs-pagination-border-width: 1px;
5680
  --bs-pagination-border-color: #dee2e6;
5681
  --bs-pagination-border-radius: 0.25rem;
5682
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5683
  --bs-pagination-hover-bg: #e9ecef;
5684
  --bs-pagination-hover-border-color: #dee2e6;
5685
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5686
  --bs-pagination-focus-bg: #e9ecef;
5687
  --bs-pagination-focus-box-shadow: none;
5688
  --bs-pagination-active-color: #fff;
5689
  --bs-pagination-active-bg: #6571ff;
5690
  --bs-pagination-active-border-color: #6571ff;
5691
  --bs-pagination-disabled-color: #7987a1;
5692
  --bs-pagination-disabled-bg: #fff;
5693
  --bs-pagination-disabled-border-color: #dee2e6;
5694
  display: flex;
5695
  padding-left: 0;
5696
  list-style: none;
5697
}
5698
 
5699
.page-link {
5700
  position: relative;
5701
  display: block;
5702
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5703
  font-size: var(--bs-pagination-font-size);
5704
  color: var(--bs-pagination-color);
5705
  background-color: var(--bs-pagination-bg);
5706
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5707
  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;
5708
}
16848 stevensc 5709
 
16825 efrain 5710
@media (prefers-reduced-motion: reduce) {
5711
  .page-link {
5712
    transition: none;
5713
  }
5714
}
16848 stevensc 5715
 
16825 efrain 5716
.page-link:hover {
5717
  z-index: 2;
5718
  color: var(--bs-pagination-hover-color);
5719
  background-color: var(--bs-pagination-hover-bg);
5720
  border-color: var(--bs-pagination-hover-border-color);
5721
}
16848 stevensc 5722
 
16825 efrain 5723
.page-link:focus {
5724
  z-index: 3;
5725
  color: var(--bs-pagination-focus-color);
5726
  background-color: var(--bs-pagination-focus-bg);
5727
  outline: 0;
5728
  box-shadow: var(--bs-pagination-focus-box-shadow);
5729
}
16848 stevensc 5730
 
5731
.page-link.active,
5732
.active>.page-link {
16825 efrain 5733
  z-index: 3;
5734
  color: var(--bs-pagination-active-color);
5735
  background-color: var(--bs-pagination-active-bg);
5736
  border-color: var(--bs-pagination-active-border-color);
5737
}
16848 stevensc 5738
 
5739
.page-link.disabled,
5740
.disabled>.page-link {
16825 efrain 5741
  color: var(--bs-pagination-disabled-color);
5742
  pointer-events: none;
5743
  background-color: var(--bs-pagination-disabled-bg);
5744
  border-color: var(--bs-pagination-disabled-border-color);
5745
}
5746
 
5747
.page-item:not(:first-child) .page-link {
5748
  margin-left: -1px;
5749
}
16848 stevensc 5750
 
16825 efrain 5751
.page-item:first-child .page-link {
5752
  border-top-left-radius: var(--bs-pagination-border-radius);
5753
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5754
}
16848 stevensc 5755
 
16825 efrain 5756
.page-item:last-child .page-link {
5757
  border-top-right-radius: var(--bs-pagination-border-radius);
5758
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5759
}
5760
 
5761
.pagination-lg {
5762
  --bs-pagination-padding-x: 1.1rem;
5763
  --bs-pagination-padding-y: 0.5rem;
5764
  --bs-pagination-font-size: 1rem;
5765
  --bs-pagination-border-radius: 0.5rem;
5766
}
5767
 
5768
.pagination-sm {
5769
  --bs-pagination-padding-x: 0.75rem;
5770
  --bs-pagination-padding-y: 0.391rem;
5771
  --bs-pagination-font-size: 0.812rem;
5772
  --bs-pagination-border-radius: 0.25rem;
5773
}
5774
 
5775
.badge {
5776
  --bs-badge-padding-x: 0.65em;
5777
  --bs-badge-padding-y: 0.35em;
5778
  --bs-badge-font-size: 0.8em;
5779
  --bs-badge-font-weight: 500;
5780
  --bs-badge-color: #fff;
5781
  --bs-badge-border-radius: 0.25rem;
5782
  display: inline-block;
5783
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5784
  font-size: var(--bs-badge-font-size);
5785
  font-weight: var(--bs-badge-font-weight);
5786
  line-height: 1;
5787
  color: var(--bs-badge-color);
5788
  text-align: center;
5789
  white-space: nowrap;
5790
  vertical-align: baseline;
5791
  border-radius: var(--bs-badge-border-radius);
5792
}
16848 stevensc 5793
 
16825 efrain 5794
.badge:empty {
5795
  display: none;
5796
}
5797
 
16848 stevensc 5798
.btn .badge,
5799
.wizard>.actions a .badge,
5800
div.tox .tox-button .badge,
5801
.swal2-popup .swal2-actions button .badge,
5802
.fc .fc-button-primary .badge {
16825 efrain 5803
  position: relative;
5804
  top: -1px;
5805
}
5806
 
5807
.alert {
5808
  --bs-alert-bg: transparent;
5809
  --bs-alert-padding-x: 1rem;
5810
  --bs-alert-padding-y: 1rem;
5811
  --bs-alert-margin-bottom: 1rem;
5812
  --bs-alert-color: inherit;
5813
  --bs-alert-border-color: transparent;
5814
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5815
  --bs-alert-border-radius: 0.25rem;
5816
  position: relative;
5817
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5818
  margin-bottom: var(--bs-alert-margin-bottom);
5819
  color: var(--bs-alert-color);
5820
  background-color: var(--bs-alert-bg);
5821
  border: var(--bs-alert-border);
5822
  border-radius: var(--bs-alert-border-radius);
5823
}
5824
 
5825
.alert-heading {
5826
  color: inherit;
5827
}
5828
 
5829
.alert-link {
5830
  font-weight: 500;
5831
}
5832
 
5833
.alert-dismissible {
5834
  padding-right: 3rem;
5835
}
16848 stevensc 5836
 
16825 efrain 5837
.alert-dismissible .btn-close {
5838
  position: absolute;
5839
  top: 0;
5840
  right: 0;
5841
  z-index: 2;
5842
  padding: 1.25rem 1rem;
5843
}
5844
 
5845
.alert-primary {
5846
  --bs-alert-color: #3d4499;
5847
  --bs-alert-bg: #e0e3ff;
5848
  --bs-alert-border-color: #d1d4ff;
5849
}
16848 stevensc 5850
 
16825 efrain 5851
.alert-primary .alert-link {
5852
  color: #31367a;
5853
}
5854
 
5855
.alert-secondary {
5856
  --bs-alert-color: #495161;
5857
  --bs-alert-bg: #e4e7ec;
5858
  --bs-alert-border-color: #d7dbe3;
5859
}
16848 stevensc 5860
 
16825 efrain 5861
.alert-secondary .alert-link {
5862
  color: #3a414e;
5863
}
5864
 
5865
.alert-success {
5866
  --bs-alert-color: #03622c;
5867
  --bs-alert-bg: #cdeddb;
5868
  --bs-alert-border-color: #b4e3c9;
5869
}
16848 stevensc 5870
 
16825 efrain 5871
.alert-success .alert-link {
5872
  color: #024e23;
5873
}
5874
 
5875
.alert-info {
5876
  --bs-alert-color: #3d7d7d;
5877
  --bs-alert-bg: #e0f6f6;
5878
  --bs-alert-border-color: #d1f1f1;
5879
}
16848 stevensc 5880
 
16825 efrain 5881
.alert-info .alert-link {
5882
  color: #316464;
5883
}
5884
 
5885
.alert-warning {
5886
  --bs-alert-color: #977104;
5887
  --bs-alert-bg: #fef2cd;
5888
  --bs-alert-border-color: #feebb4;
5889
}
16848 stevensc 5890
 
16825 efrain 5891
.alert-warning .alert-link {
5892
  color: #795a03;
5893
}
5894
 
5895
.alert-danger {
5896
  --bs-alert-color: #991f3d;
5897
  --bs-alert-bg: #ffd6e0;
5898
  --bs-alert-border-color: #ffc2d1;
5899
}
16848 stevensc 5900
 
16825 efrain 5901
.alert-danger .alert-link {
5902
  color: #7a1931;
5903
}
5904
 
5905
.alert-light {
5906
  --bs-alert-color: #8c8e8f;
5907
  --bs-alert-bg: #fbfbfc;
5908
  --bs-alert-border-color: #f8f9fa;
5909
}
16848 stevensc 5910
 
16825 efrain 5911
.alert-light .alert-link {
5912
  color: #707272;
5913
}
5914
 
5915
.alert-dark {
5916
  --bs-alert-color: #04070e;
5917
  --bs-alert-bg: #cdced1;
5918
  --bs-alert-border-color: #b4b6b9;
5919
}
16848 stevensc 5920
 
16825 efrain 5921
.alert-dark .alert-link {
5922
  color: #03060b;
5923
}
5924
 
5925
@keyframes progress-bar-stripes {
5926
  0% {
5927
    background-position-x: 1rem;
5928
  }
5929
}
16848 stevensc 5930
 
16825 efrain 5931
.progress {
5932
  --bs-progress-height: 1rem;
5933
  --bs-progress-font-size: 0.65625rem;
5934
  --bs-progress-bg: #e9ecef;
5935
  --bs-progress-border-radius: 0.25rem;
5936
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5937
  --bs-progress-bar-color: #fff;
5938
  --bs-progress-bar-bg: #6571ff;
5939
  --bs-progress-bar-transition: width 0.6s ease;
5940
  display: flex;
5941
  height: var(--bs-progress-height);
5942
  overflow: hidden;
5943
  font-size: var(--bs-progress-font-size);
5944
  background-color: var(--bs-progress-bg);
5945
  border-radius: var(--bs-progress-border-radius);
5946
}
5947
 
5948
.progress-bar {
5949
  display: flex;
5950
  flex-direction: column;
5951
  justify-content: center;
5952
  overflow: hidden;
5953
  color: var(--bs-progress-bar-color);
5954
  text-align: center;
5955
  white-space: nowrap;
5956
  background-color: var(--bs-progress-bar-bg);
5957
  transition: var(--bs-progress-bar-transition);
5958
}
16848 stevensc 5959
 
16825 efrain 5960
@media (prefers-reduced-motion: reduce) {
5961
  .progress-bar {
5962
    transition: none;
5963
  }
5964
}
5965
 
5966
.progress-bar-striped {
5967
  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);
5968
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5969
}
5970
 
5971
.progress-bar-animated {
5972
  animation: 1s linear infinite progress-bar-stripes;
5973
}
16848 stevensc 5974
 
16825 efrain 5975
@media (prefers-reduced-motion: reduce) {
5976
  .progress-bar-animated {
5977
    animation: none;
5978
  }
5979
}
5980
 
5981
.list-group {
5982
  --bs-list-group-color: #060c17;
5983
  --bs-list-group-bg: #fff;
5984
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5985
  --bs-list-group-border-width: 1px;
5986
  --bs-list-group-border-radius: 0.25rem;
5987
  --bs-list-group-item-padding-x: 1.25rem;
5988
  --bs-list-group-item-padding-y: 0.75rem;
5989
  --bs-list-group-action-color: #41516c;
5990
  --bs-list-group-action-hover-color: #41516c;
5991
  --bs-list-group-action-hover-bg: #f8f9fa;
5992
  --bs-list-group-action-active-color: #000;
5993
  --bs-list-group-action-active-bg: #e9ecef;
5994
  --bs-list-group-disabled-color: #7987a1;
5995
  --bs-list-group-disabled-bg: #fff;
5996
  --bs-list-group-active-color: #fff;
5997
  --bs-list-group-active-bg: #6571ff;
5998
  --bs-list-group-active-border-color: #6571ff;
5999
  display: flex;
6000
  flex-direction: column;
6001
  padding-left: 0;
6002
  margin-bottom: 0;
6003
  border-radius: var(--bs-list-group-border-radius);
6004
}
6005
 
6006
.list-group-numbered {
6007
  list-style-type: none;
6008
  counter-reset: section;
6009
}
16848 stevensc 6010
 
6011
.list-group-numbered>.list-group-item::before {
16825 efrain 6012
  content: counters(section, ".") ". ";
6013
  counter-increment: section;
6014
}
6015
 
6016
.list-group-item-action {
6017
  width: 100%;
6018
  color: var(--bs-list-group-action-color);
6019
  text-align: inherit;
6020
}
16848 stevensc 6021
 
6022
.list-group-item-action:hover,
6023
.list-group-item-action:focus {
16825 efrain 6024
  z-index: 1;
6025
  color: var(--bs-list-group-action-hover-color);
6026
  text-decoration: none;
6027
  background-color: var(--bs-list-group-action-hover-bg);
6028
}
16848 stevensc 6029
 
16825 efrain 6030
.list-group-item-action:active {
6031
  color: var(--bs-list-group-action-active-color);
6032
  background-color: var(--bs-list-group-action-active-bg);
6033
}
6034
 
6035
.list-group-item {
6036
  position: relative;
6037
  display: block;
6038
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6039
  color: var(--bs-list-group-color);
6040
  background-color: var(--bs-list-group-bg);
6041
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6042
}
16848 stevensc 6043
 
16825 efrain 6044
.list-group-item:first-child {
6045
  border-top-left-radius: inherit;
6046
  border-top-right-radius: inherit;
6047
}
16848 stevensc 6048
 
16825 efrain 6049
.list-group-item:last-child {
6050
  border-bottom-right-radius: inherit;
6051
  border-bottom-left-radius: inherit;
6052
}
16848 stevensc 6053
 
6054
.list-group-item.disabled,
6055
.list-group-item:disabled {
16825 efrain 6056
  color: var(--bs-list-group-disabled-color);
6057
  pointer-events: none;
6058
  background-color: var(--bs-list-group-disabled-bg);
6059
}
16848 stevensc 6060
 
16825 efrain 6061
.list-group-item.active {
6062
  z-index: 2;
6063
  color: var(--bs-list-group-active-color);
6064
  background-color: var(--bs-list-group-active-bg);
6065
  border-color: var(--bs-list-group-active-border-color);
6066
}
16848 stevensc 6067
 
6068
.list-group-item+.list-group-item {
16825 efrain 6069
  border-top-width: 0;
6070
}
16848 stevensc 6071
 
6072
.list-group-item+.list-group-item.active {
16825 efrain 6073
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6074
  border-top-width: var(--bs-list-group-border-width);
6075
}
6076
 
6077
.list-group-horizontal {
6078
  flex-direction: row;
6079
}
16848 stevensc 6080
 
6081
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6082
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6083
  border-top-right-radius: 0;
6084
}
16848 stevensc 6085
 
6086
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6087
  border-top-right-radius: var(--bs-list-group-border-radius);
6088
  border-bottom-left-radius: 0;
6089
}
16848 stevensc 6090
 
6091
.list-group-horizontal>.list-group-item.active {
16825 efrain 6092
  margin-top: 0;
6093
}
16848 stevensc 6094
 
6095
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6096
  border-top-width: var(--bs-list-group-border-width);
6097
  border-left-width: 0;
6098
}
16848 stevensc 6099
 
6100
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6101
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6102
  border-left-width: var(--bs-list-group-border-width);
6103
}
6104
 
6105
@media (min-width: 576px) {
6106
  .list-group-horizontal-sm {
6107
    flex-direction: row;
6108
  }
16848 stevensc 6109
 
6110
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6111
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6112
    border-top-right-radius: 0;
6113
  }
16848 stevensc 6114
 
6115
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6116
    border-top-right-radius: var(--bs-list-group-border-radius);
6117
    border-bottom-left-radius: 0;
6118
  }
16848 stevensc 6119
 
6120
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6121
    margin-top: 0;
6122
  }
16848 stevensc 6123
 
6124
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6125
    border-top-width: var(--bs-list-group-border-width);
6126
    border-left-width: 0;
6127
  }
16848 stevensc 6128
 
6129
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6130
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6131
    border-left-width: var(--bs-list-group-border-width);
6132
  }
6133
}
16848 stevensc 6134
 
16825 efrain 6135
@media (min-width: 768px) {
6136
  .list-group-horizontal-md {
6137
    flex-direction: row;
6138
  }
16848 stevensc 6139
 
6140
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6141
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6142
    border-top-right-radius: 0;
6143
  }
16848 stevensc 6144
 
6145
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6146
    border-top-right-radius: var(--bs-list-group-border-radius);
6147
    border-bottom-left-radius: 0;
6148
  }
16848 stevensc 6149
 
6150
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6151
    margin-top: 0;
6152
  }
16848 stevensc 6153
 
6154
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6155
    border-top-width: var(--bs-list-group-border-width);
6156
    border-left-width: 0;
6157
  }
16848 stevensc 6158
 
6159
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6160
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6161
    border-left-width: var(--bs-list-group-border-width);
6162
  }
6163
}
16848 stevensc 6164
 
16825 efrain 6165
@media (min-width: 992px) {
6166
  .list-group-horizontal-lg {
6167
    flex-direction: row;
6168
  }
16848 stevensc 6169
 
6170
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6171
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6172
    border-top-right-radius: 0;
6173
  }
16848 stevensc 6174
 
6175
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6176
    border-top-right-radius: var(--bs-list-group-border-radius);
6177
    border-bottom-left-radius: 0;
6178
  }
16848 stevensc 6179
 
6180
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6181
    margin-top: 0;
6182
  }
16848 stevensc 6183
 
6184
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6185
    border-top-width: var(--bs-list-group-border-width);
6186
    border-left-width: 0;
6187
  }
16848 stevensc 6188
 
6189
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6190
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6191
    border-left-width: var(--bs-list-group-border-width);
6192
  }
6193
}
16848 stevensc 6194
 
16825 efrain 6195
@media (min-width: 1200px) {
6196
  .list-group-horizontal-xl {
6197
    flex-direction: row;
6198
  }
16848 stevensc 6199
 
6200
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6201
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6202
    border-top-right-radius: 0;
6203
  }
16848 stevensc 6204
 
6205
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6206
    border-top-right-radius: var(--bs-list-group-border-radius);
6207
    border-bottom-left-radius: 0;
6208
  }
16848 stevensc 6209
 
6210
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6211
    margin-top: 0;
6212
  }
16848 stevensc 6213
 
6214
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6215
    border-top-width: var(--bs-list-group-border-width);
6216
    border-left-width: 0;
6217
  }
16848 stevensc 6218
 
6219
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6220
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6221
    border-left-width: var(--bs-list-group-border-width);
6222
  }
6223
}
16848 stevensc 6224
 
16825 efrain 6225
@media (min-width: 1400px) {
6226
  .list-group-horizontal-xxl {
6227
    flex-direction: row;
6228
  }
16848 stevensc 6229
 
6230
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6231
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6232
    border-top-right-radius: 0;
6233
  }
16848 stevensc 6234
 
6235
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6236
    border-top-right-radius: var(--bs-list-group-border-radius);
6237
    border-bottom-left-radius: 0;
6238
  }
16848 stevensc 6239
 
6240
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6241
    margin-top: 0;
6242
  }
16848 stevensc 6243
 
6244
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6245
    border-top-width: var(--bs-list-group-border-width);
6246
    border-left-width: 0;
6247
  }
16848 stevensc 6248
 
6249
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6250
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6251
    border-left-width: var(--bs-list-group-border-width);
6252
  }
6253
}
16848 stevensc 6254
 
16825 efrain 6255
.list-group-flush {
6256
  border-radius: 0;
6257
}
16848 stevensc 6258
 
6259
.list-group-flush>.list-group-item {
16825 efrain 6260
  border-width: 0 0 var(--bs-list-group-border-width);
6261
}
16848 stevensc 6262
 
6263
.list-group-flush>.list-group-item:last-child {
16825 efrain 6264
  border-bottom-width: 0;
6265
}
6266
 
6267
.list-group-item-primary {
6268
  color: #3d4499;
6269
  background-color: #e0e3ff;
6270
}
16848 stevensc 6271
 
6272
.list-group-item-primary.list-group-item-action:hover,
6273
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6274
  color: #3d4499;
6275
  background-color: #cacce6;
6276
}
16848 stevensc 6277
 
16825 efrain 6278
.list-group-item-primary.list-group-item-action.active {
6279
  color: #fff;
6280
  background-color: #3d4499;
6281
  border-color: #3d4499;
6282
}
6283
 
6284
.list-group-item-secondary {
6285
  color: #495161;
6286
  background-color: #e4e7ec;
6287
}
16848 stevensc 6288
 
6289
.list-group-item-secondary.list-group-item-action:hover,
6290
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6291
  color: #495161;
6292
  background-color: #cdd0d4;
6293
}
16848 stevensc 6294
 
16825 efrain 6295
.list-group-item-secondary.list-group-item-action.active {
6296
  color: #fff;
6297
  background-color: #495161;
6298
  border-color: #495161;
6299
}
6300
 
6301
.list-group-item-success {
6302
  color: #03622c;
6303
  background-color: #cdeddb;
6304
}
16848 stevensc 6305
 
6306
.list-group-item-success.list-group-item-action:hover,
6307
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6308
  color: #03622c;
6309
  background-color: #b9d5c5;
6310
}
16848 stevensc 6311
 
16825 efrain 6312
.list-group-item-success.list-group-item-action.active {
6313
  color: #fff;
6314
  background-color: #03622c;
6315
  border-color: #03622c;
6316
}
6317
 
6318
.list-group-item-info {
6319
  color: #3d7d7d;
6320
  background-color: #e0f6f6;
6321
}
16848 stevensc 6322
 
6323
.list-group-item-info.list-group-item-action:hover,
6324
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6325
  color: #3d7d7d;
6326
  background-color: #cadddd;
6327
}
16848 stevensc 6328
 
16825 efrain 6329
.list-group-item-info.list-group-item-action.active {
6330
  color: #fff;
6331
  background-color: #3d7d7d;
6332
  border-color: #3d7d7d;
6333
}
6334
 
6335
.list-group-item-warning {
6336
  color: #977104;
6337
  background-color: #fef2cd;
6338
}
16848 stevensc 6339
 
6340
.list-group-item-warning.list-group-item-action:hover,
6341
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6342
  color: #977104;
6343
  background-color: #e5dab9;
6344
}
16848 stevensc 6345
 
16825 efrain 6346
.list-group-item-warning.list-group-item-action.active {
6347
  color: #fff;
6348
  background-color: #977104;
6349
  border-color: #977104;
6350
}
6351
 
6352
.list-group-item-danger {
6353
  color: #991f3d;
6354
  background-color: #ffd6e0;
6355
}
16848 stevensc 6356
 
6357
.list-group-item-danger.list-group-item-action:hover,
6358
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6359
  color: #991f3d;
6360
  background-color: #e6c1ca;
6361
}
16848 stevensc 6362
 
16825 efrain 6363
.list-group-item-danger.list-group-item-action.active {
6364
  color: #fff;
6365
  background-color: #991f3d;
6366
  border-color: #991f3d;
6367
}
6368
 
6369
.list-group-item-light {
6370
  color: #8c8e8f;
6371
  background-color: #fbfbfc;
6372
}
16848 stevensc 6373
 
6374
.list-group-item-light.list-group-item-action:hover,
6375
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6376
  color: #8c8e8f;
6377
  background-color: #e2e2e3;
6378
}
16848 stevensc 6379
 
16825 efrain 6380
.list-group-item-light.list-group-item-action.active {
6381
  color: #fff;
6382
  background-color: #8c8e8f;
6383
  border-color: #8c8e8f;
6384
}
6385
 
6386
.list-group-item-dark {
6387
  color: #04070e;
6388
  background-color: #cdced1;
6389
}
16848 stevensc 6390
 
6391
.list-group-item-dark.list-group-item-action:hover,
6392
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6393
  color: #04070e;
6394
  background-color: #b9b9bc;
6395
}
16848 stevensc 6396
 
16825 efrain 6397
.list-group-item-dark.list-group-item-action.active {
6398
  color: #fff;
6399
  background-color: #04070e;
6400
  border-color: #04070e;
6401
}
6402
 
6403
.btn-close {
6404
  box-sizing: content-box;
6405
  width: 0.8em;
6406
  height: 0.8em;
6407
  padding: 0.25em 0.25em;
6408
  color: #000;
6409
  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;
6410
  border: 0;
6411
  border-radius: 0.25rem;
6412
  opacity: 0.5;
6413
}
16848 stevensc 6414
 
16825 efrain 6415
.btn-close:hover {
6416
  color: #000;
6417
  text-decoration: none;
6418
  opacity: 0.75;
6419
}
16848 stevensc 6420
 
16825 efrain 6421
.btn-close:focus {
6422
  outline: 0;
6423
  box-shadow: none;
6424
  opacity: 1;
6425
}
16848 stevensc 6426
 
6427
.btn-close:disabled,
6428
.btn-close.disabled {
16825 efrain 6429
  pointer-events: none;
6430
  user-select: none;
6431
  opacity: 0.25;
6432
}
6433
 
6434
.btn-close-white {
6435
  filter: invert(1) grayscale(100%) brightness(200%);
6436
}
6437
 
6438
.toast {
6439
  --bs-toast-zindex: 1090;
6440
  --bs-toast-padding-x: 0.75rem;
6441
  --bs-toast-padding-y: 0.5rem;
6442
  --bs-toast-spacing: 1.5rem;
6443
  --bs-toast-max-width: 350px;
6444
  --bs-toast-font-size: 0.875rem;
6445
  --bs-toast-color: ;
6446
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6447
  --bs-toast-border-width: 1px;
6448
  --bs-toast-border-color: var(--bs-border-color-translucent);
6449
  --bs-toast-border-radius: 0.25rem;
6450
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6451
  --bs-toast-header-color: #7987a1;
6452
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6453
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6454
  width: var(--bs-toast-max-width);
6455
  max-width: 100%;
6456
  font-size: var(--bs-toast-font-size);
6457
  color: var(--bs-toast-color);
6458
  pointer-events: auto;
6459
  background-color: var(--bs-toast-bg);
6460
  background-clip: padding-box;
6461
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6462
  box-shadow: var(--bs-toast-box-shadow);
6463
  border-radius: var(--bs-toast-border-radius);
6464
}
16848 stevensc 6465
 
16825 efrain 6466
.toast.showing {
6467
  opacity: 0;
6468
}
16848 stevensc 6469
 
16825 efrain 6470
.toast:not(.show) {
6471
  display: none;
6472
}
6473
 
6474
.toast-container {
6475
  --bs-toast-zindex: 1090;
6476
  position: absolute;
6477
  z-index: var(--bs-toast-zindex);
6478
  width: max-content;
6479
  max-width: 100%;
6480
  pointer-events: none;
6481
}
16848 stevensc 6482
 
6483
.toast-container> :not(:last-child) {
16825 efrain 6484
  margin-bottom: var(--bs-toast-spacing);
6485
}
6486
 
6487
.toast-header {
6488
  display: flex;
6489
  align-items: center;
6490
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6491
  color: var(--bs-toast-header-color);
6492
  background-color: var(--bs-toast-header-bg);
6493
  background-clip: padding-box;
6494
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6495
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6496
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6497
}
16848 stevensc 6498
 
16825 efrain 6499
.toast-header .btn-close {
6500
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6501
  margin-left: var(--bs-toast-padding-x);
6502
}
6503
 
6504
.toast-body {
6505
  padding: var(--bs-toast-padding-x);
6506
  word-wrap: break-word;
6507
}
6508
 
6509
.modal {
6510
  --bs-modal-zindex: 1055;
6511
  --bs-modal-width: 500px;
6512
  --bs-modal-padding: 1rem;
6513
  --bs-modal-margin: 0.5rem;
6514
  --bs-modal-color: ;
6515
  --bs-modal-bg: #fff;
6516
  --bs-modal-border-color: #e9ecef;
6517
  --bs-modal-border-width: 1px;
6518
  --bs-modal-border-radius: 0.5rem;
6519
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6520
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6521
  --bs-modal-header-padding-x: 1rem;
6522
  --bs-modal-header-padding-y: 1rem;
6523
  --bs-modal-header-padding: 1rem 1rem;
6524
  --bs-modal-header-border-color: var(--bs-border-color);
6525
  --bs-modal-header-border-width: 1px;
6526
  --bs-modal-title-line-height: 1.5;
6527
  --bs-modal-footer-gap: 0.5rem;
6528
  --bs-modal-footer-bg: ;
6529
  --bs-modal-footer-border-color: var(--bs-border-color);
6530
  --bs-modal-footer-border-width: 1px;
6531
  position: fixed;
6532
  top: 0;
6533
  left: 0;
6534
  z-index: var(--bs-modal-zindex);
6535
  display: none;
6536
  width: 100%;
6537
  height: 100%;
6538
  overflow-x: hidden;
6539
  overflow-y: auto;
6540
  outline: 0;
6541
}
6542
 
6543
.modal-dialog {
6544
  position: relative;
6545
  width: auto;
6546
  margin: var(--bs-modal-margin);
6547
  pointer-events: none;
6548
}
16848 stevensc 6549
 
16825 efrain 6550
.modal.fade .modal-dialog {
6551
  transition: transform 0.4s ease;
6552
  transform: scale(0.8);
6553
}
16848 stevensc 6554
 
16825 efrain 6555
@media (prefers-reduced-motion: reduce) {
6556
  .modal.fade .modal-dialog {
6557
    transition: none;
6558
  }
6559
}
16848 stevensc 6560
 
16825 efrain 6561
.modal.show .modal-dialog {
6562
  transform: none;
6563
}
16848 stevensc 6564
 
16825 efrain 6565
.modal.modal-static .modal-dialog {
6566
  transform: scale(1.02);
6567
}
6568
 
6569
.modal-dialog-scrollable {
6570
  height: calc(100% - var(--bs-modal-margin) * 2);
6571
}
16848 stevensc 6572
 
16825 efrain 6573
.modal-dialog-scrollable .modal-content {
6574
  max-height: 100%;
6575
  overflow: hidden;
6576
}
16848 stevensc 6577
 
16825 efrain 6578
.modal-dialog-scrollable .modal-body {
6579
  overflow-y: auto;
6580
}
6581
 
6582
.modal-dialog-centered {
6583
  display: flex;
6584
  align-items: center;
6585
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6586
}
6587
 
6588
.modal-content {
6589
  position: relative;
6590
  display: flex;
6591
  flex-direction: column;
6592
  width: 100%;
6593
  color: var(--bs-modal-color);
6594
  pointer-events: auto;
6595
  background-color: var(--bs-modal-bg);
6596
  background-clip: padding-box;
6597
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6598
  border-radius: var(--bs-modal-border-radius);
6599
  outline: 0;
6600
}
6601
 
6602
.modal-backdrop {
6603
  --bs-backdrop-zindex: 1050;
6604
  --bs-backdrop-bg: #000;
6605
  --bs-backdrop-opacity: 0.5;
6606
  position: fixed;
6607
  top: 0;
6608
  left: 0;
6609
  z-index: var(--bs-backdrop-zindex);
6610
  width: 100vw;
6611
  height: 100vh;
6612
  background-color: var(--bs-backdrop-bg);
6613
}
16848 stevensc 6614
 
16825 efrain 6615
.modal-backdrop.fade {
6616
  opacity: 0;
6617
}
16848 stevensc 6618
 
16825 efrain 6619
.modal-backdrop.show {
6620
  opacity: var(--bs-backdrop-opacity);
6621
}
6622
 
6623
.modal-header {
6624
  display: flex;
6625
  flex-shrink: 0;
6626
  align-items: center;
6627
  justify-content: space-between;
6628
  padding: var(--bs-modal-header-padding);
6629
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6630
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6631
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6632
}
16848 stevensc 6633
 
16825 efrain 6634
.modal-header .btn-close {
6635
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6636
  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;
6637
}
6638
 
6639
.modal-title {
6640
  margin-bottom: 0;
6641
  line-height: var(--bs-modal-title-line-height);
6642
}
6643
 
6644
.modal-body {
6645
  position: relative;
6646
  flex: 1 1 auto;
6647
  padding: var(--bs-modal-padding);
6648
}
6649
 
6650
.modal-footer {
6651
  display: flex;
6652
  flex-shrink: 0;
6653
  flex-wrap: wrap;
6654
  align-items: center;
6655
  justify-content: flex-end;
6656
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6657
  background-color: var(--bs-modal-footer-bg);
6658
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6659
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6660
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6661
}
16848 stevensc 6662
 
6663
.modal-footer>* {
16825 efrain 6664
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6665
}
6666
 
6667
@media (min-width: 576px) {
6668
  .modal {
6669
    --bs-modal-margin: 1.75rem;
6670
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6671
  }
16848 stevensc 6672
 
16825 efrain 6673
  .modal-dialog {
6674
    max-width: var(--bs-modal-width);
6675
    margin-right: auto;
6676
    margin-left: auto;
6677
  }
16848 stevensc 6678
 
16825 efrain 6679
  .modal-sm {
6680
    --bs-modal-width: 300px;
6681
  }
6682
}
16848 stevensc 6683
 
16825 efrain 6684
@media (min-width: 992px) {
16848 stevensc 6685
 
16825 efrain 6686
  .modal-lg,
6687
  .modal-xl {
6688
    --bs-modal-width: 800px;
6689
  }
6690
}
16848 stevensc 6691
 
16825 efrain 6692
@media (min-width: 1200px) {
6693
  .modal-xl {
6694
    --bs-modal-width: 1140px;
6695
  }
6696
}
16848 stevensc 6697
 
16825 efrain 6698
.modal-fullscreen {
6699
  width: 100vw;
6700
  max-width: none;
6701
  height: 100%;
6702
  margin: 0;
6703
}
16848 stevensc 6704
 
16825 efrain 6705
.modal-fullscreen .modal-content {
6706
  height: 100%;
6707
  border: 0;
6708
  border-radius: 0;
6709
}
16848 stevensc 6710
 
16825 efrain 6711
.modal-fullscreen .modal-header,
6712
.modal-fullscreen .modal-footer {
6713
  border-radius: 0;
6714
}
16848 stevensc 6715
 
16825 efrain 6716
.modal-fullscreen .modal-body {
6717
  overflow-y: auto;
6718
}
6719
 
6720
@media (max-width: 575.98px) {
6721
  .modal-fullscreen-sm-down {
6722
    width: 100vw;
6723
    max-width: none;
6724
    height: 100%;
6725
    margin: 0;
6726
  }
16848 stevensc 6727
 
16825 efrain 6728
  .modal-fullscreen-sm-down .modal-content {
6729
    height: 100%;
6730
    border: 0;
6731
    border-radius: 0;
6732
  }
16848 stevensc 6733
 
16825 efrain 6734
  .modal-fullscreen-sm-down .modal-header,
6735
  .modal-fullscreen-sm-down .modal-footer {
6736
    border-radius: 0;
6737
  }
16848 stevensc 6738
 
16825 efrain 6739
  .modal-fullscreen-sm-down .modal-body {
6740
    overflow-y: auto;
6741
  }
6742
}
16848 stevensc 6743
 
16825 efrain 6744
@media (max-width: 767.98px) {
6745
  .modal-fullscreen-md-down {
6746
    width: 100vw;
6747
    max-width: none;
6748
    height: 100%;
6749
    margin: 0;
6750
  }
16848 stevensc 6751
 
16825 efrain 6752
  .modal-fullscreen-md-down .modal-content {
6753
    height: 100%;
6754
    border: 0;
6755
    border-radius: 0;
6756
  }
16848 stevensc 6757
 
16825 efrain 6758
  .modal-fullscreen-md-down .modal-header,
6759
  .modal-fullscreen-md-down .modal-footer {
6760
    border-radius: 0;
6761
  }
16848 stevensc 6762
 
16825 efrain 6763
  .modal-fullscreen-md-down .modal-body {
6764
    overflow-y: auto;
6765
  }
6766
}
16848 stevensc 6767
 
16825 efrain 6768
@media (max-width: 991.98px) {
6769
  .modal-fullscreen-lg-down {
6770
    width: 100vw;
6771
    max-width: none;
6772
    height: 100%;
6773
    margin: 0;
6774
  }
16848 stevensc 6775
 
16825 efrain 6776
  .modal-fullscreen-lg-down .modal-content {
6777
    height: 100%;
6778
    border: 0;
6779
    border-radius: 0;
6780
  }
16848 stevensc 6781
 
16825 efrain 6782
  .modal-fullscreen-lg-down .modal-header,
6783
  .modal-fullscreen-lg-down .modal-footer {
6784
    border-radius: 0;
6785
  }
16848 stevensc 6786
 
16825 efrain 6787
  .modal-fullscreen-lg-down .modal-body {
6788
    overflow-y: auto;
6789
  }
6790
}
16848 stevensc 6791
 
16825 efrain 6792
@media (max-width: 1199.98px) {
6793
  .modal-fullscreen-xl-down {
6794
    width: 100vw;
6795
    max-width: none;
6796
    height: 100%;
6797
    margin: 0;
6798
  }
16848 stevensc 6799
 
16825 efrain 6800
  .modal-fullscreen-xl-down .modal-content {
6801
    height: 100%;
6802
    border: 0;
6803
    border-radius: 0;
6804
  }
16848 stevensc 6805
 
16825 efrain 6806
  .modal-fullscreen-xl-down .modal-header,
6807
  .modal-fullscreen-xl-down .modal-footer {
6808
    border-radius: 0;
6809
  }
16848 stevensc 6810
 
16825 efrain 6811
  .modal-fullscreen-xl-down .modal-body {
6812
    overflow-y: auto;
6813
  }
6814
}
16848 stevensc 6815
 
16825 efrain 6816
@media (max-width: 1399.98px) {
6817
  .modal-fullscreen-xxl-down {
6818
    width: 100vw;
6819
    max-width: none;
6820
    height: 100%;
6821
    margin: 0;
6822
  }
16848 stevensc 6823
 
16825 efrain 6824
  .modal-fullscreen-xxl-down .modal-content {
6825
    height: 100%;
6826
    border: 0;
6827
    border-radius: 0;
6828
  }
16848 stevensc 6829
 
16825 efrain 6830
  .modal-fullscreen-xxl-down .modal-header,
6831
  .modal-fullscreen-xxl-down .modal-footer {
6832
    border-radius: 0;
6833
  }
16848 stevensc 6834
 
16825 efrain 6835
  .modal-fullscreen-xxl-down .modal-body {
6836
    overflow-y: auto;
6837
  }
6838
}
16848 stevensc 6839
 
16825 efrain 6840
.tooltip {
6841
  --bs-tooltip-zindex: 1080;
6842
  --bs-tooltip-max-width: 200px;
6843
  --bs-tooltip-padding-x: 0.5rem;
6844
  --bs-tooltip-padding-y: 0.25rem;
6845
  --bs-tooltip-margin: ;
6846
  --bs-tooltip-font-size: 0.812rem;
6847
  --bs-tooltip-color: #fff;
6848
  --bs-tooltip-bg: #000;
6849
  --bs-tooltip-border-radius: 0.25rem;
6850
  --bs-tooltip-opacity: 0.9;
6851
  --bs-tooltip-arrow-width: 0.8rem;
6852
  --bs-tooltip-arrow-height: 0.4rem;
6853
  z-index: var(--bs-tooltip-zindex);
6854
  display: block;
6855
  padding: var(--bs-tooltip-arrow-height);
6856
  margin: var(--bs-tooltip-margin);
6857
  font-family: var(--bs-font-sans-serif);
6858
  font-style: normal;
6859
  font-weight: 400;
6860
  line-height: 1.5;
6861
  text-align: left;
6862
  text-align: start;
6863
  text-decoration: none;
6864
  text-shadow: none;
6865
  text-transform: none;
6866
  letter-spacing: normal;
6867
  word-break: normal;
6868
  white-space: normal;
6869
  word-spacing: normal;
6870
  line-break: auto;
6871
  font-size: var(--bs-tooltip-font-size);
6872
  word-wrap: break-word;
6873
  opacity: 0;
6874
}
16848 stevensc 6875
 
16825 efrain 6876
.tooltip.show {
6877
  opacity: var(--bs-tooltip-opacity);
6878
}
16848 stevensc 6879
 
16825 efrain 6880
.tooltip .tooltip-arrow {
6881
  display: block;
6882
  width: var(--bs-tooltip-arrow-width);
6883
  height: var(--bs-tooltip-arrow-height);
6884
}
16848 stevensc 6885
 
16825 efrain 6886
.tooltip .tooltip-arrow::before {
6887
  position: absolute;
6888
  content: "";
6889
  border-color: transparent;
6890
  border-style: solid;
6891
}
6892
 
16848 stevensc 6893
.bs-tooltip-top .tooltip-arrow,
6894
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6895
  bottom: 0;
6896
}
16848 stevensc 6897
 
6898
.bs-tooltip-top .tooltip-arrow::before,
6899
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6900
  top: -1px;
6901
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6902
  border-top-color: var(--bs-tooltip-bg);
6903
}
6904
 
6905
/* rtl:begin:ignore */
16848 stevensc 6906
.bs-tooltip-end .tooltip-arrow,
6907
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6908
  left: 0;
6909
  width: var(--bs-tooltip-arrow-height);
6910
  height: var(--bs-tooltip-arrow-width);
6911
}
16848 stevensc 6912
 
6913
.bs-tooltip-end .tooltip-arrow::before,
6914
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6915
  right: -1px;
6916
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6917
  border-right-color: var(--bs-tooltip-bg);
6918
}
6919
 
6920
/* rtl:end:ignore */
16848 stevensc 6921
.bs-tooltip-bottom .tooltip-arrow,
6922
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6923
  top: 0;
6924
}
16848 stevensc 6925
 
6926
.bs-tooltip-bottom .tooltip-arrow::before,
6927
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6928
  bottom: -1px;
6929
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6930
  border-bottom-color: var(--bs-tooltip-bg);
6931
}
6932
 
6933
/* rtl:begin:ignore */
16848 stevensc 6934
.bs-tooltip-start .tooltip-arrow,
6935
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6936
  right: 0;
6937
  width: var(--bs-tooltip-arrow-height);
6938
  height: var(--bs-tooltip-arrow-width);
6939
}
16848 stevensc 6940
 
6941
.bs-tooltip-start .tooltip-arrow::before,
6942
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6943
  left: -1px;
6944
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6945
  border-left-color: var(--bs-tooltip-bg);
6946
}
6947
 
6948
/* rtl:end:ignore */
6949
.tooltip-inner {
6950
  max-width: var(--bs-tooltip-max-width);
6951
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6952
  color: var(--bs-tooltip-color);
6953
  text-align: center;
6954
  background-color: var(--bs-tooltip-bg);
6955
  border-radius: var(--bs-tooltip-border-radius);
6956
}
6957
 
6958
.popover {
6959
  --bs-popover-zindex: 1070;
6960
  --bs-popover-max-width: 276px;
6961
  --bs-popover-font-size: 0.812rem;
6962
  --bs-popover-bg: #fff;
6963
  --bs-popover-border-width: 1px;
6964
  --bs-popover-border-color: #e9ecef;
6965
  --bs-popover-border-radius: 0.5rem;
6966
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6967
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6968
  --bs-popover-header-padding-x: 1rem;
6969
  --bs-popover-header-padding-y: 0.5rem;
6970
  --bs-popover-header-font-size: 0.875rem;
6971
  --bs-popover-header-color: ;
6972
  --bs-popover-header-bg: #e9ecef;
6973
  --bs-popover-body-padding-x: 1rem;
6974
  --bs-popover-body-padding-y: 1rem;
6975
  --bs-popover-body-color: #000;
6976
  --bs-popover-arrow-width: 1rem;
6977
  --bs-popover-arrow-height: 0.5rem;
6978
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6979
  z-index: var(--bs-popover-zindex);
6980
  display: block;
6981
  max-width: var(--bs-popover-max-width);
6982
  font-family: var(--bs-font-sans-serif);
6983
  font-style: normal;
6984
  font-weight: 400;
6985
  line-height: 1.5;
6986
  text-align: left;
6987
  text-align: start;
6988
  text-decoration: none;
6989
  text-shadow: none;
6990
  text-transform: none;
6991
  letter-spacing: normal;
6992
  word-break: normal;
6993
  white-space: normal;
6994
  word-spacing: normal;
6995
  line-break: auto;
6996
  font-size: var(--bs-popover-font-size);
6997
  word-wrap: break-word;
6998
  background-color: var(--bs-popover-bg);
6999
  background-clip: padding-box;
7000
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7001
  border-radius: var(--bs-popover-border-radius);
7002
}
16848 stevensc 7003
 
16825 efrain 7004
.popover .popover-arrow {
7005
  display: block;
7006
  width: var(--bs-popover-arrow-width);
7007
  height: var(--bs-popover-arrow-height);
7008
}
16848 stevensc 7009
 
7010
.popover .popover-arrow::before,
7011
.popover .popover-arrow::after {
16825 efrain 7012
  position: absolute;
7013
  display: block;
7014
  content: "";
7015
  border-color: transparent;
7016
  border-style: solid;
7017
  border-width: 0;
7018
}
7019
 
16848 stevensc 7020
.bs-popover-top>.popover-arrow,
7021
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7022
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7023
}
16848 stevensc 7024
 
7025
.bs-popover-top>.popover-arrow::before,
7026
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7027
.bs-popover-top>.popover-arrow::after,
7028
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7029
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7030
}
16848 stevensc 7031
 
7032
.bs-popover-top>.popover-arrow::before,
7033
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7034
  bottom: 0;
7035
  border-top-color: var(--bs-popover-arrow-border);
7036
}
16848 stevensc 7037
 
7038
.bs-popover-top>.popover-arrow::after,
7039
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7040
  bottom: var(--bs-popover-border-width);
7041
  border-top-color: var(--bs-popover-bg);
7042
}
7043
 
7044
/* rtl:begin:ignore */
16848 stevensc 7045
.bs-popover-end>.popover-arrow,
7046
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7047
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7048
  width: var(--bs-popover-arrow-height);
7049
  height: var(--bs-popover-arrow-width);
7050
}
16848 stevensc 7051
 
7052
.bs-popover-end>.popover-arrow::before,
7053
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7054
.bs-popover-end>.popover-arrow::after,
7055
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7056
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7057
}
16848 stevensc 7058
 
7059
.bs-popover-end>.popover-arrow::before,
7060
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7061
  left: 0;
7062
  border-right-color: var(--bs-popover-arrow-border);
7063
}
16848 stevensc 7064
 
7065
.bs-popover-end>.popover-arrow::after,
7066
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7067
  left: var(--bs-popover-border-width);
7068
  border-right-color: var(--bs-popover-bg);
7069
}
7070
 
7071
/* rtl:end:ignore */
16848 stevensc 7072
.bs-popover-bottom>.popover-arrow,
7073
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7074
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7075
}
16848 stevensc 7076
 
7077
.bs-popover-bottom>.popover-arrow::before,
7078
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7079
.bs-popover-bottom>.popover-arrow::after,
7080
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7081
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7082
}
16848 stevensc 7083
 
7084
.bs-popover-bottom>.popover-arrow::before,
7085
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7086
  top: 0;
7087
  border-bottom-color: var(--bs-popover-arrow-border);
7088
}
16848 stevensc 7089
 
7090
.bs-popover-bottom>.popover-arrow::after,
7091
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7092
  top: var(--bs-popover-border-width);
7093
  border-bottom-color: var(--bs-popover-bg);
7094
}
16848 stevensc 7095
 
7096
.bs-popover-bottom .popover-header::before,
7097
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7098
  position: absolute;
7099
  top: 0;
7100
  left: 50%;
7101
  display: block;
7102
  width: var(--bs-popover-arrow-width);
7103
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7104
  content: "";
7105
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7106
}
7107
 
7108
/* rtl:begin:ignore */
16848 stevensc 7109
.bs-popover-start>.popover-arrow,
7110
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7111
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7112
  width: var(--bs-popover-arrow-height);
7113
  height: var(--bs-popover-arrow-width);
7114
}
16848 stevensc 7115
 
7116
.bs-popover-start>.popover-arrow::before,
7117
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7118
.bs-popover-start>.popover-arrow::after,
7119
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7120
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7121
}
16848 stevensc 7122
 
7123
.bs-popover-start>.popover-arrow::before,
7124
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7125
  right: 0;
7126
  border-left-color: var(--bs-popover-arrow-border);
7127
}
16848 stevensc 7128
 
7129
.bs-popover-start>.popover-arrow::after,
7130
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7131
  right: var(--bs-popover-border-width);
7132
  border-left-color: var(--bs-popover-bg);
7133
}
7134
 
7135
/* rtl:end:ignore */
7136
.popover-header {
7137
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7138
  margin-bottom: 0;
7139
  font-size: var(--bs-popover-header-font-size);
7140
  color: var(--bs-popover-header-color);
7141
  background-color: var(--bs-popover-header-bg);
7142
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7143
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7144
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7145
}
16848 stevensc 7146
 
16825 efrain 7147
.popover-header:empty {
7148
  display: none;
7149
}
7150
 
7151
.popover-body {
7152
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7153
  color: var(--bs-popover-body-color);
7154
}
7155
 
7156
.carousel {
7157
  position: relative;
7158
}
7159
 
7160
.carousel.pointer-event {
7161
  touch-action: pan-y;
7162
}
7163
 
7164
.carousel-inner {
7165
  position: relative;
7166
  width: 100%;
7167
  overflow: hidden;
7168
}
16848 stevensc 7169
 
16825 efrain 7170
.carousel-inner::after {
7171
  display: block;
7172
  clear: both;
7173
  content: "";
7174
}
7175
 
7176
.carousel-item {
7177
  position: relative;
7178
  display: none;
7179
  float: left;
7180
  width: 100%;
7181
  margin-right: -100%;
7182
  backface-visibility: hidden;
7183
  transition: transform 0.6s ease-in-out;
7184
}
16848 stevensc 7185
 
16825 efrain 7186
@media (prefers-reduced-motion: reduce) {
7187
  .carousel-item {
7188
    transition: none;
7189
  }
7190
}
7191
 
7192
.carousel-item.active,
7193
.carousel-item-next,
7194
.carousel-item-prev {
7195
  display: block;
7196
}
7197
 
7198
/* rtl:begin:ignore */
7199
.carousel-item-next:not(.carousel-item-start),
7200
.active.carousel-item-end {
7201
  transform: translateX(100%);
7202
}
7203
 
7204
.carousel-item-prev:not(.carousel-item-end),
7205
.active.carousel-item-start {
7206
  transform: translateX(-100%);
7207
}
7208
 
7209
/* rtl:end:ignore */
7210
.carousel-fade .carousel-item {
7211
  opacity: 0;
7212
  transition-property: opacity;
7213
  transform: none;
7214
}
16848 stevensc 7215
 
16825 efrain 7216
.carousel-fade .carousel-item.active,
7217
.carousel-fade .carousel-item-next.carousel-item-start,
7218
.carousel-fade .carousel-item-prev.carousel-item-end {
7219
  z-index: 1;
7220
  opacity: 1;
7221
}
16848 stevensc 7222
 
16825 efrain 7223
.carousel-fade .active.carousel-item-start,
7224
.carousel-fade .active.carousel-item-end {
7225
  z-index: 0;
7226
  opacity: 0;
7227
  transition: opacity 0s 0.6s;
7228
}
16848 stevensc 7229
 
16825 efrain 7230
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7231
 
16825 efrain 7232
  .carousel-fade .active.carousel-item-start,
7233
  .carousel-fade .active.carousel-item-end {
7234
    transition: none;
7235
  }
7236
}
7237
 
7238
.carousel-control-prev,
7239
.carousel-control-next {
7240
  position: absolute;
7241
  top: 0;
7242
  bottom: 0;
7243
  z-index: 1;
7244
  display: flex;
7245
  align-items: center;
7246
  justify-content: center;
7247
  width: 15%;
7248
  padding: 0;
7249
  color: #fff;
7250
  text-align: center;
7251
  background: none;
7252
  border: 0;
7253
  opacity: 0.5;
7254
  transition: opacity 0.15s ease;
7255
}
16848 stevensc 7256
 
16825 efrain 7257
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7258
 
16825 efrain 7259
  .carousel-control-prev,
7260
  .carousel-control-next {
7261
    transition: none;
7262
  }
7263
}
16848 stevensc 7264
 
7265
.carousel-control-prev:hover,
7266
.carousel-control-prev:focus,
16825 efrain 7267
.carousel-control-next:hover,
7268
.carousel-control-next:focus {
7269
  color: #fff;
7270
  text-decoration: none;
7271
  outline: 0;
7272
  opacity: 0.9;
7273
}
7274
 
7275
.carousel-control-prev {
7276
  left: 0;
7277
}
7278
 
7279
.carousel-control-next {
7280
  right: 0;
7281
}
7282
 
7283
.carousel-control-prev-icon,
7284
.carousel-control-next-icon {
7285
  display: inline-block;
7286
  width: 2rem;
7287
  height: 2rem;
7288
  background-repeat: no-repeat;
7289
  background-position: 50%;
7290
  background-size: 100% 100%;
7291
}
7292
 
7293
/* rtl:options: {
7294
  "autoRename": true,
7295
  "stringMap":[ {
7296
    "name"    : "prev-next",
7297
    "search"  : "prev",
7298
    "replace" : "next"
7299
  } ]
7300
} */
7301
.carousel-control-prev-icon {
7302
  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");
7303
}
7304
 
7305
.carousel-control-next-icon {
7306
  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");
7307
}
7308
 
7309
.carousel-indicators {
7310
  position: absolute;
7311
  right: 0;
7312
  bottom: 0;
7313
  left: 0;
7314
  z-index: 2;
7315
  display: flex;
7316
  justify-content: center;
7317
  padding: 0;
7318
  margin-right: 15%;
7319
  margin-bottom: 1rem;
7320
  margin-left: 15%;
7321
  list-style: none;
7322
}
16848 stevensc 7323
 
16825 efrain 7324
.carousel-indicators [data-bs-target] {
7325
  box-sizing: content-box;
7326
  flex: 0 1 auto;
7327
  width: 30px;
7328
  height: 3px;
7329
  padding: 0;
7330
  margin-right: 3px;
7331
  margin-left: 3px;
7332
  text-indent: -999px;
7333
  cursor: pointer;
7334
  background-color: #fff;
7335
  background-clip: padding-box;
7336
  border: 0;
7337
  border-top: 10px solid transparent;
7338
  border-bottom: 10px solid transparent;
7339
  opacity: 0.5;
7340
  transition: opacity 0.6s ease;
7341
}
16848 stevensc 7342
 
16825 efrain 7343
@media (prefers-reduced-motion: reduce) {
7344
  .carousel-indicators [data-bs-target] {
7345
    transition: none;
7346
  }
7347
}
16848 stevensc 7348
 
16825 efrain 7349
.carousel-indicators .active {
7350
  opacity: 1;
7351
}
7352
 
7353
.carousel-caption {
7354
  position: absolute;
7355
  right: 15%;
7356
  bottom: 1.25rem;
7357
  left: 15%;
7358
  padding-top: 1.25rem;
7359
  padding-bottom: 1.25rem;
7360
  color: #fff;
7361
  text-align: center;
7362
}
7363
 
7364
.carousel-dark .carousel-control-prev-icon,
7365
.carousel-dark .carousel-control-next-icon {
7366
  filter: invert(1) grayscale(100);
7367
}
16848 stevensc 7368
 
16825 efrain 7369
.carousel-dark .carousel-indicators [data-bs-target] {
7370
  background-color: #000;
7371
}
16848 stevensc 7372
 
16825 efrain 7373
.carousel-dark .carousel-caption {
7374
  color: #000;
7375
}
7376
 
7377
.spinner-grow,
7378
.spinner-border {
7379
  display: inline-block;
7380
  width: var(--bs-spinner-width);
7381
  height: var(--bs-spinner-height);
7382
  vertical-align: var(--bs-spinner-vertical-align);
7383
  border-radius: 50%;
7384
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7385
}
7386
 
7387
@keyframes spinner-border {
7388
  to {
16848 stevensc 7389
    transform: rotate(360deg)
7390
      /* rtl:ignore */
7391
    ;
16825 efrain 7392
  }
7393
}
16848 stevensc 7394
 
16825 efrain 7395
.spinner-border {
7396
  --bs-spinner-width: 2rem;
7397
  --bs-spinner-height: 2rem;
7398
  --bs-spinner-vertical-align: -0.125em;
7399
  --bs-spinner-border-width: 0.25em;
7400
  --bs-spinner-animation-speed: 0.75s;
7401
  --bs-spinner-animation-name: spinner-border;
7402
  border: var(--bs-spinner-border-width) solid currentcolor;
7403
  border-right-color: transparent;
7404
}
7405
 
7406
.spinner-border-sm {
7407
  --bs-spinner-width: 1rem;
7408
  --bs-spinner-height: 1rem;
7409
  --bs-spinner-border-width: 0.2em;
7410
}
7411
 
7412
@keyframes spinner-grow {
7413
  0% {
7414
    transform: scale(0);
7415
  }
16848 stevensc 7416
 
16825 efrain 7417
  50% {
7418
    opacity: 1;
7419
    transform: none;
7420
  }
7421
}
16848 stevensc 7422
 
16825 efrain 7423
.spinner-grow {
7424
  --bs-spinner-width: 2rem;
7425
  --bs-spinner-height: 2rem;
7426
  --bs-spinner-vertical-align: -0.125em;
7427
  --bs-spinner-animation-speed: 0.75s;
7428
  --bs-spinner-animation-name: spinner-grow;
7429
  background-color: currentcolor;
7430
  opacity: 0;
7431
}
7432
 
7433
.spinner-grow-sm {
7434
  --bs-spinner-width: 1rem;
7435
  --bs-spinner-height: 1rem;
7436
}
7437
 
7438
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7439
 
16825 efrain 7440
  .spinner-border,
7441
  .spinner-grow {
7442
    --bs-spinner-animation-speed: 1.5s;
7443
  }
7444
}
16848 stevensc 7445
 
16825 efrain 7446
.clearfix::after {
7447
  display: block;
7448
  clear: both;
7449
  content: "";
7450
}
7451
 
7452
.text-bg-primary {
7453
  color: #fff !important;
7454
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7455
}
7456
 
7457
.text-bg-secondary {
7458
  color: #fff !important;
7459
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7460
}
7461
 
7462
.text-bg-success {
7463
  color: #fff !important;
7464
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7465
}
7466
 
7467
.text-bg-info {
7468
  color: #000 !important;
7469
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7470
}
7471
 
7472
.text-bg-warning {
7473
  color: #000 !important;
7474
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7475
}
7476
 
7477
.text-bg-danger {
7478
  color: #fff !important;
7479
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7480
}
7481
 
7482
.text-bg-light {
7483
  color: #000 !important;
7484
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7485
}
7486
 
7487
.text-bg-dark {
7488
  color: #fff !important;
7489
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7490
}
7491
 
7492
.link-primary {
7493
  color: #6571ff !important;
7494
}
16848 stevensc 7495
 
7496
.link-primary:hover,
7497
.link-primary:focus {
16825 efrain 7498
  color: #515acc !important;
7499
}
7500
 
7501
.link-secondary {
7502
  color: #7987a1 !important;
7503
}
16848 stevensc 7504
 
7505
.link-secondary:hover,
7506
.link-secondary:focus {
16825 efrain 7507
  color: #616c81 !important;
7508
}
7509
 
7510
.link-success {
7511
  color: #05a34a !important;
7512
}
16848 stevensc 7513
 
7514
.link-success:hover,
7515
.link-success:focus {
16825 efrain 7516
  color: #04823b !important;
7517
}
7518
 
7519
.link-info {
7520
  color: #66d1d1 !important;
7521
}
16848 stevensc 7522
 
7523
.link-info:hover,
7524
.link-info:focus {
16825 efrain 7525
  color: #85dada !important;
7526
}
7527
 
7528
.link-warning {
7529
  color: #fbbc06 !important;
7530
}
16848 stevensc 7531
 
7532
.link-warning:hover,
7533
.link-warning:focus {
16825 efrain 7534
  color: #fcc938 !important;
7535
}
7536
 
7537
.link-danger {
7538
  color: #ff3366 !important;
7539
}
16848 stevensc 7540
 
7541
.link-danger:hover,
7542
.link-danger:focus {
16825 efrain 7543
  color: #cc2952 !important;
7544
}
7545
 
7546
.link-light {
7547
  color: #e9ecef !important;
7548
}
16848 stevensc 7549
 
7550
.link-light:hover,
7551
.link-light:focus {
16825 efrain 7552
  color: #edf0f2 !important;
7553
}
7554
 
7555
.link-dark {
7556
  color: #060c17 !important;
7557
}
16848 stevensc 7558
 
7559
.link-dark:hover,
7560
.link-dark:focus {
16825 efrain 7561
  color: #050a12 !important;
7562
}
7563
 
7564
.ratio {
7565
  position: relative;
7566
  width: 100%;
7567
}
16848 stevensc 7568
 
16825 efrain 7569
.ratio::before {
7570
  display: block;
7571
  padding-top: var(--bs-aspect-ratio);
7572
  content: "";
7573
}
16848 stevensc 7574
 
7575
.ratio>* {
16825 efrain 7576
  position: absolute;
7577
  top: 0;
7578
  left: 0;
7579
  width: 100%;
7580
  height: 100%;
7581
}
7582
 
7583
.ratio-1x1 {
7584
  --bs-aspect-ratio: 100%;
7585
}
7586
 
7587
.ratio-4x3 {
7588
  --bs-aspect-ratio: 75%;
7589
}
7590
 
7591
.ratio-16x9 {
7592
  --bs-aspect-ratio: 56.25%;
7593
}
7594
 
7595
.ratio-21x9 {
7596
  --bs-aspect-ratio: 42.8571428571%;
7597
}
7598
 
7599
.fixed-top {
7600
  position: fixed;
7601
  top: 0;
7602
  right: 0;
7603
  left: 0;
7604
  z-index: 1030;
7605
}
7606
 
7607
.fixed-bottom {
7608
  position: fixed;
7609
  right: 0;
7610
  bottom: 0;
7611
  left: 0;
7612
  z-index: 1030;
7613
}
7614
 
7615
.sticky-top {
7616
  position: sticky;
7617
  top: 0;
7618
  z-index: 1020;
7619
}
7620
 
7621
.sticky-bottom {
7622
  position: sticky;
7623
  bottom: 0;
7624
  z-index: 1020;
7625
}
7626
 
7627
@media (min-width: 576px) {
7628
  .sticky-sm-top {
7629
    position: sticky;
7630
    top: 0;
7631
    z-index: 1020;
7632
  }
16848 stevensc 7633
 
16825 efrain 7634
  .sticky-sm-bottom {
7635
    position: sticky;
7636
    bottom: 0;
7637
    z-index: 1020;
7638
  }
7639
}
16848 stevensc 7640
 
16825 efrain 7641
@media (min-width: 768px) {
7642
  .sticky-md-top {
7643
    position: sticky;
7644
    top: 0;
7645
    z-index: 1020;
7646
  }
16848 stevensc 7647
 
16825 efrain 7648
  .sticky-md-bottom {
7649
    position: sticky;
7650
    bottom: 0;
7651
    z-index: 1020;
7652
  }
7653
}
16848 stevensc 7654
 
16825 efrain 7655
@media (min-width: 992px) {
7656
  .sticky-lg-top {
7657
    position: sticky;
7658
    top: 0;
7659
    z-index: 1020;
7660
  }
16848 stevensc 7661
 
16825 efrain 7662
  .sticky-lg-bottom {
7663
    position: sticky;
7664
    bottom: 0;
7665
    z-index: 1020;
7666
  }
7667
}
16848 stevensc 7668
 
16825 efrain 7669
@media (min-width: 1200px) {
7670
  .sticky-xl-top {
7671
    position: sticky;
7672
    top: 0;
7673
    z-index: 1020;
7674
  }
16848 stevensc 7675
 
16825 efrain 7676
  .sticky-xl-bottom {
7677
    position: sticky;
7678
    bottom: 0;
7679
    z-index: 1020;
7680
  }
7681
}
16848 stevensc 7682
 
16825 efrain 7683
@media (min-width: 1400px) {
7684
  .sticky-xxl-top {
7685
    position: sticky;
7686
    top: 0;
7687
    z-index: 1020;
7688
  }
16848 stevensc 7689
 
16825 efrain 7690
  .sticky-xxl-bottom {
7691
    position: sticky;
7692
    bottom: 0;
7693
    z-index: 1020;
7694
  }
7695
}
16848 stevensc 7696
 
16825 efrain 7697
.hstack {
7698
  display: flex;
7699
  flex-direction: row;
7700
  align-items: center;
7701
  align-self: stretch;
7702
}
7703
 
7704
.vstack {
7705
  display: flex;
7706
  flex: 1 1 auto;
7707
  flex-direction: column;
7708
  align-self: stretch;
7709
}
7710
 
7711
.visually-hidden,
7712
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7713
  position: absolute !important;
7714
  width: 1px !important;
7715
  height: 1px !important;
7716
  padding: 0 !important;
7717
  margin: -1px !important;
7718
  overflow: hidden !important;
7719
  clip: rect(0, 0, 0, 0) !important;
7720
  white-space: nowrap !important;
7721
  border: 0 !important;
7722
}
7723
 
7724
.stretched-link::after {
7725
  position: absolute;
7726
  top: 0;
7727
  right: 0;
7728
  bottom: 0;
7729
  left: 0;
7730
  z-index: 1;
7731
  content: "";
7732
}
7733
 
7734
.text-truncate {
7735
  overflow: hidden;
7736
  text-overflow: ellipsis;
7737
  white-space: nowrap;
7738
}
7739
 
7740
.vr {
7741
  display: inline-block;
7742
  align-self: stretch;
7743
  width: 1px;
7744
  min-height: 1em;
7745
  background-color: currentcolor;
7746
  opacity: 0.1;
7747
}
7748
 
7749
.align-baseline {
7750
  vertical-align: baseline !important;
7751
}
7752
 
7753
.align-top {
7754
  vertical-align: top !important;
7755
}
7756
 
7757
.align-middle {
7758
  vertical-align: middle !important;
7759
}
7760
 
7761
.align-bottom {
7762
  vertical-align: bottom !important;
7763
}
7764
 
7765
.align-text-bottom {
7766
  vertical-align: text-bottom !important;
7767
}
7768
 
7769
.align-text-top {
7770
  vertical-align: text-top !important;
7771
}
7772
 
7773
.float-start {
7774
  float: left !important;
7775
}
7776
 
7777
.float-end {
7778
  float: right !important;
7779
}
7780
 
7781
.float-none {
7782
  float: none !important;
7783
}
7784
 
7785
.opacity-0 {
7786
  opacity: 0 !important;
7787
}
7788
 
7789
.opacity-25 {
7790
  opacity: 0.25 !important;
7791
}
7792
 
7793
.opacity-50 {
7794
  opacity: 0.5 !important;
7795
}
7796
 
7797
.opacity-75 {
7798
  opacity: 0.75 !important;
7799
}
7800
 
7801
.opacity-100 {
7802
  opacity: 1 !important;
7803
}
7804
 
7805
.overflow-auto {
7806
  overflow: auto !important;
7807
}
7808
 
7809
.overflow-hidden {
7810
  overflow: hidden !important;
7811
}
7812
 
7813
.overflow-visible {
7814
  overflow: visible !important;
7815
}
7816
 
7817
.overflow-scroll {
7818
  overflow: scroll !important;
7819
}
7820
 
7821
.d-inline {
7822
  display: inline !important;
7823
}
7824
 
7825
.d-inline-block {
7826
  display: inline-block !important;
7827
}
7828
 
7829
.d-block {
7830
  display: block !important;
7831
}
7832
 
7833
.d-grid {
7834
  display: grid !important;
7835
}
7836
 
7837
.d-table {
7838
  display: table !important;
7839
}
7840
 
7841
.d-table-row {
7842
  display: table-row !important;
7843
}
7844
 
7845
.d-table-cell {
7846
  display: table-cell !important;
7847
}
7848
 
7849
.d-flex {
7850
  display: flex !important;
7851
}
7852
 
7853
.d-inline-flex {
7854
  display: inline-flex !important;
7855
}
7856
 
16848 stevensc 7857
.d-none,
7858
.navbar .search-form {
16825 efrain 7859
  display: none !important;
7860
}
7861
 
7862
.shadow {
7863
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7864
}
7865
 
7866
.shadow-sm {
7867
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7868
}
7869
 
7870
.shadow-lg {
7871
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7872
}
7873
 
7874
.shadow-none {
7875
  box-shadow: none !important;
7876
}
7877
 
7878
.position-static {
7879
  position: static !important;
7880
}
7881
 
7882
.position-relative {
7883
  position: relative !important;
7884
}
7885
 
7886
.position-absolute {
7887
  position: absolute !important;
7888
}
7889
 
7890
.position-fixed {
7891
  position: fixed !important;
7892
}
7893
 
7894
.position-sticky {
7895
  position: sticky !important;
7896
}
7897
 
7898
.top-0 {
7899
  top: 0 !important;
7900
}
7901
 
7902
.top-10 {
7903
  top: 10% !important;
7904
}
7905
 
7906
.top-20 {
7907
  top: 20% !important;
7908
}
7909
 
7910
.top-25 {
7911
  top: 25% !important;
7912
}
7913
 
7914
.top-30 {
7915
  top: 30% !important;
7916
}
7917
 
7918
.top-40 {
7919
  top: 40% !important;
7920
}
7921
 
7922
.top-50 {
7923
  top: 50% !important;
7924
}
7925
 
7926
.top-60 {
7927
  top: 60% !important;
7928
}
7929
 
7930
.top-70 {
7931
  top: 70% !important;
7932
}
7933
 
7934
.top-75 {
7935
  top: 75% !important;
7936
}
7937
 
7938
.top-80 {
7939
  top: 80% !important;
7940
}
7941
 
7942
.top-90 {
7943
  top: 90% !important;
7944
}
7945
 
7946
.top-100 {
7947
  top: 100% !important;
7948
}
7949
 
7950
.bottom-0 {
7951
  bottom: 0 !important;
7952
}
7953
 
7954
.bottom-10 {
7955
  bottom: 10% !important;
7956
}
7957
 
7958
.bottom-20 {
7959
  bottom: 20% !important;
7960
}
7961
 
7962
.bottom-25 {
7963
  bottom: 25% !important;
7964
}
7965
 
7966
.bottom-30 {
7967
  bottom: 30% !important;
7968
}
7969
 
7970
.bottom-40 {
7971
  bottom: 40% !important;
7972
}
7973
 
7974
.bottom-50 {
7975
  bottom: 50% !important;
7976
}
7977
 
7978
.bottom-60 {
7979
  bottom: 60% !important;
7980
}
7981
 
7982
.bottom-70 {
7983
  bottom: 70% !important;
7984
}
7985
 
7986
.bottom-75 {
7987
  bottom: 75% !important;
7988
}
7989
 
7990
.bottom-80 {
7991
  bottom: 80% !important;
7992
}
7993
 
7994
.bottom-90 {
7995
  bottom: 90% !important;
7996
}
7997
 
7998
.bottom-100 {
7999
  bottom: 100% !important;
8000
}
8001
 
8002
.start-0 {
8003
  left: 0 !important;
8004
}
8005
 
8006
.start-10 {
8007
  left: 10% !important;
8008
}
8009
 
8010
.start-20 {
8011
  left: 20% !important;
8012
}
8013
 
8014
.start-25 {
8015
  left: 25% !important;
8016
}
8017
 
8018
.start-30 {
8019
  left: 30% !important;
8020
}
8021
 
8022
.start-40 {
8023
  left: 40% !important;
8024
}
8025
 
8026
.start-50 {
8027
  left: 50% !important;
8028
}
8029
 
8030
.start-60 {
8031
  left: 60% !important;
8032
}
8033
 
8034
.start-70 {
8035
  left: 70% !important;
8036
}
8037
 
8038
.start-75 {
8039
  left: 75% !important;
8040
}
8041
 
8042
.start-80 {
8043
  left: 80% !important;
8044
}
8045
 
8046
.start-90 {
8047
  left: 90% !important;
8048
}
8049
 
8050
.start-100 {
8051
  left: 100% !important;
8052
}
8053
 
8054
.end-0 {
8055
  right: 0 !important;
8056
}
8057
 
8058
.end-10 {
8059
  right: 10% !important;
8060
}
8061
 
8062
.end-20 {
8063
  right: 20% !important;
8064
}
8065
 
8066
.end-25 {
8067
  right: 25% !important;
8068
}
8069
 
8070
.end-30 {
8071
  right: 30% !important;
8072
}
8073
 
8074
.end-40 {
8075
  right: 40% !important;
8076
}
8077
 
8078
.end-50 {
8079
  right: 50% !important;
8080
}
8081
 
8082
.end-60 {
8083
  right: 60% !important;
8084
}
8085
 
8086
.end-70 {
8087
  right: 70% !important;
8088
}
8089
 
8090
.end-75 {
8091
  right: 75% !important;
8092
}
8093
 
8094
.end-80 {
8095
  right: 80% !important;
8096
}
8097
 
8098
.end-90 {
8099
  right: 90% !important;
8100
}
8101
 
8102
.end-100 {
8103
  right: 100% !important;
8104
}
8105
 
8106
.translate-middle {
8107
  transform: translate(-50%, -50%) !important;
8108
}
8109
 
8110
.translate-middle-x {
8111
  transform: translateX(-50%) !important;
8112
}
8113
 
8114
.translate-middle-y {
8115
  transform: translateY(-50%) !important;
8116
}
8117
 
8118
.border {
8119
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8120
}
8121
 
8122
.border-0 {
8123
  border: 0 !important;
8124
}
8125
 
8126
.border-top {
8127
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8128
}
8129
 
8130
.border-top-0 {
8131
  border-top: 0 !important;
8132
}
8133
 
8134
.border-end {
8135
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8136
}
8137
 
8138
.border-end-0 {
8139
  border-right: 0 !important;
8140
}
8141
 
8142
.border-bottom {
8143
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8144
}
8145
 
8146
.border-bottom-0 {
8147
  border-bottom: 0 !important;
8148
}
8149
 
8150
.border-start {
8151
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8152
}
8153
 
8154
.border-start-0 {
8155
  border-left: 0 !important;
8156
}
8157
 
8158
.border-primary {
8159
  --bs-border-opacity: 1;
8160
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8161
}
8162
 
8163
.border-secondary {
8164
  --bs-border-opacity: 1;
8165
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8166
}
8167
 
8168
.border-success {
8169
  --bs-border-opacity: 1;
8170
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8171
}
8172
 
8173
.border-info {
8174
  --bs-border-opacity: 1;
8175
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8176
}
8177
 
8178
.border-warning {
8179
  --bs-border-opacity: 1;
8180
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8181
}
8182
 
16848 stevensc 8183
.border-danger,
8184
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8185
  --bs-border-opacity: 1;
8186
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8187
}
8188
 
8189
.border-light {
8190
  --bs-border-opacity: 1;
8191
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8192
}
8193
 
8194
.border-dark {
8195
  --bs-border-opacity: 1;
8196
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8197
}
8198
 
8199
.border-white {
8200
  --bs-border-opacity: 1;
8201
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8202
}
8203
 
8204
.border-1 {
8205
  --bs-border-width: 1px;
8206
}
8207
 
8208
.border-2 {
8209
  --bs-border-width: 2px;
8210
}
8211
 
8212
.border-3 {
8213
  --bs-border-width: 3px;
8214
}
8215
 
8216
.border-4 {
8217
  --bs-border-width: 4px;
8218
}
8219
 
8220
.border-5 {
8221
  --bs-border-width: 5px;
8222
}
8223
 
8224
.border-opacity-10 {
8225
  --bs-border-opacity: 0.1;
8226
}
8227
 
8228
.border-opacity-25 {
8229
  --bs-border-opacity: 0.25;
8230
}
8231
 
8232
.border-opacity-50 {
8233
  --bs-border-opacity: 0.5;
8234
}
8235
 
8236
.border-opacity-75 {
8237
  --bs-border-opacity: 0.75;
8238
}
8239
 
8240
.border-opacity-100 {
8241
  --bs-border-opacity: 1;
8242
}
8243
 
16854 stevensc 8244
.w-fit {
8245
  width: fit-content !important;
8246
}
8247
 
16825 efrain 8248
.w-25 {
8249
  width: 25% !important;
8250
}
8251
 
8252
.w-50 {
8253
  width: 50% !important;
8254
}
8255
 
8256
.w-75 {
8257
  width: 75% !important;
8258
}
8259
 
8260
.w-100 {
8261
  width: 100% !important;
8262
}
8263
 
8264
.w-auto {
8265
  width: auto !important;
8266
}
8267
 
8268
.mw-100 {
8269
  max-width: 100% !important;
8270
}
8271
 
8272
.vw-100 {
8273
  width: 100vw !important;
8274
}
8275
 
8276
.min-vw-100 {
8277
  min-width: 100vw !important;
8278
}
8279
 
8280
.h-25 {
8281
  height: 25% !important;
8282
}
8283
 
8284
.h-50 {
8285
  height: 50% !important;
8286
}
8287
 
8288
.h-75 {
8289
  height: 75% !important;
8290
}
8291
 
8292
.h-100 {
8293
  height: 100% !important;
8294
}
8295
 
8296
.h-auto {
8297
  height: auto !important;
8298
}
8299
 
8300
.mh-100 {
8301
  max-height: 100% !important;
8302
}
8303
 
8304
.vh-100 {
8305
  height: 100vh !important;
8306
}
8307
 
8308
.min-vh-100 {
8309
  min-height: 100vh !important;
8310
}
8311
 
8312
.flex-fill {
8313
  flex: 1 1 auto !important;
8314
}
8315
 
8316
.flex-row {
8317
  flex-direction: row !important;
8318
}
8319
 
8320
.flex-column {
8321
  flex-direction: column !important;
8322
}
8323
 
8324
.flex-row-reverse {
8325
  flex-direction: row-reverse !important;
8326
}
8327
 
8328
.flex-column-reverse {
8329
  flex-direction: column-reverse !important;
8330
}
8331
 
8332
.flex-grow-0 {
8333
  flex-grow: 0 !important;
8334
}
8335
 
8336
.flex-grow-1 {
8337
  flex-grow: 1 !important;
8338
}
8339
 
8340
.flex-shrink-0 {
8341
  flex-shrink: 0 !important;
8342
}
8343
 
8344
.flex-shrink-1 {
8345
  flex-shrink: 1 !important;
8346
}
8347
 
8348
.flex-wrap {
8349
  flex-wrap: wrap !important;
8350
}
8351
 
8352
.flex-nowrap {
8353
  flex-wrap: nowrap !important;
8354
}
8355
 
8356
.flex-wrap-reverse {
8357
  flex-wrap: wrap-reverse !important;
8358
}
8359
 
8360
.justify-content-start {
8361
  justify-content: flex-start !important;
8362
}
8363
 
8364
.justify-content-end {
8365
  justify-content: flex-end !important;
8366
}
8367
 
16848 stevensc 8368
.justify-content-center,
8369
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8370
  justify-content: center !important;
8371
}
8372
 
8373
.justify-content-between {
8374
  justify-content: space-between !important;
8375
}
8376
 
8377
.justify-content-around {
8378
  justify-content: space-around !important;
8379
}
8380
 
8381
.justify-content-evenly {
8382
  justify-content: space-evenly !important;
8383
}
8384
 
8385
.align-items-start {
8386
  align-items: flex-start !important;
8387
}
8388
 
8389
.align-items-end {
8390
  align-items: flex-end !important;
8391
}
8392
 
16848 stevensc 8393
.align-items-center,
8394
.navbar .search-form {
16825 efrain 8395
  align-items: center !important;
8396
}
8397
 
8398
.align-items-baseline {
8399
  align-items: baseline !important;
8400
}
8401
 
8402
.align-items-stretch {
8403
  align-items: stretch !important;
8404
}
8405
 
8406
.align-content-start {
8407
  align-content: flex-start !important;
8408
}
8409
 
8410
.align-content-end {
8411
  align-content: flex-end !important;
8412
}
8413
 
8414
.align-content-center {
8415
  align-content: center !important;
8416
}
8417
 
8418
.align-content-between {
8419
  align-content: space-between !important;
8420
}
8421
 
8422
.align-content-around {
8423
  align-content: space-around !important;
8424
}
8425
 
8426
.align-content-stretch {
8427
  align-content: stretch !important;
8428
}
8429
 
8430
.align-self-auto {
8431
  align-self: auto !important;
8432
}
8433
 
8434
.align-self-start {
8435
  align-self: flex-start !important;
8436
}
8437
 
8438
.align-self-end {
8439
  align-self: flex-end !important;
8440
}
8441
 
8442
.align-self-center {
8443
  align-self: center !important;
8444
}
8445
 
8446
.align-self-baseline {
8447
  align-self: baseline !important;
8448
}
8449
 
8450
.align-self-stretch {
8451
  align-self: stretch !important;
8452
}
8453
 
8454
.order-first {
8455
  order: -1 !important;
8456
}
8457
 
8458
.order-0 {
8459
  order: 0 !important;
8460
}
8461
 
8462
.order-1 {
8463
  order: 1 !important;
8464
}
8465
 
8466
.order-2 {
8467
  order: 2 !important;
8468
}
8469
 
8470
.order-3 {
8471
  order: 3 !important;
8472
}
8473
 
8474
.order-4 {
8475
  order: 4 !important;
8476
}
8477
 
8478
.order-5 {
8479
  order: 5 !important;
8480
}
8481
 
8482
.order-last {
8483
  order: 6 !important;
8484
}
8485
 
8486
.m-0 {
8487
  margin: 0 !important;
8488
}
8489
 
8490
.m-1 {
8491
  margin: 0.25rem !important;
8492
}
8493
 
8494
.m-2 {
8495
  margin: 0.5rem !important;
8496
}
8497
 
8498
.m-3 {
8499
  margin: 1rem !important;
8500
}
8501
 
8502
.m-4 {
8503
  margin: 1.5rem !important;
8504
}
8505
 
8506
.m-5 {
8507
  margin: 3rem !important;
8508
}
8509
 
8510
.m-6 {
8511
  margin: 4.5rem !important;
8512
}
8513
 
8514
.m-7 {
8515
  margin: 6rem !important;
8516
}
8517
 
8518
.m-auto {
8519
  margin: auto !important;
8520
}
8521
 
8522
.mx-0 {
8523
  margin-right: 0 !important;
8524
  margin-left: 0 !important;
8525
}
8526
 
8527
.mx-1 {
8528
  margin-right: 0.25rem !important;
8529
  margin-left: 0.25rem !important;
8530
}
8531
 
8532
.mx-2 {
8533
  margin-right: 0.5rem !important;
8534
  margin-left: 0.5rem !important;
8535
}
8536
 
8537
.mx-3 {
8538
  margin-right: 1rem !important;
8539
  margin-left: 1rem !important;
8540
}
8541
 
8542
.mx-4 {
8543
  margin-right: 1.5rem !important;
8544
  margin-left: 1.5rem !important;
8545
}
8546
 
8547
.mx-5 {
8548
  margin-right: 3rem !important;
8549
  margin-left: 3rem !important;
8550
}
8551
 
8552
.mx-6 {
8553
  margin-right: 4.5rem !important;
8554
  margin-left: 4.5rem !important;
8555
}
8556
 
8557
.mx-7 {
8558
  margin-right: 6rem !important;
8559
  margin-left: 6rem !important;
8560
}
8561
 
8562
.mx-auto {
8563
  margin-right: auto !important;
8564
  margin-left: auto !important;
8565
}
8566
 
8567
.my-0 {
8568
  margin-top: 0 !important;
8569
  margin-bottom: 0 !important;
8570
}
8571
 
8572
.my-1 {
8573
  margin-top: 0.25rem !important;
8574
  margin-bottom: 0.25rem !important;
8575
}
8576
 
8577
.my-2 {
8578
  margin-top: 0.5rem !important;
8579
  margin-bottom: 0.5rem !important;
8580
}
8581
 
8582
.my-3 {
8583
  margin-top: 1rem !important;
8584
  margin-bottom: 1rem !important;
8585
}
8586
 
8587
.my-4 {
8588
  margin-top: 1.5rem !important;
8589
  margin-bottom: 1.5rem !important;
8590
}
8591
 
8592
.my-5 {
8593
  margin-top: 3rem !important;
8594
  margin-bottom: 3rem !important;
8595
}
8596
 
8597
.my-6 {
8598
  margin-top: 4.5rem !important;
8599
  margin-bottom: 4.5rem !important;
8600
}
8601
 
8602
.my-7 {
8603
  margin-top: 6rem !important;
8604
  margin-bottom: 6rem !important;
8605
}
8606
 
8607
.my-auto {
8608
  margin-top: auto !important;
8609
  margin-bottom: auto !important;
8610
}
8611
 
8612
.mt-0 {
8613
  margin-top: 0 !important;
8614
}
8615
 
8616
.mt-1 {
8617
  margin-top: 0.25rem !important;
8618
}
8619
 
8620
.mt-2 {
8621
  margin-top: 0.5rem !important;
8622
}
8623
 
16848 stevensc 8624
.mt-3,
8625
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8626
  margin-top: 1rem !important;
8627
}
8628
 
8629
.mt-4 {
8630
  margin-top: 1.5rem !important;
8631
}
8632
 
8633
.mt-5 {
8634
  margin-top: 3rem !important;
8635
}
8636
 
8637
.mt-6 {
8638
  margin-top: 4.5rem !important;
8639
}
8640
 
8641
.mt-7 {
8642
  margin-top: 6rem !important;
8643
}
8644
 
8645
.mt-auto {
8646
  margin-top: auto !important;
8647
}
8648
 
8649
.me-0 {
8650
  margin-right: 0 !important;
8651
}
8652
 
8653
.me-1 {
8654
  margin-right: 0.25rem !important;
8655
}
8656
 
8657
.me-2 {
8658
  margin-right: 0.5rem !important;
8659
}
8660
 
8661
.me-3 {
8662
  margin-right: 1rem !important;
8663
}
8664
 
8665
.me-4 {
8666
  margin-right: 1.5rem !important;
8667
}
8668
 
8669
.me-5 {
8670
  margin-right: 3rem !important;
8671
}
8672
 
8673
.me-6 {
8674
  margin-right: 4.5rem !important;
8675
}
8676
 
8677
.me-7 {
8678
  margin-right: 6rem !important;
8679
}
8680
 
8681
.me-auto {
8682
  margin-right: auto !important;
8683
}
8684
 
8685
.mb-0 {
8686
  margin-bottom: 0 !important;
8687
}
8688
 
16848 stevensc 8689
.mb-1,
8690
.example .btn-group {
16825 efrain 8691
  margin-bottom: 0.25rem !important;
8692
}
8693
 
8694
.mb-2 {
8695
  margin-bottom: 0.5rem !important;
8696
}
8697
 
8698
.mb-3 {
8699
  margin-bottom: 1rem !important;
8700
}
8701
 
8702
.mb-4 {
8703
  margin-bottom: 1.5rem !important;
8704
}
8705
 
8706
.mb-5 {
8707
  margin-bottom: 3rem !important;
8708
}
8709
 
8710
.mb-6 {
8711
  margin-bottom: 4.5rem !important;
8712
}
8713
 
8714
.mb-7 {
8715
  margin-bottom: 6rem !important;
8716
}
8717
 
8718
.mb-auto {
8719
  margin-bottom: auto !important;
8720
}
8721
 
8722
.ms-0 {
8723
  margin-left: 0 !important;
8724
}
8725
 
8726
.ms-1 {
8727
  margin-left: 0.25rem !important;
8728
}
8729
 
8730
.ms-2 {
8731
  margin-left: 0.5rem !important;
8732
}
8733
 
8734
.ms-3 {
8735
  margin-left: 1rem !important;
8736
}
8737
 
8738
.ms-4 {
8739
  margin-left: 1.5rem !important;
8740
}
8741
 
8742
.ms-5 {
8743
  margin-left: 3rem !important;
8744
}
8745
 
8746
.ms-6 {
8747
  margin-left: 4.5rem !important;
8748
}
8749
 
8750
.ms-7 {
8751
  margin-left: 6rem !important;
8752
}
8753
 
8754
.ms-auto {
8755
  margin-left: auto !important;
8756
}
8757
 
8758
.m-n1 {
8759
  margin: -0.25rem !important;
8760
}
8761
 
8762
.m-n2 {
8763
  margin: -0.5rem !important;
8764
}
8765
 
8766
.m-n3 {
8767
  margin: -1rem !important;
8768
}
8769
 
8770
.m-n4 {
8771
  margin: -1.5rem !important;
8772
}
8773
 
8774
.m-n5 {
8775
  margin: -3rem !important;
8776
}
8777
 
8778
.m-n6 {
8779
  margin: -4.5rem !important;
8780
}
8781
 
8782
.m-n7 {
8783
  margin: -6rem !important;
8784
}
8785
 
8786
.mx-n1 {
8787
  margin-right: -0.25rem !important;
8788
  margin-left: -0.25rem !important;
8789
}
8790
 
8791
.mx-n2 {
8792
  margin-right: -0.5rem !important;
8793
  margin-left: -0.5rem !important;
8794
}
8795
 
8796
.mx-n3 {
8797
  margin-right: -1rem !important;
8798
  margin-left: -1rem !important;
8799
}
8800
 
8801
.mx-n4 {
8802
  margin-right: -1.5rem !important;
8803
  margin-left: -1.5rem !important;
8804
}
8805
 
8806
.mx-n5 {
8807
  margin-right: -3rem !important;
8808
  margin-left: -3rem !important;
8809
}
8810
 
8811
.mx-n6 {
8812
  margin-right: -4.5rem !important;
8813
  margin-left: -4.5rem !important;
8814
}
8815
 
8816
.mx-n7 {
8817
  margin-right: -6rem !important;
8818
  margin-left: -6rem !important;
8819
}
8820
 
8821
.my-n1 {
8822
  margin-top: -0.25rem !important;
8823
  margin-bottom: -0.25rem !important;
8824
}
8825
 
8826
.my-n2 {
8827
  margin-top: -0.5rem !important;
8828
  margin-bottom: -0.5rem !important;
8829
}
8830
 
8831
.my-n3 {
8832
  margin-top: -1rem !important;
8833
  margin-bottom: -1rem !important;
8834
}
8835
 
8836
.my-n4 {
8837
  margin-top: -1.5rem !important;
8838
  margin-bottom: -1.5rem !important;
8839
}
8840
 
8841
.my-n5 {
8842
  margin-top: -3rem !important;
8843
  margin-bottom: -3rem !important;
8844
}
8845
 
8846
.my-n6 {
8847
  margin-top: -4.5rem !important;
8848
  margin-bottom: -4.5rem !important;
8849
}
8850
 
8851
.my-n7 {
8852
  margin-top: -6rem !important;
8853
  margin-bottom: -6rem !important;
8854
}
8855
 
8856
.mt-n1 {
8857
  margin-top: -0.25rem !important;
8858
}
8859
 
8860
.mt-n2 {
8861
  margin-top: -0.5rem !important;
8862
}
8863
 
8864
.mt-n3 {
8865
  margin-top: -1rem !important;
8866
}
8867
 
8868
.mt-n4 {
8869
  margin-top: -1.5rem !important;
8870
}
8871
 
8872
.mt-n5 {
8873
  margin-top: -3rem !important;
8874
}
8875
 
8876
.mt-n6 {
8877
  margin-top: -4.5rem !important;
8878
}
8879
 
8880
.mt-n7 {
8881
  margin-top: -6rem !important;
8882
}
8883
 
8884
.me-n1 {
8885
  margin-right: -0.25rem !important;
8886
}
8887
 
8888
.me-n2 {
8889
  margin-right: -0.5rem !important;
8890
}
8891
 
8892
.me-n3 {
8893
  margin-right: -1rem !important;
8894
}
8895
 
8896
.me-n4 {
8897
  margin-right: -1.5rem !important;
8898
}
8899
 
8900
.me-n5 {
8901
  margin-right: -3rem !important;
8902
}
8903
 
8904
.me-n6 {
8905
  margin-right: -4.5rem !important;
8906
}
8907
 
8908
.me-n7 {
8909
  margin-right: -6rem !important;
8910
}
8911
 
8912
.mb-n1 {
8913
  margin-bottom: -0.25rem !important;
8914
}
8915
 
8916
.mb-n2 {
8917
  margin-bottom: -0.5rem !important;
8918
}
8919
 
8920
.mb-n3 {
8921
  margin-bottom: -1rem !important;
8922
}
8923
 
8924
.mb-n4 {
8925
  margin-bottom: -1.5rem !important;
8926
}
8927
 
8928
.mb-n5 {
8929
  margin-bottom: -3rem !important;
8930
}
8931
 
8932
.mb-n6 {
8933
  margin-bottom: -4.5rem !important;
8934
}
8935
 
8936
.mb-n7 {
8937
  margin-bottom: -6rem !important;
8938
}
8939
 
8940
.ms-n1 {
8941
  margin-left: -0.25rem !important;
8942
}
8943
 
8944
.ms-n2 {
8945
  margin-left: -0.5rem !important;
8946
}
8947
 
8948
.ms-n3 {
8949
  margin-left: -1rem !important;
8950
}
8951
 
8952
.ms-n4 {
8953
  margin-left: -1.5rem !important;
8954
}
8955
 
8956
.ms-n5 {
8957
  margin-left: -3rem !important;
8958
}
8959
 
8960
.ms-n6 {
8961
  margin-left: -4.5rem !important;
8962
}
8963
 
8964
.ms-n7 {
8965
  margin-left: -6rem !important;
8966
}
8967
 
8968
.p-0 {
8969
  padding: 0 !important;
8970
}
8971
 
8972
.p-1 {
8973
  padding: 0.25rem !important;
8974
}
8975
 
8976
.p-2 {
8977
  padding: 0.5rem !important;
8978
}
8979
 
8980
.p-3 {
8981
  padding: 1rem !important;
8982
}
8983
 
8984
.p-4 {
8985
  padding: 1.5rem !important;
8986
}
8987
 
8988
.p-5 {
8989
  padding: 3rem !important;
8990
}
8991
 
8992
.p-6 {
8993
  padding: 4.5rem !important;
8994
}
8995
 
8996
.p-7 {
8997
  padding: 6rem !important;
8998
}
8999
 
9000
.px-0 {
9001
  padding-right: 0 !important;
9002
  padding-left: 0 !important;
9003
}
9004
 
9005
.px-1 {
9006
  padding-right: 0.25rem !important;
9007
  padding-left: 0.25rem !important;
9008
}
9009
 
9010
.px-2 {
9011
  padding-right: 0.5rem !important;
9012
  padding-left: 0.5rem !important;
9013
}
9014
 
9015
.px-3 {
9016
  padding-right: 1rem !important;
9017
  padding-left: 1rem !important;
9018
}
9019
 
9020
.px-4 {
9021
  padding-right: 1.5rem !important;
9022
  padding-left: 1.5rem !important;
9023
}
9024
 
9025
.px-5 {
9026
  padding-right: 3rem !important;
9027
  padding-left: 3rem !important;
9028
}
9029
 
9030
.px-6 {
9031
  padding-right: 4.5rem !important;
9032
  padding-left: 4.5rem !important;
9033
}
9034
 
9035
.px-7 {
9036
  padding-right: 6rem !important;
9037
  padding-left: 6rem !important;
9038
}
9039
 
9040
.py-0 {
9041
  padding-top: 0 !important;
9042
  padding-bottom: 0 !important;
9043
}
9044
 
9045
.py-1 {
9046
  padding-top: 0.25rem !important;
9047
  padding-bottom: 0.25rem !important;
9048
}
9049
 
9050
.py-2 {
9051
  padding-top: 0.5rem !important;
9052
  padding-bottom: 0.5rem !important;
9053
}
9054
 
9055
.py-3 {
9056
  padding-top: 1rem !important;
9057
  padding-bottom: 1rem !important;
9058
}
9059
 
9060
.py-4 {
9061
  padding-top: 1.5rem !important;
9062
  padding-bottom: 1.5rem !important;
9063
}
9064
 
9065
.py-5 {
9066
  padding-top: 3rem !important;
9067
  padding-bottom: 3rem !important;
9068
}
9069
 
9070
.py-6 {
9071
  padding-top: 4.5rem !important;
9072
  padding-bottom: 4.5rem !important;
9073
}
9074
 
9075
.py-7 {
9076
  padding-top: 6rem !important;
9077
  padding-bottom: 6rem !important;
9078
}
9079
 
9080
.pt-0 {
9081
  padding-top: 0 !important;
9082
}
9083
 
9084
.pt-1 {
9085
  padding-top: 0.25rem !important;
9086
}
9087
 
9088
.pt-2 {
9089
  padding-top: 0.5rem !important;
9090
}
9091
 
9092
.pt-3 {
9093
  padding-top: 1rem !important;
9094
}
9095
 
9096
.pt-4 {
9097
  padding-top: 1.5rem !important;
9098
}
9099
 
9100
.pt-5 {
9101
  padding-top: 3rem !important;
9102
}
9103
 
9104
.pt-6 {
9105
  padding-top: 4.5rem !important;
9106
}
9107
 
9108
.pt-7 {
9109
  padding-top: 6rem !important;
9110
}
9111
 
9112
.pe-0 {
9113
  padding-right: 0 !important;
9114
}
9115
 
9116
.pe-1 {
9117
  padding-right: 0.25rem !important;
9118
}
9119
 
9120
.pe-2 {
9121
  padding-right: 0.5rem !important;
9122
}
9123
 
9124
.pe-3 {
9125
  padding-right: 1rem !important;
9126
}
9127
 
9128
.pe-4 {
9129
  padding-right: 1.5rem !important;
9130
}
9131
 
9132
.pe-5 {
9133
  padding-right: 3rem !important;
9134
}
9135
 
9136
.pe-6 {
9137
  padding-right: 4.5rem !important;
9138
}
9139
 
9140
.pe-7 {
9141
  padding-right: 6rem !important;
9142
}
9143
 
9144
.pb-0 {
9145
  padding-bottom: 0 !important;
9146
}
9147
 
9148
.pb-1 {
9149
  padding-bottom: 0.25rem !important;
9150
}
9151
 
9152
.pb-2 {
9153
  padding-bottom: 0.5rem !important;
9154
}
9155
 
9156
.pb-3 {
9157
  padding-bottom: 1rem !important;
9158
}
9159
 
9160
.pb-4 {
9161
  padding-bottom: 1.5rem !important;
9162
}
9163
 
9164
.pb-5 {
9165
  padding-bottom: 3rem !important;
9166
}
9167
 
9168
.pb-6 {
9169
  padding-bottom: 4.5rem !important;
9170
}
9171
 
9172
.pb-7 {
9173
  padding-bottom: 6rem !important;
9174
}
9175
 
9176
.ps-0 {
9177
  padding-left: 0 !important;
9178
}
9179
 
9180
.ps-1 {
9181
  padding-left: 0.25rem !important;
9182
}
9183
 
9184
.ps-2 {
9185
  padding-left: 0.5rem !important;
9186
}
9187
 
9188
.ps-3 {
9189
  padding-left: 1rem !important;
9190
}
9191
 
9192
.ps-4 {
9193
  padding-left: 1.5rem !important;
9194
}
9195
 
9196
.ps-5 {
9197
  padding-left: 3rem !important;
9198
}
9199
 
9200
.ps-6 {
9201
  padding-left: 4.5rem !important;
9202
}
9203
 
9204
.ps-7 {
9205
  padding-left: 6rem !important;
9206
}
9207
 
9208
.gap-0 {
9209
  gap: 0 !important;
9210
}
9211
 
9212
.gap-1 {
9213
  gap: 0.25rem !important;
9214
}
9215
 
9216
.gap-2 {
9217
  gap: 0.5rem !important;
9218
}
9219
 
9220
.gap-3 {
9221
  gap: 1rem !important;
9222
}
9223
 
9224
.gap-4 {
9225
  gap: 1.5rem !important;
9226
}
9227
 
9228
.gap-5 {
9229
  gap: 3rem !important;
9230
}
9231
 
9232
.gap-6 {
9233
  gap: 4.5rem !important;
9234
}
9235
 
9236
.gap-7 {
9237
  gap: 6rem !important;
9238
}
9239
 
9240
.font-monospace {
9241
  font-family: var(--bs-font-monospace) !important;
9242
}
9243
 
9244
.fs-1 {
9245
  font-size: calc(1.375rem + 1.5vw) !important;
9246
}
9247
 
9248
.fs-2 {
9249
  font-size: calc(1.325rem + 0.9vw) !important;
9250
}
9251
 
9252
.fs-3 {
9253
  font-size: calc(1.275rem + 0.3vw) !important;
9254
}
9255
 
9256
.fs-4 {
9257
  font-size: 1.25rem !important;
9258
}
9259
 
9260
.fs-5 {
9261
  font-size: 1rem !important;
9262
}
9263
 
9264
.fs-6 {
9265
  font-size: 0.875rem !important;
9266
}
9267
 
9268
.fst-italic {
9269
  font-style: italic !important;
9270
}
9271
 
9272
.fst-normal {
9273
  font-style: normal !important;
9274
}
9275
 
9276
.fw-light {
9277
  font-weight: 300 !important;
9278
}
9279
 
9280
.fw-lighter {
9281
  font-weight: lighter !important;
9282
}
9283
 
9284
.fw-normal {
9285
  font-weight: 400 !important;
9286
}
9287
 
9288
.fw-bold {
9289
  font-weight: 500 !important;
9290
}
9291
 
9292
.fw-semibold {
9293
  font-weight: 600 !important;
9294
}
9295
 
9296
.fw-bolder {
9297
  font-weight: 700 !important;
9298
}
9299
 
9300
.lh-1 {
9301
  line-height: 1 !important;
9302
}
9303
 
9304
.lh-sm {
9305
  line-height: 1.25 !important;
9306
}
9307
 
9308
.lh-base {
9309
  line-height: 1.5 !important;
9310
}
9311
 
9312
.lh-lg {
9313
  line-height: 2 !important;
9314
}
9315
 
9316
.text-start {
9317
  text-align: left !important;
9318
}
9319
 
9320
.text-end {
9321
  text-align: right !important;
9322
}
9323
 
9324
.text-center {
9325
  text-align: center !important;
9326
}
9327
 
9328
.text-decoration-none {
9329
  text-decoration: none !important;
9330
}
9331
 
9332
.text-decoration-underline {
9333
  text-decoration: underline !important;
9334
}
9335
 
9336
.text-decoration-line-through {
9337
  text-decoration: line-through !important;
9338
}
9339
 
9340
.text-lowercase {
9341
  text-transform: lowercase !important;
9342
}
9343
 
9344
.text-uppercase {
9345
  text-transform: uppercase !important;
9346
}
9347
 
9348
.text-capitalize {
9349
  text-transform: capitalize !important;
9350
}
9351
 
9352
.text-wrap {
9353
  white-space: normal !important;
9354
}
9355
 
9356
.text-nowrap {
9357
  white-space: nowrap !important;
9358
}
9359
 
9360
/* rtl:begin:remove */
9361
.text-break {
9362
  word-wrap: break-word !important;
9363
  word-break: break-word !important;
9364
}
9365
 
9366
/* rtl:end:remove */
9367
.text-primary {
9368
  --bs-text-opacity: 1;
9369
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9370
}
9371
 
9372
.text-secondary {
9373
  --bs-text-opacity: 1;
9374
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9375
}
9376
 
9377
.text-success {
9378
  --bs-text-opacity: 1;
9379
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9380
}
9381
 
9382
.text-info {
9383
  --bs-text-opacity: 1;
9384
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9385
}
9386
 
9387
.text-warning {
9388
  --bs-text-opacity: 1;
9389
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9390
}
9391
 
9392
.text-danger {
9393
  --bs-text-opacity: 1;
9394
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9395
}
9396
 
9397
.text-light {
9398
  --bs-text-opacity: 1;
9399
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9400
}
9401
 
9402
.text-dark {
9403
  --bs-text-opacity: 1;
9404
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9405
}
9406
 
9407
.text-black {
9408
  --bs-text-opacity: 1;
9409
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9410
}
9411
 
9412
.text-white {
9413
  --bs-text-opacity: 1;
9414
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9415
}
9416
 
9417
.text-body {
9418
  --bs-text-opacity: 1;
9419
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9420
}
9421
 
16848 stevensc 9422
.text-muted,
9423
.dropzone.dz-clickable .dz-message * {
16825 efrain 9424
  --bs-text-opacity: 1;
9425
  color: #7987a1 !important;
9426
}
9427
 
9428
.text-black-50 {
9429
  --bs-text-opacity: 1;
9430
  color: rgba(0, 0, 0, 0.5) !important;
9431
}
9432
 
9433
.text-white-50 {
9434
  --bs-text-opacity: 1;
9435
  color: rgba(255, 255, 255, 0.5) !important;
9436
}
9437
 
9438
.text-reset {
9439
  --bs-text-opacity: 1;
9440
  color: inherit !important;
9441
}
9442
 
9443
.text-opacity-25 {
9444
  --bs-text-opacity: 0.25;
9445
}
9446
 
9447
.text-opacity-50 {
9448
  --bs-text-opacity: 0.5;
9449
}
9450
 
9451
.text-opacity-75 {
9452
  --bs-text-opacity: 0.75;
9453
}
9454
 
9455
.text-opacity-100 {
9456
  --bs-text-opacity: 1;
9457
}
9458
 
9459
.bg-primary {
9460
  --bs-bg-opacity: 1;
9461
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9462
}
9463
 
9464
.bg-secondary {
9465
  --bs-bg-opacity: 1;
9466
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9467
}
9468
 
9469
.bg-success {
9470
  --bs-bg-opacity: 1;
9471
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9472
}
9473
 
9474
.bg-info {
9475
  --bs-bg-opacity: 1;
9476
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9477
}
9478
 
9479
.bg-warning {
9480
  --bs-bg-opacity: 1;
9481
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9482
}
9483
 
9484
.bg-danger {
9485
  --bs-bg-opacity: 1;
9486
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9487
}
9488
 
9489
.bg-light {
9490
  --bs-bg-opacity: 1;
9491
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9492
}
9493
 
9494
.bg-dark {
9495
  --bs-bg-opacity: 1;
9496
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9497
}
9498
 
9499
.bg-black {
9500
  --bs-bg-opacity: 1;
9501
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9502
}
9503
 
9504
.bg-white {
9505
  --bs-bg-opacity: 1;
9506
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9507
}
9508
 
9509
.bg-body {
9510
  --bs-bg-opacity: 1;
9511
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9512
}
9513
 
9514
.bg-transparent {
9515
  --bs-bg-opacity: 1;
9516
  background-color: transparent !important;
9517
}
9518
 
9519
.bg-opacity-10 {
9520
  --bs-bg-opacity: 0.1;
9521
}
9522
 
9523
.bg-opacity-25 {
9524
  --bs-bg-opacity: 0.25;
9525
}
9526
 
9527
.bg-opacity-50 {
9528
  --bs-bg-opacity: 0.5;
9529
}
9530
 
9531
.bg-opacity-75 {
9532
  --bs-bg-opacity: 0.75;
9533
}
9534
 
9535
.bg-opacity-100 {
9536
  --bs-bg-opacity: 1;
9537
}
9538
 
9539
.bg-gradient {
9540
  background-image: var(--bs-gradient) !important;
9541
}
9542
 
9543
.user-select-all {
9544
  user-select: all !important;
9545
}
9546
 
9547
.user-select-auto {
9548
  user-select: auto !important;
9549
}
9550
 
9551
.user-select-none {
9552
  user-select: none !important;
9553
}
9554
 
9555
.pe-none {
9556
  pointer-events: none !important;
9557
}
9558
 
9559
.pe-auto {
9560
  pointer-events: auto !important;
9561
}
9562
 
9563
.rounded {
9564
  border-radius: var(--bs-border-radius) !important;
9565
}
9566
 
9567
.rounded-0 {
9568
  border-radius: 0 !important;
9569
}
9570
 
9571
.rounded-1 {
9572
  border-radius: var(--bs-border-radius-sm) !important;
9573
}
9574
 
9575
.rounded-2 {
9576
  border-radius: var(--bs-border-radius) !important;
9577
}
9578
 
9579
.rounded-3 {
9580
  border-radius: var(--bs-border-radius-lg) !important;
9581
}
9582
 
9583
.rounded-4 {
9584
  border-radius: var(--bs-border-radius-xl) !important;
9585
}
9586
 
9587
.rounded-5 {
9588
  border-radius: var(--bs-border-radius-2xl) !important;
9589
}
9590
 
9591
.rounded-circle {
9592
  border-radius: 50% !important;
9593
}
9594
 
9595
.rounded-pill {
9596
  border-radius: var(--bs-border-radius-pill) !important;
9597
}
9598
 
9599
.rounded-top {
9600
  border-top-left-radius: var(--bs-border-radius) !important;
9601
  border-top-right-radius: var(--bs-border-radius) !important;
9602
}
9603
 
9604
.rounded-end {
9605
  border-top-right-radius: var(--bs-border-radius) !important;
9606
  border-bottom-right-radius: var(--bs-border-radius) !important;
9607
}
9608
 
9609
.rounded-bottom {
9610
  border-bottom-right-radius: var(--bs-border-radius) !important;
9611
  border-bottom-left-radius: var(--bs-border-radius) !important;
9612
}
9613
 
9614
.rounded-start {
9615
  border-bottom-left-radius: var(--bs-border-radius) !important;
9616
  border-top-left-radius: var(--bs-border-radius) !important;
9617
}
9618
 
9619
.visible {
9620
  visibility: visible !important;
9621
}
9622
 
9623
.invisible {
9624
  visibility: hidden !important;
9625
}
9626
 
9627
.bg-gray-100 {
9628
  background-color: #f8f9fa !important;
9629
}
9630
 
9631
.bg-gray-200 {
9632
  background-color: #e9ecef !important;
9633
}
9634
 
9635
.bg-gray-300 {
9636
  background-color: #dee2e6 !important;
9637
}
9638
 
9639
.bg-gray-400 {
9640
  background-color: #cbd1db !important;
9641
}
9642
 
9643
.bg-gray-500 {
9644
  background-color: #aeb7c5 !important;
9645
}
9646
 
9647
.bg-gray-600 {
9648
  background-color: #7987a1 !important;
9649
}
9650
 
9651
.bg-gray-700 {
9652
  background-color: #41516c !important;
9653
}
9654
 
9655
.bg-gray-800 {
9656
  background-color: #212a3a !important;
9657
}
9658
 
9659
.bg-gray-900 {
9660
  background-color: #060c17 !important;
9661
}
9662
 
9663
@media (min-width: 576px) {
9664
  .float-sm-start {
9665
    float: left !important;
9666
  }
16848 stevensc 9667
 
16825 efrain 9668
  .float-sm-end {
9669
    float: right !important;
9670
  }
16848 stevensc 9671
 
16825 efrain 9672
  .float-sm-none {
9673
    float: none !important;
9674
  }
16848 stevensc 9675
 
16825 efrain 9676
  .d-sm-inline {
9677
    display: inline !important;
9678
  }
16848 stevensc 9679
 
16825 efrain 9680
  .d-sm-inline-block {
9681
    display: inline-block !important;
9682
  }
16848 stevensc 9683
 
16825 efrain 9684
  .d-sm-block {
9685
    display: block !important;
9686
  }
16848 stevensc 9687
 
16825 efrain 9688
  .d-sm-grid {
9689
    display: grid !important;
9690
  }
16848 stevensc 9691
 
16825 efrain 9692
  .d-sm-table {
9693
    display: table !important;
9694
  }
16848 stevensc 9695
 
16825 efrain 9696
  .d-sm-table-row {
9697
    display: table-row !important;
9698
  }
16848 stevensc 9699
 
16825 efrain 9700
  .d-sm-table-cell {
9701
    display: table-cell !important;
9702
  }
16848 stevensc 9703
 
16825 efrain 9704
  .d-sm-flex {
9705
    display: flex !important;
9706
  }
16848 stevensc 9707
 
16825 efrain 9708
  .d-sm-inline-flex {
9709
    display: inline-flex !important;
9710
  }
16848 stevensc 9711
 
16825 efrain 9712
  .d-sm-none {
9713
    display: none !important;
9714
  }
16848 stevensc 9715
 
16825 efrain 9716
  .border-sm {
9717
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9718
  }
16848 stevensc 9719
 
16825 efrain 9720
  .border-sm-0 {
9721
    border: 0 !important;
9722
  }
16848 stevensc 9723
 
16825 efrain 9724
  .border-top-sm {
9725
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9726
  }
16848 stevensc 9727
 
16825 efrain 9728
  .border-top-sm-0 {
9729
    border-top: 0 !important;
9730
  }
16848 stevensc 9731
 
16825 efrain 9732
  .border-end-sm {
9733
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9734
  }
16848 stevensc 9735
 
16825 efrain 9736
  .border-end-sm-0 {
9737
    border-right: 0 !important;
9738
  }
16848 stevensc 9739
 
16825 efrain 9740
  .border-bottom-sm {
9741
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9742
  }
16848 stevensc 9743
 
16825 efrain 9744
  .border-bottom-sm-0 {
9745
    border-bottom: 0 !important;
9746
  }
16848 stevensc 9747
 
16825 efrain 9748
  .border-start-sm {
9749
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9750
  }
16848 stevensc 9751
 
16825 efrain 9752
  .border-start-sm-0 {
9753
    border-left: 0 !important;
9754
  }
16848 stevensc 9755
 
16825 efrain 9756
  .flex-sm-fill {
9757
    flex: 1 1 auto !important;
9758
  }
16848 stevensc 9759
 
16825 efrain 9760
  .flex-sm-row {
9761
    flex-direction: row !important;
9762
  }
16848 stevensc 9763
 
16825 efrain 9764
  .flex-sm-column {
9765
    flex-direction: column !important;
9766
  }
16848 stevensc 9767
 
16825 efrain 9768
  .flex-sm-row-reverse {
9769
    flex-direction: row-reverse !important;
9770
  }
16848 stevensc 9771
 
16825 efrain 9772
  .flex-sm-column-reverse {
9773
    flex-direction: column-reverse !important;
9774
  }
16848 stevensc 9775
 
16825 efrain 9776
  .flex-sm-grow-0 {
9777
    flex-grow: 0 !important;
9778
  }
16848 stevensc 9779
 
16825 efrain 9780
  .flex-sm-grow-1 {
9781
    flex-grow: 1 !important;
9782
  }
16848 stevensc 9783
 
16825 efrain 9784
  .flex-sm-shrink-0 {
9785
    flex-shrink: 0 !important;
9786
  }
16848 stevensc 9787
 
16825 efrain 9788
  .flex-sm-shrink-1 {
9789
    flex-shrink: 1 !important;
9790
  }
16848 stevensc 9791
 
16825 efrain 9792
  .flex-sm-wrap {
9793
    flex-wrap: wrap !important;
9794
  }
16848 stevensc 9795
 
16825 efrain 9796
  .flex-sm-nowrap {
9797
    flex-wrap: nowrap !important;
9798
  }
16848 stevensc 9799
 
16825 efrain 9800
  .flex-sm-wrap-reverse {
9801
    flex-wrap: wrap-reverse !important;
9802
  }
16848 stevensc 9803
 
16825 efrain 9804
  .justify-content-sm-start {
9805
    justify-content: flex-start !important;
9806
  }
16848 stevensc 9807
 
16825 efrain 9808
  .justify-content-sm-end {
9809
    justify-content: flex-end !important;
9810
  }
16848 stevensc 9811
 
16825 efrain 9812
  .justify-content-sm-center {
9813
    justify-content: center !important;
9814
  }
16848 stevensc 9815
 
16825 efrain 9816
  .justify-content-sm-between {
9817
    justify-content: space-between !important;
9818
  }
16848 stevensc 9819
 
16825 efrain 9820
  .justify-content-sm-around {
9821
    justify-content: space-around !important;
9822
  }
16848 stevensc 9823
 
16825 efrain 9824
  .justify-content-sm-evenly {
9825
    justify-content: space-evenly !important;
9826
  }
16848 stevensc 9827
 
16825 efrain 9828
  .align-items-sm-start {
9829
    align-items: flex-start !important;
9830
  }
16848 stevensc 9831
 
16825 efrain 9832
  .align-items-sm-end {
9833
    align-items: flex-end !important;
9834
  }
16848 stevensc 9835
 
16825 efrain 9836
  .align-items-sm-center {
9837
    align-items: center !important;
9838
  }
16848 stevensc 9839
 
16825 efrain 9840
  .align-items-sm-baseline {
9841
    align-items: baseline !important;
9842
  }
16848 stevensc 9843
 
16825 efrain 9844
  .align-items-sm-stretch {
9845
    align-items: stretch !important;
9846
  }
16848 stevensc 9847
 
16825 efrain 9848
  .align-content-sm-start {
9849
    align-content: flex-start !important;
9850
  }
16848 stevensc 9851
 
16825 efrain 9852
  .align-content-sm-end {
9853
    align-content: flex-end !important;
9854
  }
16848 stevensc 9855
 
16825 efrain 9856
  .align-content-sm-center {
9857
    align-content: center !important;
9858
  }
16848 stevensc 9859
 
16825 efrain 9860
  .align-content-sm-between {
9861
    align-content: space-between !important;
9862
  }
16848 stevensc 9863
 
16825 efrain 9864
  .align-content-sm-around {
9865
    align-content: space-around !important;
9866
  }
16848 stevensc 9867
 
16825 efrain 9868
  .align-content-sm-stretch {
9869
    align-content: stretch !important;
9870
  }
16848 stevensc 9871
 
16825 efrain 9872
  .align-self-sm-auto {
9873
    align-self: auto !important;
9874
  }
16848 stevensc 9875
 
16825 efrain 9876
  .align-self-sm-start {
9877
    align-self: flex-start !important;
9878
  }
16848 stevensc 9879
 
16825 efrain 9880
  .align-self-sm-end {
9881
    align-self: flex-end !important;
9882
  }
16848 stevensc 9883
 
16825 efrain 9884
  .align-self-sm-center {
9885
    align-self: center !important;
9886
  }
16848 stevensc 9887
 
16825 efrain 9888
  .align-self-sm-baseline {
9889
    align-self: baseline !important;
9890
  }
16848 stevensc 9891
 
16825 efrain 9892
  .align-self-sm-stretch {
9893
    align-self: stretch !important;
9894
  }
16848 stevensc 9895
 
16825 efrain 9896
  .order-sm-first {
9897
    order: -1 !important;
9898
  }
16848 stevensc 9899
 
16825 efrain 9900
  .order-sm-0 {
9901
    order: 0 !important;
9902
  }
16848 stevensc 9903
 
16825 efrain 9904
  .order-sm-1 {
9905
    order: 1 !important;
9906
  }
16848 stevensc 9907
 
16825 efrain 9908
  .order-sm-2 {
9909
    order: 2 !important;
9910
  }
16848 stevensc 9911
 
16825 efrain 9912
  .order-sm-3 {
9913
    order: 3 !important;
9914
  }
16848 stevensc 9915
 
16825 efrain 9916
  .order-sm-4 {
9917
    order: 4 !important;
9918
  }
16848 stevensc 9919
 
16825 efrain 9920
  .order-sm-5 {
9921
    order: 5 !important;
9922
  }
16848 stevensc 9923
 
16825 efrain 9924
  .order-sm-last {
9925
    order: 6 !important;
9926
  }
16848 stevensc 9927
 
16825 efrain 9928
  .m-sm-0 {
9929
    margin: 0 !important;
9930
  }
16848 stevensc 9931
 
16825 efrain 9932
  .m-sm-1 {
9933
    margin: 0.25rem !important;
9934
  }
16848 stevensc 9935
 
16825 efrain 9936
  .m-sm-2 {
9937
    margin: 0.5rem !important;
9938
  }
16848 stevensc 9939
 
16825 efrain 9940
  .m-sm-3 {
9941
    margin: 1rem !important;
9942
  }
16848 stevensc 9943
 
16825 efrain 9944
  .m-sm-4 {
9945
    margin: 1.5rem !important;
9946
  }
16848 stevensc 9947
 
16825 efrain 9948
  .m-sm-5 {
9949
    margin: 3rem !important;
9950
  }
16848 stevensc 9951
 
16825 efrain 9952
  .m-sm-6 {
9953
    margin: 4.5rem !important;
9954
  }
16848 stevensc 9955
 
16825 efrain 9956
  .m-sm-7 {
9957
    margin: 6rem !important;
9958
  }
16848 stevensc 9959
 
16825 efrain 9960
  .m-sm-auto {
9961
    margin: auto !important;
9962
  }
16848 stevensc 9963
 
16825 efrain 9964
  .mx-sm-0 {
9965
    margin-right: 0 !important;
9966
    margin-left: 0 !important;
9967
  }
16848 stevensc 9968
 
16825 efrain 9969
  .mx-sm-1 {
9970
    margin-right: 0.25rem !important;
9971
    margin-left: 0.25rem !important;
9972
  }
16848 stevensc 9973
 
16825 efrain 9974
  .mx-sm-2 {
9975
    margin-right: 0.5rem !important;
9976
    margin-left: 0.5rem !important;
9977
  }
16848 stevensc 9978
 
16825 efrain 9979
  .mx-sm-3 {
9980
    margin-right: 1rem !important;
9981
    margin-left: 1rem !important;
9982
  }
16848 stevensc 9983
 
16825 efrain 9984
  .mx-sm-4 {
9985
    margin-right: 1.5rem !important;
9986
    margin-left: 1.5rem !important;
9987
  }
16848 stevensc 9988
 
16825 efrain 9989
  .mx-sm-5 {
9990
    margin-right: 3rem !important;
9991
    margin-left: 3rem !important;
9992
  }
16848 stevensc 9993
 
16825 efrain 9994
  .mx-sm-6 {
9995
    margin-right: 4.5rem !important;
9996
    margin-left: 4.5rem !important;
9997
  }
16848 stevensc 9998
 
16825 efrain 9999
  .mx-sm-7 {
10000
    margin-right: 6rem !important;
10001
    margin-left: 6rem !important;
10002
  }
16848 stevensc 10003
 
16825 efrain 10004
  .mx-sm-auto {
10005
    margin-right: auto !important;
10006
    margin-left: auto !important;
10007
  }
16848 stevensc 10008
 
16825 efrain 10009
  .my-sm-0 {
10010
    margin-top: 0 !important;
10011
    margin-bottom: 0 !important;
10012
  }
16848 stevensc 10013
 
16825 efrain 10014
  .my-sm-1 {
10015
    margin-top: 0.25rem !important;
10016
    margin-bottom: 0.25rem !important;
10017
  }
16848 stevensc 10018
 
16825 efrain 10019
  .my-sm-2 {
10020
    margin-top: 0.5rem !important;
10021
    margin-bottom: 0.5rem !important;
10022
  }
16848 stevensc 10023
 
16825 efrain 10024
  .my-sm-3 {
10025
    margin-top: 1rem !important;
10026
    margin-bottom: 1rem !important;
10027
  }
16848 stevensc 10028
 
16825 efrain 10029
  .my-sm-4 {
10030
    margin-top: 1.5rem !important;
10031
    margin-bottom: 1.5rem !important;
10032
  }
16848 stevensc 10033
 
16825 efrain 10034
  .my-sm-5 {
10035
    margin-top: 3rem !important;
10036
    margin-bottom: 3rem !important;
10037
  }
16848 stevensc 10038
 
16825 efrain 10039
  .my-sm-6 {
10040
    margin-top: 4.5rem !important;
10041
    margin-bottom: 4.5rem !important;
10042
  }
16848 stevensc 10043
 
16825 efrain 10044
  .my-sm-7 {
10045
    margin-top: 6rem !important;
10046
    margin-bottom: 6rem !important;
10047
  }
16848 stevensc 10048
 
16825 efrain 10049
  .my-sm-auto {
10050
    margin-top: auto !important;
10051
    margin-bottom: auto !important;
10052
  }
16848 stevensc 10053
 
16825 efrain 10054
  .mt-sm-0 {
10055
    margin-top: 0 !important;
10056
  }
16848 stevensc 10057
 
16825 efrain 10058
  .mt-sm-1 {
10059
    margin-top: 0.25rem !important;
10060
  }
16848 stevensc 10061
 
16825 efrain 10062
  .mt-sm-2 {
10063
    margin-top: 0.5rem !important;
10064
  }
16848 stevensc 10065
 
16825 efrain 10066
  .mt-sm-3 {
10067
    margin-top: 1rem !important;
10068
  }
16848 stevensc 10069
 
16825 efrain 10070
  .mt-sm-4 {
10071
    margin-top: 1.5rem !important;
10072
  }
16848 stevensc 10073
 
16825 efrain 10074
  .mt-sm-5 {
10075
    margin-top: 3rem !important;
10076
  }
16848 stevensc 10077
 
16825 efrain 10078
  .mt-sm-6 {
10079
    margin-top: 4.5rem !important;
10080
  }
16848 stevensc 10081
 
16825 efrain 10082
  .mt-sm-7 {
10083
    margin-top: 6rem !important;
10084
  }
16848 stevensc 10085
 
16825 efrain 10086
  .mt-sm-auto {
10087
    margin-top: auto !important;
10088
  }
16848 stevensc 10089
 
16825 efrain 10090
  .me-sm-0 {
10091
    margin-right: 0 !important;
10092
  }
16848 stevensc 10093
 
16825 efrain 10094
  .me-sm-1 {
10095
    margin-right: 0.25rem !important;
10096
  }
16848 stevensc 10097
 
16825 efrain 10098
  .me-sm-2 {
10099
    margin-right: 0.5rem !important;
10100
  }
16848 stevensc 10101
 
16825 efrain 10102
  .me-sm-3 {
10103
    margin-right: 1rem !important;
10104
  }
16848 stevensc 10105
 
16825 efrain 10106
  .me-sm-4 {
10107
    margin-right: 1.5rem !important;
10108
  }
16848 stevensc 10109
 
16825 efrain 10110
  .me-sm-5 {
10111
    margin-right: 3rem !important;
10112
  }
16848 stevensc 10113
 
16825 efrain 10114
  .me-sm-6 {
10115
    margin-right: 4.5rem !important;
10116
  }
16848 stevensc 10117
 
16825 efrain 10118
  .me-sm-7 {
10119
    margin-right: 6rem !important;
10120
  }
16848 stevensc 10121
 
16825 efrain 10122
  .me-sm-auto {
10123
    margin-right: auto !important;
10124
  }
16848 stevensc 10125
 
16825 efrain 10126
  .mb-sm-0 {
10127
    margin-bottom: 0 !important;
10128
  }
16848 stevensc 10129
 
16825 efrain 10130
  .mb-sm-1 {
10131
    margin-bottom: 0.25rem !important;
10132
  }
16848 stevensc 10133
 
16825 efrain 10134
  .mb-sm-2 {
10135
    margin-bottom: 0.5rem !important;
10136
  }
16848 stevensc 10137
 
16825 efrain 10138
  .mb-sm-3 {
10139
    margin-bottom: 1rem !important;
10140
  }
16848 stevensc 10141
 
16825 efrain 10142
  .mb-sm-4 {
10143
    margin-bottom: 1.5rem !important;
10144
  }
16848 stevensc 10145
 
16825 efrain 10146
  .mb-sm-5 {
10147
    margin-bottom: 3rem !important;
10148
  }
16848 stevensc 10149
 
16825 efrain 10150
  .mb-sm-6 {
10151
    margin-bottom: 4.5rem !important;
10152
  }
16848 stevensc 10153
 
16825 efrain 10154
  .mb-sm-7 {
10155
    margin-bottom: 6rem !important;
10156
  }
16848 stevensc 10157
 
16825 efrain 10158
  .mb-sm-auto {
10159
    margin-bottom: auto !important;
10160
  }
16848 stevensc 10161
 
16825 efrain 10162
  .ms-sm-0 {
10163
    margin-left: 0 !important;
10164
  }
16848 stevensc 10165
 
16825 efrain 10166
  .ms-sm-1 {
10167
    margin-left: 0.25rem !important;
10168
  }
16848 stevensc 10169
 
16825 efrain 10170
  .ms-sm-2 {
10171
    margin-left: 0.5rem !important;
10172
  }
16848 stevensc 10173
 
16825 efrain 10174
  .ms-sm-3 {
10175
    margin-left: 1rem !important;
10176
  }
16848 stevensc 10177
 
16825 efrain 10178
  .ms-sm-4 {
10179
    margin-left: 1.5rem !important;
10180
  }
16848 stevensc 10181
 
16825 efrain 10182
  .ms-sm-5 {
10183
    margin-left: 3rem !important;
10184
  }
16848 stevensc 10185
 
16825 efrain 10186
  .ms-sm-6 {
10187
    margin-left: 4.5rem !important;
10188
  }
16848 stevensc 10189
 
16825 efrain 10190
  .ms-sm-7 {
10191
    margin-left: 6rem !important;
10192
  }
16848 stevensc 10193
 
16825 efrain 10194
  .ms-sm-auto {
10195
    margin-left: auto !important;
10196
  }
16848 stevensc 10197
 
16825 efrain 10198
  .m-sm-n1 {
10199
    margin: -0.25rem !important;
10200
  }
16848 stevensc 10201
 
16825 efrain 10202
  .m-sm-n2 {
10203
    margin: -0.5rem !important;
10204
  }
16848 stevensc 10205
 
16825 efrain 10206
  .m-sm-n3 {
10207
    margin: -1rem !important;
10208
  }
16848 stevensc 10209
 
16825 efrain 10210
  .m-sm-n4 {
10211
    margin: -1.5rem !important;
10212
  }
16848 stevensc 10213
 
16825 efrain 10214
  .m-sm-n5 {
10215
    margin: -3rem !important;
10216
  }
16848 stevensc 10217
 
16825 efrain 10218
  .m-sm-n6 {
10219
    margin: -4.5rem !important;
10220
  }
16848 stevensc 10221
 
16825 efrain 10222
  .m-sm-n7 {
10223
    margin: -6rem !important;
10224
  }
16848 stevensc 10225
 
16825 efrain 10226
  .mx-sm-n1 {
10227
    margin-right: -0.25rem !important;
10228
    margin-left: -0.25rem !important;
10229
  }
16848 stevensc 10230
 
16825 efrain 10231
  .mx-sm-n2 {
10232
    margin-right: -0.5rem !important;
10233
    margin-left: -0.5rem !important;
10234
  }
16848 stevensc 10235
 
16825 efrain 10236
  .mx-sm-n3 {
10237
    margin-right: -1rem !important;
10238
    margin-left: -1rem !important;
10239
  }
16848 stevensc 10240
 
16825 efrain 10241
  .mx-sm-n4 {
10242
    margin-right: -1.5rem !important;
10243
    margin-left: -1.5rem !important;
10244
  }
16848 stevensc 10245
 
16825 efrain 10246
  .mx-sm-n5 {
10247
    margin-right: -3rem !important;
10248
    margin-left: -3rem !important;
10249
  }
16848 stevensc 10250
 
16825 efrain 10251
  .mx-sm-n6 {
10252
    margin-right: -4.5rem !important;
10253
    margin-left: -4.5rem !important;
10254
  }
16848 stevensc 10255
 
16825 efrain 10256
  .mx-sm-n7 {
10257
    margin-right: -6rem !important;
10258
    margin-left: -6rem !important;
10259
  }
16848 stevensc 10260
 
16825 efrain 10261
  .my-sm-n1 {
10262
    margin-top: -0.25rem !important;
10263
    margin-bottom: -0.25rem !important;
10264
  }
16848 stevensc 10265
 
16825 efrain 10266
  .my-sm-n2 {
10267
    margin-top: -0.5rem !important;
10268
    margin-bottom: -0.5rem !important;
10269
  }
16848 stevensc 10270
 
16825 efrain 10271
  .my-sm-n3 {
10272
    margin-top: -1rem !important;
10273
    margin-bottom: -1rem !important;
10274
  }
16848 stevensc 10275
 
16825 efrain 10276
  .my-sm-n4 {
10277
    margin-top: -1.5rem !important;
10278
    margin-bottom: -1.5rem !important;
10279
  }
16848 stevensc 10280
 
16825 efrain 10281
  .my-sm-n5 {
10282
    margin-top: -3rem !important;
10283
    margin-bottom: -3rem !important;
10284
  }
16848 stevensc 10285
 
16825 efrain 10286
  .my-sm-n6 {
10287
    margin-top: -4.5rem !important;
10288
    margin-bottom: -4.5rem !important;
10289
  }
16848 stevensc 10290
 
16825 efrain 10291
  .my-sm-n7 {
10292
    margin-top: -6rem !important;
10293
    margin-bottom: -6rem !important;
10294
  }
16848 stevensc 10295
 
16825 efrain 10296
  .mt-sm-n1 {
10297
    margin-top: -0.25rem !important;
10298
  }
16848 stevensc 10299
 
16825 efrain 10300
  .mt-sm-n2 {
10301
    margin-top: -0.5rem !important;
10302
  }
16848 stevensc 10303
 
16825 efrain 10304
  .mt-sm-n3 {
10305
    margin-top: -1rem !important;
10306
  }
16848 stevensc 10307
 
16825 efrain 10308
  .mt-sm-n4 {
10309
    margin-top: -1.5rem !important;
10310
  }
16848 stevensc 10311
 
16825 efrain 10312
  .mt-sm-n5 {
10313
    margin-top: -3rem !important;
10314
  }
16848 stevensc 10315
 
16825 efrain 10316
  .mt-sm-n6 {
10317
    margin-top: -4.5rem !important;
10318
  }
16848 stevensc 10319
 
16825 efrain 10320
  .mt-sm-n7 {
10321
    margin-top: -6rem !important;
10322
  }
16848 stevensc 10323
 
16825 efrain 10324
  .me-sm-n1 {
10325
    margin-right: -0.25rem !important;
10326
  }
16848 stevensc 10327
 
16825 efrain 10328
  .me-sm-n2 {
10329
    margin-right: -0.5rem !important;
10330
  }
16848 stevensc 10331
 
16825 efrain 10332
  .me-sm-n3 {
10333
    margin-right: -1rem !important;
10334
  }
16848 stevensc 10335
 
16825 efrain 10336
  .me-sm-n4 {
10337
    margin-right: -1.5rem !important;
10338
  }
16848 stevensc 10339
 
16825 efrain 10340
  .me-sm-n5 {
10341
    margin-right: -3rem !important;
10342
  }
16848 stevensc 10343
 
16825 efrain 10344
  .me-sm-n6 {
10345
    margin-right: -4.5rem !important;
10346
  }
16848 stevensc 10347
 
16825 efrain 10348
  .me-sm-n7 {
10349
    margin-right: -6rem !important;
10350
  }
16848 stevensc 10351
 
16825 efrain 10352
  .mb-sm-n1 {
10353
    margin-bottom: -0.25rem !important;
10354
  }
16848 stevensc 10355
 
16825 efrain 10356
  .mb-sm-n2 {
10357
    margin-bottom: -0.5rem !important;
10358
  }
16848 stevensc 10359
 
16825 efrain 10360
  .mb-sm-n3 {
10361
    margin-bottom: -1rem !important;
10362
  }
16848 stevensc 10363
 
16825 efrain 10364
  .mb-sm-n4 {
10365
    margin-bottom: -1.5rem !important;
10366
  }
16848 stevensc 10367
 
16825 efrain 10368
  .mb-sm-n5 {
10369
    margin-bottom: -3rem !important;
10370
  }
16848 stevensc 10371
 
16825 efrain 10372
  .mb-sm-n6 {
10373
    margin-bottom: -4.5rem !important;
10374
  }
16848 stevensc 10375
 
16825 efrain 10376
  .mb-sm-n7 {
10377
    margin-bottom: -6rem !important;
10378
  }
16848 stevensc 10379
 
16825 efrain 10380
  .ms-sm-n1 {
10381
    margin-left: -0.25rem !important;
10382
  }
16848 stevensc 10383
 
16825 efrain 10384
  .ms-sm-n2 {
10385
    margin-left: -0.5rem !important;
10386
  }
16848 stevensc 10387
 
16825 efrain 10388
  .ms-sm-n3 {
10389
    margin-left: -1rem !important;
10390
  }
16848 stevensc 10391
 
16825 efrain 10392
  .ms-sm-n4 {
10393
    margin-left: -1.5rem !important;
10394
  }
16848 stevensc 10395
 
16825 efrain 10396
  .ms-sm-n5 {
10397
    margin-left: -3rem !important;
10398
  }
16848 stevensc 10399
 
16825 efrain 10400
  .ms-sm-n6 {
10401
    margin-left: -4.5rem !important;
10402
  }
16848 stevensc 10403
 
16825 efrain 10404
  .ms-sm-n7 {
10405
    margin-left: -6rem !important;
10406
  }
16848 stevensc 10407
 
16825 efrain 10408
  .p-sm-0 {
10409
    padding: 0 !important;
10410
  }
16848 stevensc 10411
 
16825 efrain 10412
  .p-sm-1 {
10413
    padding: 0.25rem !important;
10414
  }
16848 stevensc 10415
 
16825 efrain 10416
  .p-sm-2 {
10417
    padding: 0.5rem !important;
10418
  }
16848 stevensc 10419
 
16825 efrain 10420
  .p-sm-3 {
10421
    padding: 1rem !important;
10422
  }
16848 stevensc 10423
 
16825 efrain 10424
  .p-sm-4 {
10425
    padding: 1.5rem !important;
10426
  }
16848 stevensc 10427
 
16825 efrain 10428
  .p-sm-5 {
10429
    padding: 3rem !important;
10430
  }
16848 stevensc 10431
 
16825 efrain 10432
  .p-sm-6 {
10433
    padding: 4.5rem !important;
10434
  }
16848 stevensc 10435
 
16825 efrain 10436
  .p-sm-7 {
10437
    padding: 6rem !important;
10438
  }
16848 stevensc 10439
 
16825 efrain 10440
  .px-sm-0 {
10441
    padding-right: 0 !important;
10442
    padding-left: 0 !important;
10443
  }
16848 stevensc 10444
 
16825 efrain 10445
  .px-sm-1 {
10446
    padding-right: 0.25rem !important;
10447
    padding-left: 0.25rem !important;
10448
  }
16848 stevensc 10449
 
16825 efrain 10450
  .px-sm-2 {
10451
    padding-right: 0.5rem !important;
10452
    padding-left: 0.5rem !important;
10453
  }
16848 stevensc 10454
 
16825 efrain 10455
  .px-sm-3 {
10456
    padding-right: 1rem !important;
10457
    padding-left: 1rem !important;
10458
  }
16848 stevensc 10459
 
16825 efrain 10460
  .px-sm-4 {
10461
    padding-right: 1.5rem !important;
10462
    padding-left: 1.5rem !important;
10463
  }
16848 stevensc 10464
 
16825 efrain 10465
  .px-sm-5 {
10466
    padding-right: 3rem !important;
10467
    padding-left: 3rem !important;
10468
  }
16848 stevensc 10469
 
16825 efrain 10470
  .px-sm-6 {
10471
    padding-right: 4.5rem !important;
10472
    padding-left: 4.5rem !important;
10473
  }
16848 stevensc 10474
 
16825 efrain 10475
  .px-sm-7 {
10476
    padding-right: 6rem !important;
10477
    padding-left: 6rem !important;
10478
  }
16848 stevensc 10479
 
16825 efrain 10480
  .py-sm-0 {
10481
    padding-top: 0 !important;
10482
    padding-bottom: 0 !important;
10483
  }
16848 stevensc 10484
 
16825 efrain 10485
  .py-sm-1 {
10486
    padding-top: 0.25rem !important;
10487
    padding-bottom: 0.25rem !important;
10488
  }
16848 stevensc 10489
 
16825 efrain 10490
  .py-sm-2 {
10491
    padding-top: 0.5rem !important;
10492
    padding-bottom: 0.5rem !important;
10493
  }
16848 stevensc 10494
 
16825 efrain 10495
  .py-sm-3 {
10496
    padding-top: 1rem !important;
10497
    padding-bottom: 1rem !important;
10498
  }
16848 stevensc 10499
 
16825 efrain 10500
  .py-sm-4 {
10501
    padding-top: 1.5rem !important;
10502
    padding-bottom: 1.5rem !important;
10503
  }
16848 stevensc 10504
 
16825 efrain 10505
  .py-sm-5 {
10506
    padding-top: 3rem !important;
10507
    padding-bottom: 3rem !important;
10508
  }
16848 stevensc 10509
 
16825 efrain 10510
  .py-sm-6 {
10511
    padding-top: 4.5rem !important;
10512
    padding-bottom: 4.5rem !important;
10513
  }
16848 stevensc 10514
 
16825 efrain 10515
  .py-sm-7 {
10516
    padding-top: 6rem !important;
10517
    padding-bottom: 6rem !important;
10518
  }
16848 stevensc 10519
 
16825 efrain 10520
  .pt-sm-0 {
10521
    padding-top: 0 !important;
10522
  }
16848 stevensc 10523
 
16825 efrain 10524
  .pt-sm-1 {
10525
    padding-top: 0.25rem !important;
10526
  }
16848 stevensc 10527
 
16825 efrain 10528
  .pt-sm-2 {
10529
    padding-top: 0.5rem !important;
10530
  }
16848 stevensc 10531
 
16825 efrain 10532
  .pt-sm-3 {
10533
    padding-top: 1rem !important;
10534
  }
16848 stevensc 10535
 
16825 efrain 10536
  .pt-sm-4 {
10537
    padding-top: 1.5rem !important;
10538
  }
16848 stevensc 10539
 
16825 efrain 10540
  .pt-sm-5 {
10541
    padding-top: 3rem !important;
10542
  }
16848 stevensc 10543
 
16825 efrain 10544
  .pt-sm-6 {
10545
    padding-top: 4.5rem !important;
10546
  }
16848 stevensc 10547
 
16825 efrain 10548
  .pt-sm-7 {
10549
    padding-top: 6rem !important;
10550
  }
16848 stevensc 10551
 
16825 efrain 10552
  .pe-sm-0 {
10553
    padding-right: 0 !important;
10554
  }
16848 stevensc 10555
 
16825 efrain 10556
  .pe-sm-1 {
10557
    padding-right: 0.25rem !important;
10558
  }
16848 stevensc 10559
 
16825 efrain 10560
  .pe-sm-2 {
10561
    padding-right: 0.5rem !important;
10562
  }
16848 stevensc 10563
 
16825 efrain 10564
  .pe-sm-3 {
10565
    padding-right: 1rem !important;
10566
  }
16848 stevensc 10567
 
16825 efrain 10568
  .pe-sm-4 {
10569
    padding-right: 1.5rem !important;
10570
  }
16848 stevensc 10571
 
16825 efrain 10572
  .pe-sm-5 {
10573
    padding-right: 3rem !important;
10574
  }
16848 stevensc 10575
 
16825 efrain 10576
  .pe-sm-6 {
10577
    padding-right: 4.5rem !important;
10578
  }
16848 stevensc 10579
 
16825 efrain 10580
  .pe-sm-7 {
10581
    padding-right: 6rem !important;
10582
  }
16848 stevensc 10583
 
16825 efrain 10584
  .pb-sm-0 {
10585
    padding-bottom: 0 !important;
10586
  }
16848 stevensc 10587
 
16825 efrain 10588
  .pb-sm-1 {
10589
    padding-bottom: 0.25rem !important;
10590
  }
16848 stevensc 10591
 
16825 efrain 10592
  .pb-sm-2 {
10593
    padding-bottom: 0.5rem !important;
10594
  }
16848 stevensc 10595
 
16825 efrain 10596
  .pb-sm-3 {
10597
    padding-bottom: 1rem !important;
10598
  }
16848 stevensc 10599
 
16825 efrain 10600
  .pb-sm-4 {
10601
    padding-bottom: 1.5rem !important;
10602
  }
16848 stevensc 10603
 
16825 efrain 10604
  .pb-sm-5 {
10605
    padding-bottom: 3rem !important;
10606
  }
16848 stevensc 10607
 
16825 efrain 10608
  .pb-sm-6 {
10609
    padding-bottom: 4.5rem !important;
10610
  }
16848 stevensc 10611
 
16825 efrain 10612
  .pb-sm-7 {
10613
    padding-bottom: 6rem !important;
10614
  }
16848 stevensc 10615
 
16825 efrain 10616
  .ps-sm-0 {
10617
    padding-left: 0 !important;
10618
  }
16848 stevensc 10619
 
16825 efrain 10620
  .ps-sm-1 {
10621
    padding-left: 0.25rem !important;
10622
  }
16848 stevensc 10623
 
16825 efrain 10624
  .ps-sm-2 {
10625
    padding-left: 0.5rem !important;
10626
  }
16848 stevensc 10627
 
16825 efrain 10628
  .ps-sm-3 {
10629
    padding-left: 1rem !important;
10630
  }
16848 stevensc 10631
 
16825 efrain 10632
  .ps-sm-4 {
10633
    padding-left: 1.5rem !important;
10634
  }
16848 stevensc 10635
 
16825 efrain 10636
  .ps-sm-5 {
10637
    padding-left: 3rem !important;
10638
  }
16848 stevensc 10639
 
16825 efrain 10640
  .ps-sm-6 {
10641
    padding-left: 4.5rem !important;
10642
  }
16848 stevensc 10643
 
16825 efrain 10644
  .ps-sm-7 {
10645
    padding-left: 6rem !important;
10646
  }
16848 stevensc 10647
 
16825 efrain 10648
  .gap-sm-0 {
10649
    gap: 0 !important;
10650
  }
16848 stevensc 10651
 
16825 efrain 10652
  .gap-sm-1 {
10653
    gap: 0.25rem !important;
10654
  }
16848 stevensc 10655
 
16825 efrain 10656
  .gap-sm-2 {
10657
    gap: 0.5rem !important;
10658
  }
16848 stevensc 10659
 
16825 efrain 10660
  .gap-sm-3 {
10661
    gap: 1rem !important;
10662
  }
16848 stevensc 10663
 
16825 efrain 10664
  .gap-sm-4 {
10665
    gap: 1.5rem !important;
10666
  }
16848 stevensc 10667
 
16825 efrain 10668
  .gap-sm-5 {
10669
    gap: 3rem !important;
10670
  }
16848 stevensc 10671
 
16825 efrain 10672
  .gap-sm-6 {
10673
    gap: 4.5rem !important;
10674
  }
16848 stevensc 10675
 
16825 efrain 10676
  .gap-sm-7 {
10677
    gap: 6rem !important;
10678
  }
16848 stevensc 10679
 
16825 efrain 10680
  .text-sm-start {
10681
    text-align: left !important;
10682
  }
16848 stevensc 10683
 
16825 efrain 10684
  .text-sm-end {
10685
    text-align: right !important;
10686
  }
16848 stevensc 10687
 
16825 efrain 10688
  .text-sm-center {
10689
    text-align: center !important;
10690
  }
10691
}
16848 stevensc 10692
 
16825 efrain 10693
@media (min-width: 768px) {
10694
  .float-md-start {
10695
    float: left !important;
10696
  }
16848 stevensc 10697
 
16825 efrain 10698
  .float-md-end {
10699
    float: right !important;
10700
  }
16848 stevensc 10701
 
16825 efrain 10702
  .float-md-none {
10703
    float: none !important;
10704
  }
16848 stevensc 10705
 
16825 efrain 10706
  .d-md-inline {
10707
    display: inline !important;
10708
  }
16848 stevensc 10709
 
16825 efrain 10710
  .d-md-inline-block {
10711
    display: inline-block !important;
10712
  }
16848 stevensc 10713
 
16825 efrain 10714
  .d-md-block {
10715
    display: block !important;
10716
  }
16848 stevensc 10717
 
16825 efrain 10718
  .d-md-grid {
10719
    display: grid !important;
10720
  }
16848 stevensc 10721
 
16825 efrain 10722
  .d-md-table {
10723
    display: table !important;
10724
  }
16848 stevensc 10725
 
16825 efrain 10726
  .d-md-table-row {
10727
    display: table-row !important;
10728
  }
16848 stevensc 10729
 
16825 efrain 10730
  .d-md-table-cell {
10731
    display: table-cell !important;
10732
  }
16848 stevensc 10733
 
10734
  .d-md-flex,
10735
  .navbar .search-form {
16825 efrain 10736
    display: flex !important;
10737
  }
16848 stevensc 10738
 
16825 efrain 10739
  .d-md-inline-flex {
10740
    display: inline-flex !important;
10741
  }
16848 stevensc 10742
 
16825 efrain 10743
  .d-md-none {
10744
    display: none !important;
10745
  }
16848 stevensc 10746
 
16825 efrain 10747
  .border-md {
10748
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10749
  }
16848 stevensc 10750
 
16825 efrain 10751
  .border-md-0 {
10752
    border: 0 !important;
10753
  }
16848 stevensc 10754
 
16825 efrain 10755
  .border-top-md {
10756
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10757
  }
16848 stevensc 10758
 
16825 efrain 10759
  .border-top-md-0 {
10760
    border-top: 0 !important;
10761
  }
16848 stevensc 10762
 
16825 efrain 10763
  .border-end-md {
10764
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10765
  }
16848 stevensc 10766
 
16825 efrain 10767
  .border-end-md-0 {
10768
    border-right: 0 !important;
10769
  }
16848 stevensc 10770
 
16825 efrain 10771
  .border-bottom-md {
10772
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10773
  }
16848 stevensc 10774
 
16825 efrain 10775
  .border-bottom-md-0 {
10776
    border-bottom: 0 !important;
10777
  }
16848 stevensc 10778
 
16825 efrain 10779
  .border-start-md {
10780
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10781
  }
16848 stevensc 10782
 
16825 efrain 10783
  .border-start-md-0 {
10784
    border-left: 0 !important;
10785
  }
16848 stevensc 10786
 
16825 efrain 10787
  .flex-md-fill {
10788
    flex: 1 1 auto !important;
10789
  }
16848 stevensc 10790
 
16825 efrain 10791
  .flex-md-row {
10792
    flex-direction: row !important;
10793
  }
16848 stevensc 10794
 
16825 efrain 10795
  .flex-md-column {
10796
    flex-direction: column !important;
10797
  }
16848 stevensc 10798
 
16825 efrain 10799
  .flex-md-row-reverse {
10800
    flex-direction: row-reverse !important;
10801
  }
16848 stevensc 10802
 
16825 efrain 10803
  .flex-md-column-reverse {
10804
    flex-direction: column-reverse !important;
10805
  }
16848 stevensc 10806
 
16825 efrain 10807
  .flex-md-grow-0 {
10808
    flex-grow: 0 !important;
10809
  }
16848 stevensc 10810
 
16825 efrain 10811
  .flex-md-grow-1 {
10812
    flex-grow: 1 !important;
10813
  }
16848 stevensc 10814
 
16825 efrain 10815
  .flex-md-shrink-0 {
10816
    flex-shrink: 0 !important;
10817
  }
16848 stevensc 10818
 
16825 efrain 10819
  .flex-md-shrink-1 {
10820
    flex-shrink: 1 !important;
10821
  }
16848 stevensc 10822
 
16825 efrain 10823
  .flex-md-wrap {
10824
    flex-wrap: wrap !important;
10825
  }
16848 stevensc 10826
 
16825 efrain 10827
  .flex-md-nowrap {
10828
    flex-wrap: nowrap !important;
10829
  }
16848 stevensc 10830
 
16825 efrain 10831
  .flex-md-wrap-reverse {
10832
    flex-wrap: wrap-reverse !important;
10833
  }
16848 stevensc 10834
 
16825 efrain 10835
  .justify-content-md-start {
10836
    justify-content: flex-start !important;
10837
  }
16848 stevensc 10838
 
10839
  .justify-content-md-end,
10840
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10841
    justify-content: flex-end !important;
10842
  }
16848 stevensc 10843
 
16825 efrain 10844
  .justify-content-md-center {
10845
    justify-content: center !important;
10846
  }
16848 stevensc 10847
 
16825 efrain 10848
  .justify-content-md-between {
10849
    justify-content: space-between !important;
10850
  }
16848 stevensc 10851
 
16825 efrain 10852
  .justify-content-md-around {
10853
    justify-content: space-around !important;
10854
  }
16848 stevensc 10855
 
16825 efrain 10856
  .justify-content-md-evenly {
10857
    justify-content: space-evenly !important;
10858
  }
16848 stevensc 10859
 
16825 efrain 10860
  .align-items-md-start {
10861
    align-items: flex-start !important;
10862
  }
16848 stevensc 10863
 
16825 efrain 10864
  .align-items-md-end {
10865
    align-items: flex-end !important;
10866
  }
16848 stevensc 10867
 
16825 efrain 10868
  .align-items-md-center {
10869
    align-items: center !important;
10870
  }
16848 stevensc 10871
 
16825 efrain 10872
  .align-items-md-baseline {
10873
    align-items: baseline !important;
10874
  }
16848 stevensc 10875
 
16825 efrain 10876
  .align-items-md-stretch {
10877
    align-items: stretch !important;
10878
  }
16848 stevensc 10879
 
16825 efrain 10880
  .align-content-md-start {
10881
    align-content: flex-start !important;
10882
  }
16848 stevensc 10883
 
16825 efrain 10884
  .align-content-md-end {
10885
    align-content: flex-end !important;
10886
  }
16848 stevensc 10887
 
16825 efrain 10888
  .align-content-md-center {
10889
    align-content: center !important;
10890
  }
16848 stevensc 10891
 
16825 efrain 10892
  .align-content-md-between {
10893
    align-content: space-between !important;
10894
  }
16848 stevensc 10895
 
16825 efrain 10896
  .align-content-md-around {
10897
    align-content: space-around !important;
10898
  }
16848 stevensc 10899
 
16825 efrain 10900
  .align-content-md-stretch {
10901
    align-content: stretch !important;
10902
  }
16848 stevensc 10903
 
16825 efrain 10904
  .align-self-md-auto {
10905
    align-self: auto !important;
10906
  }
16848 stevensc 10907
 
16825 efrain 10908
  .align-self-md-start {
10909
    align-self: flex-start !important;
10910
  }
16848 stevensc 10911
 
16825 efrain 10912
  .align-self-md-end {
10913
    align-self: flex-end !important;
10914
  }
16848 stevensc 10915
 
16825 efrain 10916
  .align-self-md-center {
10917
    align-self: center !important;
10918
  }
16848 stevensc 10919
 
16825 efrain 10920
  .align-self-md-baseline {
10921
    align-self: baseline !important;
10922
  }
16848 stevensc 10923
 
16825 efrain 10924
  .align-self-md-stretch {
10925
    align-self: stretch !important;
10926
  }
16848 stevensc 10927
 
16825 efrain 10928
  .order-md-first {
10929
    order: -1 !important;
10930
  }
16848 stevensc 10931
 
16825 efrain 10932
  .order-md-0 {
10933
    order: 0 !important;
10934
  }
16848 stevensc 10935
 
16825 efrain 10936
  .order-md-1 {
10937
    order: 1 !important;
10938
  }
16848 stevensc 10939
 
16825 efrain 10940
  .order-md-2 {
10941
    order: 2 !important;
10942
  }
16848 stevensc 10943
 
16825 efrain 10944
  .order-md-3 {
10945
    order: 3 !important;
10946
  }
16848 stevensc 10947
 
16825 efrain 10948
  .order-md-4 {
10949
    order: 4 !important;
10950
  }
16848 stevensc 10951
 
16825 efrain 10952
  .order-md-5 {
10953
    order: 5 !important;
10954
  }
16848 stevensc 10955
 
16825 efrain 10956
  .order-md-last {
10957
    order: 6 !important;
10958
  }
16848 stevensc 10959
 
16825 efrain 10960
  .m-md-0 {
10961
    margin: 0 !important;
10962
  }
16848 stevensc 10963
 
16825 efrain 10964
  .m-md-1 {
10965
    margin: 0.25rem !important;
10966
  }
16848 stevensc 10967
 
16825 efrain 10968
  .m-md-2 {
10969
    margin: 0.5rem !important;
10970
  }
16848 stevensc 10971
 
16825 efrain 10972
  .m-md-3 {
10973
    margin: 1rem !important;
10974
  }
16848 stevensc 10975
 
16825 efrain 10976
  .m-md-4 {
10977
    margin: 1.5rem !important;
10978
  }
16848 stevensc 10979
 
16825 efrain 10980
  .m-md-5 {
10981
    margin: 3rem !important;
10982
  }
16848 stevensc 10983
 
16825 efrain 10984
  .m-md-6 {
10985
    margin: 4.5rem !important;
10986
  }
16848 stevensc 10987
 
16825 efrain 10988
  .m-md-7 {
10989
    margin: 6rem !important;
10990
  }
16848 stevensc 10991
 
16825 efrain 10992
  .m-md-auto {
10993
    margin: auto !important;
10994
  }
16848 stevensc 10995
 
16825 efrain 10996
  .mx-md-0 {
10997
    margin-right: 0 !important;
10998
    margin-left: 0 !important;
10999
  }
16848 stevensc 11000
 
16825 efrain 11001
  .mx-md-1 {
11002
    margin-right: 0.25rem !important;
11003
    margin-left: 0.25rem !important;
11004
  }
16848 stevensc 11005
 
16825 efrain 11006
  .mx-md-2 {
11007
    margin-right: 0.5rem !important;
11008
    margin-left: 0.5rem !important;
11009
  }
16848 stevensc 11010
 
16825 efrain 11011
  .mx-md-3 {
11012
    margin-right: 1rem !important;
11013
    margin-left: 1rem !important;
11014
  }
16848 stevensc 11015
 
16825 efrain 11016
  .mx-md-4 {
11017
    margin-right: 1.5rem !important;
11018
    margin-left: 1.5rem !important;
11019
  }
16848 stevensc 11020
 
16825 efrain 11021
  .mx-md-5 {
11022
    margin-right: 3rem !important;
11023
    margin-left: 3rem !important;
11024
  }
16848 stevensc 11025
 
16825 efrain 11026
  .mx-md-6 {
11027
    margin-right: 4.5rem !important;
11028
    margin-left: 4.5rem !important;
11029
  }
16848 stevensc 11030
 
16825 efrain 11031
  .mx-md-7 {
11032
    margin-right: 6rem !important;
11033
    margin-left: 6rem !important;
11034
  }
16848 stevensc 11035
 
16825 efrain 11036
  .mx-md-auto {
11037
    margin-right: auto !important;
11038
    margin-left: auto !important;
11039
  }
16848 stevensc 11040
 
16825 efrain 11041
  .my-md-0 {
11042
    margin-top: 0 !important;
11043
    margin-bottom: 0 !important;
11044
  }
16848 stevensc 11045
 
16825 efrain 11046
  .my-md-1 {
11047
    margin-top: 0.25rem !important;
11048
    margin-bottom: 0.25rem !important;
11049
  }
16848 stevensc 11050
 
16825 efrain 11051
  .my-md-2 {
11052
    margin-top: 0.5rem !important;
11053
    margin-bottom: 0.5rem !important;
11054
  }
16848 stevensc 11055
 
16825 efrain 11056
  .my-md-3 {
11057
    margin-top: 1rem !important;
11058
    margin-bottom: 1rem !important;
11059
  }
16848 stevensc 11060
 
16825 efrain 11061
  .my-md-4 {
11062
    margin-top: 1.5rem !important;
11063
    margin-bottom: 1.5rem !important;
11064
  }
16848 stevensc 11065
 
16825 efrain 11066
  .my-md-5 {
11067
    margin-top: 3rem !important;
11068
    margin-bottom: 3rem !important;
11069
  }
16848 stevensc 11070
 
16825 efrain 11071
  .my-md-6 {
11072
    margin-top: 4.5rem !important;
11073
    margin-bottom: 4.5rem !important;
11074
  }
16848 stevensc 11075
 
16825 efrain 11076
  .my-md-7 {
11077
    margin-top: 6rem !important;
11078
    margin-bottom: 6rem !important;
11079
  }
16848 stevensc 11080
 
16825 efrain 11081
  .my-md-auto {
11082
    margin-top: auto !important;
11083
    margin-bottom: auto !important;
11084
  }
16848 stevensc 11085
 
11086
  .mt-md-0,
11087
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11088
    margin-top: 0 !important;
11089
  }
16848 stevensc 11090
 
16825 efrain 11091
  .mt-md-1 {
11092
    margin-top: 0.25rem !important;
11093
  }
16848 stevensc 11094
 
16825 efrain 11095
  .mt-md-2 {
11096
    margin-top: 0.5rem !important;
11097
  }
16848 stevensc 11098
 
16825 efrain 11099
  .mt-md-3 {
11100
    margin-top: 1rem !important;
11101
  }
16848 stevensc 11102
 
16825 efrain 11103
  .mt-md-4 {
11104
    margin-top: 1.5rem !important;
11105
  }
16848 stevensc 11106
 
16825 efrain 11107
  .mt-md-5 {
11108
    margin-top: 3rem !important;
11109
  }
16848 stevensc 11110
 
16825 efrain 11111
  .mt-md-6 {
11112
    margin-top: 4.5rem !important;
11113
  }
16848 stevensc 11114
 
16825 efrain 11115
  .mt-md-7 {
11116
    margin-top: 6rem !important;
11117
  }
16848 stevensc 11118
 
16825 efrain 11119
  .mt-md-auto {
11120
    margin-top: auto !important;
11121
  }
16848 stevensc 11122
 
16825 efrain 11123
  .me-md-0 {
11124
    margin-right: 0 !important;
11125
  }
16848 stevensc 11126
 
16825 efrain 11127
  .me-md-1 {
11128
    margin-right: 0.25rem !important;
11129
  }
16848 stevensc 11130
 
16825 efrain 11131
  .me-md-2 {
11132
    margin-right: 0.5rem !important;
11133
  }
16848 stevensc 11134
 
16825 efrain 11135
  .me-md-3 {
11136
    margin-right: 1rem !important;
11137
  }
16848 stevensc 11138
 
16825 efrain 11139
  .me-md-4 {
11140
    margin-right: 1.5rem !important;
11141
  }
16848 stevensc 11142
 
16825 efrain 11143
  .me-md-5 {
11144
    margin-right: 3rem !important;
11145
  }
16848 stevensc 11146
 
16825 efrain 11147
  .me-md-6 {
11148
    margin-right: 4.5rem !important;
11149
  }
16848 stevensc 11150
 
16825 efrain 11151
  .me-md-7 {
11152
    margin-right: 6rem !important;
11153
  }
16848 stevensc 11154
 
16825 efrain 11155
  .me-md-auto {
11156
    margin-right: auto !important;
11157
  }
16848 stevensc 11158
 
11159
  .mb-md-0,
11160
  .example .btn-group {
16825 efrain 11161
    margin-bottom: 0 !important;
11162
  }
16848 stevensc 11163
 
16825 efrain 11164
  .mb-md-1 {
11165
    margin-bottom: 0.25rem !important;
11166
  }
16848 stevensc 11167
 
16825 efrain 11168
  .mb-md-2 {
11169
    margin-bottom: 0.5rem !important;
11170
  }
16848 stevensc 11171
 
16825 efrain 11172
  .mb-md-3 {
11173
    margin-bottom: 1rem !important;
11174
  }
16848 stevensc 11175
 
16825 efrain 11176
  .mb-md-4 {
11177
    margin-bottom: 1.5rem !important;
11178
  }
16848 stevensc 11179
 
16825 efrain 11180
  .mb-md-5 {
11181
    margin-bottom: 3rem !important;
11182
  }
16848 stevensc 11183
 
16825 efrain 11184
  .mb-md-6 {
11185
    margin-bottom: 4.5rem !important;
11186
  }
16848 stevensc 11187
 
16825 efrain 11188
  .mb-md-7 {
11189
    margin-bottom: 6rem !important;
11190
  }
16848 stevensc 11191
 
16825 efrain 11192
  .mb-md-auto {
11193
    margin-bottom: auto !important;
11194
  }
16848 stevensc 11195
 
16825 efrain 11196
  .ms-md-0 {
11197
    margin-left: 0 !important;
11198
  }
16848 stevensc 11199
 
16825 efrain 11200
  .ms-md-1 {
11201
    margin-left: 0.25rem !important;
11202
  }
16848 stevensc 11203
 
16825 efrain 11204
  .ms-md-2 {
11205
    margin-left: 0.5rem !important;
11206
  }
16848 stevensc 11207
 
16825 efrain 11208
  .ms-md-3 {
11209
    margin-left: 1rem !important;
11210
  }
16848 stevensc 11211
 
16825 efrain 11212
  .ms-md-4 {
11213
    margin-left: 1.5rem !important;
11214
  }
16848 stevensc 11215
 
16825 efrain 11216
  .ms-md-5 {
11217
    margin-left: 3rem !important;
11218
  }
16848 stevensc 11219
 
16825 efrain 11220
  .ms-md-6 {
11221
    margin-left: 4.5rem !important;
11222
  }
16848 stevensc 11223
 
16825 efrain 11224
  .ms-md-7 {
11225
    margin-left: 6rem !important;
11226
  }
16848 stevensc 11227
 
16825 efrain 11228
  .ms-md-auto {
11229
    margin-left: auto !important;
11230
  }
16848 stevensc 11231
 
16825 efrain 11232
  .m-md-n1 {
11233
    margin: -0.25rem !important;
11234
  }
16848 stevensc 11235
 
16825 efrain 11236
  .m-md-n2 {
11237
    margin: -0.5rem !important;
11238
  }
16848 stevensc 11239
 
16825 efrain 11240
  .m-md-n3 {
11241
    margin: -1rem !important;
11242
  }
16848 stevensc 11243
 
16825 efrain 11244
  .m-md-n4 {
11245
    margin: -1.5rem !important;
11246
  }
16848 stevensc 11247
 
16825 efrain 11248
  .m-md-n5 {
11249
    margin: -3rem !important;
11250
  }
16848 stevensc 11251
 
16825 efrain 11252
  .m-md-n6 {
11253
    margin: -4.5rem !important;
11254
  }
16848 stevensc 11255
 
16825 efrain 11256
  .m-md-n7 {
11257
    margin: -6rem !important;
11258
  }
16848 stevensc 11259
 
16825 efrain 11260
  .mx-md-n1 {
11261
    margin-right: -0.25rem !important;
11262
    margin-left: -0.25rem !important;
11263
  }
16848 stevensc 11264
 
16825 efrain 11265
  .mx-md-n2 {
11266
    margin-right: -0.5rem !important;
11267
    margin-left: -0.5rem !important;
11268
  }
16848 stevensc 11269
 
16825 efrain 11270
  .mx-md-n3 {
11271
    margin-right: -1rem !important;
11272
    margin-left: -1rem !important;
11273
  }
16848 stevensc 11274
 
16825 efrain 11275
  .mx-md-n4 {
11276
    margin-right: -1.5rem !important;
11277
    margin-left: -1.5rem !important;
11278
  }
16848 stevensc 11279
 
16825 efrain 11280
  .mx-md-n5 {
11281
    margin-right: -3rem !important;
11282
    margin-left: -3rem !important;
11283
  }
16848 stevensc 11284
 
16825 efrain 11285
  .mx-md-n6 {
11286
    margin-right: -4.5rem !important;
11287
    margin-left: -4.5rem !important;
11288
  }
16848 stevensc 11289
 
16825 efrain 11290
  .mx-md-n7 {
11291
    margin-right: -6rem !important;
11292
    margin-left: -6rem !important;
11293
  }
16848 stevensc 11294
 
16825 efrain 11295
  .my-md-n1 {
11296
    margin-top: -0.25rem !important;
11297
    margin-bottom: -0.25rem !important;
11298
  }
16848 stevensc 11299
 
16825 efrain 11300
  .my-md-n2 {
11301
    margin-top: -0.5rem !important;
11302
    margin-bottom: -0.5rem !important;
11303
  }
16848 stevensc 11304
 
16825 efrain 11305
  .my-md-n3 {
11306
    margin-top: -1rem !important;
11307
    margin-bottom: -1rem !important;
11308
  }
16848 stevensc 11309
 
16825 efrain 11310
  .my-md-n4 {
11311
    margin-top: -1.5rem !important;
11312
    margin-bottom: -1.5rem !important;
11313
  }
16848 stevensc 11314
 
16825 efrain 11315
  .my-md-n5 {
11316
    margin-top: -3rem !important;
11317
    margin-bottom: -3rem !important;
11318
  }
16848 stevensc 11319
 
16825 efrain 11320
  .my-md-n6 {
11321
    margin-top: -4.5rem !important;
11322
    margin-bottom: -4.5rem !important;
11323
  }
16848 stevensc 11324
 
16825 efrain 11325
  .my-md-n7 {
11326
    margin-top: -6rem !important;
11327
    margin-bottom: -6rem !important;
11328
  }
16848 stevensc 11329
 
16825 efrain 11330
  .mt-md-n1 {
11331
    margin-top: -0.25rem !important;
11332
  }
16848 stevensc 11333
 
16825 efrain 11334
  .mt-md-n2 {
11335
    margin-top: -0.5rem !important;
11336
  }
16848 stevensc 11337
 
16825 efrain 11338
  .mt-md-n3 {
11339
    margin-top: -1rem !important;
11340
  }
16848 stevensc 11341
 
16825 efrain 11342
  .mt-md-n4 {
11343
    margin-top: -1.5rem !important;
11344
  }
16848 stevensc 11345
 
16825 efrain 11346
  .mt-md-n5 {
11347
    margin-top: -3rem !important;
11348
  }
16848 stevensc 11349
 
16825 efrain 11350
  .mt-md-n6 {
11351
    margin-top: -4.5rem !important;
11352
  }
16848 stevensc 11353
 
16825 efrain 11354
  .mt-md-n7 {
11355
    margin-top: -6rem !important;
11356
  }
16848 stevensc 11357
 
16825 efrain 11358
  .me-md-n1 {
11359
    margin-right: -0.25rem !important;
11360
  }
16848 stevensc 11361
 
16825 efrain 11362
  .me-md-n2 {
11363
    margin-right: -0.5rem !important;
11364
  }
16848 stevensc 11365
 
16825 efrain 11366
  .me-md-n3 {
11367
    margin-right: -1rem !important;
11368
  }
16848 stevensc 11369
 
16825 efrain 11370
  .me-md-n4 {
11371
    margin-right: -1.5rem !important;
11372
  }
16848 stevensc 11373
 
16825 efrain 11374
  .me-md-n5 {
11375
    margin-right: -3rem !important;
11376
  }
16848 stevensc 11377
 
16825 efrain 11378
  .me-md-n6 {
11379
    margin-right: -4.5rem !important;
11380
  }
16848 stevensc 11381
 
16825 efrain 11382
  .me-md-n7 {
11383
    margin-right: -6rem !important;
11384
  }
16848 stevensc 11385
 
16825 efrain 11386
  .mb-md-n1 {
11387
    margin-bottom: -0.25rem !important;
11388
  }
16848 stevensc 11389
 
16825 efrain 11390
  .mb-md-n2 {
11391
    margin-bottom: -0.5rem !important;
11392
  }
16848 stevensc 11393
 
16825 efrain 11394
  .mb-md-n3 {
11395
    margin-bottom: -1rem !important;
11396
  }
16848 stevensc 11397
 
16825 efrain 11398
  .mb-md-n4 {
11399
    margin-bottom: -1.5rem !important;
11400
  }
16848 stevensc 11401
 
16825 efrain 11402
  .mb-md-n5 {
11403
    margin-bottom: -3rem !important;
11404
  }
16848 stevensc 11405
 
16825 efrain 11406
  .mb-md-n6 {
11407
    margin-bottom: -4.5rem !important;
11408
  }
16848 stevensc 11409
 
16825 efrain 11410
  .mb-md-n7 {
11411
    margin-bottom: -6rem !important;
11412
  }
16848 stevensc 11413
 
16825 efrain 11414
  .ms-md-n1 {
11415
    margin-left: -0.25rem !important;
11416
  }
16848 stevensc 11417
 
16825 efrain 11418
  .ms-md-n2 {
11419
    margin-left: -0.5rem !important;
11420
  }
16848 stevensc 11421
 
16825 efrain 11422
  .ms-md-n3 {
11423
    margin-left: -1rem !important;
11424
  }
16848 stevensc 11425
 
16825 efrain 11426
  .ms-md-n4 {
11427
    margin-left: -1.5rem !important;
11428
  }
16848 stevensc 11429
 
16825 efrain 11430
  .ms-md-n5 {
11431
    margin-left: -3rem !important;
11432
  }
16848 stevensc 11433
 
16825 efrain 11434
  .ms-md-n6 {
11435
    margin-left: -4.5rem !important;
11436
  }
16848 stevensc 11437
 
16825 efrain 11438
  .ms-md-n7 {
11439
    margin-left: -6rem !important;
11440
  }
16848 stevensc 11441
 
16825 efrain 11442
  .p-md-0 {
11443
    padding: 0 !important;
11444
  }
16848 stevensc 11445
 
16825 efrain 11446
  .p-md-1 {
11447
    padding: 0.25rem !important;
11448
  }
16848 stevensc 11449
 
16825 efrain 11450
  .p-md-2 {
11451
    padding: 0.5rem !important;
11452
  }
16848 stevensc 11453
 
16825 efrain 11454
  .p-md-3 {
11455
    padding: 1rem !important;
11456
  }
16848 stevensc 11457
 
16825 efrain 11458
  .p-md-4 {
11459
    padding: 1.5rem !important;
11460
  }
16848 stevensc 11461
 
16825 efrain 11462
  .p-md-5 {
11463
    padding: 3rem !important;
11464
  }
16848 stevensc 11465
 
16825 efrain 11466
  .p-md-6 {
11467
    padding: 4.5rem !important;
11468
  }
16848 stevensc 11469
 
16825 efrain 11470
  .p-md-7 {
11471
    padding: 6rem !important;
11472
  }
16848 stevensc 11473
 
16825 efrain 11474
  .px-md-0 {
11475
    padding-right: 0 !important;
11476
    padding-left: 0 !important;
11477
  }
16848 stevensc 11478
 
16825 efrain 11479
  .px-md-1 {
11480
    padding-right: 0.25rem !important;
11481
    padding-left: 0.25rem !important;
11482
  }
16848 stevensc 11483
 
16825 efrain 11484
  .px-md-2 {
11485
    padding-right: 0.5rem !important;
11486
    padding-left: 0.5rem !important;
11487
  }
16848 stevensc 11488
 
16825 efrain 11489
  .px-md-3 {
11490
    padding-right: 1rem !important;
11491
    padding-left: 1rem !important;
11492
  }
16848 stevensc 11493
 
16825 efrain 11494
  .px-md-4 {
11495
    padding-right: 1.5rem !important;
11496
    padding-left: 1.5rem !important;
11497
  }
16848 stevensc 11498
 
16825 efrain 11499
  .px-md-5 {
11500
    padding-right: 3rem !important;
11501
    padding-left: 3rem !important;
11502
  }
16848 stevensc 11503
 
16825 efrain 11504
  .px-md-6 {
11505
    padding-right: 4.5rem !important;
11506
    padding-left: 4.5rem !important;
11507
  }
16848 stevensc 11508
 
16825 efrain 11509
  .px-md-7 {
11510
    padding-right: 6rem !important;
11511
    padding-left: 6rem !important;
11512
  }
16848 stevensc 11513
 
16825 efrain 11514
  .py-md-0 {
11515
    padding-top: 0 !important;
11516
    padding-bottom: 0 !important;
11517
  }
16848 stevensc 11518
 
16825 efrain 11519
  .py-md-1 {
11520
    padding-top: 0.25rem !important;
11521
    padding-bottom: 0.25rem !important;
11522
  }
16848 stevensc 11523
 
16825 efrain 11524
  .py-md-2 {
11525
    padding-top: 0.5rem !important;
11526
    padding-bottom: 0.5rem !important;
11527
  }
16848 stevensc 11528
 
16825 efrain 11529
  .py-md-3 {
11530
    padding-top: 1rem !important;
11531
    padding-bottom: 1rem !important;
11532
  }
16848 stevensc 11533
 
16825 efrain 11534
  .py-md-4 {
11535
    padding-top: 1.5rem !important;
11536
    padding-bottom: 1.5rem !important;
11537
  }
16848 stevensc 11538
 
16825 efrain 11539
  .py-md-5 {
11540
    padding-top: 3rem !important;
11541
    padding-bottom: 3rem !important;
11542
  }
16848 stevensc 11543
 
16825 efrain 11544
  .py-md-6 {
11545
    padding-top: 4.5rem !important;
11546
    padding-bottom: 4.5rem !important;
11547
  }
16848 stevensc 11548
 
16825 efrain 11549
  .py-md-7 {
11550
    padding-top: 6rem !important;
11551
    padding-bottom: 6rem !important;
11552
  }
16848 stevensc 11553
 
16825 efrain 11554
  .pt-md-0 {
11555
    padding-top: 0 !important;
11556
  }
16848 stevensc 11557
 
16825 efrain 11558
  .pt-md-1 {
11559
    padding-top: 0.25rem !important;
11560
  }
16848 stevensc 11561
 
16825 efrain 11562
  .pt-md-2 {
11563
    padding-top: 0.5rem !important;
11564
  }
16848 stevensc 11565
 
16825 efrain 11566
  .pt-md-3 {
11567
    padding-top: 1rem !important;
11568
  }
16848 stevensc 11569
 
16825 efrain 11570
  .pt-md-4 {
11571
    padding-top: 1.5rem !important;
11572
  }
16848 stevensc 11573
 
16825 efrain 11574
  .pt-md-5 {
11575
    padding-top: 3rem !important;
11576
  }
16848 stevensc 11577
 
16825 efrain 11578
  .pt-md-6 {
11579
    padding-top: 4.5rem !important;
11580
  }
16848 stevensc 11581
 
16825 efrain 11582
  .pt-md-7 {
11583
    padding-top: 6rem !important;
11584
  }
16848 stevensc 11585
 
16825 efrain 11586
  .pe-md-0 {
11587
    padding-right: 0 !important;
11588
  }
16848 stevensc 11589
 
16825 efrain 11590
  .pe-md-1 {
11591
    padding-right: 0.25rem !important;
11592
  }
16848 stevensc 11593
 
16825 efrain 11594
  .pe-md-2 {
11595
    padding-right: 0.5rem !important;
11596
  }
16848 stevensc 11597
 
16825 efrain 11598
  .pe-md-3 {
11599
    padding-right: 1rem !important;
11600
  }
16848 stevensc 11601
 
16825 efrain 11602
  .pe-md-4 {
11603
    padding-right: 1.5rem !important;
11604
  }
16848 stevensc 11605
 
16825 efrain 11606
  .pe-md-5 {
11607
    padding-right: 3rem !important;
11608
  }
16848 stevensc 11609
 
16825 efrain 11610
  .pe-md-6 {
11611
    padding-right: 4.5rem !important;
11612
  }
16848 stevensc 11613
 
16825 efrain 11614
  .pe-md-7 {
11615
    padding-right: 6rem !important;
11616
  }
16848 stevensc 11617
 
16825 efrain 11618
  .pb-md-0 {
11619
    padding-bottom: 0 !important;
11620
  }
16848 stevensc 11621
 
16825 efrain 11622
  .pb-md-1 {
11623
    padding-bottom: 0.25rem !important;
11624
  }
16848 stevensc 11625
 
16825 efrain 11626
  .pb-md-2 {
11627
    padding-bottom: 0.5rem !important;
11628
  }
16848 stevensc 11629
 
16825 efrain 11630
  .pb-md-3 {
11631
    padding-bottom: 1rem !important;
11632
  }
16848 stevensc 11633
 
16825 efrain 11634
  .pb-md-4 {
11635
    padding-bottom: 1.5rem !important;
11636
  }
16848 stevensc 11637
 
16825 efrain 11638
  .pb-md-5 {
11639
    padding-bottom: 3rem !important;
11640
  }
16848 stevensc 11641
 
16825 efrain 11642
  .pb-md-6 {
11643
    padding-bottom: 4.5rem !important;
11644
  }
16848 stevensc 11645
 
16825 efrain 11646
  .pb-md-7 {
11647
    padding-bottom: 6rem !important;
11648
  }
16848 stevensc 11649
 
16825 efrain 11650
  .ps-md-0 {
11651
    padding-left: 0 !important;
11652
  }
16848 stevensc 11653
 
16825 efrain 11654
  .ps-md-1 {
11655
    padding-left: 0.25rem !important;
11656
  }
16848 stevensc 11657
 
16825 efrain 11658
  .ps-md-2 {
11659
    padding-left: 0.5rem !important;
11660
  }
16848 stevensc 11661
 
16825 efrain 11662
  .ps-md-3 {
11663
    padding-left: 1rem !important;
11664
  }
16848 stevensc 11665
 
16825 efrain 11666
  .ps-md-4 {
11667
    padding-left: 1.5rem !important;
11668
  }
16848 stevensc 11669
 
16825 efrain 11670
  .ps-md-5 {
11671
    padding-left: 3rem !important;
11672
  }
16848 stevensc 11673
 
16825 efrain 11674
  .ps-md-6 {
11675
    padding-left: 4.5rem !important;
11676
  }
16848 stevensc 11677
 
16825 efrain 11678
  .ps-md-7 {
11679
    padding-left: 6rem !important;
11680
  }
16848 stevensc 11681
 
16825 efrain 11682
  .gap-md-0 {
11683
    gap: 0 !important;
11684
  }
16848 stevensc 11685
 
16825 efrain 11686
  .gap-md-1 {
11687
    gap: 0.25rem !important;
11688
  }
16848 stevensc 11689
 
16825 efrain 11690
  .gap-md-2 {
11691
    gap: 0.5rem !important;
11692
  }
16848 stevensc 11693
 
16825 efrain 11694
  .gap-md-3 {
11695
    gap: 1rem !important;
11696
  }
16848 stevensc 11697
 
16825 efrain 11698
  .gap-md-4 {
11699
    gap: 1.5rem !important;
11700
  }
16848 stevensc 11701
 
16825 efrain 11702
  .gap-md-5 {
11703
    gap: 3rem !important;
11704
  }
16848 stevensc 11705
 
16825 efrain 11706
  .gap-md-6 {
11707
    gap: 4.5rem !important;
11708
  }
16848 stevensc 11709
 
16825 efrain 11710
  .gap-md-7 {
11711
    gap: 6rem !important;
11712
  }
16848 stevensc 11713
 
16825 efrain 11714
  .text-md-start {
11715
    text-align: left !important;
11716
  }
16848 stevensc 11717
 
16825 efrain 11718
  .text-md-end {
11719
    text-align: right !important;
11720
  }
16848 stevensc 11721
 
16825 efrain 11722
  .text-md-center {
11723
    text-align: center !important;
11724
  }
11725
}
16848 stevensc 11726
 
16825 efrain 11727
@media (min-width: 992px) {
11728
  .float-lg-start {
11729
    float: left !important;
11730
  }
16848 stevensc 11731
 
16825 efrain 11732
  .float-lg-end {
11733
    float: right !important;
11734
  }
16848 stevensc 11735
 
16825 efrain 11736
  .float-lg-none {
11737
    float: none !important;
11738
  }
16848 stevensc 11739
 
16825 efrain 11740
  .d-lg-inline {
11741
    display: inline !important;
11742
  }
16848 stevensc 11743
 
16825 efrain 11744
  .d-lg-inline-block {
11745
    display: inline-block !important;
11746
  }
16848 stevensc 11747
 
16825 efrain 11748
  .d-lg-block {
11749
    display: block !important;
11750
  }
16848 stevensc 11751
 
16825 efrain 11752
  .d-lg-grid {
11753
    display: grid !important;
11754
  }
16848 stevensc 11755
 
16825 efrain 11756
  .d-lg-table {
11757
    display: table !important;
11758
  }
16848 stevensc 11759
 
16825 efrain 11760
  .d-lg-table-row {
11761
    display: table-row !important;
11762
  }
16848 stevensc 11763
 
16825 efrain 11764
  .d-lg-table-cell {
11765
    display: table-cell !important;
11766
  }
16848 stevensc 11767
 
16825 efrain 11768
  .d-lg-flex {
11769
    display: flex !important;
11770
  }
16848 stevensc 11771
 
16825 efrain 11772
  .d-lg-inline-flex {
11773
    display: inline-flex !important;
11774
  }
16848 stevensc 11775
 
16825 efrain 11776
  .d-lg-none {
11777
    display: none !important;
11778
  }
16848 stevensc 11779
 
16825 efrain 11780
  .border-lg {
11781
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11782
  }
16848 stevensc 11783
 
16825 efrain 11784
  .border-lg-0 {
11785
    border: 0 !important;
11786
  }
16848 stevensc 11787
 
16825 efrain 11788
  .border-top-lg {
11789
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11790
  }
16848 stevensc 11791
 
16825 efrain 11792
  .border-top-lg-0 {
11793
    border-top: 0 !important;
11794
  }
16848 stevensc 11795
 
16825 efrain 11796
  .border-end-lg {
11797
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11798
  }
16848 stevensc 11799
 
16825 efrain 11800
  .border-end-lg-0 {
11801
    border-right: 0 !important;
11802
  }
16848 stevensc 11803
 
16825 efrain 11804
  .border-bottom-lg {
11805
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11806
  }
16848 stevensc 11807
 
16825 efrain 11808
  .border-bottom-lg-0 {
11809
    border-bottom: 0 !important;
11810
  }
16848 stevensc 11811
 
16825 efrain 11812
  .border-start-lg {
11813
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11814
  }
16848 stevensc 11815
 
16825 efrain 11816
  .border-start-lg-0 {
11817
    border-left: 0 !important;
11818
  }
16848 stevensc 11819
 
16825 efrain 11820
  .flex-lg-fill {
11821
    flex: 1 1 auto !important;
11822
  }
16848 stevensc 11823
 
16825 efrain 11824
  .flex-lg-row {
11825
    flex-direction: row !important;
11826
  }
16848 stevensc 11827
 
16825 efrain 11828
  .flex-lg-column {
11829
    flex-direction: column !important;
11830
  }
16848 stevensc 11831
 
16825 efrain 11832
  .flex-lg-row-reverse {
11833
    flex-direction: row-reverse !important;
11834
  }
16848 stevensc 11835
 
16825 efrain 11836
  .flex-lg-column-reverse {
11837
    flex-direction: column-reverse !important;
11838
  }
16848 stevensc 11839
 
16825 efrain 11840
  .flex-lg-grow-0 {
11841
    flex-grow: 0 !important;
11842
  }
16848 stevensc 11843
 
16825 efrain 11844
  .flex-lg-grow-1 {
11845
    flex-grow: 1 !important;
11846
  }
16848 stevensc 11847
 
16825 efrain 11848
  .flex-lg-shrink-0 {
11849
    flex-shrink: 0 !important;
11850
  }
16848 stevensc 11851
 
16825 efrain 11852
  .flex-lg-shrink-1 {
11853
    flex-shrink: 1 !important;
11854
  }
16848 stevensc 11855
 
16825 efrain 11856
  .flex-lg-wrap {
11857
    flex-wrap: wrap !important;
11858
  }
16848 stevensc 11859
 
16825 efrain 11860
  .flex-lg-nowrap {
11861
    flex-wrap: nowrap !important;
11862
  }
16848 stevensc 11863
 
16825 efrain 11864
  .flex-lg-wrap-reverse {
11865
    flex-wrap: wrap-reverse !important;
11866
  }
16848 stevensc 11867
 
16825 efrain 11868
  .justify-content-lg-start {
11869
    justify-content: flex-start !important;
11870
  }
16848 stevensc 11871
 
16825 efrain 11872
  .justify-content-lg-end {
11873
    justify-content: flex-end !important;
11874
  }
16848 stevensc 11875
 
16825 efrain 11876
  .justify-content-lg-center {
11877
    justify-content: center !important;
11878
  }
16848 stevensc 11879
 
16825 efrain 11880
  .justify-content-lg-between {
11881
    justify-content: space-between !important;
11882
  }
16848 stevensc 11883
 
16825 efrain 11884
  .justify-content-lg-around {
11885
    justify-content: space-around !important;
11886
  }
16848 stevensc 11887
 
16825 efrain 11888
  .justify-content-lg-evenly {
11889
    justify-content: space-evenly !important;
11890
  }
16848 stevensc 11891
 
16825 efrain 11892
  .align-items-lg-start {
11893
    align-items: flex-start !important;
11894
  }
16848 stevensc 11895
 
16825 efrain 11896
  .align-items-lg-end {
11897
    align-items: flex-end !important;
11898
  }
16848 stevensc 11899
 
16825 efrain 11900
  .align-items-lg-center {
11901
    align-items: center !important;
11902
  }
16848 stevensc 11903
 
16825 efrain 11904
  .align-items-lg-baseline {
11905
    align-items: baseline !important;
11906
  }
16848 stevensc 11907
 
16825 efrain 11908
  .align-items-lg-stretch {
11909
    align-items: stretch !important;
11910
  }
16848 stevensc 11911
 
16825 efrain 11912
  .align-content-lg-start {
11913
    align-content: flex-start !important;
11914
  }
16848 stevensc 11915
 
16825 efrain 11916
  .align-content-lg-end {
11917
    align-content: flex-end !important;
11918
  }
16848 stevensc 11919
 
16825 efrain 11920
  .align-content-lg-center {
11921
    align-content: center !important;
11922
  }
16848 stevensc 11923
 
16825 efrain 11924
  .align-content-lg-between {
11925
    align-content: space-between !important;
11926
  }
16848 stevensc 11927
 
16825 efrain 11928
  .align-content-lg-around {
11929
    align-content: space-around !important;
11930
  }
16848 stevensc 11931
 
16825 efrain 11932
  .align-content-lg-stretch {
11933
    align-content: stretch !important;
11934
  }
16848 stevensc 11935
 
16825 efrain 11936
  .align-self-lg-auto {
11937
    align-self: auto !important;
11938
  }
16848 stevensc 11939
 
16825 efrain 11940
  .align-self-lg-start {
11941
    align-self: flex-start !important;
11942
  }
16848 stevensc 11943
 
16825 efrain 11944
  .align-self-lg-end {
11945
    align-self: flex-end !important;
11946
  }
16848 stevensc 11947
 
16825 efrain 11948
  .align-self-lg-center {
11949
    align-self: center !important;
11950
  }
16848 stevensc 11951
 
16825 efrain 11952
  .align-self-lg-baseline {
11953
    align-self: baseline !important;
11954
  }
16848 stevensc 11955
 
16825 efrain 11956
  .align-self-lg-stretch {
11957
    align-self: stretch !important;
11958
  }
16848 stevensc 11959
 
16825 efrain 11960
  .order-lg-first {
11961
    order: -1 !important;
11962
  }
16848 stevensc 11963
 
16825 efrain 11964
  .order-lg-0 {
11965
    order: 0 !important;
11966
  }
16848 stevensc 11967
 
16825 efrain 11968
  .order-lg-1 {
11969
    order: 1 !important;
11970
  }
16848 stevensc 11971
 
16825 efrain 11972
  .order-lg-2 {
11973
    order: 2 !important;
11974
  }
16848 stevensc 11975
 
16825 efrain 11976
  .order-lg-3 {
11977
    order: 3 !important;
11978
  }
16848 stevensc 11979
 
16825 efrain 11980
  .order-lg-4 {
11981
    order: 4 !important;
11982
  }
16848 stevensc 11983
 
16825 efrain 11984
  .order-lg-5 {
11985
    order: 5 !important;
11986
  }
16848 stevensc 11987
 
16825 efrain 11988
  .order-lg-last {
11989
    order: 6 !important;
11990
  }
16848 stevensc 11991
 
16825 efrain 11992
  .m-lg-0 {
11993
    margin: 0 !important;
11994
  }
16848 stevensc 11995
 
16825 efrain 11996
  .m-lg-1 {
11997
    margin: 0.25rem !important;
11998
  }
16848 stevensc 11999
 
16825 efrain 12000
  .m-lg-2 {
12001
    margin: 0.5rem !important;
12002
  }
16848 stevensc 12003
 
16825 efrain 12004
  .m-lg-3 {
12005
    margin: 1rem !important;
12006
  }
16848 stevensc 12007
 
16825 efrain 12008
  .m-lg-4 {
12009
    margin: 1.5rem !important;
12010
  }
16848 stevensc 12011
 
16825 efrain 12012
  .m-lg-5 {
12013
    margin: 3rem !important;
12014
  }
16848 stevensc 12015
 
16825 efrain 12016
  .m-lg-6 {
12017
    margin: 4.5rem !important;
12018
  }
16848 stevensc 12019
 
16825 efrain 12020
  .m-lg-7 {
12021
    margin: 6rem !important;
12022
  }
16848 stevensc 12023
 
16825 efrain 12024
  .m-lg-auto {
12025
    margin: auto !important;
12026
  }
16848 stevensc 12027
 
16825 efrain 12028
  .mx-lg-0 {
12029
    margin-right: 0 !important;
12030
    margin-left: 0 !important;
12031
  }
16848 stevensc 12032
 
16825 efrain 12033
  .mx-lg-1 {
12034
    margin-right: 0.25rem !important;
12035
    margin-left: 0.25rem !important;
12036
  }
16848 stevensc 12037
 
16825 efrain 12038
  .mx-lg-2 {
12039
    margin-right: 0.5rem !important;
12040
    margin-left: 0.5rem !important;
12041
  }
16848 stevensc 12042
 
16825 efrain 12043
  .mx-lg-3 {
12044
    margin-right: 1rem !important;
12045
    margin-left: 1rem !important;
12046
  }
16848 stevensc 12047
 
16825 efrain 12048
  .mx-lg-4 {
12049
    margin-right: 1.5rem !important;
12050
    margin-left: 1.5rem !important;
12051
  }
16848 stevensc 12052
 
16825 efrain 12053
  .mx-lg-5 {
12054
    margin-right: 3rem !important;
12055
    margin-left: 3rem !important;
12056
  }
16848 stevensc 12057
 
16825 efrain 12058
  .mx-lg-6 {
12059
    margin-right: 4.5rem !important;
12060
    margin-left: 4.5rem !important;
12061
  }
16848 stevensc 12062
 
16825 efrain 12063
  .mx-lg-7 {
12064
    margin-right: 6rem !important;
12065
    margin-left: 6rem !important;
12066
  }
16848 stevensc 12067
 
16825 efrain 12068
  .mx-lg-auto {
12069
    margin-right: auto !important;
12070
    margin-left: auto !important;
12071
  }
16848 stevensc 12072
 
16825 efrain 12073
  .my-lg-0 {
12074
    margin-top: 0 !important;
12075
    margin-bottom: 0 !important;
12076
  }
16848 stevensc 12077
 
16825 efrain 12078
  .my-lg-1 {
12079
    margin-top: 0.25rem !important;
12080
    margin-bottom: 0.25rem !important;
12081
  }
16848 stevensc 12082
 
16825 efrain 12083
  .my-lg-2 {
12084
    margin-top: 0.5rem !important;
12085
    margin-bottom: 0.5rem !important;
12086
  }
16848 stevensc 12087
 
16825 efrain 12088
  .my-lg-3 {
12089
    margin-top: 1rem !important;
12090
    margin-bottom: 1rem !important;
12091
  }
16848 stevensc 12092
 
16825 efrain 12093
  .my-lg-4 {
12094
    margin-top: 1.5rem !important;
12095
    margin-bottom: 1.5rem !important;
12096
  }
16848 stevensc 12097
 
16825 efrain 12098
  .my-lg-5 {
12099
    margin-top: 3rem !important;
12100
    margin-bottom: 3rem !important;
12101
  }
16848 stevensc 12102
 
16825 efrain 12103
  .my-lg-6 {
12104
    margin-top: 4.5rem !important;
12105
    margin-bottom: 4.5rem !important;
12106
  }
16848 stevensc 12107
 
16825 efrain 12108
  .my-lg-7 {
12109
    margin-top: 6rem !important;
12110
    margin-bottom: 6rem !important;
12111
  }
16848 stevensc 12112
 
16825 efrain 12113
  .my-lg-auto {
12114
    margin-top: auto !important;
12115
    margin-bottom: auto !important;
12116
  }
16848 stevensc 12117
 
16825 efrain 12118
  .mt-lg-0 {
12119
    margin-top: 0 !important;
12120
  }
16848 stevensc 12121
 
16825 efrain 12122
  .mt-lg-1 {
12123
    margin-top: 0.25rem !important;
12124
  }
16848 stevensc 12125
 
16825 efrain 12126
  .mt-lg-2 {
12127
    margin-top: 0.5rem !important;
12128
  }
16848 stevensc 12129
 
16825 efrain 12130
  .mt-lg-3 {
12131
    margin-top: 1rem !important;
12132
  }
16848 stevensc 12133
 
16825 efrain 12134
  .mt-lg-4 {
12135
    margin-top: 1.5rem !important;
12136
  }
16848 stevensc 12137
 
16825 efrain 12138
  .mt-lg-5 {
12139
    margin-top: 3rem !important;
12140
  }
16848 stevensc 12141
 
16825 efrain 12142
  .mt-lg-6 {
12143
    margin-top: 4.5rem !important;
12144
  }
16848 stevensc 12145
 
16825 efrain 12146
  .mt-lg-7 {
12147
    margin-top: 6rem !important;
12148
  }
16848 stevensc 12149
 
16825 efrain 12150
  .mt-lg-auto {
12151
    margin-top: auto !important;
12152
  }
16848 stevensc 12153
 
16825 efrain 12154
  .me-lg-0 {
12155
    margin-right: 0 !important;
12156
  }
16848 stevensc 12157
 
16825 efrain 12158
  .me-lg-1 {
12159
    margin-right: 0.25rem !important;
12160
  }
16848 stevensc 12161
 
16825 efrain 12162
  .me-lg-2 {
12163
    margin-right: 0.5rem !important;
12164
  }
16848 stevensc 12165
 
16825 efrain 12166
  .me-lg-3 {
12167
    margin-right: 1rem !important;
12168
  }
16848 stevensc 12169
 
16825 efrain 12170
  .me-lg-4 {
12171
    margin-right: 1.5rem !important;
12172
  }
16848 stevensc 12173
 
16825 efrain 12174
  .me-lg-5 {
12175
    margin-right: 3rem !important;
12176
  }
16848 stevensc 12177
 
16825 efrain 12178
  .me-lg-6 {
12179
    margin-right: 4.5rem !important;
12180
  }
16848 stevensc 12181
 
16825 efrain 12182
  .me-lg-7 {
12183
    margin-right: 6rem !important;
12184
  }
16848 stevensc 12185
 
16825 efrain 12186
  .me-lg-auto {
12187
    margin-right: auto !important;
12188
  }
16848 stevensc 12189
 
16825 efrain 12190
  .mb-lg-0 {
12191
    margin-bottom: 0 !important;
12192
  }
16848 stevensc 12193
 
16825 efrain 12194
  .mb-lg-1 {
12195
    margin-bottom: 0.25rem !important;
12196
  }
16848 stevensc 12197
 
16825 efrain 12198
  .mb-lg-2 {
12199
    margin-bottom: 0.5rem !important;
12200
  }
16848 stevensc 12201
 
16825 efrain 12202
  .mb-lg-3 {
12203
    margin-bottom: 1rem !important;
12204
  }
16848 stevensc 12205
 
16825 efrain 12206
  .mb-lg-4 {
12207
    margin-bottom: 1.5rem !important;
12208
  }
16848 stevensc 12209
 
16825 efrain 12210
  .mb-lg-5 {
12211
    margin-bottom: 3rem !important;
12212
  }
16848 stevensc 12213
 
16825 efrain 12214
  .mb-lg-6 {
12215
    margin-bottom: 4.5rem !important;
12216
  }
16848 stevensc 12217
 
16825 efrain 12218
  .mb-lg-7 {
12219
    margin-bottom: 6rem !important;
12220
  }
16848 stevensc 12221
 
16825 efrain 12222
  .mb-lg-auto {
12223
    margin-bottom: auto !important;
12224
  }
16848 stevensc 12225
 
16825 efrain 12226
  .ms-lg-0 {
12227
    margin-left: 0 !important;
12228
  }
16848 stevensc 12229
 
16825 efrain 12230
  .ms-lg-1 {
12231
    margin-left: 0.25rem !important;
12232
  }
16848 stevensc 12233
 
16825 efrain 12234
  .ms-lg-2 {
12235
    margin-left: 0.5rem !important;
12236
  }
16848 stevensc 12237
 
16825 efrain 12238
  .ms-lg-3 {
12239
    margin-left: 1rem !important;
12240
  }
16848 stevensc 12241
 
16825 efrain 12242
  .ms-lg-4 {
12243
    margin-left: 1.5rem !important;
12244
  }
16848 stevensc 12245
 
16825 efrain 12246
  .ms-lg-5 {
12247
    margin-left: 3rem !important;
12248
  }
16848 stevensc 12249
 
16825 efrain 12250
  .ms-lg-6 {
12251
    margin-left: 4.5rem !important;
12252
  }
16848 stevensc 12253
 
16825 efrain 12254
  .ms-lg-7 {
12255
    margin-left: 6rem !important;
12256
  }
16848 stevensc 12257
 
16825 efrain 12258
  .ms-lg-auto {
12259
    margin-left: auto !important;
12260
  }
16848 stevensc 12261
 
16825 efrain 12262
  .m-lg-n1 {
12263
    margin: -0.25rem !important;
12264
  }
16848 stevensc 12265
 
16825 efrain 12266
  .m-lg-n2 {
12267
    margin: -0.5rem !important;
12268
  }
16848 stevensc 12269
 
16825 efrain 12270
  .m-lg-n3 {
12271
    margin: -1rem !important;
12272
  }
16848 stevensc 12273
 
16825 efrain 12274
  .m-lg-n4 {
12275
    margin: -1.5rem !important;
12276
  }
16848 stevensc 12277
 
16825 efrain 12278
  .m-lg-n5 {
12279
    margin: -3rem !important;
12280
  }
16848 stevensc 12281
 
16825 efrain 12282
  .m-lg-n6 {
12283
    margin: -4.5rem !important;
12284
  }
16848 stevensc 12285
 
16825 efrain 12286
  .m-lg-n7 {
12287
    margin: -6rem !important;
12288
  }
16848 stevensc 12289
 
16825 efrain 12290
  .mx-lg-n1 {
12291
    margin-right: -0.25rem !important;
12292
    margin-left: -0.25rem !important;
12293
  }
16848 stevensc 12294
 
16825 efrain 12295
  .mx-lg-n2 {
12296
    margin-right: -0.5rem !important;
12297
    margin-left: -0.5rem !important;
12298
  }
16848 stevensc 12299
 
16825 efrain 12300
  .mx-lg-n3 {
12301
    margin-right: -1rem !important;
12302
    margin-left: -1rem !important;
12303
  }
16848 stevensc 12304
 
16825 efrain 12305
  .mx-lg-n4 {
12306
    margin-right: -1.5rem !important;
12307
    margin-left: -1.5rem !important;
12308
  }
16848 stevensc 12309
 
16825 efrain 12310
  .mx-lg-n5 {
12311
    margin-right: -3rem !important;
12312
    margin-left: -3rem !important;
12313
  }
16848 stevensc 12314
 
16825 efrain 12315
  .mx-lg-n6 {
12316
    margin-right: -4.5rem !important;
12317
    margin-left: -4.5rem !important;
12318
  }
16848 stevensc 12319
 
16825 efrain 12320
  .mx-lg-n7 {
12321
    margin-right: -6rem !important;
12322
    margin-left: -6rem !important;
12323
  }
16848 stevensc 12324
 
16825 efrain 12325
  .my-lg-n1 {
12326
    margin-top: -0.25rem !important;
12327
    margin-bottom: -0.25rem !important;
12328
  }
16848 stevensc 12329
 
16825 efrain 12330
  .my-lg-n2 {
12331
    margin-top: -0.5rem !important;
12332
    margin-bottom: -0.5rem !important;
12333
  }
16848 stevensc 12334
 
16825 efrain 12335
  .my-lg-n3 {
12336
    margin-top: -1rem !important;
12337
    margin-bottom: -1rem !important;
12338
  }
16848 stevensc 12339
 
16825 efrain 12340
  .my-lg-n4 {
12341
    margin-top: -1.5rem !important;
12342
    margin-bottom: -1.5rem !important;
12343
  }
16848 stevensc 12344
 
16825 efrain 12345
  .my-lg-n5 {
12346
    margin-top: -3rem !important;
12347
    margin-bottom: -3rem !important;
12348
  }
16848 stevensc 12349
 
16825 efrain 12350
  .my-lg-n6 {
12351
    margin-top: -4.5rem !important;
12352
    margin-bottom: -4.5rem !important;
12353
  }
16848 stevensc 12354
 
16825 efrain 12355
  .my-lg-n7 {
12356
    margin-top: -6rem !important;
12357
    margin-bottom: -6rem !important;
12358
  }
16848 stevensc 12359
 
16825 efrain 12360
  .mt-lg-n1 {
12361
    margin-top: -0.25rem !important;
12362
  }
16848 stevensc 12363
 
16825 efrain 12364
  .mt-lg-n2 {
12365
    margin-top: -0.5rem !important;
12366
  }
16848 stevensc 12367
 
16825 efrain 12368
  .mt-lg-n3 {
12369
    margin-top: -1rem !important;
12370
  }
16848 stevensc 12371
 
16825 efrain 12372
  .mt-lg-n4 {
12373
    margin-top: -1.5rem !important;
12374
  }
16848 stevensc 12375
 
16825 efrain 12376
  .mt-lg-n5 {
12377
    margin-top: -3rem !important;
12378
  }
16848 stevensc 12379
 
16825 efrain 12380
  .mt-lg-n6 {
12381
    margin-top: -4.5rem !important;
12382
  }
16848 stevensc 12383
 
16825 efrain 12384
  .mt-lg-n7 {
12385
    margin-top: -6rem !important;
12386
  }
16848 stevensc 12387
 
16825 efrain 12388
  .me-lg-n1 {
12389
    margin-right: -0.25rem !important;
12390
  }
16848 stevensc 12391
 
16825 efrain 12392
  .me-lg-n2 {
12393
    margin-right: -0.5rem !important;
12394
  }
16848 stevensc 12395
 
16825 efrain 12396
  .me-lg-n3 {
12397
    margin-right: -1rem !important;
12398
  }
16848 stevensc 12399
 
16825 efrain 12400
  .me-lg-n4 {
12401
    margin-right: -1.5rem !important;
12402
  }
16848 stevensc 12403
 
16825 efrain 12404
  .me-lg-n5 {
12405
    margin-right: -3rem !important;
12406
  }
16848 stevensc 12407
 
16825 efrain 12408
  .me-lg-n6 {
12409
    margin-right: -4.5rem !important;
12410
  }
16848 stevensc 12411
 
16825 efrain 12412
  .me-lg-n7 {
12413
    margin-right: -6rem !important;
12414
  }
16848 stevensc 12415
 
16825 efrain 12416
  .mb-lg-n1 {
12417
    margin-bottom: -0.25rem !important;
12418
  }
16848 stevensc 12419
 
16825 efrain 12420
  .mb-lg-n2 {
12421
    margin-bottom: -0.5rem !important;
12422
  }
16848 stevensc 12423
 
16825 efrain 12424
  .mb-lg-n3 {
12425
    margin-bottom: -1rem !important;
12426
  }
16848 stevensc 12427
 
16825 efrain 12428
  .mb-lg-n4 {
12429
    margin-bottom: -1.5rem !important;
12430
  }
16848 stevensc 12431
 
16825 efrain 12432
  .mb-lg-n5 {
12433
    margin-bottom: -3rem !important;
12434
  }
16848 stevensc 12435
 
16825 efrain 12436
  .mb-lg-n6 {
12437
    margin-bottom: -4.5rem !important;
12438
  }
16848 stevensc 12439
 
16825 efrain 12440
  .mb-lg-n7 {
12441
    margin-bottom: -6rem !important;
12442
  }
16848 stevensc 12443
 
16825 efrain 12444
  .ms-lg-n1 {
12445
    margin-left: -0.25rem !important;
12446
  }
16848 stevensc 12447
 
16825 efrain 12448
  .ms-lg-n2 {
12449
    margin-left: -0.5rem !important;
12450
  }
16848 stevensc 12451
 
16825 efrain 12452
  .ms-lg-n3 {
12453
    margin-left: -1rem !important;
12454
  }
16848 stevensc 12455
 
16825 efrain 12456
  .ms-lg-n4 {
12457
    margin-left: -1.5rem !important;
12458
  }
16848 stevensc 12459
 
16825 efrain 12460
  .ms-lg-n5 {
12461
    margin-left: -3rem !important;
12462
  }
16848 stevensc 12463
 
16825 efrain 12464
  .ms-lg-n6 {
12465
    margin-left: -4.5rem !important;
12466
  }
16848 stevensc 12467
 
16825 efrain 12468
  .ms-lg-n7 {
12469
    margin-left: -6rem !important;
12470
  }
16848 stevensc 12471
 
16825 efrain 12472
  .p-lg-0 {
12473
    padding: 0 !important;
12474
  }
16848 stevensc 12475
 
16825 efrain 12476
  .p-lg-1 {
12477
    padding: 0.25rem !important;
12478
  }
16848 stevensc 12479
 
16825 efrain 12480
  .p-lg-2 {
12481
    padding: 0.5rem !important;
12482
  }
16848 stevensc 12483
 
16825 efrain 12484
  .p-lg-3 {
12485
    padding: 1rem !important;
12486
  }
16848 stevensc 12487
 
16825 efrain 12488
  .p-lg-4 {
12489
    padding: 1.5rem !important;
12490
  }
16848 stevensc 12491
 
16825 efrain 12492
  .p-lg-5 {
12493
    padding: 3rem !important;
12494
  }
16848 stevensc 12495
 
16825 efrain 12496
  .p-lg-6 {
12497
    padding: 4.5rem !important;
12498
  }
16848 stevensc 12499
 
16825 efrain 12500
  .p-lg-7 {
12501
    padding: 6rem !important;
12502
  }
16848 stevensc 12503
 
16825 efrain 12504
  .px-lg-0 {
12505
    padding-right: 0 !important;
12506
    padding-left: 0 !important;
12507
  }
16848 stevensc 12508
 
16825 efrain 12509
  .px-lg-1 {
12510
    padding-right: 0.25rem !important;
12511
    padding-left: 0.25rem !important;
12512
  }
16848 stevensc 12513
 
16825 efrain 12514
  .px-lg-2 {
12515
    padding-right: 0.5rem !important;
12516
    padding-left: 0.5rem !important;
12517
  }
16848 stevensc 12518
 
16825 efrain 12519
  .px-lg-3 {
12520
    padding-right: 1rem !important;
12521
    padding-left: 1rem !important;
12522
  }
16848 stevensc 12523
 
16825 efrain 12524
  .px-lg-4 {
12525
    padding-right: 1.5rem !important;
12526
    padding-left: 1.5rem !important;
12527
  }
16848 stevensc 12528
 
16825 efrain 12529
  .px-lg-5 {
12530
    padding-right: 3rem !important;
12531
    padding-left: 3rem !important;
12532
  }
16848 stevensc 12533
 
16825 efrain 12534
  .px-lg-6 {
12535
    padding-right: 4.5rem !important;
12536
    padding-left: 4.5rem !important;
12537
  }
16848 stevensc 12538
 
16825 efrain 12539
  .px-lg-7 {
12540
    padding-right: 6rem !important;
12541
    padding-left: 6rem !important;
12542
  }
16848 stevensc 12543
 
16825 efrain 12544
  .py-lg-0 {
12545
    padding-top: 0 !important;
12546
    padding-bottom: 0 !important;
12547
  }
16848 stevensc 12548
 
16825 efrain 12549
  .py-lg-1 {
12550
    padding-top: 0.25rem !important;
12551
    padding-bottom: 0.25rem !important;
12552
  }
16848 stevensc 12553
 
16825 efrain 12554
  .py-lg-2 {
12555
    padding-top: 0.5rem !important;
12556
    padding-bottom: 0.5rem !important;
12557
  }
16848 stevensc 12558
 
16825 efrain 12559
  .py-lg-3 {
12560
    padding-top: 1rem !important;
12561
    padding-bottom: 1rem !important;
12562
  }
16848 stevensc 12563
 
16825 efrain 12564
  .py-lg-4 {
12565
    padding-top: 1.5rem !important;
12566
    padding-bottom: 1.5rem !important;
12567
  }
16848 stevensc 12568
 
16825 efrain 12569
  .py-lg-5 {
12570
    padding-top: 3rem !important;
12571
    padding-bottom: 3rem !important;
12572
  }
16848 stevensc 12573
 
16825 efrain 12574
  .py-lg-6 {
12575
    padding-top: 4.5rem !important;
12576
    padding-bottom: 4.5rem !important;
12577
  }
16848 stevensc 12578
 
16825 efrain 12579
  .py-lg-7 {
12580
    padding-top: 6rem !important;
12581
    padding-bottom: 6rem !important;
12582
  }
16848 stevensc 12583
 
16825 efrain 12584
  .pt-lg-0 {
12585
    padding-top: 0 !important;
12586
  }
16848 stevensc 12587
 
16825 efrain 12588
  .pt-lg-1 {
12589
    padding-top: 0.25rem !important;
12590
  }
16848 stevensc 12591
 
16825 efrain 12592
  .pt-lg-2 {
12593
    padding-top: 0.5rem !important;
12594
  }
16848 stevensc 12595
 
16825 efrain 12596
  .pt-lg-3 {
12597
    padding-top: 1rem !important;
12598
  }
16848 stevensc 12599
 
16825 efrain 12600
  .pt-lg-4 {
12601
    padding-top: 1.5rem !important;
12602
  }
16848 stevensc 12603
 
16825 efrain 12604
  .pt-lg-5 {
12605
    padding-top: 3rem !important;
12606
  }
16848 stevensc 12607
 
16825 efrain 12608
  .pt-lg-6 {
12609
    padding-top: 4.5rem !important;
12610
  }
16848 stevensc 12611
 
16825 efrain 12612
  .pt-lg-7 {
12613
    padding-top: 6rem !important;
12614
  }
16848 stevensc 12615
 
16825 efrain 12616
  .pe-lg-0 {
12617
    padding-right: 0 !important;
12618
  }
16848 stevensc 12619
 
16825 efrain 12620
  .pe-lg-1 {
12621
    padding-right: 0.25rem !important;
12622
  }
16848 stevensc 12623
 
16825 efrain 12624
  .pe-lg-2 {
12625
    padding-right: 0.5rem !important;
12626
  }
16848 stevensc 12627
 
16825 efrain 12628
  .pe-lg-3 {
12629
    padding-right: 1rem !important;
12630
  }
16848 stevensc 12631
 
16825 efrain 12632
  .pe-lg-4 {
12633
    padding-right: 1.5rem !important;
12634
  }
16848 stevensc 12635
 
16825 efrain 12636
  .pe-lg-5 {
12637
    padding-right: 3rem !important;
12638
  }
16848 stevensc 12639
 
16825 efrain 12640
  .pe-lg-6 {
12641
    padding-right: 4.5rem !important;
12642
  }
16848 stevensc 12643
 
16825 efrain 12644
  .pe-lg-7 {
12645
    padding-right: 6rem !important;
12646
  }
16848 stevensc 12647
 
16825 efrain 12648
  .pb-lg-0 {
12649
    padding-bottom: 0 !important;
12650
  }
16848 stevensc 12651
 
16825 efrain 12652
  .pb-lg-1 {
12653
    padding-bottom: 0.25rem !important;
12654
  }
16848 stevensc 12655
 
16825 efrain 12656
  .pb-lg-2 {
12657
    padding-bottom: 0.5rem !important;
12658
  }
16848 stevensc 12659
 
16825 efrain 12660
  .pb-lg-3 {
12661
    padding-bottom: 1rem !important;
12662
  }
16848 stevensc 12663
 
16825 efrain 12664
  .pb-lg-4 {
12665
    padding-bottom: 1.5rem !important;
12666
  }
16848 stevensc 12667
 
16825 efrain 12668
  .pb-lg-5 {
12669
    padding-bottom: 3rem !important;
12670
  }
16848 stevensc 12671
 
16825 efrain 12672
  .pb-lg-6 {
12673
    padding-bottom: 4.5rem !important;
12674
  }
16848 stevensc 12675
 
16825 efrain 12676
  .pb-lg-7 {
12677
    padding-bottom: 6rem !important;
12678
  }
16848 stevensc 12679
 
16825 efrain 12680
  .ps-lg-0 {
12681
    padding-left: 0 !important;
12682
  }
16848 stevensc 12683
 
16825 efrain 12684
  .ps-lg-1 {
12685
    padding-left: 0.25rem !important;
12686
  }
16848 stevensc 12687
 
16825 efrain 12688
  .ps-lg-2 {
12689
    padding-left: 0.5rem !important;
12690
  }
16848 stevensc 12691
 
16825 efrain 12692
  .ps-lg-3 {
12693
    padding-left: 1rem !important;
12694
  }
16848 stevensc 12695
 
16825 efrain 12696
  .ps-lg-4 {
12697
    padding-left: 1.5rem !important;
12698
  }
16848 stevensc 12699
 
16825 efrain 12700
  .ps-lg-5 {
12701
    padding-left: 3rem !important;
12702
  }
16848 stevensc 12703
 
16825 efrain 12704
  .ps-lg-6 {
12705
    padding-left: 4.5rem !important;
12706
  }
16848 stevensc 12707
 
16825 efrain 12708
  .ps-lg-7 {
12709
    padding-left: 6rem !important;
12710
  }
16848 stevensc 12711
 
16825 efrain 12712
  .gap-lg-0 {
12713
    gap: 0 !important;
12714
  }
16848 stevensc 12715
 
16825 efrain 12716
  .gap-lg-1 {
12717
    gap: 0.25rem !important;
12718
  }
16848 stevensc 12719
 
16825 efrain 12720
  .gap-lg-2 {
12721
    gap: 0.5rem !important;
12722
  }
16848 stevensc 12723
 
16825 efrain 12724
  .gap-lg-3 {
12725
    gap: 1rem !important;
12726
  }
16848 stevensc 12727
 
16825 efrain 12728
  .gap-lg-4 {
12729
    gap: 1.5rem !important;
12730
  }
16848 stevensc 12731
 
16825 efrain 12732
  .gap-lg-5 {
12733
    gap: 3rem !important;
12734
  }
16848 stevensc 12735
 
16825 efrain 12736
  .gap-lg-6 {
12737
    gap: 4.5rem !important;
12738
  }
16848 stevensc 12739
 
16825 efrain 12740
  .gap-lg-7 {
12741
    gap: 6rem !important;
12742
  }
16848 stevensc 12743
 
16825 efrain 12744
  .text-lg-start {
12745
    text-align: left !important;
12746
  }
16848 stevensc 12747
 
16825 efrain 12748
  .text-lg-end {
12749
    text-align: right !important;
12750
  }
16848 stevensc 12751
 
16825 efrain 12752
  .text-lg-center {
12753
    text-align: center !important;
12754
  }
12755
}
16848 stevensc 12756
 
16825 efrain 12757
@media (min-width: 1200px) {
12758
  .float-xl-start {
12759
    float: left !important;
12760
  }
16848 stevensc 12761
 
16825 efrain 12762
  .float-xl-end {
12763
    float: right !important;
12764
  }
16848 stevensc 12765
 
16825 efrain 12766
  .float-xl-none {
12767
    float: none !important;
12768
  }
16848 stevensc 12769
 
16825 efrain 12770
  .d-xl-inline {
12771
    display: inline !important;
12772
  }
16848 stevensc 12773
 
16825 efrain 12774
  .d-xl-inline-block {
12775
    display: inline-block !important;
12776
  }
16848 stevensc 12777
 
16825 efrain 12778
  .d-xl-block {
12779
    display: block !important;
12780
  }
16848 stevensc 12781
 
16825 efrain 12782
  .d-xl-grid {
12783
    display: grid !important;
12784
  }
16848 stevensc 12785
 
16825 efrain 12786
  .d-xl-table {
12787
    display: table !important;
12788
  }
16848 stevensc 12789
 
16825 efrain 12790
  .d-xl-table-row {
12791
    display: table-row !important;
12792
  }
16848 stevensc 12793
 
16825 efrain 12794
  .d-xl-table-cell {
12795
    display: table-cell !important;
12796
  }
16848 stevensc 12797
 
16825 efrain 12798
  .d-xl-flex {
12799
    display: flex !important;
12800
  }
16848 stevensc 12801
 
16825 efrain 12802
  .d-xl-inline-flex {
12803
    display: inline-flex !important;
12804
  }
16848 stevensc 12805
 
16825 efrain 12806
  .d-xl-none {
12807
    display: none !important;
12808
  }
16848 stevensc 12809
 
16825 efrain 12810
  .border-xl {
12811
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12812
  }
16848 stevensc 12813
 
16825 efrain 12814
  .border-xl-0 {
12815
    border: 0 !important;
12816
  }
16848 stevensc 12817
 
16825 efrain 12818
  .border-top-xl {
12819
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12820
  }
16848 stevensc 12821
 
16825 efrain 12822
  .border-top-xl-0 {
12823
    border-top: 0 !important;
12824
  }
16848 stevensc 12825
 
16825 efrain 12826
  .border-end-xl {
12827
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12828
  }
16848 stevensc 12829
 
16825 efrain 12830
  .border-end-xl-0 {
12831
    border-right: 0 !important;
12832
  }
16848 stevensc 12833
 
16825 efrain 12834
  .border-bottom-xl {
12835
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12836
  }
16848 stevensc 12837
 
16825 efrain 12838
  .border-bottom-xl-0 {
12839
    border-bottom: 0 !important;
12840
  }
16848 stevensc 12841
 
16825 efrain 12842
  .border-start-xl {
12843
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12844
  }
16848 stevensc 12845
 
16825 efrain 12846
  .border-start-xl-0 {
12847
    border-left: 0 !important;
12848
  }
16848 stevensc 12849
 
16825 efrain 12850
  .flex-xl-fill {
12851
    flex: 1 1 auto !important;
12852
  }
16848 stevensc 12853
 
16825 efrain 12854
  .flex-xl-row {
12855
    flex-direction: row !important;
12856
  }
16848 stevensc 12857
 
16825 efrain 12858
  .flex-xl-column {
12859
    flex-direction: column !important;
12860
  }
16848 stevensc 12861
 
16825 efrain 12862
  .flex-xl-row-reverse {
12863
    flex-direction: row-reverse !important;
12864
  }
16848 stevensc 12865
 
16825 efrain 12866
  .flex-xl-column-reverse {
12867
    flex-direction: column-reverse !important;
12868
  }
16848 stevensc 12869
 
16825 efrain 12870
  .flex-xl-grow-0 {
12871
    flex-grow: 0 !important;
12872
  }
16848 stevensc 12873
 
16825 efrain 12874
  .flex-xl-grow-1 {
12875
    flex-grow: 1 !important;
12876
  }
16848 stevensc 12877
 
16825 efrain 12878
  .flex-xl-shrink-0 {
12879
    flex-shrink: 0 !important;
12880
  }
16848 stevensc 12881
 
16825 efrain 12882
  .flex-xl-shrink-1 {
12883
    flex-shrink: 1 !important;
12884
  }
16848 stevensc 12885
 
16825 efrain 12886
  .flex-xl-wrap {
12887
    flex-wrap: wrap !important;
12888
  }
16848 stevensc 12889
 
16825 efrain 12890
  .flex-xl-nowrap {
12891
    flex-wrap: nowrap !important;
12892
  }
16848 stevensc 12893
 
16825 efrain 12894
  .flex-xl-wrap-reverse {
12895
    flex-wrap: wrap-reverse !important;
12896
  }
16848 stevensc 12897
 
16825 efrain 12898
  .justify-content-xl-start {
12899
    justify-content: flex-start !important;
12900
  }
16848 stevensc 12901
 
16825 efrain 12902
  .justify-content-xl-end {
12903
    justify-content: flex-end !important;
12904
  }
16848 stevensc 12905
 
16825 efrain 12906
  .justify-content-xl-center {
12907
    justify-content: center !important;
12908
  }
16848 stevensc 12909
 
16825 efrain 12910
  .justify-content-xl-between {
12911
    justify-content: space-between !important;
12912
  }
16848 stevensc 12913
 
16825 efrain 12914
  .justify-content-xl-around {
12915
    justify-content: space-around !important;
12916
  }
16848 stevensc 12917
 
16825 efrain 12918
  .justify-content-xl-evenly {
12919
    justify-content: space-evenly !important;
12920
  }
16848 stevensc 12921
 
16825 efrain 12922
  .align-items-xl-start {
12923
    align-items: flex-start !important;
12924
  }
16848 stevensc 12925
 
16825 efrain 12926
  .align-items-xl-end {
12927
    align-items: flex-end !important;
12928
  }
16848 stevensc 12929
 
16825 efrain 12930
  .align-items-xl-center {
12931
    align-items: center !important;
12932
  }
16848 stevensc 12933
 
16825 efrain 12934
  .align-items-xl-baseline {
12935
    align-items: baseline !important;
12936
  }
16848 stevensc 12937
 
16825 efrain 12938
  .align-items-xl-stretch {
12939
    align-items: stretch !important;
12940
  }
16848 stevensc 12941
 
16825 efrain 12942
  .align-content-xl-start {
12943
    align-content: flex-start !important;
12944
  }
16848 stevensc 12945
 
16825 efrain 12946
  .align-content-xl-end {
12947
    align-content: flex-end !important;
12948
  }
16848 stevensc 12949
 
16825 efrain 12950
  .align-content-xl-center {
12951
    align-content: center !important;
12952
  }
16848 stevensc 12953
 
16825 efrain 12954
  .align-content-xl-between {
12955
    align-content: space-between !important;
12956
  }
16848 stevensc 12957
 
16825 efrain 12958
  .align-content-xl-around {
12959
    align-content: space-around !important;
12960
  }
16848 stevensc 12961
 
16825 efrain 12962
  .align-content-xl-stretch {
12963
    align-content: stretch !important;
12964
  }
16848 stevensc 12965
 
16825 efrain 12966
  .align-self-xl-auto {
12967
    align-self: auto !important;
12968
  }
16848 stevensc 12969
 
16825 efrain 12970
  .align-self-xl-start {
12971
    align-self: flex-start !important;
12972
  }
16848 stevensc 12973
 
16825 efrain 12974
  .align-self-xl-end {
12975
    align-self: flex-end !important;
12976
  }
16848 stevensc 12977
 
16825 efrain 12978
  .align-self-xl-center {
12979
    align-self: center !important;
12980
  }
16848 stevensc 12981
 
16825 efrain 12982
  .align-self-xl-baseline {
12983
    align-self: baseline !important;
12984
  }
16848 stevensc 12985
 
16825 efrain 12986
  .align-self-xl-stretch {
12987
    align-self: stretch !important;
12988
  }
16848 stevensc 12989
 
16825 efrain 12990
  .order-xl-first {
12991
    order: -1 !important;
12992
  }
16848 stevensc 12993
 
16825 efrain 12994
  .order-xl-0 {
12995
    order: 0 !important;
12996
  }
16848 stevensc 12997
 
16825 efrain 12998
  .order-xl-1 {
12999
    order: 1 !important;
13000
  }
16848 stevensc 13001
 
16825 efrain 13002
  .order-xl-2 {
13003
    order: 2 !important;
13004
  }
16848 stevensc 13005
 
16825 efrain 13006
  .order-xl-3 {
13007
    order: 3 !important;
13008
  }
16848 stevensc 13009
 
16825 efrain 13010
  .order-xl-4 {
13011
    order: 4 !important;
13012
  }
16848 stevensc 13013
 
16825 efrain 13014
  .order-xl-5 {
13015
    order: 5 !important;
13016
  }
16848 stevensc 13017
 
16825 efrain 13018
  .order-xl-last {
13019
    order: 6 !important;
13020
  }
16848 stevensc 13021
 
16825 efrain 13022
  .m-xl-0 {
13023
    margin: 0 !important;
13024
  }
16848 stevensc 13025
 
16825 efrain 13026
  .m-xl-1 {
13027
    margin: 0.25rem !important;
13028
  }
16848 stevensc 13029
 
16825 efrain 13030
  .m-xl-2 {
13031
    margin: 0.5rem !important;
13032
  }
16848 stevensc 13033
 
16825 efrain 13034
  .m-xl-3 {
13035
    margin: 1rem !important;
13036
  }
16848 stevensc 13037
 
16825 efrain 13038
  .m-xl-4 {
13039
    margin: 1.5rem !important;
13040
  }
16848 stevensc 13041
 
16825 efrain 13042
  .m-xl-5 {
13043
    margin: 3rem !important;
13044
  }
16848 stevensc 13045
 
16825 efrain 13046
  .m-xl-6 {
13047
    margin: 4.5rem !important;
13048
  }
16848 stevensc 13049
 
16825 efrain 13050
  .m-xl-7 {
13051
    margin: 6rem !important;
13052
  }
16848 stevensc 13053
 
16825 efrain 13054
  .m-xl-auto {
13055
    margin: auto !important;
13056
  }
16848 stevensc 13057
 
16825 efrain 13058
  .mx-xl-0 {
13059
    margin-right: 0 !important;
13060
    margin-left: 0 !important;
13061
  }
16848 stevensc 13062
 
16825 efrain 13063
  .mx-xl-1 {
13064
    margin-right: 0.25rem !important;
13065
    margin-left: 0.25rem !important;
13066
  }
16848 stevensc 13067
 
16825 efrain 13068
  .mx-xl-2 {
13069
    margin-right: 0.5rem !important;
13070
    margin-left: 0.5rem !important;
13071
  }
16848 stevensc 13072
 
16825 efrain 13073
  .mx-xl-3 {
13074
    margin-right: 1rem !important;
13075
    margin-left: 1rem !important;
13076
  }
16848 stevensc 13077
 
16825 efrain 13078
  .mx-xl-4 {
13079
    margin-right: 1.5rem !important;
13080
    margin-left: 1.5rem !important;
13081
  }
16848 stevensc 13082
 
16825 efrain 13083
  .mx-xl-5 {
13084
    margin-right: 3rem !important;
13085
    margin-left: 3rem !important;
13086
  }
16848 stevensc 13087
 
16825 efrain 13088
  .mx-xl-6 {
13089
    margin-right: 4.5rem !important;
13090
    margin-left: 4.5rem !important;
13091
  }
16848 stevensc 13092
 
16825 efrain 13093
  .mx-xl-7 {
13094
    margin-right: 6rem !important;
13095
    margin-left: 6rem !important;
13096
  }
16848 stevensc 13097
 
16825 efrain 13098
  .mx-xl-auto {
13099
    margin-right: auto !important;
13100
    margin-left: auto !important;
13101
  }
16848 stevensc 13102
 
16825 efrain 13103
  .my-xl-0 {
13104
    margin-top: 0 !important;
13105
    margin-bottom: 0 !important;
13106
  }
16848 stevensc 13107
 
16825 efrain 13108
  .my-xl-1 {
13109
    margin-top: 0.25rem !important;
13110
    margin-bottom: 0.25rem !important;
13111
  }
16848 stevensc 13112
 
16825 efrain 13113
  .my-xl-2 {
13114
    margin-top: 0.5rem !important;
13115
    margin-bottom: 0.5rem !important;
13116
  }
16848 stevensc 13117
 
16825 efrain 13118
  .my-xl-3 {
13119
    margin-top: 1rem !important;
13120
    margin-bottom: 1rem !important;
13121
  }
16848 stevensc 13122
 
16825 efrain 13123
  .my-xl-4 {
13124
    margin-top: 1.5rem !important;
13125
    margin-bottom: 1.5rem !important;
13126
  }
16848 stevensc 13127
 
16825 efrain 13128
  .my-xl-5 {
13129
    margin-top: 3rem !important;
13130
    margin-bottom: 3rem !important;
13131
  }
16848 stevensc 13132
 
16825 efrain 13133
  .my-xl-6 {
13134
    margin-top: 4.5rem !important;
13135
    margin-bottom: 4.5rem !important;
13136
  }
16848 stevensc 13137
 
16825 efrain 13138
  .my-xl-7 {
13139
    margin-top: 6rem !important;
13140
    margin-bottom: 6rem !important;
13141
  }
16848 stevensc 13142
 
16825 efrain 13143
  .my-xl-auto {
13144
    margin-top: auto !important;
13145
    margin-bottom: auto !important;
13146
  }
16848 stevensc 13147
 
16825 efrain 13148
  .mt-xl-0 {
13149
    margin-top: 0 !important;
13150
  }
16848 stevensc 13151
 
16825 efrain 13152
  .mt-xl-1 {
13153
    margin-top: 0.25rem !important;
13154
  }
16848 stevensc 13155
 
16825 efrain 13156
  .mt-xl-2 {
13157
    margin-top: 0.5rem !important;
13158
  }
16848 stevensc 13159
 
16825 efrain 13160
  .mt-xl-3 {
13161
    margin-top: 1rem !important;
13162
  }
16848 stevensc 13163
 
16825 efrain 13164
  .mt-xl-4 {
13165
    margin-top: 1.5rem !important;
13166
  }
16848 stevensc 13167
 
16825 efrain 13168
  .mt-xl-5 {
13169
    margin-top: 3rem !important;
13170
  }
16848 stevensc 13171
 
16825 efrain 13172
  .mt-xl-6 {
13173
    margin-top: 4.5rem !important;
13174
  }
16848 stevensc 13175
 
16825 efrain 13176
  .mt-xl-7 {
13177
    margin-top: 6rem !important;
13178
  }
16848 stevensc 13179
 
16825 efrain 13180
  .mt-xl-auto {
13181
    margin-top: auto !important;
13182
  }
16848 stevensc 13183
 
16825 efrain 13184
  .me-xl-0 {
13185
    margin-right: 0 !important;
13186
  }
16848 stevensc 13187
 
16825 efrain 13188
  .me-xl-1 {
13189
    margin-right: 0.25rem !important;
13190
  }
16848 stevensc 13191
 
16825 efrain 13192
  .me-xl-2 {
13193
    margin-right: 0.5rem !important;
13194
  }
16848 stevensc 13195
 
16825 efrain 13196
  .me-xl-3 {
13197
    margin-right: 1rem !important;
13198
  }
16848 stevensc 13199
 
16825 efrain 13200
  .me-xl-4 {
13201
    margin-right: 1.5rem !important;
13202
  }
16848 stevensc 13203
 
16825 efrain 13204
  .me-xl-5 {
13205
    margin-right: 3rem !important;
13206
  }
16848 stevensc 13207
 
16825 efrain 13208
  .me-xl-6 {
13209
    margin-right: 4.5rem !important;
13210
  }
16848 stevensc 13211
 
16825 efrain 13212
  .me-xl-7 {
13213
    margin-right: 6rem !important;
13214
  }
16848 stevensc 13215
 
16825 efrain 13216
  .me-xl-auto {
13217
    margin-right: auto !important;
13218
  }
16848 stevensc 13219
 
16825 efrain 13220
  .mb-xl-0 {
13221
    margin-bottom: 0 !important;
13222
  }
16848 stevensc 13223
 
16825 efrain 13224
  .mb-xl-1 {
13225
    margin-bottom: 0.25rem !important;
13226
  }
16848 stevensc 13227
 
16825 efrain 13228
  .mb-xl-2 {
13229
    margin-bottom: 0.5rem !important;
13230
  }
16848 stevensc 13231
 
16825 efrain 13232
  .mb-xl-3 {
13233
    margin-bottom: 1rem !important;
13234
  }
16848 stevensc 13235
 
16825 efrain 13236
  .mb-xl-4 {
13237
    margin-bottom: 1.5rem !important;
13238
  }
16848 stevensc 13239
 
16825 efrain 13240
  .mb-xl-5 {
13241
    margin-bottom: 3rem !important;
13242
  }
16848 stevensc 13243
 
16825 efrain 13244
  .mb-xl-6 {
13245
    margin-bottom: 4.5rem !important;
13246
  }
16848 stevensc 13247
 
16825 efrain 13248
  .mb-xl-7 {
13249
    margin-bottom: 6rem !important;
13250
  }
16848 stevensc 13251
 
16825 efrain 13252
  .mb-xl-auto {
13253
    margin-bottom: auto !important;
13254
  }
16848 stevensc 13255
 
16825 efrain 13256
  .ms-xl-0 {
13257
    margin-left: 0 !important;
13258
  }
16848 stevensc 13259
 
16825 efrain 13260
  .ms-xl-1 {
13261
    margin-left: 0.25rem !important;
13262
  }
16848 stevensc 13263
 
16825 efrain 13264
  .ms-xl-2 {
13265
    margin-left: 0.5rem !important;
13266
  }
16848 stevensc 13267
 
16825 efrain 13268
  .ms-xl-3 {
13269
    margin-left: 1rem !important;
13270
  }
16848 stevensc 13271
 
16825 efrain 13272
  .ms-xl-4 {
13273
    margin-left: 1.5rem !important;
13274
  }
16848 stevensc 13275
 
16825 efrain 13276
  .ms-xl-5 {
13277
    margin-left: 3rem !important;
13278
  }
16848 stevensc 13279
 
16825 efrain 13280
  .ms-xl-6 {
13281
    margin-left: 4.5rem !important;
13282
  }
16848 stevensc 13283
 
16825 efrain 13284
  .ms-xl-7 {
13285
    margin-left: 6rem !important;
13286
  }
16848 stevensc 13287
 
16825 efrain 13288
  .ms-xl-auto {
13289
    margin-left: auto !important;
13290
  }
16848 stevensc 13291
 
16825 efrain 13292
  .m-xl-n1 {
13293
    margin: -0.25rem !important;
13294
  }
16848 stevensc 13295
 
16825 efrain 13296
  .m-xl-n2 {
13297
    margin: -0.5rem !important;
13298
  }
16848 stevensc 13299
 
16825 efrain 13300
  .m-xl-n3 {
13301
    margin: -1rem !important;
13302
  }
16848 stevensc 13303
 
16825 efrain 13304
  .m-xl-n4 {
13305
    margin: -1.5rem !important;
13306
  }
16848 stevensc 13307
 
16825 efrain 13308
  .m-xl-n5 {
13309
    margin: -3rem !important;
13310
  }
16848 stevensc 13311
 
16825 efrain 13312
  .m-xl-n6 {
13313
    margin: -4.5rem !important;
13314
  }
16848 stevensc 13315
 
16825 efrain 13316
  .m-xl-n7 {
13317
    margin: -6rem !important;
13318
  }
16848 stevensc 13319
 
16825 efrain 13320
  .mx-xl-n1 {
13321
    margin-right: -0.25rem !important;
13322
    margin-left: -0.25rem !important;
13323
  }
16848 stevensc 13324
 
16825 efrain 13325
  .mx-xl-n2 {
13326
    margin-right: -0.5rem !important;
13327
    margin-left: -0.5rem !important;
13328
  }
16848 stevensc 13329
 
16825 efrain 13330
  .mx-xl-n3 {
13331
    margin-right: -1rem !important;
13332
    margin-left: -1rem !important;
13333
  }
16848 stevensc 13334
 
16825 efrain 13335
  .mx-xl-n4 {
13336
    margin-right: -1.5rem !important;
13337
    margin-left: -1.5rem !important;
13338
  }
16848 stevensc 13339
 
16825 efrain 13340
  .mx-xl-n5 {
13341
    margin-right: -3rem !important;
13342
    margin-left: -3rem !important;
13343
  }
16848 stevensc 13344
 
16825 efrain 13345
  .mx-xl-n6 {
13346
    margin-right: -4.5rem !important;
13347
    margin-left: -4.5rem !important;
13348
  }
16848 stevensc 13349
 
16825 efrain 13350
  .mx-xl-n7 {
13351
    margin-right: -6rem !important;
13352
    margin-left: -6rem !important;
13353
  }
16848 stevensc 13354
 
16825 efrain 13355
  .my-xl-n1 {
13356
    margin-top: -0.25rem !important;
13357
    margin-bottom: -0.25rem !important;
13358
  }
16848 stevensc 13359
 
16825 efrain 13360
  .my-xl-n2 {
13361
    margin-top: -0.5rem !important;
13362
    margin-bottom: -0.5rem !important;
13363
  }
16848 stevensc 13364
 
16825 efrain 13365
  .my-xl-n3 {
13366
    margin-top: -1rem !important;
13367
    margin-bottom: -1rem !important;
13368
  }
16848 stevensc 13369
 
16825 efrain 13370
  .my-xl-n4 {
13371
    margin-top: -1.5rem !important;
13372
    margin-bottom: -1.5rem !important;
13373
  }
16848 stevensc 13374
 
16825 efrain 13375
  .my-xl-n5 {
13376
    margin-top: -3rem !important;
13377
    margin-bottom: -3rem !important;
13378
  }
16848 stevensc 13379
 
16825 efrain 13380
  .my-xl-n6 {
13381
    margin-top: -4.5rem !important;
13382
    margin-bottom: -4.5rem !important;
13383
  }
16848 stevensc 13384
 
16825 efrain 13385
  .my-xl-n7 {
13386
    margin-top: -6rem !important;
13387
    margin-bottom: -6rem !important;
13388
  }
16848 stevensc 13389
 
16825 efrain 13390
  .mt-xl-n1 {
13391
    margin-top: -0.25rem !important;
13392
  }
16848 stevensc 13393
 
16825 efrain 13394
  .mt-xl-n2 {
13395
    margin-top: -0.5rem !important;
13396
  }
16848 stevensc 13397
 
16825 efrain 13398
  .mt-xl-n3 {
13399
    margin-top: -1rem !important;
13400
  }
16848 stevensc 13401
 
16825 efrain 13402
  .mt-xl-n4 {
13403
    margin-top: -1.5rem !important;
13404
  }
16848 stevensc 13405
 
16825 efrain 13406
  .mt-xl-n5 {
13407
    margin-top: -3rem !important;
13408
  }
16848 stevensc 13409
 
16825 efrain 13410
  .mt-xl-n6 {
13411
    margin-top: -4.5rem !important;
13412
  }
16848 stevensc 13413
 
16825 efrain 13414
  .mt-xl-n7 {
13415
    margin-top: -6rem !important;
13416
  }
16848 stevensc 13417
 
16825 efrain 13418
  .me-xl-n1 {
13419
    margin-right: -0.25rem !important;
13420
  }
16848 stevensc 13421
 
16825 efrain 13422
  .me-xl-n2 {
13423
    margin-right: -0.5rem !important;
13424
  }
16848 stevensc 13425
 
16825 efrain 13426
  .me-xl-n3 {
13427
    margin-right: -1rem !important;
13428
  }
16848 stevensc 13429
 
16825 efrain 13430
  .me-xl-n4 {
13431
    margin-right: -1.5rem !important;
13432
  }
16848 stevensc 13433
 
16825 efrain 13434
  .me-xl-n5 {
13435
    margin-right: -3rem !important;
13436
  }
16848 stevensc 13437
 
16825 efrain 13438
  .me-xl-n6 {
13439
    margin-right: -4.5rem !important;
13440
  }
16848 stevensc 13441
 
16825 efrain 13442
  .me-xl-n7 {
13443
    margin-right: -6rem !important;
13444
  }
16848 stevensc 13445
 
16825 efrain 13446
  .mb-xl-n1 {
13447
    margin-bottom: -0.25rem !important;
13448
  }
16848 stevensc 13449
 
16825 efrain 13450
  .mb-xl-n2 {
13451
    margin-bottom: -0.5rem !important;
13452
  }
16848 stevensc 13453
 
16825 efrain 13454
  .mb-xl-n3 {
13455
    margin-bottom: -1rem !important;
13456
  }
16848 stevensc 13457
 
16825 efrain 13458
  .mb-xl-n4 {
13459
    margin-bottom: -1.5rem !important;
13460
  }
16848 stevensc 13461
 
16825 efrain 13462
  .mb-xl-n5 {
13463
    margin-bottom: -3rem !important;
13464
  }
16848 stevensc 13465
 
16825 efrain 13466
  .mb-xl-n6 {
13467
    margin-bottom: -4.5rem !important;
13468
  }
16848 stevensc 13469
 
16825 efrain 13470
  .mb-xl-n7 {
13471
    margin-bottom: -6rem !important;
13472
  }
16848 stevensc 13473
 
16825 efrain 13474
  .ms-xl-n1 {
13475
    margin-left: -0.25rem !important;
13476
  }
16848 stevensc 13477
 
16825 efrain 13478
  .ms-xl-n2 {
13479
    margin-left: -0.5rem !important;
13480
  }
16848 stevensc 13481
 
16825 efrain 13482
  .ms-xl-n3 {
13483
    margin-left: -1rem !important;
13484
  }
16848 stevensc 13485
 
16825 efrain 13486
  .ms-xl-n4 {
13487
    margin-left: -1.5rem !important;
13488
  }
16848 stevensc 13489
 
16825 efrain 13490
  .ms-xl-n5 {
13491
    margin-left: -3rem !important;
13492
  }
16848 stevensc 13493
 
16825 efrain 13494
  .ms-xl-n6 {
13495
    margin-left: -4.5rem !important;
13496
  }
16848 stevensc 13497
 
16825 efrain 13498
  .ms-xl-n7 {
13499
    margin-left: -6rem !important;
13500
  }
16848 stevensc 13501
 
16825 efrain 13502
  .p-xl-0 {
13503
    padding: 0 !important;
13504
  }
16848 stevensc 13505
 
16825 efrain 13506
  .p-xl-1 {
13507
    padding: 0.25rem !important;
13508
  }
16848 stevensc 13509
 
16825 efrain 13510
  .p-xl-2 {
13511
    padding: 0.5rem !important;
13512
  }
16848 stevensc 13513
 
16825 efrain 13514
  .p-xl-3 {
13515
    padding: 1rem !important;
13516
  }
16848 stevensc 13517
 
16825 efrain 13518
  .p-xl-4 {
13519
    padding: 1.5rem !important;
13520
  }
16848 stevensc 13521
 
16825 efrain 13522
  .p-xl-5 {
13523
    padding: 3rem !important;
13524
  }
16848 stevensc 13525
 
16825 efrain 13526
  .p-xl-6 {
13527
    padding: 4.5rem !important;
13528
  }
16848 stevensc 13529
 
16825 efrain 13530
  .p-xl-7 {
13531
    padding: 6rem !important;
13532
  }
16848 stevensc 13533
 
16825 efrain 13534
  .px-xl-0 {
13535
    padding-right: 0 !important;
13536
    padding-left: 0 !important;
13537
  }
16848 stevensc 13538
 
16825 efrain 13539
  .px-xl-1 {
13540
    padding-right: 0.25rem !important;
13541
    padding-left: 0.25rem !important;
13542
  }
16848 stevensc 13543
 
16825 efrain 13544
  .px-xl-2 {
13545
    padding-right: 0.5rem !important;
13546
    padding-left: 0.5rem !important;
13547
  }
16848 stevensc 13548
 
16825 efrain 13549
  .px-xl-3 {
13550
    padding-right: 1rem !important;
13551
    padding-left: 1rem !important;
13552
  }
16848 stevensc 13553
 
16825 efrain 13554
  .px-xl-4 {
13555
    padding-right: 1.5rem !important;
13556
    padding-left: 1.5rem !important;
13557
  }
16848 stevensc 13558
 
16825 efrain 13559
  .px-xl-5 {
13560
    padding-right: 3rem !important;
13561
    padding-left: 3rem !important;
13562
  }
16848 stevensc 13563
 
16825 efrain 13564
  .px-xl-6 {
13565
    padding-right: 4.5rem !important;
13566
    padding-left: 4.5rem !important;
13567
  }
16848 stevensc 13568
 
16825 efrain 13569
  .px-xl-7 {
13570
    padding-right: 6rem !important;
13571
    padding-left: 6rem !important;
13572
  }
16848 stevensc 13573
 
16825 efrain 13574
  .py-xl-0 {
13575
    padding-top: 0 !important;
13576
    padding-bottom: 0 !important;
13577
  }
16848 stevensc 13578
 
16825 efrain 13579
  .py-xl-1 {
13580
    padding-top: 0.25rem !important;
13581
    padding-bottom: 0.25rem !important;
13582
  }
16848 stevensc 13583
 
16825 efrain 13584
  .py-xl-2 {
13585
    padding-top: 0.5rem !important;
13586
    padding-bottom: 0.5rem !important;
13587
  }
16848 stevensc 13588
 
16825 efrain 13589
  .py-xl-3 {
13590
    padding-top: 1rem !important;
13591
    padding-bottom: 1rem !important;
13592
  }
16848 stevensc 13593
 
16825 efrain 13594
  .py-xl-4 {
13595
    padding-top: 1.5rem !important;
13596
    padding-bottom: 1.5rem !important;
13597
  }
16848 stevensc 13598
 
16825 efrain 13599
  .py-xl-5 {
13600
    padding-top: 3rem !important;
13601
    padding-bottom: 3rem !important;
13602
  }
16848 stevensc 13603
 
16825 efrain 13604
  .py-xl-6 {
13605
    padding-top: 4.5rem !important;
13606
    padding-bottom: 4.5rem !important;
13607
  }
16848 stevensc 13608
 
16825 efrain 13609
  .py-xl-7 {
13610
    padding-top: 6rem !important;
13611
    padding-bottom: 6rem !important;
13612
  }
16848 stevensc 13613
 
16825 efrain 13614
  .pt-xl-0 {
13615
    padding-top: 0 !important;
13616
  }
16848 stevensc 13617
 
16825 efrain 13618
  .pt-xl-1 {
13619
    padding-top: 0.25rem !important;
13620
  }
16848 stevensc 13621
 
16825 efrain 13622
  .pt-xl-2 {
13623
    padding-top: 0.5rem !important;
13624
  }
16848 stevensc 13625
 
16825 efrain 13626
  .pt-xl-3 {
13627
    padding-top: 1rem !important;
13628
  }
16848 stevensc 13629
 
16825 efrain 13630
  .pt-xl-4 {
13631
    padding-top: 1.5rem !important;
13632
  }
16848 stevensc 13633
 
16825 efrain 13634
  .pt-xl-5 {
13635
    padding-top: 3rem !important;
13636
  }
16848 stevensc 13637
 
16825 efrain 13638
  .pt-xl-6 {
13639
    padding-top: 4.5rem !important;
13640
  }
16848 stevensc 13641
 
16825 efrain 13642
  .pt-xl-7 {
13643
    padding-top: 6rem !important;
13644
  }
16848 stevensc 13645
 
16825 efrain 13646
  .pe-xl-0 {
13647
    padding-right: 0 !important;
13648
  }
16848 stevensc 13649
 
16825 efrain 13650
  .pe-xl-1 {
13651
    padding-right: 0.25rem !important;
13652
  }
16848 stevensc 13653
 
16825 efrain 13654
  .pe-xl-2 {
13655
    padding-right: 0.5rem !important;
13656
  }
16848 stevensc 13657
 
16825 efrain 13658
  .pe-xl-3 {
13659
    padding-right: 1rem !important;
13660
  }
16848 stevensc 13661
 
16825 efrain 13662
  .pe-xl-4 {
13663
    padding-right: 1.5rem !important;
13664
  }
16848 stevensc 13665
 
16825 efrain 13666
  .pe-xl-5 {
13667
    padding-right: 3rem !important;
13668
  }
16848 stevensc 13669
 
16825 efrain 13670
  .pe-xl-6 {
13671
    padding-right: 4.5rem !important;
13672
  }
16848 stevensc 13673
 
16825 efrain 13674
  .pe-xl-7 {
13675
    padding-right: 6rem !important;
13676
  }
16848 stevensc 13677
 
16825 efrain 13678
  .pb-xl-0 {
13679
    padding-bottom: 0 !important;
13680
  }
16848 stevensc 13681
 
16825 efrain 13682
  .pb-xl-1 {
13683
    padding-bottom: 0.25rem !important;
13684
  }
16848 stevensc 13685
 
16825 efrain 13686
  .pb-xl-2 {
13687
    padding-bottom: 0.5rem !important;
13688
  }
16848 stevensc 13689
 
16825 efrain 13690
  .pb-xl-3 {
13691
    padding-bottom: 1rem !important;
13692
  }
16848 stevensc 13693
 
16825 efrain 13694
  .pb-xl-4 {
13695
    padding-bottom: 1.5rem !important;
13696
  }
16848 stevensc 13697
 
16825 efrain 13698
  .pb-xl-5 {
13699
    padding-bottom: 3rem !important;
13700
  }
16848 stevensc 13701
 
16825 efrain 13702
  .pb-xl-6 {
13703
    padding-bottom: 4.5rem !important;
13704
  }
16848 stevensc 13705
 
16825 efrain 13706
  .pb-xl-7 {
13707
    padding-bottom: 6rem !important;
13708
  }
16848 stevensc 13709
 
16825 efrain 13710
  .ps-xl-0 {
13711
    padding-left: 0 !important;
13712
  }
16848 stevensc 13713
 
16825 efrain 13714
  .ps-xl-1 {
13715
    padding-left: 0.25rem !important;
13716
  }
16848 stevensc 13717
 
16825 efrain 13718
  .ps-xl-2 {
13719
    padding-left: 0.5rem !important;
13720
  }
16848 stevensc 13721
 
16825 efrain 13722
  .ps-xl-3 {
13723
    padding-left: 1rem !important;
13724
  }
16848 stevensc 13725
 
16825 efrain 13726
  .ps-xl-4 {
13727
    padding-left: 1.5rem !important;
13728
  }
16848 stevensc 13729
 
16825 efrain 13730
  .ps-xl-5 {
13731
    padding-left: 3rem !important;
13732
  }
16848 stevensc 13733
 
16825 efrain 13734
  .ps-xl-6 {
13735
    padding-left: 4.5rem !important;
13736
  }
16848 stevensc 13737
 
16825 efrain 13738
  .ps-xl-7 {
13739
    padding-left: 6rem !important;
13740
  }
16848 stevensc 13741
 
16825 efrain 13742
  .gap-xl-0 {
13743
    gap: 0 !important;
13744
  }
16848 stevensc 13745
 
16825 efrain 13746
  .gap-xl-1 {
13747
    gap: 0.25rem !important;
13748
  }
16848 stevensc 13749
 
16825 efrain 13750
  .gap-xl-2 {
13751
    gap: 0.5rem !important;
13752
  }
16848 stevensc 13753
 
16825 efrain 13754
  .gap-xl-3 {
13755
    gap: 1rem !important;
13756
  }
16848 stevensc 13757
 
16825 efrain 13758
  .gap-xl-4 {
13759
    gap: 1.5rem !important;
13760
  }
16848 stevensc 13761
 
16825 efrain 13762
  .gap-xl-5 {
13763
    gap: 3rem !important;
13764
  }
16848 stevensc 13765
 
16825 efrain 13766
  .gap-xl-6 {
13767
    gap: 4.5rem !important;
13768
  }
16848 stevensc 13769
 
16825 efrain 13770
  .gap-xl-7 {
13771
    gap: 6rem !important;
13772
  }
16848 stevensc 13773
 
16825 efrain 13774
  .text-xl-start {
13775
    text-align: left !important;
13776
  }
16848 stevensc 13777
 
16825 efrain 13778
  .text-xl-end {
13779
    text-align: right !important;
13780
  }
16848 stevensc 13781
 
16825 efrain 13782
  .text-xl-center {
13783
    text-align: center !important;
13784
  }
13785
}
16848 stevensc 13786
 
16825 efrain 13787
@media (min-width: 1400px) {
13788
  .float-xxl-start {
13789
    float: left !important;
13790
  }
16848 stevensc 13791
 
16825 efrain 13792
  .float-xxl-end {
13793
    float: right !important;
13794
  }
16848 stevensc 13795
 
16825 efrain 13796
  .float-xxl-none {
13797
    float: none !important;
13798
  }
16848 stevensc 13799
 
16825 efrain 13800
  .d-xxl-inline {
13801
    display: inline !important;
13802
  }
16848 stevensc 13803
 
16825 efrain 13804
  .d-xxl-inline-block {
13805
    display: inline-block !important;
13806
  }
16848 stevensc 13807
 
16825 efrain 13808
  .d-xxl-block {
13809
    display: block !important;
13810
  }
16848 stevensc 13811
 
16825 efrain 13812
  .d-xxl-grid {
13813
    display: grid !important;
13814
  }
16848 stevensc 13815
 
16825 efrain 13816
  .d-xxl-table {
13817
    display: table !important;
13818
  }
16848 stevensc 13819
 
16825 efrain 13820
  .d-xxl-table-row {
13821
    display: table-row !important;
13822
  }
16848 stevensc 13823
 
16825 efrain 13824
  .d-xxl-table-cell {
13825
    display: table-cell !important;
13826
  }
16848 stevensc 13827
 
16825 efrain 13828
  .d-xxl-flex {
13829
    display: flex !important;
13830
  }
16848 stevensc 13831
 
16825 efrain 13832
  .d-xxl-inline-flex {
13833
    display: inline-flex !important;
13834
  }
16848 stevensc 13835
 
16825 efrain 13836
  .d-xxl-none {
13837
    display: none !important;
13838
  }
16848 stevensc 13839
 
16825 efrain 13840
  .border-xxl {
13841
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13842
  }
16848 stevensc 13843
 
16825 efrain 13844
  .border-xxl-0 {
13845
    border: 0 !important;
13846
  }
16848 stevensc 13847
 
16825 efrain 13848
  .border-top-xxl {
13849
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13850
  }
16848 stevensc 13851
 
16825 efrain 13852
  .border-top-xxl-0 {
13853
    border-top: 0 !important;
13854
  }
16848 stevensc 13855
 
16825 efrain 13856
  .border-end-xxl {
13857
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13858
  }
16848 stevensc 13859
 
16825 efrain 13860
  .border-end-xxl-0 {
13861
    border-right: 0 !important;
13862
  }
16848 stevensc 13863
 
16825 efrain 13864
  .border-bottom-xxl {
13865
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13866
  }
16848 stevensc 13867
 
16825 efrain 13868
  .border-bottom-xxl-0 {
13869
    border-bottom: 0 !important;
13870
  }
16848 stevensc 13871
 
16825 efrain 13872
  .border-start-xxl {
13873
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13874
  }
16848 stevensc 13875
 
16825 efrain 13876
  .border-start-xxl-0 {
13877
    border-left: 0 !important;
13878
  }
16848 stevensc 13879
 
16825 efrain 13880
  .flex-xxl-fill {
13881
    flex: 1 1 auto !important;
13882
  }
16848 stevensc 13883
 
16825 efrain 13884
  .flex-xxl-row {
13885
    flex-direction: row !important;
13886
  }
16848 stevensc 13887
 
16825 efrain 13888
  .flex-xxl-column {
13889
    flex-direction: column !important;
13890
  }
16848 stevensc 13891
 
16825 efrain 13892
  .flex-xxl-row-reverse {
13893
    flex-direction: row-reverse !important;
13894
  }
16848 stevensc 13895
 
16825 efrain 13896
  .flex-xxl-column-reverse {
13897
    flex-direction: column-reverse !important;
13898
  }
16848 stevensc 13899
 
16825 efrain 13900
  .flex-xxl-grow-0 {
13901
    flex-grow: 0 !important;
13902
  }
16848 stevensc 13903
 
16825 efrain 13904
  .flex-xxl-grow-1 {
13905
    flex-grow: 1 !important;
13906
  }
16848 stevensc 13907
 
16825 efrain 13908
  .flex-xxl-shrink-0 {
13909
    flex-shrink: 0 !important;
13910
  }
16848 stevensc 13911
 
16825 efrain 13912
  .flex-xxl-shrink-1 {
13913
    flex-shrink: 1 !important;
13914
  }
16848 stevensc 13915
 
16825 efrain 13916
  .flex-xxl-wrap {
13917
    flex-wrap: wrap !important;
13918
  }
16848 stevensc 13919
 
16825 efrain 13920
  .flex-xxl-nowrap {
13921
    flex-wrap: nowrap !important;
13922
  }
16848 stevensc 13923
 
16825 efrain 13924
  .flex-xxl-wrap-reverse {
13925
    flex-wrap: wrap-reverse !important;
13926
  }
16848 stevensc 13927
 
16825 efrain 13928
  .justify-content-xxl-start {
13929
    justify-content: flex-start !important;
13930
  }
16848 stevensc 13931
 
16825 efrain 13932
  .justify-content-xxl-end {
13933
    justify-content: flex-end !important;
13934
  }
16848 stevensc 13935
 
16825 efrain 13936
  .justify-content-xxl-center {
13937
    justify-content: center !important;
13938
  }
16848 stevensc 13939
 
16825 efrain 13940
  .justify-content-xxl-between {
13941
    justify-content: space-between !important;
13942
  }
16848 stevensc 13943
 
16825 efrain 13944
  .justify-content-xxl-around {
13945
    justify-content: space-around !important;
13946
  }
16848 stevensc 13947
 
16825 efrain 13948
  .justify-content-xxl-evenly {
13949
    justify-content: space-evenly !important;
13950
  }
16848 stevensc 13951
 
16825 efrain 13952
  .align-items-xxl-start {
13953
    align-items: flex-start !important;
13954
  }
16848 stevensc 13955
 
16825 efrain 13956
  .align-items-xxl-end {
13957
    align-items: flex-end !important;
13958
  }
16848 stevensc 13959
 
16825 efrain 13960
  .align-items-xxl-center {
13961
    align-items: center !important;
13962
  }
16848 stevensc 13963
 
16825 efrain 13964
  .align-items-xxl-baseline {
13965
    align-items: baseline !important;
13966
  }
16848 stevensc 13967
 
16825 efrain 13968
  .align-items-xxl-stretch {
13969
    align-items: stretch !important;
13970
  }
16848 stevensc 13971
 
16825 efrain 13972
  .align-content-xxl-start {
13973
    align-content: flex-start !important;
13974
  }
16848 stevensc 13975
 
16825 efrain 13976
  .align-content-xxl-end {
13977
    align-content: flex-end !important;
13978
  }
16848 stevensc 13979
 
16825 efrain 13980
  .align-content-xxl-center {
13981
    align-content: center !important;
13982
  }
16848 stevensc 13983
 
16825 efrain 13984
  .align-content-xxl-between {
13985
    align-content: space-between !important;
13986
  }
16848 stevensc 13987
 
16825 efrain 13988
  .align-content-xxl-around {
13989
    align-content: space-around !important;
13990
  }
16848 stevensc 13991
 
16825 efrain 13992
  .align-content-xxl-stretch {
13993
    align-content: stretch !important;
13994
  }
16848 stevensc 13995
 
16825 efrain 13996
  .align-self-xxl-auto {
13997
    align-self: auto !important;
13998
  }
16848 stevensc 13999
 
16825 efrain 14000
  .align-self-xxl-start {
14001
    align-self: flex-start !important;
14002
  }
16848 stevensc 14003
 
16825 efrain 14004
  .align-self-xxl-end {
14005
    align-self: flex-end !important;
14006
  }
16848 stevensc 14007
 
16825 efrain 14008
  .align-self-xxl-center {
14009
    align-self: center !important;
14010
  }
16848 stevensc 14011
 
16825 efrain 14012
  .align-self-xxl-baseline {
14013
    align-self: baseline !important;
14014
  }
16848 stevensc 14015
 
16825 efrain 14016
  .align-self-xxl-stretch {
14017
    align-self: stretch !important;
14018
  }
16848 stevensc 14019
 
16825 efrain 14020
  .order-xxl-first {
14021
    order: -1 !important;
14022
  }
16848 stevensc 14023
 
16825 efrain 14024
  .order-xxl-0 {
14025
    order: 0 !important;
14026
  }
16848 stevensc 14027
 
16825 efrain 14028
  .order-xxl-1 {
14029
    order: 1 !important;
14030
  }
16848 stevensc 14031
 
16825 efrain 14032
  .order-xxl-2 {
14033
    order: 2 !important;
14034
  }
16848 stevensc 14035
 
16825 efrain 14036
  .order-xxl-3 {
14037
    order: 3 !important;
14038
  }
16848 stevensc 14039
 
16825 efrain 14040
  .order-xxl-4 {
14041
    order: 4 !important;
14042
  }
16848 stevensc 14043
 
16825 efrain 14044
  .order-xxl-5 {
14045
    order: 5 !important;
14046
  }
16848 stevensc 14047
 
16825 efrain 14048
  .order-xxl-last {
14049
    order: 6 !important;
14050
  }
16848 stevensc 14051
 
16825 efrain 14052
  .m-xxl-0 {
14053
    margin: 0 !important;
14054
  }
16848 stevensc 14055
 
16825 efrain 14056
  .m-xxl-1 {
14057
    margin: 0.25rem !important;
14058
  }
16848 stevensc 14059
 
16825 efrain 14060
  .m-xxl-2 {
14061
    margin: 0.5rem !important;
14062
  }
16848 stevensc 14063
 
16825 efrain 14064
  .m-xxl-3 {
14065
    margin: 1rem !important;
14066
  }
16848 stevensc 14067
 
16825 efrain 14068
  .m-xxl-4 {
14069
    margin: 1.5rem !important;
14070
  }
16848 stevensc 14071
 
16825 efrain 14072
  .m-xxl-5 {
14073
    margin: 3rem !important;
14074
  }
16848 stevensc 14075
 
16825 efrain 14076
  .m-xxl-6 {
14077
    margin: 4.5rem !important;
14078
  }
16848 stevensc 14079
 
16825 efrain 14080
  .m-xxl-7 {
14081
    margin: 6rem !important;
14082
  }
16848 stevensc 14083
 
16825 efrain 14084
  .m-xxl-auto {
14085
    margin: auto !important;
14086
  }
16848 stevensc 14087
 
16825 efrain 14088
  .mx-xxl-0 {
14089
    margin-right: 0 !important;
14090
    margin-left: 0 !important;
14091
  }
16848 stevensc 14092
 
16825 efrain 14093
  .mx-xxl-1 {
14094
    margin-right: 0.25rem !important;
14095
    margin-left: 0.25rem !important;
14096
  }
16848 stevensc 14097
 
16825 efrain 14098
  .mx-xxl-2 {
14099
    margin-right: 0.5rem !important;
14100
    margin-left: 0.5rem !important;
14101
  }
16848 stevensc 14102
 
16825 efrain 14103
  .mx-xxl-3 {
14104
    margin-right: 1rem !important;
14105
    margin-left: 1rem !important;
14106
  }
16848 stevensc 14107
 
16825 efrain 14108
  .mx-xxl-4 {
14109
    margin-right: 1.5rem !important;
14110
    margin-left: 1.5rem !important;
14111
  }
16848 stevensc 14112
 
16825 efrain 14113
  .mx-xxl-5 {
14114
    margin-right: 3rem !important;
14115
    margin-left: 3rem !important;
14116
  }
16848 stevensc 14117
 
16825 efrain 14118
  .mx-xxl-6 {
14119
    margin-right: 4.5rem !important;
14120
    margin-left: 4.5rem !important;
14121
  }
16848 stevensc 14122
 
16825 efrain 14123
  .mx-xxl-7 {
14124
    margin-right: 6rem !important;
14125
    margin-left: 6rem !important;
14126
  }
16848 stevensc 14127
 
16825 efrain 14128
  .mx-xxl-auto {
14129
    margin-right: auto !important;
14130
    margin-left: auto !important;
14131
  }
16848 stevensc 14132
 
16825 efrain 14133
  .my-xxl-0 {
14134
    margin-top: 0 !important;
14135
    margin-bottom: 0 !important;
14136
  }
16848 stevensc 14137
 
16825 efrain 14138
  .my-xxl-1 {
14139
    margin-top: 0.25rem !important;
14140
    margin-bottom: 0.25rem !important;
14141
  }
16848 stevensc 14142
 
16825 efrain 14143
  .my-xxl-2 {
14144
    margin-top: 0.5rem !important;
14145
    margin-bottom: 0.5rem !important;
14146
  }
16848 stevensc 14147
 
16825 efrain 14148
  .my-xxl-3 {
14149
    margin-top: 1rem !important;
14150
    margin-bottom: 1rem !important;
14151
  }
16848 stevensc 14152
 
16825 efrain 14153
  .my-xxl-4 {
14154
    margin-top: 1.5rem !important;
14155
    margin-bottom: 1.5rem !important;
14156
  }
16848 stevensc 14157
 
16825 efrain 14158
  .my-xxl-5 {
14159
    margin-top: 3rem !important;
14160
    margin-bottom: 3rem !important;
14161
  }
16848 stevensc 14162
 
16825 efrain 14163
  .my-xxl-6 {
14164
    margin-top: 4.5rem !important;
14165
    margin-bottom: 4.5rem !important;
14166
  }
16848 stevensc 14167
 
16825 efrain 14168
  .my-xxl-7 {
14169
    margin-top: 6rem !important;
14170
    margin-bottom: 6rem !important;
14171
  }
16848 stevensc 14172
 
16825 efrain 14173
  .my-xxl-auto {
14174
    margin-top: auto !important;
14175
    margin-bottom: auto !important;
14176
  }
16848 stevensc 14177
 
16825 efrain 14178
  .mt-xxl-0 {
14179
    margin-top: 0 !important;
14180
  }
16848 stevensc 14181
 
16825 efrain 14182
  .mt-xxl-1 {
14183
    margin-top: 0.25rem !important;
14184
  }
16848 stevensc 14185
 
16825 efrain 14186
  .mt-xxl-2 {
14187
    margin-top: 0.5rem !important;
14188
  }
16848 stevensc 14189
 
16825 efrain 14190
  .mt-xxl-3 {
14191
    margin-top: 1rem !important;
14192
  }
16848 stevensc 14193
 
16825 efrain 14194
  .mt-xxl-4 {
14195
    margin-top: 1.5rem !important;
14196
  }
16848 stevensc 14197
 
16825 efrain 14198
  .mt-xxl-5 {
14199
    margin-top: 3rem !important;
14200
  }
16848 stevensc 14201
 
16825 efrain 14202
  .mt-xxl-6 {
14203
    margin-top: 4.5rem !important;
14204
  }
16848 stevensc 14205
 
16825 efrain 14206
  .mt-xxl-7 {
14207
    margin-top: 6rem !important;
14208
  }
16848 stevensc 14209
 
16825 efrain 14210
  .mt-xxl-auto {
14211
    margin-top: auto !important;
14212
  }
16848 stevensc 14213
 
16825 efrain 14214
  .me-xxl-0 {
14215
    margin-right: 0 !important;
14216
  }
16848 stevensc 14217
 
16825 efrain 14218
  .me-xxl-1 {
14219
    margin-right: 0.25rem !important;
14220
  }
16848 stevensc 14221
 
16825 efrain 14222
  .me-xxl-2 {
14223
    margin-right: 0.5rem !important;
14224
  }
16848 stevensc 14225
 
16825 efrain 14226
  .me-xxl-3 {
14227
    margin-right: 1rem !important;
14228
  }
16848 stevensc 14229
 
16825 efrain 14230
  .me-xxl-4 {
14231
    margin-right: 1.5rem !important;
14232
  }
16848 stevensc 14233
 
16825 efrain 14234
  .me-xxl-5 {
14235
    margin-right: 3rem !important;
14236
  }
16848 stevensc 14237
 
16825 efrain 14238
  .me-xxl-6 {
14239
    margin-right: 4.5rem !important;
14240
  }
16848 stevensc 14241
 
16825 efrain 14242
  .me-xxl-7 {
14243
    margin-right: 6rem !important;
14244
  }
16848 stevensc 14245
 
16825 efrain 14246
  .me-xxl-auto {
14247
    margin-right: auto !important;
14248
  }
16848 stevensc 14249
 
16825 efrain 14250
  .mb-xxl-0 {
14251
    margin-bottom: 0 !important;
14252
  }
16848 stevensc 14253
 
16825 efrain 14254
  .mb-xxl-1 {
14255
    margin-bottom: 0.25rem !important;
14256
  }
16848 stevensc 14257
 
16825 efrain 14258
  .mb-xxl-2 {
14259
    margin-bottom: 0.5rem !important;
14260
  }
16848 stevensc 14261
 
16825 efrain 14262
  .mb-xxl-3 {
14263
    margin-bottom: 1rem !important;
14264
  }
16848 stevensc 14265
 
16825 efrain 14266
  .mb-xxl-4 {
14267
    margin-bottom: 1.5rem !important;
14268
  }
16848 stevensc 14269
 
16825 efrain 14270
  .mb-xxl-5 {
14271
    margin-bottom: 3rem !important;
14272
  }
16848 stevensc 14273
 
16825 efrain 14274
  .mb-xxl-6 {
14275
    margin-bottom: 4.5rem !important;
14276
  }
16848 stevensc 14277
 
16825 efrain 14278
  .mb-xxl-7 {
14279
    margin-bottom: 6rem !important;
14280
  }
16848 stevensc 14281
 
16825 efrain 14282
  .mb-xxl-auto {
14283
    margin-bottom: auto !important;
14284
  }
16848 stevensc 14285
 
16825 efrain 14286
  .ms-xxl-0 {
14287
    margin-left: 0 !important;
14288
  }
16848 stevensc 14289
 
16825 efrain 14290
  .ms-xxl-1 {
14291
    margin-left: 0.25rem !important;
14292
  }
16848 stevensc 14293
 
16825 efrain 14294
  .ms-xxl-2 {
14295
    margin-left: 0.5rem !important;
14296
  }
16848 stevensc 14297
 
16825 efrain 14298
  .ms-xxl-3 {
14299
    margin-left: 1rem !important;
14300
  }
16848 stevensc 14301
 
16825 efrain 14302
  .ms-xxl-4 {
14303
    margin-left: 1.5rem !important;
14304
  }
16848 stevensc 14305
 
16825 efrain 14306
  .ms-xxl-5 {
14307
    margin-left: 3rem !important;
14308
  }
16848 stevensc 14309
 
16825 efrain 14310
  .ms-xxl-6 {
14311
    margin-left: 4.5rem !important;
14312
  }
16848 stevensc 14313
 
16825 efrain 14314
  .ms-xxl-7 {
14315
    margin-left: 6rem !important;
14316
  }
16848 stevensc 14317
 
16825 efrain 14318
  .ms-xxl-auto {
14319
    margin-left: auto !important;
14320
  }
16848 stevensc 14321
 
16825 efrain 14322
  .m-xxl-n1 {
14323
    margin: -0.25rem !important;
14324
  }
16848 stevensc 14325
 
16825 efrain 14326
  .m-xxl-n2 {
14327
    margin: -0.5rem !important;
14328
  }
16848 stevensc 14329
 
16825 efrain 14330
  .m-xxl-n3 {
14331
    margin: -1rem !important;
14332
  }
16848 stevensc 14333
 
16825 efrain 14334
  .m-xxl-n4 {
14335
    margin: -1.5rem !important;
14336
  }
16848 stevensc 14337
 
16825 efrain 14338
  .m-xxl-n5 {
14339
    margin: -3rem !important;
14340
  }
16848 stevensc 14341
 
16825 efrain 14342
  .m-xxl-n6 {
14343
    margin: -4.5rem !important;
14344
  }
16848 stevensc 14345
 
16825 efrain 14346
  .m-xxl-n7 {
14347
    margin: -6rem !important;
14348
  }
16848 stevensc 14349
 
16825 efrain 14350
  .mx-xxl-n1 {
14351
    margin-right: -0.25rem !important;
14352
    margin-left: -0.25rem !important;
14353
  }
16848 stevensc 14354
 
16825 efrain 14355
  .mx-xxl-n2 {
14356
    margin-right: -0.5rem !important;
14357
    margin-left: -0.5rem !important;
14358
  }
16848 stevensc 14359
 
16825 efrain 14360
  .mx-xxl-n3 {
14361
    margin-right: -1rem !important;
14362
    margin-left: -1rem !important;
14363
  }
16848 stevensc 14364
 
16825 efrain 14365
  .mx-xxl-n4 {
14366
    margin-right: -1.5rem !important;
14367
    margin-left: -1.5rem !important;
14368
  }
16848 stevensc 14369
 
16825 efrain 14370
  .mx-xxl-n5 {
14371
    margin-right: -3rem !important;
14372
    margin-left: -3rem !important;
14373
  }
16848 stevensc 14374
 
16825 efrain 14375
  .mx-xxl-n6 {
14376
    margin-right: -4.5rem !important;
14377
    margin-left: -4.5rem !important;
14378
  }
16848 stevensc 14379
 
16825 efrain 14380
  .mx-xxl-n7 {
14381
    margin-right: -6rem !important;
14382
    margin-left: -6rem !important;
14383
  }
16848 stevensc 14384
 
16825 efrain 14385
  .my-xxl-n1 {
14386
    margin-top: -0.25rem !important;
14387
    margin-bottom: -0.25rem !important;
14388
  }
16848 stevensc 14389
 
16825 efrain 14390
  .my-xxl-n2 {
14391
    margin-top: -0.5rem !important;
14392
    margin-bottom: -0.5rem !important;
14393
  }
16848 stevensc 14394
 
16825 efrain 14395
  .my-xxl-n3 {
14396
    margin-top: -1rem !important;
14397
    margin-bottom: -1rem !important;
14398
  }
16848 stevensc 14399
 
16825 efrain 14400
  .my-xxl-n4 {
14401
    margin-top: -1.5rem !important;
14402
    margin-bottom: -1.5rem !important;
14403
  }
16848 stevensc 14404
 
16825 efrain 14405
  .my-xxl-n5 {
14406
    margin-top: -3rem !important;
14407
    margin-bottom: -3rem !important;
14408
  }
16848 stevensc 14409
 
16825 efrain 14410
  .my-xxl-n6 {
14411
    margin-top: -4.5rem !important;
14412
    margin-bottom: -4.5rem !important;
14413
  }
16848 stevensc 14414
 
16825 efrain 14415
  .my-xxl-n7 {
14416
    margin-top: -6rem !important;
14417
    margin-bottom: -6rem !important;
14418
  }
16848 stevensc 14419
 
16825 efrain 14420
  .mt-xxl-n1 {
14421
    margin-top: -0.25rem !important;
14422
  }
16848 stevensc 14423
 
16825 efrain 14424
  .mt-xxl-n2 {
14425
    margin-top: -0.5rem !important;
14426
  }
16848 stevensc 14427
 
16825 efrain 14428
  .mt-xxl-n3 {
14429
    margin-top: -1rem !important;
14430
  }
16848 stevensc 14431
 
16825 efrain 14432
  .mt-xxl-n4 {
14433
    margin-top: -1.5rem !important;
14434
  }
16848 stevensc 14435
 
16825 efrain 14436
  .mt-xxl-n5 {
14437
    margin-top: -3rem !important;
14438
  }
16848 stevensc 14439
 
16825 efrain 14440
  .mt-xxl-n6 {
14441
    margin-top: -4.5rem !important;
14442
  }
16848 stevensc 14443
 
16825 efrain 14444
  .mt-xxl-n7 {
14445
    margin-top: -6rem !important;
14446
  }
16848 stevensc 14447
 
16825 efrain 14448
  .me-xxl-n1 {
14449
    margin-right: -0.25rem !important;
14450
  }
16848 stevensc 14451
 
16825 efrain 14452
  .me-xxl-n2 {
14453
    margin-right: -0.5rem !important;
14454
  }
16848 stevensc 14455
 
16825 efrain 14456
  .me-xxl-n3 {
14457
    margin-right: -1rem !important;
14458
  }
16848 stevensc 14459
 
16825 efrain 14460
  .me-xxl-n4 {
14461
    margin-right: -1.5rem !important;
14462
  }
16848 stevensc 14463
 
16825 efrain 14464
  .me-xxl-n5 {
14465
    margin-right: -3rem !important;
14466
  }
16848 stevensc 14467
 
16825 efrain 14468
  .me-xxl-n6 {
14469
    margin-right: -4.5rem !important;
14470
  }
16848 stevensc 14471
 
16825 efrain 14472
  .me-xxl-n7 {
14473
    margin-right: -6rem !important;
14474
  }
16848 stevensc 14475
 
16825 efrain 14476
  .mb-xxl-n1 {
14477
    margin-bottom: -0.25rem !important;
14478
  }
16848 stevensc 14479
 
16825 efrain 14480
  .mb-xxl-n2 {
14481
    margin-bottom: -0.5rem !important;
14482
  }
16848 stevensc 14483
 
16825 efrain 14484
  .mb-xxl-n3 {
14485
    margin-bottom: -1rem !important;
14486
  }
16848 stevensc 14487
 
16825 efrain 14488
  .mb-xxl-n4 {
14489
    margin-bottom: -1.5rem !important;
14490
  }
16848 stevensc 14491
 
16825 efrain 14492
  .mb-xxl-n5 {
14493
    margin-bottom: -3rem !important;
14494
  }
16848 stevensc 14495
 
16825 efrain 14496
  .mb-xxl-n6 {
14497
    margin-bottom: -4.5rem !important;
14498
  }
16848 stevensc 14499
 
16825 efrain 14500
  .mb-xxl-n7 {
14501
    margin-bottom: -6rem !important;
14502
  }
16848 stevensc 14503
 
16825 efrain 14504
  .ms-xxl-n1 {
14505
    margin-left: -0.25rem !important;
14506
  }
16848 stevensc 14507
 
16825 efrain 14508
  .ms-xxl-n2 {
14509
    margin-left: -0.5rem !important;
14510
  }
16848 stevensc 14511
 
16825 efrain 14512
  .ms-xxl-n3 {
14513
    margin-left: -1rem !important;
14514
  }
16848 stevensc 14515
 
16825 efrain 14516
  .ms-xxl-n4 {
14517
    margin-left: -1.5rem !important;
14518
  }
16848 stevensc 14519
 
16825 efrain 14520
  .ms-xxl-n5 {
14521
    margin-left: -3rem !important;
14522
  }
16848 stevensc 14523
 
16825 efrain 14524
  .ms-xxl-n6 {
14525
    margin-left: -4.5rem !important;
14526
  }
16848 stevensc 14527
 
16825 efrain 14528
  .ms-xxl-n7 {
14529
    margin-left: -6rem !important;
14530
  }
16848 stevensc 14531
 
16825 efrain 14532
  .p-xxl-0 {
14533
    padding: 0 !important;
14534
  }
16848 stevensc 14535
 
16825 efrain 14536
  .p-xxl-1 {
14537
    padding: 0.25rem !important;
14538
  }
16848 stevensc 14539
 
16825 efrain 14540
  .p-xxl-2 {
14541
    padding: 0.5rem !important;
14542
  }
16848 stevensc 14543
 
16825 efrain 14544
  .p-xxl-3 {
14545
    padding: 1rem !important;
14546
  }
16848 stevensc 14547
 
16825 efrain 14548
  .p-xxl-4 {
14549
    padding: 1.5rem !important;
14550
  }
16848 stevensc 14551
 
16825 efrain 14552
  .p-xxl-5 {
14553
    padding: 3rem !important;
14554
  }
16848 stevensc 14555
 
16825 efrain 14556
  .p-xxl-6 {
14557
    padding: 4.5rem !important;
14558
  }
16848 stevensc 14559
 
16825 efrain 14560
  .p-xxl-7 {
14561
    padding: 6rem !important;
14562
  }
16848 stevensc 14563
 
16825 efrain 14564
  .px-xxl-0 {
14565
    padding-right: 0 !important;
14566
    padding-left: 0 !important;
14567
  }
16848 stevensc 14568
 
16825 efrain 14569
  .px-xxl-1 {
14570
    padding-right: 0.25rem !important;
14571
    padding-left: 0.25rem !important;
14572
  }
16848 stevensc 14573
 
16825 efrain 14574
  .px-xxl-2 {
14575
    padding-right: 0.5rem !important;
14576
    padding-left: 0.5rem !important;
14577
  }
16848 stevensc 14578
 
16825 efrain 14579
  .px-xxl-3 {
14580
    padding-right: 1rem !important;
14581
    padding-left: 1rem !important;
14582
  }
16848 stevensc 14583
 
16825 efrain 14584
  .px-xxl-4 {
14585
    padding-right: 1.5rem !important;
14586
    padding-left: 1.5rem !important;
14587
  }
16848 stevensc 14588
 
16825 efrain 14589
  .px-xxl-5 {
14590
    padding-right: 3rem !important;
14591
    padding-left: 3rem !important;
14592
  }
16848 stevensc 14593
 
16825 efrain 14594
  .px-xxl-6 {
14595
    padding-right: 4.5rem !important;
14596
    padding-left: 4.5rem !important;
14597
  }
16848 stevensc 14598
 
16825 efrain 14599
  .px-xxl-7 {
14600
    padding-right: 6rem !important;
14601
    padding-left: 6rem !important;
14602
  }
16848 stevensc 14603
 
16825 efrain 14604
  .py-xxl-0 {
14605
    padding-top: 0 !important;
14606
    padding-bottom: 0 !important;
14607
  }
16848 stevensc 14608
 
16825 efrain 14609
  .py-xxl-1 {
14610
    padding-top: 0.25rem !important;
14611
    padding-bottom: 0.25rem !important;
14612
  }
16848 stevensc 14613
 
16825 efrain 14614
  .py-xxl-2 {
14615
    padding-top: 0.5rem !important;
14616
    padding-bottom: 0.5rem !important;
14617
  }
16848 stevensc 14618
 
16825 efrain 14619
  .py-xxl-3 {
14620
    padding-top: 1rem !important;
14621
    padding-bottom: 1rem !important;
14622
  }
16848 stevensc 14623
 
16825 efrain 14624
  .py-xxl-4 {
14625
    padding-top: 1.5rem !important;
14626
    padding-bottom: 1.5rem !important;
14627
  }
16848 stevensc 14628
 
16825 efrain 14629
  .py-xxl-5 {
14630
    padding-top: 3rem !important;
14631
    padding-bottom: 3rem !important;
14632
  }
16848 stevensc 14633
 
16825 efrain 14634
  .py-xxl-6 {
14635
    padding-top: 4.5rem !important;
14636
    padding-bottom: 4.5rem !important;
14637
  }
16848 stevensc 14638
 
16825 efrain 14639
  .py-xxl-7 {
14640
    padding-top: 6rem !important;
14641
    padding-bottom: 6rem !important;
14642
  }
16848 stevensc 14643
 
16825 efrain 14644
  .pt-xxl-0 {
14645
    padding-top: 0 !important;
14646
  }
16848 stevensc 14647
 
16825 efrain 14648
  .pt-xxl-1 {
14649
    padding-top: 0.25rem !important;
14650
  }
16848 stevensc 14651
 
16825 efrain 14652
  .pt-xxl-2 {
14653
    padding-top: 0.5rem !important;
14654
  }
16848 stevensc 14655
 
16825 efrain 14656
  .pt-xxl-3 {
14657
    padding-top: 1rem !important;
14658
  }
16848 stevensc 14659
 
16825 efrain 14660
  .pt-xxl-4 {
14661
    padding-top: 1.5rem !important;
14662
  }
16848 stevensc 14663
 
16825 efrain 14664
  .pt-xxl-5 {
14665
    padding-top: 3rem !important;
14666
  }
16848 stevensc 14667
 
16825 efrain 14668
  .pt-xxl-6 {
14669
    padding-top: 4.5rem !important;
14670
  }
16848 stevensc 14671
 
16825 efrain 14672
  .pt-xxl-7 {
14673
    padding-top: 6rem !important;
14674
  }
16848 stevensc 14675
 
16825 efrain 14676
  .pe-xxl-0 {
14677
    padding-right: 0 !important;
14678
  }
16848 stevensc 14679
 
16825 efrain 14680
  .pe-xxl-1 {
14681
    padding-right: 0.25rem !important;
14682
  }
16848 stevensc 14683
 
16825 efrain 14684
  .pe-xxl-2 {
14685
    padding-right: 0.5rem !important;
14686
  }
16848 stevensc 14687
 
16825 efrain 14688
  .pe-xxl-3 {
14689
    padding-right: 1rem !important;
14690
  }
16848 stevensc 14691
 
16825 efrain 14692
  .pe-xxl-4 {
14693
    padding-right: 1.5rem !important;
14694
  }
16848 stevensc 14695
 
16825 efrain 14696
  .pe-xxl-5 {
14697
    padding-right: 3rem !important;
14698
  }
16848 stevensc 14699
 
16825 efrain 14700
  .pe-xxl-6 {
14701
    padding-right: 4.5rem !important;
14702
  }
16848 stevensc 14703
 
16825 efrain 14704
  .pe-xxl-7 {
14705
    padding-right: 6rem !important;
14706
  }
16848 stevensc 14707
 
16825 efrain 14708
  .pb-xxl-0 {
14709
    padding-bottom: 0 !important;
14710
  }
16848 stevensc 14711
 
16825 efrain 14712
  .pb-xxl-1 {
14713
    padding-bottom: 0.25rem !important;
14714
  }
16848 stevensc 14715
 
16825 efrain 14716
  .pb-xxl-2 {
14717
    padding-bottom: 0.5rem !important;
14718
  }
16848 stevensc 14719
 
16825 efrain 14720
  .pb-xxl-3 {
14721
    padding-bottom: 1rem !important;
14722
  }
16848 stevensc 14723
 
16825 efrain 14724
  .pb-xxl-4 {
14725
    padding-bottom: 1.5rem !important;
14726
  }
16848 stevensc 14727
 
16825 efrain 14728
  .pb-xxl-5 {
14729
    padding-bottom: 3rem !important;
14730
  }
16848 stevensc 14731
 
16825 efrain 14732
  .pb-xxl-6 {
14733
    padding-bottom: 4.5rem !important;
14734
  }
16848 stevensc 14735
 
16825 efrain 14736
  .pb-xxl-7 {
14737
    padding-bottom: 6rem !important;
14738
  }
16848 stevensc 14739
 
16825 efrain 14740
  .ps-xxl-0 {
14741
    padding-left: 0 !important;
14742
  }
16848 stevensc 14743
 
16825 efrain 14744
  .ps-xxl-1 {
14745
    padding-left: 0.25rem !important;
14746
  }
16848 stevensc 14747
 
16825 efrain 14748
  .ps-xxl-2 {
14749
    padding-left: 0.5rem !important;
14750
  }
16848 stevensc 14751
 
16825 efrain 14752
  .ps-xxl-3 {
14753
    padding-left: 1rem !important;
14754
  }
16848 stevensc 14755
 
16825 efrain 14756
  .ps-xxl-4 {
14757
    padding-left: 1.5rem !important;
14758
  }
16848 stevensc 14759
 
16825 efrain 14760
  .ps-xxl-5 {
14761
    padding-left: 3rem !important;
14762
  }
16848 stevensc 14763
 
16825 efrain 14764
  .ps-xxl-6 {
14765
    padding-left: 4.5rem !important;
14766
  }
16848 stevensc 14767
 
16825 efrain 14768
  .ps-xxl-7 {
14769
    padding-left: 6rem !important;
14770
  }
16848 stevensc 14771
 
16825 efrain 14772
  .gap-xxl-0 {
14773
    gap: 0 !important;
14774
  }
16848 stevensc 14775
 
16825 efrain 14776
  .gap-xxl-1 {
14777
    gap: 0.25rem !important;
14778
  }
16848 stevensc 14779
 
16825 efrain 14780
  .gap-xxl-2 {
14781
    gap: 0.5rem !important;
14782
  }
16848 stevensc 14783
 
16825 efrain 14784
  .gap-xxl-3 {
14785
    gap: 1rem !important;
14786
  }
16848 stevensc 14787
 
16825 efrain 14788
  .gap-xxl-4 {
14789
    gap: 1.5rem !important;
14790
  }
16848 stevensc 14791
 
16825 efrain 14792
  .gap-xxl-5 {
14793
    gap: 3rem !important;
14794
  }
16848 stevensc 14795
 
16825 efrain 14796
  .gap-xxl-6 {
14797
    gap: 4.5rem !important;
14798
  }
16848 stevensc 14799
 
16825 efrain 14800
  .gap-xxl-7 {
14801
    gap: 6rem !important;
14802
  }
16848 stevensc 14803
 
16825 efrain 14804
  .text-xxl-start {
14805
    text-align: left !important;
14806
  }
16848 stevensc 14807
 
16825 efrain 14808
  .text-xxl-end {
14809
    text-align: right !important;
14810
  }
16848 stevensc 14811
 
16825 efrain 14812
  .text-xxl-center {
14813
    text-align: center !important;
14814
  }
14815
}
16848 stevensc 14816
 
16825 efrain 14817
@media (min-width: 1200px) {
14818
  .fs-1 {
14819
    font-size: 2.5rem !important;
14820
  }
16848 stevensc 14821
 
16825 efrain 14822
  .fs-2 {
14823
    font-size: 2rem !important;
14824
  }
16848 stevensc 14825
 
16825 efrain 14826
  .fs-3 {
14827
    font-size: 1.5rem !important;
14828
  }
14829
}
16848 stevensc 14830
 
16825 efrain 14831
@media print {
14832
  .d-print-inline {
14833
    display: inline !important;
14834
  }
16848 stevensc 14835
 
16825 efrain 14836
  .d-print-inline-block {
14837
    display: inline-block !important;
14838
  }
16848 stevensc 14839
 
16825 efrain 14840
  .d-print-block {
14841
    display: block !important;
14842
  }
16848 stevensc 14843
 
16825 efrain 14844
  .d-print-grid {
14845
    display: grid !important;
14846
  }
16848 stevensc 14847
 
16825 efrain 14848
  .d-print-table {
14849
    display: table !important;
14850
  }
16848 stevensc 14851
 
16825 efrain 14852
  .d-print-table-row {
14853
    display: table-row !important;
14854
  }
16848 stevensc 14855
 
16825 efrain 14856
  .d-print-table-cell {
14857
    display: table-cell !important;
14858
  }
16848 stevensc 14859
 
16825 efrain 14860
  .d-print-flex {
14861
    display: flex !important;
14862
  }
16848 stevensc 14863
 
16825 efrain 14864
  .d-print-inline-flex {
14865
    display: inline-flex !important;
14866
  }
16848 stevensc 14867
 
16825 efrain 14868
  .d-print-none {
14869
    display: none !important;
14870
  }
14871
}
16848 stevensc 14872
 
16825 efrain 14873
@keyframes dropdownAnimation {
14874
  from {
14875
    opacity: 0;
14876
    transform: translate3d(0, 20px, 0);
14877
  }
16848 stevensc 14878
 
16825 efrain 14879
  to {
14880
    opacity: 1;
14881
    transform: none;
14882
    transform: translate3d(0, 0px, 0);
14883
  }
14884
}
16848 stevensc 14885
 
14886
.dropdownAnimation,
14887
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14888
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14889
  -webkit-animation-name: dropdownAnimation;
14890
  animation-name: dropdownAnimation;
14891
  -webkit-animation-duration: 0.2s;
14892
  animation-duration: 0.2s;
14893
  -webkit-animation-fill-mode: both;
14894
  animation-fill-mode: both;
14895
}
14896
 
14897
@keyframes fadeOut {
14898
  from {
14899
    opacity: 1;
14900
  }
16848 stevensc 14901
 
16825 efrain 14902
  to {
14903
    opacity: 0;
14904
  }
14905
}
16848 stevensc 14906
 
16825 efrain 14907
.fadeOut {
14908
  animation-name: fadeOUt;
14909
}
14910
 
14911
@keyframes fadeInUp {
14912
  from {
14913
    opacity: 0;
14914
    transform: translate3d(0, 100%, 0);
14915
  }
16848 stevensc 14916
 
16825 efrain 14917
  to {
14918
    opacity: 1;
14919
    transform: none;
14920
  }
14921
}
16848 stevensc 14922
 
16825 efrain 14923
.fadeInUp {
14924
  animation-name: fadeInUp;
14925
}
14926
 
16848 stevensc 14927
.infinite-spin,
14928
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14929
  animation-name: spin;
14930
  animation-duration: 3s;
14931
  animation-iteration-count: infinite;
14932
  animation-timing-function: linear;
14933
}
16848 stevensc 14934
 
16825 efrain 14935
@keyframes spin {
14936
  from {
14937
    transform: rotate(0deg);
14938
  }
16848 stevensc 14939
 
16825 efrain 14940
  to {
14941
    transform: rotate(360deg);
14942
  }
14943
}
14944
 
16848 stevensc 14945
.pulse,
14946
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14947
  animation-name: pulse;
14948
  animation-duration: 0.9s;
14949
  animation-iteration-count: infinite;
14950
  animation-timing-function: ease-out;
14951
}
16848 stevensc 14952
 
16825 efrain 14953
@keyframes pulse {
14954
  0% {
14955
    opacity: 1;
14956
    width: 7px;
14957
    height: 7px;
14958
    left: 0;
14959
    top: 0;
14960
  }
16848 stevensc 14961
 
16825 efrain 14962
  95% {
14963
    opacity: 0.1;
14964
    left: -10.5px;
14965
    top: -10.5px;
14966
    width: 28px;
14967
    height: 28px;
14968
  }
16848 stevensc 14969
 
16825 efrain 14970
  100% {
14971
    opacity: 0;
14972
    width: 7px;
14973
    height: 7px;
14974
    left: 0;
14975
    top: 0;
14976
  }
14977
}
14978
 
14979
.wd-5 {
14980
  width: 5px;
14981
}
14982
 
14983
.wd-5p {
14984
  width: 5%;
14985
}
14986
 
14987
.mx-wd-5p {
14988
  max-width: 5%;
14989
}
14990
 
14991
.mn-wd-5p {
14992
  min-width: 5%;
14993
}
14994
 
14995
.wd-5-f {
14996
  width: 5px !important;
14997
}
14998
 
14999
.wd-5p-f {
15000
  width: 5% !important;
15001
}
15002
 
15003
.mx-wd-5p-f {
15004
  max-width: 5% !important;
15005
}
15006
 
15007
.mn-wd-5p-f {
15008
  min-width: 5% !important;
15009
}
15010
 
15011
.wd-10 {
15012
  width: 10px;
15013
}
15014
 
15015
.wd-10p {
15016
  width: 10%;
15017
}
15018
 
15019
.mx-wd-10p {
15020
  max-width: 10%;
15021
}
15022
 
15023
.mn-wd-10p {
15024
  min-width: 10%;
15025
}
15026
 
15027
.wd-10-f {
15028
  width: 10px !important;
15029
}
15030
 
15031
.wd-10p-f {
15032
  width: 10% !important;
15033
}
15034
 
15035
.mx-wd-10p-f {
15036
  max-width: 10% !important;
15037
}
15038
 
15039
.mn-wd-10p-f {
15040
  min-width: 10% !important;
15041
}
15042
 
15043
.wd-15 {
15044
  width: 15px;
15045
}
15046
 
15047
.wd-15p {
15048
  width: 15%;
15049
}
15050
 
15051
.mx-wd-15p {
15052
  max-width: 15%;
15053
}
15054
 
15055
.mn-wd-15p {
15056
  min-width: 15%;
15057
}
15058
 
15059
.wd-15-f {
15060
  width: 15px !important;
15061
}
15062
 
15063
.wd-15p-f {
15064
  width: 15% !important;
15065
}
15066
 
15067
.mx-wd-15p-f {
15068
  max-width: 15% !important;
15069
}
15070
 
15071
.mn-wd-15p-f {
15072
  min-width: 15% !important;
15073
}
15074
 
15075
.wd-20 {
15076
  width: 20px;
15077
}
15078
 
15079
.wd-20p {
15080
  width: 20%;
15081
}
15082
 
15083
.mx-wd-20p {
15084
  max-width: 20%;
15085
}
15086
 
15087
.mn-wd-20p {
15088
  min-width: 20%;
15089
}
15090
 
15091
.wd-20-f {
15092
  width: 20px !important;
15093
}
15094
 
15095
.wd-20p-f {
15096
  width: 20% !important;
15097
}
15098
 
15099
.mx-wd-20p-f {
15100
  max-width: 20% !important;
15101
}
15102
 
15103
.mn-wd-20p-f {
15104
  min-width: 20% !important;
15105
}
15106
 
15107
.wd-25 {
15108
  width: 25px;
15109
}
15110
 
15111
.wd-25p {
15112
  width: 25%;
15113
}
15114
 
15115
.mx-wd-25p {
15116
  max-width: 25%;
15117
}
15118
 
15119
.mn-wd-25p {
15120
  min-width: 25%;
15121
}
15122
 
15123
.wd-25-f {
15124
  width: 25px !important;
15125
}
15126
 
15127
.wd-25p-f {
15128
  width: 25% !important;
15129
}
15130
 
15131
.mx-wd-25p-f {
15132
  max-width: 25% !important;
15133
}
15134
 
15135
.mn-wd-25p-f {
15136
  min-width: 25% !important;
15137
}
15138
 
15139
.wd-30 {
15140
  width: 30px;
15141
}
15142
 
15143
.wd-30p {
15144
  width: 30%;
15145
}
15146
 
15147
.mx-wd-30p {
15148
  max-width: 30%;
15149
}
15150
 
15151
.mn-wd-30p {
15152
  min-width: 30%;
15153
}
15154
 
15155
.wd-30-f {
15156
  width: 30px !important;
15157
}
15158
 
15159
.wd-30p-f {
15160
  width: 30% !important;
15161
}
15162
 
15163
.mx-wd-30p-f {
15164
  max-width: 30% !important;
15165
}
15166
 
15167
.mn-wd-30p-f {
15168
  min-width: 30% !important;
15169
}
15170
 
15171
.wd-35 {
15172
  width: 35px;
15173
}
15174
 
15175
.wd-35p {
15176
  width: 35%;
15177
}
15178
 
15179
.mx-wd-35p {
15180
  max-width: 35%;
15181
}
15182
 
15183
.mn-wd-35p {
15184
  min-width: 35%;
15185
}
15186
 
15187
.wd-35-f {
15188
  width: 35px !important;
15189
}
15190
 
15191
.wd-35p-f {
15192
  width: 35% !important;
15193
}
15194
 
15195
.mx-wd-35p-f {
15196
  max-width: 35% !important;
15197
}
15198
 
15199
.mn-wd-35p-f {
15200
  min-width: 35% !important;
15201
}
15202
 
15203
.wd-40 {
15204
  width: 40px;
15205
}
15206
 
15207
.wd-40p {
15208
  width: 40%;
15209
}
15210
 
15211
.mx-wd-40p {
15212
  max-width: 40%;
15213
}
15214
 
15215
.mn-wd-40p {
15216
  min-width: 40%;
15217
}
15218
 
15219
.wd-40-f {
15220
  width: 40px !important;
15221
}
15222
 
15223
.wd-40p-f {
15224
  width: 40% !important;
15225
}
15226
 
15227
.mx-wd-40p-f {
15228
  max-width: 40% !important;
15229
}
15230
 
15231
.mn-wd-40p-f {
15232
  min-width: 40% !important;
15233
}
15234
 
15235
.wd-45 {
15236
  width: 45px;
15237
}
15238
 
15239
.wd-45p {
15240
  width: 45%;
15241
}
15242
 
15243
.mx-wd-45p {
15244
  max-width: 45%;
15245
}
15246
 
15247
.mn-wd-45p {
15248
  min-width: 45%;
15249
}
15250
 
15251
.wd-45-f {
15252
  width: 45px !important;
15253
}
15254
 
15255
.wd-45p-f {
15256
  width: 45% !important;
15257
}
15258
 
15259
.mx-wd-45p-f {
15260
  max-width: 45% !important;
15261
}
15262
 
15263
.mn-wd-45p-f {
15264
  min-width: 45% !important;
15265
}
15266
 
15267
.wd-50 {
15268
  width: 50px;
15269
}
15270
 
15271
.wd-50p {
15272
  width: 50%;
15273
}
15274
 
15275
.mx-wd-50p {
15276
  max-width: 50%;
15277
}
15278
 
15279
.mn-wd-50p {
15280
  min-width: 50%;
15281
}
15282
 
15283
.wd-50-f {
15284
  width: 50px !important;
15285
}
15286
 
15287
.wd-50p-f {
15288
  width: 50% !important;
15289
}
15290
 
15291
.mx-wd-50p-f {
15292
  max-width: 50% !important;
15293
}
15294
 
15295
.mn-wd-50p-f {
15296
  min-width: 50% !important;
15297
}
15298
 
15299
.wd-55 {
15300
  width: 55px;
15301
}
15302
 
15303
.wd-55p {
15304
  width: 55%;
15305
}
15306
 
15307
.mx-wd-55p {
15308
  max-width: 55%;
15309
}
15310
 
15311
.mn-wd-55p {
15312
  min-width: 55%;
15313
}
15314
 
15315
.wd-55-f {
15316
  width: 55px !important;
15317
}
15318
 
15319
.wd-55p-f {
15320
  width: 55% !important;
15321
}
15322
 
15323
.mx-wd-55p-f {
15324
  max-width: 55% !important;
15325
}
15326
 
15327
.mn-wd-55p-f {
15328
  min-width: 55% !important;
15329
}
15330
 
15331
.wd-60 {
15332
  width: 60px;
15333
}
15334
 
15335
.wd-60p {
15336
  width: 60%;
15337
}
15338
 
15339
.mx-wd-60p {
15340
  max-width: 60%;
15341
}
15342
 
15343
.mn-wd-60p {
15344
  min-width: 60%;
15345
}
15346
 
15347
.wd-60-f {
15348
  width: 60px !important;
15349
}
15350
 
15351
.wd-60p-f {
15352
  width: 60% !important;
15353
}
15354
 
15355
.mx-wd-60p-f {
15356
  max-width: 60% !important;
15357
}
15358
 
15359
.mn-wd-60p-f {
15360
  min-width: 60% !important;
15361
}
15362
 
15363
.wd-65 {
15364
  width: 65px;
15365
}
15366
 
15367
.wd-65p {
15368
  width: 65%;
15369
}
15370
 
15371
.mx-wd-65p {
15372
  max-width: 65%;
15373
}
15374
 
15375
.mn-wd-65p {
15376
  min-width: 65%;
15377
}
15378
 
15379
.wd-65-f {
15380
  width: 65px !important;
15381
}
15382
 
15383
.wd-65p-f {
15384
  width: 65% !important;
15385
}
15386
 
15387
.mx-wd-65p-f {
15388
  max-width: 65% !important;
15389
}
15390
 
15391
.mn-wd-65p-f {
15392
  min-width: 65% !important;
15393
}
15394
 
15395
.wd-70 {
15396
  width: 70px;
15397
}
15398
 
15399
.wd-70p {
15400
  width: 70%;
15401
}
15402
 
15403
.mx-wd-70p {
15404
  max-width: 70%;
15405
}
15406
 
15407
.mn-wd-70p {
15408
  min-width: 70%;
15409
}
15410
 
15411
.wd-70-f {
15412
  width: 70px !important;
15413
}
15414
 
15415
.wd-70p-f {
15416
  width: 70% !important;
15417
}
15418
 
15419
.mx-wd-70p-f {
15420
  max-width: 70% !important;
15421
}
15422
 
15423
.mn-wd-70p-f {
15424
  min-width: 70% !important;
15425
}
15426
 
15427
.wd-75 {
15428
  width: 75px;
15429
}
15430
 
15431
.wd-75p {
15432
  width: 75%;
15433
}
15434
 
15435
.mx-wd-75p {
15436
  max-width: 75%;
15437
}
15438
 
15439
.mn-wd-75p {
15440
  min-width: 75%;
15441
}
15442
 
15443
.wd-75-f {
15444
  width: 75px !important;
15445
}
15446
 
15447
.wd-75p-f {
15448
  width: 75% !important;
15449
}
15450
 
15451
.mx-wd-75p-f {
15452
  max-width: 75% !important;
15453
}
15454
 
15455
.mn-wd-75p-f {
15456
  min-width: 75% !important;
15457
}
15458
 
15459
.wd-80 {
15460
  width: 80px;
15461
}
15462
 
15463
.wd-80p {
15464
  width: 80%;
15465
}
15466
 
15467
.mx-wd-80p {
15468
  max-width: 80%;
15469
}
15470
 
15471
.mn-wd-80p {
15472
  min-width: 80%;
15473
}
15474
 
15475
.wd-80-f {
15476
  width: 80px !important;
15477
}
15478
 
15479
.wd-80p-f {
15480
  width: 80% !important;
15481
}
15482
 
15483
.mx-wd-80p-f {
15484
  max-width: 80% !important;
15485
}
15486
 
15487
.mn-wd-80p-f {
15488
  min-width: 80% !important;
15489
}
15490
 
15491
.wd-85 {
15492
  width: 85px;
15493
}
15494
 
15495
.wd-85p {
15496
  width: 85%;
15497
}
15498
 
15499
.mx-wd-85p {
15500
  max-width: 85%;
15501
}
15502
 
15503
.mn-wd-85p {
15504
  min-width: 85%;
15505
}
15506
 
15507
.wd-85-f {
15508
  width: 85px !important;
15509
}
15510
 
15511
.wd-85p-f {
15512
  width: 85% !important;
15513
}
15514
 
15515
.mx-wd-85p-f {
15516
  max-width: 85% !important;
15517
}
15518
 
15519
.mn-wd-85p-f {
15520
  min-width: 85% !important;
15521
}
15522
 
15523
.wd-90 {
15524
  width: 90px;
15525
}
15526
 
15527
.wd-90p {
15528
  width: 90%;
15529
}
15530
 
15531
.mx-wd-90p {
15532
  max-width: 90%;
15533
}
15534
 
15535
.mn-wd-90p {
15536
  min-width: 90%;
15537
}
15538
 
15539
.wd-90-f {
15540
  width: 90px !important;
15541
}
15542
 
15543
.wd-90p-f {
15544
  width: 90% !important;
15545
}
15546
 
15547
.mx-wd-90p-f {
15548
  max-width: 90% !important;
15549
}
15550
 
15551
.mn-wd-90p-f {
15552
  min-width: 90% !important;
15553
}
15554
 
15555
.wd-95 {
15556
  width: 95px;
15557
}
15558
 
15559
.wd-95p {
15560
  width: 95%;
15561
}
15562
 
15563
.mx-wd-95p {
15564
  max-width: 95%;
15565
}
15566
 
15567
.mn-wd-95p {
15568
  min-width: 95%;
15569
}
15570
 
15571
.wd-95-f {
15572
  width: 95px !important;
15573
}
15574
 
15575
.wd-95p-f {
15576
  width: 95% !important;
15577
}
15578
 
15579
.mx-wd-95p-f {
15580
  max-width: 95% !important;
15581
}
15582
 
15583
.mn-wd-95p-f {
15584
  min-width: 95% !important;
15585
}
15586
 
15587
.wd-100 {
15588
  width: 100px;
15589
}
15590
 
15591
.wd-100p {
15592
  width: 100%;
15593
}
15594
 
15595
.mx-wd-100p {
15596
  max-width: 100%;
15597
}
15598
 
15599
.mn-wd-100p {
15600
  min-width: 100%;
15601
}
15602
 
15603
.wd-100-f {
15604
  width: 100px !important;
15605
}
15606
 
15607
.wd-100p-f {
15608
  width: 100% !important;
15609
}
15610
 
15611
.mx-wd-100p-f {
15612
  max-width: 100% !important;
15613
}
15614
 
15615
.mn-wd-100p-f {
15616
  min-width: 100% !important;
15617
}
15618
 
15619
.wd-150 {
15620
  width: 150px;
15621
}
15622
 
15623
.wd-150-f {
15624
  width: 150px !important;
15625
}
15626
 
15627
.wd-200 {
15628
  width: 200px;
15629
}
15630
 
15631
.wd-200-f {
15632
  width: 200px !important;
15633
}
15634
 
15635
.wd-250 {
15636
  width: 250px;
15637
}
15638
 
15639
.wd-250-f {
15640
  width: 250px !important;
15641
}
15642
 
15643
.wd-300 {
15644
  width: 300px;
15645
}
15646
 
15647
.wd-300-f {
15648
  width: 300px !important;
15649
}
15650
 
15651
.wd-350 {
15652
  width: 350px;
15653
}
15654
 
15655
.wd-350-f {
15656
  width: 350px !important;
15657
}
15658
 
15659
.wd-400 {
15660
  width: 400px;
15661
}
15662
 
15663
.wd-400-f {
15664
  width: 400px !important;
15665
}
15666
 
15667
.wd-450 {
15668
  width: 450px;
15669
}
15670
 
15671
.wd-450-f {
15672
  width: 450px !important;
15673
}
15674
 
15675
.wd-500 {
15676
  width: 500px;
15677
}
15678
 
15679
.wd-500-f {
15680
  width: 500px !important;
15681
}
15682
 
15683
.wd-550 {
15684
  width: 550px;
15685
}
15686
 
15687
.wd-550-f {
15688
  width: 550px !important;
15689
}
15690
 
15691
.wd-600 {
15692
  width: 600px;
15693
}
15694
 
15695
.wd-600-f {
15696
  width: 600px !important;
15697
}
15698
 
15699
.wd-650 {
15700
  width: 650px;
15701
}
15702
 
15703
.wd-650-f {
15704
  width: 650px !important;
15705
}
15706
 
15707
.wd-700 {
15708
  width: 700px;
15709
}
15710
 
15711
.wd-700-f {
15712
  width: 700px !important;
15713
}
15714
 
15715
.wd-750 {
15716
  width: 750px;
15717
}
15718
 
15719
.wd-750-f {
15720
  width: 750px !important;
15721
}
15722
 
15723
.wd-800 {
15724
  width: 800px;
15725
}
15726
 
15727
.wd-800-f {
15728
  width: 800px !important;
15729
}
15730
 
15731
.wd-850 {
15732
  width: 850px;
15733
}
15734
 
15735
.wd-850-f {
15736
  width: 850px !important;
15737
}
15738
 
15739
.wd-900 {
15740
  width: 900px;
15741
}
15742
 
15743
.wd-900-f {
15744
  width: 900px !important;
15745
}
15746
 
15747
.wd-950 {
15748
  width: 950px;
15749
}
15750
 
15751
.wd-950-f {
15752
  width: 950px !important;
15753
}
15754
 
15755
.wd-1000 {
15756
  width: 1000px;
15757
}
15758
 
15759
.wd-1000-f {
15760
  width: 1000px !important;
15761
}
15762
 
15763
@media (min-width: 480px) {
15764
  .wd-xs-5 {
15765
    width: 5px;
15766
  }
16848 stevensc 15767
 
16825 efrain 15768
  .wd-xs-5p {
15769
    width: 5%;
15770
  }
16848 stevensc 15771
 
16825 efrain 15772
  .mx-wd-xs-5p {
15773
    max-width: 5%;
15774
  }
16848 stevensc 15775
 
16825 efrain 15776
  .mn-wd-xs-5p {
15777
    min-width: 5%;
15778
  }
16848 stevensc 15779
 
16825 efrain 15780
  .wd-xs-5-f {
15781
    width: 5px !important;
15782
  }
16848 stevensc 15783
 
16825 efrain 15784
  .wd-xs-5p-f {
15785
    width: 5% !important;
15786
  }
16848 stevensc 15787
 
16825 efrain 15788
  .mx-wd-xs-5p-f {
15789
    max-width: 5% !important;
15790
  }
16848 stevensc 15791
 
16825 efrain 15792
  .mn-wd-xs-5p-f {
15793
    min-width: 5% !important;
15794
  }
16848 stevensc 15795
 
16825 efrain 15796
  .wd-xs-10 {
15797
    width: 10px;
15798
  }
16848 stevensc 15799
 
16825 efrain 15800
  .wd-xs-10p {
15801
    width: 10%;
15802
  }
16848 stevensc 15803
 
16825 efrain 15804
  .mx-wd-xs-10p {
15805
    max-width: 10%;
15806
  }
16848 stevensc 15807
 
16825 efrain 15808
  .mn-wd-xs-10p {
15809
    min-width: 10%;
15810
  }
16848 stevensc 15811
 
16825 efrain 15812
  .wd-xs-10-f {
15813
    width: 10px !important;
15814
  }
16848 stevensc 15815
 
16825 efrain 15816
  .wd-xs-10p-f {
15817
    width: 10% !important;
15818
  }
16848 stevensc 15819
 
16825 efrain 15820
  .mx-wd-xs-10p-f {
15821
    max-width: 10% !important;
15822
  }
16848 stevensc 15823
 
16825 efrain 15824
  .mn-wd-xs-10p-f {
15825
    min-width: 10% !important;
15826
  }
16848 stevensc 15827
 
16825 efrain 15828
  .wd-xs-15 {
15829
    width: 15px;
15830
  }
16848 stevensc 15831
 
16825 efrain 15832
  .wd-xs-15p {
15833
    width: 15%;
15834
  }
16848 stevensc 15835
 
16825 efrain 15836
  .mx-wd-xs-15p {
15837
    max-width: 15%;
15838
  }
16848 stevensc 15839
 
16825 efrain 15840
  .mn-wd-xs-15p {
15841
    min-width: 15%;
15842
  }
16848 stevensc 15843
 
16825 efrain 15844
  .wd-xs-15-f {
15845
    width: 15px !important;
15846
  }
16848 stevensc 15847
 
16825 efrain 15848
  .wd-xs-15p-f {
15849
    width: 15% !important;
15850
  }
16848 stevensc 15851
 
16825 efrain 15852
  .mx-wd-xs-15p-f {
15853
    max-width: 15% !important;
15854
  }
16848 stevensc 15855
 
16825 efrain 15856
  .mn-wd-xs-15p-f {
15857
    min-width: 15% !important;
15858
  }
16848 stevensc 15859
 
16825 efrain 15860
  .wd-xs-20 {
15861
    width: 20px;
15862
  }
16848 stevensc 15863
 
16825 efrain 15864
  .wd-xs-20p {
15865
    width: 20%;
15866
  }
16848 stevensc 15867
 
16825 efrain 15868
  .mx-wd-xs-20p {
15869
    max-width: 20%;
15870
  }
16848 stevensc 15871
 
16825 efrain 15872
  .mn-wd-xs-20p {
15873
    min-width: 20%;
15874
  }
16848 stevensc 15875
 
16825 efrain 15876
  .wd-xs-20-f {
15877
    width: 20px !important;
15878
  }
16848 stevensc 15879
 
16825 efrain 15880
  .wd-xs-20p-f {
15881
    width: 20% !important;
15882
  }
16848 stevensc 15883
 
16825 efrain 15884
  .mx-wd-xs-20p-f {
15885
    max-width: 20% !important;
15886
  }
16848 stevensc 15887
 
16825 efrain 15888
  .mn-wd-xs-20p-f {
15889
    min-width: 20% !important;
15890
  }
16848 stevensc 15891
 
16825 efrain 15892
  .wd-xs-25 {
15893
    width: 25px;
15894
  }
16848 stevensc 15895
 
16825 efrain 15896
  .wd-xs-25p {
15897
    width: 25%;
15898
  }
16848 stevensc 15899
 
16825 efrain 15900
  .mx-wd-xs-25p {
15901
    max-width: 25%;
15902
  }
16848 stevensc 15903
 
16825 efrain 15904
  .mn-wd-xs-25p {
15905
    min-width: 25%;
15906
  }
16848 stevensc 15907
 
16825 efrain 15908
  .wd-xs-25-f {
15909
    width: 25px !important;
15910
  }
16848 stevensc 15911
 
16825 efrain 15912
  .wd-xs-25p-f {
15913
    width: 25% !important;
15914
  }
16848 stevensc 15915
 
16825 efrain 15916
  .mx-wd-xs-25p-f {
15917
    max-width: 25% !important;
15918
  }
16848 stevensc 15919
 
16825 efrain 15920
  .mn-wd-xs-25p-f {
15921
    min-width: 25% !important;
15922
  }
16848 stevensc 15923
 
16825 efrain 15924
  .wd-xs-30 {
15925
    width: 30px;
15926
  }
16848 stevensc 15927
 
16825 efrain 15928
  .wd-xs-30p {
15929
    width: 30%;
15930
  }
16848 stevensc 15931
 
16825 efrain 15932
  .mx-wd-xs-30p {
15933
    max-width: 30%;
15934
  }
16848 stevensc 15935
 
16825 efrain 15936
  .mn-wd-xs-30p {
15937
    min-width: 30%;
15938
  }
16848 stevensc 15939
 
16825 efrain 15940
  .wd-xs-30-f {
15941
    width: 30px !important;
15942
  }
16848 stevensc 15943
 
16825 efrain 15944
  .wd-xs-30p-f {
15945
    width: 30% !important;
15946
  }
16848 stevensc 15947
 
16825 efrain 15948
  .mx-wd-xs-30p-f {
15949
    max-width: 30% !important;
15950
  }
16848 stevensc 15951
 
16825 efrain 15952
  .mn-wd-xs-30p-f {
15953
    min-width: 30% !important;
15954
  }
16848 stevensc 15955
 
16825 efrain 15956
  .wd-xs-35 {
15957
    width: 35px;
15958
  }
16848 stevensc 15959
 
16825 efrain 15960
  .wd-xs-35p {
15961
    width: 35%;
15962
  }
16848 stevensc 15963
 
16825 efrain 15964
  .mx-wd-xs-35p {
15965
    max-width: 35%;
15966
  }
16848 stevensc 15967
 
16825 efrain 15968
  .mn-wd-xs-35p {
15969
    min-width: 35%;
15970
  }
16848 stevensc 15971
 
16825 efrain 15972
  .wd-xs-35-f {
15973
    width: 35px !important;
15974
  }
16848 stevensc 15975
 
16825 efrain 15976
  .wd-xs-35p-f {
15977
    width: 35% !important;
15978
  }
16848 stevensc 15979
 
16825 efrain 15980
  .mx-wd-xs-35p-f {
15981
    max-width: 35% !important;
15982
  }
16848 stevensc 15983
 
16825 efrain 15984
  .mn-wd-xs-35p-f {
15985
    min-width: 35% !important;
15986
  }
16848 stevensc 15987
 
16825 efrain 15988
  .wd-xs-40 {
15989
    width: 40px;
15990
  }
16848 stevensc 15991
 
16825 efrain 15992
  .wd-xs-40p {
15993
    width: 40%;
15994
  }
16848 stevensc 15995
 
16825 efrain 15996
  .mx-wd-xs-40p {
15997
    max-width: 40%;
15998
  }
16848 stevensc 15999
 
16825 efrain 16000
  .mn-wd-xs-40p {
16001
    min-width: 40%;
16002
  }
16848 stevensc 16003
 
16825 efrain 16004
  .wd-xs-40-f {
16005
    width: 40px !important;
16006
  }
16848 stevensc 16007
 
16825 efrain 16008
  .wd-xs-40p-f {
16009
    width: 40% !important;
16010
  }
16848 stevensc 16011
 
16825 efrain 16012
  .mx-wd-xs-40p-f {
16013
    max-width: 40% !important;
16014
  }
16848 stevensc 16015
 
16825 efrain 16016
  .mn-wd-xs-40p-f {
16017
    min-width: 40% !important;
16018
  }
16848 stevensc 16019
 
16825 efrain 16020
  .wd-xs-45 {
16021
    width: 45px;
16022
  }
16848 stevensc 16023
 
16825 efrain 16024
  .wd-xs-45p {
16025
    width: 45%;
16026
  }
16848 stevensc 16027
 
16825 efrain 16028
  .mx-wd-xs-45p {
16029
    max-width: 45%;
16030
  }
16848 stevensc 16031
 
16825 efrain 16032
  .mn-wd-xs-45p {
16033
    min-width: 45%;
16034
  }
16848 stevensc 16035
 
16825 efrain 16036
  .wd-xs-45-f {
16037
    width: 45px !important;
16038
  }
16848 stevensc 16039
 
16825 efrain 16040
  .wd-xs-45p-f {
16041
    width: 45% !important;
16042
  }
16848 stevensc 16043
 
16825 efrain 16044
  .mx-wd-xs-45p-f {
16045
    max-width: 45% !important;
16046
  }
16848 stevensc 16047
 
16825 efrain 16048
  .mn-wd-xs-45p-f {
16049
    min-width: 45% !important;
16050
  }
16848 stevensc 16051
 
16825 efrain 16052
  .wd-xs-50 {
16053
    width: 50px;
16054
  }
16848 stevensc 16055
 
16825 efrain 16056
  .wd-xs-50p {
16057
    width: 50%;
16058
  }
16848 stevensc 16059
 
16825 efrain 16060
  .mx-wd-xs-50p {
16061
    max-width: 50%;
16062
  }
16848 stevensc 16063
 
16825 efrain 16064
  .mn-wd-xs-50p {
16065
    min-width: 50%;
16066
  }
16848 stevensc 16067
 
16825 efrain 16068
  .wd-xs-50-f {
16069
    width: 50px !important;
16070
  }
16848 stevensc 16071
 
16825 efrain 16072
  .wd-xs-50p-f {
16073
    width: 50% !important;
16074
  }
16848 stevensc 16075
 
16825 efrain 16076
  .mx-wd-xs-50p-f {
16077
    max-width: 50% !important;
16078
  }
16848 stevensc 16079
 
16825 efrain 16080
  .mn-wd-xs-50p-f {
16081
    min-width: 50% !important;
16082
  }
16848 stevensc 16083
 
16825 efrain 16084
  .wd-xs-55 {
16085
    width: 55px;
16086
  }
16848 stevensc 16087
 
16825 efrain 16088
  .wd-xs-55p {
16089
    width: 55%;
16090
  }
16848 stevensc 16091
 
16825 efrain 16092
  .mx-wd-xs-55p {
16093
    max-width: 55%;
16094
  }
16848 stevensc 16095
 
16825 efrain 16096
  .mn-wd-xs-55p {
16097
    min-width: 55%;
16098
  }
16848 stevensc 16099
 
16825 efrain 16100
  .wd-xs-55-f {
16101
    width: 55px !important;
16102
  }
16848 stevensc 16103
 
16825 efrain 16104
  .wd-xs-55p-f {
16105
    width: 55% !important;
16106
  }
16848 stevensc 16107
 
16825 efrain 16108
  .mx-wd-xs-55p-f {
16109
    max-width: 55% !important;
16110
  }
16848 stevensc 16111
 
16825 efrain 16112
  .mn-wd-xs-55p-f {
16113
    min-width: 55% !important;
16114
  }
16848 stevensc 16115
 
16825 efrain 16116
  .wd-xs-60 {
16117
    width: 60px;
16118
  }
16848 stevensc 16119
 
16825 efrain 16120
  .wd-xs-60p {
16121
    width: 60%;
16122
  }
16848 stevensc 16123
 
16825 efrain 16124
  .mx-wd-xs-60p {
16125
    max-width: 60%;
16126
  }
16848 stevensc 16127
 
16825 efrain 16128
  .mn-wd-xs-60p {
16129
    min-width: 60%;
16130
  }
16848 stevensc 16131
 
16825 efrain 16132
  .wd-xs-60-f {
16133
    width: 60px !important;
16134
  }
16848 stevensc 16135
 
16825 efrain 16136
  .wd-xs-60p-f {
16137
    width: 60% !important;
16138
  }
16848 stevensc 16139
 
16825 efrain 16140
  .mx-wd-xs-60p-f {
16141
    max-width: 60% !important;
16142
  }
16848 stevensc 16143
 
16825 efrain 16144
  .mn-wd-xs-60p-f {
16145
    min-width: 60% !important;
16146
  }
16848 stevensc 16147
 
16825 efrain 16148
  .wd-xs-65 {
16149
    width: 65px;
16150
  }
16848 stevensc 16151
 
16825 efrain 16152
  .wd-xs-65p {
16153
    width: 65%;
16154
  }
16848 stevensc 16155
 
16825 efrain 16156
  .mx-wd-xs-65p {
16157
    max-width: 65%;
16158
  }
16848 stevensc 16159
 
16825 efrain 16160
  .mn-wd-xs-65p {
16161
    min-width: 65%;
16162
  }
16848 stevensc 16163
 
16825 efrain 16164
  .wd-xs-65-f {
16165
    width: 65px !important;
16166
  }
16848 stevensc 16167
 
16825 efrain 16168
  .wd-xs-65p-f {
16169
    width: 65% !important;
16170
  }
16848 stevensc 16171
 
16825 efrain 16172
  .mx-wd-xs-65p-f {
16173
    max-width: 65% !important;
16174
  }
16848 stevensc 16175
 
16825 efrain 16176
  .mn-wd-xs-65p-f {
16177
    min-width: 65% !important;
16178
  }
16848 stevensc 16179
 
16825 efrain 16180
  .wd-xs-70 {
16181
    width: 70px;
16182
  }
16848 stevensc 16183
 
16825 efrain 16184
  .wd-xs-70p {
16185
    width: 70%;
16186
  }
16848 stevensc 16187
 
16825 efrain 16188
  .mx-wd-xs-70p {
16189
    max-width: 70%;
16190
  }
16848 stevensc 16191
 
16825 efrain 16192
  .mn-wd-xs-70p {
16193
    min-width: 70%;
16194
  }
16848 stevensc 16195
 
16825 efrain 16196
  .wd-xs-70-f {
16197
    width: 70px !important;
16198
  }
16848 stevensc 16199
 
16825 efrain 16200
  .wd-xs-70p-f {
16201
    width: 70% !important;
16202
  }
16848 stevensc 16203
 
16825 efrain 16204
  .mx-wd-xs-70p-f {
16205
    max-width: 70% !important;
16206
  }
16848 stevensc 16207
 
16825 efrain 16208
  .mn-wd-xs-70p-f {
16209
    min-width: 70% !important;
16210
  }
16848 stevensc 16211
 
16825 efrain 16212
  .wd-xs-75 {
16213
    width: 75px;
16214
  }
16848 stevensc 16215
 
16825 efrain 16216
  .wd-xs-75p {
16217
    width: 75%;
16218
  }
16848 stevensc 16219
 
16825 efrain 16220
  .mx-wd-xs-75p {
16221
    max-width: 75%;
16222
  }
16848 stevensc 16223
 
16825 efrain 16224
  .mn-wd-xs-75p {
16225
    min-width: 75%;
16226
  }
16848 stevensc 16227
 
16825 efrain 16228
  .wd-xs-75-f {
16229
    width: 75px !important;
16230
  }
16848 stevensc 16231
 
16825 efrain 16232
  .wd-xs-75p-f {
16233
    width: 75% !important;
16234
  }
16848 stevensc 16235
 
16825 efrain 16236
  .mx-wd-xs-75p-f {
16237
    max-width: 75% !important;
16238
  }
16848 stevensc 16239
 
16825 efrain 16240
  .mn-wd-xs-75p-f {
16241
    min-width: 75% !important;
16242
  }
16848 stevensc 16243
 
16825 efrain 16244
  .wd-xs-80 {
16245
    width: 80px;
16246
  }
16848 stevensc 16247
 
16825 efrain 16248
  .wd-xs-80p {
16249
    width: 80%;
16250
  }
16848 stevensc 16251
 
16825 efrain 16252
  .mx-wd-xs-80p {
16253
    max-width: 80%;
16254
  }
16848 stevensc 16255
 
16825 efrain 16256
  .mn-wd-xs-80p {
16257
    min-width: 80%;
16258
  }
16848 stevensc 16259
 
16825 efrain 16260
  .wd-xs-80-f {
16261
    width: 80px !important;
16262
  }
16848 stevensc 16263
 
16825 efrain 16264
  .wd-xs-80p-f {
16265
    width: 80% !important;
16266
  }
16848 stevensc 16267
 
16825 efrain 16268
  .mx-wd-xs-80p-f {
16269
    max-width: 80% !important;
16270
  }
16848 stevensc 16271
 
16825 efrain 16272
  .mn-wd-xs-80p-f {
16273
    min-width: 80% !important;
16274
  }
16848 stevensc 16275
 
16825 efrain 16276
  .wd-xs-85 {
16277
    width: 85px;
16278
  }
16848 stevensc 16279
 
16825 efrain 16280
  .wd-xs-85p {
16281
    width: 85%;
16282
  }
16848 stevensc 16283
 
16825 efrain 16284
  .mx-wd-xs-85p {
16285
    max-width: 85%;
16286
  }
16848 stevensc 16287
 
16825 efrain 16288
  .mn-wd-xs-85p {
16289
    min-width: 85%;
16290
  }
16848 stevensc 16291
 
16825 efrain 16292
  .wd-xs-85-f {
16293
    width: 85px !important;
16294
  }
16848 stevensc 16295
 
16825 efrain 16296
  .wd-xs-85p-f {
16297
    width: 85% !important;
16298
  }
16848 stevensc 16299
 
16825 efrain 16300
  .mx-wd-xs-85p-f {
16301
    max-width: 85% !important;
16302
  }
16848 stevensc 16303
 
16825 efrain 16304
  .mn-wd-xs-85p-f {
16305
    min-width: 85% !important;
16306
  }
16848 stevensc 16307
 
16825 efrain 16308
  .wd-xs-90 {
16309
    width: 90px;
16310
  }
16848 stevensc 16311
 
16825 efrain 16312
  .wd-xs-90p {
16313
    width: 90%;
16314
  }
16848 stevensc 16315
 
16825 efrain 16316
  .mx-wd-xs-90p {
16317
    max-width: 90%;
16318
  }
16848 stevensc 16319
 
16825 efrain 16320
  .mn-wd-xs-90p {
16321
    min-width: 90%;
16322
  }
16848 stevensc 16323
 
16825 efrain 16324
  .wd-xs-90-f {
16325
    width: 90px !important;
16326
  }
16848 stevensc 16327
 
16825 efrain 16328
  .wd-xs-90p-f {
16329
    width: 90% !important;
16330
  }
16848 stevensc 16331
 
16825 efrain 16332
  .mx-wd-xs-90p-f {
16333
    max-width: 90% !important;
16334
  }
16848 stevensc 16335
 
16825 efrain 16336
  .mn-wd-xs-90p-f {
16337
    min-width: 90% !important;
16338
  }
16848 stevensc 16339
 
16825 efrain 16340
  .wd-xs-95 {
16341
    width: 95px;
16342
  }
16848 stevensc 16343
 
16825 efrain 16344
  .wd-xs-95p {
16345
    width: 95%;
16346
  }
16848 stevensc 16347
 
16825 efrain 16348
  .mx-wd-xs-95p {
16349
    max-width: 95%;
16350
  }
16848 stevensc 16351
 
16825 efrain 16352
  .mn-wd-xs-95p {
16353
    min-width: 95%;
16354
  }
16848 stevensc 16355
 
16825 efrain 16356
  .wd-xs-95-f {
16357
    width: 95px !important;
16358
  }
16848 stevensc 16359
 
16825 efrain 16360
  .wd-xs-95p-f {
16361
    width: 95% !important;
16362
  }
16848 stevensc 16363
 
16825 efrain 16364
  .mx-wd-xs-95p-f {
16365
    max-width: 95% !important;
16366
  }
16848 stevensc 16367
 
16825 efrain 16368
  .mn-wd-xs-95p-f {
16369
    min-width: 95% !important;
16370
  }
16848 stevensc 16371
 
16825 efrain 16372
  .wd-xs-100 {
16373
    width: 100px;
16374
  }
16848 stevensc 16375
 
16825 efrain 16376
  .wd-xs-100p {
16377
    width: 100%;
16378
  }
16848 stevensc 16379
 
16825 efrain 16380
  .mx-wd-xs-100p {
16381
    max-width: 100%;
16382
  }
16848 stevensc 16383
 
16825 efrain 16384
  .mn-wd-xs-100p {
16385
    min-width: 100%;
16386
  }
16848 stevensc 16387
 
16825 efrain 16388
  .wd-xs-100-f {
16389
    width: 100px !important;
16390
  }
16848 stevensc 16391
 
16825 efrain 16392
  .wd-xs-100p-f {
16393
    width: 100% !important;
16394
  }
16848 stevensc 16395
 
16825 efrain 16396
  .mx-wd-xs-100p-f {
16397
    max-width: 100% !important;
16398
  }
16848 stevensc 16399
 
16825 efrain 16400
  .mn-wd-xs-100p-f {
16401
    min-width: 100% !important;
16402
  }
16848 stevensc 16403
 
16825 efrain 16404
  .wd-xs-150 {
16405
    width: 150px;
16406
  }
16848 stevensc 16407
 
16825 efrain 16408
  .wd-xs-150p {
16409
    width: 150%;
16410
  }
16848 stevensc 16411
 
16825 efrain 16412
  .mx-wd-xs-150p {
16413
    max-width: 150%;
16414
  }
16848 stevensc 16415
 
16825 efrain 16416
  .mn-wd-xs-150p {
16417
    min-width: 150%;
16418
  }
16848 stevensc 16419
 
16825 efrain 16420
  .wd-xs-150-f {
16421
    width: 150px !important;
16422
  }
16848 stevensc 16423
 
16825 efrain 16424
  .wd-xs-150p-f {
16425
    width: 150% !important;
16426
  }
16848 stevensc 16427
 
16825 efrain 16428
  .mx-wd-xs-150p-f {
16429
    max-width: 150% !important;
16430
  }
16848 stevensc 16431
 
16825 efrain 16432
  .mn-wd-xs-150p-f {
16433
    min-width: 150% !important;
16434
  }
16848 stevensc 16435
 
16825 efrain 16436
  .wd-xs-200 {
16437
    width: 200px;
16438
  }
16848 stevensc 16439
 
16825 efrain 16440
  .wd-xs-200p {
16441
    width: 200%;
16442
  }
16848 stevensc 16443
 
16825 efrain 16444
  .mx-wd-xs-200p {
16445
    max-width: 200%;
16446
  }
16848 stevensc 16447
 
16825 efrain 16448
  .mn-wd-xs-200p {
16449
    min-width: 200%;
16450
  }
16848 stevensc 16451
 
16825 efrain 16452
  .wd-xs-200-f {
16453
    width: 200px !important;
16454
  }
16848 stevensc 16455
 
16825 efrain 16456
  .wd-xs-200p-f {
16457
    width: 200% !important;
16458
  }
16848 stevensc 16459
 
16825 efrain 16460
  .mx-wd-xs-200p-f {
16461
    max-width: 200% !important;
16462
  }
16848 stevensc 16463
 
16825 efrain 16464
  .mn-wd-xs-200p-f {
16465
    min-width: 200% !important;
16466
  }
16848 stevensc 16467
 
16825 efrain 16468
  .wd-xs-250 {
16469
    width: 250px;
16470
  }
16848 stevensc 16471
 
16825 efrain 16472
  .wd-xs-250p {
16473
    width: 250%;
16474
  }
16848 stevensc 16475
 
16825 efrain 16476
  .mx-wd-xs-250p {
16477
    max-width: 250%;
16478
  }
16848 stevensc 16479
 
16825 efrain 16480
  .mn-wd-xs-250p {
16481
    min-width: 250%;
16482
  }
16848 stevensc 16483
 
16825 efrain 16484
  .wd-xs-250-f {
16485
    width: 250px !important;
16486
  }
16848 stevensc 16487
 
16825 efrain 16488
  .wd-xs-250p-f {
16489
    width: 250% !important;
16490
  }
16848 stevensc 16491
 
16825 efrain 16492
  .mx-wd-xs-250p-f {
16493
    max-width: 250% !important;
16494
  }
16848 stevensc 16495
 
16825 efrain 16496
  .mn-wd-xs-250p-f {
16497
    min-width: 250% !important;
16498
  }
16848 stevensc 16499
 
16825 efrain 16500
  .wd-xs-300 {
16501
    width: 300px;
16502
  }
16848 stevensc 16503
 
16825 efrain 16504
  .wd-xs-300p {
16505
    width: 300%;
16506
  }
16848 stevensc 16507
 
16825 efrain 16508
  .mx-wd-xs-300p {
16509
    max-width: 300%;
16510
  }
16848 stevensc 16511
 
16825 efrain 16512
  .mn-wd-xs-300p {
16513
    min-width: 300%;
16514
  }
16848 stevensc 16515
 
16825 efrain 16516
  .wd-xs-300-f {
16517
    width: 300px !important;
16518
  }
16848 stevensc 16519
 
16825 efrain 16520
  .wd-xs-300p-f {
16521
    width: 300% !important;
16522
  }
16848 stevensc 16523
 
16825 efrain 16524
  .mx-wd-xs-300p-f {
16525
    max-width: 300% !important;
16526
  }
16848 stevensc 16527
 
16825 efrain 16528
  .mn-wd-xs-300p-f {
16529
    min-width: 300% !important;
16530
  }
16848 stevensc 16531
 
16825 efrain 16532
  .wd-xs-350 {
16533
    width: 350px;
16534
  }
16848 stevensc 16535
 
16825 efrain 16536
  .wd-xs-350p {
16537
    width: 350%;
16538
  }
16848 stevensc 16539
 
16825 efrain 16540
  .mx-wd-xs-350p {
16541
    max-width: 350%;
16542
  }
16848 stevensc 16543
 
16825 efrain 16544
  .mn-wd-xs-350p {
16545
    min-width: 350%;
16546
  }
16848 stevensc 16547
 
16825 efrain 16548
  .wd-xs-350-f {
16549
    width: 350px !important;
16550
  }
16848 stevensc 16551
 
16825 efrain 16552
  .wd-xs-350p-f {
16553
    width: 350% !important;
16554
  }
16848 stevensc 16555
 
16825 efrain 16556
  .mx-wd-xs-350p-f {
16557
    max-width: 350% !important;
16558
  }
16848 stevensc 16559
 
16825 efrain 16560
  .mn-wd-xs-350p-f {
16561
    min-width: 350% !important;
16562
  }
16848 stevensc 16563
 
16825 efrain 16564
  .wd-xs-400 {
16565
    width: 400px;
16566
  }
16848 stevensc 16567
 
16825 efrain 16568
  .wd-xs-400p {
16569
    width: 400%;
16570
  }
16848 stevensc 16571
 
16825 efrain 16572
  .mx-wd-xs-400p {
16573
    max-width: 400%;
16574
  }
16848 stevensc 16575
 
16825 efrain 16576
  .mn-wd-xs-400p {
16577
    min-width: 400%;
16578
  }
16848 stevensc 16579
 
16825 efrain 16580
  .wd-xs-400-f {
16581
    width: 400px !important;
16582
  }
16848 stevensc 16583
 
16825 efrain 16584
  .wd-xs-400p-f {
16585
    width: 400% !important;
16586
  }
16848 stevensc 16587
 
16825 efrain 16588
  .mx-wd-xs-400p-f {
16589
    max-width: 400% !important;
16590
  }
16848 stevensc 16591
 
16825 efrain 16592
  .mn-wd-xs-400p-f {
16593
    min-width: 400% !important;
16594
  }
16848 stevensc 16595
 
16825 efrain 16596
  .wd-xs-450 {
16597
    width: 450px;
16598
  }
16848 stevensc 16599
 
16825 efrain 16600
  .wd-xs-450p {
16601
    width: 450%;
16602
  }
16848 stevensc 16603
 
16825 efrain 16604
  .mx-wd-xs-450p {
16605
    max-width: 450%;
16606
  }
16848 stevensc 16607
 
16825 efrain 16608
  .mn-wd-xs-450p {
16609
    min-width: 450%;
16610
  }
16848 stevensc 16611
 
16825 efrain 16612
  .wd-xs-450-f {
16613
    width: 450px !important;
16614
  }
16848 stevensc 16615
 
16825 efrain 16616
  .wd-xs-450p-f {
16617
    width: 450% !important;
16618
  }
16848 stevensc 16619
 
16825 efrain 16620
  .mx-wd-xs-450p-f {
16621
    max-width: 450% !important;
16622
  }
16848 stevensc 16623
 
16825 efrain 16624
  .mn-wd-xs-450p-f {
16625
    min-width: 450% !important;
16626
  }
16848 stevensc 16627
 
16825 efrain 16628
  .wd-xs-500 {
16629
    width: 500px;
16630
  }
16848 stevensc 16631
 
16825 efrain 16632
  .wd-xs-500p {
16633
    width: 500%;
16634
  }
16848 stevensc 16635
 
16825 efrain 16636
  .mx-wd-xs-500p {
16637
    max-width: 500%;
16638
  }
16848 stevensc 16639
 
16825 efrain 16640
  .mn-wd-xs-500p {
16641
    min-width: 500%;
16642
  }
16848 stevensc 16643
 
16825 efrain 16644
  .wd-xs-500-f {
16645
    width: 500px !important;
16646
  }
16848 stevensc 16647
 
16825 efrain 16648
  .wd-xs-500p-f {
16649
    width: 500% !important;
16650
  }
16848 stevensc 16651
 
16825 efrain 16652
  .mx-wd-xs-500p-f {
16653
    max-width: 500% !important;
16654
  }
16848 stevensc 16655
 
16825 efrain 16656
  .mn-wd-xs-500p-f {
16657
    min-width: 500% !important;
16658
  }
16848 stevensc 16659
 
16825 efrain 16660
  .wd-xs-550 {
16661
    width: 550px;
16662
  }
16848 stevensc 16663
 
16825 efrain 16664
  .wd-xs-550p {
16665
    width: 550%;
16666
  }
16848 stevensc 16667
 
16825 efrain 16668
  .mx-wd-xs-550p {
16669
    max-width: 550%;
16670
  }
16848 stevensc 16671
 
16825 efrain 16672
  .mn-wd-xs-550p {
16673
    min-width: 550%;
16674
  }
16848 stevensc 16675
 
16825 efrain 16676
  .wd-xs-550-f {
16677
    width: 550px !important;
16678
  }
16848 stevensc 16679
 
16825 efrain 16680
  .wd-xs-550p-f {
16681
    width: 550% !important;
16682
  }
16848 stevensc 16683
 
16825 efrain 16684
  .mx-wd-xs-550p-f {
16685
    max-width: 550% !important;
16686
  }
16848 stevensc 16687
 
16825 efrain 16688
  .mn-wd-xs-550p-f {
16689
    min-width: 550% !important;
16690
  }
16848 stevensc 16691
 
16825 efrain 16692
  .wd-xs-600 {
16693
    width: 600px;
16694
  }
16848 stevensc 16695
 
16825 efrain 16696
  .wd-xs-600p {
16697
    width: 600%;
16698
  }
16848 stevensc 16699
 
16825 efrain 16700
  .mx-wd-xs-600p {
16701
    max-width: 600%;
16702
  }
16848 stevensc 16703
 
16825 efrain 16704
  .mn-wd-xs-600p {
16705
    min-width: 600%;
16706
  }
16848 stevensc 16707
 
16825 efrain 16708
  .wd-xs-600-f {
16709
    width: 600px !important;
16710
  }
16848 stevensc 16711
 
16825 efrain 16712
  .wd-xs-600p-f {
16713
    width: 600% !important;
16714
  }
16848 stevensc 16715
 
16825 efrain 16716
  .mx-wd-xs-600p-f {
16717
    max-width: 600% !important;
16718
  }
16848 stevensc 16719
 
16825 efrain 16720
  .mn-wd-xs-600p-f {
16721
    min-width: 600% !important;
16722
  }
16848 stevensc 16723
 
16825 efrain 16724
  .wd-xs-650 {
16725
    width: 650px;
16726
  }
16848 stevensc 16727
 
16825 efrain 16728
  .wd-xs-650p {
16729
    width: 650%;
16730
  }
16848 stevensc 16731
 
16825 efrain 16732
  .mx-wd-xs-650p {
16733
    max-width: 650%;
16734
  }
16848 stevensc 16735
 
16825 efrain 16736
  .mn-wd-xs-650p {
16737
    min-width: 650%;
16738
  }
16848 stevensc 16739
 
16825 efrain 16740
  .wd-xs-650-f {
16741
    width: 650px !important;
16742
  }
16848 stevensc 16743
 
16825 efrain 16744
  .wd-xs-650p-f {
16745
    width: 650% !important;
16746
  }
16848 stevensc 16747
 
16825 efrain 16748
  .mx-wd-xs-650p-f {
16749
    max-width: 650% !important;
16750
  }
16848 stevensc 16751
 
16825 efrain 16752
  .mn-wd-xs-650p-f {
16753
    min-width: 650% !important;
16754
  }
16848 stevensc 16755
 
16825 efrain 16756
  .wd-xs-700 {
16757
    width: 700px;
16758
  }
16848 stevensc 16759
 
16825 efrain 16760
  .wd-xs-700p {
16761
    width: 700%;
16762
  }
16848 stevensc 16763
 
16825 efrain 16764
  .mx-wd-xs-700p {
16765
    max-width: 700%;
16766
  }
16848 stevensc 16767
 
16825 efrain 16768
  .mn-wd-xs-700p {
16769
    min-width: 700%;
16770
  }
16848 stevensc 16771
 
16825 efrain 16772
  .wd-xs-700-f {
16773
    width: 700px !important;
16774
  }
16848 stevensc 16775
 
16825 efrain 16776
  .wd-xs-700p-f {
16777
    width: 700% !important;
16778
  }
16848 stevensc 16779
 
16825 efrain 16780
  .mx-wd-xs-700p-f {
16781
    max-width: 700% !important;
16782
  }
16848 stevensc 16783
 
16825 efrain 16784
  .mn-wd-xs-700p-f {
16785
    min-width: 700% !important;
16786
  }
16848 stevensc 16787
 
16825 efrain 16788
  .wd-xs-750 {
16789
    width: 750px;
16790
  }
16848 stevensc 16791
 
16825 efrain 16792
  .wd-xs-750p {
16793
    width: 750%;
16794
  }
16848 stevensc 16795
 
16825 efrain 16796
  .mx-wd-xs-750p {
16797
    max-width: 750%;
16798
  }
16848 stevensc 16799
 
16825 efrain 16800
  .mn-wd-xs-750p {
16801
    min-width: 750%;
16802
  }
16848 stevensc 16803
 
16825 efrain 16804
  .wd-xs-750-f {
16805
    width: 750px !important;
16806
  }
16848 stevensc 16807
 
16825 efrain 16808
  .wd-xs-750p-f {
16809
    width: 750% !important;
16810
  }
16848 stevensc 16811
 
16825 efrain 16812
  .mx-wd-xs-750p-f {
16813
    max-width: 750% !important;
16814
  }
16848 stevensc 16815
 
16825 efrain 16816
  .mn-wd-xs-750p-f {
16817
    min-width: 750% !important;
16818
  }
16848 stevensc 16819
 
16825 efrain 16820
  .wd-xs-800 {
16821
    width: 800px;
16822
  }
16848 stevensc 16823
 
16825 efrain 16824
  .wd-xs-800p {
16825
    width: 800%;
16826
  }
16848 stevensc 16827
 
16825 efrain 16828
  .mx-wd-xs-800p {
16829
    max-width: 800%;
16830
  }
16848 stevensc 16831
 
16825 efrain 16832
  .mn-wd-xs-800p {
16833
    min-width: 800%;
16834
  }
16848 stevensc 16835
 
16825 efrain 16836
  .wd-xs-800-f {
16837
    width: 800px !important;
16838
  }
16848 stevensc 16839
 
16825 efrain 16840
  .wd-xs-800p-f {
16841
    width: 800% !important;
16842
  }
16848 stevensc 16843
 
16825 efrain 16844
  .mx-wd-xs-800p-f {
16845
    max-width: 800% !important;
16846
  }
16848 stevensc 16847
 
16825 efrain 16848
  .mn-wd-xs-800p-f {
16849
    min-width: 800% !important;
16850
  }
16848 stevensc 16851
 
16825 efrain 16852
  .wd-xs-850 {
16853
    width: 850px;
16854
  }
16848 stevensc 16855
 
16825 efrain 16856
  .wd-xs-850p {
16857
    width: 850%;
16858
  }
16848 stevensc 16859
 
16825 efrain 16860
  .mx-wd-xs-850p {
16861
    max-width: 850%;
16862
  }
16848 stevensc 16863
 
16825 efrain 16864
  .mn-wd-xs-850p {
16865
    min-width: 850%;
16866
  }
16848 stevensc 16867
 
16825 efrain 16868
  .wd-xs-850-f {
16869
    width: 850px !important;
16870
  }
16848 stevensc 16871
 
16825 efrain 16872
  .wd-xs-850p-f {
16873
    width: 850% !important;
16874
  }
16848 stevensc 16875
 
16825 efrain 16876
  .mx-wd-xs-850p-f {
16877
    max-width: 850% !important;
16878
  }
16848 stevensc 16879
 
16825 efrain 16880
  .mn-wd-xs-850p-f {
16881
    min-width: 850% !important;
16882
  }
16848 stevensc 16883
 
16825 efrain 16884
  .wd-xs-900 {
16885
    width: 900px;
16886
  }
16848 stevensc 16887
 
16825 efrain 16888
  .wd-xs-900p {
16889
    width: 900%;
16890
  }
16848 stevensc 16891
 
16825 efrain 16892
  .mx-wd-xs-900p {
16893
    max-width: 900%;
16894
  }
16848 stevensc 16895
 
16825 efrain 16896
  .mn-wd-xs-900p {
16897
    min-width: 900%;
16898
  }
16848 stevensc 16899
 
16825 efrain 16900
  .wd-xs-900-f {
16901
    width: 900px !important;
16902
  }
16848 stevensc 16903
 
16825 efrain 16904
  .wd-xs-900p-f {
16905
    width: 900% !important;
16906
  }
16848 stevensc 16907
 
16825 efrain 16908
  .mx-wd-xs-900p-f {
16909
    max-width: 900% !important;
16910
  }
16848 stevensc 16911
 
16825 efrain 16912
  .mn-wd-xs-900p-f {
16913
    min-width: 900% !important;
16914
  }
16848 stevensc 16915
 
16825 efrain 16916
  .wd-xs-950 {
16917
    width: 950px;
16918
  }
16848 stevensc 16919
 
16825 efrain 16920
  .wd-xs-950p {
16921
    width: 950%;
16922
  }
16848 stevensc 16923
 
16825 efrain 16924
  .mx-wd-xs-950p {
16925
    max-width: 950%;
16926
  }
16848 stevensc 16927
 
16825 efrain 16928
  .mn-wd-xs-950p {
16929
    min-width: 950%;
16930
  }
16848 stevensc 16931
 
16825 efrain 16932
  .wd-xs-950-f {
16933
    width: 950px !important;
16934
  }
16848 stevensc 16935
 
16825 efrain 16936
  .wd-xs-950p-f {
16937
    width: 950% !important;
16938
  }
16848 stevensc 16939
 
16825 efrain 16940
  .mx-wd-xs-950p-f {
16941
    max-width: 950% !important;
16942
  }
16848 stevensc 16943
 
16825 efrain 16944
  .mn-wd-xs-950p-f {
16945
    min-width: 950% !important;
16946
  }
16848 stevensc 16947
 
16825 efrain 16948
  .wd-xs-1000 {
16949
    width: 1000px;
16950
  }
16848 stevensc 16951
 
16825 efrain 16952
  .wd-xs-1000p {
16953
    width: 1000%;
16954
  }
16848 stevensc 16955
 
16825 efrain 16956
  .mx-wd-xs-1000p {
16957
    max-width: 1000%;
16958
  }
16848 stevensc 16959
 
16825 efrain 16960
  .mn-wd-xs-1000p {
16961
    min-width: 1000%;
16962
  }
16848 stevensc 16963
 
16825 efrain 16964
  .wd-xs-1000-f {
16965
    width: 1000px !important;
16966
  }
16848 stevensc 16967
 
16825 efrain 16968
  .wd-xs-1000p-f {
16969
    width: 1000% !important;
16970
  }
16848 stevensc 16971
 
16825 efrain 16972
  .mx-wd-xs-1000p-f {
16973
    max-width: 1000% !important;
16974
  }
16848 stevensc 16975
 
16825 efrain 16976
  .mn-wd-xs-1000p-f {
16977
    min-width: 1000% !important;
16978
  }
16848 stevensc 16979
 
16825 efrain 16980
  .wd-xs-auto {
16981
    width: auto;
16982
  }
16848 stevensc 16983
 
16825 efrain 16984
  .wd-xs-auto-f {
16985
    width: auto !important;
16986
  }
16987
}
16848 stevensc 16988
 
16825 efrain 16989
@media (min-width: 576px) {
16990
  .wd-sm-5 {
16991
    width: 5px;
16992
  }
16848 stevensc 16993
 
16825 efrain 16994
  .wd-sm-5p {
16995
    width: 5%;
16996
  }
16848 stevensc 16997
 
16825 efrain 16998
  .mx-wd-sm-5p {
16999
    max-width: 5%;
17000
  }
16848 stevensc 17001
 
16825 efrain 17002
  .mn-wd-sm-5p {
17003
    min-width: 5%;
17004
  }
16848 stevensc 17005
 
16825 efrain 17006
  .wd-sm-5-f {
17007
    width: 5px !important;
17008
  }
16848 stevensc 17009
 
16825 efrain 17010
  .wd-sm-5p-f {
17011
    width: 5% !important;
17012
  }
16848 stevensc 17013
 
16825 efrain 17014
  .mx-wd-sm-5p-f {
17015
    max-width: 5% !important;
17016
  }
16848 stevensc 17017
 
16825 efrain 17018
  .mn-wd-sm-5p-f {
17019
    min-width: 5% !important;
17020
  }
16848 stevensc 17021
 
16825 efrain 17022
  .wd-sm-10 {
17023
    width: 10px;
17024
  }
16848 stevensc 17025
 
16825 efrain 17026
  .wd-sm-10p {
17027
    width: 10%;
17028
  }
16848 stevensc 17029
 
16825 efrain 17030
  .mx-wd-sm-10p {
17031
    max-width: 10%;
17032
  }
16848 stevensc 17033
 
16825 efrain 17034
  .mn-wd-sm-10p {
17035
    min-width: 10%;
17036
  }
16848 stevensc 17037
 
16825 efrain 17038
  .wd-sm-10-f {
17039
    width: 10px !important;
17040
  }
16848 stevensc 17041
 
16825 efrain 17042
  .wd-sm-10p-f {
17043
    width: 10% !important;
17044
  }
16848 stevensc 17045
 
16825 efrain 17046
  .mx-wd-sm-10p-f {
17047
    max-width: 10% !important;
17048
  }
16848 stevensc 17049
 
16825 efrain 17050
  .mn-wd-sm-10p-f {
17051
    min-width: 10% !important;
17052
  }
16848 stevensc 17053
 
16825 efrain 17054
  .wd-sm-15 {
17055
    width: 15px;
17056
  }
16848 stevensc 17057
 
16825 efrain 17058
  .wd-sm-15p {
17059
    width: 15%;
17060
  }
16848 stevensc 17061
 
16825 efrain 17062
  .mx-wd-sm-15p {
17063
    max-width: 15%;
17064
  }
16848 stevensc 17065
 
16825 efrain 17066
  .mn-wd-sm-15p {
17067
    min-width: 15%;
17068
  }
16848 stevensc 17069
 
16825 efrain 17070
  .wd-sm-15-f {
17071
    width: 15px !important;
17072
  }
16848 stevensc 17073
 
16825 efrain 17074
  .wd-sm-15p-f {
17075
    width: 15% !important;
17076
  }
16848 stevensc 17077
 
16825 efrain 17078
  .mx-wd-sm-15p-f {
17079
    max-width: 15% !important;
17080
  }
16848 stevensc 17081
 
16825 efrain 17082
  .mn-wd-sm-15p-f {
17083
    min-width: 15% !important;
17084
  }
16848 stevensc 17085
 
16825 efrain 17086
  .wd-sm-20 {
17087
    width: 20px;
17088
  }
16848 stevensc 17089
 
16825 efrain 17090
  .wd-sm-20p {
17091
    width: 20%;
17092
  }
16848 stevensc 17093
 
16825 efrain 17094
  .mx-wd-sm-20p {
17095
    max-width: 20%;
17096
  }
16848 stevensc 17097
 
16825 efrain 17098
  .mn-wd-sm-20p {
17099
    min-width: 20%;
17100
  }
16848 stevensc 17101
 
16825 efrain 17102
  .wd-sm-20-f {
17103
    width: 20px !important;
17104
  }
16848 stevensc 17105
 
16825 efrain 17106
  .wd-sm-20p-f {
17107
    width: 20% !important;
17108
  }
16848 stevensc 17109
 
16825 efrain 17110
  .mx-wd-sm-20p-f {
17111
    max-width: 20% !important;
17112
  }
16848 stevensc 17113
 
16825 efrain 17114
  .mn-wd-sm-20p-f {
17115
    min-width: 20% !important;
17116
  }
16848 stevensc 17117
 
16825 efrain 17118
  .wd-sm-25 {
17119
    width: 25px;
17120
  }
16848 stevensc 17121
 
16825 efrain 17122
  .wd-sm-25p {
17123
    width: 25%;
17124
  }
16848 stevensc 17125
 
16825 efrain 17126
  .mx-wd-sm-25p {
17127
    max-width: 25%;
17128
  }
16848 stevensc 17129
 
16825 efrain 17130
  .mn-wd-sm-25p {
17131
    min-width: 25%;
17132
  }
16848 stevensc 17133
 
16825 efrain 17134
  .wd-sm-25-f {
17135
    width: 25px !important;
17136
  }
16848 stevensc 17137
 
16825 efrain 17138
  .wd-sm-25p-f {
17139
    width: 25% !important;
17140
  }
16848 stevensc 17141
 
16825 efrain 17142
  .mx-wd-sm-25p-f {
17143
    max-width: 25% !important;
17144
  }
16848 stevensc 17145
 
16825 efrain 17146
  .mn-wd-sm-25p-f {
17147
    min-width: 25% !important;
17148
  }
16848 stevensc 17149
 
16825 efrain 17150
  .wd-sm-30 {
17151
    width: 30px;
17152
  }
16848 stevensc 17153
 
16825 efrain 17154
  .wd-sm-30p {
17155
    width: 30%;
17156
  }
16848 stevensc 17157
 
16825 efrain 17158
  .mx-wd-sm-30p {
17159
    max-width: 30%;
17160
  }
16848 stevensc 17161
 
16825 efrain 17162
  .mn-wd-sm-30p {
17163
    min-width: 30%;
17164
  }
16848 stevensc 17165
 
16825 efrain 17166
  .wd-sm-30-f {
17167
    width: 30px !important;
17168
  }
16848 stevensc 17169
 
16825 efrain 17170
  .wd-sm-30p-f {
17171
    width: 30% !important;
17172
  }
16848 stevensc 17173
 
16825 efrain 17174
  .mx-wd-sm-30p-f {
17175
    max-width: 30% !important;
17176
  }
16848 stevensc 17177
 
16825 efrain 17178
  .mn-wd-sm-30p-f {
17179
    min-width: 30% !important;
17180
  }
16848 stevensc 17181
 
16825 efrain 17182
  .wd-sm-35 {
17183
    width: 35px;
17184
  }
16848 stevensc 17185
 
16825 efrain 17186
  .wd-sm-35p {
17187
    width: 35%;
17188
  }
16848 stevensc 17189
 
16825 efrain 17190
  .mx-wd-sm-35p {
17191
    max-width: 35%;
17192
  }
16848 stevensc 17193
 
16825 efrain 17194
  .mn-wd-sm-35p {
17195
    min-width: 35%;
17196
  }
16848 stevensc 17197
 
16825 efrain 17198
  .wd-sm-35-f {
17199
    width: 35px !important;
17200
  }
16848 stevensc 17201
 
16825 efrain 17202
  .wd-sm-35p-f {
17203
    width: 35% !important;
17204
  }
16848 stevensc 17205
 
16825 efrain 17206
  .mx-wd-sm-35p-f {
17207
    max-width: 35% !important;
17208
  }
16848 stevensc 17209
 
16825 efrain 17210
  .mn-wd-sm-35p-f {
17211
    min-width: 35% !important;
17212
  }
16848 stevensc 17213
 
16825 efrain 17214
  .wd-sm-40 {
17215
    width: 40px;
17216
  }
16848 stevensc 17217
 
16825 efrain 17218
  .wd-sm-40p {
17219
    width: 40%;
17220
  }
16848 stevensc 17221
 
16825 efrain 17222
  .mx-wd-sm-40p {
17223
    max-width: 40%;
17224
  }
16848 stevensc 17225
 
16825 efrain 17226
  .mn-wd-sm-40p {
17227
    min-width: 40%;
17228
  }
16848 stevensc 17229
 
16825 efrain 17230
  .wd-sm-40-f {
17231
    width: 40px !important;
17232
  }
16848 stevensc 17233
 
16825 efrain 17234
  .wd-sm-40p-f {
17235
    width: 40% !important;
17236
  }
16848 stevensc 17237
 
16825 efrain 17238
  .mx-wd-sm-40p-f {
17239
    max-width: 40% !important;
17240
  }
16848 stevensc 17241
 
16825 efrain 17242
  .mn-wd-sm-40p-f {
17243
    min-width: 40% !important;
17244
  }
16848 stevensc 17245
 
16825 efrain 17246
  .wd-sm-45 {
17247
    width: 45px;
17248
  }
16848 stevensc 17249
 
16825 efrain 17250
  .wd-sm-45p {
17251
    width: 45%;
17252
  }
16848 stevensc 17253
 
16825 efrain 17254
  .mx-wd-sm-45p {
17255
    max-width: 45%;
17256
  }
16848 stevensc 17257
 
16825 efrain 17258
  .mn-wd-sm-45p {
17259
    min-width: 45%;
17260
  }
16848 stevensc 17261
 
16825 efrain 17262
  .wd-sm-45-f {
17263
    width: 45px !important;
17264
  }
16848 stevensc 17265
 
16825 efrain 17266
  .wd-sm-45p-f {
17267
    width: 45% !important;
17268
  }
16848 stevensc 17269
 
16825 efrain 17270
  .mx-wd-sm-45p-f {
17271
    max-width: 45% !important;
17272
  }
16848 stevensc 17273
 
16825 efrain 17274
  .mn-wd-sm-45p-f {
17275
    min-width: 45% !important;
17276
  }
16848 stevensc 17277
 
16825 efrain 17278
  .wd-sm-50 {
17279
    width: 50px;
17280
  }
16848 stevensc 17281
 
16825 efrain 17282
  .wd-sm-50p {
17283
    width: 50%;
17284
  }
16848 stevensc 17285
 
16825 efrain 17286
  .mx-wd-sm-50p {
17287
    max-width: 50%;
17288
  }
16848 stevensc 17289
 
16825 efrain 17290
  .mn-wd-sm-50p {
17291
    min-width: 50%;
17292
  }
16848 stevensc 17293
 
16825 efrain 17294
  .wd-sm-50-f {
17295
    width: 50px !important;
17296
  }
16848 stevensc 17297
 
16825 efrain 17298
  .wd-sm-50p-f {
17299
    width: 50% !important;
17300
  }
16848 stevensc 17301
 
16825 efrain 17302
  .mx-wd-sm-50p-f {
17303
    max-width: 50% !important;
17304
  }
16848 stevensc 17305
 
16825 efrain 17306
  .mn-wd-sm-50p-f {
17307
    min-width: 50% !important;
17308
  }
16848 stevensc 17309
 
16825 efrain 17310
  .wd-sm-55 {
17311
    width: 55px;
17312
  }
16848 stevensc 17313
 
16825 efrain 17314
  .wd-sm-55p {
17315
    width: 55%;
17316
  }
16848 stevensc 17317
 
16825 efrain 17318
  .mx-wd-sm-55p {
17319
    max-width: 55%;
17320
  }
16848 stevensc 17321
 
16825 efrain 17322
  .mn-wd-sm-55p {
17323
    min-width: 55%;
17324
  }
16848 stevensc 17325
 
16825 efrain 17326
  .wd-sm-55-f {
17327
    width: 55px !important;
17328
  }
16848 stevensc 17329
 
16825 efrain 17330
  .wd-sm-55p-f {
17331
    width: 55% !important;
17332
  }
16848 stevensc 17333
 
16825 efrain 17334
  .mx-wd-sm-55p-f {
17335
    max-width: 55% !important;
17336
  }
16848 stevensc 17337
 
16825 efrain 17338
  .mn-wd-sm-55p-f {
17339
    min-width: 55% !important;
17340
  }
16848 stevensc 17341
 
16825 efrain 17342
  .wd-sm-60 {
17343
    width: 60px;
17344
  }
16848 stevensc 17345
 
16825 efrain 17346
  .wd-sm-60p {
17347
    width: 60%;
17348
  }
16848 stevensc 17349
 
16825 efrain 17350
  .mx-wd-sm-60p {
17351
    max-width: 60%;
17352
  }
16848 stevensc 17353
 
16825 efrain 17354
  .mn-wd-sm-60p {
17355
    min-width: 60%;
17356
  }
16848 stevensc 17357
 
16825 efrain 17358
  .wd-sm-60-f {
17359
    width: 60px !important;
17360
  }
16848 stevensc 17361
 
16825 efrain 17362
  .wd-sm-60p-f {
17363
    width: 60% !important;
17364
  }
16848 stevensc 17365
 
16825 efrain 17366
  .mx-wd-sm-60p-f {
17367
    max-width: 60% !important;
17368
  }
16848 stevensc 17369
 
16825 efrain 17370
  .mn-wd-sm-60p-f {
17371
    min-width: 60% !important;
17372
  }
16848 stevensc 17373
 
16825 efrain 17374
  .wd-sm-65 {
17375
    width: 65px;
17376
  }
16848 stevensc 17377
 
16825 efrain 17378
  .wd-sm-65p {
17379
    width: 65%;
17380
  }
16848 stevensc 17381
 
16825 efrain 17382
  .mx-wd-sm-65p {
17383
    max-width: 65%;
17384
  }
16848 stevensc 17385
 
16825 efrain 17386
  .mn-wd-sm-65p {
17387
    min-width: 65%;
17388
  }
16848 stevensc 17389
 
16825 efrain 17390
  .wd-sm-65-f {
17391
    width: 65px !important;
17392
  }
16848 stevensc 17393
 
16825 efrain 17394
  .wd-sm-65p-f {
17395
    width: 65% !important;
17396
  }
16848 stevensc 17397
 
16825 efrain 17398
  .mx-wd-sm-65p-f {
17399
    max-width: 65% !important;
17400
  }
16848 stevensc 17401
 
16825 efrain 17402
  .mn-wd-sm-65p-f {
17403
    min-width: 65% !important;
17404
  }
16848 stevensc 17405
 
16825 efrain 17406
  .wd-sm-70 {
17407
    width: 70px;
17408
  }
16848 stevensc 17409
 
16825 efrain 17410
  .wd-sm-70p {
17411
    width: 70%;
17412
  }
16848 stevensc 17413
 
16825 efrain 17414
  .mx-wd-sm-70p {
17415
    max-width: 70%;
17416
  }
16848 stevensc 17417
 
16825 efrain 17418
  .mn-wd-sm-70p {
17419
    min-width: 70%;
17420
  }
16848 stevensc 17421
 
16825 efrain 17422
  .wd-sm-70-f {
17423
    width: 70px !important;
17424
  }
16848 stevensc 17425
 
16825 efrain 17426
  .wd-sm-70p-f {
17427
    width: 70% !important;
17428
  }
16848 stevensc 17429
 
16825 efrain 17430
  .mx-wd-sm-70p-f {
17431
    max-width: 70% !important;
17432
  }
16848 stevensc 17433
 
16825 efrain 17434
  .mn-wd-sm-70p-f {
17435
    min-width: 70% !important;
17436
  }
16848 stevensc 17437
 
16825 efrain 17438
  .wd-sm-75 {
17439
    width: 75px;
17440
  }
16848 stevensc 17441
 
16825 efrain 17442
  .wd-sm-75p {
17443
    width: 75%;
17444
  }
16848 stevensc 17445
 
16825 efrain 17446
  .mx-wd-sm-75p {
17447
    max-width: 75%;
17448
  }
16848 stevensc 17449
 
16825 efrain 17450
  .mn-wd-sm-75p {
17451
    min-width: 75%;
17452
  }
16848 stevensc 17453
 
16825 efrain 17454
  .wd-sm-75-f {
17455
    width: 75px !important;
17456
  }
16848 stevensc 17457
 
16825 efrain 17458
  .wd-sm-75p-f {
17459
    width: 75% !important;
17460
  }
16848 stevensc 17461
 
16825 efrain 17462
  .mx-wd-sm-75p-f {
17463
    max-width: 75% !important;
17464
  }
16848 stevensc 17465
 
16825 efrain 17466
  .mn-wd-sm-75p-f {
17467
    min-width: 75% !important;
17468
  }
16848 stevensc 17469
 
16825 efrain 17470
  .wd-sm-80 {
17471
    width: 80px;
17472
  }
16848 stevensc 17473
 
16825 efrain 17474
  .wd-sm-80p {
17475
    width: 80%;
17476
  }
16848 stevensc 17477
 
16825 efrain 17478
  .mx-wd-sm-80p {
17479
    max-width: 80%;
17480
  }
16848 stevensc 17481
 
16825 efrain 17482
  .mn-wd-sm-80p {
17483
    min-width: 80%;
17484
  }
16848 stevensc 17485
 
16825 efrain 17486
  .wd-sm-80-f {
17487
    width: 80px !important;
17488
  }
16848 stevensc 17489
 
16825 efrain 17490
  .wd-sm-80p-f {
17491
    width: 80% !important;
17492
  }
16848 stevensc 17493
 
16825 efrain 17494
  .mx-wd-sm-80p-f {
17495
    max-width: 80% !important;
17496
  }
16848 stevensc 17497
 
16825 efrain 17498
  .mn-wd-sm-80p-f {
17499
    min-width: 80% !important;
17500
  }
16848 stevensc 17501
 
16825 efrain 17502
  .wd-sm-85 {
17503
    width: 85px;
17504
  }
16848 stevensc 17505
 
16825 efrain 17506
  .wd-sm-85p {
17507
    width: 85%;
17508
  }
16848 stevensc 17509
 
16825 efrain 17510
  .mx-wd-sm-85p {
17511
    max-width: 85%;
17512
  }
16848 stevensc 17513
 
16825 efrain 17514
  .mn-wd-sm-85p {
17515
    min-width: 85%;
17516
  }
16848 stevensc 17517
 
16825 efrain 17518
  .wd-sm-85-f {
17519
    width: 85px !important;
17520
  }
16848 stevensc 17521
 
16825 efrain 17522
  .wd-sm-85p-f {
17523
    width: 85% !important;
17524
  }
16848 stevensc 17525
 
16825 efrain 17526
  .mx-wd-sm-85p-f {
17527
    max-width: 85% !important;
17528
  }
16848 stevensc 17529
 
16825 efrain 17530
  .mn-wd-sm-85p-f {
17531
    min-width: 85% !important;
17532
  }
16848 stevensc 17533
 
16825 efrain 17534
  .wd-sm-90 {
17535
    width: 90px;
17536
  }
16848 stevensc 17537
 
16825 efrain 17538
  .wd-sm-90p {
17539
    width: 90%;
17540
  }
16848 stevensc 17541
 
16825 efrain 17542
  .mx-wd-sm-90p {
17543
    max-width: 90%;
17544
  }
16848 stevensc 17545
 
16825 efrain 17546
  .mn-wd-sm-90p {
17547
    min-width: 90%;
17548
  }
16848 stevensc 17549
 
16825 efrain 17550
  .wd-sm-90-f {
17551
    width: 90px !important;
17552
  }
16848 stevensc 17553
 
16825 efrain 17554
  .wd-sm-90p-f {
17555
    width: 90% !important;
17556
  }
16848 stevensc 17557
 
16825 efrain 17558
  .mx-wd-sm-90p-f {
17559
    max-width: 90% !important;
17560
  }
16848 stevensc 17561
 
16825 efrain 17562
  .mn-wd-sm-90p-f {
17563
    min-width: 90% !important;
17564
  }
16848 stevensc 17565
 
16825 efrain 17566
  .wd-sm-95 {
17567
    width: 95px;
17568
  }
16848 stevensc 17569
 
16825 efrain 17570
  .wd-sm-95p {
17571
    width: 95%;
17572
  }
16848 stevensc 17573
 
16825 efrain 17574
  .mx-wd-sm-95p {
17575
    max-width: 95%;
17576
  }
16848 stevensc 17577
 
16825 efrain 17578
  .mn-wd-sm-95p {
17579
    min-width: 95%;
17580
  }
16848 stevensc 17581
 
16825 efrain 17582
  .wd-sm-95-f {
17583
    width: 95px !important;
17584
  }
16848 stevensc 17585
 
16825 efrain 17586
  .wd-sm-95p-f {
17587
    width: 95% !important;
17588
  }
16848 stevensc 17589
 
16825 efrain 17590
  .mx-wd-sm-95p-f {
17591
    max-width: 95% !important;
17592
  }
16848 stevensc 17593
 
16825 efrain 17594
  .mn-wd-sm-95p-f {
17595
    min-width: 95% !important;
17596
  }
16848 stevensc 17597
 
16825 efrain 17598
  .wd-sm-100 {
17599
    width: 100px;
17600
  }
16848 stevensc 17601
 
16825 efrain 17602
  .wd-sm-100p {
17603
    width: 100%;
17604
  }
16848 stevensc 17605
 
16825 efrain 17606
  .mx-wd-sm-100p {
17607
    max-width: 100%;
17608
  }
16848 stevensc 17609
 
16825 efrain 17610
  .mn-wd-sm-100p {
17611
    min-width: 100%;
17612
  }
16848 stevensc 17613
 
16825 efrain 17614
  .wd-sm-100-f {
17615
    width: 100px !important;
17616
  }
16848 stevensc 17617
 
16825 efrain 17618
  .wd-sm-100p-f {
17619
    width: 100% !important;
17620
  }
16848 stevensc 17621
 
16825 efrain 17622
  .mx-wd-sm-100p-f {
17623
    max-width: 100% !important;
17624
  }
16848 stevensc 17625
 
16825 efrain 17626
  .mn-wd-sm-100p-f {
17627
    min-width: 100% !important;
17628
  }
16848 stevensc 17629
 
16825 efrain 17630
  .wd-sm-150 {
17631
    width: 150px;
17632
  }
16848 stevensc 17633
 
16825 efrain 17634
  .wd-sm-150p {
17635
    width: 150%;
17636
  }
16848 stevensc 17637
 
16825 efrain 17638
  .mx-wd-sm-150p {
17639
    max-width: 150%;
17640
  }
16848 stevensc 17641
 
16825 efrain 17642
  .mn-wd-sm-150p {
17643
    min-width: 150%;
17644
  }
16848 stevensc 17645
 
16825 efrain 17646
  .wd-sm-150-f {
17647
    width: 150px !important;
17648
  }
16848 stevensc 17649
 
16825 efrain 17650
  .wd-sm-150p-f {
17651
    width: 150% !important;
17652
  }
16848 stevensc 17653
 
16825 efrain 17654
  .mx-wd-sm-150p-f {
17655
    max-width: 150% !important;
17656
  }
16848 stevensc 17657
 
16825 efrain 17658
  .mn-wd-sm-150p-f {
17659
    min-width: 150% !important;
17660
  }
16848 stevensc 17661
 
16825 efrain 17662
  .wd-sm-200 {
17663
    width: 200px;
17664
  }
16848 stevensc 17665
 
16825 efrain 17666
  .wd-sm-200p {
17667
    width: 200%;
17668
  }
16848 stevensc 17669
 
16825 efrain 17670
  .mx-wd-sm-200p {
17671
    max-width: 200%;
17672
  }
16848 stevensc 17673
 
16825 efrain 17674
  .mn-wd-sm-200p {
17675
    min-width: 200%;
17676
  }
16848 stevensc 17677
 
16825 efrain 17678
  .wd-sm-200-f {
17679
    width: 200px !important;
17680
  }
16848 stevensc 17681
 
16825 efrain 17682
  .wd-sm-200p-f {
17683
    width: 200% !important;
17684
  }
16848 stevensc 17685
 
16825 efrain 17686
  .mx-wd-sm-200p-f {
17687
    max-width: 200% !important;
17688
  }
16848 stevensc 17689
 
16825 efrain 17690
  .mn-wd-sm-200p-f {
17691
    min-width: 200% !important;
17692
  }
16848 stevensc 17693
 
16825 efrain 17694
  .wd-sm-250 {
17695
    width: 250px;
17696
  }
16848 stevensc 17697
 
16825 efrain 17698
  .wd-sm-250p {
17699
    width: 250%;
17700
  }
16848 stevensc 17701
 
16825 efrain 17702
  .mx-wd-sm-250p {
17703
    max-width: 250%;
17704
  }
16848 stevensc 17705
 
16825 efrain 17706
  .mn-wd-sm-250p {
17707
    min-width: 250%;
17708
  }
16848 stevensc 17709
 
16825 efrain 17710
  .wd-sm-250-f {
17711
    width: 250px !important;
17712
  }
16848 stevensc 17713
 
16825 efrain 17714
  .wd-sm-250p-f {
17715
    width: 250% !important;
17716
  }
16848 stevensc 17717
 
16825 efrain 17718
  .mx-wd-sm-250p-f {
17719
    max-width: 250% !important;
17720
  }
16848 stevensc 17721
 
16825 efrain 17722
  .mn-wd-sm-250p-f {
17723
    min-width: 250% !important;
17724
  }
16848 stevensc 17725
 
16825 efrain 17726
  .wd-sm-300 {
17727
    width: 300px;
17728
  }
16848 stevensc 17729
 
16825 efrain 17730
  .wd-sm-300p {
17731
    width: 300%;
17732
  }
16848 stevensc 17733
 
16825 efrain 17734
  .mx-wd-sm-300p {
17735
    max-width: 300%;
17736
  }
16848 stevensc 17737
 
16825 efrain 17738
  .mn-wd-sm-300p {
17739
    min-width: 300%;
17740
  }
16848 stevensc 17741
 
16825 efrain 17742
  .wd-sm-300-f {
17743
    width: 300px !important;
17744
  }
16848 stevensc 17745
 
16825 efrain 17746
  .wd-sm-300p-f {
17747
    width: 300% !important;
17748
  }
16848 stevensc 17749
 
16825 efrain 17750
  .mx-wd-sm-300p-f {
17751
    max-width: 300% !important;
17752
  }
16848 stevensc 17753
 
16825 efrain 17754
  .mn-wd-sm-300p-f {
17755
    min-width: 300% !important;
17756
  }
16848 stevensc 17757
 
16825 efrain 17758
  .wd-sm-350 {
17759
    width: 350px;
17760
  }
16848 stevensc 17761
 
16825 efrain 17762
  .wd-sm-350p {
17763
    width: 350%;
17764
  }
16848 stevensc 17765
 
16825 efrain 17766
  .mx-wd-sm-350p {
17767
    max-width: 350%;
17768
  }
16848 stevensc 17769
 
16825 efrain 17770
  .mn-wd-sm-350p {
17771
    min-width: 350%;
17772
  }
16848 stevensc 17773
 
16825 efrain 17774
  .wd-sm-350-f {
17775
    width: 350px !important;
17776
  }
16848 stevensc 17777
 
16825 efrain 17778
  .wd-sm-350p-f {
17779
    width: 350% !important;
17780
  }
16848 stevensc 17781
 
16825 efrain 17782
  .mx-wd-sm-350p-f {
17783
    max-width: 350% !important;
17784
  }
16848 stevensc 17785
 
16825 efrain 17786
  .mn-wd-sm-350p-f {
17787
    min-width: 350% !important;
17788
  }
16848 stevensc 17789
 
16825 efrain 17790
  .wd-sm-400 {
17791
    width: 400px;
17792
  }
16848 stevensc 17793
 
16825 efrain 17794
  .wd-sm-400p {
17795
    width: 400%;
17796
  }
16848 stevensc 17797
 
16825 efrain 17798
  .mx-wd-sm-400p {
17799
    max-width: 400%;
17800
  }
16848 stevensc 17801
 
16825 efrain 17802
  .mn-wd-sm-400p {
17803
    min-width: 400%;
17804
  }
16848 stevensc 17805
 
16825 efrain 17806
  .wd-sm-400-f {
17807
    width: 400px !important;
17808
  }
16848 stevensc 17809
 
16825 efrain 17810
  .wd-sm-400p-f {
17811
    width: 400% !important;
17812
  }
16848 stevensc 17813
 
16825 efrain 17814
  .mx-wd-sm-400p-f {
17815
    max-width: 400% !important;
17816
  }
16848 stevensc 17817
 
16825 efrain 17818
  .mn-wd-sm-400p-f {
17819
    min-width: 400% !important;
17820
  }
16848 stevensc 17821
 
16825 efrain 17822
  .wd-sm-450 {
17823
    width: 450px;
17824
  }
16848 stevensc 17825
 
16825 efrain 17826
  .wd-sm-450p {
17827
    width: 450%;
17828
  }
16848 stevensc 17829
 
16825 efrain 17830
  .mx-wd-sm-450p {
17831
    max-width: 450%;
17832
  }
16848 stevensc 17833
 
16825 efrain 17834
  .mn-wd-sm-450p {
17835
    min-width: 450%;
17836
  }
16848 stevensc 17837
 
16825 efrain 17838
  .wd-sm-450-f {
17839
    width: 450px !important;
17840
  }
16848 stevensc 17841
 
16825 efrain 17842
  .wd-sm-450p-f {
17843
    width: 450% !important;
17844
  }
16848 stevensc 17845
 
16825 efrain 17846
  .mx-wd-sm-450p-f {
17847
    max-width: 450% !important;
17848
  }
16848 stevensc 17849
 
16825 efrain 17850
  .mn-wd-sm-450p-f {
17851
    min-width: 450% !important;
17852
  }
16848 stevensc 17853
 
16825 efrain 17854
  .wd-sm-500 {
17855
    width: 500px;
17856
  }
16848 stevensc 17857
 
16825 efrain 17858
  .wd-sm-500p {
17859
    width: 500%;
17860
  }
16848 stevensc 17861
 
16825 efrain 17862
  .mx-wd-sm-500p {
17863
    max-width: 500%;
17864
  }
16848 stevensc 17865
 
16825 efrain 17866
  .mn-wd-sm-500p {
17867
    min-width: 500%;
17868
  }
16848 stevensc 17869
 
16825 efrain 17870
  .wd-sm-500-f {
17871
    width: 500px !important;
17872
  }
16848 stevensc 17873
 
16825 efrain 17874
  .wd-sm-500p-f {
17875
    width: 500% !important;
17876
  }
16848 stevensc 17877
 
16825 efrain 17878
  .mx-wd-sm-500p-f {
17879
    max-width: 500% !important;
17880
  }
16848 stevensc 17881
 
16825 efrain 17882
  .mn-wd-sm-500p-f {
17883
    min-width: 500% !important;
17884
  }
16848 stevensc 17885
 
16825 efrain 17886
  .wd-sm-550 {
17887
    width: 550px;
17888
  }
16848 stevensc 17889
 
16825 efrain 17890
  .wd-sm-550p {
17891
    width: 550%;
17892
  }
16848 stevensc 17893
 
16825 efrain 17894
  .mx-wd-sm-550p {
17895
    max-width: 550%;
17896
  }
16848 stevensc 17897
 
16825 efrain 17898
  .mn-wd-sm-550p {
17899
    min-width: 550%;
17900
  }
16848 stevensc 17901
 
16825 efrain 17902
  .wd-sm-550-f {
17903
    width: 550px !important;
17904
  }
16848 stevensc 17905
 
16825 efrain 17906
  .wd-sm-550p-f {
17907
    width: 550% !important;
17908
  }
16848 stevensc 17909
 
16825 efrain 17910
  .mx-wd-sm-550p-f {
17911
    max-width: 550% !important;
17912
  }
16848 stevensc 17913
 
16825 efrain 17914
  .mn-wd-sm-550p-f {
17915
    min-width: 550% !important;
17916
  }
16848 stevensc 17917
 
16825 efrain 17918
  .wd-sm-600 {
17919
    width: 600px;
17920
  }
16848 stevensc 17921
 
16825 efrain 17922
  .wd-sm-600p {
17923
    width: 600%;
17924
  }
16848 stevensc 17925
 
16825 efrain 17926
  .mx-wd-sm-600p {
17927
    max-width: 600%;
17928
  }
16848 stevensc 17929
 
16825 efrain 17930
  .mn-wd-sm-600p {
17931
    min-width: 600%;
17932
  }
16848 stevensc 17933
 
16825 efrain 17934
  .wd-sm-600-f {
17935
    width: 600px !important;
17936
  }
16848 stevensc 17937
 
16825 efrain 17938
  .wd-sm-600p-f {
17939
    width: 600% !important;
17940
  }
16848 stevensc 17941
 
16825 efrain 17942
  .mx-wd-sm-600p-f {
17943
    max-width: 600% !important;
17944
  }
16848 stevensc 17945
 
16825 efrain 17946
  .mn-wd-sm-600p-f {
17947
    min-width: 600% !important;
17948
  }
16848 stevensc 17949
 
16825 efrain 17950
  .wd-sm-650 {
17951
    width: 650px;
17952
  }
16848 stevensc 17953
 
16825 efrain 17954
  .wd-sm-650p {
17955
    width: 650%;
17956
  }
16848 stevensc 17957
 
16825 efrain 17958
  .mx-wd-sm-650p {
17959
    max-width: 650%;
17960
  }
16848 stevensc 17961
 
16825 efrain 17962
  .mn-wd-sm-650p {
17963
    min-width: 650%;
17964
  }
16848 stevensc 17965
 
16825 efrain 17966
  .wd-sm-650-f {
17967
    width: 650px !important;
17968
  }
16848 stevensc 17969
 
16825 efrain 17970
  .wd-sm-650p-f {
17971
    width: 650% !important;
17972
  }
16848 stevensc 17973
 
16825 efrain 17974
  .mx-wd-sm-650p-f {
17975
    max-width: 650% !important;
17976
  }
16848 stevensc 17977
 
16825 efrain 17978
  .mn-wd-sm-650p-f {
17979
    min-width: 650% !important;
17980
  }
16848 stevensc 17981
 
16825 efrain 17982
  .wd-sm-700 {
17983
    width: 700px;
17984
  }
16848 stevensc 17985
 
16825 efrain 17986
  .wd-sm-700p {
17987
    width: 700%;
17988
  }
16848 stevensc 17989
 
16825 efrain 17990
  .mx-wd-sm-700p {
17991
    max-width: 700%;
17992
  }
16848 stevensc 17993
 
16825 efrain 17994
  .mn-wd-sm-700p {
17995
    min-width: 700%;
17996
  }
16848 stevensc 17997
 
16825 efrain 17998
  .wd-sm-700-f {
17999
    width: 700px !important;
18000
  }
16848 stevensc 18001
 
16825 efrain 18002
  .wd-sm-700p-f {
18003
    width: 700% !important;
18004
  }
16848 stevensc 18005
 
16825 efrain 18006
  .mx-wd-sm-700p-f {
18007
    max-width: 700% !important;
18008
  }
16848 stevensc 18009
 
16825 efrain 18010
  .mn-wd-sm-700p-f {
18011
    min-width: 700% !important;
18012
  }
16848 stevensc 18013
 
16825 efrain 18014
  .wd-sm-750 {
18015
    width: 750px;
18016
  }
16848 stevensc 18017
 
16825 efrain 18018
  .wd-sm-750p {
18019
    width: 750%;
18020
  }
16848 stevensc 18021
 
16825 efrain 18022
  .mx-wd-sm-750p {
18023
    max-width: 750%;
18024
  }
16848 stevensc 18025
 
16825 efrain 18026
  .mn-wd-sm-750p {
18027
    min-width: 750%;
18028
  }
16848 stevensc 18029
 
16825 efrain 18030
  .wd-sm-750-f {
18031
    width: 750px !important;
18032
  }
16848 stevensc 18033
 
16825 efrain 18034
  .wd-sm-750p-f {
18035
    width: 750% !important;
18036
  }
16848 stevensc 18037
 
16825 efrain 18038
  .mx-wd-sm-750p-f {
18039
    max-width: 750% !important;
18040
  }
16848 stevensc 18041
 
16825 efrain 18042
  .mn-wd-sm-750p-f {
18043
    min-width: 750% !important;
18044
  }
16848 stevensc 18045
 
16825 efrain 18046
  .wd-sm-800 {
18047
    width: 800px;
18048
  }
16848 stevensc 18049
 
16825 efrain 18050
  .wd-sm-800p {
18051
    width: 800%;
18052
  }
16848 stevensc 18053
 
16825 efrain 18054
  .mx-wd-sm-800p {
18055
    max-width: 800%;
18056
  }
16848 stevensc 18057
 
16825 efrain 18058
  .mn-wd-sm-800p {
18059
    min-width: 800%;
18060
  }
16848 stevensc 18061
 
16825 efrain 18062
  .wd-sm-800-f {
18063
    width: 800px !important;
18064
  }
16848 stevensc 18065
 
16825 efrain 18066
  .wd-sm-800p-f {
18067
    width: 800% !important;
18068
  }
16848 stevensc 18069
 
16825 efrain 18070
  .mx-wd-sm-800p-f {
18071
    max-width: 800% !important;
18072
  }
16848 stevensc 18073
 
16825 efrain 18074
  .mn-wd-sm-800p-f {
18075
    min-width: 800% !important;
18076
  }
16848 stevensc 18077
 
16825 efrain 18078
  .wd-sm-850 {
18079
    width: 850px;
18080
  }
16848 stevensc 18081
 
16825 efrain 18082
  .wd-sm-850p {
18083
    width: 850%;
18084
  }
16848 stevensc 18085
 
16825 efrain 18086
  .mx-wd-sm-850p {
18087
    max-width: 850%;
18088
  }
16848 stevensc 18089
 
16825 efrain 18090
  .mn-wd-sm-850p {
18091
    min-width: 850%;
18092
  }
16848 stevensc 18093
 
16825 efrain 18094
  .wd-sm-850-f {
18095
    width: 850px !important;
18096
  }
16848 stevensc 18097
 
16825 efrain 18098
  .wd-sm-850p-f {
18099
    width: 850% !important;
18100
  }
16848 stevensc 18101
 
16825 efrain 18102
  .mx-wd-sm-850p-f {
18103
    max-width: 850% !important;
18104
  }
16848 stevensc 18105
 
16825 efrain 18106
  .mn-wd-sm-850p-f {
18107
    min-width: 850% !important;
18108
  }
16848 stevensc 18109
 
16825 efrain 18110
  .wd-sm-900 {
18111
    width: 900px;
18112
  }
16848 stevensc 18113
 
16825 efrain 18114
  .wd-sm-900p {
18115
    width: 900%;
18116
  }
16848 stevensc 18117
 
16825 efrain 18118
  .mx-wd-sm-900p {
18119
    max-width: 900%;
18120
  }
16848 stevensc 18121
 
16825 efrain 18122
  .mn-wd-sm-900p {
18123
    min-width: 900%;
18124
  }
16848 stevensc 18125
 
16825 efrain 18126
  .wd-sm-900-f {
18127
    width: 900px !important;
18128
  }
16848 stevensc 18129
 
16825 efrain 18130
  .wd-sm-900p-f {
18131
    width: 900% !important;
18132
  }
16848 stevensc 18133
 
16825 efrain 18134
  .mx-wd-sm-900p-f {
18135
    max-width: 900% !important;
18136
  }
16848 stevensc 18137
 
16825 efrain 18138
  .mn-wd-sm-900p-f {
18139
    min-width: 900% !important;
18140
  }
16848 stevensc 18141
 
16825 efrain 18142
  .wd-sm-950 {
18143
    width: 950px;
18144
  }
16848 stevensc 18145
 
16825 efrain 18146
  .wd-sm-950p {
18147
    width: 950%;
18148
  }
16848 stevensc 18149
 
16825 efrain 18150
  .mx-wd-sm-950p {
18151
    max-width: 950%;
18152
  }
16848 stevensc 18153
 
16825 efrain 18154
  .mn-wd-sm-950p {
18155
    min-width: 950%;
18156
  }
16848 stevensc 18157
 
16825 efrain 18158
  .wd-sm-950-f {
18159
    width: 950px !important;
18160
  }
16848 stevensc 18161
 
16825 efrain 18162
  .wd-sm-950p-f {
18163
    width: 950% !important;
18164
  }
16848 stevensc 18165
 
16825 efrain 18166
  .mx-wd-sm-950p-f {
18167
    max-width: 950% !important;
18168
  }
16848 stevensc 18169
 
16825 efrain 18170
  .mn-wd-sm-950p-f {
18171
    min-width: 950% !important;
18172
  }
16848 stevensc 18173
 
16825 efrain 18174
  .wd-sm-1000 {
18175
    width: 1000px;
18176
  }
16848 stevensc 18177
 
16825 efrain 18178
  .wd-sm-1000p {
18179
    width: 1000%;
18180
  }
16848 stevensc 18181
 
16825 efrain 18182
  .mx-wd-sm-1000p {
18183
    max-width: 1000%;
18184
  }
16848 stevensc 18185
 
16825 efrain 18186
  .mn-wd-sm-1000p {
18187
    min-width: 1000%;
18188
  }
16848 stevensc 18189
 
16825 efrain 18190
  .wd-sm-1000-f {
18191
    width: 1000px !important;
18192
  }
16848 stevensc 18193
 
16825 efrain 18194
  .wd-sm-1000p-f {
18195
    width: 1000% !important;
18196
  }
16848 stevensc 18197
 
16825 efrain 18198
  .mx-wd-sm-1000p-f {
18199
    max-width: 1000% !important;
18200
  }
16848 stevensc 18201
 
16825 efrain 18202
  .mn-wd-sm-1000p-f {
18203
    min-width: 1000% !important;
18204
  }
16848 stevensc 18205
 
16825 efrain 18206
  .wd-sm-auto {
18207
    width: auto;
18208
  }
16848 stevensc 18209
 
16825 efrain 18210
  .wd-sm-auto-f {
18211
    width: auto !important;
18212
  }
18213
}
16848 stevensc 18214
 
16825 efrain 18215
@media (min-width: 768px) {
18216
  .wd-md-5 {
18217
    width: 5px;
18218
  }
16848 stevensc 18219
 
16825 efrain 18220
  .wd-md-5p {
18221
    width: 5%;
18222
  }
16848 stevensc 18223
 
16825 efrain 18224
  .mx-wd-md-5p {
18225
    max-width: 5%;
18226
  }
16848 stevensc 18227
 
16825 efrain 18228
  .mn-wd-md-5p {
18229
    min-width: 5%;
18230
  }
16848 stevensc 18231
 
16825 efrain 18232
  .wd-md-5-f {
18233
    width: 5px !important;
18234
  }
16848 stevensc 18235
 
16825 efrain 18236
  .wd-md-5p-f {
18237
    width: 5% !important;
18238
  }
16848 stevensc 18239
 
16825 efrain 18240
  .mx-wd-md-5p-f {
18241
    max-width: 5% !important;
18242
  }
16848 stevensc 18243
 
16825 efrain 18244
  .mn-wd-md-5p-f {
18245
    min-width: 5% !important;
18246
  }
16848 stevensc 18247
 
16825 efrain 18248
  .wd-md-10 {
18249
    width: 10px;
18250
  }
16848 stevensc 18251
 
16825 efrain 18252
  .wd-md-10p {
18253
    width: 10%;
18254
  }
16848 stevensc 18255
 
16825 efrain 18256
  .mx-wd-md-10p {
18257
    max-width: 10%;
18258
  }
16848 stevensc 18259
 
16825 efrain 18260
  .mn-wd-md-10p {
18261
    min-width: 10%;
18262
  }
16848 stevensc 18263
 
16825 efrain 18264
  .wd-md-10-f {
18265
    width: 10px !important;
18266
  }
16848 stevensc 18267
 
16825 efrain 18268
  .wd-md-10p-f {
18269
    width: 10% !important;
18270
  }
16848 stevensc 18271
 
16825 efrain 18272
  .mx-wd-md-10p-f {
18273
    max-width: 10% !important;
18274
  }
16848 stevensc 18275
 
16825 efrain 18276
  .mn-wd-md-10p-f {
18277
    min-width: 10% !important;
18278
  }
16848 stevensc 18279
 
16825 efrain 18280
  .wd-md-15 {
18281
    width: 15px;
18282
  }
16848 stevensc 18283
 
16825 efrain 18284
  .wd-md-15p {
18285
    width: 15%;
18286
  }
16848 stevensc 18287
 
16825 efrain 18288
  .mx-wd-md-15p {
18289
    max-width: 15%;
18290
  }
16848 stevensc 18291
 
16825 efrain 18292
  .mn-wd-md-15p {
18293
    min-width: 15%;
18294
  }
16848 stevensc 18295
 
16825 efrain 18296
  .wd-md-15-f {
18297
    width: 15px !important;
18298
  }
16848 stevensc 18299
 
16825 efrain 18300
  .wd-md-15p-f {
18301
    width: 15% !important;
18302
  }
16848 stevensc 18303
 
16825 efrain 18304
  .mx-wd-md-15p-f {
18305
    max-width: 15% !important;
18306
  }
16848 stevensc 18307
 
16825 efrain 18308
  .mn-wd-md-15p-f {
18309
    min-width: 15% !important;
18310
  }
16848 stevensc 18311
 
16825 efrain 18312
  .wd-md-20 {
18313
    width: 20px;
18314
  }
16848 stevensc 18315
 
16825 efrain 18316
  .wd-md-20p {
18317
    width: 20%;
18318
  }
16848 stevensc 18319
 
16825 efrain 18320
  .mx-wd-md-20p {
18321
    max-width: 20%;
18322
  }
16848 stevensc 18323
 
16825 efrain 18324
  .mn-wd-md-20p {
18325
    min-width: 20%;
18326
  }
16848 stevensc 18327
 
16825 efrain 18328
  .wd-md-20-f {
18329
    width: 20px !important;
18330
  }
16848 stevensc 18331
 
16825 efrain 18332
  .wd-md-20p-f {
18333
    width: 20% !important;
18334
  }
16848 stevensc 18335
 
16825 efrain 18336
  .mx-wd-md-20p-f {
18337
    max-width: 20% !important;
18338
  }
16848 stevensc 18339
 
16825 efrain 18340
  .mn-wd-md-20p-f {
18341
    min-width: 20% !important;
18342
  }
16848 stevensc 18343
 
16825 efrain 18344
  .wd-md-25 {
18345
    width: 25px;
18346
  }
16848 stevensc 18347
 
16825 efrain 18348
  .wd-md-25p {
18349
    width: 25%;
18350
  }
16848 stevensc 18351
 
16825 efrain 18352
  .mx-wd-md-25p {
18353
    max-width: 25%;
18354
  }
16848 stevensc 18355
 
16825 efrain 18356
  .mn-wd-md-25p {
18357
    min-width: 25%;
18358
  }
16848 stevensc 18359
 
16825 efrain 18360
  .wd-md-25-f {
18361
    width: 25px !important;
18362
  }
16848 stevensc 18363
 
16825 efrain 18364
  .wd-md-25p-f {
18365
    width: 25% !important;
18366
  }
16848 stevensc 18367
 
16825 efrain 18368
  .mx-wd-md-25p-f {
18369
    max-width: 25% !important;
18370
  }
16848 stevensc 18371
 
16825 efrain 18372
  .mn-wd-md-25p-f {
18373
    min-width: 25% !important;
18374
  }
16848 stevensc 18375
 
16825 efrain 18376
  .wd-md-30 {
18377
    width: 30px;
18378
  }
16848 stevensc 18379
 
16825 efrain 18380
  .wd-md-30p {
18381
    width: 30%;
18382
  }
16848 stevensc 18383
 
16825 efrain 18384
  .mx-wd-md-30p {
18385
    max-width: 30%;
18386
  }
16848 stevensc 18387
 
16825 efrain 18388
  .mn-wd-md-30p {
18389
    min-width: 30%;
18390
  }
16848 stevensc 18391
 
16825 efrain 18392
  .wd-md-30-f {
18393
    width: 30px !important;
18394
  }
16848 stevensc 18395
 
16825 efrain 18396
  .wd-md-30p-f {
18397
    width: 30% !important;
18398
  }
16848 stevensc 18399
 
16825 efrain 18400
  .mx-wd-md-30p-f {
18401
    max-width: 30% !important;
18402
  }
16848 stevensc 18403
 
16825 efrain 18404
  .mn-wd-md-30p-f {
18405
    min-width: 30% !important;
18406
  }
16848 stevensc 18407
 
16825 efrain 18408
  .wd-md-35 {
18409
    width: 35px;
18410
  }
16848 stevensc 18411
 
16825 efrain 18412
  .wd-md-35p {
18413
    width: 35%;
18414
  }
16848 stevensc 18415
 
16825 efrain 18416
  .mx-wd-md-35p {
18417
    max-width: 35%;
18418
  }
16848 stevensc 18419
 
16825 efrain 18420
  .mn-wd-md-35p {
18421
    min-width: 35%;
18422
  }
16848 stevensc 18423
 
16825 efrain 18424
  .wd-md-35-f {
18425
    width: 35px !important;
18426
  }
16848 stevensc 18427
 
16825 efrain 18428
  .wd-md-35p-f {
18429
    width: 35% !important;
18430
  }
16848 stevensc 18431
 
16825 efrain 18432
  .mx-wd-md-35p-f {
18433
    max-width: 35% !important;
18434
  }
16848 stevensc 18435
 
16825 efrain 18436
  .mn-wd-md-35p-f {
18437
    min-width: 35% !important;
18438
  }
16848 stevensc 18439
 
16825 efrain 18440
  .wd-md-40 {
18441
    width: 40px;
18442
  }
16848 stevensc 18443
 
16825 efrain 18444
  .wd-md-40p {
18445
    width: 40%;
18446
  }
16848 stevensc 18447
 
16825 efrain 18448
  .mx-wd-md-40p {
18449
    max-width: 40%;
18450
  }
16848 stevensc 18451
 
16825 efrain 18452
  .mn-wd-md-40p {
18453
    min-width: 40%;
18454
  }
16848 stevensc 18455
 
16825 efrain 18456
  .wd-md-40-f {
18457
    width: 40px !important;
18458
  }
16848 stevensc 18459
 
16825 efrain 18460
  .wd-md-40p-f {
18461
    width: 40% !important;
18462
  }
16848 stevensc 18463
 
16825 efrain 18464
  .mx-wd-md-40p-f {
18465
    max-width: 40% !important;
18466
  }
16848 stevensc 18467
 
16825 efrain 18468
  .mn-wd-md-40p-f {
18469
    min-width: 40% !important;
18470
  }
16848 stevensc 18471
 
16825 efrain 18472
  .wd-md-45 {
18473
    width: 45px;
18474
  }
16848 stevensc 18475
 
16825 efrain 18476
  .wd-md-45p {
18477
    width: 45%;
18478
  }
16848 stevensc 18479
 
16825 efrain 18480
  .mx-wd-md-45p {
18481
    max-width: 45%;
18482
  }
16848 stevensc 18483
 
16825 efrain 18484
  .mn-wd-md-45p {
18485
    min-width: 45%;
18486
  }
16848 stevensc 18487
 
16825 efrain 18488
  .wd-md-45-f {
18489
    width: 45px !important;
18490
  }
16848 stevensc 18491
 
16825 efrain 18492
  .wd-md-45p-f {
18493
    width: 45% !important;
18494
  }
16848 stevensc 18495
 
16825 efrain 18496
  .mx-wd-md-45p-f {
18497
    max-width: 45% !important;
18498
  }
16848 stevensc 18499
 
16825 efrain 18500
  .mn-wd-md-45p-f {
18501
    min-width: 45% !important;
18502
  }
16848 stevensc 18503
 
16825 efrain 18504
  .wd-md-50 {
18505
    width: 50px;
18506
  }
16848 stevensc 18507
 
16825 efrain 18508
  .wd-md-50p {
18509
    width: 50%;
18510
  }
16848 stevensc 18511
 
16825 efrain 18512
  .mx-wd-md-50p {
18513
    max-width: 50%;
18514
  }
16848 stevensc 18515
 
16825 efrain 18516
  .mn-wd-md-50p {
18517
    min-width: 50%;
18518
  }
16848 stevensc 18519
 
16825 efrain 18520
  .wd-md-50-f {
18521
    width: 50px !important;
18522
  }
16848 stevensc 18523
 
16825 efrain 18524
  .wd-md-50p-f {
18525
    width: 50% !important;
18526
  }
16848 stevensc 18527
 
16825 efrain 18528
  .mx-wd-md-50p-f {
18529
    max-width: 50% !important;
18530
  }
16848 stevensc 18531
 
16825 efrain 18532
  .mn-wd-md-50p-f {
18533
    min-width: 50% !important;
18534
  }
16848 stevensc 18535
 
16825 efrain 18536
  .wd-md-55 {
18537
    width: 55px;
18538
  }
16848 stevensc 18539
 
16825 efrain 18540
  .wd-md-55p {
18541
    width: 55%;
18542
  }
16848 stevensc 18543
 
16825 efrain 18544
  .mx-wd-md-55p {
18545
    max-width: 55%;
18546
  }
16848 stevensc 18547
 
16825 efrain 18548
  .mn-wd-md-55p {
18549
    min-width: 55%;
18550
  }
16848 stevensc 18551
 
16825 efrain 18552
  .wd-md-55-f {
18553
    width: 55px !important;
18554
  }
16848 stevensc 18555
 
16825 efrain 18556
  .wd-md-55p-f {
18557
    width: 55% !important;
18558
  }
16848 stevensc 18559
 
16825 efrain 18560
  .mx-wd-md-55p-f {
18561
    max-width: 55% !important;
18562
  }
16848 stevensc 18563
 
16825 efrain 18564
  .mn-wd-md-55p-f {
18565
    min-width: 55% !important;
18566
  }
16848 stevensc 18567
 
16825 efrain 18568
  .wd-md-60 {
18569
    width: 60px;
18570
  }
16848 stevensc 18571
 
16825 efrain 18572
  .wd-md-60p {
18573
    width: 60%;
18574
  }
16848 stevensc 18575
 
16825 efrain 18576
  .mx-wd-md-60p {
18577
    max-width: 60%;
18578
  }
16848 stevensc 18579
 
16825 efrain 18580
  .mn-wd-md-60p {
18581
    min-width: 60%;
18582
  }
16848 stevensc 18583
 
16825 efrain 18584
  .wd-md-60-f {
18585
    width: 60px !important;
18586
  }
16848 stevensc 18587
 
16825 efrain 18588
  .wd-md-60p-f {
18589
    width: 60% !important;
18590
  }
16848 stevensc 18591
 
16825 efrain 18592
  .mx-wd-md-60p-f {
18593
    max-width: 60% !important;
18594
  }
16848 stevensc 18595
 
16825 efrain 18596
  .mn-wd-md-60p-f {
18597
    min-width: 60% !important;
18598
  }
16848 stevensc 18599
 
16825 efrain 18600
  .wd-md-65 {
18601
    width: 65px;
18602
  }
16848 stevensc 18603
 
16825 efrain 18604
  .wd-md-65p {
18605
    width: 65%;
18606
  }
16848 stevensc 18607
 
16825 efrain 18608
  .mx-wd-md-65p {
18609
    max-width: 65%;
18610
  }
16848 stevensc 18611
 
16825 efrain 18612
  .mn-wd-md-65p {
18613
    min-width: 65%;
18614
  }
16848 stevensc 18615
 
16825 efrain 18616
  .wd-md-65-f {
18617
    width: 65px !important;
18618
  }
16848 stevensc 18619
 
16825 efrain 18620
  .wd-md-65p-f {
18621
    width: 65% !important;
18622
  }
16848 stevensc 18623
 
16825 efrain 18624
  .mx-wd-md-65p-f {
18625
    max-width: 65% !important;
18626
  }
16848 stevensc 18627
 
16825 efrain 18628
  .mn-wd-md-65p-f {
18629
    min-width: 65% !important;
18630
  }
16848 stevensc 18631
 
16825 efrain 18632
  .wd-md-70 {
18633
    width: 70px;
18634
  }
16848 stevensc 18635
 
16825 efrain 18636
  .wd-md-70p {
18637
    width: 70%;
18638
  }
16848 stevensc 18639
 
16825 efrain 18640
  .mx-wd-md-70p {
18641
    max-width: 70%;
18642
  }
16848 stevensc 18643
 
16825 efrain 18644
  .mn-wd-md-70p {
18645
    min-width: 70%;
18646
  }
16848 stevensc 18647
 
16825 efrain 18648
  .wd-md-70-f {
18649
    width: 70px !important;
18650
  }
16848 stevensc 18651
 
16825 efrain 18652
  .wd-md-70p-f {
18653
    width: 70% !important;
18654
  }
16848 stevensc 18655
 
16825 efrain 18656
  .mx-wd-md-70p-f {
18657
    max-width: 70% !important;
18658
  }
16848 stevensc 18659
 
16825 efrain 18660
  .mn-wd-md-70p-f {
18661
    min-width: 70% !important;
18662
  }
16848 stevensc 18663
 
16825 efrain 18664
  .wd-md-75 {
18665
    width: 75px;
18666
  }
16848 stevensc 18667
 
16825 efrain 18668
  .wd-md-75p {
18669
    width: 75%;
18670
  }
16848 stevensc 18671
 
16825 efrain 18672
  .mx-wd-md-75p {
18673
    max-width: 75%;
18674
  }
16848 stevensc 18675
 
16825 efrain 18676
  .mn-wd-md-75p {
18677
    min-width: 75%;
18678
  }
16848 stevensc 18679
 
16825 efrain 18680
  .wd-md-75-f {
18681
    width: 75px !important;
18682
  }
16848 stevensc 18683
 
16825 efrain 18684
  .wd-md-75p-f {
18685
    width: 75% !important;
18686
  }
16848 stevensc 18687
 
16825 efrain 18688
  .mx-wd-md-75p-f {
18689
    max-width: 75% !important;
18690
  }
16848 stevensc 18691
 
16825 efrain 18692
  .mn-wd-md-75p-f {
18693
    min-width: 75% !important;
18694
  }
16848 stevensc 18695
 
16825 efrain 18696
  .wd-md-80 {
18697
    width: 80px;
18698
  }
16848 stevensc 18699
 
16825 efrain 18700
  .wd-md-80p {
18701
    width: 80%;
18702
  }
16848 stevensc 18703
 
16825 efrain 18704
  .mx-wd-md-80p {
18705
    max-width: 80%;
18706
  }
16848 stevensc 18707
 
16825 efrain 18708
  .mn-wd-md-80p {
18709
    min-width: 80%;
18710
  }
16848 stevensc 18711
 
16825 efrain 18712
  .wd-md-80-f {
18713
    width: 80px !important;
18714
  }
16848 stevensc 18715
 
16825 efrain 18716
  .wd-md-80p-f {
18717
    width: 80% !important;
18718
  }
16848 stevensc 18719
 
16825 efrain 18720
  .mx-wd-md-80p-f {
18721
    max-width: 80% !important;
18722
  }
16848 stevensc 18723
 
16825 efrain 18724
  .mn-wd-md-80p-f {
18725
    min-width: 80% !important;
18726
  }
16848 stevensc 18727
 
16825 efrain 18728
  .wd-md-85 {
18729
    width: 85px;
18730
  }
16848 stevensc 18731
 
16825 efrain 18732
  .wd-md-85p {
18733
    width: 85%;
18734
  }
16848 stevensc 18735
 
16825 efrain 18736
  .mx-wd-md-85p {
18737
    max-width: 85%;
18738
  }
16848 stevensc 18739
 
16825 efrain 18740
  .mn-wd-md-85p {
18741
    min-width: 85%;
18742
  }
16848 stevensc 18743
 
16825 efrain 18744
  .wd-md-85-f {
18745
    width: 85px !important;
18746
  }
16848 stevensc 18747
 
16825 efrain 18748
  .wd-md-85p-f {
18749
    width: 85% !important;
18750
  }
16848 stevensc 18751
 
16825 efrain 18752
  .mx-wd-md-85p-f {
18753
    max-width: 85% !important;
18754
  }
16848 stevensc 18755
 
16825 efrain 18756
  .mn-wd-md-85p-f {
18757
    min-width: 85% !important;
18758
  }
16848 stevensc 18759
 
16825 efrain 18760
  .wd-md-90 {
18761
    width: 90px;
18762
  }
16848 stevensc 18763
 
16825 efrain 18764
  .wd-md-90p {
18765
    width: 90%;
18766
  }
16848 stevensc 18767
 
16825 efrain 18768
  .mx-wd-md-90p {
18769
    max-width: 90%;
18770
  }
16848 stevensc 18771
 
16825 efrain 18772
  .mn-wd-md-90p {
18773
    min-width: 90%;
18774
  }
16848 stevensc 18775
 
16825 efrain 18776
  .wd-md-90-f {
18777
    width: 90px !important;
18778
  }
16848 stevensc 18779
 
16825 efrain 18780
  .wd-md-90p-f {
18781
    width: 90% !important;
18782
  }
16848 stevensc 18783
 
16825 efrain 18784
  .mx-wd-md-90p-f {
18785
    max-width: 90% !important;
18786
  }
16848 stevensc 18787
 
16825 efrain 18788
  .mn-wd-md-90p-f {
18789
    min-width: 90% !important;
18790
  }
16848 stevensc 18791
 
16825 efrain 18792
  .wd-md-95 {
18793
    width: 95px;
18794
  }
16848 stevensc 18795
 
16825 efrain 18796
  .wd-md-95p {
18797
    width: 95%;
18798
  }
16848 stevensc 18799
 
16825 efrain 18800
  .mx-wd-md-95p {
18801
    max-width: 95%;
18802
  }
16848 stevensc 18803
 
16825 efrain 18804
  .mn-wd-md-95p {
18805
    min-width: 95%;
18806
  }
16848 stevensc 18807
 
16825 efrain 18808
  .wd-md-95-f {
18809
    width: 95px !important;
18810
  }
16848 stevensc 18811
 
16825 efrain 18812
  .wd-md-95p-f {
18813
    width: 95% !important;
18814
  }
16848 stevensc 18815
 
16825 efrain 18816
  .mx-wd-md-95p-f {
18817
    max-width: 95% !important;
18818
  }
16848 stevensc 18819
 
16825 efrain 18820
  .mn-wd-md-95p-f {
18821
    min-width: 95% !important;
18822
  }
16848 stevensc 18823
 
16825 efrain 18824
  .wd-md-100 {
18825
    width: 100px;
18826
  }
16848 stevensc 18827
 
16825 efrain 18828
  .wd-md-100p {
18829
    width: 100%;
18830
  }
16848 stevensc 18831
 
16825 efrain 18832
  .mx-wd-md-100p {
18833
    max-width: 100%;
18834
  }
16848 stevensc 18835
 
16825 efrain 18836
  .mn-wd-md-100p {
18837
    min-width: 100%;
18838
  }
16848 stevensc 18839
 
16825 efrain 18840
  .wd-md-100-f {
18841
    width: 100px !important;
18842
  }
16848 stevensc 18843
 
16825 efrain 18844
  .wd-md-100p-f {
18845
    width: 100% !important;
18846
  }
16848 stevensc 18847
 
16825 efrain 18848
  .mx-wd-md-100p-f {
18849
    max-width: 100% !important;
18850
  }
16848 stevensc 18851
 
16825 efrain 18852
  .mn-wd-md-100p-f {
18853
    min-width: 100% !important;
18854
  }
16848 stevensc 18855
 
16825 efrain 18856
  .wd-md-150 {
18857
    width: 150px;
18858
  }
16848 stevensc 18859
 
16825 efrain 18860
  .wd-md-150p {
18861
    width: 150%;
18862
  }
16848 stevensc 18863
 
16825 efrain 18864
  .mx-wd-md-150p {
18865
    max-width: 150%;
18866
  }
16848 stevensc 18867
 
16825 efrain 18868
  .mn-wd-md-150p {
18869
    min-width: 150%;
18870
  }
16848 stevensc 18871
 
16825 efrain 18872
  .wd-md-150-f {
18873
    width: 150px !important;
18874
  }
16848 stevensc 18875
 
16825 efrain 18876
  .wd-md-150p-f {
18877
    width: 150% !important;
18878
  }
16848 stevensc 18879
 
16825 efrain 18880
  .mx-wd-md-150p-f {
18881
    max-width: 150% !important;
18882
  }
16848 stevensc 18883
 
16825 efrain 18884
  .mn-wd-md-150p-f {
18885
    min-width: 150% !important;
18886
  }
16848 stevensc 18887
 
16825 efrain 18888
  .wd-md-200 {
18889
    width: 200px;
18890
  }
16848 stevensc 18891
 
16825 efrain 18892
  .wd-md-200p {
18893
    width: 200%;
18894
  }
16848 stevensc 18895
 
16825 efrain 18896
  .mx-wd-md-200p {
18897
    max-width: 200%;
18898
  }
16848 stevensc 18899
 
16825 efrain 18900
  .mn-wd-md-200p {
18901
    min-width: 200%;
18902
  }
16848 stevensc 18903
 
16825 efrain 18904
  .wd-md-200-f {
18905
    width: 200px !important;
18906
  }
16848 stevensc 18907
 
16825 efrain 18908
  .wd-md-200p-f {
18909
    width: 200% !important;
18910
  }
16848 stevensc 18911
 
16825 efrain 18912
  .mx-wd-md-200p-f {
18913
    max-width: 200% !important;
18914
  }
16848 stevensc 18915
 
16825 efrain 18916
  .mn-wd-md-200p-f {
18917
    min-width: 200% !important;
18918
  }
16848 stevensc 18919
 
16825 efrain 18920
  .wd-md-250 {
18921
    width: 250px;
18922
  }
16848 stevensc 18923
 
16825 efrain 18924
  .wd-md-250p {
18925
    width: 250%;
18926
  }
16848 stevensc 18927
 
16825 efrain 18928
  .mx-wd-md-250p {
18929
    max-width: 250%;
18930
  }
16848 stevensc 18931
 
16825 efrain 18932
  .mn-wd-md-250p {
18933
    min-width: 250%;
18934
  }
16848 stevensc 18935
 
16825 efrain 18936
  .wd-md-250-f {
18937
    width: 250px !important;
18938
  }
16848 stevensc 18939
 
16825 efrain 18940
  .wd-md-250p-f {
18941
    width: 250% !important;
18942
  }
16848 stevensc 18943
 
16825 efrain 18944
  .mx-wd-md-250p-f {
18945
    max-width: 250% !important;
18946
  }
16848 stevensc 18947
 
16825 efrain 18948
  .mn-wd-md-250p-f {
18949
    min-width: 250% !important;
18950
  }
16848 stevensc 18951
 
16825 efrain 18952
  .wd-md-300 {
18953
    width: 300px;
18954
  }
16848 stevensc 18955
 
16825 efrain 18956
  .wd-md-300p {
18957
    width: 300%;
18958
  }
16848 stevensc 18959
 
16825 efrain 18960
  .mx-wd-md-300p {
18961
    max-width: 300%;
18962
  }
16848 stevensc 18963
 
16825 efrain 18964
  .mn-wd-md-300p {
18965
    min-width: 300%;
18966
  }
16848 stevensc 18967
 
16825 efrain 18968
  .wd-md-300-f {
18969
    width: 300px !important;
18970
  }
16848 stevensc 18971
 
16825 efrain 18972
  .wd-md-300p-f {
18973
    width: 300% !important;
18974
  }
16848 stevensc 18975
 
16825 efrain 18976
  .mx-wd-md-300p-f {
18977
    max-width: 300% !important;
18978
  }
16848 stevensc 18979
 
16825 efrain 18980
  .mn-wd-md-300p-f {
18981
    min-width: 300% !important;
18982
  }
16848 stevensc 18983
 
16825 efrain 18984
  .wd-md-350 {
18985
    width: 350px;
18986
  }
16848 stevensc 18987
 
16825 efrain 18988
  .wd-md-350p {
18989
    width: 350%;
18990
  }
16848 stevensc 18991
 
16825 efrain 18992
  .mx-wd-md-350p {
18993
    max-width: 350%;
18994
  }
16848 stevensc 18995
 
16825 efrain 18996
  .mn-wd-md-350p {
18997
    min-width: 350%;
18998
  }
16848 stevensc 18999
 
16825 efrain 19000
  .wd-md-350-f {
19001
    width: 350px !important;
19002
  }
16848 stevensc 19003
 
16825 efrain 19004
  .wd-md-350p-f {
19005
    width: 350% !important;
19006
  }
16848 stevensc 19007
 
16825 efrain 19008
  .mx-wd-md-350p-f {
19009
    max-width: 350% !important;
19010
  }
16848 stevensc 19011
 
16825 efrain 19012
  .mn-wd-md-350p-f {
19013
    min-width: 350% !important;
19014
  }
16848 stevensc 19015
 
16825 efrain 19016
  .wd-md-400 {
19017
    width: 400px;
19018
  }
16848 stevensc 19019
 
16825 efrain 19020
  .wd-md-400p {
19021
    width: 400%;
19022
  }
16848 stevensc 19023
 
16825 efrain 19024
  .mx-wd-md-400p {
19025
    max-width: 400%;
19026
  }
16848 stevensc 19027
 
16825 efrain 19028
  .mn-wd-md-400p {
19029
    min-width: 400%;
19030
  }
16848 stevensc 19031
 
16825 efrain 19032
  .wd-md-400-f {
19033
    width: 400px !important;
19034
  }
16848 stevensc 19035
 
16825 efrain 19036
  .wd-md-400p-f {
19037
    width: 400% !important;
19038
  }
16848 stevensc 19039
 
16825 efrain 19040
  .mx-wd-md-400p-f {
19041
    max-width: 400% !important;
19042
  }
16848 stevensc 19043
 
16825 efrain 19044
  .mn-wd-md-400p-f {
19045
    min-width: 400% !important;
19046
  }
16848 stevensc 19047
 
16825 efrain 19048
  .wd-md-450 {
19049
    width: 450px;
19050
  }
16848 stevensc 19051
 
16825 efrain 19052
  .wd-md-450p {
19053
    width: 450%;
19054
  }
16848 stevensc 19055
 
16825 efrain 19056
  .mx-wd-md-450p {
19057
    max-width: 450%;
19058
  }
16848 stevensc 19059
 
16825 efrain 19060
  .mn-wd-md-450p {
19061
    min-width: 450%;
19062
  }
16848 stevensc 19063
 
16825 efrain 19064
  .wd-md-450-f {
19065
    width: 450px !important;
19066
  }
16848 stevensc 19067
 
16825 efrain 19068
  .wd-md-450p-f {
19069
    width: 450% !important;
19070
  }
16848 stevensc 19071
 
16825 efrain 19072
  .mx-wd-md-450p-f {
19073
    max-width: 450% !important;
19074
  }
16848 stevensc 19075
 
16825 efrain 19076
  .mn-wd-md-450p-f {
19077
    min-width: 450% !important;
19078
  }
16848 stevensc 19079
 
16825 efrain 19080
  .wd-md-500 {
19081
    width: 500px;
19082
  }
16848 stevensc 19083
 
16825 efrain 19084
  .wd-md-500p {
19085
    width: 500%;
19086
  }
16848 stevensc 19087
 
16825 efrain 19088
  .mx-wd-md-500p {
19089
    max-width: 500%;
19090
  }
16848 stevensc 19091
 
16825 efrain 19092
  .mn-wd-md-500p {
19093
    min-width: 500%;
19094
  }
16848 stevensc 19095
 
16825 efrain 19096
  .wd-md-500-f {
19097
    width: 500px !important;
19098
  }
16848 stevensc 19099
 
16825 efrain 19100
  .wd-md-500p-f {
19101
    width: 500% !important;
19102
  }
16848 stevensc 19103
 
16825 efrain 19104
  .mx-wd-md-500p-f {
19105
    max-width: 500% !important;
19106
  }
16848 stevensc 19107
 
16825 efrain 19108
  .mn-wd-md-500p-f {
19109
    min-width: 500% !important;
19110
  }
16848 stevensc 19111
 
16825 efrain 19112
  .wd-md-550 {
19113
    width: 550px;
19114
  }
16848 stevensc 19115
 
16825 efrain 19116
  .wd-md-550p {
19117
    width: 550%;
19118
  }
16848 stevensc 19119
 
16825 efrain 19120
  .mx-wd-md-550p {
19121
    max-width: 550%;
19122
  }
16848 stevensc 19123
 
16825 efrain 19124
  .mn-wd-md-550p {
19125
    min-width: 550%;
19126
  }
16848 stevensc 19127
 
16825 efrain 19128
  .wd-md-550-f {
19129
    width: 550px !important;
19130
  }
16848 stevensc 19131
 
16825 efrain 19132
  .wd-md-550p-f {
19133
    width: 550% !important;
19134
  }
16848 stevensc 19135
 
16825 efrain 19136
  .mx-wd-md-550p-f {
19137
    max-width: 550% !important;
19138
  }
16848 stevensc 19139
 
16825 efrain 19140
  .mn-wd-md-550p-f {
19141
    min-width: 550% !important;
19142
  }
16848 stevensc 19143
 
16825 efrain 19144
  .wd-md-600 {
19145
    width: 600px;
19146
  }
16848 stevensc 19147
 
16825 efrain 19148
  .wd-md-600p {
19149
    width: 600%;
19150
  }
16848 stevensc 19151
 
16825 efrain 19152
  .mx-wd-md-600p {
19153
    max-width: 600%;
19154
  }
16848 stevensc 19155
 
16825 efrain 19156
  .mn-wd-md-600p {
19157
    min-width: 600%;
19158
  }
16848 stevensc 19159
 
16825 efrain 19160
  .wd-md-600-f {
19161
    width: 600px !important;
19162
  }
16848 stevensc 19163
 
16825 efrain 19164
  .wd-md-600p-f {
19165
    width: 600% !important;
19166
  }
16848 stevensc 19167
 
16825 efrain 19168
  .mx-wd-md-600p-f {
19169
    max-width: 600% !important;
19170
  }
16848 stevensc 19171
 
16825 efrain 19172
  .mn-wd-md-600p-f {
19173
    min-width: 600% !important;
19174
  }
16848 stevensc 19175
 
16825 efrain 19176
  .wd-md-650 {
19177
    width: 650px;
19178
  }
16848 stevensc 19179
 
16825 efrain 19180
  .wd-md-650p {
19181
    width: 650%;
19182
  }
16848 stevensc 19183
 
16825 efrain 19184
  .mx-wd-md-650p {
19185
    max-width: 650%;
19186
  }
16848 stevensc 19187
 
16825 efrain 19188
  .mn-wd-md-650p {
19189
    min-width: 650%;
19190
  }
16848 stevensc 19191
 
16825 efrain 19192
  .wd-md-650-f {
19193
    width: 650px !important;
19194
  }
16848 stevensc 19195
 
16825 efrain 19196
  .wd-md-650p-f {
19197
    width: 650% !important;
19198
  }
16848 stevensc 19199
 
16825 efrain 19200
  .mx-wd-md-650p-f {
19201
    max-width: 650% !important;
19202
  }
16848 stevensc 19203
 
16825 efrain 19204
  .mn-wd-md-650p-f {
19205
    min-width: 650% !important;
19206
  }
16848 stevensc 19207
 
16825 efrain 19208
  .wd-md-700 {
19209
    width: 700px;
19210
  }
16848 stevensc 19211
 
16825 efrain 19212
  .wd-md-700p {
19213
    width: 700%;
19214
  }
16848 stevensc 19215
 
16825 efrain 19216
  .mx-wd-md-700p {
19217
    max-width: 700%;
19218
  }
16848 stevensc 19219
 
16825 efrain 19220
  .mn-wd-md-700p {
19221
    min-width: 700%;
19222
  }
16848 stevensc 19223
 
16825 efrain 19224
  .wd-md-700-f {
19225
    width: 700px !important;
19226
  }
16848 stevensc 19227
 
16825 efrain 19228
  .wd-md-700p-f {
19229
    width: 700% !important;
19230
  }
16848 stevensc 19231
 
16825 efrain 19232
  .mx-wd-md-700p-f {
19233
    max-width: 700% !important;
19234
  }
16848 stevensc 19235
 
16825 efrain 19236
  .mn-wd-md-700p-f {
19237
    min-width: 700% !important;
19238
  }
16848 stevensc 19239
 
16825 efrain 19240
  .wd-md-750 {
19241
    width: 750px;
19242
  }
16848 stevensc 19243
 
16825 efrain 19244
  .wd-md-750p {
19245
    width: 750%;
19246
  }
16848 stevensc 19247
 
16825 efrain 19248
  .mx-wd-md-750p {
19249
    max-width: 750%;
19250
  }
16848 stevensc 19251
 
16825 efrain 19252
  .mn-wd-md-750p {
19253
    min-width: 750%;
19254
  }
16848 stevensc 19255
 
16825 efrain 19256
  .wd-md-750-f {
19257
    width: 750px !important;
19258
  }
16848 stevensc 19259
 
16825 efrain 19260
  .wd-md-750p-f {
19261
    width: 750% !important;
19262
  }
16848 stevensc 19263
 
16825 efrain 19264
  .mx-wd-md-750p-f {
19265
    max-width: 750% !important;
19266
  }
16848 stevensc 19267
 
16825 efrain 19268
  .mn-wd-md-750p-f {
19269
    min-width: 750% !important;
19270
  }
16848 stevensc 19271
 
16825 efrain 19272
  .wd-md-800 {
19273
    width: 800px;
19274
  }
16848 stevensc 19275
 
16825 efrain 19276
  .wd-md-800p {
19277
    width: 800%;
19278
  }
16848 stevensc 19279
 
16825 efrain 19280
  .mx-wd-md-800p {
19281
    max-width: 800%;
19282
  }
16848 stevensc 19283
 
16825 efrain 19284
  .mn-wd-md-800p {
19285
    min-width: 800%;
19286
  }
16848 stevensc 19287
 
16825 efrain 19288
  .wd-md-800-f {
19289
    width: 800px !important;
19290
  }
16848 stevensc 19291
 
16825 efrain 19292
  .wd-md-800p-f {
19293
    width: 800% !important;
19294
  }
16848 stevensc 19295
 
16825 efrain 19296
  .mx-wd-md-800p-f {
19297
    max-width: 800% !important;
19298
  }
16848 stevensc 19299
 
16825 efrain 19300
  .mn-wd-md-800p-f {
19301
    min-width: 800% !important;
19302
  }
16848 stevensc 19303
 
16825 efrain 19304
  .wd-md-850 {
19305
    width: 850px;
19306
  }
16848 stevensc 19307
 
16825 efrain 19308
  .wd-md-850p {
19309
    width: 850%;
19310
  }
16848 stevensc 19311
 
16825 efrain 19312
  .mx-wd-md-850p {
19313
    max-width: 850%;
19314
  }
16848 stevensc 19315
 
16825 efrain 19316
  .mn-wd-md-850p {
19317
    min-width: 850%;
19318
  }
16848 stevensc 19319
 
16825 efrain 19320
  .wd-md-850-f {
19321
    width: 850px !important;
19322
  }
16848 stevensc 19323
 
16825 efrain 19324
  .wd-md-850p-f {
19325
    width: 850% !important;
19326
  }
16848 stevensc 19327
 
16825 efrain 19328
  .mx-wd-md-850p-f {
19329
    max-width: 850% !important;
19330
  }
16848 stevensc 19331
 
16825 efrain 19332
  .mn-wd-md-850p-f {
19333
    min-width: 850% !important;
19334
  }
16848 stevensc 19335
 
16825 efrain 19336
  .wd-md-900 {
19337
    width: 900px;
19338
  }
16848 stevensc 19339
 
16825 efrain 19340
  .wd-md-900p {
19341
    width: 900%;
19342
  }
16848 stevensc 19343
 
16825 efrain 19344
  .mx-wd-md-900p {
19345
    max-width: 900%;
19346
  }
16848 stevensc 19347
 
16825 efrain 19348
  .mn-wd-md-900p {
19349
    min-width: 900%;
19350
  }
16848 stevensc 19351
 
16825 efrain 19352
  .wd-md-900-f {
19353
    width: 900px !important;
19354
  }
16848 stevensc 19355
 
16825 efrain 19356
  .wd-md-900p-f {
19357
    width: 900% !important;
19358
  }
16848 stevensc 19359
 
16825 efrain 19360
  .mx-wd-md-900p-f {
19361
    max-width: 900% !important;
19362
  }
16848 stevensc 19363
 
16825 efrain 19364
  .mn-wd-md-900p-f {
19365
    min-width: 900% !important;
19366
  }
16848 stevensc 19367
 
16825 efrain 19368
  .wd-md-950 {
19369
    width: 950px;
19370
  }
16848 stevensc 19371
 
16825 efrain 19372
  .wd-md-950p {
19373
    width: 950%;
19374
  }
16848 stevensc 19375
 
16825 efrain 19376
  .mx-wd-md-950p {
19377
    max-width: 950%;
19378
  }
16848 stevensc 19379
 
16825 efrain 19380
  .mn-wd-md-950p {
19381
    min-width: 950%;
19382
  }
16848 stevensc 19383
 
16825 efrain 19384
  .wd-md-950-f {
19385
    width: 950px !important;
19386
  }
16848 stevensc 19387
 
16825 efrain 19388
  .wd-md-950p-f {
19389
    width: 950% !important;
19390
  }
16848 stevensc 19391
 
16825 efrain 19392
  .mx-wd-md-950p-f {
19393
    max-width: 950% !important;
19394
  }
16848 stevensc 19395
 
16825 efrain 19396
  .mn-wd-md-950p-f {
19397
    min-width: 950% !important;
19398
  }
16848 stevensc 19399
 
16825 efrain 19400
  .wd-md-1000 {
19401
    width: 1000px;
19402
  }
16848 stevensc 19403
 
16825 efrain 19404
  .wd-md-1000p {
19405
    width: 1000%;
19406
  }
16848 stevensc 19407
 
16825 efrain 19408
  .mx-wd-md-1000p {
19409
    max-width: 1000%;
19410
  }
16848 stevensc 19411
 
16825 efrain 19412
  .mn-wd-md-1000p {
19413
    min-width: 1000%;
19414
  }
16848 stevensc 19415
 
16825 efrain 19416
  .wd-md-1000-f {
19417
    width: 1000px !important;
19418
  }
16848 stevensc 19419
 
16825 efrain 19420
  .wd-md-1000p-f {
19421
    width: 1000% !important;
19422
  }
16848 stevensc 19423
 
16825 efrain 19424
  .mx-wd-md-1000p-f {
19425
    max-width: 1000% !important;
19426
  }
16848 stevensc 19427
 
16825 efrain 19428
  .mn-wd-md-1000p-f {
19429
    min-width: 1000% !important;
19430
  }
16848 stevensc 19431
 
16825 efrain 19432
  .wd-md-auto {
19433
    width: auto;
19434
  }
16848 stevensc 19435
 
16825 efrain 19436
  .wd-md-auto-f {
19437
    width: auto !important;
19438
  }
16848 stevensc 19439
 
16825 efrain 19440
  .wd-md-120 {
19441
    width: 120px;
19442
  }
19443
}
16848 stevensc 19444
 
16825 efrain 19445
@media (min-width: 992px) {
19446
  .wd-lg-5 {
19447
    width: 5px;
19448
  }
16848 stevensc 19449
 
16825 efrain 19450
  .wd-lg-5p {
19451
    width: 5%;
19452
  }
16848 stevensc 19453
 
16825 efrain 19454
  .mx-wd-lg-5p {
19455
    max-width: 5%;
19456
  }
16848 stevensc 19457
 
16825 efrain 19458
  .mn-wd-lg-5p {
19459
    min-width: 5%;
19460
  }
16848 stevensc 19461
 
16825 efrain 19462
  .wd-lg-5-f {
19463
    width: 5px !important;
19464
  }
16848 stevensc 19465
 
16825 efrain 19466
  .wd-lg-5p-f {
19467
    width: 5% !important;
19468
  }
16848 stevensc 19469
 
16825 efrain 19470
  .mx-wd-lg-5p-f {
19471
    max-width: 5% !important;
19472
  }
16848 stevensc 19473
 
16825 efrain 19474
  .mn-wd-lg-5p-f {
19475
    min-width: 5% !important;
19476
  }
16848 stevensc 19477
 
16825 efrain 19478
  .wd-lg-10 {
19479
    width: 10px;
19480
  }
16848 stevensc 19481
 
16825 efrain 19482
  .wd-lg-10p {
19483
    width: 10%;
19484
  }
16848 stevensc 19485
 
16825 efrain 19486
  .mx-wd-lg-10p {
19487
    max-width: 10%;
19488
  }
16848 stevensc 19489
 
16825 efrain 19490
  .mn-wd-lg-10p {
19491
    min-width: 10%;
19492
  }
16848 stevensc 19493
 
16825 efrain 19494
  .wd-lg-10-f {
19495
    width: 10px !important;
19496
  }
16848 stevensc 19497
 
16825 efrain 19498
  .wd-lg-10p-f {
19499
    width: 10% !important;
19500
  }
16848 stevensc 19501
 
16825 efrain 19502
  .mx-wd-lg-10p-f {
19503
    max-width: 10% !important;
19504
  }
16848 stevensc 19505
 
16825 efrain 19506
  .mn-wd-lg-10p-f {
19507
    min-width: 10% !important;
19508
  }
16848 stevensc 19509
 
16825 efrain 19510
  .wd-lg-15 {
19511
    width: 15px;
19512
  }
16848 stevensc 19513
 
16825 efrain 19514
  .wd-lg-15p {
19515
    width: 15%;
19516
  }
16848 stevensc 19517
 
16825 efrain 19518
  .mx-wd-lg-15p {
19519
    max-width: 15%;
19520
  }
16848 stevensc 19521
 
16825 efrain 19522
  .mn-wd-lg-15p {
19523
    min-width: 15%;
19524
  }
16848 stevensc 19525
 
16825 efrain 19526
  .wd-lg-15-f {
19527
    width: 15px !important;
19528
  }
16848 stevensc 19529
 
16825 efrain 19530
  .wd-lg-15p-f {
19531
    width: 15% !important;
19532
  }
16848 stevensc 19533
 
16825 efrain 19534
  .mx-wd-lg-15p-f {
19535
    max-width: 15% !important;
19536
  }
16848 stevensc 19537
 
16825 efrain 19538
  .mn-wd-lg-15p-f {
19539
    min-width: 15% !important;
19540
  }
16848 stevensc 19541
 
16825 efrain 19542
  .wd-lg-20 {
19543
    width: 20px;
19544
  }
16848 stevensc 19545
 
16825 efrain 19546
  .wd-lg-20p {
19547
    width: 20%;
19548
  }
16848 stevensc 19549
 
16825 efrain 19550
  .mx-wd-lg-20p {
19551
    max-width: 20%;
19552
  }
16848 stevensc 19553
 
16825 efrain 19554
  .mn-wd-lg-20p {
19555
    min-width: 20%;
19556
  }
16848 stevensc 19557
 
16825 efrain 19558
  .wd-lg-20-f {
19559
    width: 20px !important;
19560
  }
16848 stevensc 19561
 
16825 efrain 19562
  .wd-lg-20p-f {
19563
    width: 20% !important;
19564
  }
16848 stevensc 19565
 
16825 efrain 19566
  .mx-wd-lg-20p-f {
19567
    max-width: 20% !important;
19568
  }
16848 stevensc 19569
 
16825 efrain 19570
  .mn-wd-lg-20p-f {
19571
    min-width: 20% !important;
19572
  }
16848 stevensc 19573
 
16825 efrain 19574
  .wd-lg-25 {
19575
    width: 25px;
19576
  }
16848 stevensc 19577
 
16825 efrain 19578
  .wd-lg-25p {
19579
    width: 25%;
19580
  }
16848 stevensc 19581
 
16825 efrain 19582
  .mx-wd-lg-25p {
19583
    max-width: 25%;
19584
  }
16848 stevensc 19585
 
16825 efrain 19586
  .mn-wd-lg-25p {
19587
    min-width: 25%;
19588
  }
16848 stevensc 19589
 
16825 efrain 19590
  .wd-lg-25-f {
19591
    width: 25px !important;
19592
  }
16848 stevensc 19593
 
16825 efrain 19594
  .wd-lg-25p-f {
19595
    width: 25% !important;
19596
  }
16848 stevensc 19597
 
16825 efrain 19598
  .mx-wd-lg-25p-f {
19599
    max-width: 25% !important;
19600
  }
16848 stevensc 19601
 
16825 efrain 19602
  .mn-wd-lg-25p-f {
19603
    min-width: 25% !important;
19604
  }
16848 stevensc 19605
 
16825 efrain 19606
  .wd-lg-30 {
19607
    width: 30px;
19608
  }
16848 stevensc 19609
 
16825 efrain 19610
  .wd-lg-30p {
19611
    width: 30%;
19612
  }
16848 stevensc 19613
 
16825 efrain 19614
  .mx-wd-lg-30p {
19615
    max-width: 30%;
19616
  }
16848 stevensc 19617
 
16825 efrain 19618
  .mn-wd-lg-30p {
19619
    min-width: 30%;
19620
  }
16848 stevensc 19621
 
16825 efrain 19622
  .wd-lg-30-f {
19623
    width: 30px !important;
19624
  }
16848 stevensc 19625
 
16825 efrain 19626
  .wd-lg-30p-f {
19627
    width: 30% !important;
19628
  }
16848 stevensc 19629
 
16825 efrain 19630
  .mx-wd-lg-30p-f {
19631
    max-width: 30% !important;
19632
  }
16848 stevensc 19633
 
16825 efrain 19634
  .mn-wd-lg-30p-f {
19635
    min-width: 30% !important;
19636
  }
16848 stevensc 19637
 
16825 efrain 19638
  .wd-lg-35 {
19639
    width: 35px;
19640
  }
16848 stevensc 19641
 
16825 efrain 19642
  .wd-lg-35p {
19643
    width: 35%;
19644
  }
16848 stevensc 19645
 
16825 efrain 19646
  .mx-wd-lg-35p {
19647
    max-width: 35%;
19648
  }
16848 stevensc 19649
 
16825 efrain 19650
  .mn-wd-lg-35p {
19651
    min-width: 35%;
19652
  }
16848 stevensc 19653
 
16825 efrain 19654
  .wd-lg-35-f {
19655
    width: 35px !important;
19656
  }
16848 stevensc 19657
 
16825 efrain 19658
  .wd-lg-35p-f {
19659
    width: 35% !important;
19660
  }
16848 stevensc 19661
 
16825 efrain 19662
  .mx-wd-lg-35p-f {
19663
    max-width: 35% !important;
19664
  }
16848 stevensc 19665
 
16825 efrain 19666
  .mn-wd-lg-35p-f {
19667
    min-width: 35% !important;
19668
  }
16848 stevensc 19669
 
16825 efrain 19670
  .wd-lg-40 {
19671
    width: 40px;
19672
  }
16848 stevensc 19673
 
16825 efrain 19674
  .wd-lg-40p {
19675
    width: 40%;
19676
  }
16848 stevensc 19677
 
16825 efrain 19678
  .mx-wd-lg-40p {
19679
    max-width: 40%;
19680
  }
16848 stevensc 19681
 
16825 efrain 19682
  .mn-wd-lg-40p {
19683
    min-width: 40%;
19684
  }
16848 stevensc 19685
 
16825 efrain 19686
  .wd-lg-40-f {
19687
    width: 40px !important;
19688
  }
16848 stevensc 19689
 
16825 efrain 19690
  .wd-lg-40p-f {
19691
    width: 40% !important;
19692
  }
16848 stevensc 19693
 
16825 efrain 19694
  .mx-wd-lg-40p-f {
19695
    max-width: 40% !important;
19696
  }
16848 stevensc 19697
 
16825 efrain 19698
  .mn-wd-lg-40p-f {
19699
    min-width: 40% !important;
19700
  }
16848 stevensc 19701
 
16825 efrain 19702
  .wd-lg-45 {
19703
    width: 45px;
19704
  }
16848 stevensc 19705
 
16825 efrain 19706
  .wd-lg-45p {
19707
    width: 45%;
19708
  }
16848 stevensc 19709
 
16825 efrain 19710
  .mx-wd-lg-45p {
19711
    max-width: 45%;
19712
  }
16848 stevensc 19713
 
16825 efrain 19714
  .mn-wd-lg-45p {
19715
    min-width: 45%;
19716
  }
16848 stevensc 19717
 
16825 efrain 19718
  .wd-lg-45-f {
19719
    width: 45px !important;
19720
  }
16848 stevensc 19721
 
16825 efrain 19722
  .wd-lg-45p-f {
19723
    width: 45% !important;
19724
  }
16848 stevensc 19725
 
16825 efrain 19726
  .mx-wd-lg-45p-f {
19727
    max-width: 45% !important;
19728
  }
16848 stevensc 19729
 
16825 efrain 19730
  .mn-wd-lg-45p-f {
19731
    min-width: 45% !important;
19732
  }
16848 stevensc 19733
 
16825 efrain 19734
  .wd-lg-50 {
19735
    width: 50px;
19736
  }
16848 stevensc 19737
 
16825 efrain 19738
  .wd-lg-50p {
19739
    width: 50%;
19740
  }
16848 stevensc 19741
 
16825 efrain 19742
  .mx-wd-lg-50p {
19743
    max-width: 50%;
19744
  }
16848 stevensc 19745
 
16825 efrain 19746
  .mn-wd-lg-50p {
19747
    min-width: 50%;
19748
  }
16848 stevensc 19749
 
16825 efrain 19750
  .wd-lg-50-f {
19751
    width: 50px !important;
19752
  }
16848 stevensc 19753
 
16825 efrain 19754
  .wd-lg-50p-f {
19755
    width: 50% !important;
19756
  }
16848 stevensc 19757
 
16825 efrain 19758
  .mx-wd-lg-50p-f {
19759
    max-width: 50% !important;
19760
  }
16848 stevensc 19761
 
16825 efrain 19762
  .mn-wd-lg-50p-f {
19763
    min-width: 50% !important;
19764
  }
16848 stevensc 19765
 
16825 efrain 19766
  .wd-lg-55 {
19767
    width: 55px;
19768
  }
16848 stevensc 19769
 
16825 efrain 19770
  .wd-lg-55p {
19771
    width: 55%;
19772
  }
16848 stevensc 19773
 
16825 efrain 19774
  .mx-wd-lg-55p {
19775
    max-width: 55%;
19776
  }
16848 stevensc 19777
 
16825 efrain 19778
  .mn-wd-lg-55p {
19779
    min-width: 55%;
19780
  }
16848 stevensc 19781
 
16825 efrain 19782
  .wd-lg-55-f {
19783
    width: 55px !important;
19784
  }
16848 stevensc 19785
 
16825 efrain 19786
  .wd-lg-55p-f {
19787
    width: 55% !important;
19788
  }
16848 stevensc 19789
 
16825 efrain 19790
  .mx-wd-lg-55p-f {
19791
    max-width: 55% !important;
19792
  }
16848 stevensc 19793
 
16825 efrain 19794
  .mn-wd-lg-55p-f {
19795
    min-width: 55% !important;
19796
  }
16848 stevensc 19797
 
16825 efrain 19798
  .wd-lg-60 {
19799
    width: 60px;
19800
  }
16848 stevensc 19801
 
16825 efrain 19802
  .wd-lg-60p {
19803
    width: 60%;
19804
  }
16848 stevensc 19805
 
16825 efrain 19806
  .mx-wd-lg-60p {
19807
    max-width: 60%;
19808
  }
16848 stevensc 19809
 
16825 efrain 19810
  .mn-wd-lg-60p {
19811
    min-width: 60%;
19812
  }
16848 stevensc 19813
 
16825 efrain 19814
  .wd-lg-60-f {
19815
    width: 60px !important;
19816
  }
16848 stevensc 19817
 
16825 efrain 19818
  .wd-lg-60p-f {
19819
    width: 60% !important;
19820
  }
16848 stevensc 19821
 
16825 efrain 19822
  .mx-wd-lg-60p-f {
19823
    max-width: 60% !important;
19824
  }
16848 stevensc 19825
 
16825 efrain 19826
  .mn-wd-lg-60p-f {
19827
    min-width: 60% !important;
19828
  }
16848 stevensc 19829
 
16825 efrain 19830
  .wd-lg-65 {
19831
    width: 65px;
19832
  }
16848 stevensc 19833
 
16825 efrain 19834
  .wd-lg-65p {
19835
    width: 65%;
19836
  }
16848 stevensc 19837
 
16825 efrain 19838
  .mx-wd-lg-65p {
19839
    max-width: 65%;
19840
  }
16848 stevensc 19841
 
16825 efrain 19842
  .mn-wd-lg-65p {
19843
    min-width: 65%;
19844
  }
16848 stevensc 19845
 
16825 efrain 19846
  .wd-lg-65-f {
19847
    width: 65px !important;
19848
  }
16848 stevensc 19849
 
16825 efrain 19850
  .wd-lg-65p-f {
19851
    width: 65% !important;
19852
  }
16848 stevensc 19853
 
16825 efrain 19854
  .mx-wd-lg-65p-f {
19855
    max-width: 65% !important;
19856
  }
16848 stevensc 19857
 
16825 efrain 19858
  .mn-wd-lg-65p-f {
19859
    min-width: 65% !important;
19860
  }
16848 stevensc 19861
 
16825 efrain 19862
  .wd-lg-70 {
19863
    width: 70px;
19864
  }
16848 stevensc 19865
 
16825 efrain 19866
  .wd-lg-70p {
19867
    width: 70%;
19868
  }
16848 stevensc 19869
 
16825 efrain 19870
  .mx-wd-lg-70p {
19871
    max-width: 70%;
19872
  }
16848 stevensc 19873
 
16825 efrain 19874
  .mn-wd-lg-70p {
19875
    min-width: 70%;
19876
  }
16848 stevensc 19877
 
16825 efrain 19878
  .wd-lg-70-f {
19879
    width: 70px !important;
19880
  }
16848 stevensc 19881
 
16825 efrain 19882
  .wd-lg-70p-f {
19883
    width: 70% !important;
19884
  }
16848 stevensc 19885
 
16825 efrain 19886
  .mx-wd-lg-70p-f {
19887
    max-width: 70% !important;
19888
  }
16848 stevensc 19889
 
16825 efrain 19890
  .mn-wd-lg-70p-f {
19891
    min-width: 70% !important;
19892
  }
16848 stevensc 19893
 
16825 efrain 19894
  .wd-lg-75 {
19895
    width: 75px;
19896
  }
16848 stevensc 19897
 
16825 efrain 19898
  .wd-lg-75p {
19899
    width: 75%;
19900
  }
16848 stevensc 19901
 
16825 efrain 19902
  .mx-wd-lg-75p {
19903
    max-width: 75%;
19904
  }
16848 stevensc 19905
 
16825 efrain 19906
  .mn-wd-lg-75p {
19907
    min-width: 75%;
19908
  }
16848 stevensc 19909
 
16825 efrain 19910
  .wd-lg-75-f {
19911
    width: 75px !important;
19912
  }
16848 stevensc 19913
 
16825 efrain 19914
  .wd-lg-75p-f {
19915
    width: 75% !important;
19916
  }
16848 stevensc 19917
 
16825 efrain 19918
  .mx-wd-lg-75p-f {
19919
    max-width: 75% !important;
19920
  }
16848 stevensc 19921
 
16825 efrain 19922
  .mn-wd-lg-75p-f {
19923
    min-width: 75% !important;
19924
  }
16848 stevensc 19925
 
16825 efrain 19926
  .wd-lg-80 {
19927
    width: 80px;
19928
  }
16848 stevensc 19929
 
16825 efrain 19930
  .wd-lg-80p {
19931
    width: 80%;
19932
  }
16848 stevensc 19933
 
16825 efrain 19934
  .mx-wd-lg-80p {
19935
    max-width: 80%;
19936
  }
16848 stevensc 19937
 
16825 efrain 19938
  .mn-wd-lg-80p {
19939
    min-width: 80%;
19940
  }
16848 stevensc 19941
 
16825 efrain 19942
  .wd-lg-80-f {
19943
    width: 80px !important;
19944
  }
16848 stevensc 19945
 
16825 efrain 19946
  .wd-lg-80p-f {
19947
    width: 80% !important;
19948
  }
16848 stevensc 19949
 
16825 efrain 19950
  .mx-wd-lg-80p-f {
19951
    max-width: 80% !important;
19952
  }
16848 stevensc 19953
 
16825 efrain 19954
  .mn-wd-lg-80p-f {
19955
    min-width: 80% !important;
19956
  }
16848 stevensc 19957
 
16825 efrain 19958
  .wd-lg-85 {
19959
    width: 85px;
19960
  }
16848 stevensc 19961
 
16825 efrain 19962
  .wd-lg-85p {
19963
    width: 85%;
19964
  }
16848 stevensc 19965
 
16825 efrain 19966
  .mx-wd-lg-85p {
19967
    max-width: 85%;
19968
  }
16848 stevensc 19969
 
16825 efrain 19970
  .mn-wd-lg-85p {
19971
    min-width: 85%;
19972
  }
16848 stevensc 19973
 
16825 efrain 19974
  .wd-lg-85-f {
19975
    width: 85px !important;
19976
  }
16848 stevensc 19977
 
16825 efrain 19978
  .wd-lg-85p-f {
19979
    width: 85% !important;
19980
  }
16848 stevensc 19981
 
16825 efrain 19982
  .mx-wd-lg-85p-f {
19983
    max-width: 85% !important;
19984
  }
16848 stevensc 19985
 
16825 efrain 19986
  .mn-wd-lg-85p-f {
19987
    min-width: 85% !important;
19988
  }
16848 stevensc 19989
 
16825 efrain 19990
  .wd-lg-90 {
19991
    width: 90px;
19992
  }
16848 stevensc 19993
 
16825 efrain 19994
  .wd-lg-90p {
19995
    width: 90%;
19996
  }
16848 stevensc 19997
 
16825 efrain 19998
  .mx-wd-lg-90p {
19999
    max-width: 90%;
20000
  }
16848 stevensc 20001
 
16825 efrain 20002
  .mn-wd-lg-90p {
20003
    min-width: 90%;
20004
  }
16848 stevensc 20005
 
16825 efrain 20006
  .wd-lg-90-f {
20007
    width: 90px !important;
20008
  }
16848 stevensc 20009
 
16825 efrain 20010
  .wd-lg-90p-f {
20011
    width: 90% !important;
20012
  }
16848 stevensc 20013
 
16825 efrain 20014
  .mx-wd-lg-90p-f {
20015
    max-width: 90% !important;
20016
  }
16848 stevensc 20017
 
16825 efrain 20018
  .mn-wd-lg-90p-f {
20019
    min-width: 90% !important;
20020
  }
16848 stevensc 20021
 
16825 efrain 20022
  .wd-lg-95 {
20023
    width: 95px;
20024
  }
16848 stevensc 20025
 
16825 efrain 20026
  .wd-lg-95p {
20027
    width: 95%;
20028
  }
16848 stevensc 20029
 
16825 efrain 20030
  .mx-wd-lg-95p {
20031
    max-width: 95%;
20032
  }
16848 stevensc 20033
 
16825 efrain 20034
  .mn-wd-lg-95p {
20035
    min-width: 95%;
20036
  }
16848 stevensc 20037
 
16825 efrain 20038
  .wd-lg-95-f {
20039
    width: 95px !important;
20040
  }
16848 stevensc 20041
 
16825 efrain 20042
  .wd-lg-95p-f {
20043
    width: 95% !important;
20044
  }
16848 stevensc 20045
 
16825 efrain 20046
  .mx-wd-lg-95p-f {
20047
    max-width: 95% !important;
20048
  }
16848 stevensc 20049
 
16825 efrain 20050
  .mn-wd-lg-95p-f {
20051
    min-width: 95% !important;
20052
  }
16848 stevensc 20053
 
16825 efrain 20054
  .wd-lg-100 {
20055
    width: 100px;
20056
  }
16848 stevensc 20057
 
16825 efrain 20058
  .wd-lg-100p {
20059
    width: 100%;
20060
  }
16848 stevensc 20061
 
16825 efrain 20062
  .mx-wd-lg-100p {
20063
    max-width: 100%;
20064
  }
16848 stevensc 20065
 
16825 efrain 20066
  .mn-wd-lg-100p {
20067
    min-width: 100%;
20068
  }
16848 stevensc 20069
 
16825 efrain 20070
  .wd-lg-100-f {
20071
    width: 100px !important;
20072
  }
16848 stevensc 20073
 
16825 efrain 20074
  .wd-lg-100p-f {
20075
    width: 100% !important;
20076
  }
16848 stevensc 20077
 
16825 efrain 20078
  .mx-wd-lg-100p-f {
20079
    max-width: 100% !important;
20080
  }
16848 stevensc 20081
 
16825 efrain 20082
  .mn-wd-lg-100p-f {
20083
    min-width: 100% !important;
20084
  }
16848 stevensc 20085
 
16825 efrain 20086
  .wd-lg-150 {
20087
    width: 150px;
20088
  }
16848 stevensc 20089
 
16825 efrain 20090
  .wd-lg-150p {
20091
    width: 150%;
20092
  }
16848 stevensc 20093
 
16825 efrain 20094
  .mx-wd-lg-150p {
20095
    max-width: 150%;
20096
  }
16848 stevensc 20097
 
16825 efrain 20098
  .mn-wd-lg-150p {
20099
    min-width: 150%;
20100
  }
16848 stevensc 20101
 
16825 efrain 20102
  .wd-lg-150-f {
20103
    width: 150px !important;
20104
  }
16848 stevensc 20105
 
16825 efrain 20106
  .wd-lg-150p-f {
20107
    width: 150% !important;
20108
  }
16848 stevensc 20109
 
16825 efrain 20110
  .mx-wd-lg-150p-f {
20111
    max-width: 150% !important;
20112
  }
16848 stevensc 20113
 
16825 efrain 20114
  .mn-wd-lg-150p-f {
20115
    min-width: 150% !important;
20116
  }
16848 stevensc 20117
 
16825 efrain 20118
  .wd-lg-200 {
20119
    width: 200px;
20120
  }
16848 stevensc 20121
 
16825 efrain 20122
  .wd-lg-200p {
20123
    width: 200%;
20124
  }
16848 stevensc 20125
 
16825 efrain 20126
  .mx-wd-lg-200p {
20127
    max-width: 200%;
20128
  }
16848 stevensc 20129
 
16825 efrain 20130
  .mn-wd-lg-200p {
20131
    min-width: 200%;
20132
  }
16848 stevensc 20133
 
16825 efrain 20134
  .wd-lg-200-f {
20135
    width: 200px !important;
20136
  }
16848 stevensc 20137
 
16825 efrain 20138
  .wd-lg-200p-f {
20139
    width: 200% !important;
20140
  }
16848 stevensc 20141
 
16825 efrain 20142
  .mx-wd-lg-200p-f {
20143
    max-width: 200% !important;
20144
  }
16848 stevensc 20145
 
16825 efrain 20146
  .mn-wd-lg-200p-f {
20147
    min-width: 200% !important;
20148
  }
16848 stevensc 20149
 
16825 efrain 20150
  .wd-lg-250 {
20151
    width: 250px;
20152
  }
16848 stevensc 20153
 
16825 efrain 20154
  .wd-lg-250p {
20155
    width: 250%;
20156
  }
16848 stevensc 20157
 
16825 efrain 20158
  .mx-wd-lg-250p {
20159
    max-width: 250%;
20160
  }
16848 stevensc 20161
 
16825 efrain 20162
  .mn-wd-lg-250p {
20163
    min-width: 250%;
20164
  }
16848 stevensc 20165
 
16825 efrain 20166
  .wd-lg-250-f {
20167
    width: 250px !important;
20168
  }
16848 stevensc 20169
 
16825 efrain 20170
  .wd-lg-250p-f {
20171
    width: 250% !important;
20172
  }
16848 stevensc 20173
 
16825 efrain 20174
  .mx-wd-lg-250p-f {
20175
    max-width: 250% !important;
20176
  }
16848 stevensc 20177
 
16825 efrain 20178
  .mn-wd-lg-250p-f {
20179
    min-width: 250% !important;
20180
  }
16848 stevensc 20181
 
16825 efrain 20182
  .wd-lg-300 {
20183
    width: 300px;
20184
  }
16848 stevensc 20185
 
16825 efrain 20186
  .wd-lg-300p {
20187
    width: 300%;
20188
  }
16848 stevensc 20189
 
16825 efrain 20190
  .mx-wd-lg-300p {
20191
    max-width: 300%;
20192
  }
16848 stevensc 20193
 
16825 efrain 20194
  .mn-wd-lg-300p {
20195
    min-width: 300%;
20196
  }
16848 stevensc 20197
 
16825 efrain 20198
  .wd-lg-300-f {
20199
    width: 300px !important;
20200
  }
16848 stevensc 20201
 
16825 efrain 20202
  .wd-lg-300p-f {
20203
    width: 300% !important;
20204
  }
16848 stevensc 20205
 
16825 efrain 20206
  .mx-wd-lg-300p-f {
20207
    max-width: 300% !important;
20208
  }
16848 stevensc 20209
 
16825 efrain 20210
  .mn-wd-lg-300p-f {
20211
    min-width: 300% !important;
20212
  }
16848 stevensc 20213
 
16825 efrain 20214
  .wd-lg-350 {
20215
    width: 350px;
20216
  }
16848 stevensc 20217
 
16825 efrain 20218
  .wd-lg-350p {
20219
    width: 350%;
20220
  }
16848 stevensc 20221
 
16825 efrain 20222
  .mx-wd-lg-350p {
20223
    max-width: 350%;
20224
  }
16848 stevensc 20225
 
16825 efrain 20226
  .mn-wd-lg-350p {
20227
    min-width: 350%;
20228
  }
16848 stevensc 20229
 
16825 efrain 20230
  .wd-lg-350-f {
20231
    width: 350px !important;
20232
  }
16848 stevensc 20233
 
16825 efrain 20234
  .wd-lg-350p-f {
20235
    width: 350% !important;
20236
  }
16848 stevensc 20237
 
16825 efrain 20238
  .mx-wd-lg-350p-f {
20239
    max-width: 350% !important;
20240
  }
16848 stevensc 20241
 
16825 efrain 20242
  .mn-wd-lg-350p-f {
20243
    min-width: 350% !important;
20244
  }
16848 stevensc 20245
 
16825 efrain 20246
  .wd-lg-400 {
20247
    width: 400px;
20248
  }
16848 stevensc 20249
 
16825 efrain 20250
  .wd-lg-400p {
20251
    width: 400%;
20252
  }
16848 stevensc 20253
 
16825 efrain 20254
  .mx-wd-lg-400p {
20255
    max-width: 400%;
20256
  }
16848 stevensc 20257
 
16825 efrain 20258
  .mn-wd-lg-400p {
20259
    min-width: 400%;
20260
  }
16848 stevensc 20261
 
16825 efrain 20262
  .wd-lg-400-f {
20263
    width: 400px !important;
20264
  }
16848 stevensc 20265
 
16825 efrain 20266
  .wd-lg-400p-f {
20267
    width: 400% !important;
20268
  }
16848 stevensc 20269
 
16825 efrain 20270
  .mx-wd-lg-400p-f {
20271
    max-width: 400% !important;
20272
  }
16848 stevensc 20273
 
16825 efrain 20274
  .mn-wd-lg-400p-f {
20275
    min-width: 400% !important;
20276
  }
16848 stevensc 20277
 
16825 efrain 20278
  .wd-lg-450 {
20279
    width: 450px;
20280
  }
16848 stevensc 20281
 
16825 efrain 20282
  .wd-lg-450p {
20283
    width: 450%;
20284
  }
16848 stevensc 20285
 
16825 efrain 20286
  .mx-wd-lg-450p {
20287
    max-width: 450%;
20288
  }
16848 stevensc 20289
 
16825 efrain 20290
  .mn-wd-lg-450p {
20291
    min-width: 450%;
20292
  }
16848 stevensc 20293
 
16825 efrain 20294
  .wd-lg-450-f {
20295
    width: 450px !important;
20296
  }
16848 stevensc 20297
 
16825 efrain 20298
  .wd-lg-450p-f {
20299
    width: 450% !important;
20300
  }
16848 stevensc 20301
 
16825 efrain 20302
  .mx-wd-lg-450p-f {
20303
    max-width: 450% !important;
20304
  }
16848 stevensc 20305
 
16825 efrain 20306
  .mn-wd-lg-450p-f {
20307
    min-width: 450% !important;
20308
  }
16848 stevensc 20309
 
16825 efrain 20310
  .wd-lg-500 {
20311
    width: 500px;
20312
  }
16848 stevensc 20313
 
16825 efrain 20314
  .wd-lg-500p {
20315
    width: 500%;
20316
  }
16848 stevensc 20317
 
16825 efrain 20318
  .mx-wd-lg-500p {
20319
    max-width: 500%;
20320
  }
16848 stevensc 20321
 
16825 efrain 20322
  .mn-wd-lg-500p {
20323
    min-width: 500%;
20324
  }
16848 stevensc 20325
 
16825 efrain 20326
  .wd-lg-500-f {
20327
    width: 500px !important;
20328
  }
16848 stevensc 20329
 
16825 efrain 20330
  .wd-lg-500p-f {
20331
    width: 500% !important;
20332
  }
16848 stevensc 20333
 
16825 efrain 20334
  .mx-wd-lg-500p-f {
20335
    max-width: 500% !important;
20336
  }
16848 stevensc 20337
 
16825 efrain 20338
  .mn-wd-lg-500p-f {
20339
    min-width: 500% !important;
20340
  }
16848 stevensc 20341
 
16825 efrain 20342
  .wd-lg-550 {
20343
    width: 550px;
20344
  }
16848 stevensc 20345
 
16825 efrain 20346
  .wd-lg-550p {
20347
    width: 550%;
20348
  }
16848 stevensc 20349
 
16825 efrain 20350
  .mx-wd-lg-550p {
20351
    max-width: 550%;
20352
  }
16848 stevensc 20353
 
16825 efrain 20354
  .mn-wd-lg-550p {
20355
    min-width: 550%;
20356
  }
16848 stevensc 20357
 
16825 efrain 20358
  .wd-lg-550-f {
20359
    width: 550px !important;
20360
  }
16848 stevensc 20361
 
16825 efrain 20362
  .wd-lg-550p-f {
20363
    width: 550% !important;
20364
  }
16848 stevensc 20365
 
16825 efrain 20366
  .mx-wd-lg-550p-f {
20367
    max-width: 550% !important;
20368
  }
16848 stevensc 20369
 
16825 efrain 20370
  .mn-wd-lg-550p-f {
20371
    min-width: 550% !important;
20372
  }
16848 stevensc 20373
 
16825 efrain 20374
  .wd-lg-600 {
20375
    width: 600px;
20376
  }
16848 stevensc 20377
 
16825 efrain 20378
  .wd-lg-600p {
20379
    width: 600%;
20380
  }
16848 stevensc 20381
 
16825 efrain 20382
  .mx-wd-lg-600p {
20383
    max-width: 600%;
20384
  }
16848 stevensc 20385
 
16825 efrain 20386
  .mn-wd-lg-600p {
20387
    min-width: 600%;
20388
  }
16848 stevensc 20389
 
16825 efrain 20390
  .wd-lg-600-f {
20391
    width: 600px !important;
20392
  }
16848 stevensc 20393
 
16825 efrain 20394
  .wd-lg-600p-f {
20395
    width: 600% !important;
20396
  }
16848 stevensc 20397
 
16825 efrain 20398
  .mx-wd-lg-600p-f {
20399
    max-width: 600% !important;
20400
  }
16848 stevensc 20401
 
16825 efrain 20402
  .mn-wd-lg-600p-f {
20403
    min-width: 600% !important;
20404
  }
16848 stevensc 20405
 
16825 efrain 20406
  .wd-lg-650 {
20407
    width: 650px;
20408
  }
16848 stevensc 20409
 
16825 efrain 20410
  .wd-lg-650p {
20411
    width: 650%;
20412
  }
16848 stevensc 20413
 
16825 efrain 20414
  .mx-wd-lg-650p {
20415
    max-width: 650%;
20416
  }
16848 stevensc 20417
 
16825 efrain 20418
  .mn-wd-lg-650p {
20419
    min-width: 650%;
20420
  }
16848 stevensc 20421
 
16825 efrain 20422
  .wd-lg-650-f {
20423
    width: 650px !important;
20424
  }
16848 stevensc 20425
 
16825 efrain 20426
  .wd-lg-650p-f {
20427
    width: 650% !important;
20428
  }
16848 stevensc 20429
 
16825 efrain 20430
  .mx-wd-lg-650p-f {
20431
    max-width: 650% !important;
20432
  }
16848 stevensc 20433
 
16825 efrain 20434
  .mn-wd-lg-650p-f {
20435
    min-width: 650% !important;
20436
  }
16848 stevensc 20437
 
16825 efrain 20438
  .wd-lg-700 {
20439
    width: 700px;
20440
  }
16848 stevensc 20441
 
16825 efrain 20442
  .wd-lg-700p {
20443
    width: 700%;
20444
  }
16848 stevensc 20445
 
16825 efrain 20446
  .mx-wd-lg-700p {
20447
    max-width: 700%;
20448
  }
16848 stevensc 20449
 
16825 efrain 20450
  .mn-wd-lg-700p {
20451
    min-width: 700%;
20452
  }
16848 stevensc 20453
 
16825 efrain 20454
  .wd-lg-700-f {
20455
    width: 700px !important;
20456
  }
16848 stevensc 20457
 
16825 efrain 20458
  .wd-lg-700p-f {
20459
    width: 700% !important;
20460
  }
16848 stevensc 20461
 
16825 efrain 20462
  .mx-wd-lg-700p-f {
20463
    max-width: 700% !important;
20464
  }
16848 stevensc 20465
 
16825 efrain 20466
  .mn-wd-lg-700p-f {
20467
    min-width: 700% !important;
20468
  }
16848 stevensc 20469
 
16825 efrain 20470
  .wd-lg-750 {
20471
    width: 750px;
20472
  }
16848 stevensc 20473
 
16825 efrain 20474
  .wd-lg-750p {
20475
    width: 750%;
20476
  }
16848 stevensc 20477
 
16825 efrain 20478
  .mx-wd-lg-750p {
20479
    max-width: 750%;
20480
  }
16848 stevensc 20481
 
16825 efrain 20482
  .mn-wd-lg-750p {
20483
    min-width: 750%;
20484
  }
16848 stevensc 20485
 
16825 efrain 20486
  .wd-lg-750-f {
20487
    width: 750px !important;
20488
  }
16848 stevensc 20489
 
16825 efrain 20490
  .wd-lg-750p-f {
20491
    width: 750% !important;
20492
  }
16848 stevensc 20493
 
16825 efrain 20494
  .mx-wd-lg-750p-f {
20495
    max-width: 750% !important;
20496
  }
16848 stevensc 20497
 
16825 efrain 20498
  .mn-wd-lg-750p-f {
20499
    min-width: 750% !important;
20500
  }
16848 stevensc 20501
 
16825 efrain 20502
  .wd-lg-800 {
20503
    width: 800px;
20504
  }
16848 stevensc 20505
 
16825 efrain 20506
  .wd-lg-800p {
20507
    width: 800%;
20508
  }
16848 stevensc 20509
 
16825 efrain 20510
  .mx-wd-lg-800p {
20511
    max-width: 800%;
20512
  }
16848 stevensc 20513
 
16825 efrain 20514
  .mn-wd-lg-800p {
20515
    min-width: 800%;
20516
  }
16848 stevensc 20517
 
16825 efrain 20518
  .wd-lg-800-f {
20519
    width: 800px !important;
20520
  }
16848 stevensc 20521
 
16825 efrain 20522
  .wd-lg-800p-f {
20523
    width: 800% !important;
20524
  }
16848 stevensc 20525
 
16825 efrain 20526
  .mx-wd-lg-800p-f {
20527
    max-width: 800% !important;
20528
  }
16848 stevensc 20529
 
16825 efrain 20530
  .mn-wd-lg-800p-f {
20531
    min-width: 800% !important;
20532
  }
16848 stevensc 20533
 
16825 efrain 20534
  .wd-lg-850 {
20535
    width: 850px;
20536
  }
16848 stevensc 20537
 
16825 efrain 20538
  .wd-lg-850p {
20539
    width: 850%;
20540
  }
16848 stevensc 20541
 
16825 efrain 20542
  .mx-wd-lg-850p {
20543
    max-width: 850%;
20544
  }
16848 stevensc 20545
 
16825 efrain 20546
  .mn-wd-lg-850p {
20547
    min-width: 850%;
20548
  }
16848 stevensc 20549
 
16825 efrain 20550
  .wd-lg-850-f {
20551
    width: 850px !important;
20552
  }
16848 stevensc 20553
 
16825 efrain 20554
  .wd-lg-850p-f {
20555
    width: 850% !important;
20556
  }
16848 stevensc 20557
 
16825 efrain 20558
  .mx-wd-lg-850p-f {
20559
    max-width: 850% !important;
20560
  }
16848 stevensc 20561
 
16825 efrain 20562
  .mn-wd-lg-850p-f {
20563
    min-width: 850% !important;
20564
  }
16848 stevensc 20565
 
16825 efrain 20566
  .wd-lg-900 {
20567
    width: 900px;
20568
  }
16848 stevensc 20569
 
16825 efrain 20570
  .wd-lg-900p {
20571
    width: 900%;
20572
  }
16848 stevensc 20573
 
16825 efrain 20574
  .mx-wd-lg-900p {
20575
    max-width: 900%;
20576
  }
16848 stevensc 20577
 
16825 efrain 20578
  .mn-wd-lg-900p {
20579
    min-width: 900%;
20580
  }
16848 stevensc 20581
 
16825 efrain 20582
  .wd-lg-900-f {
20583
    width: 900px !important;
20584
  }
16848 stevensc 20585
 
16825 efrain 20586
  .wd-lg-900p-f {
20587
    width: 900% !important;
20588
  }
16848 stevensc 20589
 
16825 efrain 20590
  .mx-wd-lg-900p-f {
20591
    max-width: 900% !important;
20592
  }
16848 stevensc 20593
 
16825 efrain 20594
  .mn-wd-lg-900p-f {
20595
    min-width: 900% !important;
20596
  }
16848 stevensc 20597
 
16825 efrain 20598
  .wd-lg-950 {
20599
    width: 950px;
20600
  }
16848 stevensc 20601
 
16825 efrain 20602
  .wd-lg-950p {
20603
    width: 950%;
20604
  }
16848 stevensc 20605
 
16825 efrain 20606
  .mx-wd-lg-950p {
20607
    max-width: 950%;
20608
  }
16848 stevensc 20609
 
16825 efrain 20610
  .mn-wd-lg-950p {
20611
    min-width: 950%;
20612
  }
16848 stevensc 20613
 
16825 efrain 20614
  .wd-lg-950-f {
20615
    width: 950px !important;
20616
  }
16848 stevensc 20617
 
16825 efrain 20618
  .wd-lg-950p-f {
20619
    width: 950% !important;
20620
  }
16848 stevensc 20621
 
16825 efrain 20622
  .mx-wd-lg-950p-f {
20623
    max-width: 950% !important;
20624
  }
16848 stevensc 20625
 
16825 efrain 20626
  .mn-wd-lg-950p-f {
20627
    min-width: 950% !important;
20628
  }
16848 stevensc 20629
 
16825 efrain 20630
  .wd-lg-1000 {
20631
    width: 1000px;
20632
  }
16848 stevensc 20633
 
16825 efrain 20634
  .wd-lg-1000p {
20635
    width: 1000%;
20636
  }
16848 stevensc 20637
 
16825 efrain 20638
  .mx-wd-lg-1000p {
20639
    max-width: 1000%;
20640
  }
16848 stevensc 20641
 
16825 efrain 20642
  .mn-wd-lg-1000p {
20643
    min-width: 1000%;
20644
  }
16848 stevensc 20645
 
16825 efrain 20646
  .wd-lg-1000-f {
20647
    width: 1000px !important;
20648
  }
16848 stevensc 20649
 
16825 efrain 20650
  .wd-lg-1000p-f {
20651
    width: 1000% !important;
20652
  }
16848 stevensc 20653
 
16825 efrain 20654
  .mx-wd-lg-1000p-f {
20655
    max-width: 1000% !important;
20656
  }
16848 stevensc 20657
 
16825 efrain 20658
  .mn-wd-lg-1000p-f {
20659
    min-width: 1000% !important;
20660
  }
16848 stevensc 20661
 
16825 efrain 20662
  .wd-lg-auto {
20663
    width: auto;
20664
  }
16848 stevensc 20665
 
16825 efrain 20666
  .wd-lg-auto-f {
20667
    width: auto !important;
20668
  }
20669
}
16848 stevensc 20670
 
16825 efrain 20671
@media (min-width: 1200px) {
20672
  .wd-xl-5 {
20673
    width: 5px;
20674
  }
16848 stevensc 20675
 
16825 efrain 20676
  .wd-xl-5p {
20677
    width: 5%;
20678
  }
16848 stevensc 20679
 
16825 efrain 20680
  .mx-wd-xl-5p {
20681
    max-width: 5%;
20682
  }
16848 stevensc 20683
 
16825 efrain 20684
  .mn-wd-xl-5p {
20685
    min-width: 5%;
20686
  }
16848 stevensc 20687
 
16825 efrain 20688
  .wd-xl-5-f {
20689
    width: 5px !important;
20690
  }
16848 stevensc 20691
 
16825 efrain 20692
  .wd-xl-5p-f {
20693
    width: 5% !important;
20694
  }
16848 stevensc 20695
 
16825 efrain 20696
  .mx-wd-xl-5p-f {
20697
    max-width: 5% !important;
20698
  }
16848 stevensc 20699
 
16825 efrain 20700
  .mn-wd-xl-5p-f {
20701
    min-width: 5% !important;
20702
  }
16848 stevensc 20703
 
16825 efrain 20704
  .wd-xl-10 {
20705
    width: 10px;
20706
  }
16848 stevensc 20707
 
16825 efrain 20708
  .wd-xl-10p {
20709
    width: 10%;
20710
  }
16848 stevensc 20711
 
16825 efrain 20712
  .mx-wd-xl-10p {
20713
    max-width: 10%;
20714
  }
16848 stevensc 20715
 
16825 efrain 20716
  .mn-wd-xl-10p {
20717
    min-width: 10%;
20718
  }
16848 stevensc 20719
 
16825 efrain 20720
  .wd-xl-10-f {
20721
    width: 10px !important;
20722
  }
16848 stevensc 20723
 
16825 efrain 20724
  .wd-xl-10p-f {
20725
    width: 10% !important;
20726
  }
16848 stevensc 20727
 
16825 efrain 20728
  .mx-wd-xl-10p-f {
20729
    max-width: 10% !important;
20730
  }
16848 stevensc 20731
 
16825 efrain 20732
  .mn-wd-xl-10p-f {
20733
    min-width: 10% !important;
20734
  }
16848 stevensc 20735
 
16825 efrain 20736
  .wd-xl-15 {
20737
    width: 15px;
20738
  }
16848 stevensc 20739
 
16825 efrain 20740
  .wd-xl-15p {
20741
    width: 15%;
20742
  }
16848 stevensc 20743
 
16825 efrain 20744
  .mx-wd-xl-15p {
20745
    max-width: 15%;
20746
  }
16848 stevensc 20747
 
16825 efrain 20748
  .mn-wd-xl-15p {
20749
    min-width: 15%;
20750
  }
16848 stevensc 20751
 
16825 efrain 20752
  .wd-xl-15-f {
20753
    width: 15px !important;
20754
  }
16848 stevensc 20755
 
16825 efrain 20756
  .wd-xl-15p-f {
20757
    width: 15% !important;
20758
  }
16848 stevensc 20759
 
16825 efrain 20760
  .mx-wd-xl-15p-f {
20761
    max-width: 15% !important;
20762
  }
16848 stevensc 20763
 
16825 efrain 20764
  .mn-wd-xl-15p-f {
20765
    min-width: 15% !important;
20766
  }
16848 stevensc 20767
 
16825 efrain 20768
  .wd-xl-20 {
20769
    width: 20px;
20770
  }
16848 stevensc 20771
 
16825 efrain 20772
  .wd-xl-20p {
20773
    width: 20%;
20774
  }
16848 stevensc 20775
 
16825 efrain 20776
  .mx-wd-xl-20p {
20777
    max-width: 20%;
20778
  }
16848 stevensc 20779
 
16825 efrain 20780
  .mn-wd-xl-20p {
20781
    min-width: 20%;
20782
  }
16848 stevensc 20783
 
16825 efrain 20784
  .wd-xl-20-f {
20785
    width: 20px !important;
20786
  }
16848 stevensc 20787
 
16825 efrain 20788
  .wd-xl-20p-f {
20789
    width: 20% !important;
20790
  }
16848 stevensc 20791
 
16825 efrain 20792
  .mx-wd-xl-20p-f {
20793
    max-width: 20% !important;
20794
  }
16848 stevensc 20795
 
16825 efrain 20796
  .mn-wd-xl-20p-f {
20797
    min-width: 20% !important;
20798
  }
16848 stevensc 20799
 
16825 efrain 20800
  .wd-xl-25 {
20801
    width: 25px;
20802
  }
16848 stevensc 20803
 
16825 efrain 20804
  .wd-xl-25p {
20805
    width: 25%;
20806
  }
16848 stevensc 20807
 
16825 efrain 20808
  .mx-wd-xl-25p {
20809
    max-width: 25%;
20810
  }
16848 stevensc 20811
 
16825 efrain 20812
  .mn-wd-xl-25p {
20813
    min-width: 25%;
20814
  }
16848 stevensc 20815
 
16825 efrain 20816
  .wd-xl-25-f {
20817
    width: 25px !important;
20818
  }
16848 stevensc 20819
 
16825 efrain 20820
  .wd-xl-25p-f {
20821
    width: 25% !important;
20822
  }
16848 stevensc 20823
 
16825 efrain 20824
  .mx-wd-xl-25p-f {
20825
    max-width: 25% !important;
20826
  }
16848 stevensc 20827
 
16825 efrain 20828
  .mn-wd-xl-25p-f {
20829
    min-width: 25% !important;
20830
  }
16848 stevensc 20831
 
16825 efrain 20832
  .wd-xl-30 {
20833
    width: 30px;
20834
  }
16848 stevensc 20835
 
16825 efrain 20836
  .wd-xl-30p {
20837
    width: 30%;
20838
  }
16848 stevensc 20839
 
16825 efrain 20840
  .mx-wd-xl-30p {
20841
    max-width: 30%;
20842
  }
16848 stevensc 20843
 
16825 efrain 20844
  .mn-wd-xl-30p {
20845
    min-width: 30%;
20846
  }
16848 stevensc 20847
 
16825 efrain 20848
  .wd-xl-30-f {
20849
    width: 30px !important;
20850
  }
16848 stevensc 20851
 
16825 efrain 20852
  .wd-xl-30p-f {
20853
    width: 30% !important;
20854
  }
16848 stevensc 20855
 
16825 efrain 20856
  .mx-wd-xl-30p-f {
20857
    max-width: 30% !important;
20858
  }
16848 stevensc 20859
 
16825 efrain 20860
  .mn-wd-xl-30p-f {
20861
    min-width: 30% !important;
20862
  }
16848 stevensc 20863
 
16825 efrain 20864
  .wd-xl-35 {
20865
    width: 35px;
20866
  }
16848 stevensc 20867
 
16825 efrain 20868
  .wd-xl-35p {
20869
    width: 35%;
20870
  }
16848 stevensc 20871
 
16825 efrain 20872
  .mx-wd-xl-35p {
20873
    max-width: 35%;
20874
  }
16848 stevensc 20875
 
16825 efrain 20876
  .mn-wd-xl-35p {
20877
    min-width: 35%;
20878
  }
16848 stevensc 20879
 
16825 efrain 20880
  .wd-xl-35-f {
20881
    width: 35px !important;
20882
  }
16848 stevensc 20883
 
16825 efrain 20884
  .wd-xl-35p-f {
20885
    width: 35% !important;
20886
  }
16848 stevensc 20887
 
16825 efrain 20888
  .mx-wd-xl-35p-f {
20889
    max-width: 35% !important;
20890
  }
16848 stevensc 20891
 
16825 efrain 20892
  .mn-wd-xl-35p-f {
20893
    min-width: 35% !important;
20894
  }
16848 stevensc 20895
 
16825 efrain 20896
  .wd-xl-40 {
20897
    width: 40px;
20898
  }
16848 stevensc 20899
 
16825 efrain 20900
  .wd-xl-40p {
20901
    width: 40%;
20902
  }
16848 stevensc 20903
 
16825 efrain 20904
  .mx-wd-xl-40p {
20905
    max-width: 40%;
20906
  }
16848 stevensc 20907
 
16825 efrain 20908
  .mn-wd-xl-40p {
20909
    min-width: 40%;
20910
  }
16848 stevensc 20911
 
16825 efrain 20912
  .wd-xl-40-f {
20913
    width: 40px !important;
20914
  }
16848 stevensc 20915
 
16825 efrain 20916
  .wd-xl-40p-f {
20917
    width: 40% !important;
20918
  }
16848 stevensc 20919
 
16825 efrain 20920
  .mx-wd-xl-40p-f {
20921
    max-width: 40% !important;
20922
  }
16848 stevensc 20923
 
16825 efrain 20924
  .mn-wd-xl-40p-f {
20925
    min-width: 40% !important;
20926
  }
16848 stevensc 20927
 
16825 efrain 20928
  .wd-xl-45 {
20929
    width: 45px;
20930
  }
16848 stevensc 20931
 
16825 efrain 20932
  .wd-xl-45p {
20933
    width: 45%;
20934
  }
16848 stevensc 20935
 
16825 efrain 20936
  .mx-wd-xl-45p {
20937
    max-width: 45%;
20938
  }
16848 stevensc 20939
 
16825 efrain 20940
  .mn-wd-xl-45p {
20941
    min-width: 45%;
20942
  }
16848 stevensc 20943
 
16825 efrain 20944
  .wd-xl-45-f {
20945
    width: 45px !important;
20946
  }
16848 stevensc 20947
 
16825 efrain 20948
  .wd-xl-45p-f {
20949
    width: 45% !important;
20950
  }
16848 stevensc 20951
 
16825 efrain 20952
  .mx-wd-xl-45p-f {
20953
    max-width: 45% !important;
20954
  }
16848 stevensc 20955
 
16825 efrain 20956
  .mn-wd-xl-45p-f {
20957
    min-width: 45% !important;
20958
  }
16848 stevensc 20959
 
16825 efrain 20960
  .wd-xl-50 {
20961
    width: 50px;
20962
  }
16848 stevensc 20963
 
16825 efrain 20964
  .wd-xl-50p {
20965
    width: 50%;
20966
  }
16848 stevensc 20967
 
16825 efrain 20968
  .mx-wd-xl-50p {
20969
    max-width: 50%;
20970
  }
16848 stevensc 20971
 
16825 efrain 20972
  .mn-wd-xl-50p {
20973
    min-width: 50%;
20974
  }
16848 stevensc 20975
 
16825 efrain 20976
  .wd-xl-50-f {
20977
    width: 50px !important;
20978
  }
16848 stevensc 20979
 
16825 efrain 20980
  .wd-xl-50p-f {
20981
    width: 50% !important;
20982
  }
16848 stevensc 20983
 
16825 efrain 20984
  .mx-wd-xl-50p-f {
20985
    max-width: 50% !important;
20986
  }
16848 stevensc 20987
 
16825 efrain 20988
  .mn-wd-xl-50p-f {
20989
    min-width: 50% !important;
20990
  }
16848 stevensc 20991
 
16825 efrain 20992
  .wd-xl-55 {
20993
    width: 55px;
20994
  }
16848 stevensc 20995
 
16825 efrain 20996
  .wd-xl-55p {
20997
    width: 55%;
20998
  }
16848 stevensc 20999
 
16825 efrain 21000
  .mx-wd-xl-55p {
21001
    max-width: 55%;
21002
  }
16848 stevensc 21003
 
16825 efrain 21004
  .mn-wd-xl-55p {
21005
    min-width: 55%;
21006
  }
16848 stevensc 21007
 
16825 efrain 21008
  .wd-xl-55-f {
21009
    width: 55px !important;
21010
  }
16848 stevensc 21011
 
16825 efrain 21012
  .wd-xl-55p-f {
21013
    width: 55% !important;
21014
  }
16848 stevensc 21015
 
16825 efrain 21016
  .mx-wd-xl-55p-f {
21017
    max-width: 55% !important;
21018
  }
16848 stevensc 21019
 
16825 efrain 21020
  .mn-wd-xl-55p-f {
21021
    min-width: 55% !important;
21022
  }
16848 stevensc 21023
 
16825 efrain 21024
  .wd-xl-60 {
21025
    width: 60px;
21026
  }
16848 stevensc 21027
 
16825 efrain 21028
  .wd-xl-60p {
21029
    width: 60%;
21030
  }
16848 stevensc 21031
 
16825 efrain 21032
  .mx-wd-xl-60p {
21033
    max-width: 60%;
21034
  }
16848 stevensc 21035
 
16825 efrain 21036
  .mn-wd-xl-60p {
21037
    min-width: 60%;
21038
  }
16848 stevensc 21039
 
16825 efrain 21040
  .wd-xl-60-f {
21041
    width: 60px !important;
21042
  }
16848 stevensc 21043
 
16825 efrain 21044
  .wd-xl-60p-f {
21045
    width: 60% !important;
21046
  }
16848 stevensc 21047
 
16825 efrain 21048
  .mx-wd-xl-60p-f {
21049
    max-width: 60% !important;
21050
  }
16848 stevensc 21051
 
16825 efrain 21052
  .mn-wd-xl-60p-f {
21053
    min-width: 60% !important;
21054
  }
16848 stevensc 21055
 
16825 efrain 21056
  .wd-xl-65 {
21057
    width: 65px;
21058
  }
16848 stevensc 21059
 
16825 efrain 21060
  .wd-xl-65p {
21061
    width: 65%;
21062
  }
16848 stevensc 21063
 
16825 efrain 21064
  .mx-wd-xl-65p {
21065
    max-width: 65%;
21066
  }
16848 stevensc 21067
 
16825 efrain 21068
  .mn-wd-xl-65p {
21069
    min-width: 65%;
21070
  }
16848 stevensc 21071
 
16825 efrain 21072
  .wd-xl-65-f {
21073
    width: 65px !important;
21074
  }
16848 stevensc 21075
 
16825 efrain 21076
  .wd-xl-65p-f {
21077
    width: 65% !important;
21078
  }
16848 stevensc 21079
 
16825 efrain 21080
  .mx-wd-xl-65p-f {
21081
    max-width: 65% !important;
21082
  }
16848 stevensc 21083
 
16825 efrain 21084
  .mn-wd-xl-65p-f {
21085
    min-width: 65% !important;
21086
  }
16848 stevensc 21087
 
16825 efrain 21088
  .wd-xl-70 {
21089
    width: 70px;
21090
  }
16848 stevensc 21091
 
16825 efrain 21092
  .wd-xl-70p {
21093
    width: 70%;
21094
  }
16848 stevensc 21095
 
16825 efrain 21096
  .mx-wd-xl-70p {
21097
    max-width: 70%;
21098
  }
16848 stevensc 21099
 
16825 efrain 21100
  .mn-wd-xl-70p {
21101
    min-width: 70%;
21102
  }
16848 stevensc 21103
 
16825 efrain 21104
  .wd-xl-70-f {
21105
    width: 70px !important;
21106
  }
16848 stevensc 21107
 
16825 efrain 21108
  .wd-xl-70p-f {
21109
    width: 70% !important;
21110
  }
16848 stevensc 21111
 
16825 efrain 21112
  .mx-wd-xl-70p-f {
21113
    max-width: 70% !important;
21114
  }
16848 stevensc 21115
 
16825 efrain 21116
  .mn-wd-xl-70p-f {
21117
    min-width: 70% !important;
21118
  }
16848 stevensc 21119
 
16825 efrain 21120
  .wd-xl-75 {
21121
    width: 75px;
21122
  }
16848 stevensc 21123
 
16825 efrain 21124
  .wd-xl-75p {
21125
    width: 75%;
21126
  }
16848 stevensc 21127
 
16825 efrain 21128
  .mx-wd-xl-75p {
21129
    max-width: 75%;
21130
  }
16848 stevensc 21131
 
16825 efrain 21132
  .mn-wd-xl-75p {
21133
    min-width: 75%;
21134
  }
16848 stevensc 21135
 
16825 efrain 21136
  .wd-xl-75-f {
21137
    width: 75px !important;
21138
  }
16848 stevensc 21139
 
16825 efrain 21140
  .wd-xl-75p-f {
21141
    width: 75% !important;
21142
  }
16848 stevensc 21143
 
16825 efrain 21144
  .mx-wd-xl-75p-f {
21145
    max-width: 75% !important;
21146
  }
16848 stevensc 21147
 
16825 efrain 21148
  .mn-wd-xl-75p-f {
21149
    min-width: 75% !important;
21150
  }
16848 stevensc 21151
 
16825 efrain 21152
  .wd-xl-80 {
21153
    width: 80px;
21154
  }
16848 stevensc 21155
 
16825 efrain 21156
  .wd-xl-80p {
21157
    width: 80%;
21158
  }
16848 stevensc 21159
 
16825 efrain 21160
  .mx-wd-xl-80p {
21161
    max-width: 80%;
21162
  }
16848 stevensc 21163
 
16825 efrain 21164
  .mn-wd-xl-80p {
21165
    min-width: 80%;
21166
  }
16848 stevensc 21167
 
16825 efrain 21168
  .wd-xl-80-f {
21169
    width: 80px !important;
21170
  }
16848 stevensc 21171
 
16825 efrain 21172
  .wd-xl-80p-f {
21173
    width: 80% !important;
21174
  }
16848 stevensc 21175
 
16825 efrain 21176
  .mx-wd-xl-80p-f {
21177
    max-width: 80% !important;
21178
  }
16848 stevensc 21179
 
16825 efrain 21180
  .mn-wd-xl-80p-f {
21181
    min-width: 80% !important;
21182
  }
16848 stevensc 21183
 
16825 efrain 21184
  .wd-xl-85 {
21185
    width: 85px;
21186
  }
16848 stevensc 21187
 
16825 efrain 21188
  .wd-xl-85p {
21189
    width: 85%;
21190
  }
16848 stevensc 21191
 
16825 efrain 21192
  .mx-wd-xl-85p {
21193
    max-width: 85%;
21194
  }
16848 stevensc 21195
 
16825 efrain 21196
  .mn-wd-xl-85p {
21197
    min-width: 85%;
21198
  }
16848 stevensc 21199
 
16825 efrain 21200
  .wd-xl-85-f {
21201
    width: 85px !important;
21202
  }
16848 stevensc 21203
 
16825 efrain 21204
  .wd-xl-85p-f {
21205
    width: 85% !important;
21206
  }
16848 stevensc 21207
 
16825 efrain 21208
  .mx-wd-xl-85p-f {
21209
    max-width: 85% !important;
21210
  }
16848 stevensc 21211
 
16825 efrain 21212
  .mn-wd-xl-85p-f {
21213
    min-width: 85% !important;
21214
  }
16848 stevensc 21215
 
16825 efrain 21216
  .wd-xl-90 {
21217
    width: 90px;
21218
  }
16848 stevensc 21219
 
16825 efrain 21220
  .wd-xl-90p {
21221
    width: 90%;
21222
  }
16848 stevensc 21223
 
16825 efrain 21224
  .mx-wd-xl-90p {
21225
    max-width: 90%;
21226
  }
16848 stevensc 21227
 
16825 efrain 21228
  .mn-wd-xl-90p {
21229
    min-width: 90%;
21230
  }
16848 stevensc 21231
 
16825 efrain 21232
  .wd-xl-90-f {
21233
    width: 90px !important;
21234
  }
16848 stevensc 21235
 
16825 efrain 21236
  .wd-xl-90p-f {
21237
    width: 90% !important;
21238
  }
16848 stevensc 21239
 
16825 efrain 21240
  .mx-wd-xl-90p-f {
21241
    max-width: 90% !important;
21242
  }
16848 stevensc 21243
 
16825 efrain 21244
  .mn-wd-xl-90p-f {
21245
    min-width: 90% !important;
21246
  }
16848 stevensc 21247
 
16825 efrain 21248
  .wd-xl-95 {
21249
    width: 95px;
21250
  }
16848 stevensc 21251
 
16825 efrain 21252
  .wd-xl-95p {
21253
    width: 95%;
21254
  }
16848 stevensc 21255
 
16825 efrain 21256
  .mx-wd-xl-95p {
21257
    max-width: 95%;
21258
  }
16848 stevensc 21259
 
16825 efrain 21260
  .mn-wd-xl-95p {
21261
    min-width: 95%;
21262
  }
16848 stevensc 21263
 
16825 efrain 21264
  .wd-xl-95-f {
21265
    width: 95px !important;
21266
  }
16848 stevensc 21267
 
16825 efrain 21268
  .wd-xl-95p-f {
21269
    width: 95% !important;
21270
  }
16848 stevensc 21271
 
16825 efrain 21272
  .mx-wd-xl-95p-f {
21273
    max-width: 95% !important;
21274
  }
16848 stevensc 21275
 
16825 efrain 21276
  .mn-wd-xl-95p-f {
21277
    min-width: 95% !important;
21278
  }
16848 stevensc 21279
 
16825 efrain 21280
  .wd-xl-100 {
21281
    width: 100px;
21282
  }
16848 stevensc 21283
 
16825 efrain 21284
  .wd-xl-100p {
21285
    width: 100%;
21286
  }
16848 stevensc 21287
 
16825 efrain 21288
  .mx-wd-xl-100p {
21289
    max-width: 100%;
21290
  }
16848 stevensc 21291
 
16825 efrain 21292
  .mn-wd-xl-100p {
21293
    min-width: 100%;
21294
  }
16848 stevensc 21295
 
16825 efrain 21296
  .wd-xl-100-f {
21297
    width: 100px !important;
21298
  }
16848 stevensc 21299
 
16825 efrain 21300
  .wd-xl-100p-f {
21301
    width: 100% !important;
21302
  }
16848 stevensc 21303
 
16825 efrain 21304
  .mx-wd-xl-100p-f {
21305
    max-width: 100% !important;
21306
  }
16848 stevensc 21307
 
16825 efrain 21308
  .mn-wd-xl-100p-f {
21309
    min-width: 100% !important;
21310
  }
16848 stevensc 21311
 
16825 efrain 21312
  .wd-xl-150 {
21313
    width: 150px;
21314
  }
16848 stevensc 21315
 
16825 efrain 21316
  .wd-xl-150p {
21317
    width: 150%;
21318
  }
16848 stevensc 21319
 
16825 efrain 21320
  .mx-wd-xl-150p {
21321
    max-width: 150%;
21322
  }
16848 stevensc 21323
 
16825 efrain 21324
  .mn-wd-xl-150p {
21325
    min-width: 150%;
21326
  }
16848 stevensc 21327
 
16825 efrain 21328
  .wd-xl-150-f {
21329
    width: 150px !important;
21330
  }
16848 stevensc 21331
 
16825 efrain 21332
  .wd-xl-150p-f {
21333
    width: 150% !important;
21334
  }
16848 stevensc 21335
 
16825 efrain 21336
  .mx-wd-xl-150p-f {
21337
    max-width: 150% !important;
21338
  }
16848 stevensc 21339
 
16825 efrain 21340
  .mn-wd-xl-150p-f {
21341
    min-width: 150% !important;
21342
  }
16848 stevensc 21343
 
16825 efrain 21344
  .wd-xl-200 {
21345
    width: 200px;
21346
  }
16848 stevensc 21347
 
16825 efrain 21348
  .wd-xl-200p {
21349
    width: 200%;
21350
  }
16848 stevensc 21351
 
16825 efrain 21352
  .mx-wd-xl-200p {
21353
    max-width: 200%;
21354
  }
16848 stevensc 21355
 
16825 efrain 21356
  .mn-wd-xl-200p {
21357
    min-width: 200%;
21358
  }
16848 stevensc 21359
 
16825 efrain 21360
  .wd-xl-200-f {
21361
    width: 200px !important;
21362
  }
16848 stevensc 21363
 
16825 efrain 21364
  .wd-xl-200p-f {
21365
    width: 200% !important;
21366
  }
16848 stevensc 21367
 
16825 efrain 21368
  .mx-wd-xl-200p-f {
21369
    max-width: 200% !important;
21370
  }
16848 stevensc 21371
 
16825 efrain 21372
  .mn-wd-xl-200p-f {
21373
    min-width: 200% !important;
21374
  }
16848 stevensc 21375
 
16825 efrain 21376
  .wd-xl-250 {
21377
    width: 250px;
21378
  }
16848 stevensc 21379
 
16825 efrain 21380
  .wd-xl-250p {
21381
    width: 250%;
21382
  }
16848 stevensc 21383
 
16825 efrain 21384
  .mx-wd-xl-250p {
21385
    max-width: 250%;
21386
  }
16848 stevensc 21387
 
16825 efrain 21388
  .mn-wd-xl-250p {
21389
    min-width: 250%;
21390
  }
16848 stevensc 21391
 
16825 efrain 21392
  .wd-xl-250-f {
21393
    width: 250px !important;
21394
  }
16848 stevensc 21395
 
16825 efrain 21396
  .wd-xl-250p-f {
21397
    width: 250% !important;
21398
  }
16848 stevensc 21399
 
16825 efrain 21400
  .mx-wd-xl-250p-f {
21401
    max-width: 250% !important;
21402
  }
16848 stevensc 21403
 
16825 efrain 21404
  .mn-wd-xl-250p-f {
21405
    min-width: 250% !important;
21406
  }
16848 stevensc 21407
 
16825 efrain 21408
  .wd-xl-300 {
21409
    width: 300px;
21410
  }
16848 stevensc 21411
 
16825 efrain 21412
  .wd-xl-300p {
21413
    width: 300%;
21414
  }
16848 stevensc 21415
 
16825 efrain 21416
  .mx-wd-xl-300p {
21417
    max-width: 300%;
21418
  }
16848 stevensc 21419
 
16825 efrain 21420
  .mn-wd-xl-300p {
21421
    min-width: 300%;
21422
  }
16848 stevensc 21423
 
16825 efrain 21424
  .wd-xl-300-f {
21425
    width: 300px !important;
21426
  }
16848 stevensc 21427
 
16825 efrain 21428
  .wd-xl-300p-f {
21429
    width: 300% !important;
21430
  }
16848 stevensc 21431
 
16825 efrain 21432
  .mx-wd-xl-300p-f {
21433
    max-width: 300% !important;
21434
  }
16848 stevensc 21435
 
16825 efrain 21436
  .mn-wd-xl-300p-f {
21437
    min-width: 300% !important;
21438
  }
16848 stevensc 21439
 
16825 efrain 21440
  .wd-xl-350 {
21441
    width: 350px;
21442
  }
16848 stevensc 21443
 
16825 efrain 21444
  .wd-xl-350p {
21445
    width: 350%;
21446
  }
16848 stevensc 21447
 
16825 efrain 21448
  .mx-wd-xl-350p {
21449
    max-width: 350%;
21450
  }
16848 stevensc 21451
 
16825 efrain 21452
  .mn-wd-xl-350p {
21453
    min-width: 350%;
21454
  }
16848 stevensc 21455
 
16825 efrain 21456
  .wd-xl-350-f {
21457
    width: 350px !important;
21458
  }
16848 stevensc 21459
 
16825 efrain 21460
  .wd-xl-350p-f {
21461
    width: 350% !important;
21462
  }
16848 stevensc 21463
 
16825 efrain 21464
  .mx-wd-xl-350p-f {
21465
    max-width: 350% !important;
21466
  }
16848 stevensc 21467
 
16825 efrain 21468
  .mn-wd-xl-350p-f {
21469
    min-width: 350% !important;
21470
  }
16848 stevensc 21471
 
16825 efrain 21472
  .wd-xl-400 {
21473
    width: 400px;
21474
  }
16848 stevensc 21475
 
16825 efrain 21476
  .wd-xl-400p {
21477
    width: 400%;
21478
  }
16848 stevensc 21479
 
16825 efrain 21480
  .mx-wd-xl-400p {
21481
    max-width: 400%;
21482
  }
16848 stevensc 21483
 
16825 efrain 21484
  .mn-wd-xl-400p {
21485
    min-width: 400%;
21486
  }
16848 stevensc 21487
 
16825 efrain 21488
  .wd-xl-400-f {
21489
    width: 400px !important;
21490
  }
16848 stevensc 21491
 
16825 efrain 21492
  .wd-xl-400p-f {
21493
    width: 400% !important;
21494
  }
16848 stevensc 21495
 
16825 efrain 21496
  .mx-wd-xl-400p-f {
21497
    max-width: 400% !important;
21498
  }
16848 stevensc 21499
 
16825 efrain 21500
  .mn-wd-xl-400p-f {
21501
    min-width: 400% !important;
21502
  }
16848 stevensc 21503
 
16825 efrain 21504
  .wd-xl-450 {
21505
    width: 450px;
21506
  }
16848 stevensc 21507
 
16825 efrain 21508
  .wd-xl-450p {
21509
    width: 450%;
21510
  }
16848 stevensc 21511
 
16825 efrain 21512
  .mx-wd-xl-450p {
21513
    max-width: 450%;
21514
  }
16848 stevensc 21515
 
16825 efrain 21516
  .mn-wd-xl-450p {
21517
    min-width: 450%;
21518
  }
16848 stevensc 21519
 
16825 efrain 21520
  .wd-xl-450-f {
21521
    width: 450px !important;
21522
  }
16848 stevensc 21523
 
16825 efrain 21524
  .wd-xl-450p-f {
21525
    width: 450% !important;
21526
  }
16848 stevensc 21527
 
16825 efrain 21528
  .mx-wd-xl-450p-f {
21529
    max-width: 450% !important;
21530
  }
16848 stevensc 21531
 
16825 efrain 21532
  .mn-wd-xl-450p-f {
21533
    min-width: 450% !important;
21534
  }
16848 stevensc 21535
 
16825 efrain 21536
  .wd-xl-500 {
21537
    width: 500px;
21538
  }
16848 stevensc 21539
 
16825 efrain 21540
  .wd-xl-500p {
21541
    width: 500%;
21542
  }
16848 stevensc 21543
 
16825 efrain 21544
  .mx-wd-xl-500p {
21545
    max-width: 500%;
21546
  }
16848 stevensc 21547
 
16825 efrain 21548
  .mn-wd-xl-500p {
21549
    min-width: 500%;
21550
  }
16848 stevensc 21551
 
16825 efrain 21552
  .wd-xl-500-f {
21553
    width: 500px !important;
21554
  }
16848 stevensc 21555
 
16825 efrain 21556
  .wd-xl-500p-f {
21557
    width: 500% !important;
21558
  }
16848 stevensc 21559
 
16825 efrain 21560
  .mx-wd-xl-500p-f {
21561
    max-width: 500% !important;
21562
  }
16848 stevensc 21563
 
16825 efrain 21564
  .mn-wd-xl-500p-f {
21565
    min-width: 500% !important;
21566
  }
16848 stevensc 21567
 
16825 efrain 21568
  .wd-xl-550 {
21569
    width: 550px;
21570
  }
16848 stevensc 21571
 
16825 efrain 21572
  .wd-xl-550p {
21573
    width: 550%;
21574
  }
16848 stevensc 21575
 
16825 efrain 21576
  .mx-wd-xl-550p {
21577
    max-width: 550%;
21578
  }
16848 stevensc 21579
 
16825 efrain 21580
  .mn-wd-xl-550p {
21581
    min-width: 550%;
21582
  }
16848 stevensc 21583
 
16825 efrain 21584
  .wd-xl-550-f {
21585
    width: 550px !important;
21586
  }
16848 stevensc 21587
 
16825 efrain 21588
  .wd-xl-550p-f {
21589
    width: 550% !important;
21590
  }
16848 stevensc 21591
 
16825 efrain 21592
  .mx-wd-xl-550p-f {
21593
    max-width: 550% !important;
21594
  }
16848 stevensc 21595
 
16825 efrain 21596
  .mn-wd-xl-550p-f {
21597
    min-width: 550% !important;
21598
  }
16848 stevensc 21599
 
16825 efrain 21600
  .wd-xl-600 {
21601
    width: 600px;
21602
  }
16848 stevensc 21603
 
16825 efrain 21604
  .wd-xl-600p {
21605
    width: 600%;
21606
  }
16848 stevensc 21607
 
16825 efrain 21608
  .mx-wd-xl-600p {
21609
    max-width: 600%;
21610
  }
16848 stevensc 21611
 
16825 efrain 21612
  .mn-wd-xl-600p {
21613
    min-width: 600%;
21614
  }
16848 stevensc 21615
 
16825 efrain 21616
  .wd-xl-600-f {
21617
    width: 600px !important;
21618
  }
16848 stevensc 21619
 
16825 efrain 21620
  .wd-xl-600p-f {
21621
    width: 600% !important;
21622
  }
16848 stevensc 21623
 
16825 efrain 21624
  .mx-wd-xl-600p-f {
21625
    max-width: 600% !important;
21626
  }
16848 stevensc 21627
 
16825 efrain 21628
  .mn-wd-xl-600p-f {
21629
    min-width: 600% !important;
21630
  }
16848 stevensc 21631
 
16825 efrain 21632
  .wd-xl-650 {
21633
    width: 650px;
21634
  }
16848 stevensc 21635
 
16825 efrain 21636
  .wd-xl-650p {
21637
    width: 650%;
21638
  }
16848 stevensc 21639
 
16825 efrain 21640
  .mx-wd-xl-650p {
21641
    max-width: 650%;
21642
  }
16848 stevensc 21643
 
16825 efrain 21644
  .mn-wd-xl-650p {
21645
    min-width: 650%;
21646
  }
16848 stevensc 21647
 
16825 efrain 21648
  .wd-xl-650-f {
21649
    width: 650px !important;
21650
  }
16848 stevensc 21651
 
16825 efrain 21652
  .wd-xl-650p-f {
21653
    width: 650% !important;
21654
  }
16848 stevensc 21655
 
16825 efrain 21656
  .mx-wd-xl-650p-f {
21657
    max-width: 650% !important;
21658
  }
16848 stevensc 21659
 
16825 efrain 21660
  .mn-wd-xl-650p-f {
21661
    min-width: 650% !important;
21662
  }
16848 stevensc 21663
 
16825 efrain 21664
  .wd-xl-700 {
21665
    width: 700px;
21666
  }
16848 stevensc 21667
 
16825 efrain 21668
  .wd-xl-700p {
21669
    width: 700%;
21670
  }
16848 stevensc 21671
 
16825 efrain 21672
  .mx-wd-xl-700p {
21673
    max-width: 700%;
21674
  }
16848 stevensc 21675
 
16825 efrain 21676
  .mn-wd-xl-700p {
21677
    min-width: 700%;
21678
  }
16848 stevensc 21679
 
16825 efrain 21680
  .wd-xl-700-f {
21681
    width: 700px !important;
21682
  }
16848 stevensc 21683
 
16825 efrain 21684
  .wd-xl-700p-f {
21685
    width: 700% !important;
21686
  }
16848 stevensc 21687
 
16825 efrain 21688
  .mx-wd-xl-700p-f {
21689
    max-width: 700% !important;
21690
  }
16848 stevensc 21691
 
16825 efrain 21692
  .mn-wd-xl-700p-f {
21693
    min-width: 700% !important;
21694
  }
16848 stevensc 21695
 
16825 efrain 21696
  .wd-xl-750 {
21697
    width: 750px;
21698
  }
16848 stevensc 21699
 
16825 efrain 21700
  .wd-xl-750p {
21701
    width: 750%;
21702
  }
16848 stevensc 21703
 
16825 efrain 21704
  .mx-wd-xl-750p {
21705
    max-width: 750%;
21706
  }
16848 stevensc 21707
 
16825 efrain 21708
  .mn-wd-xl-750p {
21709
    min-width: 750%;
21710
  }
16848 stevensc 21711
 
16825 efrain 21712
  .wd-xl-750-f {
21713
    width: 750px !important;
21714
  }
16848 stevensc 21715
 
16825 efrain 21716
  .wd-xl-750p-f {
21717
    width: 750% !important;
21718
  }
16848 stevensc 21719
 
16825 efrain 21720
  .mx-wd-xl-750p-f {
21721
    max-width: 750% !important;
21722
  }
16848 stevensc 21723
 
16825 efrain 21724
  .mn-wd-xl-750p-f {
21725
    min-width: 750% !important;
21726
  }
16848 stevensc 21727
 
16825 efrain 21728
  .wd-xl-800 {
21729
    width: 800px;
21730
  }
16848 stevensc 21731
 
16825 efrain 21732
  .wd-xl-800p {
21733
    width: 800%;
21734
  }
16848 stevensc 21735
 
16825 efrain 21736
  .mx-wd-xl-800p {
21737
    max-width: 800%;
21738
  }
16848 stevensc 21739
 
16825 efrain 21740
  .mn-wd-xl-800p {
21741
    min-width: 800%;
21742
  }
16848 stevensc 21743
 
16825 efrain 21744
  .wd-xl-800-f {
21745
    width: 800px !important;
21746
  }
16848 stevensc 21747
 
16825 efrain 21748
  .wd-xl-800p-f {
21749
    width: 800% !important;
21750
  }
16848 stevensc 21751
 
16825 efrain 21752
  .mx-wd-xl-800p-f {
21753
    max-width: 800% !important;
21754
  }
16848 stevensc 21755
 
16825 efrain 21756
  .mn-wd-xl-800p-f {
21757
    min-width: 800% !important;
21758
  }
16848 stevensc 21759
 
16825 efrain 21760
  .wd-xl-850 {
21761
    width: 850px;
21762
  }
16848 stevensc 21763
 
16825 efrain 21764
  .wd-xl-850p {
21765
    width: 850%;
21766
  }
16848 stevensc 21767
 
16825 efrain 21768
  .mx-wd-xl-850p {
21769
    max-width: 850%;
21770
  }
16848 stevensc 21771
 
16825 efrain 21772
  .mn-wd-xl-850p {
21773
    min-width: 850%;
21774
  }
16848 stevensc 21775
 
16825 efrain 21776
  .wd-xl-850-f {
21777
    width: 850px !important;
21778
  }
16848 stevensc 21779
 
16825 efrain 21780
  .wd-xl-850p-f {
21781
    width: 850% !important;
21782
  }
16848 stevensc 21783
 
16825 efrain 21784
  .mx-wd-xl-850p-f {
21785
    max-width: 850% !important;
21786
  }
16848 stevensc 21787
 
16825 efrain 21788
  .mn-wd-xl-850p-f {
21789
    min-width: 850% !important;
21790
  }
16848 stevensc 21791
 
16825 efrain 21792
  .wd-xl-900 {
21793
    width: 900px;
21794
  }
16848 stevensc 21795
 
16825 efrain 21796
  .wd-xl-900p {
21797
    width: 900%;
21798
  }
16848 stevensc 21799
 
16825 efrain 21800
  .mx-wd-xl-900p {
21801
    max-width: 900%;
21802
  }
16848 stevensc 21803
 
16825 efrain 21804
  .mn-wd-xl-900p {
21805
    min-width: 900%;
21806
  }
16848 stevensc 21807
 
16825 efrain 21808
  .wd-xl-900-f {
21809
    width: 900px !important;
21810
  }
16848 stevensc 21811
 
16825 efrain 21812
  .wd-xl-900p-f {
21813
    width: 900% !important;
21814
  }
16848 stevensc 21815
 
16825 efrain 21816
  .mx-wd-xl-900p-f {
21817
    max-width: 900% !important;
21818
  }
16848 stevensc 21819
 
16825 efrain 21820
  .mn-wd-xl-900p-f {
21821
    min-width: 900% !important;
21822
  }
16848 stevensc 21823
 
16825 efrain 21824
  .wd-xl-950 {
21825
    width: 950px;
21826
  }
16848 stevensc 21827
 
16825 efrain 21828
  .wd-xl-950p {
21829
    width: 950%;
21830
  }
16848 stevensc 21831
 
16825 efrain 21832
  .mx-wd-xl-950p {
21833
    max-width: 950%;
21834
  }
16848 stevensc 21835
 
16825 efrain 21836
  .mn-wd-xl-950p {
21837
    min-width: 950%;
21838
  }
16848 stevensc 21839
 
16825 efrain 21840
  .wd-xl-950-f {
21841
    width: 950px !important;
21842
  }
16848 stevensc 21843
 
16825 efrain 21844
  .wd-xl-950p-f {
21845
    width: 950% !important;
21846
  }
16848 stevensc 21847
 
16825 efrain 21848
  .mx-wd-xl-950p-f {
21849
    max-width: 950% !important;
21850
  }
16848 stevensc 21851
 
16825 efrain 21852
  .mn-wd-xl-950p-f {
21853
    min-width: 950% !important;
21854
  }
16848 stevensc 21855
 
16825 efrain 21856
  .wd-xl-1000 {
21857
    width: 1000px;
21858
  }
16848 stevensc 21859
 
16825 efrain 21860
  .wd-xl-1000p {
21861
    width: 1000%;
21862
  }
16848 stevensc 21863
 
16825 efrain 21864
  .mx-wd-xl-1000p {
21865
    max-width: 1000%;
21866
  }
16848 stevensc 21867
 
16825 efrain 21868
  .mn-wd-xl-1000p {
21869
    min-width: 1000%;
21870
  }
16848 stevensc 21871
 
16825 efrain 21872
  .wd-xl-1000-f {
21873
    width: 1000px !important;
21874
  }
16848 stevensc 21875
 
16825 efrain 21876
  .wd-xl-1000p-f {
21877
    width: 1000% !important;
21878
  }
16848 stevensc 21879
 
16825 efrain 21880
  .mx-wd-xl-1000p-f {
21881
    max-width: 1000% !important;
21882
  }
16848 stevensc 21883
 
16825 efrain 21884
  .mn-wd-xl-1000p-f {
21885
    min-width: 1000% !important;
21886
  }
16848 stevensc 21887
 
16825 efrain 21888
  .wd-xl-auto {
21889
    width: auto;
21890
  }
16848 stevensc 21891
 
16825 efrain 21892
  .wd-xl-auto {
21893
    width: auto !important;
21894
  }
21895
}
16848 stevensc 21896
 
16825 efrain 21897
@media (min-width: 1400px) {
21898
  .wd-xxl-5 {
21899
    width: 5px;
21900
  }
16848 stevensc 21901
 
16825 efrain 21902
  .wd-xxl-5p {
21903
    width: 5%;
21904
  }
16848 stevensc 21905
 
16825 efrain 21906
  .mx-wd-xxl-5p {
21907
    max-width: 5%;
21908
  }
16848 stevensc 21909
 
16825 efrain 21910
  .mn-wd-xxl-5p {
21911
    min-width: 5%;
21912
  }
16848 stevensc 21913
 
16825 efrain 21914
  .wd-xxl-5-f {
21915
    width: 5px !important;
21916
  }
16848 stevensc 21917
 
16825 efrain 21918
  .wd-xxl-5p-f {
21919
    width: 5% !important;
21920
  }
16848 stevensc 21921
 
16825 efrain 21922
  .mx-wd-xxl-5p-f {
21923
    max-width: 5% !important;
21924
  }
16848 stevensc 21925
 
16825 efrain 21926
  .mn-wd-xxl-5p-f {
21927
    min-width: 5% !important;
21928
  }
16848 stevensc 21929
 
16825 efrain 21930
  .wd-xxl-10 {
21931
    width: 10px;
21932
  }
16848 stevensc 21933
 
16825 efrain 21934
  .wd-xxl-10p {
21935
    width: 10%;
21936
  }
16848 stevensc 21937
 
16825 efrain 21938
  .mx-wd-xxl-10p {
21939
    max-width: 10%;
21940
  }
16848 stevensc 21941
 
16825 efrain 21942
  .mn-wd-xxl-10p {
21943
    min-width: 10%;
21944
  }
16848 stevensc 21945
 
16825 efrain 21946
  .wd-xxl-10-f {
21947
    width: 10px !important;
21948
  }
16848 stevensc 21949
 
16825 efrain 21950
  .wd-xxl-10p-f {
21951
    width: 10% !important;
21952
  }
16848 stevensc 21953
 
16825 efrain 21954
  .mx-wd-xxl-10p-f {
21955
    max-width: 10% !important;
21956
  }
16848 stevensc 21957
 
16825 efrain 21958
  .mn-wd-xxl-10p-f {
21959
    min-width: 10% !important;
21960
  }
16848 stevensc 21961
 
16825 efrain 21962
  .wd-xxl-15 {
21963
    width: 15px;
21964
  }
16848 stevensc 21965
 
16825 efrain 21966
  .wd-xxl-15p {
21967
    width: 15%;
21968
  }
16848 stevensc 21969
 
16825 efrain 21970
  .mx-wd-xxl-15p {
21971
    max-width: 15%;
21972
  }
16848 stevensc 21973
 
16825 efrain 21974
  .mn-wd-xxl-15p {
21975
    min-width: 15%;
21976
  }
16848 stevensc 21977
 
16825 efrain 21978
  .wd-xxl-15-f {
21979
    width: 15px !important;
21980
  }
16848 stevensc 21981
 
16825 efrain 21982
  .wd-xxl-15p-f {
21983
    width: 15% !important;
21984
  }
16848 stevensc 21985
 
16825 efrain 21986
  .mx-wd-xxl-15p-f {
21987
    max-width: 15% !important;
21988
  }
16848 stevensc 21989
 
16825 efrain 21990
  .mn-wd-xxl-15p-f {
21991
    min-width: 15% !important;
21992
  }
16848 stevensc 21993
 
16825 efrain 21994
  .wd-xxl-20 {
21995
    width: 20px;
21996
  }
16848 stevensc 21997
 
16825 efrain 21998
  .wd-xxl-20p {
21999
    width: 20%;
22000
  }
16848 stevensc 22001
 
16825 efrain 22002
  .mx-wd-xxl-20p {
22003
    max-width: 20%;
22004
  }
16848 stevensc 22005
 
16825 efrain 22006
  .mn-wd-xxl-20p {
22007
    min-width: 20%;
22008
  }
16848 stevensc 22009
 
16825 efrain 22010
  .wd-xxl-20-f {
22011
    width: 20px !important;
22012
  }
16848 stevensc 22013
 
16825 efrain 22014
  .wd-xxl-20p-f {
22015
    width: 20% !important;
22016
  }
16848 stevensc 22017
 
16825 efrain 22018
  .mx-wd-xxl-20p-f {
22019
    max-width: 20% !important;
22020
  }
16848 stevensc 22021
 
16825 efrain 22022
  .mn-wd-xxl-20p-f {
22023
    min-width: 20% !important;
22024
  }
16848 stevensc 22025
 
16825 efrain 22026
  .wd-xxl-25 {
22027
    width: 25px;
22028
  }
16848 stevensc 22029
 
16825 efrain 22030
  .wd-xxl-25p {
22031
    width: 25%;
22032
  }
16848 stevensc 22033
 
16825 efrain 22034
  .mx-wd-xxl-25p {
22035
    max-width: 25%;
22036
  }
16848 stevensc 22037
 
16825 efrain 22038
  .mn-wd-xxl-25p {
22039
    min-width: 25%;
22040
  }
16848 stevensc 22041
 
16825 efrain 22042
  .wd-xxl-25-f {
22043
    width: 25px !important;
22044
  }
16848 stevensc 22045
 
16825 efrain 22046
  .wd-xxl-25p-f {
22047
    width: 25% !important;
22048
  }
16848 stevensc 22049
 
16825 efrain 22050
  .mx-wd-xxl-25p-f {
22051
    max-width: 25% !important;
22052
  }
16848 stevensc 22053
 
16825 efrain 22054
  .mn-wd-xxl-25p-f {
22055
    min-width: 25% !important;
22056
  }
16848 stevensc 22057
 
16825 efrain 22058
  .wd-xxl-30 {
22059
    width: 30px;
22060
  }
16848 stevensc 22061
 
16825 efrain 22062
  .wd-xxl-30p {
22063
    width: 30%;
22064
  }
16848 stevensc 22065
 
16825 efrain 22066
  .mx-wd-xxl-30p {
22067
    max-width: 30%;
22068
  }
16848 stevensc 22069
 
16825 efrain 22070
  .mn-wd-xxl-30p {
22071
    min-width: 30%;
22072
  }
16848 stevensc 22073
 
16825 efrain 22074
  .wd-xxl-30-f {
22075
    width: 30px !important;
22076
  }
16848 stevensc 22077
 
16825 efrain 22078
  .wd-xxl-30p-f {
22079
    width: 30% !important;
22080
  }
16848 stevensc 22081
 
16825 efrain 22082
  .mx-wd-xxl-30p-f {
22083
    max-width: 30% !important;
22084
  }
16848 stevensc 22085
 
16825 efrain 22086
  .mn-wd-xxl-30p-f {
22087
    min-width: 30% !important;
22088
  }
16848 stevensc 22089
 
16825 efrain 22090
  .wd-xxl-35 {
22091
    width: 35px;
22092
  }
16848 stevensc 22093
 
16825 efrain 22094
  .wd-xxl-35p {
22095
    width: 35%;
22096
  }
16848 stevensc 22097
 
16825 efrain 22098
  .mx-wd-xxl-35p {
22099
    max-width: 35%;
22100
  }
16848 stevensc 22101
 
16825 efrain 22102
  .mn-wd-xxl-35p {
22103
    min-width: 35%;
22104
  }
16848 stevensc 22105
 
16825 efrain 22106
  .wd-xxl-35-f {
22107
    width: 35px !important;
22108
  }
16848 stevensc 22109
 
16825 efrain 22110
  .wd-xxl-35p-f {
22111
    width: 35% !important;
22112
  }
16848 stevensc 22113
 
16825 efrain 22114
  .mx-wd-xxl-35p-f {
22115
    max-width: 35% !important;
22116
  }
16848 stevensc 22117
 
16825 efrain 22118
  .mn-wd-xxl-35p-f {
22119
    min-width: 35% !important;
22120
  }
16848 stevensc 22121
 
16825 efrain 22122
  .wd-xxl-40 {
22123
    width: 40px;
22124
  }
16848 stevensc 22125
 
16825 efrain 22126
  .wd-xxl-40p {
22127
    width: 40%;
22128
  }
16848 stevensc 22129
 
16825 efrain 22130
  .mx-wd-xxl-40p {
22131
    max-width: 40%;
22132
  }
16848 stevensc 22133
 
16825 efrain 22134
  .mn-wd-xxl-40p {
22135
    min-width: 40%;
22136
  }
16848 stevensc 22137
 
16825 efrain 22138
  .wd-xxl-40-f {
22139
    width: 40px !important;
22140
  }
16848 stevensc 22141
 
16825 efrain 22142
  .wd-xxl-40p-f {
22143
    width: 40% !important;
22144
  }
16848 stevensc 22145
 
16825 efrain 22146
  .mx-wd-xxl-40p-f {
22147
    max-width: 40% !important;
22148
  }
16848 stevensc 22149
 
16825 efrain 22150
  .mn-wd-xxl-40p-f {
22151
    min-width: 40% !important;
22152
  }
16848 stevensc 22153
 
16825 efrain 22154
  .wd-xxl-45 {
22155
    width: 45px;
22156
  }
16848 stevensc 22157
 
16825 efrain 22158
  .wd-xxl-45p {
22159
    width: 45%;
22160
  }
16848 stevensc 22161
 
16825 efrain 22162
  .mx-wd-xxl-45p {
22163
    max-width: 45%;
22164
  }
16848 stevensc 22165
 
16825 efrain 22166
  .mn-wd-xxl-45p {
22167
    min-width: 45%;
22168
  }
16848 stevensc 22169
 
16825 efrain 22170
  .wd-xxl-45-f {
22171
    width: 45px !important;
22172
  }
16848 stevensc 22173
 
16825 efrain 22174
  .wd-xxl-45p-f {
22175
    width: 45% !important;
22176
  }
16848 stevensc 22177
 
16825 efrain 22178
  .mx-wd-xxl-45p-f {
22179
    max-width: 45% !important;
22180
  }
16848 stevensc 22181
 
16825 efrain 22182
  .mn-wd-xxl-45p-f {
22183
    min-width: 45% !important;
22184
  }
16848 stevensc 22185
 
16825 efrain 22186
  .wd-xxl-50 {
22187
    width: 50px;
22188
  }
16848 stevensc 22189
 
16825 efrain 22190
  .wd-xxl-50p {
22191
    width: 50%;
22192
  }
16848 stevensc 22193
 
16825 efrain 22194
  .mx-wd-xxl-50p {
22195
    max-width: 50%;
22196
  }
16848 stevensc 22197
 
16825 efrain 22198
  .mn-wd-xxl-50p {
22199
    min-width: 50%;
22200
  }
16848 stevensc 22201
 
16825 efrain 22202
  .wd-xxl-50-f {
22203
    width: 50px !important;
22204
  }
16848 stevensc 22205
 
16825 efrain 22206
  .wd-xxl-50p-f {
22207
    width: 50% !important;
22208
  }
16848 stevensc 22209
 
16825 efrain 22210
  .mx-wd-xxl-50p-f {
22211
    max-width: 50% !important;
22212
  }
16848 stevensc 22213
 
16825 efrain 22214
  .mn-wd-xxl-50p-f {
22215
    min-width: 50% !important;
22216
  }
16848 stevensc 22217
 
16825 efrain 22218
  .wd-xxl-55 {
22219
    width: 55px;
22220
  }
16848 stevensc 22221
 
16825 efrain 22222
  .wd-xxl-55p {
22223
    width: 55%;
22224
  }
16848 stevensc 22225
 
16825 efrain 22226
  .mx-wd-xxl-55p {
22227
    max-width: 55%;
22228
  }
16848 stevensc 22229
 
16825 efrain 22230
  .mn-wd-xxl-55p {
22231
    min-width: 55%;
22232
  }
16848 stevensc 22233
 
16825 efrain 22234
  .wd-xxl-55-f {
22235
    width: 55px !important;
22236
  }
16848 stevensc 22237
 
16825 efrain 22238
  .wd-xxl-55p-f {
22239
    width: 55% !important;
22240
  }
16848 stevensc 22241
 
16825 efrain 22242
  .mx-wd-xxl-55p-f {
22243
    max-width: 55% !important;
22244
  }
16848 stevensc 22245
 
16825 efrain 22246
  .mn-wd-xxl-55p-f {
22247
    min-width: 55% !important;
22248
  }
16848 stevensc 22249
 
16825 efrain 22250
  .wd-xxl-60 {
22251
    width: 60px;
22252
  }
16848 stevensc 22253
 
16825 efrain 22254
  .wd-xxl-60p {
22255
    width: 60%;
22256
  }
16848 stevensc 22257
 
16825 efrain 22258
  .mx-wd-xxl-60p {
22259
    max-width: 60%;
22260
  }
16848 stevensc 22261
 
16825 efrain 22262
  .mn-wd-xxl-60p {
22263
    min-width: 60%;
22264
  }
16848 stevensc 22265
 
16825 efrain 22266
  .wd-xxl-60-f {
22267
    width: 60px !important;
22268
  }
16848 stevensc 22269
 
16825 efrain 22270
  .wd-xxl-60p-f {
22271
    width: 60% !important;
22272
  }
16848 stevensc 22273
 
16825 efrain 22274
  .mx-wd-xxl-60p-f {
22275
    max-width: 60% !important;
22276
  }
16848 stevensc 22277
 
16825 efrain 22278
  .mn-wd-xxl-60p-f {
22279
    min-width: 60% !important;
22280
  }
16848 stevensc 22281
 
16825 efrain 22282
  .wd-xxl-65 {
22283
    width: 65px;
22284
  }
16848 stevensc 22285
 
16825 efrain 22286
  .wd-xxl-65p {
22287
    width: 65%;
22288
  }
16848 stevensc 22289
 
16825 efrain 22290
  .mx-wd-xxl-65p {
22291
    max-width: 65%;
22292
  }
16848 stevensc 22293
 
16825 efrain 22294
  .mn-wd-xxl-65p {
22295
    min-width: 65%;
22296
  }
16848 stevensc 22297
 
16825 efrain 22298
  .wd-xxl-65-f {
22299
    width: 65px !important;
22300
  }
16848 stevensc 22301
 
16825 efrain 22302
  .wd-xxl-65p-f {
22303
    width: 65% !important;
22304
  }
16848 stevensc 22305
 
16825 efrain 22306
  .mx-wd-xxl-65p-f {
22307
    max-width: 65% !important;
22308
  }
16848 stevensc 22309
 
16825 efrain 22310
  .mn-wd-xxl-65p-f {
22311
    min-width: 65% !important;
22312
  }
16848 stevensc 22313
 
16825 efrain 22314
  .wd-xxl-70 {
22315
    width: 70px;
22316
  }
16848 stevensc 22317
 
16825 efrain 22318
  .wd-xxl-70p {
22319
    width: 70%;
22320
  }
16848 stevensc 22321
 
16825 efrain 22322
  .mx-wd-xxl-70p {
22323
    max-width: 70%;
22324
  }
16848 stevensc 22325
 
16825 efrain 22326
  .mn-wd-xxl-70p {
22327
    min-width: 70%;
22328
  }
16848 stevensc 22329
 
16825 efrain 22330
  .wd-xxl-70-f {
22331
    width: 70px !important;
22332
  }
16848 stevensc 22333
 
16825 efrain 22334
  .wd-xxl-70p-f {
22335
    width: 70% !important;
22336
  }
16848 stevensc 22337
 
16825 efrain 22338
  .mx-wd-xxl-70p-f {
22339
    max-width: 70% !important;
22340
  }
16848 stevensc 22341
 
16825 efrain 22342
  .mn-wd-xxl-70p-f {
22343
    min-width: 70% !important;
22344
  }
16848 stevensc 22345
 
16825 efrain 22346
  .wd-xxl-75 {
22347
    width: 75px;
22348
  }
16848 stevensc 22349
 
16825 efrain 22350
  .wd-xxl-75p {
22351
    width: 75%;
22352
  }
16848 stevensc 22353
 
16825 efrain 22354
  .mx-wd-xxl-75p {
22355
    max-width: 75%;
22356
  }
16848 stevensc 22357
 
16825 efrain 22358
  .mn-wd-xxl-75p {
22359
    min-width: 75%;
22360
  }
16848 stevensc 22361
 
16825 efrain 22362
  .wd-xxl-75-f {
22363
    width: 75px !important;
22364
  }
16848 stevensc 22365
 
16825 efrain 22366
  .wd-xxl-75p-f {
22367
    width: 75% !important;
22368
  }
16848 stevensc 22369
 
16825 efrain 22370
  .mx-wd-xxl-75p-f {
22371
    max-width: 75% !important;
22372
  }
16848 stevensc 22373
 
16825 efrain 22374
  .mn-wd-xxl-75p-f {
22375
    min-width: 75% !important;
22376
  }
16848 stevensc 22377
 
16825 efrain 22378
  .wd-xxl-80 {
22379
    width: 80px;
22380
  }
16848 stevensc 22381
 
16825 efrain 22382
  .wd-xxl-80p {
22383
    width: 80%;
22384
  }
16848 stevensc 22385
 
16825 efrain 22386
  .mx-wd-xxl-80p {
22387
    max-width: 80%;
22388
  }
16848 stevensc 22389
 
16825 efrain 22390
  .mn-wd-xxl-80p {
22391
    min-width: 80%;
22392
  }
16848 stevensc 22393
 
16825 efrain 22394
  .wd-xxl-80-f {
22395
    width: 80px !important;
22396
  }
16848 stevensc 22397
 
16825 efrain 22398
  .wd-xxl-80p-f {
22399
    width: 80% !important;
22400
  }
16848 stevensc 22401
 
16825 efrain 22402
  .mx-wd-xxl-80p-f {
22403
    max-width: 80% !important;
22404
  }
16848 stevensc 22405
 
16825 efrain 22406
  .mn-wd-xxl-80p-f {
22407
    min-width: 80% !important;
22408
  }
16848 stevensc 22409
 
16825 efrain 22410
  .wd-xxl-85 {
22411
    width: 85px;
22412
  }
16848 stevensc 22413
 
16825 efrain 22414
  .wd-xxl-85p {
22415
    width: 85%;
22416
  }
16848 stevensc 22417
 
16825 efrain 22418
  .mx-wd-xxl-85p {
22419
    max-width: 85%;
22420
  }
16848 stevensc 22421
 
16825 efrain 22422
  .mn-wd-xxl-85p {
22423
    min-width: 85%;
22424
  }
16848 stevensc 22425
 
16825 efrain 22426
  .wd-xxl-85-f {
22427
    width: 85px !important;
22428
  }
16848 stevensc 22429
 
16825 efrain 22430
  .wd-xxl-85p-f {
22431
    width: 85% !important;
22432
  }
16848 stevensc 22433
 
16825 efrain 22434
  .mx-wd-xxl-85p-f {
22435
    max-width: 85% !important;
22436
  }
16848 stevensc 22437
 
16825 efrain 22438
  .mn-wd-xxl-85p-f {
22439
    min-width: 85% !important;
22440
  }
16848 stevensc 22441
 
16825 efrain 22442
  .wd-xxl-90 {
22443
    width: 90px;
22444
  }
16848 stevensc 22445
 
16825 efrain 22446
  .wd-xxl-90p {
22447
    width: 90%;
22448
  }
16848 stevensc 22449
 
16825 efrain 22450
  .mx-wd-xxl-90p {
22451
    max-width: 90%;
22452
  }
16848 stevensc 22453
 
16825 efrain 22454
  .mn-wd-xxl-90p {
22455
    min-width: 90%;
22456
  }
16848 stevensc 22457
 
16825 efrain 22458
  .wd-xxl-90-f {
22459
    width: 90px !important;
22460
  }
16848 stevensc 22461
 
16825 efrain 22462
  .wd-xxl-90p-f {
22463
    width: 90% !important;
22464
  }
16848 stevensc 22465
 
16825 efrain 22466
  .mx-wd-xxl-90p-f {
22467
    max-width: 90% !important;
22468
  }
16848 stevensc 22469
 
16825 efrain 22470
  .mn-wd-xxl-90p-f {
22471
    min-width: 90% !important;
22472
  }
16848 stevensc 22473
 
16825 efrain 22474
  .wd-xxl-95 {
22475
    width: 95px;
22476
  }
16848 stevensc 22477
 
16825 efrain 22478
  .wd-xxl-95p {
22479
    width: 95%;
22480
  }
16848 stevensc 22481
 
16825 efrain 22482
  .mx-wd-xxl-95p {
22483
    max-width: 95%;
22484
  }
16848 stevensc 22485
 
16825 efrain 22486
  .mn-wd-xxl-95p {
22487
    min-width: 95%;
22488
  }
16848 stevensc 22489
 
16825 efrain 22490
  .wd-xxl-95-f {
22491
    width: 95px !important;
22492
  }
16848 stevensc 22493
 
16825 efrain 22494
  .wd-xxl-95p-f {
22495
    width: 95% !important;
22496
  }
16848 stevensc 22497
 
16825 efrain 22498
  .mx-wd-xxl-95p-f {
22499
    max-width: 95% !important;
22500
  }
16848 stevensc 22501
 
16825 efrain 22502
  .mn-wd-xxl-95p-f {
22503
    min-width: 95% !important;
22504
  }
16848 stevensc 22505
 
16825 efrain 22506
  .wd-xxl-100 {
22507
    width: 100px;
22508
  }
16848 stevensc 22509
 
16825 efrain 22510
  .wd-xxl-100p {
22511
    width: 100%;
22512
  }
16848 stevensc 22513
 
16825 efrain 22514
  .mx-wd-xxl-100p {
22515
    max-width: 100%;
22516
  }
16848 stevensc 22517
 
16825 efrain 22518
  .mn-wd-xxl-100p {
22519
    min-width: 100%;
22520
  }
16848 stevensc 22521
 
16825 efrain 22522
  .wd-xxl-100-f {
22523
    width: 100px !important;
22524
  }
16848 stevensc 22525
 
16825 efrain 22526
  .wd-xxl-100p-f {
22527
    width: 100% !important;
22528
  }
16848 stevensc 22529
 
16825 efrain 22530
  .mx-wd-xxl-100p-f {
22531
    max-width: 100% !important;
22532
  }
16848 stevensc 22533
 
16825 efrain 22534
  .mn-wd-xxl-100p-f {
22535
    min-width: 100% !important;
22536
  }
16848 stevensc 22537
 
16825 efrain 22538
  .wd-xxl-150 {
22539
    width: 150px;
22540
  }
16848 stevensc 22541
 
16825 efrain 22542
  .wd-xxl-150p {
22543
    width: 150%;
22544
  }
16848 stevensc 22545
 
16825 efrain 22546
  .mx-wd-xxl-150p {
22547
    max-width: 150%;
22548
  }
16848 stevensc 22549
 
16825 efrain 22550
  .mn-wd-xxl-150p {
22551
    min-width: 150%;
22552
  }
16848 stevensc 22553
 
16825 efrain 22554
  .wd-xxl-150-f {
22555
    width: 150px !important;
22556
  }
16848 stevensc 22557
 
16825 efrain 22558
  .wd-xxl-150p-f {
22559
    width: 150% !important;
22560
  }
16848 stevensc 22561
 
16825 efrain 22562
  .mx-wd-xxl-150p-f {
22563
    max-width: 150% !important;
22564
  }
16848 stevensc 22565
 
16825 efrain 22566
  .mn-wd-xxl-150p-f {
22567
    min-width: 150% !important;
22568
  }
16848 stevensc 22569
 
16825 efrain 22570
  .wd-xxl-200 {
22571
    width: 200px;
22572
  }
16848 stevensc 22573
 
16825 efrain 22574
  .wd-xxl-200p {
22575
    width: 200%;
22576
  }
16848 stevensc 22577
 
16825 efrain 22578
  .mx-wd-xxl-200p {
22579
    max-width: 200%;
22580
  }
16848 stevensc 22581
 
16825 efrain 22582
  .mn-wd-xxl-200p {
22583
    min-width: 200%;
22584
  }
16848 stevensc 22585
 
16825 efrain 22586
  .wd-xxl-200-f {
22587
    width: 200px !important;
22588
  }
16848 stevensc 22589
 
16825 efrain 22590
  .wd-xxl-200p-f {
22591
    width: 200% !important;
22592
  }
16848 stevensc 22593
 
16825 efrain 22594
  .mx-wd-xxl-200p-f {
22595
    max-width: 200% !important;
22596
  }
16848 stevensc 22597
 
16825 efrain 22598
  .mn-wd-xxl-200p-f {
22599
    min-width: 200% !important;
22600
  }
16848 stevensc 22601
 
16825 efrain 22602
  .wd-xxl-250 {
22603
    width: 250px;
22604
  }
16848 stevensc 22605
 
16825 efrain 22606
  .wd-xxl-250p {
22607
    width: 250%;
22608
  }
16848 stevensc 22609
 
16825 efrain 22610
  .mx-wd-xxl-250p {
22611
    max-width: 250%;
22612
  }
16848 stevensc 22613
 
16825 efrain 22614
  .mn-wd-xxl-250p {
22615
    min-width: 250%;
22616
  }
16848 stevensc 22617
 
16825 efrain 22618
  .wd-xxl-250-f {
22619
    width: 250px !important;
22620
  }
16848 stevensc 22621
 
16825 efrain 22622
  .wd-xxl-250p-f {
22623
    width: 250% !important;
22624
  }
16848 stevensc 22625
 
16825 efrain 22626
  .mx-wd-xxl-250p-f {
22627
    max-width: 250% !important;
22628
  }
16848 stevensc 22629
 
16825 efrain 22630
  .mn-wd-xxl-250p-f {
22631
    min-width: 250% !important;
22632
  }
16848 stevensc 22633
 
16825 efrain 22634
  .wd-xxl-300 {
22635
    width: 300px;
22636
  }
16848 stevensc 22637
 
16825 efrain 22638
  .wd-xxl-300p {
22639
    width: 300%;
22640
  }
16848 stevensc 22641
 
16825 efrain 22642
  .mx-wd-xxl-300p {
22643
    max-width: 300%;
22644
  }
16848 stevensc 22645
 
16825 efrain 22646
  .mn-wd-xxl-300p {
22647
    min-width: 300%;
22648
  }
16848 stevensc 22649
 
16825 efrain 22650
  .wd-xxl-300-f {
22651
    width: 300px !important;
22652
  }
16848 stevensc 22653
 
16825 efrain 22654
  .wd-xxl-300p-f {
22655
    width: 300% !important;
22656
  }
16848 stevensc 22657
 
16825 efrain 22658
  .mx-wd-xxl-300p-f {
22659
    max-width: 300% !important;
22660
  }
16848 stevensc 22661
 
16825 efrain 22662
  .mn-wd-xxl-300p-f {
22663
    min-width: 300% !important;
22664
  }
16848 stevensc 22665
 
16825 efrain 22666
  .wd-xxl-350 {
22667
    width: 350px;
22668
  }
16848 stevensc 22669
 
16825 efrain 22670
  .wd-xxl-350p {
22671
    width: 350%;
22672
  }
16848 stevensc 22673
 
16825 efrain 22674
  .mx-wd-xxl-350p {
22675
    max-width: 350%;
22676
  }
16848 stevensc 22677
 
16825 efrain 22678
  .mn-wd-xxl-350p {
22679
    min-width: 350%;
22680
  }
16848 stevensc 22681
 
16825 efrain 22682
  .wd-xxl-350-f {
22683
    width: 350px !important;
22684
  }
16848 stevensc 22685
 
16825 efrain 22686
  .wd-xxl-350p-f {
22687
    width: 350% !important;
22688
  }
16848 stevensc 22689
 
16825 efrain 22690
  .mx-wd-xxl-350p-f {
22691
    max-width: 350% !important;
22692
  }
16848 stevensc 22693
 
16825 efrain 22694
  .mn-wd-xxl-350p-f {
22695
    min-width: 350% !important;
22696
  }
16848 stevensc 22697
 
16825 efrain 22698
  .wd-xxl-400 {
22699
    width: 400px;
22700
  }
16848 stevensc 22701
 
16825 efrain 22702
  .wd-xxl-400p {
22703
    width: 400%;
22704
  }
16848 stevensc 22705
 
16825 efrain 22706
  .mx-wd-xxl-400p {
22707
    max-width: 400%;
22708
  }
16848 stevensc 22709
 
16825 efrain 22710
  .mn-wd-xxl-400p {
22711
    min-width: 400%;
22712
  }
16848 stevensc 22713
 
16825 efrain 22714
  .wd-xxl-400-f {
22715
    width: 400px !important;
22716
  }
16848 stevensc 22717
 
16825 efrain 22718
  .wd-xxl-400p-f {
22719
    width: 400% !important;
22720
  }
16848 stevensc 22721
 
16825 efrain 22722
  .mx-wd-xxl-400p-f {
22723
    max-width: 400% !important;
22724
  }
16848 stevensc 22725
 
16825 efrain 22726
  .mn-wd-xxl-400p-f {
22727
    min-width: 400% !important;
22728
  }
16848 stevensc 22729
 
16825 efrain 22730
  .wd-xxl-450 {
22731
    width: 450px;
22732
  }
16848 stevensc 22733
 
16825 efrain 22734
  .wd-xxl-450p {
22735
    width: 450%;
22736
  }
16848 stevensc 22737
 
16825 efrain 22738
  .mx-wd-xxl-450p {
22739
    max-width: 450%;
22740
  }
16848 stevensc 22741
 
16825 efrain 22742
  .mn-wd-xxl-450p {
22743
    min-width: 450%;
22744
  }
16848 stevensc 22745
 
16825 efrain 22746
  .wd-xxl-450-f {
22747
    width: 450px !important;
22748
  }
16848 stevensc 22749
 
16825 efrain 22750
  .wd-xxl-450p-f {
22751
    width: 450% !important;
22752
  }
16848 stevensc 22753
 
16825 efrain 22754
  .mx-wd-xxl-450p-f {
22755
    max-width: 450% !important;
22756
  }
16848 stevensc 22757
 
16825 efrain 22758
  .mn-wd-xxl-450p-f {
22759
    min-width: 450% !important;
22760
  }
16848 stevensc 22761
 
16825 efrain 22762
  .wd-xxl-500 {
22763
    width: 500px;
22764
  }
16848 stevensc 22765
 
16825 efrain 22766
  .wd-xxl-500p {
22767
    width: 500%;
22768
  }
16848 stevensc 22769
 
16825 efrain 22770
  .mx-wd-xxl-500p {
22771
    max-width: 500%;
22772
  }
16848 stevensc 22773
 
16825 efrain 22774
  .mn-wd-xxl-500p {
22775
    min-width: 500%;
22776
  }
16848 stevensc 22777
 
16825 efrain 22778
  .wd-xxl-500-f {
22779
    width: 500px !important;
22780
  }
16848 stevensc 22781
 
16825 efrain 22782
  .wd-xxl-500p-f {
22783
    width: 500% !important;
22784
  }
16848 stevensc 22785
 
16825 efrain 22786
  .mx-wd-xxl-500p-f {
22787
    max-width: 500% !important;
22788
  }
16848 stevensc 22789
 
16825 efrain 22790
  .mn-wd-xxl-500p-f {
22791
    min-width: 500% !important;
22792
  }
16848 stevensc 22793
 
16825 efrain 22794
  .wd-xxl-550 {
22795
    width: 550px;
22796
  }
16848 stevensc 22797
 
16825 efrain 22798
  .wd-xxl-550p {
22799
    width: 550%;
22800
  }
16848 stevensc 22801
 
16825 efrain 22802
  .mx-wd-xxl-550p {
22803
    max-width: 550%;
22804
  }
16848 stevensc 22805
 
16825 efrain 22806
  .mn-wd-xxl-550p {
22807
    min-width: 550%;
22808
  }
16848 stevensc 22809
 
16825 efrain 22810
  .wd-xxl-550-f {
22811
    width: 550px !important;
22812
  }
16848 stevensc 22813
 
16825 efrain 22814
  .wd-xxl-550p-f {
22815
    width: 550% !important;
22816
  }
16848 stevensc 22817
 
16825 efrain 22818
  .mx-wd-xxl-550p-f {
22819
    max-width: 550% !important;
22820
  }
16848 stevensc 22821
 
16825 efrain 22822
  .mn-wd-xxl-550p-f {
22823
    min-width: 550% !important;
22824
  }
16848 stevensc 22825
 
16825 efrain 22826
  .wd-xxl-600 {
22827
    width: 600px;
22828
  }
16848 stevensc 22829
 
16825 efrain 22830
  .wd-xxl-600p {
22831
    width: 600%;
22832
  }
16848 stevensc 22833
 
16825 efrain 22834
  .mx-wd-xxl-600p {
22835
    max-width: 600%;
22836
  }
16848 stevensc 22837
 
16825 efrain 22838
  .mn-wd-xxl-600p {
22839
    min-width: 600%;
22840
  }
16848 stevensc 22841
 
16825 efrain 22842
  .wd-xxl-600-f {
22843
    width: 600px !important;
22844
  }
16848 stevensc 22845
 
16825 efrain 22846
  .wd-xxl-600p-f {
22847
    width: 600% !important;
22848
  }
16848 stevensc 22849
 
16825 efrain 22850
  .mx-wd-xxl-600p-f {
22851
    max-width: 600% !important;
22852
  }
16848 stevensc 22853
 
16825 efrain 22854
  .mn-wd-xxl-600p-f {
22855
    min-width: 600% !important;
22856
  }
16848 stevensc 22857
 
16825 efrain 22858
  .wd-xxl-650 {
22859
    width: 650px;
22860
  }
16848 stevensc 22861
 
16825 efrain 22862
  .wd-xxl-650p {
22863
    width: 650%;
22864
  }
16848 stevensc 22865
 
16825 efrain 22866
  .mx-wd-xxl-650p {
22867
    max-width: 650%;
22868
  }
16848 stevensc 22869
 
16825 efrain 22870
  .mn-wd-xxl-650p {
22871
    min-width: 650%;
22872
  }
16848 stevensc 22873
 
16825 efrain 22874
  .wd-xxl-650-f {
22875
    width: 650px !important;
22876
  }
16848 stevensc 22877
 
16825 efrain 22878
  .wd-xxl-650p-f {
22879
    width: 650% !important;
22880
  }
16848 stevensc 22881
 
16825 efrain 22882
  .mx-wd-xxl-650p-f {
22883
    max-width: 650% !important;
22884
  }
16848 stevensc 22885
 
16825 efrain 22886
  .mn-wd-xxl-650p-f {
22887
    min-width: 650% !important;
22888
  }
16848 stevensc 22889
 
16825 efrain 22890
  .wd-xxl-700 {
22891
    width: 700px;
22892
  }
16848 stevensc 22893
 
16825 efrain 22894
  .wd-xxl-700p {
22895
    width: 700%;
22896
  }
16848 stevensc 22897
 
16825 efrain 22898
  .mx-wd-xxl-700p {
22899
    max-width: 700%;
22900
  }
16848 stevensc 22901
 
16825 efrain 22902
  .mn-wd-xxl-700p {
22903
    min-width: 700%;
22904
  }
16848 stevensc 22905
 
16825 efrain 22906
  .wd-xxl-700-f {
22907
    width: 700px !important;
22908
  }
16848 stevensc 22909
 
16825 efrain 22910
  .wd-xxl-700p-f {
22911
    width: 700% !important;
22912
  }
16848 stevensc 22913
 
16825 efrain 22914
  .mx-wd-xxl-700p-f {
22915
    max-width: 700% !important;
22916
  }
16848 stevensc 22917
 
16825 efrain 22918
  .mn-wd-xxl-700p-f {
22919
    min-width: 700% !important;
22920
  }
16848 stevensc 22921
 
16825 efrain 22922
  .wd-xxl-750 {
22923
    width: 750px;
22924
  }
16848 stevensc 22925
 
16825 efrain 22926
  .wd-xxl-750p {
22927
    width: 750%;
22928
  }
16848 stevensc 22929
 
16825 efrain 22930
  .mx-wd-xxl-750p {
22931
    max-width: 750%;
22932
  }
16848 stevensc 22933
 
16825 efrain 22934
  .mn-wd-xxl-750p {
22935
    min-width: 750%;
22936
  }
16848 stevensc 22937
 
16825 efrain 22938
  .wd-xxl-750-f {
22939
    width: 750px !important;
22940
  }
16848 stevensc 22941
 
16825 efrain 22942
  .wd-xxl-750p-f {
22943
    width: 750% !important;
22944
  }
16848 stevensc 22945
 
16825 efrain 22946
  .mx-wd-xxl-750p-f {
22947
    max-width: 750% !important;
22948
  }
16848 stevensc 22949
 
16825 efrain 22950
  .mn-wd-xxl-750p-f {
22951
    min-width: 750% !important;
22952
  }
16848 stevensc 22953
 
16825 efrain 22954
  .wd-xxl-800 {
22955
    width: 800px;
22956
  }
16848 stevensc 22957
 
16825 efrain 22958
  .wd-xxl-800p {
22959
    width: 800%;
22960
  }
16848 stevensc 22961
 
16825 efrain 22962
  .mx-wd-xxl-800p {
22963
    max-width: 800%;
22964
  }
16848 stevensc 22965
 
16825 efrain 22966
  .mn-wd-xxl-800p {
22967
    min-width: 800%;
22968
  }
16848 stevensc 22969
 
16825 efrain 22970
  .wd-xxl-800-f {
22971
    width: 800px !important;
22972
  }
16848 stevensc 22973
 
16825 efrain 22974
  .wd-xxl-800p-f {
22975
    width: 800% !important;
22976
  }
16848 stevensc 22977
 
16825 efrain 22978
  .mx-wd-xxl-800p-f {
22979
    max-width: 800% !important;
22980
  }
16848 stevensc 22981
 
16825 efrain 22982
  .mn-wd-xxl-800p-f {
22983
    min-width: 800% !important;
22984
  }
16848 stevensc 22985
 
16825 efrain 22986
  .wd-xxl-850 {
22987
    width: 850px;
22988
  }
16848 stevensc 22989
 
16825 efrain 22990
  .wd-xxl-850p {
22991
    width: 850%;
22992
  }
16848 stevensc 22993
 
16825 efrain 22994
  .mx-wd-xxl-850p {
22995
    max-width: 850%;
22996
  }
16848 stevensc 22997
 
16825 efrain 22998
  .mn-wd-xxl-850p {
22999
    min-width: 850%;
23000
  }
16848 stevensc 23001
 
16825 efrain 23002
  .wd-xxl-850-f {
23003
    width: 850px !important;
23004
  }
16848 stevensc 23005
 
16825 efrain 23006
  .wd-xxl-850p-f {
23007
    width: 850% !important;
23008
  }
16848 stevensc 23009
 
16825 efrain 23010
  .mx-wd-xxl-850p-f {
23011
    max-width: 850% !important;
23012
  }
16848 stevensc 23013
 
16825 efrain 23014
  .mn-wd-xxl-850p-f {
23015
    min-width: 850% !important;
23016
  }
16848 stevensc 23017
 
16825 efrain 23018
  .wd-xxl-900 {
23019
    width: 900px;
23020
  }
16848 stevensc 23021
 
16825 efrain 23022
  .wd-xxl-900p {
23023
    width: 900%;
23024
  }
16848 stevensc 23025
 
16825 efrain 23026
  .mx-wd-xxl-900p {
23027
    max-width: 900%;
23028
  }
16848 stevensc 23029
 
16825 efrain 23030
  .mn-wd-xxl-900p {
23031
    min-width: 900%;
23032
  }
16848 stevensc 23033
 
16825 efrain 23034
  .wd-xxl-900-f {
23035
    width: 900px !important;
23036
  }
16848 stevensc 23037
 
16825 efrain 23038
  .wd-xxl-900p-f {
23039
    width: 900% !important;
23040
  }
16848 stevensc 23041
 
16825 efrain 23042
  .mx-wd-xxl-900p-f {
23043
    max-width: 900% !important;
23044
  }
16848 stevensc 23045
 
16825 efrain 23046
  .mn-wd-xxl-900p-f {
23047
    min-width: 900% !important;
23048
  }
16848 stevensc 23049
 
16825 efrain 23050
  .wd-xxl-950 {
23051
    width: 950px;
23052
  }
16848 stevensc 23053
 
16825 efrain 23054
  .wd-xxl-950p {
23055
    width: 950%;
23056
  }
16848 stevensc 23057
 
16825 efrain 23058
  .mx-wd-xxl-950p {
23059
    max-width: 950%;
23060
  }
16848 stevensc 23061
 
16825 efrain 23062
  .mn-wd-xxl-950p {
23063
    min-width: 950%;
23064
  }
16848 stevensc 23065
 
16825 efrain 23066
  .wd-xxl-950-f {
23067
    width: 950px !important;
23068
  }
16848 stevensc 23069
 
16825 efrain 23070
  .wd-xxl-950p-f {
23071
    width: 950% !important;
23072
  }
16848 stevensc 23073
 
16825 efrain 23074
  .mx-wd-xxl-950p-f {
23075
    max-width: 950% !important;
23076
  }
16848 stevensc 23077
 
16825 efrain 23078
  .mn-wd-xxl-950p-f {
23079
    min-width: 950% !important;
23080
  }
16848 stevensc 23081
 
16825 efrain 23082
  .wd-xxl-1000 {
23083
    width: 1000px;
23084
  }
16848 stevensc 23085
 
16825 efrain 23086
  .wd-xxl-1000p {
23087
    width: 1000%;
23088
  }
16848 stevensc 23089
 
16825 efrain 23090
  .mx-wd-xxl-1000p {
23091
    max-width: 1000%;
23092
  }
16848 stevensc 23093
 
16825 efrain 23094
  .mn-wd-xxl-1000p {
23095
    min-width: 1000%;
23096
  }
16848 stevensc 23097
 
16825 efrain 23098
  .wd-xxl-1000-f {
23099
    width: 1000px !important;
23100
  }
16848 stevensc 23101
 
16825 efrain 23102
  .wd-xxl-1000p-f {
23103
    width: 1000% !important;
23104
  }
16848 stevensc 23105
 
16825 efrain 23106
  .mx-wd-xxl-1000p-f {
23107
    max-width: 1000% !important;
23108
  }
16848 stevensc 23109
 
16825 efrain 23110
  .mn-wd-xxl-1000p-f {
23111
    min-width: 1000% !important;
23112
  }
16848 stevensc 23113
 
16825 efrain 23114
  .wd-xxl-auto {
23115
    width: auto;
23116
  }
16848 stevensc 23117
 
16825 efrain 23118
  .wd-xxl-auto {
23119
    width: auto !important;
23120
  }
23121
}
16848 stevensc 23122
 
16825 efrain 23123
.bg-facebook {
23124
  background: social-color("facebook");
23125
}
23126
 
23127
.bg-twitter {
23128
  background: social-color("twitter");
23129
}
23130
 
23131
.bg-google {
23132
  background: social-color("google");
23133
}
23134
 
23135
.bg-youtube {
23136
  background: social-color("youtube");
23137
}
23138
 
23139
.bg-vimeo {
23140
  background: social-color("vimeo");
23141
}
23142
 
23143
.bg-dribbble {
23144
  background: social-color("dribbble");
23145
}
23146
 
23147
.bg-github {
23148
  background: social-color("github");
23149
}
23150
 
23151
.bg-instagram {
23152
  background: social-color("instagram");
23153
}
23154
 
23155
.bg-pinterest {
23156
  background: social-color("pinterest");
23157
}
23158
 
23159
.bg-flickr {
23160
  background: social-color("flickr");
23161
}
23162
 
23163
.bg-bitbucket {
23164
  background: social-color("bitbucket");
23165
}
23166
 
23167
.bg-linkedin {
23168
  background: social-color("linkedin");
23169
}
23170
 
23171
body {
23172
  margin: 0;
23173
  padding: 0;
23174
}
23175
 
16848 stevensc 23176
.btn,
23177
.wizard>.actions a,
23178
.wizard>.actions a:active,
23179
.wizard>.actions a:hover,
23180
div.tox .tox-button,
23181
.swal2-popup .swal2-actions button,
23182
.fc .fc-button-primary,
16825 efrain 23183
.btn-group.open .dropdown-toggle,
23184
.btn:active,
23185
.btn:focus,
23186
.btn:hover,
23187
.btn:visited,
23188
a,
23189
a:active,
23190
a:checked,
23191
a:focus,
23192
a:hover,
23193
a:visited,
23194
body,
23195
button,
23196
button:active,
23197
button:hover,
23198
button:visited,
23199
div,
23200
input,
23201
input:active,
23202
input:hover,
23203
input:focus,
23204
input:visited,
23205
select,
23206
select:active,
23207
select:focus,
23208
select:visited,
23209
textarea,
23210
textarea:active,
23211
textarea:focus,
23212
textarea:visited {
23213
  -webkit-box-shadow: none;
23214
  -moz-box-shadow: none;
23215
  box-shadow: none;
23216
}
23217
 
23218
select,
23219
.form-check-input {
16848 stevensc 23220
  appearance: none;
16825 efrain 23221
  -moz-appearance: none;
23222
}
23223
 
23224
input:-webkit-autofill,
23225
input:-webkit-autofill:hover,
23226
input:-webkit-autofill:focus,
23227
input:-webkit-autofill:active {
23228
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23229
  -webkit-text-fill-color: #000;
23230
}
23231
 
23232
*:-moz-full-screen,
23233
*:-webkit-full-screen,
23234
*:fullscreen *:-ms-full-screen {
23235
  overflow: auto;
23236
}
23237
 
23238
pre {
23239
  background-color: color(gray-lighter);
23240
  padding: 15px;
23241
  font-size: 14px;
23242
}
23243
 
23244
code {
23245
  padding: 5px;
23246
  font-family: "Roboto", Helvetica, sans-serif;
23247
  font-weight: 400;
23248
  font-size: 0.875rem;
23249
  border-radius: 4px;
23250
}
23251
 
23252
.grid-margin {
23253
  margin-bottom: 1.5rem;
23254
}
23255
 
23256
@media (min-width: 576px) {
23257
  .grid-margin-sm-0 {
23258
    margin-bottom: 0;
23259
  }
23260
}
23261
 
23262
@media (min-width: 768px) {
23263
  .grid-margin-md-0 {
23264
    margin-bottom: 0;
23265
  }
23266
}
23267
 
23268
@media (min-width: 992px) {
23269
  .grid-margin-lg-0 {
23270
    margin-bottom: 0;
23271
  }
23272
}
23273
 
23274
@media (min-width: 1200px) {
23275
  .grid-margin-xl-0 {
23276
    margin-bottom: 0;
23277
  }
23278
}
23279
 
23280
.stretch-card {
23281
  display: flex;
23282
  align-items: stretch;
23283
  justify-content: stretch;
23284
}
16848 stevensc 23285
 
23286
.stretch-card>.card {
16825 efrain 23287
  width: 100%;
23288
  min-width: 100%;
23289
}
23290
 
23291
.img-lg {
23292
  width: 92px;
23293
  height: 92px;
23294
}
23295
 
23296
.img-md {
23297
  width: 75px;
23298
  height: 92px;
23299
}
23300
 
23301
.img-sm {
23302
  width: 43px;
23303
  height: 43px;
23304
}
23305
 
23306
.img-xs {
23307
  width: 36px;
23308
  height: 36px;
23309
}
23310
 
23311
.img-ss {
23312
  width: 26px;
23313
  height: 26px;
23314
}
23315
 
23316
.fw-boldest {
23317
  font-weight: 900;
23318
}
23319
 
23320
.tx-10 {
23321
  font-size: 10px;
23322
}
23323
 
23324
.tx-11 {
23325
  font-size: 11px;
23326
}
23327
 
23328
.tx-12 {
23329
  font-size: 12px;
23330
}
23331
 
23332
.tx-13 {
23333
  font-size: 13px;
23334
}
23335
 
23336
.tx-14 {
23337
  font-size: 14px;
23338
}
23339
 
23340
.tx-16 {
23341
  font-size: 16px;
23342
}
23343
 
23344
.tx-80 {
23345
  font-size: 80px;
23346
}
23347
 
23348
svg.icon-xs {
23349
  width: 12px;
23350
  height: 12px;
23351
}
23352
 
23353
svg.icon-sm {
23354
  width: 14px;
23355
  height: 14px;
23356
}
23357
 
23358
svg.icon-md {
23359
  width: 16px;
23360
  height: 16px;
23361
}
23362
 
23363
svg.icon-lg {
23364
  width: 20px;
23365
  height: 20px;
23366
}
23367
 
23368
svg.icon-xl {
23369
  width: 26px;
23370
  height: 26px;
23371
}
23372
 
23373
svg.icon-xxl {
23374
  width: 40px;
23375
  height: 40px;
23376
}
23377
 
23378
.icon-xs {
23379
  font-size: 14px;
23380
}
23381
 
23382
.icon-sm {
23383
  font-size: 16px;
23384
}
23385
 
23386
.icon-md {
23387
  font-size: 18px;
23388
}
23389
 
23390
.icon-lg {
23391
  font-size: 20px;
23392
}
23393
 
23394
.icon-xl {
23395
  font-size: 24px;
23396
}
23397
 
23398
.icon-xxl {
23399
  font-size: 30px;
23400
}
23401
 
23402
.cursor-pointer {
23403
  cursor: pointer;
23404
}
23405
 
23406
.cursor-default {
23407
  cursor: default;
23408
}
23409
 
23410
.pt-1px {
23411
  padding-top: 1px;
23412
}
23413
 
23414
.pt-2px {
23415
  padding-top: 2px;
23416
}
23417
 
23418
.pt-3px {
23419
  padding-top: 3px;
23420
}
23421
 
23422
.pb-1px {
23423
  padding-bottom: 1px;
23424
}
23425
 
23426
.pb-2px {
23427
  padding-bottom: 2px;
23428
}
23429
 
23430
.pb-3px {
23431
  padding-bottom: 3px;
23432
}
23433
 
23434
.mt-1px {
23435
  margin-top: 1px;
23436
}
23437
 
23438
.mt-2px {
23439
  margin-top: 2px;
23440
}
23441
 
23442
.mt-3px {
23443
  margin-top: 3px;
23444
}
23445
 
23446
.mb-1px {
23447
  margin-bottom: 1px;
23448
}
23449
 
23450
.mb-2px {
23451
  margin-bottom: 2px;
23452
}
23453
 
23454
.mb-3px {
23455
  margin-bottom: 3px;
23456
}
23457
 
23458
.ht-5 {
23459
  height: 5px;
23460
}
23461
 
23462
.ht-10 {
23463
  height: 10px;
23464
}
23465
 
23466
.ht-15 {
23467
  height: 15px;
23468
}
23469
 
23470
.ht-20 {
23471
  height: 20px;
23472
}
23473
 
23474
.ht-30 {
23475
  height: 30px;
23476
}
23477
 
23478
.ht-40 {
23479
  height: 40px;
23480
}
23481
 
23482
.ht-50 {
23483
  height: 50px;
23484
}
23485
 
23486
.ht-60 {
23487
  height: 60px;
23488
}
23489
 
23490
.ht-70 {
23491
  height: 70px;
23492
}
23493
 
23494
.ht-80 {
23495
  height: 80px;
23496
}
23497
 
23498
.ht-90 {
23499
  height: 90px;
23500
}
23501
 
23502
.ht-100 {
23503
  height: 100px;
23504
}
23505
 
23506
body {
23507
  -webkit-font-smoothing: antialiased;
23508
  -moz-osx-font-smoothing: grayscale;
23509
}
23510
 
23511
.text-facebook {
23512
  color: #3b5998;
23513
}
23514
 
23515
.text-twitter {
23516
  color: #1da1f2;
23517
}
23518
 
23519
.text-google {
23520
  color: #dc4e41;
23521
}
23522
 
23523
.text-youtube {
23524
  color: #f00;
23525
}
23526
 
23527
.text-vimeo {
23528
  color: #1ab7ea;
23529
}
23530
 
23531
.text-dribbble {
23532
  color: #ea4c89;
23533
}
23534
 
23535
.text-github {
23536
  color: #181717;
23537
}
23538
 
23539
.text-instagram {
23540
  color: #e4405f;
23541
}
23542
 
23543
.text-pinterest {
23544
  color: #bd081c;
23545
}
23546
 
23547
.text-flickr {
23548
  color: #0063dc;
23549
}
23550
 
23551
.text-bitbucket {
23552
  color: #0052cc;
23553
}
23554
 
23555
.text-linkedin {
23556
  color: #0077b5;
23557
}
23558
 
23559
.main-content {
23560
  color: #000;
23561
  font-size: 16px;
23562
}
16848 stevensc 23563
 
23564
.main-content>.page-title {
16825 efrain 23565
  margin-bottom: 1rem;
23566
  font-weight: 400;
23567
}
16848 stevensc 23568
 
23569
.main-content>h4,
23570
.main-content>.h4 {
16825 efrain 23571
  margin-top: 1.5rem;
23572
  margin-bottom: 0.875rem;
23573
}
16848 stevensc 23574
 
23575
.main-content>h4::before,
23576
.main-content>.h4::before {
16825 efrain 23577
  display: block;
23578
  height: 5.4rem;
23579
  margin-top: -6rem;
23580
  content: "";
23581
}
16848 stevensc 23582
 
23583
.main-content>hr {
16825 efrain 23584
  margin-top: 40px;
23585
  margin-bottom: 40px;
23586
}
16848 stevensc 23587
 
16825 efrain 23588
.main-content .example {
23589
  font-size: 0.875rem;
23590
  letter-spacing: normal;
23591
  padding: 10px;
23592
  background-color: #fff;
23593
  border: 4px solid #e9ecef;
23594
  position: relative;
23595
}
16848 stevensc 23596
 
16825 efrain 23597
@media (min-width: 576px) {
23598
  .main-content .example {
23599
    padding: 25px;
23600
  }
23601
}
16848 stevensc 23602
 
16825 efrain 23603
.main-content .highlight {
23604
  position: relative;
23605
  background-color: #fff;
23606
  padding: 15px;
23607
}
16848 stevensc 23608
 
16825 efrain 23609
.main-content .highlight pre {
23610
  padding: 15px;
23611
  font-size: 0.875rem;
23612
  font-family: "Roboto", Helvetica, sans-serif;
23613
  background: transparent;
23614
  line-height: 1.4;
23615
  margin: 0;
23616
}
16848 stevensc 23617
 
16825 efrain 23618
.main-content .highlight pre code {
23619
  font-family: "Roboto", Helvetica, sans-serif;
23620
  padding: 0;
23621
  tab-size: 8;
23622
  color: #000;
23623
  text-shadow: none;
23624
}
16848 stevensc 23625
 
23626
.main-content .highlight pre code .token.url,
23627
.main-content .highlight pre code .token.string,
23628
.main-content .highlight pre code .token.entity,
23629
.main-content .highlight pre code .token.operator {
16825 efrain 23630
  background: none;
23631
}
16848 stevensc 23632
 
16825 efrain 23633
.main-content .highlight .btn-clipboard {
23634
  position: absolute;
23635
  top: 6px;
23636
  right: 6px;
23637
  font-size: 12px;
23638
  padding: 1px 6px;
23639
  background: rgba(101, 113, 255, 0.2);
23640
}
16848 stevensc 23641
 
23642
.main-content .highlight .btn-clipboard:hover,
23643
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23644
  background: rgba(101, 113, 255, 0.3);
23645
  border-color: transparent;
23646
  transition: background 0.3s ease-in-out;
23647
}
23648
 
16848 stevensc 23649
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23650
  margin-top: 0.5rem;
23651
}
16848 stevensc 23652
 
16825 efrain 23653
.example .modal.static {
23654
  position: static;
23655
  display: block;
23656
}
16848 stevensc 23657
 
16825 efrain 23658
.example .navbar {
23659
  position: relative;
23660
  padding: 0.5rem 1rem;
23661
  left: auto;
23662
  width: 100%;
23663
  height: auto;
23664
  z-index: 9;
23665
  border-bottom: 0;
23666
  box-shadow: none;
23667
}
16848 stevensc 23668
 
16825 efrain 23669
.example .navbar .navbar-brand {
23670
  font-size: 1.25rem;
23671
}
16848 stevensc 23672
 
23673
.example .progress+.progress {
16825 efrain 23674
  margin-top: 10px;
23675
}
16848 stevensc 23676
 
16825 efrain 23677
.example .perfect-scrollbar-example {
23678
  position: relative;
23679
  max-height: 250px;
23680
  background: #fff;
23681
}
16848 stevensc 23682
 
16825 efrain 23683
.example .scrollspy-example {
23684
  position: relative;
23685
  height: 200px;
23686
  margin-top: 0.5rem;
23687
  overflow: auto;
23688
}
16848 stevensc 23689
 
16825 efrain 23690
.example .scrollspy-example-2 {
23691
  position: relative;
23692
  height: 350px;
23693
  overflow: auto;
23694
}
16848 stevensc 23695
 
16825 efrain 23696
.example nav .breadcrumb {
23697
  margin-bottom: 0.75rem;
23698
}
16848 stevensc 23699
 
16825 efrain 23700
.example nav:last-child .breadcrumb {
23701
  margin-bottom: 0;
23702
}
23703
 
23704
.page-breadcrumb {
23705
  margin-bottom: 15px;
23706
}
16848 stevensc 23707
 
16825 efrain 23708
.page-breadcrumb .breadcrumb {
23709
  padding: 0;
23710
  background: #f9fafb;
23711
}
23712
 
23713
.noble-ui-logo {
23714
  font-weight: 700;
23715
  font-size: 25px;
23716
  color: #000865;
23717
}
16848 stevensc 23718
 
16825 efrain 23719
.noble-ui-logo span {
23720
  color: #6571ff;
23721
  font-weight: 300;
23722
}
16848 stevensc 23723
 
16825 efrain 23724
.noble-ui-logo:hover {
23725
  color: #000865;
23726
}
16848 stevensc 23727
 
16825 efrain 23728
.noble-ui-logo.logo-light {
23729
  color: #000;
23730
}
23731
 
23732
.buy-now-wrapper {
23733
  position: fixed;
23734
  bottom: 30px;
23735
  right: 35px;
23736
  z-index: 99999;
23737
}
16848 stevensc 23738
 
16825 efrain 23739
.rtl .buy-now-wrapper {
23740
  right: auto;
23741
  left: 35px;
23742
}
16848 stevensc 23743
 
23744
.buy-now-wrapper .btn svg,
23745
.buy-now-wrapper .wizard>.actions a svg,
23746
.wizard>.actions .buy-now-wrapper a svg,
23747
.buy-now-wrapper div.tox .tox-button svg,
23748
div.tox .buy-now-wrapper .tox-button svg,
23749
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23750
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23751
.buy-now-wrapper .fc .fc-button-primary svg,
23752
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23753
  width: 19px !important;
23754
  height: 19px !important;
23755
}
23756
 
23757
.main-wrapper .page-wrapper {
23758
  min-height: 100vh;
23759
  background: #f9fafb;
23760
  width: calc(100% - 240px);
23761
  margin-left: 240px;
23762
  display: flex;
23763
  flex-direction: column;
23764
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23765
  transition: margin 0.1s ease, width 0.1s ease;
23766
}
16848 stevensc 23767
 
16825 efrain 23768
.main-wrapper .page-wrapper .page-content {
23769
  flex-grow: 1;
23770
  padding: 25px;
23771
  margin-top: 60px;
23772
}
16848 stevensc 23773
 
16825 efrain 23774
@media (max-width: 767px) {
23775
  .main-wrapper .page-wrapper .page-content {
23776
    padding: 25px 15px;
23777
  }
23778
}
16848 stevensc 23779
 
16825 efrain 23780
.main-wrapper .page-wrapper.full-page {
23781
  width: 100%;
23782
  margin-left: 0;
23783
}
16848 stevensc 23784
 
16825 efrain 23785
.main-wrapper .page-wrapper.full-page .page-content {
23786
  margin-top: 0;
23787
}
16848 stevensc 23788
 
16825 efrain 23789
@media (max-width: 991px) {
23790
  .main-wrapper .page-wrapper {
23791
    margin-left: 0;
23792
    width: 100%;
23793
  }
23794
}
23795
 
23796
.page-content .content-nav-wrapper {
23797
  padding: 0;
23798
  position: sticky;
23799
  top: 80px;
23800
  height: calc(100vh - 6rem);
23801
  overflow-y: auto;
23802
  border-left: 1px solid #e9ecef;
23803
  display: none;
23804
}
16848 stevensc 23805
 
16825 efrain 23806
@media (min-width: 1200px) {
23807
  .page-content .content-nav-wrapper {
23808
    display: block;
23809
  }
23810
}
16848 stevensc 23811
 
16825 efrain 23812
.page-content .content-nav-wrapper .content-nav {
23813
  padding: 0px 25px;
23814
}
16848 stevensc 23815
 
16825 efrain 23816
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23817
  padding: 0;
23818
  height: 30px;
23819
  white-space: nowrap;
23820
  color: #7987a1;
23821
  display: flex;
23822
  align-items: center;
23823
}
23824
 
23825
.navbar {
23826
  width: calc(100% - 240px);
23827
  height: 60px;
23828
  background: #fff;
23829
  border-bottom: 1px solid #e9ecef;
23830
  display: flex;
23831
  align-items: center;
23832
  padding: 0;
23833
  position: fixed;
23834
  right: 0;
23835
  left: 240px;
23836
  z-index: 978;
23837
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23838
  transition: width 0.1s ease, left 0.1s ease;
23839
}
16848 stevensc 23840
 
16825 efrain 23841
@media (max-width: 991px) {
23842
  .navbar {
23843
    width: 100%;
23844
    left: 0;
23845
  }
16848 stevensc 23846
 
16825 efrain 23847
  .navbar .navbar-content {
23848
    width: calc(100% - 70px - 1px);
23849
  }
23850
}
16848 stevensc 23851
 
16825 efrain 23852
.navbar .sidebar-toggler {
23853
  height: 100%;
23854
  border-right: 1px solid #e9ecef;
23855
  align-items: center;
23856
  padding: 0 25px;
23857
  display: none;
23858
}
16848 stevensc 23859
 
16825 efrain 23860
.navbar .sidebar-toggler svg {
23861
  width: 20px;
23862
  height: 20px;
23863
  color: #7987a1;
23864
}
16848 stevensc 23865
 
16825 efrain 23866
@media (max-width: 991px) {
23867
  .navbar .sidebar-toggler {
23868
    display: flex;
23869
  }
23870
}
16848 stevensc 23871
 
16825 efrain 23872
.navbar .search-form {
23873
  width: 100%;
23874
  margin-right: 60px;
23875
}
16848 stevensc 23876
 
16825 efrain 23877
.navbar .search-form .input-group .input-group-text {
23878
  padding: 0;
23879
  border: 0;
23880
  color: #7987a1;
23881
  background: #fff;
23882
}
16848 stevensc 23883
 
16825 efrain 23884
.navbar .search-form .input-group .input-group-text svg {
23885
  width: 20px;
23886
  height: 20px;
23887
  cursor: pointer;
23888
}
16848 stevensc 23889
 
23890
.navbar .search-form .input-group .form-control,
23891
.navbar .search-form .input-group .typeahead.tt-input,
23892
.navbar .search-form .input-group .typeahead.tt-hint,
23893
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23894
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23895
  border: 0;
23896
  margin-top: 3px;
23897
}
16848 stevensc 23898
 
16825 efrain 23899
.navbar .navbar-content {
23900
  display: flex;
23901
  width: 100%;
23902
  height: 100%;
23903
  padding-left: 25px;
23904
  padding-right: 25px;
23905
}
16848 stevensc 23906
 
16825 efrain 23907
@media (max-width: 991px) {
23908
  .navbar .navbar-content {
23909
    width: calc(100% - 70px - 1px);
23910
  }
23911
}
16848 stevensc 23912
 
16825 efrain 23913
.navbar .navbar-content .navbar-nav {
23914
  display: flex;
23915
  flex-direction: row;
23916
  margin-left: auto;
23917
}
16848 stevensc 23918
 
16825 efrain 23919
.navbar .navbar-content .navbar-nav .nav-item {
23920
  position: relative;
23921
  margin-left: 5px;
23922
  margin-right: 5px;
23923
  min-width: 30px;
23924
  display: flex;
23925
  align-items: center;
23926
}
16848 stevensc 23927
 
16825 efrain 23928
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23929
  color: #000;
23930
  padding: 0;
23931
  position: relative;
23932
  margin-left: auto;
23933
  margin-right: auto;
23934
}
16848 stevensc 23935
 
23936
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23937
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23938
  color: #6571ff;
23939
}
16848 stevensc 23940
 
16825 efrain 23941
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23942
  display: none;
23943
}
16848 stevensc 23944
 
16825 efrain 23945
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23946
  width: 20px;
23947
  height: 20px;
23948
}
16848 stevensc 23949
 
16825 efrain 23950
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23951
  position: absolute;
23952
  top: 0px;
23953
  right: 2px;
23954
}
16848 stevensc 23955
 
16825 efrain 23956
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23957
  background: #6571ff;
23958
  width: 7px;
23959
  height: 7px;
23960
  border-radius: 50%;
23961
}
16848 stevensc 23962
 
16825 efrain 23963
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23964
  background-color: #6571ff;
23965
  content: "";
23966
  display: table;
23967
  border-radius: 50%;
23968
  position: absolute;
23969
}
16848 stevensc 23970
 
16825 efrain 23971
@media (max-width: 767px) {
23972
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23973
    position: static;
23974
  }
23975
}
16848 stevensc 23976
 
23977
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23978
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23979
  width: max-content;
23980
  position: absolute;
23981
  right: -20px;
23982
  left: auto;
23983
}
16848 stevensc 23984
 
23985
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23986
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23987
  content: "";
23988
  width: 13px;
23989
  height: 13px;
23990
  background: #fff;
23991
  position: absolute;
23992
  top: -7px;
23993
  right: 28px;
23994
  transform: rotate(45deg);
23995
  border-top: 1px solid #f2f4f9;
23996
  border-left: 1px solid #f2f4f9;
23997
}
16848 stevensc 23998
 
16825 efrain 23999
@media (max-width: 767px) {
16848 stevensc 24000
 
24001
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24002
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24003
    right: 20px;
24004
    width: calc(100% - 40px);
24005
  }
16848 stevensc 24006
 
24007
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24008
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24009
    display: none;
24010
  }
24011
}
24012
 
24013
.sidebar {
24014
  width: 240px;
24015
  height: 100%;
24016
  position: fixed;
24017
  left: 0;
24018
  top: 0;
24019
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24020
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24021
  z-index: 999;
24022
}
16848 stevensc 24023
 
16825 efrain 24024
.sidebar .sidebar-header {
24025
  background: #fff;
24026
  height: 60px;
24027
  border-bottom: 1px solid #e9ecef;
24028
  display: flex;
24029
  justify-content: space-between;
24030
  align-items: center;
24031
  padding: 0 25px;
24032
  border-right: 1px solid #e9ecef;
24033
  z-index: 999;
24034
  width: 240px;
24035
  -webkit-transition: width 0.1s ease;
24036
  transition: width 0.1s ease;
24037
}
16848 stevensc 24038
 
16825 efrain 24039
.sidebar-open .sidebar .sidebar-header {
24040
  border-bottom: 1px solid #e9ecef;
24041
}
16848 stevensc 24042
 
16825 efrain 24043
.sidebar .sidebar-header .sidebar-brand {
24044
  opacity: 1;
24045
  visibility: visible;
24046
  -webkit-transition: opacity 0.5s ease;
24047
  transition: opacity 0.5s ease;
24048
  font-weight: 700;
24049
  font-size: 25px;
24050
  color: #000865;
16848 stevensc 24051
  direction: ltr
24052
    /*rtl:ignore*/
24053
  ;
16825 efrain 24054
}
16848 stevensc 24055
 
16825 efrain 24056
.sidebar .sidebar-header .sidebar-brand span {
24057
  color: #6571ff;
24058
  font-weight: 300;
24059
}
16848 stevensc 24060
 
16825 efrain 24061
.sidebar .sidebar-header .sidebar-toggler {
24062
  cursor: pointer;
24063
  width: 18px;
24064
}
16848 stevensc 24065
 
16825 efrain 24066
.sidebar .sidebar-header .sidebar-toggler span {
24067
  display: block;
24068
  width: 100%;
24069
  border-radius: 3px;
24070
  height: 2px;
24071
  background: #7987a1;
24072
  -webkit-transition: all 0.3s;
24073
  transition: all 0.3s;
24074
  position: relative;
24075
}
16848 stevensc 24076
 
24077
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24078
  margin-top: 4px;
24079
}
16848 stevensc 24080
 
16825 efrain 24081
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24082
  -webkit-animation: ease 0.6s top forwards;
24083
  animation: ease 0.6s top forwards;
24084
}
16848 stevensc 24085
 
16825 efrain 24086
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24087
  -webkit-animation: ease 0.6s top-2 forwards;
24088
  animation: ease 0.6s top-2 forwards;
24089
}
16848 stevensc 24090
 
16825 efrain 24091
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24092
  -webkit-animation: ease 0.6s scaled forwards;
24093
  animation: ease 0.6s scaled forwards;
24094
}
16848 stevensc 24095
 
16825 efrain 24096
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24097
  -webkit-animation: ease 0.6s scaled-2 forwards;
24098
  animation: ease 0.6s scaled-2 forwards;
24099
}
16848 stevensc 24100
 
16825 efrain 24101
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24102
  -webkit-animation: ease 0.6s bottom forwards;
24103
  animation: ease 0.6s bottom forwards;
24104
}
16848 stevensc 24105
 
16825 efrain 24106
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24107
  -webkit-animation: ease 0.6s bottom-2 forwards;
24108
  animation: ease 0.6s bottom-2 forwards;
24109
}
16848 stevensc 24110
 
16825 efrain 24111
@-webkit-keyframes top {
24112
  0% {
24113
    top: 0;
24114
    -webkit-transform: rotate(0);
24115
    transform: rotate(0);
24116
  }
16848 stevensc 24117
 
16825 efrain 24118
  50% {
24119
    top: 6px;
24120
    -webkit-transform: rotate(0);
24121
    transform: rotate(0);
24122
  }
16848 stevensc 24123
 
16825 efrain 24124
  100% {
24125
    top: 6px;
24126
    -webkit-transform: rotate(45deg);
24127
    transform: rotate(45deg);
24128
  }
24129
}
16848 stevensc 24130
 
16825 efrain 24131
@keyframes top {
24132
  0% {
24133
    top: 0;
24134
    -webkit-transform: rotate(0);
24135
    transform: rotate(0);
24136
  }
16848 stevensc 24137
 
16825 efrain 24138
  50% {
24139
    top: 6px;
24140
    -webkit-transform: rotate(0);
24141
    transform: rotate(0);
24142
  }
16848 stevensc 24143
 
16825 efrain 24144
  100% {
24145
    top: 6px;
24146
    -webkit-transform: rotate(45deg);
24147
    transform: rotate(45deg);
24148
  }
24149
}
16848 stevensc 24150
 
16825 efrain 24151
@-webkit-keyframes top-2 {
24152
  0% {
24153
    top: 6px;
24154
    -webkit-transform: rotate(45deg);
24155
    transform: rotate(45deg);
24156
  }
16848 stevensc 24157
 
16825 efrain 24158
  50% {
24159
    top: 6px;
24160
    -webkit-transform: rotate(0deg);
24161
    transform: rotate(0deg);
24162
  }
16848 stevensc 24163
 
16825 efrain 24164
  100% {
24165
    top: 0;
24166
    -webkit-transform: rotate(0deg);
24167
    transform: rotate(0deg);
24168
  }
24169
}
16848 stevensc 24170
 
16825 efrain 24171
@keyframes top-2 {
24172
  0% {
24173
    top: 6px;
24174
    -webkit-transform: rotate(45deg);
24175
    transform: rotate(45deg);
24176
  }
16848 stevensc 24177
 
16825 efrain 24178
  50% {
24179
    top: 6px;
24180
    -webkit-transform: rotate(0deg);
24181
    transform: rotate(0deg);
24182
  }
16848 stevensc 24183
 
16825 efrain 24184
  100% {
24185
    top: 0;
24186
    -webkit-transform: rotate(0deg);
24187
    transform: rotate(0deg);
24188
  }
24189
}
16848 stevensc 24190
 
16825 efrain 24191
@-webkit-keyframes bottom {
24192
  0% {
24193
    bottom: 0;
24194
    -webkit-transform: rotate(0);
24195
    transform: rotate(0);
24196
  }
16848 stevensc 24197
 
16825 efrain 24198
  50% {
24199
    bottom: 6px;
24200
    -webkit-transform: rotate(0);
24201
    transform: rotate(0);
24202
  }
16848 stevensc 24203
 
16825 efrain 24204
  100% {
24205
    bottom: 6px;
24206
    -webkit-transform: rotate(135deg);
24207
    transform: rotate(135deg);
24208
  }
24209
}
16848 stevensc 24210
 
16825 efrain 24211
@keyframes bottom {
24212
  0% {
24213
    bottom: 0;
24214
    -webkit-transform: rotate(0);
24215
    transform: rotate(0);
24216
  }
16848 stevensc 24217
 
16825 efrain 24218
  50% {
24219
    bottom: 6px;
24220
    -webkit-transform: rotate(0);
24221
    transform: rotate(0);
24222
  }
16848 stevensc 24223
 
16825 efrain 24224
  100% {
24225
    bottom: 6px;
24226
    -webkit-transform: rotate(135deg);
24227
    transform: rotate(135deg);
24228
  }
24229
}
16848 stevensc 24230
 
16825 efrain 24231
@-webkit-keyframes bottom-2 {
24232
  0% {
24233
    bottom: 6px;
24234
    -webkit-transform: rotate(135deg);
24235
    transform: rotate(135deg);
24236
  }
16848 stevensc 24237
 
16825 efrain 24238
  50% {
24239
    bottom: 6px;
24240
    -webkit-transform: rotate(0);
24241
    transform: rotate(0);
24242
  }
16848 stevensc 24243
 
16825 efrain 24244
  100% {
24245
    bottom: 0;
24246
    -webkit-transform: rotate(0);
24247
    transform: rotate(0);
24248
  }
24249
}
16848 stevensc 24250
 
16825 efrain 24251
@keyframes bottom-2 {
24252
  0% {
24253
    bottom: 6px;
24254
    -webkit-transform: rotate(135deg);
24255
    transform: rotate(135deg);
24256
  }
16848 stevensc 24257
 
16825 efrain 24258
  50% {
24259
    bottom: 6px;
24260
    -webkit-transform: rotate(0);
24261
    transform: rotate(0);
24262
  }
16848 stevensc 24263
 
16825 efrain 24264
  100% {
24265
    bottom: 0;
24266
    -webkit-transform: rotate(0);
24267
    transform: rotate(0);
24268
  }
24269
}
16848 stevensc 24270
 
16825 efrain 24271
@-webkit-keyframes scaled {
24272
  50% {
24273
    -webkit-transform: scale(0);
24274
    transform: scale(0);
24275
  }
16848 stevensc 24276
 
16825 efrain 24277
  100% {
24278
    -webkit-transform: scale(0);
24279
    transform: scale(0);
24280
  }
24281
}
16848 stevensc 24282
 
16825 efrain 24283
@keyframes scaled {
24284
  50% {
24285
    -webkit-transform: scale(0);
24286
    transform: scale(0);
24287
  }
16848 stevensc 24288
 
16825 efrain 24289
  100% {
24290
    -webkit-transform: scale(0);
24291
    transform: scale(0);
24292
  }
24293
}
16848 stevensc 24294
 
16825 efrain 24295
@-webkit-keyframes scaled-2 {
24296
  0% {
24297
    -webkit-transform: scale(0);
24298
    transform: scale(0);
24299
  }
16848 stevensc 24300
 
16825 efrain 24301
  50% {
24302
    -webkit-transform: scale(0);
24303
    transform: scale(0);
24304
  }
16848 stevensc 24305
 
16825 efrain 24306
  100% {
24307
    -webkit-transform: scale(1);
24308
    transform: scale(1);
24309
  }
24310
}
16848 stevensc 24311
 
16825 efrain 24312
@keyframes scaled-2 {
24313
  0% {
24314
    -webkit-transform: scale(0);
24315
    transform: scale(0);
24316
  }
16848 stevensc 24317
 
16825 efrain 24318
  50% {
24319
    -webkit-transform: scale(0);
24320
    transform: scale(0);
24321
  }
16848 stevensc 24322
 
16825 efrain 24323
  100% {
24324
    -webkit-transform: scale(1);
24325
    transform: scale(1);
24326
  }
24327
}
16848 stevensc 24328
 
16825 efrain 24329
.sidebar .sidebar-body {
24330
  max-height: calc(100% - 60px);
24331
  position: relative;
24332
  border-right: 1px solid #e9ecef;
24333
  height: 100%;
24334
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24335
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24336
  background: #fff;
24337
}
16848 stevensc 24338
 
16825 efrain 24339
.sidebar .sidebar-body .nav {
24340
  display: flex;
24341
  flex-direction: column;
24342
  padding: 25px 25px 50px 25px;
24343
}
16848 stevensc 24344
 
16825 efrain 24345
.sidebar .sidebar-body .nav .nav-item {
24346
  position: relative;
24347
}
16848 stevensc 24348
 
16825 efrain 24349
.sidebar .sidebar-body .nav .nav-item .nav-link {
24350
  display: flex;
24351
  align-items: center;
24352
  padding: 0;
24353
  height: 32px;
24354
  white-space: nowrap;
24355
  color: #000;
24356
}
16848 stevensc 24357
 
16825 efrain 24358
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24359
  width: 16px;
24360
  height: 16px;
24361
  fill: rgba(233, 236, 239, 0.21);
24362
  position: absolute;
24363
  color: inherit;
24364
}
16848 stevensc 24365
 
16825 efrain 24366
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24367
  margin-left: 30px;
24368
  font-size: 14px;
24369
  -webkit-transition: all 0.2s ease-in-out;
24370
  transition: all 0.2s ease-in-out;
24371
}
16848 stevensc 24372
 
16825 efrain 24373
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24374
  width: 14px;
24375
  height: 14px;
24376
  margin-left: auto;
24377
  -webkit-transition: all 0.3s ease;
24378
  -webkit-transition: all 0.3s ease-in-out;
24379
  transition: all 0.3s ease-in-out;
24380
  color: inherit;
24381
}
16848 stevensc 24382
 
16825 efrain 24383
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24384
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24385
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24386
  -webkit-transition: all 0.3s ease;
24387
  transition: all 0.3s ease;
24388
}
16848 stevensc 24389
 
16825 efrain 24390
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24391
  color: #6571ff;
24392
}
16848 stevensc 24393
 
16825 efrain 24394
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24395
  -webkit-transform: rotate(90deg);
24396
  transform: rotate(180deg);
24397
}
16848 stevensc 24398
 
16825 efrain 24399
.sidebar .sidebar-body .nav .nav-item.nav-category {
24400
  color: #7987a1;
24401
  font-size: 11px;
24402
  text-transform: uppercase;
24403
  font-weight: 500;
24404
  letter-spacing: 0.5px;
24405
  margin-bottom: 5px;
24406
  height: 15px;
24407
}
16848 stevensc 24408
 
16825 efrain 24409
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24410
  margin-top: 20px;
24411
}
16848 stevensc 24412
 
16825 efrain 24413
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24414
  color: #6571ff;
24415
}
16848 stevensc 24416
 
16825 efrain 24417
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24418
  margin-left: 31px;
24419
}
16848 stevensc 24420
 
16825 efrain 24421
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24422
  color: #6571ff;
24423
  fill: rgba(239, 243, 255, 0.5);
24424
}
16848 stevensc 24425
 
16825 efrain 24426
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24427
  color: #6571ff;
24428
}
16848 stevensc 24429
 
16825 efrain 24430
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24431
  content: "";
24432
  width: 3px;
24433
  height: 26px;
24434
  background: #6571ff;
24435
  position: absolute;
24436
  left: -25px;
24437
}
16848 stevensc 24438
 
16825 efrain 24439
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24440
  fill: rgba(239, 243, 255, 0.5);
24441
  color: #6571ff;
24442
}
16848 stevensc 24443
 
16825 efrain 24444
.sidebar .sidebar-body .nav.sub-menu {
24445
  padding: 0 0 15px 33px;
24446
}
16848 stevensc 24447
 
16825 efrain 24448
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24449
  position: relative;
24450
}
16848 stevensc 24451
 
16825 efrain 24452
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24453
  height: 25px;
24454
  color: #000;
24455
  font-size: 13px;
24456
  -webkit-transition: all 0.3s ease-in-out;
24457
  transition: all 0.3s ease-in-out;
24458
}
16848 stevensc 24459
 
16825 efrain 24460
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24461
  content: "";
24462
  width: 6px;
24463
  height: 6px;
24464
  border-radius: 50%;
24465
  background: transparent;
24466
  border: 1px solid #aeb9c4;
24467
  position: absolute;
24468
  left: -29px;
24469
  top: 10px;
24470
  -webkit-transition: all 0.7s ease-in-out;
24471
  -webkit-transition: all 0.4s ease-in-out;
24472
  transition: all 0.4s ease-in-out;
24473
}
16848 stevensc 24474
 
16825 efrain 24475
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24476
  color: #6571ff;
24477
}
16848 stevensc 24478
 
16825 efrain 24479
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24480
  border: 1px solid #6571ff;
24481
  background: #6571ff;
24482
}
16848 stevensc 24483
 
16825 efrain 24484
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24485
  color: #6571ff;
24486
  margin-left: 3px;
24487
}
16848 stevensc 24488
 
16825 efrain 24489
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24490
  border: 1px solid #6571ff;
24491
  background: #6571ff;
24492
}
16848 stevensc 24493
 
16825 efrain 24494
@media (max-width: 991px) {
24495
  .sidebar {
24496
    z-index: 999;
24497
    margin-left: -240px;
24498
    visibility: hidden;
24499
  }
16848 stevensc 24500
 
16825 efrain 24501
  .sidebar-open .sidebar {
24502
    margin-left: 0;
24503
    visibility: visible;
24504
  }
16848 stevensc 24505
 
16825 efrain 24506
  .sidebar .sidebar-body .nav .nav-item {
24507
    width: auto;
24508
  }
16848 stevensc 24509
 
16825 efrain 24510
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24511
    -webkit-transition: none;
24512
    transition: none;
24513
    margin: 0;
24514
  }
24515
}
24516
 
24517
.sidebar-dark .sidebar .sidebar-header {
24518
  background: #0c1427;
24519
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24520
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24521
}
16848 stevensc 24522
 
16825 efrain 24523
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24524
  color: #e9ecef;
24525
}
16848 stevensc 24526
 
16825 efrain 24527
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24528
  background: #7987a1;
24529
}
16848 stevensc 24530
 
16825 efrain 24531
.sidebar-dark .sidebar .sidebar-body {
24532
  background: #0c1427;
24533
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24534
}
16848 stevensc 24535
 
16825 efrain 24536
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24537
  color: #fff;
24538
}
16848 stevensc 24539
 
16825 efrain 24540
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24541
  color: #7987a1;
24542
}
16848 stevensc 24543
 
16825 efrain 24544
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24545
  fill: none;
24546
}
16848 stevensc 24547
 
16825 efrain 24548
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24549
  color: #6571ff;
24550
}
16848 stevensc 24551
 
24552
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24553
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24554
  fill: rgba(101, 113, 255, 0.2);
24555
}
16848 stevensc 24556
 
24557
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24558
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24559
  color: #6571ff;
24560
}
24561
 
24562
.settings-sidebar {
24563
  position: fixed;
24564
  right: -232px;
24565
  top: 130px;
24566
  width: 232px;
24567
  background: #fff;
24568
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24569
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24570
  z-index: 999;
24571
  border-radius: 0 0 0 4px;
24572
  -webkit-transition: all 0.2s ease-in-out;
24573
  transition: all 0.2s ease-in-out;
24574
}
16848 stevensc 24575
 
16825 efrain 24576
.settings-open .settings-sidebar {
24577
  right: 0;
24578
}
16848 stevensc 24579
 
16825 efrain 24580
.settings-sidebar .sidebar-body {
24581
  position: relative;
24582
  padding: 18px;
24583
}
16848 stevensc 24584
 
16825 efrain 24585
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24586
  position: absolute;
24587
  left: -44px;
24588
  top: 0;
24589
  padding: 12px;
24590
  border-radius: 4px 0 0 4px;
24591
  background: #fff;
24592
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24593
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24594
}
16848 stevensc 24595
 
16825 efrain 24596
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24597
  width: 20px;
24598
  height: 20px;
24599
  color: #7987a1;
24600
}
16848 stevensc 24601
 
16825 efrain 24602
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24603
  position: relative;
24604
  display: block;
24605
  margin-bottom: 19px;
24606
  border-radius: 6px;
24607
  border: 3px solid #e9ecef;
24608
}
16848 stevensc 24609
 
16825 efrain 24610
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24611
  content: "";
24612
  position: absolute;
24613
  top: 0;
24614
  left: 0;
24615
  width: 100%;
24616
  height: 100%;
24617
  background: rgba(101, 113, 255, 0);
24618
}
16848 stevensc 24619
 
16825 efrain 24620
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24621
  margin-bottom: 0;
24622
}
16848 stevensc 24623
 
16825 efrain 24624
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24625
  border: 3px solid #b2b8ff;
24626
}
16848 stevensc 24627
 
16825 efrain 24628
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24629
  width: 100%;
24630
  border-radius: 3px;
24631
}
16848 stevensc 24632
 
16825 efrain 24633
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24634
  background: rgba(101, 113, 255, 0.2);
24635
  -webkit-transition: all 0.3s ease-in-out;
24636
  transition: all 0.3s ease-in-out;
24637
}
24638
 
24639
.sidebar-folded .sidebar .sidebar-header {
24640
  width: 70px;
24641
}
16848 stevensc 24642
 
16825 efrain 24643
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24644
  display: none;
24645
}
16848 stevensc 24646
 
16825 efrain 24647
.sidebar-folded .page-wrapper {
24648
  width: calc(100% - 70px);
24649
  margin-left: 70px;
24650
}
16848 stevensc 24651
 
16825 efrain 24652
.sidebar-folded .page-wrapper .navbar {
24653
  width: calc(100% - 70px);
24654
  left: 70px;
24655
  right: 0;
24656
}
16848 stevensc 24657
 
16825 efrain 24658
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24659
  width: 70px;
24660
}
16848 stevensc 24661
 
16825 efrain 24662
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24663
  width: 70px;
24664
}
16848 stevensc 24665
 
16825 efrain 24666
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24667
  opacity: 0;
24668
  visibility: hidden;
24669
  width: 0;
24670
}
16848 stevensc 24671
 
16825 efrain 24672
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24673
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24674
  visibility: hidden;
24675
  opacity: 0;
24676
}
16848 stevensc 24677
 
16825 efrain 24678
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24679
  visibility: hidden;
24680
}
16848 stevensc 24681
 
16825 efrain 24682
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24683
  content: "";
24684
  width: 5px;
24685
  height: 5px;
24686
  border-radius: 50%;
24687
  background: #7987a1;
24688
  position: absolute;
24689
  top: 5px;
24690
  left: 6px;
24691
  visibility: visible;
24692
}
16848 stevensc 24693
 
16825 efrain 24694
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24695
  display: none;
24696
}
24697
 
24698
@media (max-width: 991px) {
16848 stevensc 24699
 
24700
  .sidebar-open .main-wrapper::before,
24701
  .settings-open .main-wrapper::before {
16825 efrain 24702
    content: "";
24703
    width: 100vw;
24704
    background: rgba(0, 0, 0, 0.3);
24705
    position: fixed;
24706
    top: 0;
24707
    bottom: 0;
24708
    right: 0;
24709
    z-index: 99;
24710
    -webkit-transition: all 3s ease;
24711
    transition: all 3s ease;
24712
    z-index: 980;
24713
  }
24714
}
24715
 
24716
a.badge:hover {
24717
  color: #fff;
24718
}
24719
 
24720
.alert-primary {
24721
  background-color: rgba(101, 113, 255, 0.1);
24722
  color: #4c59ff;
24723
  border-color: rgba(101, 113, 255, 0.2);
24724
}
16848 stevensc 24725
 
16825 efrain 24726
.alert-primary .alert-link {
24727
  color: #4c59ff;
24728
}
16848 stevensc 24729
 
16825 efrain 24730
.alert-primary svg {
24731
  width: 19px;
24732
  height: 19px;
24733
  margin-right: 0.5rem;
24734
}
16848 stevensc 24735
 
16825 efrain 24736
.alert-primary i {
24737
  font-size: 19px;
24738
  margin-right: 0.5rem;
24739
}
24740
 
24741
.alert-fill-primary {
24742
  --bs-alert-color: #fff;
24743
  --bs-alert-bg: #6571ff;
24744
  --bs-alert-border-color: #6571ff;
24745
}
16848 stevensc 24746
 
16825 efrain 24747
.alert-fill-primary .alert-link {
24748
  color: #cccccc;
24749
}
16848 stevensc 24750
 
16825 efrain 24751
.alert-fill-primary.alert-fill-light {
24752
  color: #7987a1;
24753
}
24754
 
24755
.alert-secondary {
24756
  background-color: rgba(121, 135, 161, 0.1);
24757
  color: #6a7a96;
24758
  border-color: rgba(121, 135, 161, 0.2);
24759
}
16848 stevensc 24760
 
16825 efrain 24761
.alert-secondary .alert-link {
24762
  color: #6a7a96;
24763
}
16848 stevensc 24764
 
16825 efrain 24765
.alert-secondary svg {
24766
  width: 19px;
24767
  height: 19px;
24768
  margin-right: 0.5rem;
24769
}
16848 stevensc 24770
 
16825 efrain 24771
.alert-secondary i {
24772
  font-size: 19px;
24773
  margin-right: 0.5rem;
24774
}
24775
 
24776
.alert-fill-secondary {
24777
  --bs-alert-color: #fff;
24778
  --bs-alert-bg: #7987a1;
24779
  --bs-alert-border-color: #7987a1;
24780
}
16848 stevensc 24781
 
16825 efrain 24782
.alert-fill-secondary .alert-link {
24783
  color: #cccccc;
24784
}
16848 stevensc 24785
 
16825 efrain 24786
.alert-fill-secondary.alert-fill-light {
24787
  color: #7987a1;
24788
}
24789
 
24790
.alert-success {
24791
  background-color: rgba(5, 163, 74, 0.1);
24792
  color: #048a3f;
24793
  border-color: rgba(5, 163, 74, 0.2);
24794
}
16848 stevensc 24795
 
16825 efrain 24796
.alert-success .alert-link {
24797
  color: #048a3f;
24798
}
16848 stevensc 24799
 
16825 efrain 24800
.alert-success svg {
24801
  width: 19px;
24802
  height: 19px;
24803
  margin-right: 0.5rem;
24804
}
16848 stevensc 24805
 
16825 efrain 24806
.alert-success i {
24807
  font-size: 19px;
24808
  margin-right: 0.5rem;
24809
}
24810
 
24811
.alert-fill-success {
24812
  --bs-alert-color: #fff;
24813
  --bs-alert-bg: #05a34a;
24814
  --bs-alert-border-color: #05a34a;
24815
}
16848 stevensc 24816
 
16825 efrain 24817
.alert-fill-success .alert-link {
24818
  color: #cccccc;
24819
}
16848 stevensc 24820
 
16825 efrain 24821
.alert-fill-success.alert-fill-light {
24822
  color: #7987a1;
24823
}
24824
 
24825
.alert-info {
24826
  background-color: rgba(102, 209, 209, 0.1);
24827
  color: #52cbcb;
24828
  border-color: rgba(102, 209, 209, 0.2);
24829
}
16848 stevensc 24830
 
16825 efrain 24831
.alert-info .alert-link {
24832
  color: #52cbcb;
24833
}
16848 stevensc 24834
 
16825 efrain 24835
.alert-info svg {
24836
  width: 19px;
24837
  height: 19px;
24838
  margin-right: 0.5rem;
24839
}
16848 stevensc 24840
 
16825 efrain 24841
.alert-info i {
24842
  font-size: 19px;
24843
  margin-right: 0.5rem;
24844
}
24845
 
24846
.alert-fill-info {
24847
  --bs-alert-color: #fff;
24848
  --bs-alert-bg: #66d1d1;
24849
  --bs-alert-border-color: #66d1d1;
24850
}
16848 stevensc 24851
 
16825 efrain 24852
.alert-fill-info .alert-link {
24853
  color: #cccccc;
24854
}
16848 stevensc 24855
 
16825 efrain 24856
.alert-fill-info.alert-fill-light {
24857
  color: #7987a1;
24858
}
24859
 
24860
.alert-warning {
24861
  background-color: rgba(251, 188, 6, 0.1);
24862
  color: #e4aa04;
24863
  border-color: rgba(251, 188, 6, 0.2);
24864
}
16848 stevensc 24865
 
16825 efrain 24866
.alert-warning .alert-link {
24867
  color: #e4aa04;
24868
}
16848 stevensc 24869
 
16825 efrain 24870
.alert-warning svg {
24871
  width: 19px;
24872
  height: 19px;
24873
  margin-right: 0.5rem;
24874
}
16848 stevensc 24875
 
16825 efrain 24876
.alert-warning i {
24877
  font-size: 19px;
24878
  margin-right: 0.5rem;
24879
}
24880
 
24881
.alert-fill-warning {
24882
  --bs-alert-color: #fff;
24883
  --bs-alert-bg: #fbbc06;
24884
  --bs-alert-border-color: #fbbc06;
24885
}
16848 stevensc 24886
 
16825 efrain 24887
.alert-fill-warning .alert-link {
24888
  color: #cccccc;
24889
}
16848 stevensc 24890
 
16825 efrain 24891
.alert-fill-warning.alert-fill-light {
24892
  color: #7987a1;
24893
}
24894
 
24895
.alert-danger {
24896
  background-color: rgba(255, 51, 102, 0.1);
24897
  color: #ff1a53;
24898
  border-color: rgba(255, 51, 102, 0.2);
24899
}
16848 stevensc 24900
 
16825 efrain 24901
.alert-danger .alert-link {
24902
  color: #ff1a53;
24903
}
16848 stevensc 24904
 
16825 efrain 24905
.alert-danger svg {
24906
  width: 19px;
24907
  height: 19px;
24908
  margin-right: 0.5rem;
24909
}
16848 stevensc 24910
 
16825 efrain 24911
.alert-danger i {
24912
  font-size: 19px;
24913
  margin-right: 0.5rem;
24914
}
24915
 
24916
.alert-fill-danger {
24917
  --bs-alert-color: #fff;
24918
  --bs-alert-bg: #ff3366;
24919
  --bs-alert-border-color: #ff3366;
24920
}
16848 stevensc 24921
 
16825 efrain 24922
.alert-fill-danger .alert-link {
24923
  color: #cccccc;
24924
}
16848 stevensc 24925
 
16825 efrain 24926
.alert-fill-danger.alert-fill-light {
24927
  color: #7987a1;
24928
}
24929
 
24930
.alert-light {
24931
  background-color: rgba(233, 236, 239, 0.1);
24932
  color: #dadfe4;
24933
  border-color: rgba(233, 236, 239, 0.2);
24934
}
16848 stevensc 24935
 
16825 efrain 24936
.alert-light .alert-link {
24937
  color: #dadfe4;
24938
}
16848 stevensc 24939
 
16825 efrain 24940
.alert-light svg {
24941
  width: 19px;
24942
  height: 19px;
24943
  margin-right: 0.5rem;
24944
}
16848 stevensc 24945
 
16825 efrain 24946
.alert-light i {
24947
  font-size: 19px;
24948
  margin-right: 0.5rem;
24949
}
24950
 
24951
.alert-fill-light {
24952
  --bs-alert-color: #fff;
24953
  --bs-alert-bg: #e9ecef;
24954
  --bs-alert-border-color: #e9ecef;
24955
}
16848 stevensc 24956
 
16825 efrain 24957
.alert-fill-light .alert-link {
24958
  color: #cccccc;
24959
}
16848 stevensc 24960
 
16825 efrain 24961
.alert-fill-light.alert-fill-light {
24962
  color: #7987a1;
24963
}
24964
 
24965
.alert-dark {
24966
  background-color: rgba(6, 12, 23, 0.1);
24967
  color: #010103;
24968
  border-color: rgba(6, 12, 23, 0.2);
24969
}
16848 stevensc 24970
 
16825 efrain 24971
.alert-dark .alert-link {
24972
  color: #010103;
24973
}
16848 stevensc 24974
 
16825 efrain 24975
.alert-dark svg {
24976
  width: 19px;
24977
  height: 19px;
24978
  margin-right: 0.5rem;
24979
}
16848 stevensc 24980
 
16825 efrain 24981
.alert-dark i {
24982
  font-size: 19px;
24983
  margin-right: 0.5rem;
24984
}
24985
 
24986
.alert-fill-dark {
24987
  --bs-alert-color: #fff;
24988
  --bs-alert-bg: #060c17;
24989
  --bs-alert-border-color: #060c17;
24990
}
16848 stevensc 24991
 
16825 efrain 24992
.alert-fill-dark .alert-link {
24993
  color: #cccccc;
24994
}
16848 stevensc 24995
 
16825 efrain 24996
.alert-fill-dark.alert-fill-light {
24997
  color: #7987a1;
24998
}
24999
 
16848 stevensc 25000
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25001
  content: "-" !important;
25002
}
16848 stevensc 25003
 
25004
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25005
  content: "•" !important;
25006
}
16848 stevensc 25007
 
25008
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25009
  content: ">" !important;
25010
}
25011
 
25012
/* Buttons */
16848 stevensc 25013
.btn i,
25014
.wizard>.actions a i,
25015
.wizard>.actions a:active i,
25016
.wizard>.actions a:hover i,
25017
div.tox .tox-button i,
25018
.swal2-popup .swal2-actions button i,
25019
.fc .fc-button-primary i {
16825 efrain 25020
  font-size: 1rem;
25021
}
16848 stevensc 25022
 
25023
.btn.btn-rounded,
25024
.wizard>.actions a.btn-rounded,
25025
div.tox .btn-rounded.tox-button,
25026
.swal2-popup .swal2-actions button.btn-rounded,
25027
.fc .btn-rounded.fc-button-primary {
16825 efrain 25028
  border-radius: 50px;
25029
}
16848 stevensc 25030
 
25031
.btn.btn-xs,
25032
.wizard>.actions a.btn-xs,
25033
div.tox .btn-xs.tox-button,
25034
.swal2-popup .swal2-actions button.btn-xs,
25035
.fc .btn-xs.fc-button-primary {
16825 efrain 25036
  padding: 0.313rem 0.8rem;
25037
  font-size: 0.75rem;
25038
}
16848 stevensc 25039
 
25040
.btn.btn-icon,
25041
.wizard>.actions a.btn-icon,
25042
div.tox .btn-icon.tox-button,
25043
.swal2-popup .swal2-actions button.btn-icon,
25044
.fc .btn-icon.fc-button-primary {
16825 efrain 25045
  width: 38px;
25046
  height: 38px;
25047
  padding: 0;
25048
  display: inline-flex;
25049
  align-items: center;
25050
  justify-content: center;
25051
}
16848 stevensc 25052
 
25053
.btn.btn-icon svg,
25054
.wizard>.actions a.btn-icon svg,
25055
div.tox .btn-icon.tox-button svg,
25056
.swal2-popup .swal2-actions button.btn-icon svg,
25057
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25058
  height: 18px;
25059
}
16848 stevensc 25060
 
25061
.btn.btn-icon.btn-xs,
25062
.wizard>.actions a.btn-icon.btn-xs,
25063
div.tox .btn-icon.btn-xs.tox-button,
25064
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25065
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25066
  width: 30px;
25067
  height: 30px;
25068
}
16848 stevensc 25069
 
25070
.btn.btn-icon.btn-xs svg,
25071
.wizard>.actions a.btn-icon.btn-xs svg,
25072
div.tox .btn-icon.btn-xs.tox-button svg,
25073
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25074
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25075
  height: 14px;
25076
}
16848 stevensc 25077
 
25078
.btn.btn-icon.btn-sm,
25079
.wizard>.actions a.btn-icon.btn-sm,
25080
div.tox .btn-icon.btn-sm.tox-button,
25081
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25082
.fc .btn-icon.fc-button-primary,
25083
.btn-group-sm>.btn.btn-icon,
25084
.wizard>.actions .btn-group-sm>a.btn-icon,
25085
div.tox .btn-group-sm>.btn-icon.tox-button,
25086
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25087
  width: 36px;
25088
  height: 36px;
25089
}
16848 stevensc 25090
 
25091
.btn.btn-icon.btn-sm svg,
25092
.wizard>.actions a.btn-icon.btn-sm svg,
25093
div.tox .btn-icon.btn-sm.tox-button svg,
25094
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25095
.fc .btn-icon.fc-button-primary svg,
25096
.btn-group-sm>.btn.btn-icon svg,
25097
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25098
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25099
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25100
  height: 15px;
25101
}
16848 stevensc 25102
 
25103
.btn.btn-icon.btn-lg,
25104
.wizard>.actions a.btn-icon.btn-lg,
25105
div.tox .btn-icon.btn-lg.tox-button,
25106
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25107
.fc .btn-icon.btn-lg.fc-button-primary,
25108
.btn-group-lg>.btn.btn-icon,
25109
.wizard>.actions .btn-group-lg>a.btn-icon,
25110
div.tox .btn-group-lg>.btn-icon.tox-button,
25111
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25112
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25113
  width: 42px;
25114
  height: 42px;
25115
}
16848 stevensc 25116
 
25117
.btn.btn-icon.btn-lg svg,
25118
.wizard>.actions a.btn-icon.btn-lg svg,
25119
div.tox .btn-icon.btn-lg.tox-button svg,
25120
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25121
.fc .btn-icon.btn-lg.fc-button-primary svg,
25122
.btn-group-lg>.btn.btn-icon svg,
25123
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25124
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25125
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25126
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25127
  height: 18px;
25128
}
16848 stevensc 25129
 
25130
.btn.btn-icon-text .btn-icon-prepend,
25131
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25132
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25133
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25134
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25135
  margin-right: 0.5rem;
25136
}
16848 stevensc 25137
 
25138
.btn.btn-icon-text .btn-icon-append,
25139
.wizard>.actions a.btn-icon-text .btn-icon-append,
25140
div.tox .btn-icon-text.tox-button .btn-icon-append,
25141
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25142
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25143
  margin-left: 0.5rem;
25144
}
16848 stevensc 25145
 
25146
.btn.btn-icon-text .btn-icon-prepend,
25147
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25148
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25149
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25150
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25151
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25152
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25153
div.tox .btn-icon-text.tox-button .btn-icon-append,
25154
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25155
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25156
  width: 18px;
25157
  height: 18px;
25158
}
16848 stevensc 25159
 
25160
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25161
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25162
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25163
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25164
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25165
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25166
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25167
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25168
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25169
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25170
  width: 14px;
25171
  height: 14px;
25172
}
16848 stevensc 25173
 
25174
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25175
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25176
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25177
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25178
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25179
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25180
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25181
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25182
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25183
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25184
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25185
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25186
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25187
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25188
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25189
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25190
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25191
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25192
  width: 15px;
25193
  height: 15px;
25194
}
16848 stevensc 25195
 
25196
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25197
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25198
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25199
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25200
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25201
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25202
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25203
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25204
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25205
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25206
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25207
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25208
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25209
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25210
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25211
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25212
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25213
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25214
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25215
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25216
  width: 18px;
25217
  height: 18px;
25218
}
25219
 
25220
.btn-facebook {
25221
  background: #3b5998;
25222
  color: #fff;
25223
}
16848 stevensc 25224
 
25225
.btn-facebook:hover,
25226
.btn-facebook:focus {
16825 efrain 25227
  background: #2d4373;
25228
  color: #fff;
25229
}
16848 stevensc 25230
 
16825 efrain 25231
.btn-facebook.btn-social-icon-text {
25232
  padding: 0 1.5rem 0 0;
25233
  background: #4c70ba;
25234
}
16848 stevensc 25235
 
16825 efrain 25236
.btn-facebook.btn-social-icon-text i {
25237
  background: #3b5998;
25238
  padding: 0.75rem;
25239
  display: inline-block;
25240
  margin-right: 1.5rem;
25241
}
25242
 
25243
.btn-outline-facebook {
25244
  border: 1px solid #3b5998;
25245
  color: #3b5998;
25246
}
16848 stevensc 25247
 
16825 efrain 25248
.btn-outline-facebook:hover {
25249
  background: #3b5998;
25250
  color: #fff;
25251
}
25252
 
25253
.btn-twitter {
25254
  background: #1da1f2;
25255
  color: #fff;
25256
}
16848 stevensc 25257
 
25258
.btn-twitter:hover,
25259
.btn-twitter:focus {
16825 efrain 25260
  background: #0c85d0;
25261
  color: #fff;
25262
}
16848 stevensc 25263
 
16825 efrain 25264
.btn-twitter.btn-social-icon-text {
25265
  padding: 0 1.5rem 0 0;
25266
  background: #4db5f5;
25267
}
16848 stevensc 25268
 
16825 efrain 25269
.btn-twitter.btn-social-icon-text i {
25270
  background: #1da1f2;
25271
  padding: 0.75rem;
25272
  display: inline-block;
25273
  margin-right: 1.5rem;
25274
}
25275
 
25276
.btn-outline-twitter {
25277
  border: 1px solid #1da1f2;
25278
  color: #1da1f2;
25279
}
16848 stevensc 25280
 
16825 efrain 25281
.btn-outline-twitter:hover {
25282
  background: #1da1f2;
25283
  color: #fff;
25284
}
25285
 
25286
.btn-google {
25287
  background: #dc4e41;
25288
  color: #fff;
25289
}
16848 stevensc 25290
 
25291
.btn-google:hover,
25292
.btn-google:focus {
16825 efrain 25293
  background: #c63224;
25294
  color: #fff;
25295
}
16848 stevensc 25296
 
16825 efrain 25297
.btn-google.btn-social-icon-text {
25298
  padding: 0 1.5rem 0 0;
25299
  background: #e4766c;
25300
}
16848 stevensc 25301
 
16825 efrain 25302
.btn-google.btn-social-icon-text i {
25303
  background: #dc4e41;
25304
  padding: 0.75rem;
25305
  display: inline-block;
25306
  margin-right: 1.5rem;
25307
}
25308
 
25309
.btn-outline-google {
25310
  border: 1px solid #dc4e41;
25311
  color: #dc4e41;
25312
}
16848 stevensc 25313
 
16825 efrain 25314
.btn-outline-google:hover {
25315
  background: #dc4e41;
25316
  color: #fff;
25317
}
25318
 
25319
.btn-youtube {
25320
  background: #f00;
25321
  color: #fff;
25322
}
16848 stevensc 25323
 
25324
.btn-youtube:hover,
25325
.btn-youtube:focus {
16825 efrain 25326
  background: #cc0000;
25327
  color: #fff;
25328
}
16848 stevensc 25329
 
16825 efrain 25330
.btn-youtube.btn-social-icon-text {
25331
  padding: 0 1.5rem 0 0;
25332
  background: #ff3333;
25333
}
16848 stevensc 25334
 
16825 efrain 25335
.btn-youtube.btn-social-icon-text i {
25336
  background: #f00;
25337
  padding: 0.75rem;
25338
  display: inline-block;
25339
  margin-right: 1.5rem;
25340
}
25341
 
25342
.btn-outline-youtube {
25343
  border: 1px solid #f00;
25344
  color: #f00;
25345
}
16848 stevensc 25346
 
16825 efrain 25347
.btn-outline-youtube:hover {
25348
  background: #f00;
25349
  color: #fff;
25350
}
25351
 
25352
.btn-vimeo {
25353
  background: #1ab7ea;
25354
  color: #fff;
25355
}
16848 stevensc 25356
 
25357
.btn-vimeo:hover,
25358
.btn-vimeo:focus {
16825 efrain 25359
  background: #1295bf;
25360
  color: #fff;
25361
}
16848 stevensc 25362
 
16825 efrain 25363
.btn-vimeo.btn-social-icon-text {
25364
  padding: 0 1.5rem 0 0;
25365
  background: #49c6ee;
25366
}
16848 stevensc 25367
 
16825 efrain 25368
.btn-vimeo.btn-social-icon-text i {
25369
  background: #1ab7ea;
25370
  padding: 0.75rem;
25371
  display: inline-block;
25372
  margin-right: 1.5rem;
25373
}
25374
 
25375
.btn-outline-vimeo {
25376
  border: 1px solid #1ab7ea;
25377
  color: #1ab7ea;
25378
}
16848 stevensc 25379
 
16825 efrain 25380
.btn-outline-vimeo:hover {
25381
  background: #1ab7ea;
25382
  color: #fff;
25383
}
25384
 
25385
.btn-dribbble {
25386
  background: #ea4c89;
25387
  color: #fff;
25388
}
16848 stevensc 25389
 
25390
.btn-dribbble:hover,
25391
.btn-dribbble:focus {
16825 efrain 25392
  background: #e51e6b;
25393
  color: #fff;
25394
}
16848 stevensc 25395
 
16825 efrain 25396
.btn-dribbble.btn-social-icon-text {
25397
  padding: 0 1.5rem 0 0;
25398
  background: #ef7aa7;
25399
}
16848 stevensc 25400
 
16825 efrain 25401
.btn-dribbble.btn-social-icon-text i {
25402
  background: #ea4c89;
25403
  padding: 0.75rem;
25404
  display: inline-block;
25405
  margin-right: 1.5rem;
25406
}
25407
 
25408
.btn-outline-dribbble {
25409
  border: 1px solid #ea4c89;
25410
  color: #ea4c89;
25411
}
16848 stevensc 25412
 
16825 efrain 25413
.btn-outline-dribbble:hover {
25414
  background: #ea4c89;
25415
  color: #fff;
25416
}
25417
 
25418
.btn-github {
25419
  background: #181717;
25420
  color: #fff;
25421
}
16848 stevensc 25422
 
25423
.btn-github:hover,
25424
.btn-github:focus {
16825 efrain 25425
  background: black;
25426
  color: #fff;
25427
}
16848 stevensc 25428
 
16825 efrain 25429
.btn-github.btn-social-icon-text {
25430
  padding: 0 1.5rem 0 0;
25431
  background: #323030;
25432
}
16848 stevensc 25433
 
16825 efrain 25434
.btn-github.btn-social-icon-text i {
25435
  background: #181717;
25436
  padding: 0.75rem;
25437
  display: inline-block;
25438
  margin-right: 1.5rem;
25439
}
25440
 
25441
.btn-outline-github {
25442
  border: 1px solid #181717;
25443
  color: #181717;
25444
}
16848 stevensc 25445
 
16825 efrain 25446
.btn-outline-github:hover {
25447
  background: #181717;
25448
  color: #fff;
25449
}
25450
 
25451
.btn-instagram {
25452
  background: #e4405f;
25453
  color: #fff;
25454
}
16848 stevensc 25455
 
25456
.btn-instagram:hover,
25457
.btn-instagram:focus {
16825 efrain 25458
  background: #d31e40;
25459
  color: #fff;
25460
}
16848 stevensc 25461
 
16825 efrain 25462
.btn-instagram.btn-social-icon-text {
25463
  padding: 0 1.5rem 0 0;
25464
  background: #ea6d84;
25465
}
16848 stevensc 25466
 
16825 efrain 25467
.btn-instagram.btn-social-icon-text i {
25468
  background: #e4405f;
25469
  padding: 0.75rem;
25470
  display: inline-block;
25471
  margin-right: 1.5rem;
25472
}
25473
 
25474
.btn-outline-instagram {
25475
  border: 1px solid #e4405f;
25476
  color: #e4405f;
25477
}
16848 stevensc 25478
 
16825 efrain 25479
.btn-outline-instagram:hover {
25480
  background: #e4405f;
25481
  color: #fff;
25482
}
25483
 
25484
.btn-pinterest {
25485
  background: #bd081c;
25486
  color: #fff;
25487
}
16848 stevensc 25488
 
25489
.btn-pinterest:hover,
25490
.btn-pinterest:focus {
16825 efrain 25491
  background: #8c0615;
25492
  color: #fff;
25493
}
16848 stevensc 25494
 
16825 efrain 25495
.btn-pinterest.btn-social-icon-text {
25496
  padding: 0 1.5rem 0 0;
25497
  background: #ee0a23;
25498
}
16848 stevensc 25499
 
16825 efrain 25500
.btn-pinterest.btn-social-icon-text i {
25501
  background: #bd081c;
25502
  padding: 0.75rem;
25503
  display: inline-block;
25504
  margin-right: 1.5rem;
25505
}
25506
 
25507
.btn-outline-pinterest {
25508
  border: 1px solid #bd081c;
25509
  color: #bd081c;
25510
}
16848 stevensc 25511
 
16825 efrain 25512
.btn-outline-pinterest:hover {
25513
  background: #bd081c;
25514
  color: #fff;
25515
}
25516
 
25517
.btn-flickr {
25518
  background: #0063dc;
25519
  color: #fff;
25520
}
16848 stevensc 25521
 
25522
.btn-flickr:hover,
25523
.btn-flickr:focus {
16825 efrain 25524
  background: #004ca9;
25525
  color: #fff;
25526
}
16848 stevensc 25527
 
16825 efrain 25528
.btn-flickr.btn-social-icon-text {
25529
  padding: 0 1.5rem 0 0;
25530
  background: #107cff;
25531
}
16848 stevensc 25532
 
16825 efrain 25533
.btn-flickr.btn-social-icon-text i {
25534
  background: #0063dc;
25535
  padding: 0.75rem;
25536
  display: inline-block;
25537
  margin-right: 1.5rem;
25538
}
25539
 
25540
.btn-outline-flickr {
25541
  border: 1px solid #0063dc;
25542
  color: #0063dc;
25543
}
16848 stevensc 25544
 
16825 efrain 25545
.btn-outline-flickr:hover {
25546
  background: #0063dc;
25547
  color: #fff;
25548
}
25549
 
25550
.btn-bitbucket {
25551
  background: #0052cc;
25552
  color: #fff;
25553
}
16848 stevensc 25554
 
25555
.btn-bitbucket:hover,
25556
.btn-bitbucket:focus {
16825 efrain 25557
  background: #003e99;
25558
  color: #fff;
25559
}
16848 stevensc 25560
 
16825 efrain 25561
.btn-bitbucket.btn-social-icon-text {
25562
  padding: 0 1.5rem 0 0;
25563
  background: #0067ff;
25564
}
16848 stevensc 25565
 
16825 efrain 25566
.btn-bitbucket.btn-social-icon-text i {
25567
  background: #0052cc;
25568
  padding: 0.75rem;
25569
  display: inline-block;
25570
  margin-right: 1.5rem;
25571
}
25572
 
25573
.btn-outline-bitbucket {
25574
  border: 1px solid #0052cc;
25575
  color: #0052cc;
25576
}
16848 stevensc 25577
 
16825 efrain 25578
.btn-outline-bitbucket:hover {
25579
  background: #0052cc;
25580
  color: #fff;
25581
}
25582
 
25583
.btn-linkedin {
25584
  background: #0077b5;
25585
  color: #fff;
25586
}
16848 stevensc 25587
 
25588
.btn-linkedin:hover,
25589
.btn-linkedin:focus {
16825 efrain 25590
  background: #005582;
25591
  color: #fff;
25592
}
16848 stevensc 25593
 
16825 efrain 25594
.btn-linkedin.btn-social-icon-text {
25595
  padding: 0 1.5rem 0 0;
25596
  background: #0099e8;
25597
}
16848 stevensc 25598
 
16825 efrain 25599
.btn-linkedin.btn-social-icon-text i {
25600
  background: #0077b5;
25601
  padding: 0.75rem;
25602
  display: inline-block;
25603
  margin-right: 1.5rem;
25604
}
25605
 
25606
.btn-outline-linkedin {
25607
  border: 1px solid #0077b5;
25608
  color: #0077b5;
25609
}
16848 stevensc 25610
 
16825 efrain 25611
.btn-outline-linkedin:hover {
25612
  background: #0077b5;
25613
  color: #fff;
25614
}
25615
 
25616
.btn-inverse-primary {
25617
  background-color: rgba(101, 113, 255, 0.2);
25618
  background-image: none;
25619
  border-color: rgba(101, 113, 255, 0);
25620
}
16848 stevensc 25621
 
16825 efrain 25622
.btn-inverse-primary:not(.btn-inverse-light) {
25623
  color: #6571ff;
25624
}
16848 stevensc 25625
 
25626
.btn-inverse-primary:hover,
25627
.btn-inverse-primary.active,
25628
.btn-inverse-primary:active,
25629
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25630
  background-color: rgba(101, 113, 255, 0.3);
25631
  border-color: rgba(101, 113, 255, 0);
25632
}
16848 stevensc 25633
 
25634
.btn-inverse-primary.focus,
25635
.btn-inverse-primary:focus {
16825 efrain 25636
  background-color: rgba(101, 113, 255, 0.3);
25637
  border-color: transparent;
25638
}
16848 stevensc 25639
 
25640
.btn-inverse-primary.disabled,
25641
.btn-inverse-primary:disabled {
16825 efrain 25642
  color: #6571ff;
25643
  background-color: transparent;
25644
}
25645
 
25646
.btn-inverse-secondary {
25647
  background-color: rgba(121, 135, 161, 0.2);
25648
  background-image: none;
25649
  border-color: rgba(121, 135, 161, 0);
25650
}
16848 stevensc 25651
 
16825 efrain 25652
.btn-inverse-secondary:not(.btn-inverse-light) {
25653
  color: #7987a1;
25654
}
16848 stevensc 25655
 
25656
.btn-inverse-secondary:hover,
25657
.btn-inverse-secondary.active,
25658
.btn-inverse-secondary:active,
25659
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25660
  background-color: rgba(121, 135, 161, 0.3);
25661
  border-color: rgba(121, 135, 161, 0);
25662
}
16848 stevensc 25663
 
25664
.btn-inverse-secondary.focus,
25665
.btn-inverse-secondary:focus {
16825 efrain 25666
  background-color: rgba(121, 135, 161, 0.3);
25667
  border-color: transparent;
25668
}
16848 stevensc 25669
 
25670
.btn-inverse-secondary.disabled,
25671
.btn-inverse-secondary:disabled {
16825 efrain 25672
  color: #7987a1;
25673
  background-color: transparent;
25674
}
25675
 
25676
.btn-inverse-success {
25677
  background-color: rgba(5, 163, 74, 0.2);
25678
  background-image: none;
25679
  border-color: rgba(5, 163, 74, 0);
25680
}
16848 stevensc 25681
 
16825 efrain 25682
.btn-inverse-success:not(.btn-inverse-light) {
25683
  color: #05a34a;
25684
}
16848 stevensc 25685
 
25686
.btn-inverse-success:hover,
25687
.btn-inverse-success.active,
25688
.btn-inverse-success:active,
25689
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25690
  background-color: rgba(5, 163, 74, 0.3);
25691
  border-color: rgba(5, 163, 74, 0);
25692
}
16848 stevensc 25693
 
25694
.btn-inverse-success.focus,
25695
.btn-inverse-success:focus {
16825 efrain 25696
  background-color: rgba(5, 163, 74, 0.3);
25697
  border-color: transparent;
25698
}
16848 stevensc 25699
 
25700
.btn-inverse-success.disabled,
25701
.btn-inverse-success:disabled {
16825 efrain 25702
  color: #05a34a;
25703
  background-color: transparent;
25704
}
25705
 
25706
.btn-inverse-info {
25707
  background-color: rgba(102, 209, 209, 0.2);
25708
  background-image: none;
25709
  border-color: rgba(102, 209, 209, 0);
25710
}
16848 stevensc 25711
 
16825 efrain 25712
.btn-inverse-info:not(.btn-inverse-light) {
25713
  color: #66d1d1;
25714
}
16848 stevensc 25715
 
25716
.btn-inverse-info:hover,
25717
.btn-inverse-info.active,
25718
.btn-inverse-info:active,
25719
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25720
  background-color: rgba(102, 209, 209, 0.3);
25721
  border-color: rgba(102, 209, 209, 0);
25722
}
16848 stevensc 25723
 
25724
.btn-inverse-info.focus,
25725
.btn-inverse-info:focus {
16825 efrain 25726
  background-color: rgba(102, 209, 209, 0.3);
25727
  border-color: transparent;
25728
}
16848 stevensc 25729
 
25730
.btn-inverse-info.disabled,
25731
.btn-inverse-info:disabled {
16825 efrain 25732
  color: #66d1d1;
25733
  background-color: transparent;
25734
}
25735
 
25736
.btn-inverse-warning {
25737
  background-color: rgba(251, 188, 6, 0.2);
25738
  background-image: none;
25739
  border-color: rgba(251, 188, 6, 0);
25740
}
16848 stevensc 25741
 
16825 efrain 25742
.btn-inverse-warning:not(.btn-inverse-light) {
25743
  color: #fbbc06;
25744
}
16848 stevensc 25745
 
25746
.btn-inverse-warning:hover,
25747
.btn-inverse-warning.active,
25748
.btn-inverse-warning:active,
25749
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25750
  background-color: rgba(251, 188, 6, 0.3);
25751
  border-color: rgba(251, 188, 6, 0);
25752
}
16848 stevensc 25753
 
25754
.btn-inverse-warning.focus,
25755
.btn-inverse-warning:focus {
16825 efrain 25756
  background-color: rgba(251, 188, 6, 0.3);
25757
  border-color: transparent;
25758
}
16848 stevensc 25759
 
25760
.btn-inverse-warning.disabled,
25761
.btn-inverse-warning:disabled {
16825 efrain 25762
  color: #fbbc06;
25763
  background-color: transparent;
25764
}
25765
 
25766
.btn-inverse-danger {
25767
  background-color: rgba(255, 51, 102, 0.2);
25768
  background-image: none;
25769
  border-color: rgba(255, 51, 102, 0);
25770
}
16848 stevensc 25771
 
16825 efrain 25772
.btn-inverse-danger:not(.btn-inverse-light) {
25773
  color: #ff3366;
25774
}
16848 stevensc 25775
 
25776
.btn-inverse-danger:hover,
25777
.btn-inverse-danger.active,
25778
.btn-inverse-danger:active,
25779
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25780
  background-color: rgba(255, 51, 102, 0.3);
25781
  border-color: rgba(255, 51, 102, 0);
25782
}
16848 stevensc 25783
 
25784
.btn-inverse-danger.focus,
25785
.btn-inverse-danger:focus {
16825 efrain 25786
  background-color: rgba(255, 51, 102, 0.3);
25787
  border-color: transparent;
25788
}
16848 stevensc 25789
 
25790
.btn-inverse-danger.disabled,
25791
.btn-inverse-danger:disabled {
16825 efrain 25792
  color: #ff3366;
25793
  background-color: transparent;
25794
}
25795
 
25796
.btn-inverse-light {
25797
  background-color: rgba(233, 236, 239, 0.2);
25798
  background-image: none;
25799
  border-color: rgba(233, 236, 239, 0);
25800
}
16848 stevensc 25801
 
16825 efrain 25802
.btn-inverse-light:not(.btn-inverse-light) {
25803
  color: #e9ecef;
25804
}
16848 stevensc 25805
 
25806
.btn-inverse-light:hover,
25807
.btn-inverse-light.active,
25808
.btn-inverse-light:active,
25809
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25810
  background-color: rgba(233, 236, 239, 0.3);
25811
  border-color: rgba(233, 236, 239, 0);
25812
}
16848 stevensc 25813
 
25814
.btn-inverse-light.focus,
25815
.btn-inverse-light:focus {
16825 efrain 25816
  background-color: rgba(233, 236, 239, 0.3);
25817
  border-color: transparent;
25818
}
16848 stevensc 25819
 
25820
.btn-inverse-light.disabled,
25821
.btn-inverse-light:disabled {
16825 efrain 25822
  color: #e9ecef;
25823
  background-color: transparent;
25824
}
25825
 
25826
.btn-inverse-dark {
25827
  background-color: rgba(6, 12, 23, 0.2);
25828
  background-image: none;
25829
  border-color: rgba(6, 12, 23, 0);
25830
}
16848 stevensc 25831
 
16825 efrain 25832
.btn-inverse-dark:not(.btn-inverse-light) {
25833
  color: #060c17;
25834
}
16848 stevensc 25835
 
25836
.btn-inverse-dark:hover,
25837
.btn-inverse-dark.active,
25838
.btn-inverse-dark:active,
25839
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25840
  background-color: rgba(6, 12, 23, 0.3);
25841
  border-color: rgba(6, 12, 23, 0);
25842
}
16848 stevensc 25843
 
25844
.btn-inverse-dark.focus,
25845
.btn-inverse-dark:focus {
16825 efrain 25846
  background-color: rgba(6, 12, 23, 0.3);
25847
  border-color: transparent;
25848
}
16848 stevensc 25849
 
25850
.btn-inverse-dark.disabled,
25851
.btn-inverse-dark:disabled {
16825 efrain 25852
  color: #060c17;
25853
  background-color: transparent;
25854
}
25855
 
25856
.card {
25857
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25858
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25859
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25860
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25861
}
16848 stevensc 25862
 
25863
.card .card-body+.card-body {
16825 efrain 25864
  padding-top: 1rem;
25865
}
16848 stevensc 25866
 
16825 efrain 25867
.card .card-title {
25868
  text-transform: uppercase;
25869
  font-size: 0.875rem;
25870
  font-weight: 500;
25871
}
25872
 
25873
.card-group {
25874
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25875
}
16848 stevensc 25876
 
16825 efrain 25877
.card-group .card {
25878
  box-shadow: none;
25879
}
25880
 
25881
.dropdown .dropdown-toggle:after,
25882
.btn-group .dropdown-toggle:after {
25883
  border-top: 0;
25884
  border-right: 0;
25885
  border-left: 0;
25886
  border-bottom: 0;
25887
  font: normal normal normal 24px/1 "feather";
25888
  content: "\e842";
25889
  width: auto;
25890
  height: auto;
25891
  vertical-align: middle;
25892
  line-height: 0.625rem;
25893
  font-size: 0.875rem;
25894
}
16848 stevensc 25895
 
16825 efrain 25896
.dropdown.dropup .dropdown-toggle::after,
25897
.btn-group.dropup .dropdown-toggle::after {
25898
  content: "\e845";
25899
}
16848 stevensc 25900
 
16825 efrain 25901
.dropdown.dropstart .dropdown-toggle::before,
25902
.btn-group.dropstart .dropdown-toggle::before {
25903
  border: 0;
25904
  font: normal normal normal 24px/1 "feather";
25905
  content: "\e843";
25906
  width: auto;
25907
  height: auto;
25908
  vertical-align: middle;
25909
  line-height: 0.625rem;
25910
  font-size: 0.875rem;
25911
}
16848 stevensc 25912
 
16825 efrain 25913
.dropdown.dropend .dropdown-toggle::after,
25914
.btn-group.dropend .dropdown-toggle::after {
25915
  content: "\e844";
25916
}
25917
 
16848 stevensc 25918
.dropdown-menu,
25919
.tt-menu {
16825 efrain 25920
  padding: 0.35rem;
25921
  margin-top: 0;
25922
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25923
}
25924
 
16848 stevensc 25925
.dropdown-item,
25926
.tt-menu .tt-suggestion {
16825 efrain 25927
  font-size: 0.812rem;
25928
  padding: 0.25rem 0.875rem;
25929
  border-radius: 2px;
25930
}
16848 stevensc 25931
 
25932
.dropdown-item i,
25933
.tt-menu .tt-suggestion i,
25934
.dropdown-item svg,
25935
.tt-menu .tt-suggestion svg {
16825 efrain 25936
  color: #7987a1;
25937
}
16848 stevensc 25938
 
25939
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25940
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25941
  background-color: rgba(101, 113, 255, 0.1);
25942
}
16848 stevensc 25943
 
25944
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25945
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25946
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25947
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25948
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25949
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25950
  color: #6571ff;
25951
}
16848 stevensc 25952
 
25953
.dropdown-item:active i,
25954
.tt-menu .tt-suggestion:active i,
25955
.dropdown-item:active svg,
25956
.tt-menu .tt-suggestion:active svg,
25957
.dropdown-item.active i,
25958
.tt-menu .active.tt-suggestion i,
25959
.dropdown-item.active svg,
25960
.tt-menu .active.tt-suggestion svg {
16825 efrain 25961
  color: #fff;
25962
}
25963
 
25964
.form-control-xs,
25965
.form-select-xs {
25966
  padding: 0.313rem 0.8rem;
25967
  font-size: 0.75rem;
25968
}
25969
 
16848 stevensc 25970
.form-control-xs+.input-group-text {
16825 efrain 25971
  padding-top: 0.313rem;
25972
  padding-bottom: 0.313rem;
25973
}
25974
 
25975
.form-check-input {
25976
  margin-top: 0.13em;
25977
}
25978
 
25979
.input-group-text svg {
25980
  width: 18px;
25981
  height: 18px;
25982
}
25983
 
25984
[type=tel],
25985
[type=url],
25986
[type=email],
25987
[type=number] {
25988
  direction: ltr;
25989
}
25990
 
25991
.icons-list {
25992
  border-left: 1px solid #e9ecef;
25993
  border-top: 1px solid #e9ecef;
25994
}
16848 stevensc 25995
 
25996
.icons-list>div {
16825 efrain 25997
  border-bottom: 1px solid #e9ecef;
25998
  border-right: 1px solid #e9ecef;
25999
  background: #f9fafb;
26000
  display: flex;
26001
  align-items: center;
26002
  padding: 15px 20px;
26003
  font-weight: 400;
26004
  transition: all 0.3s ease-in-out;
26005
}
16848 stevensc 26006
 
26007
.icons-list>div i {
16825 efrain 26008
  display: inline-block;
26009
  font-size: 20px;
26010
  text-align: left;
26011
  margin-right: 12px;
26012
  color: #7987a1;
26013
  transition: all 0.3s ease-in-out;
26014
}
16848 stevensc 26015
 
26016
.icons-list>div svg {
16825 efrain 26017
  width: 20px;
26018
  margin-right: 12px;
26019
  color: #7987a1;
26020
  transition: all 0.3s ease-in-out;
26021
}
16848 stevensc 26022
 
26023
.icons-list>div:hover {
16825 efrain 26024
  cursor: text;
26025
}
16848 stevensc 26026
 
26027
.icons-list>div:hover i,
26028
.icons-list>div:hover svg {
16825 efrain 26029
  transform: scale(1.3);
26030
  color: #6571ff;
26031
}
26032
 
26033
.nav.nav-tabs .nav-item .nav-link {
26034
  border-color: #e9ecef #e9ecef #dee2e6;
26035
  color: #000;
26036
  background-color: #f8f9fa;
26037
  cursor: pointer;
26038
}
16848 stevensc 26039
 
16825 efrain 26040
.nav.nav-tabs .nav-item .nav-link.active {
26041
  border-color: #dee2e6 #dee2e6 #fff;
26042
  color: #6571ff;
26043
  background: #fff;
26044
}
16848 stevensc 26045
 
16825 efrain 26046
.nav.nav-tabs .nav-item .nav-link.disabled {
26047
  background-color: transparent;
26048
  color: #7987a1;
26049
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26050
}
16848 stevensc 26051
 
16825 efrain 26052
.nav.nav-tabs.nav-tabs-vertical {
26053
  border-bottom: 0;
26054
}
16848 stevensc 26055
 
16825 efrain 26056
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26057
  width: 100%;
26058
  border: 1px solid transparent;
26059
  border-radius: 0;
26060
  border-color: #e9ecef #e9ecef #dee2e6;
26061
  color: #000;
26062
  background-color: #f8f9fa;
26063
}
16848 stevensc 26064
 
16825 efrain 26065
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26066
  border-radius: 0.25rem 0 0 0;
26067
}
16848 stevensc 26068
 
16825 efrain 26069
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26070
  border-radius: 0 0 0 0.25rem;
26071
}
16848 stevensc 26072
 
16825 efrain 26073
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26074
  background-color: #fff;
26075
  color: #6571ff;
26076
  border-right-color: transparent;
26077
}
16848 stevensc 26078
 
16825 efrain 26079
.nav.nav-tabs.nav-tabs-line .nav-link {
26080
  border: 0;
26081
  background-color: transparent;
26082
}
16848 stevensc 26083
 
16825 efrain 26084
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26085
  border-bottom: 2px solid #6571ff;
26086
}
26087
 
26088
.tab-content.tab-content-vertical {
26089
  height: 100%;
26090
}
26091
 
26092
.pagination .page-item .page-link svg {
26093
  width: 18px;
26094
  height: 18px;
26095
}
16848 stevensc 26096
 
16825 efrain 26097
.pagination.pagination-separated .page-item {
26098
  margin-left: 2px;
26099
  margin-right: 2px;
26100
}
16848 stevensc 26101
 
16825 efrain 26102
.pagination.pagination-separated .page-item:first-child {
26103
  margin-left: 0;
26104
}
16848 stevensc 26105
 
16825 efrain 26106
.pagination.pagination-separated .page-item:last-child {
26107
  margin-right: 0;
26108
}
16848 stevensc 26109
 
16825 efrain 26110
.pagination.pagination-rounded .page-item {
26111
  margin-right: 2px;
26112
  margin-left: 2px;
26113
}
16848 stevensc 26114
 
16825 efrain 26115
.pagination.pagination-rounded .page-item .page-link {
26116
  border-radius: 50px;
26117
}
26118
 
26119
.table {
26120
  margin-bottom: 0;
26121
}
16848 stevensc 26122
 
26123
.table> :not(:last-child)> :last-child>* {
16825 efrain 26124
  border-bottom-color: inherit;
26125
}
16848 stevensc 26126
 
16825 efrain 26127
.table thead th {
26128
  border-top: 0;
26129
  font-weight: 500;
26130
  font-size: 12px;
26131
  text-transform: uppercase;
26132
  color: #7987a1;
26133
}
16848 stevensc 26134
 
16825 efrain 26135
.table thead th i {
26136
  margin-left: 0.325rem;
26137
}
16848 stevensc 26138
 
16825 efrain 26139
.table th,
26140
.table td {
26141
  white-space: nowrap;
26142
}
16848 stevensc 26143
 
16825 efrain 26144
.table td img {
26145
  width: 36px;
26146
  height: 36px;
26147
  border-radius: 100%;
26148
}
26149
 
26150
.timeline {
26151
  border-left: 3px solid #6571ff;
26152
  border-bottom-right-radius: 0.25rem;
26153
  border-top-right-radius: 0.25rem;
26154
  background: rgba(101, 113, 255, 0.2);
26155
  margin: 0 auto;
26156
  position: relative;
26157
  padding: 50px;
26158
  list-style: none;
26159
  max-width: 40%;
26160
}
16848 stevensc 26161
 
16825 efrain 26162
@media (max-width: 767px) {
26163
  .timeline {
26164
    max-width: 98%;
26165
    padding: 25px;
26166
  }
26167
}
16848 stevensc 26168
 
16825 efrain 26169
.timeline .event {
26170
  border-bottom: 1px dashed #e9ecef;
26171
  padding-bottom: 25px;
26172
  margin-bottom: 25px;
26173
  position: relative;
26174
}
16848 stevensc 26175
 
16825 efrain 26176
@media (max-width: 767px) {
26177
  .timeline .event {
26178
    padding-top: 30px;
26179
  }
26180
}
16848 stevensc 26181
 
16825 efrain 26182
.timeline .event .title {
26183
  font-weight: 500;
26184
  font-size: 1rem;
26185
  margin-bottom: 10px;
26186
}
16848 stevensc 26187
 
16825 efrain 26188
.timeline .event:last-of-type {
26189
  padding-bottom: 0;
26190
  margin-bottom: 0;
26191
  border: none;
26192
}
16848 stevensc 26193
 
26194
.timeline .event:before,
26195
.timeline .event:after {
16825 efrain 26196
  position: absolute;
26197
  display: block;
26198
  top: 0;
26199
}
16848 stevensc 26200
 
16825 efrain 26201
.timeline .event:before {
26202
  left: -207px;
26203
  content: attr(data-date);
26204
  text-align: right;
26205
  font-weight: 500;
26206
  font-size: 0.9em;
26207
  min-width: 120px;
26208
}
16848 stevensc 26209
 
16825 efrain 26210
@media (max-width: 767px) {
26211
  .timeline .event:before {
26212
    left: 0px;
26213
    text-align: left;
26214
  }
26215
}
16848 stevensc 26216
 
16825 efrain 26217
.timeline .event:after {
26218
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26219
  box-shadow: 0 0 0 3px #6571ff;
26220
  left: -55.8px;
26221
  background: #fff;
26222
  border-radius: 50%;
26223
  height: 9px;
26224
  width: 9px;
26225
  content: "";
26226
  top: 5px;
26227
}
16848 stevensc 26228
 
16825 efrain 26229
@media (max-width: 767px) {
26230
  .timeline .event:after {
26231
    left: -31.8px;
26232
  }
26233
}
26234
 
26235
.chat-wrapper {
26236
  height: calc(100vh - 60px - 102px);
26237
}
16848 stevensc 26238
 
16825 efrain 26239
@media (max-width: 991px) {
26240
  .chat-wrapper {
26241
    min-height: 100%;
26242
  }
26243
}
16848 stevensc 26244
 
16825 efrain 26245
@media (max-width: 991px) {
26246
  .chat-wrapper {
26247
    height: 100%;
26248
  }
26249
}
16848 stevensc 26250
 
16825 efrain 26251
@media (min-width: 992px) {
26252
  .chat-wrapper .chat-aside {
26253
    padding-right: 23px;
26254
  }
26255
}
16848 stevensc 26256
 
16825 efrain 26257
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26258
  position: relative;
26259
  max-height: calc(100vh - 385px);
26260
}
16848 stevensc 26261
 
26262
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26263
  padding-top: 11px;
26264
  padding-bottom: 11px;
26265
}
16848 stevensc 26266
 
16825 efrain 26267
@media (max-width: 991px) {
26268
  .chat-wrapper .chat-content {
26269
    position: absolute;
26270
    background: #fff;
26271
    left: 0;
26272
    bottom: -1px;
26273
    top: 0;
26274
    right: 0;
26275
    display: none;
26276
  }
16848 stevensc 26277
 
16825 efrain 26278
  .chat-wrapper .chat-content.show {
26279
    display: block;
26280
  }
26281
}
16848 stevensc 26282
 
16825 efrain 26283
.chat-wrapper .chat-content .chat-header {
26284
  padding: 0 10px;
26285
}
16848 stevensc 26286
 
16825 efrain 26287
.chat-wrapper .chat-content .chat-body {
26288
  position: relative;
26289
  max-height: calc(100vh - 340px);
26290
  margin-top: 20px;
26291
  margin-bottom: 20px;
26292
}
16848 stevensc 26293
 
16825 efrain 26294
@media (max-width: 767px) {
26295
  .chat-wrapper .chat-content .chat-body {
26296
    max-height: calc(100vh - 315px);
26297
  }
26298
}
16848 stevensc 26299
 
16825 efrain 26300
@media (max-width: 991px) {
26301
  .chat-wrapper .chat-content .chat-body {
26302
    max-height: calc(100vh - 342px);
26303
  }
26304
}
16848 stevensc 26305
 
16825 efrain 26306
.chat-wrapper .chat-content .chat-body .messages {
26307
  padding: 0 10px;
26308
  list-style-type: none;
26309
}
16848 stevensc 26310
 
16825 efrain 26311
.chat-wrapper .chat-content .chat-body .messages .message-item {
26312
  display: flex;
26313
  max-width: 80%;
26314
  margin-bottom: 20px;
26315
}
16848 stevensc 26316
 
16825 efrain 26317
@media (max-width: 767px) {
26318
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26319
    max-width: 95%;
26320
  }
26321
}
16848 stevensc 26322
 
16825 efrain 26323
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26324
  position: relative;
26325
  padding: 7px 15px;
26326
  margin-bottom: 4px;
26327
  width: -webkit-fit-content;
26328
  width: -moz-fit-content;
26329
  width: fit-content;
26330
}
16848 stevensc 26331
 
16825 efrain 26332
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26333
  font-size: 12px;
26334
  color: #7987a1;
26335
}
16848 stevensc 26336
 
16825 efrain 26337
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26338
  order: 1;
26339
  margin-right: 15px;
26340
}
16848 stevensc 26341
 
16825 efrain 26342
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26343
  order: 2;
26344
}
16848 stevensc 26345
 
16825 efrain 26346
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26347
  background: rgba(101, 113, 255, 0.1);
26348
  border-radius: 0 5px 5px;
26349
}
16848 stevensc 26350
 
16825 efrain 26351
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26352
  content: "";
26353
  width: 0;
26354
  height: 0;
26355
  position: absolute;
26356
  left: -10px;
26357
  top: 0;
26358
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26359
  border-bottom: 5px solid transparent;
26360
  border-left: 5px solid transparent;
26361
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26362
}
16848 stevensc 26363
 
16825 efrain 26364
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26365
  margin-left: auto;
26366
}
16848 stevensc 26367
 
16825 efrain 26368
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26369
  order: 2;
26370
  margin-left: 15px;
26371
}
16848 stevensc 26372
 
16825 efrain 26373
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26374
  order: 1;
26375
  margin-left: auto;
26376
}
16848 stevensc 26377
 
16825 efrain 26378
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26379
  background: rgba(102, 209, 209, 0.1);
26380
  border-radius: 5px 0 5px 5px;
26381
  margin-left: auto;
26382
}
16848 stevensc 26383
 
16825 efrain 26384
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26385
  content: "";
26386
  width: 0;
26387
  height: 0;
26388
  position: absolute;
26389
  right: -10px;
26390
  top: 0;
26391
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26392
  border-bottom: 5px solid transparent;
26393
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26394
  border-right: 5px solid transparent;
26395
}
16848 stevensc 26396
 
16825 efrain 26397
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26398
  text-align: right;
26399
  display: block;
26400
}
16848 stevensc 26401
 
16825 efrain 26402
.chat-wrapper figure {
26403
  position: relative;
26404
}
16848 stevensc 26405
 
16825 efrain 26406
.chat-wrapper figure .status {
26407
  width: 11px;
26408
  height: 11px;
26409
  background: #7987a1;
26410
  position: absolute;
26411
  bottom: 0px;
26412
  right: -2px;
26413
  border-radius: 50%;
26414
  border: 2px solid #fff;
26415
}
16848 stevensc 26416
 
16825 efrain 26417
.chat-wrapper figure .status.online {
26418
  background: #05a34a;
26419
}
16848 stevensc 26420
 
16825 efrain 26421
.chat-wrapper figure .status.offline {
26422
  background: #7987a1;
26423
}
26424
 
26425
.auth-page .auth-side-wrapper {
26426
  width: 100%;
26427
  height: 100%;
26428
  background-image: url(https://via.placeholder.com/219x452);
26429
  background-size: cover;
26430
}
26431
 
26432
.email-aside-nav.collapse {
26433
  display: block;
26434
}
16848 stevensc 26435
 
16825 efrain 26436
@media (max-width: 991px) {
26437
  .email-aside-nav.collapse {
26438
    display: none;
26439
  }
26440
}
16848 stevensc 26441
 
16825 efrain 26442
@media (max-width: 991px) {
26443
  .email-aside-nav.collapse.show {
26444
    display: block;
26445
  }
26446
}
16848 stevensc 26447
 
16825 efrain 26448
.email-aside-nav .nav-item {
26449
  border-radius: 0.2rem;
26450
}
16848 stevensc 26451
 
16825 efrain 26452
.email-aside-nav .nav-item .nav-link {
26453
  color: #000;
26454
}
16848 stevensc 26455
 
16825 efrain 26456
.email-aside-nav .nav-item .nav-link svg {
26457
  color: #7987a1;
26458
}
16848 stevensc 26459
 
26460
.email-aside-nav .nav-item.active,
26461
.email-aside-nav .nav-item:hover {
16825 efrain 26462
  background: rgba(101, 113, 255, 0.1);
26463
}
16848 stevensc 26464
 
26465
.email-aside-nav .nav-item.active .nav-link,
26466
.email-aside-nav .nav-item.active .nav-link svg,
26467
.email-aside-nav .nav-item:hover .nav-link,
26468
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26469
  color: #6571ff;
26470
}
26471
 
26472
.email-list-item {
26473
  display: flex;
26474
  align-items: center;
26475
  border-bottom: 1px solid #e9ecef;
26476
  padding: 10px 20px;
26477
  cursor: pointer;
26478
}
16848 stevensc 26479
 
16825 efrain 26480
.email-list-item:hover {
26481
  background: rgba(101, 113, 255, 0.08);
26482
}
16848 stevensc 26483
 
16825 efrain 26484
.email-list-item:last-child {
26485
  margin-bottom: 5px;
26486
}
16848 stevensc 26487
 
16825 efrain 26488
.email-list-item .email-list-actions {
26489
  width: 40px;
26490
  vertical-align: top;
26491
  display: table-cell;
26492
}
16848 stevensc 26493
 
16825 efrain 26494
.email-list-item .email-list-actions .form-check {
26495
  margin-bottom: 0;
26496
}
16848 stevensc 26497
 
16825 efrain 26498
.email-list-item .email-list-actions .favorite {
26499
  display: block;
26500
  padding-left: 1px;
26501
  line-height: 15px;
26502
}
16848 stevensc 26503
 
16825 efrain 26504
.email-list-item .email-list-actions .favorite span svg {
26505
  width: 14px;
26506
  color: #7987a1;
26507
}
16848 stevensc 26508
 
16825 efrain 26509
.email-list-item .email-list-actions .favorite:hover span {
26510
  color: #8d8d8d;
26511
}
16848 stevensc 26512
 
16825 efrain 26513
.email-list-item .email-list-actions .favorite.active span svg {
26514
  color: #fbbc06;
26515
}
16848 stevensc 26516
 
16825 efrain 26517
.email-list-item .email-list-detail {
26518
  width: calc(100% - 40px);
26519
  display: flex;
26520
  justify-content: space-between;
26521
  align-items: center;
26522
  flex-grow: 1;
26523
}
16848 stevensc 26524
 
16825 efrain 26525
.email-list-item .email-list-detail .content {
26526
  overflow: hidden;
26527
}
16848 stevensc 26528
 
16825 efrain 26529
.email-list-item .email-list-detail .content .from {
26530
  display: block;
26531
  margin: 0 0 1px 0;
26532
  color: #000;
26533
}
16848 stevensc 26534
 
16825 efrain 26535
.email-list-item .email-list-detail .content .msg {
26536
  width: 97%;
26537
  color: #7987a1;
26538
  font-size: 0.8rem;
26539
  overflow: hidden;
26540
  text-overflow: ellipsis;
26541
  white-space: nowrap;
26542
}
16848 stevensc 26543
 
16825 efrain 26544
.email-list-item .email-list-detail .date {
26545
  color: #000;
26546
  white-space: nowrap;
26547
}
16848 stevensc 26548
 
16825 efrain 26549
.email-list-item .email-list-detail .date .icon svg {
26550
  width: 14px;
26551
  margin-right: 7px;
26552
  color: #3d405c;
26553
}
16848 stevensc 26554
 
16825 efrain 26555
.email-list-item.email-list-item--unread {
26556
  background-color: rgba(101, 113, 255, 0.09);
26557
}
16848 stevensc 26558
 
16825 efrain 26559
.email-list-item.email-list-item--unread .content .from {
26560
  font-weight: 500;
26561
}
16848 stevensc 26562
 
16825 efrain 26563
.email-list-item.email-list-item--unread .content .msg {
26564
  font-weight: 700;
26565
}
26566
 
26567
.ace_editor {
26568
  border-radius: 0.25rem;
26569
  margin: auto;
26570
  height: 300px;
26571
  width: 100%;
26572
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26573
}
16848 stevensc 26574
 
16825 efrain 26575
.ace_editor .ace_content {
26576
  font-size: 0.875rem;
26577
}
26578
 
26579
div.apexcharts-canvas .apexcharts-menu {
26580
  background: #fff !important;
26581
  color: #000;
26582
  border-color: #e9ecef;
26583
}
16848 stevensc 26584
 
16825 efrain 26585
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26586
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26587
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26588
div.apexcharts-canvas .apexcharts-reset-icon svg,
26589
div.apexcharts-canvas .apexcharts-pan-icon svg,
26590
div.apexcharts-canvas .apexcharts-selection-icon svg,
26591
div.apexcharts-canvas .apexcharts-menu-icon svg,
26592
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26593
  fill: #7987a1;
26594
}
16848 stevensc 26595
 
16825 efrain 26596
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26597
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26598
  display: flex;
26599
  align-items: center;
26600
}
16848 stevensc 26601
 
16825 efrain 26602
div.apexcharts-canvas .apexcharts-legend-marker {
26603
  margin-right: 3px;
26604
}
16848 stevensc 26605
 
16825 efrain 26606
div.apexcharts-canvas .apexcharts-tooltip {
26607
  background: rgba(255, 255, 255, 0.8);
26608
  color: #000;
26609
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26610
  border-radius: 0.25rem;
26611
  border: 1px solid #f2f4f9;
26612
}
16848 stevensc 26613
 
16825 efrain 26614
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26615
  border-color: #e9ecef;
26616
  background-color: #fff;
26617
}
16848 stevensc 26618
 
16825 efrain 26619
div.apexcharts-canvas .apexcharts-tooltip * {
26620
  font-family: "Roboto", Helvetica, sans-serif !important;
26621
}
16848 stevensc 26622
 
16825 efrain 26623
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26624
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26625
  padding: 0 10px;
26626
}
16848 stevensc 26627
 
16825 efrain 26628
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26629
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26630
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26631
  margin-left: 0;
26632
}
16848 stevensc 26633
 
16825 efrain 26634
div.apexcharts-canvas .apexcharts-tooltip-title {
26635
  margin-bottom: 0;
26636
}
16848 stevensc 26637
 
16825 efrain 26638
div.apexcharts-canvas .apexcharts-xaxistooltip,
26639
div.apexcharts-canvas .apexcharts-yaxistooltip {
26640
  background: #fff;
26641
  color: #000;
26642
  border-color: #f2f4f9;
26643
}
16848 stevensc 26644
 
16825 efrain 26645
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26646
  border-bottom-color: #f2f4f9;
26647
}
16848 stevensc 26648
 
16825 efrain 26649
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26650
  border-bottom-color: rgba(255, 255, 255, 0.8);
26651
}
16848 stevensc 26652
 
16825 efrain 26653
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26654
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26655
  border-left-color: #f2f4f9;
26656
}
16848 stevensc 26657
 
16825 efrain 26658
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26659
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26660
  border-left-color: rgba(255, 255, 255, 0.8);
26661
}
26662
 
26663
@media (max-width: 767px) {
26664
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26665
    text-align: left;
26666
  }
26667
}
16848 stevensc 26668
 
16825 efrain 26669
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26670
  margin-left: 10px;
26671
  margin-right: 10px;
26672
}
16848 stevensc 26673
 
16825 efrain 26674
@media (max-width: 767px) {
26675
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26676
    text-align: left;
26677
    margin-left: -19px;
26678
  }
26679
}
26680
 
26681
.dropify-wrapper {
26682
  border: 1px solid #e9ecef;
26683
  border-radius: 0.25rem;
26684
}
16848 stevensc 26685
 
16825 efrain 26686
.dropify-wrapper .dropify-message span.file-icon {
26687
  font-size: 0.875rem;
26688
  color: #7987a1;
26689
}
16848 stevensc 26690
 
16825 efrain 26691
.dropify-wrapper .dropify-message span.file-icon::before {
26692
  font-family: feather;
26693
  content: "\e8e3";
26694
  font-size: 24px;
26695
}
26696
 
26697
.dropzone {
26698
  overflow: auto;
26699
  border: 1px solid #e9ecef;
26700
  border-radius: 0.25rem;
26701
  max-height: 200px;
26702
  padding: 0;
26703
}
16848 stevensc 26704
 
16825 efrain 26705
@media (min-width: 1400px) {
26706
  .dropzone {
26707
    min-height: 200px;
26708
  }
26709
}
16848 stevensc 26710
 
16825 efrain 26711
.dropzone.dz-clickable .dz-message {
26712
  margin-top: 65px;
26713
}
16848 stevensc 26714
 
26715
.dropzone .dz-preview.dz-image-preview .dz-image,
26716
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26717
  border-radius: 0.25rem;
26718
}
26719
 
16848 stevensc 26720
.form-control.flatpickr-input,
26721
.flatpickr-input.typeahead.tt-input,
26722
.flatpickr-input.typeahead.tt-hint,
26723
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26724
  background-color: #fff;
26725
}
26726
 
26727
.flatpickr-day.selected,
26728
.flatpickr-day.startRange,
26729
.flatpickr-day.endRange,
26730
.flatpickr-day.selected.inRange,
26731
.flatpickr-day.startRange.inRange,
26732
.flatpickr-day.endRange.inRange,
26733
.flatpickr-day.selected:focus,
26734
.flatpickr-day.startRange:focus,
26735
.flatpickr-day.endRange:focus,
26736
.flatpickr-day.selected:hover,
26737
.flatpickr-day.startRange:hover,
26738
.flatpickr-day.endRange:hover,
26739
.flatpickr-day.selected.prevMonthDay,
26740
.flatpickr-day.startRange.prevMonthDay,
26741
.flatpickr-day.endRange.prevMonthDay,
26742
.flatpickr-day.selected.nextMonthDay,
26743
.flatpickr-day.startRange.nextMonthDay,
26744
.flatpickr-day.endRange.nextMonthDay {
26745
  background: #6571ff;
26746
  border-color: #6571ff;
26747
}
26748
 
26749
.flatpickr-months {
26750
  padding: 0 1rem;
26751
  padding-top: 0.5rem;
26752
}
26753
 
26754
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26755
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26756
  left: 11px;
26757
  right: auto !important;
26758
  top: 8px;
26759
}
26760
 
26761
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26762
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26763
  right: 11px;
26764
  left: auto !important;
26765
  top: 8px;
26766
}
26767
 
26768
.flatpickr-months .flatpickr-prev-month:hover svg,
26769
.flatpickr-months .flatpickr-next-month:hover svg {
26770
  fill: #6571ff;
26771
}
26772
 
26773
.flatpickr-months .flatpickr-month {
26774
  height: 42px;
26775
}
26776
 
26777
.flatpickr-current-month .flatpickr-monthDropdown-months {
26778
  font-size: 1rem;
26779
  border-radius: 0.25rem;
26780
  padding: 0.3rem 0.5rem;
26781
}
26782
 
26783
.flatpickr-weekdays {
26784
  padding: 0 10px;
26785
}
26786
 
26787
.dayContainer {
26788
  padding: 0 10px 10px;
26789
}
26790
 
26791
.fc {
26792
  --fc-button-active-bg-color: #6571ff;
26793
  --fc-button-active-border-color: #6571ff;
26794
}
16848 stevensc 26795
 
16825 efrain 26796
.fc .fc-button .fc-icon {
26797
  font-size: 1.2 em;
26798
}
16848 stevensc 26799
 
16825 efrain 26800
.fc .fc-button-primary:focus,
26801
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26802
.fc .fc-button-primary:not(:disabled):active:focus {
26803
  box-shadow: none;
26804
}
16848 stevensc 26805
 
16825 efrain 26806
.fc .fc-button-primary:disabled {
26807
  border-color: #6571ff;
26808
}
16848 stevensc 26809
 
16825 efrain 26810
@media (max-width: 767px) {
26811
  .fc .fc-toolbar {
26812
    flex-direction: column;
26813
  }
16848 stevensc 26814
 
16825 efrain 26815
  .fc .fc-toolbar .fc-toolbar-chunk {
26816
    margin-bottom: 12px;
26817
  }
26818
}
16848 stevensc 26819
 
16825 efrain 26820
.fc .fc-daygrid-day-number,
26821
.fc .fc-col-header-cell-cushion {
26822
  color: #000;
26823
}
16848 stevensc 26824
 
16825 efrain 26825
.fc .fc-daygrid-event {
26826
  padding: 4px;
26827
}
16848 stevensc 26828
 
16825 efrain 26829
.fc .fc-daygrid-day.fc-day-today {
26830
  background-color: rgba(101, 113, 255, 0.2);
26831
}
16848 stevensc 26832
 
16825 efrain 26833
.fc .fc-list-event:hover td {
26834
  background-color: rgba(101, 113, 255, 0.2);
26835
}
16848 stevensc 26836
 
16825 efrain 26837
.fc .fc-list-day-text,
26838
.fc .fc-list-day-side-text {
26839
  color: #000;
26840
}
26841
 
26842
.fc-theme-standard td,
26843
.fc-theme-standard th,
26844
.fc-theme-standard .fc-scrollgrid {
26845
  border-color: #e9ecef;
26846
}
26847
 
26848
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26849
.fc-timegrid-event.fc-event-mirror,
26850
.fc-timegrid-more-link {
26851
  box-shadow: none;
26852
}
26853
 
26854
.fc-theme-standard .fc-popover {
26855
  background-color: #fff;
26856
  border-color: #f2f4f9;
26857
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26858
}
16848 stevensc 26859
 
16825 efrain 26860
.fc-theme-standard .fc-popover .fc-popover-header {
26861
  background-color: #7987a1;
26862
}
26863
 
26864
.fc-theme-standard .fc-list-day-cushion {
26865
  background-color: #fff;
26866
}
26867
 
26868
.fc-theme-standard .fc-list {
26869
  border-color: #e9ecef;
26870
}
26871
 
26872
.fc-event {
26873
  margin-bottom: 10px;
26874
  padding: 8px;
26875
  border-radius: 2px;
26876
  background: rgba(101, 113, 255, 0.2);
26877
  border: 0;
26878
  border-left: 3px solid #6571ff;
26879
  color: #000;
26880
  font-weight: 500;
26881
}
26882
 
26883
.fc-h-event .fc-event-main {
26884
  color: #000;
26885
}
26886
 
26887
.flot-chart-wrapper .flot-chart {
26888
  width: 100%;
26889
  position: relative;
26890
  max-width: none;
26891
  height: 400px;
26892
}
16848 stevensc 26893
 
16825 efrain 26894
@media (max-width: 767px) {
26895
  .flot-chart-wrapper {
26896
    height: 200px;
26897
    min-height: 200px;
26898
  }
16848 stevensc 26899
 
16825 efrain 26900
  .flot-chart-wrapper .flot-chart {
26901
    height: 100%;
26902
  }
26903
}
26904
 
16848 stevensc 26905
.flot-text .flot-x-axis>div,
16825 efrain 26906
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26907
.flot-text .flot-y-axis>div,
16825 efrain 26908
.flot-text .flot-y-axis .flot-tick-label {
26909
  color: #000;
26910
}
26911
 
26912
.peity-custom svg {
26913
  margin-right: 10px;
26914
}
26915
 
26916
.ps__thumb-x {
26917
  background-color: #d9d9d9;
26918
  height: 4px;
26919
}
26920
 
26921
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26922
.ps__rail-x:focus>.ps__thumb-x,
26923
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26924
  background-color: #b3b3b3;
26925
  height: 6px;
26926
}
26927
 
26928
.ps__rail-x {
26929
  height: 10px;
26930
}
26931
 
26932
.ps__thumb-y {
26933
  background-color: #d9d9d9;
26934
  width: 4px;
26935
  /*rtl:raw:
26936
   left: 2px !important;
26937
  right: auto !important;
26938
   */
26939
}
26940
 
26941
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26942
.ps__rail-y:focus>.ps__thumb-y,
26943
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26944
  background-color: #b3b3b3;
26945
  width: 6px;
26946
}
26947
 
26948
.ps__rail-y {
26949
  width: 10px;
26950
  /*rtl:raw:
26951
   left: 0 !important;
26952
  right: auto !important;
26953
   */
26954
}
26955
 
26956
.ps .ps__rail-x.ps--clicking,
26957
.ps .ps__rail-x:focus,
26958
.ps .ps__rail-x:hover,
26959
.ps .ps__rail-y.ps--clicking,
26960
.ps .ps__rail-y:focus,
26961
.ps .ps__rail-y:hover {
26962
  background-color: #e9ecef;
26963
}
26964
 
26965
.swal2-popup {
26966
  font-size: 0.875rem;
26967
}
16848 stevensc 26968
 
16825 efrain 26969
.swal2-popup .swal2-title {
26970
  font-size: 25px;
26971
  line-height: 1;
26972
  font-weight: 500;
26973
  color: #000;
26974
  margin-bottom: 0;
26975
}
16848 stevensc 26976
 
16825 efrain 26977
.swal2-popup .swal2-html-container {
26978
  font-size: 0.875rem;
26979
  color: #7987a1;
26980
  font-weight: initial;
26981
  margin-top: 11px;
26982
  text-decoration: none;
26983
}
16848 stevensc 26984
 
16825 efrain 26985
.swal2-popup .swal2-actions button svg {
26986
  width: 16px;
26987
  height: 16px;
26988
}
16848 stevensc 26989
 
16825 efrain 26990
.swal2-popup .swal2-close {
26991
  font-size: 22px;
26992
}
16848 stevensc 26993
 
16825 efrain 26994
.swal2-popup .swal2-close:focus {
26995
  box-shadow: none;
26996
}
16848 stevensc 26997
 
16825 efrain 26998
.swal2-popup .swal2-timer-progress-bar {
26999
  background: #7987a1;
27000
}
27001
 
27002
.select2-container--default .select2-selection--single,
27003
.select2-container--default .select2-selection--multiple {
27004
  border: 1px solid #e9ecef;
27005
  border-radius: 0.25rem;
27006
}
16848 stevensc 27007
 
27008
.select2-container--focus.select2-container--default .select2-selection--single,
27009
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27010
  border: 1px solid #cbd1db;
27011
}
27012
 
27013
.select2-dropdown {
27014
  border: 1px solid #cbd1db;
27015
  border-radius: 0.25rem;
27016
}
27017
 
27018
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27019
  background-color: #6571ff;
27020
}
27021
 
27022
.select2-container .select2-selection--single,
27023
.select2-container .select2-selection--multiple {
27024
  height: auto;
27025
}
27026
 
27027
.select2-container--default .select2-selection--single .select2-selection__rendered {
27028
  line-height: 1.5;
27029
  padding: 0.469rem 0.8rem;
27030
}
16848 stevensc 27031
 
16825 efrain 27032
.select2-container--default .select2-selection--single .select2-selection__arrow {
27033
  height: 100%;
27034
}
16848 stevensc 27035
 
16825 efrain 27036
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27037
  left: 0;
27038
}
27039
 
27040
.select2-container--default .select2-selection--multiple {
27041
  min-height: 38px;
27042
}
16848 stevensc 27043
 
16825 efrain 27044
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27045
  padding: 0 6px;
27046
}
16848 stevensc 27047
 
16825 efrain 27048
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27049
  background-color: #6571ff;
27050
  color: #fff;
27051
  border-color: #6571ff;
27052
  padding: 1px 8px;
27053
  border-radius: 0.15rem;
27054
  margin-top: 5px;
27055
}
16848 stevensc 27056
 
16825 efrain 27057
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27058
  color: #fff;
27059
  opacity: 0.5;
27060
}
27061
 
27062
.select2-container .select2-search--inline {
27063
  margin-top: 3px;
27064
}
27065
 
27066
.EasyMDEContainer .CodeMirror {
27067
  background: #fff;
27068
  border: 1px solid #e9ecef;
27069
  color: #000;
27070
  border-bottom-left-radius: 0;
27071
  border-bottom-right-radius: 0;
27072
}
27073
 
27074
.editor-toolbar {
27075
  border: 1px solid #e9ecef;
27076
  border-bottom: 0;
27077
  border-radius: 0.25rem 0.25rem 0 0;
27078
}
16848 stevensc 27079
 
27080
.editor-toolbar,
27081
.editor-toolbar:hover {
16825 efrain 27082
  opacity: 1;
27083
}
16848 stevensc 27084
 
16825 efrain 27085
.editor-toolbar button {
27086
  color: rgba(0, 0, 0, 0.7) !important;
27087
}
16848 stevensc 27088
 
16825 efrain 27089
.editor-toolbar button:hover {
27090
  background: #e9ecef;
27091
  border: none;
27092
}
16848 stevensc 27093
 
16825 efrain 27094
.editor-toolbar i.separator {
27095
  border-left: 1px solid #e9ecef;
27096
  border-right: 1px solid #e9ecef;
27097
}
27098
 
27099
.CodeMirror-fullscreen,
27100
.editor-toolbar.fullscreen,
27101
.editor-preview-side {
27102
  z-index: 999;
27103
}
27104
 
27105
.editor-preview-side {
27106
  border-color: #e9ecef;
27107
}
27108
 
16848 stevensc 27109
.editor-toolbar button.active,
27110
.editor-toolbar button:hover {
16825 efrain 27111
  background: #e9ecef;
27112
  border-color: transparent;
27113
}
27114
 
27115
.editor-statusbar {
27116
  padding: 0 10px;
27117
  border: 1px solid #e9ecef;
27118
  border-top-color: transparent;
27119
  border-bottom-left-radius: 0.25rem;
27120
  border-bottom-right-radius: 0.25rem;
27121
}
27122
 
27123
div.tagsinput {
27124
  padding: 6px 6px 1px;
27125
  border-color: #e9ecef;
27126
  border-radius: 0.25rem;
27127
}
16848 stevensc 27128
 
16825 efrain 27129
div.tagsinput span.tag {
27130
  background: #6571ff;
27131
  color: #fff;
27132
  border: 0;
27133
  padding: 3px 7px;
27134
  font-family: inherit;
27135
  border-radius: 0.15rem;
27136
  margin-bottom: 4px;
27137
  float: left;
27138
  /*rtl:raw:
27139
  margin-left: 0;
27140
  margin-right: 5px;
27141
  */
27142
}
16848 stevensc 27143
 
16825 efrain 27144
div.tagsinput span.tag a {
27145
  font-size: 13px;
27146
  font-weight: 500;
27147
  color: #fff;
27148
  opacity: 0.5;
27149
}
16848 stevensc 27150
 
16825 efrain 27151
div.tagsinput #tags_addTag {
27152
  float: left;
27153
  /*rtl:raw:
27154
  margin-right: 5px;
27155
  */
27156
}
16848 stevensc 27157
 
16825 efrain 27158
div.tagsinput input {
27159
  margin: 0;
27160
  padding: 1px;
27161
  border-radius: 0.25rem;
27162
}
27163
 
27164
.tox.tox-tinymce {
27165
  border: 1px solid #e9ecef;
27166
  border-radius: 0.25rem;
27167
}
16848 stevensc 27168
 
16825 efrain 27169
.tox.tox-tinymce .tox-menubar,
27170
.tox.tox-tinymce .tox-toolbar-overlord,
27171
.tox.tox-tinymce .tox-toolbar,
27172
.tox.tox-tinymce .tox-toolbar__overflow,
27173
.tox.tox-tinymce .tox-toolbar__primary {
27174
  background-color: #fff;
27175
  background-image: none;
27176
  border-bottom: 1px solid #e9ecef;
27177
}
16848 stevensc 27178
 
16825 efrain 27179
.tox.tox-tinymce .tox-toolbar-overlord {
27180
  border-bottom: none;
27181
}
16848 stevensc 27182
 
16825 efrain 27183
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27184
  padding: 0;
27185
  box-shadow: none;
27186
}
16848 stevensc 27187
 
16825 efrain 27188
.tox.tox-tinymce .tox-edit-area__iframe {
27189
  background-color: #fff;
27190
}
16848 stevensc 27191
 
16825 efrain 27192
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27193
  border-right-color: #e9ecef;
27194
  border-left-color: #e9ecef;
27195
}
16848 stevensc 27196
 
16825 efrain 27197
.tox.tox-tinymce .tox-statusbar {
27198
  background-color: #fff;
27199
  border-color: #e9ecef;
27200
  color: #7987a1;
27201
}
16848 stevensc 27202
 
16825 efrain 27203
.tox.tox-tinymce .tox-statusbar a,
27204
.tox.tox-tinymce .tox-statusbar__path-item,
27205
.tox.tox-tinymce .tox-statusbar__wordcount {
27206
  color: #7987a1;
27207
}
16848 stevensc 27208
 
16825 efrain 27209
.tox.tox-tinymce .tox-mbtn {
27210
  color: #000;
27211
}
16848 stevensc 27212
 
16825 efrain 27213
.tox.tox-tinymce .tox-tbtn {
27214
  color: rgba(0, 0, 0, 0.7);
27215
}
16848 stevensc 27216
 
16825 efrain 27217
.tox.tox-tinymce .tox-tbtn:hover {
27218
  background: #e9ecef;
27219
  color: #000;
27220
}
16848 stevensc 27221
 
16825 efrain 27222
.tox.tox-tinymce .tox-tbtn:hover svg {
27223
  fill: #000;
27224
}
16848 stevensc 27225
 
16825 efrain 27226
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27227
  color: #000;
27228
}
16848 stevensc 27229
 
16825 efrain 27230
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27231
  background: #e9ecef;
27232
  color: #000;
27233
}
16848 stevensc 27234
 
16825 efrain 27235
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27236
.tox.tox-tinymce .tox-mbtn--active {
27237
  background: #e9ecef;
27238
  color: #000;
27239
}
16848 stevensc 27240
 
16825 efrain 27241
.tox.tox-tinymce .tox-tbtn svg {
27242
  fill: rgba(0, 0, 0, 0.7);
27243
}
16848 stevensc 27244
 
16825 efrain 27245
.tox.tox-tinymce .tox-tbtn--disabled svg,
27246
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27247
.tox.tox-tinymce .tox-tbtn:disabled svg,
27248
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27249
  fill: #e9ecef;
27250
}
16848 stevensc 27251
 
16825 efrain 27252
.tox.tox-tinymce .tox-split-button:hover {
27253
  box-shadow: 0 0 0 1px #e9ecef inset;
27254
}
16848 stevensc 27255
 
16825 efrain 27256
.tox.tox-tinymce .tox-split-button:focus {
27257
  background: #e9ecef;
27258
}
16848 stevensc 27259
 
16825 efrain 27260
.tox.tox-tinymce .tox-tbtn--enabled,
27261
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27262
.tox.tox-tinymce .tox-tbtn:focus {
27263
  background: #e9ecef;
27264
}
27265
 
27266
div.tox .tox-menu {
27267
  background-color: #fff;
27268
  border-color: #f2f4f9;
27269
}
16848 stevensc 27270
 
16825 efrain 27271
div.tox .tox-collection__item {
27272
  color: #000;
27273
}
16848 stevensc 27274
 
16825 efrain 27275
div.tox .tox-collection--list .tox-collection__item--enabled {
27276
  background-color: #6571ff;
27277
  color: #fff;
27278
}
16848 stevensc 27279
 
16825 efrain 27280
div.tox .tox-collection--list .tox-collection__group {
27281
  border-color: #e9ecef;
27282
}
16848 stevensc 27283
 
16825 efrain 27284
div.tox .tox-collection--toolbar .tox-collection__item--active {
27285
  background-color: #e9ecef;
27286
}
16848 stevensc 27287
 
16825 efrain 27288
div.tox .tox-collection--list .tox-collection__item--active {
27289
  background-color: #e9ecef;
27290
}
16848 stevensc 27291
 
16825 efrain 27292
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27293
  color: #000;
27294
}
16848 stevensc 27295
 
16825 efrain 27296
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27297
  color: #000;
27298
}
16848 stevensc 27299
 
16825 efrain 27300
div.tox .tox-dialog-wrap__backdrop {
27301
  background-color: rgba(0, 0, 0, 0.75);
27302
}
16848 stevensc 27303
 
16825 efrain 27304
div.tox .tox-dialog,
27305
div.tox .tox-dialog__header,
27306
div.tox .tox-dialog__footer {
27307
  background-color: #fff;
27308
  border-color: #e9ecef;
27309
  color: #000;
27310
}
16848 stevensc 27311
 
16825 efrain 27312
div.tox .tox-button--secondary:hover:not(:disabled) {
27313
  background-color: #7987a1;
27314
  border-color: #7987a1;
27315
  color: #fff;
27316
}
16848 stevensc 27317
 
16825 efrain 27318
div.tox .tox-button--naked:hover:not(:disabled) {
27319
  background-color: transparent;
27320
  border-color: transparent;
27321
}
16848 stevensc 27322
 
16825 efrain 27323
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27324
  color: #333333;
27325
}
16848 stevensc 27326
 
16825 efrain 27327
div.tox .tox-listboxfield .tox-listbox--select,
27328
div.tox .tox-textarea,
27329
div.tox .tox-textfield,
27330
div.tox .tox-toolbar-textfield {
27331
  background-color: #fff;
27332
  border-color: #e9ecef;
27333
  color: #000;
27334
}
16848 stevensc 27335
 
16825 efrain 27336
div.tox .tox-listboxfield .tox-listbox--select:focus,
27337
div.tox .tox-textarea:focus,
27338
div.tox .tox-textfield:focus {
27339
  background-color: #fff;
27340
  border-color: #cbd1db;
27341
}
16848 stevensc 27342
 
16825 efrain 27343
div.tox .tox-dialog__table tbody tr {
27344
  border-color: #e9ecef;
27345
}
16848 stevensc 27346
 
16825 efrain 27347
div.tox .tox-dialog__body {
27348
  color: #000;
27349
}
27350
 
27351
.typeahead.tt-input,
27352
.typeahead.tt-hint {
27353
  background-color: #fff !important;
27354
  /*rtl:raw:
27355
  direction: rtl;
27356
  */
27357
}
27358
 
27359
.tt-menu .tt-suggestion {
27360
  cursor: pointer;
27361
}
27362
 
16848 stevensc 27363
.tabcontrol ul,
27364
.wizard ul {
16825 efrain 27365
  display: flex;
27366
}
16848 stevensc 27367
 
16825 efrain 27368
@media (max-width: 676px) {
16848 stevensc 27369
 
27370
  .tabcontrol ul,
27371
  .wizard ul {
16825 efrain 27372
    flex-wrap: wrap;
27373
  }
27374
}
27375
 
16848 stevensc 27376
.wizard>.steps>ul>li {
16825 efrain 27377
  width: auto;
27378
  display: flex;
27379
  flex-grow: 1;
27380
}
27381
 
16848 stevensc 27382
.wizard>.steps .disabled a,
27383
.wizard>.steps .disabled a:active,
27384
.wizard>.steps .disabled a:hover {
16825 efrain 27385
  background-color: #e9ecef;
27386
  color: #000;
27387
  border: 1px solid transparent;
27388
}
27389
 
16848 stevensc 27390
.wizard>.steps .current a,
27391
.wizard>.steps .current a:active,
27392
.wizard>.steps .current a:hover {
16825 efrain 27393
  background-color: #6571ff;
27394
  border: 1px solid transparent;
27395
}
27396
 
16848 stevensc 27397
.wizard>.steps a,
27398
.wizard>.steps a:active,
27399
.wizard>.steps a:hover {
16825 efrain 27400
  padding: 0.469rem 0.8rem;
27401
  border-radius: 0.25rem;
27402
  width: 100%;
27403
}
27404
 
16848 stevensc 27405
.wizard>.steps .done a,
27406
.wizard>.steps .done a:active,
27407
.wizard>.steps .done a:hover {
16825 efrain 27408
  background-color: rgba(101, 113, 255, 0.2);
27409
  color: #6571ff;
27410
  border: 1px solid #6571ff;
27411
}
27412
 
16848 stevensc 27413
.wizard>.steps ul li a,
27414
.wizard>.steps ul li a:active,
27415
.wizard>.steps ul li a:hover {
16825 efrain 27416
  margin: 0 0.5em 0.5em 0;
27417
}
16848 stevensc 27418
 
27419
.wizard>.steps ul li:last-child a,
27420
.wizard>.steps ul li:last-child a:active,
27421
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27422
  margin: 0 0 0.5em 0;
27423
}
27424
 
16848 stevensc 27425
.wizard>.steps .number {
16825 efrain 27426
  font-size: inherit;
27427
}
27428
 
16848 stevensc 27429
.wizard>.content {
16825 efrain 27430
  background: #fff;
27431
  border: 1px solid #e9ecef;
27432
  min-height: 23em;
27433
  overflow: auto;
27434
  margin: 0.5em 0;
27435
}
27436
 
27437
@media (max-width: 767px) {
16848 stevensc 27438
  .wizard>.content>.body {
16825 efrain 27439
    width: 90%;
27440
    height: 90%;
27441
    padding: 5%;
27442
  }
27443
}
27444
 
16848 stevensc 27445
.wizard>.actions .disabled a,
27446
.wizard>.actions .disabled a:active,
27447
.wizard>.actions .disabled a:hover {
16825 efrain 27448
  background: #e9ecef;
27449
  border-color: #e9ecef;
27450
  cursor: not-allowed;
27451
  color: #aeb7c5;
27452
}
27453
 
16848 stevensc 27454
.wizard>.actions .disabled a:focus {
16825 efrain 27455
  box-shadow: none;
27456
  color: #aeb7c5;
27457
}
27458
 
16848 stevensc 27459
.wizard>.actions>ul li {
16825 efrain 27460
  margin-right: 0;
27461
  margin-left: 0.7em;
27462
}
27463
 
16848 stevensc 27464
.wizard.vertical>.steps ul {
16825 efrain 27465
  flex-direction: column;
27466
}
27467
 
16848 stevensc 27468
.wizard.vertical>.content {
16825 efrain 27469
  margin: 0 0 0.5em 2%;
27470
  width: 68%;
27471
}
27472
 
16848 stevensc 27473
.wizard.vertical>.steps a,
27474
.wizard.vertical>.steps a:active,
27475
.wizard.vertical>.steps a:hover {
16825 efrain 27476
  margin: 0 0 0.5em 0;
27477
}
27478
 
16848 stevensc 27479
.wizard.vertical>.actions {
16825 efrain 27480
  margin: 0;
27481
  width: 100%;
27482
}
27483
 
16848 stevensc 27484
.wizard.vertical>.actions>ul>li {
16825 efrain 27485
  margin: 0 0 0 0.7em;
27486
}
16848 stevensc 27487
 
27488
.pac-container {
27489
  z-index: 1200;
27490
}
27491
 
16857 stevensc 27492
.feed-section {
27493
  display: flex;
27494
  flex-direction: column;
27495
  gap: .5rem;
16858 stevensc 27496
  width: 50%;
27497
  margin: 0 auto;
16857 stevensc 27498
  box-sizing: border-box;
16865 stevensc 27499
  align-items: center;
16857 stevensc 27500
}
27501
 
16867 stevensc 27502
.theme-container {
16849 stevensc 27503
  background-color: var(--bg-color);
27504
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27505
  height: fit-content;
27506
  width: -moz-available;
27507
  width: -webkit-fill-available;
27508
  width: fill-available;
27509
  overflow: hidden;
27510
  position: relative;
16853 stevensc 27511
  border-radius: var(--border-radius);
16849 stevensc 27512
}
27513
 
16867 stevensc 27514
.theme-container span {
16849 stevensc 27515
  font-size: 0.9rem;
16853 stevensc 27516
  line-height: 1;
27517
  color: var(--subtitle-color);
27518
  font-weight: 600;
16849 stevensc 27519
}
27520
 
16867 stevensc 27521
.theme-container p {
16849 stevensc 27522
  color: var(--font-color);
27523
  font-size: 14px;
27524
  text-align: justify;
27525
  margin-bottom: 0.5rem;
27526
}
27527
 
16867 stevensc 27528
.theme-container h2 {
16849 stevensc 27529
  font-size: 1rem;
16853 stevensc 27530
  font-weight: 600;
16849 stevensc 27531
}
27532
 
16867 stevensc 27533
.theme-container input,
27534
.theme-container input:focus {
16859 stevensc 27535
  align-items: center;
27536
  color: gray;
27537
  display: flex;
27538
  min-height: 1.5rem;
27539
  gap: 5px;
27540
  width: 100%;
27541
  border: 1px solid lightgray;
27542
  background-color: rgb(255, 255, 255);
27543
  border-radius: 30px;
27544
  padding: 5px 5px 5px 1rem;
27545
}
27546
 
16849 stevensc 27547
.feed-header {
27548
  display: flex;
27549
  gap: 0.5rem;
27550
  padding: 10px 1rem;
27551
  align-items: center;
27552
  position: relative;
27553
}
27554
 
16858 stevensc 27555
.feed-header a>img {
27556
  width: 50px;
27557
  height: 50px;
27558
  border-radius: 50%;
27559
  object-fit: cover;
27560
}
27561
 
16851 stevensc 27562
.feed-info {
27563
  display: inline-flex;
16852 stevensc 27564
  flex-direction: column;
16851 stevensc 27565
  width: fit-content;
27566
}
27567
 
16852 stevensc 27568
.feed-body {
16849 stevensc 27569
  padding: 10px 1rem;
27570
  display: flex;
27571
  flex-direction: column;
27572
}
27573
 
16856 stevensc 27574
.feed-body>img,
27575
.feed-body>video {
27576
  width: 100%;
27577
  object-fit: cover;
27578
  max-height: 60vh;
27579
}
27580
 
16849 stevensc 27581
.feed-actions {
27582
  display: flex;
16851 stevensc 27583
  justify-content: flex-end;
16849 stevensc 27584
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27585
  gap: .5rem;
16849 stevensc 27586
  padding: 5px;
27587
}
27588
 
27589
.feed-actions>button {
27590
  align-items: center;
27591
  border-radius: var(--border-radius);
27592
  cursor: pointer;
27593
  display: inline-flex;
16851 stevensc 27594
  flex-direction: row;
27595
  gap: 0.5rem;
27596
  font-size: 1rem;
16849 stevensc 27597
  padding: 5px;
27598
  position: relative;
27599
}
27600
 
27601
.feed-actions>button:hover {
27602
  background-color: whitesmoke;
27603
}
27604
 
16851 stevensc 27605
.feed-actions>span,
27606
.feed-actions>svg {
27607
  color: var(--subtitle-color);
27608
  font-weight: 600;
27609
  font-size: .9rem;
27610
}
27611
 
16860 stevensc 27612
.comment-form {
27613
  display: flex;
27614
  align-items: center;
27615
  gap: 0.5rem;
27616
  width: 100%;
27617
}
27618
 
27619
.comment-list {
27620
  display: flex;
27621
  flex-direction: column;
27622
  gap: 0.5rem;
16863 stevensc 27623
  margin: 0;
16861 stevensc 27624
  list-style: none;
16863 stevensc 27625
  padding: 0.5rem;
16860 stevensc 27626
  max-height: 300px;
27627
  overflow-y: auto;
27628
  width: 100%;
27629
}
27630
 
27631
.comment-container {
27632
  background-color: var(--chat-send);
27633
  border-radius: var(--border-radius);
27634
  display: flex;
27635
  flex-direction: column;
27636
  flex-grow: 1;
27637
  gap: 0.5rem;
27638
  max-width: 100%;
27639
  overflow: hidden;
27640
  padding: 0.5rem;
27641
  position: relative;
27642
}
27643
 
16849 stevensc 27644
@media (max-width: 768px) {
16857 stevensc 27645
  .feed-section {
16858 stevensc 27646
    width: 100%;
16857 stevensc 27647
  }
27648
 
16867 stevensc 27649
  .theme-container {
16853 stevensc 27650
    border-radius: 0;
16849 stevensc 27651
  }
27652
 
16851 stevensc 27653
  .feed-actions>button {
27654
    font-size: 0.9rem;
27655
    flex-direction: column;
27656
    gap: 0;
16849 stevensc 27657
  }
27658
}
27659
 
16866 stevensc 27660
/* ============= user_profile ============= */
27661
.user_profile {
27662
  width: 100%;
27663
  background-color: #fff;
27664
  text-align: center;
27665
}
27666
 
27667
.user-pro-img {
16871 stevensc 27668
  height: 100px;
27669
  width: 100px;
27670
  border-radius: 50%;
16866 stevensc 27671
  position: relative;
16871 stevensc 27672
  border: 5px solid var(--border-primary);
16866 stevensc 27673
}
27674
 
16871 stevensc 27675
.user-pro-img img {
27676
  width: 100%;
27677
  height: 100%;
27678
  object-fit: cover;
27679
}
27680
 
16866 stevensc 27681
.user-pro-img .add-dp {
27682
  position: absolute;
27683
  top: 10px;
27684
  left: 60%;
27685
}
27686
 
27687
.add-dp i {
27688
  bottom: 0;
27689
  font-size: 14px;
27690
  box-shadow: none;
27691
  position: relative;
27692
  border-radius: 50px;
27693
  width: 40px;
27694
  height: 40px;
27695
  text-align: center;
27696
  background: #e44d3a;
27697
  padding: 12px;
27698
  color: #ffff;
27699
  left: 0;
27700
  top: -5px;
27701
}
27702
 
27703
.add-dp i:hover {
27704
  font-size: 14px;
27705
  border: 2px solid #fff;
27706
  background: #e44d3a;
27707
  padding: 11px;
27708
}
27709
 
27710
.add-dp {
27711
  margin: -16px;
27712
  padding: 0;
27713
}
27714
 
27715
.add-dp input[type="file"] {
27716
  opacity: 0;
27717
  padding: 10px 0px 9px;
27718
  display: none;
27719
}
27720
 
27721
#go-back {
27722
  font-size: 2rem;
27723
}
27724
 
27725
.user_pro_status {
27726
  width: 100%;
27727
  border-bottom: 1px solid #e5e5e5;
27728
}
27729
 
16867 stevensc 27730
.add-pic-box {
16869 stevensc 27731
  width: 50px;
27732
  height: 50px;
27733
  background-color: var(--button-bg);
27734
  border-radius: 50%;
27735
  color: var(--button-text-color) !important;
16867 stevensc 27736
  position: absolute;
16871 stevensc 27737
  top: 1rem;
27738
  right: 1rem;
16869 stevensc 27739
  display: grid;
27740
  place-items: center;
16871 stevensc 27741
  cursor: pointer;
27742
  transition: all .2s ease-in-out;
16867 stevensc 27743
}
27744
 
16871 stevensc 27745
.add-pic-box:hover {
27746
  opacity: 0.80;
27747
}
27748
 
16869 stevensc 27749
.add-pic-box svg,
27750
.add-pic-box i {
16867 stevensc 27751
  font-weight: 600;
16869 stevensc 27752
  color: var(--button-text-color) !important;
16867 stevensc 27753
}
27754
 
16869 stevensc 27755
.cover-sec {
27756
  position: relative;
16871 stevensc 27757
  background: #0008;
27758
  max-height: 400px;
16868 stevensc 27759
}
27760
 
16871 stevensc 27761
.cover-sec img {
27762
  width: 100%;
27763
  height: 100%;
27764
  object-fit: cover;
27765
}
27766
 
16866 stevensc 27767
/* ============= end user_profile ============= */
27768
 
16848 stevensc 27769
/*# sourceMappingURL=../maps/demo1/style.css.map */