Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16883 | Rev 16887 | 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;
16874 stevensc 114
  outline: none;
16869 stevensc 115
  border: 0;
116
}
117
 
16868 stevensc 118
img {
119
  max-width: 100%;
120
}
121
 
16848 stevensc 122
h6,
123
.h6,
124
h5,
125
.h5,
126
h4,
127
.h4,
128
h3,
129
.h3,
130
h2,
131
.h2,
132
h1,
133
.h1 {
16825 efrain 134
  margin-top: 0;
135
  margin-bottom: 0;
136
  font-weight: 500;
137
  line-height: 1.2;
138
}
139
 
16848 stevensc 140
h1,
16852 stevensc 141
h2,
142
h3 {
143
  color: var(--title-color);
144
}
145
 
146
h1,
16848 stevensc 147
.h1 {
16825 efrain 148
  font-size: calc(1.375rem + 1.5vw);
149
}
16848 stevensc 150
 
16825 efrain 151
@media (min-width: 1200px) {
16848 stevensc 152
 
153
  h1,
154
  .h1 {
16825 efrain 155
    font-size: 2.5rem;
156
  }
157
}
158
 
16848 stevensc 159
h2,
160
.h2 {
16825 efrain 161
  font-size: calc(1.325rem + 0.9vw);
162
}
16848 stevensc 163
 
16825 efrain 164
@media (min-width: 1200px) {
16848 stevensc 165
 
166
  h2,
167
  .h2 {
16825 efrain 168
    font-size: 2rem;
169
  }
170
}
171
 
16848 stevensc 172
h3,
173
.h3 {
16825 efrain 174
  font-size: calc(1.275rem + 0.3vw);
175
}
16848 stevensc 176
 
16825 efrain 177
@media (min-width: 1200px) {
16848 stevensc 178
 
179
  h3,
180
  .h3 {
16825 efrain 181
    font-size: 1.5rem;
182
  }
183
}
184
 
16848 stevensc 185
h4,
186
.h4 {
16825 efrain 187
  font-size: 1.25rem;
188
}
189
 
16848 stevensc 190
h5,
191
.h5 {
16825 efrain 192
  font-size: 1rem;
193
}
194
 
16848 stevensc 195
h6,
196
.h6 {
16825 efrain 197
  font-size: 0.875rem;
198
}
199
 
200
p {
201
  margin-top: 0;
202
  margin-bottom: 0;
203
}
204
 
205
abbr[title] {
206
  text-decoration: underline dotted;
207
  cursor: help;
208
  text-decoration-skip-ink: none;
209
}
210
 
211
address {
212
  margin-bottom: 1rem;
213
  font-style: normal;
214
  line-height: inherit;
215
}
216
 
217
ol,
218
ul {
16874 stevensc 219
  list-style: none;
16875 stevensc 220
  padding: 0;
16825 efrain 221
}
222
 
223
ol,
224
ul,
225
dl {
226
  margin-top: 0;
16874 stevensc 227
  margin-bottom: 0;
16825 efrain 228
}
229
 
230
ol ol,
231
ul ul,
232
ol ul,
233
ul ol {
234
  margin-bottom: 0;
235
}
236
 
237
dt {
238
  font-weight: 500;
239
}
240
 
241
dd {
242
  margin-bottom: 0.5rem;
243
  margin-left: 0;
244
}
245
 
246
blockquote {
247
  margin: 0 0 1rem;
248
}
249
 
250
b,
251
strong {
252
  font-weight: 700;
253
}
254
 
16848 stevensc 255
small,
256
.small {
16825 efrain 257
  font-size: 0.875em;
258
}
259
 
16848 stevensc 260
mark,
261
.mark {
16825 efrain 262
  padding: 0.1875em;
263
  background-color: var(--bs-highlight-bg);
264
}
265
 
266
sub,
267
sup {
268
  position: relative;
269
  font-size: 0.75em;
270
  line-height: 0;
271
  vertical-align: baseline;
272
}
273
 
274
sub {
275
  bottom: -0.25em;
276
}
277
 
278
sup {
279
  top: -0.5em;
280
}
281
 
282
a {
283
  color: var(--bs-link-color);
284
  text-decoration: none;
285
}
16848 stevensc 286
 
16825 efrain 287
a:hover {
288
  color: var(--bs-link-hover-color);
289
}
290
 
16848 stevensc 291
a:not([href]):not([class]),
292
a:not([href]):not([class]):hover {
16825 efrain 293
  color: inherit;
294
  text-decoration: none;
295
}
296
 
297
pre,
298
code,
299
kbd,
300
samp {
301
  font-family: var(--bs-font-monospace);
302
  font-size: 1em;
303
}
304
 
305
pre {
306
  display: block;
307
  margin-top: 0;
308
  margin-bottom: 1rem;
309
  overflow: auto;
310
  font-size: 0.875em;
311
}
16848 stevensc 312
 
16825 efrain 313
pre code {
314
  font-size: inherit;
315
  color: inherit;
316
  word-break: normal;
317
}
318
 
319
code {
320
  font-size: 0.875em;
321
  color: var(--bs-code-color);
322
  word-wrap: break-word;
323
}
16848 stevensc 324
 
325
a>code {
16825 efrain 326
  color: inherit;
327
}
328
 
329
kbd {
330
  padding: 0.1875rem 0.375rem;
331
  font-size: 0.875em;
332
  color: var(--bs-body-bg);
333
  background-color: var(--bs-body-color);
334
  border-radius: 0.25rem;
335
}
16848 stevensc 336
 
16825 efrain 337
kbd kbd {
338
  padding: 0;
339
  font-size: 1em;
340
}
341
 
342
figure {
343
  margin: 0 0 1rem;
344
}
345
 
346
img,
347
svg {
348
  vertical-align: middle;
349
}
350
 
351
table {
352
  caption-side: bottom;
353
  border-collapse: collapse;
354
}
355
 
356
caption {
357
  padding-top: 0.85rem;
358
  padding-bottom: 0.85rem;
359
  color: #7987a1;
360
  text-align: left;
361
}
362
 
363
th {
364
  text-align: inherit;
365
  text-align: -webkit-match-parent;
366
}
367
 
368
thead,
369
tbody,
370
tfoot,
371
tr,
372
td,
373
th {
374
  border-color: inherit;
375
  border-style: solid;
376
  border-width: 0;
377
}
378
 
379
label {
380
  display: inline-block;
381
}
382
 
383
button {
384
  border-radius: 0;
385
}
386
 
387
button:focus:not(:focus-visible) {
388
  outline: 0;
389
}
390
 
391
input,
392
button,
393
select,
394
optgroup,
395
textarea {
396
  margin: 0;
397
  font-family: inherit;
398
  font-size: inherit;
399
  line-height: inherit;
400
}
401
 
402
button,
403
select {
404
  text-transform: none;
405
}
406
 
407
[role=button] {
408
  cursor: pointer;
409
}
410
 
411
select {
412
  word-wrap: normal;
413
}
16848 stevensc 414
 
16825 efrain 415
select:disabled {
416
  opacity: 1;
417
}
418
 
419
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
420
  display: none !important;
421
}
422
 
423
button,
424
[type=button],
425
[type=reset],
426
[type=submit] {
16848 stevensc 427
  appearance: button;
16825 efrain 428
}
16848 stevensc 429
 
16825 efrain 430
button:not(:disabled),
431
[type=button]:not(:disabled),
432
[type=reset]:not(:disabled),
433
[type=submit]:not(:disabled) {
434
  cursor: pointer;
435
}
436
 
437
::-moz-focus-inner {
438
  padding: 0;
439
  border-style: none;
440
}
441
 
442
textarea {
443
  resize: vertical;
444
}
445
 
446
fieldset {
447
  min-width: 0;
448
  padding: 0;
449
  margin: 0;
450
  border: 0;
451
}
452
 
453
legend {
454
  float: left;
455
  width: 100%;
456
  padding: 0;
457
  margin-bottom: 0.5rem;
458
  font-size: calc(1.275rem + 0.3vw);
459
  line-height: inherit;
460
}
16848 stevensc 461
 
16825 efrain 462
@media (min-width: 1200px) {
463
  legend {
464
    font-size: 1.5rem;
465
  }
466
}
16848 stevensc 467
 
468
legend+* {
16825 efrain 469
  clear: left;
470
}
471
 
472
::-webkit-datetime-edit-fields-wrapper,
473
::-webkit-datetime-edit-text,
474
::-webkit-datetime-edit-minute,
475
::-webkit-datetime-edit-hour-field,
476
::-webkit-datetime-edit-day-field,
477
::-webkit-datetime-edit-month-field,
478
::-webkit-datetime-edit-year-field {
479
  padding: 0;
480
}
481
 
482
::-webkit-inner-spin-button {
483
  height: auto;
484
}
485
 
486
[type=search] {
487
  outline-offset: -2px;
16848 stevensc 488
  appearance: textfield;
16825 efrain 489
}
490
 
491
/* rtl:raw:
492
[type="tel"],
493
[type="url"],
494
[type="email"],
495
[type="number"] {
496
  direction: ltr;
497
}
498
*/
499
::-webkit-search-decoration {
500
  -webkit-appearance: none;
501
}
502
 
503
::-webkit-color-swatch-wrapper {
504
  padding: 0;
505
}
506
 
507
::file-selector-button {
508
  font: inherit;
16848 stevensc 509
  appearance: button;
16825 efrain 510
}
511
 
512
output {
513
  display: inline-block;
514
}
515
 
516
iframe {
517
  border: 0;
518
}
519
 
520
summary {
521
  display: list-item;
522
  cursor: pointer;
523
}
524
 
525
progress {
526
  vertical-align: baseline;
527
}
528
 
529
[hidden] {
530
  display: none !important;
531
}
532
 
533
.lead {
534
  font-size: 1.09375rem;
535
  font-weight: 300;
536
}
537
 
538
.display-1 {
539
  font-size: calc(1.625rem + 4.5vw);
540
  font-weight: 300;
541
  line-height: 1.2;
542
}
16848 stevensc 543
 
16825 efrain 544
@media (min-width: 1200px) {
545
  .display-1 {
546
    font-size: 5rem;
547
  }
548
}
549
 
550
.display-2 {
551
  font-size: calc(1.575rem + 3.9vw);
552
  font-weight: 300;
553
  line-height: 1.2;
554
}
16848 stevensc 555
 
16825 efrain 556
@media (min-width: 1200px) {
557
  .display-2 {
558
    font-size: 4.5rem;
559
  }
560
}
561
 
562
.display-3 {
563
  font-size: calc(1.525rem + 3.3vw);
564
  font-weight: 300;
565
  line-height: 1.2;
566
}
16848 stevensc 567
 
16825 efrain 568
@media (min-width: 1200px) {
569
  .display-3 {
570
    font-size: 4rem;
571
  }
572
}
573
 
574
.display-4 {
575
  font-size: calc(1.475rem + 2.7vw);
576
  font-weight: 300;
577
  line-height: 1.2;
578
}
16848 stevensc 579
 
16825 efrain 580
@media (min-width: 1200px) {
581
  .display-4 {
582
    font-size: 3.5rem;
583
  }
584
}
585
 
586
.display-5 {
587
  font-size: calc(1.425rem + 2.1vw);
588
  font-weight: 300;
589
  line-height: 1.2;
590
}
16848 stevensc 591
 
16825 efrain 592
@media (min-width: 1200px) {
593
  .display-5 {
594
    font-size: 3rem;
595
  }
596
}
597
 
598
.display-6 {
599
  font-size: calc(1.375rem + 1.5vw);
600
  font-weight: 300;
601
  line-height: 1.2;
602
}
16848 stevensc 603
 
16825 efrain 604
@media (min-width: 1200px) {
605
  .display-6 {
606
    font-size: 2.5rem;
607
  }
608
}
609
 
610
.list-unstyled {
611
  padding-left: 0;
612
  list-style: none;
613
}
614
 
615
.list-inline {
616
  padding-left: 0;
617
  list-style: none;
618
}
619
 
620
.list-inline-item {
621
  display: inline-block;
622
}
16848 stevensc 623
 
16825 efrain 624
.list-inline-item:not(:last-child) {
625
  margin-right: 0.5rem;
626
}
627
 
628
.initialism {
629
  font-size: 0.875em;
630
  text-transform: uppercase;
631
}
632
 
633
.blockquote {
634
  margin-bottom: 1rem;
635
  font-size: 1.09375rem;
636
}
16848 stevensc 637
 
638
.blockquote> :last-child {
16825 efrain 639
  margin-bottom: 0;
640
}
641
 
642
.blockquote-footer {
643
  margin-top: -1rem;
644
  margin-bottom: 1rem;
645
  font-size: 0.875em;
646
  color: #7987a1;
647
}
16848 stevensc 648
 
16825 efrain 649
.blockquote-footer::before {
650
  content: "— ";
651
}
652
 
653
.img-fluid {
654
  max-width: 100%;
655
  height: auto;
656
}
657
 
658
.img-thumbnail {
659
  padding: 0.25rem;
660
  background-color: #f9fafb;
661
  border: 1px solid var(--bs-border-color);
662
  border-radius: 0.25rem;
663
  max-width: 100%;
664
  height: auto;
665
}
666
 
667
.figure {
668
  display: inline-block;
669
}
670
 
671
.figure-img {
672
  margin-bottom: 0.5rem;
673
  line-height: 1;
674
}
675
 
676
.figure-caption {
677
  font-size: 0.875em;
678
  color: #7987a1;
679
}
680
 
681
.container,
682
.container-fluid,
683
.container-xxl,
684
.container-xl,
685
.container-lg,
686
.container-md,
687
.container-sm {
688
  --bs-gutter-x: 1.5rem;
689
  --bs-gutter-y: 0;
690
  width: 100%;
691
  padding-right: calc(var(--bs-gutter-x) * 0.5);
692
  padding-left: calc(var(--bs-gutter-x) * 0.5);
693
  margin-right: auto;
694
  margin-left: auto;
695
}
696
 
697
@media (min-width: 576px) {
16848 stevensc 698
 
699
  .container-sm,
700
  .container {
16825 efrain 701
    max-width: 540px;
702
  }
703
}
16848 stevensc 704
 
16825 efrain 705
@media (min-width: 768px) {
16848 stevensc 706
 
707
  .container-md,
708
  .container-sm,
709
  .container {
16825 efrain 710
    max-width: 720px;
711
  }
712
}
16848 stevensc 713
 
16825 efrain 714
@media (min-width: 992px) {
16848 stevensc 715
 
716
  .container-lg,
717
  .container-md,
718
  .container-sm,
719
  .container {
16825 efrain 720
    max-width: 960px;
721
  }
722
}
16848 stevensc 723
 
16825 efrain 724
@media (min-width: 1200px) {
16848 stevensc 725
 
726
  .container-xl,
727
  .container-lg,
728
  .container-md,
729
  .container-sm,
730
  .container {
16825 efrain 731
    max-width: 1140px;
732
  }
733
}
16848 stevensc 734
 
16825 efrain 735
@media (min-width: 1400px) {
16848 stevensc 736
 
737
  .container-xxl,
738
  .container-xl,
739
  .container-lg,
740
  .container-md,
741
  .container-sm,
742
  .container {
16825 efrain 743
    max-width: 1320px;
744
  }
745
}
16848 stevensc 746
 
16825 efrain 747
.row {
748
  --bs-gutter-x: 1.5rem;
749
  --bs-gutter-y: 0;
750
  display: flex;
751
  flex-wrap: wrap;
752
  margin-top: calc(-1 * var(--bs-gutter-y));
753
  margin-right: calc(-0.5 * var(--bs-gutter-x));
754
  margin-left: calc(-0.5 * var(--bs-gutter-x));
755
}
16848 stevensc 756
 
757
.row>* {
16825 efrain 758
  flex-shrink: 0;
759
  width: 100%;
760
  max-width: 100%;
761
  padding-right: calc(var(--bs-gutter-x) * 0.5);
762
  padding-left: calc(var(--bs-gutter-x) * 0.5);
763
  margin-top: var(--bs-gutter-y);
764
}
765
 
766
.col {
767
  flex: 1 0 0%;
768
}
769
 
16848 stevensc 770
.row-cols-auto>* {
16825 efrain 771
  flex: 0 0 auto;
772
  width: auto;
773
}
774
 
16848 stevensc 775
.row-cols-1>* {
16825 efrain 776
  flex: 0 0 auto;
777
  width: 100%;
778
}
779
 
16848 stevensc 780
.row-cols-2>* {
16825 efrain 781
  flex: 0 0 auto;
782
  width: 50%;
783
}
784
 
16848 stevensc 785
.row-cols-3>* {
16825 efrain 786
  flex: 0 0 auto;
787
  width: 33.3333333333%;
788
}
789
 
16848 stevensc 790
.row-cols-4>* {
16825 efrain 791
  flex: 0 0 auto;
792
  width: 25%;
793
}
794
 
16848 stevensc 795
.row-cols-5>* {
16825 efrain 796
  flex: 0 0 auto;
797
  width: 20%;
798
}
799
 
16848 stevensc 800
.row-cols-6>* {
16825 efrain 801
  flex: 0 0 auto;
802
  width: 16.6666666667%;
803
}
804
 
805
.col-auto {
806
  flex: 0 0 auto;
807
  width: auto;
808
}
809
 
810
.col-1 {
811
  flex: 0 0 auto;
812
  width: 8.33333333%;
813
}
814
 
815
.col-2 {
816
  flex: 0 0 auto;
817
  width: 16.66666667%;
818
}
819
 
820
.col-3 {
821
  flex: 0 0 auto;
822
  width: 25%;
823
}
824
 
825
.col-4 {
826
  flex: 0 0 auto;
827
  width: 33.33333333%;
828
}
829
 
830
.col-5 {
831
  flex: 0 0 auto;
832
  width: 41.66666667%;
833
}
834
 
835
.col-6 {
836
  flex: 0 0 auto;
837
  width: 50%;
838
}
839
 
840
.col-7 {
841
  flex: 0 0 auto;
842
  width: 58.33333333%;
843
}
844
 
845
.col-8 {
846
  flex: 0 0 auto;
847
  width: 66.66666667%;
848
}
849
 
850
.col-9 {
851
  flex: 0 0 auto;
852
  width: 75%;
853
}
854
 
855
.col-10 {
856
  flex: 0 0 auto;
857
  width: 83.33333333%;
858
}
859
 
860
.col-11 {
861
  flex: 0 0 auto;
862
  width: 91.66666667%;
863
}
864
 
865
.col-12 {
866
  flex: 0 0 auto;
867
  width: 100%;
868
}
869
 
870
.offset-1 {
871
  margin-left: 8.33333333%;
872
}
873
 
874
.offset-2 {
875
  margin-left: 16.66666667%;
876
}
877
 
878
.offset-3 {
879
  margin-left: 25%;
880
}
881
 
882
.offset-4 {
883
  margin-left: 33.33333333%;
884
}
885
 
886
.offset-5 {
887
  margin-left: 41.66666667%;
888
}
889
 
890
.offset-6 {
891
  margin-left: 50%;
892
}
893
 
894
.offset-7 {
895
  margin-left: 58.33333333%;
896
}
897
 
898
.offset-8 {
899
  margin-left: 66.66666667%;
900
}
901
 
902
.offset-9 {
903
  margin-left: 75%;
904
}
905
 
906
.offset-10 {
907
  margin-left: 83.33333333%;
908
}
909
 
910
.offset-11 {
911
  margin-left: 91.66666667%;
912
}
913
 
914
.g-0,
915
.gx-0 {
916
  --bs-gutter-x: 0;
917
}
918
 
919
.g-0,
920
.gy-0 {
921
  --bs-gutter-y: 0;
922
}
923
 
924
.g-1,
925
.gx-1 {
926
  --bs-gutter-x: 0.25rem;
927
}
928
 
929
.g-1,
930
.gy-1 {
931
  --bs-gutter-y: 0.25rem;
932
}
933
 
934
.g-2,
935
.gx-2 {
936
  --bs-gutter-x: 0.5rem;
937
}
938
 
939
.g-2,
940
.gy-2 {
941
  --bs-gutter-y: 0.5rem;
942
}
943
 
944
.g-3,
945
.gx-3 {
946
  --bs-gutter-x: 1rem;
947
}
948
 
949
.g-3,
950
.gy-3 {
951
  --bs-gutter-y: 1rem;
952
}
953
 
954
.g-4,
955
.gx-4 {
956
  --bs-gutter-x: 1.5rem;
957
}
958
 
959
.g-4,
960
.gy-4 {
961
  --bs-gutter-y: 1.5rem;
962
}
963
 
964
.g-5,
965
.gx-5 {
966
  --bs-gutter-x: 3rem;
967
}
968
 
969
.g-5,
970
.gy-5 {
971
  --bs-gutter-y: 3rem;
972
}
973
 
974
.g-6,
975
.gx-6 {
976
  --bs-gutter-x: 4.5rem;
977
}
978
 
979
.g-6,
980
.gy-6 {
981
  --bs-gutter-y: 4.5rem;
982
}
983
 
984
.g-7,
985
.gx-7 {
986
  --bs-gutter-x: 6rem;
987
}
988
 
989
.g-7,
990
.gy-7 {
991
  --bs-gutter-y: 6rem;
992
}
993
 
994
@media (min-width: 576px) {
995
  .col-sm {
996
    flex: 1 0 0%;
997
  }
16848 stevensc 998
 
999
  .row-cols-sm-auto>* {
16825 efrain 1000
    flex: 0 0 auto;
1001
    width: auto;
1002
  }
16848 stevensc 1003
 
1004
  .row-cols-sm-1>* {
16825 efrain 1005
    flex: 0 0 auto;
1006
    width: 100%;
1007
  }
16848 stevensc 1008
 
1009
  .row-cols-sm-2>* {
16825 efrain 1010
    flex: 0 0 auto;
1011
    width: 50%;
1012
  }
16848 stevensc 1013
 
1014
  .row-cols-sm-3>* {
16825 efrain 1015
    flex: 0 0 auto;
1016
    width: 33.3333333333%;
1017
  }
16848 stevensc 1018
 
1019
  .row-cols-sm-4>* {
16825 efrain 1020
    flex: 0 0 auto;
1021
    width: 25%;
1022
  }
16848 stevensc 1023
 
1024
  .row-cols-sm-5>* {
16825 efrain 1025
    flex: 0 0 auto;
1026
    width: 20%;
1027
  }
16848 stevensc 1028
 
1029
  .row-cols-sm-6>* {
16825 efrain 1030
    flex: 0 0 auto;
1031
    width: 16.6666666667%;
1032
  }
16848 stevensc 1033
 
16825 efrain 1034
  .col-sm-auto {
1035
    flex: 0 0 auto;
1036
    width: auto;
1037
  }
16848 stevensc 1038
 
16825 efrain 1039
  .col-sm-1 {
1040
    flex: 0 0 auto;
1041
    width: 8.33333333%;
1042
  }
16848 stevensc 1043
 
16825 efrain 1044
  .col-sm-2 {
1045
    flex: 0 0 auto;
1046
    width: 16.66666667%;
1047
  }
16848 stevensc 1048
 
16825 efrain 1049
  .col-sm-3 {
1050
    flex: 0 0 auto;
1051
    width: 25%;
1052
  }
16848 stevensc 1053
 
16825 efrain 1054
  .col-sm-4 {
1055
    flex: 0 0 auto;
1056
    width: 33.33333333%;
1057
  }
16848 stevensc 1058
 
16825 efrain 1059
  .col-sm-5 {
1060
    flex: 0 0 auto;
1061
    width: 41.66666667%;
1062
  }
16848 stevensc 1063
 
16825 efrain 1064
  .col-sm-6 {
1065
    flex: 0 0 auto;
1066
    width: 50%;
1067
  }
16848 stevensc 1068
 
16825 efrain 1069
  .col-sm-7 {
1070
    flex: 0 0 auto;
1071
    width: 58.33333333%;
1072
  }
16848 stevensc 1073
 
16825 efrain 1074
  .col-sm-8 {
1075
    flex: 0 0 auto;
1076
    width: 66.66666667%;
1077
  }
16848 stevensc 1078
 
16825 efrain 1079
  .col-sm-9 {
1080
    flex: 0 0 auto;
1081
    width: 75%;
1082
  }
16848 stevensc 1083
 
16825 efrain 1084
  .col-sm-10 {
1085
    flex: 0 0 auto;
1086
    width: 83.33333333%;
1087
  }
16848 stevensc 1088
 
16825 efrain 1089
  .col-sm-11 {
1090
    flex: 0 0 auto;
1091
    width: 91.66666667%;
1092
  }
16848 stevensc 1093
 
16825 efrain 1094
  .col-sm-12 {
1095
    flex: 0 0 auto;
1096
    width: 100%;
1097
  }
16848 stevensc 1098
 
16825 efrain 1099
  .offset-sm-0 {
1100
    margin-left: 0;
1101
  }
16848 stevensc 1102
 
16825 efrain 1103
  .offset-sm-1 {
1104
    margin-left: 8.33333333%;
1105
  }
16848 stevensc 1106
 
16825 efrain 1107
  .offset-sm-2 {
1108
    margin-left: 16.66666667%;
1109
  }
16848 stevensc 1110
 
16825 efrain 1111
  .offset-sm-3 {
1112
    margin-left: 25%;
1113
  }
16848 stevensc 1114
 
16825 efrain 1115
  .offset-sm-4 {
1116
    margin-left: 33.33333333%;
1117
  }
16848 stevensc 1118
 
16825 efrain 1119
  .offset-sm-5 {
1120
    margin-left: 41.66666667%;
1121
  }
16848 stevensc 1122
 
16825 efrain 1123
  .offset-sm-6 {
1124
    margin-left: 50%;
1125
  }
16848 stevensc 1126
 
16825 efrain 1127
  .offset-sm-7 {
1128
    margin-left: 58.33333333%;
1129
  }
16848 stevensc 1130
 
16825 efrain 1131
  .offset-sm-8 {
1132
    margin-left: 66.66666667%;
1133
  }
16848 stevensc 1134
 
16825 efrain 1135
  .offset-sm-9 {
1136
    margin-left: 75%;
1137
  }
16848 stevensc 1138
 
16825 efrain 1139
  .offset-sm-10 {
1140
    margin-left: 83.33333333%;
1141
  }
16848 stevensc 1142
 
16825 efrain 1143
  .offset-sm-11 {
1144
    margin-left: 91.66666667%;
1145
  }
16848 stevensc 1146
 
16825 efrain 1147
  .g-sm-0,
1148
  .gx-sm-0 {
1149
    --bs-gutter-x: 0;
1150
  }
16848 stevensc 1151
 
16825 efrain 1152
  .g-sm-0,
1153
  .gy-sm-0 {
1154
    --bs-gutter-y: 0;
1155
  }
16848 stevensc 1156
 
16825 efrain 1157
  .g-sm-1,
1158
  .gx-sm-1 {
1159
    --bs-gutter-x: 0.25rem;
1160
  }
16848 stevensc 1161
 
16825 efrain 1162
  .g-sm-1,
1163
  .gy-sm-1 {
1164
    --bs-gutter-y: 0.25rem;
1165
  }
16848 stevensc 1166
 
16825 efrain 1167
  .g-sm-2,
1168
  .gx-sm-2 {
1169
    --bs-gutter-x: 0.5rem;
1170
  }
16848 stevensc 1171
 
16825 efrain 1172
  .g-sm-2,
1173
  .gy-sm-2 {
1174
    --bs-gutter-y: 0.5rem;
1175
  }
16848 stevensc 1176
 
16825 efrain 1177
  .g-sm-3,
1178
  .gx-sm-3 {
1179
    --bs-gutter-x: 1rem;
1180
  }
16848 stevensc 1181
 
16825 efrain 1182
  .g-sm-3,
1183
  .gy-sm-3 {
1184
    --bs-gutter-y: 1rem;
1185
  }
16848 stevensc 1186
 
16825 efrain 1187
  .g-sm-4,
1188
  .gx-sm-4 {
1189
    --bs-gutter-x: 1.5rem;
1190
  }
16848 stevensc 1191
 
16825 efrain 1192
  .g-sm-4,
1193
  .gy-sm-4 {
1194
    --bs-gutter-y: 1.5rem;
1195
  }
16848 stevensc 1196
 
16825 efrain 1197
  .g-sm-5,
1198
  .gx-sm-5 {
1199
    --bs-gutter-x: 3rem;
1200
  }
16848 stevensc 1201
 
16825 efrain 1202
  .g-sm-5,
1203
  .gy-sm-5 {
1204
    --bs-gutter-y: 3rem;
1205
  }
16848 stevensc 1206
 
16825 efrain 1207
  .g-sm-6,
1208
  .gx-sm-6 {
1209
    --bs-gutter-x: 4.5rem;
1210
  }
16848 stevensc 1211
 
16825 efrain 1212
  .g-sm-6,
1213
  .gy-sm-6 {
1214
    --bs-gutter-y: 4.5rem;
1215
  }
16848 stevensc 1216
 
16825 efrain 1217
  .g-sm-7,
1218
  .gx-sm-7 {
1219
    --bs-gutter-x: 6rem;
1220
  }
16848 stevensc 1221
 
16825 efrain 1222
  .g-sm-7,
1223
  .gy-sm-7 {
1224
    --bs-gutter-y: 6rem;
1225
  }
1226
}
16848 stevensc 1227
 
16825 efrain 1228
@media (min-width: 768px) {
1229
  .col-md {
1230
    flex: 1 0 0%;
1231
  }
16848 stevensc 1232
 
1233
  .row-cols-md-auto>* {
16825 efrain 1234
    flex: 0 0 auto;
1235
    width: auto;
1236
  }
16848 stevensc 1237
 
1238
  .row-cols-md-1>* {
16825 efrain 1239
    flex: 0 0 auto;
1240
    width: 100%;
1241
  }
16848 stevensc 1242
 
1243
  .row-cols-md-2>* {
16825 efrain 1244
    flex: 0 0 auto;
1245
    width: 50%;
1246
  }
16848 stevensc 1247
 
1248
  .row-cols-md-3>* {
16825 efrain 1249
    flex: 0 0 auto;
1250
    width: 33.3333333333%;
1251
  }
16848 stevensc 1252
 
1253
  .row-cols-md-4>* {
16825 efrain 1254
    flex: 0 0 auto;
1255
    width: 25%;
1256
  }
16848 stevensc 1257
 
1258
  .row-cols-md-5>* {
16825 efrain 1259
    flex: 0 0 auto;
1260
    width: 20%;
1261
  }
16848 stevensc 1262
 
1263
  .row-cols-md-6>* {
16825 efrain 1264
    flex: 0 0 auto;
1265
    width: 16.6666666667%;
1266
  }
16848 stevensc 1267
 
16825 efrain 1268
  .col-md-auto {
1269
    flex: 0 0 auto;
1270
    width: auto;
1271
  }
16848 stevensc 1272
 
16825 efrain 1273
  .col-md-1 {
1274
    flex: 0 0 auto;
1275
    width: 8.33333333%;
1276
  }
16848 stevensc 1277
 
16825 efrain 1278
  .col-md-2 {
1279
    flex: 0 0 auto;
1280
    width: 16.66666667%;
1281
  }
16848 stevensc 1282
 
16825 efrain 1283
  .col-md-3 {
1284
    flex: 0 0 auto;
1285
    width: 25%;
1286
  }
16848 stevensc 1287
 
16825 efrain 1288
  .col-md-4 {
1289
    flex: 0 0 auto;
1290
    width: 33.33333333%;
1291
  }
16848 stevensc 1292
 
16825 efrain 1293
  .col-md-5 {
1294
    flex: 0 0 auto;
1295
    width: 41.66666667%;
1296
  }
16848 stevensc 1297
 
16825 efrain 1298
  .col-md-6 {
1299
    flex: 0 0 auto;
1300
    width: 50%;
1301
  }
16848 stevensc 1302
 
16825 efrain 1303
  .col-md-7 {
1304
    flex: 0 0 auto;
1305
    width: 58.33333333%;
1306
  }
16848 stevensc 1307
 
16825 efrain 1308
  .col-md-8 {
1309
    flex: 0 0 auto;
1310
    width: 66.66666667%;
1311
  }
16848 stevensc 1312
 
16825 efrain 1313
  .col-md-9 {
1314
    flex: 0 0 auto;
1315
    width: 75%;
1316
  }
16848 stevensc 1317
 
16825 efrain 1318
  .col-md-10 {
1319
    flex: 0 0 auto;
1320
    width: 83.33333333%;
1321
  }
16848 stevensc 1322
 
16825 efrain 1323
  .col-md-11 {
1324
    flex: 0 0 auto;
1325
    width: 91.66666667%;
1326
  }
16848 stevensc 1327
 
16825 efrain 1328
  .col-md-12 {
1329
    flex: 0 0 auto;
1330
    width: 100%;
1331
  }
16848 stevensc 1332
 
16825 efrain 1333
  .offset-md-0 {
1334
    margin-left: 0;
1335
  }
16848 stevensc 1336
 
16825 efrain 1337
  .offset-md-1 {
1338
    margin-left: 8.33333333%;
1339
  }
16848 stevensc 1340
 
16825 efrain 1341
  .offset-md-2 {
1342
    margin-left: 16.66666667%;
1343
  }
16848 stevensc 1344
 
16825 efrain 1345
  .offset-md-3 {
1346
    margin-left: 25%;
1347
  }
16848 stevensc 1348
 
16825 efrain 1349
  .offset-md-4 {
1350
    margin-left: 33.33333333%;
1351
  }
16848 stevensc 1352
 
16825 efrain 1353
  .offset-md-5 {
1354
    margin-left: 41.66666667%;
1355
  }
16848 stevensc 1356
 
16825 efrain 1357
  .offset-md-6 {
1358
    margin-left: 50%;
1359
  }
16848 stevensc 1360
 
16825 efrain 1361
  .offset-md-7 {
1362
    margin-left: 58.33333333%;
1363
  }
16848 stevensc 1364
 
16825 efrain 1365
  .offset-md-8 {
1366
    margin-left: 66.66666667%;
1367
  }
16848 stevensc 1368
 
16825 efrain 1369
  .offset-md-9 {
1370
    margin-left: 75%;
1371
  }
16848 stevensc 1372
 
16825 efrain 1373
  .offset-md-10 {
1374
    margin-left: 83.33333333%;
1375
  }
16848 stevensc 1376
 
16825 efrain 1377
  .offset-md-11 {
1378
    margin-left: 91.66666667%;
1379
  }
16848 stevensc 1380
 
16825 efrain 1381
  .g-md-0,
1382
  .gx-md-0 {
1383
    --bs-gutter-x: 0;
1384
  }
16848 stevensc 1385
 
16825 efrain 1386
  .g-md-0,
1387
  .gy-md-0 {
1388
    --bs-gutter-y: 0;
1389
  }
16848 stevensc 1390
 
16825 efrain 1391
  .g-md-1,
1392
  .gx-md-1 {
1393
    --bs-gutter-x: 0.25rem;
1394
  }
16848 stevensc 1395
 
16825 efrain 1396
  .g-md-1,
1397
  .gy-md-1 {
1398
    --bs-gutter-y: 0.25rem;
1399
  }
16848 stevensc 1400
 
16825 efrain 1401
  .g-md-2,
1402
  .gx-md-2 {
1403
    --bs-gutter-x: 0.5rem;
1404
  }
16848 stevensc 1405
 
16825 efrain 1406
  .g-md-2,
1407
  .gy-md-2 {
1408
    --bs-gutter-y: 0.5rem;
1409
  }
16848 stevensc 1410
 
16825 efrain 1411
  .g-md-3,
1412
  .gx-md-3 {
1413
    --bs-gutter-x: 1rem;
1414
  }
16848 stevensc 1415
 
16825 efrain 1416
  .g-md-3,
1417
  .gy-md-3 {
1418
    --bs-gutter-y: 1rem;
1419
  }
16848 stevensc 1420
 
16825 efrain 1421
  .g-md-4,
1422
  .gx-md-4 {
1423
    --bs-gutter-x: 1.5rem;
1424
  }
16848 stevensc 1425
 
16825 efrain 1426
  .g-md-4,
1427
  .gy-md-4 {
1428
    --bs-gutter-y: 1.5rem;
1429
  }
16848 stevensc 1430
 
16825 efrain 1431
  .g-md-5,
1432
  .gx-md-5 {
1433
    --bs-gutter-x: 3rem;
1434
  }
16848 stevensc 1435
 
16825 efrain 1436
  .g-md-5,
1437
  .gy-md-5 {
1438
    --bs-gutter-y: 3rem;
1439
  }
16848 stevensc 1440
 
16825 efrain 1441
  .g-md-6,
1442
  .gx-md-6 {
1443
    --bs-gutter-x: 4.5rem;
1444
  }
16848 stevensc 1445
 
16825 efrain 1446
  .g-md-6,
1447
  .gy-md-6 {
1448
    --bs-gutter-y: 4.5rem;
1449
  }
16848 stevensc 1450
 
16825 efrain 1451
  .g-md-7,
1452
  .gx-md-7 {
1453
    --bs-gutter-x: 6rem;
1454
  }
16848 stevensc 1455
 
16825 efrain 1456
  .g-md-7,
1457
  .gy-md-7 {
1458
    --bs-gutter-y: 6rem;
1459
  }
1460
}
16848 stevensc 1461
 
16825 efrain 1462
@media (min-width: 992px) {
1463
  .col-lg {
1464
    flex: 1 0 0%;
1465
  }
16848 stevensc 1466
 
1467
  .row-cols-lg-auto>* {
16825 efrain 1468
    flex: 0 0 auto;
1469
    width: auto;
1470
  }
16848 stevensc 1471
 
1472
  .row-cols-lg-1>* {
16825 efrain 1473
    flex: 0 0 auto;
1474
    width: 100%;
1475
  }
16848 stevensc 1476
 
1477
  .row-cols-lg-2>* {
16825 efrain 1478
    flex: 0 0 auto;
1479
    width: 50%;
1480
  }
16848 stevensc 1481
 
1482
  .row-cols-lg-3>* {
16825 efrain 1483
    flex: 0 0 auto;
1484
    width: 33.3333333333%;
1485
  }
16848 stevensc 1486
 
1487
  .row-cols-lg-4>* {
16825 efrain 1488
    flex: 0 0 auto;
1489
    width: 25%;
1490
  }
16848 stevensc 1491
 
1492
  .row-cols-lg-5>* {
16825 efrain 1493
    flex: 0 0 auto;
1494
    width: 20%;
1495
  }
16848 stevensc 1496
 
1497
  .row-cols-lg-6>* {
16825 efrain 1498
    flex: 0 0 auto;
1499
    width: 16.6666666667%;
1500
  }
16848 stevensc 1501
 
16825 efrain 1502
  .col-lg-auto {
1503
    flex: 0 0 auto;
1504
    width: auto;
1505
  }
16848 stevensc 1506
 
16825 efrain 1507
  .col-lg-1 {
1508
    flex: 0 0 auto;
1509
    width: 8.33333333%;
1510
  }
16848 stevensc 1511
 
16825 efrain 1512
  .col-lg-2 {
1513
    flex: 0 0 auto;
1514
    width: 16.66666667%;
1515
  }
16848 stevensc 1516
 
16825 efrain 1517
  .col-lg-3 {
1518
    flex: 0 0 auto;
1519
    width: 25%;
1520
  }
16848 stevensc 1521
 
16825 efrain 1522
  .col-lg-4 {
1523
    flex: 0 0 auto;
1524
    width: 33.33333333%;
1525
  }
16848 stevensc 1526
 
16825 efrain 1527
  .col-lg-5 {
1528
    flex: 0 0 auto;
1529
    width: 41.66666667%;
1530
  }
16848 stevensc 1531
 
16825 efrain 1532
  .col-lg-6 {
1533
    flex: 0 0 auto;
1534
    width: 50%;
1535
  }
16848 stevensc 1536
 
16825 efrain 1537
  .col-lg-7 {
1538
    flex: 0 0 auto;
1539
    width: 58.33333333%;
1540
  }
16848 stevensc 1541
 
16825 efrain 1542
  .col-lg-8 {
1543
    flex: 0 0 auto;
1544
    width: 66.66666667%;
1545
  }
16848 stevensc 1546
 
16825 efrain 1547
  .col-lg-9 {
1548
    flex: 0 0 auto;
1549
    width: 75%;
1550
  }
16848 stevensc 1551
 
16825 efrain 1552
  .col-lg-10 {
1553
    flex: 0 0 auto;
1554
    width: 83.33333333%;
1555
  }
16848 stevensc 1556
 
16825 efrain 1557
  .col-lg-11 {
1558
    flex: 0 0 auto;
1559
    width: 91.66666667%;
1560
  }
16848 stevensc 1561
 
16825 efrain 1562
  .col-lg-12 {
1563
    flex: 0 0 auto;
1564
    width: 100%;
1565
  }
16848 stevensc 1566
 
16825 efrain 1567
  .offset-lg-0 {
1568
    margin-left: 0;
1569
  }
16848 stevensc 1570
 
16825 efrain 1571
  .offset-lg-1 {
1572
    margin-left: 8.33333333%;
1573
  }
16848 stevensc 1574
 
16825 efrain 1575
  .offset-lg-2 {
1576
    margin-left: 16.66666667%;
1577
  }
16848 stevensc 1578
 
16825 efrain 1579
  .offset-lg-3 {
1580
    margin-left: 25%;
1581
  }
16848 stevensc 1582
 
16825 efrain 1583
  .offset-lg-4 {
1584
    margin-left: 33.33333333%;
1585
  }
16848 stevensc 1586
 
16825 efrain 1587
  .offset-lg-5 {
1588
    margin-left: 41.66666667%;
1589
  }
16848 stevensc 1590
 
16825 efrain 1591
  .offset-lg-6 {
1592
    margin-left: 50%;
1593
  }
16848 stevensc 1594
 
16825 efrain 1595
  .offset-lg-7 {
1596
    margin-left: 58.33333333%;
1597
  }
16848 stevensc 1598
 
16825 efrain 1599
  .offset-lg-8 {
1600
    margin-left: 66.66666667%;
1601
  }
16848 stevensc 1602
 
16825 efrain 1603
  .offset-lg-9 {
1604
    margin-left: 75%;
1605
  }
16848 stevensc 1606
 
16825 efrain 1607
  .offset-lg-10 {
1608
    margin-left: 83.33333333%;
1609
  }
16848 stevensc 1610
 
16825 efrain 1611
  .offset-lg-11 {
1612
    margin-left: 91.66666667%;
1613
  }
16848 stevensc 1614
 
16825 efrain 1615
  .g-lg-0,
1616
  .gx-lg-0 {
1617
    --bs-gutter-x: 0;
1618
  }
16848 stevensc 1619
 
16825 efrain 1620
  .g-lg-0,
1621
  .gy-lg-0 {
1622
    --bs-gutter-y: 0;
1623
  }
16848 stevensc 1624
 
16825 efrain 1625
  .g-lg-1,
1626
  .gx-lg-1 {
1627
    --bs-gutter-x: 0.25rem;
1628
  }
16848 stevensc 1629
 
16825 efrain 1630
  .g-lg-1,
1631
  .gy-lg-1 {
1632
    --bs-gutter-y: 0.25rem;
1633
  }
16848 stevensc 1634
 
16825 efrain 1635
  .g-lg-2,
1636
  .gx-lg-2 {
1637
    --bs-gutter-x: 0.5rem;
1638
  }
16848 stevensc 1639
 
16825 efrain 1640
  .g-lg-2,
1641
  .gy-lg-2 {
1642
    --bs-gutter-y: 0.5rem;
1643
  }
16848 stevensc 1644
 
16825 efrain 1645
  .g-lg-3,
1646
  .gx-lg-3 {
1647
    --bs-gutter-x: 1rem;
1648
  }
16848 stevensc 1649
 
16825 efrain 1650
  .g-lg-3,
1651
  .gy-lg-3 {
1652
    --bs-gutter-y: 1rem;
1653
  }
16848 stevensc 1654
 
16825 efrain 1655
  .g-lg-4,
1656
  .gx-lg-4 {
1657
    --bs-gutter-x: 1.5rem;
1658
  }
16848 stevensc 1659
 
16825 efrain 1660
  .g-lg-4,
1661
  .gy-lg-4 {
1662
    --bs-gutter-y: 1.5rem;
1663
  }
16848 stevensc 1664
 
16825 efrain 1665
  .g-lg-5,
1666
  .gx-lg-5 {
1667
    --bs-gutter-x: 3rem;
1668
  }
16848 stevensc 1669
 
16825 efrain 1670
  .g-lg-5,
1671
  .gy-lg-5 {
1672
    --bs-gutter-y: 3rem;
1673
  }
16848 stevensc 1674
 
16825 efrain 1675
  .g-lg-6,
1676
  .gx-lg-6 {
1677
    --bs-gutter-x: 4.5rem;
1678
  }
16848 stevensc 1679
 
16825 efrain 1680
  .g-lg-6,
1681
  .gy-lg-6 {
1682
    --bs-gutter-y: 4.5rem;
1683
  }
16848 stevensc 1684
 
16825 efrain 1685
  .g-lg-7,
1686
  .gx-lg-7 {
1687
    --bs-gutter-x: 6rem;
1688
  }
16848 stevensc 1689
 
16825 efrain 1690
  .g-lg-7,
1691
  .gy-lg-7 {
1692
    --bs-gutter-y: 6rem;
1693
  }
1694
}
16848 stevensc 1695
 
16825 efrain 1696
@media (min-width: 1200px) {
1697
  .col-xl {
1698
    flex: 1 0 0%;
1699
  }
16848 stevensc 1700
 
1701
  .row-cols-xl-auto>* {
16825 efrain 1702
    flex: 0 0 auto;
1703
    width: auto;
1704
  }
16848 stevensc 1705
 
1706
  .row-cols-xl-1>* {
16825 efrain 1707
    flex: 0 0 auto;
1708
    width: 100%;
1709
  }
16848 stevensc 1710
 
1711
  .row-cols-xl-2>* {
16825 efrain 1712
    flex: 0 0 auto;
1713
    width: 50%;
1714
  }
16848 stevensc 1715
 
1716
  .row-cols-xl-3>* {
16825 efrain 1717
    flex: 0 0 auto;
1718
    width: 33.3333333333%;
1719
  }
16848 stevensc 1720
 
1721
  .row-cols-xl-4>* {
16825 efrain 1722
    flex: 0 0 auto;
1723
    width: 25%;
1724
  }
16848 stevensc 1725
 
1726
  .row-cols-xl-5>* {
16825 efrain 1727
    flex: 0 0 auto;
1728
    width: 20%;
1729
  }
16848 stevensc 1730
 
1731
  .row-cols-xl-6>* {
16825 efrain 1732
    flex: 0 0 auto;
1733
    width: 16.6666666667%;
1734
  }
16848 stevensc 1735
 
16825 efrain 1736
  .col-xl-auto {
1737
    flex: 0 0 auto;
1738
    width: auto;
1739
  }
16848 stevensc 1740
 
16825 efrain 1741
  .col-xl-1 {
1742
    flex: 0 0 auto;
1743
    width: 8.33333333%;
1744
  }
16848 stevensc 1745
 
16825 efrain 1746
  .col-xl-2 {
1747
    flex: 0 0 auto;
1748
    width: 16.66666667%;
1749
  }
16848 stevensc 1750
 
16825 efrain 1751
  .col-xl-3 {
1752
    flex: 0 0 auto;
1753
    width: 25%;
1754
  }
16848 stevensc 1755
 
16825 efrain 1756
  .col-xl-4 {
1757
    flex: 0 0 auto;
1758
    width: 33.33333333%;
1759
  }
16848 stevensc 1760
 
16825 efrain 1761
  .col-xl-5 {
1762
    flex: 0 0 auto;
1763
    width: 41.66666667%;
1764
  }
16848 stevensc 1765
 
16825 efrain 1766
  .col-xl-6 {
1767
    flex: 0 0 auto;
1768
    width: 50%;
1769
  }
16848 stevensc 1770
 
16825 efrain 1771
  .col-xl-7 {
1772
    flex: 0 0 auto;
1773
    width: 58.33333333%;
1774
  }
16848 stevensc 1775
 
16825 efrain 1776
  .col-xl-8 {
1777
    flex: 0 0 auto;
1778
    width: 66.66666667%;
1779
  }
16848 stevensc 1780
 
16825 efrain 1781
  .col-xl-9 {
1782
    flex: 0 0 auto;
1783
    width: 75%;
1784
  }
16848 stevensc 1785
 
16825 efrain 1786
  .col-xl-10 {
1787
    flex: 0 0 auto;
1788
    width: 83.33333333%;
1789
  }
16848 stevensc 1790
 
16825 efrain 1791
  .col-xl-11 {
1792
    flex: 0 0 auto;
1793
    width: 91.66666667%;
1794
  }
16848 stevensc 1795
 
16825 efrain 1796
  .col-xl-12 {
1797
    flex: 0 0 auto;
1798
    width: 100%;
1799
  }
16848 stevensc 1800
 
16825 efrain 1801
  .offset-xl-0 {
1802
    margin-left: 0;
1803
  }
16848 stevensc 1804
 
16825 efrain 1805
  .offset-xl-1 {
1806
    margin-left: 8.33333333%;
1807
  }
16848 stevensc 1808
 
16825 efrain 1809
  .offset-xl-2 {
1810
    margin-left: 16.66666667%;
1811
  }
16848 stevensc 1812
 
16825 efrain 1813
  .offset-xl-3 {
1814
    margin-left: 25%;
1815
  }
16848 stevensc 1816
 
16825 efrain 1817
  .offset-xl-4 {
1818
    margin-left: 33.33333333%;
1819
  }
16848 stevensc 1820
 
16825 efrain 1821
  .offset-xl-5 {
1822
    margin-left: 41.66666667%;
1823
  }
16848 stevensc 1824
 
16825 efrain 1825
  .offset-xl-6 {
1826
    margin-left: 50%;
1827
  }
16848 stevensc 1828
 
16825 efrain 1829
  .offset-xl-7 {
1830
    margin-left: 58.33333333%;
1831
  }
16848 stevensc 1832
 
16825 efrain 1833
  .offset-xl-8 {
1834
    margin-left: 66.66666667%;
1835
  }
16848 stevensc 1836
 
16825 efrain 1837
  .offset-xl-9 {
1838
    margin-left: 75%;
1839
  }
16848 stevensc 1840
 
16825 efrain 1841
  .offset-xl-10 {
1842
    margin-left: 83.33333333%;
1843
  }
16848 stevensc 1844
 
16825 efrain 1845
  .offset-xl-11 {
1846
    margin-left: 91.66666667%;
1847
  }
16848 stevensc 1848
 
16825 efrain 1849
  .g-xl-0,
1850
  .gx-xl-0 {
1851
    --bs-gutter-x: 0;
1852
  }
16848 stevensc 1853
 
16825 efrain 1854
  .g-xl-0,
1855
  .gy-xl-0 {
1856
    --bs-gutter-y: 0;
1857
  }
16848 stevensc 1858
 
16825 efrain 1859
  .g-xl-1,
1860
  .gx-xl-1 {
1861
    --bs-gutter-x: 0.25rem;
1862
  }
16848 stevensc 1863
 
16825 efrain 1864
  .g-xl-1,
1865
  .gy-xl-1 {
1866
    --bs-gutter-y: 0.25rem;
1867
  }
16848 stevensc 1868
 
16825 efrain 1869
  .g-xl-2,
1870
  .gx-xl-2 {
1871
    --bs-gutter-x: 0.5rem;
1872
  }
16848 stevensc 1873
 
16825 efrain 1874
  .g-xl-2,
1875
  .gy-xl-2 {
1876
    --bs-gutter-y: 0.5rem;
1877
  }
16848 stevensc 1878
 
16825 efrain 1879
  .g-xl-3,
1880
  .gx-xl-3 {
1881
    --bs-gutter-x: 1rem;
1882
  }
16848 stevensc 1883
 
16825 efrain 1884
  .g-xl-3,
1885
  .gy-xl-3 {
1886
    --bs-gutter-y: 1rem;
1887
  }
16848 stevensc 1888
 
16825 efrain 1889
  .g-xl-4,
1890
  .gx-xl-4 {
1891
    --bs-gutter-x: 1.5rem;
1892
  }
16848 stevensc 1893
 
16825 efrain 1894
  .g-xl-4,
1895
  .gy-xl-4 {
1896
    --bs-gutter-y: 1.5rem;
1897
  }
16848 stevensc 1898
 
16825 efrain 1899
  .g-xl-5,
1900
  .gx-xl-5 {
1901
    --bs-gutter-x: 3rem;
1902
  }
16848 stevensc 1903
 
16825 efrain 1904
  .g-xl-5,
1905
  .gy-xl-5 {
1906
    --bs-gutter-y: 3rem;
1907
  }
16848 stevensc 1908
 
16825 efrain 1909
  .g-xl-6,
1910
  .gx-xl-6 {
1911
    --bs-gutter-x: 4.5rem;
1912
  }
16848 stevensc 1913
 
16825 efrain 1914
  .g-xl-6,
1915
  .gy-xl-6 {
1916
    --bs-gutter-y: 4.5rem;
1917
  }
16848 stevensc 1918
 
16825 efrain 1919
  .g-xl-7,
1920
  .gx-xl-7 {
1921
    --bs-gutter-x: 6rem;
1922
  }
16848 stevensc 1923
 
16825 efrain 1924
  .g-xl-7,
1925
  .gy-xl-7 {
1926
    --bs-gutter-y: 6rem;
1927
  }
1928
}
16848 stevensc 1929
 
16825 efrain 1930
@media (min-width: 1400px) {
1931
  .col-xxl {
1932
    flex: 1 0 0%;
1933
  }
16848 stevensc 1934
 
1935
  .row-cols-xxl-auto>* {
16825 efrain 1936
    flex: 0 0 auto;
1937
    width: auto;
1938
  }
16848 stevensc 1939
 
1940
  .row-cols-xxl-1>* {
16825 efrain 1941
    flex: 0 0 auto;
1942
    width: 100%;
1943
  }
16848 stevensc 1944
 
1945
  .row-cols-xxl-2>* {
16825 efrain 1946
    flex: 0 0 auto;
1947
    width: 50%;
1948
  }
16848 stevensc 1949
 
1950
  .row-cols-xxl-3>* {
16825 efrain 1951
    flex: 0 0 auto;
1952
    width: 33.3333333333%;
1953
  }
16848 stevensc 1954
 
1955
  .row-cols-xxl-4>* {
16825 efrain 1956
    flex: 0 0 auto;
1957
    width: 25%;
1958
  }
16848 stevensc 1959
 
1960
  .row-cols-xxl-5>* {
16825 efrain 1961
    flex: 0 0 auto;
1962
    width: 20%;
1963
  }
16848 stevensc 1964
 
1965
  .row-cols-xxl-6>* {
16825 efrain 1966
    flex: 0 0 auto;
1967
    width: 16.6666666667%;
1968
  }
16848 stevensc 1969
 
16825 efrain 1970
  .col-xxl-auto {
1971
    flex: 0 0 auto;
1972
    width: auto;
1973
  }
16848 stevensc 1974
 
16825 efrain 1975
  .col-xxl-1 {
1976
    flex: 0 0 auto;
1977
    width: 8.33333333%;
1978
  }
16848 stevensc 1979
 
16825 efrain 1980
  .col-xxl-2 {
1981
    flex: 0 0 auto;
1982
    width: 16.66666667%;
1983
  }
16848 stevensc 1984
 
16825 efrain 1985
  .col-xxl-3 {
1986
    flex: 0 0 auto;
1987
    width: 25%;
1988
  }
16848 stevensc 1989
 
16825 efrain 1990
  .col-xxl-4 {
1991
    flex: 0 0 auto;
1992
    width: 33.33333333%;
1993
  }
16848 stevensc 1994
 
16825 efrain 1995
  .col-xxl-5 {
1996
    flex: 0 0 auto;
1997
    width: 41.66666667%;
1998
  }
16848 stevensc 1999
 
16825 efrain 2000
  .col-xxl-6 {
2001
    flex: 0 0 auto;
2002
    width: 50%;
2003
  }
16848 stevensc 2004
 
16825 efrain 2005
  .col-xxl-7 {
2006
    flex: 0 0 auto;
2007
    width: 58.33333333%;
2008
  }
16848 stevensc 2009
 
16825 efrain 2010
  .col-xxl-8 {
2011
    flex: 0 0 auto;
2012
    width: 66.66666667%;
2013
  }
16848 stevensc 2014
 
16825 efrain 2015
  .col-xxl-9 {
2016
    flex: 0 0 auto;
2017
    width: 75%;
2018
  }
16848 stevensc 2019
 
16825 efrain 2020
  .col-xxl-10 {
2021
    flex: 0 0 auto;
2022
    width: 83.33333333%;
2023
  }
16848 stevensc 2024
 
16825 efrain 2025
  .col-xxl-11 {
2026
    flex: 0 0 auto;
2027
    width: 91.66666667%;
2028
  }
16848 stevensc 2029
 
16825 efrain 2030
  .col-xxl-12 {
2031
    flex: 0 0 auto;
2032
    width: 100%;
2033
  }
16848 stevensc 2034
 
16825 efrain 2035
  .offset-xxl-0 {
2036
    margin-left: 0;
2037
  }
16848 stevensc 2038
 
16825 efrain 2039
  .offset-xxl-1 {
2040
    margin-left: 8.33333333%;
2041
  }
16848 stevensc 2042
 
16825 efrain 2043
  .offset-xxl-2 {
2044
    margin-left: 16.66666667%;
2045
  }
16848 stevensc 2046
 
16825 efrain 2047
  .offset-xxl-3 {
2048
    margin-left: 25%;
2049
  }
16848 stevensc 2050
 
16825 efrain 2051
  .offset-xxl-4 {
2052
    margin-left: 33.33333333%;
2053
  }
16848 stevensc 2054
 
16825 efrain 2055
  .offset-xxl-5 {
2056
    margin-left: 41.66666667%;
2057
  }
16848 stevensc 2058
 
16825 efrain 2059
  .offset-xxl-6 {
2060
    margin-left: 50%;
2061
  }
16848 stevensc 2062
 
16825 efrain 2063
  .offset-xxl-7 {
2064
    margin-left: 58.33333333%;
2065
  }
16848 stevensc 2066
 
16825 efrain 2067
  .offset-xxl-8 {
2068
    margin-left: 66.66666667%;
2069
  }
16848 stevensc 2070
 
16825 efrain 2071
  .offset-xxl-9 {
2072
    margin-left: 75%;
2073
  }
16848 stevensc 2074
 
16825 efrain 2075
  .offset-xxl-10 {
2076
    margin-left: 83.33333333%;
2077
  }
16848 stevensc 2078
 
16825 efrain 2079
  .offset-xxl-11 {
2080
    margin-left: 91.66666667%;
2081
  }
16848 stevensc 2082
 
16825 efrain 2083
  .g-xxl-0,
2084
  .gx-xxl-0 {
2085
    --bs-gutter-x: 0;
2086
  }
16848 stevensc 2087
 
16825 efrain 2088
  .g-xxl-0,
2089
  .gy-xxl-0 {
2090
    --bs-gutter-y: 0;
2091
  }
16848 stevensc 2092
 
16825 efrain 2093
  .g-xxl-1,
2094
  .gx-xxl-1 {
2095
    --bs-gutter-x: 0.25rem;
2096
  }
16848 stevensc 2097
 
16825 efrain 2098
  .g-xxl-1,
2099
  .gy-xxl-1 {
2100
    --bs-gutter-y: 0.25rem;
2101
  }
16848 stevensc 2102
 
16825 efrain 2103
  .g-xxl-2,
2104
  .gx-xxl-2 {
2105
    --bs-gutter-x: 0.5rem;
2106
  }
16848 stevensc 2107
 
16825 efrain 2108
  .g-xxl-2,
2109
  .gy-xxl-2 {
2110
    --bs-gutter-y: 0.5rem;
2111
  }
16848 stevensc 2112
 
16825 efrain 2113
  .g-xxl-3,
2114
  .gx-xxl-3 {
2115
    --bs-gutter-x: 1rem;
2116
  }
16848 stevensc 2117
 
16825 efrain 2118
  .g-xxl-3,
2119
  .gy-xxl-3 {
2120
    --bs-gutter-y: 1rem;
2121
  }
16848 stevensc 2122
 
16825 efrain 2123
  .g-xxl-4,
2124
  .gx-xxl-4 {
2125
    --bs-gutter-x: 1.5rem;
2126
  }
16848 stevensc 2127
 
16825 efrain 2128
  .g-xxl-4,
2129
  .gy-xxl-4 {
2130
    --bs-gutter-y: 1.5rem;
2131
  }
16848 stevensc 2132
 
16825 efrain 2133
  .g-xxl-5,
2134
  .gx-xxl-5 {
2135
    --bs-gutter-x: 3rem;
2136
  }
16848 stevensc 2137
 
16825 efrain 2138
  .g-xxl-5,
2139
  .gy-xxl-5 {
2140
    --bs-gutter-y: 3rem;
2141
  }
16848 stevensc 2142
 
16825 efrain 2143
  .g-xxl-6,
2144
  .gx-xxl-6 {
2145
    --bs-gutter-x: 4.5rem;
2146
  }
16848 stevensc 2147
 
16825 efrain 2148
  .g-xxl-6,
2149
  .gy-xxl-6 {
2150
    --bs-gutter-y: 4.5rem;
2151
  }
16848 stevensc 2152
 
16825 efrain 2153
  .g-xxl-7,
2154
  .gx-xxl-7 {
2155
    --bs-gutter-x: 6rem;
2156
  }
16848 stevensc 2157
 
16825 efrain 2158
  .g-xxl-7,
2159
  .gy-xxl-7 {
2160
    --bs-gutter-y: 6rem;
2161
  }
2162
}
16848 stevensc 2163
 
16825 efrain 2164
.table {
2165
  --bs-table-color: var(--bs-body-color);
2166
  --bs-table-bg: transparent;
2167
  --bs-table-border-color: var(--bs-border-color);
2168
  --bs-table-accent-bg: transparent;
2169
  --bs-table-striped-color: var(--bs-body-color);
2170
  --bs-table-striped-bg: #e9ecef;
2171
  --bs-table-active-color: var(--bs-body-color);
2172
  --bs-table-active-bg: #dee2e6;
2173
  --bs-table-hover-color: var(--bs-body-color);
2174
  --bs-table-hover-bg: #e9ecef;
2175
  width: 100%;
2176
  margin-bottom: 1rem;
2177
  color: var(--bs-table-color);
2178
  vertical-align: top;
2179
  border-color: var(--bs-table-border-color);
2180
}
16848 stevensc 2181
 
2182
.table> :not(caption)>*>* {
16825 efrain 2183
  padding: 0.85rem 0.85rem;
2184
  background-color: var(--bs-table-bg);
2185
  border-bottom-width: 1px;
2186
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2187
}
16848 stevensc 2188
 
2189
.table>tbody {
16825 efrain 2190
  vertical-align: inherit;
2191
}
16848 stevensc 2192
 
2193
.table>thead {
16825 efrain 2194
  vertical-align: bottom;
2195
}
2196
 
2197
.table-group-divider {
2198
  border-top: 2px solid #e9ecef;
2199
}
2200
 
2201
.caption-top {
2202
  caption-side: top;
2203
}
2204
 
16848 stevensc 2205
.table-sm> :not(caption)>*>* {
16825 efrain 2206
  padding: 0.55rem 0.55rem;
2207
}
2208
 
16848 stevensc 2209
.table-bordered> :not(caption)>* {
16825 efrain 2210
  border-width: 1px 0;
2211
}
16848 stevensc 2212
 
2213
.table-bordered> :not(caption)>*>* {
16825 efrain 2214
  border-width: 0 1px;
2215
}
2216
 
16848 stevensc 2217
.table-borderless> :not(caption)>*>* {
16825 efrain 2218
  border-bottom-width: 0;
2219
}
16848 stevensc 2220
 
2221
.table-borderless> :not(:first-child) {
16825 efrain 2222
  border-top-width: 0;
2223
}
2224
 
16848 stevensc 2225
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2226
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2227
  color: var(--bs-table-striped-color);
2228
}
2229
 
16848 stevensc 2230
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2231
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2232
  color: var(--bs-table-striped-color);
2233
}
2234
 
2235
.table-active {
2236
  --bs-table-accent-bg: var(--bs-table-active-bg);
2237
  color: var(--bs-table-active-color);
2238
}
2239
 
16848 stevensc 2240
.table-hover>tbody>tr:hover>* {
16825 efrain 2241
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2242
  color: var(--bs-table-hover-color);
2243
}
2244
 
2245
.table-primary {
2246
  --bs-table-color: #000;
2247
  --bs-table-bg: #e0e3ff;
2248
  --bs-table-border-color: #cacce6;
2249
  --bs-table-striped-bg: #d5d8f2;
2250
  --bs-table-striped-color: #000;
2251
  --bs-table-active-bg: #cacce6;
2252
  --bs-table-active-color: #000;
2253
  --bs-table-hover-bg: #cfd2ec;
2254
  --bs-table-hover-color: #000;
2255
  color: var(--bs-table-color);
2256
  border-color: var(--bs-table-border-color);
2257
}
2258
 
2259
.table-secondary {
2260
  --bs-table-color: #000;
2261
  --bs-table-bg: #e4e7ec;
2262
  --bs-table-border-color: #cdd0d4;
2263
  --bs-table-striped-bg: #d9dbe0;
2264
  --bs-table-striped-color: #000;
2265
  --bs-table-active-bg: #cdd0d4;
2266
  --bs-table-active-color: #000;
2267
  --bs-table-hover-bg: #d3d6da;
2268
  --bs-table-hover-color: #000;
2269
  color: var(--bs-table-color);
2270
  border-color: var(--bs-table-border-color);
2271
}
2272
 
2273
.table-success {
2274
  --bs-table-color: #000;
2275
  --bs-table-bg: #cdeddb;
2276
  --bs-table-border-color: #b9d5c5;
2277
  --bs-table-striped-bg: #c3e1d0;
2278
  --bs-table-striped-color: #000;
2279
  --bs-table-active-bg: #b9d5c5;
2280
  --bs-table-active-color: #000;
2281
  --bs-table-hover-bg: #bedbcb;
2282
  --bs-table-hover-color: #000;
2283
  color: var(--bs-table-color);
2284
  border-color: var(--bs-table-border-color);
2285
}
2286
 
2287
.table-info {
2288
  --bs-table-color: #000;
2289
  --bs-table-bg: #e0f6f6;
2290
  --bs-table-border-color: #cadddd;
2291
  --bs-table-striped-bg: #d5eaea;
2292
  --bs-table-striped-color: #000;
2293
  --bs-table-active-bg: #cadddd;
2294
  --bs-table-active-color: #000;
2295
  --bs-table-hover-bg: #cfe4e4;
2296
  --bs-table-hover-color: #000;
2297
  color: var(--bs-table-color);
2298
  border-color: var(--bs-table-border-color);
2299
}
2300
 
2301
.table-warning {
2302
  --bs-table-color: #000;
2303
  --bs-table-bg: #fef2cd;
2304
  --bs-table-border-color: #e5dab9;
2305
  --bs-table-striped-bg: #f1e6c3;
2306
  --bs-table-striped-color: #000;
2307
  --bs-table-active-bg: #e5dab9;
2308
  --bs-table-active-color: #000;
2309
  --bs-table-hover-bg: #ebe0be;
2310
  --bs-table-hover-color: #000;
2311
  color: var(--bs-table-color);
2312
  border-color: var(--bs-table-border-color);
2313
}
2314
 
2315
.table-danger {
2316
  --bs-table-color: #000;
2317
  --bs-table-bg: #ffd6e0;
2318
  --bs-table-border-color: #e6c1ca;
2319
  --bs-table-striped-bg: #f2cbd5;
2320
  --bs-table-striped-color: #000;
2321
  --bs-table-active-bg: #e6c1ca;
2322
  --bs-table-active-color: #000;
2323
  --bs-table-hover-bg: #ecc6cf;
2324
  --bs-table-hover-color: #000;
2325
  color: var(--bs-table-color);
2326
  border-color: var(--bs-table-border-color);
2327
}
2328
 
2329
.table-light {
2330
  --bs-table-color: #000;
2331
  --bs-table-bg: #e9ecef;
2332
  --bs-table-border-color: #d2d4d7;
2333
  --bs-table-striped-bg: #dde0e3;
2334
  --bs-table-striped-color: #000;
2335
  --bs-table-active-bg: #d2d4d7;
2336
  --bs-table-active-color: #000;
2337
  --bs-table-hover-bg: #d8dadd;
2338
  --bs-table-hover-color: #000;
2339
  color: var(--bs-table-color);
2340
  border-color: var(--bs-table-border-color);
2341
}
2342
 
2343
.table-dark {
2344
  --bs-table-color: #fff;
2345
  --bs-table-bg: #060c17;
2346
  --bs-table-border-color: #1f242e;
2347
  --bs-table-striped-bg: #121823;
2348
  --bs-table-striped-color: #fff;
2349
  --bs-table-active-bg: #1f242e;
2350
  --bs-table-active-color: #fff;
2351
  --bs-table-hover-bg: #191e28;
2352
  --bs-table-hover-color: #fff;
2353
  color: var(--bs-table-color);
2354
  border-color: var(--bs-table-border-color);
2355
}
2356
 
2357
.table-responsive {
2358
  overflow-x: auto;
2359
  -webkit-overflow-scrolling: touch;
2360
}
2361
 
2362
@media (max-width: 575.98px) {
2363
  .table-responsive-sm {
2364
    overflow-x: auto;
2365
    -webkit-overflow-scrolling: touch;
2366
  }
2367
}
16848 stevensc 2368
 
16825 efrain 2369
@media (max-width: 767.98px) {
2370
  .table-responsive-md {
2371
    overflow-x: auto;
2372
    -webkit-overflow-scrolling: touch;
2373
  }
2374
}
16848 stevensc 2375
 
16825 efrain 2376
@media (max-width: 991.98px) {
2377
  .table-responsive-lg {
2378
    overflow-x: auto;
2379
    -webkit-overflow-scrolling: touch;
2380
  }
2381
}
16848 stevensc 2382
 
16825 efrain 2383
@media (max-width: 1199.98px) {
2384
  .table-responsive-xl {
2385
    overflow-x: auto;
2386
    -webkit-overflow-scrolling: touch;
2387
  }
2388
}
16848 stevensc 2389
 
16825 efrain 2390
@media (max-width: 1399.98px) {
2391
  .table-responsive-xxl {
2392
    overflow-x: auto;
2393
    -webkit-overflow-scrolling: touch;
2394
  }
2395
}
16848 stevensc 2396
 
16825 efrain 2397
.form-label {
2398
  margin-bottom: 0.5rem;
2399
}
2400
 
2401
.col-form-label {
2402
  padding-top: calc(0.469rem + 1px);
2403
  padding-bottom: calc(0.469rem + 1px);
2404
  margin-bottom: 0;
2405
  font-size: inherit;
2406
  line-height: 1.5;
2407
}
2408
 
2409
.col-form-label-lg {
2410
  padding-top: calc(0.5rem + 1px);
2411
  padding-bottom: calc(0.5rem + 1px);
2412
  font-size: 1rem;
2413
}
2414
 
2415
.col-form-label-sm {
2416
  padding-top: calc(0.391rem + 1px);
2417
  padding-bottom: calc(0.391rem + 1px);
2418
  font-size: 0.812rem;
2419
}
2420
 
2421
.form-text {
2422
  margin-top: 0.25rem;
2423
  font-size: 0.875em;
2424
  color: #7987a1;
2425
}
2426
 
16848 stevensc 2427
.form-control,
2428
.typeahead.tt-input,
2429
.typeahead.tt-hint,
2430
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2431
  display: block;
2432
  width: 100%;
2433
  padding: 0.469rem 0.8rem;
2434
  font-size: 0.875rem;
2435
  font-weight: 400;
2436
  line-height: 1.5;
2437
  color: #000;
2438
  background-color: #fff;
2439
  background-clip: padding-box;
2440
  border: 1px solid #e9ecef;
2441
  appearance: none;
2442
  border-radius: 0.25rem;
2443
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2444
}
16848 stevensc 2445
 
16825 efrain 2446
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2447
 
2448
  .form-control,
2449
  .typeahead.tt-input,
2450
  .typeahead.tt-hint,
2451
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2452
    transition: none;
2453
  }
2454
}
16848 stevensc 2455
 
2456
.form-control[type=file],
2457
[type=file].typeahead.tt-input,
2458
[type=file].typeahead.tt-hint,
2459
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2460
  overflow: hidden;
2461
}
16848 stevensc 2462
 
2463
.form-control[type=file]:not(:disabled):not([readonly]),
2464
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2465
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2466
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2467
  cursor: pointer;
2468
}
16848 stevensc 2469
 
2470
.form-control:focus,
2471
.typeahead.tt-input:focus,
2472
.typeahead.tt-hint:focus,
2473
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2474
  color: #000;
2475
  background-color: #fff;
2476
  border-color: #cbd1db;
2477
  outline: 0;
2478
  box-shadow: none;
2479
}
16848 stevensc 2480
 
2481
.form-control::-webkit-date-and-time-value,
2482
.typeahead.tt-input::-webkit-date-and-time-value,
2483
.typeahead.tt-hint::-webkit-date-and-time-value,
2484
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2485
  height: 1.5em;
2486
}
16848 stevensc 2487
 
2488
.form-control::placeholder,
2489
.typeahead.tt-input::placeholder,
2490
.typeahead.tt-hint::placeholder,
2491
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2492
  color: #aeb7c5;
2493
  opacity: 1;
2494
}
16848 stevensc 2495
 
2496
.form-control:disabled,
2497
.typeahead.tt-input:disabled,
2498
.typeahead.tt-hint:disabled,
2499
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2500
  background-color: #e9ecef;
2501
  opacity: 1;
2502
}
16848 stevensc 2503
 
2504
.form-control::file-selector-button,
2505
.typeahead.tt-input::file-selector-button,
2506
.typeahead.tt-hint::file-selector-button,
2507
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2508
  padding: 0.469rem 0.8rem;
2509
  margin: -0.469rem -0.8rem;
2510
  margin-inline-end: 0.8rem;
2511
  color: #000;
2512
  background-color: #f8f9fa;
2513
  pointer-events: none;
2514
  border-color: inherit;
2515
  border-style: solid;
2516
  border-width: 0;
2517
  border-inline-end-width: 1px;
2518
  border-radius: 0;
2519
  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;
2520
}
16848 stevensc 2521
 
16825 efrain 2522
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2523
 
2524
  .form-control::file-selector-button,
2525
  .typeahead.tt-input::file-selector-button,
2526
  .typeahead.tt-hint::file-selector-button,
2527
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2528
    transition: none;
2529
  }
2530
}
16848 stevensc 2531
 
2532
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2533
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2534
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2535
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2536
  background-color: #ecedee;
2537
}
2538
 
2539
.form-control-plaintext {
2540
  display: block;
2541
  width: 100%;
2542
  padding: 0.469rem 0;
2543
  margin-bottom: 0;
2544
  line-height: 1.5;
2545
  color: #000;
2546
  background-color: transparent;
2547
  border: solid transparent;
2548
  border-width: 1px 0;
2549
}
16848 stevensc 2550
 
16825 efrain 2551
.form-control-plaintext:focus {
2552
  outline: 0;
2553
}
16848 stevensc 2554
 
2555
.form-control-plaintext.form-control-sm,
2556
.form-control-plaintext.form-control-lg {
16825 efrain 2557
  padding-right: 0;
2558
  padding-left: 0;
2559
}
2560
 
2561
.form-control-sm {
2562
  min-height: calc(1.5em + 0.782rem + 2px);
2563
  padding: 0.391rem 0.8rem;
2564
  font-size: 0.812rem;
2565
  border-radius: 0.25rem;
2566
}
16848 stevensc 2567
 
16825 efrain 2568
.form-control-sm::file-selector-button {
2569
  padding: 0.391rem 0.8rem;
2570
  margin: -0.391rem -0.8rem;
2571
  margin-inline-end: 0.8rem;
2572
}
2573
 
2574
.form-control-lg {
2575
  min-height: calc(1.5em + 1rem + 2px);
2576
  padding: 0.5rem 0.8rem;
2577
  font-size: 1rem;
2578
  border-radius: 0.25rem;
2579
}
16848 stevensc 2580
 
16825 efrain 2581
.form-control-lg::file-selector-button {
2582
  padding: 0.5rem 0.8rem;
2583
  margin: -0.5rem -0.8rem;
2584
  margin-inline-end: 0.8rem;
2585
}
2586
 
16848 stevensc 2587
textarea.form-control,
2588
textarea.typeahead.tt-input,
2589
textarea.typeahead.tt-hint,
2590
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2591
  min-height: calc(1.5em + 0.938rem + 2px);
2592
}
16848 stevensc 2593
 
16825 efrain 2594
textarea.form-control-sm {
2595
  min-height: calc(1.5em + 0.782rem + 2px);
2596
}
16848 stevensc 2597
 
16825 efrain 2598
textarea.form-control-lg {
2599
  min-height: calc(1.5em + 1rem + 2px);
2600
}
2601
 
2602
.form-control-color {
2603
  width: 3rem;
2604
  height: calc(1.5em + 0.938rem + 2px);
2605
  padding: 0.469rem;
2606
}
16848 stevensc 2607
 
16825 efrain 2608
.form-control-color:not(:disabled):not([readonly]) {
2609
  cursor: pointer;
2610
}
16848 stevensc 2611
 
16825 efrain 2612
.form-control-color::-moz-color-swatch {
2613
  border: 0 !important;
2614
  border-radius: 0.25rem;
2615
}
16848 stevensc 2616
 
16825 efrain 2617
.form-control-color::-webkit-color-swatch {
2618
  border-radius: 0.25rem;
2619
}
16848 stevensc 2620
 
16825 efrain 2621
.form-control-color.form-control-sm {
2622
  height: calc(1.5em + 0.782rem + 2px);
2623
}
16848 stevensc 2624
 
16825 efrain 2625
.form-control-color.form-control-lg {
2626
  height: calc(1.5em + 1rem + 2px);
2627
}
2628
 
2629
.form-select {
2630
  display: block;
2631
  width: 100%;
2632
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2633
  -moz-padding-start: calc(0.8rem - 3px);
2634
  font-size: 0.875rem;
2635
  font-weight: 400;
2636
  line-height: 1.5;
2637
  color: #000;
2638
  background-color: #fff;
2639
  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");
2640
  background-repeat: no-repeat;
2641
  background-position: right 0.8rem center;
2642
  background-size: 16px 12px;
2643
  border: 1px solid #e9ecef;
2644
  border-radius: 0.25rem;
2645
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2646
  appearance: none;
2647
}
16848 stevensc 2648
 
16825 efrain 2649
@media (prefers-reduced-motion: reduce) {
2650
  .form-select {
2651
    transition: none;
2652
  }
2653
}
16848 stevensc 2654
 
16825 efrain 2655
.form-select:focus {
2656
  border-color: #cbd1db;
2657
  outline: 0;
2658
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2659
}
16848 stevensc 2660
 
2661
.form-select[multiple],
2662
.form-select[size]:not([size="1"]) {
16825 efrain 2663
  padding-right: 0.8rem;
2664
  background-image: none;
2665
}
16848 stevensc 2666
 
16825 efrain 2667
.form-select:disabled {
2668
  background-color: #e9ecef;
2669
}
16848 stevensc 2670
 
16825 efrain 2671
.form-select:-moz-focusring {
2672
  color: transparent;
2673
  text-shadow: 0 0 0 #000;
2674
}
2675
 
2676
.form-select-sm {
2677
  padding-top: 0.391rem;
2678
  padding-bottom: 0.391rem;
2679
  padding-left: 0.8rem;
2680
  font-size: 0.812rem;
2681
  border-radius: 0.25rem;
2682
}
2683
 
2684
.form-select-lg {
2685
  padding-top: 0.5rem;
2686
  padding-bottom: 0.5rem;
2687
  padding-left: 0.8rem;
2688
  font-size: 1rem;
2689
  border-radius: 0.25rem;
2690
}
2691
 
2692
.form-check {
2693
  display: block;
2694
  min-height: 1.3125rem;
2695
  padding-left: 1.8em;
2696
  margin-bottom: 0.125rem;
2697
}
16848 stevensc 2698
 
16825 efrain 2699
.form-check .form-check-input {
2700
  float: left;
2701
  margin-left: -1.8em;
2702
}
2703
 
2704
.form-check-reverse {
2705
  padding-right: 1.8em;
2706
  padding-left: 0;
2707
  text-align: right;
2708
}
16848 stevensc 2709
 
16825 efrain 2710
.form-check-reverse .form-check-input {
2711
  float: right;
2712
  margin-right: -1.8em;
2713
  margin-left: 0;
2714
}
2715
 
2716
.form-check-input {
2717
  width: 1.3em;
2718
  height: 1.3em;
2719
  margin-top: 0.1em;
2720
  vertical-align: top;
2721
  background-color: #fff;
2722
  background-repeat: no-repeat;
2723
  background-position: center;
2724
  background-size: contain;
2725
  border: 1px solid rgba(0, 0, 0, 0.25);
2726
  appearance: none;
2727
  print-color-adjust: exact;
2728
}
16848 stevensc 2729
 
16825 efrain 2730
.form-check-input[type=checkbox] {
2731
  border-radius: 0.15em;
2732
}
16848 stevensc 2733
 
16825 efrain 2734
.form-check-input[type=radio] {
2735
  border-radius: 50%;
2736
}
16848 stevensc 2737
 
16825 efrain 2738
.form-check-input:active {
2739
  filter: brightness(90%);
2740
}
16848 stevensc 2741
 
16825 efrain 2742
.form-check-input:focus {
2743
  border-color: #cbd1db;
2744
  outline: 0;
2745
  box-shadow: none;
2746
}
16848 stevensc 2747
 
16825 efrain 2748
.form-check-input:checked {
2749
  background-color: #6571ff;
2750
  border-color: #6571ff;
2751
}
16848 stevensc 2752
 
16825 efrain 2753
.form-check-input:checked[type=checkbox] {
2754
  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");
2755
}
16848 stevensc 2756
 
16825 efrain 2757
.form-check-input:checked[type=radio] {
2758
  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");
2759
}
16848 stevensc 2760
 
16825 efrain 2761
.form-check-input[type=checkbox]:indeterminate {
2762
  background-color: #6571ff;
2763
  border-color: #6571ff;
2764
  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");
2765
}
16848 stevensc 2766
 
16825 efrain 2767
.form-check-input:disabled {
2768
  pointer-events: none;
2769
  filter: none;
2770
  opacity: 0.5;
2771
}
16848 stevensc 2772
 
2773
.form-check-input[disabled]~.form-check-label,
2774
.form-check-input:disabled~.form-check-label {
16825 efrain 2775
  cursor: default;
2776
  opacity: 0.5;
2777
}
2778
 
2779
.form-switch {
2780
  padding-left: 2.5em;
2781
}
16848 stevensc 2782
 
16825 efrain 2783
.form-switch .form-check-input {
2784
  width: 2em;
2785
  margin-left: -2.5em;
2786
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
2787
  background-position: left center;
2788
  border-radius: 2em;
2789
  transition: background-position 0.15s ease-in-out;
2790
}
16848 stevensc 2791
 
16825 efrain 2792
@media (prefers-reduced-motion: reduce) {
2793
  .form-switch .form-check-input {
2794
    transition: none;
2795
  }
2796
}
16848 stevensc 2797
 
16825 efrain 2798
.form-switch .form-check-input:focus {
2799
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23cbd1db'/%3e%3c/svg%3e");
2800
}
16848 stevensc 2801
 
16825 efrain 2802
.form-switch .form-check-input:checked {
2803
  background-position: right center;
2804
  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");
2805
}
16848 stevensc 2806
 
16825 efrain 2807
.form-switch.form-check-reverse {
2808
  padding-right: 2.5em;
2809
  padding-left: 0;
2810
}
16848 stevensc 2811
 
16825 efrain 2812
.form-switch.form-check-reverse .form-check-input {
2813
  margin-right: -2.5em;
2814
  margin-left: 0;
2815
}
2816
 
2817
.form-check-inline {
2818
  display: inline-block;
2819
  margin-right: 1rem;
2820
}
2821
 
2822
.btn-check {
2823
  position: absolute;
2824
  clip: rect(0, 0, 0, 0);
2825
  pointer-events: none;
2826
}
16848 stevensc 2827
 
2828
.btn-check[disabled]+.btn,
2829
.wizard>.actions .btn-check[disabled]+a,
2830
div.tox .btn-check[disabled]+.tox-button,
2831
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2832
.fc .btn-check[disabled]+.fc-button-primary,
2833
.btn-check:disabled+.btn,
2834
.wizard>.actions .btn-check:disabled+a,
2835
div.tox .btn-check:disabled+.tox-button,
2836
.swal2-popup .swal2-actions .btn-check:disabled+button,
2837
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2838
  pointer-events: none;
2839
  filter: none;
2840
  opacity: 0.65;
2841
}
2842
 
2843
.form-range {
2844
  width: 100%;
2845
  height: 1rem;
2846
  padding: 0;
2847
  background-color: transparent;
2848
  appearance: none;
2849
}
16848 stevensc 2850
 
16825 efrain 2851
.form-range:focus {
2852
  outline: 0;
2853
}
16848 stevensc 2854
 
16825 efrain 2855
.form-range:focus::-webkit-slider-thumb {
2856
  box-shadow: 0 0 0 1px #f9fafb, none;
2857
}
16848 stevensc 2858
 
16825 efrain 2859
.form-range:focus::-moz-range-thumb {
2860
  box-shadow: 0 0 0 1px #f9fafb, none;
2861
}
16848 stevensc 2862
 
16825 efrain 2863
.form-range::-moz-focus-outer {
2864
  border: 0;
2865
}
16848 stevensc 2866
 
16825 efrain 2867
.form-range::-webkit-slider-thumb {
2868
  width: 1rem;
2869
  height: 1rem;
2870
  margin-top: -0.25rem;
2871
  background-color: #6571ff;
2872
  border: 0;
2873
  border-radius: 1rem;
2874
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2875
  appearance: none;
2876
}
16848 stevensc 2877
 
16825 efrain 2878
@media (prefers-reduced-motion: reduce) {
2879
  .form-range::-webkit-slider-thumb {
2880
    transition: none;
2881
  }
2882
}
16848 stevensc 2883
 
16825 efrain 2884
.form-range::-webkit-slider-thumb:active {
2885
  background-color: #d1d4ff;
2886
}
16848 stevensc 2887
 
16825 efrain 2888
.form-range::-webkit-slider-runnable-track {
2889
  width: 100%;
2890
  height: 0.5rem;
2891
  color: transparent;
2892
  cursor: pointer;
2893
  background-color: #dee2e6;
2894
  border-color: transparent;
2895
  border-radius: 1rem;
2896
}
16848 stevensc 2897
 
16825 efrain 2898
.form-range::-moz-range-thumb {
2899
  width: 1rem;
2900
  height: 1rem;
2901
  background-color: #6571ff;
2902
  border: 0;
2903
  border-radius: 1rem;
2904
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2905
  appearance: none;
2906
}
16848 stevensc 2907
 
16825 efrain 2908
@media (prefers-reduced-motion: reduce) {
2909
  .form-range::-moz-range-thumb {
2910
    transition: none;
2911
  }
2912
}
16848 stevensc 2913
 
16825 efrain 2914
.form-range::-moz-range-thumb:active {
2915
  background-color: #d1d4ff;
2916
}
16848 stevensc 2917
 
16825 efrain 2918
.form-range::-moz-range-track {
2919
  width: 100%;
2920
  height: 0.5rem;
2921
  color: transparent;
2922
  cursor: pointer;
2923
  background-color: #dee2e6;
2924
  border-color: transparent;
2925
  border-radius: 1rem;
2926
}
16848 stevensc 2927
 
16825 efrain 2928
.form-range:disabled {
2929
  pointer-events: none;
2930
}
16848 stevensc 2931
 
16825 efrain 2932
.form-range:disabled::-webkit-slider-thumb {
2933
  background-color: #aeb7c5;
2934
}
16848 stevensc 2935
 
16825 efrain 2936
.form-range:disabled::-moz-range-thumb {
2937
  background-color: #aeb7c5;
2938
}
2939
 
2940
.form-floating {
2941
  position: relative;
2942
}
16848 stevensc 2943
 
2944
.form-floating>.form-control,
2945
.form-floating>.typeahead.tt-input,
2946
.form-floating>.typeahead.tt-hint,
2947
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2948
.form-floating>.form-control-plaintext,
2949
.form-floating>.form-select {
16825 efrain 2950
  height: calc(3.5rem + 2px);
2951
  line-height: 1.25;
2952
}
16848 stevensc 2953
 
2954
.form-floating>label {
16825 efrain 2955
  position: absolute;
2956
  top: 0;
2957
  left: 0;
2958
  width: 100%;
2959
  height: 100%;
2960
  padding: 1rem 0.8rem;
2961
  overflow: hidden;
2962
  text-align: start;
2963
  text-overflow: ellipsis;
2964
  white-space: nowrap;
2965
  pointer-events: none;
2966
  border: 1px solid transparent;
2967
  transform-origin: 0 0;
2968
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2969
}
16848 stevensc 2970
 
16825 efrain 2971
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2972
  .form-floating>label {
16825 efrain 2973
    transition: none;
2974
  }
2975
}
16848 stevensc 2976
 
2977
.form-floating>.form-control,
2978
.form-floating>.typeahead.tt-input,
2979
.form-floating>.typeahead.tt-hint,
2980
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2981
.form-floating>.form-control-plaintext {
16825 efrain 2982
  padding: 1rem 0.8rem;
2983
}
16848 stevensc 2984
 
2985
.form-floating>.form-control::placeholder,
2986
.form-floating>.typeahead.tt-input::placeholder,
2987
.form-floating>.typeahead.tt-hint::placeholder,
2988
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2989
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2990
  color: transparent;
2991
}
16848 stevensc 2992
 
2993
.form-floating>.form-control:focus,
2994
.form-floating>.typeahead.tt-input:focus,
2995
.form-floating>.typeahead.tt-hint:focus,
2996
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2997
.form-floating>.form-control:not(:placeholder-shown),
2998
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2999
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
3000
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3001
.form-floating>.form-control-plaintext:focus,
3002
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3003
  padding-top: 1.625rem;
3004
  padding-bottom: 0.625rem;
3005
}
16848 stevensc 3006
 
3007
.form-floating>.form-control:-webkit-autofill,
3008
.form-floating>.typeahead.tt-input:-webkit-autofill,
3009
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3010
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3011
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3012
  padding-top: 1.625rem;
3013
  padding-bottom: 0.625rem;
3014
}
16848 stevensc 3015
 
3016
.form-floating>.form-select {
16825 efrain 3017
  padding-top: 1.625rem;
3018
  padding-bottom: 0.625rem;
3019
}
16848 stevensc 3020
 
3021
.form-floating>.form-control:focus~label,
3022
.form-floating>.typeahead.tt-input:focus~label,
3023
.form-floating>.typeahead.tt-hint:focus~label,
3024
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3025
.form-floating>.form-control:not(:placeholder-shown)~label,
3026
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3027
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3028
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3029
.form-floating>.form-control-plaintext~label,
3030
.form-floating>.form-select~label {
16825 efrain 3031
  opacity: 0.65;
3032
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3033
}
16848 stevensc 3034
 
3035
.form-floating>.form-control:-webkit-autofill~label,
3036
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3037
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3038
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3039
  opacity: 0.65;
3040
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3041
}
16848 stevensc 3042
 
3043
.form-floating>.form-control-plaintext~label {
16825 efrain 3044
  border-width: 1px 0;
3045
}
3046
 
3047
.input-group {
3048
  position: relative;
3049
  display: flex;
3050
  flex-wrap: wrap;
3051
  align-items: stretch;
3052
  width: 100%;
3053
}
16848 stevensc 3054
 
3055
.input-group>.form-control,
3056
.input-group>.typeahead.tt-input,
3057
.input-group>.typeahead.tt-hint,
3058
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3059
.input-group>.form-select,
3060
.input-group>.form-floating {
16825 efrain 3061
  position: relative;
3062
  flex: 1 1 auto;
3063
  width: 1%;
3064
  min-width: 0;
3065
}
16848 stevensc 3066
 
3067
.input-group>.form-control:focus,
3068
.input-group>.typeahead.tt-input:focus,
3069
.input-group>.typeahead.tt-hint:focus,
3070
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3071
.input-group>.form-select:focus,
3072
.input-group>.form-floating:focus-within {
16825 efrain 3073
  z-index: 5;
3074
}
16848 stevensc 3075
 
3076
.input-group .btn,
3077
.input-group .wizard>.actions a,
3078
.wizard>.actions .input-group a,
3079
.input-group div.tox .tox-button,
3080
div.tox .input-group .tox-button,
3081
.input-group .swal2-popup .swal2-actions button,
3082
.swal2-popup .swal2-actions .input-group button,
3083
.input-group .fc .fc-button-primary,
3084
.fc .input-group .fc-button-primary {
16825 efrain 3085
  position: relative;
3086
  z-index: 2;
3087
}
16848 stevensc 3088
 
3089
.input-group .btn:focus,
3090
.input-group .wizard>.actions a:focus,
3091
.wizard>.actions .input-group a:focus,
3092
.input-group div.tox .tox-button:focus,
3093
div.tox .input-group .tox-button:focus,
3094
.input-group .swal2-popup .swal2-actions button:focus,
3095
.swal2-popup .swal2-actions .input-group button:focus,
3096
.input-group .fc .fc-button-primary:focus,
3097
.fc .input-group .fc-button-primary:focus {
16825 efrain 3098
  z-index: 5;
3099
}
3100
 
3101
.input-group-text {
3102
  display: flex;
3103
  align-items: center;
3104
  padding: 0.469rem 0.563rem;
3105
  font-size: 0.875rem;
3106
  font-weight: 400;
3107
  line-height: 1.5;
3108
  color: #000;
3109
  text-align: center;
3110
  white-space: nowrap;
3111
  background-color: #f8f9fa;
3112
  border: 1px solid #e9ecef;
3113
  border-radius: 0.25rem;
3114
}
3115
 
16848 stevensc 3116
.input-group-lg>.form-control,
3117
.input-group-lg>.typeahead.tt-input,
3118
.input-group-lg>.typeahead.tt-hint,
3119
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3120
.input-group-lg>.form-select,
3121
.input-group-lg>.input-group-text,
3122
.input-group-lg>.btn,
3123
.wizard>.actions .input-group-lg>a,
3124
div.tox .input-group-lg>.tox-button,
3125
.swal2-popup .swal2-actions .input-group-lg>button,
3126
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3127
  padding: 0.5rem 0.8rem;
3128
  font-size: 1rem;
3129
  border-radius: 0.25rem;
3130
}
3131
 
16848 stevensc 3132
.input-group-sm>.form-control,
3133
.input-group-sm>.typeahead.tt-input,
3134
.input-group-sm>.typeahead.tt-hint,
3135
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3136
.input-group-sm>.form-select,
3137
.input-group-sm>.input-group-text,
3138
.input-group-sm>.btn,
3139
.wizard>.actions .input-group-sm>a,
3140
div.tox .input-group-sm>.tox-button,
3141
.swal2-popup .swal2-actions .input-group-sm>button,
3142
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3143
  padding: 0.391rem 0.8rem;
3144
  font-size: 0.812rem;
3145
  border-radius: 0.25rem;
3146
}
3147
 
16848 stevensc 3148
.input-group-lg>.form-select,
3149
.input-group-sm>.form-select {
16825 efrain 3150
  padding-right: 3.2rem;
3151
}
3152
 
16848 stevensc 3153
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3154
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3155
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3156
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3157
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3158
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3159
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3160
  border-top-right-radius: 0;
3161
  border-bottom-right-radius: 0;
3162
}
16848 stevensc 3163
 
3164
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3165
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3166
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3167
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3168
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3169
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3170
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3171
  border-top-right-radius: 0;
3172
  border-bottom-right-radius: 0;
3173
}
16848 stevensc 3174
 
3175
.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 3176
  margin-left: -1px;
3177
  border-top-left-radius: 0;
3178
  border-bottom-left-radius: 0;
3179
}
16848 stevensc 3180
 
3181
.input-group>.form-floating:not(:first-child)>.form-control,
3182
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3183
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3184
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3185
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3186
  border-top-left-radius: 0;
3187
  border-bottom-left-radius: 0;
3188
}
3189
 
3190
.valid-feedback {
3191
  display: none;
3192
  width: 100%;
3193
  margin-top: 0.25rem;
3194
  font-size: 0.875em;
3195
  color: #05a34a;
3196
}
3197
 
3198
.valid-tooltip {
3199
  position: absolute;
3200
  top: 100%;
3201
  z-index: 5;
3202
  display: none;
3203
  max-width: 100%;
3204
  padding: 0.25rem 0.5rem;
3205
  margin-top: 0.1rem;
3206
  font-size: 0.812rem;
3207
  color: #fff;
3208
  background-color: rgba(5, 163, 74, 0.9);
3209
  border-radius: 0.25rem;
3210
}
3211
 
16848 stevensc 3212
.was-validated :valid~.valid-feedback,
3213
.was-validated :valid~.valid-tooltip,
3214
.is-valid~.valid-feedback,
3215
.is-valid~.valid-tooltip {
16825 efrain 3216
  display: block;
3217
}
3218
 
16848 stevensc 3219
.was-validated .form-control:valid,
3220
.was-validated .typeahead.tt-input:valid,
3221
.was-validated .typeahead.tt-hint:valid,
3222
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3223
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3224
.form-control.is-valid,
3225
.is-valid.typeahead.tt-input,
3226
.is-valid.typeahead.tt-hint,
3227
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3228
  border-color: #05a34a;
3229
  padding-right: calc(1.5em + 0.938rem);
3230
  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");
3231
  background-repeat: no-repeat;
3232
  background-position: right calc(0.375em + 0.2345rem) center;
3233
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3234
}
16848 stevensc 3235
 
3236
.was-validated .form-control:valid:focus,
3237
.was-validated .typeahead.tt-input:valid:focus,
3238
.was-validated .typeahead.tt-hint:valid:focus,
3239
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3240
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3241
.form-control.is-valid:focus,
3242
.is-valid.typeahead.tt-input:focus,
3243
.is-valid.typeahead.tt-hint:focus,
3244
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3245
  border-color: #05a34a;
3246
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3247
}
3248
 
16848 stevensc 3249
.was-validated textarea.form-control:valid,
3250
.was-validated textarea.typeahead.tt-input:valid,
3251
.was-validated textarea.typeahead.tt-hint:valid,
3252
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3253
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3254
textarea.form-control.is-valid,
3255
textarea.is-valid.typeahead.tt-input,
3256
textarea.is-valid.typeahead.tt-hint,
3257
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3258
  padding-right: calc(1.5em + 0.938rem);
3259
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3260
}
3261
 
16848 stevensc 3262
.was-validated .form-select:valid,
3263
.form-select.is-valid {
16825 efrain 3264
  border-color: #05a34a;
3265
}
16848 stevensc 3266
 
3267
.was-validated .form-select:valid:not([multiple]):not([size]),
3268
.was-validated .form-select:valid:not([multiple])[size="1"],
3269
.form-select.is-valid:not([multiple]):not([size]),
3270
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3271
  padding-right: 4.4rem;
3272
  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");
3273
  background-position: right 0.8rem center, center right 2.4rem;
3274
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3275
}
16848 stevensc 3276
 
3277
.was-validated .form-select:valid:focus,
3278
.form-select.is-valid:focus {
16825 efrain 3279
  border-color: #05a34a;
3280
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3281
}
3282
 
16848 stevensc 3283
.was-validated .form-control-color:valid,
3284
.form-control-color.is-valid {
16825 efrain 3285
  width: calc(3rem + calc(1.5em + 0.938rem));
3286
}
3287
 
16848 stevensc 3288
.was-validated .form-check-input:valid,
3289
.form-check-input.is-valid {
16825 efrain 3290
  border-color: #05a34a;
3291
}
16848 stevensc 3292
 
3293
.was-validated .form-check-input:valid:checked,
3294
.form-check-input.is-valid:checked {
16825 efrain 3295
  background-color: #05a34a;
3296
}
16848 stevensc 3297
 
3298
.was-validated .form-check-input:valid:focus,
3299
.form-check-input.is-valid:focus {
16825 efrain 3300
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3301
}
16848 stevensc 3302
 
3303
.was-validated .form-check-input:valid~.form-check-label,
3304
.form-check-input.is-valid~.form-check-label {
16825 efrain 3305
  color: #05a34a;
3306
}
3307
 
16848 stevensc 3308
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3309
  margin-left: 0.5em;
3310
}
3311
 
16848 stevensc 3312
.was-validated .input-group>.form-control:not(:focus):valid,
3313
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3314
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3315
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3316
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3317
.input-group>.form-control:not(:focus).is-valid,
3318
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3319
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3320
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3321
.was-validated .input-group>.form-select:not(:focus):valid,
3322
.input-group>.form-select:not(:focus).is-valid,
3323
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3324
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3325
  z-index: 3;
3326
}
3327
 
3328
.invalid-feedback {
3329
  display: none;
3330
  width: 100%;
3331
  margin-top: 0.25rem;
3332
  font-size: 0.875em;
3333
  color: #ff3366;
3334
}
3335
 
3336
.invalid-tooltip {
3337
  position: absolute;
3338
  top: 100%;
3339
  z-index: 5;
3340
  display: none;
3341
  max-width: 100%;
3342
  padding: 0.25rem 0.5rem;
3343
  margin-top: 0.1rem;
3344
  font-size: 0.812rem;
3345
  color: #fff;
3346
  background-color: rgba(255, 51, 102, 0.9);
3347
  border-radius: 0.25rem;
3348
}
3349
 
16848 stevensc 3350
.was-validated :invalid~.invalid-feedback,
3351
.was-validated :invalid~.invalid-tooltip,
3352
.is-invalid~.invalid-feedback,
3353
.is-invalid~.invalid-tooltip {
16825 efrain 3354
  display: block;
3355
}
3356
 
16848 stevensc 3357
.was-validated .form-control:invalid,
3358
.was-validated .typeahead.tt-input:invalid,
3359
.was-validated .typeahead.tt-hint:invalid,
3360
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3361
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3362
.form-control.is-invalid,
3363
.is-invalid.typeahead.tt-input,
3364
.is-invalid.typeahead.tt-hint,
3365
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3366
  border-color: #ff3366;
3367
  padding-right: calc(1.5em + 0.938rem);
3368
  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");
3369
  background-repeat: no-repeat;
3370
  background-position: right calc(0.375em + 0.2345rem) center;
3371
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3372
}
16848 stevensc 3373
 
3374
.was-validated .form-control:invalid:focus,
3375
.was-validated .typeahead.tt-input:invalid:focus,
3376
.was-validated .typeahead.tt-hint:invalid:focus,
3377
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3378
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3379
.form-control.is-invalid:focus,
3380
.is-invalid.typeahead.tt-input:focus,
3381
.is-invalid.typeahead.tt-hint:focus,
3382
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3383
  border-color: #ff3366;
3384
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3385
}
3386
 
16848 stevensc 3387
.was-validated textarea.form-control:invalid,
3388
.was-validated textarea.typeahead.tt-input:invalid,
3389
.was-validated textarea.typeahead.tt-hint:invalid,
3390
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3391
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3392
textarea.form-control.is-invalid,
3393
textarea.is-invalid.typeahead.tt-input,
3394
textarea.is-invalid.typeahead.tt-hint,
3395
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3396
  padding-right: calc(1.5em + 0.938rem);
3397
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3398
}
3399
 
16848 stevensc 3400
.was-validated .form-select:invalid,
3401
.form-select.is-invalid {
16825 efrain 3402
  border-color: #ff3366;
3403
}
16848 stevensc 3404
 
3405
.was-validated .form-select:invalid:not([multiple]):not([size]),
3406
.was-validated .form-select:invalid:not([multiple])[size="1"],
3407
.form-select.is-invalid:not([multiple]):not([size]),
3408
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3409
  padding-right: 4.4rem;
3410
  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");
3411
  background-position: right 0.8rem center, center right 2.4rem;
3412
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3413
}
16848 stevensc 3414
 
3415
.was-validated .form-select:invalid:focus,
3416
.form-select.is-invalid:focus {
16825 efrain 3417
  border-color: #ff3366;
3418
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3419
}
3420
 
16848 stevensc 3421
.was-validated .form-control-color:invalid,
3422
.form-control-color.is-invalid {
16825 efrain 3423
  width: calc(3rem + calc(1.5em + 0.938rem));
3424
}
3425
 
16848 stevensc 3426
.was-validated .form-check-input:invalid,
3427
.form-check-input.is-invalid {
16825 efrain 3428
  border-color: #ff3366;
3429
}
16848 stevensc 3430
 
3431
.was-validated .form-check-input:invalid:checked,
3432
.form-check-input.is-invalid:checked {
16825 efrain 3433
  background-color: #ff3366;
3434
}
16848 stevensc 3435
 
3436
.was-validated .form-check-input:invalid:focus,
3437
.form-check-input.is-invalid:focus {
16825 efrain 3438
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3439
}
16848 stevensc 3440
 
3441
.was-validated .form-check-input:invalid~.form-check-label,
3442
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3443
  color: #ff3366;
3444
}
3445
 
16848 stevensc 3446
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3447
  margin-left: 0.5em;
3448
}
3449
 
16848 stevensc 3450
.was-validated .input-group>.form-control:not(:focus):invalid,
3451
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3452
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3453
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3454
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3455
.input-group>.form-control:not(:focus).is-invalid,
3456
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3457
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3458
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3459
.was-validated .input-group>.form-select:not(:focus):invalid,
3460
.input-group>.form-select:not(:focus).is-invalid,
3461
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3462
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3463
  z-index: 4;
3464
}
3465
 
16848 stevensc 3466
.btn,
3467
.wizard>.actions a,
3468
.wizard>.actions a:active,
3469
.wizard>.actions a:hover,
3470
div.tox .tox-button,
3471
.swal2-popup .swal2-actions button,
3472
.fc .fc-button-primary {
16825 efrain 3473
  --bs-btn-padding-x: 0.8rem;
3474
  --bs-btn-padding-y: 0.469rem;
3475
  --bs-btn-font-family: ;
3476
  --bs-btn-font-size: 0.875rem;
3477
  --bs-btn-font-weight: 400;
3478
  --bs-btn-line-height: 1.5;
3479
  --bs-btn-color: #000;
3480
  --bs-btn-bg: transparent;
3481
  --bs-btn-border-width: 1px;
3482
  --bs-btn-border-color: transparent;
3483
  --bs-btn-border-radius: 0.25rem;
3484
  --bs-btn-hover-border-color: transparent;
3485
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3486
  --bs-btn-disabled-opacity: 0.65;
3487
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3488
  display: inline-block;
3489
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3490
  font-family: var(--bs-btn-font-family);
3491
  font-size: var(--bs-btn-font-size);
3492
  font-weight: var(--bs-btn-font-weight);
3493
  line-height: var(--bs-btn-line-height);
3494
  color: var(--bs-btn-color);
3495
  text-align: center;
3496
  vertical-align: middle;
3497
  cursor: pointer;
3498
  user-select: none;
3499
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3500
  border-radius: var(--bs-btn-border-radius);
3501
  background-color: var(--bs-btn-bg);
3502
  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;
3503
}
16848 stevensc 3504
 
16825 efrain 3505
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3506
 
3507
  .btn,
3508
  .wizard>.actions a,
3509
  .wizard>.actions a:active,
3510
  .wizard>.actions a:hover,
3511
  div.tox .tox-button,
3512
  .swal2-popup .swal2-actions button,
3513
  .fc .fc-button-primary {
16825 efrain 3514
    transition: none;
3515
  }
3516
}
16848 stevensc 3517
 
3518
.btn:hover,
3519
.wizard>.actions a:hover,
3520
div.tox .tox-button:hover,
3521
.swal2-popup .swal2-actions button:hover,
3522
.fc .fc-button-primary:hover {
16825 efrain 3523
  color: var(--bs-btn-hover-color);
3524
  background-color: var(--bs-btn-hover-bg);
3525
  border-color: var(--bs-btn-hover-border-color);
3526
}
16848 stevensc 3527
 
3528
.btn-check+.btn:hover,
3529
.wizard>.actions .btn-check+a:hover,
3530
div.tox .btn-check+.tox-button:hover,
3531
.swal2-popup .swal2-actions .btn-check+button:hover,
3532
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3533
  color: var(--bs-btn-color);
3534
  background-color: var(--bs-btn-bg);
3535
  border-color: var(--bs-btn-border-color);
3536
}
16848 stevensc 3537
 
3538
.btn:focus-visible,
3539
.wizard>.actions a:focus-visible,
3540
div.tox .tox-button:focus-visible,
3541
.swal2-popup .swal2-actions button:focus-visible,
3542
.fc .fc-button-primary:focus-visible {
16825 efrain 3543
  color: var(--bs-btn-hover-color);
3544
  background-color: var(--bs-btn-hover-bg);
3545
  border-color: var(--bs-btn-hover-border-color);
3546
  outline: 0;
3547
  box-shadow: var(--bs-btn-focus-box-shadow);
3548
}
16848 stevensc 3549
 
3550
.btn-check:focus-visible+.btn,
3551
.wizard>.actions .btn-check:focus-visible+a,
3552
div.tox .btn-check:focus-visible+.tox-button,
3553
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3554
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3555
  border-color: var(--bs-btn-hover-border-color);
3556
  outline: 0;
3557
  box-shadow: var(--bs-btn-focus-box-shadow);
3558
}
16848 stevensc 3559
 
3560
.btn-check:checked+.btn,
3561
.wizard>.actions .btn-check:checked+a,
3562
div.tox .btn-check:checked+.tox-button,
3563
.swal2-popup .swal2-actions .btn-check:checked+button,
3564
.fc .btn-check:checked+.fc-button-primary,
3565
:not(.btn-check)+.btn:active,
3566
.wizard>.actions :not(.btn-check)+a:active,
3567
div.tox :not(.btn-check)+.tox-button:active,
3568
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3569
.fc :not(.btn-check)+.fc-button-primary:active,
3570
.btn:first-child:active,
3571
.wizard>.actions a:first-child:active,
3572
div.tox .tox-button:first-child:active,
3573
.swal2-popup .swal2-actions button:first-child:active,
3574
.fc .fc-button-primary:first-child:active,
3575
.btn.active,
3576
.wizard>.actions a.active,
3577
div.tox .active.tox-button,
3578
.swal2-popup .swal2-actions button.active,
3579
.fc .active.fc-button-primary,
3580
.btn.show,
3581
.wizard>.actions a.show,
3582
div.tox .show.tox-button,
3583
.swal2-popup .swal2-actions button.show,
3584
.fc .show.fc-button-primary {
16825 efrain 3585
  color: var(--bs-btn-active-color);
3586
  background-color: var(--bs-btn-active-bg);
3587
  border-color: var(--bs-btn-active-border-color);
3588
}
16848 stevensc 3589
 
3590
.btn-check:checked+.btn:focus-visible,
3591
.wizard>.actions .btn-check:checked+a:focus-visible,
3592
div.tox .btn-check:checked+.tox-button:focus-visible,
3593
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3594
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3595
:not(.btn-check)+.btn:active:focus-visible,
3596
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3597
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3598
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3599
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3600
.btn:first-child:active:focus-visible,
3601
.wizard>.actions a:first-child:active:focus-visible,
3602
div.tox .tox-button:first-child:active:focus-visible,
3603
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3604
.fc .fc-button-primary:first-child:active:focus-visible,
3605
.btn.active:focus-visible,
3606
.wizard>.actions a.active:focus-visible,
3607
div.tox .active.tox-button:focus-visible,
3608
.swal2-popup .swal2-actions button.active:focus-visible,
3609
.fc .active.fc-button-primary:focus-visible,
3610
.btn.show:focus-visible,
3611
.wizard>.actions a.show:focus-visible,
3612
div.tox .show.tox-button:focus-visible,
3613
.swal2-popup .swal2-actions button.show:focus-visible,
3614
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3615
  box-shadow: var(--bs-btn-focus-box-shadow);
3616
}
16848 stevensc 3617
 
3618
.btn:disabled,
3619
.wizard>.actions a:disabled,
3620
div.tox .tox-button:disabled,
3621
.swal2-popup .swal2-actions button:disabled,
3622
.fc .fc-button-primary:disabled,
3623
.btn.disabled,
3624
.wizard>.actions a.disabled,
3625
div.tox .disabled.tox-button,
3626
.swal2-popup .swal2-actions button.disabled,
3627
.fc .disabled.fc-button-primary,
3628
fieldset:disabled .btn,
3629
fieldset:disabled .wizard>.actions a,
3630
.wizard>.actions fieldset:disabled a,
3631
fieldset:disabled div.tox .tox-button,
3632
div.tox fieldset:disabled .tox-button,
3633
fieldset:disabled .swal2-popup .swal2-actions button,
3634
.swal2-popup .swal2-actions fieldset:disabled button,
3635
fieldset:disabled .fc .fc-button-primary,
3636
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3637
  color: var(--bs-btn-disabled-color);
3638
  pointer-events: none;
3639
  background-color: var(--bs-btn-disabled-bg);
3640
  border-color: var(--bs-btn-disabled-border-color);
3641
  opacity: var(--bs-btn-disabled-opacity);
3642
}
3643
 
16848 stevensc 3644
.btn-primary,
3645
.wizard>.actions a,
3646
.wizard>.actions a:active,
3647
.wizard>.actions a:hover,
3648
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3649
.swal2-popup .swal2-actions button.swal2-confirm,
3650
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3651
.fc .fc-button-primary:not(:disabled):active {
3652
  --bs-btn-color: #fff;
3653
  --bs-btn-bg: #6571ff;
3654
  --bs-btn-border-color: #6571ff;
3655
  --bs-btn-hover-color: #fff;
3656
  --bs-btn-hover-bg: #5660d9;
3657
  --bs-btn-hover-border-color: #515acc;
3658
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3659
  --bs-btn-active-color: #fff;
3660
  --bs-btn-active-bg: #515acc;
3661
  --bs-btn-active-border-color: #4c55bf;
3662
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3663
  --bs-btn-disabled-color: #fff;
3664
  --bs-btn-disabled-bg: #6571ff;
3665
  --bs-btn-disabled-border-color: #6571ff;
3666
}
3667
 
16848 stevensc 3668
.btn-secondary,
3669
div.tox .tox-button--secondary {
16825 efrain 3670
  --bs-btn-color: #fff;
3671
  --bs-btn-bg: #7987a1;
3672
  --bs-btn-border-color: #7987a1;
3673
  --bs-btn-hover-color: #fff;
3674
  --bs-btn-hover-bg: #677389;
3675
  --bs-btn-hover-border-color: #616c81;
3676
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3677
  --bs-btn-active-color: #fff;
3678
  --bs-btn-active-bg: #616c81;
3679
  --bs-btn-active-border-color: #5b6579;
3680
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3681
  --bs-btn-disabled-color: #fff;
3682
  --bs-btn-disabled-bg: #7987a1;
3683
  --bs-btn-disabled-border-color: #7987a1;
3684
}
3685
 
3686
.btn-success {
3687
  --bs-btn-color: #fff;
3688
  --bs-btn-bg: #05a34a;
3689
  --bs-btn-border-color: #05a34a;
3690
  --bs-btn-hover-color: #fff;
3691
  --bs-btn-hover-bg: #048b3f;
3692
  --bs-btn-hover-border-color: #04823b;
3693
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3694
  --bs-btn-active-color: #fff;
3695
  --bs-btn-active-bg: #04823b;
3696
  --bs-btn-active-border-color: #047a38;
3697
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3698
  --bs-btn-disabled-color: #fff;
3699
  --bs-btn-disabled-bg: #05a34a;
3700
  --bs-btn-disabled-border-color: #05a34a;
3701
}
3702
 
3703
.btn-info {
3704
  --bs-btn-color: #000;
3705
  --bs-btn-bg: #66d1d1;
3706
  --bs-btn-border-color: #66d1d1;
3707
  --bs-btn-hover-color: #000;
3708
  --bs-btn-hover-bg: #7dd8d8;
3709
  --bs-btn-hover-border-color: #75d6d6;
3710
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3711
  --bs-btn-active-color: #000;
3712
  --bs-btn-active-bg: #85dada;
3713
  --bs-btn-active-border-color: #75d6d6;
3714
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3715
  --bs-btn-disabled-color: #000;
3716
  --bs-btn-disabled-bg: #66d1d1;
3717
  --bs-btn-disabled-border-color: #66d1d1;
3718
}
3719
 
3720
.btn-warning {
3721
  --bs-btn-color: #000;
3722
  --bs-btn-bg: #fbbc06;
3723
  --bs-btn-border-color: #fbbc06;
3724
  --bs-btn-hover-color: #000;
3725
  --bs-btn-hover-bg: #fcc62b;
3726
  --bs-btn-hover-border-color: #fbc31f;
3727
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3728
  --bs-btn-active-color: #000;
3729
  --bs-btn-active-bg: #fcc938;
3730
  --bs-btn-active-border-color: #fbc31f;
3731
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3732
  --bs-btn-disabled-color: #000;
3733
  --bs-btn-disabled-bg: #fbbc06;
3734
  --bs-btn-disabled-border-color: #fbbc06;
3735
}
3736
 
16848 stevensc 3737
.btn-danger,
3738
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3739
  --bs-btn-color: #fff;
3740
  --bs-btn-bg: #ff3366;
3741
  --bs-btn-border-color: #ff3366;
3742
  --bs-btn-hover-color: #fff;
3743
  --bs-btn-hover-bg: #d92b57;
3744
  --bs-btn-hover-border-color: #cc2952;
3745
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3746
  --bs-btn-active-color: #fff;
3747
  --bs-btn-active-bg: #cc2952;
3748
  --bs-btn-active-border-color: #bf264d;
3749
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3750
  --bs-btn-disabled-color: #fff;
3751
  --bs-btn-disabled-bg: #ff3366;
3752
  --bs-btn-disabled-border-color: #ff3366;
3753
}
3754
 
3755
.btn-light {
3756
  --bs-btn-color: #000;
3757
  --bs-btn-bg: #e9ecef;
3758
  --bs-btn-border-color: #e9ecef;
3759
  --bs-btn-hover-color: #000;
3760
  --bs-btn-hover-bg: #c6c9cb;
3761
  --bs-btn-hover-border-color: #babdbf;
3762
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3763
  --bs-btn-active-color: #000;
3764
  --bs-btn-active-bg: #babdbf;
3765
  --bs-btn-active-border-color: #afb1b3;
3766
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3767
  --bs-btn-disabled-color: #000;
3768
  --bs-btn-disabled-bg: #e9ecef;
3769
  --bs-btn-disabled-border-color: #e9ecef;
3770
}
3771
 
3772
.btn-dark {
3773
  --bs-btn-color: #fff;
3774
  --bs-btn-bg: #060c17;
3775
  --bs-btn-border-color: #060c17;
3776
  --bs-btn-hover-color: #fff;
3777
  --bs-btn-hover-bg: #2b303a;
3778
  --bs-btn-hover-border-color: #1f242e;
3779
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3780
  --bs-btn-active-color: #fff;
3781
  --bs-btn-active-bg: #383d45;
3782
  --bs-btn-active-border-color: #1f242e;
3783
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3784
  --bs-btn-disabled-color: #fff;
3785
  --bs-btn-disabled-bg: #060c17;
3786
  --bs-btn-disabled-border-color: #060c17;
3787
}
3788
 
16848 stevensc 3789
.btn-outline-primary,
3790
.fc .fc-button-primary {
16825 efrain 3791
  --bs-btn-color: #6571ff;
3792
  --bs-btn-border-color: #6571ff;
3793
  --bs-btn-hover-color: #fff;
3794
  --bs-btn-hover-bg: #6571ff;
3795
  --bs-btn-hover-border-color: #6571ff;
3796
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3797
  --bs-btn-active-color: #fff;
3798
  --bs-btn-active-bg: #6571ff;
3799
  --bs-btn-active-border-color: #6571ff;
3800
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3801
  --bs-btn-disabled-color: #6571ff;
3802
  --bs-btn-disabled-bg: transparent;
3803
  --bs-btn-disabled-border-color: #6571ff;
3804
  --bs-gradient: none;
3805
}
3806
 
3807
.btn-outline-secondary {
3808
  --bs-btn-color: #7987a1;
3809
  --bs-btn-border-color: #7987a1;
3810
  --bs-btn-hover-color: #fff;
3811
  --bs-btn-hover-bg: #7987a1;
3812
  --bs-btn-hover-border-color: #7987a1;
3813
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3814
  --bs-btn-active-color: #fff;
3815
  --bs-btn-active-bg: #7987a1;
3816
  --bs-btn-active-border-color: #7987a1;
3817
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3818
  --bs-btn-disabled-color: #7987a1;
3819
  --bs-btn-disabled-bg: transparent;
3820
  --bs-btn-disabled-border-color: #7987a1;
3821
  --bs-gradient: none;
3822
}
3823
 
3824
.btn-outline-success {
3825
  --bs-btn-color: #05a34a;
3826
  --bs-btn-border-color: #05a34a;
3827
  --bs-btn-hover-color: #fff;
3828
  --bs-btn-hover-bg: #05a34a;
3829
  --bs-btn-hover-border-color: #05a34a;
3830
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3831
  --bs-btn-active-color: #fff;
3832
  --bs-btn-active-bg: #05a34a;
3833
  --bs-btn-active-border-color: #05a34a;
3834
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3835
  --bs-btn-disabled-color: #05a34a;
3836
  --bs-btn-disabled-bg: transparent;
3837
  --bs-btn-disabled-border-color: #05a34a;
3838
  --bs-gradient: none;
3839
}
3840
 
3841
.btn-outline-info {
3842
  --bs-btn-color: #66d1d1;
3843
  --bs-btn-border-color: #66d1d1;
3844
  --bs-btn-hover-color: #000;
3845
  --bs-btn-hover-bg: #66d1d1;
3846
  --bs-btn-hover-border-color: #66d1d1;
3847
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3848
  --bs-btn-active-color: #000;
3849
  --bs-btn-active-bg: #66d1d1;
3850
  --bs-btn-active-border-color: #66d1d1;
3851
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3852
  --bs-btn-disabled-color: #66d1d1;
3853
  --bs-btn-disabled-bg: transparent;
3854
  --bs-btn-disabled-border-color: #66d1d1;
3855
  --bs-gradient: none;
3856
}
3857
 
3858
.btn-outline-warning {
3859
  --bs-btn-color: #fbbc06;
3860
  --bs-btn-border-color: #fbbc06;
3861
  --bs-btn-hover-color: #000;
3862
  --bs-btn-hover-bg: #fbbc06;
3863
  --bs-btn-hover-border-color: #fbbc06;
3864
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3865
  --bs-btn-active-color: #000;
3866
  --bs-btn-active-bg: #fbbc06;
3867
  --bs-btn-active-border-color: #fbbc06;
3868
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3869
  --bs-btn-disabled-color: #fbbc06;
3870
  --bs-btn-disabled-bg: transparent;
3871
  --bs-btn-disabled-border-color: #fbbc06;
3872
  --bs-gradient: none;
3873
}
3874
 
3875
.btn-outline-danger {
3876
  --bs-btn-color: #ff3366;
3877
  --bs-btn-border-color: #ff3366;
3878
  --bs-btn-hover-color: #fff;
3879
  --bs-btn-hover-bg: #ff3366;
3880
  --bs-btn-hover-border-color: #ff3366;
3881
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3882
  --bs-btn-active-color: #fff;
3883
  --bs-btn-active-bg: #ff3366;
3884
  --bs-btn-active-border-color: #ff3366;
3885
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3886
  --bs-btn-disabled-color: #ff3366;
3887
  --bs-btn-disabled-bg: transparent;
3888
  --bs-btn-disabled-border-color: #ff3366;
3889
  --bs-gradient: none;
3890
}
3891
 
3892
.btn-outline-light {
3893
  --bs-btn-color: #e9ecef;
3894
  --bs-btn-border-color: #e9ecef;
3895
  --bs-btn-hover-color: #000;
3896
  --bs-btn-hover-bg: #e9ecef;
3897
  --bs-btn-hover-border-color: #e9ecef;
3898
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3899
  --bs-btn-active-color: #000;
3900
  --bs-btn-active-bg: #e9ecef;
3901
  --bs-btn-active-border-color: #e9ecef;
3902
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3903
  --bs-btn-disabled-color: #e9ecef;
3904
  --bs-btn-disabled-bg: transparent;
3905
  --bs-btn-disabled-border-color: #e9ecef;
3906
  --bs-gradient: none;
3907
}
3908
 
3909
.btn-outline-dark {
3910
  --bs-btn-color: #060c17;
3911
  --bs-btn-border-color: #060c17;
3912
  --bs-btn-hover-color: #fff;
3913
  --bs-btn-hover-bg: #060c17;
3914
  --bs-btn-hover-border-color: #060c17;
3915
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3916
  --bs-btn-active-color: #fff;
3917
  --bs-btn-active-bg: #060c17;
3918
  --bs-btn-active-border-color: #060c17;
3919
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3920
  --bs-btn-disabled-color: #060c17;
3921
  --bs-btn-disabled-bg: transparent;
3922
  --bs-btn-disabled-border-color: #060c17;
3923
  --bs-gradient: none;
3924
}
3925
 
3926
.btn-link {
3927
  --bs-btn-font-weight: 400;
3928
  --bs-btn-color: var(--bs-link-color);
3929
  --bs-btn-bg: transparent;
3930
  --bs-btn-border-color: transparent;
3931
  --bs-btn-hover-color: var(--bs-link-hover-color);
3932
  --bs-btn-hover-border-color: transparent;
3933
  --bs-btn-active-color: var(--bs-link-hover-color);
3934
  --bs-btn-active-border-color: transparent;
3935
  --bs-btn-disabled-color: #7987a1;
3936
  --bs-btn-disabled-border-color: transparent;
3937
  --bs-btn-box-shadow: none;
3938
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3939
  text-decoration: none;
3940
}
16848 stevensc 3941
 
16825 efrain 3942
.btn-link:focus-visible {
3943
  color: var(--bs-btn-color);
3944
}
16848 stevensc 3945
 
16825 efrain 3946
.btn-link:hover {
3947
  color: var(--bs-btn-hover-color);
3948
}
3949
 
16848 stevensc 3950
.btn-lg,
3951
.btn-group-lg>.btn,
3952
.wizard>.actions .btn-group-lg>a,
3953
div.tox .btn-group-lg>.tox-button,
3954
.swal2-popup .swal2-actions .btn-group-lg>button,
3955
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3956
  --bs-btn-padding-y: 0.5rem;
3957
  --bs-btn-padding-x: 0.8rem;
3958
  --bs-btn-font-size: 1rem;
3959
  --bs-btn-border-radius: 0.25rem;
3960
}
3961
 
16848 stevensc 3962
.btn-sm,
3963
.fc .fc-button-primary,
3964
.btn-group-sm>.btn,
3965
.wizard>.actions .btn-group-sm>a,
3966
div.tox .btn-group-sm>.tox-button,
3967
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3968
  --bs-btn-padding-y: 0.391rem;
3969
  --bs-btn-padding-x: 0.8rem;
3970
  --bs-btn-font-size: 0.812rem;
3971
  --bs-btn-border-radius: 0.25rem;
3972
}
3973
 
3974
.fade {
3975
  transition: opacity 0.15s linear;
3976
}
16848 stevensc 3977
 
16825 efrain 3978
@media (prefers-reduced-motion: reduce) {
3979
  .fade {
3980
    transition: none;
3981
  }
3982
}
16848 stevensc 3983
 
16825 efrain 3984
.fade:not(.show) {
3985
  opacity: 0;
3986
}
3987
 
3988
.collapse:not(.show) {
3989
  display: none;
3990
}
3991
 
3992
.collapsing {
3993
  height: 0;
3994
  overflow: hidden;
3995
  transition: height 0.35s ease;
3996
}
16848 stevensc 3997
 
16825 efrain 3998
@media (prefers-reduced-motion: reduce) {
3999
  .collapsing {
4000
    transition: none;
4001
  }
4002
}
16848 stevensc 4003
 
16825 efrain 4004
.collapsing.collapse-horizontal {
4005
  width: 0;
4006
  height: auto;
4007
  transition: width 0.35s ease;
4008
}
16848 stevensc 4009
 
16825 efrain 4010
@media (prefers-reduced-motion: reduce) {
4011
  .collapsing.collapse-horizontal {
4012
    transition: none;
4013
  }
4014
}
4015
 
4016
.dropup,
4017
.dropend,
4018
.dropdown,
4019
.dropstart,
4020
.dropup-center,
4021
.dropdown-center {
4022
  position: relative;
4023
}
4024
 
4025
.dropdown-toggle {
4026
  white-space: nowrap;
4027
}
16848 stevensc 4028
 
16825 efrain 4029
.dropdown-toggle::after {
4030
  display: inline-block;
4031
  margin-left: 0.255em;
4032
  vertical-align: 0.255em;
4033
  content: "";
4034
  border-top: 0.3em solid;
4035
  border-right: 0.3em solid transparent;
4036
  border-bottom: 0;
4037
  border-left: 0.3em solid transparent;
4038
}
16848 stevensc 4039
 
16825 efrain 4040
.dropdown-toggle:empty::after {
4041
  margin-left: 0;
4042
}
4043
 
16848 stevensc 4044
.dropdown-menu,
4045
.tt-menu {
16825 efrain 4046
  --bs-dropdown-zindex: 1000;
4047
  --bs-dropdown-min-width: 10rem;
4048
  --bs-dropdown-padding-x: 0;
4049
  --bs-dropdown-padding-y: 0.5rem;
4050
  --bs-dropdown-spacer: 0.125rem;
4051
  --bs-dropdown-font-size: 0.875rem;
4052
  --bs-dropdown-color: #000;
4053
  --bs-dropdown-bg: #fff;
4054
  --bs-dropdown-border-color: #f2f4f9;
4055
  --bs-dropdown-border-radius: 0.25rem;
4056
  --bs-dropdown-border-width: 1px;
4057
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4058
  --bs-dropdown-divider-bg: #f2f4f9;
4059
  --bs-dropdown-divider-margin-y: 0.5rem;
4060
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4061
  --bs-dropdown-link-color: #060c17;
4062
  --bs-dropdown-link-hover-color: #050b15;
4063
  --bs-dropdown-link-hover-bg: #e9ecef;
4064
  --bs-dropdown-link-active-color: #fff;
4065
  --bs-dropdown-link-active-bg: #6571ff;
4066
  --bs-dropdown-link-disabled-color: #aeb7c5;
4067
  --bs-dropdown-item-padding-x: 1rem;
4068
  --bs-dropdown-item-padding-y: 0.25rem;
4069
  --bs-dropdown-header-color: #7987a1;
4070
  --bs-dropdown-header-padding-x: 1rem;
4071
  --bs-dropdown-header-padding-y: 0.5rem;
4072
  position: absolute;
4073
  z-index: var(--bs-dropdown-zindex);
4074
  display: none;
4075
  min-width: var(--bs-dropdown-min-width);
4076
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4077
  margin: 0;
4078
  font-size: var(--bs-dropdown-font-size);
4079
  color: var(--bs-dropdown-color);
4080
  text-align: left;
4081
  list-style: none;
4082
  background-color: var(--bs-dropdown-bg);
4083
  background-clip: padding-box;
4084
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4085
  border-radius: var(--bs-dropdown-border-radius);
4086
}
16848 stevensc 4087
 
4088
.dropdown-menu[data-bs-popper],
4089
[data-bs-popper].tt-menu {
16825 efrain 4090
  top: 100%;
4091
  left: 0;
4092
  margin-top: var(--bs-dropdown-spacer);
4093
}
4094
 
4095
.dropdown-menu-start {
4096
  --bs-position: start;
4097
}
16848 stevensc 4098
 
16825 efrain 4099
.dropdown-menu-start[data-bs-popper] {
4100
  right: auto;
4101
  left: 0;
4102
}
4103
 
4104
.dropdown-menu-end {
4105
  --bs-position: end;
4106
}
16848 stevensc 4107
 
16825 efrain 4108
.dropdown-menu-end[data-bs-popper] {
4109
  right: 0;
4110
  left: auto;
4111
}
4112
 
4113
@media (min-width: 576px) {
4114
  .dropdown-menu-sm-start {
4115
    --bs-position: start;
4116
  }
16848 stevensc 4117
 
16825 efrain 4118
  .dropdown-menu-sm-start[data-bs-popper] {
4119
    right: auto;
4120
    left: 0;
4121
  }
16848 stevensc 4122
 
16825 efrain 4123
  .dropdown-menu-sm-end {
4124
    --bs-position: end;
4125
  }
16848 stevensc 4126
 
16825 efrain 4127
  .dropdown-menu-sm-end[data-bs-popper] {
4128
    right: 0;
4129
    left: auto;
4130
  }
4131
}
16848 stevensc 4132
 
16825 efrain 4133
@media (min-width: 768px) {
4134
  .dropdown-menu-md-start {
4135
    --bs-position: start;
4136
  }
16848 stevensc 4137
 
16825 efrain 4138
  .dropdown-menu-md-start[data-bs-popper] {
4139
    right: auto;
4140
    left: 0;
4141
  }
16848 stevensc 4142
 
16825 efrain 4143
  .dropdown-menu-md-end {
4144
    --bs-position: end;
4145
  }
16848 stevensc 4146
 
16825 efrain 4147
  .dropdown-menu-md-end[data-bs-popper] {
4148
    right: 0;
4149
    left: auto;
4150
  }
4151
}
16848 stevensc 4152
 
16825 efrain 4153
@media (min-width: 992px) {
4154
  .dropdown-menu-lg-start {
4155
    --bs-position: start;
4156
  }
16848 stevensc 4157
 
16825 efrain 4158
  .dropdown-menu-lg-start[data-bs-popper] {
4159
    right: auto;
4160
    left: 0;
4161
  }
16848 stevensc 4162
 
16825 efrain 4163
  .dropdown-menu-lg-end {
4164
    --bs-position: end;
4165
  }
16848 stevensc 4166
 
16825 efrain 4167
  .dropdown-menu-lg-end[data-bs-popper] {
4168
    right: 0;
4169
    left: auto;
4170
  }
4171
}
16848 stevensc 4172
 
16825 efrain 4173
@media (min-width: 1200px) {
4174
  .dropdown-menu-xl-start {
4175
    --bs-position: start;
4176
  }
16848 stevensc 4177
 
16825 efrain 4178
  .dropdown-menu-xl-start[data-bs-popper] {
4179
    right: auto;
4180
    left: 0;
4181
  }
16848 stevensc 4182
 
16825 efrain 4183
  .dropdown-menu-xl-end {
4184
    --bs-position: end;
4185
  }
16848 stevensc 4186
 
16825 efrain 4187
  .dropdown-menu-xl-end[data-bs-popper] {
4188
    right: 0;
4189
    left: auto;
4190
  }
4191
}
16848 stevensc 4192
 
16825 efrain 4193
@media (min-width: 1400px) {
4194
  .dropdown-menu-xxl-start {
4195
    --bs-position: start;
4196
  }
16848 stevensc 4197
 
16825 efrain 4198
  .dropdown-menu-xxl-start[data-bs-popper] {
4199
    right: auto;
4200
    left: 0;
4201
  }
16848 stevensc 4202
 
16825 efrain 4203
  .dropdown-menu-xxl-end {
4204
    --bs-position: end;
4205
  }
16848 stevensc 4206
 
16825 efrain 4207
  .dropdown-menu-xxl-end[data-bs-popper] {
4208
    right: 0;
4209
    left: auto;
4210
  }
4211
}
16848 stevensc 4212
 
4213
.dropup .dropdown-menu[data-bs-popper],
4214
.dropup [data-bs-popper].tt-menu {
16825 efrain 4215
  top: auto;
4216
  bottom: 100%;
4217
  margin-top: 0;
4218
  margin-bottom: var(--bs-dropdown-spacer);
4219
}
16848 stevensc 4220
 
16825 efrain 4221
.dropup .dropdown-toggle::after {
4222
  display: inline-block;
4223
  margin-left: 0.255em;
4224
  vertical-align: 0.255em;
4225
  content: "";
4226
  border-top: 0;
4227
  border-right: 0.3em solid transparent;
4228
  border-bottom: 0.3em solid;
4229
  border-left: 0.3em solid transparent;
4230
}
16848 stevensc 4231
 
16825 efrain 4232
.dropup .dropdown-toggle:empty::after {
4233
  margin-left: 0;
4234
}
4235
 
16848 stevensc 4236
.dropend .dropdown-menu[data-bs-popper],
4237
.dropend [data-bs-popper].tt-menu {
16825 efrain 4238
  top: 0;
4239
  right: auto;
4240
  left: 100%;
4241
  margin-top: 0;
4242
  margin-left: var(--bs-dropdown-spacer);
4243
}
16848 stevensc 4244
 
16825 efrain 4245
.dropend .dropdown-toggle::after {
4246
  display: inline-block;
4247
  margin-left: 0.255em;
4248
  vertical-align: 0.255em;
4249
  content: "";
4250
  border-top: 0.3em solid transparent;
4251
  border-right: 0;
4252
  border-bottom: 0.3em solid transparent;
4253
  border-left: 0.3em solid;
4254
}
16848 stevensc 4255
 
16825 efrain 4256
.dropend .dropdown-toggle:empty::after {
4257
  margin-left: 0;
4258
}
16848 stevensc 4259
 
16825 efrain 4260
.dropend .dropdown-toggle::after {
4261
  vertical-align: 0;
4262
}
4263
 
16848 stevensc 4264
.dropstart .dropdown-menu[data-bs-popper],
4265
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4266
  top: 0;
4267
  right: 100%;
4268
  left: auto;
4269
  margin-top: 0;
4270
  margin-right: var(--bs-dropdown-spacer);
4271
}
16848 stevensc 4272
 
16825 efrain 4273
.dropstart .dropdown-toggle::after {
4274
  display: inline-block;
4275
  margin-left: 0.255em;
4276
  vertical-align: 0.255em;
4277
  content: "";
4278
}
16848 stevensc 4279
 
16825 efrain 4280
.dropstart .dropdown-toggle::after {
4281
  display: none;
4282
}
16848 stevensc 4283
 
16825 efrain 4284
.dropstart .dropdown-toggle::before {
4285
  display: inline-block;
4286
  margin-right: 0.255em;
4287
  vertical-align: 0.255em;
4288
  content: "";
4289
  border-top: 0.3em solid transparent;
4290
  border-right: 0.3em solid;
4291
  border-bottom: 0.3em solid transparent;
4292
}
16848 stevensc 4293
 
16825 efrain 4294
.dropstart .dropdown-toggle:empty::after {
4295
  margin-left: 0;
4296
}
16848 stevensc 4297
 
16825 efrain 4298
.dropstart .dropdown-toggle::before {
4299
  vertical-align: 0;
4300
}
4301
 
4302
.dropdown-divider {
4303
  height: 0;
4304
  margin: var(--bs-dropdown-divider-margin-y) 0;
4305
  overflow: hidden;
4306
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4307
  opacity: 1;
4308
}
4309
 
16848 stevensc 4310
.dropdown-item,
4311
.tt-menu .tt-suggestion {
16825 efrain 4312
  display: block;
4313
  width: 100%;
4314
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4315
  clear: both;
4316
  font-weight: 400;
4317
  color: var(--bs-dropdown-link-color);
4318
  text-align: inherit;
4319
  white-space: nowrap;
4320
  background-color: transparent;
4321
  border: 0;
4322
}
16848 stevensc 4323
 
4324
.dropdown-item:hover,
4325
.tt-menu .tt-suggestion:hover,
4326
.dropdown-item:focus,
4327
.tt-menu .tt-suggestion:focus {
16825 efrain 4328
  color: var(--bs-dropdown-link-hover-color);
4329
  background-color: var(--bs-dropdown-link-hover-bg);
4330
}
16848 stevensc 4331
 
4332
.dropdown-item.active,
4333
.tt-menu .active.tt-suggestion,
4334
.dropdown-item:active,
4335
.tt-menu .tt-suggestion:active {
16825 efrain 4336
  color: var(--bs-dropdown-link-active-color);
4337
  text-decoration: none;
4338
  background-color: var(--bs-dropdown-link-active-bg);
4339
}
16848 stevensc 4340
 
4341
.dropdown-item.disabled,
4342
.tt-menu .disabled.tt-suggestion,
4343
.dropdown-item:disabled,
4344
.tt-menu .tt-suggestion:disabled {
16825 efrain 4345
  color: var(--bs-dropdown-link-disabled-color);
4346
  pointer-events: none;
4347
  background-color: transparent;
4348
}
4349
 
16848 stevensc 4350
.dropdown-menu.show,
4351
.show.tt-menu {
16825 efrain 4352
  display: block;
4353
}
4354
 
4355
.dropdown-header {
4356
  display: block;
4357
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4358
  margin-bottom: 0;
4359
  font-size: 0.812rem;
4360
  color: var(--bs-dropdown-header-color);
4361
  white-space: nowrap;
4362
}
4363
 
4364
.dropdown-item-text {
4365
  display: block;
4366
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4367
  color: var(--bs-dropdown-link-color);
4368
}
4369
 
4370
.dropdown-menu-dark {
4371
  --bs-dropdown-color: #dee2e6;
4372
  --bs-dropdown-bg: #212a3a;
4373
  --bs-dropdown-border-color: #f2f4f9;
4374
  --bs-dropdown-box-shadow: ;
4375
  --bs-dropdown-link-color: #dee2e6;
4376
  --bs-dropdown-link-hover-color: #fff;
4377
  --bs-dropdown-divider-bg: #f2f4f9;
4378
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4379
  --bs-dropdown-link-active-color: #fff;
4380
  --bs-dropdown-link-active-bg: #6571ff;
4381
  --bs-dropdown-link-disabled-color: #aeb7c5;
4382
  --bs-dropdown-header-color: #aeb7c5;
4383
}
4384
 
4385
.btn-group,
4386
.btn-group-vertical {
4387
  position: relative;
4388
  display: inline-flex;
4389
  vertical-align: middle;
4390
}
16848 stevensc 4391
 
4392
.btn-group>.btn,
4393
.wizard>.actions .btn-group>a,
4394
div.tox .btn-group>.tox-button,
4395
.swal2-popup .swal2-actions .btn-group>button,
4396
.fc .btn-group>.fc-button-primary,
4397
.btn-group-vertical>.btn,
4398
.wizard>.actions .btn-group-vertical>a,
4399
div.tox .btn-group-vertical>.tox-button,
4400
.swal2-popup .swal2-actions .btn-group-vertical>button,
4401
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4402
  position: relative;
4403
  flex: 1 1 auto;
4404
}
16848 stevensc 4405
 
4406
.btn-group>.btn-check:checked+.btn,
4407
.wizard>.actions .btn-group>.btn-check:checked+a,
4408
div.tox .btn-group>.btn-check:checked+.tox-button,
4409
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4410
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4411
.btn-group>.btn-check:focus+.btn,
4412
.wizard>.actions .btn-group>.btn-check:focus+a,
4413
div.tox .btn-group>.btn-check:focus+.tox-button,
4414
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4415
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4416
.btn-group>.btn:hover,
4417
.wizard>.actions .btn-group>a:hover,
4418
div.tox .btn-group>.tox-button:hover,
4419
.swal2-popup .swal2-actions .btn-group>button:hover,
4420
.fc .btn-group>.fc-button-primary:hover,
4421
.btn-group>.btn:focus,
4422
.wizard>.actions .btn-group>a:focus,
4423
div.tox .btn-group>.tox-button:focus,
4424
.swal2-popup .swal2-actions .btn-group>button:focus,
4425
.fc .btn-group>.fc-button-primary:focus,
4426
.btn-group>.btn:active,
4427
.wizard>.actions .btn-group>a:active,
4428
div.tox .btn-group>.tox-button:active,
4429
.swal2-popup .swal2-actions .btn-group>button:active,
4430
.fc .btn-group>.fc-button-primary:active,
4431
.btn-group>.btn.active,
4432
.wizard>.actions .btn-group>a.active,
4433
div.tox .btn-group>.active.tox-button,
4434
.swal2-popup .swal2-actions .btn-group>button.active,
4435
.fc .btn-group>.active.fc-button-primary,
4436
.btn-group-vertical>.btn-check:checked+.btn,
4437
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4438
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4439
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4440
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4441
.btn-group-vertical>.btn-check:focus+.btn,
4442
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4443
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4444
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4445
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4446
.btn-group-vertical>.btn:hover,
4447
.wizard>.actions .btn-group-vertical>a:hover,
4448
div.tox .btn-group-vertical>.tox-button:hover,
4449
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4450
.fc .btn-group-vertical>.fc-button-primary:hover,
4451
.btn-group-vertical>.btn:focus,
4452
.wizard>.actions .btn-group-vertical>a:focus,
4453
div.tox .btn-group-vertical>.tox-button:focus,
4454
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4455
.fc .btn-group-vertical>.fc-button-primary:focus,
4456
.btn-group-vertical>.btn:active,
4457
.wizard>.actions .btn-group-vertical>a:active,
4458
div.tox .btn-group-vertical>.tox-button:active,
4459
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4460
.fc .btn-group-vertical>.fc-button-primary:active,
4461
.btn-group-vertical>.btn.active,
4462
.wizard>.actions .btn-group-vertical>a.active,
4463
div.tox .btn-group-vertical>.active.tox-button,
4464
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4465
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4466
  z-index: 1;
4467
}
4468
 
4469
.btn-toolbar {
4470
  display: flex;
4471
  flex-wrap: wrap;
4472
  justify-content: flex-start;
4473
}
16848 stevensc 4474
 
16825 efrain 4475
.btn-toolbar .input-group {
4476
  width: auto;
4477
}
4478
 
4479
.btn-group {
4480
  border-radius: 0.25rem;
4481
}
16848 stevensc 4482
 
4483
.btn-group> :not(.btn-check:first-child)+.btn,
4484
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4485
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4486
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4487
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4488
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4489
  margin-left: -1px;
4490
}
16848 stevensc 4491
 
4492
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4493
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4494
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4495
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4496
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4497
.btn-group>.btn.dropdown-toggle-split:first-child,
4498
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4499
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4500
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4501
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4502
.btn-group>.btn-group:not(:last-child)>.btn,
4503
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4504
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4505
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4506
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4507
  border-top-right-radius: 0;
4508
  border-bottom-right-radius: 0;
4509
}
16848 stevensc 4510
 
4511
.btn-group>.btn:nth-child(n+3),
4512
.wizard>.actions .btn-group>a:nth-child(n+3),
4513
div.tox .btn-group>.tox-button:nth-child(n+3),
4514
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4515
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4516
.btn-group> :not(.btn-check)+.btn,
4517
.wizard>.actions .btn-group> :not(.btn-check)+a,
4518
div.tox .btn-group> :not(.btn-check)+.tox-button,
4519
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4520
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4521
.btn-group>.btn-group:not(:first-child)>.btn,
4522
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4523
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4524
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4525
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4526
  border-top-left-radius: 0;
4527
  border-bottom-left-radius: 0;
4528
}
4529
 
4530
.dropdown-toggle-split {
4531
  padding-right: 0.6rem;
4532
  padding-left: 0.6rem;
4533
}
16848 stevensc 4534
 
4535
.dropdown-toggle-split::after,
4536
.dropup .dropdown-toggle-split::after,
4537
.dropend .dropdown-toggle-split::after {
16825 efrain 4538
  margin-left: 0;
4539
}
16848 stevensc 4540
 
16825 efrain 4541
.dropstart .dropdown-toggle-split::before {
4542
  margin-right: 0;
4543
}
4544
 
16848 stevensc 4545
.btn-sm+.dropdown-toggle-split,
4546
.fc .fc-button-primary+.dropdown-toggle-split,
4547
.btn-group-sm>.btn+.dropdown-toggle-split,
4548
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4549
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4550
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4551
  padding-right: 0.6rem;
4552
  padding-left: 0.6rem;
4553
}
4554
 
16848 stevensc 4555
.btn-lg+.dropdown-toggle-split,
4556
.btn-group-lg>.btn+.dropdown-toggle-split,
4557
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4558
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4559
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4560
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4561
  padding-right: 0.6rem;
4562
  padding-left: 0.6rem;
4563
}
4564
 
4565
.btn-group-vertical {
4566
  flex-direction: column;
4567
  align-items: flex-start;
4568
  justify-content: center;
4569
}
16848 stevensc 4570
 
4571
.btn-group-vertical>.btn,
4572
.wizard>.actions .btn-group-vertical>a,
4573
div.tox .btn-group-vertical>.tox-button,
4574
.swal2-popup .swal2-actions .btn-group-vertical>button,
4575
.fc .btn-group-vertical>.fc-button-primary,
4576
.btn-group-vertical>.btn-group {
16825 efrain 4577
  width: 100%;
4578
}
16848 stevensc 4579
 
4580
.btn-group-vertical>.btn:not(:first-child),
4581
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4582
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4583
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4584
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4585
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4586
  margin-top: -1px;
4587
}
16848 stevensc 4588
 
4589
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4590
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4591
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4592
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4593
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4594
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4595
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4596
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4597
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4598
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4599
  border-bottom-right-radius: 0;
4600
  border-bottom-left-radius: 0;
4601
}
16848 stevensc 4602
 
4603
.btn-group-vertical>.btn~.btn,
4604
.wizard>.actions .btn-group-vertical>a~.btn,
4605
.wizard>.actions .btn-group-vertical>.btn~a,
4606
.wizard>.actions .btn-group-vertical>a~a,
4607
div.tox .btn-group-vertical>.tox-button~.btn,
4608
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4609
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4610
div.tox .btn-group-vertical>.btn~.tox-button,
4611
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4612
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4613
div.tox .btn-group-vertical>.tox-button~.tox-button,
4614
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4615
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4616
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4617
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4618
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4619
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4620
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4621
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4622
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4623
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4624
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4625
.fc .btn-group-vertical>.fc-button-primary~.btn,
4626
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4627
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4628
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4629
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4630
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4631
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4632
.fc .btn-group-vertical>.btn~.fc-button-primary,
4633
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4634
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4635
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4636
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4637
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4638
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4639
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4640
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4641
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4642
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4643
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4644
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4645
  border-top-left-radius: 0;
4646
  border-top-right-radius: 0;
4647
}
4648
 
4649
.nav {
4650
  --bs-nav-link-padding-x: 1rem;
4651
  --bs-nav-link-padding-y: 0.5rem;
4652
  --bs-nav-link-font-weight: ;
4653
  --bs-nav-link-color: var(--bs-link-color);
4654
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4655
  --bs-nav-link-disabled-color: #7987a1;
4656
  display: flex;
4657
  flex-wrap: wrap;
4658
  padding-left: 0;
4659
  margin-bottom: 0;
4660
  list-style: none;
4661
}
4662
 
4663
.nav-link {
4664
  display: block;
4665
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4666
  font-size: var(--bs-nav-link-font-size);
4667
  font-weight: var(--bs-nav-link-font-weight);
4668
  color: var(--bs-nav-link-color);
4669
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4670
}
16848 stevensc 4671
 
16825 efrain 4672
@media (prefers-reduced-motion: reduce) {
4673
  .nav-link {
4674
    transition: none;
4675
  }
4676
}
16848 stevensc 4677
 
4678
.nav-link:hover,
4679
.nav-link:focus {
16825 efrain 4680
  color: var(--bs-nav-link-hover-color);
4681
}
16848 stevensc 4682
 
16825 efrain 4683
.nav-link.disabled {
4684
  color: var(--bs-nav-link-disabled-color);
4685
  pointer-events: none;
4686
  cursor: default;
4687
}
4688
 
4689
.nav-tabs {
4690
  --bs-nav-tabs-border-width: 1px;
4691
  --bs-nav-tabs-border-color: #dee2e6;
4692
  --bs-nav-tabs-border-radius: 0.25rem;
4693
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4694
  --bs-nav-tabs-link-active-color: #41516c;
4695
  --bs-nav-tabs-link-active-bg: #fff;
4696
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4697
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4698
}
16848 stevensc 4699
 
16825 efrain 4700
.nav-tabs .nav-link {
4701
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4702
  background: none;
4703
  border: var(--bs-nav-tabs-border-width) solid transparent;
4704
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4705
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4706
}
16848 stevensc 4707
 
4708
.nav-tabs .nav-link:hover,
4709
.nav-tabs .nav-link:focus {
16825 efrain 4710
  isolation: isolate;
4711
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4712
}
16848 stevensc 4713
 
4714
.nav-tabs .nav-link.disabled,
4715
.nav-tabs .nav-link:disabled {
16825 efrain 4716
  color: var(--bs-nav-link-disabled-color);
4717
  background-color: transparent;
4718
  border-color: transparent;
4719
}
16848 stevensc 4720
 
16825 efrain 4721
.nav-tabs .nav-link.active,
4722
.nav-tabs .nav-item.show .nav-link {
4723
  color: var(--bs-nav-tabs-link-active-color);
4724
  background-color: var(--bs-nav-tabs-link-active-bg);
4725
  border-color: var(--bs-nav-tabs-link-active-border-color);
4726
}
16848 stevensc 4727
 
4728
.nav-tabs .dropdown-menu,
4729
.nav-tabs .tt-menu {
16825 efrain 4730
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4731
  border-top-left-radius: 0;
4732
  border-top-right-radius: 0;
4733
}
4734
 
4735
.nav-pills {
4736
  --bs-nav-pills-border-radius: 0.25rem;
4737
  --bs-nav-pills-link-active-color: #fff;
4738
  --bs-nav-pills-link-active-bg: #6571ff;
4739
}
16848 stevensc 4740
 
16825 efrain 4741
.nav-pills .nav-link {
4742
  background: none;
4743
  border: 0;
4744
  border-radius: var(--bs-nav-pills-border-radius);
4745
}
16848 stevensc 4746
 
16825 efrain 4747
.nav-pills .nav-link:disabled {
4748
  color: var(--bs-nav-link-disabled-color);
4749
  background-color: transparent;
4750
  border-color: transparent;
4751
}
16848 stevensc 4752
 
16825 efrain 4753
.nav-pills .nav-link.active,
16848 stevensc 4754
.nav-pills .show>.nav-link {
16825 efrain 4755
  color: var(--bs-nav-pills-link-active-color);
4756
  background-color: var(--bs-nav-pills-link-active-bg);
4757
}
4758
 
16848 stevensc 4759
.nav-fill>.nav-link,
16825 efrain 4760
.nav-fill .nav-item {
4761
  flex: 1 1 auto;
4762
  text-align: center;
4763
}
4764
 
16848 stevensc 4765
.nav-justified>.nav-link,
16825 efrain 4766
.nav-justified .nav-item {
4767
  flex-basis: 0;
4768
  flex-grow: 1;
4769
  text-align: center;
4770
}
4771
 
4772
.nav-fill .nav-item .nav-link,
4773
.nav-justified .nav-item .nav-link {
4774
  width: 100%;
4775
}
4776
 
16848 stevensc 4777
.tab-content>.tab-pane {
16825 efrain 4778
  display: none;
4779
}
16848 stevensc 4780
 
4781
.tab-content>.active {
16825 efrain 4782
  display: block;
4783
}
4784
 
4785
.navbar {
4786
  --bs-navbar-padding-x: 0;
4787
  --bs-navbar-padding-y: 0.5rem;
4788
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4789
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4790
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4791
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4792
  --bs-navbar-brand-padding-y: 0.40625rem;
4793
  --bs-navbar-brand-margin-end: 1rem;
4794
  --bs-navbar-brand-font-size: 1rem;
4795
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4796
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4797
  --bs-navbar-nav-link-padding-x: 0.5rem;
4798
  --bs-navbar-toggler-padding-y: 0.25rem;
4799
  --bs-navbar-toggler-padding-x: 0.75rem;
4800
  --bs-navbar-toggler-font-size: 1rem;
4801
  --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");
4802
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4803
  --bs-navbar-toggler-border-radius: 0.25rem;
4804
  --bs-navbar-toggler-focus-width: 0;
4805
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4806
  position: relative;
4807
  display: flex;
4808
  flex-wrap: wrap;
4809
  align-items: center;
4810
  justify-content: space-between;
4811
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4812
}
16848 stevensc 4813
 
4814
.navbar>.container,
4815
.navbar>.container-fluid,
4816
.navbar>.container-sm,
4817
.navbar>.container-md,
4818
.navbar>.container-lg,
4819
.navbar>.container-xl,
4820
.navbar>.container-xxl {
16825 efrain 4821
  display: flex;
4822
  flex-wrap: inherit;
4823
  align-items: center;
4824
  justify-content: space-between;
4825
}
16848 stevensc 4826
 
16825 efrain 4827
.navbar-brand {
4828
  padding-top: var(--bs-navbar-brand-padding-y);
4829
  padding-bottom: var(--bs-navbar-brand-padding-y);
4830
  margin-right: var(--bs-navbar-brand-margin-end);
4831
  font-size: var(--bs-navbar-brand-font-size);
4832
  color: var(--bs-navbar-brand-color);
4833
  white-space: nowrap;
4834
}
16848 stevensc 4835
 
4836
.navbar-brand:hover,
4837
.navbar-brand:focus {
16825 efrain 4838
  color: var(--bs-navbar-brand-hover-color);
4839
}
4840
 
4841
.navbar-nav {
4842
  --bs-nav-link-padding-x: 0;
4843
  --bs-nav-link-padding-y: 0.5rem;
4844
  --bs-nav-link-font-weight: ;
4845
  --bs-nav-link-color: var(--bs-navbar-color);
4846
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4847
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4848
  display: flex;
4849
  flex-direction: column;
4850
  padding-left: 0;
4851
  margin-bottom: 0;
4852
  list-style: none;
4853
}
16848 stevensc 4854
 
4855
.navbar-nav .show>.nav-link,
16825 efrain 4856
.navbar-nav .nav-link.active {
4857
  color: var(--bs-navbar-active-color);
4858
}
16848 stevensc 4859
 
4860
.navbar-nav .dropdown-menu,
4861
.navbar-nav .tt-menu {
16825 efrain 4862
  position: static;
4863
}
4864
 
4865
.navbar-text {
4866
  padding-top: 0.5rem;
4867
  padding-bottom: 0.5rem;
4868
  color: var(--bs-navbar-color);
4869
}
16848 stevensc 4870
 
16825 efrain 4871
.navbar-text a,
4872
.navbar-text a:hover,
4873
.navbar-text a:focus {
4874
  color: var(--bs-navbar-active-color);
4875
}
4876
 
4877
.navbar-collapse {
4878
  flex-basis: 100%;
4879
  flex-grow: 1;
4880
  align-items: center;
4881
}
4882
 
4883
.navbar-toggler {
4884
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4885
  font-size: var(--bs-navbar-toggler-font-size);
4886
  line-height: 1;
4887
  color: var(--bs-navbar-color);
4888
  background-color: transparent;
4889
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4890
  border-radius: var(--bs-navbar-toggler-border-radius);
4891
  transition: var(--bs-navbar-toggler-transition);
4892
}
16848 stevensc 4893
 
16825 efrain 4894
@media (prefers-reduced-motion: reduce) {
4895
  .navbar-toggler {
4896
    transition: none;
4897
  }
4898
}
16848 stevensc 4899
 
16825 efrain 4900
.navbar-toggler:hover {
4901
  text-decoration: none;
4902
}
16848 stevensc 4903
 
16825 efrain 4904
.navbar-toggler:focus {
4905
  text-decoration: none;
4906
  outline: 0;
4907
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4908
}
4909
 
4910
.navbar-toggler-icon {
4911
  display: inline-block;
4912
  width: 1.5em;
4913
  height: 1.5em;
4914
  vertical-align: middle;
4915
  background-image: var(--bs-navbar-toggler-icon-bg);
4916
  background-repeat: no-repeat;
4917
  background-position: center;
4918
  background-size: 100%;
4919
}
4920
 
4921
.navbar-nav-scroll {
4922
  max-height: var(--bs-scroll-height, 75vh);
4923
  overflow-y: auto;
4924
}
4925
 
4926
@media (min-width: 576px) {
4927
  .navbar-expand-sm {
4928
    flex-wrap: nowrap;
4929
    justify-content: flex-start;
4930
  }
16848 stevensc 4931
 
16825 efrain 4932
  .navbar-expand-sm .navbar-nav {
4933
    flex-direction: row;
4934
  }
16848 stevensc 4935
 
4936
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4937
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4938
    position: absolute;
4939
  }
16848 stevensc 4940
 
16825 efrain 4941
  .navbar-expand-sm .navbar-nav .nav-link {
4942
    padding-right: var(--bs-navbar-nav-link-padding-x);
4943
    padding-left: var(--bs-navbar-nav-link-padding-x);
4944
  }
16848 stevensc 4945
 
16825 efrain 4946
  .navbar-expand-sm .navbar-nav-scroll {
4947
    overflow: visible;
4948
  }
16848 stevensc 4949
 
16825 efrain 4950
  .navbar-expand-sm .navbar-collapse {
4951
    display: flex !important;
4952
    flex-basis: auto;
4953
  }
16848 stevensc 4954
 
16825 efrain 4955
  .navbar-expand-sm .navbar-toggler {
4956
    display: none;
4957
  }
16848 stevensc 4958
 
16825 efrain 4959
  .navbar-expand-sm .offcanvas {
4960
    position: static;
4961
    z-index: auto;
4962
    flex-grow: 1;
4963
    width: auto !important;
4964
    height: auto !important;
4965
    visibility: visible !important;
4966
    background-color: transparent !important;
4967
    border: 0 !important;
4968
    transform: none !important;
4969
    transition: none;
4970
  }
16848 stevensc 4971
 
16825 efrain 4972
  .navbar-expand-sm .offcanvas .offcanvas-header {
4973
    display: none;
4974
  }
16848 stevensc 4975
 
16825 efrain 4976
  .navbar-expand-sm .offcanvas .offcanvas-body {
4977
    display: flex;
4978
    flex-grow: 0;
4979
    padding: 0;
4980
    overflow-y: visible;
4981
  }
4982
}
16848 stevensc 4983
 
16825 efrain 4984
@media (min-width: 768px) {
4985
  .navbar-expand-md {
4986
    flex-wrap: nowrap;
4987
    justify-content: flex-start;
4988
  }
16848 stevensc 4989
 
16825 efrain 4990
  .navbar-expand-md .navbar-nav {
4991
    flex-direction: row;
4992
  }
16848 stevensc 4993
 
4994
  .navbar-expand-md .navbar-nav .dropdown-menu,
4995
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4996
    position: absolute;
4997
  }
16848 stevensc 4998
 
16825 efrain 4999
  .navbar-expand-md .navbar-nav .nav-link {
5000
    padding-right: var(--bs-navbar-nav-link-padding-x);
5001
    padding-left: var(--bs-navbar-nav-link-padding-x);
5002
  }
16848 stevensc 5003
 
16825 efrain 5004
  .navbar-expand-md .navbar-nav-scroll {
5005
    overflow: visible;
5006
  }
16848 stevensc 5007
 
16825 efrain 5008
  .navbar-expand-md .navbar-collapse {
5009
    display: flex !important;
5010
    flex-basis: auto;
5011
  }
16848 stevensc 5012
 
16825 efrain 5013
  .navbar-expand-md .navbar-toggler {
5014
    display: none;
5015
  }
16848 stevensc 5016
 
16825 efrain 5017
  .navbar-expand-md .offcanvas {
5018
    position: static;
5019
    z-index: auto;
5020
    flex-grow: 1;
5021
    width: auto !important;
5022
    height: auto !important;
5023
    visibility: visible !important;
5024
    background-color: transparent !important;
5025
    border: 0 !important;
5026
    transform: none !important;
5027
    transition: none;
5028
  }
16848 stevensc 5029
 
16825 efrain 5030
  .navbar-expand-md .offcanvas .offcanvas-header {
5031
    display: none;
5032
  }
16848 stevensc 5033
 
16825 efrain 5034
  .navbar-expand-md .offcanvas .offcanvas-body {
5035
    display: flex;
5036
    flex-grow: 0;
5037
    padding: 0;
5038
    overflow-y: visible;
5039
  }
5040
}
16848 stevensc 5041
 
16825 efrain 5042
@media (min-width: 992px) {
5043
  .navbar-expand-lg {
5044
    flex-wrap: nowrap;
5045
    justify-content: flex-start;
5046
  }
16848 stevensc 5047
 
16825 efrain 5048
  .navbar-expand-lg .navbar-nav {
5049
    flex-direction: row;
5050
  }
16848 stevensc 5051
 
5052
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5053
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5054
    position: absolute;
5055
  }
16848 stevensc 5056
 
16825 efrain 5057
  .navbar-expand-lg .navbar-nav .nav-link {
5058
    padding-right: var(--bs-navbar-nav-link-padding-x);
5059
    padding-left: var(--bs-navbar-nav-link-padding-x);
5060
  }
16848 stevensc 5061
 
16825 efrain 5062
  .navbar-expand-lg .navbar-nav-scroll {
5063
    overflow: visible;
5064
  }
16848 stevensc 5065
 
16825 efrain 5066
  .navbar-expand-lg .navbar-collapse {
5067
    display: flex !important;
5068
    flex-basis: auto;
5069
  }
16848 stevensc 5070
 
16825 efrain 5071
  .navbar-expand-lg .navbar-toggler {
5072
    display: none;
5073
  }
16848 stevensc 5074
 
16825 efrain 5075
  .navbar-expand-lg .offcanvas {
5076
    position: static;
5077
    z-index: auto;
5078
    flex-grow: 1;
5079
    width: auto !important;
5080
    height: auto !important;
5081
    visibility: visible !important;
5082
    background-color: transparent !important;
5083
    border: 0 !important;
5084
    transform: none !important;
5085
    transition: none;
5086
  }
16848 stevensc 5087
 
16825 efrain 5088
  .navbar-expand-lg .offcanvas .offcanvas-header {
5089
    display: none;
5090
  }
16848 stevensc 5091
 
16825 efrain 5092
  .navbar-expand-lg .offcanvas .offcanvas-body {
5093
    display: flex;
5094
    flex-grow: 0;
5095
    padding: 0;
5096
    overflow-y: visible;
5097
  }
5098
}
16848 stevensc 5099
 
16825 efrain 5100
@media (min-width: 1200px) {
5101
  .navbar-expand-xl {
5102
    flex-wrap: nowrap;
5103
    justify-content: flex-start;
5104
  }
16848 stevensc 5105
 
16825 efrain 5106
  .navbar-expand-xl .navbar-nav {
5107
    flex-direction: row;
5108
  }
16848 stevensc 5109
 
5110
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5111
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5112
    position: absolute;
5113
  }
16848 stevensc 5114
 
16825 efrain 5115
  .navbar-expand-xl .navbar-nav .nav-link {
5116
    padding-right: var(--bs-navbar-nav-link-padding-x);
5117
    padding-left: var(--bs-navbar-nav-link-padding-x);
5118
  }
16848 stevensc 5119
 
16825 efrain 5120
  .navbar-expand-xl .navbar-nav-scroll {
5121
    overflow: visible;
5122
  }
16848 stevensc 5123
 
16825 efrain 5124
  .navbar-expand-xl .navbar-collapse {
5125
    display: flex !important;
5126
    flex-basis: auto;
5127
  }
16848 stevensc 5128
 
16825 efrain 5129
  .navbar-expand-xl .navbar-toggler {
5130
    display: none;
5131
  }
16848 stevensc 5132
 
16825 efrain 5133
  .navbar-expand-xl .offcanvas {
5134
    position: static;
5135
    z-index: auto;
5136
    flex-grow: 1;
5137
    width: auto !important;
5138
    height: auto !important;
5139
    visibility: visible !important;
5140
    background-color: transparent !important;
5141
    border: 0 !important;
5142
    transform: none !important;
5143
    transition: none;
5144
  }
16848 stevensc 5145
 
16825 efrain 5146
  .navbar-expand-xl .offcanvas .offcanvas-header {
5147
    display: none;
5148
  }
16848 stevensc 5149
 
16825 efrain 5150
  .navbar-expand-xl .offcanvas .offcanvas-body {
5151
    display: flex;
5152
    flex-grow: 0;
5153
    padding: 0;
5154
    overflow-y: visible;
5155
  }
5156
}
16848 stevensc 5157
 
16825 efrain 5158
@media (min-width: 1400px) {
5159
  .navbar-expand-xxl {
5160
    flex-wrap: nowrap;
5161
    justify-content: flex-start;
5162
  }
16848 stevensc 5163
 
16825 efrain 5164
  .navbar-expand-xxl .navbar-nav {
5165
    flex-direction: row;
5166
  }
16848 stevensc 5167
 
5168
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5169
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5170
    position: absolute;
5171
  }
16848 stevensc 5172
 
16825 efrain 5173
  .navbar-expand-xxl .navbar-nav .nav-link {
5174
    padding-right: var(--bs-navbar-nav-link-padding-x);
5175
    padding-left: var(--bs-navbar-nav-link-padding-x);
5176
  }
16848 stevensc 5177
 
16825 efrain 5178
  .navbar-expand-xxl .navbar-nav-scroll {
5179
    overflow: visible;
5180
  }
16848 stevensc 5181
 
16825 efrain 5182
  .navbar-expand-xxl .navbar-collapse {
5183
    display: flex !important;
5184
    flex-basis: auto;
5185
  }
16848 stevensc 5186
 
16825 efrain 5187
  .navbar-expand-xxl .navbar-toggler {
5188
    display: none;
5189
  }
16848 stevensc 5190
 
16825 efrain 5191
  .navbar-expand-xxl .offcanvas {
5192
    position: static;
5193
    z-index: auto;
5194
    flex-grow: 1;
5195
    width: auto !important;
5196
    height: auto !important;
5197
    visibility: visible !important;
5198
    background-color: transparent !important;
5199
    border: 0 !important;
5200
    transform: none !important;
5201
    transition: none;
5202
  }
16848 stevensc 5203
 
16825 efrain 5204
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5205
    display: none;
5206
  }
16848 stevensc 5207
 
16825 efrain 5208
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5209
    display: flex;
5210
    flex-grow: 0;
5211
    padding: 0;
5212
    overflow-y: visible;
5213
  }
5214
}
16848 stevensc 5215
 
16825 efrain 5216
.navbar-expand {
5217
  flex-wrap: nowrap;
5218
  justify-content: flex-start;
5219
}
16848 stevensc 5220
 
16825 efrain 5221
.navbar-expand .navbar-nav {
5222
  flex-direction: row;
5223
}
16848 stevensc 5224
 
5225
.navbar-expand .navbar-nav .dropdown-menu,
5226
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5227
  position: absolute;
5228
}
16848 stevensc 5229
 
16825 efrain 5230
.navbar-expand .navbar-nav .nav-link {
5231
  padding-right: var(--bs-navbar-nav-link-padding-x);
5232
  padding-left: var(--bs-navbar-nav-link-padding-x);
5233
}
16848 stevensc 5234
 
16825 efrain 5235
.navbar-expand .navbar-nav-scroll {
5236
  overflow: visible;
5237
}
16848 stevensc 5238
 
16825 efrain 5239
.navbar-expand .navbar-collapse {
5240
  display: flex !important;
5241
  flex-basis: auto;
5242
}
16848 stevensc 5243
 
16825 efrain 5244
.navbar-expand .navbar-toggler {
5245
  display: none;
5246
}
16848 stevensc 5247
 
16825 efrain 5248
.navbar-expand .offcanvas {
5249
  position: static;
5250
  z-index: auto;
5251
  flex-grow: 1;
5252
  width: auto !important;
5253
  height: auto !important;
5254
  visibility: visible !important;
5255
  background-color: transparent !important;
5256
  border: 0 !important;
5257
  transform: none !important;
5258
  transition: none;
5259
}
16848 stevensc 5260
 
16825 efrain 5261
.navbar-expand .offcanvas .offcanvas-header {
5262
  display: none;
5263
}
16848 stevensc 5264
 
16825 efrain 5265
.navbar-expand .offcanvas .offcanvas-body {
5266
  display: flex;
5267
  flex-grow: 0;
5268
  padding: 0;
5269
  overflow-y: visible;
5270
}
5271
 
5272
.navbar-dark {
5273
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5274
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5275
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5276
  --bs-navbar-active-color: #fff;
5277
  --bs-navbar-brand-color: #fff;
5278
  --bs-navbar-brand-hover-color: #fff;
5279
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5280
  --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");
5281
}
5282
 
5283
.card {
5284
  --bs-card-spacer-y: 1.5rem;
5285
  --bs-card-spacer-x: 1.5rem;
5286
  --bs-card-title-spacer-y: 0.875rem;
5287
  --bs-card-border-width: 1px;
5288
  --bs-card-border-color: #f2f4f9;
5289
  --bs-card-border-radius: 0.25rem;
5290
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5291
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5292
  --bs-card-cap-padding-y: 0.875rem;
5293
  --bs-card-cap-padding-x: 1.5rem;
5294
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5295
  --bs-card-cap-color: ;
5296
  --bs-card-height: ;
5297
  --bs-card-color: ;
5298
  --bs-card-bg: #fff;
5299
  --bs-card-img-overlay-padding: 1rem;
5300
  --bs-card-group-margin: 0.75rem;
5301
  position: relative;
5302
  display: flex;
5303
  flex-direction: column;
5304
  min-width: 0;
5305
  height: var(--bs-card-height);
5306
  word-wrap: break-word;
5307
  background-color: var(--bs-card-bg);
5308
  background-clip: border-box;
5309
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5310
  border-radius: var(--bs-card-border-radius);
5311
}
16848 stevensc 5312
 
5313
.card>hr {
16825 efrain 5314
  margin-right: 0;
5315
  margin-left: 0;
5316
}
16848 stevensc 5317
 
5318
.card>.list-group {
16825 efrain 5319
  border-top: inherit;
5320
  border-bottom: inherit;
5321
}
16848 stevensc 5322
 
5323
.card>.list-group:first-child {
16825 efrain 5324
  border-top-width: 0;
5325
  border-top-left-radius: var(--bs-card-inner-border-radius);
5326
  border-top-right-radius: var(--bs-card-inner-border-radius);
5327
}
16848 stevensc 5328
 
5329
.card>.list-group:last-child {
16825 efrain 5330
  border-bottom-width: 0;
5331
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5332
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5333
}
16848 stevensc 5334
 
5335
.card>.card-header+.list-group,
5336
.card>.list-group+.card-footer {
16825 efrain 5337
  border-top: 0;
5338
}
5339
 
5340
.card-body {
5341
  flex: 1 1 auto;
5342
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5343
  color: var(--bs-card-color);
5344
}
5345
 
5346
.card-title {
5347
  margin-bottom: var(--bs-card-title-spacer-y);
5348
}
5349
 
5350
.card-subtitle {
5351
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5352
  margin-bottom: 0;
5353
}
5354
 
5355
.card-text:last-child {
5356
  margin-bottom: 0;
5357
}
5358
 
16848 stevensc 5359
.card-link+.card-link {
16825 efrain 5360
  margin-left: var(--bs-card-spacer-x);
5361
}
5362
 
5363
.card-header {
5364
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5365
  margin-bottom: 0;
5366
  color: var(--bs-card-cap-color);
5367
  background-color: var(--bs-card-cap-bg);
5368
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5369
}
16848 stevensc 5370
 
16825 efrain 5371
.card-header:first-child {
5372
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5373
}
5374
 
5375
.card-footer {
5376
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5377
  color: var(--bs-card-cap-color);
5378
  background-color: var(--bs-card-cap-bg);
5379
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5380
}
16848 stevensc 5381
 
16825 efrain 5382
.card-footer:last-child {
5383
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5384
}
5385
 
5386
.card-header-tabs {
5387
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5388
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5389
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5390
  border-bottom: 0;
5391
}
16848 stevensc 5392
 
16825 efrain 5393
.card-header-tabs .nav-link.active {
5394
  background-color: var(--bs-card-bg);
5395
  border-bottom-color: var(--bs-card-bg);
5396
}
5397
 
5398
.card-header-pills {
5399
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5400
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5401
}
5402
 
5403
.card-img-overlay {
5404
  position: absolute;
5405
  top: 0;
5406
  right: 0;
5407
  bottom: 0;
5408
  left: 0;
5409
  padding: var(--bs-card-img-overlay-padding);
5410
  border-radius: var(--bs-card-inner-border-radius);
5411
}
5412
 
5413
.card-img,
5414
.card-img-top,
5415
.card-img-bottom {
5416
  width: 100%;
5417
}
5418
 
5419
.card-img,
5420
.card-img-top {
5421
  border-top-left-radius: var(--bs-card-inner-border-radius);
5422
  border-top-right-radius: var(--bs-card-inner-border-radius);
5423
}
5424
 
5425
.card-img,
5426
.card-img-bottom {
5427
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5428
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5429
}
5430
 
16848 stevensc 5431
.card-group>.card {
16825 efrain 5432
  margin-bottom: var(--bs-card-group-margin);
5433
}
16848 stevensc 5434
 
16825 efrain 5435
@media (min-width: 576px) {
5436
  .card-group {
5437
    display: flex;
5438
    flex-flow: row wrap;
5439
  }
16848 stevensc 5440
 
5441
  .card-group>.card {
16825 efrain 5442
    flex: 1 0 0%;
5443
    margin-bottom: 0;
5444
  }
16848 stevensc 5445
 
5446
  .card-group>.card+.card {
16825 efrain 5447
    margin-left: 0;
5448
    border-left: 0;
5449
  }
16848 stevensc 5450
 
5451
  .card-group>.card:not(:last-child) {
16825 efrain 5452
    border-top-right-radius: 0;
5453
    border-bottom-right-radius: 0;
5454
  }
16848 stevensc 5455
 
5456
  .card-group>.card:not(:last-child) .card-img-top,
5457
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5458
    border-top-right-radius: 0;
5459
  }
16848 stevensc 5460
 
5461
  .card-group>.card:not(:last-child) .card-img-bottom,
5462
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5463
    border-bottom-right-radius: 0;
5464
  }
16848 stevensc 5465
 
5466
  .card-group>.card:not(:first-child) {
16825 efrain 5467
    border-top-left-radius: 0;
5468
    border-bottom-left-radius: 0;
5469
  }
16848 stevensc 5470
 
5471
  .card-group>.card:not(:first-child) .card-img-top,
5472
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5473
    border-top-left-radius: 0;
5474
  }
16848 stevensc 5475
 
5476
  .card-group>.card:not(:first-child) .card-img-bottom,
5477
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5478
    border-bottom-left-radius: 0;
5479
  }
5480
}
5481
 
5482
.accordion {
5483
  --bs-accordion-color: #000;
5484
  --bs-accordion-bg: #fff;
5485
  --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;
5486
  --bs-accordion-border-color: #e9ecef;
5487
  --bs-accordion-border-width: 1px;
5488
  --bs-accordion-border-radius: 0.25rem;
5489
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5490
  --bs-accordion-btn-padding-x: 1.25rem;
5491
  --bs-accordion-btn-padding-y: 1rem;
5492
  --bs-accordion-btn-color: #000;
5493
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5494
  --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");
5495
  --bs-accordion-btn-icon-width: 0.875rem;
5496
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5497
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5498
  --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");
5499
  --bs-accordion-btn-focus-border-color: #cbd1db;
5500
  --bs-accordion-btn-focus-box-shadow: none;
5501
  --bs-accordion-body-padding-x: 1.25rem;
5502
  --bs-accordion-body-padding-y: 1rem;
5503
  --bs-accordion-active-color: #5b66e6;
5504
  --bs-accordion-active-bg: #f0f1ff;
5505
}
5506
 
5507
.accordion-button {
5508
  position: relative;
5509
  display: flex;
5510
  align-items: center;
5511
  width: 100%;
5512
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5513
  font-size: 0.875rem;
5514
  color: var(--bs-accordion-btn-color);
5515
  text-align: left;
5516
  background-color: var(--bs-accordion-btn-bg);
5517
  border: 0;
5518
  border-radius: 0;
5519
  overflow-anchor: none;
5520
  transition: var(--bs-accordion-transition);
5521
}
16848 stevensc 5522
 
16825 efrain 5523
@media (prefers-reduced-motion: reduce) {
5524
  .accordion-button {
5525
    transition: none;
5526
  }
5527
}
16848 stevensc 5528
 
16825 efrain 5529
.accordion-button:not(.collapsed) {
5530
  color: var(--bs-accordion-active-color);
5531
  background-color: var(--bs-accordion-active-bg);
5532
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5533
}
16848 stevensc 5534
 
16825 efrain 5535
.accordion-button:not(.collapsed)::after {
5536
  background-image: var(--bs-accordion-btn-active-icon);
5537
  transform: var(--bs-accordion-btn-icon-transform);
5538
}
16848 stevensc 5539
 
16825 efrain 5540
.accordion-button::after {
5541
  flex-shrink: 0;
5542
  width: var(--bs-accordion-btn-icon-width);
5543
  height: var(--bs-accordion-btn-icon-width);
5544
  margin-left: auto;
5545
  content: "";
5546
  background-image: var(--bs-accordion-btn-icon);
5547
  background-repeat: no-repeat;
5548
  background-size: var(--bs-accordion-btn-icon-width);
5549
  transition: var(--bs-accordion-btn-icon-transition);
5550
}
16848 stevensc 5551
 
16825 efrain 5552
@media (prefers-reduced-motion: reduce) {
5553
  .accordion-button::after {
5554
    transition: none;
5555
  }
5556
}
16848 stevensc 5557
 
16825 efrain 5558
.accordion-button:hover {
5559
  z-index: 2;
5560
}
16848 stevensc 5561
 
16825 efrain 5562
.accordion-button:focus {
5563
  z-index: 3;
5564
  border-color: var(--bs-accordion-btn-focus-border-color);
5565
  outline: 0;
5566
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5567
}
5568
 
5569
.accordion-header {
5570
  margin-bottom: 0;
5571
}
5572
 
5573
.accordion-item {
5574
  color: var(--bs-accordion-color);
5575
  background-color: var(--bs-accordion-bg);
5576
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5577
}
16848 stevensc 5578
 
16825 efrain 5579
.accordion-item:first-of-type {
5580
  border-top-left-radius: var(--bs-accordion-border-radius);
5581
  border-top-right-radius: var(--bs-accordion-border-radius);
5582
}
16848 stevensc 5583
 
16825 efrain 5584
.accordion-item:first-of-type .accordion-button {
5585
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5586
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5587
}
16848 stevensc 5588
 
16825 efrain 5589
.accordion-item:not(:first-of-type) {
5590
  border-top: 0;
5591
}
16848 stevensc 5592
 
16825 efrain 5593
.accordion-item:last-of-type {
5594
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5595
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5596
}
16848 stevensc 5597
 
16825 efrain 5598
.accordion-item:last-of-type .accordion-button.collapsed {
5599
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5600
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5601
}
16848 stevensc 5602
 
16825 efrain 5603
.accordion-item:last-of-type .accordion-collapse {
5604
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5605
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5606
}
5607
 
5608
.accordion-body {
5609
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5610
}
5611
 
5612
.accordion-flush .accordion-collapse {
5613
  border-width: 0;
5614
}
16848 stevensc 5615
 
16825 efrain 5616
.accordion-flush .accordion-item {
5617
  border-right: 0;
5618
  border-left: 0;
5619
  border-radius: 0;
5620
}
16848 stevensc 5621
 
16825 efrain 5622
.accordion-flush .accordion-item:first-child {
5623
  border-top: 0;
5624
}
16848 stevensc 5625
 
16825 efrain 5626
.accordion-flush .accordion-item:last-child {
5627
  border-bottom: 0;
5628
}
16848 stevensc 5629
 
5630
.accordion-flush .accordion-item .accordion-button,
5631
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5632
  border-radius: 0;
5633
}
5634
 
5635
.breadcrumb {
5636
  --bs-breadcrumb-padding-x: 0;
5637
  --bs-breadcrumb-padding-y: 0;
5638
  --bs-breadcrumb-margin-bottom: 1rem;
5639
  --bs-breadcrumb-bg: ;
5640
  --bs-breadcrumb-border-radius: ;
5641
  --bs-breadcrumb-divider-color: #7987a1;
5642
  --bs-breadcrumb-item-padding-x: 0.5rem;
5643
  --bs-breadcrumb-item-active-color: #7987a1;
5644
  display: flex;
5645
  flex-wrap: wrap;
5646
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5647
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5648
  font-size: var(--bs-breadcrumb-font-size);
5649
  list-style: none;
5650
  background-color: var(--bs-breadcrumb-bg);
5651
  border-radius: var(--bs-breadcrumb-border-radius);
5652
}
5653
 
16848 stevensc 5654
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5655
  padding-left: var(--bs-breadcrumb-item-padding-x);
5656
}
16848 stevensc 5657
 
5658
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5659
  float: left;
5660
  padding-right: var(--bs-breadcrumb-item-padding-x);
5661
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5662
  content: var(--bs-breadcrumb-divider, "/")
5663
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5664
  ;
16825 efrain 5665
}
16848 stevensc 5666
 
16825 efrain 5667
.breadcrumb-item.active {
5668
  color: var(--bs-breadcrumb-item-active-color);
5669
}
5670
 
5671
.pagination {
5672
  --bs-pagination-padding-x: 1rem;
5673
  --bs-pagination-padding-y: 0.469rem;
5674
  --bs-pagination-font-size: 0.875rem;
5675
  --bs-pagination-color: #6571ff;
5676
  --bs-pagination-bg: #fff;
5677
  --bs-pagination-border-width: 1px;
5678
  --bs-pagination-border-color: #dee2e6;
5679
  --bs-pagination-border-radius: 0.25rem;
5680
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5681
  --bs-pagination-hover-bg: #e9ecef;
5682
  --bs-pagination-hover-border-color: #dee2e6;
5683
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5684
  --bs-pagination-focus-bg: #e9ecef;
5685
  --bs-pagination-focus-box-shadow: none;
5686
  --bs-pagination-active-color: #fff;
5687
  --bs-pagination-active-bg: #6571ff;
5688
  --bs-pagination-active-border-color: #6571ff;
5689
  --bs-pagination-disabled-color: #7987a1;
5690
  --bs-pagination-disabled-bg: #fff;
5691
  --bs-pagination-disabled-border-color: #dee2e6;
5692
  display: flex;
5693
  padding-left: 0;
5694
  list-style: none;
5695
}
5696
 
5697
.page-link {
5698
  position: relative;
5699
  display: block;
5700
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5701
  font-size: var(--bs-pagination-font-size);
5702
  color: var(--bs-pagination-color);
5703
  background-color: var(--bs-pagination-bg);
5704
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5705
  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;
5706
}
16848 stevensc 5707
 
16825 efrain 5708
@media (prefers-reduced-motion: reduce) {
5709
  .page-link {
5710
    transition: none;
5711
  }
5712
}
16848 stevensc 5713
 
16825 efrain 5714
.page-link:hover {
5715
  z-index: 2;
5716
  color: var(--bs-pagination-hover-color);
5717
  background-color: var(--bs-pagination-hover-bg);
5718
  border-color: var(--bs-pagination-hover-border-color);
5719
}
16848 stevensc 5720
 
16825 efrain 5721
.page-link:focus {
5722
  z-index: 3;
5723
  color: var(--bs-pagination-focus-color);
5724
  background-color: var(--bs-pagination-focus-bg);
5725
  outline: 0;
5726
  box-shadow: var(--bs-pagination-focus-box-shadow);
5727
}
16848 stevensc 5728
 
5729
.page-link.active,
5730
.active>.page-link {
16825 efrain 5731
  z-index: 3;
5732
  color: var(--bs-pagination-active-color);
5733
  background-color: var(--bs-pagination-active-bg);
5734
  border-color: var(--bs-pagination-active-border-color);
5735
}
16848 stevensc 5736
 
5737
.page-link.disabled,
5738
.disabled>.page-link {
16825 efrain 5739
  color: var(--bs-pagination-disabled-color);
5740
  pointer-events: none;
5741
  background-color: var(--bs-pagination-disabled-bg);
5742
  border-color: var(--bs-pagination-disabled-border-color);
5743
}
5744
 
5745
.page-item:not(:first-child) .page-link {
5746
  margin-left: -1px;
5747
}
16848 stevensc 5748
 
16825 efrain 5749
.page-item:first-child .page-link {
5750
  border-top-left-radius: var(--bs-pagination-border-radius);
5751
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5752
}
16848 stevensc 5753
 
16825 efrain 5754
.page-item:last-child .page-link {
5755
  border-top-right-radius: var(--bs-pagination-border-radius);
5756
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5757
}
5758
 
5759
.pagination-lg {
5760
  --bs-pagination-padding-x: 1.1rem;
5761
  --bs-pagination-padding-y: 0.5rem;
5762
  --bs-pagination-font-size: 1rem;
5763
  --bs-pagination-border-radius: 0.5rem;
5764
}
5765
 
5766
.pagination-sm {
5767
  --bs-pagination-padding-x: 0.75rem;
5768
  --bs-pagination-padding-y: 0.391rem;
5769
  --bs-pagination-font-size: 0.812rem;
5770
  --bs-pagination-border-radius: 0.25rem;
5771
}
5772
 
5773
.badge {
5774
  --bs-badge-padding-x: 0.65em;
5775
  --bs-badge-padding-y: 0.35em;
5776
  --bs-badge-font-size: 0.8em;
5777
  --bs-badge-font-weight: 500;
5778
  --bs-badge-color: #fff;
5779
  --bs-badge-border-radius: 0.25rem;
5780
  display: inline-block;
5781
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5782
  font-size: var(--bs-badge-font-size);
5783
  font-weight: var(--bs-badge-font-weight);
5784
  line-height: 1;
5785
  color: var(--bs-badge-color);
5786
  text-align: center;
5787
  white-space: nowrap;
5788
  vertical-align: baseline;
5789
  border-radius: var(--bs-badge-border-radius);
5790
}
16848 stevensc 5791
 
16825 efrain 5792
.badge:empty {
5793
  display: none;
5794
}
5795
 
16848 stevensc 5796
.btn .badge,
5797
.wizard>.actions a .badge,
5798
div.tox .tox-button .badge,
5799
.swal2-popup .swal2-actions button .badge,
5800
.fc .fc-button-primary .badge {
16825 efrain 5801
  position: relative;
5802
  top: -1px;
5803
}
5804
 
5805
.alert {
5806
  --bs-alert-bg: transparent;
5807
  --bs-alert-padding-x: 1rem;
5808
  --bs-alert-padding-y: 1rem;
5809
  --bs-alert-margin-bottom: 1rem;
5810
  --bs-alert-color: inherit;
5811
  --bs-alert-border-color: transparent;
5812
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5813
  --bs-alert-border-radius: 0.25rem;
5814
  position: relative;
5815
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5816
  margin-bottom: var(--bs-alert-margin-bottom);
5817
  color: var(--bs-alert-color);
5818
  background-color: var(--bs-alert-bg);
5819
  border: var(--bs-alert-border);
5820
  border-radius: var(--bs-alert-border-radius);
5821
}
5822
 
5823
.alert-heading {
5824
  color: inherit;
5825
}
5826
 
5827
.alert-link {
5828
  font-weight: 500;
5829
}
5830
 
5831
.alert-dismissible {
5832
  padding-right: 3rem;
5833
}
16848 stevensc 5834
 
16825 efrain 5835
.alert-dismissible .btn-close {
5836
  position: absolute;
5837
  top: 0;
5838
  right: 0;
5839
  z-index: 2;
5840
  padding: 1.25rem 1rem;
5841
}
5842
 
5843
.alert-primary {
5844
  --bs-alert-color: #3d4499;
5845
  --bs-alert-bg: #e0e3ff;
5846
  --bs-alert-border-color: #d1d4ff;
5847
}
16848 stevensc 5848
 
16825 efrain 5849
.alert-primary .alert-link {
5850
  color: #31367a;
5851
}
5852
 
5853
.alert-secondary {
5854
  --bs-alert-color: #495161;
5855
  --bs-alert-bg: #e4e7ec;
5856
  --bs-alert-border-color: #d7dbe3;
5857
}
16848 stevensc 5858
 
16825 efrain 5859
.alert-secondary .alert-link {
5860
  color: #3a414e;
5861
}
5862
 
5863
.alert-success {
5864
  --bs-alert-color: #03622c;
5865
  --bs-alert-bg: #cdeddb;
5866
  --bs-alert-border-color: #b4e3c9;
5867
}
16848 stevensc 5868
 
16825 efrain 5869
.alert-success .alert-link {
5870
  color: #024e23;
5871
}
5872
 
5873
.alert-info {
5874
  --bs-alert-color: #3d7d7d;
5875
  --bs-alert-bg: #e0f6f6;
5876
  --bs-alert-border-color: #d1f1f1;
5877
}
16848 stevensc 5878
 
16825 efrain 5879
.alert-info .alert-link {
5880
  color: #316464;
5881
}
5882
 
5883
.alert-warning {
5884
  --bs-alert-color: #977104;
5885
  --bs-alert-bg: #fef2cd;
5886
  --bs-alert-border-color: #feebb4;
5887
}
16848 stevensc 5888
 
16825 efrain 5889
.alert-warning .alert-link {
5890
  color: #795a03;
5891
}
5892
 
5893
.alert-danger {
5894
  --bs-alert-color: #991f3d;
5895
  --bs-alert-bg: #ffd6e0;
5896
  --bs-alert-border-color: #ffc2d1;
5897
}
16848 stevensc 5898
 
16825 efrain 5899
.alert-danger .alert-link {
5900
  color: #7a1931;
5901
}
5902
 
5903
.alert-light {
5904
  --bs-alert-color: #8c8e8f;
5905
  --bs-alert-bg: #fbfbfc;
5906
  --bs-alert-border-color: #f8f9fa;
5907
}
16848 stevensc 5908
 
16825 efrain 5909
.alert-light .alert-link {
5910
  color: #707272;
5911
}
5912
 
5913
.alert-dark {
5914
  --bs-alert-color: #04070e;
5915
  --bs-alert-bg: #cdced1;
5916
  --bs-alert-border-color: #b4b6b9;
5917
}
16848 stevensc 5918
 
16825 efrain 5919
.alert-dark .alert-link {
5920
  color: #03060b;
5921
}
5922
 
5923
@keyframes progress-bar-stripes {
5924
  0% {
5925
    background-position-x: 1rem;
5926
  }
5927
}
16848 stevensc 5928
 
16825 efrain 5929
.progress {
5930
  --bs-progress-height: 1rem;
5931
  --bs-progress-font-size: 0.65625rem;
5932
  --bs-progress-bg: #e9ecef;
5933
  --bs-progress-border-radius: 0.25rem;
5934
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5935
  --bs-progress-bar-color: #fff;
5936
  --bs-progress-bar-bg: #6571ff;
5937
  --bs-progress-bar-transition: width 0.6s ease;
5938
  display: flex;
5939
  height: var(--bs-progress-height);
5940
  overflow: hidden;
5941
  font-size: var(--bs-progress-font-size);
5942
  background-color: var(--bs-progress-bg);
5943
  border-radius: var(--bs-progress-border-radius);
5944
}
5945
 
5946
.progress-bar {
5947
  display: flex;
5948
  flex-direction: column;
5949
  justify-content: center;
5950
  overflow: hidden;
5951
  color: var(--bs-progress-bar-color);
5952
  text-align: center;
5953
  white-space: nowrap;
5954
  background-color: var(--bs-progress-bar-bg);
5955
  transition: var(--bs-progress-bar-transition);
5956
}
16848 stevensc 5957
 
16825 efrain 5958
@media (prefers-reduced-motion: reduce) {
5959
  .progress-bar {
5960
    transition: none;
5961
  }
5962
}
5963
 
5964
.progress-bar-striped {
5965
  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);
5966
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5967
}
5968
 
5969
.progress-bar-animated {
5970
  animation: 1s linear infinite progress-bar-stripes;
5971
}
16848 stevensc 5972
 
16825 efrain 5973
@media (prefers-reduced-motion: reduce) {
5974
  .progress-bar-animated {
5975
    animation: none;
5976
  }
5977
}
5978
 
5979
.list-group {
5980
  --bs-list-group-color: #060c17;
5981
  --bs-list-group-bg: #fff;
5982
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5983
  --bs-list-group-border-width: 1px;
5984
  --bs-list-group-border-radius: 0.25rem;
5985
  --bs-list-group-item-padding-x: 1.25rem;
5986
  --bs-list-group-item-padding-y: 0.75rem;
5987
  --bs-list-group-action-color: #41516c;
5988
  --bs-list-group-action-hover-color: #41516c;
5989
  --bs-list-group-action-hover-bg: #f8f9fa;
5990
  --bs-list-group-action-active-color: #000;
5991
  --bs-list-group-action-active-bg: #e9ecef;
5992
  --bs-list-group-disabled-color: #7987a1;
5993
  --bs-list-group-disabled-bg: #fff;
5994
  --bs-list-group-active-color: #fff;
5995
  --bs-list-group-active-bg: #6571ff;
5996
  --bs-list-group-active-border-color: #6571ff;
5997
  display: flex;
5998
  flex-direction: column;
5999
  padding-left: 0;
6000
  margin-bottom: 0;
6001
  border-radius: var(--bs-list-group-border-radius);
6002
}
6003
 
6004
.list-group-numbered {
6005
  list-style-type: none;
6006
  counter-reset: section;
6007
}
16848 stevensc 6008
 
6009
.list-group-numbered>.list-group-item::before {
16825 efrain 6010
  content: counters(section, ".") ". ";
6011
  counter-increment: section;
6012
}
6013
 
6014
.list-group-item-action {
6015
  width: 100%;
6016
  color: var(--bs-list-group-action-color);
6017
  text-align: inherit;
6018
}
16848 stevensc 6019
 
6020
.list-group-item-action:hover,
6021
.list-group-item-action:focus {
16825 efrain 6022
  z-index: 1;
6023
  color: var(--bs-list-group-action-hover-color);
6024
  text-decoration: none;
6025
  background-color: var(--bs-list-group-action-hover-bg);
6026
}
16848 stevensc 6027
 
16825 efrain 6028
.list-group-item-action:active {
6029
  color: var(--bs-list-group-action-active-color);
6030
  background-color: var(--bs-list-group-action-active-bg);
6031
}
6032
 
6033
.list-group-item {
6034
  position: relative;
6035
  display: block;
6036
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6037
  color: var(--bs-list-group-color);
6038
  background-color: var(--bs-list-group-bg);
6039
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6040
}
16848 stevensc 6041
 
16825 efrain 6042
.list-group-item:first-child {
6043
  border-top-left-radius: inherit;
6044
  border-top-right-radius: inherit;
6045
}
16848 stevensc 6046
 
16825 efrain 6047
.list-group-item:last-child {
6048
  border-bottom-right-radius: inherit;
6049
  border-bottom-left-radius: inherit;
6050
}
16848 stevensc 6051
 
6052
.list-group-item.disabled,
6053
.list-group-item:disabled {
16825 efrain 6054
  color: var(--bs-list-group-disabled-color);
6055
  pointer-events: none;
6056
  background-color: var(--bs-list-group-disabled-bg);
6057
}
16848 stevensc 6058
 
16825 efrain 6059
.list-group-item.active {
6060
  z-index: 2;
6061
  color: var(--bs-list-group-active-color);
6062
  background-color: var(--bs-list-group-active-bg);
6063
  border-color: var(--bs-list-group-active-border-color);
6064
}
16848 stevensc 6065
 
6066
.list-group-item+.list-group-item {
16825 efrain 6067
  border-top-width: 0;
6068
}
16848 stevensc 6069
 
6070
.list-group-item+.list-group-item.active {
16825 efrain 6071
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6072
  border-top-width: var(--bs-list-group-border-width);
6073
}
6074
 
6075
.list-group-horizontal {
6076
  flex-direction: row;
6077
}
16848 stevensc 6078
 
6079
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6080
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6081
  border-top-right-radius: 0;
6082
}
16848 stevensc 6083
 
6084
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6085
  border-top-right-radius: var(--bs-list-group-border-radius);
6086
  border-bottom-left-radius: 0;
6087
}
16848 stevensc 6088
 
6089
.list-group-horizontal>.list-group-item.active {
16825 efrain 6090
  margin-top: 0;
6091
}
16848 stevensc 6092
 
6093
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6094
  border-top-width: var(--bs-list-group-border-width);
6095
  border-left-width: 0;
6096
}
16848 stevensc 6097
 
6098
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6099
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6100
  border-left-width: var(--bs-list-group-border-width);
6101
}
6102
 
6103
@media (min-width: 576px) {
6104
  .list-group-horizontal-sm {
6105
    flex-direction: row;
6106
  }
16848 stevensc 6107
 
6108
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6109
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6110
    border-top-right-radius: 0;
6111
  }
16848 stevensc 6112
 
6113
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6114
    border-top-right-radius: var(--bs-list-group-border-radius);
6115
    border-bottom-left-radius: 0;
6116
  }
16848 stevensc 6117
 
6118
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6119
    margin-top: 0;
6120
  }
16848 stevensc 6121
 
6122
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6123
    border-top-width: var(--bs-list-group-border-width);
6124
    border-left-width: 0;
6125
  }
16848 stevensc 6126
 
6127
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6128
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6129
    border-left-width: var(--bs-list-group-border-width);
6130
  }
6131
}
16848 stevensc 6132
 
16825 efrain 6133
@media (min-width: 768px) {
6134
  .list-group-horizontal-md {
6135
    flex-direction: row;
6136
  }
16848 stevensc 6137
 
6138
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6139
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6140
    border-top-right-radius: 0;
6141
  }
16848 stevensc 6142
 
6143
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6144
    border-top-right-radius: var(--bs-list-group-border-radius);
6145
    border-bottom-left-radius: 0;
6146
  }
16848 stevensc 6147
 
6148
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6149
    margin-top: 0;
6150
  }
16848 stevensc 6151
 
6152
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6153
    border-top-width: var(--bs-list-group-border-width);
6154
    border-left-width: 0;
6155
  }
16848 stevensc 6156
 
6157
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6158
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6159
    border-left-width: var(--bs-list-group-border-width);
6160
  }
6161
}
16848 stevensc 6162
 
16825 efrain 6163
@media (min-width: 992px) {
6164
  .list-group-horizontal-lg {
6165
    flex-direction: row;
6166
  }
16848 stevensc 6167
 
6168
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6169
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6170
    border-top-right-radius: 0;
6171
  }
16848 stevensc 6172
 
6173
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6174
    border-top-right-radius: var(--bs-list-group-border-radius);
6175
    border-bottom-left-radius: 0;
6176
  }
16848 stevensc 6177
 
6178
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6179
    margin-top: 0;
6180
  }
16848 stevensc 6181
 
6182
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6183
    border-top-width: var(--bs-list-group-border-width);
6184
    border-left-width: 0;
6185
  }
16848 stevensc 6186
 
6187
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6188
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6189
    border-left-width: var(--bs-list-group-border-width);
6190
  }
6191
}
16848 stevensc 6192
 
16825 efrain 6193
@media (min-width: 1200px) {
6194
  .list-group-horizontal-xl {
6195
    flex-direction: row;
6196
  }
16848 stevensc 6197
 
6198
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6199
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6200
    border-top-right-radius: 0;
6201
  }
16848 stevensc 6202
 
6203
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6204
    border-top-right-radius: var(--bs-list-group-border-radius);
6205
    border-bottom-left-radius: 0;
6206
  }
16848 stevensc 6207
 
6208
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6209
    margin-top: 0;
6210
  }
16848 stevensc 6211
 
6212
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6213
    border-top-width: var(--bs-list-group-border-width);
6214
    border-left-width: 0;
6215
  }
16848 stevensc 6216
 
6217
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6218
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6219
    border-left-width: var(--bs-list-group-border-width);
6220
  }
6221
}
16848 stevensc 6222
 
16825 efrain 6223
@media (min-width: 1400px) {
6224
  .list-group-horizontal-xxl {
6225
    flex-direction: row;
6226
  }
16848 stevensc 6227
 
6228
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6229
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6230
    border-top-right-radius: 0;
6231
  }
16848 stevensc 6232
 
6233
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6234
    border-top-right-radius: var(--bs-list-group-border-radius);
6235
    border-bottom-left-radius: 0;
6236
  }
16848 stevensc 6237
 
6238
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6239
    margin-top: 0;
6240
  }
16848 stevensc 6241
 
6242
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6243
    border-top-width: var(--bs-list-group-border-width);
6244
    border-left-width: 0;
6245
  }
16848 stevensc 6246
 
6247
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6248
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6249
    border-left-width: var(--bs-list-group-border-width);
6250
  }
6251
}
16848 stevensc 6252
 
16825 efrain 6253
.list-group-flush {
6254
  border-radius: 0;
6255
}
16848 stevensc 6256
 
6257
.list-group-flush>.list-group-item {
16825 efrain 6258
  border-width: 0 0 var(--bs-list-group-border-width);
6259
}
16848 stevensc 6260
 
6261
.list-group-flush>.list-group-item:last-child {
16825 efrain 6262
  border-bottom-width: 0;
6263
}
6264
 
6265
.list-group-item-primary {
6266
  color: #3d4499;
6267
  background-color: #e0e3ff;
6268
}
16848 stevensc 6269
 
6270
.list-group-item-primary.list-group-item-action:hover,
6271
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6272
  color: #3d4499;
6273
  background-color: #cacce6;
6274
}
16848 stevensc 6275
 
16825 efrain 6276
.list-group-item-primary.list-group-item-action.active {
6277
  color: #fff;
6278
  background-color: #3d4499;
6279
  border-color: #3d4499;
6280
}
6281
 
6282
.list-group-item-secondary {
6283
  color: #495161;
6284
  background-color: #e4e7ec;
6285
}
16848 stevensc 6286
 
6287
.list-group-item-secondary.list-group-item-action:hover,
6288
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6289
  color: #495161;
6290
  background-color: #cdd0d4;
6291
}
16848 stevensc 6292
 
16825 efrain 6293
.list-group-item-secondary.list-group-item-action.active {
6294
  color: #fff;
6295
  background-color: #495161;
6296
  border-color: #495161;
6297
}
6298
 
6299
.list-group-item-success {
6300
  color: #03622c;
6301
  background-color: #cdeddb;
6302
}
16848 stevensc 6303
 
6304
.list-group-item-success.list-group-item-action:hover,
6305
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6306
  color: #03622c;
6307
  background-color: #b9d5c5;
6308
}
16848 stevensc 6309
 
16825 efrain 6310
.list-group-item-success.list-group-item-action.active {
6311
  color: #fff;
6312
  background-color: #03622c;
6313
  border-color: #03622c;
6314
}
6315
 
6316
.list-group-item-info {
6317
  color: #3d7d7d;
6318
  background-color: #e0f6f6;
6319
}
16848 stevensc 6320
 
6321
.list-group-item-info.list-group-item-action:hover,
6322
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6323
  color: #3d7d7d;
6324
  background-color: #cadddd;
6325
}
16848 stevensc 6326
 
16825 efrain 6327
.list-group-item-info.list-group-item-action.active {
6328
  color: #fff;
6329
  background-color: #3d7d7d;
6330
  border-color: #3d7d7d;
6331
}
6332
 
6333
.list-group-item-warning {
6334
  color: #977104;
6335
  background-color: #fef2cd;
6336
}
16848 stevensc 6337
 
6338
.list-group-item-warning.list-group-item-action:hover,
6339
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6340
  color: #977104;
6341
  background-color: #e5dab9;
6342
}
16848 stevensc 6343
 
16825 efrain 6344
.list-group-item-warning.list-group-item-action.active {
6345
  color: #fff;
6346
  background-color: #977104;
6347
  border-color: #977104;
6348
}
6349
 
6350
.list-group-item-danger {
6351
  color: #991f3d;
6352
  background-color: #ffd6e0;
6353
}
16848 stevensc 6354
 
6355
.list-group-item-danger.list-group-item-action:hover,
6356
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6357
  color: #991f3d;
6358
  background-color: #e6c1ca;
6359
}
16848 stevensc 6360
 
16825 efrain 6361
.list-group-item-danger.list-group-item-action.active {
6362
  color: #fff;
6363
  background-color: #991f3d;
6364
  border-color: #991f3d;
6365
}
6366
 
6367
.list-group-item-light {
6368
  color: #8c8e8f;
6369
  background-color: #fbfbfc;
6370
}
16848 stevensc 6371
 
6372
.list-group-item-light.list-group-item-action:hover,
6373
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6374
  color: #8c8e8f;
6375
  background-color: #e2e2e3;
6376
}
16848 stevensc 6377
 
16825 efrain 6378
.list-group-item-light.list-group-item-action.active {
6379
  color: #fff;
6380
  background-color: #8c8e8f;
6381
  border-color: #8c8e8f;
6382
}
6383
 
6384
.list-group-item-dark {
6385
  color: #04070e;
6386
  background-color: #cdced1;
6387
}
16848 stevensc 6388
 
6389
.list-group-item-dark.list-group-item-action:hover,
6390
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6391
  color: #04070e;
6392
  background-color: #b9b9bc;
6393
}
16848 stevensc 6394
 
16825 efrain 6395
.list-group-item-dark.list-group-item-action.active {
6396
  color: #fff;
6397
  background-color: #04070e;
6398
  border-color: #04070e;
6399
}
6400
 
6401
.btn-close {
6402
  box-sizing: content-box;
6403
  width: 0.8em;
6404
  height: 0.8em;
6405
  padding: 0.25em 0.25em;
6406
  color: #000;
6407
  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;
6408
  border: 0;
6409
  border-radius: 0.25rem;
6410
  opacity: 0.5;
6411
}
16848 stevensc 6412
 
16825 efrain 6413
.btn-close:hover {
6414
  color: #000;
6415
  text-decoration: none;
6416
  opacity: 0.75;
6417
}
16848 stevensc 6418
 
16825 efrain 6419
.btn-close:focus {
6420
  outline: 0;
6421
  box-shadow: none;
6422
  opacity: 1;
6423
}
16848 stevensc 6424
 
6425
.btn-close:disabled,
6426
.btn-close.disabled {
16825 efrain 6427
  pointer-events: none;
6428
  user-select: none;
6429
  opacity: 0.25;
6430
}
6431
 
6432
.btn-close-white {
6433
  filter: invert(1) grayscale(100%) brightness(200%);
6434
}
6435
 
6436
.toast {
6437
  --bs-toast-zindex: 1090;
6438
  --bs-toast-padding-x: 0.75rem;
6439
  --bs-toast-padding-y: 0.5rem;
6440
  --bs-toast-spacing: 1.5rem;
6441
  --bs-toast-max-width: 350px;
6442
  --bs-toast-font-size: 0.875rem;
6443
  --bs-toast-color: ;
6444
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6445
  --bs-toast-border-width: 1px;
6446
  --bs-toast-border-color: var(--bs-border-color-translucent);
6447
  --bs-toast-border-radius: 0.25rem;
6448
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6449
  --bs-toast-header-color: #7987a1;
6450
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6451
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6452
  width: var(--bs-toast-max-width);
6453
  max-width: 100%;
6454
  font-size: var(--bs-toast-font-size);
6455
  color: var(--bs-toast-color);
6456
  pointer-events: auto;
6457
  background-color: var(--bs-toast-bg);
6458
  background-clip: padding-box;
6459
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6460
  box-shadow: var(--bs-toast-box-shadow);
6461
  border-radius: var(--bs-toast-border-radius);
6462
}
16848 stevensc 6463
 
16825 efrain 6464
.toast.showing {
6465
  opacity: 0;
6466
}
16848 stevensc 6467
 
16825 efrain 6468
.toast:not(.show) {
6469
  display: none;
6470
}
6471
 
6472
.toast-container {
6473
  --bs-toast-zindex: 1090;
6474
  position: absolute;
6475
  z-index: var(--bs-toast-zindex);
6476
  width: max-content;
6477
  max-width: 100%;
6478
  pointer-events: none;
6479
}
16848 stevensc 6480
 
6481
.toast-container> :not(:last-child) {
16825 efrain 6482
  margin-bottom: var(--bs-toast-spacing);
6483
}
6484
 
6485
.toast-header {
6486
  display: flex;
6487
  align-items: center;
6488
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6489
  color: var(--bs-toast-header-color);
6490
  background-color: var(--bs-toast-header-bg);
6491
  background-clip: padding-box;
6492
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6493
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6494
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6495
}
16848 stevensc 6496
 
16825 efrain 6497
.toast-header .btn-close {
6498
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6499
  margin-left: var(--bs-toast-padding-x);
6500
}
6501
 
6502
.toast-body {
6503
  padding: var(--bs-toast-padding-x);
6504
  word-wrap: break-word;
6505
}
6506
 
6507
.modal {
6508
  --bs-modal-zindex: 1055;
6509
  --bs-modal-width: 500px;
6510
  --bs-modal-padding: 1rem;
6511
  --bs-modal-margin: 0.5rem;
6512
  --bs-modal-color: ;
6513
  --bs-modal-bg: #fff;
6514
  --bs-modal-border-color: #e9ecef;
6515
  --bs-modal-border-width: 1px;
6516
  --bs-modal-border-radius: 0.5rem;
6517
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6518
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6519
  --bs-modal-header-padding-x: 1rem;
6520
  --bs-modal-header-padding-y: 1rem;
6521
  --bs-modal-header-padding: 1rem 1rem;
6522
  --bs-modal-header-border-color: var(--bs-border-color);
6523
  --bs-modal-header-border-width: 1px;
6524
  --bs-modal-title-line-height: 1.5;
6525
  --bs-modal-footer-gap: 0.5rem;
6526
  --bs-modal-footer-bg: ;
6527
  --bs-modal-footer-border-color: var(--bs-border-color);
6528
  --bs-modal-footer-border-width: 1px;
6529
  position: fixed;
6530
  top: 0;
6531
  left: 0;
6532
  z-index: var(--bs-modal-zindex);
6533
  display: none;
6534
  width: 100%;
6535
  height: 100%;
6536
  overflow-x: hidden;
6537
  overflow-y: auto;
6538
  outline: 0;
6539
}
6540
 
6541
.modal-dialog {
6542
  position: relative;
6543
  width: auto;
6544
  margin: var(--bs-modal-margin);
6545
  pointer-events: none;
6546
}
16848 stevensc 6547
 
16825 efrain 6548
.modal.fade .modal-dialog {
6549
  transition: transform 0.4s ease;
6550
  transform: scale(0.8);
6551
}
16848 stevensc 6552
 
16825 efrain 6553
@media (prefers-reduced-motion: reduce) {
6554
  .modal.fade .modal-dialog {
6555
    transition: none;
6556
  }
6557
}
16848 stevensc 6558
 
16825 efrain 6559
.modal.show .modal-dialog {
6560
  transform: none;
6561
}
16848 stevensc 6562
 
16825 efrain 6563
.modal.modal-static .modal-dialog {
6564
  transform: scale(1.02);
6565
}
6566
 
6567
.modal-dialog-scrollable {
6568
  height: calc(100% - var(--bs-modal-margin) * 2);
6569
}
16848 stevensc 6570
 
16825 efrain 6571
.modal-dialog-scrollable .modal-content {
6572
  max-height: 100%;
6573
  overflow: hidden;
6574
}
16848 stevensc 6575
 
16825 efrain 6576
.modal-dialog-scrollable .modal-body {
6577
  overflow-y: auto;
6578
}
6579
 
6580
.modal-dialog-centered {
6581
  display: flex;
6582
  align-items: center;
6583
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6584
}
6585
 
6586
.modal-content {
6587
  position: relative;
6588
  display: flex;
6589
  flex-direction: column;
6590
  width: 100%;
6591
  color: var(--bs-modal-color);
6592
  pointer-events: auto;
6593
  background-color: var(--bs-modal-bg);
6594
  background-clip: padding-box;
6595
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6596
  border-radius: var(--bs-modal-border-radius);
6597
  outline: 0;
6598
}
6599
 
6600
.modal-backdrop {
6601
  --bs-backdrop-zindex: 1050;
6602
  --bs-backdrop-bg: #000;
6603
  --bs-backdrop-opacity: 0.5;
6604
  position: fixed;
6605
  top: 0;
6606
  left: 0;
6607
  z-index: var(--bs-backdrop-zindex);
6608
  width: 100vw;
6609
  height: 100vh;
6610
  background-color: var(--bs-backdrop-bg);
6611
}
16848 stevensc 6612
 
16825 efrain 6613
.modal-backdrop.fade {
6614
  opacity: 0;
6615
}
16848 stevensc 6616
 
16825 efrain 6617
.modal-backdrop.show {
6618
  opacity: var(--bs-backdrop-opacity);
6619
}
6620
 
6621
.modal-header {
6622
  display: flex;
6623
  flex-shrink: 0;
6624
  align-items: center;
6625
  justify-content: space-between;
6626
  padding: var(--bs-modal-header-padding);
6627
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6628
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6629
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6630
}
16848 stevensc 6631
 
16825 efrain 6632
.modal-header .btn-close {
6633
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6634
  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;
6635
}
6636
 
6637
.modal-title {
6638
  margin-bottom: 0;
6639
  line-height: var(--bs-modal-title-line-height);
6640
}
6641
 
6642
.modal-body {
6643
  position: relative;
6644
  flex: 1 1 auto;
6645
  padding: var(--bs-modal-padding);
6646
}
6647
 
6648
.modal-footer {
6649
  display: flex;
6650
  flex-shrink: 0;
6651
  flex-wrap: wrap;
6652
  align-items: center;
6653
  justify-content: flex-end;
6654
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6655
  background-color: var(--bs-modal-footer-bg);
6656
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6657
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6658
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6659
}
16848 stevensc 6660
 
6661
.modal-footer>* {
16825 efrain 6662
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6663
}
6664
 
6665
@media (min-width: 576px) {
6666
  .modal {
6667
    --bs-modal-margin: 1.75rem;
6668
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6669
  }
16848 stevensc 6670
 
16825 efrain 6671
  .modal-dialog {
6672
    max-width: var(--bs-modal-width);
6673
    margin-right: auto;
6674
    margin-left: auto;
6675
  }
16848 stevensc 6676
 
16825 efrain 6677
  .modal-sm {
6678
    --bs-modal-width: 300px;
6679
  }
6680
}
16848 stevensc 6681
 
16825 efrain 6682
@media (min-width: 992px) {
16848 stevensc 6683
 
16825 efrain 6684
  .modal-lg,
6685
  .modal-xl {
6686
    --bs-modal-width: 800px;
6687
  }
6688
}
16848 stevensc 6689
 
16825 efrain 6690
@media (min-width: 1200px) {
6691
  .modal-xl {
6692
    --bs-modal-width: 1140px;
6693
  }
6694
}
16848 stevensc 6695
 
16825 efrain 6696
.modal-fullscreen {
6697
  width: 100vw;
6698
  max-width: none;
6699
  height: 100%;
6700
  margin: 0;
6701
}
16848 stevensc 6702
 
16825 efrain 6703
.modal-fullscreen .modal-content {
6704
  height: 100%;
6705
  border: 0;
6706
  border-radius: 0;
6707
}
16848 stevensc 6708
 
16825 efrain 6709
.modal-fullscreen .modal-header,
6710
.modal-fullscreen .modal-footer {
6711
  border-radius: 0;
6712
}
16848 stevensc 6713
 
16825 efrain 6714
.modal-fullscreen .modal-body {
6715
  overflow-y: auto;
6716
}
6717
 
6718
@media (max-width: 575.98px) {
6719
  .modal-fullscreen-sm-down {
6720
    width: 100vw;
6721
    max-width: none;
6722
    height: 100%;
6723
    margin: 0;
6724
  }
16848 stevensc 6725
 
16825 efrain 6726
  .modal-fullscreen-sm-down .modal-content {
6727
    height: 100%;
6728
    border: 0;
6729
    border-radius: 0;
6730
  }
16848 stevensc 6731
 
16825 efrain 6732
  .modal-fullscreen-sm-down .modal-header,
6733
  .modal-fullscreen-sm-down .modal-footer {
6734
    border-radius: 0;
6735
  }
16848 stevensc 6736
 
16825 efrain 6737
  .modal-fullscreen-sm-down .modal-body {
6738
    overflow-y: auto;
6739
  }
6740
}
16848 stevensc 6741
 
16825 efrain 6742
@media (max-width: 767.98px) {
6743
  .modal-fullscreen-md-down {
6744
    width: 100vw;
6745
    max-width: none;
6746
    height: 100%;
6747
    margin: 0;
6748
  }
16848 stevensc 6749
 
16825 efrain 6750
  .modal-fullscreen-md-down .modal-content {
6751
    height: 100%;
6752
    border: 0;
6753
    border-radius: 0;
6754
  }
16848 stevensc 6755
 
16825 efrain 6756
  .modal-fullscreen-md-down .modal-header,
6757
  .modal-fullscreen-md-down .modal-footer {
6758
    border-radius: 0;
6759
  }
16848 stevensc 6760
 
16825 efrain 6761
  .modal-fullscreen-md-down .modal-body {
6762
    overflow-y: auto;
6763
  }
6764
}
16848 stevensc 6765
 
16825 efrain 6766
@media (max-width: 991.98px) {
6767
  .modal-fullscreen-lg-down {
6768
    width: 100vw;
6769
    max-width: none;
6770
    height: 100%;
6771
    margin: 0;
6772
  }
16848 stevensc 6773
 
16825 efrain 6774
  .modal-fullscreen-lg-down .modal-content {
6775
    height: 100%;
6776
    border: 0;
6777
    border-radius: 0;
6778
  }
16848 stevensc 6779
 
16825 efrain 6780
  .modal-fullscreen-lg-down .modal-header,
6781
  .modal-fullscreen-lg-down .modal-footer {
6782
    border-radius: 0;
6783
  }
16848 stevensc 6784
 
16825 efrain 6785
  .modal-fullscreen-lg-down .modal-body {
6786
    overflow-y: auto;
6787
  }
6788
}
16848 stevensc 6789
 
16825 efrain 6790
@media (max-width: 1199.98px) {
6791
  .modal-fullscreen-xl-down {
6792
    width: 100vw;
6793
    max-width: none;
6794
    height: 100%;
6795
    margin: 0;
6796
  }
16848 stevensc 6797
 
16825 efrain 6798
  .modal-fullscreen-xl-down .modal-content {
6799
    height: 100%;
6800
    border: 0;
6801
    border-radius: 0;
6802
  }
16848 stevensc 6803
 
16825 efrain 6804
  .modal-fullscreen-xl-down .modal-header,
6805
  .modal-fullscreen-xl-down .modal-footer {
6806
    border-radius: 0;
6807
  }
16848 stevensc 6808
 
16825 efrain 6809
  .modal-fullscreen-xl-down .modal-body {
6810
    overflow-y: auto;
6811
  }
6812
}
16848 stevensc 6813
 
16825 efrain 6814
@media (max-width: 1399.98px) {
6815
  .modal-fullscreen-xxl-down {
6816
    width: 100vw;
6817
    max-width: none;
6818
    height: 100%;
6819
    margin: 0;
6820
  }
16848 stevensc 6821
 
16825 efrain 6822
  .modal-fullscreen-xxl-down .modal-content {
6823
    height: 100%;
6824
    border: 0;
6825
    border-radius: 0;
6826
  }
16848 stevensc 6827
 
16825 efrain 6828
  .modal-fullscreen-xxl-down .modal-header,
6829
  .modal-fullscreen-xxl-down .modal-footer {
6830
    border-radius: 0;
6831
  }
16848 stevensc 6832
 
16825 efrain 6833
  .modal-fullscreen-xxl-down .modal-body {
6834
    overflow-y: auto;
6835
  }
6836
}
16848 stevensc 6837
 
16825 efrain 6838
.tooltip {
6839
  --bs-tooltip-zindex: 1080;
6840
  --bs-tooltip-max-width: 200px;
6841
  --bs-tooltip-padding-x: 0.5rem;
6842
  --bs-tooltip-padding-y: 0.25rem;
6843
  --bs-tooltip-margin: ;
6844
  --bs-tooltip-font-size: 0.812rem;
6845
  --bs-tooltip-color: #fff;
6846
  --bs-tooltip-bg: #000;
6847
  --bs-tooltip-border-radius: 0.25rem;
6848
  --bs-tooltip-opacity: 0.9;
6849
  --bs-tooltip-arrow-width: 0.8rem;
6850
  --bs-tooltip-arrow-height: 0.4rem;
6851
  z-index: var(--bs-tooltip-zindex);
6852
  display: block;
6853
  padding: var(--bs-tooltip-arrow-height);
6854
  margin: var(--bs-tooltip-margin);
6855
  font-family: var(--bs-font-sans-serif);
6856
  font-style: normal;
6857
  font-weight: 400;
6858
  line-height: 1.5;
6859
  text-align: left;
6860
  text-align: start;
6861
  text-decoration: none;
6862
  text-shadow: none;
6863
  text-transform: none;
6864
  letter-spacing: normal;
6865
  word-break: normal;
6866
  white-space: normal;
6867
  word-spacing: normal;
6868
  line-break: auto;
6869
  font-size: var(--bs-tooltip-font-size);
6870
  word-wrap: break-word;
6871
  opacity: 0;
6872
}
16848 stevensc 6873
 
16825 efrain 6874
.tooltip.show {
6875
  opacity: var(--bs-tooltip-opacity);
6876
}
16848 stevensc 6877
 
16825 efrain 6878
.tooltip .tooltip-arrow {
6879
  display: block;
6880
  width: var(--bs-tooltip-arrow-width);
6881
  height: var(--bs-tooltip-arrow-height);
6882
}
16848 stevensc 6883
 
16825 efrain 6884
.tooltip .tooltip-arrow::before {
6885
  position: absolute;
6886
  content: "";
6887
  border-color: transparent;
6888
  border-style: solid;
6889
}
6890
 
16848 stevensc 6891
.bs-tooltip-top .tooltip-arrow,
6892
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6893
  bottom: 0;
6894
}
16848 stevensc 6895
 
6896
.bs-tooltip-top .tooltip-arrow::before,
6897
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6898
  top: -1px;
6899
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6900
  border-top-color: var(--bs-tooltip-bg);
6901
}
6902
 
6903
/* rtl:begin:ignore */
16848 stevensc 6904
.bs-tooltip-end .tooltip-arrow,
6905
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6906
  left: 0;
6907
  width: var(--bs-tooltip-arrow-height);
6908
  height: var(--bs-tooltip-arrow-width);
6909
}
16848 stevensc 6910
 
6911
.bs-tooltip-end .tooltip-arrow::before,
6912
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6913
  right: -1px;
6914
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6915
  border-right-color: var(--bs-tooltip-bg);
6916
}
6917
 
6918
/* rtl:end:ignore */
16848 stevensc 6919
.bs-tooltip-bottom .tooltip-arrow,
6920
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6921
  top: 0;
6922
}
16848 stevensc 6923
 
6924
.bs-tooltip-bottom .tooltip-arrow::before,
6925
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6926
  bottom: -1px;
6927
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6928
  border-bottom-color: var(--bs-tooltip-bg);
6929
}
6930
 
6931
/* rtl:begin:ignore */
16848 stevensc 6932
.bs-tooltip-start .tooltip-arrow,
6933
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6934
  right: 0;
6935
  width: var(--bs-tooltip-arrow-height);
6936
  height: var(--bs-tooltip-arrow-width);
6937
}
16848 stevensc 6938
 
6939
.bs-tooltip-start .tooltip-arrow::before,
6940
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6941
  left: -1px;
6942
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6943
  border-left-color: var(--bs-tooltip-bg);
6944
}
6945
 
6946
/* rtl:end:ignore */
6947
.tooltip-inner {
6948
  max-width: var(--bs-tooltip-max-width);
6949
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6950
  color: var(--bs-tooltip-color);
6951
  text-align: center;
6952
  background-color: var(--bs-tooltip-bg);
6953
  border-radius: var(--bs-tooltip-border-radius);
6954
}
6955
 
6956
.popover {
6957
  --bs-popover-zindex: 1070;
6958
  --bs-popover-max-width: 276px;
6959
  --bs-popover-font-size: 0.812rem;
6960
  --bs-popover-bg: #fff;
6961
  --bs-popover-border-width: 1px;
6962
  --bs-popover-border-color: #e9ecef;
6963
  --bs-popover-border-radius: 0.5rem;
6964
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6965
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6966
  --bs-popover-header-padding-x: 1rem;
6967
  --bs-popover-header-padding-y: 0.5rem;
6968
  --bs-popover-header-font-size: 0.875rem;
6969
  --bs-popover-header-color: ;
6970
  --bs-popover-header-bg: #e9ecef;
6971
  --bs-popover-body-padding-x: 1rem;
6972
  --bs-popover-body-padding-y: 1rem;
6973
  --bs-popover-body-color: #000;
6974
  --bs-popover-arrow-width: 1rem;
6975
  --bs-popover-arrow-height: 0.5rem;
6976
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6977
  z-index: var(--bs-popover-zindex);
6978
  display: block;
6979
  max-width: var(--bs-popover-max-width);
6980
  font-family: var(--bs-font-sans-serif);
6981
  font-style: normal;
6982
  font-weight: 400;
6983
  line-height: 1.5;
6984
  text-align: left;
6985
  text-align: start;
6986
  text-decoration: none;
6987
  text-shadow: none;
6988
  text-transform: none;
6989
  letter-spacing: normal;
6990
  word-break: normal;
6991
  white-space: normal;
6992
  word-spacing: normal;
6993
  line-break: auto;
6994
  font-size: var(--bs-popover-font-size);
6995
  word-wrap: break-word;
6996
  background-color: var(--bs-popover-bg);
6997
  background-clip: padding-box;
6998
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6999
  border-radius: var(--bs-popover-border-radius);
7000
}
16848 stevensc 7001
 
16825 efrain 7002
.popover .popover-arrow {
7003
  display: block;
7004
  width: var(--bs-popover-arrow-width);
7005
  height: var(--bs-popover-arrow-height);
7006
}
16848 stevensc 7007
 
7008
.popover .popover-arrow::before,
7009
.popover .popover-arrow::after {
16825 efrain 7010
  position: absolute;
7011
  display: block;
7012
  content: "";
7013
  border-color: transparent;
7014
  border-style: solid;
7015
  border-width: 0;
7016
}
7017
 
16848 stevensc 7018
.bs-popover-top>.popover-arrow,
7019
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7020
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7021
}
16848 stevensc 7022
 
7023
.bs-popover-top>.popover-arrow::before,
7024
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7025
.bs-popover-top>.popover-arrow::after,
7026
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7027
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7028
}
16848 stevensc 7029
 
7030
.bs-popover-top>.popover-arrow::before,
7031
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7032
  bottom: 0;
7033
  border-top-color: var(--bs-popover-arrow-border);
7034
}
16848 stevensc 7035
 
7036
.bs-popover-top>.popover-arrow::after,
7037
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7038
  bottom: var(--bs-popover-border-width);
7039
  border-top-color: var(--bs-popover-bg);
7040
}
7041
 
7042
/* rtl:begin:ignore */
16848 stevensc 7043
.bs-popover-end>.popover-arrow,
7044
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7045
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7046
  width: var(--bs-popover-arrow-height);
7047
  height: var(--bs-popover-arrow-width);
7048
}
16848 stevensc 7049
 
7050
.bs-popover-end>.popover-arrow::before,
7051
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7052
.bs-popover-end>.popover-arrow::after,
7053
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7054
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7055
}
16848 stevensc 7056
 
7057
.bs-popover-end>.popover-arrow::before,
7058
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7059
  left: 0;
7060
  border-right-color: var(--bs-popover-arrow-border);
7061
}
16848 stevensc 7062
 
7063
.bs-popover-end>.popover-arrow::after,
7064
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7065
  left: var(--bs-popover-border-width);
7066
  border-right-color: var(--bs-popover-bg);
7067
}
7068
 
7069
/* rtl:end:ignore */
16848 stevensc 7070
.bs-popover-bottom>.popover-arrow,
7071
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7072
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7073
}
16848 stevensc 7074
 
7075
.bs-popover-bottom>.popover-arrow::before,
7076
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7077
.bs-popover-bottom>.popover-arrow::after,
7078
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7079
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7080
}
16848 stevensc 7081
 
7082
.bs-popover-bottom>.popover-arrow::before,
7083
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7084
  top: 0;
7085
  border-bottom-color: var(--bs-popover-arrow-border);
7086
}
16848 stevensc 7087
 
7088
.bs-popover-bottom>.popover-arrow::after,
7089
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7090
  top: var(--bs-popover-border-width);
7091
  border-bottom-color: var(--bs-popover-bg);
7092
}
16848 stevensc 7093
 
7094
.bs-popover-bottom .popover-header::before,
7095
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7096
  position: absolute;
7097
  top: 0;
7098
  left: 50%;
7099
  display: block;
7100
  width: var(--bs-popover-arrow-width);
7101
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7102
  content: "";
7103
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7104
}
7105
 
7106
/* rtl:begin:ignore */
16848 stevensc 7107
.bs-popover-start>.popover-arrow,
7108
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7109
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7110
  width: var(--bs-popover-arrow-height);
7111
  height: var(--bs-popover-arrow-width);
7112
}
16848 stevensc 7113
 
7114
.bs-popover-start>.popover-arrow::before,
7115
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7116
.bs-popover-start>.popover-arrow::after,
7117
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7118
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7119
}
16848 stevensc 7120
 
7121
.bs-popover-start>.popover-arrow::before,
7122
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7123
  right: 0;
7124
  border-left-color: var(--bs-popover-arrow-border);
7125
}
16848 stevensc 7126
 
7127
.bs-popover-start>.popover-arrow::after,
7128
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7129
  right: var(--bs-popover-border-width);
7130
  border-left-color: var(--bs-popover-bg);
7131
}
7132
 
7133
/* rtl:end:ignore */
7134
.popover-header {
7135
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7136
  margin-bottom: 0;
7137
  font-size: var(--bs-popover-header-font-size);
7138
  color: var(--bs-popover-header-color);
7139
  background-color: var(--bs-popover-header-bg);
7140
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7141
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7142
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7143
}
16848 stevensc 7144
 
16825 efrain 7145
.popover-header:empty {
7146
  display: none;
7147
}
7148
 
7149
.popover-body {
7150
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7151
  color: var(--bs-popover-body-color);
7152
}
7153
 
7154
.carousel {
7155
  position: relative;
7156
}
7157
 
7158
.carousel.pointer-event {
7159
  touch-action: pan-y;
7160
}
7161
 
7162
.carousel-inner {
7163
  position: relative;
7164
  width: 100%;
7165
  overflow: hidden;
7166
}
16848 stevensc 7167
 
16825 efrain 7168
.carousel-inner::after {
7169
  display: block;
7170
  clear: both;
7171
  content: "";
7172
}
7173
 
7174
.carousel-item {
7175
  position: relative;
7176
  display: none;
7177
  float: left;
7178
  width: 100%;
7179
  margin-right: -100%;
7180
  backface-visibility: hidden;
7181
  transition: transform 0.6s ease-in-out;
7182
}
16848 stevensc 7183
 
16825 efrain 7184
@media (prefers-reduced-motion: reduce) {
7185
  .carousel-item {
7186
    transition: none;
7187
  }
7188
}
7189
 
7190
.carousel-item.active,
7191
.carousel-item-next,
7192
.carousel-item-prev {
7193
  display: block;
7194
}
7195
 
7196
/* rtl:begin:ignore */
7197
.carousel-item-next:not(.carousel-item-start),
7198
.active.carousel-item-end {
7199
  transform: translateX(100%);
7200
}
7201
 
7202
.carousel-item-prev:not(.carousel-item-end),
7203
.active.carousel-item-start {
7204
  transform: translateX(-100%);
7205
}
7206
 
7207
/* rtl:end:ignore */
7208
.carousel-fade .carousel-item {
7209
  opacity: 0;
7210
  transition-property: opacity;
7211
  transform: none;
7212
}
16848 stevensc 7213
 
16825 efrain 7214
.carousel-fade .carousel-item.active,
7215
.carousel-fade .carousel-item-next.carousel-item-start,
7216
.carousel-fade .carousel-item-prev.carousel-item-end {
7217
  z-index: 1;
7218
  opacity: 1;
7219
}
16848 stevensc 7220
 
16825 efrain 7221
.carousel-fade .active.carousel-item-start,
7222
.carousel-fade .active.carousel-item-end {
7223
  z-index: 0;
7224
  opacity: 0;
7225
  transition: opacity 0s 0.6s;
7226
}
16848 stevensc 7227
 
16825 efrain 7228
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7229
 
16825 efrain 7230
  .carousel-fade .active.carousel-item-start,
7231
  .carousel-fade .active.carousel-item-end {
7232
    transition: none;
7233
  }
7234
}
7235
 
7236
.carousel-control-prev,
7237
.carousel-control-next {
7238
  position: absolute;
7239
  top: 0;
7240
  bottom: 0;
7241
  z-index: 1;
7242
  display: flex;
7243
  align-items: center;
7244
  justify-content: center;
7245
  width: 15%;
7246
  padding: 0;
7247
  color: #fff;
7248
  text-align: center;
7249
  background: none;
7250
  border: 0;
7251
  opacity: 0.5;
7252
  transition: opacity 0.15s ease;
7253
}
16848 stevensc 7254
 
16825 efrain 7255
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7256
 
16825 efrain 7257
  .carousel-control-prev,
7258
  .carousel-control-next {
7259
    transition: none;
7260
  }
7261
}
16848 stevensc 7262
 
7263
.carousel-control-prev:hover,
7264
.carousel-control-prev:focus,
16825 efrain 7265
.carousel-control-next:hover,
7266
.carousel-control-next:focus {
7267
  color: #fff;
7268
  text-decoration: none;
7269
  outline: 0;
7270
  opacity: 0.9;
7271
}
7272
 
7273
.carousel-control-prev {
7274
  left: 0;
7275
}
7276
 
7277
.carousel-control-next {
7278
  right: 0;
7279
}
7280
 
7281
.carousel-control-prev-icon,
7282
.carousel-control-next-icon {
7283
  display: inline-block;
7284
  width: 2rem;
7285
  height: 2rem;
7286
  background-repeat: no-repeat;
7287
  background-position: 50%;
7288
  background-size: 100% 100%;
7289
}
7290
 
7291
/* rtl:options: {
7292
  "autoRename": true,
7293
  "stringMap":[ {
7294
    "name"    : "prev-next",
7295
    "search"  : "prev",
7296
    "replace" : "next"
7297
  } ]
7298
} */
7299
.carousel-control-prev-icon {
7300
  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");
7301
}
7302
 
7303
.carousel-control-next-icon {
7304
  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");
7305
}
7306
 
7307
.carousel-indicators {
7308
  position: absolute;
7309
  right: 0;
7310
  bottom: 0;
7311
  left: 0;
7312
  z-index: 2;
7313
  display: flex;
7314
  justify-content: center;
7315
  padding: 0;
7316
  margin-right: 15%;
7317
  margin-bottom: 1rem;
7318
  margin-left: 15%;
7319
  list-style: none;
7320
}
16848 stevensc 7321
 
16825 efrain 7322
.carousel-indicators [data-bs-target] {
7323
  box-sizing: content-box;
7324
  flex: 0 1 auto;
7325
  width: 30px;
7326
  height: 3px;
7327
  padding: 0;
7328
  margin-right: 3px;
7329
  margin-left: 3px;
7330
  text-indent: -999px;
7331
  cursor: pointer;
7332
  background-color: #fff;
7333
  background-clip: padding-box;
7334
  border: 0;
7335
  border-top: 10px solid transparent;
7336
  border-bottom: 10px solid transparent;
7337
  opacity: 0.5;
7338
  transition: opacity 0.6s ease;
7339
}
16848 stevensc 7340
 
16825 efrain 7341
@media (prefers-reduced-motion: reduce) {
7342
  .carousel-indicators [data-bs-target] {
7343
    transition: none;
7344
  }
7345
}
16848 stevensc 7346
 
16825 efrain 7347
.carousel-indicators .active {
7348
  opacity: 1;
7349
}
7350
 
7351
.carousel-caption {
7352
  position: absolute;
7353
  right: 15%;
7354
  bottom: 1.25rem;
7355
  left: 15%;
7356
  padding-top: 1.25rem;
7357
  padding-bottom: 1.25rem;
7358
  color: #fff;
7359
  text-align: center;
7360
}
7361
 
7362
.carousel-dark .carousel-control-prev-icon,
7363
.carousel-dark .carousel-control-next-icon {
7364
  filter: invert(1) grayscale(100);
7365
}
16848 stevensc 7366
 
16825 efrain 7367
.carousel-dark .carousel-indicators [data-bs-target] {
7368
  background-color: #000;
7369
}
16848 stevensc 7370
 
16825 efrain 7371
.carousel-dark .carousel-caption {
7372
  color: #000;
7373
}
7374
 
7375
.spinner-grow,
7376
.spinner-border {
7377
  display: inline-block;
7378
  width: var(--bs-spinner-width);
7379
  height: var(--bs-spinner-height);
7380
  vertical-align: var(--bs-spinner-vertical-align);
7381
  border-radius: 50%;
7382
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7383
}
7384
 
7385
@keyframes spinner-border {
7386
  to {
16848 stevensc 7387
    transform: rotate(360deg)
7388
      /* rtl:ignore */
7389
    ;
16825 efrain 7390
  }
7391
}
16848 stevensc 7392
 
16825 efrain 7393
.spinner-border {
7394
  --bs-spinner-width: 2rem;
7395
  --bs-spinner-height: 2rem;
7396
  --bs-spinner-vertical-align: -0.125em;
7397
  --bs-spinner-border-width: 0.25em;
7398
  --bs-spinner-animation-speed: 0.75s;
7399
  --bs-spinner-animation-name: spinner-border;
7400
  border: var(--bs-spinner-border-width) solid currentcolor;
7401
  border-right-color: transparent;
7402
}
7403
 
7404
.spinner-border-sm {
7405
  --bs-spinner-width: 1rem;
7406
  --bs-spinner-height: 1rem;
7407
  --bs-spinner-border-width: 0.2em;
7408
}
7409
 
7410
@keyframes spinner-grow {
7411
  0% {
7412
    transform: scale(0);
7413
  }
16848 stevensc 7414
 
16825 efrain 7415
  50% {
7416
    opacity: 1;
7417
    transform: none;
7418
  }
7419
}
16848 stevensc 7420
 
16825 efrain 7421
.spinner-grow {
7422
  --bs-spinner-width: 2rem;
7423
  --bs-spinner-height: 2rem;
7424
  --bs-spinner-vertical-align: -0.125em;
7425
  --bs-spinner-animation-speed: 0.75s;
7426
  --bs-spinner-animation-name: spinner-grow;
7427
  background-color: currentcolor;
7428
  opacity: 0;
7429
}
7430
 
7431
.spinner-grow-sm {
7432
  --bs-spinner-width: 1rem;
7433
  --bs-spinner-height: 1rem;
7434
}
7435
 
7436
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7437
 
16825 efrain 7438
  .spinner-border,
7439
  .spinner-grow {
7440
    --bs-spinner-animation-speed: 1.5s;
7441
  }
7442
}
16848 stevensc 7443
 
16825 efrain 7444
.clearfix::after {
7445
  display: block;
7446
  clear: both;
7447
  content: "";
7448
}
7449
 
7450
.text-bg-primary {
7451
  color: #fff !important;
7452
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7453
}
7454
 
7455
.text-bg-secondary {
7456
  color: #fff !important;
7457
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7458
}
7459
 
7460
.text-bg-success {
7461
  color: #fff !important;
7462
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7463
}
7464
 
7465
.text-bg-info {
7466
  color: #000 !important;
7467
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7468
}
7469
 
7470
.text-bg-warning {
7471
  color: #000 !important;
7472
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7473
}
7474
 
7475
.text-bg-danger {
7476
  color: #fff !important;
7477
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7478
}
7479
 
7480
.text-bg-light {
7481
  color: #000 !important;
7482
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7483
}
7484
 
7485
.text-bg-dark {
7486
  color: #fff !important;
7487
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7488
}
7489
 
7490
.link-primary {
7491
  color: #6571ff !important;
7492
}
16848 stevensc 7493
 
7494
.link-primary:hover,
7495
.link-primary:focus {
16825 efrain 7496
  color: #515acc !important;
7497
}
7498
 
7499
.link-secondary {
7500
  color: #7987a1 !important;
7501
}
16848 stevensc 7502
 
7503
.link-secondary:hover,
7504
.link-secondary:focus {
16825 efrain 7505
  color: #616c81 !important;
7506
}
7507
 
7508
.link-success {
7509
  color: #05a34a !important;
7510
}
16848 stevensc 7511
 
7512
.link-success:hover,
7513
.link-success:focus {
16825 efrain 7514
  color: #04823b !important;
7515
}
7516
 
7517
.link-info {
7518
  color: #66d1d1 !important;
7519
}
16848 stevensc 7520
 
7521
.link-info:hover,
7522
.link-info:focus {
16825 efrain 7523
  color: #85dada !important;
7524
}
7525
 
7526
.link-warning {
7527
  color: #fbbc06 !important;
7528
}
16848 stevensc 7529
 
7530
.link-warning:hover,
7531
.link-warning:focus {
16825 efrain 7532
  color: #fcc938 !important;
7533
}
7534
 
7535
.link-danger {
7536
  color: #ff3366 !important;
7537
}
16848 stevensc 7538
 
7539
.link-danger:hover,
7540
.link-danger:focus {
16825 efrain 7541
  color: #cc2952 !important;
7542
}
7543
 
7544
.link-light {
7545
  color: #e9ecef !important;
7546
}
16848 stevensc 7547
 
7548
.link-light:hover,
7549
.link-light:focus {
16825 efrain 7550
  color: #edf0f2 !important;
7551
}
7552
 
7553
.link-dark {
7554
  color: #060c17 !important;
7555
}
16848 stevensc 7556
 
7557
.link-dark:hover,
7558
.link-dark:focus {
16825 efrain 7559
  color: #050a12 !important;
7560
}
7561
 
7562
.ratio {
7563
  position: relative;
7564
  width: 100%;
7565
}
16848 stevensc 7566
 
16825 efrain 7567
.ratio::before {
7568
  display: block;
7569
  padding-top: var(--bs-aspect-ratio);
7570
  content: "";
7571
}
16848 stevensc 7572
 
7573
.ratio>* {
16825 efrain 7574
  position: absolute;
7575
  top: 0;
7576
  left: 0;
7577
  width: 100%;
7578
  height: 100%;
7579
}
7580
 
7581
.ratio-1x1 {
7582
  --bs-aspect-ratio: 100%;
7583
}
7584
 
7585
.ratio-4x3 {
7586
  --bs-aspect-ratio: 75%;
7587
}
7588
 
7589
.ratio-16x9 {
7590
  --bs-aspect-ratio: 56.25%;
7591
}
7592
 
7593
.ratio-21x9 {
7594
  --bs-aspect-ratio: 42.8571428571%;
7595
}
7596
 
7597
.fixed-top {
7598
  position: fixed;
7599
  top: 0;
7600
  right: 0;
7601
  left: 0;
7602
  z-index: 1030;
7603
}
7604
 
7605
.fixed-bottom {
7606
  position: fixed;
7607
  right: 0;
7608
  bottom: 0;
7609
  left: 0;
7610
  z-index: 1030;
7611
}
7612
 
7613
.sticky-top {
7614
  position: sticky;
7615
  top: 0;
7616
  z-index: 1020;
7617
}
7618
 
7619
.sticky-bottom {
7620
  position: sticky;
7621
  bottom: 0;
7622
  z-index: 1020;
7623
}
7624
 
7625
@media (min-width: 576px) {
7626
  .sticky-sm-top {
7627
    position: sticky;
7628
    top: 0;
7629
    z-index: 1020;
7630
  }
16848 stevensc 7631
 
16825 efrain 7632
  .sticky-sm-bottom {
7633
    position: sticky;
7634
    bottom: 0;
7635
    z-index: 1020;
7636
  }
7637
}
16848 stevensc 7638
 
16825 efrain 7639
@media (min-width: 768px) {
7640
  .sticky-md-top {
7641
    position: sticky;
7642
    top: 0;
7643
    z-index: 1020;
7644
  }
16848 stevensc 7645
 
16825 efrain 7646
  .sticky-md-bottom {
7647
    position: sticky;
7648
    bottom: 0;
7649
    z-index: 1020;
7650
  }
7651
}
16848 stevensc 7652
 
16825 efrain 7653
@media (min-width: 992px) {
7654
  .sticky-lg-top {
7655
    position: sticky;
7656
    top: 0;
7657
    z-index: 1020;
7658
  }
16848 stevensc 7659
 
16825 efrain 7660
  .sticky-lg-bottom {
7661
    position: sticky;
7662
    bottom: 0;
7663
    z-index: 1020;
7664
  }
7665
}
16848 stevensc 7666
 
16825 efrain 7667
@media (min-width: 1200px) {
7668
  .sticky-xl-top {
7669
    position: sticky;
7670
    top: 0;
7671
    z-index: 1020;
7672
  }
16848 stevensc 7673
 
16825 efrain 7674
  .sticky-xl-bottom {
7675
    position: sticky;
7676
    bottom: 0;
7677
    z-index: 1020;
7678
  }
7679
}
16848 stevensc 7680
 
16825 efrain 7681
@media (min-width: 1400px) {
7682
  .sticky-xxl-top {
7683
    position: sticky;
7684
    top: 0;
7685
    z-index: 1020;
7686
  }
16848 stevensc 7687
 
16825 efrain 7688
  .sticky-xxl-bottom {
7689
    position: sticky;
7690
    bottom: 0;
7691
    z-index: 1020;
7692
  }
7693
}
16848 stevensc 7694
 
16825 efrain 7695
.hstack {
7696
  display: flex;
7697
  flex-direction: row;
7698
  align-items: center;
7699
  align-self: stretch;
7700
}
7701
 
7702
.vstack {
7703
  display: flex;
7704
  flex: 1 1 auto;
7705
  flex-direction: column;
7706
  align-self: stretch;
7707
}
7708
 
7709
.visually-hidden,
7710
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7711
  position: absolute !important;
7712
  width: 1px !important;
7713
  height: 1px !important;
7714
  padding: 0 !important;
7715
  margin: -1px !important;
7716
  overflow: hidden !important;
7717
  clip: rect(0, 0, 0, 0) !important;
7718
  white-space: nowrap !important;
7719
  border: 0 !important;
7720
}
7721
 
7722
.stretched-link::after {
7723
  position: absolute;
7724
  top: 0;
7725
  right: 0;
7726
  bottom: 0;
7727
  left: 0;
7728
  z-index: 1;
7729
  content: "";
7730
}
7731
 
7732
.text-truncate {
7733
  overflow: hidden;
7734
  text-overflow: ellipsis;
7735
  white-space: nowrap;
7736
}
7737
 
7738
.vr {
7739
  display: inline-block;
7740
  align-self: stretch;
7741
  width: 1px;
7742
  min-height: 1em;
7743
  background-color: currentcolor;
7744
  opacity: 0.1;
7745
}
7746
 
7747
.align-baseline {
7748
  vertical-align: baseline !important;
7749
}
7750
 
7751
.align-top {
7752
  vertical-align: top !important;
7753
}
7754
 
7755
.align-middle {
7756
  vertical-align: middle !important;
7757
}
7758
 
7759
.align-bottom {
7760
  vertical-align: bottom !important;
7761
}
7762
 
7763
.align-text-bottom {
7764
  vertical-align: text-bottom !important;
7765
}
7766
 
7767
.align-text-top {
7768
  vertical-align: text-top !important;
7769
}
7770
 
7771
.float-start {
7772
  float: left !important;
7773
}
7774
 
7775
.float-end {
7776
  float: right !important;
7777
}
7778
 
7779
.float-none {
7780
  float: none !important;
7781
}
7782
 
7783
.opacity-0 {
7784
  opacity: 0 !important;
7785
}
7786
 
7787
.opacity-25 {
7788
  opacity: 0.25 !important;
7789
}
7790
 
7791
.opacity-50 {
7792
  opacity: 0.5 !important;
7793
}
7794
 
7795
.opacity-75 {
7796
  opacity: 0.75 !important;
7797
}
7798
 
7799
.opacity-100 {
7800
  opacity: 1 !important;
7801
}
7802
 
7803
.overflow-auto {
7804
  overflow: auto !important;
7805
}
7806
 
7807
.overflow-hidden {
7808
  overflow: hidden !important;
7809
}
7810
 
7811
.overflow-visible {
7812
  overflow: visible !important;
7813
}
7814
 
7815
.overflow-scroll {
7816
  overflow: scroll !important;
7817
}
7818
 
7819
.d-inline {
7820
  display: inline !important;
7821
}
7822
 
7823
.d-inline-block {
7824
  display: inline-block !important;
7825
}
7826
 
7827
.d-block {
7828
  display: block !important;
7829
}
7830
 
7831
.d-grid {
7832
  display: grid !important;
7833
}
7834
 
7835
.d-table {
7836
  display: table !important;
7837
}
7838
 
7839
.d-table-row {
7840
  display: table-row !important;
7841
}
7842
 
7843
.d-table-cell {
7844
  display: table-cell !important;
7845
}
7846
 
7847
.d-flex {
7848
  display: flex !important;
7849
}
7850
 
7851
.d-inline-flex {
7852
  display: inline-flex !important;
7853
}
7854
 
16848 stevensc 7855
.d-none,
7856
.navbar .search-form {
16825 efrain 7857
  display: none !important;
7858
}
7859
 
7860
.shadow {
7861
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7862
}
7863
 
7864
.shadow-sm {
7865
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7866
}
7867
 
7868
.shadow-lg {
7869
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7870
}
7871
 
7872
.shadow-none {
7873
  box-shadow: none !important;
7874
}
7875
 
7876
.position-static {
7877
  position: static !important;
7878
}
7879
 
7880
.position-relative {
7881
  position: relative !important;
7882
}
7883
 
7884
.position-absolute {
7885
  position: absolute !important;
7886
}
7887
 
7888
.position-fixed {
7889
  position: fixed !important;
7890
}
7891
 
7892
.position-sticky {
7893
  position: sticky !important;
7894
}
7895
 
7896
.top-0 {
7897
  top: 0 !important;
7898
}
7899
 
7900
.top-10 {
7901
  top: 10% !important;
7902
}
7903
 
7904
.top-20 {
7905
  top: 20% !important;
7906
}
7907
 
7908
.top-25 {
7909
  top: 25% !important;
7910
}
7911
 
7912
.top-30 {
7913
  top: 30% !important;
7914
}
7915
 
7916
.top-40 {
7917
  top: 40% !important;
7918
}
7919
 
7920
.top-50 {
7921
  top: 50% !important;
7922
}
7923
 
7924
.top-60 {
7925
  top: 60% !important;
7926
}
7927
 
7928
.top-70 {
7929
  top: 70% !important;
7930
}
7931
 
7932
.top-75 {
7933
  top: 75% !important;
7934
}
7935
 
7936
.top-80 {
7937
  top: 80% !important;
7938
}
7939
 
7940
.top-90 {
7941
  top: 90% !important;
7942
}
7943
 
7944
.top-100 {
7945
  top: 100% !important;
7946
}
7947
 
7948
.bottom-0 {
7949
  bottom: 0 !important;
7950
}
7951
 
7952
.bottom-10 {
7953
  bottom: 10% !important;
7954
}
7955
 
7956
.bottom-20 {
7957
  bottom: 20% !important;
7958
}
7959
 
7960
.bottom-25 {
7961
  bottom: 25% !important;
7962
}
7963
 
7964
.bottom-30 {
7965
  bottom: 30% !important;
7966
}
7967
 
7968
.bottom-40 {
7969
  bottom: 40% !important;
7970
}
7971
 
7972
.bottom-50 {
7973
  bottom: 50% !important;
7974
}
7975
 
7976
.bottom-60 {
7977
  bottom: 60% !important;
7978
}
7979
 
7980
.bottom-70 {
7981
  bottom: 70% !important;
7982
}
7983
 
7984
.bottom-75 {
7985
  bottom: 75% !important;
7986
}
7987
 
7988
.bottom-80 {
7989
  bottom: 80% !important;
7990
}
7991
 
7992
.bottom-90 {
7993
  bottom: 90% !important;
7994
}
7995
 
7996
.bottom-100 {
7997
  bottom: 100% !important;
7998
}
7999
 
8000
.start-0 {
8001
  left: 0 !important;
8002
}
8003
 
8004
.start-10 {
8005
  left: 10% !important;
8006
}
8007
 
8008
.start-20 {
8009
  left: 20% !important;
8010
}
8011
 
8012
.start-25 {
8013
  left: 25% !important;
8014
}
8015
 
8016
.start-30 {
8017
  left: 30% !important;
8018
}
8019
 
8020
.start-40 {
8021
  left: 40% !important;
8022
}
8023
 
8024
.start-50 {
8025
  left: 50% !important;
8026
}
8027
 
8028
.start-60 {
8029
  left: 60% !important;
8030
}
8031
 
8032
.start-70 {
8033
  left: 70% !important;
8034
}
8035
 
8036
.start-75 {
8037
  left: 75% !important;
8038
}
8039
 
8040
.start-80 {
8041
  left: 80% !important;
8042
}
8043
 
8044
.start-90 {
8045
  left: 90% !important;
8046
}
8047
 
8048
.start-100 {
8049
  left: 100% !important;
8050
}
8051
 
8052
.end-0 {
8053
  right: 0 !important;
8054
}
8055
 
8056
.end-10 {
8057
  right: 10% !important;
8058
}
8059
 
8060
.end-20 {
8061
  right: 20% !important;
8062
}
8063
 
8064
.end-25 {
8065
  right: 25% !important;
8066
}
8067
 
8068
.end-30 {
8069
  right: 30% !important;
8070
}
8071
 
8072
.end-40 {
8073
  right: 40% !important;
8074
}
8075
 
8076
.end-50 {
8077
  right: 50% !important;
8078
}
8079
 
8080
.end-60 {
8081
  right: 60% !important;
8082
}
8083
 
8084
.end-70 {
8085
  right: 70% !important;
8086
}
8087
 
8088
.end-75 {
8089
  right: 75% !important;
8090
}
8091
 
8092
.end-80 {
8093
  right: 80% !important;
8094
}
8095
 
8096
.end-90 {
8097
  right: 90% !important;
8098
}
8099
 
8100
.end-100 {
8101
  right: 100% !important;
8102
}
8103
 
8104
.translate-middle {
8105
  transform: translate(-50%, -50%) !important;
8106
}
8107
 
8108
.translate-middle-x {
8109
  transform: translateX(-50%) !important;
8110
}
8111
 
8112
.translate-middle-y {
8113
  transform: translateY(-50%) !important;
8114
}
8115
 
8116
.border {
8117
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8118
}
8119
 
8120
.border-0 {
8121
  border: 0 !important;
8122
}
8123
 
8124
.border-top {
8125
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8126
}
8127
 
8128
.border-top-0 {
8129
  border-top: 0 !important;
8130
}
8131
 
8132
.border-end {
8133
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8134
}
8135
 
8136
.border-end-0 {
8137
  border-right: 0 !important;
8138
}
8139
 
8140
.border-bottom {
8141
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8142
}
8143
 
8144
.border-bottom-0 {
8145
  border-bottom: 0 !important;
8146
}
8147
 
8148
.border-start {
8149
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8150
}
8151
 
8152
.border-start-0 {
8153
  border-left: 0 !important;
8154
}
8155
 
8156
.border-primary {
8157
  --bs-border-opacity: 1;
8158
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8159
}
8160
 
8161
.border-secondary {
8162
  --bs-border-opacity: 1;
8163
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8164
}
8165
 
8166
.border-success {
8167
  --bs-border-opacity: 1;
8168
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8169
}
8170
 
8171
.border-info {
8172
  --bs-border-opacity: 1;
8173
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8174
}
8175
 
8176
.border-warning {
8177
  --bs-border-opacity: 1;
8178
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8179
}
8180
 
16848 stevensc 8181
.border-danger,
8182
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8183
  --bs-border-opacity: 1;
8184
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8185
}
8186
 
8187
.border-light {
8188
  --bs-border-opacity: 1;
8189
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8190
}
8191
 
8192
.border-dark {
8193
  --bs-border-opacity: 1;
8194
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8195
}
8196
 
8197
.border-white {
8198
  --bs-border-opacity: 1;
8199
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8200
}
8201
 
8202
.border-1 {
8203
  --bs-border-width: 1px;
8204
}
8205
 
8206
.border-2 {
8207
  --bs-border-width: 2px;
8208
}
8209
 
8210
.border-3 {
8211
  --bs-border-width: 3px;
8212
}
8213
 
8214
.border-4 {
8215
  --bs-border-width: 4px;
8216
}
8217
 
8218
.border-5 {
8219
  --bs-border-width: 5px;
8220
}
8221
 
8222
.border-opacity-10 {
8223
  --bs-border-opacity: 0.1;
8224
}
8225
 
8226
.border-opacity-25 {
8227
  --bs-border-opacity: 0.25;
8228
}
8229
 
8230
.border-opacity-50 {
8231
  --bs-border-opacity: 0.5;
8232
}
8233
 
8234
.border-opacity-75 {
8235
  --bs-border-opacity: 0.75;
8236
}
8237
 
8238
.border-opacity-100 {
8239
  --bs-border-opacity: 1;
8240
}
8241
 
16854 stevensc 8242
.w-fit {
8243
  width: fit-content !important;
8244
}
8245
 
16825 efrain 8246
.w-25 {
8247
  width: 25% !important;
8248
}
8249
 
8250
.w-50 {
8251
  width: 50% !important;
8252
}
8253
 
8254
.w-75 {
8255
  width: 75% !important;
8256
}
8257
 
8258
.w-100 {
8259
  width: 100% !important;
8260
}
8261
 
8262
.w-auto {
8263
  width: auto !important;
8264
}
8265
 
8266
.mw-100 {
8267
  max-width: 100% !important;
8268
}
8269
 
8270
.vw-100 {
8271
  width: 100vw !important;
8272
}
8273
 
8274
.min-vw-100 {
8275
  min-width: 100vw !important;
8276
}
8277
 
8278
.h-25 {
8279
  height: 25% !important;
8280
}
8281
 
8282
.h-50 {
8283
  height: 50% !important;
8284
}
8285
 
8286
.h-75 {
8287
  height: 75% !important;
8288
}
8289
 
8290
.h-100 {
8291
  height: 100% !important;
8292
}
8293
 
8294
.h-auto {
8295
  height: auto !important;
8296
}
8297
 
8298
.mh-100 {
8299
  max-height: 100% !important;
8300
}
8301
 
8302
.vh-100 {
8303
  height: 100vh !important;
8304
}
8305
 
8306
.min-vh-100 {
8307
  min-height: 100vh !important;
8308
}
8309
 
8310
.flex-fill {
8311
  flex: 1 1 auto !important;
8312
}
8313
 
8314
.flex-row {
8315
  flex-direction: row !important;
8316
}
8317
 
8318
.flex-column {
8319
  flex-direction: column !important;
8320
}
8321
 
8322
.flex-row-reverse {
8323
  flex-direction: row-reverse !important;
8324
}
8325
 
8326
.flex-column-reverse {
8327
  flex-direction: column-reverse !important;
8328
}
8329
 
8330
.flex-grow-0 {
8331
  flex-grow: 0 !important;
8332
}
8333
 
8334
.flex-grow-1 {
8335
  flex-grow: 1 !important;
8336
}
8337
 
8338
.flex-shrink-0 {
8339
  flex-shrink: 0 !important;
8340
}
8341
 
8342
.flex-shrink-1 {
8343
  flex-shrink: 1 !important;
8344
}
8345
 
8346
.flex-wrap {
8347
  flex-wrap: wrap !important;
8348
}
8349
 
8350
.flex-nowrap {
8351
  flex-wrap: nowrap !important;
8352
}
8353
 
8354
.flex-wrap-reverse {
8355
  flex-wrap: wrap-reverse !important;
8356
}
8357
 
8358
.justify-content-start {
8359
  justify-content: flex-start !important;
8360
}
8361
 
8362
.justify-content-end {
8363
  justify-content: flex-end !important;
8364
}
8365
 
16848 stevensc 8366
.justify-content-center,
8367
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8368
  justify-content: center !important;
8369
}
8370
 
8371
.justify-content-between {
8372
  justify-content: space-between !important;
8373
}
8374
 
8375
.justify-content-around {
8376
  justify-content: space-around !important;
8377
}
8378
 
8379
.justify-content-evenly {
8380
  justify-content: space-evenly !important;
8381
}
8382
 
8383
.align-items-start {
8384
  align-items: flex-start !important;
8385
}
8386
 
8387
.align-items-end {
8388
  align-items: flex-end !important;
8389
}
8390
 
16848 stevensc 8391
.align-items-center,
8392
.navbar .search-form {
16825 efrain 8393
  align-items: center !important;
8394
}
8395
 
8396
.align-items-baseline {
8397
  align-items: baseline !important;
8398
}
8399
 
8400
.align-items-stretch {
8401
  align-items: stretch !important;
8402
}
8403
 
8404
.align-content-start {
8405
  align-content: flex-start !important;
8406
}
8407
 
8408
.align-content-end {
8409
  align-content: flex-end !important;
8410
}
8411
 
8412
.align-content-center {
8413
  align-content: center !important;
8414
}
8415
 
8416
.align-content-between {
8417
  align-content: space-between !important;
8418
}
8419
 
8420
.align-content-around {
8421
  align-content: space-around !important;
8422
}
8423
 
8424
.align-content-stretch {
8425
  align-content: stretch !important;
8426
}
8427
 
8428
.align-self-auto {
8429
  align-self: auto !important;
8430
}
8431
 
8432
.align-self-start {
8433
  align-self: flex-start !important;
8434
}
8435
 
8436
.align-self-end {
8437
  align-self: flex-end !important;
8438
}
8439
 
8440
.align-self-center {
8441
  align-self: center !important;
8442
}
8443
 
8444
.align-self-baseline {
8445
  align-self: baseline !important;
8446
}
8447
 
8448
.align-self-stretch {
8449
  align-self: stretch !important;
8450
}
8451
 
8452
.order-first {
8453
  order: -1 !important;
8454
}
8455
 
8456
.order-0 {
8457
  order: 0 !important;
8458
}
8459
 
8460
.order-1 {
8461
  order: 1 !important;
8462
}
8463
 
8464
.order-2 {
8465
  order: 2 !important;
8466
}
8467
 
8468
.order-3 {
8469
  order: 3 !important;
8470
}
8471
 
8472
.order-4 {
8473
  order: 4 !important;
8474
}
8475
 
8476
.order-5 {
8477
  order: 5 !important;
8478
}
8479
 
8480
.order-last {
8481
  order: 6 !important;
8482
}
8483
 
8484
.m-0 {
8485
  margin: 0 !important;
8486
}
8487
 
8488
.m-1 {
8489
  margin: 0.25rem !important;
8490
}
8491
 
8492
.m-2 {
8493
  margin: 0.5rem !important;
8494
}
8495
 
8496
.m-3 {
8497
  margin: 1rem !important;
8498
}
8499
 
8500
.m-4 {
8501
  margin: 1.5rem !important;
8502
}
8503
 
8504
.m-5 {
8505
  margin: 3rem !important;
8506
}
8507
 
8508
.m-6 {
8509
  margin: 4.5rem !important;
8510
}
8511
 
8512
.m-7 {
8513
  margin: 6rem !important;
8514
}
8515
 
8516
.m-auto {
8517
  margin: auto !important;
8518
}
8519
 
8520
.mx-0 {
8521
  margin-right: 0 !important;
8522
  margin-left: 0 !important;
8523
}
8524
 
8525
.mx-1 {
8526
  margin-right: 0.25rem !important;
8527
  margin-left: 0.25rem !important;
8528
}
8529
 
8530
.mx-2 {
8531
  margin-right: 0.5rem !important;
8532
  margin-left: 0.5rem !important;
8533
}
8534
 
8535
.mx-3 {
8536
  margin-right: 1rem !important;
8537
  margin-left: 1rem !important;
8538
}
8539
 
8540
.mx-4 {
8541
  margin-right: 1.5rem !important;
8542
  margin-left: 1.5rem !important;
8543
}
8544
 
8545
.mx-5 {
8546
  margin-right: 3rem !important;
8547
  margin-left: 3rem !important;
8548
}
8549
 
8550
.mx-6 {
8551
  margin-right: 4.5rem !important;
8552
  margin-left: 4.5rem !important;
8553
}
8554
 
8555
.mx-7 {
8556
  margin-right: 6rem !important;
8557
  margin-left: 6rem !important;
8558
}
8559
 
8560
.mx-auto {
8561
  margin-right: auto !important;
8562
  margin-left: auto !important;
8563
}
8564
 
8565
.my-0 {
8566
  margin-top: 0 !important;
8567
  margin-bottom: 0 !important;
8568
}
8569
 
8570
.my-1 {
8571
  margin-top: 0.25rem !important;
8572
  margin-bottom: 0.25rem !important;
8573
}
8574
 
8575
.my-2 {
8576
  margin-top: 0.5rem !important;
8577
  margin-bottom: 0.5rem !important;
8578
}
8579
 
8580
.my-3 {
8581
  margin-top: 1rem !important;
8582
  margin-bottom: 1rem !important;
8583
}
8584
 
8585
.my-4 {
8586
  margin-top: 1.5rem !important;
8587
  margin-bottom: 1.5rem !important;
8588
}
8589
 
8590
.my-5 {
8591
  margin-top: 3rem !important;
8592
  margin-bottom: 3rem !important;
8593
}
8594
 
8595
.my-6 {
8596
  margin-top: 4.5rem !important;
8597
  margin-bottom: 4.5rem !important;
8598
}
8599
 
8600
.my-7 {
8601
  margin-top: 6rem !important;
8602
  margin-bottom: 6rem !important;
8603
}
8604
 
8605
.my-auto {
8606
  margin-top: auto !important;
8607
  margin-bottom: auto !important;
8608
}
8609
 
8610
.mt-0 {
8611
  margin-top: 0 !important;
8612
}
8613
 
8614
.mt-1 {
8615
  margin-top: 0.25rem !important;
8616
}
8617
 
8618
.mt-2 {
8619
  margin-top: 0.5rem !important;
8620
}
8621
 
16848 stevensc 8622
.mt-3,
8623
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8624
  margin-top: 1rem !important;
8625
}
8626
 
8627
.mt-4 {
8628
  margin-top: 1.5rem !important;
8629
}
8630
 
8631
.mt-5 {
8632
  margin-top: 3rem !important;
8633
}
8634
 
8635
.mt-6 {
8636
  margin-top: 4.5rem !important;
8637
}
8638
 
8639
.mt-7 {
8640
  margin-top: 6rem !important;
8641
}
8642
 
8643
.mt-auto {
8644
  margin-top: auto !important;
8645
}
8646
 
8647
.me-0 {
8648
  margin-right: 0 !important;
8649
}
8650
 
8651
.me-1 {
8652
  margin-right: 0.25rem !important;
8653
}
8654
 
8655
.me-2 {
8656
  margin-right: 0.5rem !important;
8657
}
8658
 
8659
.me-3 {
8660
  margin-right: 1rem !important;
8661
}
8662
 
8663
.me-4 {
8664
  margin-right: 1.5rem !important;
8665
}
8666
 
8667
.me-5 {
8668
  margin-right: 3rem !important;
8669
}
8670
 
8671
.me-6 {
8672
  margin-right: 4.5rem !important;
8673
}
8674
 
8675
.me-7 {
8676
  margin-right: 6rem !important;
8677
}
8678
 
8679
.me-auto {
8680
  margin-right: auto !important;
8681
}
8682
 
8683
.mb-0 {
8684
  margin-bottom: 0 !important;
8685
}
8686
 
16848 stevensc 8687
.mb-1,
8688
.example .btn-group {
16825 efrain 8689
  margin-bottom: 0.25rem !important;
8690
}
8691
 
8692
.mb-2 {
8693
  margin-bottom: 0.5rem !important;
8694
}
8695
 
8696
.mb-3 {
8697
  margin-bottom: 1rem !important;
8698
}
8699
 
8700
.mb-4 {
8701
  margin-bottom: 1.5rem !important;
8702
}
8703
 
8704
.mb-5 {
8705
  margin-bottom: 3rem !important;
8706
}
8707
 
8708
.mb-6 {
8709
  margin-bottom: 4.5rem !important;
8710
}
8711
 
8712
.mb-7 {
8713
  margin-bottom: 6rem !important;
8714
}
8715
 
8716
.mb-auto {
8717
  margin-bottom: auto !important;
8718
}
8719
 
8720
.ms-0 {
8721
  margin-left: 0 !important;
8722
}
8723
 
8724
.ms-1 {
8725
  margin-left: 0.25rem !important;
8726
}
8727
 
8728
.ms-2 {
8729
  margin-left: 0.5rem !important;
8730
}
8731
 
8732
.ms-3 {
8733
  margin-left: 1rem !important;
8734
}
8735
 
8736
.ms-4 {
8737
  margin-left: 1.5rem !important;
8738
}
8739
 
8740
.ms-5 {
8741
  margin-left: 3rem !important;
8742
}
8743
 
8744
.ms-6 {
8745
  margin-left: 4.5rem !important;
8746
}
8747
 
8748
.ms-7 {
8749
  margin-left: 6rem !important;
8750
}
8751
 
8752
.ms-auto {
8753
  margin-left: auto !important;
8754
}
8755
 
8756
.m-n1 {
8757
  margin: -0.25rem !important;
8758
}
8759
 
8760
.m-n2 {
8761
  margin: -0.5rem !important;
8762
}
8763
 
8764
.m-n3 {
8765
  margin: -1rem !important;
8766
}
8767
 
8768
.m-n4 {
8769
  margin: -1.5rem !important;
8770
}
8771
 
8772
.m-n5 {
8773
  margin: -3rem !important;
8774
}
8775
 
8776
.m-n6 {
8777
  margin: -4.5rem !important;
8778
}
8779
 
8780
.m-n7 {
8781
  margin: -6rem !important;
8782
}
8783
 
8784
.mx-n1 {
8785
  margin-right: -0.25rem !important;
8786
  margin-left: -0.25rem !important;
8787
}
8788
 
8789
.mx-n2 {
8790
  margin-right: -0.5rem !important;
8791
  margin-left: -0.5rem !important;
8792
}
8793
 
8794
.mx-n3 {
8795
  margin-right: -1rem !important;
8796
  margin-left: -1rem !important;
8797
}
8798
 
8799
.mx-n4 {
8800
  margin-right: -1.5rem !important;
8801
  margin-left: -1.5rem !important;
8802
}
8803
 
8804
.mx-n5 {
8805
  margin-right: -3rem !important;
8806
  margin-left: -3rem !important;
8807
}
8808
 
8809
.mx-n6 {
8810
  margin-right: -4.5rem !important;
8811
  margin-left: -4.5rem !important;
8812
}
8813
 
8814
.mx-n7 {
8815
  margin-right: -6rem !important;
8816
  margin-left: -6rem !important;
8817
}
8818
 
8819
.my-n1 {
8820
  margin-top: -0.25rem !important;
8821
  margin-bottom: -0.25rem !important;
8822
}
8823
 
8824
.my-n2 {
8825
  margin-top: -0.5rem !important;
8826
  margin-bottom: -0.5rem !important;
8827
}
8828
 
8829
.my-n3 {
8830
  margin-top: -1rem !important;
8831
  margin-bottom: -1rem !important;
8832
}
8833
 
8834
.my-n4 {
8835
  margin-top: -1.5rem !important;
8836
  margin-bottom: -1.5rem !important;
8837
}
8838
 
8839
.my-n5 {
8840
  margin-top: -3rem !important;
8841
  margin-bottom: -3rem !important;
8842
}
8843
 
8844
.my-n6 {
8845
  margin-top: -4.5rem !important;
8846
  margin-bottom: -4.5rem !important;
8847
}
8848
 
8849
.my-n7 {
8850
  margin-top: -6rem !important;
8851
  margin-bottom: -6rem !important;
8852
}
8853
 
8854
.mt-n1 {
8855
  margin-top: -0.25rem !important;
8856
}
8857
 
8858
.mt-n2 {
8859
  margin-top: -0.5rem !important;
8860
}
8861
 
8862
.mt-n3 {
8863
  margin-top: -1rem !important;
8864
}
8865
 
8866
.mt-n4 {
8867
  margin-top: -1.5rem !important;
8868
}
8869
 
8870
.mt-n5 {
8871
  margin-top: -3rem !important;
8872
}
8873
 
8874
.mt-n6 {
8875
  margin-top: -4.5rem !important;
8876
}
8877
 
8878
.mt-n7 {
8879
  margin-top: -6rem !important;
8880
}
8881
 
8882
.me-n1 {
8883
  margin-right: -0.25rem !important;
8884
}
8885
 
8886
.me-n2 {
8887
  margin-right: -0.5rem !important;
8888
}
8889
 
8890
.me-n3 {
8891
  margin-right: -1rem !important;
8892
}
8893
 
8894
.me-n4 {
8895
  margin-right: -1.5rem !important;
8896
}
8897
 
8898
.me-n5 {
8899
  margin-right: -3rem !important;
8900
}
8901
 
8902
.me-n6 {
8903
  margin-right: -4.5rem !important;
8904
}
8905
 
8906
.me-n7 {
8907
  margin-right: -6rem !important;
8908
}
8909
 
8910
.mb-n1 {
8911
  margin-bottom: -0.25rem !important;
8912
}
8913
 
8914
.mb-n2 {
8915
  margin-bottom: -0.5rem !important;
8916
}
8917
 
8918
.mb-n3 {
8919
  margin-bottom: -1rem !important;
8920
}
8921
 
8922
.mb-n4 {
8923
  margin-bottom: -1.5rem !important;
8924
}
8925
 
8926
.mb-n5 {
8927
  margin-bottom: -3rem !important;
8928
}
8929
 
8930
.mb-n6 {
8931
  margin-bottom: -4.5rem !important;
8932
}
8933
 
8934
.mb-n7 {
8935
  margin-bottom: -6rem !important;
8936
}
8937
 
8938
.ms-n1 {
8939
  margin-left: -0.25rem !important;
8940
}
8941
 
8942
.ms-n2 {
8943
  margin-left: -0.5rem !important;
8944
}
8945
 
8946
.ms-n3 {
8947
  margin-left: -1rem !important;
8948
}
8949
 
8950
.ms-n4 {
8951
  margin-left: -1.5rem !important;
8952
}
8953
 
8954
.ms-n5 {
8955
  margin-left: -3rem !important;
8956
}
8957
 
8958
.ms-n6 {
8959
  margin-left: -4.5rem !important;
8960
}
8961
 
8962
.ms-n7 {
8963
  margin-left: -6rem !important;
8964
}
8965
 
8966
.p-0 {
8967
  padding: 0 !important;
8968
}
8969
 
8970
.p-1 {
8971
  padding: 0.25rem !important;
8972
}
8973
 
8974
.p-2 {
8975
  padding: 0.5rem !important;
8976
}
8977
 
8978
.p-3 {
8979
  padding: 1rem !important;
8980
}
8981
 
8982
.p-4 {
8983
  padding: 1.5rem !important;
8984
}
8985
 
8986
.p-5 {
8987
  padding: 3rem !important;
8988
}
8989
 
8990
.p-6 {
8991
  padding: 4.5rem !important;
8992
}
8993
 
8994
.p-7 {
8995
  padding: 6rem !important;
8996
}
8997
 
8998
.px-0 {
8999
  padding-right: 0 !important;
9000
  padding-left: 0 !important;
9001
}
9002
 
9003
.px-1 {
9004
  padding-right: 0.25rem !important;
9005
  padding-left: 0.25rem !important;
9006
}
9007
 
9008
.px-2 {
9009
  padding-right: 0.5rem !important;
9010
  padding-left: 0.5rem !important;
9011
}
9012
 
9013
.px-3 {
9014
  padding-right: 1rem !important;
9015
  padding-left: 1rem !important;
9016
}
9017
 
9018
.px-4 {
9019
  padding-right: 1.5rem !important;
9020
  padding-left: 1.5rem !important;
9021
}
9022
 
9023
.px-5 {
9024
  padding-right: 3rem !important;
9025
  padding-left: 3rem !important;
9026
}
9027
 
9028
.px-6 {
9029
  padding-right: 4.5rem !important;
9030
  padding-left: 4.5rem !important;
9031
}
9032
 
9033
.px-7 {
9034
  padding-right: 6rem !important;
9035
  padding-left: 6rem !important;
9036
}
9037
 
9038
.py-0 {
9039
  padding-top: 0 !important;
9040
  padding-bottom: 0 !important;
9041
}
9042
 
9043
.py-1 {
9044
  padding-top: 0.25rem !important;
9045
  padding-bottom: 0.25rem !important;
9046
}
9047
 
9048
.py-2 {
9049
  padding-top: 0.5rem !important;
9050
  padding-bottom: 0.5rem !important;
9051
}
9052
 
9053
.py-3 {
9054
  padding-top: 1rem !important;
9055
  padding-bottom: 1rem !important;
9056
}
9057
 
9058
.py-4 {
9059
  padding-top: 1.5rem !important;
9060
  padding-bottom: 1.5rem !important;
9061
}
9062
 
9063
.py-5 {
9064
  padding-top: 3rem !important;
9065
  padding-bottom: 3rem !important;
9066
}
9067
 
9068
.py-6 {
9069
  padding-top: 4.5rem !important;
9070
  padding-bottom: 4.5rem !important;
9071
}
9072
 
9073
.py-7 {
9074
  padding-top: 6rem !important;
9075
  padding-bottom: 6rem !important;
9076
}
9077
 
9078
.pt-0 {
9079
  padding-top: 0 !important;
9080
}
9081
 
9082
.pt-1 {
9083
  padding-top: 0.25rem !important;
9084
}
9085
 
9086
.pt-2 {
9087
  padding-top: 0.5rem !important;
9088
}
9089
 
9090
.pt-3 {
9091
  padding-top: 1rem !important;
9092
}
9093
 
9094
.pt-4 {
9095
  padding-top: 1.5rem !important;
9096
}
9097
 
9098
.pt-5 {
9099
  padding-top: 3rem !important;
9100
}
9101
 
9102
.pt-6 {
9103
  padding-top: 4.5rem !important;
9104
}
9105
 
9106
.pt-7 {
9107
  padding-top: 6rem !important;
9108
}
9109
 
9110
.pe-0 {
9111
  padding-right: 0 !important;
9112
}
9113
 
9114
.pe-1 {
9115
  padding-right: 0.25rem !important;
9116
}
9117
 
9118
.pe-2 {
9119
  padding-right: 0.5rem !important;
9120
}
9121
 
9122
.pe-3 {
9123
  padding-right: 1rem !important;
9124
}
9125
 
9126
.pe-4 {
9127
  padding-right: 1.5rem !important;
9128
}
9129
 
9130
.pe-5 {
9131
  padding-right: 3rem !important;
9132
}
9133
 
9134
.pe-6 {
9135
  padding-right: 4.5rem !important;
9136
}
9137
 
9138
.pe-7 {
9139
  padding-right: 6rem !important;
9140
}
9141
 
9142
.pb-0 {
9143
  padding-bottom: 0 !important;
9144
}
9145
 
9146
.pb-1 {
9147
  padding-bottom: 0.25rem !important;
9148
}
9149
 
9150
.pb-2 {
9151
  padding-bottom: 0.5rem !important;
9152
}
9153
 
9154
.pb-3 {
9155
  padding-bottom: 1rem !important;
9156
}
9157
 
9158
.pb-4 {
9159
  padding-bottom: 1.5rem !important;
9160
}
9161
 
9162
.pb-5 {
9163
  padding-bottom: 3rem !important;
9164
}
9165
 
9166
.pb-6 {
9167
  padding-bottom: 4.5rem !important;
9168
}
9169
 
9170
.pb-7 {
9171
  padding-bottom: 6rem !important;
9172
}
9173
 
9174
.ps-0 {
9175
  padding-left: 0 !important;
9176
}
9177
 
9178
.ps-1 {
9179
  padding-left: 0.25rem !important;
9180
}
9181
 
9182
.ps-2 {
9183
  padding-left: 0.5rem !important;
9184
}
9185
 
9186
.ps-3 {
9187
  padding-left: 1rem !important;
9188
}
9189
 
9190
.ps-4 {
9191
  padding-left: 1.5rem !important;
9192
}
9193
 
9194
.ps-5 {
9195
  padding-left: 3rem !important;
9196
}
9197
 
9198
.ps-6 {
9199
  padding-left: 4.5rem !important;
9200
}
9201
 
9202
.ps-7 {
9203
  padding-left: 6rem !important;
9204
}
9205
 
9206
.gap-0 {
9207
  gap: 0 !important;
9208
}
9209
 
9210
.gap-1 {
9211
  gap: 0.25rem !important;
9212
}
9213
 
9214
.gap-2 {
9215
  gap: 0.5rem !important;
9216
}
9217
 
9218
.gap-3 {
9219
  gap: 1rem !important;
9220
}
9221
 
9222
.gap-4 {
9223
  gap: 1.5rem !important;
9224
}
9225
 
9226
.gap-5 {
9227
  gap: 3rem !important;
9228
}
9229
 
9230
.gap-6 {
9231
  gap: 4.5rem !important;
9232
}
9233
 
9234
.gap-7 {
9235
  gap: 6rem !important;
9236
}
9237
 
9238
.font-monospace {
9239
  font-family: var(--bs-font-monospace) !important;
9240
}
9241
 
9242
.fs-1 {
9243
  font-size: calc(1.375rem + 1.5vw) !important;
9244
}
9245
 
9246
.fs-2 {
9247
  font-size: calc(1.325rem + 0.9vw) !important;
9248
}
9249
 
9250
.fs-3 {
9251
  font-size: calc(1.275rem + 0.3vw) !important;
9252
}
9253
 
9254
.fs-4 {
9255
  font-size: 1.25rem !important;
9256
}
9257
 
9258
.fs-5 {
9259
  font-size: 1rem !important;
9260
}
9261
 
9262
.fs-6 {
9263
  font-size: 0.875rem !important;
9264
}
9265
 
9266
.fst-italic {
9267
  font-style: italic !important;
9268
}
9269
 
9270
.fst-normal {
9271
  font-style: normal !important;
9272
}
9273
 
9274
.fw-light {
9275
  font-weight: 300 !important;
9276
}
9277
 
9278
.fw-lighter {
9279
  font-weight: lighter !important;
9280
}
9281
 
9282
.fw-normal {
9283
  font-weight: 400 !important;
9284
}
9285
 
9286
.fw-bold {
9287
  font-weight: 500 !important;
9288
}
9289
 
9290
.fw-semibold {
9291
  font-weight: 600 !important;
9292
}
9293
 
9294
.fw-bolder {
9295
  font-weight: 700 !important;
9296
}
9297
 
9298
.lh-1 {
9299
  line-height: 1 !important;
9300
}
9301
 
9302
.lh-sm {
9303
  line-height: 1.25 !important;
9304
}
9305
 
9306
.lh-base {
9307
  line-height: 1.5 !important;
9308
}
9309
 
9310
.lh-lg {
9311
  line-height: 2 !important;
9312
}
9313
 
9314
.text-start {
9315
  text-align: left !important;
9316
}
9317
 
9318
.text-end {
9319
  text-align: right !important;
9320
}
9321
 
9322
.text-center {
9323
  text-align: center !important;
9324
}
9325
 
9326
.text-decoration-none {
9327
  text-decoration: none !important;
9328
}
9329
 
9330
.text-decoration-underline {
9331
  text-decoration: underline !important;
9332
}
9333
 
9334
.text-decoration-line-through {
9335
  text-decoration: line-through !important;
9336
}
9337
 
9338
.text-lowercase {
9339
  text-transform: lowercase !important;
9340
}
9341
 
9342
.text-uppercase {
9343
  text-transform: uppercase !important;
9344
}
9345
 
9346
.text-capitalize {
9347
  text-transform: capitalize !important;
9348
}
9349
 
9350
.text-wrap {
9351
  white-space: normal !important;
9352
}
9353
 
9354
.text-nowrap {
9355
  white-space: nowrap !important;
9356
}
9357
 
9358
/* rtl:begin:remove */
9359
.text-break {
9360
  word-wrap: break-word !important;
9361
  word-break: break-word !important;
9362
}
9363
 
9364
/* rtl:end:remove */
9365
.text-primary {
9366
  --bs-text-opacity: 1;
9367
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9368
}
9369
 
9370
.text-secondary {
9371
  --bs-text-opacity: 1;
9372
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9373
}
9374
 
9375
.text-success {
9376
  --bs-text-opacity: 1;
9377
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9378
}
9379
 
9380
.text-info {
9381
  --bs-text-opacity: 1;
9382
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9383
}
9384
 
9385
.text-warning {
9386
  --bs-text-opacity: 1;
9387
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9388
}
9389
 
9390
.text-danger {
9391
  --bs-text-opacity: 1;
9392
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9393
}
9394
 
9395
.text-light {
9396
  --bs-text-opacity: 1;
9397
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9398
}
9399
 
9400
.text-dark {
9401
  --bs-text-opacity: 1;
9402
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9403
}
9404
 
9405
.text-black {
9406
  --bs-text-opacity: 1;
9407
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9408
}
9409
 
9410
.text-white {
9411
  --bs-text-opacity: 1;
9412
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9413
}
9414
 
9415
.text-body {
9416
  --bs-text-opacity: 1;
9417
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9418
}
9419
 
16848 stevensc 9420
.text-muted,
9421
.dropzone.dz-clickable .dz-message * {
16825 efrain 9422
  --bs-text-opacity: 1;
9423
  color: #7987a1 !important;
9424
}
9425
 
9426
.text-black-50 {
9427
  --bs-text-opacity: 1;
9428
  color: rgba(0, 0, 0, 0.5) !important;
9429
}
9430
 
9431
.text-white-50 {
9432
  --bs-text-opacity: 1;
9433
  color: rgba(255, 255, 255, 0.5) !important;
9434
}
9435
 
9436
.text-reset {
9437
  --bs-text-opacity: 1;
9438
  color: inherit !important;
9439
}
9440
 
9441
.text-opacity-25 {
9442
  --bs-text-opacity: 0.25;
9443
}
9444
 
9445
.text-opacity-50 {
9446
  --bs-text-opacity: 0.5;
9447
}
9448
 
9449
.text-opacity-75 {
9450
  --bs-text-opacity: 0.75;
9451
}
9452
 
9453
.text-opacity-100 {
9454
  --bs-text-opacity: 1;
9455
}
9456
 
9457
.bg-primary {
9458
  --bs-bg-opacity: 1;
9459
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9460
}
9461
 
9462
.bg-secondary {
9463
  --bs-bg-opacity: 1;
9464
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9465
}
9466
 
9467
.bg-success {
9468
  --bs-bg-opacity: 1;
9469
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9470
}
9471
 
9472
.bg-info {
9473
  --bs-bg-opacity: 1;
9474
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9475
}
9476
 
9477
.bg-warning {
9478
  --bs-bg-opacity: 1;
9479
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9480
}
9481
 
9482
.bg-danger {
9483
  --bs-bg-opacity: 1;
9484
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9485
}
9486
 
9487
.bg-light {
9488
  --bs-bg-opacity: 1;
9489
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9490
}
9491
 
9492
.bg-dark {
9493
  --bs-bg-opacity: 1;
9494
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9495
}
9496
 
9497
.bg-black {
9498
  --bs-bg-opacity: 1;
9499
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9500
}
9501
 
9502
.bg-white {
9503
  --bs-bg-opacity: 1;
9504
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9505
}
9506
 
9507
.bg-body {
9508
  --bs-bg-opacity: 1;
9509
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9510
}
9511
 
9512
.bg-transparent {
9513
  --bs-bg-opacity: 1;
9514
  background-color: transparent !important;
9515
}
9516
 
9517
.bg-opacity-10 {
9518
  --bs-bg-opacity: 0.1;
9519
}
9520
 
9521
.bg-opacity-25 {
9522
  --bs-bg-opacity: 0.25;
9523
}
9524
 
9525
.bg-opacity-50 {
9526
  --bs-bg-opacity: 0.5;
9527
}
9528
 
9529
.bg-opacity-75 {
9530
  --bs-bg-opacity: 0.75;
9531
}
9532
 
9533
.bg-opacity-100 {
9534
  --bs-bg-opacity: 1;
9535
}
9536
 
9537
.bg-gradient {
9538
  background-image: var(--bs-gradient) !important;
9539
}
9540
 
9541
.user-select-all {
9542
  user-select: all !important;
9543
}
9544
 
9545
.user-select-auto {
9546
  user-select: auto !important;
9547
}
9548
 
9549
.user-select-none {
9550
  user-select: none !important;
9551
}
9552
 
9553
.pe-none {
9554
  pointer-events: none !important;
9555
}
9556
 
9557
.pe-auto {
9558
  pointer-events: auto !important;
9559
}
9560
 
9561
.rounded {
9562
  border-radius: var(--bs-border-radius) !important;
9563
}
9564
 
9565
.rounded-0 {
9566
  border-radius: 0 !important;
9567
}
9568
 
9569
.rounded-1 {
9570
  border-radius: var(--bs-border-radius-sm) !important;
9571
}
9572
 
9573
.rounded-2 {
9574
  border-radius: var(--bs-border-radius) !important;
9575
}
9576
 
9577
.rounded-3 {
9578
  border-radius: var(--bs-border-radius-lg) !important;
9579
}
9580
 
9581
.rounded-4 {
9582
  border-radius: var(--bs-border-radius-xl) !important;
9583
}
9584
 
9585
.rounded-5 {
9586
  border-radius: var(--bs-border-radius-2xl) !important;
9587
}
9588
 
9589
.rounded-circle {
9590
  border-radius: 50% !important;
9591
}
9592
 
9593
.rounded-pill {
9594
  border-radius: var(--bs-border-radius-pill) !important;
9595
}
9596
 
9597
.rounded-top {
9598
  border-top-left-radius: var(--bs-border-radius) !important;
9599
  border-top-right-radius: var(--bs-border-radius) !important;
9600
}
9601
 
9602
.rounded-end {
9603
  border-top-right-radius: var(--bs-border-radius) !important;
9604
  border-bottom-right-radius: var(--bs-border-radius) !important;
9605
}
9606
 
9607
.rounded-bottom {
9608
  border-bottom-right-radius: var(--bs-border-radius) !important;
9609
  border-bottom-left-radius: var(--bs-border-radius) !important;
9610
}
9611
 
9612
.rounded-start {
9613
  border-bottom-left-radius: var(--bs-border-radius) !important;
9614
  border-top-left-radius: var(--bs-border-radius) !important;
9615
}
9616
 
9617
.visible {
9618
  visibility: visible !important;
9619
}
9620
 
9621
.invisible {
9622
  visibility: hidden !important;
9623
}
9624
 
9625
.bg-gray-100 {
9626
  background-color: #f8f9fa !important;
9627
}
9628
 
9629
.bg-gray-200 {
9630
  background-color: #e9ecef !important;
9631
}
9632
 
9633
.bg-gray-300 {
9634
  background-color: #dee2e6 !important;
9635
}
9636
 
9637
.bg-gray-400 {
9638
  background-color: #cbd1db !important;
9639
}
9640
 
9641
.bg-gray-500 {
9642
  background-color: #aeb7c5 !important;
9643
}
9644
 
9645
.bg-gray-600 {
9646
  background-color: #7987a1 !important;
9647
}
9648
 
9649
.bg-gray-700 {
9650
  background-color: #41516c !important;
9651
}
9652
 
9653
.bg-gray-800 {
9654
  background-color: #212a3a !important;
9655
}
9656
 
9657
.bg-gray-900 {
9658
  background-color: #060c17 !important;
9659
}
9660
 
9661
@media (min-width: 576px) {
9662
  .float-sm-start {
9663
    float: left !important;
9664
  }
16848 stevensc 9665
 
16825 efrain 9666
  .float-sm-end {
9667
    float: right !important;
9668
  }
16848 stevensc 9669
 
16825 efrain 9670
  .float-sm-none {
9671
    float: none !important;
9672
  }
16848 stevensc 9673
 
16825 efrain 9674
  .d-sm-inline {
9675
    display: inline !important;
9676
  }
16848 stevensc 9677
 
16825 efrain 9678
  .d-sm-inline-block {
9679
    display: inline-block !important;
9680
  }
16848 stevensc 9681
 
16825 efrain 9682
  .d-sm-block {
9683
    display: block !important;
9684
  }
16848 stevensc 9685
 
16825 efrain 9686
  .d-sm-grid {
9687
    display: grid !important;
9688
  }
16848 stevensc 9689
 
16825 efrain 9690
  .d-sm-table {
9691
    display: table !important;
9692
  }
16848 stevensc 9693
 
16825 efrain 9694
  .d-sm-table-row {
9695
    display: table-row !important;
9696
  }
16848 stevensc 9697
 
16825 efrain 9698
  .d-sm-table-cell {
9699
    display: table-cell !important;
9700
  }
16848 stevensc 9701
 
16825 efrain 9702
  .d-sm-flex {
9703
    display: flex !important;
9704
  }
16848 stevensc 9705
 
16825 efrain 9706
  .d-sm-inline-flex {
9707
    display: inline-flex !important;
9708
  }
16848 stevensc 9709
 
16825 efrain 9710
  .d-sm-none {
9711
    display: none !important;
9712
  }
16848 stevensc 9713
 
16825 efrain 9714
  .border-sm {
9715
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9716
  }
16848 stevensc 9717
 
16825 efrain 9718
  .border-sm-0 {
9719
    border: 0 !important;
9720
  }
16848 stevensc 9721
 
16825 efrain 9722
  .border-top-sm {
9723
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9724
  }
16848 stevensc 9725
 
16825 efrain 9726
  .border-top-sm-0 {
9727
    border-top: 0 !important;
9728
  }
16848 stevensc 9729
 
16825 efrain 9730
  .border-end-sm {
9731
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9732
  }
16848 stevensc 9733
 
16825 efrain 9734
  .border-end-sm-0 {
9735
    border-right: 0 !important;
9736
  }
16848 stevensc 9737
 
16825 efrain 9738
  .border-bottom-sm {
9739
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9740
  }
16848 stevensc 9741
 
16825 efrain 9742
  .border-bottom-sm-0 {
9743
    border-bottom: 0 !important;
9744
  }
16848 stevensc 9745
 
16825 efrain 9746
  .border-start-sm {
9747
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9748
  }
16848 stevensc 9749
 
16825 efrain 9750
  .border-start-sm-0 {
9751
    border-left: 0 !important;
9752
  }
16848 stevensc 9753
 
16825 efrain 9754
  .flex-sm-fill {
9755
    flex: 1 1 auto !important;
9756
  }
16848 stevensc 9757
 
16825 efrain 9758
  .flex-sm-row {
9759
    flex-direction: row !important;
9760
  }
16848 stevensc 9761
 
16825 efrain 9762
  .flex-sm-column {
9763
    flex-direction: column !important;
9764
  }
16848 stevensc 9765
 
16825 efrain 9766
  .flex-sm-row-reverse {
9767
    flex-direction: row-reverse !important;
9768
  }
16848 stevensc 9769
 
16825 efrain 9770
  .flex-sm-column-reverse {
9771
    flex-direction: column-reverse !important;
9772
  }
16848 stevensc 9773
 
16825 efrain 9774
  .flex-sm-grow-0 {
9775
    flex-grow: 0 !important;
9776
  }
16848 stevensc 9777
 
16825 efrain 9778
  .flex-sm-grow-1 {
9779
    flex-grow: 1 !important;
9780
  }
16848 stevensc 9781
 
16825 efrain 9782
  .flex-sm-shrink-0 {
9783
    flex-shrink: 0 !important;
9784
  }
16848 stevensc 9785
 
16825 efrain 9786
  .flex-sm-shrink-1 {
9787
    flex-shrink: 1 !important;
9788
  }
16848 stevensc 9789
 
16825 efrain 9790
  .flex-sm-wrap {
9791
    flex-wrap: wrap !important;
9792
  }
16848 stevensc 9793
 
16825 efrain 9794
  .flex-sm-nowrap {
9795
    flex-wrap: nowrap !important;
9796
  }
16848 stevensc 9797
 
16825 efrain 9798
  .flex-sm-wrap-reverse {
9799
    flex-wrap: wrap-reverse !important;
9800
  }
16848 stevensc 9801
 
16825 efrain 9802
  .justify-content-sm-start {
9803
    justify-content: flex-start !important;
9804
  }
16848 stevensc 9805
 
16825 efrain 9806
  .justify-content-sm-end {
9807
    justify-content: flex-end !important;
9808
  }
16848 stevensc 9809
 
16825 efrain 9810
  .justify-content-sm-center {
9811
    justify-content: center !important;
9812
  }
16848 stevensc 9813
 
16825 efrain 9814
  .justify-content-sm-between {
9815
    justify-content: space-between !important;
9816
  }
16848 stevensc 9817
 
16825 efrain 9818
  .justify-content-sm-around {
9819
    justify-content: space-around !important;
9820
  }
16848 stevensc 9821
 
16825 efrain 9822
  .justify-content-sm-evenly {
9823
    justify-content: space-evenly !important;
9824
  }
16848 stevensc 9825
 
16825 efrain 9826
  .align-items-sm-start {
9827
    align-items: flex-start !important;
9828
  }
16848 stevensc 9829
 
16825 efrain 9830
  .align-items-sm-end {
9831
    align-items: flex-end !important;
9832
  }
16848 stevensc 9833
 
16825 efrain 9834
  .align-items-sm-center {
9835
    align-items: center !important;
9836
  }
16848 stevensc 9837
 
16825 efrain 9838
  .align-items-sm-baseline {
9839
    align-items: baseline !important;
9840
  }
16848 stevensc 9841
 
16825 efrain 9842
  .align-items-sm-stretch {
9843
    align-items: stretch !important;
9844
  }
16848 stevensc 9845
 
16825 efrain 9846
  .align-content-sm-start {
9847
    align-content: flex-start !important;
9848
  }
16848 stevensc 9849
 
16825 efrain 9850
  .align-content-sm-end {
9851
    align-content: flex-end !important;
9852
  }
16848 stevensc 9853
 
16825 efrain 9854
  .align-content-sm-center {
9855
    align-content: center !important;
9856
  }
16848 stevensc 9857
 
16825 efrain 9858
  .align-content-sm-between {
9859
    align-content: space-between !important;
9860
  }
16848 stevensc 9861
 
16825 efrain 9862
  .align-content-sm-around {
9863
    align-content: space-around !important;
9864
  }
16848 stevensc 9865
 
16825 efrain 9866
  .align-content-sm-stretch {
9867
    align-content: stretch !important;
9868
  }
16848 stevensc 9869
 
16825 efrain 9870
  .align-self-sm-auto {
9871
    align-self: auto !important;
9872
  }
16848 stevensc 9873
 
16825 efrain 9874
  .align-self-sm-start {
9875
    align-self: flex-start !important;
9876
  }
16848 stevensc 9877
 
16825 efrain 9878
  .align-self-sm-end {
9879
    align-self: flex-end !important;
9880
  }
16848 stevensc 9881
 
16825 efrain 9882
  .align-self-sm-center {
9883
    align-self: center !important;
9884
  }
16848 stevensc 9885
 
16825 efrain 9886
  .align-self-sm-baseline {
9887
    align-self: baseline !important;
9888
  }
16848 stevensc 9889
 
16825 efrain 9890
  .align-self-sm-stretch {
9891
    align-self: stretch !important;
9892
  }
16848 stevensc 9893
 
16825 efrain 9894
  .order-sm-first {
9895
    order: -1 !important;
9896
  }
16848 stevensc 9897
 
16825 efrain 9898
  .order-sm-0 {
9899
    order: 0 !important;
9900
  }
16848 stevensc 9901
 
16825 efrain 9902
  .order-sm-1 {
9903
    order: 1 !important;
9904
  }
16848 stevensc 9905
 
16825 efrain 9906
  .order-sm-2 {
9907
    order: 2 !important;
9908
  }
16848 stevensc 9909
 
16825 efrain 9910
  .order-sm-3 {
9911
    order: 3 !important;
9912
  }
16848 stevensc 9913
 
16825 efrain 9914
  .order-sm-4 {
9915
    order: 4 !important;
9916
  }
16848 stevensc 9917
 
16825 efrain 9918
  .order-sm-5 {
9919
    order: 5 !important;
9920
  }
16848 stevensc 9921
 
16825 efrain 9922
  .order-sm-last {
9923
    order: 6 !important;
9924
  }
16848 stevensc 9925
 
16825 efrain 9926
  .m-sm-0 {
9927
    margin: 0 !important;
9928
  }
16848 stevensc 9929
 
16825 efrain 9930
  .m-sm-1 {
9931
    margin: 0.25rem !important;
9932
  }
16848 stevensc 9933
 
16825 efrain 9934
  .m-sm-2 {
9935
    margin: 0.5rem !important;
9936
  }
16848 stevensc 9937
 
16825 efrain 9938
  .m-sm-3 {
9939
    margin: 1rem !important;
9940
  }
16848 stevensc 9941
 
16825 efrain 9942
  .m-sm-4 {
9943
    margin: 1.5rem !important;
9944
  }
16848 stevensc 9945
 
16825 efrain 9946
  .m-sm-5 {
9947
    margin: 3rem !important;
9948
  }
16848 stevensc 9949
 
16825 efrain 9950
  .m-sm-6 {
9951
    margin: 4.5rem !important;
9952
  }
16848 stevensc 9953
 
16825 efrain 9954
  .m-sm-7 {
9955
    margin: 6rem !important;
9956
  }
16848 stevensc 9957
 
16825 efrain 9958
  .m-sm-auto {
9959
    margin: auto !important;
9960
  }
16848 stevensc 9961
 
16825 efrain 9962
  .mx-sm-0 {
9963
    margin-right: 0 !important;
9964
    margin-left: 0 !important;
9965
  }
16848 stevensc 9966
 
16825 efrain 9967
  .mx-sm-1 {
9968
    margin-right: 0.25rem !important;
9969
    margin-left: 0.25rem !important;
9970
  }
16848 stevensc 9971
 
16825 efrain 9972
  .mx-sm-2 {
9973
    margin-right: 0.5rem !important;
9974
    margin-left: 0.5rem !important;
9975
  }
16848 stevensc 9976
 
16825 efrain 9977
  .mx-sm-3 {
9978
    margin-right: 1rem !important;
9979
    margin-left: 1rem !important;
9980
  }
16848 stevensc 9981
 
16825 efrain 9982
  .mx-sm-4 {
9983
    margin-right: 1.5rem !important;
9984
    margin-left: 1.5rem !important;
9985
  }
16848 stevensc 9986
 
16825 efrain 9987
  .mx-sm-5 {
9988
    margin-right: 3rem !important;
9989
    margin-left: 3rem !important;
9990
  }
16848 stevensc 9991
 
16825 efrain 9992
  .mx-sm-6 {
9993
    margin-right: 4.5rem !important;
9994
    margin-left: 4.5rem !important;
9995
  }
16848 stevensc 9996
 
16825 efrain 9997
  .mx-sm-7 {
9998
    margin-right: 6rem !important;
9999
    margin-left: 6rem !important;
10000
  }
16848 stevensc 10001
 
16825 efrain 10002
  .mx-sm-auto {
10003
    margin-right: auto !important;
10004
    margin-left: auto !important;
10005
  }
16848 stevensc 10006
 
16825 efrain 10007
  .my-sm-0 {
10008
    margin-top: 0 !important;
10009
    margin-bottom: 0 !important;
10010
  }
16848 stevensc 10011
 
16825 efrain 10012
  .my-sm-1 {
10013
    margin-top: 0.25rem !important;
10014
    margin-bottom: 0.25rem !important;
10015
  }
16848 stevensc 10016
 
16825 efrain 10017
  .my-sm-2 {
10018
    margin-top: 0.5rem !important;
10019
    margin-bottom: 0.5rem !important;
10020
  }
16848 stevensc 10021
 
16825 efrain 10022
  .my-sm-3 {
10023
    margin-top: 1rem !important;
10024
    margin-bottom: 1rem !important;
10025
  }
16848 stevensc 10026
 
16825 efrain 10027
  .my-sm-4 {
10028
    margin-top: 1.5rem !important;
10029
    margin-bottom: 1.5rem !important;
10030
  }
16848 stevensc 10031
 
16825 efrain 10032
  .my-sm-5 {
10033
    margin-top: 3rem !important;
10034
    margin-bottom: 3rem !important;
10035
  }
16848 stevensc 10036
 
16825 efrain 10037
  .my-sm-6 {
10038
    margin-top: 4.5rem !important;
10039
    margin-bottom: 4.5rem !important;
10040
  }
16848 stevensc 10041
 
16825 efrain 10042
  .my-sm-7 {
10043
    margin-top: 6rem !important;
10044
    margin-bottom: 6rem !important;
10045
  }
16848 stevensc 10046
 
16825 efrain 10047
  .my-sm-auto {
10048
    margin-top: auto !important;
10049
    margin-bottom: auto !important;
10050
  }
16848 stevensc 10051
 
16825 efrain 10052
  .mt-sm-0 {
10053
    margin-top: 0 !important;
10054
  }
16848 stevensc 10055
 
16825 efrain 10056
  .mt-sm-1 {
10057
    margin-top: 0.25rem !important;
10058
  }
16848 stevensc 10059
 
16825 efrain 10060
  .mt-sm-2 {
10061
    margin-top: 0.5rem !important;
10062
  }
16848 stevensc 10063
 
16825 efrain 10064
  .mt-sm-3 {
10065
    margin-top: 1rem !important;
10066
  }
16848 stevensc 10067
 
16825 efrain 10068
  .mt-sm-4 {
10069
    margin-top: 1.5rem !important;
10070
  }
16848 stevensc 10071
 
16825 efrain 10072
  .mt-sm-5 {
10073
    margin-top: 3rem !important;
10074
  }
16848 stevensc 10075
 
16825 efrain 10076
  .mt-sm-6 {
10077
    margin-top: 4.5rem !important;
10078
  }
16848 stevensc 10079
 
16825 efrain 10080
  .mt-sm-7 {
10081
    margin-top: 6rem !important;
10082
  }
16848 stevensc 10083
 
16825 efrain 10084
  .mt-sm-auto {
10085
    margin-top: auto !important;
10086
  }
16848 stevensc 10087
 
16825 efrain 10088
  .me-sm-0 {
10089
    margin-right: 0 !important;
10090
  }
16848 stevensc 10091
 
16825 efrain 10092
  .me-sm-1 {
10093
    margin-right: 0.25rem !important;
10094
  }
16848 stevensc 10095
 
16825 efrain 10096
  .me-sm-2 {
10097
    margin-right: 0.5rem !important;
10098
  }
16848 stevensc 10099
 
16825 efrain 10100
  .me-sm-3 {
10101
    margin-right: 1rem !important;
10102
  }
16848 stevensc 10103
 
16825 efrain 10104
  .me-sm-4 {
10105
    margin-right: 1.5rem !important;
10106
  }
16848 stevensc 10107
 
16825 efrain 10108
  .me-sm-5 {
10109
    margin-right: 3rem !important;
10110
  }
16848 stevensc 10111
 
16825 efrain 10112
  .me-sm-6 {
10113
    margin-right: 4.5rem !important;
10114
  }
16848 stevensc 10115
 
16825 efrain 10116
  .me-sm-7 {
10117
    margin-right: 6rem !important;
10118
  }
16848 stevensc 10119
 
16825 efrain 10120
  .me-sm-auto {
10121
    margin-right: auto !important;
10122
  }
16848 stevensc 10123
 
16825 efrain 10124
  .mb-sm-0 {
10125
    margin-bottom: 0 !important;
10126
  }
16848 stevensc 10127
 
16825 efrain 10128
  .mb-sm-1 {
10129
    margin-bottom: 0.25rem !important;
10130
  }
16848 stevensc 10131
 
16825 efrain 10132
  .mb-sm-2 {
10133
    margin-bottom: 0.5rem !important;
10134
  }
16848 stevensc 10135
 
16825 efrain 10136
  .mb-sm-3 {
10137
    margin-bottom: 1rem !important;
10138
  }
16848 stevensc 10139
 
16825 efrain 10140
  .mb-sm-4 {
10141
    margin-bottom: 1.5rem !important;
10142
  }
16848 stevensc 10143
 
16825 efrain 10144
  .mb-sm-5 {
10145
    margin-bottom: 3rem !important;
10146
  }
16848 stevensc 10147
 
16825 efrain 10148
  .mb-sm-6 {
10149
    margin-bottom: 4.5rem !important;
10150
  }
16848 stevensc 10151
 
16825 efrain 10152
  .mb-sm-7 {
10153
    margin-bottom: 6rem !important;
10154
  }
16848 stevensc 10155
 
16825 efrain 10156
  .mb-sm-auto {
10157
    margin-bottom: auto !important;
10158
  }
16848 stevensc 10159
 
16825 efrain 10160
  .ms-sm-0 {
10161
    margin-left: 0 !important;
10162
  }
16848 stevensc 10163
 
16825 efrain 10164
  .ms-sm-1 {
10165
    margin-left: 0.25rem !important;
10166
  }
16848 stevensc 10167
 
16825 efrain 10168
  .ms-sm-2 {
10169
    margin-left: 0.5rem !important;
10170
  }
16848 stevensc 10171
 
16825 efrain 10172
  .ms-sm-3 {
10173
    margin-left: 1rem !important;
10174
  }
16848 stevensc 10175
 
16825 efrain 10176
  .ms-sm-4 {
10177
    margin-left: 1.5rem !important;
10178
  }
16848 stevensc 10179
 
16825 efrain 10180
  .ms-sm-5 {
10181
    margin-left: 3rem !important;
10182
  }
16848 stevensc 10183
 
16825 efrain 10184
  .ms-sm-6 {
10185
    margin-left: 4.5rem !important;
10186
  }
16848 stevensc 10187
 
16825 efrain 10188
  .ms-sm-7 {
10189
    margin-left: 6rem !important;
10190
  }
16848 stevensc 10191
 
16825 efrain 10192
  .ms-sm-auto {
10193
    margin-left: auto !important;
10194
  }
16848 stevensc 10195
 
16825 efrain 10196
  .m-sm-n1 {
10197
    margin: -0.25rem !important;
10198
  }
16848 stevensc 10199
 
16825 efrain 10200
  .m-sm-n2 {
10201
    margin: -0.5rem !important;
10202
  }
16848 stevensc 10203
 
16825 efrain 10204
  .m-sm-n3 {
10205
    margin: -1rem !important;
10206
  }
16848 stevensc 10207
 
16825 efrain 10208
  .m-sm-n4 {
10209
    margin: -1.5rem !important;
10210
  }
16848 stevensc 10211
 
16825 efrain 10212
  .m-sm-n5 {
10213
    margin: -3rem !important;
10214
  }
16848 stevensc 10215
 
16825 efrain 10216
  .m-sm-n6 {
10217
    margin: -4.5rem !important;
10218
  }
16848 stevensc 10219
 
16825 efrain 10220
  .m-sm-n7 {
10221
    margin: -6rem !important;
10222
  }
16848 stevensc 10223
 
16825 efrain 10224
  .mx-sm-n1 {
10225
    margin-right: -0.25rem !important;
10226
    margin-left: -0.25rem !important;
10227
  }
16848 stevensc 10228
 
16825 efrain 10229
  .mx-sm-n2 {
10230
    margin-right: -0.5rem !important;
10231
    margin-left: -0.5rem !important;
10232
  }
16848 stevensc 10233
 
16825 efrain 10234
  .mx-sm-n3 {
10235
    margin-right: -1rem !important;
10236
    margin-left: -1rem !important;
10237
  }
16848 stevensc 10238
 
16825 efrain 10239
  .mx-sm-n4 {
10240
    margin-right: -1.5rem !important;
10241
    margin-left: -1.5rem !important;
10242
  }
16848 stevensc 10243
 
16825 efrain 10244
  .mx-sm-n5 {
10245
    margin-right: -3rem !important;
10246
    margin-left: -3rem !important;
10247
  }
16848 stevensc 10248
 
16825 efrain 10249
  .mx-sm-n6 {
10250
    margin-right: -4.5rem !important;
10251
    margin-left: -4.5rem !important;
10252
  }
16848 stevensc 10253
 
16825 efrain 10254
  .mx-sm-n7 {
10255
    margin-right: -6rem !important;
10256
    margin-left: -6rem !important;
10257
  }
16848 stevensc 10258
 
16825 efrain 10259
  .my-sm-n1 {
10260
    margin-top: -0.25rem !important;
10261
    margin-bottom: -0.25rem !important;
10262
  }
16848 stevensc 10263
 
16825 efrain 10264
  .my-sm-n2 {
10265
    margin-top: -0.5rem !important;
10266
    margin-bottom: -0.5rem !important;
10267
  }
16848 stevensc 10268
 
16825 efrain 10269
  .my-sm-n3 {
10270
    margin-top: -1rem !important;
10271
    margin-bottom: -1rem !important;
10272
  }
16848 stevensc 10273
 
16825 efrain 10274
  .my-sm-n4 {
10275
    margin-top: -1.5rem !important;
10276
    margin-bottom: -1.5rem !important;
10277
  }
16848 stevensc 10278
 
16825 efrain 10279
  .my-sm-n5 {
10280
    margin-top: -3rem !important;
10281
    margin-bottom: -3rem !important;
10282
  }
16848 stevensc 10283
 
16825 efrain 10284
  .my-sm-n6 {
10285
    margin-top: -4.5rem !important;
10286
    margin-bottom: -4.5rem !important;
10287
  }
16848 stevensc 10288
 
16825 efrain 10289
  .my-sm-n7 {
10290
    margin-top: -6rem !important;
10291
    margin-bottom: -6rem !important;
10292
  }
16848 stevensc 10293
 
16825 efrain 10294
  .mt-sm-n1 {
10295
    margin-top: -0.25rem !important;
10296
  }
16848 stevensc 10297
 
16825 efrain 10298
  .mt-sm-n2 {
10299
    margin-top: -0.5rem !important;
10300
  }
16848 stevensc 10301
 
16825 efrain 10302
  .mt-sm-n3 {
10303
    margin-top: -1rem !important;
10304
  }
16848 stevensc 10305
 
16825 efrain 10306
  .mt-sm-n4 {
10307
    margin-top: -1.5rem !important;
10308
  }
16848 stevensc 10309
 
16825 efrain 10310
  .mt-sm-n5 {
10311
    margin-top: -3rem !important;
10312
  }
16848 stevensc 10313
 
16825 efrain 10314
  .mt-sm-n6 {
10315
    margin-top: -4.5rem !important;
10316
  }
16848 stevensc 10317
 
16825 efrain 10318
  .mt-sm-n7 {
10319
    margin-top: -6rem !important;
10320
  }
16848 stevensc 10321
 
16825 efrain 10322
  .me-sm-n1 {
10323
    margin-right: -0.25rem !important;
10324
  }
16848 stevensc 10325
 
16825 efrain 10326
  .me-sm-n2 {
10327
    margin-right: -0.5rem !important;
10328
  }
16848 stevensc 10329
 
16825 efrain 10330
  .me-sm-n3 {
10331
    margin-right: -1rem !important;
10332
  }
16848 stevensc 10333
 
16825 efrain 10334
  .me-sm-n4 {
10335
    margin-right: -1.5rem !important;
10336
  }
16848 stevensc 10337
 
16825 efrain 10338
  .me-sm-n5 {
10339
    margin-right: -3rem !important;
10340
  }
16848 stevensc 10341
 
16825 efrain 10342
  .me-sm-n6 {
10343
    margin-right: -4.5rem !important;
10344
  }
16848 stevensc 10345
 
16825 efrain 10346
  .me-sm-n7 {
10347
    margin-right: -6rem !important;
10348
  }
16848 stevensc 10349
 
16825 efrain 10350
  .mb-sm-n1 {
10351
    margin-bottom: -0.25rem !important;
10352
  }
16848 stevensc 10353
 
16825 efrain 10354
  .mb-sm-n2 {
10355
    margin-bottom: -0.5rem !important;
10356
  }
16848 stevensc 10357
 
16825 efrain 10358
  .mb-sm-n3 {
10359
    margin-bottom: -1rem !important;
10360
  }
16848 stevensc 10361
 
16825 efrain 10362
  .mb-sm-n4 {
10363
    margin-bottom: -1.5rem !important;
10364
  }
16848 stevensc 10365
 
16825 efrain 10366
  .mb-sm-n5 {
10367
    margin-bottom: -3rem !important;
10368
  }
16848 stevensc 10369
 
16825 efrain 10370
  .mb-sm-n6 {
10371
    margin-bottom: -4.5rem !important;
10372
  }
16848 stevensc 10373
 
16825 efrain 10374
  .mb-sm-n7 {
10375
    margin-bottom: -6rem !important;
10376
  }
16848 stevensc 10377
 
16825 efrain 10378
  .ms-sm-n1 {
10379
    margin-left: -0.25rem !important;
10380
  }
16848 stevensc 10381
 
16825 efrain 10382
  .ms-sm-n2 {
10383
    margin-left: -0.5rem !important;
10384
  }
16848 stevensc 10385
 
16825 efrain 10386
  .ms-sm-n3 {
10387
    margin-left: -1rem !important;
10388
  }
16848 stevensc 10389
 
16825 efrain 10390
  .ms-sm-n4 {
10391
    margin-left: -1.5rem !important;
10392
  }
16848 stevensc 10393
 
16825 efrain 10394
  .ms-sm-n5 {
10395
    margin-left: -3rem !important;
10396
  }
16848 stevensc 10397
 
16825 efrain 10398
  .ms-sm-n6 {
10399
    margin-left: -4.5rem !important;
10400
  }
16848 stevensc 10401
 
16825 efrain 10402
  .ms-sm-n7 {
10403
    margin-left: -6rem !important;
10404
  }
16848 stevensc 10405
 
16825 efrain 10406
  .p-sm-0 {
10407
    padding: 0 !important;
10408
  }
16848 stevensc 10409
 
16825 efrain 10410
  .p-sm-1 {
10411
    padding: 0.25rem !important;
10412
  }
16848 stevensc 10413
 
16825 efrain 10414
  .p-sm-2 {
10415
    padding: 0.5rem !important;
10416
  }
16848 stevensc 10417
 
16825 efrain 10418
  .p-sm-3 {
10419
    padding: 1rem !important;
10420
  }
16848 stevensc 10421
 
16825 efrain 10422
  .p-sm-4 {
10423
    padding: 1.5rem !important;
10424
  }
16848 stevensc 10425
 
16825 efrain 10426
  .p-sm-5 {
10427
    padding: 3rem !important;
10428
  }
16848 stevensc 10429
 
16825 efrain 10430
  .p-sm-6 {
10431
    padding: 4.5rem !important;
10432
  }
16848 stevensc 10433
 
16825 efrain 10434
  .p-sm-7 {
10435
    padding: 6rem !important;
10436
  }
16848 stevensc 10437
 
16825 efrain 10438
  .px-sm-0 {
10439
    padding-right: 0 !important;
10440
    padding-left: 0 !important;
10441
  }
16848 stevensc 10442
 
16825 efrain 10443
  .px-sm-1 {
10444
    padding-right: 0.25rem !important;
10445
    padding-left: 0.25rem !important;
10446
  }
16848 stevensc 10447
 
16825 efrain 10448
  .px-sm-2 {
10449
    padding-right: 0.5rem !important;
10450
    padding-left: 0.5rem !important;
10451
  }
16848 stevensc 10452
 
16825 efrain 10453
  .px-sm-3 {
10454
    padding-right: 1rem !important;
10455
    padding-left: 1rem !important;
10456
  }
16848 stevensc 10457
 
16825 efrain 10458
  .px-sm-4 {
10459
    padding-right: 1.5rem !important;
10460
    padding-left: 1.5rem !important;
10461
  }
16848 stevensc 10462
 
16825 efrain 10463
  .px-sm-5 {
10464
    padding-right: 3rem !important;
10465
    padding-left: 3rem !important;
10466
  }
16848 stevensc 10467
 
16825 efrain 10468
  .px-sm-6 {
10469
    padding-right: 4.5rem !important;
10470
    padding-left: 4.5rem !important;
10471
  }
16848 stevensc 10472
 
16825 efrain 10473
  .px-sm-7 {
10474
    padding-right: 6rem !important;
10475
    padding-left: 6rem !important;
10476
  }
16848 stevensc 10477
 
16825 efrain 10478
  .py-sm-0 {
10479
    padding-top: 0 !important;
10480
    padding-bottom: 0 !important;
10481
  }
16848 stevensc 10482
 
16825 efrain 10483
  .py-sm-1 {
10484
    padding-top: 0.25rem !important;
10485
    padding-bottom: 0.25rem !important;
10486
  }
16848 stevensc 10487
 
16825 efrain 10488
  .py-sm-2 {
10489
    padding-top: 0.5rem !important;
10490
    padding-bottom: 0.5rem !important;
10491
  }
16848 stevensc 10492
 
16825 efrain 10493
  .py-sm-3 {
10494
    padding-top: 1rem !important;
10495
    padding-bottom: 1rem !important;
10496
  }
16848 stevensc 10497
 
16825 efrain 10498
  .py-sm-4 {
10499
    padding-top: 1.5rem !important;
10500
    padding-bottom: 1.5rem !important;
10501
  }
16848 stevensc 10502
 
16825 efrain 10503
  .py-sm-5 {
10504
    padding-top: 3rem !important;
10505
    padding-bottom: 3rem !important;
10506
  }
16848 stevensc 10507
 
16825 efrain 10508
  .py-sm-6 {
10509
    padding-top: 4.5rem !important;
10510
    padding-bottom: 4.5rem !important;
10511
  }
16848 stevensc 10512
 
16825 efrain 10513
  .py-sm-7 {
10514
    padding-top: 6rem !important;
10515
    padding-bottom: 6rem !important;
10516
  }
16848 stevensc 10517
 
16825 efrain 10518
  .pt-sm-0 {
10519
    padding-top: 0 !important;
10520
  }
16848 stevensc 10521
 
16825 efrain 10522
  .pt-sm-1 {
10523
    padding-top: 0.25rem !important;
10524
  }
16848 stevensc 10525
 
16825 efrain 10526
  .pt-sm-2 {
10527
    padding-top: 0.5rem !important;
10528
  }
16848 stevensc 10529
 
16825 efrain 10530
  .pt-sm-3 {
10531
    padding-top: 1rem !important;
10532
  }
16848 stevensc 10533
 
16825 efrain 10534
  .pt-sm-4 {
10535
    padding-top: 1.5rem !important;
10536
  }
16848 stevensc 10537
 
16825 efrain 10538
  .pt-sm-5 {
10539
    padding-top: 3rem !important;
10540
  }
16848 stevensc 10541
 
16825 efrain 10542
  .pt-sm-6 {
10543
    padding-top: 4.5rem !important;
10544
  }
16848 stevensc 10545
 
16825 efrain 10546
  .pt-sm-7 {
10547
    padding-top: 6rem !important;
10548
  }
16848 stevensc 10549
 
16825 efrain 10550
  .pe-sm-0 {
10551
    padding-right: 0 !important;
10552
  }
16848 stevensc 10553
 
16825 efrain 10554
  .pe-sm-1 {
10555
    padding-right: 0.25rem !important;
10556
  }
16848 stevensc 10557
 
16825 efrain 10558
  .pe-sm-2 {
10559
    padding-right: 0.5rem !important;
10560
  }
16848 stevensc 10561
 
16825 efrain 10562
  .pe-sm-3 {
10563
    padding-right: 1rem !important;
10564
  }
16848 stevensc 10565
 
16825 efrain 10566
  .pe-sm-4 {
10567
    padding-right: 1.5rem !important;
10568
  }
16848 stevensc 10569
 
16825 efrain 10570
  .pe-sm-5 {
10571
    padding-right: 3rem !important;
10572
  }
16848 stevensc 10573
 
16825 efrain 10574
  .pe-sm-6 {
10575
    padding-right: 4.5rem !important;
10576
  }
16848 stevensc 10577
 
16825 efrain 10578
  .pe-sm-7 {
10579
    padding-right: 6rem !important;
10580
  }
16848 stevensc 10581
 
16825 efrain 10582
  .pb-sm-0 {
10583
    padding-bottom: 0 !important;
10584
  }
16848 stevensc 10585
 
16825 efrain 10586
  .pb-sm-1 {
10587
    padding-bottom: 0.25rem !important;
10588
  }
16848 stevensc 10589
 
16825 efrain 10590
  .pb-sm-2 {
10591
    padding-bottom: 0.5rem !important;
10592
  }
16848 stevensc 10593
 
16825 efrain 10594
  .pb-sm-3 {
10595
    padding-bottom: 1rem !important;
10596
  }
16848 stevensc 10597
 
16825 efrain 10598
  .pb-sm-4 {
10599
    padding-bottom: 1.5rem !important;
10600
  }
16848 stevensc 10601
 
16825 efrain 10602
  .pb-sm-5 {
10603
    padding-bottom: 3rem !important;
10604
  }
16848 stevensc 10605
 
16825 efrain 10606
  .pb-sm-6 {
10607
    padding-bottom: 4.5rem !important;
10608
  }
16848 stevensc 10609
 
16825 efrain 10610
  .pb-sm-7 {
10611
    padding-bottom: 6rem !important;
10612
  }
16848 stevensc 10613
 
16825 efrain 10614
  .ps-sm-0 {
10615
    padding-left: 0 !important;
10616
  }
16848 stevensc 10617
 
16825 efrain 10618
  .ps-sm-1 {
10619
    padding-left: 0.25rem !important;
10620
  }
16848 stevensc 10621
 
16825 efrain 10622
  .ps-sm-2 {
10623
    padding-left: 0.5rem !important;
10624
  }
16848 stevensc 10625
 
16825 efrain 10626
  .ps-sm-3 {
10627
    padding-left: 1rem !important;
10628
  }
16848 stevensc 10629
 
16825 efrain 10630
  .ps-sm-4 {
10631
    padding-left: 1.5rem !important;
10632
  }
16848 stevensc 10633
 
16825 efrain 10634
  .ps-sm-5 {
10635
    padding-left: 3rem !important;
10636
  }
16848 stevensc 10637
 
16825 efrain 10638
  .ps-sm-6 {
10639
    padding-left: 4.5rem !important;
10640
  }
16848 stevensc 10641
 
16825 efrain 10642
  .ps-sm-7 {
10643
    padding-left: 6rem !important;
10644
  }
16848 stevensc 10645
 
16825 efrain 10646
  .gap-sm-0 {
10647
    gap: 0 !important;
10648
  }
16848 stevensc 10649
 
16825 efrain 10650
  .gap-sm-1 {
10651
    gap: 0.25rem !important;
10652
  }
16848 stevensc 10653
 
16825 efrain 10654
  .gap-sm-2 {
10655
    gap: 0.5rem !important;
10656
  }
16848 stevensc 10657
 
16825 efrain 10658
  .gap-sm-3 {
10659
    gap: 1rem !important;
10660
  }
16848 stevensc 10661
 
16825 efrain 10662
  .gap-sm-4 {
10663
    gap: 1.5rem !important;
10664
  }
16848 stevensc 10665
 
16825 efrain 10666
  .gap-sm-5 {
10667
    gap: 3rem !important;
10668
  }
16848 stevensc 10669
 
16825 efrain 10670
  .gap-sm-6 {
10671
    gap: 4.5rem !important;
10672
  }
16848 stevensc 10673
 
16825 efrain 10674
  .gap-sm-7 {
10675
    gap: 6rem !important;
10676
  }
16848 stevensc 10677
 
16825 efrain 10678
  .text-sm-start {
10679
    text-align: left !important;
10680
  }
16848 stevensc 10681
 
16825 efrain 10682
  .text-sm-end {
10683
    text-align: right !important;
10684
  }
16848 stevensc 10685
 
16825 efrain 10686
  .text-sm-center {
10687
    text-align: center !important;
10688
  }
10689
}
16848 stevensc 10690
 
16825 efrain 10691
@media (min-width: 768px) {
10692
  .float-md-start {
10693
    float: left !important;
10694
  }
16848 stevensc 10695
 
16825 efrain 10696
  .float-md-end {
10697
    float: right !important;
10698
  }
16848 stevensc 10699
 
16825 efrain 10700
  .float-md-none {
10701
    float: none !important;
10702
  }
16848 stevensc 10703
 
16825 efrain 10704
  .d-md-inline {
10705
    display: inline !important;
10706
  }
16848 stevensc 10707
 
16825 efrain 10708
  .d-md-inline-block {
10709
    display: inline-block !important;
10710
  }
16848 stevensc 10711
 
16825 efrain 10712
  .d-md-block {
10713
    display: block !important;
10714
  }
16848 stevensc 10715
 
16825 efrain 10716
  .d-md-grid {
10717
    display: grid !important;
10718
  }
16848 stevensc 10719
 
16825 efrain 10720
  .d-md-table {
10721
    display: table !important;
10722
  }
16848 stevensc 10723
 
16825 efrain 10724
  .d-md-table-row {
10725
    display: table-row !important;
10726
  }
16848 stevensc 10727
 
16825 efrain 10728
  .d-md-table-cell {
10729
    display: table-cell !important;
10730
  }
16848 stevensc 10731
 
10732
  .d-md-flex,
10733
  .navbar .search-form {
16825 efrain 10734
    display: flex !important;
10735
  }
16848 stevensc 10736
 
16825 efrain 10737
  .d-md-inline-flex {
10738
    display: inline-flex !important;
10739
  }
16848 stevensc 10740
 
16825 efrain 10741
  .d-md-none {
10742
    display: none !important;
10743
  }
16848 stevensc 10744
 
16825 efrain 10745
  .border-md {
10746
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10747
  }
16848 stevensc 10748
 
16825 efrain 10749
  .border-md-0 {
10750
    border: 0 !important;
10751
  }
16848 stevensc 10752
 
16825 efrain 10753
  .border-top-md {
10754
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10755
  }
16848 stevensc 10756
 
16825 efrain 10757
  .border-top-md-0 {
10758
    border-top: 0 !important;
10759
  }
16848 stevensc 10760
 
16825 efrain 10761
  .border-end-md {
10762
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10763
  }
16848 stevensc 10764
 
16825 efrain 10765
  .border-end-md-0 {
10766
    border-right: 0 !important;
10767
  }
16848 stevensc 10768
 
16825 efrain 10769
  .border-bottom-md {
10770
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10771
  }
16848 stevensc 10772
 
16825 efrain 10773
  .border-bottom-md-0 {
10774
    border-bottom: 0 !important;
10775
  }
16848 stevensc 10776
 
16825 efrain 10777
  .border-start-md {
10778
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10779
  }
16848 stevensc 10780
 
16825 efrain 10781
  .border-start-md-0 {
10782
    border-left: 0 !important;
10783
  }
16848 stevensc 10784
 
16825 efrain 10785
  .flex-md-fill {
10786
    flex: 1 1 auto !important;
10787
  }
16848 stevensc 10788
 
16825 efrain 10789
  .flex-md-row {
10790
    flex-direction: row !important;
10791
  }
16848 stevensc 10792
 
16825 efrain 10793
  .flex-md-column {
10794
    flex-direction: column !important;
10795
  }
16848 stevensc 10796
 
16825 efrain 10797
  .flex-md-row-reverse {
10798
    flex-direction: row-reverse !important;
10799
  }
16848 stevensc 10800
 
16825 efrain 10801
  .flex-md-column-reverse {
10802
    flex-direction: column-reverse !important;
10803
  }
16848 stevensc 10804
 
16825 efrain 10805
  .flex-md-grow-0 {
10806
    flex-grow: 0 !important;
10807
  }
16848 stevensc 10808
 
16825 efrain 10809
  .flex-md-grow-1 {
10810
    flex-grow: 1 !important;
10811
  }
16848 stevensc 10812
 
16825 efrain 10813
  .flex-md-shrink-0 {
10814
    flex-shrink: 0 !important;
10815
  }
16848 stevensc 10816
 
16825 efrain 10817
  .flex-md-shrink-1 {
10818
    flex-shrink: 1 !important;
10819
  }
16848 stevensc 10820
 
16825 efrain 10821
  .flex-md-wrap {
10822
    flex-wrap: wrap !important;
10823
  }
16848 stevensc 10824
 
16825 efrain 10825
  .flex-md-nowrap {
10826
    flex-wrap: nowrap !important;
10827
  }
16848 stevensc 10828
 
16825 efrain 10829
  .flex-md-wrap-reverse {
10830
    flex-wrap: wrap-reverse !important;
10831
  }
16848 stevensc 10832
 
16825 efrain 10833
  .justify-content-md-start {
10834
    justify-content: flex-start !important;
10835
  }
16848 stevensc 10836
 
10837
  .justify-content-md-end,
10838
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10839
    justify-content: flex-end !important;
10840
  }
16848 stevensc 10841
 
16825 efrain 10842
  .justify-content-md-center {
10843
    justify-content: center !important;
10844
  }
16848 stevensc 10845
 
16825 efrain 10846
  .justify-content-md-between {
10847
    justify-content: space-between !important;
10848
  }
16848 stevensc 10849
 
16825 efrain 10850
  .justify-content-md-around {
10851
    justify-content: space-around !important;
10852
  }
16848 stevensc 10853
 
16825 efrain 10854
  .justify-content-md-evenly {
10855
    justify-content: space-evenly !important;
10856
  }
16848 stevensc 10857
 
16825 efrain 10858
  .align-items-md-start {
10859
    align-items: flex-start !important;
10860
  }
16848 stevensc 10861
 
16825 efrain 10862
  .align-items-md-end {
10863
    align-items: flex-end !important;
10864
  }
16848 stevensc 10865
 
16825 efrain 10866
  .align-items-md-center {
10867
    align-items: center !important;
10868
  }
16848 stevensc 10869
 
16825 efrain 10870
  .align-items-md-baseline {
10871
    align-items: baseline !important;
10872
  }
16848 stevensc 10873
 
16825 efrain 10874
  .align-items-md-stretch {
10875
    align-items: stretch !important;
10876
  }
16848 stevensc 10877
 
16825 efrain 10878
  .align-content-md-start {
10879
    align-content: flex-start !important;
10880
  }
16848 stevensc 10881
 
16825 efrain 10882
  .align-content-md-end {
10883
    align-content: flex-end !important;
10884
  }
16848 stevensc 10885
 
16825 efrain 10886
  .align-content-md-center {
10887
    align-content: center !important;
10888
  }
16848 stevensc 10889
 
16825 efrain 10890
  .align-content-md-between {
10891
    align-content: space-between !important;
10892
  }
16848 stevensc 10893
 
16825 efrain 10894
  .align-content-md-around {
10895
    align-content: space-around !important;
10896
  }
16848 stevensc 10897
 
16825 efrain 10898
  .align-content-md-stretch {
10899
    align-content: stretch !important;
10900
  }
16848 stevensc 10901
 
16825 efrain 10902
  .align-self-md-auto {
10903
    align-self: auto !important;
10904
  }
16848 stevensc 10905
 
16825 efrain 10906
  .align-self-md-start {
10907
    align-self: flex-start !important;
10908
  }
16848 stevensc 10909
 
16825 efrain 10910
  .align-self-md-end {
10911
    align-self: flex-end !important;
10912
  }
16848 stevensc 10913
 
16825 efrain 10914
  .align-self-md-center {
10915
    align-self: center !important;
10916
  }
16848 stevensc 10917
 
16825 efrain 10918
  .align-self-md-baseline {
10919
    align-self: baseline !important;
10920
  }
16848 stevensc 10921
 
16825 efrain 10922
  .align-self-md-stretch {
10923
    align-self: stretch !important;
10924
  }
16848 stevensc 10925
 
16825 efrain 10926
  .order-md-first {
10927
    order: -1 !important;
10928
  }
16848 stevensc 10929
 
16825 efrain 10930
  .order-md-0 {
10931
    order: 0 !important;
10932
  }
16848 stevensc 10933
 
16825 efrain 10934
  .order-md-1 {
10935
    order: 1 !important;
10936
  }
16848 stevensc 10937
 
16825 efrain 10938
  .order-md-2 {
10939
    order: 2 !important;
10940
  }
16848 stevensc 10941
 
16825 efrain 10942
  .order-md-3 {
10943
    order: 3 !important;
10944
  }
16848 stevensc 10945
 
16825 efrain 10946
  .order-md-4 {
10947
    order: 4 !important;
10948
  }
16848 stevensc 10949
 
16825 efrain 10950
  .order-md-5 {
10951
    order: 5 !important;
10952
  }
16848 stevensc 10953
 
16825 efrain 10954
  .order-md-last {
10955
    order: 6 !important;
10956
  }
16848 stevensc 10957
 
16825 efrain 10958
  .m-md-0 {
10959
    margin: 0 !important;
10960
  }
16848 stevensc 10961
 
16825 efrain 10962
  .m-md-1 {
10963
    margin: 0.25rem !important;
10964
  }
16848 stevensc 10965
 
16825 efrain 10966
  .m-md-2 {
10967
    margin: 0.5rem !important;
10968
  }
16848 stevensc 10969
 
16825 efrain 10970
  .m-md-3 {
10971
    margin: 1rem !important;
10972
  }
16848 stevensc 10973
 
16825 efrain 10974
  .m-md-4 {
10975
    margin: 1.5rem !important;
10976
  }
16848 stevensc 10977
 
16825 efrain 10978
  .m-md-5 {
10979
    margin: 3rem !important;
10980
  }
16848 stevensc 10981
 
16825 efrain 10982
  .m-md-6 {
10983
    margin: 4.5rem !important;
10984
  }
16848 stevensc 10985
 
16825 efrain 10986
  .m-md-7 {
10987
    margin: 6rem !important;
10988
  }
16848 stevensc 10989
 
16825 efrain 10990
  .m-md-auto {
10991
    margin: auto !important;
10992
  }
16848 stevensc 10993
 
16825 efrain 10994
  .mx-md-0 {
10995
    margin-right: 0 !important;
10996
    margin-left: 0 !important;
10997
  }
16848 stevensc 10998
 
16825 efrain 10999
  .mx-md-1 {
11000
    margin-right: 0.25rem !important;
11001
    margin-left: 0.25rem !important;
11002
  }
16848 stevensc 11003
 
16825 efrain 11004
  .mx-md-2 {
11005
    margin-right: 0.5rem !important;
11006
    margin-left: 0.5rem !important;
11007
  }
16848 stevensc 11008
 
16825 efrain 11009
  .mx-md-3 {
11010
    margin-right: 1rem !important;
11011
    margin-left: 1rem !important;
11012
  }
16848 stevensc 11013
 
16825 efrain 11014
  .mx-md-4 {
11015
    margin-right: 1.5rem !important;
11016
    margin-left: 1.5rem !important;
11017
  }
16848 stevensc 11018
 
16825 efrain 11019
  .mx-md-5 {
11020
    margin-right: 3rem !important;
11021
    margin-left: 3rem !important;
11022
  }
16848 stevensc 11023
 
16825 efrain 11024
  .mx-md-6 {
11025
    margin-right: 4.5rem !important;
11026
    margin-left: 4.5rem !important;
11027
  }
16848 stevensc 11028
 
16825 efrain 11029
  .mx-md-7 {
11030
    margin-right: 6rem !important;
11031
    margin-left: 6rem !important;
11032
  }
16848 stevensc 11033
 
16825 efrain 11034
  .mx-md-auto {
11035
    margin-right: auto !important;
11036
    margin-left: auto !important;
11037
  }
16848 stevensc 11038
 
16825 efrain 11039
  .my-md-0 {
11040
    margin-top: 0 !important;
11041
    margin-bottom: 0 !important;
11042
  }
16848 stevensc 11043
 
16825 efrain 11044
  .my-md-1 {
11045
    margin-top: 0.25rem !important;
11046
    margin-bottom: 0.25rem !important;
11047
  }
16848 stevensc 11048
 
16825 efrain 11049
  .my-md-2 {
11050
    margin-top: 0.5rem !important;
11051
    margin-bottom: 0.5rem !important;
11052
  }
16848 stevensc 11053
 
16825 efrain 11054
  .my-md-3 {
11055
    margin-top: 1rem !important;
11056
    margin-bottom: 1rem !important;
11057
  }
16848 stevensc 11058
 
16825 efrain 11059
  .my-md-4 {
11060
    margin-top: 1.5rem !important;
11061
    margin-bottom: 1.5rem !important;
11062
  }
16848 stevensc 11063
 
16825 efrain 11064
  .my-md-5 {
11065
    margin-top: 3rem !important;
11066
    margin-bottom: 3rem !important;
11067
  }
16848 stevensc 11068
 
16825 efrain 11069
  .my-md-6 {
11070
    margin-top: 4.5rem !important;
11071
    margin-bottom: 4.5rem !important;
11072
  }
16848 stevensc 11073
 
16825 efrain 11074
  .my-md-7 {
11075
    margin-top: 6rem !important;
11076
    margin-bottom: 6rem !important;
11077
  }
16848 stevensc 11078
 
16825 efrain 11079
  .my-md-auto {
11080
    margin-top: auto !important;
11081
    margin-bottom: auto !important;
11082
  }
16848 stevensc 11083
 
11084
  .mt-md-0,
11085
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11086
    margin-top: 0 !important;
11087
  }
16848 stevensc 11088
 
16825 efrain 11089
  .mt-md-1 {
11090
    margin-top: 0.25rem !important;
11091
  }
16848 stevensc 11092
 
16825 efrain 11093
  .mt-md-2 {
11094
    margin-top: 0.5rem !important;
11095
  }
16848 stevensc 11096
 
16825 efrain 11097
  .mt-md-3 {
11098
    margin-top: 1rem !important;
11099
  }
16848 stevensc 11100
 
16825 efrain 11101
  .mt-md-4 {
11102
    margin-top: 1.5rem !important;
11103
  }
16848 stevensc 11104
 
16825 efrain 11105
  .mt-md-5 {
11106
    margin-top: 3rem !important;
11107
  }
16848 stevensc 11108
 
16825 efrain 11109
  .mt-md-6 {
11110
    margin-top: 4.5rem !important;
11111
  }
16848 stevensc 11112
 
16825 efrain 11113
  .mt-md-7 {
11114
    margin-top: 6rem !important;
11115
  }
16848 stevensc 11116
 
16825 efrain 11117
  .mt-md-auto {
11118
    margin-top: auto !important;
11119
  }
16848 stevensc 11120
 
16825 efrain 11121
  .me-md-0 {
11122
    margin-right: 0 !important;
11123
  }
16848 stevensc 11124
 
16825 efrain 11125
  .me-md-1 {
11126
    margin-right: 0.25rem !important;
11127
  }
16848 stevensc 11128
 
16825 efrain 11129
  .me-md-2 {
11130
    margin-right: 0.5rem !important;
11131
  }
16848 stevensc 11132
 
16825 efrain 11133
  .me-md-3 {
11134
    margin-right: 1rem !important;
11135
  }
16848 stevensc 11136
 
16825 efrain 11137
  .me-md-4 {
11138
    margin-right: 1.5rem !important;
11139
  }
16848 stevensc 11140
 
16825 efrain 11141
  .me-md-5 {
11142
    margin-right: 3rem !important;
11143
  }
16848 stevensc 11144
 
16825 efrain 11145
  .me-md-6 {
11146
    margin-right: 4.5rem !important;
11147
  }
16848 stevensc 11148
 
16825 efrain 11149
  .me-md-7 {
11150
    margin-right: 6rem !important;
11151
  }
16848 stevensc 11152
 
16825 efrain 11153
  .me-md-auto {
11154
    margin-right: auto !important;
11155
  }
16848 stevensc 11156
 
11157
  .mb-md-0,
11158
  .example .btn-group {
16825 efrain 11159
    margin-bottom: 0 !important;
11160
  }
16848 stevensc 11161
 
16825 efrain 11162
  .mb-md-1 {
11163
    margin-bottom: 0.25rem !important;
11164
  }
16848 stevensc 11165
 
16825 efrain 11166
  .mb-md-2 {
11167
    margin-bottom: 0.5rem !important;
11168
  }
16848 stevensc 11169
 
16825 efrain 11170
  .mb-md-3 {
11171
    margin-bottom: 1rem !important;
11172
  }
16848 stevensc 11173
 
16825 efrain 11174
  .mb-md-4 {
11175
    margin-bottom: 1.5rem !important;
11176
  }
16848 stevensc 11177
 
16825 efrain 11178
  .mb-md-5 {
11179
    margin-bottom: 3rem !important;
11180
  }
16848 stevensc 11181
 
16825 efrain 11182
  .mb-md-6 {
11183
    margin-bottom: 4.5rem !important;
11184
  }
16848 stevensc 11185
 
16825 efrain 11186
  .mb-md-7 {
11187
    margin-bottom: 6rem !important;
11188
  }
16848 stevensc 11189
 
16825 efrain 11190
  .mb-md-auto {
11191
    margin-bottom: auto !important;
11192
  }
16848 stevensc 11193
 
16825 efrain 11194
  .ms-md-0 {
11195
    margin-left: 0 !important;
11196
  }
16848 stevensc 11197
 
16825 efrain 11198
  .ms-md-1 {
11199
    margin-left: 0.25rem !important;
11200
  }
16848 stevensc 11201
 
16825 efrain 11202
  .ms-md-2 {
11203
    margin-left: 0.5rem !important;
11204
  }
16848 stevensc 11205
 
16825 efrain 11206
  .ms-md-3 {
11207
    margin-left: 1rem !important;
11208
  }
16848 stevensc 11209
 
16825 efrain 11210
  .ms-md-4 {
11211
    margin-left: 1.5rem !important;
11212
  }
16848 stevensc 11213
 
16825 efrain 11214
  .ms-md-5 {
11215
    margin-left: 3rem !important;
11216
  }
16848 stevensc 11217
 
16825 efrain 11218
  .ms-md-6 {
11219
    margin-left: 4.5rem !important;
11220
  }
16848 stevensc 11221
 
16825 efrain 11222
  .ms-md-7 {
11223
    margin-left: 6rem !important;
11224
  }
16848 stevensc 11225
 
16825 efrain 11226
  .ms-md-auto {
11227
    margin-left: auto !important;
11228
  }
16848 stevensc 11229
 
16825 efrain 11230
  .m-md-n1 {
11231
    margin: -0.25rem !important;
11232
  }
16848 stevensc 11233
 
16825 efrain 11234
  .m-md-n2 {
11235
    margin: -0.5rem !important;
11236
  }
16848 stevensc 11237
 
16825 efrain 11238
  .m-md-n3 {
11239
    margin: -1rem !important;
11240
  }
16848 stevensc 11241
 
16825 efrain 11242
  .m-md-n4 {
11243
    margin: -1.5rem !important;
11244
  }
16848 stevensc 11245
 
16825 efrain 11246
  .m-md-n5 {
11247
    margin: -3rem !important;
11248
  }
16848 stevensc 11249
 
16825 efrain 11250
  .m-md-n6 {
11251
    margin: -4.5rem !important;
11252
  }
16848 stevensc 11253
 
16825 efrain 11254
  .m-md-n7 {
11255
    margin: -6rem !important;
11256
  }
16848 stevensc 11257
 
16825 efrain 11258
  .mx-md-n1 {
11259
    margin-right: -0.25rem !important;
11260
    margin-left: -0.25rem !important;
11261
  }
16848 stevensc 11262
 
16825 efrain 11263
  .mx-md-n2 {
11264
    margin-right: -0.5rem !important;
11265
    margin-left: -0.5rem !important;
11266
  }
16848 stevensc 11267
 
16825 efrain 11268
  .mx-md-n3 {
11269
    margin-right: -1rem !important;
11270
    margin-left: -1rem !important;
11271
  }
16848 stevensc 11272
 
16825 efrain 11273
  .mx-md-n4 {
11274
    margin-right: -1.5rem !important;
11275
    margin-left: -1.5rem !important;
11276
  }
16848 stevensc 11277
 
16825 efrain 11278
  .mx-md-n5 {
11279
    margin-right: -3rem !important;
11280
    margin-left: -3rem !important;
11281
  }
16848 stevensc 11282
 
16825 efrain 11283
  .mx-md-n6 {
11284
    margin-right: -4.5rem !important;
11285
    margin-left: -4.5rem !important;
11286
  }
16848 stevensc 11287
 
16825 efrain 11288
  .mx-md-n7 {
11289
    margin-right: -6rem !important;
11290
    margin-left: -6rem !important;
11291
  }
16848 stevensc 11292
 
16825 efrain 11293
  .my-md-n1 {
11294
    margin-top: -0.25rem !important;
11295
    margin-bottom: -0.25rem !important;
11296
  }
16848 stevensc 11297
 
16825 efrain 11298
  .my-md-n2 {
11299
    margin-top: -0.5rem !important;
11300
    margin-bottom: -0.5rem !important;
11301
  }
16848 stevensc 11302
 
16825 efrain 11303
  .my-md-n3 {
11304
    margin-top: -1rem !important;
11305
    margin-bottom: -1rem !important;
11306
  }
16848 stevensc 11307
 
16825 efrain 11308
  .my-md-n4 {
11309
    margin-top: -1.5rem !important;
11310
    margin-bottom: -1.5rem !important;
11311
  }
16848 stevensc 11312
 
16825 efrain 11313
  .my-md-n5 {
11314
    margin-top: -3rem !important;
11315
    margin-bottom: -3rem !important;
11316
  }
16848 stevensc 11317
 
16825 efrain 11318
  .my-md-n6 {
11319
    margin-top: -4.5rem !important;
11320
    margin-bottom: -4.5rem !important;
11321
  }
16848 stevensc 11322
 
16825 efrain 11323
  .my-md-n7 {
11324
    margin-top: -6rem !important;
11325
    margin-bottom: -6rem !important;
11326
  }
16848 stevensc 11327
 
16825 efrain 11328
  .mt-md-n1 {
11329
    margin-top: -0.25rem !important;
11330
  }
16848 stevensc 11331
 
16825 efrain 11332
  .mt-md-n2 {
11333
    margin-top: -0.5rem !important;
11334
  }
16848 stevensc 11335
 
16825 efrain 11336
  .mt-md-n3 {
11337
    margin-top: -1rem !important;
11338
  }
16848 stevensc 11339
 
16825 efrain 11340
  .mt-md-n4 {
11341
    margin-top: -1.5rem !important;
11342
  }
16848 stevensc 11343
 
16825 efrain 11344
  .mt-md-n5 {
11345
    margin-top: -3rem !important;
11346
  }
16848 stevensc 11347
 
16825 efrain 11348
  .mt-md-n6 {
11349
    margin-top: -4.5rem !important;
11350
  }
16848 stevensc 11351
 
16825 efrain 11352
  .mt-md-n7 {
11353
    margin-top: -6rem !important;
11354
  }
16848 stevensc 11355
 
16825 efrain 11356
  .me-md-n1 {
11357
    margin-right: -0.25rem !important;
11358
  }
16848 stevensc 11359
 
16825 efrain 11360
  .me-md-n2 {
11361
    margin-right: -0.5rem !important;
11362
  }
16848 stevensc 11363
 
16825 efrain 11364
  .me-md-n3 {
11365
    margin-right: -1rem !important;
11366
  }
16848 stevensc 11367
 
16825 efrain 11368
  .me-md-n4 {
11369
    margin-right: -1.5rem !important;
11370
  }
16848 stevensc 11371
 
16825 efrain 11372
  .me-md-n5 {
11373
    margin-right: -3rem !important;
11374
  }
16848 stevensc 11375
 
16825 efrain 11376
  .me-md-n6 {
11377
    margin-right: -4.5rem !important;
11378
  }
16848 stevensc 11379
 
16825 efrain 11380
  .me-md-n7 {
11381
    margin-right: -6rem !important;
11382
  }
16848 stevensc 11383
 
16825 efrain 11384
  .mb-md-n1 {
11385
    margin-bottom: -0.25rem !important;
11386
  }
16848 stevensc 11387
 
16825 efrain 11388
  .mb-md-n2 {
11389
    margin-bottom: -0.5rem !important;
11390
  }
16848 stevensc 11391
 
16825 efrain 11392
  .mb-md-n3 {
11393
    margin-bottom: -1rem !important;
11394
  }
16848 stevensc 11395
 
16825 efrain 11396
  .mb-md-n4 {
11397
    margin-bottom: -1.5rem !important;
11398
  }
16848 stevensc 11399
 
16825 efrain 11400
  .mb-md-n5 {
11401
    margin-bottom: -3rem !important;
11402
  }
16848 stevensc 11403
 
16825 efrain 11404
  .mb-md-n6 {
11405
    margin-bottom: -4.5rem !important;
11406
  }
16848 stevensc 11407
 
16825 efrain 11408
  .mb-md-n7 {
11409
    margin-bottom: -6rem !important;
11410
  }
16848 stevensc 11411
 
16825 efrain 11412
  .ms-md-n1 {
11413
    margin-left: -0.25rem !important;
11414
  }
16848 stevensc 11415
 
16825 efrain 11416
  .ms-md-n2 {
11417
    margin-left: -0.5rem !important;
11418
  }
16848 stevensc 11419
 
16825 efrain 11420
  .ms-md-n3 {
11421
    margin-left: -1rem !important;
11422
  }
16848 stevensc 11423
 
16825 efrain 11424
  .ms-md-n4 {
11425
    margin-left: -1.5rem !important;
11426
  }
16848 stevensc 11427
 
16825 efrain 11428
  .ms-md-n5 {
11429
    margin-left: -3rem !important;
11430
  }
16848 stevensc 11431
 
16825 efrain 11432
  .ms-md-n6 {
11433
    margin-left: -4.5rem !important;
11434
  }
16848 stevensc 11435
 
16825 efrain 11436
  .ms-md-n7 {
11437
    margin-left: -6rem !important;
11438
  }
16848 stevensc 11439
 
16825 efrain 11440
  .p-md-0 {
11441
    padding: 0 !important;
11442
  }
16848 stevensc 11443
 
16825 efrain 11444
  .p-md-1 {
11445
    padding: 0.25rem !important;
11446
  }
16848 stevensc 11447
 
16825 efrain 11448
  .p-md-2 {
11449
    padding: 0.5rem !important;
11450
  }
16848 stevensc 11451
 
16825 efrain 11452
  .p-md-3 {
11453
    padding: 1rem !important;
11454
  }
16848 stevensc 11455
 
16825 efrain 11456
  .p-md-4 {
11457
    padding: 1.5rem !important;
11458
  }
16848 stevensc 11459
 
16825 efrain 11460
  .p-md-5 {
11461
    padding: 3rem !important;
11462
  }
16848 stevensc 11463
 
16825 efrain 11464
  .p-md-6 {
11465
    padding: 4.5rem !important;
11466
  }
16848 stevensc 11467
 
16825 efrain 11468
  .p-md-7 {
11469
    padding: 6rem !important;
11470
  }
16848 stevensc 11471
 
16825 efrain 11472
  .px-md-0 {
11473
    padding-right: 0 !important;
11474
    padding-left: 0 !important;
11475
  }
16848 stevensc 11476
 
16825 efrain 11477
  .px-md-1 {
11478
    padding-right: 0.25rem !important;
11479
    padding-left: 0.25rem !important;
11480
  }
16848 stevensc 11481
 
16825 efrain 11482
  .px-md-2 {
11483
    padding-right: 0.5rem !important;
11484
    padding-left: 0.5rem !important;
11485
  }
16848 stevensc 11486
 
16825 efrain 11487
  .px-md-3 {
11488
    padding-right: 1rem !important;
11489
    padding-left: 1rem !important;
11490
  }
16848 stevensc 11491
 
16825 efrain 11492
  .px-md-4 {
11493
    padding-right: 1.5rem !important;
11494
    padding-left: 1.5rem !important;
11495
  }
16848 stevensc 11496
 
16825 efrain 11497
  .px-md-5 {
11498
    padding-right: 3rem !important;
11499
    padding-left: 3rem !important;
11500
  }
16848 stevensc 11501
 
16825 efrain 11502
  .px-md-6 {
11503
    padding-right: 4.5rem !important;
11504
    padding-left: 4.5rem !important;
11505
  }
16848 stevensc 11506
 
16825 efrain 11507
  .px-md-7 {
11508
    padding-right: 6rem !important;
11509
    padding-left: 6rem !important;
11510
  }
16848 stevensc 11511
 
16825 efrain 11512
  .py-md-0 {
11513
    padding-top: 0 !important;
11514
    padding-bottom: 0 !important;
11515
  }
16848 stevensc 11516
 
16825 efrain 11517
  .py-md-1 {
11518
    padding-top: 0.25rem !important;
11519
    padding-bottom: 0.25rem !important;
11520
  }
16848 stevensc 11521
 
16825 efrain 11522
  .py-md-2 {
11523
    padding-top: 0.5rem !important;
11524
    padding-bottom: 0.5rem !important;
11525
  }
16848 stevensc 11526
 
16825 efrain 11527
  .py-md-3 {
11528
    padding-top: 1rem !important;
11529
    padding-bottom: 1rem !important;
11530
  }
16848 stevensc 11531
 
16825 efrain 11532
  .py-md-4 {
11533
    padding-top: 1.5rem !important;
11534
    padding-bottom: 1.5rem !important;
11535
  }
16848 stevensc 11536
 
16825 efrain 11537
  .py-md-5 {
11538
    padding-top: 3rem !important;
11539
    padding-bottom: 3rem !important;
11540
  }
16848 stevensc 11541
 
16825 efrain 11542
  .py-md-6 {
11543
    padding-top: 4.5rem !important;
11544
    padding-bottom: 4.5rem !important;
11545
  }
16848 stevensc 11546
 
16825 efrain 11547
  .py-md-7 {
11548
    padding-top: 6rem !important;
11549
    padding-bottom: 6rem !important;
11550
  }
16848 stevensc 11551
 
16825 efrain 11552
  .pt-md-0 {
11553
    padding-top: 0 !important;
11554
  }
16848 stevensc 11555
 
16825 efrain 11556
  .pt-md-1 {
11557
    padding-top: 0.25rem !important;
11558
  }
16848 stevensc 11559
 
16825 efrain 11560
  .pt-md-2 {
11561
    padding-top: 0.5rem !important;
11562
  }
16848 stevensc 11563
 
16825 efrain 11564
  .pt-md-3 {
11565
    padding-top: 1rem !important;
11566
  }
16848 stevensc 11567
 
16825 efrain 11568
  .pt-md-4 {
11569
    padding-top: 1.5rem !important;
11570
  }
16848 stevensc 11571
 
16825 efrain 11572
  .pt-md-5 {
11573
    padding-top: 3rem !important;
11574
  }
16848 stevensc 11575
 
16825 efrain 11576
  .pt-md-6 {
11577
    padding-top: 4.5rem !important;
11578
  }
16848 stevensc 11579
 
16825 efrain 11580
  .pt-md-7 {
11581
    padding-top: 6rem !important;
11582
  }
16848 stevensc 11583
 
16825 efrain 11584
  .pe-md-0 {
11585
    padding-right: 0 !important;
11586
  }
16848 stevensc 11587
 
16825 efrain 11588
  .pe-md-1 {
11589
    padding-right: 0.25rem !important;
11590
  }
16848 stevensc 11591
 
16825 efrain 11592
  .pe-md-2 {
11593
    padding-right: 0.5rem !important;
11594
  }
16848 stevensc 11595
 
16825 efrain 11596
  .pe-md-3 {
11597
    padding-right: 1rem !important;
11598
  }
16848 stevensc 11599
 
16825 efrain 11600
  .pe-md-4 {
11601
    padding-right: 1.5rem !important;
11602
  }
16848 stevensc 11603
 
16825 efrain 11604
  .pe-md-5 {
11605
    padding-right: 3rem !important;
11606
  }
16848 stevensc 11607
 
16825 efrain 11608
  .pe-md-6 {
11609
    padding-right: 4.5rem !important;
11610
  }
16848 stevensc 11611
 
16825 efrain 11612
  .pe-md-7 {
11613
    padding-right: 6rem !important;
11614
  }
16848 stevensc 11615
 
16825 efrain 11616
  .pb-md-0 {
11617
    padding-bottom: 0 !important;
11618
  }
16848 stevensc 11619
 
16825 efrain 11620
  .pb-md-1 {
11621
    padding-bottom: 0.25rem !important;
11622
  }
16848 stevensc 11623
 
16825 efrain 11624
  .pb-md-2 {
11625
    padding-bottom: 0.5rem !important;
11626
  }
16848 stevensc 11627
 
16825 efrain 11628
  .pb-md-3 {
11629
    padding-bottom: 1rem !important;
11630
  }
16848 stevensc 11631
 
16825 efrain 11632
  .pb-md-4 {
11633
    padding-bottom: 1.5rem !important;
11634
  }
16848 stevensc 11635
 
16825 efrain 11636
  .pb-md-5 {
11637
    padding-bottom: 3rem !important;
11638
  }
16848 stevensc 11639
 
16825 efrain 11640
  .pb-md-6 {
11641
    padding-bottom: 4.5rem !important;
11642
  }
16848 stevensc 11643
 
16825 efrain 11644
  .pb-md-7 {
11645
    padding-bottom: 6rem !important;
11646
  }
16848 stevensc 11647
 
16825 efrain 11648
  .ps-md-0 {
11649
    padding-left: 0 !important;
11650
  }
16848 stevensc 11651
 
16825 efrain 11652
  .ps-md-1 {
11653
    padding-left: 0.25rem !important;
11654
  }
16848 stevensc 11655
 
16825 efrain 11656
  .ps-md-2 {
11657
    padding-left: 0.5rem !important;
11658
  }
16848 stevensc 11659
 
16825 efrain 11660
  .ps-md-3 {
11661
    padding-left: 1rem !important;
11662
  }
16848 stevensc 11663
 
16825 efrain 11664
  .ps-md-4 {
11665
    padding-left: 1.5rem !important;
11666
  }
16848 stevensc 11667
 
16825 efrain 11668
  .ps-md-5 {
11669
    padding-left: 3rem !important;
11670
  }
16848 stevensc 11671
 
16825 efrain 11672
  .ps-md-6 {
11673
    padding-left: 4.5rem !important;
11674
  }
16848 stevensc 11675
 
16825 efrain 11676
  .ps-md-7 {
11677
    padding-left: 6rem !important;
11678
  }
16848 stevensc 11679
 
16825 efrain 11680
  .gap-md-0 {
11681
    gap: 0 !important;
11682
  }
16848 stevensc 11683
 
16825 efrain 11684
  .gap-md-1 {
11685
    gap: 0.25rem !important;
11686
  }
16848 stevensc 11687
 
16825 efrain 11688
  .gap-md-2 {
11689
    gap: 0.5rem !important;
11690
  }
16848 stevensc 11691
 
16825 efrain 11692
  .gap-md-3 {
11693
    gap: 1rem !important;
11694
  }
16848 stevensc 11695
 
16825 efrain 11696
  .gap-md-4 {
11697
    gap: 1.5rem !important;
11698
  }
16848 stevensc 11699
 
16825 efrain 11700
  .gap-md-5 {
11701
    gap: 3rem !important;
11702
  }
16848 stevensc 11703
 
16825 efrain 11704
  .gap-md-6 {
11705
    gap: 4.5rem !important;
11706
  }
16848 stevensc 11707
 
16825 efrain 11708
  .gap-md-7 {
11709
    gap: 6rem !important;
11710
  }
16848 stevensc 11711
 
16825 efrain 11712
  .text-md-start {
11713
    text-align: left !important;
11714
  }
16848 stevensc 11715
 
16825 efrain 11716
  .text-md-end {
11717
    text-align: right !important;
11718
  }
16848 stevensc 11719
 
16825 efrain 11720
  .text-md-center {
11721
    text-align: center !important;
11722
  }
11723
}
16848 stevensc 11724
 
16825 efrain 11725
@media (min-width: 992px) {
11726
  .float-lg-start {
11727
    float: left !important;
11728
  }
16848 stevensc 11729
 
16825 efrain 11730
  .float-lg-end {
11731
    float: right !important;
11732
  }
16848 stevensc 11733
 
16825 efrain 11734
  .float-lg-none {
11735
    float: none !important;
11736
  }
16848 stevensc 11737
 
16825 efrain 11738
  .d-lg-inline {
11739
    display: inline !important;
11740
  }
16848 stevensc 11741
 
16825 efrain 11742
  .d-lg-inline-block {
11743
    display: inline-block !important;
11744
  }
16848 stevensc 11745
 
16825 efrain 11746
  .d-lg-block {
11747
    display: block !important;
11748
  }
16848 stevensc 11749
 
16825 efrain 11750
  .d-lg-grid {
11751
    display: grid !important;
11752
  }
16848 stevensc 11753
 
16825 efrain 11754
  .d-lg-table {
11755
    display: table !important;
11756
  }
16848 stevensc 11757
 
16825 efrain 11758
  .d-lg-table-row {
11759
    display: table-row !important;
11760
  }
16848 stevensc 11761
 
16825 efrain 11762
  .d-lg-table-cell {
11763
    display: table-cell !important;
11764
  }
16848 stevensc 11765
 
16825 efrain 11766
  .d-lg-flex {
11767
    display: flex !important;
11768
  }
16848 stevensc 11769
 
16825 efrain 11770
  .d-lg-inline-flex {
11771
    display: inline-flex !important;
11772
  }
16848 stevensc 11773
 
16825 efrain 11774
  .d-lg-none {
11775
    display: none !important;
11776
  }
16848 stevensc 11777
 
16825 efrain 11778
  .border-lg {
11779
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11780
  }
16848 stevensc 11781
 
16825 efrain 11782
  .border-lg-0 {
11783
    border: 0 !important;
11784
  }
16848 stevensc 11785
 
16825 efrain 11786
  .border-top-lg {
11787
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11788
  }
16848 stevensc 11789
 
16825 efrain 11790
  .border-top-lg-0 {
11791
    border-top: 0 !important;
11792
  }
16848 stevensc 11793
 
16825 efrain 11794
  .border-end-lg {
11795
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11796
  }
16848 stevensc 11797
 
16825 efrain 11798
  .border-end-lg-0 {
11799
    border-right: 0 !important;
11800
  }
16848 stevensc 11801
 
16825 efrain 11802
  .border-bottom-lg {
11803
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11804
  }
16848 stevensc 11805
 
16825 efrain 11806
  .border-bottom-lg-0 {
11807
    border-bottom: 0 !important;
11808
  }
16848 stevensc 11809
 
16825 efrain 11810
  .border-start-lg {
11811
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11812
  }
16848 stevensc 11813
 
16825 efrain 11814
  .border-start-lg-0 {
11815
    border-left: 0 !important;
11816
  }
16848 stevensc 11817
 
16825 efrain 11818
  .flex-lg-fill {
11819
    flex: 1 1 auto !important;
11820
  }
16848 stevensc 11821
 
16825 efrain 11822
  .flex-lg-row {
11823
    flex-direction: row !important;
11824
  }
16848 stevensc 11825
 
16825 efrain 11826
  .flex-lg-column {
11827
    flex-direction: column !important;
11828
  }
16848 stevensc 11829
 
16825 efrain 11830
  .flex-lg-row-reverse {
11831
    flex-direction: row-reverse !important;
11832
  }
16848 stevensc 11833
 
16825 efrain 11834
  .flex-lg-column-reverse {
11835
    flex-direction: column-reverse !important;
11836
  }
16848 stevensc 11837
 
16825 efrain 11838
  .flex-lg-grow-0 {
11839
    flex-grow: 0 !important;
11840
  }
16848 stevensc 11841
 
16825 efrain 11842
  .flex-lg-grow-1 {
11843
    flex-grow: 1 !important;
11844
  }
16848 stevensc 11845
 
16825 efrain 11846
  .flex-lg-shrink-0 {
11847
    flex-shrink: 0 !important;
11848
  }
16848 stevensc 11849
 
16825 efrain 11850
  .flex-lg-shrink-1 {
11851
    flex-shrink: 1 !important;
11852
  }
16848 stevensc 11853
 
16825 efrain 11854
  .flex-lg-wrap {
11855
    flex-wrap: wrap !important;
11856
  }
16848 stevensc 11857
 
16825 efrain 11858
  .flex-lg-nowrap {
11859
    flex-wrap: nowrap !important;
11860
  }
16848 stevensc 11861
 
16825 efrain 11862
  .flex-lg-wrap-reverse {
11863
    flex-wrap: wrap-reverse !important;
11864
  }
16848 stevensc 11865
 
16825 efrain 11866
  .justify-content-lg-start {
11867
    justify-content: flex-start !important;
11868
  }
16848 stevensc 11869
 
16825 efrain 11870
  .justify-content-lg-end {
11871
    justify-content: flex-end !important;
11872
  }
16848 stevensc 11873
 
16825 efrain 11874
  .justify-content-lg-center {
11875
    justify-content: center !important;
11876
  }
16848 stevensc 11877
 
16825 efrain 11878
  .justify-content-lg-between {
11879
    justify-content: space-between !important;
11880
  }
16848 stevensc 11881
 
16825 efrain 11882
  .justify-content-lg-around {
11883
    justify-content: space-around !important;
11884
  }
16848 stevensc 11885
 
16825 efrain 11886
  .justify-content-lg-evenly {
11887
    justify-content: space-evenly !important;
11888
  }
16848 stevensc 11889
 
16825 efrain 11890
  .align-items-lg-start {
11891
    align-items: flex-start !important;
11892
  }
16848 stevensc 11893
 
16825 efrain 11894
  .align-items-lg-end {
11895
    align-items: flex-end !important;
11896
  }
16848 stevensc 11897
 
16825 efrain 11898
  .align-items-lg-center {
11899
    align-items: center !important;
11900
  }
16848 stevensc 11901
 
16825 efrain 11902
  .align-items-lg-baseline {
11903
    align-items: baseline !important;
11904
  }
16848 stevensc 11905
 
16825 efrain 11906
  .align-items-lg-stretch {
11907
    align-items: stretch !important;
11908
  }
16848 stevensc 11909
 
16825 efrain 11910
  .align-content-lg-start {
11911
    align-content: flex-start !important;
11912
  }
16848 stevensc 11913
 
16825 efrain 11914
  .align-content-lg-end {
11915
    align-content: flex-end !important;
11916
  }
16848 stevensc 11917
 
16825 efrain 11918
  .align-content-lg-center {
11919
    align-content: center !important;
11920
  }
16848 stevensc 11921
 
16825 efrain 11922
  .align-content-lg-between {
11923
    align-content: space-between !important;
11924
  }
16848 stevensc 11925
 
16825 efrain 11926
  .align-content-lg-around {
11927
    align-content: space-around !important;
11928
  }
16848 stevensc 11929
 
16825 efrain 11930
  .align-content-lg-stretch {
11931
    align-content: stretch !important;
11932
  }
16848 stevensc 11933
 
16825 efrain 11934
  .align-self-lg-auto {
11935
    align-self: auto !important;
11936
  }
16848 stevensc 11937
 
16825 efrain 11938
  .align-self-lg-start {
11939
    align-self: flex-start !important;
11940
  }
16848 stevensc 11941
 
16825 efrain 11942
  .align-self-lg-end {
11943
    align-self: flex-end !important;
11944
  }
16848 stevensc 11945
 
16825 efrain 11946
  .align-self-lg-center {
11947
    align-self: center !important;
11948
  }
16848 stevensc 11949
 
16825 efrain 11950
  .align-self-lg-baseline {
11951
    align-self: baseline !important;
11952
  }
16848 stevensc 11953
 
16825 efrain 11954
  .align-self-lg-stretch {
11955
    align-self: stretch !important;
11956
  }
16848 stevensc 11957
 
16825 efrain 11958
  .order-lg-first {
11959
    order: -1 !important;
11960
  }
16848 stevensc 11961
 
16825 efrain 11962
  .order-lg-0 {
11963
    order: 0 !important;
11964
  }
16848 stevensc 11965
 
16825 efrain 11966
  .order-lg-1 {
11967
    order: 1 !important;
11968
  }
16848 stevensc 11969
 
16825 efrain 11970
  .order-lg-2 {
11971
    order: 2 !important;
11972
  }
16848 stevensc 11973
 
16825 efrain 11974
  .order-lg-3 {
11975
    order: 3 !important;
11976
  }
16848 stevensc 11977
 
16825 efrain 11978
  .order-lg-4 {
11979
    order: 4 !important;
11980
  }
16848 stevensc 11981
 
16825 efrain 11982
  .order-lg-5 {
11983
    order: 5 !important;
11984
  }
16848 stevensc 11985
 
16825 efrain 11986
  .order-lg-last {
11987
    order: 6 !important;
11988
  }
16848 stevensc 11989
 
16825 efrain 11990
  .m-lg-0 {
11991
    margin: 0 !important;
11992
  }
16848 stevensc 11993
 
16825 efrain 11994
  .m-lg-1 {
11995
    margin: 0.25rem !important;
11996
  }
16848 stevensc 11997
 
16825 efrain 11998
  .m-lg-2 {
11999
    margin: 0.5rem !important;
12000
  }
16848 stevensc 12001
 
16825 efrain 12002
  .m-lg-3 {
12003
    margin: 1rem !important;
12004
  }
16848 stevensc 12005
 
16825 efrain 12006
  .m-lg-4 {
12007
    margin: 1.5rem !important;
12008
  }
16848 stevensc 12009
 
16825 efrain 12010
  .m-lg-5 {
12011
    margin: 3rem !important;
12012
  }
16848 stevensc 12013
 
16825 efrain 12014
  .m-lg-6 {
12015
    margin: 4.5rem !important;
12016
  }
16848 stevensc 12017
 
16825 efrain 12018
  .m-lg-7 {
12019
    margin: 6rem !important;
12020
  }
16848 stevensc 12021
 
16825 efrain 12022
  .m-lg-auto {
12023
    margin: auto !important;
12024
  }
16848 stevensc 12025
 
16825 efrain 12026
  .mx-lg-0 {
12027
    margin-right: 0 !important;
12028
    margin-left: 0 !important;
12029
  }
16848 stevensc 12030
 
16825 efrain 12031
  .mx-lg-1 {
12032
    margin-right: 0.25rem !important;
12033
    margin-left: 0.25rem !important;
12034
  }
16848 stevensc 12035
 
16825 efrain 12036
  .mx-lg-2 {
12037
    margin-right: 0.5rem !important;
12038
    margin-left: 0.5rem !important;
12039
  }
16848 stevensc 12040
 
16825 efrain 12041
  .mx-lg-3 {
12042
    margin-right: 1rem !important;
12043
    margin-left: 1rem !important;
12044
  }
16848 stevensc 12045
 
16825 efrain 12046
  .mx-lg-4 {
12047
    margin-right: 1.5rem !important;
12048
    margin-left: 1.5rem !important;
12049
  }
16848 stevensc 12050
 
16825 efrain 12051
  .mx-lg-5 {
12052
    margin-right: 3rem !important;
12053
    margin-left: 3rem !important;
12054
  }
16848 stevensc 12055
 
16825 efrain 12056
  .mx-lg-6 {
12057
    margin-right: 4.5rem !important;
12058
    margin-left: 4.5rem !important;
12059
  }
16848 stevensc 12060
 
16825 efrain 12061
  .mx-lg-7 {
12062
    margin-right: 6rem !important;
12063
    margin-left: 6rem !important;
12064
  }
16848 stevensc 12065
 
16825 efrain 12066
  .mx-lg-auto {
12067
    margin-right: auto !important;
12068
    margin-left: auto !important;
12069
  }
16848 stevensc 12070
 
16825 efrain 12071
  .my-lg-0 {
12072
    margin-top: 0 !important;
12073
    margin-bottom: 0 !important;
12074
  }
16848 stevensc 12075
 
16825 efrain 12076
  .my-lg-1 {
12077
    margin-top: 0.25rem !important;
12078
    margin-bottom: 0.25rem !important;
12079
  }
16848 stevensc 12080
 
16825 efrain 12081
  .my-lg-2 {
12082
    margin-top: 0.5rem !important;
12083
    margin-bottom: 0.5rem !important;
12084
  }
16848 stevensc 12085
 
16825 efrain 12086
  .my-lg-3 {
12087
    margin-top: 1rem !important;
12088
    margin-bottom: 1rem !important;
12089
  }
16848 stevensc 12090
 
16825 efrain 12091
  .my-lg-4 {
12092
    margin-top: 1.5rem !important;
12093
    margin-bottom: 1.5rem !important;
12094
  }
16848 stevensc 12095
 
16825 efrain 12096
  .my-lg-5 {
12097
    margin-top: 3rem !important;
12098
    margin-bottom: 3rem !important;
12099
  }
16848 stevensc 12100
 
16825 efrain 12101
  .my-lg-6 {
12102
    margin-top: 4.5rem !important;
12103
    margin-bottom: 4.5rem !important;
12104
  }
16848 stevensc 12105
 
16825 efrain 12106
  .my-lg-7 {
12107
    margin-top: 6rem !important;
12108
    margin-bottom: 6rem !important;
12109
  }
16848 stevensc 12110
 
16825 efrain 12111
  .my-lg-auto {
12112
    margin-top: auto !important;
12113
    margin-bottom: auto !important;
12114
  }
16848 stevensc 12115
 
16825 efrain 12116
  .mt-lg-0 {
12117
    margin-top: 0 !important;
12118
  }
16848 stevensc 12119
 
16825 efrain 12120
  .mt-lg-1 {
12121
    margin-top: 0.25rem !important;
12122
  }
16848 stevensc 12123
 
16825 efrain 12124
  .mt-lg-2 {
12125
    margin-top: 0.5rem !important;
12126
  }
16848 stevensc 12127
 
16825 efrain 12128
  .mt-lg-3 {
12129
    margin-top: 1rem !important;
12130
  }
16848 stevensc 12131
 
16825 efrain 12132
  .mt-lg-4 {
12133
    margin-top: 1.5rem !important;
12134
  }
16848 stevensc 12135
 
16825 efrain 12136
  .mt-lg-5 {
12137
    margin-top: 3rem !important;
12138
  }
16848 stevensc 12139
 
16825 efrain 12140
  .mt-lg-6 {
12141
    margin-top: 4.5rem !important;
12142
  }
16848 stevensc 12143
 
16825 efrain 12144
  .mt-lg-7 {
12145
    margin-top: 6rem !important;
12146
  }
16848 stevensc 12147
 
16825 efrain 12148
  .mt-lg-auto {
12149
    margin-top: auto !important;
12150
  }
16848 stevensc 12151
 
16825 efrain 12152
  .me-lg-0 {
12153
    margin-right: 0 !important;
12154
  }
16848 stevensc 12155
 
16825 efrain 12156
  .me-lg-1 {
12157
    margin-right: 0.25rem !important;
12158
  }
16848 stevensc 12159
 
16825 efrain 12160
  .me-lg-2 {
12161
    margin-right: 0.5rem !important;
12162
  }
16848 stevensc 12163
 
16825 efrain 12164
  .me-lg-3 {
12165
    margin-right: 1rem !important;
12166
  }
16848 stevensc 12167
 
16825 efrain 12168
  .me-lg-4 {
12169
    margin-right: 1.5rem !important;
12170
  }
16848 stevensc 12171
 
16825 efrain 12172
  .me-lg-5 {
12173
    margin-right: 3rem !important;
12174
  }
16848 stevensc 12175
 
16825 efrain 12176
  .me-lg-6 {
12177
    margin-right: 4.5rem !important;
12178
  }
16848 stevensc 12179
 
16825 efrain 12180
  .me-lg-7 {
12181
    margin-right: 6rem !important;
12182
  }
16848 stevensc 12183
 
16825 efrain 12184
  .me-lg-auto {
12185
    margin-right: auto !important;
12186
  }
16848 stevensc 12187
 
16825 efrain 12188
  .mb-lg-0 {
12189
    margin-bottom: 0 !important;
12190
  }
16848 stevensc 12191
 
16825 efrain 12192
  .mb-lg-1 {
12193
    margin-bottom: 0.25rem !important;
12194
  }
16848 stevensc 12195
 
16825 efrain 12196
  .mb-lg-2 {
12197
    margin-bottom: 0.5rem !important;
12198
  }
16848 stevensc 12199
 
16825 efrain 12200
  .mb-lg-3 {
12201
    margin-bottom: 1rem !important;
12202
  }
16848 stevensc 12203
 
16825 efrain 12204
  .mb-lg-4 {
12205
    margin-bottom: 1.5rem !important;
12206
  }
16848 stevensc 12207
 
16825 efrain 12208
  .mb-lg-5 {
12209
    margin-bottom: 3rem !important;
12210
  }
16848 stevensc 12211
 
16825 efrain 12212
  .mb-lg-6 {
12213
    margin-bottom: 4.5rem !important;
12214
  }
16848 stevensc 12215
 
16825 efrain 12216
  .mb-lg-7 {
12217
    margin-bottom: 6rem !important;
12218
  }
16848 stevensc 12219
 
16825 efrain 12220
  .mb-lg-auto {
12221
    margin-bottom: auto !important;
12222
  }
16848 stevensc 12223
 
16825 efrain 12224
  .ms-lg-0 {
12225
    margin-left: 0 !important;
12226
  }
16848 stevensc 12227
 
16825 efrain 12228
  .ms-lg-1 {
12229
    margin-left: 0.25rem !important;
12230
  }
16848 stevensc 12231
 
16825 efrain 12232
  .ms-lg-2 {
12233
    margin-left: 0.5rem !important;
12234
  }
16848 stevensc 12235
 
16825 efrain 12236
  .ms-lg-3 {
12237
    margin-left: 1rem !important;
12238
  }
16848 stevensc 12239
 
16825 efrain 12240
  .ms-lg-4 {
12241
    margin-left: 1.5rem !important;
12242
  }
16848 stevensc 12243
 
16825 efrain 12244
  .ms-lg-5 {
12245
    margin-left: 3rem !important;
12246
  }
16848 stevensc 12247
 
16825 efrain 12248
  .ms-lg-6 {
12249
    margin-left: 4.5rem !important;
12250
  }
16848 stevensc 12251
 
16825 efrain 12252
  .ms-lg-7 {
12253
    margin-left: 6rem !important;
12254
  }
16848 stevensc 12255
 
16825 efrain 12256
  .ms-lg-auto {
12257
    margin-left: auto !important;
12258
  }
16848 stevensc 12259
 
16825 efrain 12260
  .m-lg-n1 {
12261
    margin: -0.25rem !important;
12262
  }
16848 stevensc 12263
 
16825 efrain 12264
  .m-lg-n2 {
12265
    margin: -0.5rem !important;
12266
  }
16848 stevensc 12267
 
16825 efrain 12268
  .m-lg-n3 {
12269
    margin: -1rem !important;
12270
  }
16848 stevensc 12271
 
16825 efrain 12272
  .m-lg-n4 {
12273
    margin: -1.5rem !important;
12274
  }
16848 stevensc 12275
 
16825 efrain 12276
  .m-lg-n5 {
12277
    margin: -3rem !important;
12278
  }
16848 stevensc 12279
 
16825 efrain 12280
  .m-lg-n6 {
12281
    margin: -4.5rem !important;
12282
  }
16848 stevensc 12283
 
16825 efrain 12284
  .m-lg-n7 {
12285
    margin: -6rem !important;
12286
  }
16848 stevensc 12287
 
16825 efrain 12288
  .mx-lg-n1 {
12289
    margin-right: -0.25rem !important;
12290
    margin-left: -0.25rem !important;
12291
  }
16848 stevensc 12292
 
16825 efrain 12293
  .mx-lg-n2 {
12294
    margin-right: -0.5rem !important;
12295
    margin-left: -0.5rem !important;
12296
  }
16848 stevensc 12297
 
16825 efrain 12298
  .mx-lg-n3 {
12299
    margin-right: -1rem !important;
12300
    margin-left: -1rem !important;
12301
  }
16848 stevensc 12302
 
16825 efrain 12303
  .mx-lg-n4 {
12304
    margin-right: -1.5rem !important;
12305
    margin-left: -1.5rem !important;
12306
  }
16848 stevensc 12307
 
16825 efrain 12308
  .mx-lg-n5 {
12309
    margin-right: -3rem !important;
12310
    margin-left: -3rem !important;
12311
  }
16848 stevensc 12312
 
16825 efrain 12313
  .mx-lg-n6 {
12314
    margin-right: -4.5rem !important;
12315
    margin-left: -4.5rem !important;
12316
  }
16848 stevensc 12317
 
16825 efrain 12318
  .mx-lg-n7 {
12319
    margin-right: -6rem !important;
12320
    margin-left: -6rem !important;
12321
  }
16848 stevensc 12322
 
16825 efrain 12323
  .my-lg-n1 {
12324
    margin-top: -0.25rem !important;
12325
    margin-bottom: -0.25rem !important;
12326
  }
16848 stevensc 12327
 
16825 efrain 12328
  .my-lg-n2 {
12329
    margin-top: -0.5rem !important;
12330
    margin-bottom: -0.5rem !important;
12331
  }
16848 stevensc 12332
 
16825 efrain 12333
  .my-lg-n3 {
12334
    margin-top: -1rem !important;
12335
    margin-bottom: -1rem !important;
12336
  }
16848 stevensc 12337
 
16825 efrain 12338
  .my-lg-n4 {
12339
    margin-top: -1.5rem !important;
12340
    margin-bottom: -1.5rem !important;
12341
  }
16848 stevensc 12342
 
16825 efrain 12343
  .my-lg-n5 {
12344
    margin-top: -3rem !important;
12345
    margin-bottom: -3rem !important;
12346
  }
16848 stevensc 12347
 
16825 efrain 12348
  .my-lg-n6 {
12349
    margin-top: -4.5rem !important;
12350
    margin-bottom: -4.5rem !important;
12351
  }
16848 stevensc 12352
 
16825 efrain 12353
  .my-lg-n7 {
12354
    margin-top: -6rem !important;
12355
    margin-bottom: -6rem !important;
12356
  }
16848 stevensc 12357
 
16825 efrain 12358
  .mt-lg-n1 {
12359
    margin-top: -0.25rem !important;
12360
  }
16848 stevensc 12361
 
16825 efrain 12362
  .mt-lg-n2 {
12363
    margin-top: -0.5rem !important;
12364
  }
16848 stevensc 12365
 
16825 efrain 12366
  .mt-lg-n3 {
12367
    margin-top: -1rem !important;
12368
  }
16848 stevensc 12369
 
16825 efrain 12370
  .mt-lg-n4 {
12371
    margin-top: -1.5rem !important;
12372
  }
16848 stevensc 12373
 
16825 efrain 12374
  .mt-lg-n5 {
12375
    margin-top: -3rem !important;
12376
  }
16848 stevensc 12377
 
16825 efrain 12378
  .mt-lg-n6 {
12379
    margin-top: -4.5rem !important;
12380
  }
16848 stevensc 12381
 
16825 efrain 12382
  .mt-lg-n7 {
12383
    margin-top: -6rem !important;
12384
  }
16848 stevensc 12385
 
16825 efrain 12386
  .me-lg-n1 {
12387
    margin-right: -0.25rem !important;
12388
  }
16848 stevensc 12389
 
16825 efrain 12390
  .me-lg-n2 {
12391
    margin-right: -0.5rem !important;
12392
  }
16848 stevensc 12393
 
16825 efrain 12394
  .me-lg-n3 {
12395
    margin-right: -1rem !important;
12396
  }
16848 stevensc 12397
 
16825 efrain 12398
  .me-lg-n4 {
12399
    margin-right: -1.5rem !important;
12400
  }
16848 stevensc 12401
 
16825 efrain 12402
  .me-lg-n5 {
12403
    margin-right: -3rem !important;
12404
  }
16848 stevensc 12405
 
16825 efrain 12406
  .me-lg-n6 {
12407
    margin-right: -4.5rem !important;
12408
  }
16848 stevensc 12409
 
16825 efrain 12410
  .me-lg-n7 {
12411
    margin-right: -6rem !important;
12412
  }
16848 stevensc 12413
 
16825 efrain 12414
  .mb-lg-n1 {
12415
    margin-bottom: -0.25rem !important;
12416
  }
16848 stevensc 12417
 
16825 efrain 12418
  .mb-lg-n2 {
12419
    margin-bottom: -0.5rem !important;
12420
  }
16848 stevensc 12421
 
16825 efrain 12422
  .mb-lg-n3 {
12423
    margin-bottom: -1rem !important;
12424
  }
16848 stevensc 12425
 
16825 efrain 12426
  .mb-lg-n4 {
12427
    margin-bottom: -1.5rem !important;
12428
  }
16848 stevensc 12429
 
16825 efrain 12430
  .mb-lg-n5 {
12431
    margin-bottom: -3rem !important;
12432
  }
16848 stevensc 12433
 
16825 efrain 12434
  .mb-lg-n6 {
12435
    margin-bottom: -4.5rem !important;
12436
  }
16848 stevensc 12437
 
16825 efrain 12438
  .mb-lg-n7 {
12439
    margin-bottom: -6rem !important;
12440
  }
16848 stevensc 12441
 
16825 efrain 12442
  .ms-lg-n1 {
12443
    margin-left: -0.25rem !important;
12444
  }
16848 stevensc 12445
 
16825 efrain 12446
  .ms-lg-n2 {
12447
    margin-left: -0.5rem !important;
12448
  }
16848 stevensc 12449
 
16825 efrain 12450
  .ms-lg-n3 {
12451
    margin-left: -1rem !important;
12452
  }
16848 stevensc 12453
 
16825 efrain 12454
  .ms-lg-n4 {
12455
    margin-left: -1.5rem !important;
12456
  }
16848 stevensc 12457
 
16825 efrain 12458
  .ms-lg-n5 {
12459
    margin-left: -3rem !important;
12460
  }
16848 stevensc 12461
 
16825 efrain 12462
  .ms-lg-n6 {
12463
    margin-left: -4.5rem !important;
12464
  }
16848 stevensc 12465
 
16825 efrain 12466
  .ms-lg-n7 {
12467
    margin-left: -6rem !important;
12468
  }
16848 stevensc 12469
 
16825 efrain 12470
  .p-lg-0 {
12471
    padding: 0 !important;
12472
  }
16848 stevensc 12473
 
16825 efrain 12474
  .p-lg-1 {
12475
    padding: 0.25rem !important;
12476
  }
16848 stevensc 12477
 
16825 efrain 12478
  .p-lg-2 {
12479
    padding: 0.5rem !important;
12480
  }
16848 stevensc 12481
 
16825 efrain 12482
  .p-lg-3 {
12483
    padding: 1rem !important;
12484
  }
16848 stevensc 12485
 
16825 efrain 12486
  .p-lg-4 {
12487
    padding: 1.5rem !important;
12488
  }
16848 stevensc 12489
 
16825 efrain 12490
  .p-lg-5 {
12491
    padding: 3rem !important;
12492
  }
16848 stevensc 12493
 
16825 efrain 12494
  .p-lg-6 {
12495
    padding: 4.5rem !important;
12496
  }
16848 stevensc 12497
 
16825 efrain 12498
  .p-lg-7 {
12499
    padding: 6rem !important;
12500
  }
16848 stevensc 12501
 
16825 efrain 12502
  .px-lg-0 {
12503
    padding-right: 0 !important;
12504
    padding-left: 0 !important;
12505
  }
16848 stevensc 12506
 
16825 efrain 12507
  .px-lg-1 {
12508
    padding-right: 0.25rem !important;
12509
    padding-left: 0.25rem !important;
12510
  }
16848 stevensc 12511
 
16825 efrain 12512
  .px-lg-2 {
12513
    padding-right: 0.5rem !important;
12514
    padding-left: 0.5rem !important;
12515
  }
16848 stevensc 12516
 
16825 efrain 12517
  .px-lg-3 {
12518
    padding-right: 1rem !important;
12519
    padding-left: 1rem !important;
12520
  }
16848 stevensc 12521
 
16825 efrain 12522
  .px-lg-4 {
12523
    padding-right: 1.5rem !important;
12524
    padding-left: 1.5rem !important;
12525
  }
16848 stevensc 12526
 
16825 efrain 12527
  .px-lg-5 {
12528
    padding-right: 3rem !important;
12529
    padding-left: 3rem !important;
12530
  }
16848 stevensc 12531
 
16825 efrain 12532
  .px-lg-6 {
12533
    padding-right: 4.5rem !important;
12534
    padding-left: 4.5rem !important;
12535
  }
16848 stevensc 12536
 
16825 efrain 12537
  .px-lg-7 {
12538
    padding-right: 6rem !important;
12539
    padding-left: 6rem !important;
12540
  }
16848 stevensc 12541
 
16825 efrain 12542
  .py-lg-0 {
12543
    padding-top: 0 !important;
12544
    padding-bottom: 0 !important;
12545
  }
16848 stevensc 12546
 
16825 efrain 12547
  .py-lg-1 {
12548
    padding-top: 0.25rem !important;
12549
    padding-bottom: 0.25rem !important;
12550
  }
16848 stevensc 12551
 
16825 efrain 12552
  .py-lg-2 {
12553
    padding-top: 0.5rem !important;
12554
    padding-bottom: 0.5rem !important;
12555
  }
16848 stevensc 12556
 
16825 efrain 12557
  .py-lg-3 {
12558
    padding-top: 1rem !important;
12559
    padding-bottom: 1rem !important;
12560
  }
16848 stevensc 12561
 
16825 efrain 12562
  .py-lg-4 {
12563
    padding-top: 1.5rem !important;
12564
    padding-bottom: 1.5rem !important;
12565
  }
16848 stevensc 12566
 
16825 efrain 12567
  .py-lg-5 {
12568
    padding-top: 3rem !important;
12569
    padding-bottom: 3rem !important;
12570
  }
16848 stevensc 12571
 
16825 efrain 12572
  .py-lg-6 {
12573
    padding-top: 4.5rem !important;
12574
    padding-bottom: 4.5rem !important;
12575
  }
16848 stevensc 12576
 
16825 efrain 12577
  .py-lg-7 {
12578
    padding-top: 6rem !important;
12579
    padding-bottom: 6rem !important;
12580
  }
16848 stevensc 12581
 
16825 efrain 12582
  .pt-lg-0 {
12583
    padding-top: 0 !important;
12584
  }
16848 stevensc 12585
 
16825 efrain 12586
  .pt-lg-1 {
12587
    padding-top: 0.25rem !important;
12588
  }
16848 stevensc 12589
 
16825 efrain 12590
  .pt-lg-2 {
12591
    padding-top: 0.5rem !important;
12592
  }
16848 stevensc 12593
 
16825 efrain 12594
  .pt-lg-3 {
12595
    padding-top: 1rem !important;
12596
  }
16848 stevensc 12597
 
16825 efrain 12598
  .pt-lg-4 {
12599
    padding-top: 1.5rem !important;
12600
  }
16848 stevensc 12601
 
16825 efrain 12602
  .pt-lg-5 {
12603
    padding-top: 3rem !important;
12604
  }
16848 stevensc 12605
 
16825 efrain 12606
  .pt-lg-6 {
12607
    padding-top: 4.5rem !important;
12608
  }
16848 stevensc 12609
 
16825 efrain 12610
  .pt-lg-7 {
12611
    padding-top: 6rem !important;
12612
  }
16848 stevensc 12613
 
16825 efrain 12614
  .pe-lg-0 {
12615
    padding-right: 0 !important;
12616
  }
16848 stevensc 12617
 
16825 efrain 12618
  .pe-lg-1 {
12619
    padding-right: 0.25rem !important;
12620
  }
16848 stevensc 12621
 
16825 efrain 12622
  .pe-lg-2 {
12623
    padding-right: 0.5rem !important;
12624
  }
16848 stevensc 12625
 
16825 efrain 12626
  .pe-lg-3 {
12627
    padding-right: 1rem !important;
12628
  }
16848 stevensc 12629
 
16825 efrain 12630
  .pe-lg-4 {
12631
    padding-right: 1.5rem !important;
12632
  }
16848 stevensc 12633
 
16825 efrain 12634
  .pe-lg-5 {
12635
    padding-right: 3rem !important;
12636
  }
16848 stevensc 12637
 
16825 efrain 12638
  .pe-lg-6 {
12639
    padding-right: 4.5rem !important;
12640
  }
16848 stevensc 12641
 
16825 efrain 12642
  .pe-lg-7 {
12643
    padding-right: 6rem !important;
12644
  }
16848 stevensc 12645
 
16825 efrain 12646
  .pb-lg-0 {
12647
    padding-bottom: 0 !important;
12648
  }
16848 stevensc 12649
 
16825 efrain 12650
  .pb-lg-1 {
12651
    padding-bottom: 0.25rem !important;
12652
  }
16848 stevensc 12653
 
16825 efrain 12654
  .pb-lg-2 {
12655
    padding-bottom: 0.5rem !important;
12656
  }
16848 stevensc 12657
 
16825 efrain 12658
  .pb-lg-3 {
12659
    padding-bottom: 1rem !important;
12660
  }
16848 stevensc 12661
 
16825 efrain 12662
  .pb-lg-4 {
12663
    padding-bottom: 1.5rem !important;
12664
  }
16848 stevensc 12665
 
16825 efrain 12666
  .pb-lg-5 {
12667
    padding-bottom: 3rem !important;
12668
  }
16848 stevensc 12669
 
16825 efrain 12670
  .pb-lg-6 {
12671
    padding-bottom: 4.5rem !important;
12672
  }
16848 stevensc 12673
 
16825 efrain 12674
  .pb-lg-7 {
12675
    padding-bottom: 6rem !important;
12676
  }
16848 stevensc 12677
 
16825 efrain 12678
  .ps-lg-0 {
12679
    padding-left: 0 !important;
12680
  }
16848 stevensc 12681
 
16825 efrain 12682
  .ps-lg-1 {
12683
    padding-left: 0.25rem !important;
12684
  }
16848 stevensc 12685
 
16825 efrain 12686
  .ps-lg-2 {
12687
    padding-left: 0.5rem !important;
12688
  }
16848 stevensc 12689
 
16825 efrain 12690
  .ps-lg-3 {
12691
    padding-left: 1rem !important;
12692
  }
16848 stevensc 12693
 
16825 efrain 12694
  .ps-lg-4 {
12695
    padding-left: 1.5rem !important;
12696
  }
16848 stevensc 12697
 
16825 efrain 12698
  .ps-lg-5 {
12699
    padding-left: 3rem !important;
12700
  }
16848 stevensc 12701
 
16825 efrain 12702
  .ps-lg-6 {
12703
    padding-left: 4.5rem !important;
12704
  }
16848 stevensc 12705
 
16825 efrain 12706
  .ps-lg-7 {
12707
    padding-left: 6rem !important;
12708
  }
16848 stevensc 12709
 
16825 efrain 12710
  .gap-lg-0 {
12711
    gap: 0 !important;
12712
  }
16848 stevensc 12713
 
16825 efrain 12714
  .gap-lg-1 {
12715
    gap: 0.25rem !important;
12716
  }
16848 stevensc 12717
 
16825 efrain 12718
  .gap-lg-2 {
12719
    gap: 0.5rem !important;
12720
  }
16848 stevensc 12721
 
16825 efrain 12722
  .gap-lg-3 {
12723
    gap: 1rem !important;
12724
  }
16848 stevensc 12725
 
16825 efrain 12726
  .gap-lg-4 {
12727
    gap: 1.5rem !important;
12728
  }
16848 stevensc 12729
 
16825 efrain 12730
  .gap-lg-5 {
12731
    gap: 3rem !important;
12732
  }
16848 stevensc 12733
 
16825 efrain 12734
  .gap-lg-6 {
12735
    gap: 4.5rem !important;
12736
  }
16848 stevensc 12737
 
16825 efrain 12738
  .gap-lg-7 {
12739
    gap: 6rem !important;
12740
  }
16848 stevensc 12741
 
16825 efrain 12742
  .text-lg-start {
12743
    text-align: left !important;
12744
  }
16848 stevensc 12745
 
16825 efrain 12746
  .text-lg-end {
12747
    text-align: right !important;
12748
  }
16848 stevensc 12749
 
16825 efrain 12750
  .text-lg-center {
12751
    text-align: center !important;
12752
  }
12753
}
16848 stevensc 12754
 
16825 efrain 12755
@media (min-width: 1200px) {
12756
  .float-xl-start {
12757
    float: left !important;
12758
  }
16848 stevensc 12759
 
16825 efrain 12760
  .float-xl-end {
12761
    float: right !important;
12762
  }
16848 stevensc 12763
 
16825 efrain 12764
  .float-xl-none {
12765
    float: none !important;
12766
  }
16848 stevensc 12767
 
16825 efrain 12768
  .d-xl-inline {
12769
    display: inline !important;
12770
  }
16848 stevensc 12771
 
16825 efrain 12772
  .d-xl-inline-block {
12773
    display: inline-block !important;
12774
  }
16848 stevensc 12775
 
16825 efrain 12776
  .d-xl-block {
12777
    display: block !important;
12778
  }
16848 stevensc 12779
 
16825 efrain 12780
  .d-xl-grid {
12781
    display: grid !important;
12782
  }
16848 stevensc 12783
 
16825 efrain 12784
  .d-xl-table {
12785
    display: table !important;
12786
  }
16848 stevensc 12787
 
16825 efrain 12788
  .d-xl-table-row {
12789
    display: table-row !important;
12790
  }
16848 stevensc 12791
 
16825 efrain 12792
  .d-xl-table-cell {
12793
    display: table-cell !important;
12794
  }
16848 stevensc 12795
 
16825 efrain 12796
  .d-xl-flex {
12797
    display: flex !important;
12798
  }
16848 stevensc 12799
 
16825 efrain 12800
  .d-xl-inline-flex {
12801
    display: inline-flex !important;
12802
  }
16848 stevensc 12803
 
16825 efrain 12804
  .d-xl-none {
12805
    display: none !important;
12806
  }
16848 stevensc 12807
 
16825 efrain 12808
  .border-xl {
12809
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12810
  }
16848 stevensc 12811
 
16825 efrain 12812
  .border-xl-0 {
12813
    border: 0 !important;
12814
  }
16848 stevensc 12815
 
16825 efrain 12816
  .border-top-xl {
12817
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12818
  }
16848 stevensc 12819
 
16825 efrain 12820
  .border-top-xl-0 {
12821
    border-top: 0 !important;
12822
  }
16848 stevensc 12823
 
16825 efrain 12824
  .border-end-xl {
12825
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12826
  }
16848 stevensc 12827
 
16825 efrain 12828
  .border-end-xl-0 {
12829
    border-right: 0 !important;
12830
  }
16848 stevensc 12831
 
16825 efrain 12832
  .border-bottom-xl {
12833
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12834
  }
16848 stevensc 12835
 
16825 efrain 12836
  .border-bottom-xl-0 {
12837
    border-bottom: 0 !important;
12838
  }
16848 stevensc 12839
 
16825 efrain 12840
  .border-start-xl {
12841
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12842
  }
16848 stevensc 12843
 
16825 efrain 12844
  .border-start-xl-0 {
12845
    border-left: 0 !important;
12846
  }
16848 stevensc 12847
 
16825 efrain 12848
  .flex-xl-fill {
12849
    flex: 1 1 auto !important;
12850
  }
16848 stevensc 12851
 
16825 efrain 12852
  .flex-xl-row {
12853
    flex-direction: row !important;
12854
  }
16848 stevensc 12855
 
16825 efrain 12856
  .flex-xl-column {
12857
    flex-direction: column !important;
12858
  }
16848 stevensc 12859
 
16825 efrain 12860
  .flex-xl-row-reverse {
12861
    flex-direction: row-reverse !important;
12862
  }
16848 stevensc 12863
 
16825 efrain 12864
  .flex-xl-column-reverse {
12865
    flex-direction: column-reverse !important;
12866
  }
16848 stevensc 12867
 
16825 efrain 12868
  .flex-xl-grow-0 {
12869
    flex-grow: 0 !important;
12870
  }
16848 stevensc 12871
 
16825 efrain 12872
  .flex-xl-grow-1 {
12873
    flex-grow: 1 !important;
12874
  }
16848 stevensc 12875
 
16825 efrain 12876
  .flex-xl-shrink-0 {
12877
    flex-shrink: 0 !important;
12878
  }
16848 stevensc 12879
 
16825 efrain 12880
  .flex-xl-shrink-1 {
12881
    flex-shrink: 1 !important;
12882
  }
16848 stevensc 12883
 
16825 efrain 12884
  .flex-xl-wrap {
12885
    flex-wrap: wrap !important;
12886
  }
16848 stevensc 12887
 
16825 efrain 12888
  .flex-xl-nowrap {
12889
    flex-wrap: nowrap !important;
12890
  }
16848 stevensc 12891
 
16825 efrain 12892
  .flex-xl-wrap-reverse {
12893
    flex-wrap: wrap-reverse !important;
12894
  }
16848 stevensc 12895
 
16825 efrain 12896
  .justify-content-xl-start {
12897
    justify-content: flex-start !important;
12898
  }
16848 stevensc 12899
 
16825 efrain 12900
  .justify-content-xl-end {
12901
    justify-content: flex-end !important;
12902
  }
16848 stevensc 12903
 
16825 efrain 12904
  .justify-content-xl-center {
12905
    justify-content: center !important;
12906
  }
16848 stevensc 12907
 
16825 efrain 12908
  .justify-content-xl-between {
12909
    justify-content: space-between !important;
12910
  }
16848 stevensc 12911
 
16825 efrain 12912
  .justify-content-xl-around {
12913
    justify-content: space-around !important;
12914
  }
16848 stevensc 12915
 
16825 efrain 12916
  .justify-content-xl-evenly {
12917
    justify-content: space-evenly !important;
12918
  }
16848 stevensc 12919
 
16825 efrain 12920
  .align-items-xl-start {
12921
    align-items: flex-start !important;
12922
  }
16848 stevensc 12923
 
16825 efrain 12924
  .align-items-xl-end {
12925
    align-items: flex-end !important;
12926
  }
16848 stevensc 12927
 
16825 efrain 12928
  .align-items-xl-center {
12929
    align-items: center !important;
12930
  }
16848 stevensc 12931
 
16825 efrain 12932
  .align-items-xl-baseline {
12933
    align-items: baseline !important;
12934
  }
16848 stevensc 12935
 
16825 efrain 12936
  .align-items-xl-stretch {
12937
    align-items: stretch !important;
12938
  }
16848 stevensc 12939
 
16825 efrain 12940
  .align-content-xl-start {
12941
    align-content: flex-start !important;
12942
  }
16848 stevensc 12943
 
16825 efrain 12944
  .align-content-xl-end {
12945
    align-content: flex-end !important;
12946
  }
16848 stevensc 12947
 
16825 efrain 12948
  .align-content-xl-center {
12949
    align-content: center !important;
12950
  }
16848 stevensc 12951
 
16825 efrain 12952
  .align-content-xl-between {
12953
    align-content: space-between !important;
12954
  }
16848 stevensc 12955
 
16825 efrain 12956
  .align-content-xl-around {
12957
    align-content: space-around !important;
12958
  }
16848 stevensc 12959
 
16825 efrain 12960
  .align-content-xl-stretch {
12961
    align-content: stretch !important;
12962
  }
16848 stevensc 12963
 
16825 efrain 12964
  .align-self-xl-auto {
12965
    align-self: auto !important;
12966
  }
16848 stevensc 12967
 
16825 efrain 12968
  .align-self-xl-start {
12969
    align-self: flex-start !important;
12970
  }
16848 stevensc 12971
 
16825 efrain 12972
  .align-self-xl-end {
12973
    align-self: flex-end !important;
12974
  }
16848 stevensc 12975
 
16825 efrain 12976
  .align-self-xl-center {
12977
    align-self: center !important;
12978
  }
16848 stevensc 12979
 
16825 efrain 12980
  .align-self-xl-baseline {
12981
    align-self: baseline !important;
12982
  }
16848 stevensc 12983
 
16825 efrain 12984
  .align-self-xl-stretch {
12985
    align-self: stretch !important;
12986
  }
16848 stevensc 12987
 
16825 efrain 12988
  .order-xl-first {
12989
    order: -1 !important;
12990
  }
16848 stevensc 12991
 
16825 efrain 12992
  .order-xl-0 {
12993
    order: 0 !important;
12994
  }
16848 stevensc 12995
 
16825 efrain 12996
  .order-xl-1 {
12997
    order: 1 !important;
12998
  }
16848 stevensc 12999
 
16825 efrain 13000
  .order-xl-2 {
13001
    order: 2 !important;
13002
  }
16848 stevensc 13003
 
16825 efrain 13004
  .order-xl-3 {
13005
    order: 3 !important;
13006
  }
16848 stevensc 13007
 
16825 efrain 13008
  .order-xl-4 {
13009
    order: 4 !important;
13010
  }
16848 stevensc 13011
 
16825 efrain 13012
  .order-xl-5 {
13013
    order: 5 !important;
13014
  }
16848 stevensc 13015
 
16825 efrain 13016
  .order-xl-last {
13017
    order: 6 !important;
13018
  }
16848 stevensc 13019
 
16825 efrain 13020
  .m-xl-0 {
13021
    margin: 0 !important;
13022
  }
16848 stevensc 13023
 
16825 efrain 13024
  .m-xl-1 {
13025
    margin: 0.25rem !important;
13026
  }
16848 stevensc 13027
 
16825 efrain 13028
  .m-xl-2 {
13029
    margin: 0.5rem !important;
13030
  }
16848 stevensc 13031
 
16825 efrain 13032
  .m-xl-3 {
13033
    margin: 1rem !important;
13034
  }
16848 stevensc 13035
 
16825 efrain 13036
  .m-xl-4 {
13037
    margin: 1.5rem !important;
13038
  }
16848 stevensc 13039
 
16825 efrain 13040
  .m-xl-5 {
13041
    margin: 3rem !important;
13042
  }
16848 stevensc 13043
 
16825 efrain 13044
  .m-xl-6 {
13045
    margin: 4.5rem !important;
13046
  }
16848 stevensc 13047
 
16825 efrain 13048
  .m-xl-7 {
13049
    margin: 6rem !important;
13050
  }
16848 stevensc 13051
 
16825 efrain 13052
  .m-xl-auto {
13053
    margin: auto !important;
13054
  }
16848 stevensc 13055
 
16825 efrain 13056
  .mx-xl-0 {
13057
    margin-right: 0 !important;
13058
    margin-left: 0 !important;
13059
  }
16848 stevensc 13060
 
16825 efrain 13061
  .mx-xl-1 {
13062
    margin-right: 0.25rem !important;
13063
    margin-left: 0.25rem !important;
13064
  }
16848 stevensc 13065
 
16825 efrain 13066
  .mx-xl-2 {
13067
    margin-right: 0.5rem !important;
13068
    margin-left: 0.5rem !important;
13069
  }
16848 stevensc 13070
 
16825 efrain 13071
  .mx-xl-3 {
13072
    margin-right: 1rem !important;
13073
    margin-left: 1rem !important;
13074
  }
16848 stevensc 13075
 
16825 efrain 13076
  .mx-xl-4 {
13077
    margin-right: 1.5rem !important;
13078
    margin-left: 1.5rem !important;
13079
  }
16848 stevensc 13080
 
16825 efrain 13081
  .mx-xl-5 {
13082
    margin-right: 3rem !important;
13083
    margin-left: 3rem !important;
13084
  }
16848 stevensc 13085
 
16825 efrain 13086
  .mx-xl-6 {
13087
    margin-right: 4.5rem !important;
13088
    margin-left: 4.5rem !important;
13089
  }
16848 stevensc 13090
 
16825 efrain 13091
  .mx-xl-7 {
13092
    margin-right: 6rem !important;
13093
    margin-left: 6rem !important;
13094
  }
16848 stevensc 13095
 
16825 efrain 13096
  .mx-xl-auto {
13097
    margin-right: auto !important;
13098
    margin-left: auto !important;
13099
  }
16848 stevensc 13100
 
16825 efrain 13101
  .my-xl-0 {
13102
    margin-top: 0 !important;
13103
    margin-bottom: 0 !important;
13104
  }
16848 stevensc 13105
 
16825 efrain 13106
  .my-xl-1 {
13107
    margin-top: 0.25rem !important;
13108
    margin-bottom: 0.25rem !important;
13109
  }
16848 stevensc 13110
 
16825 efrain 13111
  .my-xl-2 {
13112
    margin-top: 0.5rem !important;
13113
    margin-bottom: 0.5rem !important;
13114
  }
16848 stevensc 13115
 
16825 efrain 13116
  .my-xl-3 {
13117
    margin-top: 1rem !important;
13118
    margin-bottom: 1rem !important;
13119
  }
16848 stevensc 13120
 
16825 efrain 13121
  .my-xl-4 {
13122
    margin-top: 1.5rem !important;
13123
    margin-bottom: 1.5rem !important;
13124
  }
16848 stevensc 13125
 
16825 efrain 13126
  .my-xl-5 {
13127
    margin-top: 3rem !important;
13128
    margin-bottom: 3rem !important;
13129
  }
16848 stevensc 13130
 
16825 efrain 13131
  .my-xl-6 {
13132
    margin-top: 4.5rem !important;
13133
    margin-bottom: 4.5rem !important;
13134
  }
16848 stevensc 13135
 
16825 efrain 13136
  .my-xl-7 {
13137
    margin-top: 6rem !important;
13138
    margin-bottom: 6rem !important;
13139
  }
16848 stevensc 13140
 
16825 efrain 13141
  .my-xl-auto {
13142
    margin-top: auto !important;
13143
    margin-bottom: auto !important;
13144
  }
16848 stevensc 13145
 
16825 efrain 13146
  .mt-xl-0 {
13147
    margin-top: 0 !important;
13148
  }
16848 stevensc 13149
 
16825 efrain 13150
  .mt-xl-1 {
13151
    margin-top: 0.25rem !important;
13152
  }
16848 stevensc 13153
 
16825 efrain 13154
  .mt-xl-2 {
13155
    margin-top: 0.5rem !important;
13156
  }
16848 stevensc 13157
 
16825 efrain 13158
  .mt-xl-3 {
13159
    margin-top: 1rem !important;
13160
  }
16848 stevensc 13161
 
16825 efrain 13162
  .mt-xl-4 {
13163
    margin-top: 1.5rem !important;
13164
  }
16848 stevensc 13165
 
16825 efrain 13166
  .mt-xl-5 {
13167
    margin-top: 3rem !important;
13168
  }
16848 stevensc 13169
 
16825 efrain 13170
  .mt-xl-6 {
13171
    margin-top: 4.5rem !important;
13172
  }
16848 stevensc 13173
 
16825 efrain 13174
  .mt-xl-7 {
13175
    margin-top: 6rem !important;
13176
  }
16848 stevensc 13177
 
16825 efrain 13178
  .mt-xl-auto {
13179
    margin-top: auto !important;
13180
  }
16848 stevensc 13181
 
16825 efrain 13182
  .me-xl-0 {
13183
    margin-right: 0 !important;
13184
  }
16848 stevensc 13185
 
16825 efrain 13186
  .me-xl-1 {
13187
    margin-right: 0.25rem !important;
13188
  }
16848 stevensc 13189
 
16825 efrain 13190
  .me-xl-2 {
13191
    margin-right: 0.5rem !important;
13192
  }
16848 stevensc 13193
 
16825 efrain 13194
  .me-xl-3 {
13195
    margin-right: 1rem !important;
13196
  }
16848 stevensc 13197
 
16825 efrain 13198
  .me-xl-4 {
13199
    margin-right: 1.5rem !important;
13200
  }
16848 stevensc 13201
 
16825 efrain 13202
  .me-xl-5 {
13203
    margin-right: 3rem !important;
13204
  }
16848 stevensc 13205
 
16825 efrain 13206
  .me-xl-6 {
13207
    margin-right: 4.5rem !important;
13208
  }
16848 stevensc 13209
 
16825 efrain 13210
  .me-xl-7 {
13211
    margin-right: 6rem !important;
13212
  }
16848 stevensc 13213
 
16825 efrain 13214
  .me-xl-auto {
13215
    margin-right: auto !important;
13216
  }
16848 stevensc 13217
 
16825 efrain 13218
  .mb-xl-0 {
13219
    margin-bottom: 0 !important;
13220
  }
16848 stevensc 13221
 
16825 efrain 13222
  .mb-xl-1 {
13223
    margin-bottom: 0.25rem !important;
13224
  }
16848 stevensc 13225
 
16825 efrain 13226
  .mb-xl-2 {
13227
    margin-bottom: 0.5rem !important;
13228
  }
16848 stevensc 13229
 
16825 efrain 13230
  .mb-xl-3 {
13231
    margin-bottom: 1rem !important;
13232
  }
16848 stevensc 13233
 
16825 efrain 13234
  .mb-xl-4 {
13235
    margin-bottom: 1.5rem !important;
13236
  }
16848 stevensc 13237
 
16825 efrain 13238
  .mb-xl-5 {
13239
    margin-bottom: 3rem !important;
13240
  }
16848 stevensc 13241
 
16825 efrain 13242
  .mb-xl-6 {
13243
    margin-bottom: 4.5rem !important;
13244
  }
16848 stevensc 13245
 
16825 efrain 13246
  .mb-xl-7 {
13247
    margin-bottom: 6rem !important;
13248
  }
16848 stevensc 13249
 
16825 efrain 13250
  .mb-xl-auto {
13251
    margin-bottom: auto !important;
13252
  }
16848 stevensc 13253
 
16825 efrain 13254
  .ms-xl-0 {
13255
    margin-left: 0 !important;
13256
  }
16848 stevensc 13257
 
16825 efrain 13258
  .ms-xl-1 {
13259
    margin-left: 0.25rem !important;
13260
  }
16848 stevensc 13261
 
16825 efrain 13262
  .ms-xl-2 {
13263
    margin-left: 0.5rem !important;
13264
  }
16848 stevensc 13265
 
16825 efrain 13266
  .ms-xl-3 {
13267
    margin-left: 1rem !important;
13268
  }
16848 stevensc 13269
 
16825 efrain 13270
  .ms-xl-4 {
13271
    margin-left: 1.5rem !important;
13272
  }
16848 stevensc 13273
 
16825 efrain 13274
  .ms-xl-5 {
13275
    margin-left: 3rem !important;
13276
  }
16848 stevensc 13277
 
16825 efrain 13278
  .ms-xl-6 {
13279
    margin-left: 4.5rem !important;
13280
  }
16848 stevensc 13281
 
16825 efrain 13282
  .ms-xl-7 {
13283
    margin-left: 6rem !important;
13284
  }
16848 stevensc 13285
 
16825 efrain 13286
  .ms-xl-auto {
13287
    margin-left: auto !important;
13288
  }
16848 stevensc 13289
 
16825 efrain 13290
  .m-xl-n1 {
13291
    margin: -0.25rem !important;
13292
  }
16848 stevensc 13293
 
16825 efrain 13294
  .m-xl-n2 {
13295
    margin: -0.5rem !important;
13296
  }
16848 stevensc 13297
 
16825 efrain 13298
  .m-xl-n3 {
13299
    margin: -1rem !important;
13300
  }
16848 stevensc 13301
 
16825 efrain 13302
  .m-xl-n4 {
13303
    margin: -1.5rem !important;
13304
  }
16848 stevensc 13305
 
16825 efrain 13306
  .m-xl-n5 {
13307
    margin: -3rem !important;
13308
  }
16848 stevensc 13309
 
16825 efrain 13310
  .m-xl-n6 {
13311
    margin: -4.5rem !important;
13312
  }
16848 stevensc 13313
 
16825 efrain 13314
  .m-xl-n7 {
13315
    margin: -6rem !important;
13316
  }
16848 stevensc 13317
 
16825 efrain 13318
  .mx-xl-n1 {
13319
    margin-right: -0.25rem !important;
13320
    margin-left: -0.25rem !important;
13321
  }
16848 stevensc 13322
 
16825 efrain 13323
  .mx-xl-n2 {
13324
    margin-right: -0.5rem !important;
13325
    margin-left: -0.5rem !important;
13326
  }
16848 stevensc 13327
 
16825 efrain 13328
  .mx-xl-n3 {
13329
    margin-right: -1rem !important;
13330
    margin-left: -1rem !important;
13331
  }
16848 stevensc 13332
 
16825 efrain 13333
  .mx-xl-n4 {
13334
    margin-right: -1.5rem !important;
13335
    margin-left: -1.5rem !important;
13336
  }
16848 stevensc 13337
 
16825 efrain 13338
  .mx-xl-n5 {
13339
    margin-right: -3rem !important;
13340
    margin-left: -3rem !important;
13341
  }
16848 stevensc 13342
 
16825 efrain 13343
  .mx-xl-n6 {
13344
    margin-right: -4.5rem !important;
13345
    margin-left: -4.5rem !important;
13346
  }
16848 stevensc 13347
 
16825 efrain 13348
  .mx-xl-n7 {
13349
    margin-right: -6rem !important;
13350
    margin-left: -6rem !important;
13351
  }
16848 stevensc 13352
 
16825 efrain 13353
  .my-xl-n1 {
13354
    margin-top: -0.25rem !important;
13355
    margin-bottom: -0.25rem !important;
13356
  }
16848 stevensc 13357
 
16825 efrain 13358
  .my-xl-n2 {
13359
    margin-top: -0.5rem !important;
13360
    margin-bottom: -0.5rem !important;
13361
  }
16848 stevensc 13362
 
16825 efrain 13363
  .my-xl-n3 {
13364
    margin-top: -1rem !important;
13365
    margin-bottom: -1rem !important;
13366
  }
16848 stevensc 13367
 
16825 efrain 13368
  .my-xl-n4 {
13369
    margin-top: -1.5rem !important;
13370
    margin-bottom: -1.5rem !important;
13371
  }
16848 stevensc 13372
 
16825 efrain 13373
  .my-xl-n5 {
13374
    margin-top: -3rem !important;
13375
    margin-bottom: -3rem !important;
13376
  }
16848 stevensc 13377
 
16825 efrain 13378
  .my-xl-n6 {
13379
    margin-top: -4.5rem !important;
13380
    margin-bottom: -4.5rem !important;
13381
  }
16848 stevensc 13382
 
16825 efrain 13383
  .my-xl-n7 {
13384
    margin-top: -6rem !important;
13385
    margin-bottom: -6rem !important;
13386
  }
16848 stevensc 13387
 
16825 efrain 13388
  .mt-xl-n1 {
13389
    margin-top: -0.25rem !important;
13390
  }
16848 stevensc 13391
 
16825 efrain 13392
  .mt-xl-n2 {
13393
    margin-top: -0.5rem !important;
13394
  }
16848 stevensc 13395
 
16825 efrain 13396
  .mt-xl-n3 {
13397
    margin-top: -1rem !important;
13398
  }
16848 stevensc 13399
 
16825 efrain 13400
  .mt-xl-n4 {
13401
    margin-top: -1.5rem !important;
13402
  }
16848 stevensc 13403
 
16825 efrain 13404
  .mt-xl-n5 {
13405
    margin-top: -3rem !important;
13406
  }
16848 stevensc 13407
 
16825 efrain 13408
  .mt-xl-n6 {
13409
    margin-top: -4.5rem !important;
13410
  }
16848 stevensc 13411
 
16825 efrain 13412
  .mt-xl-n7 {
13413
    margin-top: -6rem !important;
13414
  }
16848 stevensc 13415
 
16825 efrain 13416
  .me-xl-n1 {
13417
    margin-right: -0.25rem !important;
13418
  }
16848 stevensc 13419
 
16825 efrain 13420
  .me-xl-n2 {
13421
    margin-right: -0.5rem !important;
13422
  }
16848 stevensc 13423
 
16825 efrain 13424
  .me-xl-n3 {
13425
    margin-right: -1rem !important;
13426
  }
16848 stevensc 13427
 
16825 efrain 13428
  .me-xl-n4 {
13429
    margin-right: -1.5rem !important;
13430
  }
16848 stevensc 13431
 
16825 efrain 13432
  .me-xl-n5 {
13433
    margin-right: -3rem !important;
13434
  }
16848 stevensc 13435
 
16825 efrain 13436
  .me-xl-n6 {
13437
    margin-right: -4.5rem !important;
13438
  }
16848 stevensc 13439
 
16825 efrain 13440
  .me-xl-n7 {
13441
    margin-right: -6rem !important;
13442
  }
16848 stevensc 13443
 
16825 efrain 13444
  .mb-xl-n1 {
13445
    margin-bottom: -0.25rem !important;
13446
  }
16848 stevensc 13447
 
16825 efrain 13448
  .mb-xl-n2 {
13449
    margin-bottom: -0.5rem !important;
13450
  }
16848 stevensc 13451
 
16825 efrain 13452
  .mb-xl-n3 {
13453
    margin-bottom: -1rem !important;
13454
  }
16848 stevensc 13455
 
16825 efrain 13456
  .mb-xl-n4 {
13457
    margin-bottom: -1.5rem !important;
13458
  }
16848 stevensc 13459
 
16825 efrain 13460
  .mb-xl-n5 {
13461
    margin-bottom: -3rem !important;
13462
  }
16848 stevensc 13463
 
16825 efrain 13464
  .mb-xl-n6 {
13465
    margin-bottom: -4.5rem !important;
13466
  }
16848 stevensc 13467
 
16825 efrain 13468
  .mb-xl-n7 {
13469
    margin-bottom: -6rem !important;
13470
  }
16848 stevensc 13471
 
16825 efrain 13472
  .ms-xl-n1 {
13473
    margin-left: -0.25rem !important;
13474
  }
16848 stevensc 13475
 
16825 efrain 13476
  .ms-xl-n2 {
13477
    margin-left: -0.5rem !important;
13478
  }
16848 stevensc 13479
 
16825 efrain 13480
  .ms-xl-n3 {
13481
    margin-left: -1rem !important;
13482
  }
16848 stevensc 13483
 
16825 efrain 13484
  .ms-xl-n4 {
13485
    margin-left: -1.5rem !important;
13486
  }
16848 stevensc 13487
 
16825 efrain 13488
  .ms-xl-n5 {
13489
    margin-left: -3rem !important;
13490
  }
16848 stevensc 13491
 
16825 efrain 13492
  .ms-xl-n6 {
13493
    margin-left: -4.5rem !important;
13494
  }
16848 stevensc 13495
 
16825 efrain 13496
  .ms-xl-n7 {
13497
    margin-left: -6rem !important;
13498
  }
16848 stevensc 13499
 
16825 efrain 13500
  .p-xl-0 {
13501
    padding: 0 !important;
13502
  }
16848 stevensc 13503
 
16825 efrain 13504
  .p-xl-1 {
13505
    padding: 0.25rem !important;
13506
  }
16848 stevensc 13507
 
16825 efrain 13508
  .p-xl-2 {
13509
    padding: 0.5rem !important;
13510
  }
16848 stevensc 13511
 
16825 efrain 13512
  .p-xl-3 {
13513
    padding: 1rem !important;
13514
  }
16848 stevensc 13515
 
16825 efrain 13516
  .p-xl-4 {
13517
    padding: 1.5rem !important;
13518
  }
16848 stevensc 13519
 
16825 efrain 13520
  .p-xl-5 {
13521
    padding: 3rem !important;
13522
  }
16848 stevensc 13523
 
16825 efrain 13524
  .p-xl-6 {
13525
    padding: 4.5rem !important;
13526
  }
16848 stevensc 13527
 
16825 efrain 13528
  .p-xl-7 {
13529
    padding: 6rem !important;
13530
  }
16848 stevensc 13531
 
16825 efrain 13532
  .px-xl-0 {
13533
    padding-right: 0 !important;
13534
    padding-left: 0 !important;
13535
  }
16848 stevensc 13536
 
16825 efrain 13537
  .px-xl-1 {
13538
    padding-right: 0.25rem !important;
13539
    padding-left: 0.25rem !important;
13540
  }
16848 stevensc 13541
 
16825 efrain 13542
  .px-xl-2 {
13543
    padding-right: 0.5rem !important;
13544
    padding-left: 0.5rem !important;
13545
  }
16848 stevensc 13546
 
16825 efrain 13547
  .px-xl-3 {
13548
    padding-right: 1rem !important;
13549
    padding-left: 1rem !important;
13550
  }
16848 stevensc 13551
 
16825 efrain 13552
  .px-xl-4 {
13553
    padding-right: 1.5rem !important;
13554
    padding-left: 1.5rem !important;
13555
  }
16848 stevensc 13556
 
16825 efrain 13557
  .px-xl-5 {
13558
    padding-right: 3rem !important;
13559
    padding-left: 3rem !important;
13560
  }
16848 stevensc 13561
 
16825 efrain 13562
  .px-xl-6 {
13563
    padding-right: 4.5rem !important;
13564
    padding-left: 4.5rem !important;
13565
  }
16848 stevensc 13566
 
16825 efrain 13567
  .px-xl-7 {
13568
    padding-right: 6rem !important;
13569
    padding-left: 6rem !important;
13570
  }
16848 stevensc 13571
 
16825 efrain 13572
  .py-xl-0 {
13573
    padding-top: 0 !important;
13574
    padding-bottom: 0 !important;
13575
  }
16848 stevensc 13576
 
16825 efrain 13577
  .py-xl-1 {
13578
    padding-top: 0.25rem !important;
13579
    padding-bottom: 0.25rem !important;
13580
  }
16848 stevensc 13581
 
16825 efrain 13582
  .py-xl-2 {
13583
    padding-top: 0.5rem !important;
13584
    padding-bottom: 0.5rem !important;
13585
  }
16848 stevensc 13586
 
16825 efrain 13587
  .py-xl-3 {
13588
    padding-top: 1rem !important;
13589
    padding-bottom: 1rem !important;
13590
  }
16848 stevensc 13591
 
16825 efrain 13592
  .py-xl-4 {
13593
    padding-top: 1.5rem !important;
13594
    padding-bottom: 1.5rem !important;
13595
  }
16848 stevensc 13596
 
16825 efrain 13597
  .py-xl-5 {
13598
    padding-top: 3rem !important;
13599
    padding-bottom: 3rem !important;
13600
  }
16848 stevensc 13601
 
16825 efrain 13602
  .py-xl-6 {
13603
    padding-top: 4.5rem !important;
13604
    padding-bottom: 4.5rem !important;
13605
  }
16848 stevensc 13606
 
16825 efrain 13607
  .py-xl-7 {
13608
    padding-top: 6rem !important;
13609
    padding-bottom: 6rem !important;
13610
  }
16848 stevensc 13611
 
16825 efrain 13612
  .pt-xl-0 {
13613
    padding-top: 0 !important;
13614
  }
16848 stevensc 13615
 
16825 efrain 13616
  .pt-xl-1 {
13617
    padding-top: 0.25rem !important;
13618
  }
16848 stevensc 13619
 
16825 efrain 13620
  .pt-xl-2 {
13621
    padding-top: 0.5rem !important;
13622
  }
16848 stevensc 13623
 
16825 efrain 13624
  .pt-xl-3 {
13625
    padding-top: 1rem !important;
13626
  }
16848 stevensc 13627
 
16825 efrain 13628
  .pt-xl-4 {
13629
    padding-top: 1.5rem !important;
13630
  }
16848 stevensc 13631
 
16825 efrain 13632
  .pt-xl-5 {
13633
    padding-top: 3rem !important;
13634
  }
16848 stevensc 13635
 
16825 efrain 13636
  .pt-xl-6 {
13637
    padding-top: 4.5rem !important;
13638
  }
16848 stevensc 13639
 
16825 efrain 13640
  .pt-xl-7 {
13641
    padding-top: 6rem !important;
13642
  }
16848 stevensc 13643
 
16825 efrain 13644
  .pe-xl-0 {
13645
    padding-right: 0 !important;
13646
  }
16848 stevensc 13647
 
16825 efrain 13648
  .pe-xl-1 {
13649
    padding-right: 0.25rem !important;
13650
  }
16848 stevensc 13651
 
16825 efrain 13652
  .pe-xl-2 {
13653
    padding-right: 0.5rem !important;
13654
  }
16848 stevensc 13655
 
16825 efrain 13656
  .pe-xl-3 {
13657
    padding-right: 1rem !important;
13658
  }
16848 stevensc 13659
 
16825 efrain 13660
  .pe-xl-4 {
13661
    padding-right: 1.5rem !important;
13662
  }
16848 stevensc 13663
 
16825 efrain 13664
  .pe-xl-5 {
13665
    padding-right: 3rem !important;
13666
  }
16848 stevensc 13667
 
16825 efrain 13668
  .pe-xl-6 {
13669
    padding-right: 4.5rem !important;
13670
  }
16848 stevensc 13671
 
16825 efrain 13672
  .pe-xl-7 {
13673
    padding-right: 6rem !important;
13674
  }
16848 stevensc 13675
 
16825 efrain 13676
  .pb-xl-0 {
13677
    padding-bottom: 0 !important;
13678
  }
16848 stevensc 13679
 
16825 efrain 13680
  .pb-xl-1 {
13681
    padding-bottom: 0.25rem !important;
13682
  }
16848 stevensc 13683
 
16825 efrain 13684
  .pb-xl-2 {
13685
    padding-bottom: 0.5rem !important;
13686
  }
16848 stevensc 13687
 
16825 efrain 13688
  .pb-xl-3 {
13689
    padding-bottom: 1rem !important;
13690
  }
16848 stevensc 13691
 
16825 efrain 13692
  .pb-xl-4 {
13693
    padding-bottom: 1.5rem !important;
13694
  }
16848 stevensc 13695
 
16825 efrain 13696
  .pb-xl-5 {
13697
    padding-bottom: 3rem !important;
13698
  }
16848 stevensc 13699
 
16825 efrain 13700
  .pb-xl-6 {
13701
    padding-bottom: 4.5rem !important;
13702
  }
16848 stevensc 13703
 
16825 efrain 13704
  .pb-xl-7 {
13705
    padding-bottom: 6rem !important;
13706
  }
16848 stevensc 13707
 
16825 efrain 13708
  .ps-xl-0 {
13709
    padding-left: 0 !important;
13710
  }
16848 stevensc 13711
 
16825 efrain 13712
  .ps-xl-1 {
13713
    padding-left: 0.25rem !important;
13714
  }
16848 stevensc 13715
 
16825 efrain 13716
  .ps-xl-2 {
13717
    padding-left: 0.5rem !important;
13718
  }
16848 stevensc 13719
 
16825 efrain 13720
  .ps-xl-3 {
13721
    padding-left: 1rem !important;
13722
  }
16848 stevensc 13723
 
16825 efrain 13724
  .ps-xl-4 {
13725
    padding-left: 1.5rem !important;
13726
  }
16848 stevensc 13727
 
16825 efrain 13728
  .ps-xl-5 {
13729
    padding-left: 3rem !important;
13730
  }
16848 stevensc 13731
 
16825 efrain 13732
  .ps-xl-6 {
13733
    padding-left: 4.5rem !important;
13734
  }
16848 stevensc 13735
 
16825 efrain 13736
  .ps-xl-7 {
13737
    padding-left: 6rem !important;
13738
  }
16848 stevensc 13739
 
16825 efrain 13740
  .gap-xl-0 {
13741
    gap: 0 !important;
13742
  }
16848 stevensc 13743
 
16825 efrain 13744
  .gap-xl-1 {
13745
    gap: 0.25rem !important;
13746
  }
16848 stevensc 13747
 
16825 efrain 13748
  .gap-xl-2 {
13749
    gap: 0.5rem !important;
13750
  }
16848 stevensc 13751
 
16825 efrain 13752
  .gap-xl-3 {
13753
    gap: 1rem !important;
13754
  }
16848 stevensc 13755
 
16825 efrain 13756
  .gap-xl-4 {
13757
    gap: 1.5rem !important;
13758
  }
16848 stevensc 13759
 
16825 efrain 13760
  .gap-xl-5 {
13761
    gap: 3rem !important;
13762
  }
16848 stevensc 13763
 
16825 efrain 13764
  .gap-xl-6 {
13765
    gap: 4.5rem !important;
13766
  }
16848 stevensc 13767
 
16825 efrain 13768
  .gap-xl-7 {
13769
    gap: 6rem !important;
13770
  }
16848 stevensc 13771
 
16825 efrain 13772
  .text-xl-start {
13773
    text-align: left !important;
13774
  }
16848 stevensc 13775
 
16825 efrain 13776
  .text-xl-end {
13777
    text-align: right !important;
13778
  }
16848 stevensc 13779
 
16825 efrain 13780
  .text-xl-center {
13781
    text-align: center !important;
13782
  }
13783
}
16848 stevensc 13784
 
16825 efrain 13785
@media (min-width: 1400px) {
13786
  .float-xxl-start {
13787
    float: left !important;
13788
  }
16848 stevensc 13789
 
16825 efrain 13790
  .float-xxl-end {
13791
    float: right !important;
13792
  }
16848 stevensc 13793
 
16825 efrain 13794
  .float-xxl-none {
13795
    float: none !important;
13796
  }
16848 stevensc 13797
 
16825 efrain 13798
  .d-xxl-inline {
13799
    display: inline !important;
13800
  }
16848 stevensc 13801
 
16825 efrain 13802
  .d-xxl-inline-block {
13803
    display: inline-block !important;
13804
  }
16848 stevensc 13805
 
16825 efrain 13806
  .d-xxl-block {
13807
    display: block !important;
13808
  }
16848 stevensc 13809
 
16825 efrain 13810
  .d-xxl-grid {
13811
    display: grid !important;
13812
  }
16848 stevensc 13813
 
16825 efrain 13814
  .d-xxl-table {
13815
    display: table !important;
13816
  }
16848 stevensc 13817
 
16825 efrain 13818
  .d-xxl-table-row {
13819
    display: table-row !important;
13820
  }
16848 stevensc 13821
 
16825 efrain 13822
  .d-xxl-table-cell {
13823
    display: table-cell !important;
13824
  }
16848 stevensc 13825
 
16825 efrain 13826
  .d-xxl-flex {
13827
    display: flex !important;
13828
  }
16848 stevensc 13829
 
16825 efrain 13830
  .d-xxl-inline-flex {
13831
    display: inline-flex !important;
13832
  }
16848 stevensc 13833
 
16825 efrain 13834
  .d-xxl-none {
13835
    display: none !important;
13836
  }
16848 stevensc 13837
 
16825 efrain 13838
  .border-xxl {
13839
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13840
  }
16848 stevensc 13841
 
16825 efrain 13842
  .border-xxl-0 {
13843
    border: 0 !important;
13844
  }
16848 stevensc 13845
 
16825 efrain 13846
  .border-top-xxl {
13847
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13848
  }
16848 stevensc 13849
 
16825 efrain 13850
  .border-top-xxl-0 {
13851
    border-top: 0 !important;
13852
  }
16848 stevensc 13853
 
16825 efrain 13854
  .border-end-xxl {
13855
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13856
  }
16848 stevensc 13857
 
16825 efrain 13858
  .border-end-xxl-0 {
13859
    border-right: 0 !important;
13860
  }
16848 stevensc 13861
 
16825 efrain 13862
  .border-bottom-xxl {
13863
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13864
  }
16848 stevensc 13865
 
16825 efrain 13866
  .border-bottom-xxl-0 {
13867
    border-bottom: 0 !important;
13868
  }
16848 stevensc 13869
 
16825 efrain 13870
  .border-start-xxl {
13871
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13872
  }
16848 stevensc 13873
 
16825 efrain 13874
  .border-start-xxl-0 {
13875
    border-left: 0 !important;
13876
  }
16848 stevensc 13877
 
16825 efrain 13878
  .flex-xxl-fill {
13879
    flex: 1 1 auto !important;
13880
  }
16848 stevensc 13881
 
16825 efrain 13882
  .flex-xxl-row {
13883
    flex-direction: row !important;
13884
  }
16848 stevensc 13885
 
16825 efrain 13886
  .flex-xxl-column {
13887
    flex-direction: column !important;
13888
  }
16848 stevensc 13889
 
16825 efrain 13890
  .flex-xxl-row-reverse {
13891
    flex-direction: row-reverse !important;
13892
  }
16848 stevensc 13893
 
16825 efrain 13894
  .flex-xxl-column-reverse {
13895
    flex-direction: column-reverse !important;
13896
  }
16848 stevensc 13897
 
16825 efrain 13898
  .flex-xxl-grow-0 {
13899
    flex-grow: 0 !important;
13900
  }
16848 stevensc 13901
 
16825 efrain 13902
  .flex-xxl-grow-1 {
13903
    flex-grow: 1 !important;
13904
  }
16848 stevensc 13905
 
16825 efrain 13906
  .flex-xxl-shrink-0 {
13907
    flex-shrink: 0 !important;
13908
  }
16848 stevensc 13909
 
16825 efrain 13910
  .flex-xxl-shrink-1 {
13911
    flex-shrink: 1 !important;
13912
  }
16848 stevensc 13913
 
16825 efrain 13914
  .flex-xxl-wrap {
13915
    flex-wrap: wrap !important;
13916
  }
16848 stevensc 13917
 
16825 efrain 13918
  .flex-xxl-nowrap {
13919
    flex-wrap: nowrap !important;
13920
  }
16848 stevensc 13921
 
16825 efrain 13922
  .flex-xxl-wrap-reverse {
13923
    flex-wrap: wrap-reverse !important;
13924
  }
16848 stevensc 13925
 
16825 efrain 13926
  .justify-content-xxl-start {
13927
    justify-content: flex-start !important;
13928
  }
16848 stevensc 13929
 
16825 efrain 13930
  .justify-content-xxl-end {
13931
    justify-content: flex-end !important;
13932
  }
16848 stevensc 13933
 
16825 efrain 13934
  .justify-content-xxl-center {
13935
    justify-content: center !important;
13936
  }
16848 stevensc 13937
 
16825 efrain 13938
  .justify-content-xxl-between {
13939
    justify-content: space-between !important;
13940
  }
16848 stevensc 13941
 
16825 efrain 13942
  .justify-content-xxl-around {
13943
    justify-content: space-around !important;
13944
  }
16848 stevensc 13945
 
16825 efrain 13946
  .justify-content-xxl-evenly {
13947
    justify-content: space-evenly !important;
13948
  }
16848 stevensc 13949
 
16825 efrain 13950
  .align-items-xxl-start {
13951
    align-items: flex-start !important;
13952
  }
16848 stevensc 13953
 
16825 efrain 13954
  .align-items-xxl-end {
13955
    align-items: flex-end !important;
13956
  }
16848 stevensc 13957
 
16825 efrain 13958
  .align-items-xxl-center {
13959
    align-items: center !important;
13960
  }
16848 stevensc 13961
 
16825 efrain 13962
  .align-items-xxl-baseline {
13963
    align-items: baseline !important;
13964
  }
16848 stevensc 13965
 
16825 efrain 13966
  .align-items-xxl-stretch {
13967
    align-items: stretch !important;
13968
  }
16848 stevensc 13969
 
16825 efrain 13970
  .align-content-xxl-start {
13971
    align-content: flex-start !important;
13972
  }
16848 stevensc 13973
 
16825 efrain 13974
  .align-content-xxl-end {
13975
    align-content: flex-end !important;
13976
  }
16848 stevensc 13977
 
16825 efrain 13978
  .align-content-xxl-center {
13979
    align-content: center !important;
13980
  }
16848 stevensc 13981
 
16825 efrain 13982
  .align-content-xxl-between {
13983
    align-content: space-between !important;
13984
  }
16848 stevensc 13985
 
16825 efrain 13986
  .align-content-xxl-around {
13987
    align-content: space-around !important;
13988
  }
16848 stevensc 13989
 
16825 efrain 13990
  .align-content-xxl-stretch {
13991
    align-content: stretch !important;
13992
  }
16848 stevensc 13993
 
16825 efrain 13994
  .align-self-xxl-auto {
13995
    align-self: auto !important;
13996
  }
16848 stevensc 13997
 
16825 efrain 13998
  .align-self-xxl-start {
13999
    align-self: flex-start !important;
14000
  }
16848 stevensc 14001
 
16825 efrain 14002
  .align-self-xxl-end {
14003
    align-self: flex-end !important;
14004
  }
16848 stevensc 14005
 
16825 efrain 14006
  .align-self-xxl-center {
14007
    align-self: center !important;
14008
  }
16848 stevensc 14009
 
16825 efrain 14010
  .align-self-xxl-baseline {
14011
    align-self: baseline !important;
14012
  }
16848 stevensc 14013
 
16825 efrain 14014
  .align-self-xxl-stretch {
14015
    align-self: stretch !important;
14016
  }
16848 stevensc 14017
 
16825 efrain 14018
  .order-xxl-first {
14019
    order: -1 !important;
14020
  }
16848 stevensc 14021
 
16825 efrain 14022
  .order-xxl-0 {
14023
    order: 0 !important;
14024
  }
16848 stevensc 14025
 
16825 efrain 14026
  .order-xxl-1 {
14027
    order: 1 !important;
14028
  }
16848 stevensc 14029
 
16825 efrain 14030
  .order-xxl-2 {
14031
    order: 2 !important;
14032
  }
16848 stevensc 14033
 
16825 efrain 14034
  .order-xxl-3 {
14035
    order: 3 !important;
14036
  }
16848 stevensc 14037
 
16825 efrain 14038
  .order-xxl-4 {
14039
    order: 4 !important;
14040
  }
16848 stevensc 14041
 
16825 efrain 14042
  .order-xxl-5 {
14043
    order: 5 !important;
14044
  }
16848 stevensc 14045
 
16825 efrain 14046
  .order-xxl-last {
14047
    order: 6 !important;
14048
  }
16848 stevensc 14049
 
16825 efrain 14050
  .m-xxl-0 {
14051
    margin: 0 !important;
14052
  }
16848 stevensc 14053
 
16825 efrain 14054
  .m-xxl-1 {
14055
    margin: 0.25rem !important;
14056
  }
16848 stevensc 14057
 
16825 efrain 14058
  .m-xxl-2 {
14059
    margin: 0.5rem !important;
14060
  }
16848 stevensc 14061
 
16825 efrain 14062
  .m-xxl-3 {
14063
    margin: 1rem !important;
14064
  }
16848 stevensc 14065
 
16825 efrain 14066
  .m-xxl-4 {
14067
    margin: 1.5rem !important;
14068
  }
16848 stevensc 14069
 
16825 efrain 14070
  .m-xxl-5 {
14071
    margin: 3rem !important;
14072
  }
16848 stevensc 14073
 
16825 efrain 14074
  .m-xxl-6 {
14075
    margin: 4.5rem !important;
14076
  }
16848 stevensc 14077
 
16825 efrain 14078
  .m-xxl-7 {
14079
    margin: 6rem !important;
14080
  }
16848 stevensc 14081
 
16825 efrain 14082
  .m-xxl-auto {
14083
    margin: auto !important;
14084
  }
16848 stevensc 14085
 
16825 efrain 14086
  .mx-xxl-0 {
14087
    margin-right: 0 !important;
14088
    margin-left: 0 !important;
14089
  }
16848 stevensc 14090
 
16825 efrain 14091
  .mx-xxl-1 {
14092
    margin-right: 0.25rem !important;
14093
    margin-left: 0.25rem !important;
14094
  }
16848 stevensc 14095
 
16825 efrain 14096
  .mx-xxl-2 {
14097
    margin-right: 0.5rem !important;
14098
    margin-left: 0.5rem !important;
14099
  }
16848 stevensc 14100
 
16825 efrain 14101
  .mx-xxl-3 {
14102
    margin-right: 1rem !important;
14103
    margin-left: 1rem !important;
14104
  }
16848 stevensc 14105
 
16825 efrain 14106
  .mx-xxl-4 {
14107
    margin-right: 1.5rem !important;
14108
    margin-left: 1.5rem !important;
14109
  }
16848 stevensc 14110
 
16825 efrain 14111
  .mx-xxl-5 {
14112
    margin-right: 3rem !important;
14113
    margin-left: 3rem !important;
14114
  }
16848 stevensc 14115
 
16825 efrain 14116
  .mx-xxl-6 {
14117
    margin-right: 4.5rem !important;
14118
    margin-left: 4.5rem !important;
14119
  }
16848 stevensc 14120
 
16825 efrain 14121
  .mx-xxl-7 {
14122
    margin-right: 6rem !important;
14123
    margin-left: 6rem !important;
14124
  }
16848 stevensc 14125
 
16825 efrain 14126
  .mx-xxl-auto {
14127
    margin-right: auto !important;
14128
    margin-left: auto !important;
14129
  }
16848 stevensc 14130
 
16825 efrain 14131
  .my-xxl-0 {
14132
    margin-top: 0 !important;
14133
    margin-bottom: 0 !important;
14134
  }
16848 stevensc 14135
 
16825 efrain 14136
  .my-xxl-1 {
14137
    margin-top: 0.25rem !important;
14138
    margin-bottom: 0.25rem !important;
14139
  }
16848 stevensc 14140
 
16825 efrain 14141
  .my-xxl-2 {
14142
    margin-top: 0.5rem !important;
14143
    margin-bottom: 0.5rem !important;
14144
  }
16848 stevensc 14145
 
16825 efrain 14146
  .my-xxl-3 {
14147
    margin-top: 1rem !important;
14148
    margin-bottom: 1rem !important;
14149
  }
16848 stevensc 14150
 
16825 efrain 14151
  .my-xxl-4 {
14152
    margin-top: 1.5rem !important;
14153
    margin-bottom: 1.5rem !important;
14154
  }
16848 stevensc 14155
 
16825 efrain 14156
  .my-xxl-5 {
14157
    margin-top: 3rem !important;
14158
    margin-bottom: 3rem !important;
14159
  }
16848 stevensc 14160
 
16825 efrain 14161
  .my-xxl-6 {
14162
    margin-top: 4.5rem !important;
14163
    margin-bottom: 4.5rem !important;
14164
  }
16848 stevensc 14165
 
16825 efrain 14166
  .my-xxl-7 {
14167
    margin-top: 6rem !important;
14168
    margin-bottom: 6rem !important;
14169
  }
16848 stevensc 14170
 
16825 efrain 14171
  .my-xxl-auto {
14172
    margin-top: auto !important;
14173
    margin-bottom: auto !important;
14174
  }
16848 stevensc 14175
 
16825 efrain 14176
  .mt-xxl-0 {
14177
    margin-top: 0 !important;
14178
  }
16848 stevensc 14179
 
16825 efrain 14180
  .mt-xxl-1 {
14181
    margin-top: 0.25rem !important;
14182
  }
16848 stevensc 14183
 
16825 efrain 14184
  .mt-xxl-2 {
14185
    margin-top: 0.5rem !important;
14186
  }
16848 stevensc 14187
 
16825 efrain 14188
  .mt-xxl-3 {
14189
    margin-top: 1rem !important;
14190
  }
16848 stevensc 14191
 
16825 efrain 14192
  .mt-xxl-4 {
14193
    margin-top: 1.5rem !important;
14194
  }
16848 stevensc 14195
 
16825 efrain 14196
  .mt-xxl-5 {
14197
    margin-top: 3rem !important;
14198
  }
16848 stevensc 14199
 
16825 efrain 14200
  .mt-xxl-6 {
14201
    margin-top: 4.5rem !important;
14202
  }
16848 stevensc 14203
 
16825 efrain 14204
  .mt-xxl-7 {
14205
    margin-top: 6rem !important;
14206
  }
16848 stevensc 14207
 
16825 efrain 14208
  .mt-xxl-auto {
14209
    margin-top: auto !important;
14210
  }
16848 stevensc 14211
 
16825 efrain 14212
  .me-xxl-0 {
14213
    margin-right: 0 !important;
14214
  }
16848 stevensc 14215
 
16825 efrain 14216
  .me-xxl-1 {
14217
    margin-right: 0.25rem !important;
14218
  }
16848 stevensc 14219
 
16825 efrain 14220
  .me-xxl-2 {
14221
    margin-right: 0.5rem !important;
14222
  }
16848 stevensc 14223
 
16825 efrain 14224
  .me-xxl-3 {
14225
    margin-right: 1rem !important;
14226
  }
16848 stevensc 14227
 
16825 efrain 14228
  .me-xxl-4 {
14229
    margin-right: 1.5rem !important;
14230
  }
16848 stevensc 14231
 
16825 efrain 14232
  .me-xxl-5 {
14233
    margin-right: 3rem !important;
14234
  }
16848 stevensc 14235
 
16825 efrain 14236
  .me-xxl-6 {
14237
    margin-right: 4.5rem !important;
14238
  }
16848 stevensc 14239
 
16825 efrain 14240
  .me-xxl-7 {
14241
    margin-right: 6rem !important;
14242
  }
16848 stevensc 14243
 
16825 efrain 14244
  .me-xxl-auto {
14245
    margin-right: auto !important;
14246
  }
16848 stevensc 14247
 
16825 efrain 14248
  .mb-xxl-0 {
14249
    margin-bottom: 0 !important;
14250
  }
16848 stevensc 14251
 
16825 efrain 14252
  .mb-xxl-1 {
14253
    margin-bottom: 0.25rem !important;
14254
  }
16848 stevensc 14255
 
16825 efrain 14256
  .mb-xxl-2 {
14257
    margin-bottom: 0.5rem !important;
14258
  }
16848 stevensc 14259
 
16825 efrain 14260
  .mb-xxl-3 {
14261
    margin-bottom: 1rem !important;
14262
  }
16848 stevensc 14263
 
16825 efrain 14264
  .mb-xxl-4 {
14265
    margin-bottom: 1.5rem !important;
14266
  }
16848 stevensc 14267
 
16825 efrain 14268
  .mb-xxl-5 {
14269
    margin-bottom: 3rem !important;
14270
  }
16848 stevensc 14271
 
16825 efrain 14272
  .mb-xxl-6 {
14273
    margin-bottom: 4.5rem !important;
14274
  }
16848 stevensc 14275
 
16825 efrain 14276
  .mb-xxl-7 {
14277
    margin-bottom: 6rem !important;
14278
  }
16848 stevensc 14279
 
16825 efrain 14280
  .mb-xxl-auto {
14281
    margin-bottom: auto !important;
14282
  }
16848 stevensc 14283
 
16825 efrain 14284
  .ms-xxl-0 {
14285
    margin-left: 0 !important;
14286
  }
16848 stevensc 14287
 
16825 efrain 14288
  .ms-xxl-1 {
14289
    margin-left: 0.25rem !important;
14290
  }
16848 stevensc 14291
 
16825 efrain 14292
  .ms-xxl-2 {
14293
    margin-left: 0.5rem !important;
14294
  }
16848 stevensc 14295
 
16825 efrain 14296
  .ms-xxl-3 {
14297
    margin-left: 1rem !important;
14298
  }
16848 stevensc 14299
 
16825 efrain 14300
  .ms-xxl-4 {
14301
    margin-left: 1.5rem !important;
14302
  }
16848 stevensc 14303
 
16825 efrain 14304
  .ms-xxl-5 {
14305
    margin-left: 3rem !important;
14306
  }
16848 stevensc 14307
 
16825 efrain 14308
  .ms-xxl-6 {
14309
    margin-left: 4.5rem !important;
14310
  }
16848 stevensc 14311
 
16825 efrain 14312
  .ms-xxl-7 {
14313
    margin-left: 6rem !important;
14314
  }
16848 stevensc 14315
 
16825 efrain 14316
  .ms-xxl-auto {
14317
    margin-left: auto !important;
14318
  }
16848 stevensc 14319
 
16825 efrain 14320
  .m-xxl-n1 {
14321
    margin: -0.25rem !important;
14322
  }
16848 stevensc 14323
 
16825 efrain 14324
  .m-xxl-n2 {
14325
    margin: -0.5rem !important;
14326
  }
16848 stevensc 14327
 
16825 efrain 14328
  .m-xxl-n3 {
14329
    margin: -1rem !important;
14330
  }
16848 stevensc 14331
 
16825 efrain 14332
  .m-xxl-n4 {
14333
    margin: -1.5rem !important;
14334
  }
16848 stevensc 14335
 
16825 efrain 14336
  .m-xxl-n5 {
14337
    margin: -3rem !important;
14338
  }
16848 stevensc 14339
 
16825 efrain 14340
  .m-xxl-n6 {
14341
    margin: -4.5rem !important;
14342
  }
16848 stevensc 14343
 
16825 efrain 14344
  .m-xxl-n7 {
14345
    margin: -6rem !important;
14346
  }
16848 stevensc 14347
 
16825 efrain 14348
  .mx-xxl-n1 {
14349
    margin-right: -0.25rem !important;
14350
    margin-left: -0.25rem !important;
14351
  }
16848 stevensc 14352
 
16825 efrain 14353
  .mx-xxl-n2 {
14354
    margin-right: -0.5rem !important;
14355
    margin-left: -0.5rem !important;
14356
  }
16848 stevensc 14357
 
16825 efrain 14358
  .mx-xxl-n3 {
14359
    margin-right: -1rem !important;
14360
    margin-left: -1rem !important;
14361
  }
16848 stevensc 14362
 
16825 efrain 14363
  .mx-xxl-n4 {
14364
    margin-right: -1.5rem !important;
14365
    margin-left: -1.5rem !important;
14366
  }
16848 stevensc 14367
 
16825 efrain 14368
  .mx-xxl-n5 {
14369
    margin-right: -3rem !important;
14370
    margin-left: -3rem !important;
14371
  }
16848 stevensc 14372
 
16825 efrain 14373
  .mx-xxl-n6 {
14374
    margin-right: -4.5rem !important;
14375
    margin-left: -4.5rem !important;
14376
  }
16848 stevensc 14377
 
16825 efrain 14378
  .mx-xxl-n7 {
14379
    margin-right: -6rem !important;
14380
    margin-left: -6rem !important;
14381
  }
16848 stevensc 14382
 
16825 efrain 14383
  .my-xxl-n1 {
14384
    margin-top: -0.25rem !important;
14385
    margin-bottom: -0.25rem !important;
14386
  }
16848 stevensc 14387
 
16825 efrain 14388
  .my-xxl-n2 {
14389
    margin-top: -0.5rem !important;
14390
    margin-bottom: -0.5rem !important;
14391
  }
16848 stevensc 14392
 
16825 efrain 14393
  .my-xxl-n3 {
14394
    margin-top: -1rem !important;
14395
    margin-bottom: -1rem !important;
14396
  }
16848 stevensc 14397
 
16825 efrain 14398
  .my-xxl-n4 {
14399
    margin-top: -1.5rem !important;
14400
    margin-bottom: -1.5rem !important;
14401
  }
16848 stevensc 14402
 
16825 efrain 14403
  .my-xxl-n5 {
14404
    margin-top: -3rem !important;
14405
    margin-bottom: -3rem !important;
14406
  }
16848 stevensc 14407
 
16825 efrain 14408
  .my-xxl-n6 {
14409
    margin-top: -4.5rem !important;
14410
    margin-bottom: -4.5rem !important;
14411
  }
16848 stevensc 14412
 
16825 efrain 14413
  .my-xxl-n7 {
14414
    margin-top: -6rem !important;
14415
    margin-bottom: -6rem !important;
14416
  }
16848 stevensc 14417
 
16825 efrain 14418
  .mt-xxl-n1 {
14419
    margin-top: -0.25rem !important;
14420
  }
16848 stevensc 14421
 
16825 efrain 14422
  .mt-xxl-n2 {
14423
    margin-top: -0.5rem !important;
14424
  }
16848 stevensc 14425
 
16825 efrain 14426
  .mt-xxl-n3 {
14427
    margin-top: -1rem !important;
14428
  }
16848 stevensc 14429
 
16825 efrain 14430
  .mt-xxl-n4 {
14431
    margin-top: -1.5rem !important;
14432
  }
16848 stevensc 14433
 
16825 efrain 14434
  .mt-xxl-n5 {
14435
    margin-top: -3rem !important;
14436
  }
16848 stevensc 14437
 
16825 efrain 14438
  .mt-xxl-n6 {
14439
    margin-top: -4.5rem !important;
14440
  }
16848 stevensc 14441
 
16825 efrain 14442
  .mt-xxl-n7 {
14443
    margin-top: -6rem !important;
14444
  }
16848 stevensc 14445
 
16825 efrain 14446
  .me-xxl-n1 {
14447
    margin-right: -0.25rem !important;
14448
  }
16848 stevensc 14449
 
16825 efrain 14450
  .me-xxl-n2 {
14451
    margin-right: -0.5rem !important;
14452
  }
16848 stevensc 14453
 
16825 efrain 14454
  .me-xxl-n3 {
14455
    margin-right: -1rem !important;
14456
  }
16848 stevensc 14457
 
16825 efrain 14458
  .me-xxl-n4 {
14459
    margin-right: -1.5rem !important;
14460
  }
16848 stevensc 14461
 
16825 efrain 14462
  .me-xxl-n5 {
14463
    margin-right: -3rem !important;
14464
  }
16848 stevensc 14465
 
16825 efrain 14466
  .me-xxl-n6 {
14467
    margin-right: -4.5rem !important;
14468
  }
16848 stevensc 14469
 
16825 efrain 14470
  .me-xxl-n7 {
14471
    margin-right: -6rem !important;
14472
  }
16848 stevensc 14473
 
16825 efrain 14474
  .mb-xxl-n1 {
14475
    margin-bottom: -0.25rem !important;
14476
  }
16848 stevensc 14477
 
16825 efrain 14478
  .mb-xxl-n2 {
14479
    margin-bottom: -0.5rem !important;
14480
  }
16848 stevensc 14481
 
16825 efrain 14482
  .mb-xxl-n3 {
14483
    margin-bottom: -1rem !important;
14484
  }
16848 stevensc 14485
 
16825 efrain 14486
  .mb-xxl-n4 {
14487
    margin-bottom: -1.5rem !important;
14488
  }
16848 stevensc 14489
 
16825 efrain 14490
  .mb-xxl-n5 {
14491
    margin-bottom: -3rem !important;
14492
  }
16848 stevensc 14493
 
16825 efrain 14494
  .mb-xxl-n6 {
14495
    margin-bottom: -4.5rem !important;
14496
  }
16848 stevensc 14497
 
16825 efrain 14498
  .mb-xxl-n7 {
14499
    margin-bottom: -6rem !important;
14500
  }
16848 stevensc 14501
 
16825 efrain 14502
  .ms-xxl-n1 {
14503
    margin-left: -0.25rem !important;
14504
  }
16848 stevensc 14505
 
16825 efrain 14506
  .ms-xxl-n2 {
14507
    margin-left: -0.5rem !important;
14508
  }
16848 stevensc 14509
 
16825 efrain 14510
  .ms-xxl-n3 {
14511
    margin-left: -1rem !important;
14512
  }
16848 stevensc 14513
 
16825 efrain 14514
  .ms-xxl-n4 {
14515
    margin-left: -1.5rem !important;
14516
  }
16848 stevensc 14517
 
16825 efrain 14518
  .ms-xxl-n5 {
14519
    margin-left: -3rem !important;
14520
  }
16848 stevensc 14521
 
16825 efrain 14522
  .ms-xxl-n6 {
14523
    margin-left: -4.5rem !important;
14524
  }
16848 stevensc 14525
 
16825 efrain 14526
  .ms-xxl-n7 {
14527
    margin-left: -6rem !important;
14528
  }
16848 stevensc 14529
 
16825 efrain 14530
  .p-xxl-0 {
14531
    padding: 0 !important;
14532
  }
16848 stevensc 14533
 
16825 efrain 14534
  .p-xxl-1 {
14535
    padding: 0.25rem !important;
14536
  }
16848 stevensc 14537
 
16825 efrain 14538
  .p-xxl-2 {
14539
    padding: 0.5rem !important;
14540
  }
16848 stevensc 14541
 
16825 efrain 14542
  .p-xxl-3 {
14543
    padding: 1rem !important;
14544
  }
16848 stevensc 14545
 
16825 efrain 14546
  .p-xxl-4 {
14547
    padding: 1.5rem !important;
14548
  }
16848 stevensc 14549
 
16825 efrain 14550
  .p-xxl-5 {
14551
    padding: 3rem !important;
14552
  }
16848 stevensc 14553
 
16825 efrain 14554
  .p-xxl-6 {
14555
    padding: 4.5rem !important;
14556
  }
16848 stevensc 14557
 
16825 efrain 14558
  .p-xxl-7 {
14559
    padding: 6rem !important;
14560
  }
16848 stevensc 14561
 
16825 efrain 14562
  .px-xxl-0 {
14563
    padding-right: 0 !important;
14564
    padding-left: 0 !important;
14565
  }
16848 stevensc 14566
 
16825 efrain 14567
  .px-xxl-1 {
14568
    padding-right: 0.25rem !important;
14569
    padding-left: 0.25rem !important;
14570
  }
16848 stevensc 14571
 
16825 efrain 14572
  .px-xxl-2 {
14573
    padding-right: 0.5rem !important;
14574
    padding-left: 0.5rem !important;
14575
  }
16848 stevensc 14576
 
16825 efrain 14577
  .px-xxl-3 {
14578
    padding-right: 1rem !important;
14579
    padding-left: 1rem !important;
14580
  }
16848 stevensc 14581
 
16825 efrain 14582
  .px-xxl-4 {
14583
    padding-right: 1.5rem !important;
14584
    padding-left: 1.5rem !important;
14585
  }
16848 stevensc 14586
 
16825 efrain 14587
  .px-xxl-5 {
14588
    padding-right: 3rem !important;
14589
    padding-left: 3rem !important;
14590
  }
16848 stevensc 14591
 
16825 efrain 14592
  .px-xxl-6 {
14593
    padding-right: 4.5rem !important;
14594
    padding-left: 4.5rem !important;
14595
  }
16848 stevensc 14596
 
16825 efrain 14597
  .px-xxl-7 {
14598
    padding-right: 6rem !important;
14599
    padding-left: 6rem !important;
14600
  }
16848 stevensc 14601
 
16825 efrain 14602
  .py-xxl-0 {
14603
    padding-top: 0 !important;
14604
    padding-bottom: 0 !important;
14605
  }
16848 stevensc 14606
 
16825 efrain 14607
  .py-xxl-1 {
14608
    padding-top: 0.25rem !important;
14609
    padding-bottom: 0.25rem !important;
14610
  }
16848 stevensc 14611
 
16825 efrain 14612
  .py-xxl-2 {
14613
    padding-top: 0.5rem !important;
14614
    padding-bottom: 0.5rem !important;
14615
  }
16848 stevensc 14616
 
16825 efrain 14617
  .py-xxl-3 {
14618
    padding-top: 1rem !important;
14619
    padding-bottom: 1rem !important;
14620
  }
16848 stevensc 14621
 
16825 efrain 14622
  .py-xxl-4 {
14623
    padding-top: 1.5rem !important;
14624
    padding-bottom: 1.5rem !important;
14625
  }
16848 stevensc 14626
 
16825 efrain 14627
  .py-xxl-5 {
14628
    padding-top: 3rem !important;
14629
    padding-bottom: 3rem !important;
14630
  }
16848 stevensc 14631
 
16825 efrain 14632
  .py-xxl-6 {
14633
    padding-top: 4.5rem !important;
14634
    padding-bottom: 4.5rem !important;
14635
  }
16848 stevensc 14636
 
16825 efrain 14637
  .py-xxl-7 {
14638
    padding-top: 6rem !important;
14639
    padding-bottom: 6rem !important;
14640
  }
16848 stevensc 14641
 
16825 efrain 14642
  .pt-xxl-0 {
14643
    padding-top: 0 !important;
14644
  }
16848 stevensc 14645
 
16825 efrain 14646
  .pt-xxl-1 {
14647
    padding-top: 0.25rem !important;
14648
  }
16848 stevensc 14649
 
16825 efrain 14650
  .pt-xxl-2 {
14651
    padding-top: 0.5rem !important;
14652
  }
16848 stevensc 14653
 
16825 efrain 14654
  .pt-xxl-3 {
14655
    padding-top: 1rem !important;
14656
  }
16848 stevensc 14657
 
16825 efrain 14658
  .pt-xxl-4 {
14659
    padding-top: 1.5rem !important;
14660
  }
16848 stevensc 14661
 
16825 efrain 14662
  .pt-xxl-5 {
14663
    padding-top: 3rem !important;
14664
  }
16848 stevensc 14665
 
16825 efrain 14666
  .pt-xxl-6 {
14667
    padding-top: 4.5rem !important;
14668
  }
16848 stevensc 14669
 
16825 efrain 14670
  .pt-xxl-7 {
14671
    padding-top: 6rem !important;
14672
  }
16848 stevensc 14673
 
16825 efrain 14674
  .pe-xxl-0 {
14675
    padding-right: 0 !important;
14676
  }
16848 stevensc 14677
 
16825 efrain 14678
  .pe-xxl-1 {
14679
    padding-right: 0.25rem !important;
14680
  }
16848 stevensc 14681
 
16825 efrain 14682
  .pe-xxl-2 {
14683
    padding-right: 0.5rem !important;
14684
  }
16848 stevensc 14685
 
16825 efrain 14686
  .pe-xxl-3 {
14687
    padding-right: 1rem !important;
14688
  }
16848 stevensc 14689
 
16825 efrain 14690
  .pe-xxl-4 {
14691
    padding-right: 1.5rem !important;
14692
  }
16848 stevensc 14693
 
16825 efrain 14694
  .pe-xxl-5 {
14695
    padding-right: 3rem !important;
14696
  }
16848 stevensc 14697
 
16825 efrain 14698
  .pe-xxl-6 {
14699
    padding-right: 4.5rem !important;
14700
  }
16848 stevensc 14701
 
16825 efrain 14702
  .pe-xxl-7 {
14703
    padding-right: 6rem !important;
14704
  }
16848 stevensc 14705
 
16825 efrain 14706
  .pb-xxl-0 {
14707
    padding-bottom: 0 !important;
14708
  }
16848 stevensc 14709
 
16825 efrain 14710
  .pb-xxl-1 {
14711
    padding-bottom: 0.25rem !important;
14712
  }
16848 stevensc 14713
 
16825 efrain 14714
  .pb-xxl-2 {
14715
    padding-bottom: 0.5rem !important;
14716
  }
16848 stevensc 14717
 
16825 efrain 14718
  .pb-xxl-3 {
14719
    padding-bottom: 1rem !important;
14720
  }
16848 stevensc 14721
 
16825 efrain 14722
  .pb-xxl-4 {
14723
    padding-bottom: 1.5rem !important;
14724
  }
16848 stevensc 14725
 
16825 efrain 14726
  .pb-xxl-5 {
14727
    padding-bottom: 3rem !important;
14728
  }
16848 stevensc 14729
 
16825 efrain 14730
  .pb-xxl-6 {
14731
    padding-bottom: 4.5rem !important;
14732
  }
16848 stevensc 14733
 
16825 efrain 14734
  .pb-xxl-7 {
14735
    padding-bottom: 6rem !important;
14736
  }
16848 stevensc 14737
 
16825 efrain 14738
  .ps-xxl-0 {
14739
    padding-left: 0 !important;
14740
  }
16848 stevensc 14741
 
16825 efrain 14742
  .ps-xxl-1 {
14743
    padding-left: 0.25rem !important;
14744
  }
16848 stevensc 14745
 
16825 efrain 14746
  .ps-xxl-2 {
14747
    padding-left: 0.5rem !important;
14748
  }
16848 stevensc 14749
 
16825 efrain 14750
  .ps-xxl-3 {
14751
    padding-left: 1rem !important;
14752
  }
16848 stevensc 14753
 
16825 efrain 14754
  .ps-xxl-4 {
14755
    padding-left: 1.5rem !important;
14756
  }
16848 stevensc 14757
 
16825 efrain 14758
  .ps-xxl-5 {
14759
    padding-left: 3rem !important;
14760
  }
16848 stevensc 14761
 
16825 efrain 14762
  .ps-xxl-6 {
14763
    padding-left: 4.5rem !important;
14764
  }
16848 stevensc 14765
 
16825 efrain 14766
  .ps-xxl-7 {
14767
    padding-left: 6rem !important;
14768
  }
16848 stevensc 14769
 
16825 efrain 14770
  .gap-xxl-0 {
14771
    gap: 0 !important;
14772
  }
16848 stevensc 14773
 
16825 efrain 14774
  .gap-xxl-1 {
14775
    gap: 0.25rem !important;
14776
  }
16848 stevensc 14777
 
16825 efrain 14778
  .gap-xxl-2 {
14779
    gap: 0.5rem !important;
14780
  }
16848 stevensc 14781
 
16825 efrain 14782
  .gap-xxl-3 {
14783
    gap: 1rem !important;
14784
  }
16848 stevensc 14785
 
16825 efrain 14786
  .gap-xxl-4 {
14787
    gap: 1.5rem !important;
14788
  }
16848 stevensc 14789
 
16825 efrain 14790
  .gap-xxl-5 {
14791
    gap: 3rem !important;
14792
  }
16848 stevensc 14793
 
16825 efrain 14794
  .gap-xxl-6 {
14795
    gap: 4.5rem !important;
14796
  }
16848 stevensc 14797
 
16825 efrain 14798
  .gap-xxl-7 {
14799
    gap: 6rem !important;
14800
  }
16848 stevensc 14801
 
16825 efrain 14802
  .text-xxl-start {
14803
    text-align: left !important;
14804
  }
16848 stevensc 14805
 
16825 efrain 14806
  .text-xxl-end {
14807
    text-align: right !important;
14808
  }
16848 stevensc 14809
 
16825 efrain 14810
  .text-xxl-center {
14811
    text-align: center !important;
14812
  }
14813
}
16848 stevensc 14814
 
16825 efrain 14815
@media (min-width: 1200px) {
14816
  .fs-1 {
14817
    font-size: 2.5rem !important;
14818
  }
16848 stevensc 14819
 
16825 efrain 14820
  .fs-2 {
14821
    font-size: 2rem !important;
14822
  }
16848 stevensc 14823
 
16825 efrain 14824
  .fs-3 {
14825
    font-size: 1.5rem !important;
14826
  }
14827
}
16848 stevensc 14828
 
16825 efrain 14829
@media print {
14830
  .d-print-inline {
14831
    display: inline !important;
14832
  }
16848 stevensc 14833
 
16825 efrain 14834
  .d-print-inline-block {
14835
    display: inline-block !important;
14836
  }
16848 stevensc 14837
 
16825 efrain 14838
  .d-print-block {
14839
    display: block !important;
14840
  }
16848 stevensc 14841
 
16825 efrain 14842
  .d-print-grid {
14843
    display: grid !important;
14844
  }
16848 stevensc 14845
 
16825 efrain 14846
  .d-print-table {
14847
    display: table !important;
14848
  }
16848 stevensc 14849
 
16825 efrain 14850
  .d-print-table-row {
14851
    display: table-row !important;
14852
  }
16848 stevensc 14853
 
16825 efrain 14854
  .d-print-table-cell {
14855
    display: table-cell !important;
14856
  }
16848 stevensc 14857
 
16825 efrain 14858
  .d-print-flex {
14859
    display: flex !important;
14860
  }
16848 stevensc 14861
 
16825 efrain 14862
  .d-print-inline-flex {
14863
    display: inline-flex !important;
14864
  }
16848 stevensc 14865
 
16825 efrain 14866
  .d-print-none {
14867
    display: none !important;
14868
  }
14869
}
16848 stevensc 14870
 
16825 efrain 14871
@keyframes dropdownAnimation {
14872
  from {
14873
    opacity: 0;
14874
    transform: translate3d(0, 20px, 0);
14875
  }
16848 stevensc 14876
 
16825 efrain 14877
  to {
14878
    opacity: 1;
14879
    transform: none;
14880
    transform: translate3d(0, 0px, 0);
14881
  }
14882
}
16848 stevensc 14883
 
14884
.dropdownAnimation,
14885
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14886
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14887
  -webkit-animation-name: dropdownAnimation;
14888
  animation-name: dropdownAnimation;
14889
  -webkit-animation-duration: 0.2s;
14890
  animation-duration: 0.2s;
14891
  -webkit-animation-fill-mode: both;
14892
  animation-fill-mode: both;
14893
}
14894
 
14895
@keyframes fadeOut {
14896
  from {
14897
    opacity: 1;
14898
  }
16848 stevensc 14899
 
16825 efrain 14900
  to {
14901
    opacity: 0;
14902
  }
14903
}
16848 stevensc 14904
 
16825 efrain 14905
.fadeOut {
14906
  animation-name: fadeOUt;
14907
}
14908
 
14909
@keyframes fadeInUp {
14910
  from {
14911
    opacity: 0;
14912
    transform: translate3d(0, 100%, 0);
14913
  }
16848 stevensc 14914
 
16825 efrain 14915
  to {
14916
    opacity: 1;
14917
    transform: none;
14918
  }
14919
}
16848 stevensc 14920
 
16825 efrain 14921
.fadeInUp {
14922
  animation-name: fadeInUp;
14923
}
14924
 
16848 stevensc 14925
.infinite-spin,
14926
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14927
  animation-name: spin;
14928
  animation-duration: 3s;
14929
  animation-iteration-count: infinite;
14930
  animation-timing-function: linear;
14931
}
16848 stevensc 14932
 
16825 efrain 14933
@keyframes spin {
14934
  from {
14935
    transform: rotate(0deg);
14936
  }
16848 stevensc 14937
 
16825 efrain 14938
  to {
14939
    transform: rotate(360deg);
14940
  }
14941
}
14942
 
16848 stevensc 14943
.pulse,
14944
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14945
  animation-name: pulse;
14946
  animation-duration: 0.9s;
14947
  animation-iteration-count: infinite;
14948
  animation-timing-function: ease-out;
14949
}
16848 stevensc 14950
 
16825 efrain 14951
@keyframes pulse {
14952
  0% {
14953
    opacity: 1;
14954
    width: 7px;
14955
    height: 7px;
14956
    left: 0;
14957
    top: 0;
14958
  }
16848 stevensc 14959
 
16825 efrain 14960
  95% {
14961
    opacity: 0.1;
14962
    left: -10.5px;
14963
    top: -10.5px;
14964
    width: 28px;
14965
    height: 28px;
14966
  }
16848 stevensc 14967
 
16825 efrain 14968
  100% {
14969
    opacity: 0;
14970
    width: 7px;
14971
    height: 7px;
14972
    left: 0;
14973
    top: 0;
14974
  }
14975
}
14976
 
14977
.wd-5 {
14978
  width: 5px;
14979
}
14980
 
14981
.wd-5p {
14982
  width: 5%;
14983
}
14984
 
14985
.mx-wd-5p {
14986
  max-width: 5%;
14987
}
14988
 
14989
.mn-wd-5p {
14990
  min-width: 5%;
14991
}
14992
 
14993
.wd-5-f {
14994
  width: 5px !important;
14995
}
14996
 
14997
.wd-5p-f {
14998
  width: 5% !important;
14999
}
15000
 
15001
.mx-wd-5p-f {
15002
  max-width: 5% !important;
15003
}
15004
 
15005
.mn-wd-5p-f {
15006
  min-width: 5% !important;
15007
}
15008
 
15009
.wd-10 {
15010
  width: 10px;
15011
}
15012
 
15013
.wd-10p {
15014
  width: 10%;
15015
}
15016
 
15017
.mx-wd-10p {
15018
  max-width: 10%;
15019
}
15020
 
15021
.mn-wd-10p {
15022
  min-width: 10%;
15023
}
15024
 
15025
.wd-10-f {
15026
  width: 10px !important;
15027
}
15028
 
15029
.wd-10p-f {
15030
  width: 10% !important;
15031
}
15032
 
15033
.mx-wd-10p-f {
15034
  max-width: 10% !important;
15035
}
15036
 
15037
.mn-wd-10p-f {
15038
  min-width: 10% !important;
15039
}
15040
 
15041
.wd-15 {
15042
  width: 15px;
15043
}
15044
 
15045
.wd-15p {
15046
  width: 15%;
15047
}
15048
 
15049
.mx-wd-15p {
15050
  max-width: 15%;
15051
}
15052
 
15053
.mn-wd-15p {
15054
  min-width: 15%;
15055
}
15056
 
15057
.wd-15-f {
15058
  width: 15px !important;
15059
}
15060
 
15061
.wd-15p-f {
15062
  width: 15% !important;
15063
}
15064
 
15065
.mx-wd-15p-f {
15066
  max-width: 15% !important;
15067
}
15068
 
15069
.mn-wd-15p-f {
15070
  min-width: 15% !important;
15071
}
15072
 
15073
.wd-20 {
15074
  width: 20px;
15075
}
15076
 
15077
.wd-20p {
15078
  width: 20%;
15079
}
15080
 
15081
.mx-wd-20p {
15082
  max-width: 20%;
15083
}
15084
 
15085
.mn-wd-20p {
15086
  min-width: 20%;
15087
}
15088
 
15089
.wd-20-f {
15090
  width: 20px !important;
15091
}
15092
 
15093
.wd-20p-f {
15094
  width: 20% !important;
15095
}
15096
 
15097
.mx-wd-20p-f {
15098
  max-width: 20% !important;
15099
}
15100
 
15101
.mn-wd-20p-f {
15102
  min-width: 20% !important;
15103
}
15104
 
15105
.wd-25 {
15106
  width: 25px;
15107
}
15108
 
15109
.wd-25p {
15110
  width: 25%;
15111
}
15112
 
15113
.mx-wd-25p {
15114
  max-width: 25%;
15115
}
15116
 
15117
.mn-wd-25p {
15118
  min-width: 25%;
15119
}
15120
 
15121
.wd-25-f {
15122
  width: 25px !important;
15123
}
15124
 
15125
.wd-25p-f {
15126
  width: 25% !important;
15127
}
15128
 
15129
.mx-wd-25p-f {
15130
  max-width: 25% !important;
15131
}
15132
 
15133
.mn-wd-25p-f {
15134
  min-width: 25% !important;
15135
}
15136
 
15137
.wd-30 {
15138
  width: 30px;
15139
}
15140
 
15141
.wd-30p {
15142
  width: 30%;
15143
}
15144
 
15145
.mx-wd-30p {
15146
  max-width: 30%;
15147
}
15148
 
15149
.mn-wd-30p {
15150
  min-width: 30%;
15151
}
15152
 
15153
.wd-30-f {
15154
  width: 30px !important;
15155
}
15156
 
15157
.wd-30p-f {
15158
  width: 30% !important;
15159
}
15160
 
15161
.mx-wd-30p-f {
15162
  max-width: 30% !important;
15163
}
15164
 
15165
.mn-wd-30p-f {
15166
  min-width: 30% !important;
15167
}
15168
 
15169
.wd-35 {
15170
  width: 35px;
15171
}
15172
 
15173
.wd-35p {
15174
  width: 35%;
15175
}
15176
 
15177
.mx-wd-35p {
15178
  max-width: 35%;
15179
}
15180
 
15181
.mn-wd-35p {
15182
  min-width: 35%;
15183
}
15184
 
15185
.wd-35-f {
15186
  width: 35px !important;
15187
}
15188
 
15189
.wd-35p-f {
15190
  width: 35% !important;
15191
}
15192
 
15193
.mx-wd-35p-f {
15194
  max-width: 35% !important;
15195
}
15196
 
15197
.mn-wd-35p-f {
15198
  min-width: 35% !important;
15199
}
15200
 
15201
.wd-40 {
15202
  width: 40px;
15203
}
15204
 
15205
.wd-40p {
15206
  width: 40%;
15207
}
15208
 
15209
.mx-wd-40p {
15210
  max-width: 40%;
15211
}
15212
 
15213
.mn-wd-40p {
15214
  min-width: 40%;
15215
}
15216
 
15217
.wd-40-f {
15218
  width: 40px !important;
15219
}
15220
 
15221
.wd-40p-f {
15222
  width: 40% !important;
15223
}
15224
 
15225
.mx-wd-40p-f {
15226
  max-width: 40% !important;
15227
}
15228
 
15229
.mn-wd-40p-f {
15230
  min-width: 40% !important;
15231
}
15232
 
15233
.wd-45 {
15234
  width: 45px;
15235
}
15236
 
15237
.wd-45p {
15238
  width: 45%;
15239
}
15240
 
15241
.mx-wd-45p {
15242
  max-width: 45%;
15243
}
15244
 
15245
.mn-wd-45p {
15246
  min-width: 45%;
15247
}
15248
 
15249
.wd-45-f {
15250
  width: 45px !important;
15251
}
15252
 
15253
.wd-45p-f {
15254
  width: 45% !important;
15255
}
15256
 
15257
.mx-wd-45p-f {
15258
  max-width: 45% !important;
15259
}
15260
 
15261
.mn-wd-45p-f {
15262
  min-width: 45% !important;
15263
}
15264
 
15265
.wd-50 {
15266
  width: 50px;
15267
}
15268
 
15269
.wd-50p {
15270
  width: 50%;
15271
}
15272
 
15273
.mx-wd-50p {
15274
  max-width: 50%;
15275
}
15276
 
15277
.mn-wd-50p {
15278
  min-width: 50%;
15279
}
15280
 
15281
.wd-50-f {
15282
  width: 50px !important;
15283
}
15284
 
15285
.wd-50p-f {
15286
  width: 50% !important;
15287
}
15288
 
15289
.mx-wd-50p-f {
15290
  max-width: 50% !important;
15291
}
15292
 
15293
.mn-wd-50p-f {
15294
  min-width: 50% !important;
15295
}
15296
 
15297
.wd-55 {
15298
  width: 55px;
15299
}
15300
 
15301
.wd-55p {
15302
  width: 55%;
15303
}
15304
 
15305
.mx-wd-55p {
15306
  max-width: 55%;
15307
}
15308
 
15309
.mn-wd-55p {
15310
  min-width: 55%;
15311
}
15312
 
15313
.wd-55-f {
15314
  width: 55px !important;
15315
}
15316
 
15317
.wd-55p-f {
15318
  width: 55% !important;
15319
}
15320
 
15321
.mx-wd-55p-f {
15322
  max-width: 55% !important;
15323
}
15324
 
15325
.mn-wd-55p-f {
15326
  min-width: 55% !important;
15327
}
15328
 
15329
.wd-60 {
15330
  width: 60px;
15331
}
15332
 
15333
.wd-60p {
15334
  width: 60%;
15335
}
15336
 
15337
.mx-wd-60p {
15338
  max-width: 60%;
15339
}
15340
 
15341
.mn-wd-60p {
15342
  min-width: 60%;
15343
}
15344
 
15345
.wd-60-f {
15346
  width: 60px !important;
15347
}
15348
 
15349
.wd-60p-f {
15350
  width: 60% !important;
15351
}
15352
 
15353
.mx-wd-60p-f {
15354
  max-width: 60% !important;
15355
}
15356
 
15357
.mn-wd-60p-f {
15358
  min-width: 60% !important;
15359
}
15360
 
15361
.wd-65 {
15362
  width: 65px;
15363
}
15364
 
15365
.wd-65p {
15366
  width: 65%;
15367
}
15368
 
15369
.mx-wd-65p {
15370
  max-width: 65%;
15371
}
15372
 
15373
.mn-wd-65p {
15374
  min-width: 65%;
15375
}
15376
 
15377
.wd-65-f {
15378
  width: 65px !important;
15379
}
15380
 
15381
.wd-65p-f {
15382
  width: 65% !important;
15383
}
15384
 
15385
.mx-wd-65p-f {
15386
  max-width: 65% !important;
15387
}
15388
 
15389
.mn-wd-65p-f {
15390
  min-width: 65% !important;
15391
}
15392
 
15393
.wd-70 {
15394
  width: 70px;
15395
}
15396
 
15397
.wd-70p {
15398
  width: 70%;
15399
}
15400
 
15401
.mx-wd-70p {
15402
  max-width: 70%;
15403
}
15404
 
15405
.mn-wd-70p {
15406
  min-width: 70%;
15407
}
15408
 
15409
.wd-70-f {
15410
  width: 70px !important;
15411
}
15412
 
15413
.wd-70p-f {
15414
  width: 70% !important;
15415
}
15416
 
15417
.mx-wd-70p-f {
15418
  max-width: 70% !important;
15419
}
15420
 
15421
.mn-wd-70p-f {
15422
  min-width: 70% !important;
15423
}
15424
 
15425
.wd-75 {
15426
  width: 75px;
15427
}
15428
 
15429
.wd-75p {
15430
  width: 75%;
15431
}
15432
 
15433
.mx-wd-75p {
15434
  max-width: 75%;
15435
}
15436
 
15437
.mn-wd-75p {
15438
  min-width: 75%;
15439
}
15440
 
15441
.wd-75-f {
15442
  width: 75px !important;
15443
}
15444
 
15445
.wd-75p-f {
15446
  width: 75% !important;
15447
}
15448
 
15449
.mx-wd-75p-f {
15450
  max-width: 75% !important;
15451
}
15452
 
15453
.mn-wd-75p-f {
15454
  min-width: 75% !important;
15455
}
15456
 
15457
.wd-80 {
15458
  width: 80px;
15459
}
15460
 
15461
.wd-80p {
15462
  width: 80%;
15463
}
15464
 
15465
.mx-wd-80p {
15466
  max-width: 80%;
15467
}
15468
 
15469
.mn-wd-80p {
15470
  min-width: 80%;
15471
}
15472
 
15473
.wd-80-f {
15474
  width: 80px !important;
15475
}
15476
 
15477
.wd-80p-f {
15478
  width: 80% !important;
15479
}
15480
 
15481
.mx-wd-80p-f {
15482
  max-width: 80% !important;
15483
}
15484
 
15485
.mn-wd-80p-f {
15486
  min-width: 80% !important;
15487
}
15488
 
15489
.wd-85 {
15490
  width: 85px;
15491
}
15492
 
15493
.wd-85p {
15494
  width: 85%;
15495
}
15496
 
15497
.mx-wd-85p {
15498
  max-width: 85%;
15499
}
15500
 
15501
.mn-wd-85p {
15502
  min-width: 85%;
15503
}
15504
 
15505
.wd-85-f {
15506
  width: 85px !important;
15507
}
15508
 
15509
.wd-85p-f {
15510
  width: 85% !important;
15511
}
15512
 
15513
.mx-wd-85p-f {
15514
  max-width: 85% !important;
15515
}
15516
 
15517
.mn-wd-85p-f {
15518
  min-width: 85% !important;
15519
}
15520
 
15521
.wd-90 {
15522
  width: 90px;
15523
}
15524
 
15525
.wd-90p {
15526
  width: 90%;
15527
}
15528
 
15529
.mx-wd-90p {
15530
  max-width: 90%;
15531
}
15532
 
15533
.mn-wd-90p {
15534
  min-width: 90%;
15535
}
15536
 
15537
.wd-90-f {
15538
  width: 90px !important;
15539
}
15540
 
15541
.wd-90p-f {
15542
  width: 90% !important;
15543
}
15544
 
15545
.mx-wd-90p-f {
15546
  max-width: 90% !important;
15547
}
15548
 
15549
.mn-wd-90p-f {
15550
  min-width: 90% !important;
15551
}
15552
 
15553
.wd-95 {
15554
  width: 95px;
15555
}
15556
 
15557
.wd-95p {
15558
  width: 95%;
15559
}
15560
 
15561
.mx-wd-95p {
15562
  max-width: 95%;
15563
}
15564
 
15565
.mn-wd-95p {
15566
  min-width: 95%;
15567
}
15568
 
15569
.wd-95-f {
15570
  width: 95px !important;
15571
}
15572
 
15573
.wd-95p-f {
15574
  width: 95% !important;
15575
}
15576
 
15577
.mx-wd-95p-f {
15578
  max-width: 95% !important;
15579
}
15580
 
15581
.mn-wd-95p-f {
15582
  min-width: 95% !important;
15583
}
15584
 
15585
.wd-100 {
15586
  width: 100px;
15587
}
15588
 
15589
.wd-100p {
15590
  width: 100%;
15591
}
15592
 
15593
.mx-wd-100p {
15594
  max-width: 100%;
15595
}
15596
 
15597
.mn-wd-100p {
15598
  min-width: 100%;
15599
}
15600
 
15601
.wd-100-f {
15602
  width: 100px !important;
15603
}
15604
 
15605
.wd-100p-f {
15606
  width: 100% !important;
15607
}
15608
 
15609
.mx-wd-100p-f {
15610
  max-width: 100% !important;
15611
}
15612
 
15613
.mn-wd-100p-f {
15614
  min-width: 100% !important;
15615
}
15616
 
15617
.wd-150 {
15618
  width: 150px;
15619
}
15620
 
15621
.wd-150-f {
15622
  width: 150px !important;
15623
}
15624
 
15625
.wd-200 {
15626
  width: 200px;
15627
}
15628
 
15629
.wd-200-f {
15630
  width: 200px !important;
15631
}
15632
 
15633
.wd-250 {
15634
  width: 250px;
15635
}
15636
 
15637
.wd-250-f {
15638
  width: 250px !important;
15639
}
15640
 
15641
.wd-300 {
15642
  width: 300px;
15643
}
15644
 
15645
.wd-300-f {
15646
  width: 300px !important;
15647
}
15648
 
15649
.wd-350 {
15650
  width: 350px;
15651
}
15652
 
15653
.wd-350-f {
15654
  width: 350px !important;
15655
}
15656
 
15657
.wd-400 {
15658
  width: 400px;
15659
}
15660
 
15661
.wd-400-f {
15662
  width: 400px !important;
15663
}
15664
 
15665
.wd-450 {
15666
  width: 450px;
15667
}
15668
 
15669
.wd-450-f {
15670
  width: 450px !important;
15671
}
15672
 
15673
.wd-500 {
15674
  width: 500px;
15675
}
15676
 
15677
.wd-500-f {
15678
  width: 500px !important;
15679
}
15680
 
15681
.wd-550 {
15682
  width: 550px;
15683
}
15684
 
15685
.wd-550-f {
15686
  width: 550px !important;
15687
}
15688
 
15689
.wd-600 {
15690
  width: 600px;
15691
}
15692
 
15693
.wd-600-f {
15694
  width: 600px !important;
15695
}
15696
 
15697
.wd-650 {
15698
  width: 650px;
15699
}
15700
 
15701
.wd-650-f {
15702
  width: 650px !important;
15703
}
15704
 
15705
.wd-700 {
15706
  width: 700px;
15707
}
15708
 
15709
.wd-700-f {
15710
  width: 700px !important;
15711
}
15712
 
15713
.wd-750 {
15714
  width: 750px;
15715
}
15716
 
15717
.wd-750-f {
15718
  width: 750px !important;
15719
}
15720
 
15721
.wd-800 {
15722
  width: 800px;
15723
}
15724
 
15725
.wd-800-f {
15726
  width: 800px !important;
15727
}
15728
 
15729
.wd-850 {
15730
  width: 850px;
15731
}
15732
 
15733
.wd-850-f {
15734
  width: 850px !important;
15735
}
15736
 
15737
.wd-900 {
15738
  width: 900px;
15739
}
15740
 
15741
.wd-900-f {
15742
  width: 900px !important;
15743
}
15744
 
15745
.wd-950 {
15746
  width: 950px;
15747
}
15748
 
15749
.wd-950-f {
15750
  width: 950px !important;
15751
}
15752
 
15753
.wd-1000 {
15754
  width: 1000px;
15755
}
15756
 
15757
.wd-1000-f {
15758
  width: 1000px !important;
15759
}
15760
 
15761
@media (min-width: 480px) {
15762
  .wd-xs-5 {
15763
    width: 5px;
15764
  }
16848 stevensc 15765
 
16825 efrain 15766
  .wd-xs-5p {
15767
    width: 5%;
15768
  }
16848 stevensc 15769
 
16825 efrain 15770
  .mx-wd-xs-5p {
15771
    max-width: 5%;
15772
  }
16848 stevensc 15773
 
16825 efrain 15774
  .mn-wd-xs-5p {
15775
    min-width: 5%;
15776
  }
16848 stevensc 15777
 
16825 efrain 15778
  .wd-xs-5-f {
15779
    width: 5px !important;
15780
  }
16848 stevensc 15781
 
16825 efrain 15782
  .wd-xs-5p-f {
15783
    width: 5% !important;
15784
  }
16848 stevensc 15785
 
16825 efrain 15786
  .mx-wd-xs-5p-f {
15787
    max-width: 5% !important;
15788
  }
16848 stevensc 15789
 
16825 efrain 15790
  .mn-wd-xs-5p-f {
15791
    min-width: 5% !important;
15792
  }
16848 stevensc 15793
 
16825 efrain 15794
  .wd-xs-10 {
15795
    width: 10px;
15796
  }
16848 stevensc 15797
 
16825 efrain 15798
  .wd-xs-10p {
15799
    width: 10%;
15800
  }
16848 stevensc 15801
 
16825 efrain 15802
  .mx-wd-xs-10p {
15803
    max-width: 10%;
15804
  }
16848 stevensc 15805
 
16825 efrain 15806
  .mn-wd-xs-10p {
15807
    min-width: 10%;
15808
  }
16848 stevensc 15809
 
16825 efrain 15810
  .wd-xs-10-f {
15811
    width: 10px !important;
15812
  }
16848 stevensc 15813
 
16825 efrain 15814
  .wd-xs-10p-f {
15815
    width: 10% !important;
15816
  }
16848 stevensc 15817
 
16825 efrain 15818
  .mx-wd-xs-10p-f {
15819
    max-width: 10% !important;
15820
  }
16848 stevensc 15821
 
16825 efrain 15822
  .mn-wd-xs-10p-f {
15823
    min-width: 10% !important;
15824
  }
16848 stevensc 15825
 
16825 efrain 15826
  .wd-xs-15 {
15827
    width: 15px;
15828
  }
16848 stevensc 15829
 
16825 efrain 15830
  .wd-xs-15p {
15831
    width: 15%;
15832
  }
16848 stevensc 15833
 
16825 efrain 15834
  .mx-wd-xs-15p {
15835
    max-width: 15%;
15836
  }
16848 stevensc 15837
 
16825 efrain 15838
  .mn-wd-xs-15p {
15839
    min-width: 15%;
15840
  }
16848 stevensc 15841
 
16825 efrain 15842
  .wd-xs-15-f {
15843
    width: 15px !important;
15844
  }
16848 stevensc 15845
 
16825 efrain 15846
  .wd-xs-15p-f {
15847
    width: 15% !important;
15848
  }
16848 stevensc 15849
 
16825 efrain 15850
  .mx-wd-xs-15p-f {
15851
    max-width: 15% !important;
15852
  }
16848 stevensc 15853
 
16825 efrain 15854
  .mn-wd-xs-15p-f {
15855
    min-width: 15% !important;
15856
  }
16848 stevensc 15857
 
16825 efrain 15858
  .wd-xs-20 {
15859
    width: 20px;
15860
  }
16848 stevensc 15861
 
16825 efrain 15862
  .wd-xs-20p {
15863
    width: 20%;
15864
  }
16848 stevensc 15865
 
16825 efrain 15866
  .mx-wd-xs-20p {
15867
    max-width: 20%;
15868
  }
16848 stevensc 15869
 
16825 efrain 15870
  .mn-wd-xs-20p {
15871
    min-width: 20%;
15872
  }
16848 stevensc 15873
 
16825 efrain 15874
  .wd-xs-20-f {
15875
    width: 20px !important;
15876
  }
16848 stevensc 15877
 
16825 efrain 15878
  .wd-xs-20p-f {
15879
    width: 20% !important;
15880
  }
16848 stevensc 15881
 
16825 efrain 15882
  .mx-wd-xs-20p-f {
15883
    max-width: 20% !important;
15884
  }
16848 stevensc 15885
 
16825 efrain 15886
  .mn-wd-xs-20p-f {
15887
    min-width: 20% !important;
15888
  }
16848 stevensc 15889
 
16825 efrain 15890
  .wd-xs-25 {
15891
    width: 25px;
15892
  }
16848 stevensc 15893
 
16825 efrain 15894
  .wd-xs-25p {
15895
    width: 25%;
15896
  }
16848 stevensc 15897
 
16825 efrain 15898
  .mx-wd-xs-25p {
15899
    max-width: 25%;
15900
  }
16848 stevensc 15901
 
16825 efrain 15902
  .mn-wd-xs-25p {
15903
    min-width: 25%;
15904
  }
16848 stevensc 15905
 
16825 efrain 15906
  .wd-xs-25-f {
15907
    width: 25px !important;
15908
  }
16848 stevensc 15909
 
16825 efrain 15910
  .wd-xs-25p-f {
15911
    width: 25% !important;
15912
  }
16848 stevensc 15913
 
16825 efrain 15914
  .mx-wd-xs-25p-f {
15915
    max-width: 25% !important;
15916
  }
16848 stevensc 15917
 
16825 efrain 15918
  .mn-wd-xs-25p-f {
15919
    min-width: 25% !important;
15920
  }
16848 stevensc 15921
 
16825 efrain 15922
  .wd-xs-30 {
15923
    width: 30px;
15924
  }
16848 stevensc 15925
 
16825 efrain 15926
  .wd-xs-30p {
15927
    width: 30%;
15928
  }
16848 stevensc 15929
 
16825 efrain 15930
  .mx-wd-xs-30p {
15931
    max-width: 30%;
15932
  }
16848 stevensc 15933
 
16825 efrain 15934
  .mn-wd-xs-30p {
15935
    min-width: 30%;
15936
  }
16848 stevensc 15937
 
16825 efrain 15938
  .wd-xs-30-f {
15939
    width: 30px !important;
15940
  }
16848 stevensc 15941
 
16825 efrain 15942
  .wd-xs-30p-f {
15943
    width: 30% !important;
15944
  }
16848 stevensc 15945
 
16825 efrain 15946
  .mx-wd-xs-30p-f {
15947
    max-width: 30% !important;
15948
  }
16848 stevensc 15949
 
16825 efrain 15950
  .mn-wd-xs-30p-f {
15951
    min-width: 30% !important;
15952
  }
16848 stevensc 15953
 
16825 efrain 15954
  .wd-xs-35 {
15955
    width: 35px;
15956
  }
16848 stevensc 15957
 
16825 efrain 15958
  .wd-xs-35p {
15959
    width: 35%;
15960
  }
16848 stevensc 15961
 
16825 efrain 15962
  .mx-wd-xs-35p {
15963
    max-width: 35%;
15964
  }
16848 stevensc 15965
 
16825 efrain 15966
  .mn-wd-xs-35p {
15967
    min-width: 35%;
15968
  }
16848 stevensc 15969
 
16825 efrain 15970
  .wd-xs-35-f {
15971
    width: 35px !important;
15972
  }
16848 stevensc 15973
 
16825 efrain 15974
  .wd-xs-35p-f {
15975
    width: 35% !important;
15976
  }
16848 stevensc 15977
 
16825 efrain 15978
  .mx-wd-xs-35p-f {
15979
    max-width: 35% !important;
15980
  }
16848 stevensc 15981
 
16825 efrain 15982
  .mn-wd-xs-35p-f {
15983
    min-width: 35% !important;
15984
  }
16848 stevensc 15985
 
16825 efrain 15986
  .wd-xs-40 {
15987
    width: 40px;
15988
  }
16848 stevensc 15989
 
16825 efrain 15990
  .wd-xs-40p {
15991
    width: 40%;
15992
  }
16848 stevensc 15993
 
16825 efrain 15994
  .mx-wd-xs-40p {
15995
    max-width: 40%;
15996
  }
16848 stevensc 15997
 
16825 efrain 15998
  .mn-wd-xs-40p {
15999
    min-width: 40%;
16000
  }
16848 stevensc 16001
 
16825 efrain 16002
  .wd-xs-40-f {
16003
    width: 40px !important;
16004
  }
16848 stevensc 16005
 
16825 efrain 16006
  .wd-xs-40p-f {
16007
    width: 40% !important;
16008
  }
16848 stevensc 16009
 
16825 efrain 16010
  .mx-wd-xs-40p-f {
16011
    max-width: 40% !important;
16012
  }
16848 stevensc 16013
 
16825 efrain 16014
  .mn-wd-xs-40p-f {
16015
    min-width: 40% !important;
16016
  }
16848 stevensc 16017
 
16825 efrain 16018
  .wd-xs-45 {
16019
    width: 45px;
16020
  }
16848 stevensc 16021
 
16825 efrain 16022
  .wd-xs-45p {
16023
    width: 45%;
16024
  }
16848 stevensc 16025
 
16825 efrain 16026
  .mx-wd-xs-45p {
16027
    max-width: 45%;
16028
  }
16848 stevensc 16029
 
16825 efrain 16030
  .mn-wd-xs-45p {
16031
    min-width: 45%;
16032
  }
16848 stevensc 16033
 
16825 efrain 16034
  .wd-xs-45-f {
16035
    width: 45px !important;
16036
  }
16848 stevensc 16037
 
16825 efrain 16038
  .wd-xs-45p-f {
16039
    width: 45% !important;
16040
  }
16848 stevensc 16041
 
16825 efrain 16042
  .mx-wd-xs-45p-f {
16043
    max-width: 45% !important;
16044
  }
16848 stevensc 16045
 
16825 efrain 16046
  .mn-wd-xs-45p-f {
16047
    min-width: 45% !important;
16048
  }
16848 stevensc 16049
 
16825 efrain 16050
  .wd-xs-50 {
16051
    width: 50px;
16052
  }
16848 stevensc 16053
 
16825 efrain 16054
  .wd-xs-50p {
16055
    width: 50%;
16056
  }
16848 stevensc 16057
 
16825 efrain 16058
  .mx-wd-xs-50p {
16059
    max-width: 50%;
16060
  }
16848 stevensc 16061
 
16825 efrain 16062
  .mn-wd-xs-50p {
16063
    min-width: 50%;
16064
  }
16848 stevensc 16065
 
16825 efrain 16066
  .wd-xs-50-f {
16067
    width: 50px !important;
16068
  }
16848 stevensc 16069
 
16825 efrain 16070
  .wd-xs-50p-f {
16071
    width: 50% !important;
16072
  }
16848 stevensc 16073
 
16825 efrain 16074
  .mx-wd-xs-50p-f {
16075
    max-width: 50% !important;
16076
  }
16848 stevensc 16077
 
16825 efrain 16078
  .mn-wd-xs-50p-f {
16079
    min-width: 50% !important;
16080
  }
16848 stevensc 16081
 
16825 efrain 16082
  .wd-xs-55 {
16083
    width: 55px;
16084
  }
16848 stevensc 16085
 
16825 efrain 16086
  .wd-xs-55p {
16087
    width: 55%;
16088
  }
16848 stevensc 16089
 
16825 efrain 16090
  .mx-wd-xs-55p {
16091
    max-width: 55%;
16092
  }
16848 stevensc 16093
 
16825 efrain 16094
  .mn-wd-xs-55p {
16095
    min-width: 55%;
16096
  }
16848 stevensc 16097
 
16825 efrain 16098
  .wd-xs-55-f {
16099
    width: 55px !important;
16100
  }
16848 stevensc 16101
 
16825 efrain 16102
  .wd-xs-55p-f {
16103
    width: 55% !important;
16104
  }
16848 stevensc 16105
 
16825 efrain 16106
  .mx-wd-xs-55p-f {
16107
    max-width: 55% !important;
16108
  }
16848 stevensc 16109
 
16825 efrain 16110
  .mn-wd-xs-55p-f {
16111
    min-width: 55% !important;
16112
  }
16848 stevensc 16113
 
16825 efrain 16114
  .wd-xs-60 {
16115
    width: 60px;
16116
  }
16848 stevensc 16117
 
16825 efrain 16118
  .wd-xs-60p {
16119
    width: 60%;
16120
  }
16848 stevensc 16121
 
16825 efrain 16122
  .mx-wd-xs-60p {
16123
    max-width: 60%;
16124
  }
16848 stevensc 16125
 
16825 efrain 16126
  .mn-wd-xs-60p {
16127
    min-width: 60%;
16128
  }
16848 stevensc 16129
 
16825 efrain 16130
  .wd-xs-60-f {
16131
    width: 60px !important;
16132
  }
16848 stevensc 16133
 
16825 efrain 16134
  .wd-xs-60p-f {
16135
    width: 60% !important;
16136
  }
16848 stevensc 16137
 
16825 efrain 16138
  .mx-wd-xs-60p-f {
16139
    max-width: 60% !important;
16140
  }
16848 stevensc 16141
 
16825 efrain 16142
  .mn-wd-xs-60p-f {
16143
    min-width: 60% !important;
16144
  }
16848 stevensc 16145
 
16825 efrain 16146
  .wd-xs-65 {
16147
    width: 65px;
16148
  }
16848 stevensc 16149
 
16825 efrain 16150
  .wd-xs-65p {
16151
    width: 65%;
16152
  }
16848 stevensc 16153
 
16825 efrain 16154
  .mx-wd-xs-65p {
16155
    max-width: 65%;
16156
  }
16848 stevensc 16157
 
16825 efrain 16158
  .mn-wd-xs-65p {
16159
    min-width: 65%;
16160
  }
16848 stevensc 16161
 
16825 efrain 16162
  .wd-xs-65-f {
16163
    width: 65px !important;
16164
  }
16848 stevensc 16165
 
16825 efrain 16166
  .wd-xs-65p-f {
16167
    width: 65% !important;
16168
  }
16848 stevensc 16169
 
16825 efrain 16170
  .mx-wd-xs-65p-f {
16171
    max-width: 65% !important;
16172
  }
16848 stevensc 16173
 
16825 efrain 16174
  .mn-wd-xs-65p-f {
16175
    min-width: 65% !important;
16176
  }
16848 stevensc 16177
 
16825 efrain 16178
  .wd-xs-70 {
16179
    width: 70px;
16180
  }
16848 stevensc 16181
 
16825 efrain 16182
  .wd-xs-70p {
16183
    width: 70%;
16184
  }
16848 stevensc 16185
 
16825 efrain 16186
  .mx-wd-xs-70p {
16187
    max-width: 70%;
16188
  }
16848 stevensc 16189
 
16825 efrain 16190
  .mn-wd-xs-70p {
16191
    min-width: 70%;
16192
  }
16848 stevensc 16193
 
16825 efrain 16194
  .wd-xs-70-f {
16195
    width: 70px !important;
16196
  }
16848 stevensc 16197
 
16825 efrain 16198
  .wd-xs-70p-f {
16199
    width: 70% !important;
16200
  }
16848 stevensc 16201
 
16825 efrain 16202
  .mx-wd-xs-70p-f {
16203
    max-width: 70% !important;
16204
  }
16848 stevensc 16205
 
16825 efrain 16206
  .mn-wd-xs-70p-f {
16207
    min-width: 70% !important;
16208
  }
16848 stevensc 16209
 
16825 efrain 16210
  .wd-xs-75 {
16211
    width: 75px;
16212
  }
16848 stevensc 16213
 
16825 efrain 16214
  .wd-xs-75p {
16215
    width: 75%;
16216
  }
16848 stevensc 16217
 
16825 efrain 16218
  .mx-wd-xs-75p {
16219
    max-width: 75%;
16220
  }
16848 stevensc 16221
 
16825 efrain 16222
  .mn-wd-xs-75p {
16223
    min-width: 75%;
16224
  }
16848 stevensc 16225
 
16825 efrain 16226
  .wd-xs-75-f {
16227
    width: 75px !important;
16228
  }
16848 stevensc 16229
 
16825 efrain 16230
  .wd-xs-75p-f {
16231
    width: 75% !important;
16232
  }
16848 stevensc 16233
 
16825 efrain 16234
  .mx-wd-xs-75p-f {
16235
    max-width: 75% !important;
16236
  }
16848 stevensc 16237
 
16825 efrain 16238
  .mn-wd-xs-75p-f {
16239
    min-width: 75% !important;
16240
  }
16848 stevensc 16241
 
16825 efrain 16242
  .wd-xs-80 {
16243
    width: 80px;
16244
  }
16848 stevensc 16245
 
16825 efrain 16246
  .wd-xs-80p {
16247
    width: 80%;
16248
  }
16848 stevensc 16249
 
16825 efrain 16250
  .mx-wd-xs-80p {
16251
    max-width: 80%;
16252
  }
16848 stevensc 16253
 
16825 efrain 16254
  .mn-wd-xs-80p {
16255
    min-width: 80%;
16256
  }
16848 stevensc 16257
 
16825 efrain 16258
  .wd-xs-80-f {
16259
    width: 80px !important;
16260
  }
16848 stevensc 16261
 
16825 efrain 16262
  .wd-xs-80p-f {
16263
    width: 80% !important;
16264
  }
16848 stevensc 16265
 
16825 efrain 16266
  .mx-wd-xs-80p-f {
16267
    max-width: 80% !important;
16268
  }
16848 stevensc 16269
 
16825 efrain 16270
  .mn-wd-xs-80p-f {
16271
    min-width: 80% !important;
16272
  }
16848 stevensc 16273
 
16825 efrain 16274
  .wd-xs-85 {
16275
    width: 85px;
16276
  }
16848 stevensc 16277
 
16825 efrain 16278
  .wd-xs-85p {
16279
    width: 85%;
16280
  }
16848 stevensc 16281
 
16825 efrain 16282
  .mx-wd-xs-85p {
16283
    max-width: 85%;
16284
  }
16848 stevensc 16285
 
16825 efrain 16286
  .mn-wd-xs-85p {
16287
    min-width: 85%;
16288
  }
16848 stevensc 16289
 
16825 efrain 16290
  .wd-xs-85-f {
16291
    width: 85px !important;
16292
  }
16848 stevensc 16293
 
16825 efrain 16294
  .wd-xs-85p-f {
16295
    width: 85% !important;
16296
  }
16848 stevensc 16297
 
16825 efrain 16298
  .mx-wd-xs-85p-f {
16299
    max-width: 85% !important;
16300
  }
16848 stevensc 16301
 
16825 efrain 16302
  .mn-wd-xs-85p-f {
16303
    min-width: 85% !important;
16304
  }
16848 stevensc 16305
 
16825 efrain 16306
  .wd-xs-90 {
16307
    width: 90px;
16308
  }
16848 stevensc 16309
 
16825 efrain 16310
  .wd-xs-90p {
16311
    width: 90%;
16312
  }
16848 stevensc 16313
 
16825 efrain 16314
  .mx-wd-xs-90p {
16315
    max-width: 90%;
16316
  }
16848 stevensc 16317
 
16825 efrain 16318
  .mn-wd-xs-90p {
16319
    min-width: 90%;
16320
  }
16848 stevensc 16321
 
16825 efrain 16322
  .wd-xs-90-f {
16323
    width: 90px !important;
16324
  }
16848 stevensc 16325
 
16825 efrain 16326
  .wd-xs-90p-f {
16327
    width: 90% !important;
16328
  }
16848 stevensc 16329
 
16825 efrain 16330
  .mx-wd-xs-90p-f {
16331
    max-width: 90% !important;
16332
  }
16848 stevensc 16333
 
16825 efrain 16334
  .mn-wd-xs-90p-f {
16335
    min-width: 90% !important;
16336
  }
16848 stevensc 16337
 
16825 efrain 16338
  .wd-xs-95 {
16339
    width: 95px;
16340
  }
16848 stevensc 16341
 
16825 efrain 16342
  .wd-xs-95p {
16343
    width: 95%;
16344
  }
16848 stevensc 16345
 
16825 efrain 16346
  .mx-wd-xs-95p {
16347
    max-width: 95%;
16348
  }
16848 stevensc 16349
 
16825 efrain 16350
  .mn-wd-xs-95p {
16351
    min-width: 95%;
16352
  }
16848 stevensc 16353
 
16825 efrain 16354
  .wd-xs-95-f {
16355
    width: 95px !important;
16356
  }
16848 stevensc 16357
 
16825 efrain 16358
  .wd-xs-95p-f {
16359
    width: 95% !important;
16360
  }
16848 stevensc 16361
 
16825 efrain 16362
  .mx-wd-xs-95p-f {
16363
    max-width: 95% !important;
16364
  }
16848 stevensc 16365
 
16825 efrain 16366
  .mn-wd-xs-95p-f {
16367
    min-width: 95% !important;
16368
  }
16848 stevensc 16369
 
16825 efrain 16370
  .wd-xs-100 {
16371
    width: 100px;
16372
  }
16848 stevensc 16373
 
16825 efrain 16374
  .wd-xs-100p {
16375
    width: 100%;
16376
  }
16848 stevensc 16377
 
16825 efrain 16378
  .mx-wd-xs-100p {
16379
    max-width: 100%;
16380
  }
16848 stevensc 16381
 
16825 efrain 16382
  .mn-wd-xs-100p {
16383
    min-width: 100%;
16384
  }
16848 stevensc 16385
 
16825 efrain 16386
  .wd-xs-100-f {
16387
    width: 100px !important;
16388
  }
16848 stevensc 16389
 
16825 efrain 16390
  .wd-xs-100p-f {
16391
    width: 100% !important;
16392
  }
16848 stevensc 16393
 
16825 efrain 16394
  .mx-wd-xs-100p-f {
16395
    max-width: 100% !important;
16396
  }
16848 stevensc 16397
 
16825 efrain 16398
  .mn-wd-xs-100p-f {
16399
    min-width: 100% !important;
16400
  }
16848 stevensc 16401
 
16825 efrain 16402
  .wd-xs-150 {
16403
    width: 150px;
16404
  }
16848 stevensc 16405
 
16825 efrain 16406
  .wd-xs-150p {
16407
    width: 150%;
16408
  }
16848 stevensc 16409
 
16825 efrain 16410
  .mx-wd-xs-150p {
16411
    max-width: 150%;
16412
  }
16848 stevensc 16413
 
16825 efrain 16414
  .mn-wd-xs-150p {
16415
    min-width: 150%;
16416
  }
16848 stevensc 16417
 
16825 efrain 16418
  .wd-xs-150-f {
16419
    width: 150px !important;
16420
  }
16848 stevensc 16421
 
16825 efrain 16422
  .wd-xs-150p-f {
16423
    width: 150% !important;
16424
  }
16848 stevensc 16425
 
16825 efrain 16426
  .mx-wd-xs-150p-f {
16427
    max-width: 150% !important;
16428
  }
16848 stevensc 16429
 
16825 efrain 16430
  .mn-wd-xs-150p-f {
16431
    min-width: 150% !important;
16432
  }
16848 stevensc 16433
 
16825 efrain 16434
  .wd-xs-200 {
16435
    width: 200px;
16436
  }
16848 stevensc 16437
 
16825 efrain 16438
  .wd-xs-200p {
16439
    width: 200%;
16440
  }
16848 stevensc 16441
 
16825 efrain 16442
  .mx-wd-xs-200p {
16443
    max-width: 200%;
16444
  }
16848 stevensc 16445
 
16825 efrain 16446
  .mn-wd-xs-200p {
16447
    min-width: 200%;
16448
  }
16848 stevensc 16449
 
16825 efrain 16450
  .wd-xs-200-f {
16451
    width: 200px !important;
16452
  }
16848 stevensc 16453
 
16825 efrain 16454
  .wd-xs-200p-f {
16455
    width: 200% !important;
16456
  }
16848 stevensc 16457
 
16825 efrain 16458
  .mx-wd-xs-200p-f {
16459
    max-width: 200% !important;
16460
  }
16848 stevensc 16461
 
16825 efrain 16462
  .mn-wd-xs-200p-f {
16463
    min-width: 200% !important;
16464
  }
16848 stevensc 16465
 
16825 efrain 16466
  .wd-xs-250 {
16467
    width: 250px;
16468
  }
16848 stevensc 16469
 
16825 efrain 16470
  .wd-xs-250p {
16471
    width: 250%;
16472
  }
16848 stevensc 16473
 
16825 efrain 16474
  .mx-wd-xs-250p {
16475
    max-width: 250%;
16476
  }
16848 stevensc 16477
 
16825 efrain 16478
  .mn-wd-xs-250p {
16479
    min-width: 250%;
16480
  }
16848 stevensc 16481
 
16825 efrain 16482
  .wd-xs-250-f {
16483
    width: 250px !important;
16484
  }
16848 stevensc 16485
 
16825 efrain 16486
  .wd-xs-250p-f {
16487
    width: 250% !important;
16488
  }
16848 stevensc 16489
 
16825 efrain 16490
  .mx-wd-xs-250p-f {
16491
    max-width: 250% !important;
16492
  }
16848 stevensc 16493
 
16825 efrain 16494
  .mn-wd-xs-250p-f {
16495
    min-width: 250% !important;
16496
  }
16848 stevensc 16497
 
16825 efrain 16498
  .wd-xs-300 {
16499
    width: 300px;
16500
  }
16848 stevensc 16501
 
16825 efrain 16502
  .wd-xs-300p {
16503
    width: 300%;
16504
  }
16848 stevensc 16505
 
16825 efrain 16506
  .mx-wd-xs-300p {
16507
    max-width: 300%;
16508
  }
16848 stevensc 16509
 
16825 efrain 16510
  .mn-wd-xs-300p {
16511
    min-width: 300%;
16512
  }
16848 stevensc 16513
 
16825 efrain 16514
  .wd-xs-300-f {
16515
    width: 300px !important;
16516
  }
16848 stevensc 16517
 
16825 efrain 16518
  .wd-xs-300p-f {
16519
    width: 300% !important;
16520
  }
16848 stevensc 16521
 
16825 efrain 16522
  .mx-wd-xs-300p-f {
16523
    max-width: 300% !important;
16524
  }
16848 stevensc 16525
 
16825 efrain 16526
  .mn-wd-xs-300p-f {
16527
    min-width: 300% !important;
16528
  }
16848 stevensc 16529
 
16825 efrain 16530
  .wd-xs-350 {
16531
    width: 350px;
16532
  }
16848 stevensc 16533
 
16825 efrain 16534
  .wd-xs-350p {
16535
    width: 350%;
16536
  }
16848 stevensc 16537
 
16825 efrain 16538
  .mx-wd-xs-350p {
16539
    max-width: 350%;
16540
  }
16848 stevensc 16541
 
16825 efrain 16542
  .mn-wd-xs-350p {
16543
    min-width: 350%;
16544
  }
16848 stevensc 16545
 
16825 efrain 16546
  .wd-xs-350-f {
16547
    width: 350px !important;
16548
  }
16848 stevensc 16549
 
16825 efrain 16550
  .wd-xs-350p-f {
16551
    width: 350% !important;
16552
  }
16848 stevensc 16553
 
16825 efrain 16554
  .mx-wd-xs-350p-f {
16555
    max-width: 350% !important;
16556
  }
16848 stevensc 16557
 
16825 efrain 16558
  .mn-wd-xs-350p-f {
16559
    min-width: 350% !important;
16560
  }
16848 stevensc 16561
 
16825 efrain 16562
  .wd-xs-400 {
16563
    width: 400px;
16564
  }
16848 stevensc 16565
 
16825 efrain 16566
  .wd-xs-400p {
16567
    width: 400%;
16568
  }
16848 stevensc 16569
 
16825 efrain 16570
  .mx-wd-xs-400p {
16571
    max-width: 400%;
16572
  }
16848 stevensc 16573
 
16825 efrain 16574
  .mn-wd-xs-400p {
16575
    min-width: 400%;
16576
  }
16848 stevensc 16577
 
16825 efrain 16578
  .wd-xs-400-f {
16579
    width: 400px !important;
16580
  }
16848 stevensc 16581
 
16825 efrain 16582
  .wd-xs-400p-f {
16583
    width: 400% !important;
16584
  }
16848 stevensc 16585
 
16825 efrain 16586
  .mx-wd-xs-400p-f {
16587
    max-width: 400% !important;
16588
  }
16848 stevensc 16589
 
16825 efrain 16590
  .mn-wd-xs-400p-f {
16591
    min-width: 400% !important;
16592
  }
16848 stevensc 16593
 
16825 efrain 16594
  .wd-xs-450 {
16595
    width: 450px;
16596
  }
16848 stevensc 16597
 
16825 efrain 16598
  .wd-xs-450p {
16599
    width: 450%;
16600
  }
16848 stevensc 16601
 
16825 efrain 16602
  .mx-wd-xs-450p {
16603
    max-width: 450%;
16604
  }
16848 stevensc 16605
 
16825 efrain 16606
  .mn-wd-xs-450p {
16607
    min-width: 450%;
16608
  }
16848 stevensc 16609
 
16825 efrain 16610
  .wd-xs-450-f {
16611
    width: 450px !important;
16612
  }
16848 stevensc 16613
 
16825 efrain 16614
  .wd-xs-450p-f {
16615
    width: 450% !important;
16616
  }
16848 stevensc 16617
 
16825 efrain 16618
  .mx-wd-xs-450p-f {
16619
    max-width: 450% !important;
16620
  }
16848 stevensc 16621
 
16825 efrain 16622
  .mn-wd-xs-450p-f {
16623
    min-width: 450% !important;
16624
  }
16848 stevensc 16625
 
16825 efrain 16626
  .wd-xs-500 {
16627
    width: 500px;
16628
  }
16848 stevensc 16629
 
16825 efrain 16630
  .wd-xs-500p {
16631
    width: 500%;
16632
  }
16848 stevensc 16633
 
16825 efrain 16634
  .mx-wd-xs-500p {
16635
    max-width: 500%;
16636
  }
16848 stevensc 16637
 
16825 efrain 16638
  .mn-wd-xs-500p {
16639
    min-width: 500%;
16640
  }
16848 stevensc 16641
 
16825 efrain 16642
  .wd-xs-500-f {
16643
    width: 500px !important;
16644
  }
16848 stevensc 16645
 
16825 efrain 16646
  .wd-xs-500p-f {
16647
    width: 500% !important;
16648
  }
16848 stevensc 16649
 
16825 efrain 16650
  .mx-wd-xs-500p-f {
16651
    max-width: 500% !important;
16652
  }
16848 stevensc 16653
 
16825 efrain 16654
  .mn-wd-xs-500p-f {
16655
    min-width: 500% !important;
16656
  }
16848 stevensc 16657
 
16825 efrain 16658
  .wd-xs-550 {
16659
    width: 550px;
16660
  }
16848 stevensc 16661
 
16825 efrain 16662
  .wd-xs-550p {
16663
    width: 550%;
16664
  }
16848 stevensc 16665
 
16825 efrain 16666
  .mx-wd-xs-550p {
16667
    max-width: 550%;
16668
  }
16848 stevensc 16669
 
16825 efrain 16670
  .mn-wd-xs-550p {
16671
    min-width: 550%;
16672
  }
16848 stevensc 16673
 
16825 efrain 16674
  .wd-xs-550-f {
16675
    width: 550px !important;
16676
  }
16848 stevensc 16677
 
16825 efrain 16678
  .wd-xs-550p-f {
16679
    width: 550% !important;
16680
  }
16848 stevensc 16681
 
16825 efrain 16682
  .mx-wd-xs-550p-f {
16683
    max-width: 550% !important;
16684
  }
16848 stevensc 16685
 
16825 efrain 16686
  .mn-wd-xs-550p-f {
16687
    min-width: 550% !important;
16688
  }
16848 stevensc 16689
 
16825 efrain 16690
  .wd-xs-600 {
16691
    width: 600px;
16692
  }
16848 stevensc 16693
 
16825 efrain 16694
  .wd-xs-600p {
16695
    width: 600%;
16696
  }
16848 stevensc 16697
 
16825 efrain 16698
  .mx-wd-xs-600p {
16699
    max-width: 600%;
16700
  }
16848 stevensc 16701
 
16825 efrain 16702
  .mn-wd-xs-600p {
16703
    min-width: 600%;
16704
  }
16848 stevensc 16705
 
16825 efrain 16706
  .wd-xs-600-f {
16707
    width: 600px !important;
16708
  }
16848 stevensc 16709
 
16825 efrain 16710
  .wd-xs-600p-f {
16711
    width: 600% !important;
16712
  }
16848 stevensc 16713
 
16825 efrain 16714
  .mx-wd-xs-600p-f {
16715
    max-width: 600% !important;
16716
  }
16848 stevensc 16717
 
16825 efrain 16718
  .mn-wd-xs-600p-f {
16719
    min-width: 600% !important;
16720
  }
16848 stevensc 16721
 
16825 efrain 16722
  .wd-xs-650 {
16723
    width: 650px;
16724
  }
16848 stevensc 16725
 
16825 efrain 16726
  .wd-xs-650p {
16727
    width: 650%;
16728
  }
16848 stevensc 16729
 
16825 efrain 16730
  .mx-wd-xs-650p {
16731
    max-width: 650%;
16732
  }
16848 stevensc 16733
 
16825 efrain 16734
  .mn-wd-xs-650p {
16735
    min-width: 650%;
16736
  }
16848 stevensc 16737
 
16825 efrain 16738
  .wd-xs-650-f {
16739
    width: 650px !important;
16740
  }
16848 stevensc 16741
 
16825 efrain 16742
  .wd-xs-650p-f {
16743
    width: 650% !important;
16744
  }
16848 stevensc 16745
 
16825 efrain 16746
  .mx-wd-xs-650p-f {
16747
    max-width: 650% !important;
16748
  }
16848 stevensc 16749
 
16825 efrain 16750
  .mn-wd-xs-650p-f {
16751
    min-width: 650% !important;
16752
  }
16848 stevensc 16753
 
16825 efrain 16754
  .wd-xs-700 {
16755
    width: 700px;
16756
  }
16848 stevensc 16757
 
16825 efrain 16758
  .wd-xs-700p {
16759
    width: 700%;
16760
  }
16848 stevensc 16761
 
16825 efrain 16762
  .mx-wd-xs-700p {
16763
    max-width: 700%;
16764
  }
16848 stevensc 16765
 
16825 efrain 16766
  .mn-wd-xs-700p {
16767
    min-width: 700%;
16768
  }
16848 stevensc 16769
 
16825 efrain 16770
  .wd-xs-700-f {
16771
    width: 700px !important;
16772
  }
16848 stevensc 16773
 
16825 efrain 16774
  .wd-xs-700p-f {
16775
    width: 700% !important;
16776
  }
16848 stevensc 16777
 
16825 efrain 16778
  .mx-wd-xs-700p-f {
16779
    max-width: 700% !important;
16780
  }
16848 stevensc 16781
 
16825 efrain 16782
  .mn-wd-xs-700p-f {
16783
    min-width: 700% !important;
16784
  }
16848 stevensc 16785
 
16825 efrain 16786
  .wd-xs-750 {
16787
    width: 750px;
16788
  }
16848 stevensc 16789
 
16825 efrain 16790
  .wd-xs-750p {
16791
    width: 750%;
16792
  }
16848 stevensc 16793
 
16825 efrain 16794
  .mx-wd-xs-750p {
16795
    max-width: 750%;
16796
  }
16848 stevensc 16797
 
16825 efrain 16798
  .mn-wd-xs-750p {
16799
    min-width: 750%;
16800
  }
16848 stevensc 16801
 
16825 efrain 16802
  .wd-xs-750-f {
16803
    width: 750px !important;
16804
  }
16848 stevensc 16805
 
16825 efrain 16806
  .wd-xs-750p-f {
16807
    width: 750% !important;
16808
  }
16848 stevensc 16809
 
16825 efrain 16810
  .mx-wd-xs-750p-f {
16811
    max-width: 750% !important;
16812
  }
16848 stevensc 16813
 
16825 efrain 16814
  .mn-wd-xs-750p-f {
16815
    min-width: 750% !important;
16816
  }
16848 stevensc 16817
 
16825 efrain 16818
  .wd-xs-800 {
16819
    width: 800px;
16820
  }
16848 stevensc 16821
 
16825 efrain 16822
  .wd-xs-800p {
16823
    width: 800%;
16824
  }
16848 stevensc 16825
 
16825 efrain 16826
  .mx-wd-xs-800p {
16827
    max-width: 800%;
16828
  }
16848 stevensc 16829
 
16825 efrain 16830
  .mn-wd-xs-800p {
16831
    min-width: 800%;
16832
  }
16848 stevensc 16833
 
16825 efrain 16834
  .wd-xs-800-f {
16835
    width: 800px !important;
16836
  }
16848 stevensc 16837
 
16825 efrain 16838
  .wd-xs-800p-f {
16839
    width: 800% !important;
16840
  }
16848 stevensc 16841
 
16825 efrain 16842
  .mx-wd-xs-800p-f {
16843
    max-width: 800% !important;
16844
  }
16848 stevensc 16845
 
16825 efrain 16846
  .mn-wd-xs-800p-f {
16847
    min-width: 800% !important;
16848
  }
16848 stevensc 16849
 
16825 efrain 16850
  .wd-xs-850 {
16851
    width: 850px;
16852
  }
16848 stevensc 16853
 
16825 efrain 16854
  .wd-xs-850p {
16855
    width: 850%;
16856
  }
16848 stevensc 16857
 
16825 efrain 16858
  .mx-wd-xs-850p {
16859
    max-width: 850%;
16860
  }
16848 stevensc 16861
 
16825 efrain 16862
  .mn-wd-xs-850p {
16863
    min-width: 850%;
16864
  }
16848 stevensc 16865
 
16825 efrain 16866
  .wd-xs-850-f {
16867
    width: 850px !important;
16868
  }
16848 stevensc 16869
 
16825 efrain 16870
  .wd-xs-850p-f {
16871
    width: 850% !important;
16872
  }
16848 stevensc 16873
 
16825 efrain 16874
  .mx-wd-xs-850p-f {
16875
    max-width: 850% !important;
16876
  }
16848 stevensc 16877
 
16825 efrain 16878
  .mn-wd-xs-850p-f {
16879
    min-width: 850% !important;
16880
  }
16848 stevensc 16881
 
16825 efrain 16882
  .wd-xs-900 {
16883
    width: 900px;
16884
  }
16848 stevensc 16885
 
16825 efrain 16886
  .wd-xs-900p {
16887
    width: 900%;
16888
  }
16848 stevensc 16889
 
16825 efrain 16890
  .mx-wd-xs-900p {
16891
    max-width: 900%;
16892
  }
16848 stevensc 16893
 
16825 efrain 16894
  .mn-wd-xs-900p {
16895
    min-width: 900%;
16896
  }
16848 stevensc 16897
 
16825 efrain 16898
  .wd-xs-900-f {
16899
    width: 900px !important;
16900
  }
16848 stevensc 16901
 
16825 efrain 16902
  .wd-xs-900p-f {
16903
    width: 900% !important;
16904
  }
16848 stevensc 16905
 
16825 efrain 16906
  .mx-wd-xs-900p-f {
16907
    max-width: 900% !important;
16908
  }
16848 stevensc 16909
 
16825 efrain 16910
  .mn-wd-xs-900p-f {
16911
    min-width: 900% !important;
16912
  }
16848 stevensc 16913
 
16825 efrain 16914
  .wd-xs-950 {
16915
    width: 950px;
16916
  }
16848 stevensc 16917
 
16825 efrain 16918
  .wd-xs-950p {
16919
    width: 950%;
16920
  }
16848 stevensc 16921
 
16825 efrain 16922
  .mx-wd-xs-950p {
16923
    max-width: 950%;
16924
  }
16848 stevensc 16925
 
16825 efrain 16926
  .mn-wd-xs-950p {
16927
    min-width: 950%;
16928
  }
16848 stevensc 16929
 
16825 efrain 16930
  .wd-xs-950-f {
16931
    width: 950px !important;
16932
  }
16848 stevensc 16933
 
16825 efrain 16934
  .wd-xs-950p-f {
16935
    width: 950% !important;
16936
  }
16848 stevensc 16937
 
16825 efrain 16938
  .mx-wd-xs-950p-f {
16939
    max-width: 950% !important;
16940
  }
16848 stevensc 16941
 
16825 efrain 16942
  .mn-wd-xs-950p-f {
16943
    min-width: 950% !important;
16944
  }
16848 stevensc 16945
 
16825 efrain 16946
  .wd-xs-1000 {
16947
    width: 1000px;
16948
  }
16848 stevensc 16949
 
16825 efrain 16950
  .wd-xs-1000p {
16951
    width: 1000%;
16952
  }
16848 stevensc 16953
 
16825 efrain 16954
  .mx-wd-xs-1000p {
16955
    max-width: 1000%;
16956
  }
16848 stevensc 16957
 
16825 efrain 16958
  .mn-wd-xs-1000p {
16959
    min-width: 1000%;
16960
  }
16848 stevensc 16961
 
16825 efrain 16962
  .wd-xs-1000-f {
16963
    width: 1000px !important;
16964
  }
16848 stevensc 16965
 
16825 efrain 16966
  .wd-xs-1000p-f {
16967
    width: 1000% !important;
16968
  }
16848 stevensc 16969
 
16825 efrain 16970
  .mx-wd-xs-1000p-f {
16971
    max-width: 1000% !important;
16972
  }
16848 stevensc 16973
 
16825 efrain 16974
  .mn-wd-xs-1000p-f {
16975
    min-width: 1000% !important;
16976
  }
16848 stevensc 16977
 
16825 efrain 16978
  .wd-xs-auto {
16979
    width: auto;
16980
  }
16848 stevensc 16981
 
16825 efrain 16982
  .wd-xs-auto-f {
16983
    width: auto !important;
16984
  }
16985
}
16848 stevensc 16986
 
16825 efrain 16987
@media (min-width: 576px) {
16988
  .wd-sm-5 {
16989
    width: 5px;
16990
  }
16848 stevensc 16991
 
16825 efrain 16992
  .wd-sm-5p {
16993
    width: 5%;
16994
  }
16848 stevensc 16995
 
16825 efrain 16996
  .mx-wd-sm-5p {
16997
    max-width: 5%;
16998
  }
16848 stevensc 16999
 
16825 efrain 17000
  .mn-wd-sm-5p {
17001
    min-width: 5%;
17002
  }
16848 stevensc 17003
 
16825 efrain 17004
  .wd-sm-5-f {
17005
    width: 5px !important;
17006
  }
16848 stevensc 17007
 
16825 efrain 17008
  .wd-sm-5p-f {
17009
    width: 5% !important;
17010
  }
16848 stevensc 17011
 
16825 efrain 17012
  .mx-wd-sm-5p-f {
17013
    max-width: 5% !important;
17014
  }
16848 stevensc 17015
 
16825 efrain 17016
  .mn-wd-sm-5p-f {
17017
    min-width: 5% !important;
17018
  }
16848 stevensc 17019
 
16825 efrain 17020
  .wd-sm-10 {
17021
    width: 10px;
17022
  }
16848 stevensc 17023
 
16825 efrain 17024
  .wd-sm-10p {
17025
    width: 10%;
17026
  }
16848 stevensc 17027
 
16825 efrain 17028
  .mx-wd-sm-10p {
17029
    max-width: 10%;
17030
  }
16848 stevensc 17031
 
16825 efrain 17032
  .mn-wd-sm-10p {
17033
    min-width: 10%;
17034
  }
16848 stevensc 17035
 
16825 efrain 17036
  .wd-sm-10-f {
17037
    width: 10px !important;
17038
  }
16848 stevensc 17039
 
16825 efrain 17040
  .wd-sm-10p-f {
17041
    width: 10% !important;
17042
  }
16848 stevensc 17043
 
16825 efrain 17044
  .mx-wd-sm-10p-f {
17045
    max-width: 10% !important;
17046
  }
16848 stevensc 17047
 
16825 efrain 17048
  .mn-wd-sm-10p-f {
17049
    min-width: 10% !important;
17050
  }
16848 stevensc 17051
 
16825 efrain 17052
  .wd-sm-15 {
17053
    width: 15px;
17054
  }
16848 stevensc 17055
 
16825 efrain 17056
  .wd-sm-15p {
17057
    width: 15%;
17058
  }
16848 stevensc 17059
 
16825 efrain 17060
  .mx-wd-sm-15p {
17061
    max-width: 15%;
17062
  }
16848 stevensc 17063
 
16825 efrain 17064
  .mn-wd-sm-15p {
17065
    min-width: 15%;
17066
  }
16848 stevensc 17067
 
16825 efrain 17068
  .wd-sm-15-f {
17069
    width: 15px !important;
17070
  }
16848 stevensc 17071
 
16825 efrain 17072
  .wd-sm-15p-f {
17073
    width: 15% !important;
17074
  }
16848 stevensc 17075
 
16825 efrain 17076
  .mx-wd-sm-15p-f {
17077
    max-width: 15% !important;
17078
  }
16848 stevensc 17079
 
16825 efrain 17080
  .mn-wd-sm-15p-f {
17081
    min-width: 15% !important;
17082
  }
16848 stevensc 17083
 
16825 efrain 17084
  .wd-sm-20 {
17085
    width: 20px;
17086
  }
16848 stevensc 17087
 
16825 efrain 17088
  .wd-sm-20p {
17089
    width: 20%;
17090
  }
16848 stevensc 17091
 
16825 efrain 17092
  .mx-wd-sm-20p {
17093
    max-width: 20%;
17094
  }
16848 stevensc 17095
 
16825 efrain 17096
  .mn-wd-sm-20p {
17097
    min-width: 20%;
17098
  }
16848 stevensc 17099
 
16825 efrain 17100
  .wd-sm-20-f {
17101
    width: 20px !important;
17102
  }
16848 stevensc 17103
 
16825 efrain 17104
  .wd-sm-20p-f {
17105
    width: 20% !important;
17106
  }
16848 stevensc 17107
 
16825 efrain 17108
  .mx-wd-sm-20p-f {
17109
    max-width: 20% !important;
17110
  }
16848 stevensc 17111
 
16825 efrain 17112
  .mn-wd-sm-20p-f {
17113
    min-width: 20% !important;
17114
  }
16848 stevensc 17115
 
16825 efrain 17116
  .wd-sm-25 {
17117
    width: 25px;
17118
  }
16848 stevensc 17119
 
16825 efrain 17120
  .wd-sm-25p {
17121
    width: 25%;
17122
  }
16848 stevensc 17123
 
16825 efrain 17124
  .mx-wd-sm-25p {
17125
    max-width: 25%;
17126
  }
16848 stevensc 17127
 
16825 efrain 17128
  .mn-wd-sm-25p {
17129
    min-width: 25%;
17130
  }
16848 stevensc 17131
 
16825 efrain 17132
  .wd-sm-25-f {
17133
    width: 25px !important;
17134
  }
16848 stevensc 17135
 
16825 efrain 17136
  .wd-sm-25p-f {
17137
    width: 25% !important;
17138
  }
16848 stevensc 17139
 
16825 efrain 17140
  .mx-wd-sm-25p-f {
17141
    max-width: 25% !important;
17142
  }
16848 stevensc 17143
 
16825 efrain 17144
  .mn-wd-sm-25p-f {
17145
    min-width: 25% !important;
17146
  }
16848 stevensc 17147
 
16825 efrain 17148
  .wd-sm-30 {
17149
    width: 30px;
17150
  }
16848 stevensc 17151
 
16825 efrain 17152
  .wd-sm-30p {
17153
    width: 30%;
17154
  }
16848 stevensc 17155
 
16825 efrain 17156
  .mx-wd-sm-30p {
17157
    max-width: 30%;
17158
  }
16848 stevensc 17159
 
16825 efrain 17160
  .mn-wd-sm-30p {
17161
    min-width: 30%;
17162
  }
16848 stevensc 17163
 
16825 efrain 17164
  .wd-sm-30-f {
17165
    width: 30px !important;
17166
  }
16848 stevensc 17167
 
16825 efrain 17168
  .wd-sm-30p-f {
17169
    width: 30% !important;
17170
  }
16848 stevensc 17171
 
16825 efrain 17172
  .mx-wd-sm-30p-f {
17173
    max-width: 30% !important;
17174
  }
16848 stevensc 17175
 
16825 efrain 17176
  .mn-wd-sm-30p-f {
17177
    min-width: 30% !important;
17178
  }
16848 stevensc 17179
 
16825 efrain 17180
  .wd-sm-35 {
17181
    width: 35px;
17182
  }
16848 stevensc 17183
 
16825 efrain 17184
  .wd-sm-35p {
17185
    width: 35%;
17186
  }
16848 stevensc 17187
 
16825 efrain 17188
  .mx-wd-sm-35p {
17189
    max-width: 35%;
17190
  }
16848 stevensc 17191
 
16825 efrain 17192
  .mn-wd-sm-35p {
17193
    min-width: 35%;
17194
  }
16848 stevensc 17195
 
16825 efrain 17196
  .wd-sm-35-f {
17197
    width: 35px !important;
17198
  }
16848 stevensc 17199
 
16825 efrain 17200
  .wd-sm-35p-f {
17201
    width: 35% !important;
17202
  }
16848 stevensc 17203
 
16825 efrain 17204
  .mx-wd-sm-35p-f {
17205
    max-width: 35% !important;
17206
  }
16848 stevensc 17207
 
16825 efrain 17208
  .mn-wd-sm-35p-f {
17209
    min-width: 35% !important;
17210
  }
16848 stevensc 17211
 
16825 efrain 17212
  .wd-sm-40 {
17213
    width: 40px;
17214
  }
16848 stevensc 17215
 
16825 efrain 17216
  .wd-sm-40p {
17217
    width: 40%;
17218
  }
16848 stevensc 17219
 
16825 efrain 17220
  .mx-wd-sm-40p {
17221
    max-width: 40%;
17222
  }
16848 stevensc 17223
 
16825 efrain 17224
  .mn-wd-sm-40p {
17225
    min-width: 40%;
17226
  }
16848 stevensc 17227
 
16825 efrain 17228
  .wd-sm-40-f {
17229
    width: 40px !important;
17230
  }
16848 stevensc 17231
 
16825 efrain 17232
  .wd-sm-40p-f {
17233
    width: 40% !important;
17234
  }
16848 stevensc 17235
 
16825 efrain 17236
  .mx-wd-sm-40p-f {
17237
    max-width: 40% !important;
17238
  }
16848 stevensc 17239
 
16825 efrain 17240
  .mn-wd-sm-40p-f {
17241
    min-width: 40% !important;
17242
  }
16848 stevensc 17243
 
16825 efrain 17244
  .wd-sm-45 {
17245
    width: 45px;
17246
  }
16848 stevensc 17247
 
16825 efrain 17248
  .wd-sm-45p {
17249
    width: 45%;
17250
  }
16848 stevensc 17251
 
16825 efrain 17252
  .mx-wd-sm-45p {
17253
    max-width: 45%;
17254
  }
16848 stevensc 17255
 
16825 efrain 17256
  .mn-wd-sm-45p {
17257
    min-width: 45%;
17258
  }
16848 stevensc 17259
 
16825 efrain 17260
  .wd-sm-45-f {
17261
    width: 45px !important;
17262
  }
16848 stevensc 17263
 
16825 efrain 17264
  .wd-sm-45p-f {
17265
    width: 45% !important;
17266
  }
16848 stevensc 17267
 
16825 efrain 17268
  .mx-wd-sm-45p-f {
17269
    max-width: 45% !important;
17270
  }
16848 stevensc 17271
 
16825 efrain 17272
  .mn-wd-sm-45p-f {
17273
    min-width: 45% !important;
17274
  }
16848 stevensc 17275
 
16825 efrain 17276
  .wd-sm-50 {
17277
    width: 50px;
17278
  }
16848 stevensc 17279
 
16825 efrain 17280
  .wd-sm-50p {
17281
    width: 50%;
17282
  }
16848 stevensc 17283
 
16825 efrain 17284
  .mx-wd-sm-50p {
17285
    max-width: 50%;
17286
  }
16848 stevensc 17287
 
16825 efrain 17288
  .mn-wd-sm-50p {
17289
    min-width: 50%;
17290
  }
16848 stevensc 17291
 
16825 efrain 17292
  .wd-sm-50-f {
17293
    width: 50px !important;
17294
  }
16848 stevensc 17295
 
16825 efrain 17296
  .wd-sm-50p-f {
17297
    width: 50% !important;
17298
  }
16848 stevensc 17299
 
16825 efrain 17300
  .mx-wd-sm-50p-f {
17301
    max-width: 50% !important;
17302
  }
16848 stevensc 17303
 
16825 efrain 17304
  .mn-wd-sm-50p-f {
17305
    min-width: 50% !important;
17306
  }
16848 stevensc 17307
 
16825 efrain 17308
  .wd-sm-55 {
17309
    width: 55px;
17310
  }
16848 stevensc 17311
 
16825 efrain 17312
  .wd-sm-55p {
17313
    width: 55%;
17314
  }
16848 stevensc 17315
 
16825 efrain 17316
  .mx-wd-sm-55p {
17317
    max-width: 55%;
17318
  }
16848 stevensc 17319
 
16825 efrain 17320
  .mn-wd-sm-55p {
17321
    min-width: 55%;
17322
  }
16848 stevensc 17323
 
16825 efrain 17324
  .wd-sm-55-f {
17325
    width: 55px !important;
17326
  }
16848 stevensc 17327
 
16825 efrain 17328
  .wd-sm-55p-f {
17329
    width: 55% !important;
17330
  }
16848 stevensc 17331
 
16825 efrain 17332
  .mx-wd-sm-55p-f {
17333
    max-width: 55% !important;
17334
  }
16848 stevensc 17335
 
16825 efrain 17336
  .mn-wd-sm-55p-f {
17337
    min-width: 55% !important;
17338
  }
16848 stevensc 17339
 
16825 efrain 17340
  .wd-sm-60 {
17341
    width: 60px;
17342
  }
16848 stevensc 17343
 
16825 efrain 17344
  .wd-sm-60p {
17345
    width: 60%;
17346
  }
16848 stevensc 17347
 
16825 efrain 17348
  .mx-wd-sm-60p {
17349
    max-width: 60%;
17350
  }
16848 stevensc 17351
 
16825 efrain 17352
  .mn-wd-sm-60p {
17353
    min-width: 60%;
17354
  }
16848 stevensc 17355
 
16825 efrain 17356
  .wd-sm-60-f {
17357
    width: 60px !important;
17358
  }
16848 stevensc 17359
 
16825 efrain 17360
  .wd-sm-60p-f {
17361
    width: 60% !important;
17362
  }
16848 stevensc 17363
 
16825 efrain 17364
  .mx-wd-sm-60p-f {
17365
    max-width: 60% !important;
17366
  }
16848 stevensc 17367
 
16825 efrain 17368
  .mn-wd-sm-60p-f {
17369
    min-width: 60% !important;
17370
  }
16848 stevensc 17371
 
16825 efrain 17372
  .wd-sm-65 {
17373
    width: 65px;
17374
  }
16848 stevensc 17375
 
16825 efrain 17376
  .wd-sm-65p {
17377
    width: 65%;
17378
  }
16848 stevensc 17379
 
16825 efrain 17380
  .mx-wd-sm-65p {
17381
    max-width: 65%;
17382
  }
16848 stevensc 17383
 
16825 efrain 17384
  .mn-wd-sm-65p {
17385
    min-width: 65%;
17386
  }
16848 stevensc 17387
 
16825 efrain 17388
  .wd-sm-65-f {
17389
    width: 65px !important;
17390
  }
16848 stevensc 17391
 
16825 efrain 17392
  .wd-sm-65p-f {
17393
    width: 65% !important;
17394
  }
16848 stevensc 17395
 
16825 efrain 17396
  .mx-wd-sm-65p-f {
17397
    max-width: 65% !important;
17398
  }
16848 stevensc 17399
 
16825 efrain 17400
  .mn-wd-sm-65p-f {
17401
    min-width: 65% !important;
17402
  }
16848 stevensc 17403
 
16825 efrain 17404
  .wd-sm-70 {
17405
    width: 70px;
17406
  }
16848 stevensc 17407
 
16825 efrain 17408
  .wd-sm-70p {
17409
    width: 70%;
17410
  }
16848 stevensc 17411
 
16825 efrain 17412
  .mx-wd-sm-70p {
17413
    max-width: 70%;
17414
  }
16848 stevensc 17415
 
16825 efrain 17416
  .mn-wd-sm-70p {
17417
    min-width: 70%;
17418
  }
16848 stevensc 17419
 
16825 efrain 17420
  .wd-sm-70-f {
17421
    width: 70px !important;
17422
  }
16848 stevensc 17423
 
16825 efrain 17424
  .wd-sm-70p-f {
17425
    width: 70% !important;
17426
  }
16848 stevensc 17427
 
16825 efrain 17428
  .mx-wd-sm-70p-f {
17429
    max-width: 70% !important;
17430
  }
16848 stevensc 17431
 
16825 efrain 17432
  .mn-wd-sm-70p-f {
17433
    min-width: 70% !important;
17434
  }
16848 stevensc 17435
 
16825 efrain 17436
  .wd-sm-75 {
17437
    width: 75px;
17438
  }
16848 stevensc 17439
 
16825 efrain 17440
  .wd-sm-75p {
17441
    width: 75%;
17442
  }
16848 stevensc 17443
 
16825 efrain 17444
  .mx-wd-sm-75p {
17445
    max-width: 75%;
17446
  }
16848 stevensc 17447
 
16825 efrain 17448
  .mn-wd-sm-75p {
17449
    min-width: 75%;
17450
  }
16848 stevensc 17451
 
16825 efrain 17452
  .wd-sm-75-f {
17453
    width: 75px !important;
17454
  }
16848 stevensc 17455
 
16825 efrain 17456
  .wd-sm-75p-f {
17457
    width: 75% !important;
17458
  }
16848 stevensc 17459
 
16825 efrain 17460
  .mx-wd-sm-75p-f {
17461
    max-width: 75% !important;
17462
  }
16848 stevensc 17463
 
16825 efrain 17464
  .mn-wd-sm-75p-f {
17465
    min-width: 75% !important;
17466
  }
16848 stevensc 17467
 
16825 efrain 17468
  .wd-sm-80 {
17469
    width: 80px;
17470
  }
16848 stevensc 17471
 
16825 efrain 17472
  .wd-sm-80p {
17473
    width: 80%;
17474
  }
16848 stevensc 17475
 
16825 efrain 17476
  .mx-wd-sm-80p {
17477
    max-width: 80%;
17478
  }
16848 stevensc 17479
 
16825 efrain 17480
  .mn-wd-sm-80p {
17481
    min-width: 80%;
17482
  }
16848 stevensc 17483
 
16825 efrain 17484
  .wd-sm-80-f {
17485
    width: 80px !important;
17486
  }
16848 stevensc 17487
 
16825 efrain 17488
  .wd-sm-80p-f {
17489
    width: 80% !important;
17490
  }
16848 stevensc 17491
 
16825 efrain 17492
  .mx-wd-sm-80p-f {
17493
    max-width: 80% !important;
17494
  }
16848 stevensc 17495
 
16825 efrain 17496
  .mn-wd-sm-80p-f {
17497
    min-width: 80% !important;
17498
  }
16848 stevensc 17499
 
16825 efrain 17500
  .wd-sm-85 {
17501
    width: 85px;
17502
  }
16848 stevensc 17503
 
16825 efrain 17504
  .wd-sm-85p {
17505
    width: 85%;
17506
  }
16848 stevensc 17507
 
16825 efrain 17508
  .mx-wd-sm-85p {
17509
    max-width: 85%;
17510
  }
16848 stevensc 17511
 
16825 efrain 17512
  .mn-wd-sm-85p {
17513
    min-width: 85%;
17514
  }
16848 stevensc 17515
 
16825 efrain 17516
  .wd-sm-85-f {
17517
    width: 85px !important;
17518
  }
16848 stevensc 17519
 
16825 efrain 17520
  .wd-sm-85p-f {
17521
    width: 85% !important;
17522
  }
16848 stevensc 17523
 
16825 efrain 17524
  .mx-wd-sm-85p-f {
17525
    max-width: 85% !important;
17526
  }
16848 stevensc 17527
 
16825 efrain 17528
  .mn-wd-sm-85p-f {
17529
    min-width: 85% !important;
17530
  }
16848 stevensc 17531
 
16825 efrain 17532
  .wd-sm-90 {
17533
    width: 90px;
17534
  }
16848 stevensc 17535
 
16825 efrain 17536
  .wd-sm-90p {
17537
    width: 90%;
17538
  }
16848 stevensc 17539
 
16825 efrain 17540
  .mx-wd-sm-90p {
17541
    max-width: 90%;
17542
  }
16848 stevensc 17543
 
16825 efrain 17544
  .mn-wd-sm-90p {
17545
    min-width: 90%;
17546
  }
16848 stevensc 17547
 
16825 efrain 17548
  .wd-sm-90-f {
17549
    width: 90px !important;
17550
  }
16848 stevensc 17551
 
16825 efrain 17552
  .wd-sm-90p-f {
17553
    width: 90% !important;
17554
  }
16848 stevensc 17555
 
16825 efrain 17556
  .mx-wd-sm-90p-f {
17557
    max-width: 90% !important;
17558
  }
16848 stevensc 17559
 
16825 efrain 17560
  .mn-wd-sm-90p-f {
17561
    min-width: 90% !important;
17562
  }
16848 stevensc 17563
 
16825 efrain 17564
  .wd-sm-95 {
17565
    width: 95px;
17566
  }
16848 stevensc 17567
 
16825 efrain 17568
  .wd-sm-95p {
17569
    width: 95%;
17570
  }
16848 stevensc 17571
 
16825 efrain 17572
  .mx-wd-sm-95p {
17573
    max-width: 95%;
17574
  }
16848 stevensc 17575
 
16825 efrain 17576
  .mn-wd-sm-95p {
17577
    min-width: 95%;
17578
  }
16848 stevensc 17579
 
16825 efrain 17580
  .wd-sm-95-f {
17581
    width: 95px !important;
17582
  }
16848 stevensc 17583
 
16825 efrain 17584
  .wd-sm-95p-f {
17585
    width: 95% !important;
17586
  }
16848 stevensc 17587
 
16825 efrain 17588
  .mx-wd-sm-95p-f {
17589
    max-width: 95% !important;
17590
  }
16848 stevensc 17591
 
16825 efrain 17592
  .mn-wd-sm-95p-f {
17593
    min-width: 95% !important;
17594
  }
16848 stevensc 17595
 
16825 efrain 17596
  .wd-sm-100 {
17597
    width: 100px;
17598
  }
16848 stevensc 17599
 
16825 efrain 17600
  .wd-sm-100p {
17601
    width: 100%;
17602
  }
16848 stevensc 17603
 
16825 efrain 17604
  .mx-wd-sm-100p {
17605
    max-width: 100%;
17606
  }
16848 stevensc 17607
 
16825 efrain 17608
  .mn-wd-sm-100p {
17609
    min-width: 100%;
17610
  }
16848 stevensc 17611
 
16825 efrain 17612
  .wd-sm-100-f {
17613
    width: 100px !important;
17614
  }
16848 stevensc 17615
 
16825 efrain 17616
  .wd-sm-100p-f {
17617
    width: 100% !important;
17618
  }
16848 stevensc 17619
 
16825 efrain 17620
  .mx-wd-sm-100p-f {
17621
    max-width: 100% !important;
17622
  }
16848 stevensc 17623
 
16825 efrain 17624
  .mn-wd-sm-100p-f {
17625
    min-width: 100% !important;
17626
  }
16848 stevensc 17627
 
16825 efrain 17628
  .wd-sm-150 {
17629
    width: 150px;
17630
  }
16848 stevensc 17631
 
16825 efrain 17632
  .wd-sm-150p {
17633
    width: 150%;
17634
  }
16848 stevensc 17635
 
16825 efrain 17636
  .mx-wd-sm-150p {
17637
    max-width: 150%;
17638
  }
16848 stevensc 17639
 
16825 efrain 17640
  .mn-wd-sm-150p {
17641
    min-width: 150%;
17642
  }
16848 stevensc 17643
 
16825 efrain 17644
  .wd-sm-150-f {
17645
    width: 150px !important;
17646
  }
16848 stevensc 17647
 
16825 efrain 17648
  .wd-sm-150p-f {
17649
    width: 150% !important;
17650
  }
16848 stevensc 17651
 
16825 efrain 17652
  .mx-wd-sm-150p-f {
17653
    max-width: 150% !important;
17654
  }
16848 stevensc 17655
 
16825 efrain 17656
  .mn-wd-sm-150p-f {
17657
    min-width: 150% !important;
17658
  }
16848 stevensc 17659
 
16825 efrain 17660
  .wd-sm-200 {
17661
    width: 200px;
17662
  }
16848 stevensc 17663
 
16825 efrain 17664
  .wd-sm-200p {
17665
    width: 200%;
17666
  }
16848 stevensc 17667
 
16825 efrain 17668
  .mx-wd-sm-200p {
17669
    max-width: 200%;
17670
  }
16848 stevensc 17671
 
16825 efrain 17672
  .mn-wd-sm-200p {
17673
    min-width: 200%;
17674
  }
16848 stevensc 17675
 
16825 efrain 17676
  .wd-sm-200-f {
17677
    width: 200px !important;
17678
  }
16848 stevensc 17679
 
16825 efrain 17680
  .wd-sm-200p-f {
17681
    width: 200% !important;
17682
  }
16848 stevensc 17683
 
16825 efrain 17684
  .mx-wd-sm-200p-f {
17685
    max-width: 200% !important;
17686
  }
16848 stevensc 17687
 
16825 efrain 17688
  .mn-wd-sm-200p-f {
17689
    min-width: 200% !important;
17690
  }
16848 stevensc 17691
 
16825 efrain 17692
  .wd-sm-250 {
17693
    width: 250px;
17694
  }
16848 stevensc 17695
 
16825 efrain 17696
  .wd-sm-250p {
17697
    width: 250%;
17698
  }
16848 stevensc 17699
 
16825 efrain 17700
  .mx-wd-sm-250p {
17701
    max-width: 250%;
17702
  }
16848 stevensc 17703
 
16825 efrain 17704
  .mn-wd-sm-250p {
17705
    min-width: 250%;
17706
  }
16848 stevensc 17707
 
16825 efrain 17708
  .wd-sm-250-f {
17709
    width: 250px !important;
17710
  }
16848 stevensc 17711
 
16825 efrain 17712
  .wd-sm-250p-f {
17713
    width: 250% !important;
17714
  }
16848 stevensc 17715
 
16825 efrain 17716
  .mx-wd-sm-250p-f {
17717
    max-width: 250% !important;
17718
  }
16848 stevensc 17719
 
16825 efrain 17720
  .mn-wd-sm-250p-f {
17721
    min-width: 250% !important;
17722
  }
16848 stevensc 17723
 
16825 efrain 17724
  .wd-sm-300 {
17725
    width: 300px;
17726
  }
16848 stevensc 17727
 
16825 efrain 17728
  .wd-sm-300p {
17729
    width: 300%;
17730
  }
16848 stevensc 17731
 
16825 efrain 17732
  .mx-wd-sm-300p {
17733
    max-width: 300%;
17734
  }
16848 stevensc 17735
 
16825 efrain 17736
  .mn-wd-sm-300p {
17737
    min-width: 300%;
17738
  }
16848 stevensc 17739
 
16825 efrain 17740
  .wd-sm-300-f {
17741
    width: 300px !important;
17742
  }
16848 stevensc 17743
 
16825 efrain 17744
  .wd-sm-300p-f {
17745
    width: 300% !important;
17746
  }
16848 stevensc 17747
 
16825 efrain 17748
  .mx-wd-sm-300p-f {
17749
    max-width: 300% !important;
17750
  }
16848 stevensc 17751
 
16825 efrain 17752
  .mn-wd-sm-300p-f {
17753
    min-width: 300% !important;
17754
  }
16848 stevensc 17755
 
16825 efrain 17756
  .wd-sm-350 {
17757
    width: 350px;
17758
  }
16848 stevensc 17759
 
16825 efrain 17760
  .wd-sm-350p {
17761
    width: 350%;
17762
  }
16848 stevensc 17763
 
16825 efrain 17764
  .mx-wd-sm-350p {
17765
    max-width: 350%;
17766
  }
16848 stevensc 17767
 
16825 efrain 17768
  .mn-wd-sm-350p {
17769
    min-width: 350%;
17770
  }
16848 stevensc 17771
 
16825 efrain 17772
  .wd-sm-350-f {
17773
    width: 350px !important;
17774
  }
16848 stevensc 17775
 
16825 efrain 17776
  .wd-sm-350p-f {
17777
    width: 350% !important;
17778
  }
16848 stevensc 17779
 
16825 efrain 17780
  .mx-wd-sm-350p-f {
17781
    max-width: 350% !important;
17782
  }
16848 stevensc 17783
 
16825 efrain 17784
  .mn-wd-sm-350p-f {
17785
    min-width: 350% !important;
17786
  }
16848 stevensc 17787
 
16825 efrain 17788
  .wd-sm-400 {
17789
    width: 400px;
17790
  }
16848 stevensc 17791
 
16825 efrain 17792
  .wd-sm-400p {
17793
    width: 400%;
17794
  }
16848 stevensc 17795
 
16825 efrain 17796
  .mx-wd-sm-400p {
17797
    max-width: 400%;
17798
  }
16848 stevensc 17799
 
16825 efrain 17800
  .mn-wd-sm-400p {
17801
    min-width: 400%;
17802
  }
16848 stevensc 17803
 
16825 efrain 17804
  .wd-sm-400-f {
17805
    width: 400px !important;
17806
  }
16848 stevensc 17807
 
16825 efrain 17808
  .wd-sm-400p-f {
17809
    width: 400% !important;
17810
  }
16848 stevensc 17811
 
16825 efrain 17812
  .mx-wd-sm-400p-f {
17813
    max-width: 400% !important;
17814
  }
16848 stevensc 17815
 
16825 efrain 17816
  .mn-wd-sm-400p-f {
17817
    min-width: 400% !important;
17818
  }
16848 stevensc 17819
 
16825 efrain 17820
  .wd-sm-450 {
17821
    width: 450px;
17822
  }
16848 stevensc 17823
 
16825 efrain 17824
  .wd-sm-450p {
17825
    width: 450%;
17826
  }
16848 stevensc 17827
 
16825 efrain 17828
  .mx-wd-sm-450p {
17829
    max-width: 450%;
17830
  }
16848 stevensc 17831
 
16825 efrain 17832
  .mn-wd-sm-450p {
17833
    min-width: 450%;
17834
  }
16848 stevensc 17835
 
16825 efrain 17836
  .wd-sm-450-f {
17837
    width: 450px !important;
17838
  }
16848 stevensc 17839
 
16825 efrain 17840
  .wd-sm-450p-f {
17841
    width: 450% !important;
17842
  }
16848 stevensc 17843
 
16825 efrain 17844
  .mx-wd-sm-450p-f {
17845
    max-width: 450% !important;
17846
  }
16848 stevensc 17847
 
16825 efrain 17848
  .mn-wd-sm-450p-f {
17849
    min-width: 450% !important;
17850
  }
16848 stevensc 17851
 
16825 efrain 17852
  .wd-sm-500 {
17853
    width: 500px;
17854
  }
16848 stevensc 17855
 
16825 efrain 17856
  .wd-sm-500p {
17857
    width: 500%;
17858
  }
16848 stevensc 17859
 
16825 efrain 17860
  .mx-wd-sm-500p {
17861
    max-width: 500%;
17862
  }
16848 stevensc 17863
 
16825 efrain 17864
  .mn-wd-sm-500p {
17865
    min-width: 500%;
17866
  }
16848 stevensc 17867
 
16825 efrain 17868
  .wd-sm-500-f {
17869
    width: 500px !important;
17870
  }
16848 stevensc 17871
 
16825 efrain 17872
  .wd-sm-500p-f {
17873
    width: 500% !important;
17874
  }
16848 stevensc 17875
 
16825 efrain 17876
  .mx-wd-sm-500p-f {
17877
    max-width: 500% !important;
17878
  }
16848 stevensc 17879
 
16825 efrain 17880
  .mn-wd-sm-500p-f {
17881
    min-width: 500% !important;
17882
  }
16848 stevensc 17883
 
16825 efrain 17884
  .wd-sm-550 {
17885
    width: 550px;
17886
  }
16848 stevensc 17887
 
16825 efrain 17888
  .wd-sm-550p {
17889
    width: 550%;
17890
  }
16848 stevensc 17891
 
16825 efrain 17892
  .mx-wd-sm-550p {
17893
    max-width: 550%;
17894
  }
16848 stevensc 17895
 
16825 efrain 17896
  .mn-wd-sm-550p {
17897
    min-width: 550%;
17898
  }
16848 stevensc 17899
 
16825 efrain 17900
  .wd-sm-550-f {
17901
    width: 550px !important;
17902
  }
16848 stevensc 17903
 
16825 efrain 17904
  .wd-sm-550p-f {
17905
    width: 550% !important;
17906
  }
16848 stevensc 17907
 
16825 efrain 17908
  .mx-wd-sm-550p-f {
17909
    max-width: 550% !important;
17910
  }
16848 stevensc 17911
 
16825 efrain 17912
  .mn-wd-sm-550p-f {
17913
    min-width: 550% !important;
17914
  }
16848 stevensc 17915
 
16825 efrain 17916
  .wd-sm-600 {
17917
    width: 600px;
17918
  }
16848 stevensc 17919
 
16825 efrain 17920
  .wd-sm-600p {
17921
    width: 600%;
17922
  }
16848 stevensc 17923
 
16825 efrain 17924
  .mx-wd-sm-600p {
17925
    max-width: 600%;
17926
  }
16848 stevensc 17927
 
16825 efrain 17928
  .mn-wd-sm-600p {
17929
    min-width: 600%;
17930
  }
16848 stevensc 17931
 
16825 efrain 17932
  .wd-sm-600-f {
17933
    width: 600px !important;
17934
  }
16848 stevensc 17935
 
16825 efrain 17936
  .wd-sm-600p-f {
17937
    width: 600% !important;
17938
  }
16848 stevensc 17939
 
16825 efrain 17940
  .mx-wd-sm-600p-f {
17941
    max-width: 600% !important;
17942
  }
16848 stevensc 17943
 
16825 efrain 17944
  .mn-wd-sm-600p-f {
17945
    min-width: 600% !important;
17946
  }
16848 stevensc 17947
 
16825 efrain 17948
  .wd-sm-650 {
17949
    width: 650px;
17950
  }
16848 stevensc 17951
 
16825 efrain 17952
  .wd-sm-650p {
17953
    width: 650%;
17954
  }
16848 stevensc 17955
 
16825 efrain 17956
  .mx-wd-sm-650p {
17957
    max-width: 650%;
17958
  }
16848 stevensc 17959
 
16825 efrain 17960
  .mn-wd-sm-650p {
17961
    min-width: 650%;
17962
  }
16848 stevensc 17963
 
16825 efrain 17964
  .wd-sm-650-f {
17965
    width: 650px !important;
17966
  }
16848 stevensc 17967
 
16825 efrain 17968
  .wd-sm-650p-f {
17969
    width: 650% !important;
17970
  }
16848 stevensc 17971
 
16825 efrain 17972
  .mx-wd-sm-650p-f {
17973
    max-width: 650% !important;
17974
  }
16848 stevensc 17975
 
16825 efrain 17976
  .mn-wd-sm-650p-f {
17977
    min-width: 650% !important;
17978
  }
16848 stevensc 17979
 
16825 efrain 17980
  .wd-sm-700 {
17981
    width: 700px;
17982
  }
16848 stevensc 17983
 
16825 efrain 17984
  .wd-sm-700p {
17985
    width: 700%;
17986
  }
16848 stevensc 17987
 
16825 efrain 17988
  .mx-wd-sm-700p {
17989
    max-width: 700%;
17990
  }
16848 stevensc 17991
 
16825 efrain 17992
  .mn-wd-sm-700p {
17993
    min-width: 700%;
17994
  }
16848 stevensc 17995
 
16825 efrain 17996
  .wd-sm-700-f {
17997
    width: 700px !important;
17998
  }
16848 stevensc 17999
 
16825 efrain 18000
  .wd-sm-700p-f {
18001
    width: 700% !important;
18002
  }
16848 stevensc 18003
 
16825 efrain 18004
  .mx-wd-sm-700p-f {
18005
    max-width: 700% !important;
18006
  }
16848 stevensc 18007
 
16825 efrain 18008
  .mn-wd-sm-700p-f {
18009
    min-width: 700% !important;
18010
  }
16848 stevensc 18011
 
16825 efrain 18012
  .wd-sm-750 {
18013
    width: 750px;
18014
  }
16848 stevensc 18015
 
16825 efrain 18016
  .wd-sm-750p {
18017
    width: 750%;
18018
  }
16848 stevensc 18019
 
16825 efrain 18020
  .mx-wd-sm-750p {
18021
    max-width: 750%;
18022
  }
16848 stevensc 18023
 
16825 efrain 18024
  .mn-wd-sm-750p {
18025
    min-width: 750%;
18026
  }
16848 stevensc 18027
 
16825 efrain 18028
  .wd-sm-750-f {
18029
    width: 750px !important;
18030
  }
16848 stevensc 18031
 
16825 efrain 18032
  .wd-sm-750p-f {
18033
    width: 750% !important;
18034
  }
16848 stevensc 18035
 
16825 efrain 18036
  .mx-wd-sm-750p-f {
18037
    max-width: 750% !important;
18038
  }
16848 stevensc 18039
 
16825 efrain 18040
  .mn-wd-sm-750p-f {
18041
    min-width: 750% !important;
18042
  }
16848 stevensc 18043
 
16825 efrain 18044
  .wd-sm-800 {
18045
    width: 800px;
18046
  }
16848 stevensc 18047
 
16825 efrain 18048
  .wd-sm-800p {
18049
    width: 800%;
18050
  }
16848 stevensc 18051
 
16825 efrain 18052
  .mx-wd-sm-800p {
18053
    max-width: 800%;
18054
  }
16848 stevensc 18055
 
16825 efrain 18056
  .mn-wd-sm-800p {
18057
    min-width: 800%;
18058
  }
16848 stevensc 18059
 
16825 efrain 18060
  .wd-sm-800-f {
18061
    width: 800px !important;
18062
  }
16848 stevensc 18063
 
16825 efrain 18064
  .wd-sm-800p-f {
18065
    width: 800% !important;
18066
  }
16848 stevensc 18067
 
16825 efrain 18068
  .mx-wd-sm-800p-f {
18069
    max-width: 800% !important;
18070
  }
16848 stevensc 18071
 
16825 efrain 18072
  .mn-wd-sm-800p-f {
18073
    min-width: 800% !important;
18074
  }
16848 stevensc 18075
 
16825 efrain 18076
  .wd-sm-850 {
18077
    width: 850px;
18078
  }
16848 stevensc 18079
 
16825 efrain 18080
  .wd-sm-850p {
18081
    width: 850%;
18082
  }
16848 stevensc 18083
 
16825 efrain 18084
  .mx-wd-sm-850p {
18085
    max-width: 850%;
18086
  }
16848 stevensc 18087
 
16825 efrain 18088
  .mn-wd-sm-850p {
18089
    min-width: 850%;
18090
  }
16848 stevensc 18091
 
16825 efrain 18092
  .wd-sm-850-f {
18093
    width: 850px !important;
18094
  }
16848 stevensc 18095
 
16825 efrain 18096
  .wd-sm-850p-f {
18097
    width: 850% !important;
18098
  }
16848 stevensc 18099
 
16825 efrain 18100
  .mx-wd-sm-850p-f {
18101
    max-width: 850% !important;
18102
  }
16848 stevensc 18103
 
16825 efrain 18104
  .mn-wd-sm-850p-f {
18105
    min-width: 850% !important;
18106
  }
16848 stevensc 18107
 
16825 efrain 18108
  .wd-sm-900 {
18109
    width: 900px;
18110
  }
16848 stevensc 18111
 
16825 efrain 18112
  .wd-sm-900p {
18113
    width: 900%;
18114
  }
16848 stevensc 18115
 
16825 efrain 18116
  .mx-wd-sm-900p {
18117
    max-width: 900%;
18118
  }
16848 stevensc 18119
 
16825 efrain 18120
  .mn-wd-sm-900p {
18121
    min-width: 900%;
18122
  }
16848 stevensc 18123
 
16825 efrain 18124
  .wd-sm-900-f {
18125
    width: 900px !important;
18126
  }
16848 stevensc 18127
 
16825 efrain 18128
  .wd-sm-900p-f {
18129
    width: 900% !important;
18130
  }
16848 stevensc 18131
 
16825 efrain 18132
  .mx-wd-sm-900p-f {
18133
    max-width: 900% !important;
18134
  }
16848 stevensc 18135
 
16825 efrain 18136
  .mn-wd-sm-900p-f {
18137
    min-width: 900% !important;
18138
  }
16848 stevensc 18139
 
16825 efrain 18140
  .wd-sm-950 {
18141
    width: 950px;
18142
  }
16848 stevensc 18143
 
16825 efrain 18144
  .wd-sm-950p {
18145
    width: 950%;
18146
  }
16848 stevensc 18147
 
16825 efrain 18148
  .mx-wd-sm-950p {
18149
    max-width: 950%;
18150
  }
16848 stevensc 18151
 
16825 efrain 18152
  .mn-wd-sm-950p {
18153
    min-width: 950%;
18154
  }
16848 stevensc 18155
 
16825 efrain 18156
  .wd-sm-950-f {
18157
    width: 950px !important;
18158
  }
16848 stevensc 18159
 
16825 efrain 18160
  .wd-sm-950p-f {
18161
    width: 950% !important;
18162
  }
16848 stevensc 18163
 
16825 efrain 18164
  .mx-wd-sm-950p-f {
18165
    max-width: 950% !important;
18166
  }
16848 stevensc 18167
 
16825 efrain 18168
  .mn-wd-sm-950p-f {
18169
    min-width: 950% !important;
18170
  }
16848 stevensc 18171
 
16825 efrain 18172
  .wd-sm-1000 {
18173
    width: 1000px;
18174
  }
16848 stevensc 18175
 
16825 efrain 18176
  .wd-sm-1000p {
18177
    width: 1000%;
18178
  }
16848 stevensc 18179
 
16825 efrain 18180
  .mx-wd-sm-1000p {
18181
    max-width: 1000%;
18182
  }
16848 stevensc 18183
 
16825 efrain 18184
  .mn-wd-sm-1000p {
18185
    min-width: 1000%;
18186
  }
16848 stevensc 18187
 
16825 efrain 18188
  .wd-sm-1000-f {
18189
    width: 1000px !important;
18190
  }
16848 stevensc 18191
 
16825 efrain 18192
  .wd-sm-1000p-f {
18193
    width: 1000% !important;
18194
  }
16848 stevensc 18195
 
16825 efrain 18196
  .mx-wd-sm-1000p-f {
18197
    max-width: 1000% !important;
18198
  }
16848 stevensc 18199
 
16825 efrain 18200
  .mn-wd-sm-1000p-f {
18201
    min-width: 1000% !important;
18202
  }
16848 stevensc 18203
 
16825 efrain 18204
  .wd-sm-auto {
18205
    width: auto;
18206
  }
16848 stevensc 18207
 
16825 efrain 18208
  .wd-sm-auto-f {
18209
    width: auto !important;
18210
  }
18211
}
16848 stevensc 18212
 
16825 efrain 18213
@media (min-width: 768px) {
18214
  .wd-md-5 {
18215
    width: 5px;
18216
  }
16848 stevensc 18217
 
16825 efrain 18218
  .wd-md-5p {
18219
    width: 5%;
18220
  }
16848 stevensc 18221
 
16825 efrain 18222
  .mx-wd-md-5p {
18223
    max-width: 5%;
18224
  }
16848 stevensc 18225
 
16825 efrain 18226
  .mn-wd-md-5p {
18227
    min-width: 5%;
18228
  }
16848 stevensc 18229
 
16825 efrain 18230
  .wd-md-5-f {
18231
    width: 5px !important;
18232
  }
16848 stevensc 18233
 
16825 efrain 18234
  .wd-md-5p-f {
18235
    width: 5% !important;
18236
  }
16848 stevensc 18237
 
16825 efrain 18238
  .mx-wd-md-5p-f {
18239
    max-width: 5% !important;
18240
  }
16848 stevensc 18241
 
16825 efrain 18242
  .mn-wd-md-5p-f {
18243
    min-width: 5% !important;
18244
  }
16848 stevensc 18245
 
16825 efrain 18246
  .wd-md-10 {
18247
    width: 10px;
18248
  }
16848 stevensc 18249
 
16825 efrain 18250
  .wd-md-10p {
18251
    width: 10%;
18252
  }
16848 stevensc 18253
 
16825 efrain 18254
  .mx-wd-md-10p {
18255
    max-width: 10%;
18256
  }
16848 stevensc 18257
 
16825 efrain 18258
  .mn-wd-md-10p {
18259
    min-width: 10%;
18260
  }
16848 stevensc 18261
 
16825 efrain 18262
  .wd-md-10-f {
18263
    width: 10px !important;
18264
  }
16848 stevensc 18265
 
16825 efrain 18266
  .wd-md-10p-f {
18267
    width: 10% !important;
18268
  }
16848 stevensc 18269
 
16825 efrain 18270
  .mx-wd-md-10p-f {
18271
    max-width: 10% !important;
18272
  }
16848 stevensc 18273
 
16825 efrain 18274
  .mn-wd-md-10p-f {
18275
    min-width: 10% !important;
18276
  }
16848 stevensc 18277
 
16825 efrain 18278
  .wd-md-15 {
18279
    width: 15px;
18280
  }
16848 stevensc 18281
 
16825 efrain 18282
  .wd-md-15p {
18283
    width: 15%;
18284
  }
16848 stevensc 18285
 
16825 efrain 18286
  .mx-wd-md-15p {
18287
    max-width: 15%;
18288
  }
16848 stevensc 18289
 
16825 efrain 18290
  .mn-wd-md-15p {
18291
    min-width: 15%;
18292
  }
16848 stevensc 18293
 
16825 efrain 18294
  .wd-md-15-f {
18295
    width: 15px !important;
18296
  }
16848 stevensc 18297
 
16825 efrain 18298
  .wd-md-15p-f {
18299
    width: 15% !important;
18300
  }
16848 stevensc 18301
 
16825 efrain 18302
  .mx-wd-md-15p-f {
18303
    max-width: 15% !important;
18304
  }
16848 stevensc 18305
 
16825 efrain 18306
  .mn-wd-md-15p-f {
18307
    min-width: 15% !important;
18308
  }
16848 stevensc 18309
 
16825 efrain 18310
  .wd-md-20 {
18311
    width: 20px;
18312
  }
16848 stevensc 18313
 
16825 efrain 18314
  .wd-md-20p {
18315
    width: 20%;
18316
  }
16848 stevensc 18317
 
16825 efrain 18318
  .mx-wd-md-20p {
18319
    max-width: 20%;
18320
  }
16848 stevensc 18321
 
16825 efrain 18322
  .mn-wd-md-20p {
18323
    min-width: 20%;
18324
  }
16848 stevensc 18325
 
16825 efrain 18326
  .wd-md-20-f {
18327
    width: 20px !important;
18328
  }
16848 stevensc 18329
 
16825 efrain 18330
  .wd-md-20p-f {
18331
    width: 20% !important;
18332
  }
16848 stevensc 18333
 
16825 efrain 18334
  .mx-wd-md-20p-f {
18335
    max-width: 20% !important;
18336
  }
16848 stevensc 18337
 
16825 efrain 18338
  .mn-wd-md-20p-f {
18339
    min-width: 20% !important;
18340
  }
16848 stevensc 18341
 
16825 efrain 18342
  .wd-md-25 {
18343
    width: 25px;
18344
  }
16848 stevensc 18345
 
16825 efrain 18346
  .wd-md-25p {
18347
    width: 25%;
18348
  }
16848 stevensc 18349
 
16825 efrain 18350
  .mx-wd-md-25p {
18351
    max-width: 25%;
18352
  }
16848 stevensc 18353
 
16825 efrain 18354
  .mn-wd-md-25p {
18355
    min-width: 25%;
18356
  }
16848 stevensc 18357
 
16825 efrain 18358
  .wd-md-25-f {
18359
    width: 25px !important;
18360
  }
16848 stevensc 18361
 
16825 efrain 18362
  .wd-md-25p-f {
18363
    width: 25% !important;
18364
  }
16848 stevensc 18365
 
16825 efrain 18366
  .mx-wd-md-25p-f {
18367
    max-width: 25% !important;
18368
  }
16848 stevensc 18369
 
16825 efrain 18370
  .mn-wd-md-25p-f {
18371
    min-width: 25% !important;
18372
  }
16848 stevensc 18373
 
16825 efrain 18374
  .wd-md-30 {
18375
    width: 30px;
18376
  }
16848 stevensc 18377
 
16825 efrain 18378
  .wd-md-30p {
18379
    width: 30%;
18380
  }
16848 stevensc 18381
 
16825 efrain 18382
  .mx-wd-md-30p {
18383
    max-width: 30%;
18384
  }
16848 stevensc 18385
 
16825 efrain 18386
  .mn-wd-md-30p {
18387
    min-width: 30%;
18388
  }
16848 stevensc 18389
 
16825 efrain 18390
  .wd-md-30-f {
18391
    width: 30px !important;
18392
  }
16848 stevensc 18393
 
16825 efrain 18394
  .wd-md-30p-f {
18395
    width: 30% !important;
18396
  }
16848 stevensc 18397
 
16825 efrain 18398
  .mx-wd-md-30p-f {
18399
    max-width: 30% !important;
18400
  }
16848 stevensc 18401
 
16825 efrain 18402
  .mn-wd-md-30p-f {
18403
    min-width: 30% !important;
18404
  }
16848 stevensc 18405
 
16825 efrain 18406
  .wd-md-35 {
18407
    width: 35px;
18408
  }
16848 stevensc 18409
 
16825 efrain 18410
  .wd-md-35p {
18411
    width: 35%;
18412
  }
16848 stevensc 18413
 
16825 efrain 18414
  .mx-wd-md-35p {
18415
    max-width: 35%;
18416
  }
16848 stevensc 18417
 
16825 efrain 18418
  .mn-wd-md-35p {
18419
    min-width: 35%;
18420
  }
16848 stevensc 18421
 
16825 efrain 18422
  .wd-md-35-f {
18423
    width: 35px !important;
18424
  }
16848 stevensc 18425
 
16825 efrain 18426
  .wd-md-35p-f {
18427
    width: 35% !important;
18428
  }
16848 stevensc 18429
 
16825 efrain 18430
  .mx-wd-md-35p-f {
18431
    max-width: 35% !important;
18432
  }
16848 stevensc 18433
 
16825 efrain 18434
  .mn-wd-md-35p-f {
18435
    min-width: 35% !important;
18436
  }
16848 stevensc 18437
 
16825 efrain 18438
  .wd-md-40 {
18439
    width: 40px;
18440
  }
16848 stevensc 18441
 
16825 efrain 18442
  .wd-md-40p {
18443
    width: 40%;
18444
  }
16848 stevensc 18445
 
16825 efrain 18446
  .mx-wd-md-40p {
18447
    max-width: 40%;
18448
  }
16848 stevensc 18449
 
16825 efrain 18450
  .mn-wd-md-40p {
18451
    min-width: 40%;
18452
  }
16848 stevensc 18453
 
16825 efrain 18454
  .wd-md-40-f {
18455
    width: 40px !important;
18456
  }
16848 stevensc 18457
 
16825 efrain 18458
  .wd-md-40p-f {
18459
    width: 40% !important;
18460
  }
16848 stevensc 18461
 
16825 efrain 18462
  .mx-wd-md-40p-f {
18463
    max-width: 40% !important;
18464
  }
16848 stevensc 18465
 
16825 efrain 18466
  .mn-wd-md-40p-f {
18467
    min-width: 40% !important;
18468
  }
16848 stevensc 18469
 
16825 efrain 18470
  .wd-md-45 {
18471
    width: 45px;
18472
  }
16848 stevensc 18473
 
16825 efrain 18474
  .wd-md-45p {
18475
    width: 45%;
18476
  }
16848 stevensc 18477
 
16825 efrain 18478
  .mx-wd-md-45p {
18479
    max-width: 45%;
18480
  }
16848 stevensc 18481
 
16825 efrain 18482
  .mn-wd-md-45p {
18483
    min-width: 45%;
18484
  }
16848 stevensc 18485
 
16825 efrain 18486
  .wd-md-45-f {
18487
    width: 45px !important;
18488
  }
16848 stevensc 18489
 
16825 efrain 18490
  .wd-md-45p-f {
18491
    width: 45% !important;
18492
  }
16848 stevensc 18493
 
16825 efrain 18494
  .mx-wd-md-45p-f {
18495
    max-width: 45% !important;
18496
  }
16848 stevensc 18497
 
16825 efrain 18498
  .mn-wd-md-45p-f {
18499
    min-width: 45% !important;
18500
  }
16848 stevensc 18501
 
16825 efrain 18502
  .wd-md-50 {
18503
    width: 50px;
18504
  }
16848 stevensc 18505
 
16825 efrain 18506
  .wd-md-50p {
18507
    width: 50%;
18508
  }
16848 stevensc 18509
 
16825 efrain 18510
  .mx-wd-md-50p {
18511
    max-width: 50%;
18512
  }
16848 stevensc 18513
 
16825 efrain 18514
  .mn-wd-md-50p {
18515
    min-width: 50%;
18516
  }
16848 stevensc 18517
 
16825 efrain 18518
  .wd-md-50-f {
18519
    width: 50px !important;
18520
  }
16848 stevensc 18521
 
16825 efrain 18522
  .wd-md-50p-f {
18523
    width: 50% !important;
18524
  }
16848 stevensc 18525
 
16825 efrain 18526
  .mx-wd-md-50p-f {
18527
    max-width: 50% !important;
18528
  }
16848 stevensc 18529
 
16825 efrain 18530
  .mn-wd-md-50p-f {
18531
    min-width: 50% !important;
18532
  }
16848 stevensc 18533
 
16825 efrain 18534
  .wd-md-55 {
18535
    width: 55px;
18536
  }
16848 stevensc 18537
 
16825 efrain 18538
  .wd-md-55p {
18539
    width: 55%;
18540
  }
16848 stevensc 18541
 
16825 efrain 18542
  .mx-wd-md-55p {
18543
    max-width: 55%;
18544
  }
16848 stevensc 18545
 
16825 efrain 18546
  .mn-wd-md-55p {
18547
    min-width: 55%;
18548
  }
16848 stevensc 18549
 
16825 efrain 18550
  .wd-md-55-f {
18551
    width: 55px !important;
18552
  }
16848 stevensc 18553
 
16825 efrain 18554
  .wd-md-55p-f {
18555
    width: 55% !important;
18556
  }
16848 stevensc 18557
 
16825 efrain 18558
  .mx-wd-md-55p-f {
18559
    max-width: 55% !important;
18560
  }
16848 stevensc 18561
 
16825 efrain 18562
  .mn-wd-md-55p-f {
18563
    min-width: 55% !important;
18564
  }
16848 stevensc 18565
 
16825 efrain 18566
  .wd-md-60 {
18567
    width: 60px;
18568
  }
16848 stevensc 18569
 
16825 efrain 18570
  .wd-md-60p {
18571
    width: 60%;
18572
  }
16848 stevensc 18573
 
16825 efrain 18574
  .mx-wd-md-60p {
18575
    max-width: 60%;
18576
  }
16848 stevensc 18577
 
16825 efrain 18578
  .mn-wd-md-60p {
18579
    min-width: 60%;
18580
  }
16848 stevensc 18581
 
16825 efrain 18582
  .wd-md-60-f {
18583
    width: 60px !important;
18584
  }
16848 stevensc 18585
 
16825 efrain 18586
  .wd-md-60p-f {
18587
    width: 60% !important;
18588
  }
16848 stevensc 18589
 
16825 efrain 18590
  .mx-wd-md-60p-f {
18591
    max-width: 60% !important;
18592
  }
16848 stevensc 18593
 
16825 efrain 18594
  .mn-wd-md-60p-f {
18595
    min-width: 60% !important;
18596
  }
16848 stevensc 18597
 
16825 efrain 18598
  .wd-md-65 {
18599
    width: 65px;
18600
  }
16848 stevensc 18601
 
16825 efrain 18602
  .wd-md-65p {
18603
    width: 65%;
18604
  }
16848 stevensc 18605
 
16825 efrain 18606
  .mx-wd-md-65p {
18607
    max-width: 65%;
18608
  }
16848 stevensc 18609
 
16825 efrain 18610
  .mn-wd-md-65p {
18611
    min-width: 65%;
18612
  }
16848 stevensc 18613
 
16825 efrain 18614
  .wd-md-65-f {
18615
    width: 65px !important;
18616
  }
16848 stevensc 18617
 
16825 efrain 18618
  .wd-md-65p-f {
18619
    width: 65% !important;
18620
  }
16848 stevensc 18621
 
16825 efrain 18622
  .mx-wd-md-65p-f {
18623
    max-width: 65% !important;
18624
  }
16848 stevensc 18625
 
16825 efrain 18626
  .mn-wd-md-65p-f {
18627
    min-width: 65% !important;
18628
  }
16848 stevensc 18629
 
16825 efrain 18630
  .wd-md-70 {
18631
    width: 70px;
18632
  }
16848 stevensc 18633
 
16825 efrain 18634
  .wd-md-70p {
18635
    width: 70%;
18636
  }
16848 stevensc 18637
 
16825 efrain 18638
  .mx-wd-md-70p {
18639
    max-width: 70%;
18640
  }
16848 stevensc 18641
 
16825 efrain 18642
  .mn-wd-md-70p {
18643
    min-width: 70%;
18644
  }
16848 stevensc 18645
 
16825 efrain 18646
  .wd-md-70-f {
18647
    width: 70px !important;
18648
  }
16848 stevensc 18649
 
16825 efrain 18650
  .wd-md-70p-f {
18651
    width: 70% !important;
18652
  }
16848 stevensc 18653
 
16825 efrain 18654
  .mx-wd-md-70p-f {
18655
    max-width: 70% !important;
18656
  }
16848 stevensc 18657
 
16825 efrain 18658
  .mn-wd-md-70p-f {
18659
    min-width: 70% !important;
18660
  }
16848 stevensc 18661
 
16825 efrain 18662
  .wd-md-75 {
18663
    width: 75px;
18664
  }
16848 stevensc 18665
 
16825 efrain 18666
  .wd-md-75p {
18667
    width: 75%;
18668
  }
16848 stevensc 18669
 
16825 efrain 18670
  .mx-wd-md-75p {
18671
    max-width: 75%;
18672
  }
16848 stevensc 18673
 
16825 efrain 18674
  .mn-wd-md-75p {
18675
    min-width: 75%;
18676
  }
16848 stevensc 18677
 
16825 efrain 18678
  .wd-md-75-f {
18679
    width: 75px !important;
18680
  }
16848 stevensc 18681
 
16825 efrain 18682
  .wd-md-75p-f {
18683
    width: 75% !important;
18684
  }
16848 stevensc 18685
 
16825 efrain 18686
  .mx-wd-md-75p-f {
18687
    max-width: 75% !important;
18688
  }
16848 stevensc 18689
 
16825 efrain 18690
  .mn-wd-md-75p-f {
18691
    min-width: 75% !important;
18692
  }
16848 stevensc 18693
 
16825 efrain 18694
  .wd-md-80 {
18695
    width: 80px;
18696
  }
16848 stevensc 18697
 
16825 efrain 18698
  .wd-md-80p {
18699
    width: 80%;
18700
  }
16848 stevensc 18701
 
16825 efrain 18702
  .mx-wd-md-80p {
18703
    max-width: 80%;
18704
  }
16848 stevensc 18705
 
16825 efrain 18706
  .mn-wd-md-80p {
18707
    min-width: 80%;
18708
  }
16848 stevensc 18709
 
16825 efrain 18710
  .wd-md-80-f {
18711
    width: 80px !important;
18712
  }
16848 stevensc 18713
 
16825 efrain 18714
  .wd-md-80p-f {
18715
    width: 80% !important;
18716
  }
16848 stevensc 18717
 
16825 efrain 18718
  .mx-wd-md-80p-f {
18719
    max-width: 80% !important;
18720
  }
16848 stevensc 18721
 
16825 efrain 18722
  .mn-wd-md-80p-f {
18723
    min-width: 80% !important;
18724
  }
16848 stevensc 18725
 
16825 efrain 18726
  .wd-md-85 {
18727
    width: 85px;
18728
  }
16848 stevensc 18729
 
16825 efrain 18730
  .wd-md-85p {
18731
    width: 85%;
18732
  }
16848 stevensc 18733
 
16825 efrain 18734
  .mx-wd-md-85p {
18735
    max-width: 85%;
18736
  }
16848 stevensc 18737
 
16825 efrain 18738
  .mn-wd-md-85p {
18739
    min-width: 85%;
18740
  }
16848 stevensc 18741
 
16825 efrain 18742
  .wd-md-85-f {
18743
    width: 85px !important;
18744
  }
16848 stevensc 18745
 
16825 efrain 18746
  .wd-md-85p-f {
18747
    width: 85% !important;
18748
  }
16848 stevensc 18749
 
16825 efrain 18750
  .mx-wd-md-85p-f {
18751
    max-width: 85% !important;
18752
  }
16848 stevensc 18753
 
16825 efrain 18754
  .mn-wd-md-85p-f {
18755
    min-width: 85% !important;
18756
  }
16848 stevensc 18757
 
16825 efrain 18758
  .wd-md-90 {
18759
    width: 90px;
18760
  }
16848 stevensc 18761
 
16825 efrain 18762
  .wd-md-90p {
18763
    width: 90%;
18764
  }
16848 stevensc 18765
 
16825 efrain 18766
  .mx-wd-md-90p {
18767
    max-width: 90%;
18768
  }
16848 stevensc 18769
 
16825 efrain 18770
  .mn-wd-md-90p {
18771
    min-width: 90%;
18772
  }
16848 stevensc 18773
 
16825 efrain 18774
  .wd-md-90-f {
18775
    width: 90px !important;
18776
  }
16848 stevensc 18777
 
16825 efrain 18778
  .wd-md-90p-f {
18779
    width: 90% !important;
18780
  }
16848 stevensc 18781
 
16825 efrain 18782
  .mx-wd-md-90p-f {
18783
    max-width: 90% !important;
18784
  }
16848 stevensc 18785
 
16825 efrain 18786
  .mn-wd-md-90p-f {
18787
    min-width: 90% !important;
18788
  }
16848 stevensc 18789
 
16825 efrain 18790
  .wd-md-95 {
18791
    width: 95px;
18792
  }
16848 stevensc 18793
 
16825 efrain 18794
  .wd-md-95p {
18795
    width: 95%;
18796
  }
16848 stevensc 18797
 
16825 efrain 18798
  .mx-wd-md-95p {
18799
    max-width: 95%;
18800
  }
16848 stevensc 18801
 
16825 efrain 18802
  .mn-wd-md-95p {
18803
    min-width: 95%;
18804
  }
16848 stevensc 18805
 
16825 efrain 18806
  .wd-md-95-f {
18807
    width: 95px !important;
18808
  }
16848 stevensc 18809
 
16825 efrain 18810
  .wd-md-95p-f {
18811
    width: 95% !important;
18812
  }
16848 stevensc 18813
 
16825 efrain 18814
  .mx-wd-md-95p-f {
18815
    max-width: 95% !important;
18816
  }
16848 stevensc 18817
 
16825 efrain 18818
  .mn-wd-md-95p-f {
18819
    min-width: 95% !important;
18820
  }
16848 stevensc 18821
 
16825 efrain 18822
  .wd-md-100 {
18823
    width: 100px;
18824
  }
16848 stevensc 18825
 
16825 efrain 18826
  .wd-md-100p {
18827
    width: 100%;
18828
  }
16848 stevensc 18829
 
16825 efrain 18830
  .mx-wd-md-100p {
18831
    max-width: 100%;
18832
  }
16848 stevensc 18833
 
16825 efrain 18834
  .mn-wd-md-100p {
18835
    min-width: 100%;
18836
  }
16848 stevensc 18837
 
16825 efrain 18838
  .wd-md-100-f {
18839
    width: 100px !important;
18840
  }
16848 stevensc 18841
 
16825 efrain 18842
  .wd-md-100p-f {
18843
    width: 100% !important;
18844
  }
16848 stevensc 18845
 
16825 efrain 18846
  .mx-wd-md-100p-f {
18847
    max-width: 100% !important;
18848
  }
16848 stevensc 18849
 
16825 efrain 18850
  .mn-wd-md-100p-f {
18851
    min-width: 100% !important;
18852
  }
16848 stevensc 18853
 
16825 efrain 18854
  .wd-md-150 {
18855
    width: 150px;
18856
  }
16848 stevensc 18857
 
16825 efrain 18858
  .wd-md-150p {
18859
    width: 150%;
18860
  }
16848 stevensc 18861
 
16825 efrain 18862
  .mx-wd-md-150p {
18863
    max-width: 150%;
18864
  }
16848 stevensc 18865
 
16825 efrain 18866
  .mn-wd-md-150p {
18867
    min-width: 150%;
18868
  }
16848 stevensc 18869
 
16825 efrain 18870
  .wd-md-150-f {
18871
    width: 150px !important;
18872
  }
16848 stevensc 18873
 
16825 efrain 18874
  .wd-md-150p-f {
18875
    width: 150% !important;
18876
  }
16848 stevensc 18877
 
16825 efrain 18878
  .mx-wd-md-150p-f {
18879
    max-width: 150% !important;
18880
  }
16848 stevensc 18881
 
16825 efrain 18882
  .mn-wd-md-150p-f {
18883
    min-width: 150% !important;
18884
  }
16848 stevensc 18885
 
16825 efrain 18886
  .wd-md-200 {
18887
    width: 200px;
18888
  }
16848 stevensc 18889
 
16825 efrain 18890
  .wd-md-200p {
18891
    width: 200%;
18892
  }
16848 stevensc 18893
 
16825 efrain 18894
  .mx-wd-md-200p {
18895
    max-width: 200%;
18896
  }
16848 stevensc 18897
 
16825 efrain 18898
  .mn-wd-md-200p {
18899
    min-width: 200%;
18900
  }
16848 stevensc 18901
 
16825 efrain 18902
  .wd-md-200-f {
18903
    width: 200px !important;
18904
  }
16848 stevensc 18905
 
16825 efrain 18906
  .wd-md-200p-f {
18907
    width: 200% !important;
18908
  }
16848 stevensc 18909
 
16825 efrain 18910
  .mx-wd-md-200p-f {
18911
    max-width: 200% !important;
18912
  }
16848 stevensc 18913
 
16825 efrain 18914
  .mn-wd-md-200p-f {
18915
    min-width: 200% !important;
18916
  }
16848 stevensc 18917
 
16825 efrain 18918
  .wd-md-250 {
18919
    width: 250px;
18920
  }
16848 stevensc 18921
 
16825 efrain 18922
  .wd-md-250p {
18923
    width: 250%;
18924
  }
16848 stevensc 18925
 
16825 efrain 18926
  .mx-wd-md-250p {
18927
    max-width: 250%;
18928
  }
16848 stevensc 18929
 
16825 efrain 18930
  .mn-wd-md-250p {
18931
    min-width: 250%;
18932
  }
16848 stevensc 18933
 
16825 efrain 18934
  .wd-md-250-f {
18935
    width: 250px !important;
18936
  }
16848 stevensc 18937
 
16825 efrain 18938
  .wd-md-250p-f {
18939
    width: 250% !important;
18940
  }
16848 stevensc 18941
 
16825 efrain 18942
  .mx-wd-md-250p-f {
18943
    max-width: 250% !important;
18944
  }
16848 stevensc 18945
 
16825 efrain 18946
  .mn-wd-md-250p-f {
18947
    min-width: 250% !important;
18948
  }
16848 stevensc 18949
 
16825 efrain 18950
  .wd-md-300 {
18951
    width: 300px;
18952
  }
16848 stevensc 18953
 
16825 efrain 18954
  .wd-md-300p {
18955
    width: 300%;
18956
  }
16848 stevensc 18957
 
16825 efrain 18958
  .mx-wd-md-300p {
18959
    max-width: 300%;
18960
  }
16848 stevensc 18961
 
16825 efrain 18962
  .mn-wd-md-300p {
18963
    min-width: 300%;
18964
  }
16848 stevensc 18965
 
16825 efrain 18966
  .wd-md-300-f {
18967
    width: 300px !important;
18968
  }
16848 stevensc 18969
 
16825 efrain 18970
  .wd-md-300p-f {
18971
    width: 300% !important;
18972
  }
16848 stevensc 18973
 
16825 efrain 18974
  .mx-wd-md-300p-f {
18975
    max-width: 300% !important;
18976
  }
16848 stevensc 18977
 
16825 efrain 18978
  .mn-wd-md-300p-f {
18979
    min-width: 300% !important;
18980
  }
16848 stevensc 18981
 
16825 efrain 18982
  .wd-md-350 {
18983
    width: 350px;
18984
  }
16848 stevensc 18985
 
16825 efrain 18986
  .wd-md-350p {
18987
    width: 350%;
18988
  }
16848 stevensc 18989
 
16825 efrain 18990
  .mx-wd-md-350p {
18991
    max-width: 350%;
18992
  }
16848 stevensc 18993
 
16825 efrain 18994
  .mn-wd-md-350p {
18995
    min-width: 350%;
18996
  }
16848 stevensc 18997
 
16825 efrain 18998
  .wd-md-350-f {
18999
    width: 350px !important;
19000
  }
16848 stevensc 19001
 
16825 efrain 19002
  .wd-md-350p-f {
19003
    width: 350% !important;
19004
  }
16848 stevensc 19005
 
16825 efrain 19006
  .mx-wd-md-350p-f {
19007
    max-width: 350% !important;
19008
  }
16848 stevensc 19009
 
16825 efrain 19010
  .mn-wd-md-350p-f {
19011
    min-width: 350% !important;
19012
  }
16848 stevensc 19013
 
16825 efrain 19014
  .wd-md-400 {
19015
    width: 400px;
19016
  }
16848 stevensc 19017
 
16825 efrain 19018
  .wd-md-400p {
19019
    width: 400%;
19020
  }
16848 stevensc 19021
 
16825 efrain 19022
  .mx-wd-md-400p {
19023
    max-width: 400%;
19024
  }
16848 stevensc 19025
 
16825 efrain 19026
  .mn-wd-md-400p {
19027
    min-width: 400%;
19028
  }
16848 stevensc 19029
 
16825 efrain 19030
  .wd-md-400-f {
19031
    width: 400px !important;
19032
  }
16848 stevensc 19033
 
16825 efrain 19034
  .wd-md-400p-f {
19035
    width: 400% !important;
19036
  }
16848 stevensc 19037
 
16825 efrain 19038
  .mx-wd-md-400p-f {
19039
    max-width: 400% !important;
19040
  }
16848 stevensc 19041
 
16825 efrain 19042
  .mn-wd-md-400p-f {
19043
    min-width: 400% !important;
19044
  }
16848 stevensc 19045
 
16825 efrain 19046
  .wd-md-450 {
19047
    width: 450px;
19048
  }
16848 stevensc 19049
 
16825 efrain 19050
  .wd-md-450p {
19051
    width: 450%;
19052
  }
16848 stevensc 19053
 
16825 efrain 19054
  .mx-wd-md-450p {
19055
    max-width: 450%;
19056
  }
16848 stevensc 19057
 
16825 efrain 19058
  .mn-wd-md-450p {
19059
    min-width: 450%;
19060
  }
16848 stevensc 19061
 
16825 efrain 19062
  .wd-md-450-f {
19063
    width: 450px !important;
19064
  }
16848 stevensc 19065
 
16825 efrain 19066
  .wd-md-450p-f {
19067
    width: 450% !important;
19068
  }
16848 stevensc 19069
 
16825 efrain 19070
  .mx-wd-md-450p-f {
19071
    max-width: 450% !important;
19072
  }
16848 stevensc 19073
 
16825 efrain 19074
  .mn-wd-md-450p-f {
19075
    min-width: 450% !important;
19076
  }
16848 stevensc 19077
 
16825 efrain 19078
  .wd-md-500 {
19079
    width: 500px;
19080
  }
16848 stevensc 19081
 
16825 efrain 19082
  .wd-md-500p {
19083
    width: 500%;
19084
  }
16848 stevensc 19085
 
16825 efrain 19086
  .mx-wd-md-500p {
19087
    max-width: 500%;
19088
  }
16848 stevensc 19089
 
16825 efrain 19090
  .mn-wd-md-500p {
19091
    min-width: 500%;
19092
  }
16848 stevensc 19093
 
16825 efrain 19094
  .wd-md-500-f {
19095
    width: 500px !important;
19096
  }
16848 stevensc 19097
 
16825 efrain 19098
  .wd-md-500p-f {
19099
    width: 500% !important;
19100
  }
16848 stevensc 19101
 
16825 efrain 19102
  .mx-wd-md-500p-f {
19103
    max-width: 500% !important;
19104
  }
16848 stevensc 19105
 
16825 efrain 19106
  .mn-wd-md-500p-f {
19107
    min-width: 500% !important;
19108
  }
16848 stevensc 19109
 
16825 efrain 19110
  .wd-md-550 {
19111
    width: 550px;
19112
  }
16848 stevensc 19113
 
16825 efrain 19114
  .wd-md-550p {
19115
    width: 550%;
19116
  }
16848 stevensc 19117
 
16825 efrain 19118
  .mx-wd-md-550p {
19119
    max-width: 550%;
19120
  }
16848 stevensc 19121
 
16825 efrain 19122
  .mn-wd-md-550p {
19123
    min-width: 550%;
19124
  }
16848 stevensc 19125
 
16825 efrain 19126
  .wd-md-550-f {
19127
    width: 550px !important;
19128
  }
16848 stevensc 19129
 
16825 efrain 19130
  .wd-md-550p-f {
19131
    width: 550% !important;
19132
  }
16848 stevensc 19133
 
16825 efrain 19134
  .mx-wd-md-550p-f {
19135
    max-width: 550% !important;
19136
  }
16848 stevensc 19137
 
16825 efrain 19138
  .mn-wd-md-550p-f {
19139
    min-width: 550% !important;
19140
  }
16848 stevensc 19141
 
16825 efrain 19142
  .wd-md-600 {
19143
    width: 600px;
19144
  }
16848 stevensc 19145
 
16825 efrain 19146
  .wd-md-600p {
19147
    width: 600%;
19148
  }
16848 stevensc 19149
 
16825 efrain 19150
  .mx-wd-md-600p {
19151
    max-width: 600%;
19152
  }
16848 stevensc 19153
 
16825 efrain 19154
  .mn-wd-md-600p {
19155
    min-width: 600%;
19156
  }
16848 stevensc 19157
 
16825 efrain 19158
  .wd-md-600-f {
19159
    width: 600px !important;
19160
  }
16848 stevensc 19161
 
16825 efrain 19162
  .wd-md-600p-f {
19163
    width: 600% !important;
19164
  }
16848 stevensc 19165
 
16825 efrain 19166
  .mx-wd-md-600p-f {
19167
    max-width: 600% !important;
19168
  }
16848 stevensc 19169
 
16825 efrain 19170
  .mn-wd-md-600p-f {
19171
    min-width: 600% !important;
19172
  }
16848 stevensc 19173
 
16825 efrain 19174
  .wd-md-650 {
19175
    width: 650px;
19176
  }
16848 stevensc 19177
 
16825 efrain 19178
  .wd-md-650p {
19179
    width: 650%;
19180
  }
16848 stevensc 19181
 
16825 efrain 19182
  .mx-wd-md-650p {
19183
    max-width: 650%;
19184
  }
16848 stevensc 19185
 
16825 efrain 19186
  .mn-wd-md-650p {
19187
    min-width: 650%;
19188
  }
16848 stevensc 19189
 
16825 efrain 19190
  .wd-md-650-f {
19191
    width: 650px !important;
19192
  }
16848 stevensc 19193
 
16825 efrain 19194
  .wd-md-650p-f {
19195
    width: 650% !important;
19196
  }
16848 stevensc 19197
 
16825 efrain 19198
  .mx-wd-md-650p-f {
19199
    max-width: 650% !important;
19200
  }
16848 stevensc 19201
 
16825 efrain 19202
  .mn-wd-md-650p-f {
19203
    min-width: 650% !important;
19204
  }
16848 stevensc 19205
 
16825 efrain 19206
  .wd-md-700 {
19207
    width: 700px;
19208
  }
16848 stevensc 19209
 
16825 efrain 19210
  .wd-md-700p {
19211
    width: 700%;
19212
  }
16848 stevensc 19213
 
16825 efrain 19214
  .mx-wd-md-700p {
19215
    max-width: 700%;
19216
  }
16848 stevensc 19217
 
16825 efrain 19218
  .mn-wd-md-700p {
19219
    min-width: 700%;
19220
  }
16848 stevensc 19221
 
16825 efrain 19222
  .wd-md-700-f {
19223
    width: 700px !important;
19224
  }
16848 stevensc 19225
 
16825 efrain 19226
  .wd-md-700p-f {
19227
    width: 700% !important;
19228
  }
16848 stevensc 19229
 
16825 efrain 19230
  .mx-wd-md-700p-f {
19231
    max-width: 700% !important;
19232
  }
16848 stevensc 19233
 
16825 efrain 19234
  .mn-wd-md-700p-f {
19235
    min-width: 700% !important;
19236
  }
16848 stevensc 19237
 
16825 efrain 19238
  .wd-md-750 {
19239
    width: 750px;
19240
  }
16848 stevensc 19241
 
16825 efrain 19242
  .wd-md-750p {
19243
    width: 750%;
19244
  }
16848 stevensc 19245
 
16825 efrain 19246
  .mx-wd-md-750p {
19247
    max-width: 750%;
19248
  }
16848 stevensc 19249
 
16825 efrain 19250
  .mn-wd-md-750p {
19251
    min-width: 750%;
19252
  }
16848 stevensc 19253
 
16825 efrain 19254
  .wd-md-750-f {
19255
    width: 750px !important;
19256
  }
16848 stevensc 19257
 
16825 efrain 19258
  .wd-md-750p-f {
19259
    width: 750% !important;
19260
  }
16848 stevensc 19261
 
16825 efrain 19262
  .mx-wd-md-750p-f {
19263
    max-width: 750% !important;
19264
  }
16848 stevensc 19265
 
16825 efrain 19266
  .mn-wd-md-750p-f {
19267
    min-width: 750% !important;
19268
  }
16848 stevensc 19269
 
16825 efrain 19270
  .wd-md-800 {
19271
    width: 800px;
19272
  }
16848 stevensc 19273
 
16825 efrain 19274
  .wd-md-800p {
19275
    width: 800%;
19276
  }
16848 stevensc 19277
 
16825 efrain 19278
  .mx-wd-md-800p {
19279
    max-width: 800%;
19280
  }
16848 stevensc 19281
 
16825 efrain 19282
  .mn-wd-md-800p {
19283
    min-width: 800%;
19284
  }
16848 stevensc 19285
 
16825 efrain 19286
  .wd-md-800-f {
19287
    width: 800px !important;
19288
  }
16848 stevensc 19289
 
16825 efrain 19290
  .wd-md-800p-f {
19291
    width: 800% !important;
19292
  }
16848 stevensc 19293
 
16825 efrain 19294
  .mx-wd-md-800p-f {
19295
    max-width: 800% !important;
19296
  }
16848 stevensc 19297
 
16825 efrain 19298
  .mn-wd-md-800p-f {
19299
    min-width: 800% !important;
19300
  }
16848 stevensc 19301
 
16825 efrain 19302
  .wd-md-850 {
19303
    width: 850px;
19304
  }
16848 stevensc 19305
 
16825 efrain 19306
  .wd-md-850p {
19307
    width: 850%;
19308
  }
16848 stevensc 19309
 
16825 efrain 19310
  .mx-wd-md-850p {
19311
    max-width: 850%;
19312
  }
16848 stevensc 19313
 
16825 efrain 19314
  .mn-wd-md-850p {
19315
    min-width: 850%;
19316
  }
16848 stevensc 19317
 
16825 efrain 19318
  .wd-md-850-f {
19319
    width: 850px !important;
19320
  }
16848 stevensc 19321
 
16825 efrain 19322
  .wd-md-850p-f {
19323
    width: 850% !important;
19324
  }
16848 stevensc 19325
 
16825 efrain 19326
  .mx-wd-md-850p-f {
19327
    max-width: 850% !important;
19328
  }
16848 stevensc 19329
 
16825 efrain 19330
  .mn-wd-md-850p-f {
19331
    min-width: 850% !important;
19332
  }
16848 stevensc 19333
 
16825 efrain 19334
  .wd-md-900 {
19335
    width: 900px;
19336
  }
16848 stevensc 19337
 
16825 efrain 19338
  .wd-md-900p {
19339
    width: 900%;
19340
  }
16848 stevensc 19341
 
16825 efrain 19342
  .mx-wd-md-900p {
19343
    max-width: 900%;
19344
  }
16848 stevensc 19345
 
16825 efrain 19346
  .mn-wd-md-900p {
19347
    min-width: 900%;
19348
  }
16848 stevensc 19349
 
16825 efrain 19350
  .wd-md-900-f {
19351
    width: 900px !important;
19352
  }
16848 stevensc 19353
 
16825 efrain 19354
  .wd-md-900p-f {
19355
    width: 900% !important;
19356
  }
16848 stevensc 19357
 
16825 efrain 19358
  .mx-wd-md-900p-f {
19359
    max-width: 900% !important;
19360
  }
16848 stevensc 19361
 
16825 efrain 19362
  .mn-wd-md-900p-f {
19363
    min-width: 900% !important;
19364
  }
16848 stevensc 19365
 
16825 efrain 19366
  .wd-md-950 {
19367
    width: 950px;
19368
  }
16848 stevensc 19369
 
16825 efrain 19370
  .wd-md-950p {
19371
    width: 950%;
19372
  }
16848 stevensc 19373
 
16825 efrain 19374
  .mx-wd-md-950p {
19375
    max-width: 950%;
19376
  }
16848 stevensc 19377
 
16825 efrain 19378
  .mn-wd-md-950p {
19379
    min-width: 950%;
19380
  }
16848 stevensc 19381
 
16825 efrain 19382
  .wd-md-950-f {
19383
    width: 950px !important;
19384
  }
16848 stevensc 19385
 
16825 efrain 19386
  .wd-md-950p-f {
19387
    width: 950% !important;
19388
  }
16848 stevensc 19389
 
16825 efrain 19390
  .mx-wd-md-950p-f {
19391
    max-width: 950% !important;
19392
  }
16848 stevensc 19393
 
16825 efrain 19394
  .mn-wd-md-950p-f {
19395
    min-width: 950% !important;
19396
  }
16848 stevensc 19397
 
16825 efrain 19398
  .wd-md-1000 {
19399
    width: 1000px;
19400
  }
16848 stevensc 19401
 
16825 efrain 19402
  .wd-md-1000p {
19403
    width: 1000%;
19404
  }
16848 stevensc 19405
 
16825 efrain 19406
  .mx-wd-md-1000p {
19407
    max-width: 1000%;
19408
  }
16848 stevensc 19409
 
16825 efrain 19410
  .mn-wd-md-1000p {
19411
    min-width: 1000%;
19412
  }
16848 stevensc 19413
 
16825 efrain 19414
  .wd-md-1000-f {
19415
    width: 1000px !important;
19416
  }
16848 stevensc 19417
 
16825 efrain 19418
  .wd-md-1000p-f {
19419
    width: 1000% !important;
19420
  }
16848 stevensc 19421
 
16825 efrain 19422
  .mx-wd-md-1000p-f {
19423
    max-width: 1000% !important;
19424
  }
16848 stevensc 19425
 
16825 efrain 19426
  .mn-wd-md-1000p-f {
19427
    min-width: 1000% !important;
19428
  }
16848 stevensc 19429
 
16825 efrain 19430
  .wd-md-auto {
19431
    width: auto;
19432
  }
16848 stevensc 19433
 
16825 efrain 19434
  .wd-md-auto-f {
19435
    width: auto !important;
19436
  }
16848 stevensc 19437
 
16825 efrain 19438
  .wd-md-120 {
19439
    width: 120px;
19440
  }
19441
}
16848 stevensc 19442
 
16825 efrain 19443
@media (min-width: 992px) {
19444
  .wd-lg-5 {
19445
    width: 5px;
19446
  }
16848 stevensc 19447
 
16825 efrain 19448
  .wd-lg-5p {
19449
    width: 5%;
19450
  }
16848 stevensc 19451
 
16825 efrain 19452
  .mx-wd-lg-5p {
19453
    max-width: 5%;
19454
  }
16848 stevensc 19455
 
16825 efrain 19456
  .mn-wd-lg-5p {
19457
    min-width: 5%;
19458
  }
16848 stevensc 19459
 
16825 efrain 19460
  .wd-lg-5-f {
19461
    width: 5px !important;
19462
  }
16848 stevensc 19463
 
16825 efrain 19464
  .wd-lg-5p-f {
19465
    width: 5% !important;
19466
  }
16848 stevensc 19467
 
16825 efrain 19468
  .mx-wd-lg-5p-f {
19469
    max-width: 5% !important;
19470
  }
16848 stevensc 19471
 
16825 efrain 19472
  .mn-wd-lg-5p-f {
19473
    min-width: 5% !important;
19474
  }
16848 stevensc 19475
 
16825 efrain 19476
  .wd-lg-10 {
19477
    width: 10px;
19478
  }
16848 stevensc 19479
 
16825 efrain 19480
  .wd-lg-10p {
19481
    width: 10%;
19482
  }
16848 stevensc 19483
 
16825 efrain 19484
  .mx-wd-lg-10p {
19485
    max-width: 10%;
19486
  }
16848 stevensc 19487
 
16825 efrain 19488
  .mn-wd-lg-10p {
19489
    min-width: 10%;
19490
  }
16848 stevensc 19491
 
16825 efrain 19492
  .wd-lg-10-f {
19493
    width: 10px !important;
19494
  }
16848 stevensc 19495
 
16825 efrain 19496
  .wd-lg-10p-f {
19497
    width: 10% !important;
19498
  }
16848 stevensc 19499
 
16825 efrain 19500
  .mx-wd-lg-10p-f {
19501
    max-width: 10% !important;
19502
  }
16848 stevensc 19503
 
16825 efrain 19504
  .mn-wd-lg-10p-f {
19505
    min-width: 10% !important;
19506
  }
16848 stevensc 19507
 
16825 efrain 19508
  .wd-lg-15 {
19509
    width: 15px;
19510
  }
16848 stevensc 19511
 
16825 efrain 19512
  .wd-lg-15p {
19513
    width: 15%;
19514
  }
16848 stevensc 19515
 
16825 efrain 19516
  .mx-wd-lg-15p {
19517
    max-width: 15%;
19518
  }
16848 stevensc 19519
 
16825 efrain 19520
  .mn-wd-lg-15p {
19521
    min-width: 15%;
19522
  }
16848 stevensc 19523
 
16825 efrain 19524
  .wd-lg-15-f {
19525
    width: 15px !important;
19526
  }
16848 stevensc 19527
 
16825 efrain 19528
  .wd-lg-15p-f {
19529
    width: 15% !important;
19530
  }
16848 stevensc 19531
 
16825 efrain 19532
  .mx-wd-lg-15p-f {
19533
    max-width: 15% !important;
19534
  }
16848 stevensc 19535
 
16825 efrain 19536
  .mn-wd-lg-15p-f {
19537
    min-width: 15% !important;
19538
  }
16848 stevensc 19539
 
16825 efrain 19540
  .wd-lg-20 {
19541
    width: 20px;
19542
  }
16848 stevensc 19543
 
16825 efrain 19544
  .wd-lg-20p {
19545
    width: 20%;
19546
  }
16848 stevensc 19547
 
16825 efrain 19548
  .mx-wd-lg-20p {
19549
    max-width: 20%;
19550
  }
16848 stevensc 19551
 
16825 efrain 19552
  .mn-wd-lg-20p {
19553
    min-width: 20%;
19554
  }
16848 stevensc 19555
 
16825 efrain 19556
  .wd-lg-20-f {
19557
    width: 20px !important;
19558
  }
16848 stevensc 19559
 
16825 efrain 19560
  .wd-lg-20p-f {
19561
    width: 20% !important;
19562
  }
16848 stevensc 19563
 
16825 efrain 19564
  .mx-wd-lg-20p-f {
19565
    max-width: 20% !important;
19566
  }
16848 stevensc 19567
 
16825 efrain 19568
  .mn-wd-lg-20p-f {
19569
    min-width: 20% !important;
19570
  }
16848 stevensc 19571
 
16825 efrain 19572
  .wd-lg-25 {
19573
    width: 25px;
19574
  }
16848 stevensc 19575
 
16825 efrain 19576
  .wd-lg-25p {
19577
    width: 25%;
19578
  }
16848 stevensc 19579
 
16825 efrain 19580
  .mx-wd-lg-25p {
19581
    max-width: 25%;
19582
  }
16848 stevensc 19583
 
16825 efrain 19584
  .mn-wd-lg-25p {
19585
    min-width: 25%;
19586
  }
16848 stevensc 19587
 
16825 efrain 19588
  .wd-lg-25-f {
19589
    width: 25px !important;
19590
  }
16848 stevensc 19591
 
16825 efrain 19592
  .wd-lg-25p-f {
19593
    width: 25% !important;
19594
  }
16848 stevensc 19595
 
16825 efrain 19596
  .mx-wd-lg-25p-f {
19597
    max-width: 25% !important;
19598
  }
16848 stevensc 19599
 
16825 efrain 19600
  .mn-wd-lg-25p-f {
19601
    min-width: 25% !important;
19602
  }
16848 stevensc 19603
 
16825 efrain 19604
  .wd-lg-30 {
19605
    width: 30px;
19606
  }
16848 stevensc 19607
 
16825 efrain 19608
  .wd-lg-30p {
19609
    width: 30%;
19610
  }
16848 stevensc 19611
 
16825 efrain 19612
  .mx-wd-lg-30p {
19613
    max-width: 30%;
19614
  }
16848 stevensc 19615
 
16825 efrain 19616
  .mn-wd-lg-30p {
19617
    min-width: 30%;
19618
  }
16848 stevensc 19619
 
16825 efrain 19620
  .wd-lg-30-f {
19621
    width: 30px !important;
19622
  }
16848 stevensc 19623
 
16825 efrain 19624
  .wd-lg-30p-f {
19625
    width: 30% !important;
19626
  }
16848 stevensc 19627
 
16825 efrain 19628
  .mx-wd-lg-30p-f {
19629
    max-width: 30% !important;
19630
  }
16848 stevensc 19631
 
16825 efrain 19632
  .mn-wd-lg-30p-f {
19633
    min-width: 30% !important;
19634
  }
16848 stevensc 19635
 
16825 efrain 19636
  .wd-lg-35 {
19637
    width: 35px;
19638
  }
16848 stevensc 19639
 
16825 efrain 19640
  .wd-lg-35p {
19641
    width: 35%;
19642
  }
16848 stevensc 19643
 
16825 efrain 19644
  .mx-wd-lg-35p {
19645
    max-width: 35%;
19646
  }
16848 stevensc 19647
 
16825 efrain 19648
  .mn-wd-lg-35p {
19649
    min-width: 35%;
19650
  }
16848 stevensc 19651
 
16825 efrain 19652
  .wd-lg-35-f {
19653
    width: 35px !important;
19654
  }
16848 stevensc 19655
 
16825 efrain 19656
  .wd-lg-35p-f {
19657
    width: 35% !important;
19658
  }
16848 stevensc 19659
 
16825 efrain 19660
  .mx-wd-lg-35p-f {
19661
    max-width: 35% !important;
19662
  }
16848 stevensc 19663
 
16825 efrain 19664
  .mn-wd-lg-35p-f {
19665
    min-width: 35% !important;
19666
  }
16848 stevensc 19667
 
16825 efrain 19668
  .wd-lg-40 {
19669
    width: 40px;
19670
  }
16848 stevensc 19671
 
16825 efrain 19672
  .wd-lg-40p {
19673
    width: 40%;
19674
  }
16848 stevensc 19675
 
16825 efrain 19676
  .mx-wd-lg-40p {
19677
    max-width: 40%;
19678
  }
16848 stevensc 19679
 
16825 efrain 19680
  .mn-wd-lg-40p {
19681
    min-width: 40%;
19682
  }
16848 stevensc 19683
 
16825 efrain 19684
  .wd-lg-40-f {
19685
    width: 40px !important;
19686
  }
16848 stevensc 19687
 
16825 efrain 19688
  .wd-lg-40p-f {
19689
    width: 40% !important;
19690
  }
16848 stevensc 19691
 
16825 efrain 19692
  .mx-wd-lg-40p-f {
19693
    max-width: 40% !important;
19694
  }
16848 stevensc 19695
 
16825 efrain 19696
  .mn-wd-lg-40p-f {
19697
    min-width: 40% !important;
19698
  }
16848 stevensc 19699
 
16825 efrain 19700
  .wd-lg-45 {
19701
    width: 45px;
19702
  }
16848 stevensc 19703
 
16825 efrain 19704
  .wd-lg-45p {
19705
    width: 45%;
19706
  }
16848 stevensc 19707
 
16825 efrain 19708
  .mx-wd-lg-45p {
19709
    max-width: 45%;
19710
  }
16848 stevensc 19711
 
16825 efrain 19712
  .mn-wd-lg-45p {
19713
    min-width: 45%;
19714
  }
16848 stevensc 19715
 
16825 efrain 19716
  .wd-lg-45-f {
19717
    width: 45px !important;
19718
  }
16848 stevensc 19719
 
16825 efrain 19720
  .wd-lg-45p-f {
19721
    width: 45% !important;
19722
  }
16848 stevensc 19723
 
16825 efrain 19724
  .mx-wd-lg-45p-f {
19725
    max-width: 45% !important;
19726
  }
16848 stevensc 19727
 
16825 efrain 19728
  .mn-wd-lg-45p-f {
19729
    min-width: 45% !important;
19730
  }
16848 stevensc 19731
 
16825 efrain 19732
  .wd-lg-50 {
19733
    width: 50px;
19734
  }
16848 stevensc 19735
 
16825 efrain 19736
  .wd-lg-50p {
19737
    width: 50%;
19738
  }
16848 stevensc 19739
 
16825 efrain 19740
  .mx-wd-lg-50p {
19741
    max-width: 50%;
19742
  }
16848 stevensc 19743
 
16825 efrain 19744
  .mn-wd-lg-50p {
19745
    min-width: 50%;
19746
  }
16848 stevensc 19747
 
16825 efrain 19748
  .wd-lg-50-f {
19749
    width: 50px !important;
19750
  }
16848 stevensc 19751
 
16825 efrain 19752
  .wd-lg-50p-f {
19753
    width: 50% !important;
19754
  }
16848 stevensc 19755
 
16825 efrain 19756
  .mx-wd-lg-50p-f {
19757
    max-width: 50% !important;
19758
  }
16848 stevensc 19759
 
16825 efrain 19760
  .mn-wd-lg-50p-f {
19761
    min-width: 50% !important;
19762
  }
16848 stevensc 19763
 
16825 efrain 19764
  .wd-lg-55 {
19765
    width: 55px;
19766
  }
16848 stevensc 19767
 
16825 efrain 19768
  .wd-lg-55p {
19769
    width: 55%;
19770
  }
16848 stevensc 19771
 
16825 efrain 19772
  .mx-wd-lg-55p {
19773
    max-width: 55%;
19774
  }
16848 stevensc 19775
 
16825 efrain 19776
  .mn-wd-lg-55p {
19777
    min-width: 55%;
19778
  }
16848 stevensc 19779
 
16825 efrain 19780
  .wd-lg-55-f {
19781
    width: 55px !important;
19782
  }
16848 stevensc 19783
 
16825 efrain 19784
  .wd-lg-55p-f {
19785
    width: 55% !important;
19786
  }
16848 stevensc 19787
 
16825 efrain 19788
  .mx-wd-lg-55p-f {
19789
    max-width: 55% !important;
19790
  }
16848 stevensc 19791
 
16825 efrain 19792
  .mn-wd-lg-55p-f {
19793
    min-width: 55% !important;
19794
  }
16848 stevensc 19795
 
16825 efrain 19796
  .wd-lg-60 {
19797
    width: 60px;
19798
  }
16848 stevensc 19799
 
16825 efrain 19800
  .wd-lg-60p {
19801
    width: 60%;
19802
  }
16848 stevensc 19803
 
16825 efrain 19804
  .mx-wd-lg-60p {
19805
    max-width: 60%;
19806
  }
16848 stevensc 19807
 
16825 efrain 19808
  .mn-wd-lg-60p {
19809
    min-width: 60%;
19810
  }
16848 stevensc 19811
 
16825 efrain 19812
  .wd-lg-60-f {
19813
    width: 60px !important;
19814
  }
16848 stevensc 19815
 
16825 efrain 19816
  .wd-lg-60p-f {
19817
    width: 60% !important;
19818
  }
16848 stevensc 19819
 
16825 efrain 19820
  .mx-wd-lg-60p-f {
19821
    max-width: 60% !important;
19822
  }
16848 stevensc 19823
 
16825 efrain 19824
  .mn-wd-lg-60p-f {
19825
    min-width: 60% !important;
19826
  }
16848 stevensc 19827
 
16825 efrain 19828
  .wd-lg-65 {
19829
    width: 65px;
19830
  }
16848 stevensc 19831
 
16825 efrain 19832
  .wd-lg-65p {
19833
    width: 65%;
19834
  }
16848 stevensc 19835
 
16825 efrain 19836
  .mx-wd-lg-65p {
19837
    max-width: 65%;
19838
  }
16848 stevensc 19839
 
16825 efrain 19840
  .mn-wd-lg-65p {
19841
    min-width: 65%;
19842
  }
16848 stevensc 19843
 
16825 efrain 19844
  .wd-lg-65-f {
19845
    width: 65px !important;
19846
  }
16848 stevensc 19847
 
16825 efrain 19848
  .wd-lg-65p-f {
19849
    width: 65% !important;
19850
  }
16848 stevensc 19851
 
16825 efrain 19852
  .mx-wd-lg-65p-f {
19853
    max-width: 65% !important;
19854
  }
16848 stevensc 19855
 
16825 efrain 19856
  .mn-wd-lg-65p-f {
19857
    min-width: 65% !important;
19858
  }
16848 stevensc 19859
 
16825 efrain 19860
  .wd-lg-70 {
19861
    width: 70px;
19862
  }
16848 stevensc 19863
 
16825 efrain 19864
  .wd-lg-70p {
19865
    width: 70%;
19866
  }
16848 stevensc 19867
 
16825 efrain 19868
  .mx-wd-lg-70p {
19869
    max-width: 70%;
19870
  }
16848 stevensc 19871
 
16825 efrain 19872
  .mn-wd-lg-70p {
19873
    min-width: 70%;
19874
  }
16848 stevensc 19875
 
16825 efrain 19876
  .wd-lg-70-f {
19877
    width: 70px !important;
19878
  }
16848 stevensc 19879
 
16825 efrain 19880
  .wd-lg-70p-f {
19881
    width: 70% !important;
19882
  }
16848 stevensc 19883
 
16825 efrain 19884
  .mx-wd-lg-70p-f {
19885
    max-width: 70% !important;
19886
  }
16848 stevensc 19887
 
16825 efrain 19888
  .mn-wd-lg-70p-f {
19889
    min-width: 70% !important;
19890
  }
16848 stevensc 19891
 
16825 efrain 19892
  .wd-lg-75 {
19893
    width: 75px;
19894
  }
16848 stevensc 19895
 
16825 efrain 19896
  .wd-lg-75p {
19897
    width: 75%;
19898
  }
16848 stevensc 19899
 
16825 efrain 19900
  .mx-wd-lg-75p {
19901
    max-width: 75%;
19902
  }
16848 stevensc 19903
 
16825 efrain 19904
  .mn-wd-lg-75p {
19905
    min-width: 75%;
19906
  }
16848 stevensc 19907
 
16825 efrain 19908
  .wd-lg-75-f {
19909
    width: 75px !important;
19910
  }
16848 stevensc 19911
 
16825 efrain 19912
  .wd-lg-75p-f {
19913
    width: 75% !important;
19914
  }
16848 stevensc 19915
 
16825 efrain 19916
  .mx-wd-lg-75p-f {
19917
    max-width: 75% !important;
19918
  }
16848 stevensc 19919
 
16825 efrain 19920
  .mn-wd-lg-75p-f {
19921
    min-width: 75% !important;
19922
  }
16848 stevensc 19923
 
16825 efrain 19924
  .wd-lg-80 {
19925
    width: 80px;
19926
  }
16848 stevensc 19927
 
16825 efrain 19928
  .wd-lg-80p {
19929
    width: 80%;
19930
  }
16848 stevensc 19931
 
16825 efrain 19932
  .mx-wd-lg-80p {
19933
    max-width: 80%;
19934
  }
16848 stevensc 19935
 
16825 efrain 19936
  .mn-wd-lg-80p {
19937
    min-width: 80%;
19938
  }
16848 stevensc 19939
 
16825 efrain 19940
  .wd-lg-80-f {
19941
    width: 80px !important;
19942
  }
16848 stevensc 19943
 
16825 efrain 19944
  .wd-lg-80p-f {
19945
    width: 80% !important;
19946
  }
16848 stevensc 19947
 
16825 efrain 19948
  .mx-wd-lg-80p-f {
19949
    max-width: 80% !important;
19950
  }
16848 stevensc 19951
 
16825 efrain 19952
  .mn-wd-lg-80p-f {
19953
    min-width: 80% !important;
19954
  }
16848 stevensc 19955
 
16825 efrain 19956
  .wd-lg-85 {
19957
    width: 85px;
19958
  }
16848 stevensc 19959
 
16825 efrain 19960
  .wd-lg-85p {
19961
    width: 85%;
19962
  }
16848 stevensc 19963
 
16825 efrain 19964
  .mx-wd-lg-85p {
19965
    max-width: 85%;
19966
  }
16848 stevensc 19967
 
16825 efrain 19968
  .mn-wd-lg-85p {
19969
    min-width: 85%;
19970
  }
16848 stevensc 19971
 
16825 efrain 19972
  .wd-lg-85-f {
19973
    width: 85px !important;
19974
  }
16848 stevensc 19975
 
16825 efrain 19976
  .wd-lg-85p-f {
19977
    width: 85% !important;
19978
  }
16848 stevensc 19979
 
16825 efrain 19980
  .mx-wd-lg-85p-f {
19981
    max-width: 85% !important;
19982
  }
16848 stevensc 19983
 
16825 efrain 19984
  .mn-wd-lg-85p-f {
19985
    min-width: 85% !important;
19986
  }
16848 stevensc 19987
 
16825 efrain 19988
  .wd-lg-90 {
19989
    width: 90px;
19990
  }
16848 stevensc 19991
 
16825 efrain 19992
  .wd-lg-90p {
19993
    width: 90%;
19994
  }
16848 stevensc 19995
 
16825 efrain 19996
  .mx-wd-lg-90p {
19997
    max-width: 90%;
19998
  }
16848 stevensc 19999
 
16825 efrain 20000
  .mn-wd-lg-90p {
20001
    min-width: 90%;
20002
  }
16848 stevensc 20003
 
16825 efrain 20004
  .wd-lg-90-f {
20005
    width: 90px !important;
20006
  }
16848 stevensc 20007
 
16825 efrain 20008
  .wd-lg-90p-f {
20009
    width: 90% !important;
20010
  }
16848 stevensc 20011
 
16825 efrain 20012
  .mx-wd-lg-90p-f {
20013
    max-width: 90% !important;
20014
  }
16848 stevensc 20015
 
16825 efrain 20016
  .mn-wd-lg-90p-f {
20017
    min-width: 90% !important;
20018
  }
16848 stevensc 20019
 
16825 efrain 20020
  .wd-lg-95 {
20021
    width: 95px;
20022
  }
16848 stevensc 20023
 
16825 efrain 20024
  .wd-lg-95p {
20025
    width: 95%;
20026
  }
16848 stevensc 20027
 
16825 efrain 20028
  .mx-wd-lg-95p {
20029
    max-width: 95%;
20030
  }
16848 stevensc 20031
 
16825 efrain 20032
  .mn-wd-lg-95p {
20033
    min-width: 95%;
20034
  }
16848 stevensc 20035
 
16825 efrain 20036
  .wd-lg-95-f {
20037
    width: 95px !important;
20038
  }
16848 stevensc 20039
 
16825 efrain 20040
  .wd-lg-95p-f {
20041
    width: 95% !important;
20042
  }
16848 stevensc 20043
 
16825 efrain 20044
  .mx-wd-lg-95p-f {
20045
    max-width: 95% !important;
20046
  }
16848 stevensc 20047
 
16825 efrain 20048
  .mn-wd-lg-95p-f {
20049
    min-width: 95% !important;
20050
  }
16848 stevensc 20051
 
16825 efrain 20052
  .wd-lg-100 {
20053
    width: 100px;
20054
  }
16848 stevensc 20055
 
16825 efrain 20056
  .wd-lg-100p {
20057
    width: 100%;
20058
  }
16848 stevensc 20059
 
16825 efrain 20060
  .mx-wd-lg-100p {
20061
    max-width: 100%;
20062
  }
16848 stevensc 20063
 
16825 efrain 20064
  .mn-wd-lg-100p {
20065
    min-width: 100%;
20066
  }
16848 stevensc 20067
 
16825 efrain 20068
  .wd-lg-100-f {
20069
    width: 100px !important;
20070
  }
16848 stevensc 20071
 
16825 efrain 20072
  .wd-lg-100p-f {
20073
    width: 100% !important;
20074
  }
16848 stevensc 20075
 
16825 efrain 20076
  .mx-wd-lg-100p-f {
20077
    max-width: 100% !important;
20078
  }
16848 stevensc 20079
 
16825 efrain 20080
  .mn-wd-lg-100p-f {
20081
    min-width: 100% !important;
20082
  }
16848 stevensc 20083
 
16825 efrain 20084
  .wd-lg-150 {
20085
    width: 150px;
20086
  }
16848 stevensc 20087
 
16825 efrain 20088
  .wd-lg-150p {
20089
    width: 150%;
20090
  }
16848 stevensc 20091
 
16825 efrain 20092
  .mx-wd-lg-150p {
20093
    max-width: 150%;
20094
  }
16848 stevensc 20095
 
16825 efrain 20096
  .mn-wd-lg-150p {
20097
    min-width: 150%;
20098
  }
16848 stevensc 20099
 
16825 efrain 20100
  .wd-lg-150-f {
20101
    width: 150px !important;
20102
  }
16848 stevensc 20103
 
16825 efrain 20104
  .wd-lg-150p-f {
20105
    width: 150% !important;
20106
  }
16848 stevensc 20107
 
16825 efrain 20108
  .mx-wd-lg-150p-f {
20109
    max-width: 150% !important;
20110
  }
16848 stevensc 20111
 
16825 efrain 20112
  .mn-wd-lg-150p-f {
20113
    min-width: 150% !important;
20114
  }
16848 stevensc 20115
 
16825 efrain 20116
  .wd-lg-200 {
20117
    width: 200px;
20118
  }
16848 stevensc 20119
 
16825 efrain 20120
  .wd-lg-200p {
20121
    width: 200%;
20122
  }
16848 stevensc 20123
 
16825 efrain 20124
  .mx-wd-lg-200p {
20125
    max-width: 200%;
20126
  }
16848 stevensc 20127
 
16825 efrain 20128
  .mn-wd-lg-200p {
20129
    min-width: 200%;
20130
  }
16848 stevensc 20131
 
16825 efrain 20132
  .wd-lg-200-f {
20133
    width: 200px !important;
20134
  }
16848 stevensc 20135
 
16825 efrain 20136
  .wd-lg-200p-f {
20137
    width: 200% !important;
20138
  }
16848 stevensc 20139
 
16825 efrain 20140
  .mx-wd-lg-200p-f {
20141
    max-width: 200% !important;
20142
  }
16848 stevensc 20143
 
16825 efrain 20144
  .mn-wd-lg-200p-f {
20145
    min-width: 200% !important;
20146
  }
16848 stevensc 20147
 
16825 efrain 20148
  .wd-lg-250 {
20149
    width: 250px;
20150
  }
16848 stevensc 20151
 
16825 efrain 20152
  .wd-lg-250p {
20153
    width: 250%;
20154
  }
16848 stevensc 20155
 
16825 efrain 20156
  .mx-wd-lg-250p {
20157
    max-width: 250%;
20158
  }
16848 stevensc 20159
 
16825 efrain 20160
  .mn-wd-lg-250p {
20161
    min-width: 250%;
20162
  }
16848 stevensc 20163
 
16825 efrain 20164
  .wd-lg-250-f {
20165
    width: 250px !important;
20166
  }
16848 stevensc 20167
 
16825 efrain 20168
  .wd-lg-250p-f {
20169
    width: 250% !important;
20170
  }
16848 stevensc 20171
 
16825 efrain 20172
  .mx-wd-lg-250p-f {
20173
    max-width: 250% !important;
20174
  }
16848 stevensc 20175
 
16825 efrain 20176
  .mn-wd-lg-250p-f {
20177
    min-width: 250% !important;
20178
  }
16848 stevensc 20179
 
16825 efrain 20180
  .wd-lg-300 {
20181
    width: 300px;
20182
  }
16848 stevensc 20183
 
16825 efrain 20184
  .wd-lg-300p {
20185
    width: 300%;
20186
  }
16848 stevensc 20187
 
16825 efrain 20188
  .mx-wd-lg-300p {
20189
    max-width: 300%;
20190
  }
16848 stevensc 20191
 
16825 efrain 20192
  .mn-wd-lg-300p {
20193
    min-width: 300%;
20194
  }
16848 stevensc 20195
 
16825 efrain 20196
  .wd-lg-300-f {
20197
    width: 300px !important;
20198
  }
16848 stevensc 20199
 
16825 efrain 20200
  .wd-lg-300p-f {
20201
    width: 300% !important;
20202
  }
16848 stevensc 20203
 
16825 efrain 20204
  .mx-wd-lg-300p-f {
20205
    max-width: 300% !important;
20206
  }
16848 stevensc 20207
 
16825 efrain 20208
  .mn-wd-lg-300p-f {
20209
    min-width: 300% !important;
20210
  }
16848 stevensc 20211
 
16825 efrain 20212
  .wd-lg-350 {
20213
    width: 350px;
20214
  }
16848 stevensc 20215
 
16825 efrain 20216
  .wd-lg-350p {
20217
    width: 350%;
20218
  }
16848 stevensc 20219
 
16825 efrain 20220
  .mx-wd-lg-350p {
20221
    max-width: 350%;
20222
  }
16848 stevensc 20223
 
16825 efrain 20224
  .mn-wd-lg-350p {
20225
    min-width: 350%;
20226
  }
16848 stevensc 20227
 
16825 efrain 20228
  .wd-lg-350-f {
20229
    width: 350px !important;
20230
  }
16848 stevensc 20231
 
16825 efrain 20232
  .wd-lg-350p-f {
20233
    width: 350% !important;
20234
  }
16848 stevensc 20235
 
16825 efrain 20236
  .mx-wd-lg-350p-f {
20237
    max-width: 350% !important;
20238
  }
16848 stevensc 20239
 
16825 efrain 20240
  .mn-wd-lg-350p-f {
20241
    min-width: 350% !important;
20242
  }
16848 stevensc 20243
 
16825 efrain 20244
  .wd-lg-400 {
20245
    width: 400px;
20246
  }
16848 stevensc 20247
 
16825 efrain 20248
  .wd-lg-400p {
20249
    width: 400%;
20250
  }
16848 stevensc 20251
 
16825 efrain 20252
  .mx-wd-lg-400p {
20253
    max-width: 400%;
20254
  }
16848 stevensc 20255
 
16825 efrain 20256
  .mn-wd-lg-400p {
20257
    min-width: 400%;
20258
  }
16848 stevensc 20259
 
16825 efrain 20260
  .wd-lg-400-f {
20261
    width: 400px !important;
20262
  }
16848 stevensc 20263
 
16825 efrain 20264
  .wd-lg-400p-f {
20265
    width: 400% !important;
20266
  }
16848 stevensc 20267
 
16825 efrain 20268
  .mx-wd-lg-400p-f {
20269
    max-width: 400% !important;
20270
  }
16848 stevensc 20271
 
16825 efrain 20272
  .mn-wd-lg-400p-f {
20273
    min-width: 400% !important;
20274
  }
16848 stevensc 20275
 
16825 efrain 20276
  .wd-lg-450 {
20277
    width: 450px;
20278
  }
16848 stevensc 20279
 
16825 efrain 20280
  .wd-lg-450p {
20281
    width: 450%;
20282
  }
16848 stevensc 20283
 
16825 efrain 20284
  .mx-wd-lg-450p {
20285
    max-width: 450%;
20286
  }
16848 stevensc 20287
 
16825 efrain 20288
  .mn-wd-lg-450p {
20289
    min-width: 450%;
20290
  }
16848 stevensc 20291
 
16825 efrain 20292
  .wd-lg-450-f {
20293
    width: 450px !important;
20294
  }
16848 stevensc 20295
 
16825 efrain 20296
  .wd-lg-450p-f {
20297
    width: 450% !important;
20298
  }
16848 stevensc 20299
 
16825 efrain 20300
  .mx-wd-lg-450p-f {
20301
    max-width: 450% !important;
20302
  }
16848 stevensc 20303
 
16825 efrain 20304
  .mn-wd-lg-450p-f {
20305
    min-width: 450% !important;
20306
  }
16848 stevensc 20307
 
16825 efrain 20308
  .wd-lg-500 {
20309
    width: 500px;
20310
  }
16848 stevensc 20311
 
16825 efrain 20312
  .wd-lg-500p {
20313
    width: 500%;
20314
  }
16848 stevensc 20315
 
16825 efrain 20316
  .mx-wd-lg-500p {
20317
    max-width: 500%;
20318
  }
16848 stevensc 20319
 
16825 efrain 20320
  .mn-wd-lg-500p {
20321
    min-width: 500%;
20322
  }
16848 stevensc 20323
 
16825 efrain 20324
  .wd-lg-500-f {
20325
    width: 500px !important;
20326
  }
16848 stevensc 20327
 
16825 efrain 20328
  .wd-lg-500p-f {
20329
    width: 500% !important;
20330
  }
16848 stevensc 20331
 
16825 efrain 20332
  .mx-wd-lg-500p-f {
20333
    max-width: 500% !important;
20334
  }
16848 stevensc 20335
 
16825 efrain 20336
  .mn-wd-lg-500p-f {
20337
    min-width: 500% !important;
20338
  }
16848 stevensc 20339
 
16825 efrain 20340
  .wd-lg-550 {
20341
    width: 550px;
20342
  }
16848 stevensc 20343
 
16825 efrain 20344
  .wd-lg-550p {
20345
    width: 550%;
20346
  }
16848 stevensc 20347
 
16825 efrain 20348
  .mx-wd-lg-550p {
20349
    max-width: 550%;
20350
  }
16848 stevensc 20351
 
16825 efrain 20352
  .mn-wd-lg-550p {
20353
    min-width: 550%;
20354
  }
16848 stevensc 20355
 
16825 efrain 20356
  .wd-lg-550-f {
20357
    width: 550px !important;
20358
  }
16848 stevensc 20359
 
16825 efrain 20360
  .wd-lg-550p-f {
20361
    width: 550% !important;
20362
  }
16848 stevensc 20363
 
16825 efrain 20364
  .mx-wd-lg-550p-f {
20365
    max-width: 550% !important;
20366
  }
16848 stevensc 20367
 
16825 efrain 20368
  .mn-wd-lg-550p-f {
20369
    min-width: 550% !important;
20370
  }
16848 stevensc 20371
 
16825 efrain 20372
  .wd-lg-600 {
20373
    width: 600px;
20374
  }
16848 stevensc 20375
 
16825 efrain 20376
  .wd-lg-600p {
20377
    width: 600%;
20378
  }
16848 stevensc 20379
 
16825 efrain 20380
  .mx-wd-lg-600p {
20381
    max-width: 600%;
20382
  }
16848 stevensc 20383
 
16825 efrain 20384
  .mn-wd-lg-600p {
20385
    min-width: 600%;
20386
  }
16848 stevensc 20387
 
16825 efrain 20388
  .wd-lg-600-f {
20389
    width: 600px !important;
20390
  }
16848 stevensc 20391
 
16825 efrain 20392
  .wd-lg-600p-f {
20393
    width: 600% !important;
20394
  }
16848 stevensc 20395
 
16825 efrain 20396
  .mx-wd-lg-600p-f {
20397
    max-width: 600% !important;
20398
  }
16848 stevensc 20399
 
16825 efrain 20400
  .mn-wd-lg-600p-f {
20401
    min-width: 600% !important;
20402
  }
16848 stevensc 20403
 
16825 efrain 20404
  .wd-lg-650 {
20405
    width: 650px;
20406
  }
16848 stevensc 20407
 
16825 efrain 20408
  .wd-lg-650p {
20409
    width: 650%;
20410
  }
16848 stevensc 20411
 
16825 efrain 20412
  .mx-wd-lg-650p {
20413
    max-width: 650%;
20414
  }
16848 stevensc 20415
 
16825 efrain 20416
  .mn-wd-lg-650p {
20417
    min-width: 650%;
20418
  }
16848 stevensc 20419
 
16825 efrain 20420
  .wd-lg-650-f {
20421
    width: 650px !important;
20422
  }
16848 stevensc 20423
 
16825 efrain 20424
  .wd-lg-650p-f {
20425
    width: 650% !important;
20426
  }
16848 stevensc 20427
 
16825 efrain 20428
  .mx-wd-lg-650p-f {
20429
    max-width: 650% !important;
20430
  }
16848 stevensc 20431
 
16825 efrain 20432
  .mn-wd-lg-650p-f {
20433
    min-width: 650% !important;
20434
  }
16848 stevensc 20435
 
16825 efrain 20436
  .wd-lg-700 {
20437
    width: 700px;
20438
  }
16848 stevensc 20439
 
16825 efrain 20440
  .wd-lg-700p {
20441
    width: 700%;
20442
  }
16848 stevensc 20443
 
16825 efrain 20444
  .mx-wd-lg-700p {
20445
    max-width: 700%;
20446
  }
16848 stevensc 20447
 
16825 efrain 20448
  .mn-wd-lg-700p {
20449
    min-width: 700%;
20450
  }
16848 stevensc 20451
 
16825 efrain 20452
  .wd-lg-700-f {
20453
    width: 700px !important;
20454
  }
16848 stevensc 20455
 
16825 efrain 20456
  .wd-lg-700p-f {
20457
    width: 700% !important;
20458
  }
16848 stevensc 20459
 
16825 efrain 20460
  .mx-wd-lg-700p-f {
20461
    max-width: 700% !important;
20462
  }
16848 stevensc 20463
 
16825 efrain 20464
  .mn-wd-lg-700p-f {
20465
    min-width: 700% !important;
20466
  }
16848 stevensc 20467
 
16825 efrain 20468
  .wd-lg-750 {
20469
    width: 750px;
20470
  }
16848 stevensc 20471
 
16825 efrain 20472
  .wd-lg-750p {
20473
    width: 750%;
20474
  }
16848 stevensc 20475
 
16825 efrain 20476
  .mx-wd-lg-750p {
20477
    max-width: 750%;
20478
  }
16848 stevensc 20479
 
16825 efrain 20480
  .mn-wd-lg-750p {
20481
    min-width: 750%;
20482
  }
16848 stevensc 20483
 
16825 efrain 20484
  .wd-lg-750-f {
20485
    width: 750px !important;
20486
  }
16848 stevensc 20487
 
16825 efrain 20488
  .wd-lg-750p-f {
20489
    width: 750% !important;
20490
  }
16848 stevensc 20491
 
16825 efrain 20492
  .mx-wd-lg-750p-f {
20493
    max-width: 750% !important;
20494
  }
16848 stevensc 20495
 
16825 efrain 20496
  .mn-wd-lg-750p-f {
20497
    min-width: 750% !important;
20498
  }
16848 stevensc 20499
 
16825 efrain 20500
  .wd-lg-800 {
20501
    width: 800px;
20502
  }
16848 stevensc 20503
 
16825 efrain 20504
  .wd-lg-800p {
20505
    width: 800%;
20506
  }
16848 stevensc 20507
 
16825 efrain 20508
  .mx-wd-lg-800p {
20509
    max-width: 800%;
20510
  }
16848 stevensc 20511
 
16825 efrain 20512
  .mn-wd-lg-800p {
20513
    min-width: 800%;
20514
  }
16848 stevensc 20515
 
16825 efrain 20516
  .wd-lg-800-f {
20517
    width: 800px !important;
20518
  }
16848 stevensc 20519
 
16825 efrain 20520
  .wd-lg-800p-f {
20521
    width: 800% !important;
20522
  }
16848 stevensc 20523
 
16825 efrain 20524
  .mx-wd-lg-800p-f {
20525
    max-width: 800% !important;
20526
  }
16848 stevensc 20527
 
16825 efrain 20528
  .mn-wd-lg-800p-f {
20529
    min-width: 800% !important;
20530
  }
16848 stevensc 20531
 
16825 efrain 20532
  .wd-lg-850 {
20533
    width: 850px;
20534
  }
16848 stevensc 20535
 
16825 efrain 20536
  .wd-lg-850p {
20537
    width: 850%;
20538
  }
16848 stevensc 20539
 
16825 efrain 20540
  .mx-wd-lg-850p {
20541
    max-width: 850%;
20542
  }
16848 stevensc 20543
 
16825 efrain 20544
  .mn-wd-lg-850p {
20545
    min-width: 850%;
20546
  }
16848 stevensc 20547
 
16825 efrain 20548
  .wd-lg-850-f {
20549
    width: 850px !important;
20550
  }
16848 stevensc 20551
 
16825 efrain 20552
  .wd-lg-850p-f {
20553
    width: 850% !important;
20554
  }
16848 stevensc 20555
 
16825 efrain 20556
  .mx-wd-lg-850p-f {
20557
    max-width: 850% !important;
20558
  }
16848 stevensc 20559
 
16825 efrain 20560
  .mn-wd-lg-850p-f {
20561
    min-width: 850% !important;
20562
  }
16848 stevensc 20563
 
16825 efrain 20564
  .wd-lg-900 {
20565
    width: 900px;
20566
  }
16848 stevensc 20567
 
16825 efrain 20568
  .wd-lg-900p {
20569
    width: 900%;
20570
  }
16848 stevensc 20571
 
16825 efrain 20572
  .mx-wd-lg-900p {
20573
    max-width: 900%;
20574
  }
16848 stevensc 20575
 
16825 efrain 20576
  .mn-wd-lg-900p {
20577
    min-width: 900%;
20578
  }
16848 stevensc 20579
 
16825 efrain 20580
  .wd-lg-900-f {
20581
    width: 900px !important;
20582
  }
16848 stevensc 20583
 
16825 efrain 20584
  .wd-lg-900p-f {
20585
    width: 900% !important;
20586
  }
16848 stevensc 20587
 
16825 efrain 20588
  .mx-wd-lg-900p-f {
20589
    max-width: 900% !important;
20590
  }
16848 stevensc 20591
 
16825 efrain 20592
  .mn-wd-lg-900p-f {
20593
    min-width: 900% !important;
20594
  }
16848 stevensc 20595
 
16825 efrain 20596
  .wd-lg-950 {
20597
    width: 950px;
20598
  }
16848 stevensc 20599
 
16825 efrain 20600
  .wd-lg-950p {
20601
    width: 950%;
20602
  }
16848 stevensc 20603
 
16825 efrain 20604
  .mx-wd-lg-950p {
20605
    max-width: 950%;
20606
  }
16848 stevensc 20607
 
16825 efrain 20608
  .mn-wd-lg-950p {
20609
    min-width: 950%;
20610
  }
16848 stevensc 20611
 
16825 efrain 20612
  .wd-lg-950-f {
20613
    width: 950px !important;
20614
  }
16848 stevensc 20615
 
16825 efrain 20616
  .wd-lg-950p-f {
20617
    width: 950% !important;
20618
  }
16848 stevensc 20619
 
16825 efrain 20620
  .mx-wd-lg-950p-f {
20621
    max-width: 950% !important;
20622
  }
16848 stevensc 20623
 
16825 efrain 20624
  .mn-wd-lg-950p-f {
20625
    min-width: 950% !important;
20626
  }
16848 stevensc 20627
 
16825 efrain 20628
  .wd-lg-1000 {
20629
    width: 1000px;
20630
  }
16848 stevensc 20631
 
16825 efrain 20632
  .wd-lg-1000p {
20633
    width: 1000%;
20634
  }
16848 stevensc 20635
 
16825 efrain 20636
  .mx-wd-lg-1000p {
20637
    max-width: 1000%;
20638
  }
16848 stevensc 20639
 
16825 efrain 20640
  .mn-wd-lg-1000p {
20641
    min-width: 1000%;
20642
  }
16848 stevensc 20643
 
16825 efrain 20644
  .wd-lg-1000-f {
20645
    width: 1000px !important;
20646
  }
16848 stevensc 20647
 
16825 efrain 20648
  .wd-lg-1000p-f {
20649
    width: 1000% !important;
20650
  }
16848 stevensc 20651
 
16825 efrain 20652
  .mx-wd-lg-1000p-f {
20653
    max-width: 1000% !important;
20654
  }
16848 stevensc 20655
 
16825 efrain 20656
  .mn-wd-lg-1000p-f {
20657
    min-width: 1000% !important;
20658
  }
16848 stevensc 20659
 
16825 efrain 20660
  .wd-lg-auto {
20661
    width: auto;
20662
  }
16848 stevensc 20663
 
16825 efrain 20664
  .wd-lg-auto-f {
20665
    width: auto !important;
20666
  }
20667
}
16848 stevensc 20668
 
16825 efrain 20669
@media (min-width: 1200px) {
20670
  .wd-xl-5 {
20671
    width: 5px;
20672
  }
16848 stevensc 20673
 
16825 efrain 20674
  .wd-xl-5p {
20675
    width: 5%;
20676
  }
16848 stevensc 20677
 
16825 efrain 20678
  .mx-wd-xl-5p {
20679
    max-width: 5%;
20680
  }
16848 stevensc 20681
 
16825 efrain 20682
  .mn-wd-xl-5p {
20683
    min-width: 5%;
20684
  }
16848 stevensc 20685
 
16825 efrain 20686
  .wd-xl-5-f {
20687
    width: 5px !important;
20688
  }
16848 stevensc 20689
 
16825 efrain 20690
  .wd-xl-5p-f {
20691
    width: 5% !important;
20692
  }
16848 stevensc 20693
 
16825 efrain 20694
  .mx-wd-xl-5p-f {
20695
    max-width: 5% !important;
20696
  }
16848 stevensc 20697
 
16825 efrain 20698
  .mn-wd-xl-5p-f {
20699
    min-width: 5% !important;
20700
  }
16848 stevensc 20701
 
16825 efrain 20702
  .wd-xl-10 {
20703
    width: 10px;
20704
  }
16848 stevensc 20705
 
16825 efrain 20706
  .wd-xl-10p {
20707
    width: 10%;
20708
  }
16848 stevensc 20709
 
16825 efrain 20710
  .mx-wd-xl-10p {
20711
    max-width: 10%;
20712
  }
16848 stevensc 20713
 
16825 efrain 20714
  .mn-wd-xl-10p {
20715
    min-width: 10%;
20716
  }
16848 stevensc 20717
 
16825 efrain 20718
  .wd-xl-10-f {
20719
    width: 10px !important;
20720
  }
16848 stevensc 20721
 
16825 efrain 20722
  .wd-xl-10p-f {
20723
    width: 10% !important;
20724
  }
16848 stevensc 20725
 
16825 efrain 20726
  .mx-wd-xl-10p-f {
20727
    max-width: 10% !important;
20728
  }
16848 stevensc 20729
 
16825 efrain 20730
  .mn-wd-xl-10p-f {
20731
    min-width: 10% !important;
20732
  }
16848 stevensc 20733
 
16825 efrain 20734
  .wd-xl-15 {
20735
    width: 15px;
20736
  }
16848 stevensc 20737
 
16825 efrain 20738
  .wd-xl-15p {
20739
    width: 15%;
20740
  }
16848 stevensc 20741
 
16825 efrain 20742
  .mx-wd-xl-15p {
20743
    max-width: 15%;
20744
  }
16848 stevensc 20745
 
16825 efrain 20746
  .mn-wd-xl-15p {
20747
    min-width: 15%;
20748
  }
16848 stevensc 20749
 
16825 efrain 20750
  .wd-xl-15-f {
20751
    width: 15px !important;
20752
  }
16848 stevensc 20753
 
16825 efrain 20754
  .wd-xl-15p-f {
20755
    width: 15% !important;
20756
  }
16848 stevensc 20757
 
16825 efrain 20758
  .mx-wd-xl-15p-f {
20759
    max-width: 15% !important;
20760
  }
16848 stevensc 20761
 
16825 efrain 20762
  .mn-wd-xl-15p-f {
20763
    min-width: 15% !important;
20764
  }
16848 stevensc 20765
 
16825 efrain 20766
  .wd-xl-20 {
20767
    width: 20px;
20768
  }
16848 stevensc 20769
 
16825 efrain 20770
  .wd-xl-20p {
20771
    width: 20%;
20772
  }
16848 stevensc 20773
 
16825 efrain 20774
  .mx-wd-xl-20p {
20775
    max-width: 20%;
20776
  }
16848 stevensc 20777
 
16825 efrain 20778
  .mn-wd-xl-20p {
20779
    min-width: 20%;
20780
  }
16848 stevensc 20781
 
16825 efrain 20782
  .wd-xl-20-f {
20783
    width: 20px !important;
20784
  }
16848 stevensc 20785
 
16825 efrain 20786
  .wd-xl-20p-f {
20787
    width: 20% !important;
20788
  }
16848 stevensc 20789
 
16825 efrain 20790
  .mx-wd-xl-20p-f {
20791
    max-width: 20% !important;
20792
  }
16848 stevensc 20793
 
16825 efrain 20794
  .mn-wd-xl-20p-f {
20795
    min-width: 20% !important;
20796
  }
16848 stevensc 20797
 
16825 efrain 20798
  .wd-xl-25 {
20799
    width: 25px;
20800
  }
16848 stevensc 20801
 
16825 efrain 20802
  .wd-xl-25p {
20803
    width: 25%;
20804
  }
16848 stevensc 20805
 
16825 efrain 20806
  .mx-wd-xl-25p {
20807
    max-width: 25%;
20808
  }
16848 stevensc 20809
 
16825 efrain 20810
  .mn-wd-xl-25p {
20811
    min-width: 25%;
20812
  }
16848 stevensc 20813
 
16825 efrain 20814
  .wd-xl-25-f {
20815
    width: 25px !important;
20816
  }
16848 stevensc 20817
 
16825 efrain 20818
  .wd-xl-25p-f {
20819
    width: 25% !important;
20820
  }
16848 stevensc 20821
 
16825 efrain 20822
  .mx-wd-xl-25p-f {
20823
    max-width: 25% !important;
20824
  }
16848 stevensc 20825
 
16825 efrain 20826
  .mn-wd-xl-25p-f {
20827
    min-width: 25% !important;
20828
  }
16848 stevensc 20829
 
16825 efrain 20830
  .wd-xl-30 {
20831
    width: 30px;
20832
  }
16848 stevensc 20833
 
16825 efrain 20834
  .wd-xl-30p {
20835
    width: 30%;
20836
  }
16848 stevensc 20837
 
16825 efrain 20838
  .mx-wd-xl-30p {
20839
    max-width: 30%;
20840
  }
16848 stevensc 20841
 
16825 efrain 20842
  .mn-wd-xl-30p {
20843
    min-width: 30%;
20844
  }
16848 stevensc 20845
 
16825 efrain 20846
  .wd-xl-30-f {
20847
    width: 30px !important;
20848
  }
16848 stevensc 20849
 
16825 efrain 20850
  .wd-xl-30p-f {
20851
    width: 30% !important;
20852
  }
16848 stevensc 20853
 
16825 efrain 20854
  .mx-wd-xl-30p-f {
20855
    max-width: 30% !important;
20856
  }
16848 stevensc 20857
 
16825 efrain 20858
  .mn-wd-xl-30p-f {
20859
    min-width: 30% !important;
20860
  }
16848 stevensc 20861
 
16825 efrain 20862
  .wd-xl-35 {
20863
    width: 35px;
20864
  }
16848 stevensc 20865
 
16825 efrain 20866
  .wd-xl-35p {
20867
    width: 35%;
20868
  }
16848 stevensc 20869
 
16825 efrain 20870
  .mx-wd-xl-35p {
20871
    max-width: 35%;
20872
  }
16848 stevensc 20873
 
16825 efrain 20874
  .mn-wd-xl-35p {
20875
    min-width: 35%;
20876
  }
16848 stevensc 20877
 
16825 efrain 20878
  .wd-xl-35-f {
20879
    width: 35px !important;
20880
  }
16848 stevensc 20881
 
16825 efrain 20882
  .wd-xl-35p-f {
20883
    width: 35% !important;
20884
  }
16848 stevensc 20885
 
16825 efrain 20886
  .mx-wd-xl-35p-f {
20887
    max-width: 35% !important;
20888
  }
16848 stevensc 20889
 
16825 efrain 20890
  .mn-wd-xl-35p-f {
20891
    min-width: 35% !important;
20892
  }
16848 stevensc 20893
 
16825 efrain 20894
  .wd-xl-40 {
20895
    width: 40px;
20896
  }
16848 stevensc 20897
 
16825 efrain 20898
  .wd-xl-40p {
20899
    width: 40%;
20900
  }
16848 stevensc 20901
 
16825 efrain 20902
  .mx-wd-xl-40p {
20903
    max-width: 40%;
20904
  }
16848 stevensc 20905
 
16825 efrain 20906
  .mn-wd-xl-40p {
20907
    min-width: 40%;
20908
  }
16848 stevensc 20909
 
16825 efrain 20910
  .wd-xl-40-f {
20911
    width: 40px !important;
20912
  }
16848 stevensc 20913
 
16825 efrain 20914
  .wd-xl-40p-f {
20915
    width: 40% !important;
20916
  }
16848 stevensc 20917
 
16825 efrain 20918
  .mx-wd-xl-40p-f {
20919
    max-width: 40% !important;
20920
  }
16848 stevensc 20921
 
16825 efrain 20922
  .mn-wd-xl-40p-f {
20923
    min-width: 40% !important;
20924
  }
16848 stevensc 20925
 
16825 efrain 20926
  .wd-xl-45 {
20927
    width: 45px;
20928
  }
16848 stevensc 20929
 
16825 efrain 20930
  .wd-xl-45p {
20931
    width: 45%;
20932
  }
16848 stevensc 20933
 
16825 efrain 20934
  .mx-wd-xl-45p {
20935
    max-width: 45%;
20936
  }
16848 stevensc 20937
 
16825 efrain 20938
  .mn-wd-xl-45p {
20939
    min-width: 45%;
20940
  }
16848 stevensc 20941
 
16825 efrain 20942
  .wd-xl-45-f {
20943
    width: 45px !important;
20944
  }
16848 stevensc 20945
 
16825 efrain 20946
  .wd-xl-45p-f {
20947
    width: 45% !important;
20948
  }
16848 stevensc 20949
 
16825 efrain 20950
  .mx-wd-xl-45p-f {
20951
    max-width: 45% !important;
20952
  }
16848 stevensc 20953
 
16825 efrain 20954
  .mn-wd-xl-45p-f {
20955
    min-width: 45% !important;
20956
  }
16848 stevensc 20957
 
16825 efrain 20958
  .wd-xl-50 {
20959
    width: 50px;
20960
  }
16848 stevensc 20961
 
16825 efrain 20962
  .wd-xl-50p {
20963
    width: 50%;
20964
  }
16848 stevensc 20965
 
16825 efrain 20966
  .mx-wd-xl-50p {
20967
    max-width: 50%;
20968
  }
16848 stevensc 20969
 
16825 efrain 20970
  .mn-wd-xl-50p {
20971
    min-width: 50%;
20972
  }
16848 stevensc 20973
 
16825 efrain 20974
  .wd-xl-50-f {
20975
    width: 50px !important;
20976
  }
16848 stevensc 20977
 
16825 efrain 20978
  .wd-xl-50p-f {
20979
    width: 50% !important;
20980
  }
16848 stevensc 20981
 
16825 efrain 20982
  .mx-wd-xl-50p-f {
20983
    max-width: 50% !important;
20984
  }
16848 stevensc 20985
 
16825 efrain 20986
  .mn-wd-xl-50p-f {
20987
    min-width: 50% !important;
20988
  }
16848 stevensc 20989
 
16825 efrain 20990
  .wd-xl-55 {
20991
    width: 55px;
20992
  }
16848 stevensc 20993
 
16825 efrain 20994
  .wd-xl-55p {
20995
    width: 55%;
20996
  }
16848 stevensc 20997
 
16825 efrain 20998
  .mx-wd-xl-55p {
20999
    max-width: 55%;
21000
  }
16848 stevensc 21001
 
16825 efrain 21002
  .mn-wd-xl-55p {
21003
    min-width: 55%;
21004
  }
16848 stevensc 21005
 
16825 efrain 21006
  .wd-xl-55-f {
21007
    width: 55px !important;
21008
  }
16848 stevensc 21009
 
16825 efrain 21010
  .wd-xl-55p-f {
21011
    width: 55% !important;
21012
  }
16848 stevensc 21013
 
16825 efrain 21014
  .mx-wd-xl-55p-f {
21015
    max-width: 55% !important;
21016
  }
16848 stevensc 21017
 
16825 efrain 21018
  .mn-wd-xl-55p-f {
21019
    min-width: 55% !important;
21020
  }
16848 stevensc 21021
 
16825 efrain 21022
  .wd-xl-60 {
21023
    width: 60px;
21024
  }
16848 stevensc 21025
 
16825 efrain 21026
  .wd-xl-60p {
21027
    width: 60%;
21028
  }
16848 stevensc 21029
 
16825 efrain 21030
  .mx-wd-xl-60p {
21031
    max-width: 60%;
21032
  }
16848 stevensc 21033
 
16825 efrain 21034
  .mn-wd-xl-60p {
21035
    min-width: 60%;
21036
  }
16848 stevensc 21037
 
16825 efrain 21038
  .wd-xl-60-f {
21039
    width: 60px !important;
21040
  }
16848 stevensc 21041
 
16825 efrain 21042
  .wd-xl-60p-f {
21043
    width: 60% !important;
21044
  }
16848 stevensc 21045
 
16825 efrain 21046
  .mx-wd-xl-60p-f {
21047
    max-width: 60% !important;
21048
  }
16848 stevensc 21049
 
16825 efrain 21050
  .mn-wd-xl-60p-f {
21051
    min-width: 60% !important;
21052
  }
16848 stevensc 21053
 
16825 efrain 21054
  .wd-xl-65 {
21055
    width: 65px;
21056
  }
16848 stevensc 21057
 
16825 efrain 21058
  .wd-xl-65p {
21059
    width: 65%;
21060
  }
16848 stevensc 21061
 
16825 efrain 21062
  .mx-wd-xl-65p {
21063
    max-width: 65%;
21064
  }
16848 stevensc 21065
 
16825 efrain 21066
  .mn-wd-xl-65p {
21067
    min-width: 65%;
21068
  }
16848 stevensc 21069
 
16825 efrain 21070
  .wd-xl-65-f {
21071
    width: 65px !important;
21072
  }
16848 stevensc 21073
 
16825 efrain 21074
  .wd-xl-65p-f {
21075
    width: 65% !important;
21076
  }
16848 stevensc 21077
 
16825 efrain 21078
  .mx-wd-xl-65p-f {
21079
    max-width: 65% !important;
21080
  }
16848 stevensc 21081
 
16825 efrain 21082
  .mn-wd-xl-65p-f {
21083
    min-width: 65% !important;
21084
  }
16848 stevensc 21085
 
16825 efrain 21086
  .wd-xl-70 {
21087
    width: 70px;
21088
  }
16848 stevensc 21089
 
16825 efrain 21090
  .wd-xl-70p {
21091
    width: 70%;
21092
  }
16848 stevensc 21093
 
16825 efrain 21094
  .mx-wd-xl-70p {
21095
    max-width: 70%;
21096
  }
16848 stevensc 21097
 
16825 efrain 21098
  .mn-wd-xl-70p {
21099
    min-width: 70%;
21100
  }
16848 stevensc 21101
 
16825 efrain 21102
  .wd-xl-70-f {
21103
    width: 70px !important;
21104
  }
16848 stevensc 21105
 
16825 efrain 21106
  .wd-xl-70p-f {
21107
    width: 70% !important;
21108
  }
16848 stevensc 21109
 
16825 efrain 21110
  .mx-wd-xl-70p-f {
21111
    max-width: 70% !important;
21112
  }
16848 stevensc 21113
 
16825 efrain 21114
  .mn-wd-xl-70p-f {
21115
    min-width: 70% !important;
21116
  }
16848 stevensc 21117
 
16825 efrain 21118
  .wd-xl-75 {
21119
    width: 75px;
21120
  }
16848 stevensc 21121
 
16825 efrain 21122
  .wd-xl-75p {
21123
    width: 75%;
21124
  }
16848 stevensc 21125
 
16825 efrain 21126
  .mx-wd-xl-75p {
21127
    max-width: 75%;
21128
  }
16848 stevensc 21129
 
16825 efrain 21130
  .mn-wd-xl-75p {
21131
    min-width: 75%;
21132
  }
16848 stevensc 21133
 
16825 efrain 21134
  .wd-xl-75-f {
21135
    width: 75px !important;
21136
  }
16848 stevensc 21137
 
16825 efrain 21138
  .wd-xl-75p-f {
21139
    width: 75% !important;
21140
  }
16848 stevensc 21141
 
16825 efrain 21142
  .mx-wd-xl-75p-f {
21143
    max-width: 75% !important;
21144
  }
16848 stevensc 21145
 
16825 efrain 21146
  .mn-wd-xl-75p-f {
21147
    min-width: 75% !important;
21148
  }
16848 stevensc 21149
 
16825 efrain 21150
  .wd-xl-80 {
21151
    width: 80px;
21152
  }
16848 stevensc 21153
 
16825 efrain 21154
  .wd-xl-80p {
21155
    width: 80%;
21156
  }
16848 stevensc 21157
 
16825 efrain 21158
  .mx-wd-xl-80p {
21159
    max-width: 80%;
21160
  }
16848 stevensc 21161
 
16825 efrain 21162
  .mn-wd-xl-80p {
21163
    min-width: 80%;
21164
  }
16848 stevensc 21165
 
16825 efrain 21166
  .wd-xl-80-f {
21167
    width: 80px !important;
21168
  }
16848 stevensc 21169
 
16825 efrain 21170
  .wd-xl-80p-f {
21171
    width: 80% !important;
21172
  }
16848 stevensc 21173
 
16825 efrain 21174
  .mx-wd-xl-80p-f {
21175
    max-width: 80% !important;
21176
  }
16848 stevensc 21177
 
16825 efrain 21178
  .mn-wd-xl-80p-f {
21179
    min-width: 80% !important;
21180
  }
16848 stevensc 21181
 
16825 efrain 21182
  .wd-xl-85 {
21183
    width: 85px;
21184
  }
16848 stevensc 21185
 
16825 efrain 21186
  .wd-xl-85p {
21187
    width: 85%;
21188
  }
16848 stevensc 21189
 
16825 efrain 21190
  .mx-wd-xl-85p {
21191
    max-width: 85%;
21192
  }
16848 stevensc 21193
 
16825 efrain 21194
  .mn-wd-xl-85p {
21195
    min-width: 85%;
21196
  }
16848 stevensc 21197
 
16825 efrain 21198
  .wd-xl-85-f {
21199
    width: 85px !important;
21200
  }
16848 stevensc 21201
 
16825 efrain 21202
  .wd-xl-85p-f {
21203
    width: 85% !important;
21204
  }
16848 stevensc 21205
 
16825 efrain 21206
  .mx-wd-xl-85p-f {
21207
    max-width: 85% !important;
21208
  }
16848 stevensc 21209
 
16825 efrain 21210
  .mn-wd-xl-85p-f {
21211
    min-width: 85% !important;
21212
  }
16848 stevensc 21213
 
16825 efrain 21214
  .wd-xl-90 {
21215
    width: 90px;
21216
  }
16848 stevensc 21217
 
16825 efrain 21218
  .wd-xl-90p {
21219
    width: 90%;
21220
  }
16848 stevensc 21221
 
16825 efrain 21222
  .mx-wd-xl-90p {
21223
    max-width: 90%;
21224
  }
16848 stevensc 21225
 
16825 efrain 21226
  .mn-wd-xl-90p {
21227
    min-width: 90%;
21228
  }
16848 stevensc 21229
 
16825 efrain 21230
  .wd-xl-90-f {
21231
    width: 90px !important;
21232
  }
16848 stevensc 21233
 
16825 efrain 21234
  .wd-xl-90p-f {
21235
    width: 90% !important;
21236
  }
16848 stevensc 21237
 
16825 efrain 21238
  .mx-wd-xl-90p-f {
21239
    max-width: 90% !important;
21240
  }
16848 stevensc 21241
 
16825 efrain 21242
  .mn-wd-xl-90p-f {
21243
    min-width: 90% !important;
21244
  }
16848 stevensc 21245
 
16825 efrain 21246
  .wd-xl-95 {
21247
    width: 95px;
21248
  }
16848 stevensc 21249
 
16825 efrain 21250
  .wd-xl-95p {
21251
    width: 95%;
21252
  }
16848 stevensc 21253
 
16825 efrain 21254
  .mx-wd-xl-95p {
21255
    max-width: 95%;
21256
  }
16848 stevensc 21257
 
16825 efrain 21258
  .mn-wd-xl-95p {
21259
    min-width: 95%;
21260
  }
16848 stevensc 21261
 
16825 efrain 21262
  .wd-xl-95-f {
21263
    width: 95px !important;
21264
  }
16848 stevensc 21265
 
16825 efrain 21266
  .wd-xl-95p-f {
21267
    width: 95% !important;
21268
  }
16848 stevensc 21269
 
16825 efrain 21270
  .mx-wd-xl-95p-f {
21271
    max-width: 95% !important;
21272
  }
16848 stevensc 21273
 
16825 efrain 21274
  .mn-wd-xl-95p-f {
21275
    min-width: 95% !important;
21276
  }
16848 stevensc 21277
 
16825 efrain 21278
  .wd-xl-100 {
21279
    width: 100px;
21280
  }
16848 stevensc 21281
 
16825 efrain 21282
  .wd-xl-100p {
21283
    width: 100%;
21284
  }
16848 stevensc 21285
 
16825 efrain 21286
  .mx-wd-xl-100p {
21287
    max-width: 100%;
21288
  }
16848 stevensc 21289
 
16825 efrain 21290
  .mn-wd-xl-100p {
21291
    min-width: 100%;
21292
  }
16848 stevensc 21293
 
16825 efrain 21294
  .wd-xl-100-f {
21295
    width: 100px !important;
21296
  }
16848 stevensc 21297
 
16825 efrain 21298
  .wd-xl-100p-f {
21299
    width: 100% !important;
21300
  }
16848 stevensc 21301
 
16825 efrain 21302
  .mx-wd-xl-100p-f {
21303
    max-width: 100% !important;
21304
  }
16848 stevensc 21305
 
16825 efrain 21306
  .mn-wd-xl-100p-f {
21307
    min-width: 100% !important;
21308
  }
16848 stevensc 21309
 
16825 efrain 21310
  .wd-xl-150 {
21311
    width: 150px;
21312
  }
16848 stevensc 21313
 
16825 efrain 21314
  .wd-xl-150p {
21315
    width: 150%;
21316
  }
16848 stevensc 21317
 
16825 efrain 21318
  .mx-wd-xl-150p {
21319
    max-width: 150%;
21320
  }
16848 stevensc 21321
 
16825 efrain 21322
  .mn-wd-xl-150p {
21323
    min-width: 150%;
21324
  }
16848 stevensc 21325
 
16825 efrain 21326
  .wd-xl-150-f {
21327
    width: 150px !important;
21328
  }
16848 stevensc 21329
 
16825 efrain 21330
  .wd-xl-150p-f {
21331
    width: 150% !important;
21332
  }
16848 stevensc 21333
 
16825 efrain 21334
  .mx-wd-xl-150p-f {
21335
    max-width: 150% !important;
21336
  }
16848 stevensc 21337
 
16825 efrain 21338
  .mn-wd-xl-150p-f {
21339
    min-width: 150% !important;
21340
  }
16848 stevensc 21341
 
16825 efrain 21342
  .wd-xl-200 {
21343
    width: 200px;
21344
  }
16848 stevensc 21345
 
16825 efrain 21346
  .wd-xl-200p {
21347
    width: 200%;
21348
  }
16848 stevensc 21349
 
16825 efrain 21350
  .mx-wd-xl-200p {
21351
    max-width: 200%;
21352
  }
16848 stevensc 21353
 
16825 efrain 21354
  .mn-wd-xl-200p {
21355
    min-width: 200%;
21356
  }
16848 stevensc 21357
 
16825 efrain 21358
  .wd-xl-200-f {
21359
    width: 200px !important;
21360
  }
16848 stevensc 21361
 
16825 efrain 21362
  .wd-xl-200p-f {
21363
    width: 200% !important;
21364
  }
16848 stevensc 21365
 
16825 efrain 21366
  .mx-wd-xl-200p-f {
21367
    max-width: 200% !important;
21368
  }
16848 stevensc 21369
 
16825 efrain 21370
  .mn-wd-xl-200p-f {
21371
    min-width: 200% !important;
21372
  }
16848 stevensc 21373
 
16825 efrain 21374
  .wd-xl-250 {
21375
    width: 250px;
21376
  }
16848 stevensc 21377
 
16825 efrain 21378
  .wd-xl-250p {
21379
    width: 250%;
21380
  }
16848 stevensc 21381
 
16825 efrain 21382
  .mx-wd-xl-250p {
21383
    max-width: 250%;
21384
  }
16848 stevensc 21385
 
16825 efrain 21386
  .mn-wd-xl-250p {
21387
    min-width: 250%;
21388
  }
16848 stevensc 21389
 
16825 efrain 21390
  .wd-xl-250-f {
21391
    width: 250px !important;
21392
  }
16848 stevensc 21393
 
16825 efrain 21394
  .wd-xl-250p-f {
21395
    width: 250% !important;
21396
  }
16848 stevensc 21397
 
16825 efrain 21398
  .mx-wd-xl-250p-f {
21399
    max-width: 250% !important;
21400
  }
16848 stevensc 21401
 
16825 efrain 21402
  .mn-wd-xl-250p-f {
21403
    min-width: 250% !important;
21404
  }
16848 stevensc 21405
 
16825 efrain 21406
  .wd-xl-300 {
21407
    width: 300px;
21408
  }
16848 stevensc 21409
 
16825 efrain 21410
  .wd-xl-300p {
21411
    width: 300%;
21412
  }
16848 stevensc 21413
 
16825 efrain 21414
  .mx-wd-xl-300p {
21415
    max-width: 300%;
21416
  }
16848 stevensc 21417
 
16825 efrain 21418
  .mn-wd-xl-300p {
21419
    min-width: 300%;
21420
  }
16848 stevensc 21421
 
16825 efrain 21422
  .wd-xl-300-f {
21423
    width: 300px !important;
21424
  }
16848 stevensc 21425
 
16825 efrain 21426
  .wd-xl-300p-f {
21427
    width: 300% !important;
21428
  }
16848 stevensc 21429
 
16825 efrain 21430
  .mx-wd-xl-300p-f {
21431
    max-width: 300% !important;
21432
  }
16848 stevensc 21433
 
16825 efrain 21434
  .mn-wd-xl-300p-f {
21435
    min-width: 300% !important;
21436
  }
16848 stevensc 21437
 
16825 efrain 21438
  .wd-xl-350 {
21439
    width: 350px;
21440
  }
16848 stevensc 21441
 
16825 efrain 21442
  .wd-xl-350p {
21443
    width: 350%;
21444
  }
16848 stevensc 21445
 
16825 efrain 21446
  .mx-wd-xl-350p {
21447
    max-width: 350%;
21448
  }
16848 stevensc 21449
 
16825 efrain 21450
  .mn-wd-xl-350p {
21451
    min-width: 350%;
21452
  }
16848 stevensc 21453
 
16825 efrain 21454
  .wd-xl-350-f {
21455
    width: 350px !important;
21456
  }
16848 stevensc 21457
 
16825 efrain 21458
  .wd-xl-350p-f {
21459
    width: 350% !important;
21460
  }
16848 stevensc 21461
 
16825 efrain 21462
  .mx-wd-xl-350p-f {
21463
    max-width: 350% !important;
21464
  }
16848 stevensc 21465
 
16825 efrain 21466
  .mn-wd-xl-350p-f {
21467
    min-width: 350% !important;
21468
  }
16848 stevensc 21469
 
16825 efrain 21470
  .wd-xl-400 {
21471
    width: 400px;
21472
  }
16848 stevensc 21473
 
16825 efrain 21474
  .wd-xl-400p {
21475
    width: 400%;
21476
  }
16848 stevensc 21477
 
16825 efrain 21478
  .mx-wd-xl-400p {
21479
    max-width: 400%;
21480
  }
16848 stevensc 21481
 
16825 efrain 21482
  .mn-wd-xl-400p {
21483
    min-width: 400%;
21484
  }
16848 stevensc 21485
 
16825 efrain 21486
  .wd-xl-400-f {
21487
    width: 400px !important;
21488
  }
16848 stevensc 21489
 
16825 efrain 21490
  .wd-xl-400p-f {
21491
    width: 400% !important;
21492
  }
16848 stevensc 21493
 
16825 efrain 21494
  .mx-wd-xl-400p-f {
21495
    max-width: 400% !important;
21496
  }
16848 stevensc 21497
 
16825 efrain 21498
  .mn-wd-xl-400p-f {
21499
    min-width: 400% !important;
21500
  }
16848 stevensc 21501
 
16825 efrain 21502
  .wd-xl-450 {
21503
    width: 450px;
21504
  }
16848 stevensc 21505
 
16825 efrain 21506
  .wd-xl-450p {
21507
    width: 450%;
21508
  }
16848 stevensc 21509
 
16825 efrain 21510
  .mx-wd-xl-450p {
21511
    max-width: 450%;
21512
  }
16848 stevensc 21513
 
16825 efrain 21514
  .mn-wd-xl-450p {
21515
    min-width: 450%;
21516
  }
16848 stevensc 21517
 
16825 efrain 21518
  .wd-xl-450-f {
21519
    width: 450px !important;
21520
  }
16848 stevensc 21521
 
16825 efrain 21522
  .wd-xl-450p-f {
21523
    width: 450% !important;
21524
  }
16848 stevensc 21525
 
16825 efrain 21526
  .mx-wd-xl-450p-f {
21527
    max-width: 450% !important;
21528
  }
16848 stevensc 21529
 
16825 efrain 21530
  .mn-wd-xl-450p-f {
21531
    min-width: 450% !important;
21532
  }
16848 stevensc 21533
 
16825 efrain 21534
  .wd-xl-500 {
21535
    width: 500px;
21536
  }
16848 stevensc 21537
 
16825 efrain 21538
  .wd-xl-500p {
21539
    width: 500%;
21540
  }
16848 stevensc 21541
 
16825 efrain 21542
  .mx-wd-xl-500p {
21543
    max-width: 500%;
21544
  }
16848 stevensc 21545
 
16825 efrain 21546
  .mn-wd-xl-500p {
21547
    min-width: 500%;
21548
  }
16848 stevensc 21549
 
16825 efrain 21550
  .wd-xl-500-f {
21551
    width: 500px !important;
21552
  }
16848 stevensc 21553
 
16825 efrain 21554
  .wd-xl-500p-f {
21555
    width: 500% !important;
21556
  }
16848 stevensc 21557
 
16825 efrain 21558
  .mx-wd-xl-500p-f {
21559
    max-width: 500% !important;
21560
  }
16848 stevensc 21561
 
16825 efrain 21562
  .mn-wd-xl-500p-f {
21563
    min-width: 500% !important;
21564
  }
16848 stevensc 21565
 
16825 efrain 21566
  .wd-xl-550 {
21567
    width: 550px;
21568
  }
16848 stevensc 21569
 
16825 efrain 21570
  .wd-xl-550p {
21571
    width: 550%;
21572
  }
16848 stevensc 21573
 
16825 efrain 21574
  .mx-wd-xl-550p {
21575
    max-width: 550%;
21576
  }
16848 stevensc 21577
 
16825 efrain 21578
  .mn-wd-xl-550p {
21579
    min-width: 550%;
21580
  }
16848 stevensc 21581
 
16825 efrain 21582
  .wd-xl-550-f {
21583
    width: 550px !important;
21584
  }
16848 stevensc 21585
 
16825 efrain 21586
  .wd-xl-550p-f {
21587
    width: 550% !important;
21588
  }
16848 stevensc 21589
 
16825 efrain 21590
  .mx-wd-xl-550p-f {
21591
    max-width: 550% !important;
21592
  }
16848 stevensc 21593
 
16825 efrain 21594
  .mn-wd-xl-550p-f {
21595
    min-width: 550% !important;
21596
  }
16848 stevensc 21597
 
16825 efrain 21598
  .wd-xl-600 {
21599
    width: 600px;
21600
  }
16848 stevensc 21601
 
16825 efrain 21602
  .wd-xl-600p {
21603
    width: 600%;
21604
  }
16848 stevensc 21605
 
16825 efrain 21606
  .mx-wd-xl-600p {
21607
    max-width: 600%;
21608
  }
16848 stevensc 21609
 
16825 efrain 21610
  .mn-wd-xl-600p {
21611
    min-width: 600%;
21612
  }
16848 stevensc 21613
 
16825 efrain 21614
  .wd-xl-600-f {
21615
    width: 600px !important;
21616
  }
16848 stevensc 21617
 
16825 efrain 21618
  .wd-xl-600p-f {
21619
    width: 600% !important;
21620
  }
16848 stevensc 21621
 
16825 efrain 21622
  .mx-wd-xl-600p-f {
21623
    max-width: 600% !important;
21624
  }
16848 stevensc 21625
 
16825 efrain 21626
  .mn-wd-xl-600p-f {
21627
    min-width: 600% !important;
21628
  }
16848 stevensc 21629
 
16825 efrain 21630
  .wd-xl-650 {
21631
    width: 650px;
21632
  }
16848 stevensc 21633
 
16825 efrain 21634
  .wd-xl-650p {
21635
    width: 650%;
21636
  }
16848 stevensc 21637
 
16825 efrain 21638
  .mx-wd-xl-650p {
21639
    max-width: 650%;
21640
  }
16848 stevensc 21641
 
16825 efrain 21642
  .mn-wd-xl-650p {
21643
    min-width: 650%;
21644
  }
16848 stevensc 21645
 
16825 efrain 21646
  .wd-xl-650-f {
21647
    width: 650px !important;
21648
  }
16848 stevensc 21649
 
16825 efrain 21650
  .wd-xl-650p-f {
21651
    width: 650% !important;
21652
  }
16848 stevensc 21653
 
16825 efrain 21654
  .mx-wd-xl-650p-f {
21655
    max-width: 650% !important;
21656
  }
16848 stevensc 21657
 
16825 efrain 21658
  .mn-wd-xl-650p-f {
21659
    min-width: 650% !important;
21660
  }
16848 stevensc 21661
 
16825 efrain 21662
  .wd-xl-700 {
21663
    width: 700px;
21664
  }
16848 stevensc 21665
 
16825 efrain 21666
  .wd-xl-700p {
21667
    width: 700%;
21668
  }
16848 stevensc 21669
 
16825 efrain 21670
  .mx-wd-xl-700p {
21671
    max-width: 700%;
21672
  }
16848 stevensc 21673
 
16825 efrain 21674
  .mn-wd-xl-700p {
21675
    min-width: 700%;
21676
  }
16848 stevensc 21677
 
16825 efrain 21678
  .wd-xl-700-f {
21679
    width: 700px !important;
21680
  }
16848 stevensc 21681
 
16825 efrain 21682
  .wd-xl-700p-f {
21683
    width: 700% !important;
21684
  }
16848 stevensc 21685
 
16825 efrain 21686
  .mx-wd-xl-700p-f {
21687
    max-width: 700% !important;
21688
  }
16848 stevensc 21689
 
16825 efrain 21690
  .mn-wd-xl-700p-f {
21691
    min-width: 700% !important;
21692
  }
16848 stevensc 21693
 
16825 efrain 21694
  .wd-xl-750 {
21695
    width: 750px;
21696
  }
16848 stevensc 21697
 
16825 efrain 21698
  .wd-xl-750p {
21699
    width: 750%;
21700
  }
16848 stevensc 21701
 
16825 efrain 21702
  .mx-wd-xl-750p {
21703
    max-width: 750%;
21704
  }
16848 stevensc 21705
 
16825 efrain 21706
  .mn-wd-xl-750p {
21707
    min-width: 750%;
21708
  }
16848 stevensc 21709
 
16825 efrain 21710
  .wd-xl-750-f {
21711
    width: 750px !important;
21712
  }
16848 stevensc 21713
 
16825 efrain 21714
  .wd-xl-750p-f {
21715
    width: 750% !important;
21716
  }
16848 stevensc 21717
 
16825 efrain 21718
  .mx-wd-xl-750p-f {
21719
    max-width: 750% !important;
21720
  }
16848 stevensc 21721
 
16825 efrain 21722
  .mn-wd-xl-750p-f {
21723
    min-width: 750% !important;
21724
  }
16848 stevensc 21725
 
16825 efrain 21726
  .wd-xl-800 {
21727
    width: 800px;
21728
  }
16848 stevensc 21729
 
16825 efrain 21730
  .wd-xl-800p {
21731
    width: 800%;
21732
  }
16848 stevensc 21733
 
16825 efrain 21734
  .mx-wd-xl-800p {
21735
    max-width: 800%;
21736
  }
16848 stevensc 21737
 
16825 efrain 21738
  .mn-wd-xl-800p {
21739
    min-width: 800%;
21740
  }
16848 stevensc 21741
 
16825 efrain 21742
  .wd-xl-800-f {
21743
    width: 800px !important;
21744
  }
16848 stevensc 21745
 
16825 efrain 21746
  .wd-xl-800p-f {
21747
    width: 800% !important;
21748
  }
16848 stevensc 21749
 
16825 efrain 21750
  .mx-wd-xl-800p-f {
21751
    max-width: 800% !important;
21752
  }
16848 stevensc 21753
 
16825 efrain 21754
  .mn-wd-xl-800p-f {
21755
    min-width: 800% !important;
21756
  }
16848 stevensc 21757
 
16825 efrain 21758
  .wd-xl-850 {
21759
    width: 850px;
21760
  }
16848 stevensc 21761
 
16825 efrain 21762
  .wd-xl-850p {
21763
    width: 850%;
21764
  }
16848 stevensc 21765
 
16825 efrain 21766
  .mx-wd-xl-850p {
21767
    max-width: 850%;
21768
  }
16848 stevensc 21769
 
16825 efrain 21770
  .mn-wd-xl-850p {
21771
    min-width: 850%;
21772
  }
16848 stevensc 21773
 
16825 efrain 21774
  .wd-xl-850-f {
21775
    width: 850px !important;
21776
  }
16848 stevensc 21777
 
16825 efrain 21778
  .wd-xl-850p-f {
21779
    width: 850% !important;
21780
  }
16848 stevensc 21781
 
16825 efrain 21782
  .mx-wd-xl-850p-f {
21783
    max-width: 850% !important;
21784
  }
16848 stevensc 21785
 
16825 efrain 21786
  .mn-wd-xl-850p-f {
21787
    min-width: 850% !important;
21788
  }
16848 stevensc 21789
 
16825 efrain 21790
  .wd-xl-900 {
21791
    width: 900px;
21792
  }
16848 stevensc 21793
 
16825 efrain 21794
  .wd-xl-900p {
21795
    width: 900%;
21796
  }
16848 stevensc 21797
 
16825 efrain 21798
  .mx-wd-xl-900p {
21799
    max-width: 900%;
21800
  }
16848 stevensc 21801
 
16825 efrain 21802
  .mn-wd-xl-900p {
21803
    min-width: 900%;
21804
  }
16848 stevensc 21805
 
16825 efrain 21806
  .wd-xl-900-f {
21807
    width: 900px !important;
21808
  }
16848 stevensc 21809
 
16825 efrain 21810
  .wd-xl-900p-f {
21811
    width: 900% !important;
21812
  }
16848 stevensc 21813
 
16825 efrain 21814
  .mx-wd-xl-900p-f {
21815
    max-width: 900% !important;
21816
  }
16848 stevensc 21817
 
16825 efrain 21818
  .mn-wd-xl-900p-f {
21819
    min-width: 900% !important;
21820
  }
16848 stevensc 21821
 
16825 efrain 21822
  .wd-xl-950 {
21823
    width: 950px;
21824
  }
16848 stevensc 21825
 
16825 efrain 21826
  .wd-xl-950p {
21827
    width: 950%;
21828
  }
16848 stevensc 21829
 
16825 efrain 21830
  .mx-wd-xl-950p {
21831
    max-width: 950%;
21832
  }
16848 stevensc 21833
 
16825 efrain 21834
  .mn-wd-xl-950p {
21835
    min-width: 950%;
21836
  }
16848 stevensc 21837
 
16825 efrain 21838
  .wd-xl-950-f {
21839
    width: 950px !important;
21840
  }
16848 stevensc 21841
 
16825 efrain 21842
  .wd-xl-950p-f {
21843
    width: 950% !important;
21844
  }
16848 stevensc 21845
 
16825 efrain 21846
  .mx-wd-xl-950p-f {
21847
    max-width: 950% !important;
21848
  }
16848 stevensc 21849
 
16825 efrain 21850
  .mn-wd-xl-950p-f {
21851
    min-width: 950% !important;
21852
  }
16848 stevensc 21853
 
16825 efrain 21854
  .wd-xl-1000 {
21855
    width: 1000px;
21856
  }
16848 stevensc 21857
 
16825 efrain 21858
  .wd-xl-1000p {
21859
    width: 1000%;
21860
  }
16848 stevensc 21861
 
16825 efrain 21862
  .mx-wd-xl-1000p {
21863
    max-width: 1000%;
21864
  }
16848 stevensc 21865
 
16825 efrain 21866
  .mn-wd-xl-1000p {
21867
    min-width: 1000%;
21868
  }
16848 stevensc 21869
 
16825 efrain 21870
  .wd-xl-1000-f {
21871
    width: 1000px !important;
21872
  }
16848 stevensc 21873
 
16825 efrain 21874
  .wd-xl-1000p-f {
21875
    width: 1000% !important;
21876
  }
16848 stevensc 21877
 
16825 efrain 21878
  .mx-wd-xl-1000p-f {
21879
    max-width: 1000% !important;
21880
  }
16848 stevensc 21881
 
16825 efrain 21882
  .mn-wd-xl-1000p-f {
21883
    min-width: 1000% !important;
21884
  }
16848 stevensc 21885
 
16825 efrain 21886
  .wd-xl-auto {
21887
    width: auto;
21888
  }
16848 stevensc 21889
 
16825 efrain 21890
  .wd-xl-auto {
21891
    width: auto !important;
21892
  }
21893
}
16848 stevensc 21894
 
16825 efrain 21895
@media (min-width: 1400px) {
21896
  .wd-xxl-5 {
21897
    width: 5px;
21898
  }
16848 stevensc 21899
 
16825 efrain 21900
  .wd-xxl-5p {
21901
    width: 5%;
21902
  }
16848 stevensc 21903
 
16825 efrain 21904
  .mx-wd-xxl-5p {
21905
    max-width: 5%;
21906
  }
16848 stevensc 21907
 
16825 efrain 21908
  .mn-wd-xxl-5p {
21909
    min-width: 5%;
21910
  }
16848 stevensc 21911
 
16825 efrain 21912
  .wd-xxl-5-f {
21913
    width: 5px !important;
21914
  }
16848 stevensc 21915
 
16825 efrain 21916
  .wd-xxl-5p-f {
21917
    width: 5% !important;
21918
  }
16848 stevensc 21919
 
16825 efrain 21920
  .mx-wd-xxl-5p-f {
21921
    max-width: 5% !important;
21922
  }
16848 stevensc 21923
 
16825 efrain 21924
  .mn-wd-xxl-5p-f {
21925
    min-width: 5% !important;
21926
  }
16848 stevensc 21927
 
16825 efrain 21928
  .wd-xxl-10 {
21929
    width: 10px;
21930
  }
16848 stevensc 21931
 
16825 efrain 21932
  .wd-xxl-10p {
21933
    width: 10%;
21934
  }
16848 stevensc 21935
 
16825 efrain 21936
  .mx-wd-xxl-10p {
21937
    max-width: 10%;
21938
  }
16848 stevensc 21939
 
16825 efrain 21940
  .mn-wd-xxl-10p {
21941
    min-width: 10%;
21942
  }
16848 stevensc 21943
 
16825 efrain 21944
  .wd-xxl-10-f {
21945
    width: 10px !important;
21946
  }
16848 stevensc 21947
 
16825 efrain 21948
  .wd-xxl-10p-f {
21949
    width: 10% !important;
21950
  }
16848 stevensc 21951
 
16825 efrain 21952
  .mx-wd-xxl-10p-f {
21953
    max-width: 10% !important;
21954
  }
16848 stevensc 21955
 
16825 efrain 21956
  .mn-wd-xxl-10p-f {
21957
    min-width: 10% !important;
21958
  }
16848 stevensc 21959
 
16825 efrain 21960
  .wd-xxl-15 {
21961
    width: 15px;
21962
  }
16848 stevensc 21963
 
16825 efrain 21964
  .wd-xxl-15p {
21965
    width: 15%;
21966
  }
16848 stevensc 21967
 
16825 efrain 21968
  .mx-wd-xxl-15p {
21969
    max-width: 15%;
21970
  }
16848 stevensc 21971
 
16825 efrain 21972
  .mn-wd-xxl-15p {
21973
    min-width: 15%;
21974
  }
16848 stevensc 21975
 
16825 efrain 21976
  .wd-xxl-15-f {
21977
    width: 15px !important;
21978
  }
16848 stevensc 21979
 
16825 efrain 21980
  .wd-xxl-15p-f {
21981
    width: 15% !important;
21982
  }
16848 stevensc 21983
 
16825 efrain 21984
  .mx-wd-xxl-15p-f {
21985
    max-width: 15% !important;
21986
  }
16848 stevensc 21987
 
16825 efrain 21988
  .mn-wd-xxl-15p-f {
21989
    min-width: 15% !important;
21990
  }
16848 stevensc 21991
 
16825 efrain 21992
  .wd-xxl-20 {
21993
    width: 20px;
21994
  }
16848 stevensc 21995
 
16825 efrain 21996
  .wd-xxl-20p {
21997
    width: 20%;
21998
  }
16848 stevensc 21999
 
16825 efrain 22000
  .mx-wd-xxl-20p {
22001
    max-width: 20%;
22002
  }
16848 stevensc 22003
 
16825 efrain 22004
  .mn-wd-xxl-20p {
22005
    min-width: 20%;
22006
  }
16848 stevensc 22007
 
16825 efrain 22008
  .wd-xxl-20-f {
22009
    width: 20px !important;
22010
  }
16848 stevensc 22011
 
16825 efrain 22012
  .wd-xxl-20p-f {
22013
    width: 20% !important;
22014
  }
16848 stevensc 22015
 
16825 efrain 22016
  .mx-wd-xxl-20p-f {
22017
    max-width: 20% !important;
22018
  }
16848 stevensc 22019
 
16825 efrain 22020
  .mn-wd-xxl-20p-f {
22021
    min-width: 20% !important;
22022
  }
16848 stevensc 22023
 
16825 efrain 22024
  .wd-xxl-25 {
22025
    width: 25px;
22026
  }
16848 stevensc 22027
 
16825 efrain 22028
  .wd-xxl-25p {
22029
    width: 25%;
22030
  }
16848 stevensc 22031
 
16825 efrain 22032
  .mx-wd-xxl-25p {
22033
    max-width: 25%;
22034
  }
16848 stevensc 22035
 
16825 efrain 22036
  .mn-wd-xxl-25p {
22037
    min-width: 25%;
22038
  }
16848 stevensc 22039
 
16825 efrain 22040
  .wd-xxl-25-f {
22041
    width: 25px !important;
22042
  }
16848 stevensc 22043
 
16825 efrain 22044
  .wd-xxl-25p-f {
22045
    width: 25% !important;
22046
  }
16848 stevensc 22047
 
16825 efrain 22048
  .mx-wd-xxl-25p-f {
22049
    max-width: 25% !important;
22050
  }
16848 stevensc 22051
 
16825 efrain 22052
  .mn-wd-xxl-25p-f {
22053
    min-width: 25% !important;
22054
  }
16848 stevensc 22055
 
16825 efrain 22056
  .wd-xxl-30 {
22057
    width: 30px;
22058
  }
16848 stevensc 22059
 
16825 efrain 22060
  .wd-xxl-30p {
22061
    width: 30%;
22062
  }
16848 stevensc 22063
 
16825 efrain 22064
  .mx-wd-xxl-30p {
22065
    max-width: 30%;
22066
  }
16848 stevensc 22067
 
16825 efrain 22068
  .mn-wd-xxl-30p {
22069
    min-width: 30%;
22070
  }
16848 stevensc 22071
 
16825 efrain 22072
  .wd-xxl-30-f {
22073
    width: 30px !important;
22074
  }
16848 stevensc 22075
 
16825 efrain 22076
  .wd-xxl-30p-f {
22077
    width: 30% !important;
22078
  }
16848 stevensc 22079
 
16825 efrain 22080
  .mx-wd-xxl-30p-f {
22081
    max-width: 30% !important;
22082
  }
16848 stevensc 22083
 
16825 efrain 22084
  .mn-wd-xxl-30p-f {
22085
    min-width: 30% !important;
22086
  }
16848 stevensc 22087
 
16825 efrain 22088
  .wd-xxl-35 {
22089
    width: 35px;
22090
  }
16848 stevensc 22091
 
16825 efrain 22092
  .wd-xxl-35p {
22093
    width: 35%;
22094
  }
16848 stevensc 22095
 
16825 efrain 22096
  .mx-wd-xxl-35p {
22097
    max-width: 35%;
22098
  }
16848 stevensc 22099
 
16825 efrain 22100
  .mn-wd-xxl-35p {
22101
    min-width: 35%;
22102
  }
16848 stevensc 22103
 
16825 efrain 22104
  .wd-xxl-35-f {
22105
    width: 35px !important;
22106
  }
16848 stevensc 22107
 
16825 efrain 22108
  .wd-xxl-35p-f {
22109
    width: 35% !important;
22110
  }
16848 stevensc 22111
 
16825 efrain 22112
  .mx-wd-xxl-35p-f {
22113
    max-width: 35% !important;
22114
  }
16848 stevensc 22115
 
16825 efrain 22116
  .mn-wd-xxl-35p-f {
22117
    min-width: 35% !important;
22118
  }
16848 stevensc 22119
 
16825 efrain 22120
  .wd-xxl-40 {
22121
    width: 40px;
22122
  }
16848 stevensc 22123
 
16825 efrain 22124
  .wd-xxl-40p {
22125
    width: 40%;
22126
  }
16848 stevensc 22127
 
16825 efrain 22128
  .mx-wd-xxl-40p {
22129
    max-width: 40%;
22130
  }
16848 stevensc 22131
 
16825 efrain 22132
  .mn-wd-xxl-40p {
22133
    min-width: 40%;
22134
  }
16848 stevensc 22135
 
16825 efrain 22136
  .wd-xxl-40-f {
22137
    width: 40px !important;
22138
  }
16848 stevensc 22139
 
16825 efrain 22140
  .wd-xxl-40p-f {
22141
    width: 40% !important;
22142
  }
16848 stevensc 22143
 
16825 efrain 22144
  .mx-wd-xxl-40p-f {
22145
    max-width: 40% !important;
22146
  }
16848 stevensc 22147
 
16825 efrain 22148
  .mn-wd-xxl-40p-f {
22149
    min-width: 40% !important;
22150
  }
16848 stevensc 22151
 
16825 efrain 22152
  .wd-xxl-45 {
22153
    width: 45px;
22154
  }
16848 stevensc 22155
 
16825 efrain 22156
  .wd-xxl-45p {
22157
    width: 45%;
22158
  }
16848 stevensc 22159
 
16825 efrain 22160
  .mx-wd-xxl-45p {
22161
    max-width: 45%;
22162
  }
16848 stevensc 22163
 
16825 efrain 22164
  .mn-wd-xxl-45p {
22165
    min-width: 45%;
22166
  }
16848 stevensc 22167
 
16825 efrain 22168
  .wd-xxl-45-f {
22169
    width: 45px !important;
22170
  }
16848 stevensc 22171
 
16825 efrain 22172
  .wd-xxl-45p-f {
22173
    width: 45% !important;
22174
  }
16848 stevensc 22175
 
16825 efrain 22176
  .mx-wd-xxl-45p-f {
22177
    max-width: 45% !important;
22178
  }
16848 stevensc 22179
 
16825 efrain 22180
  .mn-wd-xxl-45p-f {
22181
    min-width: 45% !important;
22182
  }
16848 stevensc 22183
 
16825 efrain 22184
  .wd-xxl-50 {
22185
    width: 50px;
22186
  }
16848 stevensc 22187
 
16825 efrain 22188
  .wd-xxl-50p {
22189
    width: 50%;
22190
  }
16848 stevensc 22191
 
16825 efrain 22192
  .mx-wd-xxl-50p {
22193
    max-width: 50%;
22194
  }
16848 stevensc 22195
 
16825 efrain 22196
  .mn-wd-xxl-50p {
22197
    min-width: 50%;
22198
  }
16848 stevensc 22199
 
16825 efrain 22200
  .wd-xxl-50-f {
22201
    width: 50px !important;
22202
  }
16848 stevensc 22203
 
16825 efrain 22204
  .wd-xxl-50p-f {
22205
    width: 50% !important;
22206
  }
16848 stevensc 22207
 
16825 efrain 22208
  .mx-wd-xxl-50p-f {
22209
    max-width: 50% !important;
22210
  }
16848 stevensc 22211
 
16825 efrain 22212
  .mn-wd-xxl-50p-f {
22213
    min-width: 50% !important;
22214
  }
16848 stevensc 22215
 
16825 efrain 22216
  .wd-xxl-55 {
22217
    width: 55px;
22218
  }
16848 stevensc 22219
 
16825 efrain 22220
  .wd-xxl-55p {
22221
    width: 55%;
22222
  }
16848 stevensc 22223
 
16825 efrain 22224
  .mx-wd-xxl-55p {
22225
    max-width: 55%;
22226
  }
16848 stevensc 22227
 
16825 efrain 22228
  .mn-wd-xxl-55p {
22229
    min-width: 55%;
22230
  }
16848 stevensc 22231
 
16825 efrain 22232
  .wd-xxl-55-f {
22233
    width: 55px !important;
22234
  }
16848 stevensc 22235
 
16825 efrain 22236
  .wd-xxl-55p-f {
22237
    width: 55% !important;
22238
  }
16848 stevensc 22239
 
16825 efrain 22240
  .mx-wd-xxl-55p-f {
22241
    max-width: 55% !important;
22242
  }
16848 stevensc 22243
 
16825 efrain 22244
  .mn-wd-xxl-55p-f {
22245
    min-width: 55% !important;
22246
  }
16848 stevensc 22247
 
16825 efrain 22248
  .wd-xxl-60 {
22249
    width: 60px;
22250
  }
16848 stevensc 22251
 
16825 efrain 22252
  .wd-xxl-60p {
22253
    width: 60%;
22254
  }
16848 stevensc 22255
 
16825 efrain 22256
  .mx-wd-xxl-60p {
22257
    max-width: 60%;
22258
  }
16848 stevensc 22259
 
16825 efrain 22260
  .mn-wd-xxl-60p {
22261
    min-width: 60%;
22262
  }
16848 stevensc 22263
 
16825 efrain 22264
  .wd-xxl-60-f {
22265
    width: 60px !important;
22266
  }
16848 stevensc 22267
 
16825 efrain 22268
  .wd-xxl-60p-f {
22269
    width: 60% !important;
22270
  }
16848 stevensc 22271
 
16825 efrain 22272
  .mx-wd-xxl-60p-f {
22273
    max-width: 60% !important;
22274
  }
16848 stevensc 22275
 
16825 efrain 22276
  .mn-wd-xxl-60p-f {
22277
    min-width: 60% !important;
22278
  }
16848 stevensc 22279
 
16825 efrain 22280
  .wd-xxl-65 {
22281
    width: 65px;
22282
  }
16848 stevensc 22283
 
16825 efrain 22284
  .wd-xxl-65p {
22285
    width: 65%;
22286
  }
16848 stevensc 22287
 
16825 efrain 22288
  .mx-wd-xxl-65p {
22289
    max-width: 65%;
22290
  }
16848 stevensc 22291
 
16825 efrain 22292
  .mn-wd-xxl-65p {
22293
    min-width: 65%;
22294
  }
16848 stevensc 22295
 
16825 efrain 22296
  .wd-xxl-65-f {
22297
    width: 65px !important;
22298
  }
16848 stevensc 22299
 
16825 efrain 22300
  .wd-xxl-65p-f {
22301
    width: 65% !important;
22302
  }
16848 stevensc 22303
 
16825 efrain 22304
  .mx-wd-xxl-65p-f {
22305
    max-width: 65% !important;
22306
  }
16848 stevensc 22307
 
16825 efrain 22308
  .mn-wd-xxl-65p-f {
22309
    min-width: 65% !important;
22310
  }
16848 stevensc 22311
 
16825 efrain 22312
  .wd-xxl-70 {
22313
    width: 70px;
22314
  }
16848 stevensc 22315
 
16825 efrain 22316
  .wd-xxl-70p {
22317
    width: 70%;
22318
  }
16848 stevensc 22319
 
16825 efrain 22320
  .mx-wd-xxl-70p {
22321
    max-width: 70%;
22322
  }
16848 stevensc 22323
 
16825 efrain 22324
  .mn-wd-xxl-70p {
22325
    min-width: 70%;
22326
  }
16848 stevensc 22327
 
16825 efrain 22328
  .wd-xxl-70-f {
22329
    width: 70px !important;
22330
  }
16848 stevensc 22331
 
16825 efrain 22332
  .wd-xxl-70p-f {
22333
    width: 70% !important;
22334
  }
16848 stevensc 22335
 
16825 efrain 22336
  .mx-wd-xxl-70p-f {
22337
    max-width: 70% !important;
22338
  }
16848 stevensc 22339
 
16825 efrain 22340
  .mn-wd-xxl-70p-f {
22341
    min-width: 70% !important;
22342
  }
16848 stevensc 22343
 
16825 efrain 22344
  .wd-xxl-75 {
22345
    width: 75px;
22346
  }
16848 stevensc 22347
 
16825 efrain 22348
  .wd-xxl-75p {
22349
    width: 75%;
22350
  }
16848 stevensc 22351
 
16825 efrain 22352
  .mx-wd-xxl-75p {
22353
    max-width: 75%;
22354
  }
16848 stevensc 22355
 
16825 efrain 22356
  .mn-wd-xxl-75p {
22357
    min-width: 75%;
22358
  }
16848 stevensc 22359
 
16825 efrain 22360
  .wd-xxl-75-f {
22361
    width: 75px !important;
22362
  }
16848 stevensc 22363
 
16825 efrain 22364
  .wd-xxl-75p-f {
22365
    width: 75% !important;
22366
  }
16848 stevensc 22367
 
16825 efrain 22368
  .mx-wd-xxl-75p-f {
22369
    max-width: 75% !important;
22370
  }
16848 stevensc 22371
 
16825 efrain 22372
  .mn-wd-xxl-75p-f {
22373
    min-width: 75% !important;
22374
  }
16848 stevensc 22375
 
16825 efrain 22376
  .wd-xxl-80 {
22377
    width: 80px;
22378
  }
16848 stevensc 22379
 
16825 efrain 22380
  .wd-xxl-80p {
22381
    width: 80%;
22382
  }
16848 stevensc 22383
 
16825 efrain 22384
  .mx-wd-xxl-80p {
22385
    max-width: 80%;
22386
  }
16848 stevensc 22387
 
16825 efrain 22388
  .mn-wd-xxl-80p {
22389
    min-width: 80%;
22390
  }
16848 stevensc 22391
 
16825 efrain 22392
  .wd-xxl-80-f {
22393
    width: 80px !important;
22394
  }
16848 stevensc 22395
 
16825 efrain 22396
  .wd-xxl-80p-f {
22397
    width: 80% !important;
22398
  }
16848 stevensc 22399
 
16825 efrain 22400
  .mx-wd-xxl-80p-f {
22401
    max-width: 80% !important;
22402
  }
16848 stevensc 22403
 
16825 efrain 22404
  .mn-wd-xxl-80p-f {
22405
    min-width: 80% !important;
22406
  }
16848 stevensc 22407
 
16825 efrain 22408
  .wd-xxl-85 {
22409
    width: 85px;
22410
  }
16848 stevensc 22411
 
16825 efrain 22412
  .wd-xxl-85p {
22413
    width: 85%;
22414
  }
16848 stevensc 22415
 
16825 efrain 22416
  .mx-wd-xxl-85p {
22417
    max-width: 85%;
22418
  }
16848 stevensc 22419
 
16825 efrain 22420
  .mn-wd-xxl-85p {
22421
    min-width: 85%;
22422
  }
16848 stevensc 22423
 
16825 efrain 22424
  .wd-xxl-85-f {
22425
    width: 85px !important;
22426
  }
16848 stevensc 22427
 
16825 efrain 22428
  .wd-xxl-85p-f {
22429
    width: 85% !important;
22430
  }
16848 stevensc 22431
 
16825 efrain 22432
  .mx-wd-xxl-85p-f {
22433
    max-width: 85% !important;
22434
  }
16848 stevensc 22435
 
16825 efrain 22436
  .mn-wd-xxl-85p-f {
22437
    min-width: 85% !important;
22438
  }
16848 stevensc 22439
 
16825 efrain 22440
  .wd-xxl-90 {
22441
    width: 90px;
22442
  }
16848 stevensc 22443
 
16825 efrain 22444
  .wd-xxl-90p {
22445
    width: 90%;
22446
  }
16848 stevensc 22447
 
16825 efrain 22448
  .mx-wd-xxl-90p {
22449
    max-width: 90%;
22450
  }
16848 stevensc 22451
 
16825 efrain 22452
  .mn-wd-xxl-90p {
22453
    min-width: 90%;
22454
  }
16848 stevensc 22455
 
16825 efrain 22456
  .wd-xxl-90-f {
22457
    width: 90px !important;
22458
  }
16848 stevensc 22459
 
16825 efrain 22460
  .wd-xxl-90p-f {
22461
    width: 90% !important;
22462
  }
16848 stevensc 22463
 
16825 efrain 22464
  .mx-wd-xxl-90p-f {
22465
    max-width: 90% !important;
22466
  }
16848 stevensc 22467
 
16825 efrain 22468
  .mn-wd-xxl-90p-f {
22469
    min-width: 90% !important;
22470
  }
16848 stevensc 22471
 
16825 efrain 22472
  .wd-xxl-95 {
22473
    width: 95px;
22474
  }
16848 stevensc 22475
 
16825 efrain 22476
  .wd-xxl-95p {
22477
    width: 95%;
22478
  }
16848 stevensc 22479
 
16825 efrain 22480
  .mx-wd-xxl-95p {
22481
    max-width: 95%;
22482
  }
16848 stevensc 22483
 
16825 efrain 22484
  .mn-wd-xxl-95p {
22485
    min-width: 95%;
22486
  }
16848 stevensc 22487
 
16825 efrain 22488
  .wd-xxl-95-f {
22489
    width: 95px !important;
22490
  }
16848 stevensc 22491
 
16825 efrain 22492
  .wd-xxl-95p-f {
22493
    width: 95% !important;
22494
  }
16848 stevensc 22495
 
16825 efrain 22496
  .mx-wd-xxl-95p-f {
22497
    max-width: 95% !important;
22498
  }
16848 stevensc 22499
 
16825 efrain 22500
  .mn-wd-xxl-95p-f {
22501
    min-width: 95% !important;
22502
  }
16848 stevensc 22503
 
16825 efrain 22504
  .wd-xxl-100 {
22505
    width: 100px;
22506
  }
16848 stevensc 22507
 
16825 efrain 22508
  .wd-xxl-100p {
22509
    width: 100%;
22510
  }
16848 stevensc 22511
 
16825 efrain 22512
  .mx-wd-xxl-100p {
22513
    max-width: 100%;
22514
  }
16848 stevensc 22515
 
16825 efrain 22516
  .mn-wd-xxl-100p {
22517
    min-width: 100%;
22518
  }
16848 stevensc 22519
 
16825 efrain 22520
  .wd-xxl-100-f {
22521
    width: 100px !important;
22522
  }
16848 stevensc 22523
 
16825 efrain 22524
  .wd-xxl-100p-f {
22525
    width: 100% !important;
22526
  }
16848 stevensc 22527
 
16825 efrain 22528
  .mx-wd-xxl-100p-f {
22529
    max-width: 100% !important;
22530
  }
16848 stevensc 22531
 
16825 efrain 22532
  .mn-wd-xxl-100p-f {
22533
    min-width: 100% !important;
22534
  }
16848 stevensc 22535
 
16825 efrain 22536
  .wd-xxl-150 {
22537
    width: 150px;
22538
  }
16848 stevensc 22539
 
16825 efrain 22540
  .wd-xxl-150p {
22541
    width: 150%;
22542
  }
16848 stevensc 22543
 
16825 efrain 22544
  .mx-wd-xxl-150p {
22545
    max-width: 150%;
22546
  }
16848 stevensc 22547
 
16825 efrain 22548
  .mn-wd-xxl-150p {
22549
    min-width: 150%;
22550
  }
16848 stevensc 22551
 
16825 efrain 22552
  .wd-xxl-150-f {
22553
    width: 150px !important;
22554
  }
16848 stevensc 22555
 
16825 efrain 22556
  .wd-xxl-150p-f {
22557
    width: 150% !important;
22558
  }
16848 stevensc 22559
 
16825 efrain 22560
  .mx-wd-xxl-150p-f {
22561
    max-width: 150% !important;
22562
  }
16848 stevensc 22563
 
16825 efrain 22564
  .mn-wd-xxl-150p-f {
22565
    min-width: 150% !important;
22566
  }
16848 stevensc 22567
 
16825 efrain 22568
  .wd-xxl-200 {
22569
    width: 200px;
22570
  }
16848 stevensc 22571
 
16825 efrain 22572
  .wd-xxl-200p {
22573
    width: 200%;
22574
  }
16848 stevensc 22575
 
16825 efrain 22576
  .mx-wd-xxl-200p {
22577
    max-width: 200%;
22578
  }
16848 stevensc 22579
 
16825 efrain 22580
  .mn-wd-xxl-200p {
22581
    min-width: 200%;
22582
  }
16848 stevensc 22583
 
16825 efrain 22584
  .wd-xxl-200-f {
22585
    width: 200px !important;
22586
  }
16848 stevensc 22587
 
16825 efrain 22588
  .wd-xxl-200p-f {
22589
    width: 200% !important;
22590
  }
16848 stevensc 22591
 
16825 efrain 22592
  .mx-wd-xxl-200p-f {
22593
    max-width: 200% !important;
22594
  }
16848 stevensc 22595
 
16825 efrain 22596
  .mn-wd-xxl-200p-f {
22597
    min-width: 200% !important;
22598
  }
16848 stevensc 22599
 
16825 efrain 22600
  .wd-xxl-250 {
22601
    width: 250px;
22602
  }
16848 stevensc 22603
 
16825 efrain 22604
  .wd-xxl-250p {
22605
    width: 250%;
22606
  }
16848 stevensc 22607
 
16825 efrain 22608
  .mx-wd-xxl-250p {
22609
    max-width: 250%;
22610
  }
16848 stevensc 22611
 
16825 efrain 22612
  .mn-wd-xxl-250p {
22613
    min-width: 250%;
22614
  }
16848 stevensc 22615
 
16825 efrain 22616
  .wd-xxl-250-f {
22617
    width: 250px !important;
22618
  }
16848 stevensc 22619
 
16825 efrain 22620
  .wd-xxl-250p-f {
22621
    width: 250% !important;
22622
  }
16848 stevensc 22623
 
16825 efrain 22624
  .mx-wd-xxl-250p-f {
22625
    max-width: 250% !important;
22626
  }
16848 stevensc 22627
 
16825 efrain 22628
  .mn-wd-xxl-250p-f {
22629
    min-width: 250% !important;
22630
  }
16848 stevensc 22631
 
16825 efrain 22632
  .wd-xxl-300 {
22633
    width: 300px;
22634
  }
16848 stevensc 22635
 
16825 efrain 22636
  .wd-xxl-300p {
22637
    width: 300%;
22638
  }
16848 stevensc 22639
 
16825 efrain 22640
  .mx-wd-xxl-300p {
22641
    max-width: 300%;
22642
  }
16848 stevensc 22643
 
16825 efrain 22644
  .mn-wd-xxl-300p {
22645
    min-width: 300%;
22646
  }
16848 stevensc 22647
 
16825 efrain 22648
  .wd-xxl-300-f {
22649
    width: 300px !important;
22650
  }
16848 stevensc 22651
 
16825 efrain 22652
  .wd-xxl-300p-f {
22653
    width: 300% !important;
22654
  }
16848 stevensc 22655
 
16825 efrain 22656
  .mx-wd-xxl-300p-f {
22657
    max-width: 300% !important;
22658
  }
16848 stevensc 22659
 
16825 efrain 22660
  .mn-wd-xxl-300p-f {
22661
    min-width: 300% !important;
22662
  }
16848 stevensc 22663
 
16825 efrain 22664
  .wd-xxl-350 {
22665
    width: 350px;
22666
  }
16848 stevensc 22667
 
16825 efrain 22668
  .wd-xxl-350p {
22669
    width: 350%;
22670
  }
16848 stevensc 22671
 
16825 efrain 22672
  .mx-wd-xxl-350p {
22673
    max-width: 350%;
22674
  }
16848 stevensc 22675
 
16825 efrain 22676
  .mn-wd-xxl-350p {
22677
    min-width: 350%;
22678
  }
16848 stevensc 22679
 
16825 efrain 22680
  .wd-xxl-350-f {
22681
    width: 350px !important;
22682
  }
16848 stevensc 22683
 
16825 efrain 22684
  .wd-xxl-350p-f {
22685
    width: 350% !important;
22686
  }
16848 stevensc 22687
 
16825 efrain 22688
  .mx-wd-xxl-350p-f {
22689
    max-width: 350% !important;
22690
  }
16848 stevensc 22691
 
16825 efrain 22692
  .mn-wd-xxl-350p-f {
22693
    min-width: 350% !important;
22694
  }
16848 stevensc 22695
 
16825 efrain 22696
  .wd-xxl-400 {
22697
    width: 400px;
22698
  }
16848 stevensc 22699
 
16825 efrain 22700
  .wd-xxl-400p {
22701
    width: 400%;
22702
  }
16848 stevensc 22703
 
16825 efrain 22704
  .mx-wd-xxl-400p {
22705
    max-width: 400%;
22706
  }
16848 stevensc 22707
 
16825 efrain 22708
  .mn-wd-xxl-400p {
22709
    min-width: 400%;
22710
  }
16848 stevensc 22711
 
16825 efrain 22712
  .wd-xxl-400-f {
22713
    width: 400px !important;
22714
  }
16848 stevensc 22715
 
16825 efrain 22716
  .wd-xxl-400p-f {
22717
    width: 400% !important;
22718
  }
16848 stevensc 22719
 
16825 efrain 22720
  .mx-wd-xxl-400p-f {
22721
    max-width: 400% !important;
22722
  }
16848 stevensc 22723
 
16825 efrain 22724
  .mn-wd-xxl-400p-f {
22725
    min-width: 400% !important;
22726
  }
16848 stevensc 22727
 
16825 efrain 22728
  .wd-xxl-450 {
22729
    width: 450px;
22730
  }
16848 stevensc 22731
 
16825 efrain 22732
  .wd-xxl-450p {
22733
    width: 450%;
22734
  }
16848 stevensc 22735
 
16825 efrain 22736
  .mx-wd-xxl-450p {
22737
    max-width: 450%;
22738
  }
16848 stevensc 22739
 
16825 efrain 22740
  .mn-wd-xxl-450p {
22741
    min-width: 450%;
22742
  }
16848 stevensc 22743
 
16825 efrain 22744
  .wd-xxl-450-f {
22745
    width: 450px !important;
22746
  }
16848 stevensc 22747
 
16825 efrain 22748
  .wd-xxl-450p-f {
22749
    width: 450% !important;
22750
  }
16848 stevensc 22751
 
16825 efrain 22752
  .mx-wd-xxl-450p-f {
22753
    max-width: 450% !important;
22754
  }
16848 stevensc 22755
 
16825 efrain 22756
  .mn-wd-xxl-450p-f {
22757
    min-width: 450% !important;
22758
  }
16848 stevensc 22759
 
16825 efrain 22760
  .wd-xxl-500 {
22761
    width: 500px;
22762
  }
16848 stevensc 22763
 
16825 efrain 22764
  .wd-xxl-500p {
22765
    width: 500%;
22766
  }
16848 stevensc 22767
 
16825 efrain 22768
  .mx-wd-xxl-500p {
22769
    max-width: 500%;
22770
  }
16848 stevensc 22771
 
16825 efrain 22772
  .mn-wd-xxl-500p {
22773
    min-width: 500%;
22774
  }
16848 stevensc 22775
 
16825 efrain 22776
  .wd-xxl-500-f {
22777
    width: 500px !important;
22778
  }
16848 stevensc 22779
 
16825 efrain 22780
  .wd-xxl-500p-f {
22781
    width: 500% !important;
22782
  }
16848 stevensc 22783
 
16825 efrain 22784
  .mx-wd-xxl-500p-f {
22785
    max-width: 500% !important;
22786
  }
16848 stevensc 22787
 
16825 efrain 22788
  .mn-wd-xxl-500p-f {
22789
    min-width: 500% !important;
22790
  }
16848 stevensc 22791
 
16825 efrain 22792
  .wd-xxl-550 {
22793
    width: 550px;
22794
  }
16848 stevensc 22795
 
16825 efrain 22796
  .wd-xxl-550p {
22797
    width: 550%;
22798
  }
16848 stevensc 22799
 
16825 efrain 22800
  .mx-wd-xxl-550p {
22801
    max-width: 550%;
22802
  }
16848 stevensc 22803
 
16825 efrain 22804
  .mn-wd-xxl-550p {
22805
    min-width: 550%;
22806
  }
16848 stevensc 22807
 
16825 efrain 22808
  .wd-xxl-550-f {
22809
    width: 550px !important;
22810
  }
16848 stevensc 22811
 
16825 efrain 22812
  .wd-xxl-550p-f {
22813
    width: 550% !important;
22814
  }
16848 stevensc 22815
 
16825 efrain 22816
  .mx-wd-xxl-550p-f {
22817
    max-width: 550% !important;
22818
  }
16848 stevensc 22819
 
16825 efrain 22820
  .mn-wd-xxl-550p-f {
22821
    min-width: 550% !important;
22822
  }
16848 stevensc 22823
 
16825 efrain 22824
  .wd-xxl-600 {
22825
    width: 600px;
22826
  }
16848 stevensc 22827
 
16825 efrain 22828
  .wd-xxl-600p {
22829
    width: 600%;
22830
  }
16848 stevensc 22831
 
16825 efrain 22832
  .mx-wd-xxl-600p {
22833
    max-width: 600%;
22834
  }
16848 stevensc 22835
 
16825 efrain 22836
  .mn-wd-xxl-600p {
22837
    min-width: 600%;
22838
  }
16848 stevensc 22839
 
16825 efrain 22840
  .wd-xxl-600-f {
22841
    width: 600px !important;
22842
  }
16848 stevensc 22843
 
16825 efrain 22844
  .wd-xxl-600p-f {
22845
    width: 600% !important;
22846
  }
16848 stevensc 22847
 
16825 efrain 22848
  .mx-wd-xxl-600p-f {
22849
    max-width: 600% !important;
22850
  }
16848 stevensc 22851
 
16825 efrain 22852
  .mn-wd-xxl-600p-f {
22853
    min-width: 600% !important;
22854
  }
16848 stevensc 22855
 
16825 efrain 22856
  .wd-xxl-650 {
22857
    width: 650px;
22858
  }
16848 stevensc 22859
 
16825 efrain 22860
  .wd-xxl-650p {
22861
    width: 650%;
22862
  }
16848 stevensc 22863
 
16825 efrain 22864
  .mx-wd-xxl-650p {
22865
    max-width: 650%;
22866
  }
16848 stevensc 22867
 
16825 efrain 22868
  .mn-wd-xxl-650p {
22869
    min-width: 650%;
22870
  }
16848 stevensc 22871
 
16825 efrain 22872
  .wd-xxl-650-f {
22873
    width: 650px !important;
22874
  }
16848 stevensc 22875
 
16825 efrain 22876
  .wd-xxl-650p-f {
22877
    width: 650% !important;
22878
  }
16848 stevensc 22879
 
16825 efrain 22880
  .mx-wd-xxl-650p-f {
22881
    max-width: 650% !important;
22882
  }
16848 stevensc 22883
 
16825 efrain 22884
  .mn-wd-xxl-650p-f {
22885
    min-width: 650% !important;
22886
  }
16848 stevensc 22887
 
16825 efrain 22888
  .wd-xxl-700 {
22889
    width: 700px;
22890
  }
16848 stevensc 22891
 
16825 efrain 22892
  .wd-xxl-700p {
22893
    width: 700%;
22894
  }
16848 stevensc 22895
 
16825 efrain 22896
  .mx-wd-xxl-700p {
22897
    max-width: 700%;
22898
  }
16848 stevensc 22899
 
16825 efrain 22900
  .mn-wd-xxl-700p {
22901
    min-width: 700%;
22902
  }
16848 stevensc 22903
 
16825 efrain 22904
  .wd-xxl-700-f {
22905
    width: 700px !important;
22906
  }
16848 stevensc 22907
 
16825 efrain 22908
  .wd-xxl-700p-f {
22909
    width: 700% !important;
22910
  }
16848 stevensc 22911
 
16825 efrain 22912
  .mx-wd-xxl-700p-f {
22913
    max-width: 700% !important;
22914
  }
16848 stevensc 22915
 
16825 efrain 22916
  .mn-wd-xxl-700p-f {
22917
    min-width: 700% !important;
22918
  }
16848 stevensc 22919
 
16825 efrain 22920
  .wd-xxl-750 {
22921
    width: 750px;
22922
  }
16848 stevensc 22923
 
16825 efrain 22924
  .wd-xxl-750p {
22925
    width: 750%;
22926
  }
16848 stevensc 22927
 
16825 efrain 22928
  .mx-wd-xxl-750p {
22929
    max-width: 750%;
22930
  }
16848 stevensc 22931
 
16825 efrain 22932
  .mn-wd-xxl-750p {
22933
    min-width: 750%;
22934
  }
16848 stevensc 22935
 
16825 efrain 22936
  .wd-xxl-750-f {
22937
    width: 750px !important;
22938
  }
16848 stevensc 22939
 
16825 efrain 22940
  .wd-xxl-750p-f {
22941
    width: 750% !important;
22942
  }
16848 stevensc 22943
 
16825 efrain 22944
  .mx-wd-xxl-750p-f {
22945
    max-width: 750% !important;
22946
  }
16848 stevensc 22947
 
16825 efrain 22948
  .mn-wd-xxl-750p-f {
22949
    min-width: 750% !important;
22950
  }
16848 stevensc 22951
 
16825 efrain 22952
  .wd-xxl-800 {
22953
    width: 800px;
22954
  }
16848 stevensc 22955
 
16825 efrain 22956
  .wd-xxl-800p {
22957
    width: 800%;
22958
  }
16848 stevensc 22959
 
16825 efrain 22960
  .mx-wd-xxl-800p {
22961
    max-width: 800%;
22962
  }
16848 stevensc 22963
 
16825 efrain 22964
  .mn-wd-xxl-800p {
22965
    min-width: 800%;
22966
  }
16848 stevensc 22967
 
16825 efrain 22968
  .wd-xxl-800-f {
22969
    width: 800px !important;
22970
  }
16848 stevensc 22971
 
16825 efrain 22972
  .wd-xxl-800p-f {
22973
    width: 800% !important;
22974
  }
16848 stevensc 22975
 
16825 efrain 22976
  .mx-wd-xxl-800p-f {
22977
    max-width: 800% !important;
22978
  }
16848 stevensc 22979
 
16825 efrain 22980
  .mn-wd-xxl-800p-f {
22981
    min-width: 800% !important;
22982
  }
16848 stevensc 22983
 
16825 efrain 22984
  .wd-xxl-850 {
22985
    width: 850px;
22986
  }
16848 stevensc 22987
 
16825 efrain 22988
  .wd-xxl-850p {
22989
    width: 850%;
22990
  }
16848 stevensc 22991
 
16825 efrain 22992
  .mx-wd-xxl-850p {
22993
    max-width: 850%;
22994
  }
16848 stevensc 22995
 
16825 efrain 22996
  .mn-wd-xxl-850p {
22997
    min-width: 850%;
22998
  }
16848 stevensc 22999
 
16825 efrain 23000
  .wd-xxl-850-f {
23001
    width: 850px !important;
23002
  }
16848 stevensc 23003
 
16825 efrain 23004
  .wd-xxl-850p-f {
23005
    width: 850% !important;
23006
  }
16848 stevensc 23007
 
16825 efrain 23008
  .mx-wd-xxl-850p-f {
23009
    max-width: 850% !important;
23010
  }
16848 stevensc 23011
 
16825 efrain 23012
  .mn-wd-xxl-850p-f {
23013
    min-width: 850% !important;
23014
  }
16848 stevensc 23015
 
16825 efrain 23016
  .wd-xxl-900 {
23017
    width: 900px;
23018
  }
16848 stevensc 23019
 
16825 efrain 23020
  .wd-xxl-900p {
23021
    width: 900%;
23022
  }
16848 stevensc 23023
 
16825 efrain 23024
  .mx-wd-xxl-900p {
23025
    max-width: 900%;
23026
  }
16848 stevensc 23027
 
16825 efrain 23028
  .mn-wd-xxl-900p {
23029
    min-width: 900%;
23030
  }
16848 stevensc 23031
 
16825 efrain 23032
  .wd-xxl-900-f {
23033
    width: 900px !important;
23034
  }
16848 stevensc 23035
 
16825 efrain 23036
  .wd-xxl-900p-f {
23037
    width: 900% !important;
23038
  }
16848 stevensc 23039
 
16825 efrain 23040
  .mx-wd-xxl-900p-f {
23041
    max-width: 900% !important;
23042
  }
16848 stevensc 23043
 
16825 efrain 23044
  .mn-wd-xxl-900p-f {
23045
    min-width: 900% !important;
23046
  }
16848 stevensc 23047
 
16825 efrain 23048
  .wd-xxl-950 {
23049
    width: 950px;
23050
  }
16848 stevensc 23051
 
16825 efrain 23052
  .wd-xxl-950p {
23053
    width: 950%;
23054
  }
16848 stevensc 23055
 
16825 efrain 23056
  .mx-wd-xxl-950p {
23057
    max-width: 950%;
23058
  }
16848 stevensc 23059
 
16825 efrain 23060
  .mn-wd-xxl-950p {
23061
    min-width: 950%;
23062
  }
16848 stevensc 23063
 
16825 efrain 23064
  .wd-xxl-950-f {
23065
    width: 950px !important;
23066
  }
16848 stevensc 23067
 
16825 efrain 23068
  .wd-xxl-950p-f {
23069
    width: 950% !important;
23070
  }
16848 stevensc 23071
 
16825 efrain 23072
  .mx-wd-xxl-950p-f {
23073
    max-width: 950% !important;
23074
  }
16848 stevensc 23075
 
16825 efrain 23076
  .mn-wd-xxl-950p-f {
23077
    min-width: 950% !important;
23078
  }
16848 stevensc 23079
 
16825 efrain 23080
  .wd-xxl-1000 {
23081
    width: 1000px;
23082
  }
16848 stevensc 23083
 
16825 efrain 23084
  .wd-xxl-1000p {
23085
    width: 1000%;
23086
  }
16848 stevensc 23087
 
16825 efrain 23088
  .mx-wd-xxl-1000p {
23089
    max-width: 1000%;
23090
  }
16848 stevensc 23091
 
16825 efrain 23092
  .mn-wd-xxl-1000p {
23093
    min-width: 1000%;
23094
  }
16848 stevensc 23095
 
16825 efrain 23096
  .wd-xxl-1000-f {
23097
    width: 1000px !important;
23098
  }
16848 stevensc 23099
 
16825 efrain 23100
  .wd-xxl-1000p-f {
23101
    width: 1000% !important;
23102
  }
16848 stevensc 23103
 
16825 efrain 23104
  .mx-wd-xxl-1000p-f {
23105
    max-width: 1000% !important;
23106
  }
16848 stevensc 23107
 
16825 efrain 23108
  .mn-wd-xxl-1000p-f {
23109
    min-width: 1000% !important;
23110
  }
16848 stevensc 23111
 
16825 efrain 23112
  .wd-xxl-auto {
23113
    width: auto;
23114
  }
16848 stevensc 23115
 
16825 efrain 23116
  .wd-xxl-auto {
23117
    width: auto !important;
23118
  }
23119
}
16848 stevensc 23120
 
16825 efrain 23121
.bg-facebook {
23122
  background: social-color("facebook");
23123
}
23124
 
23125
.bg-twitter {
23126
  background: social-color("twitter");
23127
}
23128
 
23129
.bg-google {
23130
  background: social-color("google");
23131
}
23132
 
23133
.bg-youtube {
23134
  background: social-color("youtube");
23135
}
23136
 
23137
.bg-vimeo {
23138
  background: social-color("vimeo");
23139
}
23140
 
23141
.bg-dribbble {
23142
  background: social-color("dribbble");
23143
}
23144
 
23145
.bg-github {
23146
  background: social-color("github");
23147
}
23148
 
23149
.bg-instagram {
23150
  background: social-color("instagram");
23151
}
23152
 
23153
.bg-pinterest {
23154
  background: social-color("pinterest");
23155
}
23156
 
23157
.bg-flickr {
23158
  background: social-color("flickr");
23159
}
23160
 
23161
.bg-bitbucket {
23162
  background: social-color("bitbucket");
23163
}
23164
 
23165
.bg-linkedin {
23166
  background: social-color("linkedin");
23167
}
23168
 
23169
body {
23170
  margin: 0;
23171
  padding: 0;
23172
}
23173
 
16848 stevensc 23174
.btn,
23175
.wizard>.actions a,
23176
.wizard>.actions a:active,
23177
.wizard>.actions a:hover,
23178
div.tox .tox-button,
23179
.swal2-popup .swal2-actions button,
23180
.fc .fc-button-primary,
16825 efrain 23181
.btn-group.open .dropdown-toggle,
23182
.btn:active,
23183
.btn:focus,
23184
.btn:hover,
23185
.btn:visited,
23186
a,
23187
a:active,
23188
a:checked,
23189
a:focus,
23190
a:hover,
23191
a:visited,
23192
body,
23193
button,
23194
button:active,
23195
button:hover,
23196
button:visited,
23197
div,
23198
input,
23199
input:active,
23200
input:hover,
23201
input:focus,
23202
input:visited,
23203
select,
23204
select:active,
23205
select:focus,
23206
select:visited,
23207
textarea,
23208
textarea:active,
23209
textarea:focus,
23210
textarea:visited {
23211
  -webkit-box-shadow: none;
23212
  -moz-box-shadow: none;
23213
  box-shadow: none;
23214
}
23215
 
23216
select,
23217
.form-check-input {
16848 stevensc 23218
  appearance: none;
16825 efrain 23219
  -moz-appearance: none;
23220
}
23221
 
23222
input:-webkit-autofill,
23223
input:-webkit-autofill:hover,
23224
input:-webkit-autofill:focus,
23225
input:-webkit-autofill:active {
23226
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23227
  -webkit-text-fill-color: #000;
23228
}
23229
 
23230
*:-moz-full-screen,
23231
*:-webkit-full-screen,
23232
*:fullscreen *:-ms-full-screen {
23233
  overflow: auto;
23234
}
23235
 
23236
pre {
23237
  background-color: color(gray-lighter);
23238
  padding: 15px;
23239
  font-size: 14px;
23240
}
23241
 
23242
code {
23243
  padding: 5px;
23244
  font-family: "Roboto", Helvetica, sans-serif;
23245
  font-weight: 400;
23246
  font-size: 0.875rem;
23247
  border-radius: 4px;
23248
}
23249
 
23250
.grid-margin {
23251
  margin-bottom: 1.5rem;
23252
}
23253
 
23254
@media (min-width: 576px) {
23255
  .grid-margin-sm-0 {
23256
    margin-bottom: 0;
23257
  }
23258
}
23259
 
23260
@media (min-width: 768px) {
23261
  .grid-margin-md-0 {
23262
    margin-bottom: 0;
23263
  }
23264
}
23265
 
23266
@media (min-width: 992px) {
23267
  .grid-margin-lg-0 {
23268
    margin-bottom: 0;
23269
  }
23270
}
23271
 
23272
@media (min-width: 1200px) {
23273
  .grid-margin-xl-0 {
23274
    margin-bottom: 0;
23275
  }
23276
}
23277
 
23278
.stretch-card {
23279
  display: flex;
23280
  align-items: stretch;
23281
  justify-content: stretch;
23282
}
16848 stevensc 23283
 
23284
.stretch-card>.card {
16825 efrain 23285
  width: 100%;
23286
  min-width: 100%;
23287
}
23288
 
23289
.img-lg {
23290
  width: 92px;
23291
  height: 92px;
23292
}
23293
 
23294
.img-md {
23295
  width: 75px;
23296
  height: 92px;
23297
}
23298
 
23299
.img-sm {
23300
  width: 43px;
23301
  height: 43px;
23302
}
23303
 
23304
.img-xs {
23305
  width: 36px;
23306
  height: 36px;
23307
}
23308
 
23309
.img-ss {
23310
  width: 26px;
23311
  height: 26px;
23312
}
23313
 
23314
.fw-boldest {
23315
  font-weight: 900;
23316
}
23317
 
23318
.tx-10 {
23319
  font-size: 10px;
23320
}
23321
 
23322
.tx-11 {
23323
  font-size: 11px;
23324
}
23325
 
23326
.tx-12 {
23327
  font-size: 12px;
23328
}
23329
 
23330
.tx-13 {
23331
  font-size: 13px;
23332
}
23333
 
23334
.tx-14 {
23335
  font-size: 14px;
23336
}
23337
 
23338
.tx-16 {
23339
  font-size: 16px;
23340
}
23341
 
23342
.tx-80 {
23343
  font-size: 80px;
23344
}
23345
 
23346
svg.icon-xs {
23347
  width: 12px;
23348
  height: 12px;
23349
}
23350
 
23351
svg.icon-sm {
23352
  width: 14px;
23353
  height: 14px;
23354
}
23355
 
23356
svg.icon-md {
23357
  width: 16px;
23358
  height: 16px;
23359
}
23360
 
23361
svg.icon-lg {
23362
  width: 20px;
23363
  height: 20px;
23364
}
23365
 
23366
svg.icon-xl {
23367
  width: 26px;
23368
  height: 26px;
23369
}
23370
 
23371
svg.icon-xxl {
23372
  width: 40px;
23373
  height: 40px;
23374
}
23375
 
23376
.icon-xs {
23377
  font-size: 14px;
23378
}
23379
 
23380
.icon-sm {
23381
  font-size: 16px;
23382
}
23383
 
23384
.icon-md {
23385
  font-size: 18px;
23386
}
23387
 
23388
.icon-lg {
23389
  font-size: 20px;
23390
}
23391
 
23392
.icon-xl {
23393
  font-size: 24px;
23394
}
23395
 
23396
.icon-xxl {
23397
  font-size: 30px;
23398
}
23399
 
23400
.cursor-pointer {
23401
  cursor: pointer;
23402
}
23403
 
23404
.cursor-default {
23405
  cursor: default;
23406
}
23407
 
23408
.pt-1px {
23409
  padding-top: 1px;
23410
}
23411
 
23412
.pt-2px {
23413
  padding-top: 2px;
23414
}
23415
 
23416
.pt-3px {
23417
  padding-top: 3px;
23418
}
23419
 
23420
.pb-1px {
23421
  padding-bottom: 1px;
23422
}
23423
 
23424
.pb-2px {
23425
  padding-bottom: 2px;
23426
}
23427
 
23428
.pb-3px {
23429
  padding-bottom: 3px;
23430
}
23431
 
23432
.mt-1px {
23433
  margin-top: 1px;
23434
}
23435
 
23436
.mt-2px {
23437
  margin-top: 2px;
23438
}
23439
 
23440
.mt-3px {
23441
  margin-top: 3px;
23442
}
23443
 
23444
.mb-1px {
23445
  margin-bottom: 1px;
23446
}
23447
 
23448
.mb-2px {
23449
  margin-bottom: 2px;
23450
}
23451
 
23452
.mb-3px {
23453
  margin-bottom: 3px;
23454
}
23455
 
23456
.ht-5 {
23457
  height: 5px;
23458
}
23459
 
23460
.ht-10 {
23461
  height: 10px;
23462
}
23463
 
23464
.ht-15 {
23465
  height: 15px;
23466
}
23467
 
23468
.ht-20 {
23469
  height: 20px;
23470
}
23471
 
23472
.ht-30 {
23473
  height: 30px;
23474
}
23475
 
23476
.ht-40 {
23477
  height: 40px;
23478
}
23479
 
23480
.ht-50 {
23481
  height: 50px;
23482
}
23483
 
23484
.ht-60 {
23485
  height: 60px;
23486
}
23487
 
23488
.ht-70 {
23489
  height: 70px;
23490
}
23491
 
23492
.ht-80 {
23493
  height: 80px;
23494
}
23495
 
23496
.ht-90 {
23497
  height: 90px;
23498
}
23499
 
23500
.ht-100 {
23501
  height: 100px;
23502
}
23503
 
23504
body {
23505
  -webkit-font-smoothing: antialiased;
23506
  -moz-osx-font-smoothing: grayscale;
23507
}
23508
 
23509
.text-facebook {
23510
  color: #3b5998;
23511
}
23512
 
23513
.text-twitter {
23514
  color: #1da1f2;
23515
}
23516
 
23517
.text-google {
23518
  color: #dc4e41;
23519
}
23520
 
23521
.text-youtube {
23522
  color: #f00;
23523
}
23524
 
23525
.text-vimeo {
23526
  color: #1ab7ea;
23527
}
23528
 
23529
.text-dribbble {
23530
  color: #ea4c89;
23531
}
23532
 
23533
.text-github {
23534
  color: #181717;
23535
}
23536
 
23537
.text-instagram {
23538
  color: #e4405f;
23539
}
23540
 
23541
.text-pinterest {
23542
  color: #bd081c;
23543
}
23544
 
23545
.text-flickr {
23546
  color: #0063dc;
23547
}
23548
 
23549
.text-bitbucket {
23550
  color: #0052cc;
23551
}
23552
 
23553
.text-linkedin {
23554
  color: #0077b5;
23555
}
23556
 
23557
.main-content {
23558
  color: #000;
23559
  font-size: 16px;
23560
}
16848 stevensc 23561
 
23562
.main-content>.page-title {
16825 efrain 23563
  margin-bottom: 1rem;
23564
  font-weight: 400;
23565
}
16848 stevensc 23566
 
23567
.main-content>h4,
23568
.main-content>.h4 {
16825 efrain 23569
  margin-top: 1.5rem;
23570
  margin-bottom: 0.875rem;
23571
}
16848 stevensc 23572
 
23573
.main-content>h4::before,
23574
.main-content>.h4::before {
16825 efrain 23575
  display: block;
23576
  height: 5.4rem;
23577
  margin-top: -6rem;
23578
  content: "";
23579
}
16848 stevensc 23580
 
23581
.main-content>hr {
16825 efrain 23582
  margin-top: 40px;
23583
  margin-bottom: 40px;
23584
}
16848 stevensc 23585
 
16825 efrain 23586
.main-content .example {
23587
  font-size: 0.875rem;
23588
  letter-spacing: normal;
23589
  padding: 10px;
23590
  background-color: #fff;
23591
  border: 4px solid #e9ecef;
23592
  position: relative;
23593
}
16848 stevensc 23594
 
16825 efrain 23595
@media (min-width: 576px) {
23596
  .main-content .example {
23597
    padding: 25px;
23598
  }
23599
}
16848 stevensc 23600
 
16825 efrain 23601
.main-content .highlight {
23602
  position: relative;
23603
  background-color: #fff;
23604
  padding: 15px;
23605
}
16848 stevensc 23606
 
16825 efrain 23607
.main-content .highlight pre {
23608
  padding: 15px;
23609
  font-size: 0.875rem;
23610
  font-family: "Roboto", Helvetica, sans-serif;
23611
  background: transparent;
23612
  line-height: 1.4;
23613
  margin: 0;
23614
}
16848 stevensc 23615
 
16825 efrain 23616
.main-content .highlight pre code {
23617
  font-family: "Roboto", Helvetica, sans-serif;
23618
  padding: 0;
23619
  tab-size: 8;
23620
  color: #000;
23621
  text-shadow: none;
23622
}
16848 stevensc 23623
 
23624
.main-content .highlight pre code .token.url,
23625
.main-content .highlight pre code .token.string,
23626
.main-content .highlight pre code .token.entity,
23627
.main-content .highlight pre code .token.operator {
16825 efrain 23628
  background: none;
23629
}
16848 stevensc 23630
 
16825 efrain 23631
.main-content .highlight .btn-clipboard {
23632
  position: absolute;
23633
  top: 6px;
23634
  right: 6px;
23635
  font-size: 12px;
23636
  padding: 1px 6px;
23637
  background: rgba(101, 113, 255, 0.2);
23638
}
16848 stevensc 23639
 
23640
.main-content .highlight .btn-clipboard:hover,
23641
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23642
  background: rgba(101, 113, 255, 0.3);
23643
  border-color: transparent;
23644
  transition: background 0.3s ease-in-out;
23645
}
23646
 
16848 stevensc 23647
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23648
  margin-top: 0.5rem;
23649
}
16848 stevensc 23650
 
16825 efrain 23651
.example .modal.static {
23652
  position: static;
23653
  display: block;
23654
}
16848 stevensc 23655
 
16825 efrain 23656
.example .navbar {
23657
  position: relative;
23658
  padding: 0.5rem 1rem;
23659
  left: auto;
23660
  width: 100%;
23661
  height: auto;
23662
  z-index: 9;
23663
  border-bottom: 0;
23664
  box-shadow: none;
23665
}
16848 stevensc 23666
 
16825 efrain 23667
.example .navbar .navbar-brand {
23668
  font-size: 1.25rem;
23669
}
16848 stevensc 23670
 
23671
.example .progress+.progress {
16825 efrain 23672
  margin-top: 10px;
23673
}
16848 stevensc 23674
 
16825 efrain 23675
.example .perfect-scrollbar-example {
23676
  position: relative;
23677
  max-height: 250px;
23678
  background: #fff;
23679
}
16848 stevensc 23680
 
16825 efrain 23681
.example .scrollspy-example {
23682
  position: relative;
23683
  height: 200px;
23684
  margin-top: 0.5rem;
23685
  overflow: auto;
23686
}
16848 stevensc 23687
 
16825 efrain 23688
.example .scrollspy-example-2 {
23689
  position: relative;
23690
  height: 350px;
23691
  overflow: auto;
23692
}
16848 stevensc 23693
 
16825 efrain 23694
.example nav .breadcrumb {
23695
  margin-bottom: 0.75rem;
23696
}
16848 stevensc 23697
 
16825 efrain 23698
.example nav:last-child .breadcrumb {
23699
  margin-bottom: 0;
23700
}
23701
 
23702
.page-breadcrumb {
23703
  margin-bottom: 15px;
23704
}
16848 stevensc 23705
 
16825 efrain 23706
.page-breadcrumb .breadcrumb {
23707
  padding: 0;
23708
  background: #f9fafb;
23709
}
23710
 
23711
.noble-ui-logo {
23712
  font-weight: 700;
23713
  font-size: 25px;
23714
  color: #000865;
23715
}
16848 stevensc 23716
 
16825 efrain 23717
.noble-ui-logo span {
23718
  color: #6571ff;
23719
  font-weight: 300;
23720
}
16848 stevensc 23721
 
16825 efrain 23722
.noble-ui-logo:hover {
23723
  color: #000865;
23724
}
16848 stevensc 23725
 
16825 efrain 23726
.noble-ui-logo.logo-light {
23727
  color: #000;
23728
}
23729
 
23730
.buy-now-wrapper {
23731
  position: fixed;
23732
  bottom: 30px;
23733
  right: 35px;
23734
  z-index: 99999;
23735
}
16848 stevensc 23736
 
16825 efrain 23737
.rtl .buy-now-wrapper {
23738
  right: auto;
23739
  left: 35px;
23740
}
16848 stevensc 23741
 
23742
.buy-now-wrapper .btn svg,
23743
.buy-now-wrapper .wizard>.actions a svg,
23744
.wizard>.actions .buy-now-wrapper a svg,
23745
.buy-now-wrapper div.tox .tox-button svg,
23746
div.tox .buy-now-wrapper .tox-button svg,
23747
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23748
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23749
.buy-now-wrapper .fc .fc-button-primary svg,
23750
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23751
  width: 19px !important;
23752
  height: 19px !important;
23753
}
23754
 
23755
.main-wrapper .page-wrapper {
23756
  min-height: 100vh;
23757
  background: #f9fafb;
23758
  width: calc(100% - 240px);
23759
  margin-left: 240px;
23760
  display: flex;
23761
  flex-direction: column;
23762
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23763
  transition: margin 0.1s ease, width 0.1s ease;
23764
}
16848 stevensc 23765
 
16825 efrain 23766
.main-wrapper .page-wrapper .page-content {
23767
  flex-grow: 1;
23768
  padding: 25px;
23769
  margin-top: 60px;
23770
}
16848 stevensc 23771
 
16825 efrain 23772
@media (max-width: 767px) {
23773
  .main-wrapper .page-wrapper .page-content {
23774
    padding: 25px 15px;
23775
  }
23776
}
16848 stevensc 23777
 
16825 efrain 23778
.main-wrapper .page-wrapper.full-page {
23779
  width: 100%;
23780
  margin-left: 0;
23781
}
16848 stevensc 23782
 
16825 efrain 23783
.main-wrapper .page-wrapper.full-page .page-content {
23784
  margin-top: 0;
23785
}
16848 stevensc 23786
 
16825 efrain 23787
@media (max-width: 991px) {
23788
  .main-wrapper .page-wrapper {
23789
    margin-left: 0;
23790
    width: 100%;
23791
  }
23792
}
23793
 
23794
.page-content .content-nav-wrapper {
23795
  padding: 0;
23796
  position: sticky;
23797
  top: 80px;
23798
  height: calc(100vh - 6rem);
23799
  overflow-y: auto;
23800
  border-left: 1px solid #e9ecef;
23801
  display: none;
23802
}
16848 stevensc 23803
 
16825 efrain 23804
@media (min-width: 1200px) {
23805
  .page-content .content-nav-wrapper {
23806
    display: block;
23807
  }
23808
}
16848 stevensc 23809
 
16825 efrain 23810
.page-content .content-nav-wrapper .content-nav {
23811
  padding: 0px 25px;
23812
}
16848 stevensc 23813
 
16825 efrain 23814
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23815
  padding: 0;
23816
  height: 30px;
23817
  white-space: nowrap;
23818
  color: #7987a1;
23819
  display: flex;
23820
  align-items: center;
23821
}
23822
 
23823
.navbar {
23824
  width: calc(100% - 240px);
23825
  height: 60px;
23826
  background: #fff;
23827
  border-bottom: 1px solid #e9ecef;
23828
  display: flex;
23829
  align-items: center;
23830
  padding: 0;
23831
  position: fixed;
23832
  right: 0;
23833
  left: 240px;
23834
  z-index: 978;
23835
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23836
  transition: width 0.1s ease, left 0.1s ease;
23837
}
16848 stevensc 23838
 
16825 efrain 23839
@media (max-width: 991px) {
23840
  .navbar {
23841
    width: 100%;
23842
    left: 0;
23843
  }
16848 stevensc 23844
 
16825 efrain 23845
  .navbar .navbar-content {
23846
    width: calc(100% - 70px - 1px);
23847
  }
23848
}
16848 stevensc 23849
 
16825 efrain 23850
.navbar .sidebar-toggler {
23851
  height: 100%;
23852
  border-right: 1px solid #e9ecef;
23853
  align-items: center;
23854
  padding: 0 25px;
23855
  display: none;
23856
}
16848 stevensc 23857
 
16825 efrain 23858
.navbar .sidebar-toggler svg {
23859
  width: 20px;
23860
  height: 20px;
23861
  color: #7987a1;
23862
}
16848 stevensc 23863
 
16825 efrain 23864
@media (max-width: 991px) {
23865
  .navbar .sidebar-toggler {
23866
    display: flex;
23867
  }
23868
}
16848 stevensc 23869
 
16825 efrain 23870
.navbar .search-form {
23871
  width: 100%;
23872
  margin-right: 60px;
23873
}
16848 stevensc 23874
 
16825 efrain 23875
.navbar .search-form .input-group .input-group-text {
23876
  padding: 0;
23877
  border: 0;
23878
  color: #7987a1;
23879
  background: #fff;
23880
}
16848 stevensc 23881
 
16825 efrain 23882
.navbar .search-form .input-group .input-group-text svg {
23883
  width: 20px;
23884
  height: 20px;
23885
  cursor: pointer;
23886
}
16848 stevensc 23887
 
23888
.navbar .search-form .input-group .form-control,
23889
.navbar .search-form .input-group .typeahead.tt-input,
23890
.navbar .search-form .input-group .typeahead.tt-hint,
23891
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23892
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23893
  border: 0;
23894
  margin-top: 3px;
23895
}
16848 stevensc 23896
 
16825 efrain 23897
.navbar .navbar-content {
23898
  display: flex;
23899
  width: 100%;
23900
  height: 100%;
23901
  padding-left: 25px;
23902
  padding-right: 25px;
23903
}
16848 stevensc 23904
 
16825 efrain 23905
@media (max-width: 991px) {
23906
  .navbar .navbar-content {
23907
    width: calc(100% - 70px - 1px);
23908
  }
23909
}
16848 stevensc 23910
 
16825 efrain 23911
.navbar .navbar-content .navbar-nav {
23912
  display: flex;
23913
  flex-direction: row;
23914
  margin-left: auto;
23915
}
16848 stevensc 23916
 
16825 efrain 23917
.navbar .navbar-content .navbar-nav .nav-item {
23918
  position: relative;
23919
  margin-left: 5px;
23920
  margin-right: 5px;
23921
  min-width: 30px;
23922
  display: flex;
23923
  align-items: center;
23924
}
16848 stevensc 23925
 
16825 efrain 23926
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23927
  color: #000;
23928
  padding: 0;
23929
  position: relative;
23930
  margin-left: auto;
23931
  margin-right: auto;
23932
}
16848 stevensc 23933
 
23934
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23935
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23936
  color: #6571ff;
23937
}
16848 stevensc 23938
 
16825 efrain 23939
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23940
  display: none;
23941
}
16848 stevensc 23942
 
16825 efrain 23943
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23944
  width: 20px;
23945
  height: 20px;
23946
}
16848 stevensc 23947
 
16825 efrain 23948
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23949
  position: absolute;
23950
  top: 0px;
23951
  right: 2px;
23952
}
16848 stevensc 23953
 
16825 efrain 23954
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23955
  background: #6571ff;
23956
  width: 7px;
23957
  height: 7px;
23958
  border-radius: 50%;
23959
}
16848 stevensc 23960
 
16825 efrain 23961
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23962
  background-color: #6571ff;
23963
  content: "";
23964
  display: table;
23965
  border-radius: 50%;
23966
  position: absolute;
23967
}
16848 stevensc 23968
 
16825 efrain 23969
@media (max-width: 767px) {
23970
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23971
    position: static;
23972
  }
23973
}
16848 stevensc 23974
 
23975
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23976
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23977
  width: max-content;
23978
  position: absolute;
23979
  right: -20px;
23980
  left: auto;
23981
}
16848 stevensc 23982
 
23983
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23984
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23985
  content: "";
23986
  width: 13px;
23987
  height: 13px;
23988
  background: #fff;
23989
  position: absolute;
23990
  top: -7px;
23991
  right: 28px;
23992
  transform: rotate(45deg);
23993
  border-top: 1px solid #f2f4f9;
23994
  border-left: 1px solid #f2f4f9;
23995
}
16848 stevensc 23996
 
16825 efrain 23997
@media (max-width: 767px) {
16848 stevensc 23998
 
23999
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24000
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24001
    right: 20px;
24002
    width: calc(100% - 40px);
24003
  }
16848 stevensc 24004
 
24005
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24006
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24007
    display: none;
24008
  }
24009
}
24010
 
24011
.sidebar {
24012
  width: 240px;
24013
  height: 100%;
24014
  position: fixed;
24015
  left: 0;
24016
  top: 0;
24017
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24018
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24019
  z-index: 999;
24020
}
16848 stevensc 24021
 
16825 efrain 24022
.sidebar .sidebar-header {
24023
  background: #fff;
24024
  height: 60px;
24025
  border-bottom: 1px solid #e9ecef;
24026
  display: flex;
24027
  justify-content: space-between;
24028
  align-items: center;
24029
  padding: 0 25px;
24030
  border-right: 1px solid #e9ecef;
24031
  z-index: 999;
24032
  width: 240px;
24033
  -webkit-transition: width 0.1s ease;
24034
  transition: width 0.1s ease;
24035
}
16848 stevensc 24036
 
16825 efrain 24037
.sidebar-open .sidebar .sidebar-header {
24038
  border-bottom: 1px solid #e9ecef;
24039
}
16848 stevensc 24040
 
16825 efrain 24041
.sidebar .sidebar-header .sidebar-brand {
24042
  opacity: 1;
24043
  visibility: visible;
24044
  -webkit-transition: opacity 0.5s ease;
24045
  transition: opacity 0.5s ease;
24046
  font-weight: 700;
24047
  font-size: 25px;
24048
  color: #000865;
16848 stevensc 24049
  direction: ltr
24050
    /*rtl:ignore*/
24051
  ;
16825 efrain 24052
}
16848 stevensc 24053
 
16825 efrain 24054
.sidebar .sidebar-header .sidebar-brand span {
24055
  color: #6571ff;
24056
  font-weight: 300;
24057
}
16848 stevensc 24058
 
16825 efrain 24059
.sidebar .sidebar-header .sidebar-toggler {
24060
  cursor: pointer;
24061
  width: 18px;
24062
}
16848 stevensc 24063
 
16825 efrain 24064
.sidebar .sidebar-header .sidebar-toggler span {
24065
  display: block;
24066
  width: 100%;
24067
  border-radius: 3px;
24068
  height: 2px;
24069
  background: #7987a1;
24070
  -webkit-transition: all 0.3s;
24071
  transition: all 0.3s;
24072
  position: relative;
24073
}
16848 stevensc 24074
 
24075
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24076
  margin-top: 4px;
24077
}
16848 stevensc 24078
 
16825 efrain 24079
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24080
  -webkit-animation: ease 0.6s top forwards;
24081
  animation: ease 0.6s top forwards;
24082
}
16848 stevensc 24083
 
16825 efrain 24084
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24085
  -webkit-animation: ease 0.6s top-2 forwards;
24086
  animation: ease 0.6s top-2 forwards;
24087
}
16848 stevensc 24088
 
16825 efrain 24089
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24090
  -webkit-animation: ease 0.6s scaled forwards;
24091
  animation: ease 0.6s scaled forwards;
24092
}
16848 stevensc 24093
 
16825 efrain 24094
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24095
  -webkit-animation: ease 0.6s scaled-2 forwards;
24096
  animation: ease 0.6s scaled-2 forwards;
24097
}
16848 stevensc 24098
 
16825 efrain 24099
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24100
  -webkit-animation: ease 0.6s bottom forwards;
24101
  animation: ease 0.6s bottom forwards;
24102
}
16848 stevensc 24103
 
16825 efrain 24104
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24105
  -webkit-animation: ease 0.6s bottom-2 forwards;
24106
  animation: ease 0.6s bottom-2 forwards;
24107
}
16848 stevensc 24108
 
16825 efrain 24109
@-webkit-keyframes top {
24110
  0% {
24111
    top: 0;
24112
    -webkit-transform: rotate(0);
24113
    transform: rotate(0);
24114
  }
16848 stevensc 24115
 
16825 efrain 24116
  50% {
24117
    top: 6px;
24118
    -webkit-transform: rotate(0);
24119
    transform: rotate(0);
24120
  }
16848 stevensc 24121
 
16825 efrain 24122
  100% {
24123
    top: 6px;
24124
    -webkit-transform: rotate(45deg);
24125
    transform: rotate(45deg);
24126
  }
24127
}
16848 stevensc 24128
 
16825 efrain 24129
@keyframes top {
24130
  0% {
24131
    top: 0;
24132
    -webkit-transform: rotate(0);
24133
    transform: rotate(0);
24134
  }
16848 stevensc 24135
 
16825 efrain 24136
  50% {
24137
    top: 6px;
24138
    -webkit-transform: rotate(0);
24139
    transform: rotate(0);
24140
  }
16848 stevensc 24141
 
16825 efrain 24142
  100% {
24143
    top: 6px;
24144
    -webkit-transform: rotate(45deg);
24145
    transform: rotate(45deg);
24146
  }
24147
}
16848 stevensc 24148
 
16825 efrain 24149
@-webkit-keyframes top-2 {
24150
  0% {
24151
    top: 6px;
24152
    -webkit-transform: rotate(45deg);
24153
    transform: rotate(45deg);
24154
  }
16848 stevensc 24155
 
16825 efrain 24156
  50% {
24157
    top: 6px;
24158
    -webkit-transform: rotate(0deg);
24159
    transform: rotate(0deg);
24160
  }
16848 stevensc 24161
 
16825 efrain 24162
  100% {
24163
    top: 0;
24164
    -webkit-transform: rotate(0deg);
24165
    transform: rotate(0deg);
24166
  }
24167
}
16848 stevensc 24168
 
16825 efrain 24169
@keyframes top-2 {
24170
  0% {
24171
    top: 6px;
24172
    -webkit-transform: rotate(45deg);
24173
    transform: rotate(45deg);
24174
  }
16848 stevensc 24175
 
16825 efrain 24176
  50% {
24177
    top: 6px;
24178
    -webkit-transform: rotate(0deg);
24179
    transform: rotate(0deg);
24180
  }
16848 stevensc 24181
 
16825 efrain 24182
  100% {
24183
    top: 0;
24184
    -webkit-transform: rotate(0deg);
24185
    transform: rotate(0deg);
24186
  }
24187
}
16848 stevensc 24188
 
16825 efrain 24189
@-webkit-keyframes bottom {
24190
  0% {
24191
    bottom: 0;
24192
    -webkit-transform: rotate(0);
24193
    transform: rotate(0);
24194
  }
16848 stevensc 24195
 
16825 efrain 24196
  50% {
24197
    bottom: 6px;
24198
    -webkit-transform: rotate(0);
24199
    transform: rotate(0);
24200
  }
16848 stevensc 24201
 
16825 efrain 24202
  100% {
24203
    bottom: 6px;
24204
    -webkit-transform: rotate(135deg);
24205
    transform: rotate(135deg);
24206
  }
24207
}
16848 stevensc 24208
 
16825 efrain 24209
@keyframes bottom {
24210
  0% {
24211
    bottom: 0;
24212
    -webkit-transform: rotate(0);
24213
    transform: rotate(0);
24214
  }
16848 stevensc 24215
 
16825 efrain 24216
  50% {
24217
    bottom: 6px;
24218
    -webkit-transform: rotate(0);
24219
    transform: rotate(0);
24220
  }
16848 stevensc 24221
 
16825 efrain 24222
  100% {
24223
    bottom: 6px;
24224
    -webkit-transform: rotate(135deg);
24225
    transform: rotate(135deg);
24226
  }
24227
}
16848 stevensc 24228
 
16825 efrain 24229
@-webkit-keyframes bottom-2 {
24230
  0% {
24231
    bottom: 6px;
24232
    -webkit-transform: rotate(135deg);
24233
    transform: rotate(135deg);
24234
  }
16848 stevensc 24235
 
16825 efrain 24236
  50% {
24237
    bottom: 6px;
24238
    -webkit-transform: rotate(0);
24239
    transform: rotate(0);
24240
  }
16848 stevensc 24241
 
16825 efrain 24242
  100% {
24243
    bottom: 0;
24244
    -webkit-transform: rotate(0);
24245
    transform: rotate(0);
24246
  }
24247
}
16848 stevensc 24248
 
16825 efrain 24249
@keyframes bottom-2 {
24250
  0% {
24251
    bottom: 6px;
24252
    -webkit-transform: rotate(135deg);
24253
    transform: rotate(135deg);
24254
  }
16848 stevensc 24255
 
16825 efrain 24256
  50% {
24257
    bottom: 6px;
24258
    -webkit-transform: rotate(0);
24259
    transform: rotate(0);
24260
  }
16848 stevensc 24261
 
16825 efrain 24262
  100% {
24263
    bottom: 0;
24264
    -webkit-transform: rotate(0);
24265
    transform: rotate(0);
24266
  }
24267
}
16848 stevensc 24268
 
16825 efrain 24269
@-webkit-keyframes scaled {
24270
  50% {
24271
    -webkit-transform: scale(0);
24272
    transform: scale(0);
24273
  }
16848 stevensc 24274
 
16825 efrain 24275
  100% {
24276
    -webkit-transform: scale(0);
24277
    transform: scale(0);
24278
  }
24279
}
16848 stevensc 24280
 
16825 efrain 24281
@keyframes scaled {
24282
  50% {
24283
    -webkit-transform: scale(0);
24284
    transform: scale(0);
24285
  }
16848 stevensc 24286
 
16825 efrain 24287
  100% {
24288
    -webkit-transform: scale(0);
24289
    transform: scale(0);
24290
  }
24291
}
16848 stevensc 24292
 
16825 efrain 24293
@-webkit-keyframes scaled-2 {
24294
  0% {
24295
    -webkit-transform: scale(0);
24296
    transform: scale(0);
24297
  }
16848 stevensc 24298
 
16825 efrain 24299
  50% {
24300
    -webkit-transform: scale(0);
24301
    transform: scale(0);
24302
  }
16848 stevensc 24303
 
16825 efrain 24304
  100% {
24305
    -webkit-transform: scale(1);
24306
    transform: scale(1);
24307
  }
24308
}
16848 stevensc 24309
 
16825 efrain 24310
@keyframes scaled-2 {
24311
  0% {
24312
    -webkit-transform: scale(0);
24313
    transform: scale(0);
24314
  }
16848 stevensc 24315
 
16825 efrain 24316
  50% {
24317
    -webkit-transform: scale(0);
24318
    transform: scale(0);
24319
  }
16848 stevensc 24320
 
16825 efrain 24321
  100% {
24322
    -webkit-transform: scale(1);
24323
    transform: scale(1);
24324
  }
24325
}
16848 stevensc 24326
 
16825 efrain 24327
.sidebar .sidebar-body {
24328
  max-height: calc(100% - 60px);
24329
  position: relative;
24330
  border-right: 1px solid #e9ecef;
24331
  height: 100%;
24332
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24333
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24334
  background: #fff;
24335
}
16848 stevensc 24336
 
16825 efrain 24337
.sidebar .sidebar-body .nav {
24338
  display: flex;
24339
  flex-direction: column;
24340
  padding: 25px 25px 50px 25px;
24341
}
16848 stevensc 24342
 
16825 efrain 24343
.sidebar .sidebar-body .nav .nav-item {
24344
  position: relative;
24345
}
16848 stevensc 24346
 
16825 efrain 24347
.sidebar .sidebar-body .nav .nav-item .nav-link {
24348
  display: flex;
24349
  align-items: center;
24350
  padding: 0;
24351
  height: 32px;
24352
  white-space: nowrap;
24353
  color: #000;
24354
}
16848 stevensc 24355
 
16825 efrain 24356
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24357
  width: 16px;
24358
  height: 16px;
24359
  fill: rgba(233, 236, 239, 0.21);
24360
  position: absolute;
24361
  color: inherit;
24362
}
16848 stevensc 24363
 
16825 efrain 24364
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24365
  margin-left: 30px;
24366
  font-size: 14px;
24367
  -webkit-transition: all 0.2s ease-in-out;
24368
  transition: all 0.2s ease-in-out;
24369
}
16848 stevensc 24370
 
16825 efrain 24371
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24372
  width: 14px;
24373
  height: 14px;
24374
  margin-left: auto;
24375
  -webkit-transition: all 0.3s ease;
24376
  -webkit-transition: all 0.3s ease-in-out;
24377
  transition: all 0.3s ease-in-out;
24378
  color: inherit;
24379
}
16848 stevensc 24380
 
16825 efrain 24381
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24382
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24383
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24384
  -webkit-transition: all 0.3s ease;
24385
  transition: all 0.3s ease;
24386
}
16848 stevensc 24387
 
16825 efrain 24388
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24389
  color: #6571ff;
24390
}
16848 stevensc 24391
 
16825 efrain 24392
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24393
  -webkit-transform: rotate(90deg);
24394
  transform: rotate(180deg);
24395
}
16848 stevensc 24396
 
16825 efrain 24397
.sidebar .sidebar-body .nav .nav-item.nav-category {
24398
  color: #7987a1;
24399
  font-size: 11px;
24400
  text-transform: uppercase;
24401
  font-weight: 500;
24402
  letter-spacing: 0.5px;
24403
  margin-bottom: 5px;
24404
  height: 15px;
24405
}
16848 stevensc 24406
 
16825 efrain 24407
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24408
  margin-top: 20px;
24409
}
16848 stevensc 24410
 
16825 efrain 24411
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24412
  color: #6571ff;
24413
}
16848 stevensc 24414
 
16825 efrain 24415
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24416
  margin-left: 31px;
24417
}
16848 stevensc 24418
 
16825 efrain 24419
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24420
  color: #6571ff;
24421
  fill: rgba(239, 243, 255, 0.5);
24422
}
16848 stevensc 24423
 
16825 efrain 24424
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24425
  color: #6571ff;
24426
}
16848 stevensc 24427
 
16825 efrain 24428
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24429
  content: "";
24430
  width: 3px;
24431
  height: 26px;
24432
  background: #6571ff;
24433
  position: absolute;
24434
  left: -25px;
24435
}
16848 stevensc 24436
 
16825 efrain 24437
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24438
  fill: rgba(239, 243, 255, 0.5);
24439
  color: #6571ff;
24440
}
16848 stevensc 24441
 
16825 efrain 24442
.sidebar .sidebar-body .nav.sub-menu {
24443
  padding: 0 0 15px 33px;
24444
}
16848 stevensc 24445
 
16825 efrain 24446
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24447
  position: relative;
24448
}
16848 stevensc 24449
 
16825 efrain 24450
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24451
  height: 25px;
24452
  color: #000;
24453
  font-size: 13px;
24454
  -webkit-transition: all 0.3s ease-in-out;
24455
  transition: all 0.3s ease-in-out;
24456
}
16848 stevensc 24457
 
16825 efrain 24458
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24459
  content: "";
24460
  width: 6px;
24461
  height: 6px;
24462
  border-radius: 50%;
24463
  background: transparent;
24464
  border: 1px solid #aeb9c4;
24465
  position: absolute;
24466
  left: -29px;
24467
  top: 10px;
24468
  -webkit-transition: all 0.7s ease-in-out;
24469
  -webkit-transition: all 0.4s ease-in-out;
24470
  transition: all 0.4s ease-in-out;
24471
}
16848 stevensc 24472
 
16825 efrain 24473
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24474
  color: #6571ff;
24475
}
16848 stevensc 24476
 
16825 efrain 24477
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24478
  border: 1px solid #6571ff;
24479
  background: #6571ff;
24480
}
16848 stevensc 24481
 
16825 efrain 24482
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24483
  color: #6571ff;
24484
  margin-left: 3px;
24485
}
16848 stevensc 24486
 
16825 efrain 24487
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24488
  border: 1px solid #6571ff;
24489
  background: #6571ff;
24490
}
16848 stevensc 24491
 
16825 efrain 24492
@media (max-width: 991px) {
24493
  .sidebar {
24494
    z-index: 999;
24495
    margin-left: -240px;
24496
    visibility: hidden;
24497
  }
16848 stevensc 24498
 
16825 efrain 24499
  .sidebar-open .sidebar {
24500
    margin-left: 0;
24501
    visibility: visible;
24502
  }
16848 stevensc 24503
 
16825 efrain 24504
  .sidebar .sidebar-body .nav .nav-item {
24505
    width: auto;
24506
  }
16848 stevensc 24507
 
16825 efrain 24508
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24509
    -webkit-transition: none;
24510
    transition: none;
24511
    margin: 0;
24512
  }
24513
}
24514
 
24515
.sidebar-dark .sidebar .sidebar-header {
24516
  background: #0c1427;
24517
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24518
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24519
}
16848 stevensc 24520
 
16825 efrain 24521
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24522
  color: #e9ecef;
24523
}
16848 stevensc 24524
 
16825 efrain 24525
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24526
  background: #7987a1;
24527
}
16848 stevensc 24528
 
16825 efrain 24529
.sidebar-dark .sidebar .sidebar-body {
24530
  background: #0c1427;
24531
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24532
}
16848 stevensc 24533
 
16825 efrain 24534
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24535
  color: #fff;
24536
}
16848 stevensc 24537
 
16825 efrain 24538
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24539
  color: #7987a1;
24540
}
16848 stevensc 24541
 
16825 efrain 24542
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24543
  fill: none;
24544
}
16848 stevensc 24545
 
16825 efrain 24546
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24547
  color: #6571ff;
24548
}
16848 stevensc 24549
 
24550
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24551
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24552
  fill: rgba(101, 113, 255, 0.2);
24553
}
16848 stevensc 24554
 
24555
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24556
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24557
  color: #6571ff;
24558
}
24559
 
24560
.settings-sidebar {
24561
  position: fixed;
24562
  right: -232px;
24563
  top: 130px;
24564
  width: 232px;
24565
  background: #fff;
24566
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24567
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24568
  z-index: 999;
24569
  border-radius: 0 0 0 4px;
24570
  -webkit-transition: all 0.2s ease-in-out;
24571
  transition: all 0.2s ease-in-out;
24572
}
16848 stevensc 24573
 
16825 efrain 24574
.settings-open .settings-sidebar {
24575
  right: 0;
24576
}
16848 stevensc 24577
 
16825 efrain 24578
.settings-sidebar .sidebar-body {
24579
  position: relative;
24580
  padding: 18px;
24581
}
16848 stevensc 24582
 
16825 efrain 24583
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24584
  position: absolute;
24585
  left: -44px;
24586
  top: 0;
24587
  padding: 12px;
24588
  border-radius: 4px 0 0 4px;
24589
  background: #fff;
24590
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24591
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24592
}
16848 stevensc 24593
 
16825 efrain 24594
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24595
  width: 20px;
24596
  height: 20px;
24597
  color: #7987a1;
24598
}
16848 stevensc 24599
 
16825 efrain 24600
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24601
  position: relative;
24602
  display: block;
24603
  margin-bottom: 19px;
24604
  border-radius: 6px;
24605
  border: 3px solid #e9ecef;
24606
}
16848 stevensc 24607
 
16825 efrain 24608
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24609
  content: "";
24610
  position: absolute;
24611
  top: 0;
24612
  left: 0;
24613
  width: 100%;
24614
  height: 100%;
24615
  background: rgba(101, 113, 255, 0);
24616
}
16848 stevensc 24617
 
16825 efrain 24618
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24619
  margin-bottom: 0;
24620
}
16848 stevensc 24621
 
16825 efrain 24622
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24623
  border: 3px solid #b2b8ff;
24624
}
16848 stevensc 24625
 
16825 efrain 24626
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24627
  width: 100%;
24628
  border-radius: 3px;
24629
}
16848 stevensc 24630
 
16825 efrain 24631
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24632
  background: rgba(101, 113, 255, 0.2);
24633
  -webkit-transition: all 0.3s ease-in-out;
24634
  transition: all 0.3s ease-in-out;
24635
}
24636
 
24637
.sidebar-folded .sidebar .sidebar-header {
24638
  width: 70px;
24639
}
16848 stevensc 24640
 
16825 efrain 24641
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24642
  display: none;
24643
}
16848 stevensc 24644
 
16825 efrain 24645
.sidebar-folded .page-wrapper {
24646
  width: calc(100% - 70px);
24647
  margin-left: 70px;
24648
}
16848 stevensc 24649
 
16825 efrain 24650
.sidebar-folded .page-wrapper .navbar {
24651
  width: calc(100% - 70px);
24652
  left: 70px;
24653
  right: 0;
24654
}
16848 stevensc 24655
 
16825 efrain 24656
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24657
  width: 70px;
24658
}
16848 stevensc 24659
 
16825 efrain 24660
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24661
  width: 70px;
24662
}
16848 stevensc 24663
 
16825 efrain 24664
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24665
  opacity: 0;
24666
  visibility: hidden;
24667
  width: 0;
24668
}
16848 stevensc 24669
 
16825 efrain 24670
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24671
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24672
  visibility: hidden;
24673
  opacity: 0;
24674
}
16848 stevensc 24675
 
16825 efrain 24676
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24677
  visibility: hidden;
24678
}
16848 stevensc 24679
 
16825 efrain 24680
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24681
  content: "";
24682
  width: 5px;
24683
  height: 5px;
24684
  border-radius: 50%;
24685
  background: #7987a1;
24686
  position: absolute;
24687
  top: 5px;
24688
  left: 6px;
24689
  visibility: visible;
24690
}
16848 stevensc 24691
 
16825 efrain 24692
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24693
  display: none;
24694
}
24695
 
24696
@media (max-width: 991px) {
16848 stevensc 24697
 
24698
  .sidebar-open .main-wrapper::before,
24699
  .settings-open .main-wrapper::before {
16825 efrain 24700
    content: "";
24701
    width: 100vw;
24702
    background: rgba(0, 0, 0, 0.3);
24703
    position: fixed;
24704
    top: 0;
24705
    bottom: 0;
24706
    right: 0;
24707
    z-index: 99;
24708
    -webkit-transition: all 3s ease;
24709
    transition: all 3s ease;
24710
    z-index: 980;
24711
  }
24712
}
24713
 
24714
a.badge:hover {
24715
  color: #fff;
24716
}
24717
 
24718
.alert-primary {
24719
  background-color: rgba(101, 113, 255, 0.1);
24720
  color: #4c59ff;
24721
  border-color: rgba(101, 113, 255, 0.2);
24722
}
16848 stevensc 24723
 
16825 efrain 24724
.alert-primary .alert-link {
24725
  color: #4c59ff;
24726
}
16848 stevensc 24727
 
16825 efrain 24728
.alert-primary svg {
24729
  width: 19px;
24730
  height: 19px;
24731
  margin-right: 0.5rem;
24732
}
16848 stevensc 24733
 
16825 efrain 24734
.alert-primary i {
24735
  font-size: 19px;
24736
  margin-right: 0.5rem;
24737
}
24738
 
24739
.alert-fill-primary {
24740
  --bs-alert-color: #fff;
24741
  --bs-alert-bg: #6571ff;
24742
  --bs-alert-border-color: #6571ff;
24743
}
16848 stevensc 24744
 
16825 efrain 24745
.alert-fill-primary .alert-link {
24746
  color: #cccccc;
24747
}
16848 stevensc 24748
 
16825 efrain 24749
.alert-fill-primary.alert-fill-light {
24750
  color: #7987a1;
24751
}
24752
 
24753
.alert-secondary {
24754
  background-color: rgba(121, 135, 161, 0.1);
24755
  color: #6a7a96;
24756
  border-color: rgba(121, 135, 161, 0.2);
24757
}
16848 stevensc 24758
 
16825 efrain 24759
.alert-secondary .alert-link {
24760
  color: #6a7a96;
24761
}
16848 stevensc 24762
 
16825 efrain 24763
.alert-secondary svg {
24764
  width: 19px;
24765
  height: 19px;
24766
  margin-right: 0.5rem;
24767
}
16848 stevensc 24768
 
16825 efrain 24769
.alert-secondary i {
24770
  font-size: 19px;
24771
  margin-right: 0.5rem;
24772
}
24773
 
24774
.alert-fill-secondary {
24775
  --bs-alert-color: #fff;
24776
  --bs-alert-bg: #7987a1;
24777
  --bs-alert-border-color: #7987a1;
24778
}
16848 stevensc 24779
 
16825 efrain 24780
.alert-fill-secondary .alert-link {
24781
  color: #cccccc;
24782
}
16848 stevensc 24783
 
16825 efrain 24784
.alert-fill-secondary.alert-fill-light {
24785
  color: #7987a1;
24786
}
24787
 
24788
.alert-success {
24789
  background-color: rgba(5, 163, 74, 0.1);
24790
  color: #048a3f;
24791
  border-color: rgba(5, 163, 74, 0.2);
24792
}
16848 stevensc 24793
 
16825 efrain 24794
.alert-success .alert-link {
24795
  color: #048a3f;
24796
}
16848 stevensc 24797
 
16825 efrain 24798
.alert-success svg {
24799
  width: 19px;
24800
  height: 19px;
24801
  margin-right: 0.5rem;
24802
}
16848 stevensc 24803
 
16825 efrain 24804
.alert-success i {
24805
  font-size: 19px;
24806
  margin-right: 0.5rem;
24807
}
24808
 
24809
.alert-fill-success {
24810
  --bs-alert-color: #fff;
24811
  --bs-alert-bg: #05a34a;
24812
  --bs-alert-border-color: #05a34a;
24813
}
16848 stevensc 24814
 
16825 efrain 24815
.alert-fill-success .alert-link {
24816
  color: #cccccc;
24817
}
16848 stevensc 24818
 
16825 efrain 24819
.alert-fill-success.alert-fill-light {
24820
  color: #7987a1;
24821
}
24822
 
24823
.alert-info {
24824
  background-color: rgba(102, 209, 209, 0.1);
24825
  color: #52cbcb;
24826
  border-color: rgba(102, 209, 209, 0.2);
24827
}
16848 stevensc 24828
 
16825 efrain 24829
.alert-info .alert-link {
24830
  color: #52cbcb;
24831
}
16848 stevensc 24832
 
16825 efrain 24833
.alert-info svg {
24834
  width: 19px;
24835
  height: 19px;
24836
  margin-right: 0.5rem;
24837
}
16848 stevensc 24838
 
16825 efrain 24839
.alert-info i {
24840
  font-size: 19px;
24841
  margin-right: 0.5rem;
24842
}
24843
 
24844
.alert-fill-info {
24845
  --bs-alert-color: #fff;
24846
  --bs-alert-bg: #66d1d1;
24847
  --bs-alert-border-color: #66d1d1;
24848
}
16848 stevensc 24849
 
16825 efrain 24850
.alert-fill-info .alert-link {
24851
  color: #cccccc;
24852
}
16848 stevensc 24853
 
16825 efrain 24854
.alert-fill-info.alert-fill-light {
24855
  color: #7987a1;
24856
}
24857
 
24858
.alert-warning {
24859
  background-color: rgba(251, 188, 6, 0.1);
24860
  color: #e4aa04;
24861
  border-color: rgba(251, 188, 6, 0.2);
24862
}
16848 stevensc 24863
 
16825 efrain 24864
.alert-warning .alert-link {
24865
  color: #e4aa04;
24866
}
16848 stevensc 24867
 
16825 efrain 24868
.alert-warning svg {
24869
  width: 19px;
24870
  height: 19px;
24871
  margin-right: 0.5rem;
24872
}
16848 stevensc 24873
 
16825 efrain 24874
.alert-warning i {
24875
  font-size: 19px;
24876
  margin-right: 0.5rem;
24877
}
24878
 
24879
.alert-fill-warning {
24880
  --bs-alert-color: #fff;
24881
  --bs-alert-bg: #fbbc06;
24882
  --bs-alert-border-color: #fbbc06;
24883
}
16848 stevensc 24884
 
16825 efrain 24885
.alert-fill-warning .alert-link {
24886
  color: #cccccc;
24887
}
16848 stevensc 24888
 
16825 efrain 24889
.alert-fill-warning.alert-fill-light {
24890
  color: #7987a1;
24891
}
24892
 
24893
.alert-danger {
24894
  background-color: rgba(255, 51, 102, 0.1);
24895
  color: #ff1a53;
24896
  border-color: rgba(255, 51, 102, 0.2);
24897
}
16848 stevensc 24898
 
16825 efrain 24899
.alert-danger .alert-link {
24900
  color: #ff1a53;
24901
}
16848 stevensc 24902
 
16825 efrain 24903
.alert-danger svg {
24904
  width: 19px;
24905
  height: 19px;
24906
  margin-right: 0.5rem;
24907
}
16848 stevensc 24908
 
16825 efrain 24909
.alert-danger i {
24910
  font-size: 19px;
24911
  margin-right: 0.5rem;
24912
}
24913
 
24914
.alert-fill-danger {
24915
  --bs-alert-color: #fff;
24916
  --bs-alert-bg: #ff3366;
24917
  --bs-alert-border-color: #ff3366;
24918
}
16848 stevensc 24919
 
16825 efrain 24920
.alert-fill-danger .alert-link {
24921
  color: #cccccc;
24922
}
16848 stevensc 24923
 
16825 efrain 24924
.alert-fill-danger.alert-fill-light {
24925
  color: #7987a1;
24926
}
24927
 
24928
.alert-light {
24929
  background-color: rgba(233, 236, 239, 0.1);
24930
  color: #dadfe4;
24931
  border-color: rgba(233, 236, 239, 0.2);
24932
}
16848 stevensc 24933
 
16825 efrain 24934
.alert-light .alert-link {
24935
  color: #dadfe4;
24936
}
16848 stevensc 24937
 
16825 efrain 24938
.alert-light svg {
24939
  width: 19px;
24940
  height: 19px;
24941
  margin-right: 0.5rem;
24942
}
16848 stevensc 24943
 
16825 efrain 24944
.alert-light i {
24945
  font-size: 19px;
24946
  margin-right: 0.5rem;
24947
}
24948
 
24949
.alert-fill-light {
24950
  --bs-alert-color: #fff;
24951
  --bs-alert-bg: #e9ecef;
24952
  --bs-alert-border-color: #e9ecef;
24953
}
16848 stevensc 24954
 
16825 efrain 24955
.alert-fill-light .alert-link {
24956
  color: #cccccc;
24957
}
16848 stevensc 24958
 
16825 efrain 24959
.alert-fill-light.alert-fill-light {
24960
  color: #7987a1;
24961
}
24962
 
24963
.alert-dark {
24964
  background-color: rgba(6, 12, 23, 0.1);
24965
  color: #010103;
24966
  border-color: rgba(6, 12, 23, 0.2);
24967
}
16848 stevensc 24968
 
16825 efrain 24969
.alert-dark .alert-link {
24970
  color: #010103;
24971
}
16848 stevensc 24972
 
16825 efrain 24973
.alert-dark svg {
24974
  width: 19px;
24975
  height: 19px;
24976
  margin-right: 0.5rem;
24977
}
16848 stevensc 24978
 
16825 efrain 24979
.alert-dark i {
24980
  font-size: 19px;
24981
  margin-right: 0.5rem;
24982
}
24983
 
24984
.alert-fill-dark {
24985
  --bs-alert-color: #fff;
24986
  --bs-alert-bg: #060c17;
24987
  --bs-alert-border-color: #060c17;
24988
}
16848 stevensc 24989
 
16825 efrain 24990
.alert-fill-dark .alert-link {
24991
  color: #cccccc;
24992
}
16848 stevensc 24993
 
16825 efrain 24994
.alert-fill-dark.alert-fill-light {
24995
  color: #7987a1;
24996
}
24997
 
16848 stevensc 24998
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24999
  content: "-" !important;
25000
}
16848 stevensc 25001
 
25002
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25003
  content: "•" !important;
25004
}
16848 stevensc 25005
 
25006
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25007
  content: ">" !important;
25008
}
25009
 
25010
/* Buttons */
16848 stevensc 25011
.btn i,
25012
.wizard>.actions a i,
25013
.wizard>.actions a:active i,
25014
.wizard>.actions a:hover i,
25015
div.tox .tox-button i,
25016
.swal2-popup .swal2-actions button i,
25017
.fc .fc-button-primary i {
16825 efrain 25018
  font-size: 1rem;
25019
}
16848 stevensc 25020
 
25021
.btn.btn-rounded,
25022
.wizard>.actions a.btn-rounded,
25023
div.tox .btn-rounded.tox-button,
25024
.swal2-popup .swal2-actions button.btn-rounded,
25025
.fc .btn-rounded.fc-button-primary {
16825 efrain 25026
  border-radius: 50px;
25027
}
16848 stevensc 25028
 
25029
.btn.btn-xs,
25030
.wizard>.actions a.btn-xs,
25031
div.tox .btn-xs.tox-button,
25032
.swal2-popup .swal2-actions button.btn-xs,
25033
.fc .btn-xs.fc-button-primary {
16825 efrain 25034
  padding: 0.313rem 0.8rem;
25035
  font-size: 0.75rem;
25036
}
16848 stevensc 25037
 
25038
.btn.btn-icon,
25039
.wizard>.actions a.btn-icon,
25040
div.tox .btn-icon.tox-button,
25041
.swal2-popup .swal2-actions button.btn-icon,
25042
.fc .btn-icon.fc-button-primary {
16825 efrain 25043
  width: 38px;
25044
  height: 38px;
25045
  padding: 0;
25046
  display: inline-flex;
25047
  align-items: center;
25048
  justify-content: center;
25049
}
16848 stevensc 25050
 
25051
.btn.btn-icon svg,
25052
.wizard>.actions a.btn-icon svg,
25053
div.tox .btn-icon.tox-button svg,
25054
.swal2-popup .swal2-actions button.btn-icon svg,
25055
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25056
  height: 18px;
25057
}
16848 stevensc 25058
 
25059
.btn.btn-icon.btn-xs,
25060
.wizard>.actions a.btn-icon.btn-xs,
25061
div.tox .btn-icon.btn-xs.tox-button,
25062
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25063
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25064
  width: 30px;
25065
  height: 30px;
25066
}
16848 stevensc 25067
 
25068
.btn.btn-icon.btn-xs svg,
25069
.wizard>.actions a.btn-icon.btn-xs svg,
25070
div.tox .btn-icon.btn-xs.tox-button svg,
25071
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25072
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25073
  height: 14px;
25074
}
16848 stevensc 25075
 
25076
.btn.btn-icon.btn-sm,
25077
.wizard>.actions a.btn-icon.btn-sm,
25078
div.tox .btn-icon.btn-sm.tox-button,
25079
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25080
.fc .btn-icon.fc-button-primary,
25081
.btn-group-sm>.btn.btn-icon,
25082
.wizard>.actions .btn-group-sm>a.btn-icon,
25083
div.tox .btn-group-sm>.btn-icon.tox-button,
25084
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25085
  width: 36px;
25086
  height: 36px;
25087
}
16848 stevensc 25088
 
25089
.btn.btn-icon.btn-sm svg,
25090
.wizard>.actions a.btn-icon.btn-sm svg,
25091
div.tox .btn-icon.btn-sm.tox-button svg,
25092
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25093
.fc .btn-icon.fc-button-primary svg,
25094
.btn-group-sm>.btn.btn-icon svg,
25095
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25096
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25097
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25098
  height: 15px;
25099
}
16848 stevensc 25100
 
25101
.btn.btn-icon.btn-lg,
25102
.wizard>.actions a.btn-icon.btn-lg,
25103
div.tox .btn-icon.btn-lg.tox-button,
25104
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25105
.fc .btn-icon.btn-lg.fc-button-primary,
25106
.btn-group-lg>.btn.btn-icon,
25107
.wizard>.actions .btn-group-lg>a.btn-icon,
25108
div.tox .btn-group-lg>.btn-icon.tox-button,
25109
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25110
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25111
  width: 42px;
25112
  height: 42px;
25113
}
16848 stevensc 25114
 
25115
.btn.btn-icon.btn-lg svg,
25116
.wizard>.actions a.btn-icon.btn-lg svg,
25117
div.tox .btn-icon.btn-lg.tox-button svg,
25118
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25119
.fc .btn-icon.btn-lg.fc-button-primary svg,
25120
.btn-group-lg>.btn.btn-icon svg,
25121
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25122
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25123
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25124
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25125
  height: 18px;
25126
}
16848 stevensc 25127
 
25128
.btn.btn-icon-text .btn-icon-prepend,
25129
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25130
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25131
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25132
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25133
  margin-right: 0.5rem;
25134
}
16848 stevensc 25135
 
25136
.btn.btn-icon-text .btn-icon-append,
25137
.wizard>.actions a.btn-icon-text .btn-icon-append,
25138
div.tox .btn-icon-text.tox-button .btn-icon-append,
25139
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25140
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25141
  margin-left: 0.5rem;
25142
}
16848 stevensc 25143
 
25144
.btn.btn-icon-text .btn-icon-prepend,
25145
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25146
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25147
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25148
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25149
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25150
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25151
div.tox .btn-icon-text.tox-button .btn-icon-append,
25152
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25153
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25154
  width: 18px;
25155
  height: 18px;
25156
}
16848 stevensc 25157
 
25158
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25159
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25160
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25161
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25162
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25163
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25164
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25165
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25166
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25167
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25168
  width: 14px;
25169
  height: 14px;
25170
}
16848 stevensc 25171
 
25172
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25173
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25174
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25175
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25176
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25177
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25178
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25179
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25180
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25181
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25182
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25183
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25184
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25185
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25186
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25187
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25188
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25189
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25190
  width: 15px;
25191
  height: 15px;
25192
}
16848 stevensc 25193
 
25194
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25195
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25196
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25197
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25198
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25199
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25200
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25201
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25202
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25203
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25204
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25205
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25206
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25207
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25208
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25209
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25210
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25211
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25212
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25213
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25214
  width: 18px;
25215
  height: 18px;
25216
}
25217
 
25218
.btn-facebook {
25219
  background: #3b5998;
25220
  color: #fff;
25221
}
16848 stevensc 25222
 
25223
.btn-facebook:hover,
25224
.btn-facebook:focus {
16825 efrain 25225
  background: #2d4373;
25226
  color: #fff;
25227
}
16848 stevensc 25228
 
16825 efrain 25229
.btn-facebook.btn-social-icon-text {
25230
  padding: 0 1.5rem 0 0;
25231
  background: #4c70ba;
25232
}
16848 stevensc 25233
 
16825 efrain 25234
.btn-facebook.btn-social-icon-text i {
25235
  background: #3b5998;
25236
  padding: 0.75rem;
25237
  display: inline-block;
25238
  margin-right: 1.5rem;
25239
}
25240
 
25241
.btn-outline-facebook {
25242
  border: 1px solid #3b5998;
25243
  color: #3b5998;
25244
}
16848 stevensc 25245
 
16825 efrain 25246
.btn-outline-facebook:hover {
25247
  background: #3b5998;
25248
  color: #fff;
25249
}
25250
 
25251
.btn-twitter {
25252
  background: #1da1f2;
25253
  color: #fff;
25254
}
16848 stevensc 25255
 
25256
.btn-twitter:hover,
25257
.btn-twitter:focus {
16825 efrain 25258
  background: #0c85d0;
25259
  color: #fff;
25260
}
16848 stevensc 25261
 
16825 efrain 25262
.btn-twitter.btn-social-icon-text {
25263
  padding: 0 1.5rem 0 0;
25264
  background: #4db5f5;
25265
}
16848 stevensc 25266
 
16825 efrain 25267
.btn-twitter.btn-social-icon-text i {
25268
  background: #1da1f2;
25269
  padding: 0.75rem;
25270
  display: inline-block;
25271
  margin-right: 1.5rem;
25272
}
25273
 
25274
.btn-outline-twitter {
25275
  border: 1px solid #1da1f2;
25276
  color: #1da1f2;
25277
}
16848 stevensc 25278
 
16825 efrain 25279
.btn-outline-twitter:hover {
25280
  background: #1da1f2;
25281
  color: #fff;
25282
}
25283
 
25284
.btn-google {
25285
  background: #dc4e41;
25286
  color: #fff;
25287
}
16848 stevensc 25288
 
25289
.btn-google:hover,
25290
.btn-google:focus {
16825 efrain 25291
  background: #c63224;
25292
  color: #fff;
25293
}
16848 stevensc 25294
 
16825 efrain 25295
.btn-google.btn-social-icon-text {
25296
  padding: 0 1.5rem 0 0;
25297
  background: #e4766c;
25298
}
16848 stevensc 25299
 
16825 efrain 25300
.btn-google.btn-social-icon-text i {
25301
  background: #dc4e41;
25302
  padding: 0.75rem;
25303
  display: inline-block;
25304
  margin-right: 1.5rem;
25305
}
25306
 
25307
.btn-outline-google {
25308
  border: 1px solid #dc4e41;
25309
  color: #dc4e41;
25310
}
16848 stevensc 25311
 
16825 efrain 25312
.btn-outline-google:hover {
25313
  background: #dc4e41;
25314
  color: #fff;
25315
}
25316
 
25317
.btn-youtube {
25318
  background: #f00;
25319
  color: #fff;
25320
}
16848 stevensc 25321
 
25322
.btn-youtube:hover,
25323
.btn-youtube:focus {
16825 efrain 25324
  background: #cc0000;
25325
  color: #fff;
25326
}
16848 stevensc 25327
 
16825 efrain 25328
.btn-youtube.btn-social-icon-text {
25329
  padding: 0 1.5rem 0 0;
25330
  background: #ff3333;
25331
}
16848 stevensc 25332
 
16825 efrain 25333
.btn-youtube.btn-social-icon-text i {
25334
  background: #f00;
25335
  padding: 0.75rem;
25336
  display: inline-block;
25337
  margin-right: 1.5rem;
25338
}
25339
 
25340
.btn-outline-youtube {
25341
  border: 1px solid #f00;
25342
  color: #f00;
25343
}
16848 stevensc 25344
 
16825 efrain 25345
.btn-outline-youtube:hover {
25346
  background: #f00;
25347
  color: #fff;
25348
}
25349
 
25350
.btn-vimeo {
25351
  background: #1ab7ea;
25352
  color: #fff;
25353
}
16848 stevensc 25354
 
25355
.btn-vimeo:hover,
25356
.btn-vimeo:focus {
16825 efrain 25357
  background: #1295bf;
25358
  color: #fff;
25359
}
16848 stevensc 25360
 
16825 efrain 25361
.btn-vimeo.btn-social-icon-text {
25362
  padding: 0 1.5rem 0 0;
25363
  background: #49c6ee;
25364
}
16848 stevensc 25365
 
16825 efrain 25366
.btn-vimeo.btn-social-icon-text i {
25367
  background: #1ab7ea;
25368
  padding: 0.75rem;
25369
  display: inline-block;
25370
  margin-right: 1.5rem;
25371
}
25372
 
25373
.btn-outline-vimeo {
25374
  border: 1px solid #1ab7ea;
25375
  color: #1ab7ea;
25376
}
16848 stevensc 25377
 
16825 efrain 25378
.btn-outline-vimeo:hover {
25379
  background: #1ab7ea;
25380
  color: #fff;
25381
}
25382
 
25383
.btn-dribbble {
25384
  background: #ea4c89;
25385
  color: #fff;
25386
}
16848 stevensc 25387
 
25388
.btn-dribbble:hover,
25389
.btn-dribbble:focus {
16825 efrain 25390
  background: #e51e6b;
25391
  color: #fff;
25392
}
16848 stevensc 25393
 
16825 efrain 25394
.btn-dribbble.btn-social-icon-text {
25395
  padding: 0 1.5rem 0 0;
25396
  background: #ef7aa7;
25397
}
16848 stevensc 25398
 
16825 efrain 25399
.btn-dribbble.btn-social-icon-text i {
25400
  background: #ea4c89;
25401
  padding: 0.75rem;
25402
  display: inline-block;
25403
  margin-right: 1.5rem;
25404
}
25405
 
25406
.btn-outline-dribbble {
25407
  border: 1px solid #ea4c89;
25408
  color: #ea4c89;
25409
}
16848 stevensc 25410
 
16825 efrain 25411
.btn-outline-dribbble:hover {
25412
  background: #ea4c89;
25413
  color: #fff;
25414
}
25415
 
25416
.btn-github {
25417
  background: #181717;
25418
  color: #fff;
25419
}
16848 stevensc 25420
 
25421
.btn-github:hover,
25422
.btn-github:focus {
16825 efrain 25423
  background: black;
25424
  color: #fff;
25425
}
16848 stevensc 25426
 
16825 efrain 25427
.btn-github.btn-social-icon-text {
25428
  padding: 0 1.5rem 0 0;
25429
  background: #323030;
25430
}
16848 stevensc 25431
 
16825 efrain 25432
.btn-github.btn-social-icon-text i {
25433
  background: #181717;
25434
  padding: 0.75rem;
25435
  display: inline-block;
25436
  margin-right: 1.5rem;
25437
}
25438
 
25439
.btn-outline-github {
25440
  border: 1px solid #181717;
25441
  color: #181717;
25442
}
16848 stevensc 25443
 
16825 efrain 25444
.btn-outline-github:hover {
25445
  background: #181717;
25446
  color: #fff;
25447
}
25448
 
25449
.btn-instagram {
25450
  background: #e4405f;
25451
  color: #fff;
25452
}
16848 stevensc 25453
 
25454
.btn-instagram:hover,
25455
.btn-instagram:focus {
16825 efrain 25456
  background: #d31e40;
25457
  color: #fff;
25458
}
16848 stevensc 25459
 
16825 efrain 25460
.btn-instagram.btn-social-icon-text {
25461
  padding: 0 1.5rem 0 0;
25462
  background: #ea6d84;
25463
}
16848 stevensc 25464
 
16825 efrain 25465
.btn-instagram.btn-social-icon-text i {
25466
  background: #e4405f;
25467
  padding: 0.75rem;
25468
  display: inline-block;
25469
  margin-right: 1.5rem;
25470
}
25471
 
25472
.btn-outline-instagram {
25473
  border: 1px solid #e4405f;
25474
  color: #e4405f;
25475
}
16848 stevensc 25476
 
16825 efrain 25477
.btn-outline-instagram:hover {
25478
  background: #e4405f;
25479
  color: #fff;
25480
}
25481
 
25482
.btn-pinterest {
25483
  background: #bd081c;
25484
  color: #fff;
25485
}
16848 stevensc 25486
 
25487
.btn-pinterest:hover,
25488
.btn-pinterest:focus {
16825 efrain 25489
  background: #8c0615;
25490
  color: #fff;
25491
}
16848 stevensc 25492
 
16825 efrain 25493
.btn-pinterest.btn-social-icon-text {
25494
  padding: 0 1.5rem 0 0;
25495
  background: #ee0a23;
25496
}
16848 stevensc 25497
 
16825 efrain 25498
.btn-pinterest.btn-social-icon-text i {
25499
  background: #bd081c;
25500
  padding: 0.75rem;
25501
  display: inline-block;
25502
  margin-right: 1.5rem;
25503
}
25504
 
25505
.btn-outline-pinterest {
25506
  border: 1px solid #bd081c;
25507
  color: #bd081c;
25508
}
16848 stevensc 25509
 
16825 efrain 25510
.btn-outline-pinterest:hover {
25511
  background: #bd081c;
25512
  color: #fff;
25513
}
25514
 
25515
.btn-flickr {
25516
  background: #0063dc;
25517
  color: #fff;
25518
}
16848 stevensc 25519
 
25520
.btn-flickr:hover,
25521
.btn-flickr:focus {
16825 efrain 25522
  background: #004ca9;
25523
  color: #fff;
25524
}
16848 stevensc 25525
 
16825 efrain 25526
.btn-flickr.btn-social-icon-text {
25527
  padding: 0 1.5rem 0 0;
25528
  background: #107cff;
25529
}
16848 stevensc 25530
 
16825 efrain 25531
.btn-flickr.btn-social-icon-text i {
25532
  background: #0063dc;
25533
  padding: 0.75rem;
25534
  display: inline-block;
25535
  margin-right: 1.5rem;
25536
}
25537
 
25538
.btn-outline-flickr {
25539
  border: 1px solid #0063dc;
25540
  color: #0063dc;
25541
}
16848 stevensc 25542
 
16825 efrain 25543
.btn-outline-flickr:hover {
25544
  background: #0063dc;
25545
  color: #fff;
25546
}
25547
 
25548
.btn-bitbucket {
25549
  background: #0052cc;
25550
  color: #fff;
25551
}
16848 stevensc 25552
 
25553
.btn-bitbucket:hover,
25554
.btn-bitbucket:focus {
16825 efrain 25555
  background: #003e99;
25556
  color: #fff;
25557
}
16848 stevensc 25558
 
16825 efrain 25559
.btn-bitbucket.btn-social-icon-text {
25560
  padding: 0 1.5rem 0 0;
25561
  background: #0067ff;
25562
}
16848 stevensc 25563
 
16825 efrain 25564
.btn-bitbucket.btn-social-icon-text i {
25565
  background: #0052cc;
25566
  padding: 0.75rem;
25567
  display: inline-block;
25568
  margin-right: 1.5rem;
25569
}
25570
 
25571
.btn-outline-bitbucket {
25572
  border: 1px solid #0052cc;
25573
  color: #0052cc;
25574
}
16848 stevensc 25575
 
16825 efrain 25576
.btn-outline-bitbucket:hover {
25577
  background: #0052cc;
25578
  color: #fff;
25579
}
25580
 
25581
.btn-linkedin {
25582
  background: #0077b5;
25583
  color: #fff;
25584
}
16848 stevensc 25585
 
25586
.btn-linkedin:hover,
25587
.btn-linkedin:focus {
16825 efrain 25588
  background: #005582;
25589
  color: #fff;
25590
}
16848 stevensc 25591
 
16825 efrain 25592
.btn-linkedin.btn-social-icon-text {
25593
  padding: 0 1.5rem 0 0;
25594
  background: #0099e8;
25595
}
16848 stevensc 25596
 
16825 efrain 25597
.btn-linkedin.btn-social-icon-text i {
25598
  background: #0077b5;
25599
  padding: 0.75rem;
25600
  display: inline-block;
25601
  margin-right: 1.5rem;
25602
}
25603
 
25604
.btn-outline-linkedin {
25605
  border: 1px solid #0077b5;
25606
  color: #0077b5;
25607
}
16848 stevensc 25608
 
16825 efrain 25609
.btn-outline-linkedin:hover {
25610
  background: #0077b5;
25611
  color: #fff;
25612
}
25613
 
25614
.btn-inverse-primary {
25615
  background-color: rgba(101, 113, 255, 0.2);
25616
  background-image: none;
25617
  border-color: rgba(101, 113, 255, 0);
25618
}
16848 stevensc 25619
 
16825 efrain 25620
.btn-inverse-primary:not(.btn-inverse-light) {
25621
  color: #6571ff;
25622
}
16848 stevensc 25623
 
25624
.btn-inverse-primary:hover,
25625
.btn-inverse-primary.active,
25626
.btn-inverse-primary:active,
25627
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25628
  background-color: rgba(101, 113, 255, 0.3);
25629
  border-color: rgba(101, 113, 255, 0);
25630
}
16848 stevensc 25631
 
25632
.btn-inverse-primary.focus,
25633
.btn-inverse-primary:focus {
16825 efrain 25634
  background-color: rgba(101, 113, 255, 0.3);
25635
  border-color: transparent;
25636
}
16848 stevensc 25637
 
25638
.btn-inverse-primary.disabled,
25639
.btn-inverse-primary:disabled {
16825 efrain 25640
  color: #6571ff;
25641
  background-color: transparent;
25642
}
25643
 
25644
.btn-inverse-secondary {
25645
  background-color: rgba(121, 135, 161, 0.2);
25646
  background-image: none;
25647
  border-color: rgba(121, 135, 161, 0);
25648
}
16848 stevensc 25649
 
16825 efrain 25650
.btn-inverse-secondary:not(.btn-inverse-light) {
25651
  color: #7987a1;
25652
}
16848 stevensc 25653
 
25654
.btn-inverse-secondary:hover,
25655
.btn-inverse-secondary.active,
25656
.btn-inverse-secondary:active,
25657
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25658
  background-color: rgba(121, 135, 161, 0.3);
25659
  border-color: rgba(121, 135, 161, 0);
25660
}
16848 stevensc 25661
 
25662
.btn-inverse-secondary.focus,
25663
.btn-inverse-secondary:focus {
16825 efrain 25664
  background-color: rgba(121, 135, 161, 0.3);
25665
  border-color: transparent;
25666
}
16848 stevensc 25667
 
25668
.btn-inverse-secondary.disabled,
25669
.btn-inverse-secondary:disabled {
16825 efrain 25670
  color: #7987a1;
25671
  background-color: transparent;
25672
}
25673
 
25674
.btn-inverse-success {
25675
  background-color: rgba(5, 163, 74, 0.2);
25676
  background-image: none;
25677
  border-color: rgba(5, 163, 74, 0);
25678
}
16848 stevensc 25679
 
16825 efrain 25680
.btn-inverse-success:not(.btn-inverse-light) {
25681
  color: #05a34a;
25682
}
16848 stevensc 25683
 
25684
.btn-inverse-success:hover,
25685
.btn-inverse-success.active,
25686
.btn-inverse-success:active,
25687
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25688
  background-color: rgba(5, 163, 74, 0.3);
25689
  border-color: rgba(5, 163, 74, 0);
25690
}
16848 stevensc 25691
 
25692
.btn-inverse-success.focus,
25693
.btn-inverse-success:focus {
16825 efrain 25694
  background-color: rgba(5, 163, 74, 0.3);
25695
  border-color: transparent;
25696
}
16848 stevensc 25697
 
25698
.btn-inverse-success.disabled,
25699
.btn-inverse-success:disabled {
16825 efrain 25700
  color: #05a34a;
25701
  background-color: transparent;
25702
}
25703
 
25704
.btn-inverse-info {
25705
  background-color: rgba(102, 209, 209, 0.2);
25706
  background-image: none;
25707
  border-color: rgba(102, 209, 209, 0);
25708
}
16848 stevensc 25709
 
16825 efrain 25710
.btn-inverse-info:not(.btn-inverse-light) {
25711
  color: #66d1d1;
25712
}
16848 stevensc 25713
 
25714
.btn-inverse-info:hover,
25715
.btn-inverse-info.active,
25716
.btn-inverse-info:active,
25717
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25718
  background-color: rgba(102, 209, 209, 0.3);
25719
  border-color: rgba(102, 209, 209, 0);
25720
}
16848 stevensc 25721
 
25722
.btn-inverse-info.focus,
25723
.btn-inverse-info:focus {
16825 efrain 25724
  background-color: rgba(102, 209, 209, 0.3);
25725
  border-color: transparent;
25726
}
16848 stevensc 25727
 
25728
.btn-inverse-info.disabled,
25729
.btn-inverse-info:disabled {
16825 efrain 25730
  color: #66d1d1;
25731
  background-color: transparent;
25732
}
25733
 
25734
.btn-inverse-warning {
25735
  background-color: rgba(251, 188, 6, 0.2);
25736
  background-image: none;
25737
  border-color: rgba(251, 188, 6, 0);
25738
}
16848 stevensc 25739
 
16825 efrain 25740
.btn-inverse-warning:not(.btn-inverse-light) {
25741
  color: #fbbc06;
25742
}
16848 stevensc 25743
 
25744
.btn-inverse-warning:hover,
25745
.btn-inverse-warning.active,
25746
.btn-inverse-warning:active,
25747
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25748
  background-color: rgba(251, 188, 6, 0.3);
25749
  border-color: rgba(251, 188, 6, 0);
25750
}
16848 stevensc 25751
 
25752
.btn-inverse-warning.focus,
25753
.btn-inverse-warning:focus {
16825 efrain 25754
  background-color: rgba(251, 188, 6, 0.3);
25755
  border-color: transparent;
25756
}
16848 stevensc 25757
 
25758
.btn-inverse-warning.disabled,
25759
.btn-inverse-warning:disabled {
16825 efrain 25760
  color: #fbbc06;
25761
  background-color: transparent;
25762
}
25763
 
25764
.btn-inverse-danger {
25765
  background-color: rgba(255, 51, 102, 0.2);
25766
  background-image: none;
25767
  border-color: rgba(255, 51, 102, 0);
25768
}
16848 stevensc 25769
 
16825 efrain 25770
.btn-inverse-danger:not(.btn-inverse-light) {
25771
  color: #ff3366;
25772
}
16848 stevensc 25773
 
25774
.btn-inverse-danger:hover,
25775
.btn-inverse-danger.active,
25776
.btn-inverse-danger:active,
25777
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25778
  background-color: rgba(255, 51, 102, 0.3);
25779
  border-color: rgba(255, 51, 102, 0);
25780
}
16848 stevensc 25781
 
25782
.btn-inverse-danger.focus,
25783
.btn-inverse-danger:focus {
16825 efrain 25784
  background-color: rgba(255, 51, 102, 0.3);
25785
  border-color: transparent;
25786
}
16848 stevensc 25787
 
25788
.btn-inverse-danger.disabled,
25789
.btn-inverse-danger:disabled {
16825 efrain 25790
  color: #ff3366;
25791
  background-color: transparent;
25792
}
25793
 
25794
.btn-inverse-light {
25795
  background-color: rgba(233, 236, 239, 0.2);
25796
  background-image: none;
25797
  border-color: rgba(233, 236, 239, 0);
25798
}
16848 stevensc 25799
 
16825 efrain 25800
.btn-inverse-light:not(.btn-inverse-light) {
25801
  color: #e9ecef;
25802
}
16848 stevensc 25803
 
25804
.btn-inverse-light:hover,
25805
.btn-inverse-light.active,
25806
.btn-inverse-light:active,
25807
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25808
  background-color: rgba(233, 236, 239, 0.3);
25809
  border-color: rgba(233, 236, 239, 0);
25810
}
16848 stevensc 25811
 
25812
.btn-inverse-light.focus,
25813
.btn-inverse-light:focus {
16825 efrain 25814
  background-color: rgba(233, 236, 239, 0.3);
25815
  border-color: transparent;
25816
}
16848 stevensc 25817
 
25818
.btn-inverse-light.disabled,
25819
.btn-inverse-light:disabled {
16825 efrain 25820
  color: #e9ecef;
25821
  background-color: transparent;
25822
}
25823
 
25824
.btn-inverse-dark {
25825
  background-color: rgba(6, 12, 23, 0.2);
25826
  background-image: none;
25827
  border-color: rgba(6, 12, 23, 0);
25828
}
16848 stevensc 25829
 
16825 efrain 25830
.btn-inverse-dark:not(.btn-inverse-light) {
25831
  color: #060c17;
25832
}
16848 stevensc 25833
 
25834
.btn-inverse-dark:hover,
25835
.btn-inverse-dark.active,
25836
.btn-inverse-dark:active,
25837
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25838
  background-color: rgba(6, 12, 23, 0.3);
25839
  border-color: rgba(6, 12, 23, 0);
25840
}
16848 stevensc 25841
 
25842
.btn-inverse-dark.focus,
25843
.btn-inverse-dark:focus {
16825 efrain 25844
  background-color: rgba(6, 12, 23, 0.3);
25845
  border-color: transparent;
25846
}
16848 stevensc 25847
 
25848
.btn-inverse-dark.disabled,
25849
.btn-inverse-dark:disabled {
16825 efrain 25850
  color: #060c17;
25851
  background-color: transparent;
25852
}
25853
 
25854
.card {
25855
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25856
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25857
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25858
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25859
}
16848 stevensc 25860
 
25861
.card .card-body+.card-body {
16825 efrain 25862
  padding-top: 1rem;
25863
}
16848 stevensc 25864
 
16825 efrain 25865
.card .card-title {
25866
  text-transform: uppercase;
25867
  font-size: 0.875rem;
25868
  font-weight: 500;
25869
}
25870
 
25871
.card-group {
25872
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25873
}
16848 stevensc 25874
 
16825 efrain 25875
.card-group .card {
25876
  box-shadow: none;
25877
}
25878
 
25879
.dropdown .dropdown-toggle:after,
25880
.btn-group .dropdown-toggle:after {
25881
  border-top: 0;
25882
  border-right: 0;
25883
  border-left: 0;
25884
  border-bottom: 0;
25885
  font: normal normal normal 24px/1 "feather";
25886
  content: "\e842";
25887
  width: auto;
25888
  height: auto;
25889
  vertical-align: middle;
25890
  line-height: 0.625rem;
25891
  font-size: 0.875rem;
25892
}
16848 stevensc 25893
 
16825 efrain 25894
.dropdown.dropup .dropdown-toggle::after,
25895
.btn-group.dropup .dropdown-toggle::after {
25896
  content: "\e845";
25897
}
16848 stevensc 25898
 
16825 efrain 25899
.dropdown.dropstart .dropdown-toggle::before,
25900
.btn-group.dropstart .dropdown-toggle::before {
25901
  border: 0;
25902
  font: normal normal normal 24px/1 "feather";
25903
  content: "\e843";
25904
  width: auto;
25905
  height: auto;
25906
  vertical-align: middle;
25907
  line-height: 0.625rem;
25908
  font-size: 0.875rem;
25909
}
16848 stevensc 25910
 
16825 efrain 25911
.dropdown.dropend .dropdown-toggle::after,
25912
.btn-group.dropend .dropdown-toggle::after {
25913
  content: "\e844";
25914
}
25915
 
16848 stevensc 25916
.dropdown-menu,
25917
.tt-menu {
16825 efrain 25918
  padding: 0.35rem;
25919
  margin-top: 0;
25920
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25921
}
25922
 
16848 stevensc 25923
.dropdown-item,
25924
.tt-menu .tt-suggestion {
16825 efrain 25925
  font-size: 0.812rem;
25926
  padding: 0.25rem 0.875rem;
25927
  border-radius: 2px;
25928
}
16848 stevensc 25929
 
25930
.dropdown-item i,
25931
.tt-menu .tt-suggestion i,
25932
.dropdown-item svg,
25933
.tt-menu .tt-suggestion svg {
16825 efrain 25934
  color: #7987a1;
25935
}
16848 stevensc 25936
 
25937
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25938
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25939
  background-color: rgba(101, 113, 255, 0.1);
25940
}
16848 stevensc 25941
 
25942
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25943
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25944
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25945
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25946
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25947
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25948
  color: #6571ff;
25949
}
16848 stevensc 25950
 
25951
.dropdown-item:active i,
25952
.tt-menu .tt-suggestion:active i,
25953
.dropdown-item:active svg,
25954
.tt-menu .tt-suggestion:active svg,
25955
.dropdown-item.active i,
25956
.tt-menu .active.tt-suggestion i,
25957
.dropdown-item.active svg,
25958
.tt-menu .active.tt-suggestion svg {
16825 efrain 25959
  color: #fff;
25960
}
25961
 
25962
.form-control-xs,
25963
.form-select-xs {
25964
  padding: 0.313rem 0.8rem;
25965
  font-size: 0.75rem;
25966
}
25967
 
16848 stevensc 25968
.form-control-xs+.input-group-text {
16825 efrain 25969
  padding-top: 0.313rem;
25970
  padding-bottom: 0.313rem;
25971
}
25972
 
25973
.form-check-input {
25974
  margin-top: 0.13em;
25975
}
25976
 
25977
.input-group-text svg {
25978
  width: 18px;
25979
  height: 18px;
25980
}
25981
 
25982
[type=tel],
25983
[type=url],
25984
[type=email],
25985
[type=number] {
25986
  direction: ltr;
25987
}
25988
 
25989
.icons-list {
25990
  border-left: 1px solid #e9ecef;
25991
  border-top: 1px solid #e9ecef;
25992
}
16848 stevensc 25993
 
25994
.icons-list>div {
16825 efrain 25995
  border-bottom: 1px solid #e9ecef;
25996
  border-right: 1px solid #e9ecef;
25997
  background: #f9fafb;
25998
  display: flex;
25999
  align-items: center;
26000
  padding: 15px 20px;
26001
  font-weight: 400;
26002
  transition: all 0.3s ease-in-out;
26003
}
16848 stevensc 26004
 
26005
.icons-list>div i {
16825 efrain 26006
  display: inline-block;
26007
  font-size: 20px;
26008
  text-align: left;
26009
  margin-right: 12px;
26010
  color: #7987a1;
26011
  transition: all 0.3s ease-in-out;
26012
}
16848 stevensc 26013
 
26014
.icons-list>div svg {
16825 efrain 26015
  width: 20px;
26016
  margin-right: 12px;
26017
  color: #7987a1;
26018
  transition: all 0.3s ease-in-out;
26019
}
16848 stevensc 26020
 
26021
.icons-list>div:hover {
16825 efrain 26022
  cursor: text;
26023
}
16848 stevensc 26024
 
26025
.icons-list>div:hover i,
26026
.icons-list>div:hover svg {
16825 efrain 26027
  transform: scale(1.3);
26028
  color: #6571ff;
26029
}
26030
 
26031
.nav.nav-tabs .nav-item .nav-link {
26032
  border-color: #e9ecef #e9ecef #dee2e6;
26033
  color: #000;
26034
  background-color: #f8f9fa;
26035
  cursor: pointer;
26036
}
16848 stevensc 26037
 
16825 efrain 26038
.nav.nav-tabs .nav-item .nav-link.active {
26039
  border-color: #dee2e6 #dee2e6 #fff;
26040
  color: #6571ff;
26041
  background: #fff;
26042
}
16848 stevensc 26043
 
16825 efrain 26044
.nav.nav-tabs .nav-item .nav-link.disabled {
26045
  background-color: transparent;
26046
  color: #7987a1;
26047
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26048
}
16848 stevensc 26049
 
16825 efrain 26050
.nav.nav-tabs.nav-tabs-vertical {
26051
  border-bottom: 0;
26052
}
16848 stevensc 26053
 
16825 efrain 26054
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26055
  width: 100%;
26056
  border: 1px solid transparent;
26057
  border-radius: 0;
26058
  border-color: #e9ecef #e9ecef #dee2e6;
26059
  color: #000;
26060
  background-color: #f8f9fa;
26061
}
16848 stevensc 26062
 
16825 efrain 26063
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26064
  border-radius: 0.25rem 0 0 0;
26065
}
16848 stevensc 26066
 
16825 efrain 26067
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26068
  border-radius: 0 0 0 0.25rem;
26069
}
16848 stevensc 26070
 
16825 efrain 26071
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26072
  background-color: #fff;
26073
  color: #6571ff;
26074
  border-right-color: transparent;
26075
}
16848 stevensc 26076
 
16825 efrain 26077
.nav.nav-tabs.nav-tabs-line .nav-link {
26078
  border: 0;
26079
  background-color: transparent;
26080
}
16848 stevensc 26081
 
16825 efrain 26082
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26083
  border-bottom: 2px solid #6571ff;
26084
}
26085
 
26086
.tab-content.tab-content-vertical {
26087
  height: 100%;
26088
}
26089
 
26090
.pagination .page-item .page-link svg {
26091
  width: 18px;
26092
  height: 18px;
26093
}
16848 stevensc 26094
 
16825 efrain 26095
.pagination.pagination-separated .page-item {
26096
  margin-left: 2px;
26097
  margin-right: 2px;
26098
}
16848 stevensc 26099
 
16825 efrain 26100
.pagination.pagination-separated .page-item:first-child {
26101
  margin-left: 0;
26102
}
16848 stevensc 26103
 
16825 efrain 26104
.pagination.pagination-separated .page-item:last-child {
26105
  margin-right: 0;
26106
}
16848 stevensc 26107
 
16825 efrain 26108
.pagination.pagination-rounded .page-item {
26109
  margin-right: 2px;
26110
  margin-left: 2px;
26111
}
16848 stevensc 26112
 
16825 efrain 26113
.pagination.pagination-rounded .page-item .page-link {
26114
  border-radius: 50px;
26115
}
26116
 
26117
.table {
26118
  margin-bottom: 0;
26119
}
16848 stevensc 26120
 
26121
.table> :not(:last-child)> :last-child>* {
16825 efrain 26122
  border-bottom-color: inherit;
26123
}
16848 stevensc 26124
 
16825 efrain 26125
.table thead th {
26126
  border-top: 0;
26127
  font-weight: 500;
26128
  font-size: 12px;
26129
  text-transform: uppercase;
26130
  color: #7987a1;
26131
}
16848 stevensc 26132
 
16825 efrain 26133
.table thead th i {
26134
  margin-left: 0.325rem;
26135
}
16848 stevensc 26136
 
16825 efrain 26137
.table th,
26138
.table td {
26139
  white-space: nowrap;
26140
}
16848 stevensc 26141
 
16825 efrain 26142
.table td img {
26143
  width: 36px;
26144
  height: 36px;
26145
  border-radius: 100%;
26146
}
26147
 
26148
.timeline {
26149
  border-left: 3px solid #6571ff;
26150
  border-bottom-right-radius: 0.25rem;
26151
  border-top-right-radius: 0.25rem;
26152
  background: rgba(101, 113, 255, 0.2);
26153
  margin: 0 auto;
26154
  position: relative;
26155
  padding: 50px;
26156
  list-style: none;
26157
  max-width: 40%;
26158
}
16848 stevensc 26159
 
16825 efrain 26160
@media (max-width: 767px) {
26161
  .timeline {
26162
    max-width: 98%;
26163
    padding: 25px;
26164
  }
26165
}
16848 stevensc 26166
 
16825 efrain 26167
.timeline .event {
26168
  border-bottom: 1px dashed #e9ecef;
26169
  padding-bottom: 25px;
26170
  margin-bottom: 25px;
26171
  position: relative;
26172
}
16848 stevensc 26173
 
16825 efrain 26174
@media (max-width: 767px) {
26175
  .timeline .event {
26176
    padding-top: 30px;
26177
  }
26178
}
16848 stevensc 26179
 
16825 efrain 26180
.timeline .event .title {
26181
  font-weight: 500;
26182
  font-size: 1rem;
26183
  margin-bottom: 10px;
26184
}
16848 stevensc 26185
 
16825 efrain 26186
.timeline .event:last-of-type {
26187
  padding-bottom: 0;
26188
  margin-bottom: 0;
26189
  border: none;
26190
}
16848 stevensc 26191
 
26192
.timeline .event:before,
26193
.timeline .event:after {
16825 efrain 26194
  position: absolute;
26195
  display: block;
26196
  top: 0;
26197
}
16848 stevensc 26198
 
16825 efrain 26199
.timeline .event:before {
26200
  left: -207px;
26201
  content: attr(data-date);
26202
  text-align: right;
26203
  font-weight: 500;
26204
  font-size: 0.9em;
26205
  min-width: 120px;
26206
}
16848 stevensc 26207
 
16825 efrain 26208
@media (max-width: 767px) {
26209
  .timeline .event:before {
26210
    left: 0px;
26211
    text-align: left;
26212
  }
26213
}
16848 stevensc 26214
 
16825 efrain 26215
.timeline .event:after {
26216
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26217
  box-shadow: 0 0 0 3px #6571ff;
26218
  left: -55.8px;
26219
  background: #fff;
26220
  border-radius: 50%;
26221
  height: 9px;
26222
  width: 9px;
26223
  content: "";
26224
  top: 5px;
26225
}
16848 stevensc 26226
 
16825 efrain 26227
@media (max-width: 767px) {
26228
  .timeline .event:after {
26229
    left: -31.8px;
26230
  }
26231
}
26232
 
26233
.chat-wrapper {
26234
  height: calc(100vh - 60px - 102px);
26235
}
16848 stevensc 26236
 
16825 efrain 26237
@media (max-width: 991px) {
26238
  .chat-wrapper {
26239
    min-height: 100%;
26240
  }
26241
}
16848 stevensc 26242
 
16825 efrain 26243
@media (max-width: 991px) {
26244
  .chat-wrapper {
26245
    height: 100%;
26246
  }
26247
}
16848 stevensc 26248
 
16825 efrain 26249
@media (min-width: 992px) {
26250
  .chat-wrapper .chat-aside {
26251
    padding-right: 23px;
26252
  }
26253
}
16848 stevensc 26254
 
16825 efrain 26255
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26256
  position: relative;
26257
  max-height: calc(100vh - 385px);
26258
}
16848 stevensc 26259
 
26260
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26261
  padding-top: 11px;
26262
  padding-bottom: 11px;
26263
}
16848 stevensc 26264
 
16825 efrain 26265
@media (max-width: 991px) {
26266
  .chat-wrapper .chat-content {
26267
    position: absolute;
26268
    background: #fff;
26269
    left: 0;
26270
    bottom: -1px;
26271
    top: 0;
26272
    right: 0;
26273
    display: none;
26274
  }
16848 stevensc 26275
 
16825 efrain 26276
  .chat-wrapper .chat-content.show {
26277
    display: block;
26278
  }
26279
}
16848 stevensc 26280
 
16825 efrain 26281
.chat-wrapper .chat-content .chat-header {
26282
  padding: 0 10px;
26283
}
16848 stevensc 26284
 
16825 efrain 26285
.chat-wrapper .chat-content .chat-body {
26286
  position: relative;
26287
  max-height: calc(100vh - 340px);
26288
  margin-top: 20px;
26289
  margin-bottom: 20px;
26290
}
16848 stevensc 26291
 
16825 efrain 26292
@media (max-width: 767px) {
26293
  .chat-wrapper .chat-content .chat-body {
26294
    max-height: calc(100vh - 315px);
26295
  }
26296
}
16848 stevensc 26297
 
16825 efrain 26298
@media (max-width: 991px) {
26299
  .chat-wrapper .chat-content .chat-body {
26300
    max-height: calc(100vh - 342px);
26301
  }
26302
}
16848 stevensc 26303
 
16825 efrain 26304
.chat-wrapper .chat-content .chat-body .messages {
26305
  padding: 0 10px;
26306
  list-style-type: none;
26307
}
16848 stevensc 26308
 
16825 efrain 26309
.chat-wrapper .chat-content .chat-body .messages .message-item {
26310
  display: flex;
26311
  max-width: 80%;
26312
  margin-bottom: 20px;
26313
}
16848 stevensc 26314
 
16825 efrain 26315
@media (max-width: 767px) {
26316
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26317
    max-width: 95%;
26318
  }
26319
}
16848 stevensc 26320
 
16825 efrain 26321
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26322
  position: relative;
26323
  padding: 7px 15px;
26324
  margin-bottom: 4px;
26325
  width: -webkit-fit-content;
26326
  width: -moz-fit-content;
26327
  width: fit-content;
26328
}
16848 stevensc 26329
 
16825 efrain 26330
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26331
  font-size: 12px;
26332
  color: #7987a1;
26333
}
16848 stevensc 26334
 
16825 efrain 26335
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26336
  order: 1;
26337
  margin-right: 15px;
26338
}
16848 stevensc 26339
 
16825 efrain 26340
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26341
  order: 2;
26342
}
16848 stevensc 26343
 
16825 efrain 26344
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26345
  background: rgba(101, 113, 255, 0.1);
26346
  border-radius: 0 5px 5px;
26347
}
16848 stevensc 26348
 
16825 efrain 26349
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26350
  content: "";
26351
  width: 0;
26352
  height: 0;
26353
  position: absolute;
26354
  left: -10px;
26355
  top: 0;
26356
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26357
  border-bottom: 5px solid transparent;
26358
  border-left: 5px solid transparent;
26359
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26360
}
16848 stevensc 26361
 
16825 efrain 26362
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26363
  margin-left: auto;
26364
}
16848 stevensc 26365
 
16825 efrain 26366
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26367
  order: 2;
26368
  margin-left: 15px;
26369
}
16848 stevensc 26370
 
16825 efrain 26371
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26372
  order: 1;
26373
  margin-left: auto;
26374
}
16848 stevensc 26375
 
16825 efrain 26376
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26377
  background: rgba(102, 209, 209, 0.1);
26378
  border-radius: 5px 0 5px 5px;
26379
  margin-left: auto;
26380
}
16848 stevensc 26381
 
16825 efrain 26382
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26383
  content: "";
26384
  width: 0;
26385
  height: 0;
26386
  position: absolute;
26387
  right: -10px;
26388
  top: 0;
26389
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26390
  border-bottom: 5px solid transparent;
26391
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26392
  border-right: 5px solid transparent;
26393
}
16848 stevensc 26394
 
16825 efrain 26395
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26396
  text-align: right;
26397
  display: block;
26398
}
16848 stevensc 26399
 
16825 efrain 26400
.chat-wrapper figure {
26401
  position: relative;
26402
}
16848 stevensc 26403
 
16825 efrain 26404
.chat-wrapper figure .status {
26405
  width: 11px;
26406
  height: 11px;
26407
  background: #7987a1;
26408
  position: absolute;
26409
  bottom: 0px;
26410
  right: -2px;
26411
  border-radius: 50%;
26412
  border: 2px solid #fff;
26413
}
16848 stevensc 26414
 
16825 efrain 26415
.chat-wrapper figure .status.online {
26416
  background: #05a34a;
26417
}
16848 stevensc 26418
 
16825 efrain 26419
.chat-wrapper figure .status.offline {
26420
  background: #7987a1;
26421
}
26422
 
26423
.auth-page .auth-side-wrapper {
26424
  width: 100%;
26425
  height: 100%;
26426
  background-image: url(https://via.placeholder.com/219x452);
26427
  background-size: cover;
26428
}
26429
 
26430
.email-aside-nav.collapse {
26431
  display: block;
26432
}
16848 stevensc 26433
 
16825 efrain 26434
@media (max-width: 991px) {
26435
  .email-aside-nav.collapse {
26436
    display: none;
26437
  }
26438
}
16848 stevensc 26439
 
16825 efrain 26440
@media (max-width: 991px) {
26441
  .email-aside-nav.collapse.show {
26442
    display: block;
26443
  }
26444
}
16848 stevensc 26445
 
16825 efrain 26446
.email-aside-nav .nav-item {
26447
  border-radius: 0.2rem;
26448
}
16848 stevensc 26449
 
16825 efrain 26450
.email-aside-nav .nav-item .nav-link {
26451
  color: #000;
26452
}
16848 stevensc 26453
 
16825 efrain 26454
.email-aside-nav .nav-item .nav-link svg {
26455
  color: #7987a1;
26456
}
16848 stevensc 26457
 
26458
.email-aside-nav .nav-item.active,
26459
.email-aside-nav .nav-item:hover {
16825 efrain 26460
  background: rgba(101, 113, 255, 0.1);
26461
}
16848 stevensc 26462
 
26463
.email-aside-nav .nav-item.active .nav-link,
26464
.email-aside-nav .nav-item.active .nav-link svg,
26465
.email-aside-nav .nav-item:hover .nav-link,
26466
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26467
  color: #6571ff;
26468
}
26469
 
26470
.email-list-item {
26471
  display: flex;
26472
  align-items: center;
26473
  border-bottom: 1px solid #e9ecef;
26474
  padding: 10px 20px;
26475
  cursor: pointer;
26476
}
16848 stevensc 26477
 
16825 efrain 26478
.email-list-item:hover {
26479
  background: rgba(101, 113, 255, 0.08);
26480
}
16848 stevensc 26481
 
16825 efrain 26482
.email-list-item:last-child {
26483
  margin-bottom: 5px;
26484
}
16848 stevensc 26485
 
16825 efrain 26486
.email-list-item .email-list-actions {
26487
  width: 40px;
26488
  vertical-align: top;
26489
  display: table-cell;
26490
}
16848 stevensc 26491
 
16825 efrain 26492
.email-list-item .email-list-actions .form-check {
26493
  margin-bottom: 0;
26494
}
16848 stevensc 26495
 
16825 efrain 26496
.email-list-item .email-list-actions .favorite {
26497
  display: block;
26498
  padding-left: 1px;
26499
  line-height: 15px;
26500
}
16848 stevensc 26501
 
16825 efrain 26502
.email-list-item .email-list-actions .favorite span svg {
26503
  width: 14px;
26504
  color: #7987a1;
26505
}
16848 stevensc 26506
 
16825 efrain 26507
.email-list-item .email-list-actions .favorite:hover span {
26508
  color: #8d8d8d;
26509
}
16848 stevensc 26510
 
16825 efrain 26511
.email-list-item .email-list-actions .favorite.active span svg {
26512
  color: #fbbc06;
26513
}
16848 stevensc 26514
 
16825 efrain 26515
.email-list-item .email-list-detail {
26516
  width: calc(100% - 40px);
26517
  display: flex;
26518
  justify-content: space-between;
26519
  align-items: center;
26520
  flex-grow: 1;
26521
}
16848 stevensc 26522
 
16825 efrain 26523
.email-list-item .email-list-detail .content {
26524
  overflow: hidden;
26525
}
16848 stevensc 26526
 
16825 efrain 26527
.email-list-item .email-list-detail .content .from {
26528
  display: block;
26529
  margin: 0 0 1px 0;
26530
  color: #000;
26531
}
16848 stevensc 26532
 
16825 efrain 26533
.email-list-item .email-list-detail .content .msg {
26534
  width: 97%;
26535
  color: #7987a1;
26536
  font-size: 0.8rem;
26537
  overflow: hidden;
26538
  text-overflow: ellipsis;
26539
  white-space: nowrap;
26540
}
16848 stevensc 26541
 
16825 efrain 26542
.email-list-item .email-list-detail .date {
26543
  color: #000;
26544
  white-space: nowrap;
26545
}
16848 stevensc 26546
 
16825 efrain 26547
.email-list-item .email-list-detail .date .icon svg {
26548
  width: 14px;
26549
  margin-right: 7px;
26550
  color: #3d405c;
26551
}
16848 stevensc 26552
 
16825 efrain 26553
.email-list-item.email-list-item--unread {
26554
  background-color: rgba(101, 113, 255, 0.09);
26555
}
16848 stevensc 26556
 
16825 efrain 26557
.email-list-item.email-list-item--unread .content .from {
26558
  font-weight: 500;
26559
}
16848 stevensc 26560
 
16825 efrain 26561
.email-list-item.email-list-item--unread .content .msg {
26562
  font-weight: 700;
26563
}
26564
 
26565
.ace_editor {
26566
  border-radius: 0.25rem;
26567
  margin: auto;
26568
  height: 300px;
26569
  width: 100%;
26570
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26571
}
16848 stevensc 26572
 
16825 efrain 26573
.ace_editor .ace_content {
26574
  font-size: 0.875rem;
26575
}
26576
 
26577
div.apexcharts-canvas .apexcharts-menu {
26578
  background: #fff !important;
26579
  color: #000;
26580
  border-color: #e9ecef;
26581
}
16848 stevensc 26582
 
16825 efrain 26583
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26584
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26585
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26586
div.apexcharts-canvas .apexcharts-reset-icon svg,
26587
div.apexcharts-canvas .apexcharts-pan-icon svg,
26588
div.apexcharts-canvas .apexcharts-selection-icon svg,
26589
div.apexcharts-canvas .apexcharts-menu-icon svg,
26590
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26591
  fill: #7987a1;
26592
}
16848 stevensc 26593
 
16825 efrain 26594
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26595
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26596
  display: flex;
26597
  align-items: center;
26598
}
16848 stevensc 26599
 
16825 efrain 26600
div.apexcharts-canvas .apexcharts-legend-marker {
26601
  margin-right: 3px;
26602
}
16848 stevensc 26603
 
16825 efrain 26604
div.apexcharts-canvas .apexcharts-tooltip {
26605
  background: rgba(255, 255, 255, 0.8);
26606
  color: #000;
26607
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26608
  border-radius: 0.25rem;
26609
  border: 1px solid #f2f4f9;
26610
}
16848 stevensc 26611
 
16825 efrain 26612
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26613
  border-color: #e9ecef;
26614
  background-color: #fff;
26615
}
16848 stevensc 26616
 
16825 efrain 26617
div.apexcharts-canvas .apexcharts-tooltip * {
26618
  font-family: "Roboto", Helvetica, sans-serif !important;
26619
}
16848 stevensc 26620
 
16825 efrain 26621
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26622
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26623
  padding: 0 10px;
26624
}
16848 stevensc 26625
 
16825 efrain 26626
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26627
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26628
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26629
  margin-left: 0;
26630
}
16848 stevensc 26631
 
16825 efrain 26632
div.apexcharts-canvas .apexcharts-tooltip-title {
26633
  margin-bottom: 0;
26634
}
16848 stevensc 26635
 
16825 efrain 26636
div.apexcharts-canvas .apexcharts-xaxistooltip,
26637
div.apexcharts-canvas .apexcharts-yaxistooltip {
26638
  background: #fff;
26639
  color: #000;
26640
  border-color: #f2f4f9;
26641
}
16848 stevensc 26642
 
16825 efrain 26643
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26644
  border-bottom-color: #f2f4f9;
26645
}
16848 stevensc 26646
 
16825 efrain 26647
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26648
  border-bottom-color: rgba(255, 255, 255, 0.8);
26649
}
16848 stevensc 26650
 
16825 efrain 26651
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26652
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26653
  border-left-color: #f2f4f9;
26654
}
16848 stevensc 26655
 
16825 efrain 26656
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26657
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26658
  border-left-color: rgba(255, 255, 255, 0.8);
26659
}
26660
 
26661
@media (max-width: 767px) {
26662
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26663
    text-align: left;
26664
  }
26665
}
16848 stevensc 26666
 
16825 efrain 26667
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26668
  margin-left: 10px;
26669
  margin-right: 10px;
26670
}
16848 stevensc 26671
 
16825 efrain 26672
@media (max-width: 767px) {
26673
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26674
    text-align: left;
26675
    margin-left: -19px;
26676
  }
26677
}
26678
 
26679
.dropify-wrapper {
26680
  border: 1px solid #e9ecef;
26681
  border-radius: 0.25rem;
26682
}
16848 stevensc 26683
 
16825 efrain 26684
.dropify-wrapper .dropify-message span.file-icon {
26685
  font-size: 0.875rem;
26686
  color: #7987a1;
26687
}
16848 stevensc 26688
 
16825 efrain 26689
.dropify-wrapper .dropify-message span.file-icon::before {
26690
  font-family: feather;
26691
  content: "\e8e3";
26692
  font-size: 24px;
26693
}
26694
 
26695
.dropzone {
26696
  overflow: auto;
26697
  border: 1px solid #e9ecef;
26698
  border-radius: 0.25rem;
26699
  max-height: 200px;
26700
  padding: 0;
26701
}
16848 stevensc 26702
 
16825 efrain 26703
@media (min-width: 1400px) {
26704
  .dropzone {
26705
    min-height: 200px;
26706
  }
26707
}
16848 stevensc 26708
 
16825 efrain 26709
.dropzone.dz-clickable .dz-message {
26710
  margin-top: 65px;
26711
}
16848 stevensc 26712
 
26713
.dropzone .dz-preview.dz-image-preview .dz-image,
26714
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26715
  border-radius: 0.25rem;
26716
}
26717
 
16848 stevensc 26718
.form-control.flatpickr-input,
26719
.flatpickr-input.typeahead.tt-input,
26720
.flatpickr-input.typeahead.tt-hint,
26721
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26722
  background-color: #fff;
26723
}
26724
 
26725
.flatpickr-day.selected,
26726
.flatpickr-day.startRange,
26727
.flatpickr-day.endRange,
26728
.flatpickr-day.selected.inRange,
26729
.flatpickr-day.startRange.inRange,
26730
.flatpickr-day.endRange.inRange,
26731
.flatpickr-day.selected:focus,
26732
.flatpickr-day.startRange:focus,
26733
.flatpickr-day.endRange:focus,
26734
.flatpickr-day.selected:hover,
26735
.flatpickr-day.startRange:hover,
26736
.flatpickr-day.endRange:hover,
26737
.flatpickr-day.selected.prevMonthDay,
26738
.flatpickr-day.startRange.prevMonthDay,
26739
.flatpickr-day.endRange.prevMonthDay,
26740
.flatpickr-day.selected.nextMonthDay,
26741
.flatpickr-day.startRange.nextMonthDay,
26742
.flatpickr-day.endRange.nextMonthDay {
26743
  background: #6571ff;
26744
  border-color: #6571ff;
26745
}
26746
 
26747
.flatpickr-months {
26748
  padding: 0 1rem;
26749
  padding-top: 0.5rem;
26750
}
26751
 
26752
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26753
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26754
  left: 11px;
26755
  right: auto !important;
26756
  top: 8px;
26757
}
26758
 
26759
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26760
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26761
  right: 11px;
26762
  left: auto !important;
26763
  top: 8px;
26764
}
26765
 
26766
.flatpickr-months .flatpickr-prev-month:hover svg,
26767
.flatpickr-months .flatpickr-next-month:hover svg {
26768
  fill: #6571ff;
26769
}
26770
 
26771
.flatpickr-months .flatpickr-month {
26772
  height: 42px;
26773
}
26774
 
26775
.flatpickr-current-month .flatpickr-monthDropdown-months {
26776
  font-size: 1rem;
26777
  border-radius: 0.25rem;
26778
  padding: 0.3rem 0.5rem;
26779
}
26780
 
26781
.flatpickr-weekdays {
26782
  padding: 0 10px;
26783
}
26784
 
26785
.dayContainer {
26786
  padding: 0 10px 10px;
26787
}
26788
 
26789
.fc {
26790
  --fc-button-active-bg-color: #6571ff;
26791
  --fc-button-active-border-color: #6571ff;
26792
}
16848 stevensc 26793
 
16825 efrain 26794
.fc .fc-button .fc-icon {
26795
  font-size: 1.2 em;
26796
}
16848 stevensc 26797
 
16825 efrain 26798
.fc .fc-button-primary:focus,
26799
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26800
.fc .fc-button-primary:not(:disabled):active:focus {
26801
  box-shadow: none;
26802
}
16848 stevensc 26803
 
16825 efrain 26804
.fc .fc-button-primary:disabled {
26805
  border-color: #6571ff;
26806
}
16848 stevensc 26807
 
16825 efrain 26808
@media (max-width: 767px) {
26809
  .fc .fc-toolbar {
26810
    flex-direction: column;
26811
  }
16848 stevensc 26812
 
16825 efrain 26813
  .fc .fc-toolbar .fc-toolbar-chunk {
26814
    margin-bottom: 12px;
26815
  }
26816
}
16848 stevensc 26817
 
16825 efrain 26818
.fc .fc-daygrid-day-number,
26819
.fc .fc-col-header-cell-cushion {
26820
  color: #000;
26821
}
16848 stevensc 26822
 
16825 efrain 26823
.fc .fc-daygrid-event {
26824
  padding: 4px;
26825
}
16848 stevensc 26826
 
16825 efrain 26827
.fc .fc-daygrid-day.fc-day-today {
26828
  background-color: rgba(101, 113, 255, 0.2);
26829
}
16848 stevensc 26830
 
16825 efrain 26831
.fc .fc-list-event:hover td {
26832
  background-color: rgba(101, 113, 255, 0.2);
26833
}
16848 stevensc 26834
 
16825 efrain 26835
.fc .fc-list-day-text,
26836
.fc .fc-list-day-side-text {
26837
  color: #000;
26838
}
26839
 
26840
.fc-theme-standard td,
26841
.fc-theme-standard th,
26842
.fc-theme-standard .fc-scrollgrid {
26843
  border-color: #e9ecef;
26844
}
26845
 
26846
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26847
.fc-timegrid-event.fc-event-mirror,
26848
.fc-timegrid-more-link {
26849
  box-shadow: none;
26850
}
26851
 
26852
.fc-theme-standard .fc-popover {
26853
  background-color: #fff;
26854
  border-color: #f2f4f9;
26855
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26856
}
16848 stevensc 26857
 
16825 efrain 26858
.fc-theme-standard .fc-popover .fc-popover-header {
26859
  background-color: #7987a1;
26860
}
26861
 
26862
.fc-theme-standard .fc-list-day-cushion {
26863
  background-color: #fff;
26864
}
26865
 
26866
.fc-theme-standard .fc-list {
26867
  border-color: #e9ecef;
26868
}
26869
 
26870
.fc-event {
26871
  margin-bottom: 10px;
26872
  padding: 8px;
26873
  border-radius: 2px;
26874
  background: rgba(101, 113, 255, 0.2);
26875
  border: 0;
26876
  border-left: 3px solid #6571ff;
26877
  color: #000;
26878
  font-weight: 500;
26879
}
26880
 
26881
.fc-h-event .fc-event-main {
26882
  color: #000;
26883
}
26884
 
26885
.flot-chart-wrapper .flot-chart {
26886
  width: 100%;
26887
  position: relative;
26888
  max-width: none;
26889
  height: 400px;
26890
}
16848 stevensc 26891
 
16825 efrain 26892
@media (max-width: 767px) {
26893
  .flot-chart-wrapper {
26894
    height: 200px;
26895
    min-height: 200px;
26896
  }
16848 stevensc 26897
 
16825 efrain 26898
  .flot-chart-wrapper .flot-chart {
26899
    height: 100%;
26900
  }
26901
}
26902
 
16848 stevensc 26903
.flot-text .flot-x-axis>div,
16825 efrain 26904
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26905
.flot-text .flot-y-axis>div,
16825 efrain 26906
.flot-text .flot-y-axis .flot-tick-label {
26907
  color: #000;
26908
}
26909
 
26910
.peity-custom svg {
26911
  margin-right: 10px;
26912
}
26913
 
26914
.ps__thumb-x {
26915
  background-color: #d9d9d9;
26916
  height: 4px;
26917
}
26918
 
26919
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26920
.ps__rail-x:focus>.ps__thumb-x,
26921
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26922
  background-color: #b3b3b3;
26923
  height: 6px;
26924
}
26925
 
26926
.ps__rail-x {
26927
  height: 10px;
26928
}
26929
 
26930
.ps__thumb-y {
26931
  background-color: #d9d9d9;
26932
  width: 4px;
26933
  /*rtl:raw:
26934
   left: 2px !important;
26935
  right: auto !important;
26936
   */
26937
}
26938
 
26939
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26940
.ps__rail-y:focus>.ps__thumb-y,
26941
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26942
  background-color: #b3b3b3;
26943
  width: 6px;
26944
}
26945
 
26946
.ps__rail-y {
26947
  width: 10px;
26948
  /*rtl:raw:
26949
   left: 0 !important;
26950
  right: auto !important;
26951
   */
26952
}
26953
 
26954
.ps .ps__rail-x.ps--clicking,
26955
.ps .ps__rail-x:focus,
26956
.ps .ps__rail-x:hover,
26957
.ps .ps__rail-y.ps--clicking,
26958
.ps .ps__rail-y:focus,
26959
.ps .ps__rail-y:hover {
26960
  background-color: #e9ecef;
26961
}
26962
 
26963
.swal2-popup {
26964
  font-size: 0.875rem;
26965
}
16848 stevensc 26966
 
16825 efrain 26967
.swal2-popup .swal2-title {
26968
  font-size: 25px;
26969
  line-height: 1;
26970
  font-weight: 500;
26971
  color: #000;
26972
  margin-bottom: 0;
26973
}
16848 stevensc 26974
 
16825 efrain 26975
.swal2-popup .swal2-html-container {
26976
  font-size: 0.875rem;
26977
  color: #7987a1;
26978
  font-weight: initial;
26979
  margin-top: 11px;
26980
  text-decoration: none;
26981
}
16848 stevensc 26982
 
16825 efrain 26983
.swal2-popup .swal2-actions button svg {
26984
  width: 16px;
26985
  height: 16px;
26986
}
16848 stevensc 26987
 
16825 efrain 26988
.swal2-popup .swal2-close {
26989
  font-size: 22px;
26990
}
16848 stevensc 26991
 
16825 efrain 26992
.swal2-popup .swal2-close:focus {
26993
  box-shadow: none;
26994
}
16848 stevensc 26995
 
16825 efrain 26996
.swal2-popup .swal2-timer-progress-bar {
26997
  background: #7987a1;
26998
}
26999
 
27000
.select2-container--default .select2-selection--single,
27001
.select2-container--default .select2-selection--multiple {
27002
  border: 1px solid #e9ecef;
27003
  border-radius: 0.25rem;
27004
}
16848 stevensc 27005
 
27006
.select2-container--focus.select2-container--default .select2-selection--single,
27007
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27008
  border: 1px solid #cbd1db;
27009
}
27010
 
27011
.select2-dropdown {
27012
  border: 1px solid #cbd1db;
27013
  border-radius: 0.25rem;
27014
}
27015
 
27016
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27017
  background-color: #6571ff;
27018
}
27019
 
27020
.select2-container .select2-selection--single,
27021
.select2-container .select2-selection--multiple {
27022
  height: auto;
27023
}
27024
 
27025
.select2-container--default .select2-selection--single .select2-selection__rendered {
27026
  line-height: 1.5;
27027
  padding: 0.469rem 0.8rem;
27028
}
16848 stevensc 27029
 
16825 efrain 27030
.select2-container--default .select2-selection--single .select2-selection__arrow {
27031
  height: 100%;
27032
}
16848 stevensc 27033
 
16825 efrain 27034
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27035
  left: 0;
27036
}
27037
 
27038
.select2-container--default .select2-selection--multiple {
27039
  min-height: 38px;
27040
}
16848 stevensc 27041
 
16825 efrain 27042
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27043
  padding: 0 6px;
27044
}
16848 stevensc 27045
 
16825 efrain 27046
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27047
  background-color: #6571ff;
27048
  color: #fff;
27049
  border-color: #6571ff;
27050
  padding: 1px 8px;
27051
  border-radius: 0.15rem;
27052
  margin-top: 5px;
27053
}
16848 stevensc 27054
 
16825 efrain 27055
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27056
  color: #fff;
27057
  opacity: 0.5;
27058
}
27059
 
27060
.select2-container .select2-search--inline {
27061
  margin-top: 3px;
27062
}
27063
 
27064
.EasyMDEContainer .CodeMirror {
27065
  background: #fff;
27066
  border: 1px solid #e9ecef;
27067
  color: #000;
27068
  border-bottom-left-radius: 0;
27069
  border-bottom-right-radius: 0;
27070
}
27071
 
27072
.editor-toolbar {
27073
  border: 1px solid #e9ecef;
27074
  border-bottom: 0;
27075
  border-radius: 0.25rem 0.25rem 0 0;
27076
}
16848 stevensc 27077
 
27078
.editor-toolbar,
27079
.editor-toolbar:hover {
16825 efrain 27080
  opacity: 1;
27081
}
16848 stevensc 27082
 
16825 efrain 27083
.editor-toolbar button {
27084
  color: rgba(0, 0, 0, 0.7) !important;
27085
}
16848 stevensc 27086
 
16825 efrain 27087
.editor-toolbar button:hover {
27088
  background: #e9ecef;
27089
  border: none;
27090
}
16848 stevensc 27091
 
16825 efrain 27092
.editor-toolbar i.separator {
27093
  border-left: 1px solid #e9ecef;
27094
  border-right: 1px solid #e9ecef;
27095
}
27096
 
27097
.CodeMirror-fullscreen,
27098
.editor-toolbar.fullscreen,
27099
.editor-preview-side {
27100
  z-index: 999;
27101
}
27102
 
27103
.editor-preview-side {
27104
  border-color: #e9ecef;
27105
}
27106
 
16848 stevensc 27107
.editor-toolbar button.active,
27108
.editor-toolbar button:hover {
16825 efrain 27109
  background: #e9ecef;
27110
  border-color: transparent;
27111
}
27112
 
27113
.editor-statusbar {
27114
  padding: 0 10px;
27115
  border: 1px solid #e9ecef;
27116
  border-top-color: transparent;
27117
  border-bottom-left-radius: 0.25rem;
27118
  border-bottom-right-radius: 0.25rem;
27119
}
27120
 
27121
div.tagsinput {
27122
  padding: 6px 6px 1px;
27123
  border-color: #e9ecef;
27124
  border-radius: 0.25rem;
27125
}
16848 stevensc 27126
 
16825 efrain 27127
div.tagsinput span.tag {
27128
  background: #6571ff;
27129
  color: #fff;
27130
  border: 0;
27131
  padding: 3px 7px;
27132
  font-family: inherit;
27133
  border-radius: 0.15rem;
27134
  margin-bottom: 4px;
27135
  float: left;
27136
  /*rtl:raw:
27137
  margin-left: 0;
27138
  margin-right: 5px;
27139
  */
27140
}
16848 stevensc 27141
 
16825 efrain 27142
div.tagsinput span.tag a {
27143
  font-size: 13px;
27144
  font-weight: 500;
27145
  color: #fff;
27146
  opacity: 0.5;
27147
}
16848 stevensc 27148
 
16825 efrain 27149
div.tagsinput #tags_addTag {
27150
  float: left;
27151
  /*rtl:raw:
27152
  margin-right: 5px;
27153
  */
27154
}
16848 stevensc 27155
 
16825 efrain 27156
div.tagsinput input {
27157
  margin: 0;
27158
  padding: 1px;
27159
  border-radius: 0.25rem;
27160
}
27161
 
27162
.tox.tox-tinymce {
27163
  border: 1px solid #e9ecef;
27164
  border-radius: 0.25rem;
27165
}
16848 stevensc 27166
 
16825 efrain 27167
.tox.tox-tinymce .tox-menubar,
27168
.tox.tox-tinymce .tox-toolbar-overlord,
27169
.tox.tox-tinymce .tox-toolbar,
27170
.tox.tox-tinymce .tox-toolbar__overflow,
27171
.tox.tox-tinymce .tox-toolbar__primary {
27172
  background-color: #fff;
27173
  background-image: none;
27174
  border-bottom: 1px solid #e9ecef;
27175
}
16848 stevensc 27176
 
16825 efrain 27177
.tox.tox-tinymce .tox-toolbar-overlord {
27178
  border-bottom: none;
27179
}
16848 stevensc 27180
 
16825 efrain 27181
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27182
  padding: 0;
27183
  box-shadow: none;
27184
}
16848 stevensc 27185
 
16825 efrain 27186
.tox.tox-tinymce .tox-edit-area__iframe {
27187
  background-color: #fff;
27188
}
16848 stevensc 27189
 
16825 efrain 27190
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27191
  border-right-color: #e9ecef;
27192
  border-left-color: #e9ecef;
27193
}
16848 stevensc 27194
 
16825 efrain 27195
.tox.tox-tinymce .tox-statusbar {
27196
  background-color: #fff;
27197
  border-color: #e9ecef;
27198
  color: #7987a1;
27199
}
16848 stevensc 27200
 
16825 efrain 27201
.tox.tox-tinymce .tox-statusbar a,
27202
.tox.tox-tinymce .tox-statusbar__path-item,
27203
.tox.tox-tinymce .tox-statusbar__wordcount {
27204
  color: #7987a1;
27205
}
16848 stevensc 27206
 
16825 efrain 27207
.tox.tox-tinymce .tox-mbtn {
27208
  color: #000;
27209
}
16848 stevensc 27210
 
16825 efrain 27211
.tox.tox-tinymce .tox-tbtn {
27212
  color: rgba(0, 0, 0, 0.7);
27213
}
16848 stevensc 27214
 
16825 efrain 27215
.tox.tox-tinymce .tox-tbtn:hover {
27216
  background: #e9ecef;
27217
  color: #000;
27218
}
16848 stevensc 27219
 
16825 efrain 27220
.tox.tox-tinymce .tox-tbtn:hover svg {
27221
  fill: #000;
27222
}
16848 stevensc 27223
 
16825 efrain 27224
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27225
  color: #000;
27226
}
16848 stevensc 27227
 
16825 efrain 27228
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27229
  background: #e9ecef;
27230
  color: #000;
27231
}
16848 stevensc 27232
 
16825 efrain 27233
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27234
.tox.tox-tinymce .tox-mbtn--active {
27235
  background: #e9ecef;
27236
  color: #000;
27237
}
16848 stevensc 27238
 
16825 efrain 27239
.tox.tox-tinymce .tox-tbtn svg {
27240
  fill: rgba(0, 0, 0, 0.7);
27241
}
16848 stevensc 27242
 
16825 efrain 27243
.tox.tox-tinymce .tox-tbtn--disabled svg,
27244
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27245
.tox.tox-tinymce .tox-tbtn:disabled svg,
27246
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27247
  fill: #e9ecef;
27248
}
16848 stevensc 27249
 
16825 efrain 27250
.tox.tox-tinymce .tox-split-button:hover {
27251
  box-shadow: 0 0 0 1px #e9ecef inset;
27252
}
16848 stevensc 27253
 
16825 efrain 27254
.tox.tox-tinymce .tox-split-button:focus {
27255
  background: #e9ecef;
27256
}
16848 stevensc 27257
 
16825 efrain 27258
.tox.tox-tinymce .tox-tbtn--enabled,
27259
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27260
.tox.tox-tinymce .tox-tbtn:focus {
27261
  background: #e9ecef;
27262
}
27263
 
27264
div.tox .tox-menu {
27265
  background-color: #fff;
27266
  border-color: #f2f4f9;
27267
}
16848 stevensc 27268
 
16825 efrain 27269
div.tox .tox-collection__item {
27270
  color: #000;
27271
}
16848 stevensc 27272
 
16825 efrain 27273
div.tox .tox-collection--list .tox-collection__item--enabled {
27274
  background-color: #6571ff;
27275
  color: #fff;
27276
}
16848 stevensc 27277
 
16825 efrain 27278
div.tox .tox-collection--list .tox-collection__group {
27279
  border-color: #e9ecef;
27280
}
16848 stevensc 27281
 
16825 efrain 27282
div.tox .tox-collection--toolbar .tox-collection__item--active {
27283
  background-color: #e9ecef;
27284
}
16848 stevensc 27285
 
16825 efrain 27286
div.tox .tox-collection--list .tox-collection__item--active {
27287
  background-color: #e9ecef;
27288
}
16848 stevensc 27289
 
16825 efrain 27290
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27291
  color: #000;
27292
}
16848 stevensc 27293
 
16825 efrain 27294
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27295
  color: #000;
27296
}
16848 stevensc 27297
 
16825 efrain 27298
div.tox .tox-dialog-wrap__backdrop {
27299
  background-color: rgba(0, 0, 0, 0.75);
27300
}
16848 stevensc 27301
 
16825 efrain 27302
div.tox .tox-dialog,
27303
div.tox .tox-dialog__header,
27304
div.tox .tox-dialog__footer {
27305
  background-color: #fff;
27306
  border-color: #e9ecef;
27307
  color: #000;
27308
}
16848 stevensc 27309
 
16825 efrain 27310
div.tox .tox-button--secondary:hover:not(:disabled) {
27311
  background-color: #7987a1;
27312
  border-color: #7987a1;
27313
  color: #fff;
27314
}
16848 stevensc 27315
 
16825 efrain 27316
div.tox .tox-button--naked:hover:not(:disabled) {
27317
  background-color: transparent;
27318
  border-color: transparent;
27319
}
16848 stevensc 27320
 
16825 efrain 27321
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27322
  color: #333333;
27323
}
16848 stevensc 27324
 
16825 efrain 27325
div.tox .tox-listboxfield .tox-listbox--select,
27326
div.tox .tox-textarea,
27327
div.tox .tox-textfield,
27328
div.tox .tox-toolbar-textfield {
27329
  background-color: #fff;
27330
  border-color: #e9ecef;
27331
  color: #000;
27332
}
16848 stevensc 27333
 
16825 efrain 27334
div.tox .tox-listboxfield .tox-listbox--select:focus,
27335
div.tox .tox-textarea:focus,
27336
div.tox .tox-textfield:focus {
27337
  background-color: #fff;
27338
  border-color: #cbd1db;
27339
}
16848 stevensc 27340
 
16825 efrain 27341
div.tox .tox-dialog__table tbody tr {
27342
  border-color: #e9ecef;
27343
}
16848 stevensc 27344
 
16825 efrain 27345
div.tox .tox-dialog__body {
27346
  color: #000;
27347
}
27348
 
27349
.typeahead.tt-input,
27350
.typeahead.tt-hint {
27351
  background-color: #fff !important;
27352
  /*rtl:raw:
27353
  direction: rtl;
27354
  */
27355
}
27356
 
27357
.tt-menu .tt-suggestion {
27358
  cursor: pointer;
27359
}
27360
 
16848 stevensc 27361
.tabcontrol ul,
27362
.wizard ul {
16825 efrain 27363
  display: flex;
27364
}
16848 stevensc 27365
 
16825 efrain 27366
@media (max-width: 676px) {
16848 stevensc 27367
 
27368
  .tabcontrol ul,
27369
  .wizard ul {
16825 efrain 27370
    flex-wrap: wrap;
27371
  }
27372
}
27373
 
16848 stevensc 27374
.wizard>.steps>ul>li {
16825 efrain 27375
  width: auto;
27376
  display: flex;
27377
  flex-grow: 1;
27378
}
27379
 
16848 stevensc 27380
.wizard>.steps .disabled a,
27381
.wizard>.steps .disabled a:active,
27382
.wizard>.steps .disabled a:hover {
16825 efrain 27383
  background-color: #e9ecef;
27384
  color: #000;
27385
  border: 1px solid transparent;
27386
}
27387
 
16848 stevensc 27388
.wizard>.steps .current a,
27389
.wizard>.steps .current a:active,
27390
.wizard>.steps .current a:hover {
16825 efrain 27391
  background-color: #6571ff;
27392
  border: 1px solid transparent;
27393
}
27394
 
16848 stevensc 27395
.wizard>.steps a,
27396
.wizard>.steps a:active,
27397
.wizard>.steps a:hover {
16825 efrain 27398
  padding: 0.469rem 0.8rem;
27399
  border-radius: 0.25rem;
27400
  width: 100%;
27401
}
27402
 
16848 stevensc 27403
.wizard>.steps .done a,
27404
.wizard>.steps .done a:active,
27405
.wizard>.steps .done a:hover {
16825 efrain 27406
  background-color: rgba(101, 113, 255, 0.2);
27407
  color: #6571ff;
27408
  border: 1px solid #6571ff;
27409
}
27410
 
16848 stevensc 27411
.wizard>.steps ul li a,
27412
.wizard>.steps ul li a:active,
27413
.wizard>.steps ul li a:hover {
16825 efrain 27414
  margin: 0 0.5em 0.5em 0;
27415
}
16848 stevensc 27416
 
27417
.wizard>.steps ul li:last-child a,
27418
.wizard>.steps ul li:last-child a:active,
27419
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27420
  margin: 0 0 0.5em 0;
27421
}
27422
 
16848 stevensc 27423
.wizard>.steps .number {
16825 efrain 27424
  font-size: inherit;
27425
}
27426
 
16848 stevensc 27427
.wizard>.content {
16825 efrain 27428
  background: #fff;
27429
  border: 1px solid #e9ecef;
27430
  min-height: 23em;
27431
  overflow: auto;
27432
  margin: 0.5em 0;
27433
}
27434
 
27435
@media (max-width: 767px) {
16848 stevensc 27436
  .wizard>.content>.body {
16825 efrain 27437
    width: 90%;
27438
    height: 90%;
27439
    padding: 5%;
27440
  }
27441
}
27442
 
16848 stevensc 27443
.wizard>.actions .disabled a,
27444
.wizard>.actions .disabled a:active,
27445
.wizard>.actions .disabled a:hover {
16825 efrain 27446
  background: #e9ecef;
27447
  border-color: #e9ecef;
27448
  cursor: not-allowed;
27449
  color: #aeb7c5;
27450
}
27451
 
16848 stevensc 27452
.wizard>.actions .disabled a:focus {
16825 efrain 27453
  box-shadow: none;
27454
  color: #aeb7c5;
27455
}
27456
 
16848 stevensc 27457
.wizard>.actions>ul li {
16825 efrain 27458
  margin-right: 0;
27459
  margin-left: 0.7em;
27460
}
27461
 
16848 stevensc 27462
.wizard.vertical>.steps ul {
16825 efrain 27463
  flex-direction: column;
27464
}
27465
 
16848 stevensc 27466
.wizard.vertical>.content {
16825 efrain 27467
  margin: 0 0 0.5em 2%;
27468
  width: 68%;
27469
}
27470
 
16848 stevensc 27471
.wizard.vertical>.steps a,
27472
.wizard.vertical>.steps a:active,
27473
.wizard.vertical>.steps a:hover {
16825 efrain 27474
  margin: 0 0 0.5em 0;
27475
}
27476
 
16848 stevensc 27477
.wizard.vertical>.actions {
16825 efrain 27478
  margin: 0;
27479
  width: 100%;
27480
}
27481
 
16848 stevensc 27482
.wizard.vertical>.actions>ul>li {
16825 efrain 27483
  margin: 0 0 0 0.7em;
27484
}
16848 stevensc 27485
 
27486
.pac-container {
27487
  z-index: 1200;
27488
}
27489
 
16857 stevensc 27490
.feed-section {
27491
  display: flex;
27492
  flex-direction: column;
27493
  gap: .5rem;
16858 stevensc 27494
  width: 50%;
27495
  margin: 0 auto;
16857 stevensc 27496
  box-sizing: border-box;
16865 stevensc 27497
  align-items: center;
16857 stevensc 27498
}
27499
 
16867 stevensc 27500
.theme-container {
16849 stevensc 27501
  background-color: var(--bg-color);
27502
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27503
  height: fit-content;
27504
  width: -moz-available;
27505
  width: -webkit-fill-available;
27506
  width: fill-available;
27507
  overflow: hidden;
27508
  position: relative;
16853 stevensc 27509
  border-radius: var(--border-radius);
16849 stevensc 27510
}
27511
 
16867 stevensc 27512
.theme-container span {
16849 stevensc 27513
  font-size: 0.9rem;
16853 stevensc 27514
  line-height: 1;
27515
  color: var(--subtitle-color);
27516
  font-weight: 600;
16849 stevensc 27517
}
27518
 
16867 stevensc 27519
.theme-container p {
16849 stevensc 27520
  color: var(--font-color);
27521
  font-size: 14px;
27522
  text-align: justify;
27523
  margin-bottom: 0.5rem;
27524
}
27525
 
16867 stevensc 27526
.theme-container h2 {
16849 stevensc 27527
  font-size: 1rem;
16853 stevensc 27528
  font-weight: 600;
16849 stevensc 27529
}
27530
 
16867 stevensc 27531
.theme-container input,
27532
.theme-container input:focus {
16859 stevensc 27533
  align-items: center;
27534
  color: gray;
27535
  display: flex;
27536
  min-height: 1.5rem;
27537
  gap: 5px;
27538
  width: 100%;
27539
  border: 1px solid lightgray;
27540
  background-color: rgb(255, 255, 255);
27541
  border-radius: 30px;
27542
  padding: 5px 5px 5px 1rem;
27543
}
27544
 
16849 stevensc 27545
.feed-header {
27546
  display: flex;
27547
  gap: 0.5rem;
27548
  padding: 10px 1rem;
27549
  align-items: center;
27550
  position: relative;
27551
}
27552
 
16858 stevensc 27553
.feed-header a>img {
27554
  width: 50px;
27555
  height: 50px;
27556
  border-radius: 50%;
27557
  object-fit: cover;
27558
}
27559
 
16851 stevensc 27560
.feed-info {
27561
  display: inline-flex;
16852 stevensc 27562
  flex-direction: column;
16851 stevensc 27563
  width: fit-content;
27564
}
27565
 
16852 stevensc 27566
.feed-body {
16849 stevensc 27567
  padding: 10px 1rem;
27568
  display: flex;
27569
  flex-direction: column;
27570
}
27571
 
16856 stevensc 27572
.feed-body>img,
27573
.feed-body>video {
27574
  width: 100%;
27575
  object-fit: cover;
27576
  max-height: 60vh;
27577
}
27578
 
16849 stevensc 27579
.feed-actions {
27580
  display: flex;
16851 stevensc 27581
  justify-content: flex-end;
16849 stevensc 27582
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27583
  gap: .5rem;
16849 stevensc 27584
  padding: 5px;
27585
}
27586
 
27587
.feed-actions>button {
27588
  align-items: center;
27589
  border-radius: var(--border-radius);
27590
  cursor: pointer;
27591
  display: inline-flex;
16851 stevensc 27592
  flex-direction: row;
27593
  gap: 0.5rem;
27594
  font-size: 1rem;
16849 stevensc 27595
  padding: 5px;
27596
  position: relative;
27597
}
27598
 
27599
.feed-actions>button:hover {
27600
  background-color: whitesmoke;
27601
}
27602
 
16851 stevensc 27603
.feed-actions>span,
27604
.feed-actions>svg {
27605
  color: var(--subtitle-color);
27606
  font-weight: 600;
27607
  font-size: .9rem;
27608
}
27609
 
16860 stevensc 27610
.comment-form {
27611
  display: flex;
27612
  align-items: center;
27613
  gap: 0.5rem;
27614
  width: 100%;
27615
}
27616
 
27617
.comment-list {
27618
  display: flex;
27619
  flex-direction: column;
27620
  gap: 0.5rem;
16863 stevensc 27621
  margin: 0;
16861 stevensc 27622
  list-style: none;
16863 stevensc 27623
  padding: 0.5rem;
16860 stevensc 27624
  max-height: 300px;
27625
  overflow-y: auto;
27626
  width: 100%;
27627
}
27628
 
27629
.comment-container {
27630
  background-color: var(--chat-send);
27631
  border-radius: var(--border-radius);
27632
  display: flex;
27633
  flex-direction: column;
27634
  flex-grow: 1;
27635
  gap: 0.5rem;
27636
  max-width: 100%;
27637
  overflow: hidden;
27638
  padding: 0.5rem;
27639
  position: relative;
27640
}
27641
 
16849 stevensc 27642
@media (max-width: 768px) {
16857 stevensc 27643
  .feed-section {
16858 stevensc 27644
    width: 100%;
16857 stevensc 27645
  }
27646
 
16867 stevensc 27647
  .theme-container {
16853 stevensc 27648
    border-radius: 0;
16849 stevensc 27649
  }
27650
 
16851 stevensc 27651
  .feed-actions>button {
27652
    font-size: 0.9rem;
27653
    flex-direction: column;
27654
    gap: 0;
16849 stevensc 27655
  }
27656
}
27657
 
16866 stevensc 27658
/* ============= user_profile ============= */
27659
.user_profile {
16873 stevensc 27660
  display: flex;
27661
  flex-direction: column;
16874 stevensc 27662
  gap: 0.5rem;
16878 stevensc 27663
  text-align: center;
16866 stevensc 27664
}
27665
 
16878 stevensc 27666
.social-links {
27667
  display: flex;
27668
  flex-direction: column;
16880 stevensc 27669
}
27670
 
27671
.social-links a {
27672
  display: inline-block;
16878 stevensc 27673
  white-space: nowrap;
27674
  text-overflow: ellipsis;
16880 stevensc 27675
  overflow: hidden;
16881 stevensc 27676
  text-align: start;
16878 stevensc 27677
  width: 100%;
27678
}
27679
 
16866 stevensc 27680
.user-pro-img {
16871 stevensc 27681
  height: 100px;
27682
  width: 100px;
16866 stevensc 27683
  position: relative;
16873 stevensc 27684
  border: 2px solid var(--button-bg);
27685
  margin: -50px auto 0;
16883 stevensc 27686
  border-radius: 50%;
16873 stevensc 27687
  background-color: #f5f5f5;
16866 stevensc 27688
}
27689
 
16871 stevensc 27690
.user-pro-img img {
27691
  width: 100%;
27692
  height: 100%;
27693
  object-fit: cover;
16882 stevensc 27694
  border-radius: 50%;
16871 stevensc 27695
}
27696
 
16882 stevensc 27697
.add-dp {
16866 stevensc 27698
  position: absolute;
16882 stevensc 27699
  top: -6px;
16866 stevensc 27700
  left: 60%;
16883 stevensc 27701
  width: 40px;
27702
  height: 40px;
16882 stevensc 27703
  display: grid;
16883 stevensc 27704
  cursor: pointer;
16882 stevensc 27705
  place-items: center;
27706
  border-radius: 50%;
16883 stevensc 27707
  background-color: var(--button-bg);
16882 stevensc 27708
  transition: all .2s ease-in-out;
16866 stevensc 27709
}
27710
 
27711
.add-dp i {
16882 stevensc 27712
  color: #fff;
16866 stevensc 27713
  font-size: 14px;
27714
}
27715
 
16882 stevensc 27716
.add-dp:hover {
16883 stevensc 27717
  opacity: 0.90;
16882 stevensc 27718
  transform: scale(0.9);
16866 stevensc 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
 
16874 stevensc 27769
/* ============= buttons ============= */
27770
.btn {
27771
  font-size: 0.95rem;
27772
  height: fit-content;
27773
  line-height: 1;
16886 stevensc 27774
  display: inline-flex;
27775
  gap: 5px;
16874 stevensc 27776
}
27777
 
16886 stevensc 27778
.btn i,
27779
.btn svg {
27780
  font-size: 0.95rem;
27781
}
27782
 
16874 stevensc 27783
.btn-primary {
27784
  background-color: var(--button-bg);
27785
  border-radius: var(--border-radius);
27786
  color: var(--button-text-color) !important;
27787
  border: none !important;
27788
}
27789
 
27790
.btn-primary:hover {
27791
  background-color: var(--button-bg-hover);
27792
}
27793
 
16886 stevensc 27794
.btn-secondary,
27795
.btn-edit {
27796
  background: var(--button-bg-secondary) !important;
27797
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27798
  border-radius: var(--border-radius);
27799
  color: var(--button-text-color-secondary) !important;
27800
}
27801
 
16886 stevensc 27802
.btn-secondary:hover,
27803
.btn-edit:hover {
27804
  background-color: var(--button-bg-secondary-hover) !important;
27805
  border-color: var(--border-trasnparent) !important;
16874 stevensc 27806
}
27807
 
16886 stevensc 27808
.btn-tertiary,
27809
.btn-danger {
27810
  background-color: var(--button-bg-tertiary) !important;
27811
  border-radius: var(--border-radius) !important;
27812
  border-color: #f4f4f4 !important;
16874 stevensc 27813
  color: var(--button-text-color-tertiary) !important;
27814
}
27815
 
16886 stevensc 27816
.btn-tertiary:hover,
27817
.btn-danger:hover {
27818
  background: #d4d4d4 !important;
27819
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27820
  color: var(--border-primary) !important;
27821
}
27822
 
27823
.btn-secondary:disabled,
27824
.btn-primary:disabled,
27825
.btn-tertiary:disabled {
27826
  cursor: no-drop;
27827
}
27828
 
27829
/* ============= end buttons ============= */
27830
 
16875 stevensc 27831
/* ============= profile extended ============= */
16876 stevensc 27832
.main-ws-sec {
27833
  display: flex;
27834
  flex-direction: column;
27835
  gap: 0.5rem;
27836
  width: 100%;
27837
}
27838
 
16877 stevensc 27839
.user-profile-ov {
16875 stevensc 27840
  width: 100%;
27841
  background-color: var(--bg-color);
16878 stevensc 27842
  padding: 10px;
16875 stevensc 27843
  border: 1px solid var(--border-primary);
16879 stevensc 27844
  border-radius: var(--border-radius);
16875 stevensc 27845
}
27846
 
16877 stevensc 27847
.user-profile-ov h3 {
16875 stevensc 27848
  color: var(--title-color);
27849
  font-weight: 600;
27850
}
27851
 
16877 stevensc 27852
.user-profile-ov i,
27853
user-profile-ov svg {
16875 stevensc 27854
  color: var(--icons-color);
27855
  font-size: 13px;
27856
}
27857
 
16877 stevensc 27858
.user-profile-ov strong {
16875 stevensc 27859
  font-weight: bold;
27860
}
27861
 
27862
/* ============= end profile extended ============= */
27863
 
16848 stevensc 27864
/*# sourceMappingURL=../maps/demo1/style.css.map */