Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
16825 efrain 1
@charset "UTF-8";
16848 stevensc 2
 
16825 efrain 3
/*
4
* NobleUI - HTML Bootstrap 5 Admin Dashboard Template v2.0.3 (https://nobleui.com/)
5
* Copyright © 2022 NobleUI
6
* Licensed under ThemeForest License
7
*/
8
:root {
9
  --bs-blue: #0d6efd;
10
  --bs-indigo: #6610f2;
11
  --bs-purple: #6f42c1;
12
  --bs-pink: #d63384;
13
  --bs-red: #dc3545;
14
  --bs-orange: #fd7e14;
15
  --bs-yellow: #ffc107;
16
  --bs-green: #198754;
17
  --bs-teal: #20c997;
18
  --bs-cyan: #0dcaf0;
19
  --bs-black: #000;
20
  --bs-white: #fff;
21
  --bs-gray: #7987a1;
22
  --bs-gray-dark: #212a3a;
23
  --bs-gray-100: #f8f9fa;
24
  --bs-gray-200: #e9ecef;
25
  --bs-gray-300: #dee2e6;
26
  --bs-gray-400: #cbd1db;
27
  --bs-gray-500: #aeb7c5;
28
  --bs-gray-600: #7987a1;
29
  --bs-gray-700: #41516c;
30
  --bs-gray-800: #212a3a;
31
  --bs-gray-900: #060c17;
32
  --bs-primary: #6571ff;
33
  --bs-secondary: #7987a1;
34
  --bs-success: #05a34a;
35
  --bs-info: #66d1d1;
36
  --bs-warning: #fbbc06;
37
  --bs-danger: #ff3366;
38
  --bs-light: #e9ecef;
39
  --bs-dark: #060c17;
40
  --bs-primary-rgb: 101, 113, 255;
41
  --bs-secondary-rgb: 121, 135, 161;
42
  --bs-success-rgb: 5, 163, 74;
43
  --bs-info-rgb: 102, 209, 209;
44
  --bs-warning-rgb: 251, 188, 6;
45
  --bs-danger-rgb: 255, 51, 102;
46
  --bs-light-rgb: 233, 236, 239;
47
  --bs-dark-rgb: 6, 12, 23;
48
  --bs-white-rgb: 255, 255, 255;
49
  --bs-black-rgb: 0, 0, 0;
50
  --bs-body-color-rgb: 0, 0, 0;
51
  --bs-body-bg-rgb: 249, 250, 251;
52
  --bs-font-sans-serif: "Roboto", Helvetica, sans-serif;
53
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
54
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
55
  --bs-body-font-family: var(--bs-font-sans-serif);
56
  --bs-body-font-size: 0.875rem;
57
  --bs-body-font-weight: 400;
58
  --bs-body-line-height: 1.5;
59
  --bs-body-color: #000;
60
  --bs-body-bg: #f9fafb;
61
  --bs-border-width: 1px;
62
  --bs-border-style: solid;
63
  --bs-border-color: #e9ecef;
64
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
65
  --bs-border-radius: 0.25rem;
66
  --bs-border-radius-sm: 0.25rem;
67
  --bs-border-radius-lg: 0.5rem;
68
  --bs-border-radius-xl: 1rem;
69
  --bs-border-radius-2xl: 2rem;
70
  --bs-border-radius-pill: 50rem;
71
  --bs-link-color: #6571ff;
72
  --bs-link-hover-color: #515acc;
73
  --bs-code-color: #d63384;
74
  --bs-highlight-bg: #fff3cd;
75
}
76
 
77
*,
78
*::before,
79
*::after {
80
  box-sizing: border-box;
81
}
82
 
83
@media (prefers-reduced-motion: no-preference) {
84
  :root {
85
    scroll-behavior: smooth;
86
  }
87
}
88
 
89
body {
90
  margin: 0;
91
  font-family: var(--bs-body-font-family);
92
  font-size: var(--bs-body-font-size);
93
  font-weight: var(--bs-body-font-weight);
94
  line-height: var(--bs-body-line-height);
95
  color: var(--bs-body-color);
96
  text-align: var(--bs-body-text-align);
97
  background-color: var(--bs-body-bg);
98
  -webkit-text-size-adjust: 100%;
99
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
100
}
101
 
102
hr {
103
  margin: 1rem 0;
104
  color: inherit;
105
  border: 0;
106
  border-top: 1px solid;
107
  opacity: 0.1;
108
}
109
 
16848 stevensc 110
h6,
111
.h6,
112
h5,
113
.h5,
114
h4,
115
.h4,
116
h3,
117
.h3,
118
h2,
119
.h2,
120
h1,
121
.h1 {
16825 efrain 122
  margin-top: 0;
123
  margin-bottom: 0;
124
  font-weight: 500;
125
  line-height: 1.2;
126
}
127
 
16848 stevensc 128
h1,
129
.h1 {
16825 efrain 130
  font-size: calc(1.375rem + 1.5vw);
131
}
16848 stevensc 132
 
16825 efrain 133
@media (min-width: 1200px) {
16848 stevensc 134
 
135
  h1,
136
  .h1 {
16825 efrain 137
    font-size: 2.5rem;
138
  }
139
}
140
 
16848 stevensc 141
h2,
142
.h2 {
16825 efrain 143
  font-size: calc(1.325rem + 0.9vw);
144
}
16848 stevensc 145
 
16825 efrain 146
@media (min-width: 1200px) {
16848 stevensc 147
 
148
  h2,
149
  .h2 {
16825 efrain 150
    font-size: 2rem;
151
  }
152
}
153
 
16848 stevensc 154
h3,
155
.h3 {
16825 efrain 156
  font-size: calc(1.275rem + 0.3vw);
157
}
16848 stevensc 158
 
16825 efrain 159
@media (min-width: 1200px) {
16848 stevensc 160
 
161
  h3,
162
  .h3 {
16825 efrain 163
    font-size: 1.5rem;
164
  }
165
}
166
 
16848 stevensc 167
h4,
168
.h4 {
16825 efrain 169
  font-size: 1.25rem;
170
}
171
 
16848 stevensc 172
h5,
173
.h5 {
16825 efrain 174
  font-size: 1rem;
175
}
176
 
16848 stevensc 177
h6,
178
.h6 {
16825 efrain 179
  font-size: 0.875rem;
180
}
181
 
182
p {
183
  margin-top: 0;
184
  margin-bottom: 0;
185
}
186
 
187
abbr[title] {
188
  text-decoration: underline dotted;
189
  cursor: help;
190
  text-decoration-skip-ink: none;
191
}
192
 
193
address {
194
  margin-bottom: 1rem;
195
  font-style: normal;
196
  line-height: inherit;
197
}
198
 
199
ol,
200
ul {
201
  padding-left: 2rem;
202
}
203
 
204
ol,
205
ul,
206
dl {
207
  margin-top: 0;
208
  margin-bottom: 1rem;
209
}
210
 
211
ol ol,
212
ul ul,
213
ol ul,
214
ul ol {
215
  margin-bottom: 0;
216
}
217
 
218
dt {
219
  font-weight: 500;
220
}
221
 
222
dd {
223
  margin-bottom: 0.5rem;
224
  margin-left: 0;
225
}
226
 
227
blockquote {
228
  margin: 0 0 1rem;
229
}
230
 
231
b,
232
strong {
233
  font-weight: 700;
234
}
235
 
16848 stevensc 236
small,
237
.small {
16825 efrain 238
  font-size: 0.875em;
239
}
240
 
16848 stevensc 241
mark,
242
.mark {
16825 efrain 243
  padding: 0.1875em;
244
  background-color: var(--bs-highlight-bg);
245
}
246
 
247
sub,
248
sup {
249
  position: relative;
250
  font-size: 0.75em;
251
  line-height: 0;
252
  vertical-align: baseline;
253
}
254
 
255
sub {
256
  bottom: -0.25em;
257
}
258
 
259
sup {
260
  top: -0.5em;
261
}
262
 
263
a {
264
  color: var(--bs-link-color);
265
  text-decoration: none;
266
}
16848 stevensc 267
 
16825 efrain 268
a:hover {
269
  color: var(--bs-link-hover-color);
270
}
271
 
16848 stevensc 272
a:not([href]):not([class]),
273
a:not([href]):not([class]):hover {
16825 efrain 274
  color: inherit;
275
  text-decoration: none;
276
}
277
 
278
pre,
279
code,
280
kbd,
281
samp {
282
  font-family: var(--bs-font-monospace);
283
  font-size: 1em;
284
}
285
 
286
pre {
287
  display: block;
288
  margin-top: 0;
289
  margin-bottom: 1rem;
290
  overflow: auto;
291
  font-size: 0.875em;
292
}
16848 stevensc 293
 
16825 efrain 294
pre code {
295
  font-size: inherit;
296
  color: inherit;
297
  word-break: normal;
298
}
299
 
300
code {
301
  font-size: 0.875em;
302
  color: var(--bs-code-color);
303
  word-wrap: break-word;
304
}
16848 stevensc 305
 
306
a>code {
16825 efrain 307
  color: inherit;
308
}
309
 
310
kbd {
311
  padding: 0.1875rem 0.375rem;
312
  font-size: 0.875em;
313
  color: var(--bs-body-bg);
314
  background-color: var(--bs-body-color);
315
  border-radius: 0.25rem;
316
}
16848 stevensc 317
 
16825 efrain 318
kbd kbd {
319
  padding: 0;
320
  font-size: 1em;
321
}
322
 
323
figure {
324
  margin: 0 0 1rem;
325
}
326
 
327
img,
328
svg {
329
  vertical-align: middle;
330
}
331
 
332
table {
333
  caption-side: bottom;
334
  border-collapse: collapse;
335
}
336
 
337
caption {
338
  padding-top: 0.85rem;
339
  padding-bottom: 0.85rem;
340
  color: #7987a1;
341
  text-align: left;
342
}
343
 
344
th {
345
  text-align: inherit;
346
  text-align: -webkit-match-parent;
347
}
348
 
349
thead,
350
tbody,
351
tfoot,
352
tr,
353
td,
354
th {
355
  border-color: inherit;
356
  border-style: solid;
357
  border-width: 0;
358
}
359
 
360
label {
361
  display: inline-block;
362
}
363
 
364
button {
365
  border-radius: 0;
366
}
367
 
368
button:focus:not(:focus-visible) {
369
  outline: 0;
370
}
371
 
372
input,
373
button,
374
select,
375
optgroup,
376
textarea {
377
  margin: 0;
378
  font-family: inherit;
379
  font-size: inherit;
380
  line-height: inherit;
381
}
382
 
383
button,
384
select {
385
  text-transform: none;
386
}
387
 
388
[role=button] {
389
  cursor: pointer;
390
}
391
 
392
select {
393
  word-wrap: normal;
394
}
16848 stevensc 395
 
16825 efrain 396
select:disabled {
397
  opacity: 1;
398
}
399
 
400
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
401
  display: none !important;
402
}
403
 
404
button,
405
[type=button],
406
[type=reset],
407
[type=submit] {
16848 stevensc 408
  appearance: button;
16825 efrain 409
}
16848 stevensc 410
 
16825 efrain 411
button:not(:disabled),
412
[type=button]:not(:disabled),
413
[type=reset]:not(:disabled),
414
[type=submit]:not(:disabled) {
415
  cursor: pointer;
416
}
417
 
418
::-moz-focus-inner {
419
  padding: 0;
420
  border-style: none;
421
}
422
 
423
textarea {
424
  resize: vertical;
425
}
426
 
427
fieldset {
428
  min-width: 0;
429
  padding: 0;
430
  margin: 0;
431
  border: 0;
432
}
433
 
434
legend {
435
  float: left;
436
  width: 100%;
437
  padding: 0;
438
  margin-bottom: 0.5rem;
439
  font-size: calc(1.275rem + 0.3vw);
440
  line-height: inherit;
441
}
16848 stevensc 442
 
16825 efrain 443
@media (min-width: 1200px) {
444
  legend {
445
    font-size: 1.5rem;
446
  }
447
}
16848 stevensc 448
 
449
legend+* {
16825 efrain 450
  clear: left;
451
}
452
 
453
::-webkit-datetime-edit-fields-wrapper,
454
::-webkit-datetime-edit-text,
455
::-webkit-datetime-edit-minute,
456
::-webkit-datetime-edit-hour-field,
457
::-webkit-datetime-edit-day-field,
458
::-webkit-datetime-edit-month-field,
459
::-webkit-datetime-edit-year-field {
460
  padding: 0;
461
}
462
 
463
::-webkit-inner-spin-button {
464
  height: auto;
465
}
466
 
467
[type=search] {
468
  outline-offset: -2px;
16848 stevensc 469
  appearance: textfield;
16825 efrain 470
}
471
 
472
/* rtl:raw:
473
[type="tel"],
474
[type="url"],
475
[type="email"],
476
[type="number"] {
477
  direction: ltr;
478
}
479
*/
480
::-webkit-search-decoration {
481
  -webkit-appearance: none;
482
}
483
 
484
::-webkit-color-swatch-wrapper {
485
  padding: 0;
486
}
487
 
488
::file-selector-button {
489
  font: inherit;
16848 stevensc 490
  appearance: button;
16825 efrain 491
}
492
 
493
output {
494
  display: inline-block;
495
}
496
 
497
iframe {
498
  border: 0;
499
}
500
 
501
summary {
502
  display: list-item;
503
  cursor: pointer;
504
}
505
 
506
progress {
507
  vertical-align: baseline;
508
}
509
 
510
[hidden] {
511
  display: none !important;
512
}
513
 
514
.lead {
515
  font-size: 1.09375rem;
516
  font-weight: 300;
517
}
518
 
519
.display-1 {
520
  font-size: calc(1.625rem + 4.5vw);
521
  font-weight: 300;
522
  line-height: 1.2;
523
}
16848 stevensc 524
 
16825 efrain 525
@media (min-width: 1200px) {
526
  .display-1 {
527
    font-size: 5rem;
528
  }
529
}
530
 
531
.display-2 {
532
  font-size: calc(1.575rem + 3.9vw);
533
  font-weight: 300;
534
  line-height: 1.2;
535
}
16848 stevensc 536
 
16825 efrain 537
@media (min-width: 1200px) {
538
  .display-2 {
539
    font-size: 4.5rem;
540
  }
541
}
542
 
543
.display-3 {
544
  font-size: calc(1.525rem + 3.3vw);
545
  font-weight: 300;
546
  line-height: 1.2;
547
}
16848 stevensc 548
 
16825 efrain 549
@media (min-width: 1200px) {
550
  .display-3 {
551
    font-size: 4rem;
552
  }
553
}
554
 
555
.display-4 {
556
  font-size: calc(1.475rem + 2.7vw);
557
  font-weight: 300;
558
  line-height: 1.2;
559
}
16848 stevensc 560
 
16825 efrain 561
@media (min-width: 1200px) {
562
  .display-4 {
563
    font-size: 3.5rem;
564
  }
565
}
566
 
567
.display-5 {
568
  font-size: calc(1.425rem + 2.1vw);
569
  font-weight: 300;
570
  line-height: 1.2;
571
}
16848 stevensc 572
 
16825 efrain 573
@media (min-width: 1200px) {
574
  .display-5 {
575
    font-size: 3rem;
576
  }
577
}
578
 
579
.display-6 {
580
  font-size: calc(1.375rem + 1.5vw);
581
  font-weight: 300;
582
  line-height: 1.2;
583
}
16848 stevensc 584
 
16825 efrain 585
@media (min-width: 1200px) {
586
  .display-6 {
587
    font-size: 2.5rem;
588
  }
589
}
590
 
591
.list-unstyled {
592
  padding-left: 0;
593
  list-style: none;
594
}
595
 
596
.list-inline {
597
  padding-left: 0;
598
  list-style: none;
599
}
600
 
601
.list-inline-item {
602
  display: inline-block;
603
}
16848 stevensc 604
 
16825 efrain 605
.list-inline-item:not(:last-child) {
606
  margin-right: 0.5rem;
607
}
608
 
609
.initialism {
610
  font-size: 0.875em;
611
  text-transform: uppercase;
612
}
613
 
614
.blockquote {
615
  margin-bottom: 1rem;
616
  font-size: 1.09375rem;
617
}
16848 stevensc 618
 
619
.blockquote> :last-child {
16825 efrain 620
  margin-bottom: 0;
621
}
622
 
623
.blockquote-footer {
624
  margin-top: -1rem;
625
  margin-bottom: 1rem;
626
  font-size: 0.875em;
627
  color: #7987a1;
628
}
16848 stevensc 629
 
16825 efrain 630
.blockquote-footer::before {
631
  content: "— ";
632
}
633
 
634
.img-fluid {
635
  max-width: 100%;
636
  height: auto;
637
}
638
 
639
.img-thumbnail {
640
  padding: 0.25rem;
641
  background-color: #f9fafb;
642
  border: 1px solid var(--bs-border-color);
643
  border-radius: 0.25rem;
644
  max-width: 100%;
645
  height: auto;
646
}
647
 
648
.figure {
649
  display: inline-block;
650
}
651
 
652
.figure-img {
653
  margin-bottom: 0.5rem;
654
  line-height: 1;
655
}
656
 
657
.figure-caption {
658
  font-size: 0.875em;
659
  color: #7987a1;
660
}
661
 
662
.container,
663
.container-fluid,
664
.container-xxl,
665
.container-xl,
666
.container-lg,
667
.container-md,
668
.container-sm {
669
  --bs-gutter-x: 1.5rem;
670
  --bs-gutter-y: 0;
671
  width: 100%;
672
  padding-right: calc(var(--bs-gutter-x) * 0.5);
673
  padding-left: calc(var(--bs-gutter-x) * 0.5);
674
  margin-right: auto;
675
  margin-left: auto;
676
}
677
 
678
@media (min-width: 576px) {
16848 stevensc 679
 
680
  .container-sm,
681
  .container {
16825 efrain 682
    max-width: 540px;
683
  }
684
}
16848 stevensc 685
 
16825 efrain 686
@media (min-width: 768px) {
16848 stevensc 687
 
688
  .container-md,
689
  .container-sm,
690
  .container {
16825 efrain 691
    max-width: 720px;
692
  }
693
}
16848 stevensc 694
 
16825 efrain 695
@media (min-width: 992px) {
16848 stevensc 696
 
697
  .container-lg,
698
  .container-md,
699
  .container-sm,
700
  .container {
16825 efrain 701
    max-width: 960px;
702
  }
703
}
16848 stevensc 704
 
16825 efrain 705
@media (min-width: 1200px) {
16848 stevensc 706
 
707
  .container-xl,
708
  .container-lg,
709
  .container-md,
710
  .container-sm,
711
  .container {
16825 efrain 712
    max-width: 1140px;
713
  }
714
}
16848 stevensc 715
 
16825 efrain 716
@media (min-width: 1400px) {
16848 stevensc 717
 
718
  .container-xxl,
719
  .container-xl,
720
  .container-lg,
721
  .container-md,
722
  .container-sm,
723
  .container {
16825 efrain 724
    max-width: 1320px;
725
  }
726
}
16848 stevensc 727
 
16825 efrain 728
.row {
729
  --bs-gutter-x: 1.5rem;
730
  --bs-gutter-y: 0;
731
  display: flex;
732
  flex-wrap: wrap;
733
  margin-top: calc(-1 * var(--bs-gutter-y));
734
  margin-right: calc(-0.5 * var(--bs-gutter-x));
735
  margin-left: calc(-0.5 * var(--bs-gutter-x));
736
}
16848 stevensc 737
 
738
.row>* {
16825 efrain 739
  flex-shrink: 0;
740
  width: 100%;
741
  max-width: 100%;
742
  padding-right: calc(var(--bs-gutter-x) * 0.5);
743
  padding-left: calc(var(--bs-gutter-x) * 0.5);
744
  margin-top: var(--bs-gutter-y);
745
}
746
 
747
.col {
748
  flex: 1 0 0%;
749
}
750
 
16848 stevensc 751
.row-cols-auto>* {
16825 efrain 752
  flex: 0 0 auto;
753
  width: auto;
754
}
755
 
16848 stevensc 756
.row-cols-1>* {
16825 efrain 757
  flex: 0 0 auto;
758
  width: 100%;
759
}
760
 
16848 stevensc 761
.row-cols-2>* {
16825 efrain 762
  flex: 0 0 auto;
763
  width: 50%;
764
}
765
 
16848 stevensc 766
.row-cols-3>* {
16825 efrain 767
  flex: 0 0 auto;
768
  width: 33.3333333333%;
769
}
770
 
16848 stevensc 771
.row-cols-4>* {
16825 efrain 772
  flex: 0 0 auto;
773
  width: 25%;
774
}
775
 
16848 stevensc 776
.row-cols-5>* {
16825 efrain 777
  flex: 0 0 auto;
778
  width: 20%;
779
}
780
 
16848 stevensc 781
.row-cols-6>* {
16825 efrain 782
  flex: 0 0 auto;
783
  width: 16.6666666667%;
784
}
785
 
786
.col-auto {
787
  flex: 0 0 auto;
788
  width: auto;
789
}
790
 
791
.col-1 {
792
  flex: 0 0 auto;
793
  width: 8.33333333%;
794
}
795
 
796
.col-2 {
797
  flex: 0 0 auto;
798
  width: 16.66666667%;
799
}
800
 
801
.col-3 {
802
  flex: 0 0 auto;
803
  width: 25%;
804
}
805
 
806
.col-4 {
807
  flex: 0 0 auto;
808
  width: 33.33333333%;
809
}
810
 
811
.col-5 {
812
  flex: 0 0 auto;
813
  width: 41.66666667%;
814
}
815
 
816
.col-6 {
817
  flex: 0 0 auto;
818
  width: 50%;
819
}
820
 
821
.col-7 {
822
  flex: 0 0 auto;
823
  width: 58.33333333%;
824
}
825
 
826
.col-8 {
827
  flex: 0 0 auto;
828
  width: 66.66666667%;
829
}
830
 
831
.col-9 {
832
  flex: 0 0 auto;
833
  width: 75%;
834
}
835
 
836
.col-10 {
837
  flex: 0 0 auto;
838
  width: 83.33333333%;
839
}
840
 
841
.col-11 {
842
  flex: 0 0 auto;
843
  width: 91.66666667%;
844
}
845
 
846
.col-12 {
847
  flex: 0 0 auto;
848
  width: 100%;
849
}
850
 
851
.offset-1 {
852
  margin-left: 8.33333333%;
853
}
854
 
855
.offset-2 {
856
  margin-left: 16.66666667%;
857
}
858
 
859
.offset-3 {
860
  margin-left: 25%;
861
}
862
 
863
.offset-4 {
864
  margin-left: 33.33333333%;
865
}
866
 
867
.offset-5 {
868
  margin-left: 41.66666667%;
869
}
870
 
871
.offset-6 {
872
  margin-left: 50%;
873
}
874
 
875
.offset-7 {
876
  margin-left: 58.33333333%;
877
}
878
 
879
.offset-8 {
880
  margin-left: 66.66666667%;
881
}
882
 
883
.offset-9 {
884
  margin-left: 75%;
885
}
886
 
887
.offset-10 {
888
  margin-left: 83.33333333%;
889
}
890
 
891
.offset-11 {
892
  margin-left: 91.66666667%;
893
}
894
 
895
.g-0,
896
.gx-0 {
897
  --bs-gutter-x: 0;
898
}
899
 
900
.g-0,
901
.gy-0 {
902
  --bs-gutter-y: 0;
903
}
904
 
905
.g-1,
906
.gx-1 {
907
  --bs-gutter-x: 0.25rem;
908
}
909
 
910
.g-1,
911
.gy-1 {
912
  --bs-gutter-y: 0.25rem;
913
}
914
 
915
.g-2,
916
.gx-2 {
917
  --bs-gutter-x: 0.5rem;
918
}
919
 
920
.g-2,
921
.gy-2 {
922
  --bs-gutter-y: 0.5rem;
923
}
924
 
925
.g-3,
926
.gx-3 {
927
  --bs-gutter-x: 1rem;
928
}
929
 
930
.g-3,
931
.gy-3 {
932
  --bs-gutter-y: 1rem;
933
}
934
 
935
.g-4,
936
.gx-4 {
937
  --bs-gutter-x: 1.5rem;
938
}
939
 
940
.g-4,
941
.gy-4 {
942
  --bs-gutter-y: 1.5rem;
943
}
944
 
945
.g-5,
946
.gx-5 {
947
  --bs-gutter-x: 3rem;
948
}
949
 
950
.g-5,
951
.gy-5 {
952
  --bs-gutter-y: 3rem;
953
}
954
 
955
.g-6,
956
.gx-6 {
957
  --bs-gutter-x: 4.5rem;
958
}
959
 
960
.g-6,
961
.gy-6 {
962
  --bs-gutter-y: 4.5rem;
963
}
964
 
965
.g-7,
966
.gx-7 {
967
  --bs-gutter-x: 6rem;
968
}
969
 
970
.g-7,
971
.gy-7 {
972
  --bs-gutter-y: 6rem;
973
}
974
 
975
@media (min-width: 576px) {
976
  .col-sm {
977
    flex: 1 0 0%;
978
  }
16848 stevensc 979
 
980
  .row-cols-sm-auto>* {
16825 efrain 981
    flex: 0 0 auto;
982
    width: auto;
983
  }
16848 stevensc 984
 
985
  .row-cols-sm-1>* {
16825 efrain 986
    flex: 0 0 auto;
987
    width: 100%;
988
  }
16848 stevensc 989
 
990
  .row-cols-sm-2>* {
16825 efrain 991
    flex: 0 0 auto;
992
    width: 50%;
993
  }
16848 stevensc 994
 
995
  .row-cols-sm-3>* {
16825 efrain 996
    flex: 0 0 auto;
997
    width: 33.3333333333%;
998
  }
16848 stevensc 999
 
1000
  .row-cols-sm-4>* {
16825 efrain 1001
    flex: 0 0 auto;
1002
    width: 25%;
1003
  }
16848 stevensc 1004
 
1005
  .row-cols-sm-5>* {
16825 efrain 1006
    flex: 0 0 auto;
1007
    width: 20%;
1008
  }
16848 stevensc 1009
 
1010
  .row-cols-sm-6>* {
16825 efrain 1011
    flex: 0 0 auto;
1012
    width: 16.6666666667%;
1013
  }
16848 stevensc 1014
 
16825 efrain 1015
  .col-sm-auto {
1016
    flex: 0 0 auto;
1017
    width: auto;
1018
  }
16848 stevensc 1019
 
16825 efrain 1020
  .col-sm-1 {
1021
    flex: 0 0 auto;
1022
    width: 8.33333333%;
1023
  }
16848 stevensc 1024
 
16825 efrain 1025
  .col-sm-2 {
1026
    flex: 0 0 auto;
1027
    width: 16.66666667%;
1028
  }
16848 stevensc 1029
 
16825 efrain 1030
  .col-sm-3 {
1031
    flex: 0 0 auto;
1032
    width: 25%;
1033
  }
16848 stevensc 1034
 
16825 efrain 1035
  .col-sm-4 {
1036
    flex: 0 0 auto;
1037
    width: 33.33333333%;
1038
  }
16848 stevensc 1039
 
16825 efrain 1040
  .col-sm-5 {
1041
    flex: 0 0 auto;
1042
    width: 41.66666667%;
1043
  }
16848 stevensc 1044
 
16825 efrain 1045
  .col-sm-6 {
1046
    flex: 0 0 auto;
1047
    width: 50%;
1048
  }
16848 stevensc 1049
 
16825 efrain 1050
  .col-sm-7 {
1051
    flex: 0 0 auto;
1052
    width: 58.33333333%;
1053
  }
16848 stevensc 1054
 
16825 efrain 1055
  .col-sm-8 {
1056
    flex: 0 0 auto;
1057
    width: 66.66666667%;
1058
  }
16848 stevensc 1059
 
16825 efrain 1060
  .col-sm-9 {
1061
    flex: 0 0 auto;
1062
    width: 75%;
1063
  }
16848 stevensc 1064
 
16825 efrain 1065
  .col-sm-10 {
1066
    flex: 0 0 auto;
1067
    width: 83.33333333%;
1068
  }
16848 stevensc 1069
 
16825 efrain 1070
  .col-sm-11 {
1071
    flex: 0 0 auto;
1072
    width: 91.66666667%;
1073
  }
16848 stevensc 1074
 
16825 efrain 1075
  .col-sm-12 {
1076
    flex: 0 0 auto;
1077
    width: 100%;
1078
  }
16848 stevensc 1079
 
16825 efrain 1080
  .offset-sm-0 {
1081
    margin-left: 0;
1082
  }
16848 stevensc 1083
 
16825 efrain 1084
  .offset-sm-1 {
1085
    margin-left: 8.33333333%;
1086
  }
16848 stevensc 1087
 
16825 efrain 1088
  .offset-sm-2 {
1089
    margin-left: 16.66666667%;
1090
  }
16848 stevensc 1091
 
16825 efrain 1092
  .offset-sm-3 {
1093
    margin-left: 25%;
1094
  }
16848 stevensc 1095
 
16825 efrain 1096
  .offset-sm-4 {
1097
    margin-left: 33.33333333%;
1098
  }
16848 stevensc 1099
 
16825 efrain 1100
  .offset-sm-5 {
1101
    margin-left: 41.66666667%;
1102
  }
16848 stevensc 1103
 
16825 efrain 1104
  .offset-sm-6 {
1105
    margin-left: 50%;
1106
  }
16848 stevensc 1107
 
16825 efrain 1108
  .offset-sm-7 {
1109
    margin-left: 58.33333333%;
1110
  }
16848 stevensc 1111
 
16825 efrain 1112
  .offset-sm-8 {
1113
    margin-left: 66.66666667%;
1114
  }
16848 stevensc 1115
 
16825 efrain 1116
  .offset-sm-9 {
1117
    margin-left: 75%;
1118
  }
16848 stevensc 1119
 
16825 efrain 1120
  .offset-sm-10 {
1121
    margin-left: 83.33333333%;
1122
  }
16848 stevensc 1123
 
16825 efrain 1124
  .offset-sm-11 {
1125
    margin-left: 91.66666667%;
1126
  }
16848 stevensc 1127
 
16825 efrain 1128
  .g-sm-0,
1129
  .gx-sm-0 {
1130
    --bs-gutter-x: 0;
1131
  }
16848 stevensc 1132
 
16825 efrain 1133
  .g-sm-0,
1134
  .gy-sm-0 {
1135
    --bs-gutter-y: 0;
1136
  }
16848 stevensc 1137
 
16825 efrain 1138
  .g-sm-1,
1139
  .gx-sm-1 {
1140
    --bs-gutter-x: 0.25rem;
1141
  }
16848 stevensc 1142
 
16825 efrain 1143
  .g-sm-1,
1144
  .gy-sm-1 {
1145
    --bs-gutter-y: 0.25rem;
1146
  }
16848 stevensc 1147
 
16825 efrain 1148
  .g-sm-2,
1149
  .gx-sm-2 {
1150
    --bs-gutter-x: 0.5rem;
1151
  }
16848 stevensc 1152
 
16825 efrain 1153
  .g-sm-2,
1154
  .gy-sm-2 {
1155
    --bs-gutter-y: 0.5rem;
1156
  }
16848 stevensc 1157
 
16825 efrain 1158
  .g-sm-3,
1159
  .gx-sm-3 {
1160
    --bs-gutter-x: 1rem;
1161
  }
16848 stevensc 1162
 
16825 efrain 1163
  .g-sm-3,
1164
  .gy-sm-3 {
1165
    --bs-gutter-y: 1rem;
1166
  }
16848 stevensc 1167
 
16825 efrain 1168
  .g-sm-4,
1169
  .gx-sm-4 {
1170
    --bs-gutter-x: 1.5rem;
1171
  }
16848 stevensc 1172
 
16825 efrain 1173
  .g-sm-4,
1174
  .gy-sm-4 {
1175
    --bs-gutter-y: 1.5rem;
1176
  }
16848 stevensc 1177
 
16825 efrain 1178
  .g-sm-5,
1179
  .gx-sm-5 {
1180
    --bs-gutter-x: 3rem;
1181
  }
16848 stevensc 1182
 
16825 efrain 1183
  .g-sm-5,
1184
  .gy-sm-5 {
1185
    --bs-gutter-y: 3rem;
1186
  }
16848 stevensc 1187
 
16825 efrain 1188
  .g-sm-6,
1189
  .gx-sm-6 {
1190
    --bs-gutter-x: 4.5rem;
1191
  }
16848 stevensc 1192
 
16825 efrain 1193
  .g-sm-6,
1194
  .gy-sm-6 {
1195
    --bs-gutter-y: 4.5rem;
1196
  }
16848 stevensc 1197
 
16825 efrain 1198
  .g-sm-7,
1199
  .gx-sm-7 {
1200
    --bs-gutter-x: 6rem;
1201
  }
16848 stevensc 1202
 
16825 efrain 1203
  .g-sm-7,
1204
  .gy-sm-7 {
1205
    --bs-gutter-y: 6rem;
1206
  }
1207
}
16848 stevensc 1208
 
16825 efrain 1209
@media (min-width: 768px) {
1210
  .col-md {
1211
    flex: 1 0 0%;
1212
  }
16848 stevensc 1213
 
1214
  .row-cols-md-auto>* {
16825 efrain 1215
    flex: 0 0 auto;
1216
    width: auto;
1217
  }
16848 stevensc 1218
 
1219
  .row-cols-md-1>* {
16825 efrain 1220
    flex: 0 0 auto;
1221
    width: 100%;
1222
  }
16848 stevensc 1223
 
1224
  .row-cols-md-2>* {
16825 efrain 1225
    flex: 0 0 auto;
1226
    width: 50%;
1227
  }
16848 stevensc 1228
 
1229
  .row-cols-md-3>* {
16825 efrain 1230
    flex: 0 0 auto;
1231
    width: 33.3333333333%;
1232
  }
16848 stevensc 1233
 
1234
  .row-cols-md-4>* {
16825 efrain 1235
    flex: 0 0 auto;
1236
    width: 25%;
1237
  }
16848 stevensc 1238
 
1239
  .row-cols-md-5>* {
16825 efrain 1240
    flex: 0 0 auto;
1241
    width: 20%;
1242
  }
16848 stevensc 1243
 
1244
  .row-cols-md-6>* {
16825 efrain 1245
    flex: 0 0 auto;
1246
    width: 16.6666666667%;
1247
  }
16848 stevensc 1248
 
16825 efrain 1249
  .col-md-auto {
1250
    flex: 0 0 auto;
1251
    width: auto;
1252
  }
16848 stevensc 1253
 
16825 efrain 1254
  .col-md-1 {
1255
    flex: 0 0 auto;
1256
    width: 8.33333333%;
1257
  }
16848 stevensc 1258
 
16825 efrain 1259
  .col-md-2 {
1260
    flex: 0 0 auto;
1261
    width: 16.66666667%;
1262
  }
16848 stevensc 1263
 
16825 efrain 1264
  .col-md-3 {
1265
    flex: 0 0 auto;
1266
    width: 25%;
1267
  }
16848 stevensc 1268
 
16825 efrain 1269
  .col-md-4 {
1270
    flex: 0 0 auto;
1271
    width: 33.33333333%;
1272
  }
16848 stevensc 1273
 
16825 efrain 1274
  .col-md-5 {
1275
    flex: 0 0 auto;
1276
    width: 41.66666667%;
1277
  }
16848 stevensc 1278
 
16825 efrain 1279
  .col-md-6 {
1280
    flex: 0 0 auto;
1281
    width: 50%;
1282
  }
16848 stevensc 1283
 
16825 efrain 1284
  .col-md-7 {
1285
    flex: 0 0 auto;
1286
    width: 58.33333333%;
1287
  }
16848 stevensc 1288
 
16825 efrain 1289
  .col-md-8 {
1290
    flex: 0 0 auto;
1291
    width: 66.66666667%;
1292
  }
16848 stevensc 1293
 
16825 efrain 1294
  .col-md-9 {
1295
    flex: 0 0 auto;
1296
    width: 75%;
1297
  }
16848 stevensc 1298
 
16825 efrain 1299
  .col-md-10 {
1300
    flex: 0 0 auto;
1301
    width: 83.33333333%;
1302
  }
16848 stevensc 1303
 
16825 efrain 1304
  .col-md-11 {
1305
    flex: 0 0 auto;
1306
    width: 91.66666667%;
1307
  }
16848 stevensc 1308
 
16825 efrain 1309
  .col-md-12 {
1310
    flex: 0 0 auto;
1311
    width: 100%;
1312
  }
16848 stevensc 1313
 
16825 efrain 1314
  .offset-md-0 {
1315
    margin-left: 0;
1316
  }
16848 stevensc 1317
 
16825 efrain 1318
  .offset-md-1 {
1319
    margin-left: 8.33333333%;
1320
  }
16848 stevensc 1321
 
16825 efrain 1322
  .offset-md-2 {
1323
    margin-left: 16.66666667%;
1324
  }
16848 stevensc 1325
 
16825 efrain 1326
  .offset-md-3 {
1327
    margin-left: 25%;
1328
  }
16848 stevensc 1329
 
16825 efrain 1330
  .offset-md-4 {
1331
    margin-left: 33.33333333%;
1332
  }
16848 stevensc 1333
 
16825 efrain 1334
  .offset-md-5 {
1335
    margin-left: 41.66666667%;
1336
  }
16848 stevensc 1337
 
16825 efrain 1338
  .offset-md-6 {
1339
    margin-left: 50%;
1340
  }
16848 stevensc 1341
 
16825 efrain 1342
  .offset-md-7 {
1343
    margin-left: 58.33333333%;
1344
  }
16848 stevensc 1345
 
16825 efrain 1346
  .offset-md-8 {
1347
    margin-left: 66.66666667%;
1348
  }
16848 stevensc 1349
 
16825 efrain 1350
  .offset-md-9 {
1351
    margin-left: 75%;
1352
  }
16848 stevensc 1353
 
16825 efrain 1354
  .offset-md-10 {
1355
    margin-left: 83.33333333%;
1356
  }
16848 stevensc 1357
 
16825 efrain 1358
  .offset-md-11 {
1359
    margin-left: 91.66666667%;
1360
  }
16848 stevensc 1361
 
16825 efrain 1362
  .g-md-0,
1363
  .gx-md-0 {
1364
    --bs-gutter-x: 0;
1365
  }
16848 stevensc 1366
 
16825 efrain 1367
  .g-md-0,
1368
  .gy-md-0 {
1369
    --bs-gutter-y: 0;
1370
  }
16848 stevensc 1371
 
16825 efrain 1372
  .g-md-1,
1373
  .gx-md-1 {
1374
    --bs-gutter-x: 0.25rem;
1375
  }
16848 stevensc 1376
 
16825 efrain 1377
  .g-md-1,
1378
  .gy-md-1 {
1379
    --bs-gutter-y: 0.25rem;
1380
  }
16848 stevensc 1381
 
16825 efrain 1382
  .g-md-2,
1383
  .gx-md-2 {
1384
    --bs-gutter-x: 0.5rem;
1385
  }
16848 stevensc 1386
 
16825 efrain 1387
  .g-md-2,
1388
  .gy-md-2 {
1389
    --bs-gutter-y: 0.5rem;
1390
  }
16848 stevensc 1391
 
16825 efrain 1392
  .g-md-3,
1393
  .gx-md-3 {
1394
    --bs-gutter-x: 1rem;
1395
  }
16848 stevensc 1396
 
16825 efrain 1397
  .g-md-3,
1398
  .gy-md-3 {
1399
    --bs-gutter-y: 1rem;
1400
  }
16848 stevensc 1401
 
16825 efrain 1402
  .g-md-4,
1403
  .gx-md-4 {
1404
    --bs-gutter-x: 1.5rem;
1405
  }
16848 stevensc 1406
 
16825 efrain 1407
  .g-md-4,
1408
  .gy-md-4 {
1409
    --bs-gutter-y: 1.5rem;
1410
  }
16848 stevensc 1411
 
16825 efrain 1412
  .g-md-5,
1413
  .gx-md-5 {
1414
    --bs-gutter-x: 3rem;
1415
  }
16848 stevensc 1416
 
16825 efrain 1417
  .g-md-5,
1418
  .gy-md-5 {
1419
    --bs-gutter-y: 3rem;
1420
  }
16848 stevensc 1421
 
16825 efrain 1422
  .g-md-6,
1423
  .gx-md-6 {
1424
    --bs-gutter-x: 4.5rem;
1425
  }
16848 stevensc 1426
 
16825 efrain 1427
  .g-md-6,
1428
  .gy-md-6 {
1429
    --bs-gutter-y: 4.5rem;
1430
  }
16848 stevensc 1431
 
16825 efrain 1432
  .g-md-7,
1433
  .gx-md-7 {
1434
    --bs-gutter-x: 6rem;
1435
  }
16848 stevensc 1436
 
16825 efrain 1437
  .g-md-7,
1438
  .gy-md-7 {
1439
    --bs-gutter-y: 6rem;
1440
  }
1441
}
16848 stevensc 1442
 
16825 efrain 1443
@media (min-width: 992px) {
1444
  .col-lg {
1445
    flex: 1 0 0%;
1446
  }
16848 stevensc 1447
 
1448
  .row-cols-lg-auto>* {
16825 efrain 1449
    flex: 0 0 auto;
1450
    width: auto;
1451
  }
16848 stevensc 1452
 
1453
  .row-cols-lg-1>* {
16825 efrain 1454
    flex: 0 0 auto;
1455
    width: 100%;
1456
  }
16848 stevensc 1457
 
1458
  .row-cols-lg-2>* {
16825 efrain 1459
    flex: 0 0 auto;
1460
    width: 50%;
1461
  }
16848 stevensc 1462
 
1463
  .row-cols-lg-3>* {
16825 efrain 1464
    flex: 0 0 auto;
1465
    width: 33.3333333333%;
1466
  }
16848 stevensc 1467
 
1468
  .row-cols-lg-4>* {
16825 efrain 1469
    flex: 0 0 auto;
1470
    width: 25%;
1471
  }
16848 stevensc 1472
 
1473
  .row-cols-lg-5>* {
16825 efrain 1474
    flex: 0 0 auto;
1475
    width: 20%;
1476
  }
16848 stevensc 1477
 
1478
  .row-cols-lg-6>* {
16825 efrain 1479
    flex: 0 0 auto;
1480
    width: 16.6666666667%;
1481
  }
16848 stevensc 1482
 
16825 efrain 1483
  .col-lg-auto {
1484
    flex: 0 0 auto;
1485
    width: auto;
1486
  }
16848 stevensc 1487
 
16825 efrain 1488
  .col-lg-1 {
1489
    flex: 0 0 auto;
1490
    width: 8.33333333%;
1491
  }
16848 stevensc 1492
 
16825 efrain 1493
  .col-lg-2 {
1494
    flex: 0 0 auto;
1495
    width: 16.66666667%;
1496
  }
16848 stevensc 1497
 
16825 efrain 1498
  .col-lg-3 {
1499
    flex: 0 0 auto;
1500
    width: 25%;
1501
  }
16848 stevensc 1502
 
16825 efrain 1503
  .col-lg-4 {
1504
    flex: 0 0 auto;
1505
    width: 33.33333333%;
1506
  }
16848 stevensc 1507
 
16825 efrain 1508
  .col-lg-5 {
1509
    flex: 0 0 auto;
1510
    width: 41.66666667%;
1511
  }
16848 stevensc 1512
 
16825 efrain 1513
  .col-lg-6 {
1514
    flex: 0 0 auto;
1515
    width: 50%;
1516
  }
16848 stevensc 1517
 
16825 efrain 1518
  .col-lg-7 {
1519
    flex: 0 0 auto;
1520
    width: 58.33333333%;
1521
  }
16848 stevensc 1522
 
16825 efrain 1523
  .col-lg-8 {
1524
    flex: 0 0 auto;
1525
    width: 66.66666667%;
1526
  }
16848 stevensc 1527
 
16825 efrain 1528
  .col-lg-9 {
1529
    flex: 0 0 auto;
1530
    width: 75%;
1531
  }
16848 stevensc 1532
 
16825 efrain 1533
  .col-lg-10 {
1534
    flex: 0 0 auto;
1535
    width: 83.33333333%;
1536
  }
16848 stevensc 1537
 
16825 efrain 1538
  .col-lg-11 {
1539
    flex: 0 0 auto;
1540
    width: 91.66666667%;
1541
  }
16848 stevensc 1542
 
16825 efrain 1543
  .col-lg-12 {
1544
    flex: 0 0 auto;
1545
    width: 100%;
1546
  }
16848 stevensc 1547
 
16825 efrain 1548
  .offset-lg-0 {
1549
    margin-left: 0;
1550
  }
16848 stevensc 1551
 
16825 efrain 1552
  .offset-lg-1 {
1553
    margin-left: 8.33333333%;
1554
  }
16848 stevensc 1555
 
16825 efrain 1556
  .offset-lg-2 {
1557
    margin-left: 16.66666667%;
1558
  }
16848 stevensc 1559
 
16825 efrain 1560
  .offset-lg-3 {
1561
    margin-left: 25%;
1562
  }
16848 stevensc 1563
 
16825 efrain 1564
  .offset-lg-4 {
1565
    margin-left: 33.33333333%;
1566
  }
16848 stevensc 1567
 
16825 efrain 1568
  .offset-lg-5 {
1569
    margin-left: 41.66666667%;
1570
  }
16848 stevensc 1571
 
16825 efrain 1572
  .offset-lg-6 {
1573
    margin-left: 50%;
1574
  }
16848 stevensc 1575
 
16825 efrain 1576
  .offset-lg-7 {
1577
    margin-left: 58.33333333%;
1578
  }
16848 stevensc 1579
 
16825 efrain 1580
  .offset-lg-8 {
1581
    margin-left: 66.66666667%;
1582
  }
16848 stevensc 1583
 
16825 efrain 1584
  .offset-lg-9 {
1585
    margin-left: 75%;
1586
  }
16848 stevensc 1587
 
16825 efrain 1588
  .offset-lg-10 {
1589
    margin-left: 83.33333333%;
1590
  }
16848 stevensc 1591
 
16825 efrain 1592
  .offset-lg-11 {
1593
    margin-left: 91.66666667%;
1594
  }
16848 stevensc 1595
 
16825 efrain 1596
  .g-lg-0,
1597
  .gx-lg-0 {
1598
    --bs-gutter-x: 0;
1599
  }
16848 stevensc 1600
 
16825 efrain 1601
  .g-lg-0,
1602
  .gy-lg-0 {
1603
    --bs-gutter-y: 0;
1604
  }
16848 stevensc 1605
 
16825 efrain 1606
  .g-lg-1,
1607
  .gx-lg-1 {
1608
    --bs-gutter-x: 0.25rem;
1609
  }
16848 stevensc 1610
 
16825 efrain 1611
  .g-lg-1,
1612
  .gy-lg-1 {
1613
    --bs-gutter-y: 0.25rem;
1614
  }
16848 stevensc 1615
 
16825 efrain 1616
  .g-lg-2,
1617
  .gx-lg-2 {
1618
    --bs-gutter-x: 0.5rem;
1619
  }
16848 stevensc 1620
 
16825 efrain 1621
  .g-lg-2,
1622
  .gy-lg-2 {
1623
    --bs-gutter-y: 0.5rem;
1624
  }
16848 stevensc 1625
 
16825 efrain 1626
  .g-lg-3,
1627
  .gx-lg-3 {
1628
    --bs-gutter-x: 1rem;
1629
  }
16848 stevensc 1630
 
16825 efrain 1631
  .g-lg-3,
1632
  .gy-lg-3 {
1633
    --bs-gutter-y: 1rem;
1634
  }
16848 stevensc 1635
 
16825 efrain 1636
  .g-lg-4,
1637
  .gx-lg-4 {
1638
    --bs-gutter-x: 1.5rem;
1639
  }
16848 stevensc 1640
 
16825 efrain 1641
  .g-lg-4,
1642
  .gy-lg-4 {
1643
    --bs-gutter-y: 1.5rem;
1644
  }
16848 stevensc 1645
 
16825 efrain 1646
  .g-lg-5,
1647
  .gx-lg-5 {
1648
    --bs-gutter-x: 3rem;
1649
  }
16848 stevensc 1650
 
16825 efrain 1651
  .g-lg-5,
1652
  .gy-lg-5 {
1653
    --bs-gutter-y: 3rem;
1654
  }
16848 stevensc 1655
 
16825 efrain 1656
  .g-lg-6,
1657
  .gx-lg-6 {
1658
    --bs-gutter-x: 4.5rem;
1659
  }
16848 stevensc 1660
 
16825 efrain 1661
  .g-lg-6,
1662
  .gy-lg-6 {
1663
    --bs-gutter-y: 4.5rem;
1664
  }
16848 stevensc 1665
 
16825 efrain 1666
  .g-lg-7,
1667
  .gx-lg-7 {
1668
    --bs-gutter-x: 6rem;
1669
  }
16848 stevensc 1670
 
16825 efrain 1671
  .g-lg-7,
1672
  .gy-lg-7 {
1673
    --bs-gutter-y: 6rem;
1674
  }
1675
}
16848 stevensc 1676
 
16825 efrain 1677
@media (min-width: 1200px) {
1678
  .col-xl {
1679
    flex: 1 0 0%;
1680
  }
16848 stevensc 1681
 
1682
  .row-cols-xl-auto>* {
16825 efrain 1683
    flex: 0 0 auto;
1684
    width: auto;
1685
  }
16848 stevensc 1686
 
1687
  .row-cols-xl-1>* {
16825 efrain 1688
    flex: 0 0 auto;
1689
    width: 100%;
1690
  }
16848 stevensc 1691
 
1692
  .row-cols-xl-2>* {
16825 efrain 1693
    flex: 0 0 auto;
1694
    width: 50%;
1695
  }
16848 stevensc 1696
 
1697
  .row-cols-xl-3>* {
16825 efrain 1698
    flex: 0 0 auto;
1699
    width: 33.3333333333%;
1700
  }
16848 stevensc 1701
 
1702
  .row-cols-xl-4>* {
16825 efrain 1703
    flex: 0 0 auto;
1704
    width: 25%;
1705
  }
16848 stevensc 1706
 
1707
  .row-cols-xl-5>* {
16825 efrain 1708
    flex: 0 0 auto;
1709
    width: 20%;
1710
  }
16848 stevensc 1711
 
1712
  .row-cols-xl-6>* {
16825 efrain 1713
    flex: 0 0 auto;
1714
    width: 16.6666666667%;
1715
  }
16848 stevensc 1716
 
16825 efrain 1717
  .col-xl-auto {
1718
    flex: 0 0 auto;
1719
    width: auto;
1720
  }
16848 stevensc 1721
 
16825 efrain 1722
  .col-xl-1 {
1723
    flex: 0 0 auto;
1724
    width: 8.33333333%;
1725
  }
16848 stevensc 1726
 
16825 efrain 1727
  .col-xl-2 {
1728
    flex: 0 0 auto;
1729
    width: 16.66666667%;
1730
  }
16848 stevensc 1731
 
16825 efrain 1732
  .col-xl-3 {
1733
    flex: 0 0 auto;
1734
    width: 25%;
1735
  }
16848 stevensc 1736
 
16825 efrain 1737
  .col-xl-4 {
1738
    flex: 0 0 auto;
1739
    width: 33.33333333%;
1740
  }
16848 stevensc 1741
 
16825 efrain 1742
  .col-xl-5 {
1743
    flex: 0 0 auto;
1744
    width: 41.66666667%;
1745
  }
16848 stevensc 1746
 
16825 efrain 1747
  .col-xl-6 {
1748
    flex: 0 0 auto;
1749
    width: 50%;
1750
  }
16848 stevensc 1751
 
16825 efrain 1752
  .col-xl-7 {
1753
    flex: 0 0 auto;
1754
    width: 58.33333333%;
1755
  }
16848 stevensc 1756
 
16825 efrain 1757
  .col-xl-8 {
1758
    flex: 0 0 auto;
1759
    width: 66.66666667%;
1760
  }
16848 stevensc 1761
 
16825 efrain 1762
  .col-xl-9 {
1763
    flex: 0 0 auto;
1764
    width: 75%;
1765
  }
16848 stevensc 1766
 
16825 efrain 1767
  .col-xl-10 {
1768
    flex: 0 0 auto;
1769
    width: 83.33333333%;
1770
  }
16848 stevensc 1771
 
16825 efrain 1772
  .col-xl-11 {
1773
    flex: 0 0 auto;
1774
    width: 91.66666667%;
1775
  }
16848 stevensc 1776
 
16825 efrain 1777
  .col-xl-12 {
1778
    flex: 0 0 auto;
1779
    width: 100%;
1780
  }
16848 stevensc 1781
 
16825 efrain 1782
  .offset-xl-0 {
1783
    margin-left: 0;
1784
  }
16848 stevensc 1785
 
16825 efrain 1786
  .offset-xl-1 {
1787
    margin-left: 8.33333333%;
1788
  }
16848 stevensc 1789
 
16825 efrain 1790
  .offset-xl-2 {
1791
    margin-left: 16.66666667%;
1792
  }
16848 stevensc 1793
 
16825 efrain 1794
  .offset-xl-3 {
1795
    margin-left: 25%;
1796
  }
16848 stevensc 1797
 
16825 efrain 1798
  .offset-xl-4 {
1799
    margin-left: 33.33333333%;
1800
  }
16848 stevensc 1801
 
16825 efrain 1802
  .offset-xl-5 {
1803
    margin-left: 41.66666667%;
1804
  }
16848 stevensc 1805
 
16825 efrain 1806
  .offset-xl-6 {
1807
    margin-left: 50%;
1808
  }
16848 stevensc 1809
 
16825 efrain 1810
  .offset-xl-7 {
1811
    margin-left: 58.33333333%;
1812
  }
16848 stevensc 1813
 
16825 efrain 1814
  .offset-xl-8 {
1815
    margin-left: 66.66666667%;
1816
  }
16848 stevensc 1817
 
16825 efrain 1818
  .offset-xl-9 {
1819
    margin-left: 75%;
1820
  }
16848 stevensc 1821
 
16825 efrain 1822
  .offset-xl-10 {
1823
    margin-left: 83.33333333%;
1824
  }
16848 stevensc 1825
 
16825 efrain 1826
  .offset-xl-11 {
1827
    margin-left: 91.66666667%;
1828
  }
16848 stevensc 1829
 
16825 efrain 1830
  .g-xl-0,
1831
  .gx-xl-0 {
1832
    --bs-gutter-x: 0;
1833
  }
16848 stevensc 1834
 
16825 efrain 1835
  .g-xl-0,
1836
  .gy-xl-0 {
1837
    --bs-gutter-y: 0;
1838
  }
16848 stevensc 1839
 
16825 efrain 1840
  .g-xl-1,
1841
  .gx-xl-1 {
1842
    --bs-gutter-x: 0.25rem;
1843
  }
16848 stevensc 1844
 
16825 efrain 1845
  .g-xl-1,
1846
  .gy-xl-1 {
1847
    --bs-gutter-y: 0.25rem;
1848
  }
16848 stevensc 1849
 
16825 efrain 1850
  .g-xl-2,
1851
  .gx-xl-2 {
1852
    --bs-gutter-x: 0.5rem;
1853
  }
16848 stevensc 1854
 
16825 efrain 1855
  .g-xl-2,
1856
  .gy-xl-2 {
1857
    --bs-gutter-y: 0.5rem;
1858
  }
16848 stevensc 1859
 
16825 efrain 1860
  .g-xl-3,
1861
  .gx-xl-3 {
1862
    --bs-gutter-x: 1rem;
1863
  }
16848 stevensc 1864
 
16825 efrain 1865
  .g-xl-3,
1866
  .gy-xl-3 {
1867
    --bs-gutter-y: 1rem;
1868
  }
16848 stevensc 1869
 
16825 efrain 1870
  .g-xl-4,
1871
  .gx-xl-4 {
1872
    --bs-gutter-x: 1.5rem;
1873
  }
16848 stevensc 1874
 
16825 efrain 1875
  .g-xl-4,
1876
  .gy-xl-4 {
1877
    --bs-gutter-y: 1.5rem;
1878
  }
16848 stevensc 1879
 
16825 efrain 1880
  .g-xl-5,
1881
  .gx-xl-5 {
1882
    --bs-gutter-x: 3rem;
1883
  }
16848 stevensc 1884
 
16825 efrain 1885
  .g-xl-5,
1886
  .gy-xl-5 {
1887
    --bs-gutter-y: 3rem;
1888
  }
16848 stevensc 1889
 
16825 efrain 1890
  .g-xl-6,
1891
  .gx-xl-6 {
1892
    --bs-gutter-x: 4.5rem;
1893
  }
16848 stevensc 1894
 
16825 efrain 1895
  .g-xl-6,
1896
  .gy-xl-6 {
1897
    --bs-gutter-y: 4.5rem;
1898
  }
16848 stevensc 1899
 
16825 efrain 1900
  .g-xl-7,
1901
  .gx-xl-7 {
1902
    --bs-gutter-x: 6rem;
1903
  }
16848 stevensc 1904
 
16825 efrain 1905
  .g-xl-7,
1906
  .gy-xl-7 {
1907
    --bs-gutter-y: 6rem;
1908
  }
1909
}
16848 stevensc 1910
 
16825 efrain 1911
@media (min-width: 1400px) {
1912
  .col-xxl {
1913
    flex: 1 0 0%;
1914
  }
16848 stevensc 1915
 
1916
  .row-cols-xxl-auto>* {
16825 efrain 1917
    flex: 0 0 auto;
1918
    width: auto;
1919
  }
16848 stevensc 1920
 
1921
  .row-cols-xxl-1>* {
16825 efrain 1922
    flex: 0 0 auto;
1923
    width: 100%;
1924
  }
16848 stevensc 1925
 
1926
  .row-cols-xxl-2>* {
16825 efrain 1927
    flex: 0 0 auto;
1928
    width: 50%;
1929
  }
16848 stevensc 1930
 
1931
  .row-cols-xxl-3>* {
16825 efrain 1932
    flex: 0 0 auto;
1933
    width: 33.3333333333%;
1934
  }
16848 stevensc 1935
 
1936
  .row-cols-xxl-4>* {
16825 efrain 1937
    flex: 0 0 auto;
1938
    width: 25%;
1939
  }
16848 stevensc 1940
 
1941
  .row-cols-xxl-5>* {
16825 efrain 1942
    flex: 0 0 auto;
1943
    width: 20%;
1944
  }
16848 stevensc 1945
 
1946
  .row-cols-xxl-6>* {
16825 efrain 1947
    flex: 0 0 auto;
1948
    width: 16.6666666667%;
1949
  }
16848 stevensc 1950
 
16825 efrain 1951
  .col-xxl-auto {
1952
    flex: 0 0 auto;
1953
    width: auto;
1954
  }
16848 stevensc 1955
 
16825 efrain 1956
  .col-xxl-1 {
1957
    flex: 0 0 auto;
1958
    width: 8.33333333%;
1959
  }
16848 stevensc 1960
 
16825 efrain 1961
  .col-xxl-2 {
1962
    flex: 0 0 auto;
1963
    width: 16.66666667%;
1964
  }
16848 stevensc 1965
 
16825 efrain 1966
  .col-xxl-3 {
1967
    flex: 0 0 auto;
1968
    width: 25%;
1969
  }
16848 stevensc 1970
 
16825 efrain 1971
  .col-xxl-4 {
1972
    flex: 0 0 auto;
1973
    width: 33.33333333%;
1974
  }
16848 stevensc 1975
 
16825 efrain 1976
  .col-xxl-5 {
1977
    flex: 0 0 auto;
1978
    width: 41.66666667%;
1979
  }
16848 stevensc 1980
 
16825 efrain 1981
  .col-xxl-6 {
1982
    flex: 0 0 auto;
1983
    width: 50%;
1984
  }
16848 stevensc 1985
 
16825 efrain 1986
  .col-xxl-7 {
1987
    flex: 0 0 auto;
1988
    width: 58.33333333%;
1989
  }
16848 stevensc 1990
 
16825 efrain 1991
  .col-xxl-8 {
1992
    flex: 0 0 auto;
1993
    width: 66.66666667%;
1994
  }
16848 stevensc 1995
 
16825 efrain 1996
  .col-xxl-9 {
1997
    flex: 0 0 auto;
1998
    width: 75%;
1999
  }
16848 stevensc 2000
 
16825 efrain 2001
  .col-xxl-10 {
2002
    flex: 0 0 auto;
2003
    width: 83.33333333%;
2004
  }
16848 stevensc 2005
 
16825 efrain 2006
  .col-xxl-11 {
2007
    flex: 0 0 auto;
2008
    width: 91.66666667%;
2009
  }
16848 stevensc 2010
 
16825 efrain 2011
  .col-xxl-12 {
2012
    flex: 0 0 auto;
2013
    width: 100%;
2014
  }
16848 stevensc 2015
 
16825 efrain 2016
  .offset-xxl-0 {
2017
    margin-left: 0;
2018
  }
16848 stevensc 2019
 
16825 efrain 2020
  .offset-xxl-1 {
2021
    margin-left: 8.33333333%;
2022
  }
16848 stevensc 2023
 
16825 efrain 2024
  .offset-xxl-2 {
2025
    margin-left: 16.66666667%;
2026
  }
16848 stevensc 2027
 
16825 efrain 2028
  .offset-xxl-3 {
2029
    margin-left: 25%;
2030
  }
16848 stevensc 2031
 
16825 efrain 2032
  .offset-xxl-4 {
2033
    margin-left: 33.33333333%;
2034
  }
16848 stevensc 2035
 
16825 efrain 2036
  .offset-xxl-5 {
2037
    margin-left: 41.66666667%;
2038
  }
16848 stevensc 2039
 
16825 efrain 2040
  .offset-xxl-6 {
2041
    margin-left: 50%;
2042
  }
16848 stevensc 2043
 
16825 efrain 2044
  .offset-xxl-7 {
2045
    margin-left: 58.33333333%;
2046
  }
16848 stevensc 2047
 
16825 efrain 2048
  .offset-xxl-8 {
2049
    margin-left: 66.66666667%;
2050
  }
16848 stevensc 2051
 
16825 efrain 2052
  .offset-xxl-9 {
2053
    margin-left: 75%;
2054
  }
16848 stevensc 2055
 
16825 efrain 2056
  .offset-xxl-10 {
2057
    margin-left: 83.33333333%;
2058
  }
16848 stevensc 2059
 
16825 efrain 2060
  .offset-xxl-11 {
2061
    margin-left: 91.66666667%;
2062
  }
16848 stevensc 2063
 
16825 efrain 2064
  .g-xxl-0,
2065
  .gx-xxl-0 {
2066
    --bs-gutter-x: 0;
2067
  }
16848 stevensc 2068
 
16825 efrain 2069
  .g-xxl-0,
2070
  .gy-xxl-0 {
2071
    --bs-gutter-y: 0;
2072
  }
16848 stevensc 2073
 
16825 efrain 2074
  .g-xxl-1,
2075
  .gx-xxl-1 {
2076
    --bs-gutter-x: 0.25rem;
2077
  }
16848 stevensc 2078
 
16825 efrain 2079
  .g-xxl-1,
2080
  .gy-xxl-1 {
2081
    --bs-gutter-y: 0.25rem;
2082
  }
16848 stevensc 2083
 
16825 efrain 2084
  .g-xxl-2,
2085
  .gx-xxl-2 {
2086
    --bs-gutter-x: 0.5rem;
2087
  }
16848 stevensc 2088
 
16825 efrain 2089
  .g-xxl-2,
2090
  .gy-xxl-2 {
2091
    --bs-gutter-y: 0.5rem;
2092
  }
16848 stevensc 2093
 
16825 efrain 2094
  .g-xxl-3,
2095
  .gx-xxl-3 {
2096
    --bs-gutter-x: 1rem;
2097
  }
16848 stevensc 2098
 
16825 efrain 2099
  .g-xxl-3,
2100
  .gy-xxl-3 {
2101
    --bs-gutter-y: 1rem;
2102
  }
16848 stevensc 2103
 
16825 efrain 2104
  .g-xxl-4,
2105
  .gx-xxl-4 {
2106
    --bs-gutter-x: 1.5rem;
2107
  }
16848 stevensc 2108
 
16825 efrain 2109
  .g-xxl-4,
2110
  .gy-xxl-4 {
2111
    --bs-gutter-y: 1.5rem;
2112
  }
16848 stevensc 2113
 
16825 efrain 2114
  .g-xxl-5,
2115
  .gx-xxl-5 {
2116
    --bs-gutter-x: 3rem;
2117
  }
16848 stevensc 2118
 
16825 efrain 2119
  .g-xxl-5,
2120
  .gy-xxl-5 {
2121
    --bs-gutter-y: 3rem;
2122
  }
16848 stevensc 2123
 
16825 efrain 2124
  .g-xxl-6,
2125
  .gx-xxl-6 {
2126
    --bs-gutter-x: 4.5rem;
2127
  }
16848 stevensc 2128
 
16825 efrain 2129
  .g-xxl-6,
2130
  .gy-xxl-6 {
2131
    --bs-gutter-y: 4.5rem;
2132
  }
16848 stevensc 2133
 
16825 efrain 2134
  .g-xxl-7,
2135
  .gx-xxl-7 {
2136
    --bs-gutter-x: 6rem;
2137
  }
16848 stevensc 2138
 
16825 efrain 2139
  .g-xxl-7,
2140
  .gy-xxl-7 {
2141
    --bs-gutter-y: 6rem;
2142
  }
2143
}
16848 stevensc 2144
 
16825 efrain 2145
.table {
2146
  --bs-table-color: var(--bs-body-color);
2147
  --bs-table-bg: transparent;
2148
  --bs-table-border-color: var(--bs-border-color);
2149
  --bs-table-accent-bg: transparent;
2150
  --bs-table-striped-color: var(--bs-body-color);
2151
  --bs-table-striped-bg: #e9ecef;
2152
  --bs-table-active-color: var(--bs-body-color);
2153
  --bs-table-active-bg: #dee2e6;
2154
  --bs-table-hover-color: var(--bs-body-color);
2155
  --bs-table-hover-bg: #e9ecef;
2156
  width: 100%;
2157
  margin-bottom: 1rem;
2158
  color: var(--bs-table-color);
2159
  vertical-align: top;
2160
  border-color: var(--bs-table-border-color);
2161
}
16848 stevensc 2162
 
2163
.table> :not(caption)>*>* {
16825 efrain 2164
  padding: 0.85rem 0.85rem;
2165
  background-color: var(--bs-table-bg);
2166
  border-bottom-width: 1px;
2167
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2168
}
16848 stevensc 2169
 
2170
.table>tbody {
16825 efrain 2171
  vertical-align: inherit;
2172
}
16848 stevensc 2173
 
2174
.table>thead {
16825 efrain 2175
  vertical-align: bottom;
2176
}
2177
 
2178
.table-group-divider {
2179
  border-top: 2px solid #e9ecef;
2180
}
2181
 
2182
.caption-top {
2183
  caption-side: top;
2184
}
2185
 
16848 stevensc 2186
.table-sm> :not(caption)>*>* {
16825 efrain 2187
  padding: 0.55rem 0.55rem;
2188
}
2189
 
16848 stevensc 2190
.table-bordered> :not(caption)>* {
16825 efrain 2191
  border-width: 1px 0;
2192
}
16848 stevensc 2193
 
2194
.table-bordered> :not(caption)>*>* {
16825 efrain 2195
  border-width: 0 1px;
2196
}
2197
 
16848 stevensc 2198
.table-borderless> :not(caption)>*>* {
16825 efrain 2199
  border-bottom-width: 0;
2200
}
16848 stevensc 2201
 
2202
.table-borderless> :not(:first-child) {
16825 efrain 2203
  border-top-width: 0;
2204
}
2205
 
16848 stevensc 2206
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2207
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2208
  color: var(--bs-table-striped-color);
2209
}
2210
 
16848 stevensc 2211
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2212
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2213
  color: var(--bs-table-striped-color);
2214
}
2215
 
2216
.table-active {
2217
  --bs-table-accent-bg: var(--bs-table-active-bg);
2218
  color: var(--bs-table-active-color);
2219
}
2220
 
16848 stevensc 2221
.table-hover>tbody>tr:hover>* {
16825 efrain 2222
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2223
  color: var(--bs-table-hover-color);
2224
}
2225
 
2226
.table-primary {
2227
  --bs-table-color: #000;
2228
  --bs-table-bg: #e0e3ff;
2229
  --bs-table-border-color: #cacce6;
2230
  --bs-table-striped-bg: #d5d8f2;
2231
  --bs-table-striped-color: #000;
2232
  --bs-table-active-bg: #cacce6;
2233
  --bs-table-active-color: #000;
2234
  --bs-table-hover-bg: #cfd2ec;
2235
  --bs-table-hover-color: #000;
2236
  color: var(--bs-table-color);
2237
  border-color: var(--bs-table-border-color);
2238
}
2239
 
2240
.table-secondary {
2241
  --bs-table-color: #000;
2242
  --bs-table-bg: #e4e7ec;
2243
  --bs-table-border-color: #cdd0d4;
2244
  --bs-table-striped-bg: #d9dbe0;
2245
  --bs-table-striped-color: #000;
2246
  --bs-table-active-bg: #cdd0d4;
2247
  --bs-table-active-color: #000;
2248
  --bs-table-hover-bg: #d3d6da;
2249
  --bs-table-hover-color: #000;
2250
  color: var(--bs-table-color);
2251
  border-color: var(--bs-table-border-color);
2252
}
2253
 
2254
.table-success {
2255
  --bs-table-color: #000;
2256
  --bs-table-bg: #cdeddb;
2257
  --bs-table-border-color: #b9d5c5;
2258
  --bs-table-striped-bg: #c3e1d0;
2259
  --bs-table-striped-color: #000;
2260
  --bs-table-active-bg: #b9d5c5;
2261
  --bs-table-active-color: #000;
2262
  --bs-table-hover-bg: #bedbcb;
2263
  --bs-table-hover-color: #000;
2264
  color: var(--bs-table-color);
2265
  border-color: var(--bs-table-border-color);
2266
}
2267
 
2268
.table-info {
2269
  --bs-table-color: #000;
2270
  --bs-table-bg: #e0f6f6;
2271
  --bs-table-border-color: #cadddd;
2272
  --bs-table-striped-bg: #d5eaea;
2273
  --bs-table-striped-color: #000;
2274
  --bs-table-active-bg: #cadddd;
2275
  --bs-table-active-color: #000;
2276
  --bs-table-hover-bg: #cfe4e4;
2277
  --bs-table-hover-color: #000;
2278
  color: var(--bs-table-color);
2279
  border-color: var(--bs-table-border-color);
2280
}
2281
 
2282
.table-warning {
2283
  --bs-table-color: #000;
2284
  --bs-table-bg: #fef2cd;
2285
  --bs-table-border-color: #e5dab9;
2286
  --bs-table-striped-bg: #f1e6c3;
2287
  --bs-table-striped-color: #000;
2288
  --bs-table-active-bg: #e5dab9;
2289
  --bs-table-active-color: #000;
2290
  --bs-table-hover-bg: #ebe0be;
2291
  --bs-table-hover-color: #000;
2292
  color: var(--bs-table-color);
2293
  border-color: var(--bs-table-border-color);
2294
}
2295
 
2296
.table-danger {
2297
  --bs-table-color: #000;
2298
  --bs-table-bg: #ffd6e0;
2299
  --bs-table-border-color: #e6c1ca;
2300
  --bs-table-striped-bg: #f2cbd5;
2301
  --bs-table-striped-color: #000;
2302
  --bs-table-active-bg: #e6c1ca;
2303
  --bs-table-active-color: #000;
2304
  --bs-table-hover-bg: #ecc6cf;
2305
  --bs-table-hover-color: #000;
2306
  color: var(--bs-table-color);
2307
  border-color: var(--bs-table-border-color);
2308
}
2309
 
2310
.table-light {
2311
  --bs-table-color: #000;
2312
  --bs-table-bg: #e9ecef;
2313
  --bs-table-border-color: #d2d4d7;
2314
  --bs-table-striped-bg: #dde0e3;
2315
  --bs-table-striped-color: #000;
2316
  --bs-table-active-bg: #d2d4d7;
2317
  --bs-table-active-color: #000;
2318
  --bs-table-hover-bg: #d8dadd;
2319
  --bs-table-hover-color: #000;
2320
  color: var(--bs-table-color);
2321
  border-color: var(--bs-table-border-color);
2322
}
2323
 
2324
.table-dark {
2325
  --bs-table-color: #fff;
2326
  --bs-table-bg: #060c17;
2327
  --bs-table-border-color: #1f242e;
2328
  --bs-table-striped-bg: #121823;
2329
  --bs-table-striped-color: #fff;
2330
  --bs-table-active-bg: #1f242e;
2331
  --bs-table-active-color: #fff;
2332
  --bs-table-hover-bg: #191e28;
2333
  --bs-table-hover-color: #fff;
2334
  color: var(--bs-table-color);
2335
  border-color: var(--bs-table-border-color);
2336
}
2337
 
2338
.table-responsive {
2339
  overflow-x: auto;
2340
  -webkit-overflow-scrolling: touch;
2341
}
2342
 
2343
@media (max-width: 575.98px) {
2344
  .table-responsive-sm {
2345
    overflow-x: auto;
2346
    -webkit-overflow-scrolling: touch;
2347
  }
2348
}
16848 stevensc 2349
 
16825 efrain 2350
@media (max-width: 767.98px) {
2351
  .table-responsive-md {
2352
    overflow-x: auto;
2353
    -webkit-overflow-scrolling: touch;
2354
  }
2355
}
16848 stevensc 2356
 
16825 efrain 2357
@media (max-width: 991.98px) {
2358
  .table-responsive-lg {
2359
    overflow-x: auto;
2360
    -webkit-overflow-scrolling: touch;
2361
  }
2362
}
16848 stevensc 2363
 
16825 efrain 2364
@media (max-width: 1199.98px) {
2365
  .table-responsive-xl {
2366
    overflow-x: auto;
2367
    -webkit-overflow-scrolling: touch;
2368
  }
2369
}
16848 stevensc 2370
 
16825 efrain 2371
@media (max-width: 1399.98px) {
2372
  .table-responsive-xxl {
2373
    overflow-x: auto;
2374
    -webkit-overflow-scrolling: touch;
2375
  }
2376
}
16848 stevensc 2377
 
16825 efrain 2378
.form-label {
2379
  margin-bottom: 0.5rem;
2380
}
2381
 
2382
.col-form-label {
2383
  padding-top: calc(0.469rem + 1px);
2384
  padding-bottom: calc(0.469rem + 1px);
2385
  margin-bottom: 0;
2386
  font-size: inherit;
2387
  line-height: 1.5;
2388
}
2389
 
2390
.col-form-label-lg {
2391
  padding-top: calc(0.5rem + 1px);
2392
  padding-bottom: calc(0.5rem + 1px);
2393
  font-size: 1rem;
2394
}
2395
 
2396
.col-form-label-sm {
2397
  padding-top: calc(0.391rem + 1px);
2398
  padding-bottom: calc(0.391rem + 1px);
2399
  font-size: 0.812rem;
2400
}
2401
 
2402
.form-text {
2403
  margin-top: 0.25rem;
2404
  font-size: 0.875em;
2405
  color: #7987a1;
2406
}
2407
 
16848 stevensc 2408
.form-control,
2409
.typeahead.tt-input,
2410
.typeahead.tt-hint,
2411
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2412
  display: block;
2413
  width: 100%;
2414
  padding: 0.469rem 0.8rem;
2415
  font-size: 0.875rem;
2416
  font-weight: 400;
2417
  line-height: 1.5;
2418
  color: #000;
2419
  background-color: #fff;
2420
  background-clip: padding-box;
2421
  border: 1px solid #e9ecef;
2422
  appearance: none;
2423
  border-radius: 0.25rem;
2424
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2425
}
16848 stevensc 2426
 
16825 efrain 2427
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2428
 
2429
  .form-control,
2430
  .typeahead.tt-input,
2431
  .typeahead.tt-hint,
2432
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2433
    transition: none;
2434
  }
2435
}
16848 stevensc 2436
 
2437
.form-control[type=file],
2438
[type=file].typeahead.tt-input,
2439
[type=file].typeahead.tt-hint,
2440
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2441
  overflow: hidden;
2442
}
16848 stevensc 2443
 
2444
.form-control[type=file]:not(:disabled):not([readonly]),
2445
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2446
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2447
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2448
  cursor: pointer;
2449
}
16848 stevensc 2450
 
2451
.form-control:focus,
2452
.typeahead.tt-input:focus,
2453
.typeahead.tt-hint:focus,
2454
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2455
  color: #000;
2456
  background-color: #fff;
2457
  border-color: #cbd1db;
2458
  outline: 0;
2459
  box-shadow: none;
2460
}
16848 stevensc 2461
 
2462
.form-control::-webkit-date-and-time-value,
2463
.typeahead.tt-input::-webkit-date-and-time-value,
2464
.typeahead.tt-hint::-webkit-date-and-time-value,
2465
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2466
  height: 1.5em;
2467
}
16848 stevensc 2468
 
2469
.form-control::placeholder,
2470
.typeahead.tt-input::placeholder,
2471
.typeahead.tt-hint::placeholder,
2472
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2473
  color: #aeb7c5;
2474
  opacity: 1;
2475
}
16848 stevensc 2476
 
2477
.form-control:disabled,
2478
.typeahead.tt-input:disabled,
2479
.typeahead.tt-hint:disabled,
2480
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2481
  background-color: #e9ecef;
2482
  opacity: 1;
2483
}
16848 stevensc 2484
 
2485
.form-control::file-selector-button,
2486
.typeahead.tt-input::file-selector-button,
2487
.typeahead.tt-hint::file-selector-button,
2488
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2489
  padding: 0.469rem 0.8rem;
2490
  margin: -0.469rem -0.8rem;
2491
  margin-inline-end: 0.8rem;
2492
  color: #000;
2493
  background-color: #f8f9fa;
2494
  pointer-events: none;
2495
  border-color: inherit;
2496
  border-style: solid;
2497
  border-width: 0;
2498
  border-inline-end-width: 1px;
2499
  border-radius: 0;
2500
  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;
2501
}
16848 stevensc 2502
 
16825 efrain 2503
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2504
 
2505
  .form-control::file-selector-button,
2506
  .typeahead.tt-input::file-selector-button,
2507
  .typeahead.tt-hint::file-selector-button,
2508
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2509
    transition: none;
2510
  }
2511
}
16848 stevensc 2512
 
2513
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2514
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2515
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2516
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2517
  background-color: #ecedee;
2518
}
2519
 
2520
.form-control-plaintext {
2521
  display: block;
2522
  width: 100%;
2523
  padding: 0.469rem 0;
2524
  margin-bottom: 0;
2525
  line-height: 1.5;
2526
  color: #000;
2527
  background-color: transparent;
2528
  border: solid transparent;
2529
  border-width: 1px 0;
2530
}
16848 stevensc 2531
 
16825 efrain 2532
.form-control-plaintext:focus {
2533
  outline: 0;
2534
}
16848 stevensc 2535
 
2536
.form-control-plaintext.form-control-sm,
2537
.form-control-plaintext.form-control-lg {
16825 efrain 2538
  padding-right: 0;
2539
  padding-left: 0;
2540
}
2541
 
2542
.form-control-sm {
2543
  min-height: calc(1.5em + 0.782rem + 2px);
2544
  padding: 0.391rem 0.8rem;
2545
  font-size: 0.812rem;
2546
  border-radius: 0.25rem;
2547
}
16848 stevensc 2548
 
16825 efrain 2549
.form-control-sm::file-selector-button {
2550
  padding: 0.391rem 0.8rem;
2551
  margin: -0.391rem -0.8rem;
2552
  margin-inline-end: 0.8rem;
2553
}
2554
 
2555
.form-control-lg {
2556
  min-height: calc(1.5em + 1rem + 2px);
2557
  padding: 0.5rem 0.8rem;
2558
  font-size: 1rem;
2559
  border-radius: 0.25rem;
2560
}
16848 stevensc 2561
 
16825 efrain 2562
.form-control-lg::file-selector-button {
2563
  padding: 0.5rem 0.8rem;
2564
  margin: -0.5rem -0.8rem;
2565
  margin-inline-end: 0.8rem;
2566
}
2567
 
16848 stevensc 2568
textarea.form-control,
2569
textarea.typeahead.tt-input,
2570
textarea.typeahead.tt-hint,
2571
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2572
  min-height: calc(1.5em + 0.938rem + 2px);
2573
}
16848 stevensc 2574
 
16825 efrain 2575
textarea.form-control-sm {
2576
  min-height: calc(1.5em + 0.782rem + 2px);
2577
}
16848 stevensc 2578
 
16825 efrain 2579
textarea.form-control-lg {
2580
  min-height: calc(1.5em + 1rem + 2px);
2581
}
2582
 
2583
.form-control-color {
2584
  width: 3rem;
2585
  height: calc(1.5em + 0.938rem + 2px);
2586
  padding: 0.469rem;
2587
}
16848 stevensc 2588
 
16825 efrain 2589
.form-control-color:not(:disabled):not([readonly]) {
2590
  cursor: pointer;
2591
}
16848 stevensc 2592
 
16825 efrain 2593
.form-control-color::-moz-color-swatch {
2594
  border: 0 !important;
2595
  border-radius: 0.25rem;
2596
}
16848 stevensc 2597
 
16825 efrain 2598
.form-control-color::-webkit-color-swatch {
2599
  border-radius: 0.25rem;
2600
}
16848 stevensc 2601
 
16825 efrain 2602
.form-control-color.form-control-sm {
2603
  height: calc(1.5em + 0.782rem + 2px);
2604
}
16848 stevensc 2605
 
16825 efrain 2606
.form-control-color.form-control-lg {
2607
  height: calc(1.5em + 1rem + 2px);
2608
}
2609
 
2610
.form-select {
2611
  display: block;
2612
  width: 100%;
2613
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2614
  -moz-padding-start: calc(0.8rem - 3px);
2615
  font-size: 0.875rem;
2616
  font-weight: 400;
2617
  line-height: 1.5;
2618
  color: #000;
2619
  background-color: #fff;
2620
  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");
2621
  background-repeat: no-repeat;
2622
  background-position: right 0.8rem center;
2623
  background-size: 16px 12px;
2624
  border: 1px solid #e9ecef;
2625
  border-radius: 0.25rem;
2626
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2627
  appearance: none;
2628
}
16848 stevensc 2629
 
16825 efrain 2630
@media (prefers-reduced-motion: reduce) {
2631
  .form-select {
2632
    transition: none;
2633
  }
2634
}
16848 stevensc 2635
 
16825 efrain 2636
.form-select:focus {
2637
  border-color: #cbd1db;
2638
  outline: 0;
2639
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2640
}
16848 stevensc 2641
 
2642
.form-select[multiple],
2643
.form-select[size]:not([size="1"]) {
16825 efrain 2644
  padding-right: 0.8rem;
2645
  background-image: none;
2646
}
16848 stevensc 2647
 
16825 efrain 2648
.form-select:disabled {
2649
  background-color: #e9ecef;
2650
}
16848 stevensc 2651
 
16825 efrain 2652
.form-select:-moz-focusring {
2653
  color: transparent;
2654
  text-shadow: 0 0 0 #000;
2655
}
2656
 
2657
.form-select-sm {
2658
  padding-top: 0.391rem;
2659
  padding-bottom: 0.391rem;
2660
  padding-left: 0.8rem;
2661
  font-size: 0.812rem;
2662
  border-radius: 0.25rem;
2663
}
2664
 
2665
.form-select-lg {
2666
  padding-top: 0.5rem;
2667
  padding-bottom: 0.5rem;
2668
  padding-left: 0.8rem;
2669
  font-size: 1rem;
2670
  border-radius: 0.25rem;
2671
}
2672
 
2673
.form-check {
2674
  display: block;
2675
  min-height: 1.3125rem;
2676
  padding-left: 1.8em;
2677
  margin-bottom: 0.125rem;
2678
}
16848 stevensc 2679
 
16825 efrain 2680
.form-check .form-check-input {
2681
  float: left;
2682
  margin-left: -1.8em;
2683
}
2684
 
2685
.form-check-reverse {
2686
  padding-right: 1.8em;
2687
  padding-left: 0;
2688
  text-align: right;
2689
}
16848 stevensc 2690
 
16825 efrain 2691
.form-check-reverse .form-check-input {
2692
  float: right;
2693
  margin-right: -1.8em;
2694
  margin-left: 0;
2695
}
2696
 
2697
.form-check-input {
2698
  width: 1.3em;
2699
  height: 1.3em;
2700
  margin-top: 0.1em;
2701
  vertical-align: top;
2702
  background-color: #fff;
2703
  background-repeat: no-repeat;
2704
  background-position: center;
2705
  background-size: contain;
2706
  border: 1px solid rgba(0, 0, 0, 0.25);
2707
  appearance: none;
2708
  print-color-adjust: exact;
2709
}
16848 stevensc 2710
 
16825 efrain 2711
.form-check-input[type=checkbox] {
2712
  border-radius: 0.15em;
2713
}
16848 stevensc 2714
 
16825 efrain 2715
.form-check-input[type=radio] {
2716
  border-radius: 50%;
2717
}
16848 stevensc 2718
 
16825 efrain 2719
.form-check-input:active {
2720
  filter: brightness(90%);
2721
}
16848 stevensc 2722
 
16825 efrain 2723
.form-check-input:focus {
2724
  border-color: #cbd1db;
2725
  outline: 0;
2726
  box-shadow: none;
2727
}
16848 stevensc 2728
 
16825 efrain 2729
.form-check-input:checked {
2730
  background-color: #6571ff;
2731
  border-color: #6571ff;
2732
}
16848 stevensc 2733
 
16825 efrain 2734
.form-check-input:checked[type=checkbox] {
2735
  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");
2736
}
16848 stevensc 2737
 
16825 efrain 2738
.form-check-input:checked[type=radio] {
2739
  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");
2740
}
16848 stevensc 2741
 
16825 efrain 2742
.form-check-input[type=checkbox]:indeterminate {
2743
  background-color: #6571ff;
2744
  border-color: #6571ff;
2745
  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");
2746
}
16848 stevensc 2747
 
16825 efrain 2748
.form-check-input:disabled {
2749
  pointer-events: none;
2750
  filter: none;
2751
  opacity: 0.5;
2752
}
16848 stevensc 2753
 
2754
.form-check-input[disabled]~.form-check-label,
2755
.form-check-input:disabled~.form-check-label {
16825 efrain 2756
  cursor: default;
2757
  opacity: 0.5;
2758
}
2759
 
2760
.form-switch {
2761
  padding-left: 2.5em;
2762
}
16848 stevensc 2763
 
16825 efrain 2764
.form-switch .form-check-input {
2765
  width: 2em;
2766
  margin-left: -2.5em;
2767
  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");
2768
  background-position: left center;
2769
  border-radius: 2em;
2770
  transition: background-position 0.15s ease-in-out;
2771
}
16848 stevensc 2772
 
16825 efrain 2773
@media (prefers-reduced-motion: reduce) {
2774
  .form-switch .form-check-input {
2775
    transition: none;
2776
  }
2777
}
16848 stevensc 2778
 
16825 efrain 2779
.form-switch .form-check-input:focus {
2780
  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");
2781
}
16848 stevensc 2782
 
16825 efrain 2783
.form-switch .form-check-input:checked {
2784
  background-position: right center;
2785
  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");
2786
}
16848 stevensc 2787
 
16825 efrain 2788
.form-switch.form-check-reverse {
2789
  padding-right: 2.5em;
2790
  padding-left: 0;
2791
}
16848 stevensc 2792
 
16825 efrain 2793
.form-switch.form-check-reverse .form-check-input {
2794
  margin-right: -2.5em;
2795
  margin-left: 0;
2796
}
2797
 
2798
.form-check-inline {
2799
  display: inline-block;
2800
  margin-right: 1rem;
2801
}
2802
 
2803
.btn-check {
2804
  position: absolute;
2805
  clip: rect(0, 0, 0, 0);
2806
  pointer-events: none;
2807
}
16848 stevensc 2808
 
2809
.btn-check[disabled]+.btn,
2810
.wizard>.actions .btn-check[disabled]+a,
2811
div.tox .btn-check[disabled]+.tox-button,
2812
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2813
.fc .btn-check[disabled]+.fc-button-primary,
2814
.btn-check:disabled+.btn,
2815
.wizard>.actions .btn-check:disabled+a,
2816
div.tox .btn-check:disabled+.tox-button,
2817
.swal2-popup .swal2-actions .btn-check:disabled+button,
2818
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2819
  pointer-events: none;
2820
  filter: none;
2821
  opacity: 0.65;
2822
}
2823
 
2824
.form-range {
2825
  width: 100%;
2826
  height: 1rem;
2827
  padding: 0;
2828
  background-color: transparent;
2829
  appearance: none;
2830
}
16848 stevensc 2831
 
16825 efrain 2832
.form-range:focus {
2833
  outline: 0;
2834
}
16848 stevensc 2835
 
16825 efrain 2836
.form-range:focus::-webkit-slider-thumb {
2837
  box-shadow: 0 0 0 1px #f9fafb, none;
2838
}
16848 stevensc 2839
 
16825 efrain 2840
.form-range:focus::-moz-range-thumb {
2841
  box-shadow: 0 0 0 1px #f9fafb, none;
2842
}
16848 stevensc 2843
 
16825 efrain 2844
.form-range::-moz-focus-outer {
2845
  border: 0;
2846
}
16848 stevensc 2847
 
16825 efrain 2848
.form-range::-webkit-slider-thumb {
2849
  width: 1rem;
2850
  height: 1rem;
2851
  margin-top: -0.25rem;
2852
  background-color: #6571ff;
2853
  border: 0;
2854
  border-radius: 1rem;
2855
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2856
  appearance: none;
2857
}
16848 stevensc 2858
 
16825 efrain 2859
@media (prefers-reduced-motion: reduce) {
2860
  .form-range::-webkit-slider-thumb {
2861
    transition: none;
2862
  }
2863
}
16848 stevensc 2864
 
16825 efrain 2865
.form-range::-webkit-slider-thumb:active {
2866
  background-color: #d1d4ff;
2867
}
16848 stevensc 2868
 
16825 efrain 2869
.form-range::-webkit-slider-runnable-track {
2870
  width: 100%;
2871
  height: 0.5rem;
2872
  color: transparent;
2873
  cursor: pointer;
2874
  background-color: #dee2e6;
2875
  border-color: transparent;
2876
  border-radius: 1rem;
2877
}
16848 stevensc 2878
 
16825 efrain 2879
.form-range::-moz-range-thumb {
2880
  width: 1rem;
2881
  height: 1rem;
2882
  background-color: #6571ff;
2883
  border: 0;
2884
  border-radius: 1rem;
2885
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2886
  appearance: none;
2887
}
16848 stevensc 2888
 
16825 efrain 2889
@media (prefers-reduced-motion: reduce) {
2890
  .form-range::-moz-range-thumb {
2891
    transition: none;
2892
  }
2893
}
16848 stevensc 2894
 
16825 efrain 2895
.form-range::-moz-range-thumb:active {
2896
  background-color: #d1d4ff;
2897
}
16848 stevensc 2898
 
16825 efrain 2899
.form-range::-moz-range-track {
2900
  width: 100%;
2901
  height: 0.5rem;
2902
  color: transparent;
2903
  cursor: pointer;
2904
  background-color: #dee2e6;
2905
  border-color: transparent;
2906
  border-radius: 1rem;
2907
}
16848 stevensc 2908
 
16825 efrain 2909
.form-range:disabled {
2910
  pointer-events: none;
2911
}
16848 stevensc 2912
 
16825 efrain 2913
.form-range:disabled::-webkit-slider-thumb {
2914
  background-color: #aeb7c5;
2915
}
16848 stevensc 2916
 
16825 efrain 2917
.form-range:disabled::-moz-range-thumb {
2918
  background-color: #aeb7c5;
2919
}
2920
 
2921
.form-floating {
2922
  position: relative;
2923
}
16848 stevensc 2924
 
2925
.form-floating>.form-control,
2926
.form-floating>.typeahead.tt-input,
2927
.form-floating>.typeahead.tt-hint,
2928
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2929
.form-floating>.form-control-plaintext,
2930
.form-floating>.form-select {
16825 efrain 2931
  height: calc(3.5rem + 2px);
2932
  line-height: 1.25;
2933
}
16848 stevensc 2934
 
2935
.form-floating>label {
16825 efrain 2936
  position: absolute;
2937
  top: 0;
2938
  left: 0;
2939
  width: 100%;
2940
  height: 100%;
2941
  padding: 1rem 0.8rem;
2942
  overflow: hidden;
2943
  text-align: start;
2944
  text-overflow: ellipsis;
2945
  white-space: nowrap;
2946
  pointer-events: none;
2947
  border: 1px solid transparent;
2948
  transform-origin: 0 0;
2949
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2950
}
16848 stevensc 2951
 
16825 efrain 2952
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2953
  .form-floating>label {
16825 efrain 2954
    transition: none;
2955
  }
2956
}
16848 stevensc 2957
 
2958
.form-floating>.form-control,
2959
.form-floating>.typeahead.tt-input,
2960
.form-floating>.typeahead.tt-hint,
2961
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2962
.form-floating>.form-control-plaintext {
16825 efrain 2963
  padding: 1rem 0.8rem;
2964
}
16848 stevensc 2965
 
2966
.form-floating>.form-control::placeholder,
2967
.form-floating>.typeahead.tt-input::placeholder,
2968
.form-floating>.typeahead.tt-hint::placeholder,
2969
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2970
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2971
  color: transparent;
2972
}
16848 stevensc 2973
 
2974
.form-floating>.form-control:focus,
2975
.form-floating>.typeahead.tt-input:focus,
2976
.form-floating>.typeahead.tt-hint:focus,
2977
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2978
.form-floating>.form-control:not(:placeholder-shown),
2979
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2980
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
2981
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
2982
.form-floating>.form-control-plaintext:focus,
2983
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 2984
  padding-top: 1.625rem;
2985
  padding-bottom: 0.625rem;
2986
}
16848 stevensc 2987
 
2988
.form-floating>.form-control:-webkit-autofill,
2989
.form-floating>.typeahead.tt-input:-webkit-autofill,
2990
.form-floating>.typeahead.tt-hint:-webkit-autofill,
2991
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
2992
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 2993
  padding-top: 1.625rem;
2994
  padding-bottom: 0.625rem;
2995
}
16848 stevensc 2996
 
2997
.form-floating>.form-select {
16825 efrain 2998
  padding-top: 1.625rem;
2999
  padding-bottom: 0.625rem;
3000
}
16848 stevensc 3001
 
3002
.form-floating>.form-control:focus~label,
3003
.form-floating>.typeahead.tt-input:focus~label,
3004
.form-floating>.typeahead.tt-hint:focus~label,
3005
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3006
.form-floating>.form-control:not(:placeholder-shown)~label,
3007
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3008
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3009
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3010
.form-floating>.form-control-plaintext~label,
3011
.form-floating>.form-select~label {
16825 efrain 3012
  opacity: 0.65;
3013
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3014
}
16848 stevensc 3015
 
3016
.form-floating>.form-control:-webkit-autofill~label,
3017
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3018
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3019
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3020
  opacity: 0.65;
3021
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3022
}
16848 stevensc 3023
 
3024
.form-floating>.form-control-plaintext~label {
16825 efrain 3025
  border-width: 1px 0;
3026
}
3027
 
3028
.input-group {
3029
  position: relative;
3030
  display: flex;
3031
  flex-wrap: wrap;
3032
  align-items: stretch;
3033
  width: 100%;
3034
}
16848 stevensc 3035
 
3036
.input-group>.form-control,
3037
.input-group>.typeahead.tt-input,
3038
.input-group>.typeahead.tt-hint,
3039
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3040
.input-group>.form-select,
3041
.input-group>.form-floating {
16825 efrain 3042
  position: relative;
3043
  flex: 1 1 auto;
3044
  width: 1%;
3045
  min-width: 0;
3046
}
16848 stevensc 3047
 
3048
.input-group>.form-control:focus,
3049
.input-group>.typeahead.tt-input:focus,
3050
.input-group>.typeahead.tt-hint:focus,
3051
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3052
.input-group>.form-select:focus,
3053
.input-group>.form-floating:focus-within {
16825 efrain 3054
  z-index: 5;
3055
}
16848 stevensc 3056
 
3057
.input-group .btn,
3058
.input-group .wizard>.actions a,
3059
.wizard>.actions .input-group a,
3060
.input-group div.tox .tox-button,
3061
div.tox .input-group .tox-button,
3062
.input-group .swal2-popup .swal2-actions button,
3063
.swal2-popup .swal2-actions .input-group button,
3064
.input-group .fc .fc-button-primary,
3065
.fc .input-group .fc-button-primary {
16825 efrain 3066
  position: relative;
3067
  z-index: 2;
3068
}
16848 stevensc 3069
 
3070
.input-group .btn:focus,
3071
.input-group .wizard>.actions a:focus,
3072
.wizard>.actions .input-group a:focus,
3073
.input-group div.tox .tox-button:focus,
3074
div.tox .input-group .tox-button:focus,
3075
.input-group .swal2-popup .swal2-actions button:focus,
3076
.swal2-popup .swal2-actions .input-group button:focus,
3077
.input-group .fc .fc-button-primary:focus,
3078
.fc .input-group .fc-button-primary:focus {
16825 efrain 3079
  z-index: 5;
3080
}
3081
 
3082
.input-group-text {
3083
  display: flex;
3084
  align-items: center;
3085
  padding: 0.469rem 0.563rem;
3086
  font-size: 0.875rem;
3087
  font-weight: 400;
3088
  line-height: 1.5;
3089
  color: #000;
3090
  text-align: center;
3091
  white-space: nowrap;
3092
  background-color: #f8f9fa;
3093
  border: 1px solid #e9ecef;
3094
  border-radius: 0.25rem;
3095
}
3096
 
16848 stevensc 3097
.input-group-lg>.form-control,
3098
.input-group-lg>.typeahead.tt-input,
3099
.input-group-lg>.typeahead.tt-hint,
3100
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3101
.input-group-lg>.form-select,
3102
.input-group-lg>.input-group-text,
3103
.input-group-lg>.btn,
3104
.wizard>.actions .input-group-lg>a,
3105
div.tox .input-group-lg>.tox-button,
3106
.swal2-popup .swal2-actions .input-group-lg>button,
3107
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3108
  padding: 0.5rem 0.8rem;
3109
  font-size: 1rem;
3110
  border-radius: 0.25rem;
3111
}
3112
 
16848 stevensc 3113
.input-group-sm>.form-control,
3114
.input-group-sm>.typeahead.tt-input,
3115
.input-group-sm>.typeahead.tt-hint,
3116
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3117
.input-group-sm>.form-select,
3118
.input-group-sm>.input-group-text,
3119
.input-group-sm>.btn,
3120
.wizard>.actions .input-group-sm>a,
3121
div.tox .input-group-sm>.tox-button,
3122
.swal2-popup .swal2-actions .input-group-sm>button,
3123
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3124
  padding: 0.391rem 0.8rem;
3125
  font-size: 0.812rem;
3126
  border-radius: 0.25rem;
3127
}
3128
 
16848 stevensc 3129
.input-group-lg>.form-select,
3130
.input-group-sm>.form-select {
16825 efrain 3131
  padding-right: 3.2rem;
3132
}
3133
 
16848 stevensc 3134
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3135
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3136
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3137
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3138
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3139
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3140
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3141
  border-top-right-radius: 0;
3142
  border-bottom-right-radius: 0;
3143
}
16848 stevensc 3144
 
3145
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3146
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3147
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3148
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3149
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3150
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3151
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3152
  border-top-right-radius: 0;
3153
  border-bottom-right-radius: 0;
3154
}
16848 stevensc 3155
 
3156
.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 3157
  margin-left: -1px;
3158
  border-top-left-radius: 0;
3159
  border-bottom-left-radius: 0;
3160
}
16848 stevensc 3161
 
3162
.input-group>.form-floating:not(:first-child)>.form-control,
3163
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3164
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3165
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3166
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3167
  border-top-left-radius: 0;
3168
  border-bottom-left-radius: 0;
3169
}
3170
 
3171
.valid-feedback {
3172
  display: none;
3173
  width: 100%;
3174
  margin-top: 0.25rem;
3175
  font-size: 0.875em;
3176
  color: #05a34a;
3177
}
3178
 
3179
.valid-tooltip {
3180
  position: absolute;
3181
  top: 100%;
3182
  z-index: 5;
3183
  display: none;
3184
  max-width: 100%;
3185
  padding: 0.25rem 0.5rem;
3186
  margin-top: 0.1rem;
3187
  font-size: 0.812rem;
3188
  color: #fff;
3189
  background-color: rgba(5, 163, 74, 0.9);
3190
  border-radius: 0.25rem;
3191
}
3192
 
16848 stevensc 3193
.was-validated :valid~.valid-feedback,
3194
.was-validated :valid~.valid-tooltip,
3195
.is-valid~.valid-feedback,
3196
.is-valid~.valid-tooltip {
16825 efrain 3197
  display: block;
3198
}
3199
 
16848 stevensc 3200
.was-validated .form-control:valid,
3201
.was-validated .typeahead.tt-input:valid,
3202
.was-validated .typeahead.tt-hint:valid,
3203
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3204
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3205
.form-control.is-valid,
3206
.is-valid.typeahead.tt-input,
3207
.is-valid.typeahead.tt-hint,
3208
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3209
  border-color: #05a34a;
3210
  padding-right: calc(1.5em + 0.938rem);
3211
  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");
3212
  background-repeat: no-repeat;
3213
  background-position: right calc(0.375em + 0.2345rem) center;
3214
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3215
}
16848 stevensc 3216
 
3217
.was-validated .form-control:valid:focus,
3218
.was-validated .typeahead.tt-input:valid:focus,
3219
.was-validated .typeahead.tt-hint:valid:focus,
3220
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3221
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3222
.form-control.is-valid:focus,
3223
.is-valid.typeahead.tt-input:focus,
3224
.is-valid.typeahead.tt-hint:focus,
3225
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3226
  border-color: #05a34a;
3227
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3228
}
3229
 
16848 stevensc 3230
.was-validated textarea.form-control:valid,
3231
.was-validated textarea.typeahead.tt-input:valid,
3232
.was-validated textarea.typeahead.tt-hint:valid,
3233
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3234
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3235
textarea.form-control.is-valid,
3236
textarea.is-valid.typeahead.tt-input,
3237
textarea.is-valid.typeahead.tt-hint,
3238
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3239
  padding-right: calc(1.5em + 0.938rem);
3240
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3241
}
3242
 
16848 stevensc 3243
.was-validated .form-select:valid,
3244
.form-select.is-valid {
16825 efrain 3245
  border-color: #05a34a;
3246
}
16848 stevensc 3247
 
3248
.was-validated .form-select:valid:not([multiple]):not([size]),
3249
.was-validated .form-select:valid:not([multiple])[size="1"],
3250
.form-select.is-valid:not([multiple]):not([size]),
3251
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3252
  padding-right: 4.4rem;
3253
  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");
3254
  background-position: right 0.8rem center, center right 2.4rem;
3255
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3256
}
16848 stevensc 3257
 
3258
.was-validated .form-select:valid:focus,
3259
.form-select.is-valid:focus {
16825 efrain 3260
  border-color: #05a34a;
3261
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3262
}
3263
 
16848 stevensc 3264
.was-validated .form-control-color:valid,
3265
.form-control-color.is-valid {
16825 efrain 3266
  width: calc(3rem + calc(1.5em + 0.938rem));
3267
}
3268
 
16848 stevensc 3269
.was-validated .form-check-input:valid,
3270
.form-check-input.is-valid {
16825 efrain 3271
  border-color: #05a34a;
3272
}
16848 stevensc 3273
 
3274
.was-validated .form-check-input:valid:checked,
3275
.form-check-input.is-valid:checked {
16825 efrain 3276
  background-color: #05a34a;
3277
}
16848 stevensc 3278
 
3279
.was-validated .form-check-input:valid:focus,
3280
.form-check-input.is-valid:focus {
16825 efrain 3281
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3282
}
16848 stevensc 3283
 
3284
.was-validated .form-check-input:valid~.form-check-label,
3285
.form-check-input.is-valid~.form-check-label {
16825 efrain 3286
  color: #05a34a;
3287
}
3288
 
16848 stevensc 3289
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3290
  margin-left: 0.5em;
3291
}
3292
 
16848 stevensc 3293
.was-validated .input-group>.form-control:not(:focus):valid,
3294
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3295
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3296
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3297
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3298
.input-group>.form-control:not(:focus).is-valid,
3299
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3300
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3301
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3302
.was-validated .input-group>.form-select:not(:focus):valid,
3303
.input-group>.form-select:not(:focus).is-valid,
3304
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3305
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3306
  z-index: 3;
3307
}
3308
 
3309
.invalid-feedback {
3310
  display: none;
3311
  width: 100%;
3312
  margin-top: 0.25rem;
3313
  font-size: 0.875em;
3314
  color: #ff3366;
3315
}
3316
 
3317
.invalid-tooltip {
3318
  position: absolute;
3319
  top: 100%;
3320
  z-index: 5;
3321
  display: none;
3322
  max-width: 100%;
3323
  padding: 0.25rem 0.5rem;
3324
  margin-top: 0.1rem;
3325
  font-size: 0.812rem;
3326
  color: #fff;
3327
  background-color: rgba(255, 51, 102, 0.9);
3328
  border-radius: 0.25rem;
3329
}
3330
 
16848 stevensc 3331
.was-validated :invalid~.invalid-feedback,
3332
.was-validated :invalid~.invalid-tooltip,
3333
.is-invalid~.invalid-feedback,
3334
.is-invalid~.invalid-tooltip {
16825 efrain 3335
  display: block;
3336
}
3337
 
16848 stevensc 3338
.was-validated .form-control:invalid,
3339
.was-validated .typeahead.tt-input:invalid,
3340
.was-validated .typeahead.tt-hint:invalid,
3341
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3342
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3343
.form-control.is-invalid,
3344
.is-invalid.typeahead.tt-input,
3345
.is-invalid.typeahead.tt-hint,
3346
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3347
  border-color: #ff3366;
3348
  padding-right: calc(1.5em + 0.938rem);
3349
  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");
3350
  background-repeat: no-repeat;
3351
  background-position: right calc(0.375em + 0.2345rem) center;
3352
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3353
}
16848 stevensc 3354
 
3355
.was-validated .form-control:invalid:focus,
3356
.was-validated .typeahead.tt-input:invalid:focus,
3357
.was-validated .typeahead.tt-hint:invalid:focus,
3358
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3359
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3360
.form-control.is-invalid:focus,
3361
.is-invalid.typeahead.tt-input:focus,
3362
.is-invalid.typeahead.tt-hint:focus,
3363
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3364
  border-color: #ff3366;
3365
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3366
}
3367
 
16848 stevensc 3368
.was-validated textarea.form-control:invalid,
3369
.was-validated textarea.typeahead.tt-input:invalid,
3370
.was-validated textarea.typeahead.tt-hint:invalid,
3371
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3372
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3373
textarea.form-control.is-invalid,
3374
textarea.is-invalid.typeahead.tt-input,
3375
textarea.is-invalid.typeahead.tt-hint,
3376
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3377
  padding-right: calc(1.5em + 0.938rem);
3378
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3379
}
3380
 
16848 stevensc 3381
.was-validated .form-select:invalid,
3382
.form-select.is-invalid {
16825 efrain 3383
  border-color: #ff3366;
3384
}
16848 stevensc 3385
 
3386
.was-validated .form-select:invalid:not([multiple]):not([size]),
3387
.was-validated .form-select:invalid:not([multiple])[size="1"],
3388
.form-select.is-invalid:not([multiple]):not([size]),
3389
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3390
  padding-right: 4.4rem;
3391
  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");
3392
  background-position: right 0.8rem center, center right 2.4rem;
3393
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3394
}
16848 stevensc 3395
 
3396
.was-validated .form-select:invalid:focus,
3397
.form-select.is-invalid:focus {
16825 efrain 3398
  border-color: #ff3366;
3399
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3400
}
3401
 
16848 stevensc 3402
.was-validated .form-control-color:invalid,
3403
.form-control-color.is-invalid {
16825 efrain 3404
  width: calc(3rem + calc(1.5em + 0.938rem));
3405
}
3406
 
16848 stevensc 3407
.was-validated .form-check-input:invalid,
3408
.form-check-input.is-invalid {
16825 efrain 3409
  border-color: #ff3366;
3410
}
16848 stevensc 3411
 
3412
.was-validated .form-check-input:invalid:checked,
3413
.form-check-input.is-invalid:checked {
16825 efrain 3414
  background-color: #ff3366;
3415
}
16848 stevensc 3416
 
3417
.was-validated .form-check-input:invalid:focus,
3418
.form-check-input.is-invalid:focus {
16825 efrain 3419
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3420
}
16848 stevensc 3421
 
3422
.was-validated .form-check-input:invalid~.form-check-label,
3423
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3424
  color: #ff3366;
3425
}
3426
 
16848 stevensc 3427
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3428
  margin-left: 0.5em;
3429
}
3430
 
16848 stevensc 3431
.was-validated .input-group>.form-control:not(:focus):invalid,
3432
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3433
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3434
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3435
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3436
.input-group>.form-control:not(:focus).is-invalid,
3437
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3438
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3439
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3440
.was-validated .input-group>.form-select:not(:focus):invalid,
3441
.input-group>.form-select:not(:focus).is-invalid,
3442
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3443
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3444
  z-index: 4;
3445
}
3446
 
16848 stevensc 3447
.btn,
3448
.wizard>.actions a,
3449
.wizard>.actions a:active,
3450
.wizard>.actions a:hover,
3451
div.tox .tox-button,
3452
.swal2-popup .swal2-actions button,
3453
.fc .fc-button-primary {
16825 efrain 3454
  --bs-btn-padding-x: 0.8rem;
3455
  --bs-btn-padding-y: 0.469rem;
3456
  --bs-btn-font-family: ;
3457
  --bs-btn-font-size: 0.875rem;
3458
  --bs-btn-font-weight: 400;
3459
  --bs-btn-line-height: 1.5;
3460
  --bs-btn-color: #000;
3461
  --bs-btn-bg: transparent;
3462
  --bs-btn-border-width: 1px;
3463
  --bs-btn-border-color: transparent;
3464
  --bs-btn-border-radius: 0.25rem;
3465
  --bs-btn-hover-border-color: transparent;
3466
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3467
  --bs-btn-disabled-opacity: 0.65;
3468
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3469
  display: inline-block;
3470
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3471
  font-family: var(--bs-btn-font-family);
3472
  font-size: var(--bs-btn-font-size);
3473
  font-weight: var(--bs-btn-font-weight);
3474
  line-height: var(--bs-btn-line-height);
3475
  color: var(--bs-btn-color);
3476
  text-align: center;
3477
  vertical-align: middle;
3478
  cursor: pointer;
3479
  user-select: none;
3480
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3481
  border-radius: var(--bs-btn-border-radius);
3482
  background-color: var(--bs-btn-bg);
3483
  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;
3484
}
16848 stevensc 3485
 
16825 efrain 3486
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3487
 
3488
  .btn,
3489
  .wizard>.actions a,
3490
  .wizard>.actions a:active,
3491
  .wizard>.actions a:hover,
3492
  div.tox .tox-button,
3493
  .swal2-popup .swal2-actions button,
3494
  .fc .fc-button-primary {
16825 efrain 3495
    transition: none;
3496
  }
3497
}
16848 stevensc 3498
 
3499
.btn:hover,
3500
.wizard>.actions a:hover,
3501
div.tox .tox-button:hover,
3502
.swal2-popup .swal2-actions button:hover,
3503
.fc .fc-button-primary:hover {
16825 efrain 3504
  color: var(--bs-btn-hover-color);
3505
  background-color: var(--bs-btn-hover-bg);
3506
  border-color: var(--bs-btn-hover-border-color);
3507
}
16848 stevensc 3508
 
3509
.btn-check+.btn:hover,
3510
.wizard>.actions .btn-check+a:hover,
3511
div.tox .btn-check+.tox-button:hover,
3512
.swal2-popup .swal2-actions .btn-check+button:hover,
3513
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3514
  color: var(--bs-btn-color);
3515
  background-color: var(--bs-btn-bg);
3516
  border-color: var(--bs-btn-border-color);
3517
}
16848 stevensc 3518
 
3519
.btn:focus-visible,
3520
.wizard>.actions a:focus-visible,
3521
div.tox .tox-button:focus-visible,
3522
.swal2-popup .swal2-actions button:focus-visible,
3523
.fc .fc-button-primary:focus-visible {
16825 efrain 3524
  color: var(--bs-btn-hover-color);
3525
  background-color: var(--bs-btn-hover-bg);
3526
  border-color: var(--bs-btn-hover-border-color);
3527
  outline: 0;
3528
  box-shadow: var(--bs-btn-focus-box-shadow);
3529
}
16848 stevensc 3530
 
3531
.btn-check:focus-visible+.btn,
3532
.wizard>.actions .btn-check:focus-visible+a,
3533
div.tox .btn-check:focus-visible+.tox-button,
3534
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3535
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3536
  border-color: var(--bs-btn-hover-border-color);
3537
  outline: 0;
3538
  box-shadow: var(--bs-btn-focus-box-shadow);
3539
}
16848 stevensc 3540
 
3541
.btn-check:checked+.btn,
3542
.wizard>.actions .btn-check:checked+a,
3543
div.tox .btn-check:checked+.tox-button,
3544
.swal2-popup .swal2-actions .btn-check:checked+button,
3545
.fc .btn-check:checked+.fc-button-primary,
3546
:not(.btn-check)+.btn:active,
3547
.wizard>.actions :not(.btn-check)+a:active,
3548
div.tox :not(.btn-check)+.tox-button:active,
3549
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3550
.fc :not(.btn-check)+.fc-button-primary:active,
3551
.btn:first-child:active,
3552
.wizard>.actions a:first-child:active,
3553
div.tox .tox-button:first-child:active,
3554
.swal2-popup .swal2-actions button:first-child:active,
3555
.fc .fc-button-primary:first-child:active,
3556
.btn.active,
3557
.wizard>.actions a.active,
3558
div.tox .active.tox-button,
3559
.swal2-popup .swal2-actions button.active,
3560
.fc .active.fc-button-primary,
3561
.btn.show,
3562
.wizard>.actions a.show,
3563
div.tox .show.tox-button,
3564
.swal2-popup .swal2-actions button.show,
3565
.fc .show.fc-button-primary {
16825 efrain 3566
  color: var(--bs-btn-active-color);
3567
  background-color: var(--bs-btn-active-bg);
3568
  border-color: var(--bs-btn-active-border-color);
3569
}
16848 stevensc 3570
 
3571
.btn-check:checked+.btn:focus-visible,
3572
.wizard>.actions .btn-check:checked+a:focus-visible,
3573
div.tox .btn-check:checked+.tox-button:focus-visible,
3574
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3575
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3576
:not(.btn-check)+.btn:active:focus-visible,
3577
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3578
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3579
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3580
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3581
.btn:first-child:active:focus-visible,
3582
.wizard>.actions a:first-child:active:focus-visible,
3583
div.tox .tox-button:first-child:active:focus-visible,
3584
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3585
.fc .fc-button-primary:first-child:active:focus-visible,
3586
.btn.active:focus-visible,
3587
.wizard>.actions a.active:focus-visible,
3588
div.tox .active.tox-button:focus-visible,
3589
.swal2-popup .swal2-actions button.active:focus-visible,
3590
.fc .active.fc-button-primary:focus-visible,
3591
.btn.show:focus-visible,
3592
.wizard>.actions a.show:focus-visible,
3593
div.tox .show.tox-button:focus-visible,
3594
.swal2-popup .swal2-actions button.show:focus-visible,
3595
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3596
  box-shadow: var(--bs-btn-focus-box-shadow);
3597
}
16848 stevensc 3598
 
3599
.btn:disabled,
3600
.wizard>.actions a:disabled,
3601
div.tox .tox-button:disabled,
3602
.swal2-popup .swal2-actions button:disabled,
3603
.fc .fc-button-primary:disabled,
3604
.btn.disabled,
3605
.wizard>.actions a.disabled,
3606
div.tox .disabled.tox-button,
3607
.swal2-popup .swal2-actions button.disabled,
3608
.fc .disabled.fc-button-primary,
3609
fieldset:disabled .btn,
3610
fieldset:disabled .wizard>.actions a,
3611
.wizard>.actions fieldset:disabled a,
3612
fieldset:disabled div.tox .tox-button,
3613
div.tox fieldset:disabled .tox-button,
3614
fieldset:disabled .swal2-popup .swal2-actions button,
3615
.swal2-popup .swal2-actions fieldset:disabled button,
3616
fieldset:disabled .fc .fc-button-primary,
3617
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3618
  color: var(--bs-btn-disabled-color);
3619
  pointer-events: none;
3620
  background-color: var(--bs-btn-disabled-bg);
3621
  border-color: var(--bs-btn-disabled-border-color);
3622
  opacity: var(--bs-btn-disabled-opacity);
3623
}
3624
 
16848 stevensc 3625
.btn-primary,
3626
.wizard>.actions a,
3627
.wizard>.actions a:active,
3628
.wizard>.actions a:hover,
3629
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3630
.swal2-popup .swal2-actions button.swal2-confirm,
3631
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3632
.fc .fc-button-primary:not(:disabled):active {
3633
  --bs-btn-color: #fff;
3634
  --bs-btn-bg: #6571ff;
3635
  --bs-btn-border-color: #6571ff;
3636
  --bs-btn-hover-color: #fff;
3637
  --bs-btn-hover-bg: #5660d9;
3638
  --bs-btn-hover-border-color: #515acc;
3639
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3640
  --bs-btn-active-color: #fff;
3641
  --bs-btn-active-bg: #515acc;
3642
  --bs-btn-active-border-color: #4c55bf;
3643
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3644
  --bs-btn-disabled-color: #fff;
3645
  --bs-btn-disabled-bg: #6571ff;
3646
  --bs-btn-disabled-border-color: #6571ff;
3647
}
3648
 
16848 stevensc 3649
.btn-secondary,
3650
div.tox .tox-button--secondary {
16825 efrain 3651
  --bs-btn-color: #fff;
3652
  --bs-btn-bg: #7987a1;
3653
  --bs-btn-border-color: #7987a1;
3654
  --bs-btn-hover-color: #fff;
3655
  --bs-btn-hover-bg: #677389;
3656
  --bs-btn-hover-border-color: #616c81;
3657
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3658
  --bs-btn-active-color: #fff;
3659
  --bs-btn-active-bg: #616c81;
3660
  --bs-btn-active-border-color: #5b6579;
3661
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3662
  --bs-btn-disabled-color: #fff;
3663
  --bs-btn-disabled-bg: #7987a1;
3664
  --bs-btn-disabled-border-color: #7987a1;
3665
}
3666
 
3667
.btn-success {
3668
  --bs-btn-color: #fff;
3669
  --bs-btn-bg: #05a34a;
3670
  --bs-btn-border-color: #05a34a;
3671
  --bs-btn-hover-color: #fff;
3672
  --bs-btn-hover-bg: #048b3f;
3673
  --bs-btn-hover-border-color: #04823b;
3674
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3675
  --bs-btn-active-color: #fff;
3676
  --bs-btn-active-bg: #04823b;
3677
  --bs-btn-active-border-color: #047a38;
3678
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3679
  --bs-btn-disabled-color: #fff;
3680
  --bs-btn-disabled-bg: #05a34a;
3681
  --bs-btn-disabled-border-color: #05a34a;
3682
}
3683
 
3684
.btn-info {
3685
  --bs-btn-color: #000;
3686
  --bs-btn-bg: #66d1d1;
3687
  --bs-btn-border-color: #66d1d1;
3688
  --bs-btn-hover-color: #000;
3689
  --bs-btn-hover-bg: #7dd8d8;
3690
  --bs-btn-hover-border-color: #75d6d6;
3691
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3692
  --bs-btn-active-color: #000;
3693
  --bs-btn-active-bg: #85dada;
3694
  --bs-btn-active-border-color: #75d6d6;
3695
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3696
  --bs-btn-disabled-color: #000;
3697
  --bs-btn-disabled-bg: #66d1d1;
3698
  --bs-btn-disabled-border-color: #66d1d1;
3699
}
3700
 
3701
.btn-warning {
3702
  --bs-btn-color: #000;
3703
  --bs-btn-bg: #fbbc06;
3704
  --bs-btn-border-color: #fbbc06;
3705
  --bs-btn-hover-color: #000;
3706
  --bs-btn-hover-bg: #fcc62b;
3707
  --bs-btn-hover-border-color: #fbc31f;
3708
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3709
  --bs-btn-active-color: #000;
3710
  --bs-btn-active-bg: #fcc938;
3711
  --bs-btn-active-border-color: #fbc31f;
3712
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3713
  --bs-btn-disabled-color: #000;
3714
  --bs-btn-disabled-bg: #fbbc06;
3715
  --bs-btn-disabled-border-color: #fbbc06;
3716
}
3717
 
16848 stevensc 3718
.btn-danger,
3719
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3720
  --bs-btn-color: #fff;
3721
  --bs-btn-bg: #ff3366;
3722
  --bs-btn-border-color: #ff3366;
3723
  --bs-btn-hover-color: #fff;
3724
  --bs-btn-hover-bg: #d92b57;
3725
  --bs-btn-hover-border-color: #cc2952;
3726
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3727
  --bs-btn-active-color: #fff;
3728
  --bs-btn-active-bg: #cc2952;
3729
  --bs-btn-active-border-color: #bf264d;
3730
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3731
  --bs-btn-disabled-color: #fff;
3732
  --bs-btn-disabled-bg: #ff3366;
3733
  --bs-btn-disabled-border-color: #ff3366;
3734
}
3735
 
3736
.btn-light {
3737
  --bs-btn-color: #000;
3738
  --bs-btn-bg: #e9ecef;
3739
  --bs-btn-border-color: #e9ecef;
3740
  --bs-btn-hover-color: #000;
3741
  --bs-btn-hover-bg: #c6c9cb;
3742
  --bs-btn-hover-border-color: #babdbf;
3743
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3744
  --bs-btn-active-color: #000;
3745
  --bs-btn-active-bg: #babdbf;
3746
  --bs-btn-active-border-color: #afb1b3;
3747
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3748
  --bs-btn-disabled-color: #000;
3749
  --bs-btn-disabled-bg: #e9ecef;
3750
  --bs-btn-disabled-border-color: #e9ecef;
3751
}
3752
 
3753
.btn-dark {
3754
  --bs-btn-color: #fff;
3755
  --bs-btn-bg: #060c17;
3756
  --bs-btn-border-color: #060c17;
3757
  --bs-btn-hover-color: #fff;
3758
  --bs-btn-hover-bg: #2b303a;
3759
  --bs-btn-hover-border-color: #1f242e;
3760
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3761
  --bs-btn-active-color: #fff;
3762
  --bs-btn-active-bg: #383d45;
3763
  --bs-btn-active-border-color: #1f242e;
3764
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3765
  --bs-btn-disabled-color: #fff;
3766
  --bs-btn-disabled-bg: #060c17;
3767
  --bs-btn-disabled-border-color: #060c17;
3768
}
3769
 
16848 stevensc 3770
.btn-outline-primary,
3771
.fc .fc-button-primary {
16825 efrain 3772
  --bs-btn-color: #6571ff;
3773
  --bs-btn-border-color: #6571ff;
3774
  --bs-btn-hover-color: #fff;
3775
  --bs-btn-hover-bg: #6571ff;
3776
  --bs-btn-hover-border-color: #6571ff;
3777
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3778
  --bs-btn-active-color: #fff;
3779
  --bs-btn-active-bg: #6571ff;
3780
  --bs-btn-active-border-color: #6571ff;
3781
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3782
  --bs-btn-disabled-color: #6571ff;
3783
  --bs-btn-disabled-bg: transparent;
3784
  --bs-btn-disabled-border-color: #6571ff;
3785
  --bs-gradient: none;
3786
}
3787
 
3788
.btn-outline-secondary {
3789
  --bs-btn-color: #7987a1;
3790
  --bs-btn-border-color: #7987a1;
3791
  --bs-btn-hover-color: #fff;
3792
  --bs-btn-hover-bg: #7987a1;
3793
  --bs-btn-hover-border-color: #7987a1;
3794
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3795
  --bs-btn-active-color: #fff;
3796
  --bs-btn-active-bg: #7987a1;
3797
  --bs-btn-active-border-color: #7987a1;
3798
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3799
  --bs-btn-disabled-color: #7987a1;
3800
  --bs-btn-disabled-bg: transparent;
3801
  --bs-btn-disabled-border-color: #7987a1;
3802
  --bs-gradient: none;
3803
}
3804
 
3805
.btn-outline-success {
3806
  --bs-btn-color: #05a34a;
3807
  --bs-btn-border-color: #05a34a;
3808
  --bs-btn-hover-color: #fff;
3809
  --bs-btn-hover-bg: #05a34a;
3810
  --bs-btn-hover-border-color: #05a34a;
3811
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3812
  --bs-btn-active-color: #fff;
3813
  --bs-btn-active-bg: #05a34a;
3814
  --bs-btn-active-border-color: #05a34a;
3815
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3816
  --bs-btn-disabled-color: #05a34a;
3817
  --bs-btn-disabled-bg: transparent;
3818
  --bs-btn-disabled-border-color: #05a34a;
3819
  --bs-gradient: none;
3820
}
3821
 
3822
.btn-outline-info {
3823
  --bs-btn-color: #66d1d1;
3824
  --bs-btn-border-color: #66d1d1;
3825
  --bs-btn-hover-color: #000;
3826
  --bs-btn-hover-bg: #66d1d1;
3827
  --bs-btn-hover-border-color: #66d1d1;
3828
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3829
  --bs-btn-active-color: #000;
3830
  --bs-btn-active-bg: #66d1d1;
3831
  --bs-btn-active-border-color: #66d1d1;
3832
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3833
  --bs-btn-disabled-color: #66d1d1;
3834
  --bs-btn-disabled-bg: transparent;
3835
  --bs-btn-disabled-border-color: #66d1d1;
3836
  --bs-gradient: none;
3837
}
3838
 
3839
.btn-outline-warning {
3840
  --bs-btn-color: #fbbc06;
3841
  --bs-btn-border-color: #fbbc06;
3842
  --bs-btn-hover-color: #000;
3843
  --bs-btn-hover-bg: #fbbc06;
3844
  --bs-btn-hover-border-color: #fbbc06;
3845
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3846
  --bs-btn-active-color: #000;
3847
  --bs-btn-active-bg: #fbbc06;
3848
  --bs-btn-active-border-color: #fbbc06;
3849
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3850
  --bs-btn-disabled-color: #fbbc06;
3851
  --bs-btn-disabled-bg: transparent;
3852
  --bs-btn-disabled-border-color: #fbbc06;
3853
  --bs-gradient: none;
3854
}
3855
 
3856
.btn-outline-danger {
3857
  --bs-btn-color: #ff3366;
3858
  --bs-btn-border-color: #ff3366;
3859
  --bs-btn-hover-color: #fff;
3860
  --bs-btn-hover-bg: #ff3366;
3861
  --bs-btn-hover-border-color: #ff3366;
3862
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3863
  --bs-btn-active-color: #fff;
3864
  --bs-btn-active-bg: #ff3366;
3865
  --bs-btn-active-border-color: #ff3366;
3866
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3867
  --bs-btn-disabled-color: #ff3366;
3868
  --bs-btn-disabled-bg: transparent;
3869
  --bs-btn-disabled-border-color: #ff3366;
3870
  --bs-gradient: none;
3871
}
3872
 
3873
.btn-outline-light {
3874
  --bs-btn-color: #e9ecef;
3875
  --bs-btn-border-color: #e9ecef;
3876
  --bs-btn-hover-color: #000;
3877
  --bs-btn-hover-bg: #e9ecef;
3878
  --bs-btn-hover-border-color: #e9ecef;
3879
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3880
  --bs-btn-active-color: #000;
3881
  --bs-btn-active-bg: #e9ecef;
3882
  --bs-btn-active-border-color: #e9ecef;
3883
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3884
  --bs-btn-disabled-color: #e9ecef;
3885
  --bs-btn-disabled-bg: transparent;
3886
  --bs-btn-disabled-border-color: #e9ecef;
3887
  --bs-gradient: none;
3888
}
3889
 
3890
.btn-outline-dark {
3891
  --bs-btn-color: #060c17;
3892
  --bs-btn-border-color: #060c17;
3893
  --bs-btn-hover-color: #fff;
3894
  --bs-btn-hover-bg: #060c17;
3895
  --bs-btn-hover-border-color: #060c17;
3896
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3897
  --bs-btn-active-color: #fff;
3898
  --bs-btn-active-bg: #060c17;
3899
  --bs-btn-active-border-color: #060c17;
3900
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3901
  --bs-btn-disabled-color: #060c17;
3902
  --bs-btn-disabled-bg: transparent;
3903
  --bs-btn-disabled-border-color: #060c17;
3904
  --bs-gradient: none;
3905
}
3906
 
3907
.btn-link {
3908
  --bs-btn-font-weight: 400;
3909
  --bs-btn-color: var(--bs-link-color);
3910
  --bs-btn-bg: transparent;
3911
  --bs-btn-border-color: transparent;
3912
  --bs-btn-hover-color: var(--bs-link-hover-color);
3913
  --bs-btn-hover-border-color: transparent;
3914
  --bs-btn-active-color: var(--bs-link-hover-color);
3915
  --bs-btn-active-border-color: transparent;
3916
  --bs-btn-disabled-color: #7987a1;
3917
  --bs-btn-disabled-border-color: transparent;
3918
  --bs-btn-box-shadow: none;
3919
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3920
  text-decoration: none;
3921
}
16848 stevensc 3922
 
16825 efrain 3923
.btn-link:focus-visible {
3924
  color: var(--bs-btn-color);
3925
}
16848 stevensc 3926
 
16825 efrain 3927
.btn-link:hover {
3928
  color: var(--bs-btn-hover-color);
3929
}
3930
 
16848 stevensc 3931
.btn-lg,
3932
.btn-group-lg>.btn,
3933
.wizard>.actions .btn-group-lg>a,
3934
div.tox .btn-group-lg>.tox-button,
3935
.swal2-popup .swal2-actions .btn-group-lg>button,
3936
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3937
  --bs-btn-padding-y: 0.5rem;
3938
  --bs-btn-padding-x: 0.8rem;
3939
  --bs-btn-font-size: 1rem;
3940
  --bs-btn-border-radius: 0.25rem;
3941
}
3942
 
16848 stevensc 3943
.btn-sm,
3944
.fc .fc-button-primary,
3945
.btn-group-sm>.btn,
3946
.wizard>.actions .btn-group-sm>a,
3947
div.tox .btn-group-sm>.tox-button,
3948
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3949
  --bs-btn-padding-y: 0.391rem;
3950
  --bs-btn-padding-x: 0.8rem;
3951
  --bs-btn-font-size: 0.812rem;
3952
  --bs-btn-border-radius: 0.25rem;
3953
}
3954
 
3955
.fade {
3956
  transition: opacity 0.15s linear;
3957
}
16848 stevensc 3958
 
16825 efrain 3959
@media (prefers-reduced-motion: reduce) {
3960
  .fade {
3961
    transition: none;
3962
  }
3963
}
16848 stevensc 3964
 
16825 efrain 3965
.fade:not(.show) {
3966
  opacity: 0;
3967
}
3968
 
3969
.collapse:not(.show) {
3970
  display: none;
3971
}
3972
 
3973
.collapsing {
3974
  height: 0;
3975
  overflow: hidden;
3976
  transition: height 0.35s ease;
3977
}
16848 stevensc 3978
 
16825 efrain 3979
@media (prefers-reduced-motion: reduce) {
3980
  .collapsing {
3981
    transition: none;
3982
  }
3983
}
16848 stevensc 3984
 
16825 efrain 3985
.collapsing.collapse-horizontal {
3986
  width: 0;
3987
  height: auto;
3988
  transition: width 0.35s ease;
3989
}
16848 stevensc 3990
 
16825 efrain 3991
@media (prefers-reduced-motion: reduce) {
3992
  .collapsing.collapse-horizontal {
3993
    transition: none;
3994
  }
3995
}
3996
 
3997
.dropup,
3998
.dropend,
3999
.dropdown,
4000
.dropstart,
4001
.dropup-center,
4002
.dropdown-center {
4003
  position: relative;
4004
}
4005
 
4006
.dropdown-toggle {
4007
  white-space: nowrap;
4008
}
16848 stevensc 4009
 
16825 efrain 4010
.dropdown-toggle::after {
4011
  display: inline-block;
4012
  margin-left: 0.255em;
4013
  vertical-align: 0.255em;
4014
  content: "";
4015
  border-top: 0.3em solid;
4016
  border-right: 0.3em solid transparent;
4017
  border-bottom: 0;
4018
  border-left: 0.3em solid transparent;
4019
}
16848 stevensc 4020
 
16825 efrain 4021
.dropdown-toggle:empty::after {
4022
  margin-left: 0;
4023
}
4024
 
16848 stevensc 4025
.dropdown-menu,
4026
.tt-menu {
16825 efrain 4027
  --bs-dropdown-zindex: 1000;
4028
  --bs-dropdown-min-width: 10rem;
4029
  --bs-dropdown-padding-x: 0;
4030
  --bs-dropdown-padding-y: 0.5rem;
4031
  --bs-dropdown-spacer: 0.125rem;
4032
  --bs-dropdown-font-size: 0.875rem;
4033
  --bs-dropdown-color: #000;
4034
  --bs-dropdown-bg: #fff;
4035
  --bs-dropdown-border-color: #f2f4f9;
4036
  --bs-dropdown-border-radius: 0.25rem;
4037
  --bs-dropdown-border-width: 1px;
4038
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4039
  --bs-dropdown-divider-bg: #f2f4f9;
4040
  --bs-dropdown-divider-margin-y: 0.5rem;
4041
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4042
  --bs-dropdown-link-color: #060c17;
4043
  --bs-dropdown-link-hover-color: #050b15;
4044
  --bs-dropdown-link-hover-bg: #e9ecef;
4045
  --bs-dropdown-link-active-color: #fff;
4046
  --bs-dropdown-link-active-bg: #6571ff;
4047
  --bs-dropdown-link-disabled-color: #aeb7c5;
4048
  --bs-dropdown-item-padding-x: 1rem;
4049
  --bs-dropdown-item-padding-y: 0.25rem;
4050
  --bs-dropdown-header-color: #7987a1;
4051
  --bs-dropdown-header-padding-x: 1rem;
4052
  --bs-dropdown-header-padding-y: 0.5rem;
4053
  position: absolute;
4054
  z-index: var(--bs-dropdown-zindex);
4055
  display: none;
4056
  min-width: var(--bs-dropdown-min-width);
4057
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4058
  margin: 0;
4059
  font-size: var(--bs-dropdown-font-size);
4060
  color: var(--bs-dropdown-color);
4061
  text-align: left;
4062
  list-style: none;
4063
  background-color: var(--bs-dropdown-bg);
4064
  background-clip: padding-box;
4065
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4066
  border-radius: var(--bs-dropdown-border-radius);
4067
}
16848 stevensc 4068
 
4069
.dropdown-menu[data-bs-popper],
4070
[data-bs-popper].tt-menu {
16825 efrain 4071
  top: 100%;
4072
  left: 0;
4073
  margin-top: var(--bs-dropdown-spacer);
4074
}
4075
 
4076
.dropdown-menu-start {
4077
  --bs-position: start;
4078
}
16848 stevensc 4079
 
16825 efrain 4080
.dropdown-menu-start[data-bs-popper] {
4081
  right: auto;
4082
  left: 0;
4083
}
4084
 
4085
.dropdown-menu-end {
4086
  --bs-position: end;
4087
}
16848 stevensc 4088
 
16825 efrain 4089
.dropdown-menu-end[data-bs-popper] {
4090
  right: 0;
4091
  left: auto;
4092
}
4093
 
4094
@media (min-width: 576px) {
4095
  .dropdown-menu-sm-start {
4096
    --bs-position: start;
4097
  }
16848 stevensc 4098
 
16825 efrain 4099
  .dropdown-menu-sm-start[data-bs-popper] {
4100
    right: auto;
4101
    left: 0;
4102
  }
16848 stevensc 4103
 
16825 efrain 4104
  .dropdown-menu-sm-end {
4105
    --bs-position: end;
4106
  }
16848 stevensc 4107
 
16825 efrain 4108
  .dropdown-menu-sm-end[data-bs-popper] {
4109
    right: 0;
4110
    left: auto;
4111
  }
4112
}
16848 stevensc 4113
 
16825 efrain 4114
@media (min-width: 768px) {
4115
  .dropdown-menu-md-start {
4116
    --bs-position: start;
4117
  }
16848 stevensc 4118
 
16825 efrain 4119
  .dropdown-menu-md-start[data-bs-popper] {
4120
    right: auto;
4121
    left: 0;
4122
  }
16848 stevensc 4123
 
16825 efrain 4124
  .dropdown-menu-md-end {
4125
    --bs-position: end;
4126
  }
16848 stevensc 4127
 
16825 efrain 4128
  .dropdown-menu-md-end[data-bs-popper] {
4129
    right: 0;
4130
    left: auto;
4131
  }
4132
}
16848 stevensc 4133
 
16825 efrain 4134
@media (min-width: 992px) {
4135
  .dropdown-menu-lg-start {
4136
    --bs-position: start;
4137
  }
16848 stevensc 4138
 
16825 efrain 4139
  .dropdown-menu-lg-start[data-bs-popper] {
4140
    right: auto;
4141
    left: 0;
4142
  }
16848 stevensc 4143
 
16825 efrain 4144
  .dropdown-menu-lg-end {
4145
    --bs-position: end;
4146
  }
16848 stevensc 4147
 
16825 efrain 4148
  .dropdown-menu-lg-end[data-bs-popper] {
4149
    right: 0;
4150
    left: auto;
4151
  }
4152
}
16848 stevensc 4153
 
16825 efrain 4154
@media (min-width: 1200px) {
4155
  .dropdown-menu-xl-start {
4156
    --bs-position: start;
4157
  }
16848 stevensc 4158
 
16825 efrain 4159
  .dropdown-menu-xl-start[data-bs-popper] {
4160
    right: auto;
4161
    left: 0;
4162
  }
16848 stevensc 4163
 
16825 efrain 4164
  .dropdown-menu-xl-end {
4165
    --bs-position: end;
4166
  }
16848 stevensc 4167
 
16825 efrain 4168
  .dropdown-menu-xl-end[data-bs-popper] {
4169
    right: 0;
4170
    left: auto;
4171
  }
4172
}
16848 stevensc 4173
 
16825 efrain 4174
@media (min-width: 1400px) {
4175
  .dropdown-menu-xxl-start {
4176
    --bs-position: start;
4177
  }
16848 stevensc 4178
 
16825 efrain 4179
  .dropdown-menu-xxl-start[data-bs-popper] {
4180
    right: auto;
4181
    left: 0;
4182
  }
16848 stevensc 4183
 
16825 efrain 4184
  .dropdown-menu-xxl-end {
4185
    --bs-position: end;
4186
  }
16848 stevensc 4187
 
16825 efrain 4188
  .dropdown-menu-xxl-end[data-bs-popper] {
4189
    right: 0;
4190
    left: auto;
4191
  }
4192
}
16848 stevensc 4193
 
4194
.dropup .dropdown-menu[data-bs-popper],
4195
.dropup [data-bs-popper].tt-menu {
16825 efrain 4196
  top: auto;
4197
  bottom: 100%;
4198
  margin-top: 0;
4199
  margin-bottom: var(--bs-dropdown-spacer);
4200
}
16848 stevensc 4201
 
16825 efrain 4202
.dropup .dropdown-toggle::after {
4203
  display: inline-block;
4204
  margin-left: 0.255em;
4205
  vertical-align: 0.255em;
4206
  content: "";
4207
  border-top: 0;
4208
  border-right: 0.3em solid transparent;
4209
  border-bottom: 0.3em solid;
4210
  border-left: 0.3em solid transparent;
4211
}
16848 stevensc 4212
 
16825 efrain 4213
.dropup .dropdown-toggle:empty::after {
4214
  margin-left: 0;
4215
}
4216
 
16848 stevensc 4217
.dropend .dropdown-menu[data-bs-popper],
4218
.dropend [data-bs-popper].tt-menu {
16825 efrain 4219
  top: 0;
4220
  right: auto;
4221
  left: 100%;
4222
  margin-top: 0;
4223
  margin-left: var(--bs-dropdown-spacer);
4224
}
16848 stevensc 4225
 
16825 efrain 4226
.dropend .dropdown-toggle::after {
4227
  display: inline-block;
4228
  margin-left: 0.255em;
4229
  vertical-align: 0.255em;
4230
  content: "";
4231
  border-top: 0.3em solid transparent;
4232
  border-right: 0;
4233
  border-bottom: 0.3em solid transparent;
4234
  border-left: 0.3em solid;
4235
}
16848 stevensc 4236
 
16825 efrain 4237
.dropend .dropdown-toggle:empty::after {
4238
  margin-left: 0;
4239
}
16848 stevensc 4240
 
16825 efrain 4241
.dropend .dropdown-toggle::after {
4242
  vertical-align: 0;
4243
}
4244
 
16848 stevensc 4245
.dropstart .dropdown-menu[data-bs-popper],
4246
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4247
  top: 0;
4248
  right: 100%;
4249
  left: auto;
4250
  margin-top: 0;
4251
  margin-right: var(--bs-dropdown-spacer);
4252
}
16848 stevensc 4253
 
16825 efrain 4254
.dropstart .dropdown-toggle::after {
4255
  display: inline-block;
4256
  margin-left: 0.255em;
4257
  vertical-align: 0.255em;
4258
  content: "";
4259
}
16848 stevensc 4260
 
16825 efrain 4261
.dropstart .dropdown-toggle::after {
4262
  display: none;
4263
}
16848 stevensc 4264
 
16825 efrain 4265
.dropstart .dropdown-toggle::before {
4266
  display: inline-block;
4267
  margin-right: 0.255em;
4268
  vertical-align: 0.255em;
4269
  content: "";
4270
  border-top: 0.3em solid transparent;
4271
  border-right: 0.3em solid;
4272
  border-bottom: 0.3em solid transparent;
4273
}
16848 stevensc 4274
 
16825 efrain 4275
.dropstart .dropdown-toggle:empty::after {
4276
  margin-left: 0;
4277
}
16848 stevensc 4278
 
16825 efrain 4279
.dropstart .dropdown-toggle::before {
4280
  vertical-align: 0;
4281
}
4282
 
4283
.dropdown-divider {
4284
  height: 0;
4285
  margin: var(--bs-dropdown-divider-margin-y) 0;
4286
  overflow: hidden;
4287
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4288
  opacity: 1;
4289
}
4290
 
16848 stevensc 4291
.dropdown-item,
4292
.tt-menu .tt-suggestion {
16825 efrain 4293
  display: block;
4294
  width: 100%;
4295
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4296
  clear: both;
4297
  font-weight: 400;
4298
  color: var(--bs-dropdown-link-color);
4299
  text-align: inherit;
4300
  white-space: nowrap;
4301
  background-color: transparent;
4302
  border: 0;
4303
}
16848 stevensc 4304
 
4305
.dropdown-item:hover,
4306
.tt-menu .tt-suggestion:hover,
4307
.dropdown-item:focus,
4308
.tt-menu .tt-suggestion:focus {
16825 efrain 4309
  color: var(--bs-dropdown-link-hover-color);
4310
  background-color: var(--bs-dropdown-link-hover-bg);
4311
}
16848 stevensc 4312
 
4313
.dropdown-item.active,
4314
.tt-menu .active.tt-suggestion,
4315
.dropdown-item:active,
4316
.tt-menu .tt-suggestion:active {
16825 efrain 4317
  color: var(--bs-dropdown-link-active-color);
4318
  text-decoration: none;
4319
  background-color: var(--bs-dropdown-link-active-bg);
4320
}
16848 stevensc 4321
 
4322
.dropdown-item.disabled,
4323
.tt-menu .disabled.tt-suggestion,
4324
.dropdown-item:disabled,
4325
.tt-menu .tt-suggestion:disabled {
16825 efrain 4326
  color: var(--bs-dropdown-link-disabled-color);
4327
  pointer-events: none;
4328
  background-color: transparent;
4329
}
4330
 
16848 stevensc 4331
.dropdown-menu.show,
4332
.show.tt-menu {
16825 efrain 4333
  display: block;
4334
}
4335
 
4336
.dropdown-header {
4337
  display: block;
4338
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4339
  margin-bottom: 0;
4340
  font-size: 0.812rem;
4341
  color: var(--bs-dropdown-header-color);
4342
  white-space: nowrap;
4343
}
4344
 
4345
.dropdown-item-text {
4346
  display: block;
4347
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4348
  color: var(--bs-dropdown-link-color);
4349
}
4350
 
4351
.dropdown-menu-dark {
4352
  --bs-dropdown-color: #dee2e6;
4353
  --bs-dropdown-bg: #212a3a;
4354
  --bs-dropdown-border-color: #f2f4f9;
4355
  --bs-dropdown-box-shadow: ;
4356
  --bs-dropdown-link-color: #dee2e6;
4357
  --bs-dropdown-link-hover-color: #fff;
4358
  --bs-dropdown-divider-bg: #f2f4f9;
4359
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4360
  --bs-dropdown-link-active-color: #fff;
4361
  --bs-dropdown-link-active-bg: #6571ff;
4362
  --bs-dropdown-link-disabled-color: #aeb7c5;
4363
  --bs-dropdown-header-color: #aeb7c5;
4364
}
4365
 
4366
.btn-group,
4367
.btn-group-vertical {
4368
  position: relative;
4369
  display: inline-flex;
4370
  vertical-align: middle;
4371
}
16848 stevensc 4372
 
4373
.btn-group>.btn,
4374
.wizard>.actions .btn-group>a,
4375
div.tox .btn-group>.tox-button,
4376
.swal2-popup .swal2-actions .btn-group>button,
4377
.fc .btn-group>.fc-button-primary,
4378
.btn-group-vertical>.btn,
4379
.wizard>.actions .btn-group-vertical>a,
4380
div.tox .btn-group-vertical>.tox-button,
4381
.swal2-popup .swal2-actions .btn-group-vertical>button,
4382
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4383
  position: relative;
4384
  flex: 1 1 auto;
4385
}
16848 stevensc 4386
 
4387
.btn-group>.btn-check:checked+.btn,
4388
.wizard>.actions .btn-group>.btn-check:checked+a,
4389
div.tox .btn-group>.btn-check:checked+.tox-button,
4390
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4391
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4392
.btn-group>.btn-check:focus+.btn,
4393
.wizard>.actions .btn-group>.btn-check:focus+a,
4394
div.tox .btn-group>.btn-check:focus+.tox-button,
4395
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4396
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4397
.btn-group>.btn:hover,
4398
.wizard>.actions .btn-group>a:hover,
4399
div.tox .btn-group>.tox-button:hover,
4400
.swal2-popup .swal2-actions .btn-group>button:hover,
4401
.fc .btn-group>.fc-button-primary:hover,
4402
.btn-group>.btn:focus,
4403
.wizard>.actions .btn-group>a:focus,
4404
div.tox .btn-group>.tox-button:focus,
4405
.swal2-popup .swal2-actions .btn-group>button:focus,
4406
.fc .btn-group>.fc-button-primary:focus,
4407
.btn-group>.btn:active,
4408
.wizard>.actions .btn-group>a:active,
4409
div.tox .btn-group>.tox-button:active,
4410
.swal2-popup .swal2-actions .btn-group>button:active,
4411
.fc .btn-group>.fc-button-primary:active,
4412
.btn-group>.btn.active,
4413
.wizard>.actions .btn-group>a.active,
4414
div.tox .btn-group>.active.tox-button,
4415
.swal2-popup .swal2-actions .btn-group>button.active,
4416
.fc .btn-group>.active.fc-button-primary,
4417
.btn-group-vertical>.btn-check:checked+.btn,
4418
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4419
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4420
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4421
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4422
.btn-group-vertical>.btn-check:focus+.btn,
4423
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4424
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4425
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4426
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4427
.btn-group-vertical>.btn:hover,
4428
.wizard>.actions .btn-group-vertical>a:hover,
4429
div.tox .btn-group-vertical>.tox-button:hover,
4430
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4431
.fc .btn-group-vertical>.fc-button-primary:hover,
4432
.btn-group-vertical>.btn:focus,
4433
.wizard>.actions .btn-group-vertical>a:focus,
4434
div.tox .btn-group-vertical>.tox-button:focus,
4435
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4436
.fc .btn-group-vertical>.fc-button-primary:focus,
4437
.btn-group-vertical>.btn:active,
4438
.wizard>.actions .btn-group-vertical>a:active,
4439
div.tox .btn-group-vertical>.tox-button:active,
4440
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4441
.fc .btn-group-vertical>.fc-button-primary:active,
4442
.btn-group-vertical>.btn.active,
4443
.wizard>.actions .btn-group-vertical>a.active,
4444
div.tox .btn-group-vertical>.active.tox-button,
4445
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4446
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4447
  z-index: 1;
4448
}
4449
 
4450
.btn-toolbar {
4451
  display: flex;
4452
  flex-wrap: wrap;
4453
  justify-content: flex-start;
4454
}
16848 stevensc 4455
 
16825 efrain 4456
.btn-toolbar .input-group {
4457
  width: auto;
4458
}
4459
 
4460
.btn-group {
4461
  border-radius: 0.25rem;
4462
}
16848 stevensc 4463
 
4464
.btn-group> :not(.btn-check:first-child)+.btn,
4465
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4466
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4467
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4468
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4469
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4470
  margin-left: -1px;
4471
}
16848 stevensc 4472
 
4473
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4474
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4475
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4476
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4477
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4478
.btn-group>.btn.dropdown-toggle-split:first-child,
4479
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4480
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4481
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4482
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4483
.btn-group>.btn-group:not(:last-child)>.btn,
4484
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4485
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4486
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4487
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4488
  border-top-right-radius: 0;
4489
  border-bottom-right-radius: 0;
4490
}
16848 stevensc 4491
 
4492
.btn-group>.btn:nth-child(n+3),
4493
.wizard>.actions .btn-group>a:nth-child(n+3),
4494
div.tox .btn-group>.tox-button:nth-child(n+3),
4495
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4496
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4497
.btn-group> :not(.btn-check)+.btn,
4498
.wizard>.actions .btn-group> :not(.btn-check)+a,
4499
div.tox .btn-group> :not(.btn-check)+.tox-button,
4500
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4501
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4502
.btn-group>.btn-group:not(:first-child)>.btn,
4503
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4504
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4505
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4506
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4507
  border-top-left-radius: 0;
4508
  border-bottom-left-radius: 0;
4509
}
4510
 
4511
.dropdown-toggle-split {
4512
  padding-right: 0.6rem;
4513
  padding-left: 0.6rem;
4514
}
16848 stevensc 4515
 
4516
.dropdown-toggle-split::after,
4517
.dropup .dropdown-toggle-split::after,
4518
.dropend .dropdown-toggle-split::after {
16825 efrain 4519
  margin-left: 0;
4520
}
16848 stevensc 4521
 
16825 efrain 4522
.dropstart .dropdown-toggle-split::before {
4523
  margin-right: 0;
4524
}
4525
 
16848 stevensc 4526
.btn-sm+.dropdown-toggle-split,
4527
.fc .fc-button-primary+.dropdown-toggle-split,
4528
.btn-group-sm>.btn+.dropdown-toggle-split,
4529
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4530
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4531
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4532
  padding-right: 0.6rem;
4533
  padding-left: 0.6rem;
4534
}
4535
 
16848 stevensc 4536
.btn-lg+.dropdown-toggle-split,
4537
.btn-group-lg>.btn+.dropdown-toggle-split,
4538
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4539
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4540
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4541
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4542
  padding-right: 0.6rem;
4543
  padding-left: 0.6rem;
4544
}
4545
 
4546
.btn-group-vertical {
4547
  flex-direction: column;
4548
  align-items: flex-start;
4549
  justify-content: center;
4550
}
16848 stevensc 4551
 
4552
.btn-group-vertical>.btn,
4553
.wizard>.actions .btn-group-vertical>a,
4554
div.tox .btn-group-vertical>.tox-button,
4555
.swal2-popup .swal2-actions .btn-group-vertical>button,
4556
.fc .btn-group-vertical>.fc-button-primary,
4557
.btn-group-vertical>.btn-group {
16825 efrain 4558
  width: 100%;
4559
}
16848 stevensc 4560
 
4561
.btn-group-vertical>.btn:not(:first-child),
4562
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4563
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4564
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4565
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4566
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4567
  margin-top: -1px;
4568
}
16848 stevensc 4569
 
4570
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4571
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4572
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4573
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4574
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4575
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4576
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4577
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4578
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4579
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4580
  border-bottom-right-radius: 0;
4581
  border-bottom-left-radius: 0;
4582
}
16848 stevensc 4583
 
4584
.btn-group-vertical>.btn~.btn,
4585
.wizard>.actions .btn-group-vertical>a~.btn,
4586
.wizard>.actions .btn-group-vertical>.btn~a,
4587
.wizard>.actions .btn-group-vertical>a~a,
4588
div.tox .btn-group-vertical>.tox-button~.btn,
4589
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4590
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4591
div.tox .btn-group-vertical>.btn~.tox-button,
4592
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4593
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4594
div.tox .btn-group-vertical>.tox-button~.tox-button,
4595
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4596
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4597
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4598
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4599
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4600
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4601
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4602
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4603
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4604
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4605
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4606
.fc .btn-group-vertical>.fc-button-primary~.btn,
4607
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4608
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4609
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4610
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4611
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4612
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4613
.fc .btn-group-vertical>.btn~.fc-button-primary,
4614
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4615
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4616
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4617
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4618
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4619
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4620
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4621
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4622
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4623
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4624
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4625
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4626
  border-top-left-radius: 0;
4627
  border-top-right-radius: 0;
4628
}
4629
 
4630
.nav {
4631
  --bs-nav-link-padding-x: 1rem;
4632
  --bs-nav-link-padding-y: 0.5rem;
4633
  --bs-nav-link-font-weight: ;
4634
  --bs-nav-link-color: var(--bs-link-color);
4635
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4636
  --bs-nav-link-disabled-color: #7987a1;
4637
  display: flex;
4638
  flex-wrap: wrap;
4639
  padding-left: 0;
4640
  margin-bottom: 0;
4641
  list-style: none;
4642
}
4643
 
4644
.nav-link {
4645
  display: block;
4646
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4647
  font-size: var(--bs-nav-link-font-size);
4648
  font-weight: var(--bs-nav-link-font-weight);
4649
  color: var(--bs-nav-link-color);
4650
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4651
}
16848 stevensc 4652
 
16825 efrain 4653
@media (prefers-reduced-motion: reduce) {
4654
  .nav-link {
4655
    transition: none;
4656
  }
4657
}
16848 stevensc 4658
 
4659
.nav-link:hover,
4660
.nav-link:focus {
16825 efrain 4661
  color: var(--bs-nav-link-hover-color);
4662
}
16848 stevensc 4663
 
16825 efrain 4664
.nav-link.disabled {
4665
  color: var(--bs-nav-link-disabled-color);
4666
  pointer-events: none;
4667
  cursor: default;
4668
}
4669
 
4670
.nav-tabs {
4671
  --bs-nav-tabs-border-width: 1px;
4672
  --bs-nav-tabs-border-color: #dee2e6;
4673
  --bs-nav-tabs-border-radius: 0.25rem;
4674
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4675
  --bs-nav-tabs-link-active-color: #41516c;
4676
  --bs-nav-tabs-link-active-bg: #fff;
4677
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4678
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4679
}
16848 stevensc 4680
 
16825 efrain 4681
.nav-tabs .nav-link {
4682
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4683
  background: none;
4684
  border: var(--bs-nav-tabs-border-width) solid transparent;
4685
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4686
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4687
}
16848 stevensc 4688
 
4689
.nav-tabs .nav-link:hover,
4690
.nav-tabs .nav-link:focus {
16825 efrain 4691
  isolation: isolate;
4692
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4693
}
16848 stevensc 4694
 
4695
.nav-tabs .nav-link.disabled,
4696
.nav-tabs .nav-link:disabled {
16825 efrain 4697
  color: var(--bs-nav-link-disabled-color);
4698
  background-color: transparent;
4699
  border-color: transparent;
4700
}
16848 stevensc 4701
 
16825 efrain 4702
.nav-tabs .nav-link.active,
4703
.nav-tabs .nav-item.show .nav-link {
4704
  color: var(--bs-nav-tabs-link-active-color);
4705
  background-color: var(--bs-nav-tabs-link-active-bg);
4706
  border-color: var(--bs-nav-tabs-link-active-border-color);
4707
}
16848 stevensc 4708
 
4709
.nav-tabs .dropdown-menu,
4710
.nav-tabs .tt-menu {
16825 efrain 4711
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4712
  border-top-left-radius: 0;
4713
  border-top-right-radius: 0;
4714
}
4715
 
4716
.nav-pills {
4717
  --bs-nav-pills-border-radius: 0.25rem;
4718
  --bs-nav-pills-link-active-color: #fff;
4719
  --bs-nav-pills-link-active-bg: #6571ff;
4720
}
16848 stevensc 4721
 
16825 efrain 4722
.nav-pills .nav-link {
4723
  background: none;
4724
  border: 0;
4725
  border-radius: var(--bs-nav-pills-border-radius);
4726
}
16848 stevensc 4727
 
16825 efrain 4728
.nav-pills .nav-link:disabled {
4729
  color: var(--bs-nav-link-disabled-color);
4730
  background-color: transparent;
4731
  border-color: transparent;
4732
}
16848 stevensc 4733
 
16825 efrain 4734
.nav-pills .nav-link.active,
16848 stevensc 4735
.nav-pills .show>.nav-link {
16825 efrain 4736
  color: var(--bs-nav-pills-link-active-color);
4737
  background-color: var(--bs-nav-pills-link-active-bg);
4738
}
4739
 
16848 stevensc 4740
.nav-fill>.nav-link,
16825 efrain 4741
.nav-fill .nav-item {
4742
  flex: 1 1 auto;
4743
  text-align: center;
4744
}
4745
 
16848 stevensc 4746
.nav-justified>.nav-link,
16825 efrain 4747
.nav-justified .nav-item {
4748
  flex-basis: 0;
4749
  flex-grow: 1;
4750
  text-align: center;
4751
}
4752
 
4753
.nav-fill .nav-item .nav-link,
4754
.nav-justified .nav-item .nav-link {
4755
  width: 100%;
4756
}
4757
 
16848 stevensc 4758
.tab-content>.tab-pane {
16825 efrain 4759
  display: none;
4760
}
16848 stevensc 4761
 
4762
.tab-content>.active {
16825 efrain 4763
  display: block;
4764
}
4765
 
4766
.navbar {
4767
  --bs-navbar-padding-x: 0;
4768
  --bs-navbar-padding-y: 0.5rem;
4769
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4770
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4771
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4772
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4773
  --bs-navbar-brand-padding-y: 0.40625rem;
4774
  --bs-navbar-brand-margin-end: 1rem;
4775
  --bs-navbar-brand-font-size: 1rem;
4776
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4777
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4778
  --bs-navbar-nav-link-padding-x: 0.5rem;
4779
  --bs-navbar-toggler-padding-y: 0.25rem;
4780
  --bs-navbar-toggler-padding-x: 0.75rem;
4781
  --bs-navbar-toggler-font-size: 1rem;
4782
  --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");
4783
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4784
  --bs-navbar-toggler-border-radius: 0.25rem;
4785
  --bs-navbar-toggler-focus-width: 0;
4786
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4787
  position: relative;
4788
  display: flex;
4789
  flex-wrap: wrap;
4790
  align-items: center;
4791
  justify-content: space-between;
4792
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4793
}
16848 stevensc 4794
 
4795
.navbar>.container,
4796
.navbar>.container-fluid,
4797
.navbar>.container-sm,
4798
.navbar>.container-md,
4799
.navbar>.container-lg,
4800
.navbar>.container-xl,
4801
.navbar>.container-xxl {
16825 efrain 4802
  display: flex;
4803
  flex-wrap: inherit;
4804
  align-items: center;
4805
  justify-content: space-between;
4806
}
16848 stevensc 4807
 
16825 efrain 4808
.navbar-brand {
4809
  padding-top: var(--bs-navbar-brand-padding-y);
4810
  padding-bottom: var(--bs-navbar-brand-padding-y);
4811
  margin-right: var(--bs-navbar-brand-margin-end);
4812
  font-size: var(--bs-navbar-brand-font-size);
4813
  color: var(--bs-navbar-brand-color);
4814
  white-space: nowrap;
4815
}
16848 stevensc 4816
 
4817
.navbar-brand:hover,
4818
.navbar-brand:focus {
16825 efrain 4819
  color: var(--bs-navbar-brand-hover-color);
4820
}
4821
 
4822
.navbar-nav {
4823
  --bs-nav-link-padding-x: 0;
4824
  --bs-nav-link-padding-y: 0.5rem;
4825
  --bs-nav-link-font-weight: ;
4826
  --bs-nav-link-color: var(--bs-navbar-color);
4827
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4828
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4829
  display: flex;
4830
  flex-direction: column;
4831
  padding-left: 0;
4832
  margin-bottom: 0;
4833
  list-style: none;
4834
}
16848 stevensc 4835
 
4836
.navbar-nav .show>.nav-link,
16825 efrain 4837
.navbar-nav .nav-link.active {
4838
  color: var(--bs-navbar-active-color);
4839
}
16848 stevensc 4840
 
4841
.navbar-nav .dropdown-menu,
4842
.navbar-nav .tt-menu {
16825 efrain 4843
  position: static;
4844
}
4845
 
4846
.navbar-text {
4847
  padding-top: 0.5rem;
4848
  padding-bottom: 0.5rem;
4849
  color: var(--bs-navbar-color);
4850
}
16848 stevensc 4851
 
16825 efrain 4852
.navbar-text a,
4853
.navbar-text a:hover,
4854
.navbar-text a:focus {
4855
  color: var(--bs-navbar-active-color);
4856
}
4857
 
4858
.navbar-collapse {
4859
  flex-basis: 100%;
4860
  flex-grow: 1;
4861
  align-items: center;
4862
}
4863
 
4864
.navbar-toggler {
4865
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4866
  font-size: var(--bs-navbar-toggler-font-size);
4867
  line-height: 1;
4868
  color: var(--bs-navbar-color);
4869
  background-color: transparent;
4870
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4871
  border-radius: var(--bs-navbar-toggler-border-radius);
4872
  transition: var(--bs-navbar-toggler-transition);
4873
}
16848 stevensc 4874
 
16825 efrain 4875
@media (prefers-reduced-motion: reduce) {
4876
  .navbar-toggler {
4877
    transition: none;
4878
  }
4879
}
16848 stevensc 4880
 
16825 efrain 4881
.navbar-toggler:hover {
4882
  text-decoration: none;
4883
}
16848 stevensc 4884
 
16825 efrain 4885
.navbar-toggler:focus {
4886
  text-decoration: none;
4887
  outline: 0;
4888
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4889
}
4890
 
4891
.navbar-toggler-icon {
4892
  display: inline-block;
4893
  width: 1.5em;
4894
  height: 1.5em;
4895
  vertical-align: middle;
4896
  background-image: var(--bs-navbar-toggler-icon-bg);
4897
  background-repeat: no-repeat;
4898
  background-position: center;
4899
  background-size: 100%;
4900
}
4901
 
4902
.navbar-nav-scroll {
4903
  max-height: var(--bs-scroll-height, 75vh);
4904
  overflow-y: auto;
4905
}
4906
 
4907
@media (min-width: 576px) {
4908
  .navbar-expand-sm {
4909
    flex-wrap: nowrap;
4910
    justify-content: flex-start;
4911
  }
16848 stevensc 4912
 
16825 efrain 4913
  .navbar-expand-sm .navbar-nav {
4914
    flex-direction: row;
4915
  }
16848 stevensc 4916
 
4917
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4918
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4919
    position: absolute;
4920
  }
16848 stevensc 4921
 
16825 efrain 4922
  .navbar-expand-sm .navbar-nav .nav-link {
4923
    padding-right: var(--bs-navbar-nav-link-padding-x);
4924
    padding-left: var(--bs-navbar-nav-link-padding-x);
4925
  }
16848 stevensc 4926
 
16825 efrain 4927
  .navbar-expand-sm .navbar-nav-scroll {
4928
    overflow: visible;
4929
  }
16848 stevensc 4930
 
16825 efrain 4931
  .navbar-expand-sm .navbar-collapse {
4932
    display: flex !important;
4933
    flex-basis: auto;
4934
  }
16848 stevensc 4935
 
16825 efrain 4936
  .navbar-expand-sm .navbar-toggler {
4937
    display: none;
4938
  }
16848 stevensc 4939
 
16825 efrain 4940
  .navbar-expand-sm .offcanvas {
4941
    position: static;
4942
    z-index: auto;
4943
    flex-grow: 1;
4944
    width: auto !important;
4945
    height: auto !important;
4946
    visibility: visible !important;
4947
    background-color: transparent !important;
4948
    border: 0 !important;
4949
    transform: none !important;
4950
    transition: none;
4951
  }
16848 stevensc 4952
 
16825 efrain 4953
  .navbar-expand-sm .offcanvas .offcanvas-header {
4954
    display: none;
4955
  }
16848 stevensc 4956
 
16825 efrain 4957
  .navbar-expand-sm .offcanvas .offcanvas-body {
4958
    display: flex;
4959
    flex-grow: 0;
4960
    padding: 0;
4961
    overflow-y: visible;
4962
  }
4963
}
16848 stevensc 4964
 
16825 efrain 4965
@media (min-width: 768px) {
4966
  .navbar-expand-md {
4967
    flex-wrap: nowrap;
4968
    justify-content: flex-start;
4969
  }
16848 stevensc 4970
 
16825 efrain 4971
  .navbar-expand-md .navbar-nav {
4972
    flex-direction: row;
4973
  }
16848 stevensc 4974
 
4975
  .navbar-expand-md .navbar-nav .dropdown-menu,
4976
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4977
    position: absolute;
4978
  }
16848 stevensc 4979
 
16825 efrain 4980
  .navbar-expand-md .navbar-nav .nav-link {
4981
    padding-right: var(--bs-navbar-nav-link-padding-x);
4982
    padding-left: var(--bs-navbar-nav-link-padding-x);
4983
  }
16848 stevensc 4984
 
16825 efrain 4985
  .navbar-expand-md .navbar-nav-scroll {
4986
    overflow: visible;
4987
  }
16848 stevensc 4988
 
16825 efrain 4989
  .navbar-expand-md .navbar-collapse {
4990
    display: flex !important;
4991
    flex-basis: auto;
4992
  }
16848 stevensc 4993
 
16825 efrain 4994
  .navbar-expand-md .navbar-toggler {
4995
    display: none;
4996
  }
16848 stevensc 4997
 
16825 efrain 4998
  .navbar-expand-md .offcanvas {
4999
    position: static;
5000
    z-index: auto;
5001
    flex-grow: 1;
5002
    width: auto !important;
5003
    height: auto !important;
5004
    visibility: visible !important;
5005
    background-color: transparent !important;
5006
    border: 0 !important;
5007
    transform: none !important;
5008
    transition: none;
5009
  }
16848 stevensc 5010
 
16825 efrain 5011
  .navbar-expand-md .offcanvas .offcanvas-header {
5012
    display: none;
5013
  }
16848 stevensc 5014
 
16825 efrain 5015
  .navbar-expand-md .offcanvas .offcanvas-body {
5016
    display: flex;
5017
    flex-grow: 0;
5018
    padding: 0;
5019
    overflow-y: visible;
5020
  }
5021
}
16848 stevensc 5022
 
16825 efrain 5023
@media (min-width: 992px) {
5024
  .navbar-expand-lg {
5025
    flex-wrap: nowrap;
5026
    justify-content: flex-start;
5027
  }
16848 stevensc 5028
 
16825 efrain 5029
  .navbar-expand-lg .navbar-nav {
5030
    flex-direction: row;
5031
  }
16848 stevensc 5032
 
5033
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5034
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5035
    position: absolute;
5036
  }
16848 stevensc 5037
 
16825 efrain 5038
  .navbar-expand-lg .navbar-nav .nav-link {
5039
    padding-right: var(--bs-navbar-nav-link-padding-x);
5040
    padding-left: var(--bs-navbar-nav-link-padding-x);
5041
  }
16848 stevensc 5042
 
16825 efrain 5043
  .navbar-expand-lg .navbar-nav-scroll {
5044
    overflow: visible;
5045
  }
16848 stevensc 5046
 
16825 efrain 5047
  .navbar-expand-lg .navbar-collapse {
5048
    display: flex !important;
5049
    flex-basis: auto;
5050
  }
16848 stevensc 5051
 
16825 efrain 5052
  .navbar-expand-lg .navbar-toggler {
5053
    display: none;
5054
  }
16848 stevensc 5055
 
16825 efrain 5056
  .navbar-expand-lg .offcanvas {
5057
    position: static;
5058
    z-index: auto;
5059
    flex-grow: 1;
5060
    width: auto !important;
5061
    height: auto !important;
5062
    visibility: visible !important;
5063
    background-color: transparent !important;
5064
    border: 0 !important;
5065
    transform: none !important;
5066
    transition: none;
5067
  }
16848 stevensc 5068
 
16825 efrain 5069
  .navbar-expand-lg .offcanvas .offcanvas-header {
5070
    display: none;
5071
  }
16848 stevensc 5072
 
16825 efrain 5073
  .navbar-expand-lg .offcanvas .offcanvas-body {
5074
    display: flex;
5075
    flex-grow: 0;
5076
    padding: 0;
5077
    overflow-y: visible;
5078
  }
5079
}
16848 stevensc 5080
 
16825 efrain 5081
@media (min-width: 1200px) {
5082
  .navbar-expand-xl {
5083
    flex-wrap: nowrap;
5084
    justify-content: flex-start;
5085
  }
16848 stevensc 5086
 
16825 efrain 5087
  .navbar-expand-xl .navbar-nav {
5088
    flex-direction: row;
5089
  }
16848 stevensc 5090
 
5091
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5092
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5093
    position: absolute;
5094
  }
16848 stevensc 5095
 
16825 efrain 5096
  .navbar-expand-xl .navbar-nav .nav-link {
5097
    padding-right: var(--bs-navbar-nav-link-padding-x);
5098
    padding-left: var(--bs-navbar-nav-link-padding-x);
5099
  }
16848 stevensc 5100
 
16825 efrain 5101
  .navbar-expand-xl .navbar-nav-scroll {
5102
    overflow: visible;
5103
  }
16848 stevensc 5104
 
16825 efrain 5105
  .navbar-expand-xl .navbar-collapse {
5106
    display: flex !important;
5107
    flex-basis: auto;
5108
  }
16848 stevensc 5109
 
16825 efrain 5110
  .navbar-expand-xl .navbar-toggler {
5111
    display: none;
5112
  }
16848 stevensc 5113
 
16825 efrain 5114
  .navbar-expand-xl .offcanvas {
5115
    position: static;
5116
    z-index: auto;
5117
    flex-grow: 1;
5118
    width: auto !important;
5119
    height: auto !important;
5120
    visibility: visible !important;
5121
    background-color: transparent !important;
5122
    border: 0 !important;
5123
    transform: none !important;
5124
    transition: none;
5125
  }
16848 stevensc 5126
 
16825 efrain 5127
  .navbar-expand-xl .offcanvas .offcanvas-header {
5128
    display: none;
5129
  }
16848 stevensc 5130
 
16825 efrain 5131
  .navbar-expand-xl .offcanvas .offcanvas-body {
5132
    display: flex;
5133
    flex-grow: 0;
5134
    padding: 0;
5135
    overflow-y: visible;
5136
  }
5137
}
16848 stevensc 5138
 
16825 efrain 5139
@media (min-width: 1400px) {
5140
  .navbar-expand-xxl {
5141
    flex-wrap: nowrap;
5142
    justify-content: flex-start;
5143
  }
16848 stevensc 5144
 
16825 efrain 5145
  .navbar-expand-xxl .navbar-nav {
5146
    flex-direction: row;
5147
  }
16848 stevensc 5148
 
5149
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5150
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5151
    position: absolute;
5152
  }
16848 stevensc 5153
 
16825 efrain 5154
  .navbar-expand-xxl .navbar-nav .nav-link {
5155
    padding-right: var(--bs-navbar-nav-link-padding-x);
5156
    padding-left: var(--bs-navbar-nav-link-padding-x);
5157
  }
16848 stevensc 5158
 
16825 efrain 5159
  .navbar-expand-xxl .navbar-nav-scroll {
5160
    overflow: visible;
5161
  }
16848 stevensc 5162
 
16825 efrain 5163
  .navbar-expand-xxl .navbar-collapse {
5164
    display: flex !important;
5165
    flex-basis: auto;
5166
  }
16848 stevensc 5167
 
16825 efrain 5168
  .navbar-expand-xxl .navbar-toggler {
5169
    display: none;
5170
  }
16848 stevensc 5171
 
16825 efrain 5172
  .navbar-expand-xxl .offcanvas {
5173
    position: static;
5174
    z-index: auto;
5175
    flex-grow: 1;
5176
    width: auto !important;
5177
    height: auto !important;
5178
    visibility: visible !important;
5179
    background-color: transparent !important;
5180
    border: 0 !important;
5181
    transform: none !important;
5182
    transition: none;
5183
  }
16848 stevensc 5184
 
16825 efrain 5185
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5186
    display: none;
5187
  }
16848 stevensc 5188
 
16825 efrain 5189
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5190
    display: flex;
5191
    flex-grow: 0;
5192
    padding: 0;
5193
    overflow-y: visible;
5194
  }
5195
}
16848 stevensc 5196
 
16825 efrain 5197
.navbar-expand {
5198
  flex-wrap: nowrap;
5199
  justify-content: flex-start;
5200
}
16848 stevensc 5201
 
16825 efrain 5202
.navbar-expand .navbar-nav {
5203
  flex-direction: row;
5204
}
16848 stevensc 5205
 
5206
.navbar-expand .navbar-nav .dropdown-menu,
5207
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5208
  position: absolute;
5209
}
16848 stevensc 5210
 
16825 efrain 5211
.navbar-expand .navbar-nav .nav-link {
5212
  padding-right: var(--bs-navbar-nav-link-padding-x);
5213
  padding-left: var(--bs-navbar-nav-link-padding-x);
5214
}
16848 stevensc 5215
 
16825 efrain 5216
.navbar-expand .navbar-nav-scroll {
5217
  overflow: visible;
5218
}
16848 stevensc 5219
 
16825 efrain 5220
.navbar-expand .navbar-collapse {
5221
  display: flex !important;
5222
  flex-basis: auto;
5223
}
16848 stevensc 5224
 
16825 efrain 5225
.navbar-expand .navbar-toggler {
5226
  display: none;
5227
}
16848 stevensc 5228
 
16825 efrain 5229
.navbar-expand .offcanvas {
5230
  position: static;
5231
  z-index: auto;
5232
  flex-grow: 1;
5233
  width: auto !important;
5234
  height: auto !important;
5235
  visibility: visible !important;
5236
  background-color: transparent !important;
5237
  border: 0 !important;
5238
  transform: none !important;
5239
  transition: none;
5240
}
16848 stevensc 5241
 
16825 efrain 5242
.navbar-expand .offcanvas .offcanvas-header {
5243
  display: none;
5244
}
16848 stevensc 5245
 
16825 efrain 5246
.navbar-expand .offcanvas .offcanvas-body {
5247
  display: flex;
5248
  flex-grow: 0;
5249
  padding: 0;
5250
  overflow-y: visible;
5251
}
5252
 
5253
.navbar-dark {
5254
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5255
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5256
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5257
  --bs-navbar-active-color: #fff;
5258
  --bs-navbar-brand-color: #fff;
5259
  --bs-navbar-brand-hover-color: #fff;
5260
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5261
  --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");
5262
}
5263
 
5264
.card {
5265
  --bs-card-spacer-y: 1.5rem;
5266
  --bs-card-spacer-x: 1.5rem;
5267
  --bs-card-title-spacer-y: 0.875rem;
5268
  --bs-card-border-width: 1px;
5269
  --bs-card-border-color: #f2f4f9;
5270
  --bs-card-border-radius: 0.25rem;
5271
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5272
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5273
  --bs-card-cap-padding-y: 0.875rem;
5274
  --bs-card-cap-padding-x: 1.5rem;
5275
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5276
  --bs-card-cap-color: ;
5277
  --bs-card-height: ;
5278
  --bs-card-color: ;
5279
  --bs-card-bg: #fff;
5280
  --bs-card-img-overlay-padding: 1rem;
5281
  --bs-card-group-margin: 0.75rem;
5282
  position: relative;
5283
  display: flex;
5284
  flex-direction: column;
5285
  min-width: 0;
5286
  height: var(--bs-card-height);
5287
  word-wrap: break-word;
5288
  background-color: var(--bs-card-bg);
5289
  background-clip: border-box;
5290
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5291
  border-radius: var(--bs-card-border-radius);
5292
}
16848 stevensc 5293
 
5294
.card>hr {
16825 efrain 5295
  margin-right: 0;
5296
  margin-left: 0;
5297
}
16848 stevensc 5298
 
5299
.card>.list-group {
16825 efrain 5300
  border-top: inherit;
5301
  border-bottom: inherit;
5302
}
16848 stevensc 5303
 
5304
.card>.list-group:first-child {
16825 efrain 5305
  border-top-width: 0;
5306
  border-top-left-radius: var(--bs-card-inner-border-radius);
5307
  border-top-right-radius: var(--bs-card-inner-border-radius);
5308
}
16848 stevensc 5309
 
5310
.card>.list-group:last-child {
16825 efrain 5311
  border-bottom-width: 0;
5312
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5313
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5314
}
16848 stevensc 5315
 
5316
.card>.card-header+.list-group,
5317
.card>.list-group+.card-footer {
16825 efrain 5318
  border-top: 0;
5319
}
5320
 
5321
.card-body {
5322
  flex: 1 1 auto;
5323
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5324
  color: var(--bs-card-color);
5325
}
5326
 
5327
.card-title {
5328
  margin-bottom: var(--bs-card-title-spacer-y);
5329
}
5330
 
5331
.card-subtitle {
5332
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5333
  margin-bottom: 0;
5334
}
5335
 
5336
.card-text:last-child {
5337
  margin-bottom: 0;
5338
}
5339
 
16848 stevensc 5340
.card-link+.card-link {
16825 efrain 5341
  margin-left: var(--bs-card-spacer-x);
5342
}
5343
 
5344
.card-header {
5345
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5346
  margin-bottom: 0;
5347
  color: var(--bs-card-cap-color);
5348
  background-color: var(--bs-card-cap-bg);
5349
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5350
}
16848 stevensc 5351
 
16825 efrain 5352
.card-header:first-child {
5353
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5354
}
5355
 
5356
.card-footer {
5357
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5358
  color: var(--bs-card-cap-color);
5359
  background-color: var(--bs-card-cap-bg);
5360
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5361
}
16848 stevensc 5362
 
16825 efrain 5363
.card-footer:last-child {
5364
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5365
}
5366
 
5367
.card-header-tabs {
5368
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5369
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5370
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5371
  border-bottom: 0;
5372
}
16848 stevensc 5373
 
16825 efrain 5374
.card-header-tabs .nav-link.active {
5375
  background-color: var(--bs-card-bg);
5376
  border-bottom-color: var(--bs-card-bg);
5377
}
5378
 
5379
.card-header-pills {
5380
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5381
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5382
}
5383
 
5384
.card-img-overlay {
5385
  position: absolute;
5386
  top: 0;
5387
  right: 0;
5388
  bottom: 0;
5389
  left: 0;
5390
  padding: var(--bs-card-img-overlay-padding);
5391
  border-radius: var(--bs-card-inner-border-radius);
5392
}
5393
 
5394
.card-img,
5395
.card-img-top,
5396
.card-img-bottom {
5397
  width: 100%;
5398
}
5399
 
5400
.card-img,
5401
.card-img-top {
5402
  border-top-left-radius: var(--bs-card-inner-border-radius);
5403
  border-top-right-radius: var(--bs-card-inner-border-radius);
5404
}
5405
 
5406
.card-img,
5407
.card-img-bottom {
5408
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5409
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5410
}
5411
 
16848 stevensc 5412
.card-group>.card {
16825 efrain 5413
  margin-bottom: var(--bs-card-group-margin);
5414
}
16848 stevensc 5415
 
16825 efrain 5416
@media (min-width: 576px) {
5417
  .card-group {
5418
    display: flex;
5419
    flex-flow: row wrap;
5420
  }
16848 stevensc 5421
 
5422
  .card-group>.card {
16825 efrain 5423
    flex: 1 0 0%;
5424
    margin-bottom: 0;
5425
  }
16848 stevensc 5426
 
5427
  .card-group>.card+.card {
16825 efrain 5428
    margin-left: 0;
5429
    border-left: 0;
5430
  }
16848 stevensc 5431
 
5432
  .card-group>.card:not(:last-child) {
16825 efrain 5433
    border-top-right-radius: 0;
5434
    border-bottom-right-radius: 0;
5435
  }
16848 stevensc 5436
 
5437
  .card-group>.card:not(:last-child) .card-img-top,
5438
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5439
    border-top-right-radius: 0;
5440
  }
16848 stevensc 5441
 
5442
  .card-group>.card:not(:last-child) .card-img-bottom,
5443
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5444
    border-bottom-right-radius: 0;
5445
  }
16848 stevensc 5446
 
5447
  .card-group>.card:not(:first-child) {
16825 efrain 5448
    border-top-left-radius: 0;
5449
    border-bottom-left-radius: 0;
5450
  }
16848 stevensc 5451
 
5452
  .card-group>.card:not(:first-child) .card-img-top,
5453
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5454
    border-top-left-radius: 0;
5455
  }
16848 stevensc 5456
 
5457
  .card-group>.card:not(:first-child) .card-img-bottom,
5458
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5459
    border-bottom-left-radius: 0;
5460
  }
5461
}
5462
 
5463
.accordion {
5464
  --bs-accordion-color: #000;
5465
  --bs-accordion-bg: #fff;
5466
  --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;
5467
  --bs-accordion-border-color: #e9ecef;
5468
  --bs-accordion-border-width: 1px;
5469
  --bs-accordion-border-radius: 0.25rem;
5470
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5471
  --bs-accordion-btn-padding-x: 1.25rem;
5472
  --bs-accordion-btn-padding-y: 1rem;
5473
  --bs-accordion-btn-color: #000;
5474
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5475
  --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");
5476
  --bs-accordion-btn-icon-width: 0.875rem;
5477
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5478
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5479
  --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");
5480
  --bs-accordion-btn-focus-border-color: #cbd1db;
5481
  --bs-accordion-btn-focus-box-shadow: none;
5482
  --bs-accordion-body-padding-x: 1.25rem;
5483
  --bs-accordion-body-padding-y: 1rem;
5484
  --bs-accordion-active-color: #5b66e6;
5485
  --bs-accordion-active-bg: #f0f1ff;
5486
}
5487
 
5488
.accordion-button {
5489
  position: relative;
5490
  display: flex;
5491
  align-items: center;
5492
  width: 100%;
5493
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5494
  font-size: 0.875rem;
5495
  color: var(--bs-accordion-btn-color);
5496
  text-align: left;
5497
  background-color: var(--bs-accordion-btn-bg);
5498
  border: 0;
5499
  border-radius: 0;
5500
  overflow-anchor: none;
5501
  transition: var(--bs-accordion-transition);
5502
}
16848 stevensc 5503
 
16825 efrain 5504
@media (prefers-reduced-motion: reduce) {
5505
  .accordion-button {
5506
    transition: none;
5507
  }
5508
}
16848 stevensc 5509
 
16825 efrain 5510
.accordion-button:not(.collapsed) {
5511
  color: var(--bs-accordion-active-color);
5512
  background-color: var(--bs-accordion-active-bg);
5513
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5514
}
16848 stevensc 5515
 
16825 efrain 5516
.accordion-button:not(.collapsed)::after {
5517
  background-image: var(--bs-accordion-btn-active-icon);
5518
  transform: var(--bs-accordion-btn-icon-transform);
5519
}
16848 stevensc 5520
 
16825 efrain 5521
.accordion-button::after {
5522
  flex-shrink: 0;
5523
  width: var(--bs-accordion-btn-icon-width);
5524
  height: var(--bs-accordion-btn-icon-width);
5525
  margin-left: auto;
5526
  content: "";
5527
  background-image: var(--bs-accordion-btn-icon);
5528
  background-repeat: no-repeat;
5529
  background-size: var(--bs-accordion-btn-icon-width);
5530
  transition: var(--bs-accordion-btn-icon-transition);
5531
}
16848 stevensc 5532
 
16825 efrain 5533
@media (prefers-reduced-motion: reduce) {
5534
  .accordion-button::after {
5535
    transition: none;
5536
  }
5537
}
16848 stevensc 5538
 
16825 efrain 5539
.accordion-button:hover {
5540
  z-index: 2;
5541
}
16848 stevensc 5542
 
16825 efrain 5543
.accordion-button:focus {
5544
  z-index: 3;
5545
  border-color: var(--bs-accordion-btn-focus-border-color);
5546
  outline: 0;
5547
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5548
}
5549
 
5550
.accordion-header {
5551
  margin-bottom: 0;
5552
}
5553
 
5554
.accordion-item {
5555
  color: var(--bs-accordion-color);
5556
  background-color: var(--bs-accordion-bg);
5557
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5558
}
16848 stevensc 5559
 
16825 efrain 5560
.accordion-item:first-of-type {
5561
  border-top-left-radius: var(--bs-accordion-border-radius);
5562
  border-top-right-radius: var(--bs-accordion-border-radius);
5563
}
16848 stevensc 5564
 
16825 efrain 5565
.accordion-item:first-of-type .accordion-button {
5566
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5567
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5568
}
16848 stevensc 5569
 
16825 efrain 5570
.accordion-item:not(:first-of-type) {
5571
  border-top: 0;
5572
}
16848 stevensc 5573
 
16825 efrain 5574
.accordion-item:last-of-type {
5575
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5576
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5577
}
16848 stevensc 5578
 
16825 efrain 5579
.accordion-item:last-of-type .accordion-button.collapsed {
5580
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5581
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5582
}
16848 stevensc 5583
 
16825 efrain 5584
.accordion-item:last-of-type .accordion-collapse {
5585
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5586
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5587
}
5588
 
5589
.accordion-body {
5590
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5591
}
5592
 
5593
.accordion-flush .accordion-collapse {
5594
  border-width: 0;
5595
}
16848 stevensc 5596
 
16825 efrain 5597
.accordion-flush .accordion-item {
5598
  border-right: 0;
5599
  border-left: 0;
5600
  border-radius: 0;
5601
}
16848 stevensc 5602
 
16825 efrain 5603
.accordion-flush .accordion-item:first-child {
5604
  border-top: 0;
5605
}
16848 stevensc 5606
 
16825 efrain 5607
.accordion-flush .accordion-item:last-child {
5608
  border-bottom: 0;
5609
}
16848 stevensc 5610
 
5611
.accordion-flush .accordion-item .accordion-button,
5612
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5613
  border-radius: 0;
5614
}
5615
 
5616
.breadcrumb {
5617
  --bs-breadcrumb-padding-x: 0;
5618
  --bs-breadcrumb-padding-y: 0;
5619
  --bs-breadcrumb-margin-bottom: 1rem;
5620
  --bs-breadcrumb-bg: ;
5621
  --bs-breadcrumb-border-radius: ;
5622
  --bs-breadcrumb-divider-color: #7987a1;
5623
  --bs-breadcrumb-item-padding-x: 0.5rem;
5624
  --bs-breadcrumb-item-active-color: #7987a1;
5625
  display: flex;
5626
  flex-wrap: wrap;
5627
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5628
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5629
  font-size: var(--bs-breadcrumb-font-size);
5630
  list-style: none;
5631
  background-color: var(--bs-breadcrumb-bg);
5632
  border-radius: var(--bs-breadcrumb-border-radius);
5633
}
5634
 
16848 stevensc 5635
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5636
  padding-left: var(--bs-breadcrumb-item-padding-x);
5637
}
16848 stevensc 5638
 
5639
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5640
  float: left;
5641
  padding-right: var(--bs-breadcrumb-item-padding-x);
5642
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5643
  content: var(--bs-breadcrumb-divider, "/")
5644
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5645
  ;
16825 efrain 5646
}
16848 stevensc 5647
 
16825 efrain 5648
.breadcrumb-item.active {
5649
  color: var(--bs-breadcrumb-item-active-color);
5650
}
5651
 
5652
.pagination {
5653
  --bs-pagination-padding-x: 1rem;
5654
  --bs-pagination-padding-y: 0.469rem;
5655
  --bs-pagination-font-size: 0.875rem;
5656
  --bs-pagination-color: #6571ff;
5657
  --bs-pagination-bg: #fff;
5658
  --bs-pagination-border-width: 1px;
5659
  --bs-pagination-border-color: #dee2e6;
5660
  --bs-pagination-border-radius: 0.25rem;
5661
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5662
  --bs-pagination-hover-bg: #e9ecef;
5663
  --bs-pagination-hover-border-color: #dee2e6;
5664
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5665
  --bs-pagination-focus-bg: #e9ecef;
5666
  --bs-pagination-focus-box-shadow: none;
5667
  --bs-pagination-active-color: #fff;
5668
  --bs-pagination-active-bg: #6571ff;
5669
  --bs-pagination-active-border-color: #6571ff;
5670
  --bs-pagination-disabled-color: #7987a1;
5671
  --bs-pagination-disabled-bg: #fff;
5672
  --bs-pagination-disabled-border-color: #dee2e6;
5673
  display: flex;
5674
  padding-left: 0;
5675
  list-style: none;
5676
}
5677
 
5678
.page-link {
5679
  position: relative;
5680
  display: block;
5681
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5682
  font-size: var(--bs-pagination-font-size);
5683
  color: var(--bs-pagination-color);
5684
  background-color: var(--bs-pagination-bg);
5685
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5686
  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;
5687
}
16848 stevensc 5688
 
16825 efrain 5689
@media (prefers-reduced-motion: reduce) {
5690
  .page-link {
5691
    transition: none;
5692
  }
5693
}
16848 stevensc 5694
 
16825 efrain 5695
.page-link:hover {
5696
  z-index: 2;
5697
  color: var(--bs-pagination-hover-color);
5698
  background-color: var(--bs-pagination-hover-bg);
5699
  border-color: var(--bs-pagination-hover-border-color);
5700
}
16848 stevensc 5701
 
16825 efrain 5702
.page-link:focus {
5703
  z-index: 3;
5704
  color: var(--bs-pagination-focus-color);
5705
  background-color: var(--bs-pagination-focus-bg);
5706
  outline: 0;
5707
  box-shadow: var(--bs-pagination-focus-box-shadow);
5708
}
16848 stevensc 5709
 
5710
.page-link.active,
5711
.active>.page-link {
16825 efrain 5712
  z-index: 3;
5713
  color: var(--bs-pagination-active-color);
5714
  background-color: var(--bs-pagination-active-bg);
5715
  border-color: var(--bs-pagination-active-border-color);
5716
}
16848 stevensc 5717
 
5718
.page-link.disabled,
5719
.disabled>.page-link {
16825 efrain 5720
  color: var(--bs-pagination-disabled-color);
5721
  pointer-events: none;
5722
  background-color: var(--bs-pagination-disabled-bg);
5723
  border-color: var(--bs-pagination-disabled-border-color);
5724
}
5725
 
5726
.page-item:not(:first-child) .page-link {
5727
  margin-left: -1px;
5728
}
16848 stevensc 5729
 
16825 efrain 5730
.page-item:first-child .page-link {
5731
  border-top-left-radius: var(--bs-pagination-border-radius);
5732
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5733
}
16848 stevensc 5734
 
16825 efrain 5735
.page-item:last-child .page-link {
5736
  border-top-right-radius: var(--bs-pagination-border-radius);
5737
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5738
}
5739
 
5740
.pagination-lg {
5741
  --bs-pagination-padding-x: 1.1rem;
5742
  --bs-pagination-padding-y: 0.5rem;
5743
  --bs-pagination-font-size: 1rem;
5744
  --bs-pagination-border-radius: 0.5rem;
5745
}
5746
 
5747
.pagination-sm {
5748
  --bs-pagination-padding-x: 0.75rem;
5749
  --bs-pagination-padding-y: 0.391rem;
5750
  --bs-pagination-font-size: 0.812rem;
5751
  --bs-pagination-border-radius: 0.25rem;
5752
}
5753
 
5754
.badge {
5755
  --bs-badge-padding-x: 0.65em;
5756
  --bs-badge-padding-y: 0.35em;
5757
  --bs-badge-font-size: 0.8em;
5758
  --bs-badge-font-weight: 500;
5759
  --bs-badge-color: #fff;
5760
  --bs-badge-border-radius: 0.25rem;
5761
  display: inline-block;
5762
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5763
  font-size: var(--bs-badge-font-size);
5764
  font-weight: var(--bs-badge-font-weight);
5765
  line-height: 1;
5766
  color: var(--bs-badge-color);
5767
  text-align: center;
5768
  white-space: nowrap;
5769
  vertical-align: baseline;
5770
  border-radius: var(--bs-badge-border-radius);
5771
}
16848 stevensc 5772
 
16825 efrain 5773
.badge:empty {
5774
  display: none;
5775
}
5776
 
16848 stevensc 5777
.btn .badge,
5778
.wizard>.actions a .badge,
5779
div.tox .tox-button .badge,
5780
.swal2-popup .swal2-actions button .badge,
5781
.fc .fc-button-primary .badge {
16825 efrain 5782
  position: relative;
5783
  top: -1px;
5784
}
5785
 
5786
.alert {
5787
  --bs-alert-bg: transparent;
5788
  --bs-alert-padding-x: 1rem;
5789
  --bs-alert-padding-y: 1rem;
5790
  --bs-alert-margin-bottom: 1rem;
5791
  --bs-alert-color: inherit;
5792
  --bs-alert-border-color: transparent;
5793
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5794
  --bs-alert-border-radius: 0.25rem;
5795
  position: relative;
5796
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5797
  margin-bottom: var(--bs-alert-margin-bottom);
5798
  color: var(--bs-alert-color);
5799
  background-color: var(--bs-alert-bg);
5800
  border: var(--bs-alert-border);
5801
  border-radius: var(--bs-alert-border-radius);
5802
}
5803
 
5804
.alert-heading {
5805
  color: inherit;
5806
}
5807
 
5808
.alert-link {
5809
  font-weight: 500;
5810
}
5811
 
5812
.alert-dismissible {
5813
  padding-right: 3rem;
5814
}
16848 stevensc 5815
 
16825 efrain 5816
.alert-dismissible .btn-close {
5817
  position: absolute;
5818
  top: 0;
5819
  right: 0;
5820
  z-index: 2;
5821
  padding: 1.25rem 1rem;
5822
}
5823
 
5824
.alert-primary {
5825
  --bs-alert-color: #3d4499;
5826
  --bs-alert-bg: #e0e3ff;
5827
  --bs-alert-border-color: #d1d4ff;
5828
}
16848 stevensc 5829
 
16825 efrain 5830
.alert-primary .alert-link {
5831
  color: #31367a;
5832
}
5833
 
5834
.alert-secondary {
5835
  --bs-alert-color: #495161;
5836
  --bs-alert-bg: #e4e7ec;
5837
  --bs-alert-border-color: #d7dbe3;
5838
}
16848 stevensc 5839
 
16825 efrain 5840
.alert-secondary .alert-link {
5841
  color: #3a414e;
5842
}
5843
 
5844
.alert-success {
5845
  --bs-alert-color: #03622c;
5846
  --bs-alert-bg: #cdeddb;
5847
  --bs-alert-border-color: #b4e3c9;
5848
}
16848 stevensc 5849
 
16825 efrain 5850
.alert-success .alert-link {
5851
  color: #024e23;
5852
}
5853
 
5854
.alert-info {
5855
  --bs-alert-color: #3d7d7d;
5856
  --bs-alert-bg: #e0f6f6;
5857
  --bs-alert-border-color: #d1f1f1;
5858
}
16848 stevensc 5859
 
16825 efrain 5860
.alert-info .alert-link {
5861
  color: #316464;
5862
}
5863
 
5864
.alert-warning {
5865
  --bs-alert-color: #977104;
5866
  --bs-alert-bg: #fef2cd;
5867
  --bs-alert-border-color: #feebb4;
5868
}
16848 stevensc 5869
 
16825 efrain 5870
.alert-warning .alert-link {
5871
  color: #795a03;
5872
}
5873
 
5874
.alert-danger {
5875
  --bs-alert-color: #991f3d;
5876
  --bs-alert-bg: #ffd6e0;
5877
  --bs-alert-border-color: #ffc2d1;
5878
}
16848 stevensc 5879
 
16825 efrain 5880
.alert-danger .alert-link {
5881
  color: #7a1931;
5882
}
5883
 
5884
.alert-light {
5885
  --bs-alert-color: #8c8e8f;
5886
  --bs-alert-bg: #fbfbfc;
5887
  --bs-alert-border-color: #f8f9fa;
5888
}
16848 stevensc 5889
 
16825 efrain 5890
.alert-light .alert-link {
5891
  color: #707272;
5892
}
5893
 
5894
.alert-dark {
5895
  --bs-alert-color: #04070e;
5896
  --bs-alert-bg: #cdced1;
5897
  --bs-alert-border-color: #b4b6b9;
5898
}
16848 stevensc 5899
 
16825 efrain 5900
.alert-dark .alert-link {
5901
  color: #03060b;
5902
}
5903
 
5904
@keyframes progress-bar-stripes {
5905
  0% {
5906
    background-position-x: 1rem;
5907
  }
5908
}
16848 stevensc 5909
 
16825 efrain 5910
.progress {
5911
  --bs-progress-height: 1rem;
5912
  --bs-progress-font-size: 0.65625rem;
5913
  --bs-progress-bg: #e9ecef;
5914
  --bs-progress-border-radius: 0.25rem;
5915
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5916
  --bs-progress-bar-color: #fff;
5917
  --bs-progress-bar-bg: #6571ff;
5918
  --bs-progress-bar-transition: width 0.6s ease;
5919
  display: flex;
5920
  height: var(--bs-progress-height);
5921
  overflow: hidden;
5922
  font-size: var(--bs-progress-font-size);
5923
  background-color: var(--bs-progress-bg);
5924
  border-radius: var(--bs-progress-border-radius);
5925
}
5926
 
5927
.progress-bar {
5928
  display: flex;
5929
  flex-direction: column;
5930
  justify-content: center;
5931
  overflow: hidden;
5932
  color: var(--bs-progress-bar-color);
5933
  text-align: center;
5934
  white-space: nowrap;
5935
  background-color: var(--bs-progress-bar-bg);
5936
  transition: var(--bs-progress-bar-transition);
5937
}
16848 stevensc 5938
 
16825 efrain 5939
@media (prefers-reduced-motion: reduce) {
5940
  .progress-bar {
5941
    transition: none;
5942
  }
5943
}
5944
 
5945
.progress-bar-striped {
5946
  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);
5947
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5948
}
5949
 
5950
.progress-bar-animated {
5951
  animation: 1s linear infinite progress-bar-stripes;
5952
}
16848 stevensc 5953
 
16825 efrain 5954
@media (prefers-reduced-motion: reduce) {
5955
  .progress-bar-animated {
5956
    animation: none;
5957
  }
5958
}
5959
 
5960
.list-group {
5961
  --bs-list-group-color: #060c17;
5962
  --bs-list-group-bg: #fff;
5963
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5964
  --bs-list-group-border-width: 1px;
5965
  --bs-list-group-border-radius: 0.25rem;
5966
  --bs-list-group-item-padding-x: 1.25rem;
5967
  --bs-list-group-item-padding-y: 0.75rem;
5968
  --bs-list-group-action-color: #41516c;
5969
  --bs-list-group-action-hover-color: #41516c;
5970
  --bs-list-group-action-hover-bg: #f8f9fa;
5971
  --bs-list-group-action-active-color: #000;
5972
  --bs-list-group-action-active-bg: #e9ecef;
5973
  --bs-list-group-disabled-color: #7987a1;
5974
  --bs-list-group-disabled-bg: #fff;
5975
  --bs-list-group-active-color: #fff;
5976
  --bs-list-group-active-bg: #6571ff;
5977
  --bs-list-group-active-border-color: #6571ff;
5978
  display: flex;
5979
  flex-direction: column;
5980
  padding-left: 0;
5981
  margin-bottom: 0;
5982
  border-radius: var(--bs-list-group-border-radius);
5983
}
5984
 
5985
.list-group-numbered {
5986
  list-style-type: none;
5987
  counter-reset: section;
5988
}
16848 stevensc 5989
 
5990
.list-group-numbered>.list-group-item::before {
16825 efrain 5991
  content: counters(section, ".") ". ";
5992
  counter-increment: section;
5993
}
5994
 
5995
.list-group-item-action {
5996
  width: 100%;
5997
  color: var(--bs-list-group-action-color);
5998
  text-align: inherit;
5999
}
16848 stevensc 6000
 
6001
.list-group-item-action:hover,
6002
.list-group-item-action:focus {
16825 efrain 6003
  z-index: 1;
6004
  color: var(--bs-list-group-action-hover-color);
6005
  text-decoration: none;
6006
  background-color: var(--bs-list-group-action-hover-bg);
6007
}
16848 stevensc 6008
 
16825 efrain 6009
.list-group-item-action:active {
6010
  color: var(--bs-list-group-action-active-color);
6011
  background-color: var(--bs-list-group-action-active-bg);
6012
}
6013
 
6014
.list-group-item {
6015
  position: relative;
6016
  display: block;
6017
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6018
  color: var(--bs-list-group-color);
6019
  background-color: var(--bs-list-group-bg);
6020
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6021
}
16848 stevensc 6022
 
16825 efrain 6023
.list-group-item:first-child {
6024
  border-top-left-radius: inherit;
6025
  border-top-right-radius: inherit;
6026
}
16848 stevensc 6027
 
16825 efrain 6028
.list-group-item:last-child {
6029
  border-bottom-right-radius: inherit;
6030
  border-bottom-left-radius: inherit;
6031
}
16848 stevensc 6032
 
6033
.list-group-item.disabled,
6034
.list-group-item:disabled {
16825 efrain 6035
  color: var(--bs-list-group-disabled-color);
6036
  pointer-events: none;
6037
  background-color: var(--bs-list-group-disabled-bg);
6038
}
16848 stevensc 6039
 
16825 efrain 6040
.list-group-item.active {
6041
  z-index: 2;
6042
  color: var(--bs-list-group-active-color);
6043
  background-color: var(--bs-list-group-active-bg);
6044
  border-color: var(--bs-list-group-active-border-color);
6045
}
16848 stevensc 6046
 
6047
.list-group-item+.list-group-item {
16825 efrain 6048
  border-top-width: 0;
6049
}
16848 stevensc 6050
 
6051
.list-group-item+.list-group-item.active {
16825 efrain 6052
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6053
  border-top-width: var(--bs-list-group-border-width);
6054
}
6055
 
6056
.list-group-horizontal {
6057
  flex-direction: row;
6058
}
16848 stevensc 6059
 
6060
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6061
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6062
  border-top-right-radius: 0;
6063
}
16848 stevensc 6064
 
6065
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6066
  border-top-right-radius: var(--bs-list-group-border-radius);
6067
  border-bottom-left-radius: 0;
6068
}
16848 stevensc 6069
 
6070
.list-group-horizontal>.list-group-item.active {
16825 efrain 6071
  margin-top: 0;
6072
}
16848 stevensc 6073
 
6074
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6075
  border-top-width: var(--bs-list-group-border-width);
6076
  border-left-width: 0;
6077
}
16848 stevensc 6078
 
6079
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6080
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6081
  border-left-width: var(--bs-list-group-border-width);
6082
}
6083
 
6084
@media (min-width: 576px) {
6085
  .list-group-horizontal-sm {
6086
    flex-direction: row;
6087
  }
16848 stevensc 6088
 
6089
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6090
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6091
    border-top-right-radius: 0;
6092
  }
16848 stevensc 6093
 
6094
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6095
    border-top-right-radius: var(--bs-list-group-border-radius);
6096
    border-bottom-left-radius: 0;
6097
  }
16848 stevensc 6098
 
6099
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6100
    margin-top: 0;
6101
  }
16848 stevensc 6102
 
6103
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6104
    border-top-width: var(--bs-list-group-border-width);
6105
    border-left-width: 0;
6106
  }
16848 stevensc 6107
 
6108
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6109
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6110
    border-left-width: var(--bs-list-group-border-width);
6111
  }
6112
}
16848 stevensc 6113
 
16825 efrain 6114
@media (min-width: 768px) {
6115
  .list-group-horizontal-md {
6116
    flex-direction: row;
6117
  }
16848 stevensc 6118
 
6119
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6120
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6121
    border-top-right-radius: 0;
6122
  }
16848 stevensc 6123
 
6124
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6125
    border-top-right-radius: var(--bs-list-group-border-radius);
6126
    border-bottom-left-radius: 0;
6127
  }
16848 stevensc 6128
 
6129
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6130
    margin-top: 0;
6131
  }
16848 stevensc 6132
 
6133
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6134
    border-top-width: var(--bs-list-group-border-width);
6135
    border-left-width: 0;
6136
  }
16848 stevensc 6137
 
6138
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6139
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6140
    border-left-width: var(--bs-list-group-border-width);
6141
  }
6142
}
16848 stevensc 6143
 
16825 efrain 6144
@media (min-width: 992px) {
6145
  .list-group-horizontal-lg {
6146
    flex-direction: row;
6147
  }
16848 stevensc 6148
 
6149
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6150
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6151
    border-top-right-radius: 0;
6152
  }
16848 stevensc 6153
 
6154
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6155
    border-top-right-radius: var(--bs-list-group-border-radius);
6156
    border-bottom-left-radius: 0;
6157
  }
16848 stevensc 6158
 
6159
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6160
    margin-top: 0;
6161
  }
16848 stevensc 6162
 
6163
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6164
    border-top-width: var(--bs-list-group-border-width);
6165
    border-left-width: 0;
6166
  }
16848 stevensc 6167
 
6168
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6169
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6170
    border-left-width: var(--bs-list-group-border-width);
6171
  }
6172
}
16848 stevensc 6173
 
16825 efrain 6174
@media (min-width: 1200px) {
6175
  .list-group-horizontal-xl {
6176
    flex-direction: row;
6177
  }
16848 stevensc 6178
 
6179
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6180
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6181
    border-top-right-radius: 0;
6182
  }
16848 stevensc 6183
 
6184
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6185
    border-top-right-radius: var(--bs-list-group-border-radius);
6186
    border-bottom-left-radius: 0;
6187
  }
16848 stevensc 6188
 
6189
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6190
    margin-top: 0;
6191
  }
16848 stevensc 6192
 
6193
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6194
    border-top-width: var(--bs-list-group-border-width);
6195
    border-left-width: 0;
6196
  }
16848 stevensc 6197
 
6198
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6199
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6200
    border-left-width: var(--bs-list-group-border-width);
6201
  }
6202
}
16848 stevensc 6203
 
16825 efrain 6204
@media (min-width: 1400px) {
6205
  .list-group-horizontal-xxl {
6206
    flex-direction: row;
6207
  }
16848 stevensc 6208
 
6209
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6210
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6211
    border-top-right-radius: 0;
6212
  }
16848 stevensc 6213
 
6214
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6215
    border-top-right-radius: var(--bs-list-group-border-radius);
6216
    border-bottom-left-radius: 0;
6217
  }
16848 stevensc 6218
 
6219
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6220
    margin-top: 0;
6221
  }
16848 stevensc 6222
 
6223
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6224
    border-top-width: var(--bs-list-group-border-width);
6225
    border-left-width: 0;
6226
  }
16848 stevensc 6227
 
6228
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6229
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6230
    border-left-width: var(--bs-list-group-border-width);
6231
  }
6232
}
16848 stevensc 6233
 
16825 efrain 6234
.list-group-flush {
6235
  border-radius: 0;
6236
}
16848 stevensc 6237
 
6238
.list-group-flush>.list-group-item {
16825 efrain 6239
  border-width: 0 0 var(--bs-list-group-border-width);
6240
}
16848 stevensc 6241
 
6242
.list-group-flush>.list-group-item:last-child {
16825 efrain 6243
  border-bottom-width: 0;
6244
}
6245
 
6246
.list-group-item-primary {
6247
  color: #3d4499;
6248
  background-color: #e0e3ff;
6249
}
16848 stevensc 6250
 
6251
.list-group-item-primary.list-group-item-action:hover,
6252
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6253
  color: #3d4499;
6254
  background-color: #cacce6;
6255
}
16848 stevensc 6256
 
16825 efrain 6257
.list-group-item-primary.list-group-item-action.active {
6258
  color: #fff;
6259
  background-color: #3d4499;
6260
  border-color: #3d4499;
6261
}
6262
 
6263
.list-group-item-secondary {
6264
  color: #495161;
6265
  background-color: #e4e7ec;
6266
}
16848 stevensc 6267
 
6268
.list-group-item-secondary.list-group-item-action:hover,
6269
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6270
  color: #495161;
6271
  background-color: #cdd0d4;
6272
}
16848 stevensc 6273
 
16825 efrain 6274
.list-group-item-secondary.list-group-item-action.active {
6275
  color: #fff;
6276
  background-color: #495161;
6277
  border-color: #495161;
6278
}
6279
 
6280
.list-group-item-success {
6281
  color: #03622c;
6282
  background-color: #cdeddb;
6283
}
16848 stevensc 6284
 
6285
.list-group-item-success.list-group-item-action:hover,
6286
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6287
  color: #03622c;
6288
  background-color: #b9d5c5;
6289
}
16848 stevensc 6290
 
16825 efrain 6291
.list-group-item-success.list-group-item-action.active {
6292
  color: #fff;
6293
  background-color: #03622c;
6294
  border-color: #03622c;
6295
}
6296
 
6297
.list-group-item-info {
6298
  color: #3d7d7d;
6299
  background-color: #e0f6f6;
6300
}
16848 stevensc 6301
 
6302
.list-group-item-info.list-group-item-action:hover,
6303
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6304
  color: #3d7d7d;
6305
  background-color: #cadddd;
6306
}
16848 stevensc 6307
 
16825 efrain 6308
.list-group-item-info.list-group-item-action.active {
6309
  color: #fff;
6310
  background-color: #3d7d7d;
6311
  border-color: #3d7d7d;
6312
}
6313
 
6314
.list-group-item-warning {
6315
  color: #977104;
6316
  background-color: #fef2cd;
6317
}
16848 stevensc 6318
 
6319
.list-group-item-warning.list-group-item-action:hover,
6320
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6321
  color: #977104;
6322
  background-color: #e5dab9;
6323
}
16848 stevensc 6324
 
16825 efrain 6325
.list-group-item-warning.list-group-item-action.active {
6326
  color: #fff;
6327
  background-color: #977104;
6328
  border-color: #977104;
6329
}
6330
 
6331
.list-group-item-danger {
6332
  color: #991f3d;
6333
  background-color: #ffd6e0;
6334
}
16848 stevensc 6335
 
6336
.list-group-item-danger.list-group-item-action:hover,
6337
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6338
  color: #991f3d;
6339
  background-color: #e6c1ca;
6340
}
16848 stevensc 6341
 
16825 efrain 6342
.list-group-item-danger.list-group-item-action.active {
6343
  color: #fff;
6344
  background-color: #991f3d;
6345
  border-color: #991f3d;
6346
}
6347
 
6348
.list-group-item-light {
6349
  color: #8c8e8f;
6350
  background-color: #fbfbfc;
6351
}
16848 stevensc 6352
 
6353
.list-group-item-light.list-group-item-action:hover,
6354
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6355
  color: #8c8e8f;
6356
  background-color: #e2e2e3;
6357
}
16848 stevensc 6358
 
16825 efrain 6359
.list-group-item-light.list-group-item-action.active {
6360
  color: #fff;
6361
  background-color: #8c8e8f;
6362
  border-color: #8c8e8f;
6363
}
6364
 
6365
.list-group-item-dark {
6366
  color: #04070e;
6367
  background-color: #cdced1;
6368
}
16848 stevensc 6369
 
6370
.list-group-item-dark.list-group-item-action:hover,
6371
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6372
  color: #04070e;
6373
  background-color: #b9b9bc;
6374
}
16848 stevensc 6375
 
16825 efrain 6376
.list-group-item-dark.list-group-item-action.active {
6377
  color: #fff;
6378
  background-color: #04070e;
6379
  border-color: #04070e;
6380
}
6381
 
6382
.btn-close {
6383
  box-sizing: content-box;
6384
  width: 0.8em;
6385
  height: 0.8em;
6386
  padding: 0.25em 0.25em;
6387
  color: #000;
6388
  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;
6389
  border: 0;
6390
  border-radius: 0.25rem;
6391
  opacity: 0.5;
6392
}
16848 stevensc 6393
 
16825 efrain 6394
.btn-close:hover {
6395
  color: #000;
6396
  text-decoration: none;
6397
  opacity: 0.75;
6398
}
16848 stevensc 6399
 
16825 efrain 6400
.btn-close:focus {
6401
  outline: 0;
6402
  box-shadow: none;
6403
  opacity: 1;
6404
}
16848 stevensc 6405
 
6406
.btn-close:disabled,
6407
.btn-close.disabled {
16825 efrain 6408
  pointer-events: none;
6409
  user-select: none;
6410
  opacity: 0.25;
6411
}
6412
 
6413
.btn-close-white {
6414
  filter: invert(1) grayscale(100%) brightness(200%);
6415
}
6416
 
6417
.toast {
6418
  --bs-toast-zindex: 1090;
6419
  --bs-toast-padding-x: 0.75rem;
6420
  --bs-toast-padding-y: 0.5rem;
6421
  --bs-toast-spacing: 1.5rem;
6422
  --bs-toast-max-width: 350px;
6423
  --bs-toast-font-size: 0.875rem;
6424
  --bs-toast-color: ;
6425
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6426
  --bs-toast-border-width: 1px;
6427
  --bs-toast-border-color: var(--bs-border-color-translucent);
6428
  --bs-toast-border-radius: 0.25rem;
6429
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6430
  --bs-toast-header-color: #7987a1;
6431
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6432
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6433
  width: var(--bs-toast-max-width);
6434
  max-width: 100%;
6435
  font-size: var(--bs-toast-font-size);
6436
  color: var(--bs-toast-color);
6437
  pointer-events: auto;
6438
  background-color: var(--bs-toast-bg);
6439
  background-clip: padding-box;
6440
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6441
  box-shadow: var(--bs-toast-box-shadow);
6442
  border-radius: var(--bs-toast-border-radius);
6443
}
16848 stevensc 6444
 
16825 efrain 6445
.toast.showing {
6446
  opacity: 0;
6447
}
16848 stevensc 6448
 
16825 efrain 6449
.toast:not(.show) {
6450
  display: none;
6451
}
6452
 
6453
.toast-container {
6454
  --bs-toast-zindex: 1090;
6455
  position: absolute;
6456
  z-index: var(--bs-toast-zindex);
6457
  width: max-content;
6458
  max-width: 100%;
6459
  pointer-events: none;
6460
}
16848 stevensc 6461
 
6462
.toast-container> :not(:last-child) {
16825 efrain 6463
  margin-bottom: var(--bs-toast-spacing);
6464
}
6465
 
6466
.toast-header {
6467
  display: flex;
6468
  align-items: center;
6469
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6470
  color: var(--bs-toast-header-color);
6471
  background-color: var(--bs-toast-header-bg);
6472
  background-clip: padding-box;
6473
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6474
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6475
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6476
}
16848 stevensc 6477
 
16825 efrain 6478
.toast-header .btn-close {
6479
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6480
  margin-left: var(--bs-toast-padding-x);
6481
}
6482
 
6483
.toast-body {
6484
  padding: var(--bs-toast-padding-x);
6485
  word-wrap: break-word;
6486
}
6487
 
6488
.modal {
6489
  --bs-modal-zindex: 1055;
6490
  --bs-modal-width: 500px;
6491
  --bs-modal-padding: 1rem;
6492
  --bs-modal-margin: 0.5rem;
6493
  --bs-modal-color: ;
6494
  --bs-modal-bg: #fff;
6495
  --bs-modal-border-color: #e9ecef;
6496
  --bs-modal-border-width: 1px;
6497
  --bs-modal-border-radius: 0.5rem;
6498
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6499
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6500
  --bs-modal-header-padding-x: 1rem;
6501
  --bs-modal-header-padding-y: 1rem;
6502
  --bs-modal-header-padding: 1rem 1rem;
6503
  --bs-modal-header-border-color: var(--bs-border-color);
6504
  --bs-modal-header-border-width: 1px;
6505
  --bs-modal-title-line-height: 1.5;
6506
  --bs-modal-footer-gap: 0.5rem;
6507
  --bs-modal-footer-bg: ;
6508
  --bs-modal-footer-border-color: var(--bs-border-color);
6509
  --bs-modal-footer-border-width: 1px;
6510
  position: fixed;
6511
  top: 0;
6512
  left: 0;
6513
  z-index: var(--bs-modal-zindex);
6514
  display: none;
6515
  width: 100%;
6516
  height: 100%;
6517
  overflow-x: hidden;
6518
  overflow-y: auto;
6519
  outline: 0;
6520
}
6521
 
6522
.modal-dialog {
6523
  position: relative;
6524
  width: auto;
6525
  margin: var(--bs-modal-margin);
6526
  pointer-events: none;
6527
}
16848 stevensc 6528
 
16825 efrain 6529
.modal.fade .modal-dialog {
6530
  transition: transform 0.4s ease;
6531
  transform: scale(0.8);
6532
}
16848 stevensc 6533
 
16825 efrain 6534
@media (prefers-reduced-motion: reduce) {
6535
  .modal.fade .modal-dialog {
6536
    transition: none;
6537
  }
6538
}
16848 stevensc 6539
 
16825 efrain 6540
.modal.show .modal-dialog {
6541
  transform: none;
6542
}
16848 stevensc 6543
 
16825 efrain 6544
.modal.modal-static .modal-dialog {
6545
  transform: scale(1.02);
6546
}
6547
 
6548
.modal-dialog-scrollable {
6549
  height: calc(100% - var(--bs-modal-margin) * 2);
6550
}
16848 stevensc 6551
 
16825 efrain 6552
.modal-dialog-scrollable .modal-content {
6553
  max-height: 100%;
6554
  overflow: hidden;
6555
}
16848 stevensc 6556
 
16825 efrain 6557
.modal-dialog-scrollable .modal-body {
6558
  overflow-y: auto;
6559
}
6560
 
6561
.modal-dialog-centered {
6562
  display: flex;
6563
  align-items: center;
6564
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6565
}
6566
 
6567
.modal-content {
6568
  position: relative;
6569
  display: flex;
6570
  flex-direction: column;
6571
  width: 100%;
6572
  color: var(--bs-modal-color);
6573
  pointer-events: auto;
6574
  background-color: var(--bs-modal-bg);
6575
  background-clip: padding-box;
6576
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6577
  border-radius: var(--bs-modal-border-radius);
6578
  outline: 0;
6579
}
6580
 
6581
.modal-backdrop {
6582
  --bs-backdrop-zindex: 1050;
6583
  --bs-backdrop-bg: #000;
6584
  --bs-backdrop-opacity: 0.5;
6585
  position: fixed;
6586
  top: 0;
6587
  left: 0;
6588
  z-index: var(--bs-backdrop-zindex);
6589
  width: 100vw;
6590
  height: 100vh;
6591
  background-color: var(--bs-backdrop-bg);
6592
}
16848 stevensc 6593
 
16825 efrain 6594
.modal-backdrop.fade {
6595
  opacity: 0;
6596
}
16848 stevensc 6597
 
16825 efrain 6598
.modal-backdrop.show {
6599
  opacity: var(--bs-backdrop-opacity);
6600
}
6601
 
6602
.modal-header {
6603
  display: flex;
6604
  flex-shrink: 0;
6605
  align-items: center;
6606
  justify-content: space-between;
6607
  padding: var(--bs-modal-header-padding);
6608
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6609
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6610
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6611
}
16848 stevensc 6612
 
16825 efrain 6613
.modal-header .btn-close {
6614
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6615
  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;
6616
}
6617
 
6618
.modal-title {
6619
  margin-bottom: 0;
6620
  line-height: var(--bs-modal-title-line-height);
6621
}
6622
 
6623
.modal-body {
6624
  position: relative;
6625
  flex: 1 1 auto;
6626
  padding: var(--bs-modal-padding);
6627
}
6628
 
6629
.modal-footer {
6630
  display: flex;
6631
  flex-shrink: 0;
6632
  flex-wrap: wrap;
6633
  align-items: center;
6634
  justify-content: flex-end;
6635
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6636
  background-color: var(--bs-modal-footer-bg);
6637
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6638
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6639
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6640
}
16848 stevensc 6641
 
6642
.modal-footer>* {
16825 efrain 6643
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6644
}
6645
 
6646
@media (min-width: 576px) {
6647
  .modal {
6648
    --bs-modal-margin: 1.75rem;
6649
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6650
  }
16848 stevensc 6651
 
16825 efrain 6652
  .modal-dialog {
6653
    max-width: var(--bs-modal-width);
6654
    margin-right: auto;
6655
    margin-left: auto;
6656
  }
16848 stevensc 6657
 
16825 efrain 6658
  .modal-sm {
6659
    --bs-modal-width: 300px;
6660
  }
6661
}
16848 stevensc 6662
 
16825 efrain 6663
@media (min-width: 992px) {
16848 stevensc 6664
 
16825 efrain 6665
  .modal-lg,
6666
  .modal-xl {
6667
    --bs-modal-width: 800px;
6668
  }
6669
}
16848 stevensc 6670
 
16825 efrain 6671
@media (min-width: 1200px) {
6672
  .modal-xl {
6673
    --bs-modal-width: 1140px;
6674
  }
6675
}
16848 stevensc 6676
 
16825 efrain 6677
.modal-fullscreen {
6678
  width: 100vw;
6679
  max-width: none;
6680
  height: 100%;
6681
  margin: 0;
6682
}
16848 stevensc 6683
 
16825 efrain 6684
.modal-fullscreen .modal-content {
6685
  height: 100%;
6686
  border: 0;
6687
  border-radius: 0;
6688
}
16848 stevensc 6689
 
16825 efrain 6690
.modal-fullscreen .modal-header,
6691
.modal-fullscreen .modal-footer {
6692
  border-radius: 0;
6693
}
16848 stevensc 6694
 
16825 efrain 6695
.modal-fullscreen .modal-body {
6696
  overflow-y: auto;
6697
}
6698
 
6699
@media (max-width: 575.98px) {
6700
  .modal-fullscreen-sm-down {
6701
    width: 100vw;
6702
    max-width: none;
6703
    height: 100%;
6704
    margin: 0;
6705
  }
16848 stevensc 6706
 
16825 efrain 6707
  .modal-fullscreen-sm-down .modal-content {
6708
    height: 100%;
6709
    border: 0;
6710
    border-radius: 0;
6711
  }
16848 stevensc 6712
 
16825 efrain 6713
  .modal-fullscreen-sm-down .modal-header,
6714
  .modal-fullscreen-sm-down .modal-footer {
6715
    border-radius: 0;
6716
  }
16848 stevensc 6717
 
16825 efrain 6718
  .modal-fullscreen-sm-down .modal-body {
6719
    overflow-y: auto;
6720
  }
6721
}
16848 stevensc 6722
 
16825 efrain 6723
@media (max-width: 767.98px) {
6724
  .modal-fullscreen-md-down {
6725
    width: 100vw;
6726
    max-width: none;
6727
    height: 100%;
6728
    margin: 0;
6729
  }
16848 stevensc 6730
 
16825 efrain 6731
  .modal-fullscreen-md-down .modal-content {
6732
    height: 100%;
6733
    border: 0;
6734
    border-radius: 0;
6735
  }
16848 stevensc 6736
 
16825 efrain 6737
  .modal-fullscreen-md-down .modal-header,
6738
  .modal-fullscreen-md-down .modal-footer {
6739
    border-radius: 0;
6740
  }
16848 stevensc 6741
 
16825 efrain 6742
  .modal-fullscreen-md-down .modal-body {
6743
    overflow-y: auto;
6744
  }
6745
}
16848 stevensc 6746
 
16825 efrain 6747
@media (max-width: 991.98px) {
6748
  .modal-fullscreen-lg-down {
6749
    width: 100vw;
6750
    max-width: none;
6751
    height: 100%;
6752
    margin: 0;
6753
  }
16848 stevensc 6754
 
16825 efrain 6755
  .modal-fullscreen-lg-down .modal-content {
6756
    height: 100%;
6757
    border: 0;
6758
    border-radius: 0;
6759
  }
16848 stevensc 6760
 
16825 efrain 6761
  .modal-fullscreen-lg-down .modal-header,
6762
  .modal-fullscreen-lg-down .modal-footer {
6763
    border-radius: 0;
6764
  }
16848 stevensc 6765
 
16825 efrain 6766
  .modal-fullscreen-lg-down .modal-body {
6767
    overflow-y: auto;
6768
  }
6769
}
16848 stevensc 6770
 
16825 efrain 6771
@media (max-width: 1199.98px) {
6772
  .modal-fullscreen-xl-down {
6773
    width: 100vw;
6774
    max-width: none;
6775
    height: 100%;
6776
    margin: 0;
6777
  }
16848 stevensc 6778
 
16825 efrain 6779
  .modal-fullscreen-xl-down .modal-content {
6780
    height: 100%;
6781
    border: 0;
6782
    border-radius: 0;
6783
  }
16848 stevensc 6784
 
16825 efrain 6785
  .modal-fullscreen-xl-down .modal-header,
6786
  .modal-fullscreen-xl-down .modal-footer {
6787
    border-radius: 0;
6788
  }
16848 stevensc 6789
 
16825 efrain 6790
  .modal-fullscreen-xl-down .modal-body {
6791
    overflow-y: auto;
6792
  }
6793
}
16848 stevensc 6794
 
16825 efrain 6795
@media (max-width: 1399.98px) {
6796
  .modal-fullscreen-xxl-down {
6797
    width: 100vw;
6798
    max-width: none;
6799
    height: 100%;
6800
    margin: 0;
6801
  }
16848 stevensc 6802
 
16825 efrain 6803
  .modal-fullscreen-xxl-down .modal-content {
6804
    height: 100%;
6805
    border: 0;
6806
    border-radius: 0;
6807
  }
16848 stevensc 6808
 
16825 efrain 6809
  .modal-fullscreen-xxl-down .modal-header,
6810
  .modal-fullscreen-xxl-down .modal-footer {
6811
    border-radius: 0;
6812
  }
16848 stevensc 6813
 
16825 efrain 6814
  .modal-fullscreen-xxl-down .modal-body {
6815
    overflow-y: auto;
6816
  }
6817
}
16848 stevensc 6818
 
16825 efrain 6819
.tooltip {
6820
  --bs-tooltip-zindex: 1080;
6821
  --bs-tooltip-max-width: 200px;
6822
  --bs-tooltip-padding-x: 0.5rem;
6823
  --bs-tooltip-padding-y: 0.25rem;
6824
  --bs-tooltip-margin: ;
6825
  --bs-tooltip-font-size: 0.812rem;
6826
  --bs-tooltip-color: #fff;
6827
  --bs-tooltip-bg: #000;
6828
  --bs-tooltip-border-radius: 0.25rem;
6829
  --bs-tooltip-opacity: 0.9;
6830
  --bs-tooltip-arrow-width: 0.8rem;
6831
  --bs-tooltip-arrow-height: 0.4rem;
6832
  z-index: var(--bs-tooltip-zindex);
6833
  display: block;
6834
  padding: var(--bs-tooltip-arrow-height);
6835
  margin: var(--bs-tooltip-margin);
6836
  font-family: var(--bs-font-sans-serif);
6837
  font-style: normal;
6838
  font-weight: 400;
6839
  line-height: 1.5;
6840
  text-align: left;
6841
  text-align: start;
6842
  text-decoration: none;
6843
  text-shadow: none;
6844
  text-transform: none;
6845
  letter-spacing: normal;
6846
  word-break: normal;
6847
  white-space: normal;
6848
  word-spacing: normal;
6849
  line-break: auto;
6850
  font-size: var(--bs-tooltip-font-size);
6851
  word-wrap: break-word;
6852
  opacity: 0;
6853
}
16848 stevensc 6854
 
16825 efrain 6855
.tooltip.show {
6856
  opacity: var(--bs-tooltip-opacity);
6857
}
16848 stevensc 6858
 
16825 efrain 6859
.tooltip .tooltip-arrow {
6860
  display: block;
6861
  width: var(--bs-tooltip-arrow-width);
6862
  height: var(--bs-tooltip-arrow-height);
6863
}
16848 stevensc 6864
 
16825 efrain 6865
.tooltip .tooltip-arrow::before {
6866
  position: absolute;
6867
  content: "";
6868
  border-color: transparent;
6869
  border-style: solid;
6870
}
6871
 
16848 stevensc 6872
.bs-tooltip-top .tooltip-arrow,
6873
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6874
  bottom: 0;
6875
}
16848 stevensc 6876
 
6877
.bs-tooltip-top .tooltip-arrow::before,
6878
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6879
  top: -1px;
6880
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6881
  border-top-color: var(--bs-tooltip-bg);
6882
}
6883
 
6884
/* rtl:begin:ignore */
16848 stevensc 6885
.bs-tooltip-end .tooltip-arrow,
6886
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6887
  left: 0;
6888
  width: var(--bs-tooltip-arrow-height);
6889
  height: var(--bs-tooltip-arrow-width);
6890
}
16848 stevensc 6891
 
6892
.bs-tooltip-end .tooltip-arrow::before,
6893
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6894
  right: -1px;
6895
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6896
  border-right-color: var(--bs-tooltip-bg);
6897
}
6898
 
6899
/* rtl:end:ignore */
16848 stevensc 6900
.bs-tooltip-bottom .tooltip-arrow,
6901
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6902
  top: 0;
6903
}
16848 stevensc 6904
 
6905
.bs-tooltip-bottom .tooltip-arrow::before,
6906
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6907
  bottom: -1px;
6908
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6909
  border-bottom-color: var(--bs-tooltip-bg);
6910
}
6911
 
6912
/* rtl:begin:ignore */
16848 stevensc 6913
.bs-tooltip-start .tooltip-arrow,
6914
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6915
  right: 0;
6916
  width: var(--bs-tooltip-arrow-height);
6917
  height: var(--bs-tooltip-arrow-width);
6918
}
16848 stevensc 6919
 
6920
.bs-tooltip-start .tooltip-arrow::before,
6921
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6922
  left: -1px;
6923
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6924
  border-left-color: var(--bs-tooltip-bg);
6925
}
6926
 
6927
/* rtl:end:ignore */
6928
.tooltip-inner {
6929
  max-width: var(--bs-tooltip-max-width);
6930
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6931
  color: var(--bs-tooltip-color);
6932
  text-align: center;
6933
  background-color: var(--bs-tooltip-bg);
6934
  border-radius: var(--bs-tooltip-border-radius);
6935
}
6936
 
6937
.popover {
6938
  --bs-popover-zindex: 1070;
6939
  --bs-popover-max-width: 276px;
6940
  --bs-popover-font-size: 0.812rem;
6941
  --bs-popover-bg: #fff;
6942
  --bs-popover-border-width: 1px;
6943
  --bs-popover-border-color: #e9ecef;
6944
  --bs-popover-border-radius: 0.5rem;
6945
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6946
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6947
  --bs-popover-header-padding-x: 1rem;
6948
  --bs-popover-header-padding-y: 0.5rem;
6949
  --bs-popover-header-font-size: 0.875rem;
6950
  --bs-popover-header-color: ;
6951
  --bs-popover-header-bg: #e9ecef;
6952
  --bs-popover-body-padding-x: 1rem;
6953
  --bs-popover-body-padding-y: 1rem;
6954
  --bs-popover-body-color: #000;
6955
  --bs-popover-arrow-width: 1rem;
6956
  --bs-popover-arrow-height: 0.5rem;
6957
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6958
  z-index: var(--bs-popover-zindex);
6959
  display: block;
6960
  max-width: var(--bs-popover-max-width);
6961
  font-family: var(--bs-font-sans-serif);
6962
  font-style: normal;
6963
  font-weight: 400;
6964
  line-height: 1.5;
6965
  text-align: left;
6966
  text-align: start;
6967
  text-decoration: none;
6968
  text-shadow: none;
6969
  text-transform: none;
6970
  letter-spacing: normal;
6971
  word-break: normal;
6972
  white-space: normal;
6973
  word-spacing: normal;
6974
  line-break: auto;
6975
  font-size: var(--bs-popover-font-size);
6976
  word-wrap: break-word;
6977
  background-color: var(--bs-popover-bg);
6978
  background-clip: padding-box;
6979
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6980
  border-radius: var(--bs-popover-border-radius);
6981
}
16848 stevensc 6982
 
16825 efrain 6983
.popover .popover-arrow {
6984
  display: block;
6985
  width: var(--bs-popover-arrow-width);
6986
  height: var(--bs-popover-arrow-height);
6987
}
16848 stevensc 6988
 
6989
.popover .popover-arrow::before,
6990
.popover .popover-arrow::after {
16825 efrain 6991
  position: absolute;
6992
  display: block;
6993
  content: "";
6994
  border-color: transparent;
6995
  border-style: solid;
6996
  border-width: 0;
6997
}
6998
 
16848 stevensc 6999
.bs-popover-top>.popover-arrow,
7000
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7001
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7002
}
16848 stevensc 7003
 
7004
.bs-popover-top>.popover-arrow::before,
7005
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7006
.bs-popover-top>.popover-arrow::after,
7007
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7008
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7009
}
16848 stevensc 7010
 
7011
.bs-popover-top>.popover-arrow::before,
7012
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7013
  bottom: 0;
7014
  border-top-color: var(--bs-popover-arrow-border);
7015
}
16848 stevensc 7016
 
7017
.bs-popover-top>.popover-arrow::after,
7018
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7019
  bottom: var(--bs-popover-border-width);
7020
  border-top-color: var(--bs-popover-bg);
7021
}
7022
 
7023
/* rtl:begin:ignore */
16848 stevensc 7024
.bs-popover-end>.popover-arrow,
7025
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7026
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7027
  width: var(--bs-popover-arrow-height);
7028
  height: var(--bs-popover-arrow-width);
7029
}
16848 stevensc 7030
 
7031
.bs-popover-end>.popover-arrow::before,
7032
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7033
.bs-popover-end>.popover-arrow::after,
7034
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7035
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7036
}
16848 stevensc 7037
 
7038
.bs-popover-end>.popover-arrow::before,
7039
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7040
  left: 0;
7041
  border-right-color: var(--bs-popover-arrow-border);
7042
}
16848 stevensc 7043
 
7044
.bs-popover-end>.popover-arrow::after,
7045
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7046
  left: var(--bs-popover-border-width);
7047
  border-right-color: var(--bs-popover-bg);
7048
}
7049
 
7050
/* rtl:end:ignore */
16848 stevensc 7051
.bs-popover-bottom>.popover-arrow,
7052
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7053
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7054
}
16848 stevensc 7055
 
7056
.bs-popover-bottom>.popover-arrow::before,
7057
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7058
.bs-popover-bottom>.popover-arrow::after,
7059
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7060
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7061
}
16848 stevensc 7062
 
7063
.bs-popover-bottom>.popover-arrow::before,
7064
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7065
  top: 0;
7066
  border-bottom-color: var(--bs-popover-arrow-border);
7067
}
16848 stevensc 7068
 
7069
.bs-popover-bottom>.popover-arrow::after,
7070
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7071
  top: var(--bs-popover-border-width);
7072
  border-bottom-color: var(--bs-popover-bg);
7073
}
16848 stevensc 7074
 
7075
.bs-popover-bottom .popover-header::before,
7076
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7077
  position: absolute;
7078
  top: 0;
7079
  left: 50%;
7080
  display: block;
7081
  width: var(--bs-popover-arrow-width);
7082
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7083
  content: "";
7084
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7085
}
7086
 
7087
/* rtl:begin:ignore */
16848 stevensc 7088
.bs-popover-start>.popover-arrow,
7089
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7090
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7091
  width: var(--bs-popover-arrow-height);
7092
  height: var(--bs-popover-arrow-width);
7093
}
16848 stevensc 7094
 
7095
.bs-popover-start>.popover-arrow::before,
7096
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7097
.bs-popover-start>.popover-arrow::after,
7098
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7099
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7100
}
16848 stevensc 7101
 
7102
.bs-popover-start>.popover-arrow::before,
7103
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7104
  right: 0;
7105
  border-left-color: var(--bs-popover-arrow-border);
7106
}
16848 stevensc 7107
 
7108
.bs-popover-start>.popover-arrow::after,
7109
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7110
  right: var(--bs-popover-border-width);
7111
  border-left-color: var(--bs-popover-bg);
7112
}
7113
 
7114
/* rtl:end:ignore */
7115
.popover-header {
7116
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7117
  margin-bottom: 0;
7118
  font-size: var(--bs-popover-header-font-size);
7119
  color: var(--bs-popover-header-color);
7120
  background-color: var(--bs-popover-header-bg);
7121
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7122
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7123
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7124
}
16848 stevensc 7125
 
16825 efrain 7126
.popover-header:empty {
7127
  display: none;
7128
}
7129
 
7130
.popover-body {
7131
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7132
  color: var(--bs-popover-body-color);
7133
}
7134
 
7135
.carousel {
7136
  position: relative;
7137
}
7138
 
7139
.carousel.pointer-event {
7140
  touch-action: pan-y;
7141
}
7142
 
7143
.carousel-inner {
7144
  position: relative;
7145
  width: 100%;
7146
  overflow: hidden;
7147
}
16848 stevensc 7148
 
16825 efrain 7149
.carousel-inner::after {
7150
  display: block;
7151
  clear: both;
7152
  content: "";
7153
}
7154
 
7155
.carousel-item {
7156
  position: relative;
7157
  display: none;
7158
  float: left;
7159
  width: 100%;
7160
  margin-right: -100%;
7161
  backface-visibility: hidden;
7162
  transition: transform 0.6s ease-in-out;
7163
}
16848 stevensc 7164
 
16825 efrain 7165
@media (prefers-reduced-motion: reduce) {
7166
  .carousel-item {
7167
    transition: none;
7168
  }
7169
}
7170
 
7171
.carousel-item.active,
7172
.carousel-item-next,
7173
.carousel-item-prev {
7174
  display: block;
7175
}
7176
 
7177
/* rtl:begin:ignore */
7178
.carousel-item-next:not(.carousel-item-start),
7179
.active.carousel-item-end {
7180
  transform: translateX(100%);
7181
}
7182
 
7183
.carousel-item-prev:not(.carousel-item-end),
7184
.active.carousel-item-start {
7185
  transform: translateX(-100%);
7186
}
7187
 
7188
/* rtl:end:ignore */
7189
.carousel-fade .carousel-item {
7190
  opacity: 0;
7191
  transition-property: opacity;
7192
  transform: none;
7193
}
16848 stevensc 7194
 
16825 efrain 7195
.carousel-fade .carousel-item.active,
7196
.carousel-fade .carousel-item-next.carousel-item-start,
7197
.carousel-fade .carousel-item-prev.carousel-item-end {
7198
  z-index: 1;
7199
  opacity: 1;
7200
}
16848 stevensc 7201
 
16825 efrain 7202
.carousel-fade .active.carousel-item-start,
7203
.carousel-fade .active.carousel-item-end {
7204
  z-index: 0;
7205
  opacity: 0;
7206
  transition: opacity 0s 0.6s;
7207
}
16848 stevensc 7208
 
16825 efrain 7209
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7210
 
16825 efrain 7211
  .carousel-fade .active.carousel-item-start,
7212
  .carousel-fade .active.carousel-item-end {
7213
    transition: none;
7214
  }
7215
}
7216
 
7217
.carousel-control-prev,
7218
.carousel-control-next {
7219
  position: absolute;
7220
  top: 0;
7221
  bottom: 0;
7222
  z-index: 1;
7223
  display: flex;
7224
  align-items: center;
7225
  justify-content: center;
7226
  width: 15%;
7227
  padding: 0;
7228
  color: #fff;
7229
  text-align: center;
7230
  background: none;
7231
  border: 0;
7232
  opacity: 0.5;
7233
  transition: opacity 0.15s ease;
7234
}
16848 stevensc 7235
 
16825 efrain 7236
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7237
 
16825 efrain 7238
  .carousel-control-prev,
7239
  .carousel-control-next {
7240
    transition: none;
7241
  }
7242
}
16848 stevensc 7243
 
7244
.carousel-control-prev:hover,
7245
.carousel-control-prev:focus,
16825 efrain 7246
.carousel-control-next:hover,
7247
.carousel-control-next:focus {
7248
  color: #fff;
7249
  text-decoration: none;
7250
  outline: 0;
7251
  opacity: 0.9;
7252
}
7253
 
7254
.carousel-control-prev {
7255
  left: 0;
7256
}
7257
 
7258
.carousel-control-next {
7259
  right: 0;
7260
}
7261
 
7262
.carousel-control-prev-icon,
7263
.carousel-control-next-icon {
7264
  display: inline-block;
7265
  width: 2rem;
7266
  height: 2rem;
7267
  background-repeat: no-repeat;
7268
  background-position: 50%;
7269
  background-size: 100% 100%;
7270
}
7271
 
7272
/* rtl:options: {
7273
  "autoRename": true,
7274
  "stringMap":[ {
7275
    "name"    : "prev-next",
7276
    "search"  : "prev",
7277
    "replace" : "next"
7278
  } ]
7279
} */
7280
.carousel-control-prev-icon {
7281
  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");
7282
}
7283
 
7284
.carousel-control-next-icon {
7285
  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");
7286
}
7287
 
7288
.carousel-indicators {
7289
  position: absolute;
7290
  right: 0;
7291
  bottom: 0;
7292
  left: 0;
7293
  z-index: 2;
7294
  display: flex;
7295
  justify-content: center;
7296
  padding: 0;
7297
  margin-right: 15%;
7298
  margin-bottom: 1rem;
7299
  margin-left: 15%;
7300
  list-style: none;
7301
}
16848 stevensc 7302
 
16825 efrain 7303
.carousel-indicators [data-bs-target] {
7304
  box-sizing: content-box;
7305
  flex: 0 1 auto;
7306
  width: 30px;
7307
  height: 3px;
7308
  padding: 0;
7309
  margin-right: 3px;
7310
  margin-left: 3px;
7311
  text-indent: -999px;
7312
  cursor: pointer;
7313
  background-color: #fff;
7314
  background-clip: padding-box;
7315
  border: 0;
7316
  border-top: 10px solid transparent;
7317
  border-bottom: 10px solid transparent;
7318
  opacity: 0.5;
7319
  transition: opacity 0.6s ease;
7320
}
16848 stevensc 7321
 
16825 efrain 7322
@media (prefers-reduced-motion: reduce) {
7323
  .carousel-indicators [data-bs-target] {
7324
    transition: none;
7325
  }
7326
}
16848 stevensc 7327
 
16825 efrain 7328
.carousel-indicators .active {
7329
  opacity: 1;
7330
}
7331
 
7332
.carousel-caption {
7333
  position: absolute;
7334
  right: 15%;
7335
  bottom: 1.25rem;
7336
  left: 15%;
7337
  padding-top: 1.25rem;
7338
  padding-bottom: 1.25rem;
7339
  color: #fff;
7340
  text-align: center;
7341
}
7342
 
7343
.carousel-dark .carousel-control-prev-icon,
7344
.carousel-dark .carousel-control-next-icon {
7345
  filter: invert(1) grayscale(100);
7346
}
16848 stevensc 7347
 
16825 efrain 7348
.carousel-dark .carousel-indicators [data-bs-target] {
7349
  background-color: #000;
7350
}
16848 stevensc 7351
 
16825 efrain 7352
.carousel-dark .carousel-caption {
7353
  color: #000;
7354
}
7355
 
7356
.spinner-grow,
7357
.spinner-border {
7358
  display: inline-block;
7359
  width: var(--bs-spinner-width);
7360
  height: var(--bs-spinner-height);
7361
  vertical-align: var(--bs-spinner-vertical-align);
7362
  border-radius: 50%;
7363
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7364
}
7365
 
7366
@keyframes spinner-border {
7367
  to {
16848 stevensc 7368
    transform: rotate(360deg)
7369
      /* rtl:ignore */
7370
    ;
16825 efrain 7371
  }
7372
}
16848 stevensc 7373
 
16825 efrain 7374
.spinner-border {
7375
  --bs-spinner-width: 2rem;
7376
  --bs-spinner-height: 2rem;
7377
  --bs-spinner-vertical-align: -0.125em;
7378
  --bs-spinner-border-width: 0.25em;
7379
  --bs-spinner-animation-speed: 0.75s;
7380
  --bs-spinner-animation-name: spinner-border;
7381
  border: var(--bs-spinner-border-width) solid currentcolor;
7382
  border-right-color: transparent;
7383
}
7384
 
7385
.spinner-border-sm {
7386
  --bs-spinner-width: 1rem;
7387
  --bs-spinner-height: 1rem;
7388
  --bs-spinner-border-width: 0.2em;
7389
}
7390
 
7391
@keyframes spinner-grow {
7392
  0% {
7393
    transform: scale(0);
7394
  }
16848 stevensc 7395
 
16825 efrain 7396
  50% {
7397
    opacity: 1;
7398
    transform: none;
7399
  }
7400
}
16848 stevensc 7401
 
16825 efrain 7402
.spinner-grow {
7403
  --bs-spinner-width: 2rem;
7404
  --bs-spinner-height: 2rem;
7405
  --bs-spinner-vertical-align: -0.125em;
7406
  --bs-spinner-animation-speed: 0.75s;
7407
  --bs-spinner-animation-name: spinner-grow;
7408
  background-color: currentcolor;
7409
  opacity: 0;
7410
}
7411
 
7412
.spinner-grow-sm {
7413
  --bs-spinner-width: 1rem;
7414
  --bs-spinner-height: 1rem;
7415
}
7416
 
7417
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7418
 
16825 efrain 7419
  .spinner-border,
7420
  .spinner-grow {
7421
    --bs-spinner-animation-speed: 1.5s;
7422
  }
7423
}
16848 stevensc 7424
 
16825 efrain 7425
.clearfix::after {
7426
  display: block;
7427
  clear: both;
7428
  content: "";
7429
}
7430
 
7431
.text-bg-primary {
7432
  color: #fff !important;
7433
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7434
}
7435
 
7436
.text-bg-secondary {
7437
  color: #fff !important;
7438
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7439
}
7440
 
7441
.text-bg-success {
7442
  color: #fff !important;
7443
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7444
}
7445
 
7446
.text-bg-info {
7447
  color: #000 !important;
7448
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7449
}
7450
 
7451
.text-bg-warning {
7452
  color: #000 !important;
7453
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7454
}
7455
 
7456
.text-bg-danger {
7457
  color: #fff !important;
7458
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7459
}
7460
 
7461
.text-bg-light {
7462
  color: #000 !important;
7463
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7464
}
7465
 
7466
.text-bg-dark {
7467
  color: #fff !important;
7468
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7469
}
7470
 
7471
.link-primary {
7472
  color: #6571ff !important;
7473
}
16848 stevensc 7474
 
7475
.link-primary:hover,
7476
.link-primary:focus {
16825 efrain 7477
  color: #515acc !important;
7478
}
7479
 
7480
.link-secondary {
7481
  color: #7987a1 !important;
7482
}
16848 stevensc 7483
 
7484
.link-secondary:hover,
7485
.link-secondary:focus {
16825 efrain 7486
  color: #616c81 !important;
7487
}
7488
 
7489
.link-success {
7490
  color: #05a34a !important;
7491
}
16848 stevensc 7492
 
7493
.link-success:hover,
7494
.link-success:focus {
16825 efrain 7495
  color: #04823b !important;
7496
}
7497
 
7498
.link-info {
7499
  color: #66d1d1 !important;
7500
}
16848 stevensc 7501
 
7502
.link-info:hover,
7503
.link-info:focus {
16825 efrain 7504
  color: #85dada !important;
7505
}
7506
 
7507
.link-warning {
7508
  color: #fbbc06 !important;
7509
}
16848 stevensc 7510
 
7511
.link-warning:hover,
7512
.link-warning:focus {
16825 efrain 7513
  color: #fcc938 !important;
7514
}
7515
 
7516
.link-danger {
7517
  color: #ff3366 !important;
7518
}
16848 stevensc 7519
 
7520
.link-danger:hover,
7521
.link-danger:focus {
16825 efrain 7522
  color: #cc2952 !important;
7523
}
7524
 
7525
.link-light {
7526
  color: #e9ecef !important;
7527
}
16848 stevensc 7528
 
7529
.link-light:hover,
7530
.link-light:focus {
16825 efrain 7531
  color: #edf0f2 !important;
7532
}
7533
 
7534
.link-dark {
7535
  color: #060c17 !important;
7536
}
16848 stevensc 7537
 
7538
.link-dark:hover,
7539
.link-dark:focus {
16825 efrain 7540
  color: #050a12 !important;
7541
}
7542
 
7543
.ratio {
7544
  position: relative;
7545
  width: 100%;
7546
}
16848 stevensc 7547
 
16825 efrain 7548
.ratio::before {
7549
  display: block;
7550
  padding-top: var(--bs-aspect-ratio);
7551
  content: "";
7552
}
16848 stevensc 7553
 
7554
.ratio>* {
16825 efrain 7555
  position: absolute;
7556
  top: 0;
7557
  left: 0;
7558
  width: 100%;
7559
  height: 100%;
7560
}
7561
 
7562
.ratio-1x1 {
7563
  --bs-aspect-ratio: 100%;
7564
}
7565
 
7566
.ratio-4x3 {
7567
  --bs-aspect-ratio: 75%;
7568
}
7569
 
7570
.ratio-16x9 {
7571
  --bs-aspect-ratio: 56.25%;
7572
}
7573
 
7574
.ratio-21x9 {
7575
  --bs-aspect-ratio: 42.8571428571%;
7576
}
7577
 
7578
.fixed-top {
7579
  position: fixed;
7580
  top: 0;
7581
  right: 0;
7582
  left: 0;
7583
  z-index: 1030;
7584
}
7585
 
7586
.fixed-bottom {
7587
  position: fixed;
7588
  right: 0;
7589
  bottom: 0;
7590
  left: 0;
7591
  z-index: 1030;
7592
}
7593
 
7594
.sticky-top {
7595
  position: sticky;
7596
  top: 0;
7597
  z-index: 1020;
7598
}
7599
 
7600
.sticky-bottom {
7601
  position: sticky;
7602
  bottom: 0;
7603
  z-index: 1020;
7604
}
7605
 
7606
@media (min-width: 576px) {
7607
  .sticky-sm-top {
7608
    position: sticky;
7609
    top: 0;
7610
    z-index: 1020;
7611
  }
16848 stevensc 7612
 
16825 efrain 7613
  .sticky-sm-bottom {
7614
    position: sticky;
7615
    bottom: 0;
7616
    z-index: 1020;
7617
  }
7618
}
16848 stevensc 7619
 
16825 efrain 7620
@media (min-width: 768px) {
7621
  .sticky-md-top {
7622
    position: sticky;
7623
    top: 0;
7624
    z-index: 1020;
7625
  }
16848 stevensc 7626
 
16825 efrain 7627
  .sticky-md-bottom {
7628
    position: sticky;
7629
    bottom: 0;
7630
    z-index: 1020;
7631
  }
7632
}
16848 stevensc 7633
 
16825 efrain 7634
@media (min-width: 992px) {
7635
  .sticky-lg-top {
7636
    position: sticky;
7637
    top: 0;
7638
    z-index: 1020;
7639
  }
16848 stevensc 7640
 
16825 efrain 7641
  .sticky-lg-bottom {
7642
    position: sticky;
7643
    bottom: 0;
7644
    z-index: 1020;
7645
  }
7646
}
16848 stevensc 7647
 
16825 efrain 7648
@media (min-width: 1200px) {
7649
  .sticky-xl-top {
7650
    position: sticky;
7651
    top: 0;
7652
    z-index: 1020;
7653
  }
16848 stevensc 7654
 
16825 efrain 7655
  .sticky-xl-bottom {
7656
    position: sticky;
7657
    bottom: 0;
7658
    z-index: 1020;
7659
  }
7660
}
16848 stevensc 7661
 
16825 efrain 7662
@media (min-width: 1400px) {
7663
  .sticky-xxl-top {
7664
    position: sticky;
7665
    top: 0;
7666
    z-index: 1020;
7667
  }
16848 stevensc 7668
 
16825 efrain 7669
  .sticky-xxl-bottom {
7670
    position: sticky;
7671
    bottom: 0;
7672
    z-index: 1020;
7673
  }
7674
}
16848 stevensc 7675
 
16825 efrain 7676
.hstack {
7677
  display: flex;
7678
  flex-direction: row;
7679
  align-items: center;
7680
  align-self: stretch;
7681
}
7682
 
7683
.vstack {
7684
  display: flex;
7685
  flex: 1 1 auto;
7686
  flex-direction: column;
7687
  align-self: stretch;
7688
}
7689
 
7690
.visually-hidden,
7691
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7692
  position: absolute !important;
7693
  width: 1px !important;
7694
  height: 1px !important;
7695
  padding: 0 !important;
7696
  margin: -1px !important;
7697
  overflow: hidden !important;
7698
  clip: rect(0, 0, 0, 0) !important;
7699
  white-space: nowrap !important;
7700
  border: 0 !important;
7701
}
7702
 
7703
.stretched-link::after {
7704
  position: absolute;
7705
  top: 0;
7706
  right: 0;
7707
  bottom: 0;
7708
  left: 0;
7709
  z-index: 1;
7710
  content: "";
7711
}
7712
 
7713
.text-truncate {
7714
  overflow: hidden;
7715
  text-overflow: ellipsis;
7716
  white-space: nowrap;
7717
}
7718
 
7719
.vr {
7720
  display: inline-block;
7721
  align-self: stretch;
7722
  width: 1px;
7723
  min-height: 1em;
7724
  background-color: currentcolor;
7725
  opacity: 0.1;
7726
}
7727
 
7728
.align-baseline {
7729
  vertical-align: baseline !important;
7730
}
7731
 
7732
.align-top {
7733
  vertical-align: top !important;
7734
}
7735
 
7736
.align-middle {
7737
  vertical-align: middle !important;
7738
}
7739
 
7740
.align-bottom {
7741
  vertical-align: bottom !important;
7742
}
7743
 
7744
.align-text-bottom {
7745
  vertical-align: text-bottom !important;
7746
}
7747
 
7748
.align-text-top {
7749
  vertical-align: text-top !important;
7750
}
7751
 
7752
.float-start {
7753
  float: left !important;
7754
}
7755
 
7756
.float-end {
7757
  float: right !important;
7758
}
7759
 
7760
.float-none {
7761
  float: none !important;
7762
}
7763
 
7764
.opacity-0 {
7765
  opacity: 0 !important;
7766
}
7767
 
7768
.opacity-25 {
7769
  opacity: 0.25 !important;
7770
}
7771
 
7772
.opacity-50 {
7773
  opacity: 0.5 !important;
7774
}
7775
 
7776
.opacity-75 {
7777
  opacity: 0.75 !important;
7778
}
7779
 
7780
.opacity-100 {
7781
  opacity: 1 !important;
7782
}
7783
 
7784
.overflow-auto {
7785
  overflow: auto !important;
7786
}
7787
 
7788
.overflow-hidden {
7789
  overflow: hidden !important;
7790
}
7791
 
7792
.overflow-visible {
7793
  overflow: visible !important;
7794
}
7795
 
7796
.overflow-scroll {
7797
  overflow: scroll !important;
7798
}
7799
 
7800
.d-inline {
7801
  display: inline !important;
7802
}
7803
 
7804
.d-inline-block {
7805
  display: inline-block !important;
7806
}
7807
 
7808
.d-block {
7809
  display: block !important;
7810
}
7811
 
7812
.d-grid {
7813
  display: grid !important;
7814
}
7815
 
7816
.d-table {
7817
  display: table !important;
7818
}
7819
 
7820
.d-table-row {
7821
  display: table-row !important;
7822
}
7823
 
7824
.d-table-cell {
7825
  display: table-cell !important;
7826
}
7827
 
7828
.d-flex {
7829
  display: flex !important;
7830
}
7831
 
7832
.d-inline-flex {
7833
  display: inline-flex !important;
7834
}
7835
 
16848 stevensc 7836
.d-none,
7837
.navbar .search-form {
16825 efrain 7838
  display: none !important;
7839
}
7840
 
7841
.shadow {
7842
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7843
}
7844
 
7845
.shadow-sm {
7846
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7847
}
7848
 
7849
.shadow-lg {
7850
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7851
}
7852
 
7853
.shadow-none {
7854
  box-shadow: none !important;
7855
}
7856
 
7857
.position-static {
7858
  position: static !important;
7859
}
7860
 
7861
.position-relative {
7862
  position: relative !important;
7863
}
7864
 
7865
.position-absolute {
7866
  position: absolute !important;
7867
}
7868
 
7869
.position-fixed {
7870
  position: fixed !important;
7871
}
7872
 
7873
.position-sticky {
7874
  position: sticky !important;
7875
}
7876
 
7877
.top-0 {
7878
  top: 0 !important;
7879
}
7880
 
7881
.top-10 {
7882
  top: 10% !important;
7883
}
7884
 
7885
.top-20 {
7886
  top: 20% !important;
7887
}
7888
 
7889
.top-25 {
7890
  top: 25% !important;
7891
}
7892
 
7893
.top-30 {
7894
  top: 30% !important;
7895
}
7896
 
7897
.top-40 {
7898
  top: 40% !important;
7899
}
7900
 
7901
.top-50 {
7902
  top: 50% !important;
7903
}
7904
 
7905
.top-60 {
7906
  top: 60% !important;
7907
}
7908
 
7909
.top-70 {
7910
  top: 70% !important;
7911
}
7912
 
7913
.top-75 {
7914
  top: 75% !important;
7915
}
7916
 
7917
.top-80 {
7918
  top: 80% !important;
7919
}
7920
 
7921
.top-90 {
7922
  top: 90% !important;
7923
}
7924
 
7925
.top-100 {
7926
  top: 100% !important;
7927
}
7928
 
7929
.bottom-0 {
7930
  bottom: 0 !important;
7931
}
7932
 
7933
.bottom-10 {
7934
  bottom: 10% !important;
7935
}
7936
 
7937
.bottom-20 {
7938
  bottom: 20% !important;
7939
}
7940
 
7941
.bottom-25 {
7942
  bottom: 25% !important;
7943
}
7944
 
7945
.bottom-30 {
7946
  bottom: 30% !important;
7947
}
7948
 
7949
.bottom-40 {
7950
  bottom: 40% !important;
7951
}
7952
 
7953
.bottom-50 {
7954
  bottom: 50% !important;
7955
}
7956
 
7957
.bottom-60 {
7958
  bottom: 60% !important;
7959
}
7960
 
7961
.bottom-70 {
7962
  bottom: 70% !important;
7963
}
7964
 
7965
.bottom-75 {
7966
  bottom: 75% !important;
7967
}
7968
 
7969
.bottom-80 {
7970
  bottom: 80% !important;
7971
}
7972
 
7973
.bottom-90 {
7974
  bottom: 90% !important;
7975
}
7976
 
7977
.bottom-100 {
7978
  bottom: 100% !important;
7979
}
7980
 
7981
.start-0 {
7982
  left: 0 !important;
7983
}
7984
 
7985
.start-10 {
7986
  left: 10% !important;
7987
}
7988
 
7989
.start-20 {
7990
  left: 20% !important;
7991
}
7992
 
7993
.start-25 {
7994
  left: 25% !important;
7995
}
7996
 
7997
.start-30 {
7998
  left: 30% !important;
7999
}
8000
 
8001
.start-40 {
8002
  left: 40% !important;
8003
}
8004
 
8005
.start-50 {
8006
  left: 50% !important;
8007
}
8008
 
8009
.start-60 {
8010
  left: 60% !important;
8011
}
8012
 
8013
.start-70 {
8014
  left: 70% !important;
8015
}
8016
 
8017
.start-75 {
8018
  left: 75% !important;
8019
}
8020
 
8021
.start-80 {
8022
  left: 80% !important;
8023
}
8024
 
8025
.start-90 {
8026
  left: 90% !important;
8027
}
8028
 
8029
.start-100 {
8030
  left: 100% !important;
8031
}
8032
 
8033
.end-0 {
8034
  right: 0 !important;
8035
}
8036
 
8037
.end-10 {
8038
  right: 10% !important;
8039
}
8040
 
8041
.end-20 {
8042
  right: 20% !important;
8043
}
8044
 
8045
.end-25 {
8046
  right: 25% !important;
8047
}
8048
 
8049
.end-30 {
8050
  right: 30% !important;
8051
}
8052
 
8053
.end-40 {
8054
  right: 40% !important;
8055
}
8056
 
8057
.end-50 {
8058
  right: 50% !important;
8059
}
8060
 
8061
.end-60 {
8062
  right: 60% !important;
8063
}
8064
 
8065
.end-70 {
8066
  right: 70% !important;
8067
}
8068
 
8069
.end-75 {
8070
  right: 75% !important;
8071
}
8072
 
8073
.end-80 {
8074
  right: 80% !important;
8075
}
8076
 
8077
.end-90 {
8078
  right: 90% !important;
8079
}
8080
 
8081
.end-100 {
8082
  right: 100% !important;
8083
}
8084
 
8085
.translate-middle {
8086
  transform: translate(-50%, -50%) !important;
8087
}
8088
 
8089
.translate-middle-x {
8090
  transform: translateX(-50%) !important;
8091
}
8092
 
8093
.translate-middle-y {
8094
  transform: translateY(-50%) !important;
8095
}
8096
 
8097
.border {
8098
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8099
}
8100
 
8101
.border-0 {
8102
  border: 0 !important;
8103
}
8104
 
8105
.border-top {
8106
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8107
}
8108
 
8109
.border-top-0 {
8110
  border-top: 0 !important;
8111
}
8112
 
8113
.border-end {
8114
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8115
}
8116
 
8117
.border-end-0 {
8118
  border-right: 0 !important;
8119
}
8120
 
8121
.border-bottom {
8122
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8123
}
8124
 
8125
.border-bottom-0 {
8126
  border-bottom: 0 !important;
8127
}
8128
 
8129
.border-start {
8130
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8131
}
8132
 
8133
.border-start-0 {
8134
  border-left: 0 !important;
8135
}
8136
 
8137
.border-primary {
8138
  --bs-border-opacity: 1;
8139
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8140
}
8141
 
8142
.border-secondary {
8143
  --bs-border-opacity: 1;
8144
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8145
}
8146
 
8147
.border-success {
8148
  --bs-border-opacity: 1;
8149
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8150
}
8151
 
8152
.border-info {
8153
  --bs-border-opacity: 1;
8154
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8155
}
8156
 
8157
.border-warning {
8158
  --bs-border-opacity: 1;
8159
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8160
}
8161
 
16848 stevensc 8162
.border-danger,
8163
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8164
  --bs-border-opacity: 1;
8165
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8166
}
8167
 
8168
.border-light {
8169
  --bs-border-opacity: 1;
8170
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8171
}
8172
 
8173
.border-dark {
8174
  --bs-border-opacity: 1;
8175
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8176
}
8177
 
8178
.border-white {
8179
  --bs-border-opacity: 1;
8180
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8181
}
8182
 
8183
.border-1 {
8184
  --bs-border-width: 1px;
8185
}
8186
 
8187
.border-2 {
8188
  --bs-border-width: 2px;
8189
}
8190
 
8191
.border-3 {
8192
  --bs-border-width: 3px;
8193
}
8194
 
8195
.border-4 {
8196
  --bs-border-width: 4px;
8197
}
8198
 
8199
.border-5 {
8200
  --bs-border-width: 5px;
8201
}
8202
 
8203
.border-opacity-10 {
8204
  --bs-border-opacity: 0.1;
8205
}
8206
 
8207
.border-opacity-25 {
8208
  --bs-border-opacity: 0.25;
8209
}
8210
 
8211
.border-opacity-50 {
8212
  --bs-border-opacity: 0.5;
8213
}
8214
 
8215
.border-opacity-75 {
8216
  --bs-border-opacity: 0.75;
8217
}
8218
 
8219
.border-opacity-100 {
8220
  --bs-border-opacity: 1;
8221
}
8222
 
8223
.w-25 {
8224
  width: 25% !important;
8225
}
8226
 
8227
.w-50 {
8228
  width: 50% !important;
8229
}
8230
 
8231
.w-75 {
8232
  width: 75% !important;
8233
}
8234
 
8235
.w-100 {
8236
  width: 100% !important;
8237
}
8238
 
8239
.w-auto {
8240
  width: auto !important;
8241
}
8242
 
8243
.mw-100 {
8244
  max-width: 100% !important;
8245
}
8246
 
8247
.vw-100 {
8248
  width: 100vw !important;
8249
}
8250
 
8251
.min-vw-100 {
8252
  min-width: 100vw !important;
8253
}
8254
 
8255
.h-25 {
8256
  height: 25% !important;
8257
}
8258
 
8259
.h-50 {
8260
  height: 50% !important;
8261
}
8262
 
8263
.h-75 {
8264
  height: 75% !important;
8265
}
8266
 
8267
.h-100 {
8268
  height: 100% !important;
8269
}
8270
 
8271
.h-auto {
8272
  height: auto !important;
8273
}
8274
 
8275
.mh-100 {
8276
  max-height: 100% !important;
8277
}
8278
 
8279
.vh-100 {
8280
  height: 100vh !important;
8281
}
8282
 
8283
.min-vh-100 {
8284
  min-height: 100vh !important;
8285
}
8286
 
8287
.flex-fill {
8288
  flex: 1 1 auto !important;
8289
}
8290
 
8291
.flex-row {
8292
  flex-direction: row !important;
8293
}
8294
 
8295
.flex-column {
8296
  flex-direction: column !important;
8297
}
8298
 
8299
.flex-row-reverse {
8300
  flex-direction: row-reverse !important;
8301
}
8302
 
8303
.flex-column-reverse {
8304
  flex-direction: column-reverse !important;
8305
}
8306
 
8307
.flex-grow-0 {
8308
  flex-grow: 0 !important;
8309
}
8310
 
8311
.flex-grow-1 {
8312
  flex-grow: 1 !important;
8313
}
8314
 
8315
.flex-shrink-0 {
8316
  flex-shrink: 0 !important;
8317
}
8318
 
8319
.flex-shrink-1 {
8320
  flex-shrink: 1 !important;
8321
}
8322
 
8323
.flex-wrap {
8324
  flex-wrap: wrap !important;
8325
}
8326
 
8327
.flex-nowrap {
8328
  flex-wrap: nowrap !important;
8329
}
8330
 
8331
.flex-wrap-reverse {
8332
  flex-wrap: wrap-reverse !important;
8333
}
8334
 
8335
.justify-content-start {
8336
  justify-content: flex-start !important;
8337
}
8338
 
8339
.justify-content-end {
8340
  justify-content: flex-end !important;
8341
}
8342
 
16848 stevensc 8343
.justify-content-center,
8344
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8345
  justify-content: center !important;
8346
}
8347
 
8348
.justify-content-between {
8349
  justify-content: space-between !important;
8350
}
8351
 
8352
.justify-content-around {
8353
  justify-content: space-around !important;
8354
}
8355
 
8356
.justify-content-evenly {
8357
  justify-content: space-evenly !important;
8358
}
8359
 
8360
.align-items-start {
8361
  align-items: flex-start !important;
8362
}
8363
 
8364
.align-items-end {
8365
  align-items: flex-end !important;
8366
}
8367
 
16848 stevensc 8368
.align-items-center,
8369
.navbar .search-form {
16825 efrain 8370
  align-items: center !important;
8371
}
8372
 
8373
.align-items-baseline {
8374
  align-items: baseline !important;
8375
}
8376
 
8377
.align-items-stretch {
8378
  align-items: stretch !important;
8379
}
8380
 
8381
.align-content-start {
8382
  align-content: flex-start !important;
8383
}
8384
 
8385
.align-content-end {
8386
  align-content: flex-end !important;
8387
}
8388
 
8389
.align-content-center {
8390
  align-content: center !important;
8391
}
8392
 
8393
.align-content-between {
8394
  align-content: space-between !important;
8395
}
8396
 
8397
.align-content-around {
8398
  align-content: space-around !important;
8399
}
8400
 
8401
.align-content-stretch {
8402
  align-content: stretch !important;
8403
}
8404
 
8405
.align-self-auto {
8406
  align-self: auto !important;
8407
}
8408
 
8409
.align-self-start {
8410
  align-self: flex-start !important;
8411
}
8412
 
8413
.align-self-end {
8414
  align-self: flex-end !important;
8415
}
8416
 
8417
.align-self-center {
8418
  align-self: center !important;
8419
}
8420
 
8421
.align-self-baseline {
8422
  align-self: baseline !important;
8423
}
8424
 
8425
.align-self-stretch {
8426
  align-self: stretch !important;
8427
}
8428
 
8429
.order-first {
8430
  order: -1 !important;
8431
}
8432
 
8433
.order-0 {
8434
  order: 0 !important;
8435
}
8436
 
8437
.order-1 {
8438
  order: 1 !important;
8439
}
8440
 
8441
.order-2 {
8442
  order: 2 !important;
8443
}
8444
 
8445
.order-3 {
8446
  order: 3 !important;
8447
}
8448
 
8449
.order-4 {
8450
  order: 4 !important;
8451
}
8452
 
8453
.order-5 {
8454
  order: 5 !important;
8455
}
8456
 
8457
.order-last {
8458
  order: 6 !important;
8459
}
8460
 
8461
.m-0 {
8462
  margin: 0 !important;
8463
}
8464
 
8465
.m-1 {
8466
  margin: 0.25rem !important;
8467
}
8468
 
8469
.m-2 {
8470
  margin: 0.5rem !important;
8471
}
8472
 
8473
.m-3 {
8474
  margin: 1rem !important;
8475
}
8476
 
8477
.m-4 {
8478
  margin: 1.5rem !important;
8479
}
8480
 
8481
.m-5 {
8482
  margin: 3rem !important;
8483
}
8484
 
8485
.m-6 {
8486
  margin: 4.5rem !important;
8487
}
8488
 
8489
.m-7 {
8490
  margin: 6rem !important;
8491
}
8492
 
8493
.m-auto {
8494
  margin: auto !important;
8495
}
8496
 
8497
.mx-0 {
8498
  margin-right: 0 !important;
8499
  margin-left: 0 !important;
8500
}
8501
 
8502
.mx-1 {
8503
  margin-right: 0.25rem !important;
8504
  margin-left: 0.25rem !important;
8505
}
8506
 
8507
.mx-2 {
8508
  margin-right: 0.5rem !important;
8509
  margin-left: 0.5rem !important;
8510
}
8511
 
8512
.mx-3 {
8513
  margin-right: 1rem !important;
8514
  margin-left: 1rem !important;
8515
}
8516
 
8517
.mx-4 {
8518
  margin-right: 1.5rem !important;
8519
  margin-left: 1.5rem !important;
8520
}
8521
 
8522
.mx-5 {
8523
  margin-right: 3rem !important;
8524
  margin-left: 3rem !important;
8525
}
8526
 
8527
.mx-6 {
8528
  margin-right: 4.5rem !important;
8529
  margin-left: 4.5rem !important;
8530
}
8531
 
8532
.mx-7 {
8533
  margin-right: 6rem !important;
8534
  margin-left: 6rem !important;
8535
}
8536
 
8537
.mx-auto {
8538
  margin-right: auto !important;
8539
  margin-left: auto !important;
8540
}
8541
 
8542
.my-0 {
8543
  margin-top: 0 !important;
8544
  margin-bottom: 0 !important;
8545
}
8546
 
8547
.my-1 {
8548
  margin-top: 0.25rem !important;
8549
  margin-bottom: 0.25rem !important;
8550
}
8551
 
8552
.my-2 {
8553
  margin-top: 0.5rem !important;
8554
  margin-bottom: 0.5rem !important;
8555
}
8556
 
8557
.my-3 {
8558
  margin-top: 1rem !important;
8559
  margin-bottom: 1rem !important;
8560
}
8561
 
8562
.my-4 {
8563
  margin-top: 1.5rem !important;
8564
  margin-bottom: 1.5rem !important;
8565
}
8566
 
8567
.my-5 {
8568
  margin-top: 3rem !important;
8569
  margin-bottom: 3rem !important;
8570
}
8571
 
8572
.my-6 {
8573
  margin-top: 4.5rem !important;
8574
  margin-bottom: 4.5rem !important;
8575
}
8576
 
8577
.my-7 {
8578
  margin-top: 6rem !important;
8579
  margin-bottom: 6rem !important;
8580
}
8581
 
8582
.my-auto {
8583
  margin-top: auto !important;
8584
  margin-bottom: auto !important;
8585
}
8586
 
8587
.mt-0 {
8588
  margin-top: 0 !important;
8589
}
8590
 
8591
.mt-1 {
8592
  margin-top: 0.25rem !important;
8593
}
8594
 
8595
.mt-2 {
8596
  margin-top: 0.5rem !important;
8597
}
8598
 
16848 stevensc 8599
.mt-3,
8600
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8601
  margin-top: 1rem !important;
8602
}
8603
 
8604
.mt-4 {
8605
  margin-top: 1.5rem !important;
8606
}
8607
 
8608
.mt-5 {
8609
  margin-top: 3rem !important;
8610
}
8611
 
8612
.mt-6 {
8613
  margin-top: 4.5rem !important;
8614
}
8615
 
8616
.mt-7 {
8617
  margin-top: 6rem !important;
8618
}
8619
 
8620
.mt-auto {
8621
  margin-top: auto !important;
8622
}
8623
 
8624
.me-0 {
8625
  margin-right: 0 !important;
8626
}
8627
 
8628
.me-1 {
8629
  margin-right: 0.25rem !important;
8630
}
8631
 
8632
.me-2 {
8633
  margin-right: 0.5rem !important;
8634
}
8635
 
8636
.me-3 {
8637
  margin-right: 1rem !important;
8638
}
8639
 
8640
.me-4 {
8641
  margin-right: 1.5rem !important;
8642
}
8643
 
8644
.me-5 {
8645
  margin-right: 3rem !important;
8646
}
8647
 
8648
.me-6 {
8649
  margin-right: 4.5rem !important;
8650
}
8651
 
8652
.me-7 {
8653
  margin-right: 6rem !important;
8654
}
8655
 
8656
.me-auto {
8657
  margin-right: auto !important;
8658
}
8659
 
8660
.mb-0 {
8661
  margin-bottom: 0 !important;
8662
}
8663
 
16848 stevensc 8664
.mb-1,
8665
.example .btn-group {
16825 efrain 8666
  margin-bottom: 0.25rem !important;
8667
}
8668
 
8669
.mb-2 {
8670
  margin-bottom: 0.5rem !important;
8671
}
8672
 
8673
.mb-3 {
8674
  margin-bottom: 1rem !important;
8675
}
8676
 
8677
.mb-4 {
8678
  margin-bottom: 1.5rem !important;
8679
}
8680
 
8681
.mb-5 {
8682
  margin-bottom: 3rem !important;
8683
}
8684
 
8685
.mb-6 {
8686
  margin-bottom: 4.5rem !important;
8687
}
8688
 
8689
.mb-7 {
8690
  margin-bottom: 6rem !important;
8691
}
8692
 
8693
.mb-auto {
8694
  margin-bottom: auto !important;
8695
}
8696
 
8697
.ms-0 {
8698
  margin-left: 0 !important;
8699
}
8700
 
8701
.ms-1 {
8702
  margin-left: 0.25rem !important;
8703
}
8704
 
8705
.ms-2 {
8706
  margin-left: 0.5rem !important;
8707
}
8708
 
8709
.ms-3 {
8710
  margin-left: 1rem !important;
8711
}
8712
 
8713
.ms-4 {
8714
  margin-left: 1.5rem !important;
8715
}
8716
 
8717
.ms-5 {
8718
  margin-left: 3rem !important;
8719
}
8720
 
8721
.ms-6 {
8722
  margin-left: 4.5rem !important;
8723
}
8724
 
8725
.ms-7 {
8726
  margin-left: 6rem !important;
8727
}
8728
 
8729
.ms-auto {
8730
  margin-left: auto !important;
8731
}
8732
 
8733
.m-n1 {
8734
  margin: -0.25rem !important;
8735
}
8736
 
8737
.m-n2 {
8738
  margin: -0.5rem !important;
8739
}
8740
 
8741
.m-n3 {
8742
  margin: -1rem !important;
8743
}
8744
 
8745
.m-n4 {
8746
  margin: -1.5rem !important;
8747
}
8748
 
8749
.m-n5 {
8750
  margin: -3rem !important;
8751
}
8752
 
8753
.m-n6 {
8754
  margin: -4.5rem !important;
8755
}
8756
 
8757
.m-n7 {
8758
  margin: -6rem !important;
8759
}
8760
 
8761
.mx-n1 {
8762
  margin-right: -0.25rem !important;
8763
  margin-left: -0.25rem !important;
8764
}
8765
 
8766
.mx-n2 {
8767
  margin-right: -0.5rem !important;
8768
  margin-left: -0.5rem !important;
8769
}
8770
 
8771
.mx-n3 {
8772
  margin-right: -1rem !important;
8773
  margin-left: -1rem !important;
8774
}
8775
 
8776
.mx-n4 {
8777
  margin-right: -1.5rem !important;
8778
  margin-left: -1.5rem !important;
8779
}
8780
 
8781
.mx-n5 {
8782
  margin-right: -3rem !important;
8783
  margin-left: -3rem !important;
8784
}
8785
 
8786
.mx-n6 {
8787
  margin-right: -4.5rem !important;
8788
  margin-left: -4.5rem !important;
8789
}
8790
 
8791
.mx-n7 {
8792
  margin-right: -6rem !important;
8793
  margin-left: -6rem !important;
8794
}
8795
 
8796
.my-n1 {
8797
  margin-top: -0.25rem !important;
8798
  margin-bottom: -0.25rem !important;
8799
}
8800
 
8801
.my-n2 {
8802
  margin-top: -0.5rem !important;
8803
  margin-bottom: -0.5rem !important;
8804
}
8805
 
8806
.my-n3 {
8807
  margin-top: -1rem !important;
8808
  margin-bottom: -1rem !important;
8809
}
8810
 
8811
.my-n4 {
8812
  margin-top: -1.5rem !important;
8813
  margin-bottom: -1.5rem !important;
8814
}
8815
 
8816
.my-n5 {
8817
  margin-top: -3rem !important;
8818
  margin-bottom: -3rem !important;
8819
}
8820
 
8821
.my-n6 {
8822
  margin-top: -4.5rem !important;
8823
  margin-bottom: -4.5rem !important;
8824
}
8825
 
8826
.my-n7 {
8827
  margin-top: -6rem !important;
8828
  margin-bottom: -6rem !important;
8829
}
8830
 
8831
.mt-n1 {
8832
  margin-top: -0.25rem !important;
8833
}
8834
 
8835
.mt-n2 {
8836
  margin-top: -0.5rem !important;
8837
}
8838
 
8839
.mt-n3 {
8840
  margin-top: -1rem !important;
8841
}
8842
 
8843
.mt-n4 {
8844
  margin-top: -1.5rem !important;
8845
}
8846
 
8847
.mt-n5 {
8848
  margin-top: -3rem !important;
8849
}
8850
 
8851
.mt-n6 {
8852
  margin-top: -4.5rem !important;
8853
}
8854
 
8855
.mt-n7 {
8856
  margin-top: -6rem !important;
8857
}
8858
 
8859
.me-n1 {
8860
  margin-right: -0.25rem !important;
8861
}
8862
 
8863
.me-n2 {
8864
  margin-right: -0.5rem !important;
8865
}
8866
 
8867
.me-n3 {
8868
  margin-right: -1rem !important;
8869
}
8870
 
8871
.me-n4 {
8872
  margin-right: -1.5rem !important;
8873
}
8874
 
8875
.me-n5 {
8876
  margin-right: -3rem !important;
8877
}
8878
 
8879
.me-n6 {
8880
  margin-right: -4.5rem !important;
8881
}
8882
 
8883
.me-n7 {
8884
  margin-right: -6rem !important;
8885
}
8886
 
8887
.mb-n1 {
8888
  margin-bottom: -0.25rem !important;
8889
}
8890
 
8891
.mb-n2 {
8892
  margin-bottom: -0.5rem !important;
8893
}
8894
 
8895
.mb-n3 {
8896
  margin-bottom: -1rem !important;
8897
}
8898
 
8899
.mb-n4 {
8900
  margin-bottom: -1.5rem !important;
8901
}
8902
 
8903
.mb-n5 {
8904
  margin-bottom: -3rem !important;
8905
}
8906
 
8907
.mb-n6 {
8908
  margin-bottom: -4.5rem !important;
8909
}
8910
 
8911
.mb-n7 {
8912
  margin-bottom: -6rem !important;
8913
}
8914
 
8915
.ms-n1 {
8916
  margin-left: -0.25rem !important;
8917
}
8918
 
8919
.ms-n2 {
8920
  margin-left: -0.5rem !important;
8921
}
8922
 
8923
.ms-n3 {
8924
  margin-left: -1rem !important;
8925
}
8926
 
8927
.ms-n4 {
8928
  margin-left: -1.5rem !important;
8929
}
8930
 
8931
.ms-n5 {
8932
  margin-left: -3rem !important;
8933
}
8934
 
8935
.ms-n6 {
8936
  margin-left: -4.5rem !important;
8937
}
8938
 
8939
.ms-n7 {
8940
  margin-left: -6rem !important;
8941
}
8942
 
8943
.p-0 {
8944
  padding: 0 !important;
8945
}
8946
 
8947
.p-1 {
8948
  padding: 0.25rem !important;
8949
}
8950
 
8951
.p-2 {
8952
  padding: 0.5rem !important;
8953
}
8954
 
8955
.p-3 {
8956
  padding: 1rem !important;
8957
}
8958
 
8959
.p-4 {
8960
  padding: 1.5rem !important;
8961
}
8962
 
8963
.p-5 {
8964
  padding: 3rem !important;
8965
}
8966
 
8967
.p-6 {
8968
  padding: 4.5rem !important;
8969
}
8970
 
8971
.p-7 {
8972
  padding: 6rem !important;
8973
}
8974
 
8975
.px-0 {
8976
  padding-right: 0 !important;
8977
  padding-left: 0 !important;
8978
}
8979
 
8980
.px-1 {
8981
  padding-right: 0.25rem !important;
8982
  padding-left: 0.25rem !important;
8983
}
8984
 
8985
.px-2 {
8986
  padding-right: 0.5rem !important;
8987
  padding-left: 0.5rem !important;
8988
}
8989
 
8990
.px-3 {
8991
  padding-right: 1rem !important;
8992
  padding-left: 1rem !important;
8993
}
8994
 
8995
.px-4 {
8996
  padding-right: 1.5rem !important;
8997
  padding-left: 1.5rem !important;
8998
}
8999
 
9000
.px-5 {
9001
  padding-right: 3rem !important;
9002
  padding-left: 3rem !important;
9003
}
9004
 
9005
.px-6 {
9006
  padding-right: 4.5rem !important;
9007
  padding-left: 4.5rem !important;
9008
}
9009
 
9010
.px-7 {
9011
  padding-right: 6rem !important;
9012
  padding-left: 6rem !important;
9013
}
9014
 
9015
.py-0 {
9016
  padding-top: 0 !important;
9017
  padding-bottom: 0 !important;
9018
}
9019
 
9020
.py-1 {
9021
  padding-top: 0.25rem !important;
9022
  padding-bottom: 0.25rem !important;
9023
}
9024
 
9025
.py-2 {
9026
  padding-top: 0.5rem !important;
9027
  padding-bottom: 0.5rem !important;
9028
}
9029
 
9030
.py-3 {
9031
  padding-top: 1rem !important;
9032
  padding-bottom: 1rem !important;
9033
}
9034
 
9035
.py-4 {
9036
  padding-top: 1.5rem !important;
9037
  padding-bottom: 1.5rem !important;
9038
}
9039
 
9040
.py-5 {
9041
  padding-top: 3rem !important;
9042
  padding-bottom: 3rem !important;
9043
}
9044
 
9045
.py-6 {
9046
  padding-top: 4.5rem !important;
9047
  padding-bottom: 4.5rem !important;
9048
}
9049
 
9050
.py-7 {
9051
  padding-top: 6rem !important;
9052
  padding-bottom: 6rem !important;
9053
}
9054
 
9055
.pt-0 {
9056
  padding-top: 0 !important;
9057
}
9058
 
9059
.pt-1 {
9060
  padding-top: 0.25rem !important;
9061
}
9062
 
9063
.pt-2 {
9064
  padding-top: 0.5rem !important;
9065
}
9066
 
9067
.pt-3 {
9068
  padding-top: 1rem !important;
9069
}
9070
 
9071
.pt-4 {
9072
  padding-top: 1.5rem !important;
9073
}
9074
 
9075
.pt-5 {
9076
  padding-top: 3rem !important;
9077
}
9078
 
9079
.pt-6 {
9080
  padding-top: 4.5rem !important;
9081
}
9082
 
9083
.pt-7 {
9084
  padding-top: 6rem !important;
9085
}
9086
 
9087
.pe-0 {
9088
  padding-right: 0 !important;
9089
}
9090
 
9091
.pe-1 {
9092
  padding-right: 0.25rem !important;
9093
}
9094
 
9095
.pe-2 {
9096
  padding-right: 0.5rem !important;
9097
}
9098
 
9099
.pe-3 {
9100
  padding-right: 1rem !important;
9101
}
9102
 
9103
.pe-4 {
9104
  padding-right: 1.5rem !important;
9105
}
9106
 
9107
.pe-5 {
9108
  padding-right: 3rem !important;
9109
}
9110
 
9111
.pe-6 {
9112
  padding-right: 4.5rem !important;
9113
}
9114
 
9115
.pe-7 {
9116
  padding-right: 6rem !important;
9117
}
9118
 
9119
.pb-0 {
9120
  padding-bottom: 0 !important;
9121
}
9122
 
9123
.pb-1 {
9124
  padding-bottom: 0.25rem !important;
9125
}
9126
 
9127
.pb-2 {
9128
  padding-bottom: 0.5rem !important;
9129
}
9130
 
9131
.pb-3 {
9132
  padding-bottom: 1rem !important;
9133
}
9134
 
9135
.pb-4 {
9136
  padding-bottom: 1.5rem !important;
9137
}
9138
 
9139
.pb-5 {
9140
  padding-bottom: 3rem !important;
9141
}
9142
 
9143
.pb-6 {
9144
  padding-bottom: 4.5rem !important;
9145
}
9146
 
9147
.pb-7 {
9148
  padding-bottom: 6rem !important;
9149
}
9150
 
9151
.ps-0 {
9152
  padding-left: 0 !important;
9153
}
9154
 
9155
.ps-1 {
9156
  padding-left: 0.25rem !important;
9157
}
9158
 
9159
.ps-2 {
9160
  padding-left: 0.5rem !important;
9161
}
9162
 
9163
.ps-3 {
9164
  padding-left: 1rem !important;
9165
}
9166
 
9167
.ps-4 {
9168
  padding-left: 1.5rem !important;
9169
}
9170
 
9171
.ps-5 {
9172
  padding-left: 3rem !important;
9173
}
9174
 
9175
.ps-6 {
9176
  padding-left: 4.5rem !important;
9177
}
9178
 
9179
.ps-7 {
9180
  padding-left: 6rem !important;
9181
}
9182
 
9183
.gap-0 {
9184
  gap: 0 !important;
9185
}
9186
 
9187
.gap-1 {
9188
  gap: 0.25rem !important;
9189
}
9190
 
9191
.gap-2 {
9192
  gap: 0.5rem !important;
9193
}
9194
 
9195
.gap-3 {
9196
  gap: 1rem !important;
9197
}
9198
 
9199
.gap-4 {
9200
  gap: 1.5rem !important;
9201
}
9202
 
9203
.gap-5 {
9204
  gap: 3rem !important;
9205
}
9206
 
9207
.gap-6 {
9208
  gap: 4.5rem !important;
9209
}
9210
 
9211
.gap-7 {
9212
  gap: 6rem !important;
9213
}
9214
 
9215
.font-monospace {
9216
  font-family: var(--bs-font-monospace) !important;
9217
}
9218
 
9219
.fs-1 {
9220
  font-size: calc(1.375rem + 1.5vw) !important;
9221
}
9222
 
9223
.fs-2 {
9224
  font-size: calc(1.325rem + 0.9vw) !important;
9225
}
9226
 
9227
.fs-3 {
9228
  font-size: calc(1.275rem + 0.3vw) !important;
9229
}
9230
 
9231
.fs-4 {
9232
  font-size: 1.25rem !important;
9233
}
9234
 
9235
.fs-5 {
9236
  font-size: 1rem !important;
9237
}
9238
 
9239
.fs-6 {
9240
  font-size: 0.875rem !important;
9241
}
9242
 
9243
.fst-italic {
9244
  font-style: italic !important;
9245
}
9246
 
9247
.fst-normal {
9248
  font-style: normal !important;
9249
}
9250
 
9251
.fw-light {
9252
  font-weight: 300 !important;
9253
}
9254
 
9255
.fw-lighter {
9256
  font-weight: lighter !important;
9257
}
9258
 
9259
.fw-normal {
9260
  font-weight: 400 !important;
9261
}
9262
 
9263
.fw-bold {
9264
  font-weight: 500 !important;
9265
}
9266
 
9267
.fw-semibold {
9268
  font-weight: 600 !important;
9269
}
9270
 
9271
.fw-bolder {
9272
  font-weight: 700 !important;
9273
}
9274
 
9275
.lh-1 {
9276
  line-height: 1 !important;
9277
}
9278
 
9279
.lh-sm {
9280
  line-height: 1.25 !important;
9281
}
9282
 
9283
.lh-base {
9284
  line-height: 1.5 !important;
9285
}
9286
 
9287
.lh-lg {
9288
  line-height: 2 !important;
9289
}
9290
 
9291
.text-start {
9292
  text-align: left !important;
9293
}
9294
 
9295
.text-end {
9296
  text-align: right !important;
9297
}
9298
 
9299
.text-center {
9300
  text-align: center !important;
9301
}
9302
 
9303
.text-decoration-none {
9304
  text-decoration: none !important;
9305
}
9306
 
9307
.text-decoration-underline {
9308
  text-decoration: underline !important;
9309
}
9310
 
9311
.text-decoration-line-through {
9312
  text-decoration: line-through !important;
9313
}
9314
 
9315
.text-lowercase {
9316
  text-transform: lowercase !important;
9317
}
9318
 
9319
.text-uppercase {
9320
  text-transform: uppercase !important;
9321
}
9322
 
9323
.text-capitalize {
9324
  text-transform: capitalize !important;
9325
}
9326
 
9327
.text-wrap {
9328
  white-space: normal !important;
9329
}
9330
 
9331
.text-nowrap {
9332
  white-space: nowrap !important;
9333
}
9334
 
9335
/* rtl:begin:remove */
9336
.text-break {
9337
  word-wrap: break-word !important;
9338
  word-break: break-word !important;
9339
}
9340
 
9341
/* rtl:end:remove */
9342
.text-primary {
9343
  --bs-text-opacity: 1;
9344
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9345
}
9346
 
9347
.text-secondary {
9348
  --bs-text-opacity: 1;
9349
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9350
}
9351
 
9352
.text-success {
9353
  --bs-text-opacity: 1;
9354
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9355
}
9356
 
9357
.text-info {
9358
  --bs-text-opacity: 1;
9359
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9360
}
9361
 
9362
.text-warning {
9363
  --bs-text-opacity: 1;
9364
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9365
}
9366
 
9367
.text-danger {
9368
  --bs-text-opacity: 1;
9369
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9370
}
9371
 
9372
.text-light {
9373
  --bs-text-opacity: 1;
9374
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9375
}
9376
 
9377
.text-dark {
9378
  --bs-text-opacity: 1;
9379
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9380
}
9381
 
9382
.text-black {
9383
  --bs-text-opacity: 1;
9384
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9385
}
9386
 
9387
.text-white {
9388
  --bs-text-opacity: 1;
9389
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9390
}
9391
 
9392
.text-body {
9393
  --bs-text-opacity: 1;
9394
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9395
}
9396
 
16848 stevensc 9397
.text-muted,
9398
.dropzone.dz-clickable .dz-message * {
16825 efrain 9399
  --bs-text-opacity: 1;
9400
  color: #7987a1 !important;
9401
}
9402
 
9403
.text-black-50 {
9404
  --bs-text-opacity: 1;
9405
  color: rgba(0, 0, 0, 0.5) !important;
9406
}
9407
 
9408
.text-white-50 {
9409
  --bs-text-opacity: 1;
9410
  color: rgba(255, 255, 255, 0.5) !important;
9411
}
9412
 
9413
.text-reset {
9414
  --bs-text-opacity: 1;
9415
  color: inherit !important;
9416
}
9417
 
9418
.text-opacity-25 {
9419
  --bs-text-opacity: 0.25;
9420
}
9421
 
9422
.text-opacity-50 {
9423
  --bs-text-opacity: 0.5;
9424
}
9425
 
9426
.text-opacity-75 {
9427
  --bs-text-opacity: 0.75;
9428
}
9429
 
9430
.text-opacity-100 {
9431
  --bs-text-opacity: 1;
9432
}
9433
 
9434
.bg-primary {
9435
  --bs-bg-opacity: 1;
9436
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9437
}
9438
 
9439
.bg-secondary {
9440
  --bs-bg-opacity: 1;
9441
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9442
}
9443
 
9444
.bg-success {
9445
  --bs-bg-opacity: 1;
9446
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9447
}
9448
 
9449
.bg-info {
9450
  --bs-bg-opacity: 1;
9451
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9452
}
9453
 
9454
.bg-warning {
9455
  --bs-bg-opacity: 1;
9456
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9457
}
9458
 
9459
.bg-danger {
9460
  --bs-bg-opacity: 1;
9461
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9462
}
9463
 
9464
.bg-light {
9465
  --bs-bg-opacity: 1;
9466
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9467
}
9468
 
9469
.bg-dark {
9470
  --bs-bg-opacity: 1;
9471
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9472
}
9473
 
9474
.bg-black {
9475
  --bs-bg-opacity: 1;
9476
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9477
}
9478
 
9479
.bg-white {
9480
  --bs-bg-opacity: 1;
9481
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9482
}
9483
 
9484
.bg-body {
9485
  --bs-bg-opacity: 1;
9486
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9487
}
9488
 
9489
.bg-transparent {
9490
  --bs-bg-opacity: 1;
9491
  background-color: transparent !important;
9492
}
9493
 
9494
.bg-opacity-10 {
9495
  --bs-bg-opacity: 0.1;
9496
}
9497
 
9498
.bg-opacity-25 {
9499
  --bs-bg-opacity: 0.25;
9500
}
9501
 
9502
.bg-opacity-50 {
9503
  --bs-bg-opacity: 0.5;
9504
}
9505
 
9506
.bg-opacity-75 {
9507
  --bs-bg-opacity: 0.75;
9508
}
9509
 
9510
.bg-opacity-100 {
9511
  --bs-bg-opacity: 1;
9512
}
9513
 
9514
.bg-gradient {
9515
  background-image: var(--bs-gradient) !important;
9516
}
9517
 
9518
.user-select-all {
9519
  user-select: all !important;
9520
}
9521
 
9522
.user-select-auto {
9523
  user-select: auto !important;
9524
}
9525
 
9526
.user-select-none {
9527
  user-select: none !important;
9528
}
9529
 
9530
.pe-none {
9531
  pointer-events: none !important;
9532
}
9533
 
9534
.pe-auto {
9535
  pointer-events: auto !important;
9536
}
9537
 
9538
.rounded {
9539
  border-radius: var(--bs-border-radius) !important;
9540
}
9541
 
9542
.rounded-0 {
9543
  border-radius: 0 !important;
9544
}
9545
 
9546
.rounded-1 {
9547
  border-radius: var(--bs-border-radius-sm) !important;
9548
}
9549
 
9550
.rounded-2 {
9551
  border-radius: var(--bs-border-radius) !important;
9552
}
9553
 
9554
.rounded-3 {
9555
  border-radius: var(--bs-border-radius-lg) !important;
9556
}
9557
 
9558
.rounded-4 {
9559
  border-radius: var(--bs-border-radius-xl) !important;
9560
}
9561
 
9562
.rounded-5 {
9563
  border-radius: var(--bs-border-radius-2xl) !important;
9564
}
9565
 
9566
.rounded-circle {
9567
  border-radius: 50% !important;
9568
}
9569
 
9570
.rounded-pill {
9571
  border-radius: var(--bs-border-radius-pill) !important;
9572
}
9573
 
9574
.rounded-top {
9575
  border-top-left-radius: var(--bs-border-radius) !important;
9576
  border-top-right-radius: var(--bs-border-radius) !important;
9577
}
9578
 
9579
.rounded-end {
9580
  border-top-right-radius: var(--bs-border-radius) !important;
9581
  border-bottom-right-radius: var(--bs-border-radius) !important;
9582
}
9583
 
9584
.rounded-bottom {
9585
  border-bottom-right-radius: var(--bs-border-radius) !important;
9586
  border-bottom-left-radius: var(--bs-border-radius) !important;
9587
}
9588
 
9589
.rounded-start {
9590
  border-bottom-left-radius: var(--bs-border-radius) !important;
9591
  border-top-left-radius: var(--bs-border-radius) !important;
9592
}
9593
 
9594
.visible {
9595
  visibility: visible !important;
9596
}
9597
 
9598
.invisible {
9599
  visibility: hidden !important;
9600
}
9601
 
9602
.bg-gray-100 {
9603
  background-color: #f8f9fa !important;
9604
}
9605
 
9606
.bg-gray-200 {
9607
  background-color: #e9ecef !important;
9608
}
9609
 
9610
.bg-gray-300 {
9611
  background-color: #dee2e6 !important;
9612
}
9613
 
9614
.bg-gray-400 {
9615
  background-color: #cbd1db !important;
9616
}
9617
 
9618
.bg-gray-500 {
9619
  background-color: #aeb7c5 !important;
9620
}
9621
 
9622
.bg-gray-600 {
9623
  background-color: #7987a1 !important;
9624
}
9625
 
9626
.bg-gray-700 {
9627
  background-color: #41516c !important;
9628
}
9629
 
9630
.bg-gray-800 {
9631
  background-color: #212a3a !important;
9632
}
9633
 
9634
.bg-gray-900 {
9635
  background-color: #060c17 !important;
9636
}
9637
 
9638
@media (min-width: 576px) {
9639
  .float-sm-start {
9640
    float: left !important;
9641
  }
16848 stevensc 9642
 
16825 efrain 9643
  .float-sm-end {
9644
    float: right !important;
9645
  }
16848 stevensc 9646
 
16825 efrain 9647
  .float-sm-none {
9648
    float: none !important;
9649
  }
16848 stevensc 9650
 
16825 efrain 9651
  .d-sm-inline {
9652
    display: inline !important;
9653
  }
16848 stevensc 9654
 
16825 efrain 9655
  .d-sm-inline-block {
9656
    display: inline-block !important;
9657
  }
16848 stevensc 9658
 
16825 efrain 9659
  .d-sm-block {
9660
    display: block !important;
9661
  }
16848 stevensc 9662
 
16825 efrain 9663
  .d-sm-grid {
9664
    display: grid !important;
9665
  }
16848 stevensc 9666
 
16825 efrain 9667
  .d-sm-table {
9668
    display: table !important;
9669
  }
16848 stevensc 9670
 
16825 efrain 9671
  .d-sm-table-row {
9672
    display: table-row !important;
9673
  }
16848 stevensc 9674
 
16825 efrain 9675
  .d-sm-table-cell {
9676
    display: table-cell !important;
9677
  }
16848 stevensc 9678
 
16825 efrain 9679
  .d-sm-flex {
9680
    display: flex !important;
9681
  }
16848 stevensc 9682
 
16825 efrain 9683
  .d-sm-inline-flex {
9684
    display: inline-flex !important;
9685
  }
16848 stevensc 9686
 
16825 efrain 9687
  .d-sm-none {
9688
    display: none !important;
9689
  }
16848 stevensc 9690
 
16825 efrain 9691
  .border-sm {
9692
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9693
  }
16848 stevensc 9694
 
16825 efrain 9695
  .border-sm-0 {
9696
    border: 0 !important;
9697
  }
16848 stevensc 9698
 
16825 efrain 9699
  .border-top-sm {
9700
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9701
  }
16848 stevensc 9702
 
16825 efrain 9703
  .border-top-sm-0 {
9704
    border-top: 0 !important;
9705
  }
16848 stevensc 9706
 
16825 efrain 9707
  .border-end-sm {
9708
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9709
  }
16848 stevensc 9710
 
16825 efrain 9711
  .border-end-sm-0 {
9712
    border-right: 0 !important;
9713
  }
16848 stevensc 9714
 
16825 efrain 9715
  .border-bottom-sm {
9716
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9717
  }
16848 stevensc 9718
 
16825 efrain 9719
  .border-bottom-sm-0 {
9720
    border-bottom: 0 !important;
9721
  }
16848 stevensc 9722
 
16825 efrain 9723
  .border-start-sm {
9724
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9725
  }
16848 stevensc 9726
 
16825 efrain 9727
  .border-start-sm-0 {
9728
    border-left: 0 !important;
9729
  }
16848 stevensc 9730
 
16825 efrain 9731
  .flex-sm-fill {
9732
    flex: 1 1 auto !important;
9733
  }
16848 stevensc 9734
 
16825 efrain 9735
  .flex-sm-row {
9736
    flex-direction: row !important;
9737
  }
16848 stevensc 9738
 
16825 efrain 9739
  .flex-sm-column {
9740
    flex-direction: column !important;
9741
  }
16848 stevensc 9742
 
16825 efrain 9743
  .flex-sm-row-reverse {
9744
    flex-direction: row-reverse !important;
9745
  }
16848 stevensc 9746
 
16825 efrain 9747
  .flex-sm-column-reverse {
9748
    flex-direction: column-reverse !important;
9749
  }
16848 stevensc 9750
 
16825 efrain 9751
  .flex-sm-grow-0 {
9752
    flex-grow: 0 !important;
9753
  }
16848 stevensc 9754
 
16825 efrain 9755
  .flex-sm-grow-1 {
9756
    flex-grow: 1 !important;
9757
  }
16848 stevensc 9758
 
16825 efrain 9759
  .flex-sm-shrink-0 {
9760
    flex-shrink: 0 !important;
9761
  }
16848 stevensc 9762
 
16825 efrain 9763
  .flex-sm-shrink-1 {
9764
    flex-shrink: 1 !important;
9765
  }
16848 stevensc 9766
 
16825 efrain 9767
  .flex-sm-wrap {
9768
    flex-wrap: wrap !important;
9769
  }
16848 stevensc 9770
 
16825 efrain 9771
  .flex-sm-nowrap {
9772
    flex-wrap: nowrap !important;
9773
  }
16848 stevensc 9774
 
16825 efrain 9775
  .flex-sm-wrap-reverse {
9776
    flex-wrap: wrap-reverse !important;
9777
  }
16848 stevensc 9778
 
16825 efrain 9779
  .justify-content-sm-start {
9780
    justify-content: flex-start !important;
9781
  }
16848 stevensc 9782
 
16825 efrain 9783
  .justify-content-sm-end {
9784
    justify-content: flex-end !important;
9785
  }
16848 stevensc 9786
 
16825 efrain 9787
  .justify-content-sm-center {
9788
    justify-content: center !important;
9789
  }
16848 stevensc 9790
 
16825 efrain 9791
  .justify-content-sm-between {
9792
    justify-content: space-between !important;
9793
  }
16848 stevensc 9794
 
16825 efrain 9795
  .justify-content-sm-around {
9796
    justify-content: space-around !important;
9797
  }
16848 stevensc 9798
 
16825 efrain 9799
  .justify-content-sm-evenly {
9800
    justify-content: space-evenly !important;
9801
  }
16848 stevensc 9802
 
16825 efrain 9803
  .align-items-sm-start {
9804
    align-items: flex-start !important;
9805
  }
16848 stevensc 9806
 
16825 efrain 9807
  .align-items-sm-end {
9808
    align-items: flex-end !important;
9809
  }
16848 stevensc 9810
 
16825 efrain 9811
  .align-items-sm-center {
9812
    align-items: center !important;
9813
  }
16848 stevensc 9814
 
16825 efrain 9815
  .align-items-sm-baseline {
9816
    align-items: baseline !important;
9817
  }
16848 stevensc 9818
 
16825 efrain 9819
  .align-items-sm-stretch {
9820
    align-items: stretch !important;
9821
  }
16848 stevensc 9822
 
16825 efrain 9823
  .align-content-sm-start {
9824
    align-content: flex-start !important;
9825
  }
16848 stevensc 9826
 
16825 efrain 9827
  .align-content-sm-end {
9828
    align-content: flex-end !important;
9829
  }
16848 stevensc 9830
 
16825 efrain 9831
  .align-content-sm-center {
9832
    align-content: center !important;
9833
  }
16848 stevensc 9834
 
16825 efrain 9835
  .align-content-sm-between {
9836
    align-content: space-between !important;
9837
  }
16848 stevensc 9838
 
16825 efrain 9839
  .align-content-sm-around {
9840
    align-content: space-around !important;
9841
  }
16848 stevensc 9842
 
16825 efrain 9843
  .align-content-sm-stretch {
9844
    align-content: stretch !important;
9845
  }
16848 stevensc 9846
 
16825 efrain 9847
  .align-self-sm-auto {
9848
    align-self: auto !important;
9849
  }
16848 stevensc 9850
 
16825 efrain 9851
  .align-self-sm-start {
9852
    align-self: flex-start !important;
9853
  }
16848 stevensc 9854
 
16825 efrain 9855
  .align-self-sm-end {
9856
    align-self: flex-end !important;
9857
  }
16848 stevensc 9858
 
16825 efrain 9859
  .align-self-sm-center {
9860
    align-self: center !important;
9861
  }
16848 stevensc 9862
 
16825 efrain 9863
  .align-self-sm-baseline {
9864
    align-self: baseline !important;
9865
  }
16848 stevensc 9866
 
16825 efrain 9867
  .align-self-sm-stretch {
9868
    align-self: stretch !important;
9869
  }
16848 stevensc 9870
 
16825 efrain 9871
  .order-sm-first {
9872
    order: -1 !important;
9873
  }
16848 stevensc 9874
 
16825 efrain 9875
  .order-sm-0 {
9876
    order: 0 !important;
9877
  }
16848 stevensc 9878
 
16825 efrain 9879
  .order-sm-1 {
9880
    order: 1 !important;
9881
  }
16848 stevensc 9882
 
16825 efrain 9883
  .order-sm-2 {
9884
    order: 2 !important;
9885
  }
16848 stevensc 9886
 
16825 efrain 9887
  .order-sm-3 {
9888
    order: 3 !important;
9889
  }
16848 stevensc 9890
 
16825 efrain 9891
  .order-sm-4 {
9892
    order: 4 !important;
9893
  }
16848 stevensc 9894
 
16825 efrain 9895
  .order-sm-5 {
9896
    order: 5 !important;
9897
  }
16848 stevensc 9898
 
16825 efrain 9899
  .order-sm-last {
9900
    order: 6 !important;
9901
  }
16848 stevensc 9902
 
16825 efrain 9903
  .m-sm-0 {
9904
    margin: 0 !important;
9905
  }
16848 stevensc 9906
 
16825 efrain 9907
  .m-sm-1 {
9908
    margin: 0.25rem !important;
9909
  }
16848 stevensc 9910
 
16825 efrain 9911
  .m-sm-2 {
9912
    margin: 0.5rem !important;
9913
  }
16848 stevensc 9914
 
16825 efrain 9915
  .m-sm-3 {
9916
    margin: 1rem !important;
9917
  }
16848 stevensc 9918
 
16825 efrain 9919
  .m-sm-4 {
9920
    margin: 1.5rem !important;
9921
  }
16848 stevensc 9922
 
16825 efrain 9923
  .m-sm-5 {
9924
    margin: 3rem !important;
9925
  }
16848 stevensc 9926
 
16825 efrain 9927
  .m-sm-6 {
9928
    margin: 4.5rem !important;
9929
  }
16848 stevensc 9930
 
16825 efrain 9931
  .m-sm-7 {
9932
    margin: 6rem !important;
9933
  }
16848 stevensc 9934
 
16825 efrain 9935
  .m-sm-auto {
9936
    margin: auto !important;
9937
  }
16848 stevensc 9938
 
16825 efrain 9939
  .mx-sm-0 {
9940
    margin-right: 0 !important;
9941
    margin-left: 0 !important;
9942
  }
16848 stevensc 9943
 
16825 efrain 9944
  .mx-sm-1 {
9945
    margin-right: 0.25rem !important;
9946
    margin-left: 0.25rem !important;
9947
  }
16848 stevensc 9948
 
16825 efrain 9949
  .mx-sm-2 {
9950
    margin-right: 0.5rem !important;
9951
    margin-left: 0.5rem !important;
9952
  }
16848 stevensc 9953
 
16825 efrain 9954
  .mx-sm-3 {
9955
    margin-right: 1rem !important;
9956
    margin-left: 1rem !important;
9957
  }
16848 stevensc 9958
 
16825 efrain 9959
  .mx-sm-4 {
9960
    margin-right: 1.5rem !important;
9961
    margin-left: 1.5rem !important;
9962
  }
16848 stevensc 9963
 
16825 efrain 9964
  .mx-sm-5 {
9965
    margin-right: 3rem !important;
9966
    margin-left: 3rem !important;
9967
  }
16848 stevensc 9968
 
16825 efrain 9969
  .mx-sm-6 {
9970
    margin-right: 4.5rem !important;
9971
    margin-left: 4.5rem !important;
9972
  }
16848 stevensc 9973
 
16825 efrain 9974
  .mx-sm-7 {
9975
    margin-right: 6rem !important;
9976
    margin-left: 6rem !important;
9977
  }
16848 stevensc 9978
 
16825 efrain 9979
  .mx-sm-auto {
9980
    margin-right: auto !important;
9981
    margin-left: auto !important;
9982
  }
16848 stevensc 9983
 
16825 efrain 9984
  .my-sm-0 {
9985
    margin-top: 0 !important;
9986
    margin-bottom: 0 !important;
9987
  }
16848 stevensc 9988
 
16825 efrain 9989
  .my-sm-1 {
9990
    margin-top: 0.25rem !important;
9991
    margin-bottom: 0.25rem !important;
9992
  }
16848 stevensc 9993
 
16825 efrain 9994
  .my-sm-2 {
9995
    margin-top: 0.5rem !important;
9996
    margin-bottom: 0.5rem !important;
9997
  }
16848 stevensc 9998
 
16825 efrain 9999
  .my-sm-3 {
10000
    margin-top: 1rem !important;
10001
    margin-bottom: 1rem !important;
10002
  }
16848 stevensc 10003
 
16825 efrain 10004
  .my-sm-4 {
10005
    margin-top: 1.5rem !important;
10006
    margin-bottom: 1.5rem !important;
10007
  }
16848 stevensc 10008
 
16825 efrain 10009
  .my-sm-5 {
10010
    margin-top: 3rem !important;
10011
    margin-bottom: 3rem !important;
10012
  }
16848 stevensc 10013
 
16825 efrain 10014
  .my-sm-6 {
10015
    margin-top: 4.5rem !important;
10016
    margin-bottom: 4.5rem !important;
10017
  }
16848 stevensc 10018
 
16825 efrain 10019
  .my-sm-7 {
10020
    margin-top: 6rem !important;
10021
    margin-bottom: 6rem !important;
10022
  }
16848 stevensc 10023
 
16825 efrain 10024
  .my-sm-auto {
10025
    margin-top: auto !important;
10026
    margin-bottom: auto !important;
10027
  }
16848 stevensc 10028
 
16825 efrain 10029
  .mt-sm-0 {
10030
    margin-top: 0 !important;
10031
  }
16848 stevensc 10032
 
16825 efrain 10033
  .mt-sm-1 {
10034
    margin-top: 0.25rem !important;
10035
  }
16848 stevensc 10036
 
16825 efrain 10037
  .mt-sm-2 {
10038
    margin-top: 0.5rem !important;
10039
  }
16848 stevensc 10040
 
16825 efrain 10041
  .mt-sm-3 {
10042
    margin-top: 1rem !important;
10043
  }
16848 stevensc 10044
 
16825 efrain 10045
  .mt-sm-4 {
10046
    margin-top: 1.5rem !important;
10047
  }
16848 stevensc 10048
 
16825 efrain 10049
  .mt-sm-5 {
10050
    margin-top: 3rem !important;
10051
  }
16848 stevensc 10052
 
16825 efrain 10053
  .mt-sm-6 {
10054
    margin-top: 4.5rem !important;
10055
  }
16848 stevensc 10056
 
16825 efrain 10057
  .mt-sm-7 {
10058
    margin-top: 6rem !important;
10059
  }
16848 stevensc 10060
 
16825 efrain 10061
  .mt-sm-auto {
10062
    margin-top: auto !important;
10063
  }
16848 stevensc 10064
 
16825 efrain 10065
  .me-sm-0 {
10066
    margin-right: 0 !important;
10067
  }
16848 stevensc 10068
 
16825 efrain 10069
  .me-sm-1 {
10070
    margin-right: 0.25rem !important;
10071
  }
16848 stevensc 10072
 
16825 efrain 10073
  .me-sm-2 {
10074
    margin-right: 0.5rem !important;
10075
  }
16848 stevensc 10076
 
16825 efrain 10077
  .me-sm-3 {
10078
    margin-right: 1rem !important;
10079
  }
16848 stevensc 10080
 
16825 efrain 10081
  .me-sm-4 {
10082
    margin-right: 1.5rem !important;
10083
  }
16848 stevensc 10084
 
16825 efrain 10085
  .me-sm-5 {
10086
    margin-right: 3rem !important;
10087
  }
16848 stevensc 10088
 
16825 efrain 10089
  .me-sm-6 {
10090
    margin-right: 4.5rem !important;
10091
  }
16848 stevensc 10092
 
16825 efrain 10093
  .me-sm-7 {
10094
    margin-right: 6rem !important;
10095
  }
16848 stevensc 10096
 
16825 efrain 10097
  .me-sm-auto {
10098
    margin-right: auto !important;
10099
  }
16848 stevensc 10100
 
16825 efrain 10101
  .mb-sm-0 {
10102
    margin-bottom: 0 !important;
10103
  }
16848 stevensc 10104
 
16825 efrain 10105
  .mb-sm-1 {
10106
    margin-bottom: 0.25rem !important;
10107
  }
16848 stevensc 10108
 
16825 efrain 10109
  .mb-sm-2 {
10110
    margin-bottom: 0.5rem !important;
10111
  }
16848 stevensc 10112
 
16825 efrain 10113
  .mb-sm-3 {
10114
    margin-bottom: 1rem !important;
10115
  }
16848 stevensc 10116
 
16825 efrain 10117
  .mb-sm-4 {
10118
    margin-bottom: 1.5rem !important;
10119
  }
16848 stevensc 10120
 
16825 efrain 10121
  .mb-sm-5 {
10122
    margin-bottom: 3rem !important;
10123
  }
16848 stevensc 10124
 
16825 efrain 10125
  .mb-sm-6 {
10126
    margin-bottom: 4.5rem !important;
10127
  }
16848 stevensc 10128
 
16825 efrain 10129
  .mb-sm-7 {
10130
    margin-bottom: 6rem !important;
10131
  }
16848 stevensc 10132
 
16825 efrain 10133
  .mb-sm-auto {
10134
    margin-bottom: auto !important;
10135
  }
16848 stevensc 10136
 
16825 efrain 10137
  .ms-sm-0 {
10138
    margin-left: 0 !important;
10139
  }
16848 stevensc 10140
 
16825 efrain 10141
  .ms-sm-1 {
10142
    margin-left: 0.25rem !important;
10143
  }
16848 stevensc 10144
 
16825 efrain 10145
  .ms-sm-2 {
10146
    margin-left: 0.5rem !important;
10147
  }
16848 stevensc 10148
 
16825 efrain 10149
  .ms-sm-3 {
10150
    margin-left: 1rem !important;
10151
  }
16848 stevensc 10152
 
16825 efrain 10153
  .ms-sm-4 {
10154
    margin-left: 1.5rem !important;
10155
  }
16848 stevensc 10156
 
16825 efrain 10157
  .ms-sm-5 {
10158
    margin-left: 3rem !important;
10159
  }
16848 stevensc 10160
 
16825 efrain 10161
  .ms-sm-6 {
10162
    margin-left: 4.5rem !important;
10163
  }
16848 stevensc 10164
 
16825 efrain 10165
  .ms-sm-7 {
10166
    margin-left: 6rem !important;
10167
  }
16848 stevensc 10168
 
16825 efrain 10169
  .ms-sm-auto {
10170
    margin-left: auto !important;
10171
  }
16848 stevensc 10172
 
16825 efrain 10173
  .m-sm-n1 {
10174
    margin: -0.25rem !important;
10175
  }
16848 stevensc 10176
 
16825 efrain 10177
  .m-sm-n2 {
10178
    margin: -0.5rem !important;
10179
  }
16848 stevensc 10180
 
16825 efrain 10181
  .m-sm-n3 {
10182
    margin: -1rem !important;
10183
  }
16848 stevensc 10184
 
16825 efrain 10185
  .m-sm-n4 {
10186
    margin: -1.5rem !important;
10187
  }
16848 stevensc 10188
 
16825 efrain 10189
  .m-sm-n5 {
10190
    margin: -3rem !important;
10191
  }
16848 stevensc 10192
 
16825 efrain 10193
  .m-sm-n6 {
10194
    margin: -4.5rem !important;
10195
  }
16848 stevensc 10196
 
16825 efrain 10197
  .m-sm-n7 {
10198
    margin: -6rem !important;
10199
  }
16848 stevensc 10200
 
16825 efrain 10201
  .mx-sm-n1 {
10202
    margin-right: -0.25rem !important;
10203
    margin-left: -0.25rem !important;
10204
  }
16848 stevensc 10205
 
16825 efrain 10206
  .mx-sm-n2 {
10207
    margin-right: -0.5rem !important;
10208
    margin-left: -0.5rem !important;
10209
  }
16848 stevensc 10210
 
16825 efrain 10211
  .mx-sm-n3 {
10212
    margin-right: -1rem !important;
10213
    margin-left: -1rem !important;
10214
  }
16848 stevensc 10215
 
16825 efrain 10216
  .mx-sm-n4 {
10217
    margin-right: -1.5rem !important;
10218
    margin-left: -1.5rem !important;
10219
  }
16848 stevensc 10220
 
16825 efrain 10221
  .mx-sm-n5 {
10222
    margin-right: -3rem !important;
10223
    margin-left: -3rem !important;
10224
  }
16848 stevensc 10225
 
16825 efrain 10226
  .mx-sm-n6 {
10227
    margin-right: -4.5rem !important;
10228
    margin-left: -4.5rem !important;
10229
  }
16848 stevensc 10230
 
16825 efrain 10231
  .mx-sm-n7 {
10232
    margin-right: -6rem !important;
10233
    margin-left: -6rem !important;
10234
  }
16848 stevensc 10235
 
16825 efrain 10236
  .my-sm-n1 {
10237
    margin-top: -0.25rem !important;
10238
    margin-bottom: -0.25rem !important;
10239
  }
16848 stevensc 10240
 
16825 efrain 10241
  .my-sm-n2 {
10242
    margin-top: -0.5rem !important;
10243
    margin-bottom: -0.5rem !important;
10244
  }
16848 stevensc 10245
 
16825 efrain 10246
  .my-sm-n3 {
10247
    margin-top: -1rem !important;
10248
    margin-bottom: -1rem !important;
10249
  }
16848 stevensc 10250
 
16825 efrain 10251
  .my-sm-n4 {
10252
    margin-top: -1.5rem !important;
10253
    margin-bottom: -1.5rem !important;
10254
  }
16848 stevensc 10255
 
16825 efrain 10256
  .my-sm-n5 {
10257
    margin-top: -3rem !important;
10258
    margin-bottom: -3rem !important;
10259
  }
16848 stevensc 10260
 
16825 efrain 10261
  .my-sm-n6 {
10262
    margin-top: -4.5rem !important;
10263
    margin-bottom: -4.5rem !important;
10264
  }
16848 stevensc 10265
 
16825 efrain 10266
  .my-sm-n7 {
10267
    margin-top: -6rem !important;
10268
    margin-bottom: -6rem !important;
10269
  }
16848 stevensc 10270
 
16825 efrain 10271
  .mt-sm-n1 {
10272
    margin-top: -0.25rem !important;
10273
  }
16848 stevensc 10274
 
16825 efrain 10275
  .mt-sm-n2 {
10276
    margin-top: -0.5rem !important;
10277
  }
16848 stevensc 10278
 
16825 efrain 10279
  .mt-sm-n3 {
10280
    margin-top: -1rem !important;
10281
  }
16848 stevensc 10282
 
16825 efrain 10283
  .mt-sm-n4 {
10284
    margin-top: -1.5rem !important;
10285
  }
16848 stevensc 10286
 
16825 efrain 10287
  .mt-sm-n5 {
10288
    margin-top: -3rem !important;
10289
  }
16848 stevensc 10290
 
16825 efrain 10291
  .mt-sm-n6 {
10292
    margin-top: -4.5rem !important;
10293
  }
16848 stevensc 10294
 
16825 efrain 10295
  .mt-sm-n7 {
10296
    margin-top: -6rem !important;
10297
  }
16848 stevensc 10298
 
16825 efrain 10299
  .me-sm-n1 {
10300
    margin-right: -0.25rem !important;
10301
  }
16848 stevensc 10302
 
16825 efrain 10303
  .me-sm-n2 {
10304
    margin-right: -0.5rem !important;
10305
  }
16848 stevensc 10306
 
16825 efrain 10307
  .me-sm-n3 {
10308
    margin-right: -1rem !important;
10309
  }
16848 stevensc 10310
 
16825 efrain 10311
  .me-sm-n4 {
10312
    margin-right: -1.5rem !important;
10313
  }
16848 stevensc 10314
 
16825 efrain 10315
  .me-sm-n5 {
10316
    margin-right: -3rem !important;
10317
  }
16848 stevensc 10318
 
16825 efrain 10319
  .me-sm-n6 {
10320
    margin-right: -4.5rem !important;
10321
  }
16848 stevensc 10322
 
16825 efrain 10323
  .me-sm-n7 {
10324
    margin-right: -6rem !important;
10325
  }
16848 stevensc 10326
 
16825 efrain 10327
  .mb-sm-n1 {
10328
    margin-bottom: -0.25rem !important;
10329
  }
16848 stevensc 10330
 
16825 efrain 10331
  .mb-sm-n2 {
10332
    margin-bottom: -0.5rem !important;
10333
  }
16848 stevensc 10334
 
16825 efrain 10335
  .mb-sm-n3 {
10336
    margin-bottom: -1rem !important;
10337
  }
16848 stevensc 10338
 
16825 efrain 10339
  .mb-sm-n4 {
10340
    margin-bottom: -1.5rem !important;
10341
  }
16848 stevensc 10342
 
16825 efrain 10343
  .mb-sm-n5 {
10344
    margin-bottom: -3rem !important;
10345
  }
16848 stevensc 10346
 
16825 efrain 10347
  .mb-sm-n6 {
10348
    margin-bottom: -4.5rem !important;
10349
  }
16848 stevensc 10350
 
16825 efrain 10351
  .mb-sm-n7 {
10352
    margin-bottom: -6rem !important;
10353
  }
16848 stevensc 10354
 
16825 efrain 10355
  .ms-sm-n1 {
10356
    margin-left: -0.25rem !important;
10357
  }
16848 stevensc 10358
 
16825 efrain 10359
  .ms-sm-n2 {
10360
    margin-left: -0.5rem !important;
10361
  }
16848 stevensc 10362
 
16825 efrain 10363
  .ms-sm-n3 {
10364
    margin-left: -1rem !important;
10365
  }
16848 stevensc 10366
 
16825 efrain 10367
  .ms-sm-n4 {
10368
    margin-left: -1.5rem !important;
10369
  }
16848 stevensc 10370
 
16825 efrain 10371
  .ms-sm-n5 {
10372
    margin-left: -3rem !important;
10373
  }
16848 stevensc 10374
 
16825 efrain 10375
  .ms-sm-n6 {
10376
    margin-left: -4.5rem !important;
10377
  }
16848 stevensc 10378
 
16825 efrain 10379
  .ms-sm-n7 {
10380
    margin-left: -6rem !important;
10381
  }
16848 stevensc 10382
 
16825 efrain 10383
  .p-sm-0 {
10384
    padding: 0 !important;
10385
  }
16848 stevensc 10386
 
16825 efrain 10387
  .p-sm-1 {
10388
    padding: 0.25rem !important;
10389
  }
16848 stevensc 10390
 
16825 efrain 10391
  .p-sm-2 {
10392
    padding: 0.5rem !important;
10393
  }
16848 stevensc 10394
 
16825 efrain 10395
  .p-sm-3 {
10396
    padding: 1rem !important;
10397
  }
16848 stevensc 10398
 
16825 efrain 10399
  .p-sm-4 {
10400
    padding: 1.5rem !important;
10401
  }
16848 stevensc 10402
 
16825 efrain 10403
  .p-sm-5 {
10404
    padding: 3rem !important;
10405
  }
16848 stevensc 10406
 
16825 efrain 10407
  .p-sm-6 {
10408
    padding: 4.5rem !important;
10409
  }
16848 stevensc 10410
 
16825 efrain 10411
  .p-sm-7 {
10412
    padding: 6rem !important;
10413
  }
16848 stevensc 10414
 
16825 efrain 10415
  .px-sm-0 {
10416
    padding-right: 0 !important;
10417
    padding-left: 0 !important;
10418
  }
16848 stevensc 10419
 
16825 efrain 10420
  .px-sm-1 {
10421
    padding-right: 0.25rem !important;
10422
    padding-left: 0.25rem !important;
10423
  }
16848 stevensc 10424
 
16825 efrain 10425
  .px-sm-2 {
10426
    padding-right: 0.5rem !important;
10427
    padding-left: 0.5rem !important;
10428
  }
16848 stevensc 10429
 
16825 efrain 10430
  .px-sm-3 {
10431
    padding-right: 1rem !important;
10432
    padding-left: 1rem !important;
10433
  }
16848 stevensc 10434
 
16825 efrain 10435
  .px-sm-4 {
10436
    padding-right: 1.5rem !important;
10437
    padding-left: 1.5rem !important;
10438
  }
16848 stevensc 10439
 
16825 efrain 10440
  .px-sm-5 {
10441
    padding-right: 3rem !important;
10442
    padding-left: 3rem !important;
10443
  }
16848 stevensc 10444
 
16825 efrain 10445
  .px-sm-6 {
10446
    padding-right: 4.5rem !important;
10447
    padding-left: 4.5rem !important;
10448
  }
16848 stevensc 10449
 
16825 efrain 10450
  .px-sm-7 {
10451
    padding-right: 6rem !important;
10452
    padding-left: 6rem !important;
10453
  }
16848 stevensc 10454
 
16825 efrain 10455
  .py-sm-0 {
10456
    padding-top: 0 !important;
10457
    padding-bottom: 0 !important;
10458
  }
16848 stevensc 10459
 
16825 efrain 10460
  .py-sm-1 {
10461
    padding-top: 0.25rem !important;
10462
    padding-bottom: 0.25rem !important;
10463
  }
16848 stevensc 10464
 
16825 efrain 10465
  .py-sm-2 {
10466
    padding-top: 0.5rem !important;
10467
    padding-bottom: 0.5rem !important;
10468
  }
16848 stevensc 10469
 
16825 efrain 10470
  .py-sm-3 {
10471
    padding-top: 1rem !important;
10472
    padding-bottom: 1rem !important;
10473
  }
16848 stevensc 10474
 
16825 efrain 10475
  .py-sm-4 {
10476
    padding-top: 1.5rem !important;
10477
    padding-bottom: 1.5rem !important;
10478
  }
16848 stevensc 10479
 
16825 efrain 10480
  .py-sm-5 {
10481
    padding-top: 3rem !important;
10482
    padding-bottom: 3rem !important;
10483
  }
16848 stevensc 10484
 
16825 efrain 10485
  .py-sm-6 {
10486
    padding-top: 4.5rem !important;
10487
    padding-bottom: 4.5rem !important;
10488
  }
16848 stevensc 10489
 
16825 efrain 10490
  .py-sm-7 {
10491
    padding-top: 6rem !important;
10492
    padding-bottom: 6rem !important;
10493
  }
16848 stevensc 10494
 
16825 efrain 10495
  .pt-sm-0 {
10496
    padding-top: 0 !important;
10497
  }
16848 stevensc 10498
 
16825 efrain 10499
  .pt-sm-1 {
10500
    padding-top: 0.25rem !important;
10501
  }
16848 stevensc 10502
 
16825 efrain 10503
  .pt-sm-2 {
10504
    padding-top: 0.5rem !important;
10505
  }
16848 stevensc 10506
 
16825 efrain 10507
  .pt-sm-3 {
10508
    padding-top: 1rem !important;
10509
  }
16848 stevensc 10510
 
16825 efrain 10511
  .pt-sm-4 {
10512
    padding-top: 1.5rem !important;
10513
  }
16848 stevensc 10514
 
16825 efrain 10515
  .pt-sm-5 {
10516
    padding-top: 3rem !important;
10517
  }
16848 stevensc 10518
 
16825 efrain 10519
  .pt-sm-6 {
10520
    padding-top: 4.5rem !important;
10521
  }
16848 stevensc 10522
 
16825 efrain 10523
  .pt-sm-7 {
10524
    padding-top: 6rem !important;
10525
  }
16848 stevensc 10526
 
16825 efrain 10527
  .pe-sm-0 {
10528
    padding-right: 0 !important;
10529
  }
16848 stevensc 10530
 
16825 efrain 10531
  .pe-sm-1 {
10532
    padding-right: 0.25rem !important;
10533
  }
16848 stevensc 10534
 
16825 efrain 10535
  .pe-sm-2 {
10536
    padding-right: 0.5rem !important;
10537
  }
16848 stevensc 10538
 
16825 efrain 10539
  .pe-sm-3 {
10540
    padding-right: 1rem !important;
10541
  }
16848 stevensc 10542
 
16825 efrain 10543
  .pe-sm-4 {
10544
    padding-right: 1.5rem !important;
10545
  }
16848 stevensc 10546
 
16825 efrain 10547
  .pe-sm-5 {
10548
    padding-right: 3rem !important;
10549
  }
16848 stevensc 10550
 
16825 efrain 10551
  .pe-sm-6 {
10552
    padding-right: 4.5rem !important;
10553
  }
16848 stevensc 10554
 
16825 efrain 10555
  .pe-sm-7 {
10556
    padding-right: 6rem !important;
10557
  }
16848 stevensc 10558
 
16825 efrain 10559
  .pb-sm-0 {
10560
    padding-bottom: 0 !important;
10561
  }
16848 stevensc 10562
 
16825 efrain 10563
  .pb-sm-1 {
10564
    padding-bottom: 0.25rem !important;
10565
  }
16848 stevensc 10566
 
16825 efrain 10567
  .pb-sm-2 {
10568
    padding-bottom: 0.5rem !important;
10569
  }
16848 stevensc 10570
 
16825 efrain 10571
  .pb-sm-3 {
10572
    padding-bottom: 1rem !important;
10573
  }
16848 stevensc 10574
 
16825 efrain 10575
  .pb-sm-4 {
10576
    padding-bottom: 1.5rem !important;
10577
  }
16848 stevensc 10578
 
16825 efrain 10579
  .pb-sm-5 {
10580
    padding-bottom: 3rem !important;
10581
  }
16848 stevensc 10582
 
16825 efrain 10583
  .pb-sm-6 {
10584
    padding-bottom: 4.5rem !important;
10585
  }
16848 stevensc 10586
 
16825 efrain 10587
  .pb-sm-7 {
10588
    padding-bottom: 6rem !important;
10589
  }
16848 stevensc 10590
 
16825 efrain 10591
  .ps-sm-0 {
10592
    padding-left: 0 !important;
10593
  }
16848 stevensc 10594
 
16825 efrain 10595
  .ps-sm-1 {
10596
    padding-left: 0.25rem !important;
10597
  }
16848 stevensc 10598
 
16825 efrain 10599
  .ps-sm-2 {
10600
    padding-left: 0.5rem !important;
10601
  }
16848 stevensc 10602
 
16825 efrain 10603
  .ps-sm-3 {
10604
    padding-left: 1rem !important;
10605
  }
16848 stevensc 10606
 
16825 efrain 10607
  .ps-sm-4 {
10608
    padding-left: 1.5rem !important;
10609
  }
16848 stevensc 10610
 
16825 efrain 10611
  .ps-sm-5 {
10612
    padding-left: 3rem !important;
10613
  }
16848 stevensc 10614
 
16825 efrain 10615
  .ps-sm-6 {
10616
    padding-left: 4.5rem !important;
10617
  }
16848 stevensc 10618
 
16825 efrain 10619
  .ps-sm-7 {
10620
    padding-left: 6rem !important;
10621
  }
16848 stevensc 10622
 
16825 efrain 10623
  .gap-sm-0 {
10624
    gap: 0 !important;
10625
  }
16848 stevensc 10626
 
16825 efrain 10627
  .gap-sm-1 {
10628
    gap: 0.25rem !important;
10629
  }
16848 stevensc 10630
 
16825 efrain 10631
  .gap-sm-2 {
10632
    gap: 0.5rem !important;
10633
  }
16848 stevensc 10634
 
16825 efrain 10635
  .gap-sm-3 {
10636
    gap: 1rem !important;
10637
  }
16848 stevensc 10638
 
16825 efrain 10639
  .gap-sm-4 {
10640
    gap: 1.5rem !important;
10641
  }
16848 stevensc 10642
 
16825 efrain 10643
  .gap-sm-5 {
10644
    gap: 3rem !important;
10645
  }
16848 stevensc 10646
 
16825 efrain 10647
  .gap-sm-6 {
10648
    gap: 4.5rem !important;
10649
  }
16848 stevensc 10650
 
16825 efrain 10651
  .gap-sm-7 {
10652
    gap: 6rem !important;
10653
  }
16848 stevensc 10654
 
16825 efrain 10655
  .text-sm-start {
10656
    text-align: left !important;
10657
  }
16848 stevensc 10658
 
16825 efrain 10659
  .text-sm-end {
10660
    text-align: right !important;
10661
  }
16848 stevensc 10662
 
16825 efrain 10663
  .text-sm-center {
10664
    text-align: center !important;
10665
  }
10666
}
16848 stevensc 10667
 
16825 efrain 10668
@media (min-width: 768px) {
10669
  .float-md-start {
10670
    float: left !important;
10671
  }
16848 stevensc 10672
 
16825 efrain 10673
  .float-md-end {
10674
    float: right !important;
10675
  }
16848 stevensc 10676
 
16825 efrain 10677
  .float-md-none {
10678
    float: none !important;
10679
  }
16848 stevensc 10680
 
16825 efrain 10681
  .d-md-inline {
10682
    display: inline !important;
10683
  }
16848 stevensc 10684
 
16825 efrain 10685
  .d-md-inline-block {
10686
    display: inline-block !important;
10687
  }
16848 stevensc 10688
 
16825 efrain 10689
  .d-md-block {
10690
    display: block !important;
10691
  }
16848 stevensc 10692
 
16825 efrain 10693
  .d-md-grid {
10694
    display: grid !important;
10695
  }
16848 stevensc 10696
 
16825 efrain 10697
  .d-md-table {
10698
    display: table !important;
10699
  }
16848 stevensc 10700
 
16825 efrain 10701
  .d-md-table-row {
10702
    display: table-row !important;
10703
  }
16848 stevensc 10704
 
16825 efrain 10705
  .d-md-table-cell {
10706
    display: table-cell !important;
10707
  }
16848 stevensc 10708
 
10709
  .d-md-flex,
10710
  .navbar .search-form {
16825 efrain 10711
    display: flex !important;
10712
  }
16848 stevensc 10713
 
16825 efrain 10714
  .d-md-inline-flex {
10715
    display: inline-flex !important;
10716
  }
16848 stevensc 10717
 
16825 efrain 10718
  .d-md-none {
10719
    display: none !important;
10720
  }
16848 stevensc 10721
 
16825 efrain 10722
  .border-md {
10723
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10724
  }
16848 stevensc 10725
 
16825 efrain 10726
  .border-md-0 {
10727
    border: 0 !important;
10728
  }
16848 stevensc 10729
 
16825 efrain 10730
  .border-top-md {
10731
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10732
  }
16848 stevensc 10733
 
16825 efrain 10734
  .border-top-md-0 {
10735
    border-top: 0 !important;
10736
  }
16848 stevensc 10737
 
16825 efrain 10738
  .border-end-md {
10739
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10740
  }
16848 stevensc 10741
 
16825 efrain 10742
  .border-end-md-0 {
10743
    border-right: 0 !important;
10744
  }
16848 stevensc 10745
 
16825 efrain 10746
  .border-bottom-md {
10747
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10748
  }
16848 stevensc 10749
 
16825 efrain 10750
  .border-bottom-md-0 {
10751
    border-bottom: 0 !important;
10752
  }
16848 stevensc 10753
 
16825 efrain 10754
  .border-start-md {
10755
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10756
  }
16848 stevensc 10757
 
16825 efrain 10758
  .border-start-md-0 {
10759
    border-left: 0 !important;
10760
  }
16848 stevensc 10761
 
16825 efrain 10762
  .flex-md-fill {
10763
    flex: 1 1 auto !important;
10764
  }
16848 stevensc 10765
 
16825 efrain 10766
  .flex-md-row {
10767
    flex-direction: row !important;
10768
  }
16848 stevensc 10769
 
16825 efrain 10770
  .flex-md-column {
10771
    flex-direction: column !important;
10772
  }
16848 stevensc 10773
 
16825 efrain 10774
  .flex-md-row-reverse {
10775
    flex-direction: row-reverse !important;
10776
  }
16848 stevensc 10777
 
16825 efrain 10778
  .flex-md-column-reverse {
10779
    flex-direction: column-reverse !important;
10780
  }
16848 stevensc 10781
 
16825 efrain 10782
  .flex-md-grow-0 {
10783
    flex-grow: 0 !important;
10784
  }
16848 stevensc 10785
 
16825 efrain 10786
  .flex-md-grow-1 {
10787
    flex-grow: 1 !important;
10788
  }
16848 stevensc 10789
 
16825 efrain 10790
  .flex-md-shrink-0 {
10791
    flex-shrink: 0 !important;
10792
  }
16848 stevensc 10793
 
16825 efrain 10794
  .flex-md-shrink-1 {
10795
    flex-shrink: 1 !important;
10796
  }
16848 stevensc 10797
 
16825 efrain 10798
  .flex-md-wrap {
10799
    flex-wrap: wrap !important;
10800
  }
16848 stevensc 10801
 
16825 efrain 10802
  .flex-md-nowrap {
10803
    flex-wrap: nowrap !important;
10804
  }
16848 stevensc 10805
 
16825 efrain 10806
  .flex-md-wrap-reverse {
10807
    flex-wrap: wrap-reverse !important;
10808
  }
16848 stevensc 10809
 
16825 efrain 10810
  .justify-content-md-start {
10811
    justify-content: flex-start !important;
10812
  }
16848 stevensc 10813
 
10814
  .justify-content-md-end,
10815
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10816
    justify-content: flex-end !important;
10817
  }
16848 stevensc 10818
 
16825 efrain 10819
  .justify-content-md-center {
10820
    justify-content: center !important;
10821
  }
16848 stevensc 10822
 
16825 efrain 10823
  .justify-content-md-between {
10824
    justify-content: space-between !important;
10825
  }
16848 stevensc 10826
 
16825 efrain 10827
  .justify-content-md-around {
10828
    justify-content: space-around !important;
10829
  }
16848 stevensc 10830
 
16825 efrain 10831
  .justify-content-md-evenly {
10832
    justify-content: space-evenly !important;
10833
  }
16848 stevensc 10834
 
16825 efrain 10835
  .align-items-md-start {
10836
    align-items: flex-start !important;
10837
  }
16848 stevensc 10838
 
16825 efrain 10839
  .align-items-md-end {
10840
    align-items: flex-end !important;
10841
  }
16848 stevensc 10842
 
16825 efrain 10843
  .align-items-md-center {
10844
    align-items: center !important;
10845
  }
16848 stevensc 10846
 
16825 efrain 10847
  .align-items-md-baseline {
10848
    align-items: baseline !important;
10849
  }
16848 stevensc 10850
 
16825 efrain 10851
  .align-items-md-stretch {
10852
    align-items: stretch !important;
10853
  }
16848 stevensc 10854
 
16825 efrain 10855
  .align-content-md-start {
10856
    align-content: flex-start !important;
10857
  }
16848 stevensc 10858
 
16825 efrain 10859
  .align-content-md-end {
10860
    align-content: flex-end !important;
10861
  }
16848 stevensc 10862
 
16825 efrain 10863
  .align-content-md-center {
10864
    align-content: center !important;
10865
  }
16848 stevensc 10866
 
16825 efrain 10867
  .align-content-md-between {
10868
    align-content: space-between !important;
10869
  }
16848 stevensc 10870
 
16825 efrain 10871
  .align-content-md-around {
10872
    align-content: space-around !important;
10873
  }
16848 stevensc 10874
 
16825 efrain 10875
  .align-content-md-stretch {
10876
    align-content: stretch !important;
10877
  }
16848 stevensc 10878
 
16825 efrain 10879
  .align-self-md-auto {
10880
    align-self: auto !important;
10881
  }
16848 stevensc 10882
 
16825 efrain 10883
  .align-self-md-start {
10884
    align-self: flex-start !important;
10885
  }
16848 stevensc 10886
 
16825 efrain 10887
  .align-self-md-end {
10888
    align-self: flex-end !important;
10889
  }
16848 stevensc 10890
 
16825 efrain 10891
  .align-self-md-center {
10892
    align-self: center !important;
10893
  }
16848 stevensc 10894
 
16825 efrain 10895
  .align-self-md-baseline {
10896
    align-self: baseline !important;
10897
  }
16848 stevensc 10898
 
16825 efrain 10899
  .align-self-md-stretch {
10900
    align-self: stretch !important;
10901
  }
16848 stevensc 10902
 
16825 efrain 10903
  .order-md-first {
10904
    order: -1 !important;
10905
  }
16848 stevensc 10906
 
16825 efrain 10907
  .order-md-0 {
10908
    order: 0 !important;
10909
  }
16848 stevensc 10910
 
16825 efrain 10911
  .order-md-1 {
10912
    order: 1 !important;
10913
  }
16848 stevensc 10914
 
16825 efrain 10915
  .order-md-2 {
10916
    order: 2 !important;
10917
  }
16848 stevensc 10918
 
16825 efrain 10919
  .order-md-3 {
10920
    order: 3 !important;
10921
  }
16848 stevensc 10922
 
16825 efrain 10923
  .order-md-4 {
10924
    order: 4 !important;
10925
  }
16848 stevensc 10926
 
16825 efrain 10927
  .order-md-5 {
10928
    order: 5 !important;
10929
  }
16848 stevensc 10930
 
16825 efrain 10931
  .order-md-last {
10932
    order: 6 !important;
10933
  }
16848 stevensc 10934
 
16825 efrain 10935
  .m-md-0 {
10936
    margin: 0 !important;
10937
  }
16848 stevensc 10938
 
16825 efrain 10939
  .m-md-1 {
10940
    margin: 0.25rem !important;
10941
  }
16848 stevensc 10942
 
16825 efrain 10943
  .m-md-2 {
10944
    margin: 0.5rem !important;
10945
  }
16848 stevensc 10946
 
16825 efrain 10947
  .m-md-3 {
10948
    margin: 1rem !important;
10949
  }
16848 stevensc 10950
 
16825 efrain 10951
  .m-md-4 {
10952
    margin: 1.5rem !important;
10953
  }
16848 stevensc 10954
 
16825 efrain 10955
  .m-md-5 {
10956
    margin: 3rem !important;
10957
  }
16848 stevensc 10958
 
16825 efrain 10959
  .m-md-6 {
10960
    margin: 4.5rem !important;
10961
  }
16848 stevensc 10962
 
16825 efrain 10963
  .m-md-7 {
10964
    margin: 6rem !important;
10965
  }
16848 stevensc 10966
 
16825 efrain 10967
  .m-md-auto {
10968
    margin: auto !important;
10969
  }
16848 stevensc 10970
 
16825 efrain 10971
  .mx-md-0 {
10972
    margin-right: 0 !important;
10973
    margin-left: 0 !important;
10974
  }
16848 stevensc 10975
 
16825 efrain 10976
  .mx-md-1 {
10977
    margin-right: 0.25rem !important;
10978
    margin-left: 0.25rem !important;
10979
  }
16848 stevensc 10980
 
16825 efrain 10981
  .mx-md-2 {
10982
    margin-right: 0.5rem !important;
10983
    margin-left: 0.5rem !important;
10984
  }
16848 stevensc 10985
 
16825 efrain 10986
  .mx-md-3 {
10987
    margin-right: 1rem !important;
10988
    margin-left: 1rem !important;
10989
  }
16848 stevensc 10990
 
16825 efrain 10991
  .mx-md-4 {
10992
    margin-right: 1.5rem !important;
10993
    margin-left: 1.5rem !important;
10994
  }
16848 stevensc 10995
 
16825 efrain 10996
  .mx-md-5 {
10997
    margin-right: 3rem !important;
10998
    margin-left: 3rem !important;
10999
  }
16848 stevensc 11000
 
16825 efrain 11001
  .mx-md-6 {
11002
    margin-right: 4.5rem !important;
11003
    margin-left: 4.5rem !important;
11004
  }
16848 stevensc 11005
 
16825 efrain 11006
  .mx-md-7 {
11007
    margin-right: 6rem !important;
11008
    margin-left: 6rem !important;
11009
  }
16848 stevensc 11010
 
16825 efrain 11011
  .mx-md-auto {
11012
    margin-right: auto !important;
11013
    margin-left: auto !important;
11014
  }
16848 stevensc 11015
 
16825 efrain 11016
  .my-md-0 {
11017
    margin-top: 0 !important;
11018
    margin-bottom: 0 !important;
11019
  }
16848 stevensc 11020
 
16825 efrain 11021
  .my-md-1 {
11022
    margin-top: 0.25rem !important;
11023
    margin-bottom: 0.25rem !important;
11024
  }
16848 stevensc 11025
 
16825 efrain 11026
  .my-md-2 {
11027
    margin-top: 0.5rem !important;
11028
    margin-bottom: 0.5rem !important;
11029
  }
16848 stevensc 11030
 
16825 efrain 11031
  .my-md-3 {
11032
    margin-top: 1rem !important;
11033
    margin-bottom: 1rem !important;
11034
  }
16848 stevensc 11035
 
16825 efrain 11036
  .my-md-4 {
11037
    margin-top: 1.5rem !important;
11038
    margin-bottom: 1.5rem !important;
11039
  }
16848 stevensc 11040
 
16825 efrain 11041
  .my-md-5 {
11042
    margin-top: 3rem !important;
11043
    margin-bottom: 3rem !important;
11044
  }
16848 stevensc 11045
 
16825 efrain 11046
  .my-md-6 {
11047
    margin-top: 4.5rem !important;
11048
    margin-bottom: 4.5rem !important;
11049
  }
16848 stevensc 11050
 
16825 efrain 11051
  .my-md-7 {
11052
    margin-top: 6rem !important;
11053
    margin-bottom: 6rem !important;
11054
  }
16848 stevensc 11055
 
16825 efrain 11056
  .my-md-auto {
11057
    margin-top: auto !important;
11058
    margin-bottom: auto !important;
11059
  }
16848 stevensc 11060
 
11061
  .mt-md-0,
11062
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11063
    margin-top: 0 !important;
11064
  }
16848 stevensc 11065
 
16825 efrain 11066
  .mt-md-1 {
11067
    margin-top: 0.25rem !important;
11068
  }
16848 stevensc 11069
 
16825 efrain 11070
  .mt-md-2 {
11071
    margin-top: 0.5rem !important;
11072
  }
16848 stevensc 11073
 
16825 efrain 11074
  .mt-md-3 {
11075
    margin-top: 1rem !important;
11076
  }
16848 stevensc 11077
 
16825 efrain 11078
  .mt-md-4 {
11079
    margin-top: 1.5rem !important;
11080
  }
16848 stevensc 11081
 
16825 efrain 11082
  .mt-md-5 {
11083
    margin-top: 3rem !important;
11084
  }
16848 stevensc 11085
 
16825 efrain 11086
  .mt-md-6 {
11087
    margin-top: 4.5rem !important;
11088
  }
16848 stevensc 11089
 
16825 efrain 11090
  .mt-md-7 {
11091
    margin-top: 6rem !important;
11092
  }
16848 stevensc 11093
 
16825 efrain 11094
  .mt-md-auto {
11095
    margin-top: auto !important;
11096
  }
16848 stevensc 11097
 
16825 efrain 11098
  .me-md-0 {
11099
    margin-right: 0 !important;
11100
  }
16848 stevensc 11101
 
16825 efrain 11102
  .me-md-1 {
11103
    margin-right: 0.25rem !important;
11104
  }
16848 stevensc 11105
 
16825 efrain 11106
  .me-md-2 {
11107
    margin-right: 0.5rem !important;
11108
  }
16848 stevensc 11109
 
16825 efrain 11110
  .me-md-3 {
11111
    margin-right: 1rem !important;
11112
  }
16848 stevensc 11113
 
16825 efrain 11114
  .me-md-4 {
11115
    margin-right: 1.5rem !important;
11116
  }
16848 stevensc 11117
 
16825 efrain 11118
  .me-md-5 {
11119
    margin-right: 3rem !important;
11120
  }
16848 stevensc 11121
 
16825 efrain 11122
  .me-md-6 {
11123
    margin-right: 4.5rem !important;
11124
  }
16848 stevensc 11125
 
16825 efrain 11126
  .me-md-7 {
11127
    margin-right: 6rem !important;
11128
  }
16848 stevensc 11129
 
16825 efrain 11130
  .me-md-auto {
11131
    margin-right: auto !important;
11132
  }
16848 stevensc 11133
 
11134
  .mb-md-0,
11135
  .example .btn-group {
16825 efrain 11136
    margin-bottom: 0 !important;
11137
  }
16848 stevensc 11138
 
16825 efrain 11139
  .mb-md-1 {
11140
    margin-bottom: 0.25rem !important;
11141
  }
16848 stevensc 11142
 
16825 efrain 11143
  .mb-md-2 {
11144
    margin-bottom: 0.5rem !important;
11145
  }
16848 stevensc 11146
 
16825 efrain 11147
  .mb-md-3 {
11148
    margin-bottom: 1rem !important;
11149
  }
16848 stevensc 11150
 
16825 efrain 11151
  .mb-md-4 {
11152
    margin-bottom: 1.5rem !important;
11153
  }
16848 stevensc 11154
 
16825 efrain 11155
  .mb-md-5 {
11156
    margin-bottom: 3rem !important;
11157
  }
16848 stevensc 11158
 
16825 efrain 11159
  .mb-md-6 {
11160
    margin-bottom: 4.5rem !important;
11161
  }
16848 stevensc 11162
 
16825 efrain 11163
  .mb-md-7 {
11164
    margin-bottom: 6rem !important;
11165
  }
16848 stevensc 11166
 
16825 efrain 11167
  .mb-md-auto {
11168
    margin-bottom: auto !important;
11169
  }
16848 stevensc 11170
 
16825 efrain 11171
  .ms-md-0 {
11172
    margin-left: 0 !important;
11173
  }
16848 stevensc 11174
 
16825 efrain 11175
  .ms-md-1 {
11176
    margin-left: 0.25rem !important;
11177
  }
16848 stevensc 11178
 
16825 efrain 11179
  .ms-md-2 {
11180
    margin-left: 0.5rem !important;
11181
  }
16848 stevensc 11182
 
16825 efrain 11183
  .ms-md-3 {
11184
    margin-left: 1rem !important;
11185
  }
16848 stevensc 11186
 
16825 efrain 11187
  .ms-md-4 {
11188
    margin-left: 1.5rem !important;
11189
  }
16848 stevensc 11190
 
16825 efrain 11191
  .ms-md-5 {
11192
    margin-left: 3rem !important;
11193
  }
16848 stevensc 11194
 
16825 efrain 11195
  .ms-md-6 {
11196
    margin-left: 4.5rem !important;
11197
  }
16848 stevensc 11198
 
16825 efrain 11199
  .ms-md-7 {
11200
    margin-left: 6rem !important;
11201
  }
16848 stevensc 11202
 
16825 efrain 11203
  .ms-md-auto {
11204
    margin-left: auto !important;
11205
  }
16848 stevensc 11206
 
16825 efrain 11207
  .m-md-n1 {
11208
    margin: -0.25rem !important;
11209
  }
16848 stevensc 11210
 
16825 efrain 11211
  .m-md-n2 {
11212
    margin: -0.5rem !important;
11213
  }
16848 stevensc 11214
 
16825 efrain 11215
  .m-md-n3 {
11216
    margin: -1rem !important;
11217
  }
16848 stevensc 11218
 
16825 efrain 11219
  .m-md-n4 {
11220
    margin: -1.5rem !important;
11221
  }
16848 stevensc 11222
 
16825 efrain 11223
  .m-md-n5 {
11224
    margin: -3rem !important;
11225
  }
16848 stevensc 11226
 
16825 efrain 11227
  .m-md-n6 {
11228
    margin: -4.5rem !important;
11229
  }
16848 stevensc 11230
 
16825 efrain 11231
  .m-md-n7 {
11232
    margin: -6rem !important;
11233
  }
16848 stevensc 11234
 
16825 efrain 11235
  .mx-md-n1 {
11236
    margin-right: -0.25rem !important;
11237
    margin-left: -0.25rem !important;
11238
  }
16848 stevensc 11239
 
16825 efrain 11240
  .mx-md-n2 {
11241
    margin-right: -0.5rem !important;
11242
    margin-left: -0.5rem !important;
11243
  }
16848 stevensc 11244
 
16825 efrain 11245
  .mx-md-n3 {
11246
    margin-right: -1rem !important;
11247
    margin-left: -1rem !important;
11248
  }
16848 stevensc 11249
 
16825 efrain 11250
  .mx-md-n4 {
11251
    margin-right: -1.5rem !important;
11252
    margin-left: -1.5rem !important;
11253
  }
16848 stevensc 11254
 
16825 efrain 11255
  .mx-md-n5 {
11256
    margin-right: -3rem !important;
11257
    margin-left: -3rem !important;
11258
  }
16848 stevensc 11259
 
16825 efrain 11260
  .mx-md-n6 {
11261
    margin-right: -4.5rem !important;
11262
    margin-left: -4.5rem !important;
11263
  }
16848 stevensc 11264
 
16825 efrain 11265
  .mx-md-n7 {
11266
    margin-right: -6rem !important;
11267
    margin-left: -6rem !important;
11268
  }
16848 stevensc 11269
 
16825 efrain 11270
  .my-md-n1 {
11271
    margin-top: -0.25rem !important;
11272
    margin-bottom: -0.25rem !important;
11273
  }
16848 stevensc 11274
 
16825 efrain 11275
  .my-md-n2 {
11276
    margin-top: -0.5rem !important;
11277
    margin-bottom: -0.5rem !important;
11278
  }
16848 stevensc 11279
 
16825 efrain 11280
  .my-md-n3 {
11281
    margin-top: -1rem !important;
11282
    margin-bottom: -1rem !important;
11283
  }
16848 stevensc 11284
 
16825 efrain 11285
  .my-md-n4 {
11286
    margin-top: -1.5rem !important;
11287
    margin-bottom: -1.5rem !important;
11288
  }
16848 stevensc 11289
 
16825 efrain 11290
  .my-md-n5 {
11291
    margin-top: -3rem !important;
11292
    margin-bottom: -3rem !important;
11293
  }
16848 stevensc 11294
 
16825 efrain 11295
  .my-md-n6 {
11296
    margin-top: -4.5rem !important;
11297
    margin-bottom: -4.5rem !important;
11298
  }
16848 stevensc 11299
 
16825 efrain 11300
  .my-md-n7 {
11301
    margin-top: -6rem !important;
11302
    margin-bottom: -6rem !important;
11303
  }
16848 stevensc 11304
 
16825 efrain 11305
  .mt-md-n1 {
11306
    margin-top: -0.25rem !important;
11307
  }
16848 stevensc 11308
 
16825 efrain 11309
  .mt-md-n2 {
11310
    margin-top: -0.5rem !important;
11311
  }
16848 stevensc 11312
 
16825 efrain 11313
  .mt-md-n3 {
11314
    margin-top: -1rem !important;
11315
  }
16848 stevensc 11316
 
16825 efrain 11317
  .mt-md-n4 {
11318
    margin-top: -1.5rem !important;
11319
  }
16848 stevensc 11320
 
16825 efrain 11321
  .mt-md-n5 {
11322
    margin-top: -3rem !important;
11323
  }
16848 stevensc 11324
 
16825 efrain 11325
  .mt-md-n6 {
11326
    margin-top: -4.5rem !important;
11327
  }
16848 stevensc 11328
 
16825 efrain 11329
  .mt-md-n7 {
11330
    margin-top: -6rem !important;
11331
  }
16848 stevensc 11332
 
16825 efrain 11333
  .me-md-n1 {
11334
    margin-right: -0.25rem !important;
11335
  }
16848 stevensc 11336
 
16825 efrain 11337
  .me-md-n2 {
11338
    margin-right: -0.5rem !important;
11339
  }
16848 stevensc 11340
 
16825 efrain 11341
  .me-md-n3 {
11342
    margin-right: -1rem !important;
11343
  }
16848 stevensc 11344
 
16825 efrain 11345
  .me-md-n4 {
11346
    margin-right: -1.5rem !important;
11347
  }
16848 stevensc 11348
 
16825 efrain 11349
  .me-md-n5 {
11350
    margin-right: -3rem !important;
11351
  }
16848 stevensc 11352
 
16825 efrain 11353
  .me-md-n6 {
11354
    margin-right: -4.5rem !important;
11355
  }
16848 stevensc 11356
 
16825 efrain 11357
  .me-md-n7 {
11358
    margin-right: -6rem !important;
11359
  }
16848 stevensc 11360
 
16825 efrain 11361
  .mb-md-n1 {
11362
    margin-bottom: -0.25rem !important;
11363
  }
16848 stevensc 11364
 
16825 efrain 11365
  .mb-md-n2 {
11366
    margin-bottom: -0.5rem !important;
11367
  }
16848 stevensc 11368
 
16825 efrain 11369
  .mb-md-n3 {
11370
    margin-bottom: -1rem !important;
11371
  }
16848 stevensc 11372
 
16825 efrain 11373
  .mb-md-n4 {
11374
    margin-bottom: -1.5rem !important;
11375
  }
16848 stevensc 11376
 
16825 efrain 11377
  .mb-md-n5 {
11378
    margin-bottom: -3rem !important;
11379
  }
16848 stevensc 11380
 
16825 efrain 11381
  .mb-md-n6 {
11382
    margin-bottom: -4.5rem !important;
11383
  }
16848 stevensc 11384
 
16825 efrain 11385
  .mb-md-n7 {
11386
    margin-bottom: -6rem !important;
11387
  }
16848 stevensc 11388
 
16825 efrain 11389
  .ms-md-n1 {
11390
    margin-left: -0.25rem !important;
11391
  }
16848 stevensc 11392
 
16825 efrain 11393
  .ms-md-n2 {
11394
    margin-left: -0.5rem !important;
11395
  }
16848 stevensc 11396
 
16825 efrain 11397
  .ms-md-n3 {
11398
    margin-left: -1rem !important;
11399
  }
16848 stevensc 11400
 
16825 efrain 11401
  .ms-md-n4 {
11402
    margin-left: -1.5rem !important;
11403
  }
16848 stevensc 11404
 
16825 efrain 11405
  .ms-md-n5 {
11406
    margin-left: -3rem !important;
11407
  }
16848 stevensc 11408
 
16825 efrain 11409
  .ms-md-n6 {
11410
    margin-left: -4.5rem !important;
11411
  }
16848 stevensc 11412
 
16825 efrain 11413
  .ms-md-n7 {
11414
    margin-left: -6rem !important;
11415
  }
16848 stevensc 11416
 
16825 efrain 11417
  .p-md-0 {
11418
    padding: 0 !important;
11419
  }
16848 stevensc 11420
 
16825 efrain 11421
  .p-md-1 {
11422
    padding: 0.25rem !important;
11423
  }
16848 stevensc 11424
 
16825 efrain 11425
  .p-md-2 {
11426
    padding: 0.5rem !important;
11427
  }
16848 stevensc 11428
 
16825 efrain 11429
  .p-md-3 {
11430
    padding: 1rem !important;
11431
  }
16848 stevensc 11432
 
16825 efrain 11433
  .p-md-4 {
11434
    padding: 1.5rem !important;
11435
  }
16848 stevensc 11436
 
16825 efrain 11437
  .p-md-5 {
11438
    padding: 3rem !important;
11439
  }
16848 stevensc 11440
 
16825 efrain 11441
  .p-md-6 {
11442
    padding: 4.5rem !important;
11443
  }
16848 stevensc 11444
 
16825 efrain 11445
  .p-md-7 {
11446
    padding: 6rem !important;
11447
  }
16848 stevensc 11448
 
16825 efrain 11449
  .px-md-0 {
11450
    padding-right: 0 !important;
11451
    padding-left: 0 !important;
11452
  }
16848 stevensc 11453
 
16825 efrain 11454
  .px-md-1 {
11455
    padding-right: 0.25rem !important;
11456
    padding-left: 0.25rem !important;
11457
  }
16848 stevensc 11458
 
16825 efrain 11459
  .px-md-2 {
11460
    padding-right: 0.5rem !important;
11461
    padding-left: 0.5rem !important;
11462
  }
16848 stevensc 11463
 
16825 efrain 11464
  .px-md-3 {
11465
    padding-right: 1rem !important;
11466
    padding-left: 1rem !important;
11467
  }
16848 stevensc 11468
 
16825 efrain 11469
  .px-md-4 {
11470
    padding-right: 1.5rem !important;
11471
    padding-left: 1.5rem !important;
11472
  }
16848 stevensc 11473
 
16825 efrain 11474
  .px-md-5 {
11475
    padding-right: 3rem !important;
11476
    padding-left: 3rem !important;
11477
  }
16848 stevensc 11478
 
16825 efrain 11479
  .px-md-6 {
11480
    padding-right: 4.5rem !important;
11481
    padding-left: 4.5rem !important;
11482
  }
16848 stevensc 11483
 
16825 efrain 11484
  .px-md-7 {
11485
    padding-right: 6rem !important;
11486
    padding-left: 6rem !important;
11487
  }
16848 stevensc 11488
 
16825 efrain 11489
  .py-md-0 {
11490
    padding-top: 0 !important;
11491
    padding-bottom: 0 !important;
11492
  }
16848 stevensc 11493
 
16825 efrain 11494
  .py-md-1 {
11495
    padding-top: 0.25rem !important;
11496
    padding-bottom: 0.25rem !important;
11497
  }
16848 stevensc 11498
 
16825 efrain 11499
  .py-md-2 {
11500
    padding-top: 0.5rem !important;
11501
    padding-bottom: 0.5rem !important;
11502
  }
16848 stevensc 11503
 
16825 efrain 11504
  .py-md-3 {
11505
    padding-top: 1rem !important;
11506
    padding-bottom: 1rem !important;
11507
  }
16848 stevensc 11508
 
16825 efrain 11509
  .py-md-4 {
11510
    padding-top: 1.5rem !important;
11511
    padding-bottom: 1.5rem !important;
11512
  }
16848 stevensc 11513
 
16825 efrain 11514
  .py-md-5 {
11515
    padding-top: 3rem !important;
11516
    padding-bottom: 3rem !important;
11517
  }
16848 stevensc 11518
 
16825 efrain 11519
  .py-md-6 {
11520
    padding-top: 4.5rem !important;
11521
    padding-bottom: 4.5rem !important;
11522
  }
16848 stevensc 11523
 
16825 efrain 11524
  .py-md-7 {
11525
    padding-top: 6rem !important;
11526
    padding-bottom: 6rem !important;
11527
  }
16848 stevensc 11528
 
16825 efrain 11529
  .pt-md-0 {
11530
    padding-top: 0 !important;
11531
  }
16848 stevensc 11532
 
16825 efrain 11533
  .pt-md-1 {
11534
    padding-top: 0.25rem !important;
11535
  }
16848 stevensc 11536
 
16825 efrain 11537
  .pt-md-2 {
11538
    padding-top: 0.5rem !important;
11539
  }
16848 stevensc 11540
 
16825 efrain 11541
  .pt-md-3 {
11542
    padding-top: 1rem !important;
11543
  }
16848 stevensc 11544
 
16825 efrain 11545
  .pt-md-4 {
11546
    padding-top: 1.5rem !important;
11547
  }
16848 stevensc 11548
 
16825 efrain 11549
  .pt-md-5 {
11550
    padding-top: 3rem !important;
11551
  }
16848 stevensc 11552
 
16825 efrain 11553
  .pt-md-6 {
11554
    padding-top: 4.5rem !important;
11555
  }
16848 stevensc 11556
 
16825 efrain 11557
  .pt-md-7 {
11558
    padding-top: 6rem !important;
11559
  }
16848 stevensc 11560
 
16825 efrain 11561
  .pe-md-0 {
11562
    padding-right: 0 !important;
11563
  }
16848 stevensc 11564
 
16825 efrain 11565
  .pe-md-1 {
11566
    padding-right: 0.25rem !important;
11567
  }
16848 stevensc 11568
 
16825 efrain 11569
  .pe-md-2 {
11570
    padding-right: 0.5rem !important;
11571
  }
16848 stevensc 11572
 
16825 efrain 11573
  .pe-md-3 {
11574
    padding-right: 1rem !important;
11575
  }
16848 stevensc 11576
 
16825 efrain 11577
  .pe-md-4 {
11578
    padding-right: 1.5rem !important;
11579
  }
16848 stevensc 11580
 
16825 efrain 11581
  .pe-md-5 {
11582
    padding-right: 3rem !important;
11583
  }
16848 stevensc 11584
 
16825 efrain 11585
  .pe-md-6 {
11586
    padding-right: 4.5rem !important;
11587
  }
16848 stevensc 11588
 
16825 efrain 11589
  .pe-md-7 {
11590
    padding-right: 6rem !important;
11591
  }
16848 stevensc 11592
 
16825 efrain 11593
  .pb-md-0 {
11594
    padding-bottom: 0 !important;
11595
  }
16848 stevensc 11596
 
16825 efrain 11597
  .pb-md-1 {
11598
    padding-bottom: 0.25rem !important;
11599
  }
16848 stevensc 11600
 
16825 efrain 11601
  .pb-md-2 {
11602
    padding-bottom: 0.5rem !important;
11603
  }
16848 stevensc 11604
 
16825 efrain 11605
  .pb-md-3 {
11606
    padding-bottom: 1rem !important;
11607
  }
16848 stevensc 11608
 
16825 efrain 11609
  .pb-md-4 {
11610
    padding-bottom: 1.5rem !important;
11611
  }
16848 stevensc 11612
 
16825 efrain 11613
  .pb-md-5 {
11614
    padding-bottom: 3rem !important;
11615
  }
16848 stevensc 11616
 
16825 efrain 11617
  .pb-md-6 {
11618
    padding-bottom: 4.5rem !important;
11619
  }
16848 stevensc 11620
 
16825 efrain 11621
  .pb-md-7 {
11622
    padding-bottom: 6rem !important;
11623
  }
16848 stevensc 11624
 
16825 efrain 11625
  .ps-md-0 {
11626
    padding-left: 0 !important;
11627
  }
16848 stevensc 11628
 
16825 efrain 11629
  .ps-md-1 {
11630
    padding-left: 0.25rem !important;
11631
  }
16848 stevensc 11632
 
16825 efrain 11633
  .ps-md-2 {
11634
    padding-left: 0.5rem !important;
11635
  }
16848 stevensc 11636
 
16825 efrain 11637
  .ps-md-3 {
11638
    padding-left: 1rem !important;
11639
  }
16848 stevensc 11640
 
16825 efrain 11641
  .ps-md-4 {
11642
    padding-left: 1.5rem !important;
11643
  }
16848 stevensc 11644
 
16825 efrain 11645
  .ps-md-5 {
11646
    padding-left: 3rem !important;
11647
  }
16848 stevensc 11648
 
16825 efrain 11649
  .ps-md-6 {
11650
    padding-left: 4.5rem !important;
11651
  }
16848 stevensc 11652
 
16825 efrain 11653
  .ps-md-7 {
11654
    padding-left: 6rem !important;
11655
  }
16848 stevensc 11656
 
16825 efrain 11657
  .gap-md-0 {
11658
    gap: 0 !important;
11659
  }
16848 stevensc 11660
 
16825 efrain 11661
  .gap-md-1 {
11662
    gap: 0.25rem !important;
11663
  }
16848 stevensc 11664
 
16825 efrain 11665
  .gap-md-2 {
11666
    gap: 0.5rem !important;
11667
  }
16848 stevensc 11668
 
16825 efrain 11669
  .gap-md-3 {
11670
    gap: 1rem !important;
11671
  }
16848 stevensc 11672
 
16825 efrain 11673
  .gap-md-4 {
11674
    gap: 1.5rem !important;
11675
  }
16848 stevensc 11676
 
16825 efrain 11677
  .gap-md-5 {
11678
    gap: 3rem !important;
11679
  }
16848 stevensc 11680
 
16825 efrain 11681
  .gap-md-6 {
11682
    gap: 4.5rem !important;
11683
  }
16848 stevensc 11684
 
16825 efrain 11685
  .gap-md-7 {
11686
    gap: 6rem !important;
11687
  }
16848 stevensc 11688
 
16825 efrain 11689
  .text-md-start {
11690
    text-align: left !important;
11691
  }
16848 stevensc 11692
 
16825 efrain 11693
  .text-md-end {
11694
    text-align: right !important;
11695
  }
16848 stevensc 11696
 
16825 efrain 11697
  .text-md-center {
11698
    text-align: center !important;
11699
  }
11700
}
16848 stevensc 11701
 
16825 efrain 11702
@media (min-width: 992px) {
11703
  .float-lg-start {
11704
    float: left !important;
11705
  }
16848 stevensc 11706
 
16825 efrain 11707
  .float-lg-end {
11708
    float: right !important;
11709
  }
16848 stevensc 11710
 
16825 efrain 11711
  .float-lg-none {
11712
    float: none !important;
11713
  }
16848 stevensc 11714
 
16825 efrain 11715
  .d-lg-inline {
11716
    display: inline !important;
11717
  }
16848 stevensc 11718
 
16825 efrain 11719
  .d-lg-inline-block {
11720
    display: inline-block !important;
11721
  }
16848 stevensc 11722
 
16825 efrain 11723
  .d-lg-block {
11724
    display: block !important;
11725
  }
16848 stevensc 11726
 
16825 efrain 11727
  .d-lg-grid {
11728
    display: grid !important;
11729
  }
16848 stevensc 11730
 
16825 efrain 11731
  .d-lg-table {
11732
    display: table !important;
11733
  }
16848 stevensc 11734
 
16825 efrain 11735
  .d-lg-table-row {
11736
    display: table-row !important;
11737
  }
16848 stevensc 11738
 
16825 efrain 11739
  .d-lg-table-cell {
11740
    display: table-cell !important;
11741
  }
16848 stevensc 11742
 
16825 efrain 11743
  .d-lg-flex {
11744
    display: flex !important;
11745
  }
16848 stevensc 11746
 
16825 efrain 11747
  .d-lg-inline-flex {
11748
    display: inline-flex !important;
11749
  }
16848 stevensc 11750
 
16825 efrain 11751
  .d-lg-none {
11752
    display: none !important;
11753
  }
16848 stevensc 11754
 
16825 efrain 11755
  .border-lg {
11756
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11757
  }
16848 stevensc 11758
 
16825 efrain 11759
  .border-lg-0 {
11760
    border: 0 !important;
11761
  }
16848 stevensc 11762
 
16825 efrain 11763
  .border-top-lg {
11764
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11765
  }
16848 stevensc 11766
 
16825 efrain 11767
  .border-top-lg-0 {
11768
    border-top: 0 !important;
11769
  }
16848 stevensc 11770
 
16825 efrain 11771
  .border-end-lg {
11772
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11773
  }
16848 stevensc 11774
 
16825 efrain 11775
  .border-end-lg-0 {
11776
    border-right: 0 !important;
11777
  }
16848 stevensc 11778
 
16825 efrain 11779
  .border-bottom-lg {
11780
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11781
  }
16848 stevensc 11782
 
16825 efrain 11783
  .border-bottom-lg-0 {
11784
    border-bottom: 0 !important;
11785
  }
16848 stevensc 11786
 
16825 efrain 11787
  .border-start-lg {
11788
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11789
  }
16848 stevensc 11790
 
16825 efrain 11791
  .border-start-lg-0 {
11792
    border-left: 0 !important;
11793
  }
16848 stevensc 11794
 
16825 efrain 11795
  .flex-lg-fill {
11796
    flex: 1 1 auto !important;
11797
  }
16848 stevensc 11798
 
16825 efrain 11799
  .flex-lg-row {
11800
    flex-direction: row !important;
11801
  }
16848 stevensc 11802
 
16825 efrain 11803
  .flex-lg-column {
11804
    flex-direction: column !important;
11805
  }
16848 stevensc 11806
 
16825 efrain 11807
  .flex-lg-row-reverse {
11808
    flex-direction: row-reverse !important;
11809
  }
16848 stevensc 11810
 
16825 efrain 11811
  .flex-lg-column-reverse {
11812
    flex-direction: column-reverse !important;
11813
  }
16848 stevensc 11814
 
16825 efrain 11815
  .flex-lg-grow-0 {
11816
    flex-grow: 0 !important;
11817
  }
16848 stevensc 11818
 
16825 efrain 11819
  .flex-lg-grow-1 {
11820
    flex-grow: 1 !important;
11821
  }
16848 stevensc 11822
 
16825 efrain 11823
  .flex-lg-shrink-0 {
11824
    flex-shrink: 0 !important;
11825
  }
16848 stevensc 11826
 
16825 efrain 11827
  .flex-lg-shrink-1 {
11828
    flex-shrink: 1 !important;
11829
  }
16848 stevensc 11830
 
16825 efrain 11831
  .flex-lg-wrap {
11832
    flex-wrap: wrap !important;
11833
  }
16848 stevensc 11834
 
16825 efrain 11835
  .flex-lg-nowrap {
11836
    flex-wrap: nowrap !important;
11837
  }
16848 stevensc 11838
 
16825 efrain 11839
  .flex-lg-wrap-reverse {
11840
    flex-wrap: wrap-reverse !important;
11841
  }
16848 stevensc 11842
 
16825 efrain 11843
  .justify-content-lg-start {
11844
    justify-content: flex-start !important;
11845
  }
16848 stevensc 11846
 
16825 efrain 11847
  .justify-content-lg-end {
11848
    justify-content: flex-end !important;
11849
  }
16848 stevensc 11850
 
16825 efrain 11851
  .justify-content-lg-center {
11852
    justify-content: center !important;
11853
  }
16848 stevensc 11854
 
16825 efrain 11855
  .justify-content-lg-between {
11856
    justify-content: space-between !important;
11857
  }
16848 stevensc 11858
 
16825 efrain 11859
  .justify-content-lg-around {
11860
    justify-content: space-around !important;
11861
  }
16848 stevensc 11862
 
16825 efrain 11863
  .justify-content-lg-evenly {
11864
    justify-content: space-evenly !important;
11865
  }
16848 stevensc 11866
 
16825 efrain 11867
  .align-items-lg-start {
11868
    align-items: flex-start !important;
11869
  }
16848 stevensc 11870
 
16825 efrain 11871
  .align-items-lg-end {
11872
    align-items: flex-end !important;
11873
  }
16848 stevensc 11874
 
16825 efrain 11875
  .align-items-lg-center {
11876
    align-items: center !important;
11877
  }
16848 stevensc 11878
 
16825 efrain 11879
  .align-items-lg-baseline {
11880
    align-items: baseline !important;
11881
  }
16848 stevensc 11882
 
16825 efrain 11883
  .align-items-lg-stretch {
11884
    align-items: stretch !important;
11885
  }
16848 stevensc 11886
 
16825 efrain 11887
  .align-content-lg-start {
11888
    align-content: flex-start !important;
11889
  }
16848 stevensc 11890
 
16825 efrain 11891
  .align-content-lg-end {
11892
    align-content: flex-end !important;
11893
  }
16848 stevensc 11894
 
16825 efrain 11895
  .align-content-lg-center {
11896
    align-content: center !important;
11897
  }
16848 stevensc 11898
 
16825 efrain 11899
  .align-content-lg-between {
11900
    align-content: space-between !important;
11901
  }
16848 stevensc 11902
 
16825 efrain 11903
  .align-content-lg-around {
11904
    align-content: space-around !important;
11905
  }
16848 stevensc 11906
 
16825 efrain 11907
  .align-content-lg-stretch {
11908
    align-content: stretch !important;
11909
  }
16848 stevensc 11910
 
16825 efrain 11911
  .align-self-lg-auto {
11912
    align-self: auto !important;
11913
  }
16848 stevensc 11914
 
16825 efrain 11915
  .align-self-lg-start {
11916
    align-self: flex-start !important;
11917
  }
16848 stevensc 11918
 
16825 efrain 11919
  .align-self-lg-end {
11920
    align-self: flex-end !important;
11921
  }
16848 stevensc 11922
 
16825 efrain 11923
  .align-self-lg-center {
11924
    align-self: center !important;
11925
  }
16848 stevensc 11926
 
16825 efrain 11927
  .align-self-lg-baseline {
11928
    align-self: baseline !important;
11929
  }
16848 stevensc 11930
 
16825 efrain 11931
  .align-self-lg-stretch {
11932
    align-self: stretch !important;
11933
  }
16848 stevensc 11934
 
16825 efrain 11935
  .order-lg-first {
11936
    order: -1 !important;
11937
  }
16848 stevensc 11938
 
16825 efrain 11939
  .order-lg-0 {
11940
    order: 0 !important;
11941
  }
16848 stevensc 11942
 
16825 efrain 11943
  .order-lg-1 {
11944
    order: 1 !important;
11945
  }
16848 stevensc 11946
 
16825 efrain 11947
  .order-lg-2 {
11948
    order: 2 !important;
11949
  }
16848 stevensc 11950
 
16825 efrain 11951
  .order-lg-3 {
11952
    order: 3 !important;
11953
  }
16848 stevensc 11954
 
16825 efrain 11955
  .order-lg-4 {
11956
    order: 4 !important;
11957
  }
16848 stevensc 11958
 
16825 efrain 11959
  .order-lg-5 {
11960
    order: 5 !important;
11961
  }
16848 stevensc 11962
 
16825 efrain 11963
  .order-lg-last {
11964
    order: 6 !important;
11965
  }
16848 stevensc 11966
 
16825 efrain 11967
  .m-lg-0 {
11968
    margin: 0 !important;
11969
  }
16848 stevensc 11970
 
16825 efrain 11971
  .m-lg-1 {
11972
    margin: 0.25rem !important;
11973
  }
16848 stevensc 11974
 
16825 efrain 11975
  .m-lg-2 {
11976
    margin: 0.5rem !important;
11977
  }
16848 stevensc 11978
 
16825 efrain 11979
  .m-lg-3 {
11980
    margin: 1rem !important;
11981
  }
16848 stevensc 11982
 
16825 efrain 11983
  .m-lg-4 {
11984
    margin: 1.5rem !important;
11985
  }
16848 stevensc 11986
 
16825 efrain 11987
  .m-lg-5 {
11988
    margin: 3rem !important;
11989
  }
16848 stevensc 11990
 
16825 efrain 11991
  .m-lg-6 {
11992
    margin: 4.5rem !important;
11993
  }
16848 stevensc 11994
 
16825 efrain 11995
  .m-lg-7 {
11996
    margin: 6rem !important;
11997
  }
16848 stevensc 11998
 
16825 efrain 11999
  .m-lg-auto {
12000
    margin: auto !important;
12001
  }
16848 stevensc 12002
 
16825 efrain 12003
  .mx-lg-0 {
12004
    margin-right: 0 !important;
12005
    margin-left: 0 !important;
12006
  }
16848 stevensc 12007
 
16825 efrain 12008
  .mx-lg-1 {
12009
    margin-right: 0.25rem !important;
12010
    margin-left: 0.25rem !important;
12011
  }
16848 stevensc 12012
 
16825 efrain 12013
  .mx-lg-2 {
12014
    margin-right: 0.5rem !important;
12015
    margin-left: 0.5rem !important;
12016
  }
16848 stevensc 12017
 
16825 efrain 12018
  .mx-lg-3 {
12019
    margin-right: 1rem !important;
12020
    margin-left: 1rem !important;
12021
  }
16848 stevensc 12022
 
16825 efrain 12023
  .mx-lg-4 {
12024
    margin-right: 1.5rem !important;
12025
    margin-left: 1.5rem !important;
12026
  }
16848 stevensc 12027
 
16825 efrain 12028
  .mx-lg-5 {
12029
    margin-right: 3rem !important;
12030
    margin-left: 3rem !important;
12031
  }
16848 stevensc 12032
 
16825 efrain 12033
  .mx-lg-6 {
12034
    margin-right: 4.5rem !important;
12035
    margin-left: 4.5rem !important;
12036
  }
16848 stevensc 12037
 
16825 efrain 12038
  .mx-lg-7 {
12039
    margin-right: 6rem !important;
12040
    margin-left: 6rem !important;
12041
  }
16848 stevensc 12042
 
16825 efrain 12043
  .mx-lg-auto {
12044
    margin-right: auto !important;
12045
    margin-left: auto !important;
12046
  }
16848 stevensc 12047
 
16825 efrain 12048
  .my-lg-0 {
12049
    margin-top: 0 !important;
12050
    margin-bottom: 0 !important;
12051
  }
16848 stevensc 12052
 
16825 efrain 12053
  .my-lg-1 {
12054
    margin-top: 0.25rem !important;
12055
    margin-bottom: 0.25rem !important;
12056
  }
16848 stevensc 12057
 
16825 efrain 12058
  .my-lg-2 {
12059
    margin-top: 0.5rem !important;
12060
    margin-bottom: 0.5rem !important;
12061
  }
16848 stevensc 12062
 
16825 efrain 12063
  .my-lg-3 {
12064
    margin-top: 1rem !important;
12065
    margin-bottom: 1rem !important;
12066
  }
16848 stevensc 12067
 
16825 efrain 12068
  .my-lg-4 {
12069
    margin-top: 1.5rem !important;
12070
    margin-bottom: 1.5rem !important;
12071
  }
16848 stevensc 12072
 
16825 efrain 12073
  .my-lg-5 {
12074
    margin-top: 3rem !important;
12075
    margin-bottom: 3rem !important;
12076
  }
16848 stevensc 12077
 
16825 efrain 12078
  .my-lg-6 {
12079
    margin-top: 4.5rem !important;
12080
    margin-bottom: 4.5rem !important;
12081
  }
16848 stevensc 12082
 
16825 efrain 12083
  .my-lg-7 {
12084
    margin-top: 6rem !important;
12085
    margin-bottom: 6rem !important;
12086
  }
16848 stevensc 12087
 
16825 efrain 12088
  .my-lg-auto {
12089
    margin-top: auto !important;
12090
    margin-bottom: auto !important;
12091
  }
16848 stevensc 12092
 
16825 efrain 12093
  .mt-lg-0 {
12094
    margin-top: 0 !important;
12095
  }
16848 stevensc 12096
 
16825 efrain 12097
  .mt-lg-1 {
12098
    margin-top: 0.25rem !important;
12099
  }
16848 stevensc 12100
 
16825 efrain 12101
  .mt-lg-2 {
12102
    margin-top: 0.5rem !important;
12103
  }
16848 stevensc 12104
 
16825 efrain 12105
  .mt-lg-3 {
12106
    margin-top: 1rem !important;
12107
  }
16848 stevensc 12108
 
16825 efrain 12109
  .mt-lg-4 {
12110
    margin-top: 1.5rem !important;
12111
  }
16848 stevensc 12112
 
16825 efrain 12113
  .mt-lg-5 {
12114
    margin-top: 3rem !important;
12115
  }
16848 stevensc 12116
 
16825 efrain 12117
  .mt-lg-6 {
12118
    margin-top: 4.5rem !important;
12119
  }
16848 stevensc 12120
 
16825 efrain 12121
  .mt-lg-7 {
12122
    margin-top: 6rem !important;
12123
  }
16848 stevensc 12124
 
16825 efrain 12125
  .mt-lg-auto {
12126
    margin-top: auto !important;
12127
  }
16848 stevensc 12128
 
16825 efrain 12129
  .me-lg-0 {
12130
    margin-right: 0 !important;
12131
  }
16848 stevensc 12132
 
16825 efrain 12133
  .me-lg-1 {
12134
    margin-right: 0.25rem !important;
12135
  }
16848 stevensc 12136
 
16825 efrain 12137
  .me-lg-2 {
12138
    margin-right: 0.5rem !important;
12139
  }
16848 stevensc 12140
 
16825 efrain 12141
  .me-lg-3 {
12142
    margin-right: 1rem !important;
12143
  }
16848 stevensc 12144
 
16825 efrain 12145
  .me-lg-4 {
12146
    margin-right: 1.5rem !important;
12147
  }
16848 stevensc 12148
 
16825 efrain 12149
  .me-lg-5 {
12150
    margin-right: 3rem !important;
12151
  }
16848 stevensc 12152
 
16825 efrain 12153
  .me-lg-6 {
12154
    margin-right: 4.5rem !important;
12155
  }
16848 stevensc 12156
 
16825 efrain 12157
  .me-lg-7 {
12158
    margin-right: 6rem !important;
12159
  }
16848 stevensc 12160
 
16825 efrain 12161
  .me-lg-auto {
12162
    margin-right: auto !important;
12163
  }
16848 stevensc 12164
 
16825 efrain 12165
  .mb-lg-0 {
12166
    margin-bottom: 0 !important;
12167
  }
16848 stevensc 12168
 
16825 efrain 12169
  .mb-lg-1 {
12170
    margin-bottom: 0.25rem !important;
12171
  }
16848 stevensc 12172
 
16825 efrain 12173
  .mb-lg-2 {
12174
    margin-bottom: 0.5rem !important;
12175
  }
16848 stevensc 12176
 
16825 efrain 12177
  .mb-lg-3 {
12178
    margin-bottom: 1rem !important;
12179
  }
16848 stevensc 12180
 
16825 efrain 12181
  .mb-lg-4 {
12182
    margin-bottom: 1.5rem !important;
12183
  }
16848 stevensc 12184
 
16825 efrain 12185
  .mb-lg-5 {
12186
    margin-bottom: 3rem !important;
12187
  }
16848 stevensc 12188
 
16825 efrain 12189
  .mb-lg-6 {
12190
    margin-bottom: 4.5rem !important;
12191
  }
16848 stevensc 12192
 
16825 efrain 12193
  .mb-lg-7 {
12194
    margin-bottom: 6rem !important;
12195
  }
16848 stevensc 12196
 
16825 efrain 12197
  .mb-lg-auto {
12198
    margin-bottom: auto !important;
12199
  }
16848 stevensc 12200
 
16825 efrain 12201
  .ms-lg-0 {
12202
    margin-left: 0 !important;
12203
  }
16848 stevensc 12204
 
16825 efrain 12205
  .ms-lg-1 {
12206
    margin-left: 0.25rem !important;
12207
  }
16848 stevensc 12208
 
16825 efrain 12209
  .ms-lg-2 {
12210
    margin-left: 0.5rem !important;
12211
  }
16848 stevensc 12212
 
16825 efrain 12213
  .ms-lg-3 {
12214
    margin-left: 1rem !important;
12215
  }
16848 stevensc 12216
 
16825 efrain 12217
  .ms-lg-4 {
12218
    margin-left: 1.5rem !important;
12219
  }
16848 stevensc 12220
 
16825 efrain 12221
  .ms-lg-5 {
12222
    margin-left: 3rem !important;
12223
  }
16848 stevensc 12224
 
16825 efrain 12225
  .ms-lg-6 {
12226
    margin-left: 4.5rem !important;
12227
  }
16848 stevensc 12228
 
16825 efrain 12229
  .ms-lg-7 {
12230
    margin-left: 6rem !important;
12231
  }
16848 stevensc 12232
 
16825 efrain 12233
  .ms-lg-auto {
12234
    margin-left: auto !important;
12235
  }
16848 stevensc 12236
 
16825 efrain 12237
  .m-lg-n1 {
12238
    margin: -0.25rem !important;
12239
  }
16848 stevensc 12240
 
16825 efrain 12241
  .m-lg-n2 {
12242
    margin: -0.5rem !important;
12243
  }
16848 stevensc 12244
 
16825 efrain 12245
  .m-lg-n3 {
12246
    margin: -1rem !important;
12247
  }
16848 stevensc 12248
 
16825 efrain 12249
  .m-lg-n4 {
12250
    margin: -1.5rem !important;
12251
  }
16848 stevensc 12252
 
16825 efrain 12253
  .m-lg-n5 {
12254
    margin: -3rem !important;
12255
  }
16848 stevensc 12256
 
16825 efrain 12257
  .m-lg-n6 {
12258
    margin: -4.5rem !important;
12259
  }
16848 stevensc 12260
 
16825 efrain 12261
  .m-lg-n7 {
12262
    margin: -6rem !important;
12263
  }
16848 stevensc 12264
 
16825 efrain 12265
  .mx-lg-n1 {
12266
    margin-right: -0.25rem !important;
12267
    margin-left: -0.25rem !important;
12268
  }
16848 stevensc 12269
 
16825 efrain 12270
  .mx-lg-n2 {
12271
    margin-right: -0.5rem !important;
12272
    margin-left: -0.5rem !important;
12273
  }
16848 stevensc 12274
 
16825 efrain 12275
  .mx-lg-n3 {
12276
    margin-right: -1rem !important;
12277
    margin-left: -1rem !important;
12278
  }
16848 stevensc 12279
 
16825 efrain 12280
  .mx-lg-n4 {
12281
    margin-right: -1.5rem !important;
12282
    margin-left: -1.5rem !important;
12283
  }
16848 stevensc 12284
 
16825 efrain 12285
  .mx-lg-n5 {
12286
    margin-right: -3rem !important;
12287
    margin-left: -3rem !important;
12288
  }
16848 stevensc 12289
 
16825 efrain 12290
  .mx-lg-n6 {
12291
    margin-right: -4.5rem !important;
12292
    margin-left: -4.5rem !important;
12293
  }
16848 stevensc 12294
 
16825 efrain 12295
  .mx-lg-n7 {
12296
    margin-right: -6rem !important;
12297
    margin-left: -6rem !important;
12298
  }
16848 stevensc 12299
 
16825 efrain 12300
  .my-lg-n1 {
12301
    margin-top: -0.25rem !important;
12302
    margin-bottom: -0.25rem !important;
12303
  }
16848 stevensc 12304
 
16825 efrain 12305
  .my-lg-n2 {
12306
    margin-top: -0.5rem !important;
12307
    margin-bottom: -0.5rem !important;
12308
  }
16848 stevensc 12309
 
16825 efrain 12310
  .my-lg-n3 {
12311
    margin-top: -1rem !important;
12312
    margin-bottom: -1rem !important;
12313
  }
16848 stevensc 12314
 
16825 efrain 12315
  .my-lg-n4 {
12316
    margin-top: -1.5rem !important;
12317
    margin-bottom: -1.5rem !important;
12318
  }
16848 stevensc 12319
 
16825 efrain 12320
  .my-lg-n5 {
12321
    margin-top: -3rem !important;
12322
    margin-bottom: -3rem !important;
12323
  }
16848 stevensc 12324
 
16825 efrain 12325
  .my-lg-n6 {
12326
    margin-top: -4.5rem !important;
12327
    margin-bottom: -4.5rem !important;
12328
  }
16848 stevensc 12329
 
16825 efrain 12330
  .my-lg-n7 {
12331
    margin-top: -6rem !important;
12332
    margin-bottom: -6rem !important;
12333
  }
16848 stevensc 12334
 
16825 efrain 12335
  .mt-lg-n1 {
12336
    margin-top: -0.25rem !important;
12337
  }
16848 stevensc 12338
 
16825 efrain 12339
  .mt-lg-n2 {
12340
    margin-top: -0.5rem !important;
12341
  }
16848 stevensc 12342
 
16825 efrain 12343
  .mt-lg-n3 {
12344
    margin-top: -1rem !important;
12345
  }
16848 stevensc 12346
 
16825 efrain 12347
  .mt-lg-n4 {
12348
    margin-top: -1.5rem !important;
12349
  }
16848 stevensc 12350
 
16825 efrain 12351
  .mt-lg-n5 {
12352
    margin-top: -3rem !important;
12353
  }
16848 stevensc 12354
 
16825 efrain 12355
  .mt-lg-n6 {
12356
    margin-top: -4.5rem !important;
12357
  }
16848 stevensc 12358
 
16825 efrain 12359
  .mt-lg-n7 {
12360
    margin-top: -6rem !important;
12361
  }
16848 stevensc 12362
 
16825 efrain 12363
  .me-lg-n1 {
12364
    margin-right: -0.25rem !important;
12365
  }
16848 stevensc 12366
 
16825 efrain 12367
  .me-lg-n2 {
12368
    margin-right: -0.5rem !important;
12369
  }
16848 stevensc 12370
 
16825 efrain 12371
  .me-lg-n3 {
12372
    margin-right: -1rem !important;
12373
  }
16848 stevensc 12374
 
16825 efrain 12375
  .me-lg-n4 {
12376
    margin-right: -1.5rem !important;
12377
  }
16848 stevensc 12378
 
16825 efrain 12379
  .me-lg-n5 {
12380
    margin-right: -3rem !important;
12381
  }
16848 stevensc 12382
 
16825 efrain 12383
  .me-lg-n6 {
12384
    margin-right: -4.5rem !important;
12385
  }
16848 stevensc 12386
 
16825 efrain 12387
  .me-lg-n7 {
12388
    margin-right: -6rem !important;
12389
  }
16848 stevensc 12390
 
16825 efrain 12391
  .mb-lg-n1 {
12392
    margin-bottom: -0.25rem !important;
12393
  }
16848 stevensc 12394
 
16825 efrain 12395
  .mb-lg-n2 {
12396
    margin-bottom: -0.5rem !important;
12397
  }
16848 stevensc 12398
 
16825 efrain 12399
  .mb-lg-n3 {
12400
    margin-bottom: -1rem !important;
12401
  }
16848 stevensc 12402
 
16825 efrain 12403
  .mb-lg-n4 {
12404
    margin-bottom: -1.5rem !important;
12405
  }
16848 stevensc 12406
 
16825 efrain 12407
  .mb-lg-n5 {
12408
    margin-bottom: -3rem !important;
12409
  }
16848 stevensc 12410
 
16825 efrain 12411
  .mb-lg-n6 {
12412
    margin-bottom: -4.5rem !important;
12413
  }
16848 stevensc 12414
 
16825 efrain 12415
  .mb-lg-n7 {
12416
    margin-bottom: -6rem !important;
12417
  }
16848 stevensc 12418
 
16825 efrain 12419
  .ms-lg-n1 {
12420
    margin-left: -0.25rem !important;
12421
  }
16848 stevensc 12422
 
16825 efrain 12423
  .ms-lg-n2 {
12424
    margin-left: -0.5rem !important;
12425
  }
16848 stevensc 12426
 
16825 efrain 12427
  .ms-lg-n3 {
12428
    margin-left: -1rem !important;
12429
  }
16848 stevensc 12430
 
16825 efrain 12431
  .ms-lg-n4 {
12432
    margin-left: -1.5rem !important;
12433
  }
16848 stevensc 12434
 
16825 efrain 12435
  .ms-lg-n5 {
12436
    margin-left: -3rem !important;
12437
  }
16848 stevensc 12438
 
16825 efrain 12439
  .ms-lg-n6 {
12440
    margin-left: -4.5rem !important;
12441
  }
16848 stevensc 12442
 
16825 efrain 12443
  .ms-lg-n7 {
12444
    margin-left: -6rem !important;
12445
  }
16848 stevensc 12446
 
16825 efrain 12447
  .p-lg-0 {
12448
    padding: 0 !important;
12449
  }
16848 stevensc 12450
 
16825 efrain 12451
  .p-lg-1 {
12452
    padding: 0.25rem !important;
12453
  }
16848 stevensc 12454
 
16825 efrain 12455
  .p-lg-2 {
12456
    padding: 0.5rem !important;
12457
  }
16848 stevensc 12458
 
16825 efrain 12459
  .p-lg-3 {
12460
    padding: 1rem !important;
12461
  }
16848 stevensc 12462
 
16825 efrain 12463
  .p-lg-4 {
12464
    padding: 1.5rem !important;
12465
  }
16848 stevensc 12466
 
16825 efrain 12467
  .p-lg-5 {
12468
    padding: 3rem !important;
12469
  }
16848 stevensc 12470
 
16825 efrain 12471
  .p-lg-6 {
12472
    padding: 4.5rem !important;
12473
  }
16848 stevensc 12474
 
16825 efrain 12475
  .p-lg-7 {
12476
    padding: 6rem !important;
12477
  }
16848 stevensc 12478
 
16825 efrain 12479
  .px-lg-0 {
12480
    padding-right: 0 !important;
12481
    padding-left: 0 !important;
12482
  }
16848 stevensc 12483
 
16825 efrain 12484
  .px-lg-1 {
12485
    padding-right: 0.25rem !important;
12486
    padding-left: 0.25rem !important;
12487
  }
16848 stevensc 12488
 
16825 efrain 12489
  .px-lg-2 {
12490
    padding-right: 0.5rem !important;
12491
    padding-left: 0.5rem !important;
12492
  }
16848 stevensc 12493
 
16825 efrain 12494
  .px-lg-3 {
12495
    padding-right: 1rem !important;
12496
    padding-left: 1rem !important;
12497
  }
16848 stevensc 12498
 
16825 efrain 12499
  .px-lg-4 {
12500
    padding-right: 1.5rem !important;
12501
    padding-left: 1.5rem !important;
12502
  }
16848 stevensc 12503
 
16825 efrain 12504
  .px-lg-5 {
12505
    padding-right: 3rem !important;
12506
    padding-left: 3rem !important;
12507
  }
16848 stevensc 12508
 
16825 efrain 12509
  .px-lg-6 {
12510
    padding-right: 4.5rem !important;
12511
    padding-left: 4.5rem !important;
12512
  }
16848 stevensc 12513
 
16825 efrain 12514
  .px-lg-7 {
12515
    padding-right: 6rem !important;
12516
    padding-left: 6rem !important;
12517
  }
16848 stevensc 12518
 
16825 efrain 12519
  .py-lg-0 {
12520
    padding-top: 0 !important;
12521
    padding-bottom: 0 !important;
12522
  }
16848 stevensc 12523
 
16825 efrain 12524
  .py-lg-1 {
12525
    padding-top: 0.25rem !important;
12526
    padding-bottom: 0.25rem !important;
12527
  }
16848 stevensc 12528
 
16825 efrain 12529
  .py-lg-2 {
12530
    padding-top: 0.5rem !important;
12531
    padding-bottom: 0.5rem !important;
12532
  }
16848 stevensc 12533
 
16825 efrain 12534
  .py-lg-3 {
12535
    padding-top: 1rem !important;
12536
    padding-bottom: 1rem !important;
12537
  }
16848 stevensc 12538
 
16825 efrain 12539
  .py-lg-4 {
12540
    padding-top: 1.5rem !important;
12541
    padding-bottom: 1.5rem !important;
12542
  }
16848 stevensc 12543
 
16825 efrain 12544
  .py-lg-5 {
12545
    padding-top: 3rem !important;
12546
    padding-bottom: 3rem !important;
12547
  }
16848 stevensc 12548
 
16825 efrain 12549
  .py-lg-6 {
12550
    padding-top: 4.5rem !important;
12551
    padding-bottom: 4.5rem !important;
12552
  }
16848 stevensc 12553
 
16825 efrain 12554
  .py-lg-7 {
12555
    padding-top: 6rem !important;
12556
    padding-bottom: 6rem !important;
12557
  }
16848 stevensc 12558
 
16825 efrain 12559
  .pt-lg-0 {
12560
    padding-top: 0 !important;
12561
  }
16848 stevensc 12562
 
16825 efrain 12563
  .pt-lg-1 {
12564
    padding-top: 0.25rem !important;
12565
  }
16848 stevensc 12566
 
16825 efrain 12567
  .pt-lg-2 {
12568
    padding-top: 0.5rem !important;
12569
  }
16848 stevensc 12570
 
16825 efrain 12571
  .pt-lg-3 {
12572
    padding-top: 1rem !important;
12573
  }
16848 stevensc 12574
 
16825 efrain 12575
  .pt-lg-4 {
12576
    padding-top: 1.5rem !important;
12577
  }
16848 stevensc 12578
 
16825 efrain 12579
  .pt-lg-5 {
12580
    padding-top: 3rem !important;
12581
  }
16848 stevensc 12582
 
16825 efrain 12583
  .pt-lg-6 {
12584
    padding-top: 4.5rem !important;
12585
  }
16848 stevensc 12586
 
16825 efrain 12587
  .pt-lg-7 {
12588
    padding-top: 6rem !important;
12589
  }
16848 stevensc 12590
 
16825 efrain 12591
  .pe-lg-0 {
12592
    padding-right: 0 !important;
12593
  }
16848 stevensc 12594
 
16825 efrain 12595
  .pe-lg-1 {
12596
    padding-right: 0.25rem !important;
12597
  }
16848 stevensc 12598
 
16825 efrain 12599
  .pe-lg-2 {
12600
    padding-right: 0.5rem !important;
12601
  }
16848 stevensc 12602
 
16825 efrain 12603
  .pe-lg-3 {
12604
    padding-right: 1rem !important;
12605
  }
16848 stevensc 12606
 
16825 efrain 12607
  .pe-lg-4 {
12608
    padding-right: 1.5rem !important;
12609
  }
16848 stevensc 12610
 
16825 efrain 12611
  .pe-lg-5 {
12612
    padding-right: 3rem !important;
12613
  }
16848 stevensc 12614
 
16825 efrain 12615
  .pe-lg-6 {
12616
    padding-right: 4.5rem !important;
12617
  }
16848 stevensc 12618
 
16825 efrain 12619
  .pe-lg-7 {
12620
    padding-right: 6rem !important;
12621
  }
16848 stevensc 12622
 
16825 efrain 12623
  .pb-lg-0 {
12624
    padding-bottom: 0 !important;
12625
  }
16848 stevensc 12626
 
16825 efrain 12627
  .pb-lg-1 {
12628
    padding-bottom: 0.25rem !important;
12629
  }
16848 stevensc 12630
 
16825 efrain 12631
  .pb-lg-2 {
12632
    padding-bottom: 0.5rem !important;
12633
  }
16848 stevensc 12634
 
16825 efrain 12635
  .pb-lg-3 {
12636
    padding-bottom: 1rem !important;
12637
  }
16848 stevensc 12638
 
16825 efrain 12639
  .pb-lg-4 {
12640
    padding-bottom: 1.5rem !important;
12641
  }
16848 stevensc 12642
 
16825 efrain 12643
  .pb-lg-5 {
12644
    padding-bottom: 3rem !important;
12645
  }
16848 stevensc 12646
 
16825 efrain 12647
  .pb-lg-6 {
12648
    padding-bottom: 4.5rem !important;
12649
  }
16848 stevensc 12650
 
16825 efrain 12651
  .pb-lg-7 {
12652
    padding-bottom: 6rem !important;
12653
  }
16848 stevensc 12654
 
16825 efrain 12655
  .ps-lg-0 {
12656
    padding-left: 0 !important;
12657
  }
16848 stevensc 12658
 
16825 efrain 12659
  .ps-lg-1 {
12660
    padding-left: 0.25rem !important;
12661
  }
16848 stevensc 12662
 
16825 efrain 12663
  .ps-lg-2 {
12664
    padding-left: 0.5rem !important;
12665
  }
16848 stevensc 12666
 
16825 efrain 12667
  .ps-lg-3 {
12668
    padding-left: 1rem !important;
12669
  }
16848 stevensc 12670
 
16825 efrain 12671
  .ps-lg-4 {
12672
    padding-left: 1.5rem !important;
12673
  }
16848 stevensc 12674
 
16825 efrain 12675
  .ps-lg-5 {
12676
    padding-left: 3rem !important;
12677
  }
16848 stevensc 12678
 
16825 efrain 12679
  .ps-lg-6 {
12680
    padding-left: 4.5rem !important;
12681
  }
16848 stevensc 12682
 
16825 efrain 12683
  .ps-lg-7 {
12684
    padding-left: 6rem !important;
12685
  }
16848 stevensc 12686
 
16825 efrain 12687
  .gap-lg-0 {
12688
    gap: 0 !important;
12689
  }
16848 stevensc 12690
 
16825 efrain 12691
  .gap-lg-1 {
12692
    gap: 0.25rem !important;
12693
  }
16848 stevensc 12694
 
16825 efrain 12695
  .gap-lg-2 {
12696
    gap: 0.5rem !important;
12697
  }
16848 stevensc 12698
 
16825 efrain 12699
  .gap-lg-3 {
12700
    gap: 1rem !important;
12701
  }
16848 stevensc 12702
 
16825 efrain 12703
  .gap-lg-4 {
12704
    gap: 1.5rem !important;
12705
  }
16848 stevensc 12706
 
16825 efrain 12707
  .gap-lg-5 {
12708
    gap: 3rem !important;
12709
  }
16848 stevensc 12710
 
16825 efrain 12711
  .gap-lg-6 {
12712
    gap: 4.5rem !important;
12713
  }
16848 stevensc 12714
 
16825 efrain 12715
  .gap-lg-7 {
12716
    gap: 6rem !important;
12717
  }
16848 stevensc 12718
 
16825 efrain 12719
  .text-lg-start {
12720
    text-align: left !important;
12721
  }
16848 stevensc 12722
 
16825 efrain 12723
  .text-lg-end {
12724
    text-align: right !important;
12725
  }
16848 stevensc 12726
 
16825 efrain 12727
  .text-lg-center {
12728
    text-align: center !important;
12729
  }
12730
}
16848 stevensc 12731
 
16825 efrain 12732
@media (min-width: 1200px) {
12733
  .float-xl-start {
12734
    float: left !important;
12735
  }
16848 stevensc 12736
 
16825 efrain 12737
  .float-xl-end {
12738
    float: right !important;
12739
  }
16848 stevensc 12740
 
16825 efrain 12741
  .float-xl-none {
12742
    float: none !important;
12743
  }
16848 stevensc 12744
 
16825 efrain 12745
  .d-xl-inline {
12746
    display: inline !important;
12747
  }
16848 stevensc 12748
 
16825 efrain 12749
  .d-xl-inline-block {
12750
    display: inline-block !important;
12751
  }
16848 stevensc 12752
 
16825 efrain 12753
  .d-xl-block {
12754
    display: block !important;
12755
  }
16848 stevensc 12756
 
16825 efrain 12757
  .d-xl-grid {
12758
    display: grid !important;
12759
  }
16848 stevensc 12760
 
16825 efrain 12761
  .d-xl-table {
12762
    display: table !important;
12763
  }
16848 stevensc 12764
 
16825 efrain 12765
  .d-xl-table-row {
12766
    display: table-row !important;
12767
  }
16848 stevensc 12768
 
16825 efrain 12769
  .d-xl-table-cell {
12770
    display: table-cell !important;
12771
  }
16848 stevensc 12772
 
16825 efrain 12773
  .d-xl-flex {
12774
    display: flex !important;
12775
  }
16848 stevensc 12776
 
16825 efrain 12777
  .d-xl-inline-flex {
12778
    display: inline-flex !important;
12779
  }
16848 stevensc 12780
 
16825 efrain 12781
  .d-xl-none {
12782
    display: none !important;
12783
  }
16848 stevensc 12784
 
16825 efrain 12785
  .border-xl {
12786
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12787
  }
16848 stevensc 12788
 
16825 efrain 12789
  .border-xl-0 {
12790
    border: 0 !important;
12791
  }
16848 stevensc 12792
 
16825 efrain 12793
  .border-top-xl {
12794
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12795
  }
16848 stevensc 12796
 
16825 efrain 12797
  .border-top-xl-0 {
12798
    border-top: 0 !important;
12799
  }
16848 stevensc 12800
 
16825 efrain 12801
  .border-end-xl {
12802
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12803
  }
16848 stevensc 12804
 
16825 efrain 12805
  .border-end-xl-0 {
12806
    border-right: 0 !important;
12807
  }
16848 stevensc 12808
 
16825 efrain 12809
  .border-bottom-xl {
12810
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12811
  }
16848 stevensc 12812
 
16825 efrain 12813
  .border-bottom-xl-0 {
12814
    border-bottom: 0 !important;
12815
  }
16848 stevensc 12816
 
16825 efrain 12817
  .border-start-xl {
12818
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12819
  }
16848 stevensc 12820
 
16825 efrain 12821
  .border-start-xl-0 {
12822
    border-left: 0 !important;
12823
  }
16848 stevensc 12824
 
16825 efrain 12825
  .flex-xl-fill {
12826
    flex: 1 1 auto !important;
12827
  }
16848 stevensc 12828
 
16825 efrain 12829
  .flex-xl-row {
12830
    flex-direction: row !important;
12831
  }
16848 stevensc 12832
 
16825 efrain 12833
  .flex-xl-column {
12834
    flex-direction: column !important;
12835
  }
16848 stevensc 12836
 
16825 efrain 12837
  .flex-xl-row-reverse {
12838
    flex-direction: row-reverse !important;
12839
  }
16848 stevensc 12840
 
16825 efrain 12841
  .flex-xl-column-reverse {
12842
    flex-direction: column-reverse !important;
12843
  }
16848 stevensc 12844
 
16825 efrain 12845
  .flex-xl-grow-0 {
12846
    flex-grow: 0 !important;
12847
  }
16848 stevensc 12848
 
16825 efrain 12849
  .flex-xl-grow-1 {
12850
    flex-grow: 1 !important;
12851
  }
16848 stevensc 12852
 
16825 efrain 12853
  .flex-xl-shrink-0 {
12854
    flex-shrink: 0 !important;
12855
  }
16848 stevensc 12856
 
16825 efrain 12857
  .flex-xl-shrink-1 {
12858
    flex-shrink: 1 !important;
12859
  }
16848 stevensc 12860
 
16825 efrain 12861
  .flex-xl-wrap {
12862
    flex-wrap: wrap !important;
12863
  }
16848 stevensc 12864
 
16825 efrain 12865
  .flex-xl-nowrap {
12866
    flex-wrap: nowrap !important;
12867
  }
16848 stevensc 12868
 
16825 efrain 12869
  .flex-xl-wrap-reverse {
12870
    flex-wrap: wrap-reverse !important;
12871
  }
16848 stevensc 12872
 
16825 efrain 12873
  .justify-content-xl-start {
12874
    justify-content: flex-start !important;
12875
  }
16848 stevensc 12876
 
16825 efrain 12877
  .justify-content-xl-end {
12878
    justify-content: flex-end !important;
12879
  }
16848 stevensc 12880
 
16825 efrain 12881
  .justify-content-xl-center {
12882
    justify-content: center !important;
12883
  }
16848 stevensc 12884
 
16825 efrain 12885
  .justify-content-xl-between {
12886
    justify-content: space-between !important;
12887
  }
16848 stevensc 12888
 
16825 efrain 12889
  .justify-content-xl-around {
12890
    justify-content: space-around !important;
12891
  }
16848 stevensc 12892
 
16825 efrain 12893
  .justify-content-xl-evenly {
12894
    justify-content: space-evenly !important;
12895
  }
16848 stevensc 12896
 
16825 efrain 12897
  .align-items-xl-start {
12898
    align-items: flex-start !important;
12899
  }
16848 stevensc 12900
 
16825 efrain 12901
  .align-items-xl-end {
12902
    align-items: flex-end !important;
12903
  }
16848 stevensc 12904
 
16825 efrain 12905
  .align-items-xl-center {
12906
    align-items: center !important;
12907
  }
16848 stevensc 12908
 
16825 efrain 12909
  .align-items-xl-baseline {
12910
    align-items: baseline !important;
12911
  }
16848 stevensc 12912
 
16825 efrain 12913
  .align-items-xl-stretch {
12914
    align-items: stretch !important;
12915
  }
16848 stevensc 12916
 
16825 efrain 12917
  .align-content-xl-start {
12918
    align-content: flex-start !important;
12919
  }
16848 stevensc 12920
 
16825 efrain 12921
  .align-content-xl-end {
12922
    align-content: flex-end !important;
12923
  }
16848 stevensc 12924
 
16825 efrain 12925
  .align-content-xl-center {
12926
    align-content: center !important;
12927
  }
16848 stevensc 12928
 
16825 efrain 12929
  .align-content-xl-between {
12930
    align-content: space-between !important;
12931
  }
16848 stevensc 12932
 
16825 efrain 12933
  .align-content-xl-around {
12934
    align-content: space-around !important;
12935
  }
16848 stevensc 12936
 
16825 efrain 12937
  .align-content-xl-stretch {
12938
    align-content: stretch !important;
12939
  }
16848 stevensc 12940
 
16825 efrain 12941
  .align-self-xl-auto {
12942
    align-self: auto !important;
12943
  }
16848 stevensc 12944
 
16825 efrain 12945
  .align-self-xl-start {
12946
    align-self: flex-start !important;
12947
  }
16848 stevensc 12948
 
16825 efrain 12949
  .align-self-xl-end {
12950
    align-self: flex-end !important;
12951
  }
16848 stevensc 12952
 
16825 efrain 12953
  .align-self-xl-center {
12954
    align-self: center !important;
12955
  }
16848 stevensc 12956
 
16825 efrain 12957
  .align-self-xl-baseline {
12958
    align-self: baseline !important;
12959
  }
16848 stevensc 12960
 
16825 efrain 12961
  .align-self-xl-stretch {
12962
    align-self: stretch !important;
12963
  }
16848 stevensc 12964
 
16825 efrain 12965
  .order-xl-first {
12966
    order: -1 !important;
12967
  }
16848 stevensc 12968
 
16825 efrain 12969
  .order-xl-0 {
12970
    order: 0 !important;
12971
  }
16848 stevensc 12972
 
16825 efrain 12973
  .order-xl-1 {
12974
    order: 1 !important;
12975
  }
16848 stevensc 12976
 
16825 efrain 12977
  .order-xl-2 {
12978
    order: 2 !important;
12979
  }
16848 stevensc 12980
 
16825 efrain 12981
  .order-xl-3 {
12982
    order: 3 !important;
12983
  }
16848 stevensc 12984
 
16825 efrain 12985
  .order-xl-4 {
12986
    order: 4 !important;
12987
  }
16848 stevensc 12988
 
16825 efrain 12989
  .order-xl-5 {
12990
    order: 5 !important;
12991
  }
16848 stevensc 12992
 
16825 efrain 12993
  .order-xl-last {
12994
    order: 6 !important;
12995
  }
16848 stevensc 12996
 
16825 efrain 12997
  .m-xl-0 {
12998
    margin: 0 !important;
12999
  }
16848 stevensc 13000
 
16825 efrain 13001
  .m-xl-1 {
13002
    margin: 0.25rem !important;
13003
  }
16848 stevensc 13004
 
16825 efrain 13005
  .m-xl-2 {
13006
    margin: 0.5rem !important;
13007
  }
16848 stevensc 13008
 
16825 efrain 13009
  .m-xl-3 {
13010
    margin: 1rem !important;
13011
  }
16848 stevensc 13012
 
16825 efrain 13013
  .m-xl-4 {
13014
    margin: 1.5rem !important;
13015
  }
16848 stevensc 13016
 
16825 efrain 13017
  .m-xl-5 {
13018
    margin: 3rem !important;
13019
  }
16848 stevensc 13020
 
16825 efrain 13021
  .m-xl-6 {
13022
    margin: 4.5rem !important;
13023
  }
16848 stevensc 13024
 
16825 efrain 13025
  .m-xl-7 {
13026
    margin: 6rem !important;
13027
  }
16848 stevensc 13028
 
16825 efrain 13029
  .m-xl-auto {
13030
    margin: auto !important;
13031
  }
16848 stevensc 13032
 
16825 efrain 13033
  .mx-xl-0 {
13034
    margin-right: 0 !important;
13035
    margin-left: 0 !important;
13036
  }
16848 stevensc 13037
 
16825 efrain 13038
  .mx-xl-1 {
13039
    margin-right: 0.25rem !important;
13040
    margin-left: 0.25rem !important;
13041
  }
16848 stevensc 13042
 
16825 efrain 13043
  .mx-xl-2 {
13044
    margin-right: 0.5rem !important;
13045
    margin-left: 0.5rem !important;
13046
  }
16848 stevensc 13047
 
16825 efrain 13048
  .mx-xl-3 {
13049
    margin-right: 1rem !important;
13050
    margin-left: 1rem !important;
13051
  }
16848 stevensc 13052
 
16825 efrain 13053
  .mx-xl-4 {
13054
    margin-right: 1.5rem !important;
13055
    margin-left: 1.5rem !important;
13056
  }
16848 stevensc 13057
 
16825 efrain 13058
  .mx-xl-5 {
13059
    margin-right: 3rem !important;
13060
    margin-left: 3rem !important;
13061
  }
16848 stevensc 13062
 
16825 efrain 13063
  .mx-xl-6 {
13064
    margin-right: 4.5rem !important;
13065
    margin-left: 4.5rem !important;
13066
  }
16848 stevensc 13067
 
16825 efrain 13068
  .mx-xl-7 {
13069
    margin-right: 6rem !important;
13070
    margin-left: 6rem !important;
13071
  }
16848 stevensc 13072
 
16825 efrain 13073
  .mx-xl-auto {
13074
    margin-right: auto !important;
13075
    margin-left: auto !important;
13076
  }
16848 stevensc 13077
 
16825 efrain 13078
  .my-xl-0 {
13079
    margin-top: 0 !important;
13080
    margin-bottom: 0 !important;
13081
  }
16848 stevensc 13082
 
16825 efrain 13083
  .my-xl-1 {
13084
    margin-top: 0.25rem !important;
13085
    margin-bottom: 0.25rem !important;
13086
  }
16848 stevensc 13087
 
16825 efrain 13088
  .my-xl-2 {
13089
    margin-top: 0.5rem !important;
13090
    margin-bottom: 0.5rem !important;
13091
  }
16848 stevensc 13092
 
16825 efrain 13093
  .my-xl-3 {
13094
    margin-top: 1rem !important;
13095
    margin-bottom: 1rem !important;
13096
  }
16848 stevensc 13097
 
16825 efrain 13098
  .my-xl-4 {
13099
    margin-top: 1.5rem !important;
13100
    margin-bottom: 1.5rem !important;
13101
  }
16848 stevensc 13102
 
16825 efrain 13103
  .my-xl-5 {
13104
    margin-top: 3rem !important;
13105
    margin-bottom: 3rem !important;
13106
  }
16848 stevensc 13107
 
16825 efrain 13108
  .my-xl-6 {
13109
    margin-top: 4.5rem !important;
13110
    margin-bottom: 4.5rem !important;
13111
  }
16848 stevensc 13112
 
16825 efrain 13113
  .my-xl-7 {
13114
    margin-top: 6rem !important;
13115
    margin-bottom: 6rem !important;
13116
  }
16848 stevensc 13117
 
16825 efrain 13118
  .my-xl-auto {
13119
    margin-top: auto !important;
13120
    margin-bottom: auto !important;
13121
  }
16848 stevensc 13122
 
16825 efrain 13123
  .mt-xl-0 {
13124
    margin-top: 0 !important;
13125
  }
16848 stevensc 13126
 
16825 efrain 13127
  .mt-xl-1 {
13128
    margin-top: 0.25rem !important;
13129
  }
16848 stevensc 13130
 
16825 efrain 13131
  .mt-xl-2 {
13132
    margin-top: 0.5rem !important;
13133
  }
16848 stevensc 13134
 
16825 efrain 13135
  .mt-xl-3 {
13136
    margin-top: 1rem !important;
13137
  }
16848 stevensc 13138
 
16825 efrain 13139
  .mt-xl-4 {
13140
    margin-top: 1.5rem !important;
13141
  }
16848 stevensc 13142
 
16825 efrain 13143
  .mt-xl-5 {
13144
    margin-top: 3rem !important;
13145
  }
16848 stevensc 13146
 
16825 efrain 13147
  .mt-xl-6 {
13148
    margin-top: 4.5rem !important;
13149
  }
16848 stevensc 13150
 
16825 efrain 13151
  .mt-xl-7 {
13152
    margin-top: 6rem !important;
13153
  }
16848 stevensc 13154
 
16825 efrain 13155
  .mt-xl-auto {
13156
    margin-top: auto !important;
13157
  }
16848 stevensc 13158
 
16825 efrain 13159
  .me-xl-0 {
13160
    margin-right: 0 !important;
13161
  }
16848 stevensc 13162
 
16825 efrain 13163
  .me-xl-1 {
13164
    margin-right: 0.25rem !important;
13165
  }
16848 stevensc 13166
 
16825 efrain 13167
  .me-xl-2 {
13168
    margin-right: 0.5rem !important;
13169
  }
16848 stevensc 13170
 
16825 efrain 13171
  .me-xl-3 {
13172
    margin-right: 1rem !important;
13173
  }
16848 stevensc 13174
 
16825 efrain 13175
  .me-xl-4 {
13176
    margin-right: 1.5rem !important;
13177
  }
16848 stevensc 13178
 
16825 efrain 13179
  .me-xl-5 {
13180
    margin-right: 3rem !important;
13181
  }
16848 stevensc 13182
 
16825 efrain 13183
  .me-xl-6 {
13184
    margin-right: 4.5rem !important;
13185
  }
16848 stevensc 13186
 
16825 efrain 13187
  .me-xl-7 {
13188
    margin-right: 6rem !important;
13189
  }
16848 stevensc 13190
 
16825 efrain 13191
  .me-xl-auto {
13192
    margin-right: auto !important;
13193
  }
16848 stevensc 13194
 
16825 efrain 13195
  .mb-xl-0 {
13196
    margin-bottom: 0 !important;
13197
  }
16848 stevensc 13198
 
16825 efrain 13199
  .mb-xl-1 {
13200
    margin-bottom: 0.25rem !important;
13201
  }
16848 stevensc 13202
 
16825 efrain 13203
  .mb-xl-2 {
13204
    margin-bottom: 0.5rem !important;
13205
  }
16848 stevensc 13206
 
16825 efrain 13207
  .mb-xl-3 {
13208
    margin-bottom: 1rem !important;
13209
  }
16848 stevensc 13210
 
16825 efrain 13211
  .mb-xl-4 {
13212
    margin-bottom: 1.5rem !important;
13213
  }
16848 stevensc 13214
 
16825 efrain 13215
  .mb-xl-5 {
13216
    margin-bottom: 3rem !important;
13217
  }
16848 stevensc 13218
 
16825 efrain 13219
  .mb-xl-6 {
13220
    margin-bottom: 4.5rem !important;
13221
  }
16848 stevensc 13222
 
16825 efrain 13223
  .mb-xl-7 {
13224
    margin-bottom: 6rem !important;
13225
  }
16848 stevensc 13226
 
16825 efrain 13227
  .mb-xl-auto {
13228
    margin-bottom: auto !important;
13229
  }
16848 stevensc 13230
 
16825 efrain 13231
  .ms-xl-0 {
13232
    margin-left: 0 !important;
13233
  }
16848 stevensc 13234
 
16825 efrain 13235
  .ms-xl-1 {
13236
    margin-left: 0.25rem !important;
13237
  }
16848 stevensc 13238
 
16825 efrain 13239
  .ms-xl-2 {
13240
    margin-left: 0.5rem !important;
13241
  }
16848 stevensc 13242
 
16825 efrain 13243
  .ms-xl-3 {
13244
    margin-left: 1rem !important;
13245
  }
16848 stevensc 13246
 
16825 efrain 13247
  .ms-xl-4 {
13248
    margin-left: 1.5rem !important;
13249
  }
16848 stevensc 13250
 
16825 efrain 13251
  .ms-xl-5 {
13252
    margin-left: 3rem !important;
13253
  }
16848 stevensc 13254
 
16825 efrain 13255
  .ms-xl-6 {
13256
    margin-left: 4.5rem !important;
13257
  }
16848 stevensc 13258
 
16825 efrain 13259
  .ms-xl-7 {
13260
    margin-left: 6rem !important;
13261
  }
16848 stevensc 13262
 
16825 efrain 13263
  .ms-xl-auto {
13264
    margin-left: auto !important;
13265
  }
16848 stevensc 13266
 
16825 efrain 13267
  .m-xl-n1 {
13268
    margin: -0.25rem !important;
13269
  }
16848 stevensc 13270
 
16825 efrain 13271
  .m-xl-n2 {
13272
    margin: -0.5rem !important;
13273
  }
16848 stevensc 13274
 
16825 efrain 13275
  .m-xl-n3 {
13276
    margin: -1rem !important;
13277
  }
16848 stevensc 13278
 
16825 efrain 13279
  .m-xl-n4 {
13280
    margin: -1.5rem !important;
13281
  }
16848 stevensc 13282
 
16825 efrain 13283
  .m-xl-n5 {
13284
    margin: -3rem !important;
13285
  }
16848 stevensc 13286
 
16825 efrain 13287
  .m-xl-n6 {
13288
    margin: -4.5rem !important;
13289
  }
16848 stevensc 13290
 
16825 efrain 13291
  .m-xl-n7 {
13292
    margin: -6rem !important;
13293
  }
16848 stevensc 13294
 
16825 efrain 13295
  .mx-xl-n1 {
13296
    margin-right: -0.25rem !important;
13297
    margin-left: -0.25rem !important;
13298
  }
16848 stevensc 13299
 
16825 efrain 13300
  .mx-xl-n2 {
13301
    margin-right: -0.5rem !important;
13302
    margin-left: -0.5rem !important;
13303
  }
16848 stevensc 13304
 
16825 efrain 13305
  .mx-xl-n3 {
13306
    margin-right: -1rem !important;
13307
    margin-left: -1rem !important;
13308
  }
16848 stevensc 13309
 
16825 efrain 13310
  .mx-xl-n4 {
13311
    margin-right: -1.5rem !important;
13312
    margin-left: -1.5rem !important;
13313
  }
16848 stevensc 13314
 
16825 efrain 13315
  .mx-xl-n5 {
13316
    margin-right: -3rem !important;
13317
    margin-left: -3rem !important;
13318
  }
16848 stevensc 13319
 
16825 efrain 13320
  .mx-xl-n6 {
13321
    margin-right: -4.5rem !important;
13322
    margin-left: -4.5rem !important;
13323
  }
16848 stevensc 13324
 
16825 efrain 13325
  .mx-xl-n7 {
13326
    margin-right: -6rem !important;
13327
    margin-left: -6rem !important;
13328
  }
16848 stevensc 13329
 
16825 efrain 13330
  .my-xl-n1 {
13331
    margin-top: -0.25rem !important;
13332
    margin-bottom: -0.25rem !important;
13333
  }
16848 stevensc 13334
 
16825 efrain 13335
  .my-xl-n2 {
13336
    margin-top: -0.5rem !important;
13337
    margin-bottom: -0.5rem !important;
13338
  }
16848 stevensc 13339
 
16825 efrain 13340
  .my-xl-n3 {
13341
    margin-top: -1rem !important;
13342
    margin-bottom: -1rem !important;
13343
  }
16848 stevensc 13344
 
16825 efrain 13345
  .my-xl-n4 {
13346
    margin-top: -1.5rem !important;
13347
    margin-bottom: -1.5rem !important;
13348
  }
16848 stevensc 13349
 
16825 efrain 13350
  .my-xl-n5 {
13351
    margin-top: -3rem !important;
13352
    margin-bottom: -3rem !important;
13353
  }
16848 stevensc 13354
 
16825 efrain 13355
  .my-xl-n6 {
13356
    margin-top: -4.5rem !important;
13357
    margin-bottom: -4.5rem !important;
13358
  }
16848 stevensc 13359
 
16825 efrain 13360
  .my-xl-n7 {
13361
    margin-top: -6rem !important;
13362
    margin-bottom: -6rem !important;
13363
  }
16848 stevensc 13364
 
16825 efrain 13365
  .mt-xl-n1 {
13366
    margin-top: -0.25rem !important;
13367
  }
16848 stevensc 13368
 
16825 efrain 13369
  .mt-xl-n2 {
13370
    margin-top: -0.5rem !important;
13371
  }
16848 stevensc 13372
 
16825 efrain 13373
  .mt-xl-n3 {
13374
    margin-top: -1rem !important;
13375
  }
16848 stevensc 13376
 
16825 efrain 13377
  .mt-xl-n4 {
13378
    margin-top: -1.5rem !important;
13379
  }
16848 stevensc 13380
 
16825 efrain 13381
  .mt-xl-n5 {
13382
    margin-top: -3rem !important;
13383
  }
16848 stevensc 13384
 
16825 efrain 13385
  .mt-xl-n6 {
13386
    margin-top: -4.5rem !important;
13387
  }
16848 stevensc 13388
 
16825 efrain 13389
  .mt-xl-n7 {
13390
    margin-top: -6rem !important;
13391
  }
16848 stevensc 13392
 
16825 efrain 13393
  .me-xl-n1 {
13394
    margin-right: -0.25rem !important;
13395
  }
16848 stevensc 13396
 
16825 efrain 13397
  .me-xl-n2 {
13398
    margin-right: -0.5rem !important;
13399
  }
16848 stevensc 13400
 
16825 efrain 13401
  .me-xl-n3 {
13402
    margin-right: -1rem !important;
13403
  }
16848 stevensc 13404
 
16825 efrain 13405
  .me-xl-n4 {
13406
    margin-right: -1.5rem !important;
13407
  }
16848 stevensc 13408
 
16825 efrain 13409
  .me-xl-n5 {
13410
    margin-right: -3rem !important;
13411
  }
16848 stevensc 13412
 
16825 efrain 13413
  .me-xl-n6 {
13414
    margin-right: -4.5rem !important;
13415
  }
16848 stevensc 13416
 
16825 efrain 13417
  .me-xl-n7 {
13418
    margin-right: -6rem !important;
13419
  }
16848 stevensc 13420
 
16825 efrain 13421
  .mb-xl-n1 {
13422
    margin-bottom: -0.25rem !important;
13423
  }
16848 stevensc 13424
 
16825 efrain 13425
  .mb-xl-n2 {
13426
    margin-bottom: -0.5rem !important;
13427
  }
16848 stevensc 13428
 
16825 efrain 13429
  .mb-xl-n3 {
13430
    margin-bottom: -1rem !important;
13431
  }
16848 stevensc 13432
 
16825 efrain 13433
  .mb-xl-n4 {
13434
    margin-bottom: -1.5rem !important;
13435
  }
16848 stevensc 13436
 
16825 efrain 13437
  .mb-xl-n5 {
13438
    margin-bottom: -3rem !important;
13439
  }
16848 stevensc 13440
 
16825 efrain 13441
  .mb-xl-n6 {
13442
    margin-bottom: -4.5rem !important;
13443
  }
16848 stevensc 13444
 
16825 efrain 13445
  .mb-xl-n7 {
13446
    margin-bottom: -6rem !important;
13447
  }
16848 stevensc 13448
 
16825 efrain 13449
  .ms-xl-n1 {
13450
    margin-left: -0.25rem !important;
13451
  }
16848 stevensc 13452
 
16825 efrain 13453
  .ms-xl-n2 {
13454
    margin-left: -0.5rem !important;
13455
  }
16848 stevensc 13456
 
16825 efrain 13457
  .ms-xl-n3 {
13458
    margin-left: -1rem !important;
13459
  }
16848 stevensc 13460
 
16825 efrain 13461
  .ms-xl-n4 {
13462
    margin-left: -1.5rem !important;
13463
  }
16848 stevensc 13464
 
16825 efrain 13465
  .ms-xl-n5 {
13466
    margin-left: -3rem !important;
13467
  }
16848 stevensc 13468
 
16825 efrain 13469
  .ms-xl-n6 {
13470
    margin-left: -4.5rem !important;
13471
  }
16848 stevensc 13472
 
16825 efrain 13473
  .ms-xl-n7 {
13474
    margin-left: -6rem !important;
13475
  }
16848 stevensc 13476
 
16825 efrain 13477
  .p-xl-0 {
13478
    padding: 0 !important;
13479
  }
16848 stevensc 13480
 
16825 efrain 13481
  .p-xl-1 {
13482
    padding: 0.25rem !important;
13483
  }
16848 stevensc 13484
 
16825 efrain 13485
  .p-xl-2 {
13486
    padding: 0.5rem !important;
13487
  }
16848 stevensc 13488
 
16825 efrain 13489
  .p-xl-3 {
13490
    padding: 1rem !important;
13491
  }
16848 stevensc 13492
 
16825 efrain 13493
  .p-xl-4 {
13494
    padding: 1.5rem !important;
13495
  }
16848 stevensc 13496
 
16825 efrain 13497
  .p-xl-5 {
13498
    padding: 3rem !important;
13499
  }
16848 stevensc 13500
 
16825 efrain 13501
  .p-xl-6 {
13502
    padding: 4.5rem !important;
13503
  }
16848 stevensc 13504
 
16825 efrain 13505
  .p-xl-7 {
13506
    padding: 6rem !important;
13507
  }
16848 stevensc 13508
 
16825 efrain 13509
  .px-xl-0 {
13510
    padding-right: 0 !important;
13511
    padding-left: 0 !important;
13512
  }
16848 stevensc 13513
 
16825 efrain 13514
  .px-xl-1 {
13515
    padding-right: 0.25rem !important;
13516
    padding-left: 0.25rem !important;
13517
  }
16848 stevensc 13518
 
16825 efrain 13519
  .px-xl-2 {
13520
    padding-right: 0.5rem !important;
13521
    padding-left: 0.5rem !important;
13522
  }
16848 stevensc 13523
 
16825 efrain 13524
  .px-xl-3 {
13525
    padding-right: 1rem !important;
13526
    padding-left: 1rem !important;
13527
  }
16848 stevensc 13528
 
16825 efrain 13529
  .px-xl-4 {
13530
    padding-right: 1.5rem !important;
13531
    padding-left: 1.5rem !important;
13532
  }
16848 stevensc 13533
 
16825 efrain 13534
  .px-xl-5 {
13535
    padding-right: 3rem !important;
13536
    padding-left: 3rem !important;
13537
  }
16848 stevensc 13538
 
16825 efrain 13539
  .px-xl-6 {
13540
    padding-right: 4.5rem !important;
13541
    padding-left: 4.5rem !important;
13542
  }
16848 stevensc 13543
 
16825 efrain 13544
  .px-xl-7 {
13545
    padding-right: 6rem !important;
13546
    padding-left: 6rem !important;
13547
  }
16848 stevensc 13548
 
16825 efrain 13549
  .py-xl-0 {
13550
    padding-top: 0 !important;
13551
    padding-bottom: 0 !important;
13552
  }
16848 stevensc 13553
 
16825 efrain 13554
  .py-xl-1 {
13555
    padding-top: 0.25rem !important;
13556
    padding-bottom: 0.25rem !important;
13557
  }
16848 stevensc 13558
 
16825 efrain 13559
  .py-xl-2 {
13560
    padding-top: 0.5rem !important;
13561
    padding-bottom: 0.5rem !important;
13562
  }
16848 stevensc 13563
 
16825 efrain 13564
  .py-xl-3 {
13565
    padding-top: 1rem !important;
13566
    padding-bottom: 1rem !important;
13567
  }
16848 stevensc 13568
 
16825 efrain 13569
  .py-xl-4 {
13570
    padding-top: 1.5rem !important;
13571
    padding-bottom: 1.5rem !important;
13572
  }
16848 stevensc 13573
 
16825 efrain 13574
  .py-xl-5 {
13575
    padding-top: 3rem !important;
13576
    padding-bottom: 3rem !important;
13577
  }
16848 stevensc 13578
 
16825 efrain 13579
  .py-xl-6 {
13580
    padding-top: 4.5rem !important;
13581
    padding-bottom: 4.5rem !important;
13582
  }
16848 stevensc 13583
 
16825 efrain 13584
  .py-xl-7 {
13585
    padding-top: 6rem !important;
13586
    padding-bottom: 6rem !important;
13587
  }
16848 stevensc 13588
 
16825 efrain 13589
  .pt-xl-0 {
13590
    padding-top: 0 !important;
13591
  }
16848 stevensc 13592
 
16825 efrain 13593
  .pt-xl-1 {
13594
    padding-top: 0.25rem !important;
13595
  }
16848 stevensc 13596
 
16825 efrain 13597
  .pt-xl-2 {
13598
    padding-top: 0.5rem !important;
13599
  }
16848 stevensc 13600
 
16825 efrain 13601
  .pt-xl-3 {
13602
    padding-top: 1rem !important;
13603
  }
16848 stevensc 13604
 
16825 efrain 13605
  .pt-xl-4 {
13606
    padding-top: 1.5rem !important;
13607
  }
16848 stevensc 13608
 
16825 efrain 13609
  .pt-xl-5 {
13610
    padding-top: 3rem !important;
13611
  }
16848 stevensc 13612
 
16825 efrain 13613
  .pt-xl-6 {
13614
    padding-top: 4.5rem !important;
13615
  }
16848 stevensc 13616
 
16825 efrain 13617
  .pt-xl-7 {
13618
    padding-top: 6rem !important;
13619
  }
16848 stevensc 13620
 
16825 efrain 13621
  .pe-xl-0 {
13622
    padding-right: 0 !important;
13623
  }
16848 stevensc 13624
 
16825 efrain 13625
  .pe-xl-1 {
13626
    padding-right: 0.25rem !important;
13627
  }
16848 stevensc 13628
 
16825 efrain 13629
  .pe-xl-2 {
13630
    padding-right: 0.5rem !important;
13631
  }
16848 stevensc 13632
 
16825 efrain 13633
  .pe-xl-3 {
13634
    padding-right: 1rem !important;
13635
  }
16848 stevensc 13636
 
16825 efrain 13637
  .pe-xl-4 {
13638
    padding-right: 1.5rem !important;
13639
  }
16848 stevensc 13640
 
16825 efrain 13641
  .pe-xl-5 {
13642
    padding-right: 3rem !important;
13643
  }
16848 stevensc 13644
 
16825 efrain 13645
  .pe-xl-6 {
13646
    padding-right: 4.5rem !important;
13647
  }
16848 stevensc 13648
 
16825 efrain 13649
  .pe-xl-7 {
13650
    padding-right: 6rem !important;
13651
  }
16848 stevensc 13652
 
16825 efrain 13653
  .pb-xl-0 {
13654
    padding-bottom: 0 !important;
13655
  }
16848 stevensc 13656
 
16825 efrain 13657
  .pb-xl-1 {
13658
    padding-bottom: 0.25rem !important;
13659
  }
16848 stevensc 13660
 
16825 efrain 13661
  .pb-xl-2 {
13662
    padding-bottom: 0.5rem !important;
13663
  }
16848 stevensc 13664
 
16825 efrain 13665
  .pb-xl-3 {
13666
    padding-bottom: 1rem !important;
13667
  }
16848 stevensc 13668
 
16825 efrain 13669
  .pb-xl-4 {
13670
    padding-bottom: 1.5rem !important;
13671
  }
16848 stevensc 13672
 
16825 efrain 13673
  .pb-xl-5 {
13674
    padding-bottom: 3rem !important;
13675
  }
16848 stevensc 13676
 
16825 efrain 13677
  .pb-xl-6 {
13678
    padding-bottom: 4.5rem !important;
13679
  }
16848 stevensc 13680
 
16825 efrain 13681
  .pb-xl-7 {
13682
    padding-bottom: 6rem !important;
13683
  }
16848 stevensc 13684
 
16825 efrain 13685
  .ps-xl-0 {
13686
    padding-left: 0 !important;
13687
  }
16848 stevensc 13688
 
16825 efrain 13689
  .ps-xl-1 {
13690
    padding-left: 0.25rem !important;
13691
  }
16848 stevensc 13692
 
16825 efrain 13693
  .ps-xl-2 {
13694
    padding-left: 0.5rem !important;
13695
  }
16848 stevensc 13696
 
16825 efrain 13697
  .ps-xl-3 {
13698
    padding-left: 1rem !important;
13699
  }
16848 stevensc 13700
 
16825 efrain 13701
  .ps-xl-4 {
13702
    padding-left: 1.5rem !important;
13703
  }
16848 stevensc 13704
 
16825 efrain 13705
  .ps-xl-5 {
13706
    padding-left: 3rem !important;
13707
  }
16848 stevensc 13708
 
16825 efrain 13709
  .ps-xl-6 {
13710
    padding-left: 4.5rem !important;
13711
  }
16848 stevensc 13712
 
16825 efrain 13713
  .ps-xl-7 {
13714
    padding-left: 6rem !important;
13715
  }
16848 stevensc 13716
 
16825 efrain 13717
  .gap-xl-0 {
13718
    gap: 0 !important;
13719
  }
16848 stevensc 13720
 
16825 efrain 13721
  .gap-xl-1 {
13722
    gap: 0.25rem !important;
13723
  }
16848 stevensc 13724
 
16825 efrain 13725
  .gap-xl-2 {
13726
    gap: 0.5rem !important;
13727
  }
16848 stevensc 13728
 
16825 efrain 13729
  .gap-xl-3 {
13730
    gap: 1rem !important;
13731
  }
16848 stevensc 13732
 
16825 efrain 13733
  .gap-xl-4 {
13734
    gap: 1.5rem !important;
13735
  }
16848 stevensc 13736
 
16825 efrain 13737
  .gap-xl-5 {
13738
    gap: 3rem !important;
13739
  }
16848 stevensc 13740
 
16825 efrain 13741
  .gap-xl-6 {
13742
    gap: 4.5rem !important;
13743
  }
16848 stevensc 13744
 
16825 efrain 13745
  .gap-xl-7 {
13746
    gap: 6rem !important;
13747
  }
16848 stevensc 13748
 
16825 efrain 13749
  .text-xl-start {
13750
    text-align: left !important;
13751
  }
16848 stevensc 13752
 
16825 efrain 13753
  .text-xl-end {
13754
    text-align: right !important;
13755
  }
16848 stevensc 13756
 
16825 efrain 13757
  .text-xl-center {
13758
    text-align: center !important;
13759
  }
13760
}
16848 stevensc 13761
 
16825 efrain 13762
@media (min-width: 1400px) {
13763
  .float-xxl-start {
13764
    float: left !important;
13765
  }
16848 stevensc 13766
 
16825 efrain 13767
  .float-xxl-end {
13768
    float: right !important;
13769
  }
16848 stevensc 13770
 
16825 efrain 13771
  .float-xxl-none {
13772
    float: none !important;
13773
  }
16848 stevensc 13774
 
16825 efrain 13775
  .d-xxl-inline {
13776
    display: inline !important;
13777
  }
16848 stevensc 13778
 
16825 efrain 13779
  .d-xxl-inline-block {
13780
    display: inline-block !important;
13781
  }
16848 stevensc 13782
 
16825 efrain 13783
  .d-xxl-block {
13784
    display: block !important;
13785
  }
16848 stevensc 13786
 
16825 efrain 13787
  .d-xxl-grid {
13788
    display: grid !important;
13789
  }
16848 stevensc 13790
 
16825 efrain 13791
  .d-xxl-table {
13792
    display: table !important;
13793
  }
16848 stevensc 13794
 
16825 efrain 13795
  .d-xxl-table-row {
13796
    display: table-row !important;
13797
  }
16848 stevensc 13798
 
16825 efrain 13799
  .d-xxl-table-cell {
13800
    display: table-cell !important;
13801
  }
16848 stevensc 13802
 
16825 efrain 13803
  .d-xxl-flex {
13804
    display: flex !important;
13805
  }
16848 stevensc 13806
 
16825 efrain 13807
  .d-xxl-inline-flex {
13808
    display: inline-flex !important;
13809
  }
16848 stevensc 13810
 
16825 efrain 13811
  .d-xxl-none {
13812
    display: none !important;
13813
  }
16848 stevensc 13814
 
16825 efrain 13815
  .border-xxl {
13816
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13817
  }
16848 stevensc 13818
 
16825 efrain 13819
  .border-xxl-0 {
13820
    border: 0 !important;
13821
  }
16848 stevensc 13822
 
16825 efrain 13823
  .border-top-xxl {
13824
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13825
  }
16848 stevensc 13826
 
16825 efrain 13827
  .border-top-xxl-0 {
13828
    border-top: 0 !important;
13829
  }
16848 stevensc 13830
 
16825 efrain 13831
  .border-end-xxl {
13832
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13833
  }
16848 stevensc 13834
 
16825 efrain 13835
  .border-end-xxl-0 {
13836
    border-right: 0 !important;
13837
  }
16848 stevensc 13838
 
16825 efrain 13839
  .border-bottom-xxl {
13840
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13841
  }
16848 stevensc 13842
 
16825 efrain 13843
  .border-bottom-xxl-0 {
13844
    border-bottom: 0 !important;
13845
  }
16848 stevensc 13846
 
16825 efrain 13847
  .border-start-xxl {
13848
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13849
  }
16848 stevensc 13850
 
16825 efrain 13851
  .border-start-xxl-0 {
13852
    border-left: 0 !important;
13853
  }
16848 stevensc 13854
 
16825 efrain 13855
  .flex-xxl-fill {
13856
    flex: 1 1 auto !important;
13857
  }
16848 stevensc 13858
 
16825 efrain 13859
  .flex-xxl-row {
13860
    flex-direction: row !important;
13861
  }
16848 stevensc 13862
 
16825 efrain 13863
  .flex-xxl-column {
13864
    flex-direction: column !important;
13865
  }
16848 stevensc 13866
 
16825 efrain 13867
  .flex-xxl-row-reverse {
13868
    flex-direction: row-reverse !important;
13869
  }
16848 stevensc 13870
 
16825 efrain 13871
  .flex-xxl-column-reverse {
13872
    flex-direction: column-reverse !important;
13873
  }
16848 stevensc 13874
 
16825 efrain 13875
  .flex-xxl-grow-0 {
13876
    flex-grow: 0 !important;
13877
  }
16848 stevensc 13878
 
16825 efrain 13879
  .flex-xxl-grow-1 {
13880
    flex-grow: 1 !important;
13881
  }
16848 stevensc 13882
 
16825 efrain 13883
  .flex-xxl-shrink-0 {
13884
    flex-shrink: 0 !important;
13885
  }
16848 stevensc 13886
 
16825 efrain 13887
  .flex-xxl-shrink-1 {
13888
    flex-shrink: 1 !important;
13889
  }
16848 stevensc 13890
 
16825 efrain 13891
  .flex-xxl-wrap {
13892
    flex-wrap: wrap !important;
13893
  }
16848 stevensc 13894
 
16825 efrain 13895
  .flex-xxl-nowrap {
13896
    flex-wrap: nowrap !important;
13897
  }
16848 stevensc 13898
 
16825 efrain 13899
  .flex-xxl-wrap-reverse {
13900
    flex-wrap: wrap-reverse !important;
13901
  }
16848 stevensc 13902
 
16825 efrain 13903
  .justify-content-xxl-start {
13904
    justify-content: flex-start !important;
13905
  }
16848 stevensc 13906
 
16825 efrain 13907
  .justify-content-xxl-end {
13908
    justify-content: flex-end !important;
13909
  }
16848 stevensc 13910
 
16825 efrain 13911
  .justify-content-xxl-center {
13912
    justify-content: center !important;
13913
  }
16848 stevensc 13914
 
16825 efrain 13915
  .justify-content-xxl-between {
13916
    justify-content: space-between !important;
13917
  }
16848 stevensc 13918
 
16825 efrain 13919
  .justify-content-xxl-around {
13920
    justify-content: space-around !important;
13921
  }
16848 stevensc 13922
 
16825 efrain 13923
  .justify-content-xxl-evenly {
13924
    justify-content: space-evenly !important;
13925
  }
16848 stevensc 13926
 
16825 efrain 13927
  .align-items-xxl-start {
13928
    align-items: flex-start !important;
13929
  }
16848 stevensc 13930
 
16825 efrain 13931
  .align-items-xxl-end {
13932
    align-items: flex-end !important;
13933
  }
16848 stevensc 13934
 
16825 efrain 13935
  .align-items-xxl-center {
13936
    align-items: center !important;
13937
  }
16848 stevensc 13938
 
16825 efrain 13939
  .align-items-xxl-baseline {
13940
    align-items: baseline !important;
13941
  }
16848 stevensc 13942
 
16825 efrain 13943
  .align-items-xxl-stretch {
13944
    align-items: stretch !important;
13945
  }
16848 stevensc 13946
 
16825 efrain 13947
  .align-content-xxl-start {
13948
    align-content: flex-start !important;
13949
  }
16848 stevensc 13950
 
16825 efrain 13951
  .align-content-xxl-end {
13952
    align-content: flex-end !important;
13953
  }
16848 stevensc 13954
 
16825 efrain 13955
  .align-content-xxl-center {
13956
    align-content: center !important;
13957
  }
16848 stevensc 13958
 
16825 efrain 13959
  .align-content-xxl-between {
13960
    align-content: space-between !important;
13961
  }
16848 stevensc 13962
 
16825 efrain 13963
  .align-content-xxl-around {
13964
    align-content: space-around !important;
13965
  }
16848 stevensc 13966
 
16825 efrain 13967
  .align-content-xxl-stretch {
13968
    align-content: stretch !important;
13969
  }
16848 stevensc 13970
 
16825 efrain 13971
  .align-self-xxl-auto {
13972
    align-self: auto !important;
13973
  }
16848 stevensc 13974
 
16825 efrain 13975
  .align-self-xxl-start {
13976
    align-self: flex-start !important;
13977
  }
16848 stevensc 13978
 
16825 efrain 13979
  .align-self-xxl-end {
13980
    align-self: flex-end !important;
13981
  }
16848 stevensc 13982
 
16825 efrain 13983
  .align-self-xxl-center {
13984
    align-self: center !important;
13985
  }
16848 stevensc 13986
 
16825 efrain 13987
  .align-self-xxl-baseline {
13988
    align-self: baseline !important;
13989
  }
16848 stevensc 13990
 
16825 efrain 13991
  .align-self-xxl-stretch {
13992
    align-self: stretch !important;
13993
  }
16848 stevensc 13994
 
16825 efrain 13995
  .order-xxl-first {
13996
    order: -1 !important;
13997
  }
16848 stevensc 13998
 
16825 efrain 13999
  .order-xxl-0 {
14000
    order: 0 !important;
14001
  }
16848 stevensc 14002
 
16825 efrain 14003
  .order-xxl-1 {
14004
    order: 1 !important;
14005
  }
16848 stevensc 14006
 
16825 efrain 14007
  .order-xxl-2 {
14008
    order: 2 !important;
14009
  }
16848 stevensc 14010
 
16825 efrain 14011
  .order-xxl-3 {
14012
    order: 3 !important;
14013
  }
16848 stevensc 14014
 
16825 efrain 14015
  .order-xxl-4 {
14016
    order: 4 !important;
14017
  }
16848 stevensc 14018
 
16825 efrain 14019
  .order-xxl-5 {
14020
    order: 5 !important;
14021
  }
16848 stevensc 14022
 
16825 efrain 14023
  .order-xxl-last {
14024
    order: 6 !important;
14025
  }
16848 stevensc 14026
 
16825 efrain 14027
  .m-xxl-0 {
14028
    margin: 0 !important;
14029
  }
16848 stevensc 14030
 
16825 efrain 14031
  .m-xxl-1 {
14032
    margin: 0.25rem !important;
14033
  }
16848 stevensc 14034
 
16825 efrain 14035
  .m-xxl-2 {
14036
    margin: 0.5rem !important;
14037
  }
16848 stevensc 14038
 
16825 efrain 14039
  .m-xxl-3 {
14040
    margin: 1rem !important;
14041
  }
16848 stevensc 14042
 
16825 efrain 14043
  .m-xxl-4 {
14044
    margin: 1.5rem !important;
14045
  }
16848 stevensc 14046
 
16825 efrain 14047
  .m-xxl-5 {
14048
    margin: 3rem !important;
14049
  }
16848 stevensc 14050
 
16825 efrain 14051
  .m-xxl-6 {
14052
    margin: 4.5rem !important;
14053
  }
16848 stevensc 14054
 
16825 efrain 14055
  .m-xxl-7 {
14056
    margin: 6rem !important;
14057
  }
16848 stevensc 14058
 
16825 efrain 14059
  .m-xxl-auto {
14060
    margin: auto !important;
14061
  }
16848 stevensc 14062
 
16825 efrain 14063
  .mx-xxl-0 {
14064
    margin-right: 0 !important;
14065
    margin-left: 0 !important;
14066
  }
16848 stevensc 14067
 
16825 efrain 14068
  .mx-xxl-1 {
14069
    margin-right: 0.25rem !important;
14070
    margin-left: 0.25rem !important;
14071
  }
16848 stevensc 14072
 
16825 efrain 14073
  .mx-xxl-2 {
14074
    margin-right: 0.5rem !important;
14075
    margin-left: 0.5rem !important;
14076
  }
16848 stevensc 14077
 
16825 efrain 14078
  .mx-xxl-3 {
14079
    margin-right: 1rem !important;
14080
    margin-left: 1rem !important;
14081
  }
16848 stevensc 14082
 
16825 efrain 14083
  .mx-xxl-4 {
14084
    margin-right: 1.5rem !important;
14085
    margin-left: 1.5rem !important;
14086
  }
16848 stevensc 14087
 
16825 efrain 14088
  .mx-xxl-5 {
14089
    margin-right: 3rem !important;
14090
    margin-left: 3rem !important;
14091
  }
16848 stevensc 14092
 
16825 efrain 14093
  .mx-xxl-6 {
14094
    margin-right: 4.5rem !important;
14095
    margin-left: 4.5rem !important;
14096
  }
16848 stevensc 14097
 
16825 efrain 14098
  .mx-xxl-7 {
14099
    margin-right: 6rem !important;
14100
    margin-left: 6rem !important;
14101
  }
16848 stevensc 14102
 
16825 efrain 14103
  .mx-xxl-auto {
14104
    margin-right: auto !important;
14105
    margin-left: auto !important;
14106
  }
16848 stevensc 14107
 
16825 efrain 14108
  .my-xxl-0 {
14109
    margin-top: 0 !important;
14110
    margin-bottom: 0 !important;
14111
  }
16848 stevensc 14112
 
16825 efrain 14113
  .my-xxl-1 {
14114
    margin-top: 0.25rem !important;
14115
    margin-bottom: 0.25rem !important;
14116
  }
16848 stevensc 14117
 
16825 efrain 14118
  .my-xxl-2 {
14119
    margin-top: 0.5rem !important;
14120
    margin-bottom: 0.5rem !important;
14121
  }
16848 stevensc 14122
 
16825 efrain 14123
  .my-xxl-3 {
14124
    margin-top: 1rem !important;
14125
    margin-bottom: 1rem !important;
14126
  }
16848 stevensc 14127
 
16825 efrain 14128
  .my-xxl-4 {
14129
    margin-top: 1.5rem !important;
14130
    margin-bottom: 1.5rem !important;
14131
  }
16848 stevensc 14132
 
16825 efrain 14133
  .my-xxl-5 {
14134
    margin-top: 3rem !important;
14135
    margin-bottom: 3rem !important;
14136
  }
16848 stevensc 14137
 
16825 efrain 14138
  .my-xxl-6 {
14139
    margin-top: 4.5rem !important;
14140
    margin-bottom: 4.5rem !important;
14141
  }
16848 stevensc 14142
 
16825 efrain 14143
  .my-xxl-7 {
14144
    margin-top: 6rem !important;
14145
    margin-bottom: 6rem !important;
14146
  }
16848 stevensc 14147
 
16825 efrain 14148
  .my-xxl-auto {
14149
    margin-top: auto !important;
14150
    margin-bottom: auto !important;
14151
  }
16848 stevensc 14152
 
16825 efrain 14153
  .mt-xxl-0 {
14154
    margin-top: 0 !important;
14155
  }
16848 stevensc 14156
 
16825 efrain 14157
  .mt-xxl-1 {
14158
    margin-top: 0.25rem !important;
14159
  }
16848 stevensc 14160
 
16825 efrain 14161
  .mt-xxl-2 {
14162
    margin-top: 0.5rem !important;
14163
  }
16848 stevensc 14164
 
16825 efrain 14165
  .mt-xxl-3 {
14166
    margin-top: 1rem !important;
14167
  }
16848 stevensc 14168
 
16825 efrain 14169
  .mt-xxl-4 {
14170
    margin-top: 1.5rem !important;
14171
  }
16848 stevensc 14172
 
16825 efrain 14173
  .mt-xxl-5 {
14174
    margin-top: 3rem !important;
14175
  }
16848 stevensc 14176
 
16825 efrain 14177
  .mt-xxl-6 {
14178
    margin-top: 4.5rem !important;
14179
  }
16848 stevensc 14180
 
16825 efrain 14181
  .mt-xxl-7 {
14182
    margin-top: 6rem !important;
14183
  }
16848 stevensc 14184
 
16825 efrain 14185
  .mt-xxl-auto {
14186
    margin-top: auto !important;
14187
  }
16848 stevensc 14188
 
16825 efrain 14189
  .me-xxl-0 {
14190
    margin-right: 0 !important;
14191
  }
16848 stevensc 14192
 
16825 efrain 14193
  .me-xxl-1 {
14194
    margin-right: 0.25rem !important;
14195
  }
16848 stevensc 14196
 
16825 efrain 14197
  .me-xxl-2 {
14198
    margin-right: 0.5rem !important;
14199
  }
16848 stevensc 14200
 
16825 efrain 14201
  .me-xxl-3 {
14202
    margin-right: 1rem !important;
14203
  }
16848 stevensc 14204
 
16825 efrain 14205
  .me-xxl-4 {
14206
    margin-right: 1.5rem !important;
14207
  }
16848 stevensc 14208
 
16825 efrain 14209
  .me-xxl-5 {
14210
    margin-right: 3rem !important;
14211
  }
16848 stevensc 14212
 
16825 efrain 14213
  .me-xxl-6 {
14214
    margin-right: 4.5rem !important;
14215
  }
16848 stevensc 14216
 
16825 efrain 14217
  .me-xxl-7 {
14218
    margin-right: 6rem !important;
14219
  }
16848 stevensc 14220
 
16825 efrain 14221
  .me-xxl-auto {
14222
    margin-right: auto !important;
14223
  }
16848 stevensc 14224
 
16825 efrain 14225
  .mb-xxl-0 {
14226
    margin-bottom: 0 !important;
14227
  }
16848 stevensc 14228
 
16825 efrain 14229
  .mb-xxl-1 {
14230
    margin-bottom: 0.25rem !important;
14231
  }
16848 stevensc 14232
 
16825 efrain 14233
  .mb-xxl-2 {
14234
    margin-bottom: 0.5rem !important;
14235
  }
16848 stevensc 14236
 
16825 efrain 14237
  .mb-xxl-3 {
14238
    margin-bottom: 1rem !important;
14239
  }
16848 stevensc 14240
 
16825 efrain 14241
  .mb-xxl-4 {
14242
    margin-bottom: 1.5rem !important;
14243
  }
16848 stevensc 14244
 
16825 efrain 14245
  .mb-xxl-5 {
14246
    margin-bottom: 3rem !important;
14247
  }
16848 stevensc 14248
 
16825 efrain 14249
  .mb-xxl-6 {
14250
    margin-bottom: 4.5rem !important;
14251
  }
16848 stevensc 14252
 
16825 efrain 14253
  .mb-xxl-7 {
14254
    margin-bottom: 6rem !important;
14255
  }
16848 stevensc 14256
 
16825 efrain 14257
  .mb-xxl-auto {
14258
    margin-bottom: auto !important;
14259
  }
16848 stevensc 14260
 
16825 efrain 14261
  .ms-xxl-0 {
14262
    margin-left: 0 !important;
14263
  }
16848 stevensc 14264
 
16825 efrain 14265
  .ms-xxl-1 {
14266
    margin-left: 0.25rem !important;
14267
  }
16848 stevensc 14268
 
16825 efrain 14269
  .ms-xxl-2 {
14270
    margin-left: 0.5rem !important;
14271
  }
16848 stevensc 14272
 
16825 efrain 14273
  .ms-xxl-3 {
14274
    margin-left: 1rem !important;
14275
  }
16848 stevensc 14276
 
16825 efrain 14277
  .ms-xxl-4 {
14278
    margin-left: 1.5rem !important;
14279
  }
16848 stevensc 14280
 
16825 efrain 14281
  .ms-xxl-5 {
14282
    margin-left: 3rem !important;
14283
  }
16848 stevensc 14284
 
16825 efrain 14285
  .ms-xxl-6 {
14286
    margin-left: 4.5rem !important;
14287
  }
16848 stevensc 14288
 
16825 efrain 14289
  .ms-xxl-7 {
14290
    margin-left: 6rem !important;
14291
  }
16848 stevensc 14292
 
16825 efrain 14293
  .ms-xxl-auto {
14294
    margin-left: auto !important;
14295
  }
16848 stevensc 14296
 
16825 efrain 14297
  .m-xxl-n1 {
14298
    margin: -0.25rem !important;
14299
  }
16848 stevensc 14300
 
16825 efrain 14301
  .m-xxl-n2 {
14302
    margin: -0.5rem !important;
14303
  }
16848 stevensc 14304
 
16825 efrain 14305
  .m-xxl-n3 {
14306
    margin: -1rem !important;
14307
  }
16848 stevensc 14308
 
16825 efrain 14309
  .m-xxl-n4 {
14310
    margin: -1.5rem !important;
14311
  }
16848 stevensc 14312
 
16825 efrain 14313
  .m-xxl-n5 {
14314
    margin: -3rem !important;
14315
  }
16848 stevensc 14316
 
16825 efrain 14317
  .m-xxl-n6 {
14318
    margin: -4.5rem !important;
14319
  }
16848 stevensc 14320
 
16825 efrain 14321
  .m-xxl-n7 {
14322
    margin: -6rem !important;
14323
  }
16848 stevensc 14324
 
16825 efrain 14325
  .mx-xxl-n1 {
14326
    margin-right: -0.25rem !important;
14327
    margin-left: -0.25rem !important;
14328
  }
16848 stevensc 14329
 
16825 efrain 14330
  .mx-xxl-n2 {
14331
    margin-right: -0.5rem !important;
14332
    margin-left: -0.5rem !important;
14333
  }
16848 stevensc 14334
 
16825 efrain 14335
  .mx-xxl-n3 {
14336
    margin-right: -1rem !important;
14337
    margin-left: -1rem !important;
14338
  }
16848 stevensc 14339
 
16825 efrain 14340
  .mx-xxl-n4 {
14341
    margin-right: -1.5rem !important;
14342
    margin-left: -1.5rem !important;
14343
  }
16848 stevensc 14344
 
16825 efrain 14345
  .mx-xxl-n5 {
14346
    margin-right: -3rem !important;
14347
    margin-left: -3rem !important;
14348
  }
16848 stevensc 14349
 
16825 efrain 14350
  .mx-xxl-n6 {
14351
    margin-right: -4.5rem !important;
14352
    margin-left: -4.5rem !important;
14353
  }
16848 stevensc 14354
 
16825 efrain 14355
  .mx-xxl-n7 {
14356
    margin-right: -6rem !important;
14357
    margin-left: -6rem !important;
14358
  }
16848 stevensc 14359
 
16825 efrain 14360
  .my-xxl-n1 {
14361
    margin-top: -0.25rem !important;
14362
    margin-bottom: -0.25rem !important;
14363
  }
16848 stevensc 14364
 
16825 efrain 14365
  .my-xxl-n2 {
14366
    margin-top: -0.5rem !important;
14367
    margin-bottom: -0.5rem !important;
14368
  }
16848 stevensc 14369
 
16825 efrain 14370
  .my-xxl-n3 {
14371
    margin-top: -1rem !important;
14372
    margin-bottom: -1rem !important;
14373
  }
16848 stevensc 14374
 
16825 efrain 14375
  .my-xxl-n4 {
14376
    margin-top: -1.5rem !important;
14377
    margin-bottom: -1.5rem !important;
14378
  }
16848 stevensc 14379
 
16825 efrain 14380
  .my-xxl-n5 {
14381
    margin-top: -3rem !important;
14382
    margin-bottom: -3rem !important;
14383
  }
16848 stevensc 14384
 
16825 efrain 14385
  .my-xxl-n6 {
14386
    margin-top: -4.5rem !important;
14387
    margin-bottom: -4.5rem !important;
14388
  }
16848 stevensc 14389
 
16825 efrain 14390
  .my-xxl-n7 {
14391
    margin-top: -6rem !important;
14392
    margin-bottom: -6rem !important;
14393
  }
16848 stevensc 14394
 
16825 efrain 14395
  .mt-xxl-n1 {
14396
    margin-top: -0.25rem !important;
14397
  }
16848 stevensc 14398
 
16825 efrain 14399
  .mt-xxl-n2 {
14400
    margin-top: -0.5rem !important;
14401
  }
16848 stevensc 14402
 
16825 efrain 14403
  .mt-xxl-n3 {
14404
    margin-top: -1rem !important;
14405
  }
16848 stevensc 14406
 
16825 efrain 14407
  .mt-xxl-n4 {
14408
    margin-top: -1.5rem !important;
14409
  }
16848 stevensc 14410
 
16825 efrain 14411
  .mt-xxl-n5 {
14412
    margin-top: -3rem !important;
14413
  }
16848 stevensc 14414
 
16825 efrain 14415
  .mt-xxl-n6 {
14416
    margin-top: -4.5rem !important;
14417
  }
16848 stevensc 14418
 
16825 efrain 14419
  .mt-xxl-n7 {
14420
    margin-top: -6rem !important;
14421
  }
16848 stevensc 14422
 
16825 efrain 14423
  .me-xxl-n1 {
14424
    margin-right: -0.25rem !important;
14425
  }
16848 stevensc 14426
 
16825 efrain 14427
  .me-xxl-n2 {
14428
    margin-right: -0.5rem !important;
14429
  }
16848 stevensc 14430
 
16825 efrain 14431
  .me-xxl-n3 {
14432
    margin-right: -1rem !important;
14433
  }
16848 stevensc 14434
 
16825 efrain 14435
  .me-xxl-n4 {
14436
    margin-right: -1.5rem !important;
14437
  }
16848 stevensc 14438
 
16825 efrain 14439
  .me-xxl-n5 {
14440
    margin-right: -3rem !important;
14441
  }
16848 stevensc 14442
 
16825 efrain 14443
  .me-xxl-n6 {
14444
    margin-right: -4.5rem !important;
14445
  }
16848 stevensc 14446
 
16825 efrain 14447
  .me-xxl-n7 {
14448
    margin-right: -6rem !important;
14449
  }
16848 stevensc 14450
 
16825 efrain 14451
  .mb-xxl-n1 {
14452
    margin-bottom: -0.25rem !important;
14453
  }
16848 stevensc 14454
 
16825 efrain 14455
  .mb-xxl-n2 {
14456
    margin-bottom: -0.5rem !important;
14457
  }
16848 stevensc 14458
 
16825 efrain 14459
  .mb-xxl-n3 {
14460
    margin-bottom: -1rem !important;
14461
  }
16848 stevensc 14462
 
16825 efrain 14463
  .mb-xxl-n4 {
14464
    margin-bottom: -1.5rem !important;
14465
  }
16848 stevensc 14466
 
16825 efrain 14467
  .mb-xxl-n5 {
14468
    margin-bottom: -3rem !important;
14469
  }
16848 stevensc 14470
 
16825 efrain 14471
  .mb-xxl-n6 {
14472
    margin-bottom: -4.5rem !important;
14473
  }
16848 stevensc 14474
 
16825 efrain 14475
  .mb-xxl-n7 {
14476
    margin-bottom: -6rem !important;
14477
  }
16848 stevensc 14478
 
16825 efrain 14479
  .ms-xxl-n1 {
14480
    margin-left: -0.25rem !important;
14481
  }
16848 stevensc 14482
 
16825 efrain 14483
  .ms-xxl-n2 {
14484
    margin-left: -0.5rem !important;
14485
  }
16848 stevensc 14486
 
16825 efrain 14487
  .ms-xxl-n3 {
14488
    margin-left: -1rem !important;
14489
  }
16848 stevensc 14490
 
16825 efrain 14491
  .ms-xxl-n4 {
14492
    margin-left: -1.5rem !important;
14493
  }
16848 stevensc 14494
 
16825 efrain 14495
  .ms-xxl-n5 {
14496
    margin-left: -3rem !important;
14497
  }
16848 stevensc 14498
 
16825 efrain 14499
  .ms-xxl-n6 {
14500
    margin-left: -4.5rem !important;
14501
  }
16848 stevensc 14502
 
16825 efrain 14503
  .ms-xxl-n7 {
14504
    margin-left: -6rem !important;
14505
  }
16848 stevensc 14506
 
16825 efrain 14507
  .p-xxl-0 {
14508
    padding: 0 !important;
14509
  }
16848 stevensc 14510
 
16825 efrain 14511
  .p-xxl-1 {
14512
    padding: 0.25rem !important;
14513
  }
16848 stevensc 14514
 
16825 efrain 14515
  .p-xxl-2 {
14516
    padding: 0.5rem !important;
14517
  }
16848 stevensc 14518
 
16825 efrain 14519
  .p-xxl-3 {
14520
    padding: 1rem !important;
14521
  }
16848 stevensc 14522
 
16825 efrain 14523
  .p-xxl-4 {
14524
    padding: 1.5rem !important;
14525
  }
16848 stevensc 14526
 
16825 efrain 14527
  .p-xxl-5 {
14528
    padding: 3rem !important;
14529
  }
16848 stevensc 14530
 
16825 efrain 14531
  .p-xxl-6 {
14532
    padding: 4.5rem !important;
14533
  }
16848 stevensc 14534
 
16825 efrain 14535
  .p-xxl-7 {
14536
    padding: 6rem !important;
14537
  }
16848 stevensc 14538
 
16825 efrain 14539
  .px-xxl-0 {
14540
    padding-right: 0 !important;
14541
    padding-left: 0 !important;
14542
  }
16848 stevensc 14543
 
16825 efrain 14544
  .px-xxl-1 {
14545
    padding-right: 0.25rem !important;
14546
    padding-left: 0.25rem !important;
14547
  }
16848 stevensc 14548
 
16825 efrain 14549
  .px-xxl-2 {
14550
    padding-right: 0.5rem !important;
14551
    padding-left: 0.5rem !important;
14552
  }
16848 stevensc 14553
 
16825 efrain 14554
  .px-xxl-3 {
14555
    padding-right: 1rem !important;
14556
    padding-left: 1rem !important;
14557
  }
16848 stevensc 14558
 
16825 efrain 14559
  .px-xxl-4 {
14560
    padding-right: 1.5rem !important;
14561
    padding-left: 1.5rem !important;
14562
  }
16848 stevensc 14563
 
16825 efrain 14564
  .px-xxl-5 {
14565
    padding-right: 3rem !important;
14566
    padding-left: 3rem !important;
14567
  }
16848 stevensc 14568
 
16825 efrain 14569
  .px-xxl-6 {
14570
    padding-right: 4.5rem !important;
14571
    padding-left: 4.5rem !important;
14572
  }
16848 stevensc 14573
 
16825 efrain 14574
  .px-xxl-7 {
14575
    padding-right: 6rem !important;
14576
    padding-left: 6rem !important;
14577
  }
16848 stevensc 14578
 
16825 efrain 14579
  .py-xxl-0 {
14580
    padding-top: 0 !important;
14581
    padding-bottom: 0 !important;
14582
  }
16848 stevensc 14583
 
16825 efrain 14584
  .py-xxl-1 {
14585
    padding-top: 0.25rem !important;
14586
    padding-bottom: 0.25rem !important;
14587
  }
16848 stevensc 14588
 
16825 efrain 14589
  .py-xxl-2 {
14590
    padding-top: 0.5rem !important;
14591
    padding-bottom: 0.5rem !important;
14592
  }
16848 stevensc 14593
 
16825 efrain 14594
  .py-xxl-3 {
14595
    padding-top: 1rem !important;
14596
    padding-bottom: 1rem !important;
14597
  }
16848 stevensc 14598
 
16825 efrain 14599
  .py-xxl-4 {
14600
    padding-top: 1.5rem !important;
14601
    padding-bottom: 1.5rem !important;
14602
  }
16848 stevensc 14603
 
16825 efrain 14604
  .py-xxl-5 {
14605
    padding-top: 3rem !important;
14606
    padding-bottom: 3rem !important;
14607
  }
16848 stevensc 14608
 
16825 efrain 14609
  .py-xxl-6 {
14610
    padding-top: 4.5rem !important;
14611
    padding-bottom: 4.5rem !important;
14612
  }
16848 stevensc 14613
 
16825 efrain 14614
  .py-xxl-7 {
14615
    padding-top: 6rem !important;
14616
    padding-bottom: 6rem !important;
14617
  }
16848 stevensc 14618
 
16825 efrain 14619
  .pt-xxl-0 {
14620
    padding-top: 0 !important;
14621
  }
16848 stevensc 14622
 
16825 efrain 14623
  .pt-xxl-1 {
14624
    padding-top: 0.25rem !important;
14625
  }
16848 stevensc 14626
 
16825 efrain 14627
  .pt-xxl-2 {
14628
    padding-top: 0.5rem !important;
14629
  }
16848 stevensc 14630
 
16825 efrain 14631
  .pt-xxl-3 {
14632
    padding-top: 1rem !important;
14633
  }
16848 stevensc 14634
 
16825 efrain 14635
  .pt-xxl-4 {
14636
    padding-top: 1.5rem !important;
14637
  }
16848 stevensc 14638
 
16825 efrain 14639
  .pt-xxl-5 {
14640
    padding-top: 3rem !important;
14641
  }
16848 stevensc 14642
 
16825 efrain 14643
  .pt-xxl-6 {
14644
    padding-top: 4.5rem !important;
14645
  }
16848 stevensc 14646
 
16825 efrain 14647
  .pt-xxl-7 {
14648
    padding-top: 6rem !important;
14649
  }
16848 stevensc 14650
 
16825 efrain 14651
  .pe-xxl-0 {
14652
    padding-right: 0 !important;
14653
  }
16848 stevensc 14654
 
16825 efrain 14655
  .pe-xxl-1 {
14656
    padding-right: 0.25rem !important;
14657
  }
16848 stevensc 14658
 
16825 efrain 14659
  .pe-xxl-2 {
14660
    padding-right: 0.5rem !important;
14661
  }
16848 stevensc 14662
 
16825 efrain 14663
  .pe-xxl-3 {
14664
    padding-right: 1rem !important;
14665
  }
16848 stevensc 14666
 
16825 efrain 14667
  .pe-xxl-4 {
14668
    padding-right: 1.5rem !important;
14669
  }
16848 stevensc 14670
 
16825 efrain 14671
  .pe-xxl-5 {
14672
    padding-right: 3rem !important;
14673
  }
16848 stevensc 14674
 
16825 efrain 14675
  .pe-xxl-6 {
14676
    padding-right: 4.5rem !important;
14677
  }
16848 stevensc 14678
 
16825 efrain 14679
  .pe-xxl-7 {
14680
    padding-right: 6rem !important;
14681
  }
16848 stevensc 14682
 
16825 efrain 14683
  .pb-xxl-0 {
14684
    padding-bottom: 0 !important;
14685
  }
16848 stevensc 14686
 
16825 efrain 14687
  .pb-xxl-1 {
14688
    padding-bottom: 0.25rem !important;
14689
  }
16848 stevensc 14690
 
16825 efrain 14691
  .pb-xxl-2 {
14692
    padding-bottom: 0.5rem !important;
14693
  }
16848 stevensc 14694
 
16825 efrain 14695
  .pb-xxl-3 {
14696
    padding-bottom: 1rem !important;
14697
  }
16848 stevensc 14698
 
16825 efrain 14699
  .pb-xxl-4 {
14700
    padding-bottom: 1.5rem !important;
14701
  }
16848 stevensc 14702
 
16825 efrain 14703
  .pb-xxl-5 {
14704
    padding-bottom: 3rem !important;
14705
  }
16848 stevensc 14706
 
16825 efrain 14707
  .pb-xxl-6 {
14708
    padding-bottom: 4.5rem !important;
14709
  }
16848 stevensc 14710
 
16825 efrain 14711
  .pb-xxl-7 {
14712
    padding-bottom: 6rem !important;
14713
  }
16848 stevensc 14714
 
16825 efrain 14715
  .ps-xxl-0 {
14716
    padding-left: 0 !important;
14717
  }
16848 stevensc 14718
 
16825 efrain 14719
  .ps-xxl-1 {
14720
    padding-left: 0.25rem !important;
14721
  }
16848 stevensc 14722
 
16825 efrain 14723
  .ps-xxl-2 {
14724
    padding-left: 0.5rem !important;
14725
  }
16848 stevensc 14726
 
16825 efrain 14727
  .ps-xxl-3 {
14728
    padding-left: 1rem !important;
14729
  }
16848 stevensc 14730
 
16825 efrain 14731
  .ps-xxl-4 {
14732
    padding-left: 1.5rem !important;
14733
  }
16848 stevensc 14734
 
16825 efrain 14735
  .ps-xxl-5 {
14736
    padding-left: 3rem !important;
14737
  }
16848 stevensc 14738
 
16825 efrain 14739
  .ps-xxl-6 {
14740
    padding-left: 4.5rem !important;
14741
  }
16848 stevensc 14742
 
16825 efrain 14743
  .ps-xxl-7 {
14744
    padding-left: 6rem !important;
14745
  }
16848 stevensc 14746
 
16825 efrain 14747
  .gap-xxl-0 {
14748
    gap: 0 !important;
14749
  }
16848 stevensc 14750
 
16825 efrain 14751
  .gap-xxl-1 {
14752
    gap: 0.25rem !important;
14753
  }
16848 stevensc 14754
 
16825 efrain 14755
  .gap-xxl-2 {
14756
    gap: 0.5rem !important;
14757
  }
16848 stevensc 14758
 
16825 efrain 14759
  .gap-xxl-3 {
14760
    gap: 1rem !important;
14761
  }
16848 stevensc 14762
 
16825 efrain 14763
  .gap-xxl-4 {
14764
    gap: 1.5rem !important;
14765
  }
16848 stevensc 14766
 
16825 efrain 14767
  .gap-xxl-5 {
14768
    gap: 3rem !important;
14769
  }
16848 stevensc 14770
 
16825 efrain 14771
  .gap-xxl-6 {
14772
    gap: 4.5rem !important;
14773
  }
16848 stevensc 14774
 
16825 efrain 14775
  .gap-xxl-7 {
14776
    gap: 6rem !important;
14777
  }
16848 stevensc 14778
 
16825 efrain 14779
  .text-xxl-start {
14780
    text-align: left !important;
14781
  }
16848 stevensc 14782
 
16825 efrain 14783
  .text-xxl-end {
14784
    text-align: right !important;
14785
  }
16848 stevensc 14786
 
16825 efrain 14787
  .text-xxl-center {
14788
    text-align: center !important;
14789
  }
14790
}
16848 stevensc 14791
 
16825 efrain 14792
@media (min-width: 1200px) {
14793
  .fs-1 {
14794
    font-size: 2.5rem !important;
14795
  }
16848 stevensc 14796
 
16825 efrain 14797
  .fs-2 {
14798
    font-size: 2rem !important;
14799
  }
16848 stevensc 14800
 
16825 efrain 14801
  .fs-3 {
14802
    font-size: 1.5rem !important;
14803
  }
14804
}
16848 stevensc 14805
 
16825 efrain 14806
@media print {
14807
  .d-print-inline {
14808
    display: inline !important;
14809
  }
16848 stevensc 14810
 
16825 efrain 14811
  .d-print-inline-block {
14812
    display: inline-block !important;
14813
  }
16848 stevensc 14814
 
16825 efrain 14815
  .d-print-block {
14816
    display: block !important;
14817
  }
16848 stevensc 14818
 
16825 efrain 14819
  .d-print-grid {
14820
    display: grid !important;
14821
  }
16848 stevensc 14822
 
16825 efrain 14823
  .d-print-table {
14824
    display: table !important;
14825
  }
16848 stevensc 14826
 
16825 efrain 14827
  .d-print-table-row {
14828
    display: table-row !important;
14829
  }
16848 stevensc 14830
 
16825 efrain 14831
  .d-print-table-cell {
14832
    display: table-cell !important;
14833
  }
16848 stevensc 14834
 
16825 efrain 14835
  .d-print-flex {
14836
    display: flex !important;
14837
  }
16848 stevensc 14838
 
16825 efrain 14839
  .d-print-inline-flex {
14840
    display: inline-flex !important;
14841
  }
16848 stevensc 14842
 
16825 efrain 14843
  .d-print-none {
14844
    display: none !important;
14845
  }
14846
}
16848 stevensc 14847
 
16825 efrain 14848
@keyframes dropdownAnimation {
14849
  from {
14850
    opacity: 0;
14851
    transform: translate3d(0, 20px, 0);
14852
  }
16848 stevensc 14853
 
16825 efrain 14854
  to {
14855
    opacity: 1;
14856
    transform: none;
14857
    transform: translate3d(0, 0px, 0);
14858
  }
14859
}
16848 stevensc 14860
 
14861
.dropdownAnimation,
14862
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14863
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14864
  -webkit-animation-name: dropdownAnimation;
14865
  animation-name: dropdownAnimation;
14866
  -webkit-animation-duration: 0.2s;
14867
  animation-duration: 0.2s;
14868
  -webkit-animation-fill-mode: both;
14869
  animation-fill-mode: both;
14870
}
14871
 
14872
@keyframes fadeOut {
14873
  from {
14874
    opacity: 1;
14875
  }
16848 stevensc 14876
 
16825 efrain 14877
  to {
14878
    opacity: 0;
14879
  }
14880
}
16848 stevensc 14881
 
16825 efrain 14882
.fadeOut {
14883
  animation-name: fadeOUt;
14884
}
14885
 
14886
@keyframes fadeInUp {
14887
  from {
14888
    opacity: 0;
14889
    transform: translate3d(0, 100%, 0);
14890
  }
16848 stevensc 14891
 
16825 efrain 14892
  to {
14893
    opacity: 1;
14894
    transform: none;
14895
  }
14896
}
16848 stevensc 14897
 
16825 efrain 14898
.fadeInUp {
14899
  animation-name: fadeInUp;
14900
}
14901
 
16848 stevensc 14902
.infinite-spin,
14903
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14904
  animation-name: spin;
14905
  animation-duration: 3s;
14906
  animation-iteration-count: infinite;
14907
  animation-timing-function: linear;
14908
}
16848 stevensc 14909
 
16825 efrain 14910
@keyframes spin {
14911
  from {
14912
    transform: rotate(0deg);
14913
  }
16848 stevensc 14914
 
16825 efrain 14915
  to {
14916
    transform: rotate(360deg);
14917
  }
14918
}
14919
 
16848 stevensc 14920
.pulse,
14921
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14922
  animation-name: pulse;
14923
  animation-duration: 0.9s;
14924
  animation-iteration-count: infinite;
14925
  animation-timing-function: ease-out;
14926
}
16848 stevensc 14927
 
16825 efrain 14928
@keyframes pulse {
14929
  0% {
14930
    opacity: 1;
14931
    width: 7px;
14932
    height: 7px;
14933
    left: 0;
14934
    top: 0;
14935
  }
16848 stevensc 14936
 
16825 efrain 14937
  95% {
14938
    opacity: 0.1;
14939
    left: -10.5px;
14940
    top: -10.5px;
14941
    width: 28px;
14942
    height: 28px;
14943
  }
16848 stevensc 14944
 
16825 efrain 14945
  100% {
14946
    opacity: 0;
14947
    width: 7px;
14948
    height: 7px;
14949
    left: 0;
14950
    top: 0;
14951
  }
14952
}
14953
 
14954
.wd-5 {
14955
  width: 5px;
14956
}
14957
 
14958
.wd-5p {
14959
  width: 5%;
14960
}
14961
 
14962
.mx-wd-5p {
14963
  max-width: 5%;
14964
}
14965
 
14966
.mn-wd-5p {
14967
  min-width: 5%;
14968
}
14969
 
14970
.wd-5-f {
14971
  width: 5px !important;
14972
}
14973
 
14974
.wd-5p-f {
14975
  width: 5% !important;
14976
}
14977
 
14978
.mx-wd-5p-f {
14979
  max-width: 5% !important;
14980
}
14981
 
14982
.mn-wd-5p-f {
14983
  min-width: 5% !important;
14984
}
14985
 
14986
.wd-10 {
14987
  width: 10px;
14988
}
14989
 
14990
.wd-10p {
14991
  width: 10%;
14992
}
14993
 
14994
.mx-wd-10p {
14995
  max-width: 10%;
14996
}
14997
 
14998
.mn-wd-10p {
14999
  min-width: 10%;
15000
}
15001
 
15002
.wd-10-f {
15003
  width: 10px !important;
15004
}
15005
 
15006
.wd-10p-f {
15007
  width: 10% !important;
15008
}
15009
 
15010
.mx-wd-10p-f {
15011
  max-width: 10% !important;
15012
}
15013
 
15014
.mn-wd-10p-f {
15015
  min-width: 10% !important;
15016
}
15017
 
15018
.wd-15 {
15019
  width: 15px;
15020
}
15021
 
15022
.wd-15p {
15023
  width: 15%;
15024
}
15025
 
15026
.mx-wd-15p {
15027
  max-width: 15%;
15028
}
15029
 
15030
.mn-wd-15p {
15031
  min-width: 15%;
15032
}
15033
 
15034
.wd-15-f {
15035
  width: 15px !important;
15036
}
15037
 
15038
.wd-15p-f {
15039
  width: 15% !important;
15040
}
15041
 
15042
.mx-wd-15p-f {
15043
  max-width: 15% !important;
15044
}
15045
 
15046
.mn-wd-15p-f {
15047
  min-width: 15% !important;
15048
}
15049
 
15050
.wd-20 {
15051
  width: 20px;
15052
}
15053
 
15054
.wd-20p {
15055
  width: 20%;
15056
}
15057
 
15058
.mx-wd-20p {
15059
  max-width: 20%;
15060
}
15061
 
15062
.mn-wd-20p {
15063
  min-width: 20%;
15064
}
15065
 
15066
.wd-20-f {
15067
  width: 20px !important;
15068
}
15069
 
15070
.wd-20p-f {
15071
  width: 20% !important;
15072
}
15073
 
15074
.mx-wd-20p-f {
15075
  max-width: 20% !important;
15076
}
15077
 
15078
.mn-wd-20p-f {
15079
  min-width: 20% !important;
15080
}
15081
 
15082
.wd-25 {
15083
  width: 25px;
15084
}
15085
 
15086
.wd-25p {
15087
  width: 25%;
15088
}
15089
 
15090
.mx-wd-25p {
15091
  max-width: 25%;
15092
}
15093
 
15094
.mn-wd-25p {
15095
  min-width: 25%;
15096
}
15097
 
15098
.wd-25-f {
15099
  width: 25px !important;
15100
}
15101
 
15102
.wd-25p-f {
15103
  width: 25% !important;
15104
}
15105
 
15106
.mx-wd-25p-f {
15107
  max-width: 25% !important;
15108
}
15109
 
15110
.mn-wd-25p-f {
15111
  min-width: 25% !important;
15112
}
15113
 
15114
.wd-30 {
15115
  width: 30px;
15116
}
15117
 
15118
.wd-30p {
15119
  width: 30%;
15120
}
15121
 
15122
.mx-wd-30p {
15123
  max-width: 30%;
15124
}
15125
 
15126
.mn-wd-30p {
15127
  min-width: 30%;
15128
}
15129
 
15130
.wd-30-f {
15131
  width: 30px !important;
15132
}
15133
 
15134
.wd-30p-f {
15135
  width: 30% !important;
15136
}
15137
 
15138
.mx-wd-30p-f {
15139
  max-width: 30% !important;
15140
}
15141
 
15142
.mn-wd-30p-f {
15143
  min-width: 30% !important;
15144
}
15145
 
15146
.wd-35 {
15147
  width: 35px;
15148
}
15149
 
15150
.wd-35p {
15151
  width: 35%;
15152
}
15153
 
15154
.mx-wd-35p {
15155
  max-width: 35%;
15156
}
15157
 
15158
.mn-wd-35p {
15159
  min-width: 35%;
15160
}
15161
 
15162
.wd-35-f {
15163
  width: 35px !important;
15164
}
15165
 
15166
.wd-35p-f {
15167
  width: 35% !important;
15168
}
15169
 
15170
.mx-wd-35p-f {
15171
  max-width: 35% !important;
15172
}
15173
 
15174
.mn-wd-35p-f {
15175
  min-width: 35% !important;
15176
}
15177
 
15178
.wd-40 {
15179
  width: 40px;
15180
}
15181
 
15182
.wd-40p {
15183
  width: 40%;
15184
}
15185
 
15186
.mx-wd-40p {
15187
  max-width: 40%;
15188
}
15189
 
15190
.mn-wd-40p {
15191
  min-width: 40%;
15192
}
15193
 
15194
.wd-40-f {
15195
  width: 40px !important;
15196
}
15197
 
15198
.wd-40p-f {
15199
  width: 40% !important;
15200
}
15201
 
15202
.mx-wd-40p-f {
15203
  max-width: 40% !important;
15204
}
15205
 
15206
.mn-wd-40p-f {
15207
  min-width: 40% !important;
15208
}
15209
 
15210
.wd-45 {
15211
  width: 45px;
15212
}
15213
 
15214
.wd-45p {
15215
  width: 45%;
15216
}
15217
 
15218
.mx-wd-45p {
15219
  max-width: 45%;
15220
}
15221
 
15222
.mn-wd-45p {
15223
  min-width: 45%;
15224
}
15225
 
15226
.wd-45-f {
15227
  width: 45px !important;
15228
}
15229
 
15230
.wd-45p-f {
15231
  width: 45% !important;
15232
}
15233
 
15234
.mx-wd-45p-f {
15235
  max-width: 45% !important;
15236
}
15237
 
15238
.mn-wd-45p-f {
15239
  min-width: 45% !important;
15240
}
15241
 
15242
.wd-50 {
15243
  width: 50px;
15244
}
15245
 
15246
.wd-50p {
15247
  width: 50%;
15248
}
15249
 
15250
.mx-wd-50p {
15251
  max-width: 50%;
15252
}
15253
 
15254
.mn-wd-50p {
15255
  min-width: 50%;
15256
}
15257
 
15258
.wd-50-f {
15259
  width: 50px !important;
15260
}
15261
 
15262
.wd-50p-f {
15263
  width: 50% !important;
15264
}
15265
 
15266
.mx-wd-50p-f {
15267
  max-width: 50% !important;
15268
}
15269
 
15270
.mn-wd-50p-f {
15271
  min-width: 50% !important;
15272
}
15273
 
15274
.wd-55 {
15275
  width: 55px;
15276
}
15277
 
15278
.wd-55p {
15279
  width: 55%;
15280
}
15281
 
15282
.mx-wd-55p {
15283
  max-width: 55%;
15284
}
15285
 
15286
.mn-wd-55p {
15287
  min-width: 55%;
15288
}
15289
 
15290
.wd-55-f {
15291
  width: 55px !important;
15292
}
15293
 
15294
.wd-55p-f {
15295
  width: 55% !important;
15296
}
15297
 
15298
.mx-wd-55p-f {
15299
  max-width: 55% !important;
15300
}
15301
 
15302
.mn-wd-55p-f {
15303
  min-width: 55% !important;
15304
}
15305
 
15306
.wd-60 {
15307
  width: 60px;
15308
}
15309
 
15310
.wd-60p {
15311
  width: 60%;
15312
}
15313
 
15314
.mx-wd-60p {
15315
  max-width: 60%;
15316
}
15317
 
15318
.mn-wd-60p {
15319
  min-width: 60%;
15320
}
15321
 
15322
.wd-60-f {
15323
  width: 60px !important;
15324
}
15325
 
15326
.wd-60p-f {
15327
  width: 60% !important;
15328
}
15329
 
15330
.mx-wd-60p-f {
15331
  max-width: 60% !important;
15332
}
15333
 
15334
.mn-wd-60p-f {
15335
  min-width: 60% !important;
15336
}
15337
 
15338
.wd-65 {
15339
  width: 65px;
15340
}
15341
 
15342
.wd-65p {
15343
  width: 65%;
15344
}
15345
 
15346
.mx-wd-65p {
15347
  max-width: 65%;
15348
}
15349
 
15350
.mn-wd-65p {
15351
  min-width: 65%;
15352
}
15353
 
15354
.wd-65-f {
15355
  width: 65px !important;
15356
}
15357
 
15358
.wd-65p-f {
15359
  width: 65% !important;
15360
}
15361
 
15362
.mx-wd-65p-f {
15363
  max-width: 65% !important;
15364
}
15365
 
15366
.mn-wd-65p-f {
15367
  min-width: 65% !important;
15368
}
15369
 
15370
.wd-70 {
15371
  width: 70px;
15372
}
15373
 
15374
.wd-70p {
15375
  width: 70%;
15376
}
15377
 
15378
.mx-wd-70p {
15379
  max-width: 70%;
15380
}
15381
 
15382
.mn-wd-70p {
15383
  min-width: 70%;
15384
}
15385
 
15386
.wd-70-f {
15387
  width: 70px !important;
15388
}
15389
 
15390
.wd-70p-f {
15391
  width: 70% !important;
15392
}
15393
 
15394
.mx-wd-70p-f {
15395
  max-width: 70% !important;
15396
}
15397
 
15398
.mn-wd-70p-f {
15399
  min-width: 70% !important;
15400
}
15401
 
15402
.wd-75 {
15403
  width: 75px;
15404
}
15405
 
15406
.wd-75p {
15407
  width: 75%;
15408
}
15409
 
15410
.mx-wd-75p {
15411
  max-width: 75%;
15412
}
15413
 
15414
.mn-wd-75p {
15415
  min-width: 75%;
15416
}
15417
 
15418
.wd-75-f {
15419
  width: 75px !important;
15420
}
15421
 
15422
.wd-75p-f {
15423
  width: 75% !important;
15424
}
15425
 
15426
.mx-wd-75p-f {
15427
  max-width: 75% !important;
15428
}
15429
 
15430
.mn-wd-75p-f {
15431
  min-width: 75% !important;
15432
}
15433
 
15434
.wd-80 {
15435
  width: 80px;
15436
}
15437
 
15438
.wd-80p {
15439
  width: 80%;
15440
}
15441
 
15442
.mx-wd-80p {
15443
  max-width: 80%;
15444
}
15445
 
15446
.mn-wd-80p {
15447
  min-width: 80%;
15448
}
15449
 
15450
.wd-80-f {
15451
  width: 80px !important;
15452
}
15453
 
15454
.wd-80p-f {
15455
  width: 80% !important;
15456
}
15457
 
15458
.mx-wd-80p-f {
15459
  max-width: 80% !important;
15460
}
15461
 
15462
.mn-wd-80p-f {
15463
  min-width: 80% !important;
15464
}
15465
 
15466
.wd-85 {
15467
  width: 85px;
15468
}
15469
 
15470
.wd-85p {
15471
  width: 85%;
15472
}
15473
 
15474
.mx-wd-85p {
15475
  max-width: 85%;
15476
}
15477
 
15478
.mn-wd-85p {
15479
  min-width: 85%;
15480
}
15481
 
15482
.wd-85-f {
15483
  width: 85px !important;
15484
}
15485
 
15486
.wd-85p-f {
15487
  width: 85% !important;
15488
}
15489
 
15490
.mx-wd-85p-f {
15491
  max-width: 85% !important;
15492
}
15493
 
15494
.mn-wd-85p-f {
15495
  min-width: 85% !important;
15496
}
15497
 
15498
.wd-90 {
15499
  width: 90px;
15500
}
15501
 
15502
.wd-90p {
15503
  width: 90%;
15504
}
15505
 
15506
.mx-wd-90p {
15507
  max-width: 90%;
15508
}
15509
 
15510
.mn-wd-90p {
15511
  min-width: 90%;
15512
}
15513
 
15514
.wd-90-f {
15515
  width: 90px !important;
15516
}
15517
 
15518
.wd-90p-f {
15519
  width: 90% !important;
15520
}
15521
 
15522
.mx-wd-90p-f {
15523
  max-width: 90% !important;
15524
}
15525
 
15526
.mn-wd-90p-f {
15527
  min-width: 90% !important;
15528
}
15529
 
15530
.wd-95 {
15531
  width: 95px;
15532
}
15533
 
15534
.wd-95p {
15535
  width: 95%;
15536
}
15537
 
15538
.mx-wd-95p {
15539
  max-width: 95%;
15540
}
15541
 
15542
.mn-wd-95p {
15543
  min-width: 95%;
15544
}
15545
 
15546
.wd-95-f {
15547
  width: 95px !important;
15548
}
15549
 
15550
.wd-95p-f {
15551
  width: 95% !important;
15552
}
15553
 
15554
.mx-wd-95p-f {
15555
  max-width: 95% !important;
15556
}
15557
 
15558
.mn-wd-95p-f {
15559
  min-width: 95% !important;
15560
}
15561
 
15562
.wd-100 {
15563
  width: 100px;
15564
}
15565
 
15566
.wd-100p {
15567
  width: 100%;
15568
}
15569
 
15570
.mx-wd-100p {
15571
  max-width: 100%;
15572
}
15573
 
15574
.mn-wd-100p {
15575
  min-width: 100%;
15576
}
15577
 
15578
.wd-100-f {
15579
  width: 100px !important;
15580
}
15581
 
15582
.wd-100p-f {
15583
  width: 100% !important;
15584
}
15585
 
15586
.mx-wd-100p-f {
15587
  max-width: 100% !important;
15588
}
15589
 
15590
.mn-wd-100p-f {
15591
  min-width: 100% !important;
15592
}
15593
 
15594
.wd-150 {
15595
  width: 150px;
15596
}
15597
 
15598
.wd-150-f {
15599
  width: 150px !important;
15600
}
15601
 
15602
.wd-200 {
15603
  width: 200px;
15604
}
15605
 
15606
.wd-200-f {
15607
  width: 200px !important;
15608
}
15609
 
15610
.wd-250 {
15611
  width: 250px;
15612
}
15613
 
15614
.wd-250-f {
15615
  width: 250px !important;
15616
}
15617
 
15618
.wd-300 {
15619
  width: 300px;
15620
}
15621
 
15622
.wd-300-f {
15623
  width: 300px !important;
15624
}
15625
 
15626
.wd-350 {
15627
  width: 350px;
15628
}
15629
 
15630
.wd-350-f {
15631
  width: 350px !important;
15632
}
15633
 
15634
.wd-400 {
15635
  width: 400px;
15636
}
15637
 
15638
.wd-400-f {
15639
  width: 400px !important;
15640
}
15641
 
15642
.wd-450 {
15643
  width: 450px;
15644
}
15645
 
15646
.wd-450-f {
15647
  width: 450px !important;
15648
}
15649
 
15650
.wd-500 {
15651
  width: 500px;
15652
}
15653
 
15654
.wd-500-f {
15655
  width: 500px !important;
15656
}
15657
 
15658
.wd-550 {
15659
  width: 550px;
15660
}
15661
 
15662
.wd-550-f {
15663
  width: 550px !important;
15664
}
15665
 
15666
.wd-600 {
15667
  width: 600px;
15668
}
15669
 
15670
.wd-600-f {
15671
  width: 600px !important;
15672
}
15673
 
15674
.wd-650 {
15675
  width: 650px;
15676
}
15677
 
15678
.wd-650-f {
15679
  width: 650px !important;
15680
}
15681
 
15682
.wd-700 {
15683
  width: 700px;
15684
}
15685
 
15686
.wd-700-f {
15687
  width: 700px !important;
15688
}
15689
 
15690
.wd-750 {
15691
  width: 750px;
15692
}
15693
 
15694
.wd-750-f {
15695
  width: 750px !important;
15696
}
15697
 
15698
.wd-800 {
15699
  width: 800px;
15700
}
15701
 
15702
.wd-800-f {
15703
  width: 800px !important;
15704
}
15705
 
15706
.wd-850 {
15707
  width: 850px;
15708
}
15709
 
15710
.wd-850-f {
15711
  width: 850px !important;
15712
}
15713
 
15714
.wd-900 {
15715
  width: 900px;
15716
}
15717
 
15718
.wd-900-f {
15719
  width: 900px !important;
15720
}
15721
 
15722
.wd-950 {
15723
  width: 950px;
15724
}
15725
 
15726
.wd-950-f {
15727
  width: 950px !important;
15728
}
15729
 
15730
.wd-1000 {
15731
  width: 1000px;
15732
}
15733
 
15734
.wd-1000-f {
15735
  width: 1000px !important;
15736
}
15737
 
15738
@media (min-width: 480px) {
15739
  .wd-xs-5 {
15740
    width: 5px;
15741
  }
16848 stevensc 15742
 
16825 efrain 15743
  .wd-xs-5p {
15744
    width: 5%;
15745
  }
16848 stevensc 15746
 
16825 efrain 15747
  .mx-wd-xs-5p {
15748
    max-width: 5%;
15749
  }
16848 stevensc 15750
 
16825 efrain 15751
  .mn-wd-xs-5p {
15752
    min-width: 5%;
15753
  }
16848 stevensc 15754
 
16825 efrain 15755
  .wd-xs-5-f {
15756
    width: 5px !important;
15757
  }
16848 stevensc 15758
 
16825 efrain 15759
  .wd-xs-5p-f {
15760
    width: 5% !important;
15761
  }
16848 stevensc 15762
 
16825 efrain 15763
  .mx-wd-xs-5p-f {
15764
    max-width: 5% !important;
15765
  }
16848 stevensc 15766
 
16825 efrain 15767
  .mn-wd-xs-5p-f {
15768
    min-width: 5% !important;
15769
  }
16848 stevensc 15770
 
16825 efrain 15771
  .wd-xs-10 {
15772
    width: 10px;
15773
  }
16848 stevensc 15774
 
16825 efrain 15775
  .wd-xs-10p {
15776
    width: 10%;
15777
  }
16848 stevensc 15778
 
16825 efrain 15779
  .mx-wd-xs-10p {
15780
    max-width: 10%;
15781
  }
16848 stevensc 15782
 
16825 efrain 15783
  .mn-wd-xs-10p {
15784
    min-width: 10%;
15785
  }
16848 stevensc 15786
 
16825 efrain 15787
  .wd-xs-10-f {
15788
    width: 10px !important;
15789
  }
16848 stevensc 15790
 
16825 efrain 15791
  .wd-xs-10p-f {
15792
    width: 10% !important;
15793
  }
16848 stevensc 15794
 
16825 efrain 15795
  .mx-wd-xs-10p-f {
15796
    max-width: 10% !important;
15797
  }
16848 stevensc 15798
 
16825 efrain 15799
  .mn-wd-xs-10p-f {
15800
    min-width: 10% !important;
15801
  }
16848 stevensc 15802
 
16825 efrain 15803
  .wd-xs-15 {
15804
    width: 15px;
15805
  }
16848 stevensc 15806
 
16825 efrain 15807
  .wd-xs-15p {
15808
    width: 15%;
15809
  }
16848 stevensc 15810
 
16825 efrain 15811
  .mx-wd-xs-15p {
15812
    max-width: 15%;
15813
  }
16848 stevensc 15814
 
16825 efrain 15815
  .mn-wd-xs-15p {
15816
    min-width: 15%;
15817
  }
16848 stevensc 15818
 
16825 efrain 15819
  .wd-xs-15-f {
15820
    width: 15px !important;
15821
  }
16848 stevensc 15822
 
16825 efrain 15823
  .wd-xs-15p-f {
15824
    width: 15% !important;
15825
  }
16848 stevensc 15826
 
16825 efrain 15827
  .mx-wd-xs-15p-f {
15828
    max-width: 15% !important;
15829
  }
16848 stevensc 15830
 
16825 efrain 15831
  .mn-wd-xs-15p-f {
15832
    min-width: 15% !important;
15833
  }
16848 stevensc 15834
 
16825 efrain 15835
  .wd-xs-20 {
15836
    width: 20px;
15837
  }
16848 stevensc 15838
 
16825 efrain 15839
  .wd-xs-20p {
15840
    width: 20%;
15841
  }
16848 stevensc 15842
 
16825 efrain 15843
  .mx-wd-xs-20p {
15844
    max-width: 20%;
15845
  }
16848 stevensc 15846
 
16825 efrain 15847
  .mn-wd-xs-20p {
15848
    min-width: 20%;
15849
  }
16848 stevensc 15850
 
16825 efrain 15851
  .wd-xs-20-f {
15852
    width: 20px !important;
15853
  }
16848 stevensc 15854
 
16825 efrain 15855
  .wd-xs-20p-f {
15856
    width: 20% !important;
15857
  }
16848 stevensc 15858
 
16825 efrain 15859
  .mx-wd-xs-20p-f {
15860
    max-width: 20% !important;
15861
  }
16848 stevensc 15862
 
16825 efrain 15863
  .mn-wd-xs-20p-f {
15864
    min-width: 20% !important;
15865
  }
16848 stevensc 15866
 
16825 efrain 15867
  .wd-xs-25 {
15868
    width: 25px;
15869
  }
16848 stevensc 15870
 
16825 efrain 15871
  .wd-xs-25p {
15872
    width: 25%;
15873
  }
16848 stevensc 15874
 
16825 efrain 15875
  .mx-wd-xs-25p {
15876
    max-width: 25%;
15877
  }
16848 stevensc 15878
 
16825 efrain 15879
  .mn-wd-xs-25p {
15880
    min-width: 25%;
15881
  }
16848 stevensc 15882
 
16825 efrain 15883
  .wd-xs-25-f {
15884
    width: 25px !important;
15885
  }
16848 stevensc 15886
 
16825 efrain 15887
  .wd-xs-25p-f {
15888
    width: 25% !important;
15889
  }
16848 stevensc 15890
 
16825 efrain 15891
  .mx-wd-xs-25p-f {
15892
    max-width: 25% !important;
15893
  }
16848 stevensc 15894
 
16825 efrain 15895
  .mn-wd-xs-25p-f {
15896
    min-width: 25% !important;
15897
  }
16848 stevensc 15898
 
16825 efrain 15899
  .wd-xs-30 {
15900
    width: 30px;
15901
  }
16848 stevensc 15902
 
16825 efrain 15903
  .wd-xs-30p {
15904
    width: 30%;
15905
  }
16848 stevensc 15906
 
16825 efrain 15907
  .mx-wd-xs-30p {
15908
    max-width: 30%;
15909
  }
16848 stevensc 15910
 
16825 efrain 15911
  .mn-wd-xs-30p {
15912
    min-width: 30%;
15913
  }
16848 stevensc 15914
 
16825 efrain 15915
  .wd-xs-30-f {
15916
    width: 30px !important;
15917
  }
16848 stevensc 15918
 
16825 efrain 15919
  .wd-xs-30p-f {
15920
    width: 30% !important;
15921
  }
16848 stevensc 15922
 
16825 efrain 15923
  .mx-wd-xs-30p-f {
15924
    max-width: 30% !important;
15925
  }
16848 stevensc 15926
 
16825 efrain 15927
  .mn-wd-xs-30p-f {
15928
    min-width: 30% !important;
15929
  }
16848 stevensc 15930
 
16825 efrain 15931
  .wd-xs-35 {
15932
    width: 35px;
15933
  }
16848 stevensc 15934
 
16825 efrain 15935
  .wd-xs-35p {
15936
    width: 35%;
15937
  }
16848 stevensc 15938
 
16825 efrain 15939
  .mx-wd-xs-35p {
15940
    max-width: 35%;
15941
  }
16848 stevensc 15942
 
16825 efrain 15943
  .mn-wd-xs-35p {
15944
    min-width: 35%;
15945
  }
16848 stevensc 15946
 
16825 efrain 15947
  .wd-xs-35-f {
15948
    width: 35px !important;
15949
  }
16848 stevensc 15950
 
16825 efrain 15951
  .wd-xs-35p-f {
15952
    width: 35% !important;
15953
  }
16848 stevensc 15954
 
16825 efrain 15955
  .mx-wd-xs-35p-f {
15956
    max-width: 35% !important;
15957
  }
16848 stevensc 15958
 
16825 efrain 15959
  .mn-wd-xs-35p-f {
15960
    min-width: 35% !important;
15961
  }
16848 stevensc 15962
 
16825 efrain 15963
  .wd-xs-40 {
15964
    width: 40px;
15965
  }
16848 stevensc 15966
 
16825 efrain 15967
  .wd-xs-40p {
15968
    width: 40%;
15969
  }
16848 stevensc 15970
 
16825 efrain 15971
  .mx-wd-xs-40p {
15972
    max-width: 40%;
15973
  }
16848 stevensc 15974
 
16825 efrain 15975
  .mn-wd-xs-40p {
15976
    min-width: 40%;
15977
  }
16848 stevensc 15978
 
16825 efrain 15979
  .wd-xs-40-f {
15980
    width: 40px !important;
15981
  }
16848 stevensc 15982
 
16825 efrain 15983
  .wd-xs-40p-f {
15984
    width: 40% !important;
15985
  }
16848 stevensc 15986
 
16825 efrain 15987
  .mx-wd-xs-40p-f {
15988
    max-width: 40% !important;
15989
  }
16848 stevensc 15990
 
16825 efrain 15991
  .mn-wd-xs-40p-f {
15992
    min-width: 40% !important;
15993
  }
16848 stevensc 15994
 
16825 efrain 15995
  .wd-xs-45 {
15996
    width: 45px;
15997
  }
16848 stevensc 15998
 
16825 efrain 15999
  .wd-xs-45p {
16000
    width: 45%;
16001
  }
16848 stevensc 16002
 
16825 efrain 16003
  .mx-wd-xs-45p {
16004
    max-width: 45%;
16005
  }
16848 stevensc 16006
 
16825 efrain 16007
  .mn-wd-xs-45p {
16008
    min-width: 45%;
16009
  }
16848 stevensc 16010
 
16825 efrain 16011
  .wd-xs-45-f {
16012
    width: 45px !important;
16013
  }
16848 stevensc 16014
 
16825 efrain 16015
  .wd-xs-45p-f {
16016
    width: 45% !important;
16017
  }
16848 stevensc 16018
 
16825 efrain 16019
  .mx-wd-xs-45p-f {
16020
    max-width: 45% !important;
16021
  }
16848 stevensc 16022
 
16825 efrain 16023
  .mn-wd-xs-45p-f {
16024
    min-width: 45% !important;
16025
  }
16848 stevensc 16026
 
16825 efrain 16027
  .wd-xs-50 {
16028
    width: 50px;
16029
  }
16848 stevensc 16030
 
16825 efrain 16031
  .wd-xs-50p {
16032
    width: 50%;
16033
  }
16848 stevensc 16034
 
16825 efrain 16035
  .mx-wd-xs-50p {
16036
    max-width: 50%;
16037
  }
16848 stevensc 16038
 
16825 efrain 16039
  .mn-wd-xs-50p {
16040
    min-width: 50%;
16041
  }
16848 stevensc 16042
 
16825 efrain 16043
  .wd-xs-50-f {
16044
    width: 50px !important;
16045
  }
16848 stevensc 16046
 
16825 efrain 16047
  .wd-xs-50p-f {
16048
    width: 50% !important;
16049
  }
16848 stevensc 16050
 
16825 efrain 16051
  .mx-wd-xs-50p-f {
16052
    max-width: 50% !important;
16053
  }
16848 stevensc 16054
 
16825 efrain 16055
  .mn-wd-xs-50p-f {
16056
    min-width: 50% !important;
16057
  }
16848 stevensc 16058
 
16825 efrain 16059
  .wd-xs-55 {
16060
    width: 55px;
16061
  }
16848 stevensc 16062
 
16825 efrain 16063
  .wd-xs-55p {
16064
    width: 55%;
16065
  }
16848 stevensc 16066
 
16825 efrain 16067
  .mx-wd-xs-55p {
16068
    max-width: 55%;
16069
  }
16848 stevensc 16070
 
16825 efrain 16071
  .mn-wd-xs-55p {
16072
    min-width: 55%;
16073
  }
16848 stevensc 16074
 
16825 efrain 16075
  .wd-xs-55-f {
16076
    width: 55px !important;
16077
  }
16848 stevensc 16078
 
16825 efrain 16079
  .wd-xs-55p-f {
16080
    width: 55% !important;
16081
  }
16848 stevensc 16082
 
16825 efrain 16083
  .mx-wd-xs-55p-f {
16084
    max-width: 55% !important;
16085
  }
16848 stevensc 16086
 
16825 efrain 16087
  .mn-wd-xs-55p-f {
16088
    min-width: 55% !important;
16089
  }
16848 stevensc 16090
 
16825 efrain 16091
  .wd-xs-60 {
16092
    width: 60px;
16093
  }
16848 stevensc 16094
 
16825 efrain 16095
  .wd-xs-60p {
16096
    width: 60%;
16097
  }
16848 stevensc 16098
 
16825 efrain 16099
  .mx-wd-xs-60p {
16100
    max-width: 60%;
16101
  }
16848 stevensc 16102
 
16825 efrain 16103
  .mn-wd-xs-60p {
16104
    min-width: 60%;
16105
  }
16848 stevensc 16106
 
16825 efrain 16107
  .wd-xs-60-f {
16108
    width: 60px !important;
16109
  }
16848 stevensc 16110
 
16825 efrain 16111
  .wd-xs-60p-f {
16112
    width: 60% !important;
16113
  }
16848 stevensc 16114
 
16825 efrain 16115
  .mx-wd-xs-60p-f {
16116
    max-width: 60% !important;
16117
  }
16848 stevensc 16118
 
16825 efrain 16119
  .mn-wd-xs-60p-f {
16120
    min-width: 60% !important;
16121
  }
16848 stevensc 16122
 
16825 efrain 16123
  .wd-xs-65 {
16124
    width: 65px;
16125
  }
16848 stevensc 16126
 
16825 efrain 16127
  .wd-xs-65p {
16128
    width: 65%;
16129
  }
16848 stevensc 16130
 
16825 efrain 16131
  .mx-wd-xs-65p {
16132
    max-width: 65%;
16133
  }
16848 stevensc 16134
 
16825 efrain 16135
  .mn-wd-xs-65p {
16136
    min-width: 65%;
16137
  }
16848 stevensc 16138
 
16825 efrain 16139
  .wd-xs-65-f {
16140
    width: 65px !important;
16141
  }
16848 stevensc 16142
 
16825 efrain 16143
  .wd-xs-65p-f {
16144
    width: 65% !important;
16145
  }
16848 stevensc 16146
 
16825 efrain 16147
  .mx-wd-xs-65p-f {
16148
    max-width: 65% !important;
16149
  }
16848 stevensc 16150
 
16825 efrain 16151
  .mn-wd-xs-65p-f {
16152
    min-width: 65% !important;
16153
  }
16848 stevensc 16154
 
16825 efrain 16155
  .wd-xs-70 {
16156
    width: 70px;
16157
  }
16848 stevensc 16158
 
16825 efrain 16159
  .wd-xs-70p {
16160
    width: 70%;
16161
  }
16848 stevensc 16162
 
16825 efrain 16163
  .mx-wd-xs-70p {
16164
    max-width: 70%;
16165
  }
16848 stevensc 16166
 
16825 efrain 16167
  .mn-wd-xs-70p {
16168
    min-width: 70%;
16169
  }
16848 stevensc 16170
 
16825 efrain 16171
  .wd-xs-70-f {
16172
    width: 70px !important;
16173
  }
16848 stevensc 16174
 
16825 efrain 16175
  .wd-xs-70p-f {
16176
    width: 70% !important;
16177
  }
16848 stevensc 16178
 
16825 efrain 16179
  .mx-wd-xs-70p-f {
16180
    max-width: 70% !important;
16181
  }
16848 stevensc 16182
 
16825 efrain 16183
  .mn-wd-xs-70p-f {
16184
    min-width: 70% !important;
16185
  }
16848 stevensc 16186
 
16825 efrain 16187
  .wd-xs-75 {
16188
    width: 75px;
16189
  }
16848 stevensc 16190
 
16825 efrain 16191
  .wd-xs-75p {
16192
    width: 75%;
16193
  }
16848 stevensc 16194
 
16825 efrain 16195
  .mx-wd-xs-75p {
16196
    max-width: 75%;
16197
  }
16848 stevensc 16198
 
16825 efrain 16199
  .mn-wd-xs-75p {
16200
    min-width: 75%;
16201
  }
16848 stevensc 16202
 
16825 efrain 16203
  .wd-xs-75-f {
16204
    width: 75px !important;
16205
  }
16848 stevensc 16206
 
16825 efrain 16207
  .wd-xs-75p-f {
16208
    width: 75% !important;
16209
  }
16848 stevensc 16210
 
16825 efrain 16211
  .mx-wd-xs-75p-f {
16212
    max-width: 75% !important;
16213
  }
16848 stevensc 16214
 
16825 efrain 16215
  .mn-wd-xs-75p-f {
16216
    min-width: 75% !important;
16217
  }
16848 stevensc 16218
 
16825 efrain 16219
  .wd-xs-80 {
16220
    width: 80px;
16221
  }
16848 stevensc 16222
 
16825 efrain 16223
  .wd-xs-80p {
16224
    width: 80%;
16225
  }
16848 stevensc 16226
 
16825 efrain 16227
  .mx-wd-xs-80p {
16228
    max-width: 80%;
16229
  }
16848 stevensc 16230
 
16825 efrain 16231
  .mn-wd-xs-80p {
16232
    min-width: 80%;
16233
  }
16848 stevensc 16234
 
16825 efrain 16235
  .wd-xs-80-f {
16236
    width: 80px !important;
16237
  }
16848 stevensc 16238
 
16825 efrain 16239
  .wd-xs-80p-f {
16240
    width: 80% !important;
16241
  }
16848 stevensc 16242
 
16825 efrain 16243
  .mx-wd-xs-80p-f {
16244
    max-width: 80% !important;
16245
  }
16848 stevensc 16246
 
16825 efrain 16247
  .mn-wd-xs-80p-f {
16248
    min-width: 80% !important;
16249
  }
16848 stevensc 16250
 
16825 efrain 16251
  .wd-xs-85 {
16252
    width: 85px;
16253
  }
16848 stevensc 16254
 
16825 efrain 16255
  .wd-xs-85p {
16256
    width: 85%;
16257
  }
16848 stevensc 16258
 
16825 efrain 16259
  .mx-wd-xs-85p {
16260
    max-width: 85%;
16261
  }
16848 stevensc 16262
 
16825 efrain 16263
  .mn-wd-xs-85p {
16264
    min-width: 85%;
16265
  }
16848 stevensc 16266
 
16825 efrain 16267
  .wd-xs-85-f {
16268
    width: 85px !important;
16269
  }
16848 stevensc 16270
 
16825 efrain 16271
  .wd-xs-85p-f {
16272
    width: 85% !important;
16273
  }
16848 stevensc 16274
 
16825 efrain 16275
  .mx-wd-xs-85p-f {
16276
    max-width: 85% !important;
16277
  }
16848 stevensc 16278
 
16825 efrain 16279
  .mn-wd-xs-85p-f {
16280
    min-width: 85% !important;
16281
  }
16848 stevensc 16282
 
16825 efrain 16283
  .wd-xs-90 {
16284
    width: 90px;
16285
  }
16848 stevensc 16286
 
16825 efrain 16287
  .wd-xs-90p {
16288
    width: 90%;
16289
  }
16848 stevensc 16290
 
16825 efrain 16291
  .mx-wd-xs-90p {
16292
    max-width: 90%;
16293
  }
16848 stevensc 16294
 
16825 efrain 16295
  .mn-wd-xs-90p {
16296
    min-width: 90%;
16297
  }
16848 stevensc 16298
 
16825 efrain 16299
  .wd-xs-90-f {
16300
    width: 90px !important;
16301
  }
16848 stevensc 16302
 
16825 efrain 16303
  .wd-xs-90p-f {
16304
    width: 90% !important;
16305
  }
16848 stevensc 16306
 
16825 efrain 16307
  .mx-wd-xs-90p-f {
16308
    max-width: 90% !important;
16309
  }
16848 stevensc 16310
 
16825 efrain 16311
  .mn-wd-xs-90p-f {
16312
    min-width: 90% !important;
16313
  }
16848 stevensc 16314
 
16825 efrain 16315
  .wd-xs-95 {
16316
    width: 95px;
16317
  }
16848 stevensc 16318
 
16825 efrain 16319
  .wd-xs-95p {
16320
    width: 95%;
16321
  }
16848 stevensc 16322
 
16825 efrain 16323
  .mx-wd-xs-95p {
16324
    max-width: 95%;
16325
  }
16848 stevensc 16326
 
16825 efrain 16327
  .mn-wd-xs-95p {
16328
    min-width: 95%;
16329
  }
16848 stevensc 16330
 
16825 efrain 16331
  .wd-xs-95-f {
16332
    width: 95px !important;
16333
  }
16848 stevensc 16334
 
16825 efrain 16335
  .wd-xs-95p-f {
16336
    width: 95% !important;
16337
  }
16848 stevensc 16338
 
16825 efrain 16339
  .mx-wd-xs-95p-f {
16340
    max-width: 95% !important;
16341
  }
16848 stevensc 16342
 
16825 efrain 16343
  .mn-wd-xs-95p-f {
16344
    min-width: 95% !important;
16345
  }
16848 stevensc 16346
 
16825 efrain 16347
  .wd-xs-100 {
16348
    width: 100px;
16349
  }
16848 stevensc 16350
 
16825 efrain 16351
  .wd-xs-100p {
16352
    width: 100%;
16353
  }
16848 stevensc 16354
 
16825 efrain 16355
  .mx-wd-xs-100p {
16356
    max-width: 100%;
16357
  }
16848 stevensc 16358
 
16825 efrain 16359
  .mn-wd-xs-100p {
16360
    min-width: 100%;
16361
  }
16848 stevensc 16362
 
16825 efrain 16363
  .wd-xs-100-f {
16364
    width: 100px !important;
16365
  }
16848 stevensc 16366
 
16825 efrain 16367
  .wd-xs-100p-f {
16368
    width: 100% !important;
16369
  }
16848 stevensc 16370
 
16825 efrain 16371
  .mx-wd-xs-100p-f {
16372
    max-width: 100% !important;
16373
  }
16848 stevensc 16374
 
16825 efrain 16375
  .mn-wd-xs-100p-f {
16376
    min-width: 100% !important;
16377
  }
16848 stevensc 16378
 
16825 efrain 16379
  .wd-xs-150 {
16380
    width: 150px;
16381
  }
16848 stevensc 16382
 
16825 efrain 16383
  .wd-xs-150p {
16384
    width: 150%;
16385
  }
16848 stevensc 16386
 
16825 efrain 16387
  .mx-wd-xs-150p {
16388
    max-width: 150%;
16389
  }
16848 stevensc 16390
 
16825 efrain 16391
  .mn-wd-xs-150p {
16392
    min-width: 150%;
16393
  }
16848 stevensc 16394
 
16825 efrain 16395
  .wd-xs-150-f {
16396
    width: 150px !important;
16397
  }
16848 stevensc 16398
 
16825 efrain 16399
  .wd-xs-150p-f {
16400
    width: 150% !important;
16401
  }
16848 stevensc 16402
 
16825 efrain 16403
  .mx-wd-xs-150p-f {
16404
    max-width: 150% !important;
16405
  }
16848 stevensc 16406
 
16825 efrain 16407
  .mn-wd-xs-150p-f {
16408
    min-width: 150% !important;
16409
  }
16848 stevensc 16410
 
16825 efrain 16411
  .wd-xs-200 {
16412
    width: 200px;
16413
  }
16848 stevensc 16414
 
16825 efrain 16415
  .wd-xs-200p {
16416
    width: 200%;
16417
  }
16848 stevensc 16418
 
16825 efrain 16419
  .mx-wd-xs-200p {
16420
    max-width: 200%;
16421
  }
16848 stevensc 16422
 
16825 efrain 16423
  .mn-wd-xs-200p {
16424
    min-width: 200%;
16425
  }
16848 stevensc 16426
 
16825 efrain 16427
  .wd-xs-200-f {
16428
    width: 200px !important;
16429
  }
16848 stevensc 16430
 
16825 efrain 16431
  .wd-xs-200p-f {
16432
    width: 200% !important;
16433
  }
16848 stevensc 16434
 
16825 efrain 16435
  .mx-wd-xs-200p-f {
16436
    max-width: 200% !important;
16437
  }
16848 stevensc 16438
 
16825 efrain 16439
  .mn-wd-xs-200p-f {
16440
    min-width: 200% !important;
16441
  }
16848 stevensc 16442
 
16825 efrain 16443
  .wd-xs-250 {
16444
    width: 250px;
16445
  }
16848 stevensc 16446
 
16825 efrain 16447
  .wd-xs-250p {
16448
    width: 250%;
16449
  }
16848 stevensc 16450
 
16825 efrain 16451
  .mx-wd-xs-250p {
16452
    max-width: 250%;
16453
  }
16848 stevensc 16454
 
16825 efrain 16455
  .mn-wd-xs-250p {
16456
    min-width: 250%;
16457
  }
16848 stevensc 16458
 
16825 efrain 16459
  .wd-xs-250-f {
16460
    width: 250px !important;
16461
  }
16848 stevensc 16462
 
16825 efrain 16463
  .wd-xs-250p-f {
16464
    width: 250% !important;
16465
  }
16848 stevensc 16466
 
16825 efrain 16467
  .mx-wd-xs-250p-f {
16468
    max-width: 250% !important;
16469
  }
16848 stevensc 16470
 
16825 efrain 16471
  .mn-wd-xs-250p-f {
16472
    min-width: 250% !important;
16473
  }
16848 stevensc 16474
 
16825 efrain 16475
  .wd-xs-300 {
16476
    width: 300px;
16477
  }
16848 stevensc 16478
 
16825 efrain 16479
  .wd-xs-300p {
16480
    width: 300%;
16481
  }
16848 stevensc 16482
 
16825 efrain 16483
  .mx-wd-xs-300p {
16484
    max-width: 300%;
16485
  }
16848 stevensc 16486
 
16825 efrain 16487
  .mn-wd-xs-300p {
16488
    min-width: 300%;
16489
  }
16848 stevensc 16490
 
16825 efrain 16491
  .wd-xs-300-f {
16492
    width: 300px !important;
16493
  }
16848 stevensc 16494
 
16825 efrain 16495
  .wd-xs-300p-f {
16496
    width: 300% !important;
16497
  }
16848 stevensc 16498
 
16825 efrain 16499
  .mx-wd-xs-300p-f {
16500
    max-width: 300% !important;
16501
  }
16848 stevensc 16502
 
16825 efrain 16503
  .mn-wd-xs-300p-f {
16504
    min-width: 300% !important;
16505
  }
16848 stevensc 16506
 
16825 efrain 16507
  .wd-xs-350 {
16508
    width: 350px;
16509
  }
16848 stevensc 16510
 
16825 efrain 16511
  .wd-xs-350p {
16512
    width: 350%;
16513
  }
16848 stevensc 16514
 
16825 efrain 16515
  .mx-wd-xs-350p {
16516
    max-width: 350%;
16517
  }
16848 stevensc 16518
 
16825 efrain 16519
  .mn-wd-xs-350p {
16520
    min-width: 350%;
16521
  }
16848 stevensc 16522
 
16825 efrain 16523
  .wd-xs-350-f {
16524
    width: 350px !important;
16525
  }
16848 stevensc 16526
 
16825 efrain 16527
  .wd-xs-350p-f {
16528
    width: 350% !important;
16529
  }
16848 stevensc 16530
 
16825 efrain 16531
  .mx-wd-xs-350p-f {
16532
    max-width: 350% !important;
16533
  }
16848 stevensc 16534
 
16825 efrain 16535
  .mn-wd-xs-350p-f {
16536
    min-width: 350% !important;
16537
  }
16848 stevensc 16538
 
16825 efrain 16539
  .wd-xs-400 {
16540
    width: 400px;
16541
  }
16848 stevensc 16542
 
16825 efrain 16543
  .wd-xs-400p {
16544
    width: 400%;
16545
  }
16848 stevensc 16546
 
16825 efrain 16547
  .mx-wd-xs-400p {
16548
    max-width: 400%;
16549
  }
16848 stevensc 16550
 
16825 efrain 16551
  .mn-wd-xs-400p {
16552
    min-width: 400%;
16553
  }
16848 stevensc 16554
 
16825 efrain 16555
  .wd-xs-400-f {
16556
    width: 400px !important;
16557
  }
16848 stevensc 16558
 
16825 efrain 16559
  .wd-xs-400p-f {
16560
    width: 400% !important;
16561
  }
16848 stevensc 16562
 
16825 efrain 16563
  .mx-wd-xs-400p-f {
16564
    max-width: 400% !important;
16565
  }
16848 stevensc 16566
 
16825 efrain 16567
  .mn-wd-xs-400p-f {
16568
    min-width: 400% !important;
16569
  }
16848 stevensc 16570
 
16825 efrain 16571
  .wd-xs-450 {
16572
    width: 450px;
16573
  }
16848 stevensc 16574
 
16825 efrain 16575
  .wd-xs-450p {
16576
    width: 450%;
16577
  }
16848 stevensc 16578
 
16825 efrain 16579
  .mx-wd-xs-450p {
16580
    max-width: 450%;
16581
  }
16848 stevensc 16582
 
16825 efrain 16583
  .mn-wd-xs-450p {
16584
    min-width: 450%;
16585
  }
16848 stevensc 16586
 
16825 efrain 16587
  .wd-xs-450-f {
16588
    width: 450px !important;
16589
  }
16848 stevensc 16590
 
16825 efrain 16591
  .wd-xs-450p-f {
16592
    width: 450% !important;
16593
  }
16848 stevensc 16594
 
16825 efrain 16595
  .mx-wd-xs-450p-f {
16596
    max-width: 450% !important;
16597
  }
16848 stevensc 16598
 
16825 efrain 16599
  .mn-wd-xs-450p-f {
16600
    min-width: 450% !important;
16601
  }
16848 stevensc 16602
 
16825 efrain 16603
  .wd-xs-500 {
16604
    width: 500px;
16605
  }
16848 stevensc 16606
 
16825 efrain 16607
  .wd-xs-500p {
16608
    width: 500%;
16609
  }
16848 stevensc 16610
 
16825 efrain 16611
  .mx-wd-xs-500p {
16612
    max-width: 500%;
16613
  }
16848 stevensc 16614
 
16825 efrain 16615
  .mn-wd-xs-500p {
16616
    min-width: 500%;
16617
  }
16848 stevensc 16618
 
16825 efrain 16619
  .wd-xs-500-f {
16620
    width: 500px !important;
16621
  }
16848 stevensc 16622
 
16825 efrain 16623
  .wd-xs-500p-f {
16624
    width: 500% !important;
16625
  }
16848 stevensc 16626
 
16825 efrain 16627
  .mx-wd-xs-500p-f {
16628
    max-width: 500% !important;
16629
  }
16848 stevensc 16630
 
16825 efrain 16631
  .mn-wd-xs-500p-f {
16632
    min-width: 500% !important;
16633
  }
16848 stevensc 16634
 
16825 efrain 16635
  .wd-xs-550 {
16636
    width: 550px;
16637
  }
16848 stevensc 16638
 
16825 efrain 16639
  .wd-xs-550p {
16640
    width: 550%;
16641
  }
16848 stevensc 16642
 
16825 efrain 16643
  .mx-wd-xs-550p {
16644
    max-width: 550%;
16645
  }
16848 stevensc 16646
 
16825 efrain 16647
  .mn-wd-xs-550p {
16648
    min-width: 550%;
16649
  }
16848 stevensc 16650
 
16825 efrain 16651
  .wd-xs-550-f {
16652
    width: 550px !important;
16653
  }
16848 stevensc 16654
 
16825 efrain 16655
  .wd-xs-550p-f {
16656
    width: 550% !important;
16657
  }
16848 stevensc 16658
 
16825 efrain 16659
  .mx-wd-xs-550p-f {
16660
    max-width: 550% !important;
16661
  }
16848 stevensc 16662
 
16825 efrain 16663
  .mn-wd-xs-550p-f {
16664
    min-width: 550% !important;
16665
  }
16848 stevensc 16666
 
16825 efrain 16667
  .wd-xs-600 {
16668
    width: 600px;
16669
  }
16848 stevensc 16670
 
16825 efrain 16671
  .wd-xs-600p {
16672
    width: 600%;
16673
  }
16848 stevensc 16674
 
16825 efrain 16675
  .mx-wd-xs-600p {
16676
    max-width: 600%;
16677
  }
16848 stevensc 16678
 
16825 efrain 16679
  .mn-wd-xs-600p {
16680
    min-width: 600%;
16681
  }
16848 stevensc 16682
 
16825 efrain 16683
  .wd-xs-600-f {
16684
    width: 600px !important;
16685
  }
16848 stevensc 16686
 
16825 efrain 16687
  .wd-xs-600p-f {
16688
    width: 600% !important;
16689
  }
16848 stevensc 16690
 
16825 efrain 16691
  .mx-wd-xs-600p-f {
16692
    max-width: 600% !important;
16693
  }
16848 stevensc 16694
 
16825 efrain 16695
  .mn-wd-xs-600p-f {
16696
    min-width: 600% !important;
16697
  }
16848 stevensc 16698
 
16825 efrain 16699
  .wd-xs-650 {
16700
    width: 650px;
16701
  }
16848 stevensc 16702
 
16825 efrain 16703
  .wd-xs-650p {
16704
    width: 650%;
16705
  }
16848 stevensc 16706
 
16825 efrain 16707
  .mx-wd-xs-650p {
16708
    max-width: 650%;
16709
  }
16848 stevensc 16710
 
16825 efrain 16711
  .mn-wd-xs-650p {
16712
    min-width: 650%;
16713
  }
16848 stevensc 16714
 
16825 efrain 16715
  .wd-xs-650-f {
16716
    width: 650px !important;
16717
  }
16848 stevensc 16718
 
16825 efrain 16719
  .wd-xs-650p-f {
16720
    width: 650% !important;
16721
  }
16848 stevensc 16722
 
16825 efrain 16723
  .mx-wd-xs-650p-f {
16724
    max-width: 650% !important;
16725
  }
16848 stevensc 16726
 
16825 efrain 16727
  .mn-wd-xs-650p-f {
16728
    min-width: 650% !important;
16729
  }
16848 stevensc 16730
 
16825 efrain 16731
  .wd-xs-700 {
16732
    width: 700px;
16733
  }
16848 stevensc 16734
 
16825 efrain 16735
  .wd-xs-700p {
16736
    width: 700%;
16737
  }
16848 stevensc 16738
 
16825 efrain 16739
  .mx-wd-xs-700p {
16740
    max-width: 700%;
16741
  }
16848 stevensc 16742
 
16825 efrain 16743
  .mn-wd-xs-700p {
16744
    min-width: 700%;
16745
  }
16848 stevensc 16746
 
16825 efrain 16747
  .wd-xs-700-f {
16748
    width: 700px !important;
16749
  }
16848 stevensc 16750
 
16825 efrain 16751
  .wd-xs-700p-f {
16752
    width: 700% !important;
16753
  }
16848 stevensc 16754
 
16825 efrain 16755
  .mx-wd-xs-700p-f {
16756
    max-width: 700% !important;
16757
  }
16848 stevensc 16758
 
16825 efrain 16759
  .mn-wd-xs-700p-f {
16760
    min-width: 700% !important;
16761
  }
16848 stevensc 16762
 
16825 efrain 16763
  .wd-xs-750 {
16764
    width: 750px;
16765
  }
16848 stevensc 16766
 
16825 efrain 16767
  .wd-xs-750p {
16768
    width: 750%;
16769
  }
16848 stevensc 16770
 
16825 efrain 16771
  .mx-wd-xs-750p {
16772
    max-width: 750%;
16773
  }
16848 stevensc 16774
 
16825 efrain 16775
  .mn-wd-xs-750p {
16776
    min-width: 750%;
16777
  }
16848 stevensc 16778
 
16825 efrain 16779
  .wd-xs-750-f {
16780
    width: 750px !important;
16781
  }
16848 stevensc 16782
 
16825 efrain 16783
  .wd-xs-750p-f {
16784
    width: 750% !important;
16785
  }
16848 stevensc 16786
 
16825 efrain 16787
  .mx-wd-xs-750p-f {
16788
    max-width: 750% !important;
16789
  }
16848 stevensc 16790
 
16825 efrain 16791
  .mn-wd-xs-750p-f {
16792
    min-width: 750% !important;
16793
  }
16848 stevensc 16794
 
16825 efrain 16795
  .wd-xs-800 {
16796
    width: 800px;
16797
  }
16848 stevensc 16798
 
16825 efrain 16799
  .wd-xs-800p {
16800
    width: 800%;
16801
  }
16848 stevensc 16802
 
16825 efrain 16803
  .mx-wd-xs-800p {
16804
    max-width: 800%;
16805
  }
16848 stevensc 16806
 
16825 efrain 16807
  .mn-wd-xs-800p {
16808
    min-width: 800%;
16809
  }
16848 stevensc 16810
 
16825 efrain 16811
  .wd-xs-800-f {
16812
    width: 800px !important;
16813
  }
16848 stevensc 16814
 
16825 efrain 16815
  .wd-xs-800p-f {
16816
    width: 800% !important;
16817
  }
16848 stevensc 16818
 
16825 efrain 16819
  .mx-wd-xs-800p-f {
16820
    max-width: 800% !important;
16821
  }
16848 stevensc 16822
 
16825 efrain 16823
  .mn-wd-xs-800p-f {
16824
    min-width: 800% !important;
16825
  }
16848 stevensc 16826
 
16825 efrain 16827
  .wd-xs-850 {
16828
    width: 850px;
16829
  }
16848 stevensc 16830
 
16825 efrain 16831
  .wd-xs-850p {
16832
    width: 850%;
16833
  }
16848 stevensc 16834
 
16825 efrain 16835
  .mx-wd-xs-850p {
16836
    max-width: 850%;
16837
  }
16848 stevensc 16838
 
16825 efrain 16839
  .mn-wd-xs-850p {
16840
    min-width: 850%;
16841
  }
16848 stevensc 16842
 
16825 efrain 16843
  .wd-xs-850-f {
16844
    width: 850px !important;
16845
  }
16848 stevensc 16846
 
16825 efrain 16847
  .wd-xs-850p-f {
16848
    width: 850% !important;
16849
  }
16848 stevensc 16850
 
16825 efrain 16851
  .mx-wd-xs-850p-f {
16852
    max-width: 850% !important;
16853
  }
16848 stevensc 16854
 
16825 efrain 16855
  .mn-wd-xs-850p-f {
16856
    min-width: 850% !important;
16857
  }
16848 stevensc 16858
 
16825 efrain 16859
  .wd-xs-900 {
16860
    width: 900px;
16861
  }
16848 stevensc 16862
 
16825 efrain 16863
  .wd-xs-900p {
16864
    width: 900%;
16865
  }
16848 stevensc 16866
 
16825 efrain 16867
  .mx-wd-xs-900p {
16868
    max-width: 900%;
16869
  }
16848 stevensc 16870
 
16825 efrain 16871
  .mn-wd-xs-900p {
16872
    min-width: 900%;
16873
  }
16848 stevensc 16874
 
16825 efrain 16875
  .wd-xs-900-f {
16876
    width: 900px !important;
16877
  }
16848 stevensc 16878
 
16825 efrain 16879
  .wd-xs-900p-f {
16880
    width: 900% !important;
16881
  }
16848 stevensc 16882
 
16825 efrain 16883
  .mx-wd-xs-900p-f {
16884
    max-width: 900% !important;
16885
  }
16848 stevensc 16886
 
16825 efrain 16887
  .mn-wd-xs-900p-f {
16888
    min-width: 900% !important;
16889
  }
16848 stevensc 16890
 
16825 efrain 16891
  .wd-xs-950 {
16892
    width: 950px;
16893
  }
16848 stevensc 16894
 
16825 efrain 16895
  .wd-xs-950p {
16896
    width: 950%;
16897
  }
16848 stevensc 16898
 
16825 efrain 16899
  .mx-wd-xs-950p {
16900
    max-width: 950%;
16901
  }
16848 stevensc 16902
 
16825 efrain 16903
  .mn-wd-xs-950p {
16904
    min-width: 950%;
16905
  }
16848 stevensc 16906
 
16825 efrain 16907
  .wd-xs-950-f {
16908
    width: 950px !important;
16909
  }
16848 stevensc 16910
 
16825 efrain 16911
  .wd-xs-950p-f {
16912
    width: 950% !important;
16913
  }
16848 stevensc 16914
 
16825 efrain 16915
  .mx-wd-xs-950p-f {
16916
    max-width: 950% !important;
16917
  }
16848 stevensc 16918
 
16825 efrain 16919
  .mn-wd-xs-950p-f {
16920
    min-width: 950% !important;
16921
  }
16848 stevensc 16922
 
16825 efrain 16923
  .wd-xs-1000 {
16924
    width: 1000px;
16925
  }
16848 stevensc 16926
 
16825 efrain 16927
  .wd-xs-1000p {
16928
    width: 1000%;
16929
  }
16848 stevensc 16930
 
16825 efrain 16931
  .mx-wd-xs-1000p {
16932
    max-width: 1000%;
16933
  }
16848 stevensc 16934
 
16825 efrain 16935
  .mn-wd-xs-1000p {
16936
    min-width: 1000%;
16937
  }
16848 stevensc 16938
 
16825 efrain 16939
  .wd-xs-1000-f {
16940
    width: 1000px !important;
16941
  }
16848 stevensc 16942
 
16825 efrain 16943
  .wd-xs-1000p-f {
16944
    width: 1000% !important;
16945
  }
16848 stevensc 16946
 
16825 efrain 16947
  .mx-wd-xs-1000p-f {
16948
    max-width: 1000% !important;
16949
  }
16848 stevensc 16950
 
16825 efrain 16951
  .mn-wd-xs-1000p-f {
16952
    min-width: 1000% !important;
16953
  }
16848 stevensc 16954
 
16825 efrain 16955
  .wd-xs-auto {
16956
    width: auto;
16957
  }
16848 stevensc 16958
 
16825 efrain 16959
  .wd-xs-auto-f {
16960
    width: auto !important;
16961
  }
16962
}
16848 stevensc 16963
 
16825 efrain 16964
@media (min-width: 576px) {
16965
  .wd-sm-5 {
16966
    width: 5px;
16967
  }
16848 stevensc 16968
 
16825 efrain 16969
  .wd-sm-5p {
16970
    width: 5%;
16971
  }
16848 stevensc 16972
 
16825 efrain 16973
  .mx-wd-sm-5p {
16974
    max-width: 5%;
16975
  }
16848 stevensc 16976
 
16825 efrain 16977
  .mn-wd-sm-5p {
16978
    min-width: 5%;
16979
  }
16848 stevensc 16980
 
16825 efrain 16981
  .wd-sm-5-f {
16982
    width: 5px !important;
16983
  }
16848 stevensc 16984
 
16825 efrain 16985
  .wd-sm-5p-f {
16986
    width: 5% !important;
16987
  }
16848 stevensc 16988
 
16825 efrain 16989
  .mx-wd-sm-5p-f {
16990
    max-width: 5% !important;
16991
  }
16848 stevensc 16992
 
16825 efrain 16993
  .mn-wd-sm-5p-f {
16994
    min-width: 5% !important;
16995
  }
16848 stevensc 16996
 
16825 efrain 16997
  .wd-sm-10 {
16998
    width: 10px;
16999
  }
16848 stevensc 17000
 
16825 efrain 17001
  .wd-sm-10p {
17002
    width: 10%;
17003
  }
16848 stevensc 17004
 
16825 efrain 17005
  .mx-wd-sm-10p {
17006
    max-width: 10%;
17007
  }
16848 stevensc 17008
 
16825 efrain 17009
  .mn-wd-sm-10p {
17010
    min-width: 10%;
17011
  }
16848 stevensc 17012
 
16825 efrain 17013
  .wd-sm-10-f {
17014
    width: 10px !important;
17015
  }
16848 stevensc 17016
 
16825 efrain 17017
  .wd-sm-10p-f {
17018
    width: 10% !important;
17019
  }
16848 stevensc 17020
 
16825 efrain 17021
  .mx-wd-sm-10p-f {
17022
    max-width: 10% !important;
17023
  }
16848 stevensc 17024
 
16825 efrain 17025
  .mn-wd-sm-10p-f {
17026
    min-width: 10% !important;
17027
  }
16848 stevensc 17028
 
16825 efrain 17029
  .wd-sm-15 {
17030
    width: 15px;
17031
  }
16848 stevensc 17032
 
16825 efrain 17033
  .wd-sm-15p {
17034
    width: 15%;
17035
  }
16848 stevensc 17036
 
16825 efrain 17037
  .mx-wd-sm-15p {
17038
    max-width: 15%;
17039
  }
16848 stevensc 17040
 
16825 efrain 17041
  .mn-wd-sm-15p {
17042
    min-width: 15%;
17043
  }
16848 stevensc 17044
 
16825 efrain 17045
  .wd-sm-15-f {
17046
    width: 15px !important;
17047
  }
16848 stevensc 17048
 
16825 efrain 17049
  .wd-sm-15p-f {
17050
    width: 15% !important;
17051
  }
16848 stevensc 17052
 
16825 efrain 17053
  .mx-wd-sm-15p-f {
17054
    max-width: 15% !important;
17055
  }
16848 stevensc 17056
 
16825 efrain 17057
  .mn-wd-sm-15p-f {
17058
    min-width: 15% !important;
17059
  }
16848 stevensc 17060
 
16825 efrain 17061
  .wd-sm-20 {
17062
    width: 20px;
17063
  }
16848 stevensc 17064
 
16825 efrain 17065
  .wd-sm-20p {
17066
    width: 20%;
17067
  }
16848 stevensc 17068
 
16825 efrain 17069
  .mx-wd-sm-20p {
17070
    max-width: 20%;
17071
  }
16848 stevensc 17072
 
16825 efrain 17073
  .mn-wd-sm-20p {
17074
    min-width: 20%;
17075
  }
16848 stevensc 17076
 
16825 efrain 17077
  .wd-sm-20-f {
17078
    width: 20px !important;
17079
  }
16848 stevensc 17080
 
16825 efrain 17081
  .wd-sm-20p-f {
17082
    width: 20% !important;
17083
  }
16848 stevensc 17084
 
16825 efrain 17085
  .mx-wd-sm-20p-f {
17086
    max-width: 20% !important;
17087
  }
16848 stevensc 17088
 
16825 efrain 17089
  .mn-wd-sm-20p-f {
17090
    min-width: 20% !important;
17091
  }
16848 stevensc 17092
 
16825 efrain 17093
  .wd-sm-25 {
17094
    width: 25px;
17095
  }
16848 stevensc 17096
 
16825 efrain 17097
  .wd-sm-25p {
17098
    width: 25%;
17099
  }
16848 stevensc 17100
 
16825 efrain 17101
  .mx-wd-sm-25p {
17102
    max-width: 25%;
17103
  }
16848 stevensc 17104
 
16825 efrain 17105
  .mn-wd-sm-25p {
17106
    min-width: 25%;
17107
  }
16848 stevensc 17108
 
16825 efrain 17109
  .wd-sm-25-f {
17110
    width: 25px !important;
17111
  }
16848 stevensc 17112
 
16825 efrain 17113
  .wd-sm-25p-f {
17114
    width: 25% !important;
17115
  }
16848 stevensc 17116
 
16825 efrain 17117
  .mx-wd-sm-25p-f {
17118
    max-width: 25% !important;
17119
  }
16848 stevensc 17120
 
16825 efrain 17121
  .mn-wd-sm-25p-f {
17122
    min-width: 25% !important;
17123
  }
16848 stevensc 17124
 
16825 efrain 17125
  .wd-sm-30 {
17126
    width: 30px;
17127
  }
16848 stevensc 17128
 
16825 efrain 17129
  .wd-sm-30p {
17130
    width: 30%;
17131
  }
16848 stevensc 17132
 
16825 efrain 17133
  .mx-wd-sm-30p {
17134
    max-width: 30%;
17135
  }
16848 stevensc 17136
 
16825 efrain 17137
  .mn-wd-sm-30p {
17138
    min-width: 30%;
17139
  }
16848 stevensc 17140
 
16825 efrain 17141
  .wd-sm-30-f {
17142
    width: 30px !important;
17143
  }
16848 stevensc 17144
 
16825 efrain 17145
  .wd-sm-30p-f {
17146
    width: 30% !important;
17147
  }
16848 stevensc 17148
 
16825 efrain 17149
  .mx-wd-sm-30p-f {
17150
    max-width: 30% !important;
17151
  }
16848 stevensc 17152
 
16825 efrain 17153
  .mn-wd-sm-30p-f {
17154
    min-width: 30% !important;
17155
  }
16848 stevensc 17156
 
16825 efrain 17157
  .wd-sm-35 {
17158
    width: 35px;
17159
  }
16848 stevensc 17160
 
16825 efrain 17161
  .wd-sm-35p {
17162
    width: 35%;
17163
  }
16848 stevensc 17164
 
16825 efrain 17165
  .mx-wd-sm-35p {
17166
    max-width: 35%;
17167
  }
16848 stevensc 17168
 
16825 efrain 17169
  .mn-wd-sm-35p {
17170
    min-width: 35%;
17171
  }
16848 stevensc 17172
 
16825 efrain 17173
  .wd-sm-35-f {
17174
    width: 35px !important;
17175
  }
16848 stevensc 17176
 
16825 efrain 17177
  .wd-sm-35p-f {
17178
    width: 35% !important;
17179
  }
16848 stevensc 17180
 
16825 efrain 17181
  .mx-wd-sm-35p-f {
17182
    max-width: 35% !important;
17183
  }
16848 stevensc 17184
 
16825 efrain 17185
  .mn-wd-sm-35p-f {
17186
    min-width: 35% !important;
17187
  }
16848 stevensc 17188
 
16825 efrain 17189
  .wd-sm-40 {
17190
    width: 40px;
17191
  }
16848 stevensc 17192
 
16825 efrain 17193
  .wd-sm-40p {
17194
    width: 40%;
17195
  }
16848 stevensc 17196
 
16825 efrain 17197
  .mx-wd-sm-40p {
17198
    max-width: 40%;
17199
  }
16848 stevensc 17200
 
16825 efrain 17201
  .mn-wd-sm-40p {
17202
    min-width: 40%;
17203
  }
16848 stevensc 17204
 
16825 efrain 17205
  .wd-sm-40-f {
17206
    width: 40px !important;
17207
  }
16848 stevensc 17208
 
16825 efrain 17209
  .wd-sm-40p-f {
17210
    width: 40% !important;
17211
  }
16848 stevensc 17212
 
16825 efrain 17213
  .mx-wd-sm-40p-f {
17214
    max-width: 40% !important;
17215
  }
16848 stevensc 17216
 
16825 efrain 17217
  .mn-wd-sm-40p-f {
17218
    min-width: 40% !important;
17219
  }
16848 stevensc 17220
 
16825 efrain 17221
  .wd-sm-45 {
17222
    width: 45px;
17223
  }
16848 stevensc 17224
 
16825 efrain 17225
  .wd-sm-45p {
17226
    width: 45%;
17227
  }
16848 stevensc 17228
 
16825 efrain 17229
  .mx-wd-sm-45p {
17230
    max-width: 45%;
17231
  }
16848 stevensc 17232
 
16825 efrain 17233
  .mn-wd-sm-45p {
17234
    min-width: 45%;
17235
  }
16848 stevensc 17236
 
16825 efrain 17237
  .wd-sm-45-f {
17238
    width: 45px !important;
17239
  }
16848 stevensc 17240
 
16825 efrain 17241
  .wd-sm-45p-f {
17242
    width: 45% !important;
17243
  }
16848 stevensc 17244
 
16825 efrain 17245
  .mx-wd-sm-45p-f {
17246
    max-width: 45% !important;
17247
  }
16848 stevensc 17248
 
16825 efrain 17249
  .mn-wd-sm-45p-f {
17250
    min-width: 45% !important;
17251
  }
16848 stevensc 17252
 
16825 efrain 17253
  .wd-sm-50 {
17254
    width: 50px;
17255
  }
16848 stevensc 17256
 
16825 efrain 17257
  .wd-sm-50p {
17258
    width: 50%;
17259
  }
16848 stevensc 17260
 
16825 efrain 17261
  .mx-wd-sm-50p {
17262
    max-width: 50%;
17263
  }
16848 stevensc 17264
 
16825 efrain 17265
  .mn-wd-sm-50p {
17266
    min-width: 50%;
17267
  }
16848 stevensc 17268
 
16825 efrain 17269
  .wd-sm-50-f {
17270
    width: 50px !important;
17271
  }
16848 stevensc 17272
 
16825 efrain 17273
  .wd-sm-50p-f {
17274
    width: 50% !important;
17275
  }
16848 stevensc 17276
 
16825 efrain 17277
  .mx-wd-sm-50p-f {
17278
    max-width: 50% !important;
17279
  }
16848 stevensc 17280
 
16825 efrain 17281
  .mn-wd-sm-50p-f {
17282
    min-width: 50% !important;
17283
  }
16848 stevensc 17284
 
16825 efrain 17285
  .wd-sm-55 {
17286
    width: 55px;
17287
  }
16848 stevensc 17288
 
16825 efrain 17289
  .wd-sm-55p {
17290
    width: 55%;
17291
  }
16848 stevensc 17292
 
16825 efrain 17293
  .mx-wd-sm-55p {
17294
    max-width: 55%;
17295
  }
16848 stevensc 17296
 
16825 efrain 17297
  .mn-wd-sm-55p {
17298
    min-width: 55%;
17299
  }
16848 stevensc 17300
 
16825 efrain 17301
  .wd-sm-55-f {
17302
    width: 55px !important;
17303
  }
16848 stevensc 17304
 
16825 efrain 17305
  .wd-sm-55p-f {
17306
    width: 55% !important;
17307
  }
16848 stevensc 17308
 
16825 efrain 17309
  .mx-wd-sm-55p-f {
17310
    max-width: 55% !important;
17311
  }
16848 stevensc 17312
 
16825 efrain 17313
  .mn-wd-sm-55p-f {
17314
    min-width: 55% !important;
17315
  }
16848 stevensc 17316
 
16825 efrain 17317
  .wd-sm-60 {
17318
    width: 60px;
17319
  }
16848 stevensc 17320
 
16825 efrain 17321
  .wd-sm-60p {
17322
    width: 60%;
17323
  }
16848 stevensc 17324
 
16825 efrain 17325
  .mx-wd-sm-60p {
17326
    max-width: 60%;
17327
  }
16848 stevensc 17328
 
16825 efrain 17329
  .mn-wd-sm-60p {
17330
    min-width: 60%;
17331
  }
16848 stevensc 17332
 
16825 efrain 17333
  .wd-sm-60-f {
17334
    width: 60px !important;
17335
  }
16848 stevensc 17336
 
16825 efrain 17337
  .wd-sm-60p-f {
17338
    width: 60% !important;
17339
  }
16848 stevensc 17340
 
16825 efrain 17341
  .mx-wd-sm-60p-f {
17342
    max-width: 60% !important;
17343
  }
16848 stevensc 17344
 
16825 efrain 17345
  .mn-wd-sm-60p-f {
17346
    min-width: 60% !important;
17347
  }
16848 stevensc 17348
 
16825 efrain 17349
  .wd-sm-65 {
17350
    width: 65px;
17351
  }
16848 stevensc 17352
 
16825 efrain 17353
  .wd-sm-65p {
17354
    width: 65%;
17355
  }
16848 stevensc 17356
 
16825 efrain 17357
  .mx-wd-sm-65p {
17358
    max-width: 65%;
17359
  }
16848 stevensc 17360
 
16825 efrain 17361
  .mn-wd-sm-65p {
17362
    min-width: 65%;
17363
  }
16848 stevensc 17364
 
16825 efrain 17365
  .wd-sm-65-f {
17366
    width: 65px !important;
17367
  }
16848 stevensc 17368
 
16825 efrain 17369
  .wd-sm-65p-f {
17370
    width: 65% !important;
17371
  }
16848 stevensc 17372
 
16825 efrain 17373
  .mx-wd-sm-65p-f {
17374
    max-width: 65% !important;
17375
  }
16848 stevensc 17376
 
16825 efrain 17377
  .mn-wd-sm-65p-f {
17378
    min-width: 65% !important;
17379
  }
16848 stevensc 17380
 
16825 efrain 17381
  .wd-sm-70 {
17382
    width: 70px;
17383
  }
16848 stevensc 17384
 
16825 efrain 17385
  .wd-sm-70p {
17386
    width: 70%;
17387
  }
16848 stevensc 17388
 
16825 efrain 17389
  .mx-wd-sm-70p {
17390
    max-width: 70%;
17391
  }
16848 stevensc 17392
 
16825 efrain 17393
  .mn-wd-sm-70p {
17394
    min-width: 70%;
17395
  }
16848 stevensc 17396
 
16825 efrain 17397
  .wd-sm-70-f {
17398
    width: 70px !important;
17399
  }
16848 stevensc 17400
 
16825 efrain 17401
  .wd-sm-70p-f {
17402
    width: 70% !important;
17403
  }
16848 stevensc 17404
 
16825 efrain 17405
  .mx-wd-sm-70p-f {
17406
    max-width: 70% !important;
17407
  }
16848 stevensc 17408
 
16825 efrain 17409
  .mn-wd-sm-70p-f {
17410
    min-width: 70% !important;
17411
  }
16848 stevensc 17412
 
16825 efrain 17413
  .wd-sm-75 {
17414
    width: 75px;
17415
  }
16848 stevensc 17416
 
16825 efrain 17417
  .wd-sm-75p {
17418
    width: 75%;
17419
  }
16848 stevensc 17420
 
16825 efrain 17421
  .mx-wd-sm-75p {
17422
    max-width: 75%;
17423
  }
16848 stevensc 17424
 
16825 efrain 17425
  .mn-wd-sm-75p {
17426
    min-width: 75%;
17427
  }
16848 stevensc 17428
 
16825 efrain 17429
  .wd-sm-75-f {
17430
    width: 75px !important;
17431
  }
16848 stevensc 17432
 
16825 efrain 17433
  .wd-sm-75p-f {
17434
    width: 75% !important;
17435
  }
16848 stevensc 17436
 
16825 efrain 17437
  .mx-wd-sm-75p-f {
17438
    max-width: 75% !important;
17439
  }
16848 stevensc 17440
 
16825 efrain 17441
  .mn-wd-sm-75p-f {
17442
    min-width: 75% !important;
17443
  }
16848 stevensc 17444
 
16825 efrain 17445
  .wd-sm-80 {
17446
    width: 80px;
17447
  }
16848 stevensc 17448
 
16825 efrain 17449
  .wd-sm-80p {
17450
    width: 80%;
17451
  }
16848 stevensc 17452
 
16825 efrain 17453
  .mx-wd-sm-80p {
17454
    max-width: 80%;
17455
  }
16848 stevensc 17456
 
16825 efrain 17457
  .mn-wd-sm-80p {
17458
    min-width: 80%;
17459
  }
16848 stevensc 17460
 
16825 efrain 17461
  .wd-sm-80-f {
17462
    width: 80px !important;
17463
  }
16848 stevensc 17464
 
16825 efrain 17465
  .wd-sm-80p-f {
17466
    width: 80% !important;
17467
  }
16848 stevensc 17468
 
16825 efrain 17469
  .mx-wd-sm-80p-f {
17470
    max-width: 80% !important;
17471
  }
16848 stevensc 17472
 
16825 efrain 17473
  .mn-wd-sm-80p-f {
17474
    min-width: 80% !important;
17475
  }
16848 stevensc 17476
 
16825 efrain 17477
  .wd-sm-85 {
17478
    width: 85px;
17479
  }
16848 stevensc 17480
 
16825 efrain 17481
  .wd-sm-85p {
17482
    width: 85%;
17483
  }
16848 stevensc 17484
 
16825 efrain 17485
  .mx-wd-sm-85p {
17486
    max-width: 85%;
17487
  }
16848 stevensc 17488
 
16825 efrain 17489
  .mn-wd-sm-85p {
17490
    min-width: 85%;
17491
  }
16848 stevensc 17492
 
16825 efrain 17493
  .wd-sm-85-f {
17494
    width: 85px !important;
17495
  }
16848 stevensc 17496
 
16825 efrain 17497
  .wd-sm-85p-f {
17498
    width: 85% !important;
17499
  }
16848 stevensc 17500
 
16825 efrain 17501
  .mx-wd-sm-85p-f {
17502
    max-width: 85% !important;
17503
  }
16848 stevensc 17504
 
16825 efrain 17505
  .mn-wd-sm-85p-f {
17506
    min-width: 85% !important;
17507
  }
16848 stevensc 17508
 
16825 efrain 17509
  .wd-sm-90 {
17510
    width: 90px;
17511
  }
16848 stevensc 17512
 
16825 efrain 17513
  .wd-sm-90p {
17514
    width: 90%;
17515
  }
16848 stevensc 17516
 
16825 efrain 17517
  .mx-wd-sm-90p {
17518
    max-width: 90%;
17519
  }
16848 stevensc 17520
 
16825 efrain 17521
  .mn-wd-sm-90p {
17522
    min-width: 90%;
17523
  }
16848 stevensc 17524
 
16825 efrain 17525
  .wd-sm-90-f {
17526
    width: 90px !important;
17527
  }
16848 stevensc 17528
 
16825 efrain 17529
  .wd-sm-90p-f {
17530
    width: 90% !important;
17531
  }
16848 stevensc 17532
 
16825 efrain 17533
  .mx-wd-sm-90p-f {
17534
    max-width: 90% !important;
17535
  }
16848 stevensc 17536
 
16825 efrain 17537
  .mn-wd-sm-90p-f {
17538
    min-width: 90% !important;
17539
  }
16848 stevensc 17540
 
16825 efrain 17541
  .wd-sm-95 {
17542
    width: 95px;
17543
  }
16848 stevensc 17544
 
16825 efrain 17545
  .wd-sm-95p {
17546
    width: 95%;
17547
  }
16848 stevensc 17548
 
16825 efrain 17549
  .mx-wd-sm-95p {
17550
    max-width: 95%;
17551
  }
16848 stevensc 17552
 
16825 efrain 17553
  .mn-wd-sm-95p {
17554
    min-width: 95%;
17555
  }
16848 stevensc 17556
 
16825 efrain 17557
  .wd-sm-95-f {
17558
    width: 95px !important;
17559
  }
16848 stevensc 17560
 
16825 efrain 17561
  .wd-sm-95p-f {
17562
    width: 95% !important;
17563
  }
16848 stevensc 17564
 
16825 efrain 17565
  .mx-wd-sm-95p-f {
17566
    max-width: 95% !important;
17567
  }
16848 stevensc 17568
 
16825 efrain 17569
  .mn-wd-sm-95p-f {
17570
    min-width: 95% !important;
17571
  }
16848 stevensc 17572
 
16825 efrain 17573
  .wd-sm-100 {
17574
    width: 100px;
17575
  }
16848 stevensc 17576
 
16825 efrain 17577
  .wd-sm-100p {
17578
    width: 100%;
17579
  }
16848 stevensc 17580
 
16825 efrain 17581
  .mx-wd-sm-100p {
17582
    max-width: 100%;
17583
  }
16848 stevensc 17584
 
16825 efrain 17585
  .mn-wd-sm-100p {
17586
    min-width: 100%;
17587
  }
16848 stevensc 17588
 
16825 efrain 17589
  .wd-sm-100-f {
17590
    width: 100px !important;
17591
  }
16848 stevensc 17592
 
16825 efrain 17593
  .wd-sm-100p-f {
17594
    width: 100% !important;
17595
  }
16848 stevensc 17596
 
16825 efrain 17597
  .mx-wd-sm-100p-f {
17598
    max-width: 100% !important;
17599
  }
16848 stevensc 17600
 
16825 efrain 17601
  .mn-wd-sm-100p-f {
17602
    min-width: 100% !important;
17603
  }
16848 stevensc 17604
 
16825 efrain 17605
  .wd-sm-150 {
17606
    width: 150px;
17607
  }
16848 stevensc 17608
 
16825 efrain 17609
  .wd-sm-150p {
17610
    width: 150%;
17611
  }
16848 stevensc 17612
 
16825 efrain 17613
  .mx-wd-sm-150p {
17614
    max-width: 150%;
17615
  }
16848 stevensc 17616
 
16825 efrain 17617
  .mn-wd-sm-150p {
17618
    min-width: 150%;
17619
  }
16848 stevensc 17620
 
16825 efrain 17621
  .wd-sm-150-f {
17622
    width: 150px !important;
17623
  }
16848 stevensc 17624
 
16825 efrain 17625
  .wd-sm-150p-f {
17626
    width: 150% !important;
17627
  }
16848 stevensc 17628
 
16825 efrain 17629
  .mx-wd-sm-150p-f {
17630
    max-width: 150% !important;
17631
  }
16848 stevensc 17632
 
16825 efrain 17633
  .mn-wd-sm-150p-f {
17634
    min-width: 150% !important;
17635
  }
16848 stevensc 17636
 
16825 efrain 17637
  .wd-sm-200 {
17638
    width: 200px;
17639
  }
16848 stevensc 17640
 
16825 efrain 17641
  .wd-sm-200p {
17642
    width: 200%;
17643
  }
16848 stevensc 17644
 
16825 efrain 17645
  .mx-wd-sm-200p {
17646
    max-width: 200%;
17647
  }
16848 stevensc 17648
 
16825 efrain 17649
  .mn-wd-sm-200p {
17650
    min-width: 200%;
17651
  }
16848 stevensc 17652
 
16825 efrain 17653
  .wd-sm-200-f {
17654
    width: 200px !important;
17655
  }
16848 stevensc 17656
 
16825 efrain 17657
  .wd-sm-200p-f {
17658
    width: 200% !important;
17659
  }
16848 stevensc 17660
 
16825 efrain 17661
  .mx-wd-sm-200p-f {
17662
    max-width: 200% !important;
17663
  }
16848 stevensc 17664
 
16825 efrain 17665
  .mn-wd-sm-200p-f {
17666
    min-width: 200% !important;
17667
  }
16848 stevensc 17668
 
16825 efrain 17669
  .wd-sm-250 {
17670
    width: 250px;
17671
  }
16848 stevensc 17672
 
16825 efrain 17673
  .wd-sm-250p {
17674
    width: 250%;
17675
  }
16848 stevensc 17676
 
16825 efrain 17677
  .mx-wd-sm-250p {
17678
    max-width: 250%;
17679
  }
16848 stevensc 17680
 
16825 efrain 17681
  .mn-wd-sm-250p {
17682
    min-width: 250%;
17683
  }
16848 stevensc 17684
 
16825 efrain 17685
  .wd-sm-250-f {
17686
    width: 250px !important;
17687
  }
16848 stevensc 17688
 
16825 efrain 17689
  .wd-sm-250p-f {
17690
    width: 250% !important;
17691
  }
16848 stevensc 17692
 
16825 efrain 17693
  .mx-wd-sm-250p-f {
17694
    max-width: 250% !important;
17695
  }
16848 stevensc 17696
 
16825 efrain 17697
  .mn-wd-sm-250p-f {
17698
    min-width: 250% !important;
17699
  }
16848 stevensc 17700
 
16825 efrain 17701
  .wd-sm-300 {
17702
    width: 300px;
17703
  }
16848 stevensc 17704
 
16825 efrain 17705
  .wd-sm-300p {
17706
    width: 300%;
17707
  }
16848 stevensc 17708
 
16825 efrain 17709
  .mx-wd-sm-300p {
17710
    max-width: 300%;
17711
  }
16848 stevensc 17712
 
16825 efrain 17713
  .mn-wd-sm-300p {
17714
    min-width: 300%;
17715
  }
16848 stevensc 17716
 
16825 efrain 17717
  .wd-sm-300-f {
17718
    width: 300px !important;
17719
  }
16848 stevensc 17720
 
16825 efrain 17721
  .wd-sm-300p-f {
17722
    width: 300% !important;
17723
  }
16848 stevensc 17724
 
16825 efrain 17725
  .mx-wd-sm-300p-f {
17726
    max-width: 300% !important;
17727
  }
16848 stevensc 17728
 
16825 efrain 17729
  .mn-wd-sm-300p-f {
17730
    min-width: 300% !important;
17731
  }
16848 stevensc 17732
 
16825 efrain 17733
  .wd-sm-350 {
17734
    width: 350px;
17735
  }
16848 stevensc 17736
 
16825 efrain 17737
  .wd-sm-350p {
17738
    width: 350%;
17739
  }
16848 stevensc 17740
 
16825 efrain 17741
  .mx-wd-sm-350p {
17742
    max-width: 350%;
17743
  }
16848 stevensc 17744
 
16825 efrain 17745
  .mn-wd-sm-350p {
17746
    min-width: 350%;
17747
  }
16848 stevensc 17748
 
16825 efrain 17749
  .wd-sm-350-f {
17750
    width: 350px !important;
17751
  }
16848 stevensc 17752
 
16825 efrain 17753
  .wd-sm-350p-f {
17754
    width: 350% !important;
17755
  }
16848 stevensc 17756
 
16825 efrain 17757
  .mx-wd-sm-350p-f {
17758
    max-width: 350% !important;
17759
  }
16848 stevensc 17760
 
16825 efrain 17761
  .mn-wd-sm-350p-f {
17762
    min-width: 350% !important;
17763
  }
16848 stevensc 17764
 
16825 efrain 17765
  .wd-sm-400 {
17766
    width: 400px;
17767
  }
16848 stevensc 17768
 
16825 efrain 17769
  .wd-sm-400p {
17770
    width: 400%;
17771
  }
16848 stevensc 17772
 
16825 efrain 17773
  .mx-wd-sm-400p {
17774
    max-width: 400%;
17775
  }
16848 stevensc 17776
 
16825 efrain 17777
  .mn-wd-sm-400p {
17778
    min-width: 400%;
17779
  }
16848 stevensc 17780
 
16825 efrain 17781
  .wd-sm-400-f {
17782
    width: 400px !important;
17783
  }
16848 stevensc 17784
 
16825 efrain 17785
  .wd-sm-400p-f {
17786
    width: 400% !important;
17787
  }
16848 stevensc 17788
 
16825 efrain 17789
  .mx-wd-sm-400p-f {
17790
    max-width: 400% !important;
17791
  }
16848 stevensc 17792
 
16825 efrain 17793
  .mn-wd-sm-400p-f {
17794
    min-width: 400% !important;
17795
  }
16848 stevensc 17796
 
16825 efrain 17797
  .wd-sm-450 {
17798
    width: 450px;
17799
  }
16848 stevensc 17800
 
16825 efrain 17801
  .wd-sm-450p {
17802
    width: 450%;
17803
  }
16848 stevensc 17804
 
16825 efrain 17805
  .mx-wd-sm-450p {
17806
    max-width: 450%;
17807
  }
16848 stevensc 17808
 
16825 efrain 17809
  .mn-wd-sm-450p {
17810
    min-width: 450%;
17811
  }
16848 stevensc 17812
 
16825 efrain 17813
  .wd-sm-450-f {
17814
    width: 450px !important;
17815
  }
16848 stevensc 17816
 
16825 efrain 17817
  .wd-sm-450p-f {
17818
    width: 450% !important;
17819
  }
16848 stevensc 17820
 
16825 efrain 17821
  .mx-wd-sm-450p-f {
17822
    max-width: 450% !important;
17823
  }
16848 stevensc 17824
 
16825 efrain 17825
  .mn-wd-sm-450p-f {
17826
    min-width: 450% !important;
17827
  }
16848 stevensc 17828
 
16825 efrain 17829
  .wd-sm-500 {
17830
    width: 500px;
17831
  }
16848 stevensc 17832
 
16825 efrain 17833
  .wd-sm-500p {
17834
    width: 500%;
17835
  }
16848 stevensc 17836
 
16825 efrain 17837
  .mx-wd-sm-500p {
17838
    max-width: 500%;
17839
  }
16848 stevensc 17840
 
16825 efrain 17841
  .mn-wd-sm-500p {
17842
    min-width: 500%;
17843
  }
16848 stevensc 17844
 
16825 efrain 17845
  .wd-sm-500-f {
17846
    width: 500px !important;
17847
  }
16848 stevensc 17848
 
16825 efrain 17849
  .wd-sm-500p-f {
17850
    width: 500% !important;
17851
  }
16848 stevensc 17852
 
16825 efrain 17853
  .mx-wd-sm-500p-f {
17854
    max-width: 500% !important;
17855
  }
16848 stevensc 17856
 
16825 efrain 17857
  .mn-wd-sm-500p-f {
17858
    min-width: 500% !important;
17859
  }
16848 stevensc 17860
 
16825 efrain 17861
  .wd-sm-550 {
17862
    width: 550px;
17863
  }
16848 stevensc 17864
 
16825 efrain 17865
  .wd-sm-550p {
17866
    width: 550%;
17867
  }
16848 stevensc 17868
 
16825 efrain 17869
  .mx-wd-sm-550p {
17870
    max-width: 550%;
17871
  }
16848 stevensc 17872
 
16825 efrain 17873
  .mn-wd-sm-550p {
17874
    min-width: 550%;
17875
  }
16848 stevensc 17876
 
16825 efrain 17877
  .wd-sm-550-f {
17878
    width: 550px !important;
17879
  }
16848 stevensc 17880
 
16825 efrain 17881
  .wd-sm-550p-f {
17882
    width: 550% !important;
17883
  }
16848 stevensc 17884
 
16825 efrain 17885
  .mx-wd-sm-550p-f {
17886
    max-width: 550% !important;
17887
  }
16848 stevensc 17888
 
16825 efrain 17889
  .mn-wd-sm-550p-f {
17890
    min-width: 550% !important;
17891
  }
16848 stevensc 17892
 
16825 efrain 17893
  .wd-sm-600 {
17894
    width: 600px;
17895
  }
16848 stevensc 17896
 
16825 efrain 17897
  .wd-sm-600p {
17898
    width: 600%;
17899
  }
16848 stevensc 17900
 
16825 efrain 17901
  .mx-wd-sm-600p {
17902
    max-width: 600%;
17903
  }
16848 stevensc 17904
 
16825 efrain 17905
  .mn-wd-sm-600p {
17906
    min-width: 600%;
17907
  }
16848 stevensc 17908
 
16825 efrain 17909
  .wd-sm-600-f {
17910
    width: 600px !important;
17911
  }
16848 stevensc 17912
 
16825 efrain 17913
  .wd-sm-600p-f {
17914
    width: 600% !important;
17915
  }
16848 stevensc 17916
 
16825 efrain 17917
  .mx-wd-sm-600p-f {
17918
    max-width: 600% !important;
17919
  }
16848 stevensc 17920
 
16825 efrain 17921
  .mn-wd-sm-600p-f {
17922
    min-width: 600% !important;
17923
  }
16848 stevensc 17924
 
16825 efrain 17925
  .wd-sm-650 {
17926
    width: 650px;
17927
  }
16848 stevensc 17928
 
16825 efrain 17929
  .wd-sm-650p {
17930
    width: 650%;
17931
  }
16848 stevensc 17932
 
16825 efrain 17933
  .mx-wd-sm-650p {
17934
    max-width: 650%;
17935
  }
16848 stevensc 17936
 
16825 efrain 17937
  .mn-wd-sm-650p {
17938
    min-width: 650%;
17939
  }
16848 stevensc 17940
 
16825 efrain 17941
  .wd-sm-650-f {
17942
    width: 650px !important;
17943
  }
16848 stevensc 17944
 
16825 efrain 17945
  .wd-sm-650p-f {
17946
    width: 650% !important;
17947
  }
16848 stevensc 17948
 
16825 efrain 17949
  .mx-wd-sm-650p-f {
17950
    max-width: 650% !important;
17951
  }
16848 stevensc 17952
 
16825 efrain 17953
  .mn-wd-sm-650p-f {
17954
    min-width: 650% !important;
17955
  }
16848 stevensc 17956
 
16825 efrain 17957
  .wd-sm-700 {
17958
    width: 700px;
17959
  }
16848 stevensc 17960
 
16825 efrain 17961
  .wd-sm-700p {
17962
    width: 700%;
17963
  }
16848 stevensc 17964
 
16825 efrain 17965
  .mx-wd-sm-700p {
17966
    max-width: 700%;
17967
  }
16848 stevensc 17968
 
16825 efrain 17969
  .mn-wd-sm-700p {
17970
    min-width: 700%;
17971
  }
16848 stevensc 17972
 
16825 efrain 17973
  .wd-sm-700-f {
17974
    width: 700px !important;
17975
  }
16848 stevensc 17976
 
16825 efrain 17977
  .wd-sm-700p-f {
17978
    width: 700% !important;
17979
  }
16848 stevensc 17980
 
16825 efrain 17981
  .mx-wd-sm-700p-f {
17982
    max-width: 700% !important;
17983
  }
16848 stevensc 17984
 
16825 efrain 17985
  .mn-wd-sm-700p-f {
17986
    min-width: 700% !important;
17987
  }
16848 stevensc 17988
 
16825 efrain 17989
  .wd-sm-750 {
17990
    width: 750px;
17991
  }
16848 stevensc 17992
 
16825 efrain 17993
  .wd-sm-750p {
17994
    width: 750%;
17995
  }
16848 stevensc 17996
 
16825 efrain 17997
  .mx-wd-sm-750p {
17998
    max-width: 750%;
17999
  }
16848 stevensc 18000
 
16825 efrain 18001
  .mn-wd-sm-750p {
18002
    min-width: 750%;
18003
  }
16848 stevensc 18004
 
16825 efrain 18005
  .wd-sm-750-f {
18006
    width: 750px !important;
18007
  }
16848 stevensc 18008
 
16825 efrain 18009
  .wd-sm-750p-f {
18010
    width: 750% !important;
18011
  }
16848 stevensc 18012
 
16825 efrain 18013
  .mx-wd-sm-750p-f {
18014
    max-width: 750% !important;
18015
  }
16848 stevensc 18016
 
16825 efrain 18017
  .mn-wd-sm-750p-f {
18018
    min-width: 750% !important;
18019
  }
16848 stevensc 18020
 
16825 efrain 18021
  .wd-sm-800 {
18022
    width: 800px;
18023
  }
16848 stevensc 18024
 
16825 efrain 18025
  .wd-sm-800p {
18026
    width: 800%;
18027
  }
16848 stevensc 18028
 
16825 efrain 18029
  .mx-wd-sm-800p {
18030
    max-width: 800%;
18031
  }
16848 stevensc 18032
 
16825 efrain 18033
  .mn-wd-sm-800p {
18034
    min-width: 800%;
18035
  }
16848 stevensc 18036
 
16825 efrain 18037
  .wd-sm-800-f {
18038
    width: 800px !important;
18039
  }
16848 stevensc 18040
 
16825 efrain 18041
  .wd-sm-800p-f {
18042
    width: 800% !important;
18043
  }
16848 stevensc 18044
 
16825 efrain 18045
  .mx-wd-sm-800p-f {
18046
    max-width: 800% !important;
18047
  }
16848 stevensc 18048
 
16825 efrain 18049
  .mn-wd-sm-800p-f {
18050
    min-width: 800% !important;
18051
  }
16848 stevensc 18052
 
16825 efrain 18053
  .wd-sm-850 {
18054
    width: 850px;
18055
  }
16848 stevensc 18056
 
16825 efrain 18057
  .wd-sm-850p {
18058
    width: 850%;
18059
  }
16848 stevensc 18060
 
16825 efrain 18061
  .mx-wd-sm-850p {
18062
    max-width: 850%;
18063
  }
16848 stevensc 18064
 
16825 efrain 18065
  .mn-wd-sm-850p {
18066
    min-width: 850%;
18067
  }
16848 stevensc 18068
 
16825 efrain 18069
  .wd-sm-850-f {
18070
    width: 850px !important;
18071
  }
16848 stevensc 18072
 
16825 efrain 18073
  .wd-sm-850p-f {
18074
    width: 850% !important;
18075
  }
16848 stevensc 18076
 
16825 efrain 18077
  .mx-wd-sm-850p-f {
18078
    max-width: 850% !important;
18079
  }
16848 stevensc 18080
 
16825 efrain 18081
  .mn-wd-sm-850p-f {
18082
    min-width: 850% !important;
18083
  }
16848 stevensc 18084
 
16825 efrain 18085
  .wd-sm-900 {
18086
    width: 900px;
18087
  }
16848 stevensc 18088
 
16825 efrain 18089
  .wd-sm-900p {
18090
    width: 900%;
18091
  }
16848 stevensc 18092
 
16825 efrain 18093
  .mx-wd-sm-900p {
18094
    max-width: 900%;
18095
  }
16848 stevensc 18096
 
16825 efrain 18097
  .mn-wd-sm-900p {
18098
    min-width: 900%;
18099
  }
16848 stevensc 18100
 
16825 efrain 18101
  .wd-sm-900-f {
18102
    width: 900px !important;
18103
  }
16848 stevensc 18104
 
16825 efrain 18105
  .wd-sm-900p-f {
18106
    width: 900% !important;
18107
  }
16848 stevensc 18108
 
16825 efrain 18109
  .mx-wd-sm-900p-f {
18110
    max-width: 900% !important;
18111
  }
16848 stevensc 18112
 
16825 efrain 18113
  .mn-wd-sm-900p-f {
18114
    min-width: 900% !important;
18115
  }
16848 stevensc 18116
 
16825 efrain 18117
  .wd-sm-950 {
18118
    width: 950px;
18119
  }
16848 stevensc 18120
 
16825 efrain 18121
  .wd-sm-950p {
18122
    width: 950%;
18123
  }
16848 stevensc 18124
 
16825 efrain 18125
  .mx-wd-sm-950p {
18126
    max-width: 950%;
18127
  }
16848 stevensc 18128
 
16825 efrain 18129
  .mn-wd-sm-950p {
18130
    min-width: 950%;
18131
  }
16848 stevensc 18132
 
16825 efrain 18133
  .wd-sm-950-f {
18134
    width: 950px !important;
18135
  }
16848 stevensc 18136
 
16825 efrain 18137
  .wd-sm-950p-f {
18138
    width: 950% !important;
18139
  }
16848 stevensc 18140
 
16825 efrain 18141
  .mx-wd-sm-950p-f {
18142
    max-width: 950% !important;
18143
  }
16848 stevensc 18144
 
16825 efrain 18145
  .mn-wd-sm-950p-f {
18146
    min-width: 950% !important;
18147
  }
16848 stevensc 18148
 
16825 efrain 18149
  .wd-sm-1000 {
18150
    width: 1000px;
18151
  }
16848 stevensc 18152
 
16825 efrain 18153
  .wd-sm-1000p {
18154
    width: 1000%;
18155
  }
16848 stevensc 18156
 
16825 efrain 18157
  .mx-wd-sm-1000p {
18158
    max-width: 1000%;
18159
  }
16848 stevensc 18160
 
16825 efrain 18161
  .mn-wd-sm-1000p {
18162
    min-width: 1000%;
18163
  }
16848 stevensc 18164
 
16825 efrain 18165
  .wd-sm-1000-f {
18166
    width: 1000px !important;
18167
  }
16848 stevensc 18168
 
16825 efrain 18169
  .wd-sm-1000p-f {
18170
    width: 1000% !important;
18171
  }
16848 stevensc 18172
 
16825 efrain 18173
  .mx-wd-sm-1000p-f {
18174
    max-width: 1000% !important;
18175
  }
16848 stevensc 18176
 
16825 efrain 18177
  .mn-wd-sm-1000p-f {
18178
    min-width: 1000% !important;
18179
  }
16848 stevensc 18180
 
16825 efrain 18181
  .wd-sm-auto {
18182
    width: auto;
18183
  }
16848 stevensc 18184
 
16825 efrain 18185
  .wd-sm-auto-f {
18186
    width: auto !important;
18187
  }
18188
}
16848 stevensc 18189
 
16825 efrain 18190
@media (min-width: 768px) {
18191
  .wd-md-5 {
18192
    width: 5px;
18193
  }
16848 stevensc 18194
 
16825 efrain 18195
  .wd-md-5p {
18196
    width: 5%;
18197
  }
16848 stevensc 18198
 
16825 efrain 18199
  .mx-wd-md-5p {
18200
    max-width: 5%;
18201
  }
16848 stevensc 18202
 
16825 efrain 18203
  .mn-wd-md-5p {
18204
    min-width: 5%;
18205
  }
16848 stevensc 18206
 
16825 efrain 18207
  .wd-md-5-f {
18208
    width: 5px !important;
18209
  }
16848 stevensc 18210
 
16825 efrain 18211
  .wd-md-5p-f {
18212
    width: 5% !important;
18213
  }
16848 stevensc 18214
 
16825 efrain 18215
  .mx-wd-md-5p-f {
18216
    max-width: 5% !important;
18217
  }
16848 stevensc 18218
 
16825 efrain 18219
  .mn-wd-md-5p-f {
18220
    min-width: 5% !important;
18221
  }
16848 stevensc 18222
 
16825 efrain 18223
  .wd-md-10 {
18224
    width: 10px;
18225
  }
16848 stevensc 18226
 
16825 efrain 18227
  .wd-md-10p {
18228
    width: 10%;
18229
  }
16848 stevensc 18230
 
16825 efrain 18231
  .mx-wd-md-10p {
18232
    max-width: 10%;
18233
  }
16848 stevensc 18234
 
16825 efrain 18235
  .mn-wd-md-10p {
18236
    min-width: 10%;
18237
  }
16848 stevensc 18238
 
16825 efrain 18239
  .wd-md-10-f {
18240
    width: 10px !important;
18241
  }
16848 stevensc 18242
 
16825 efrain 18243
  .wd-md-10p-f {
18244
    width: 10% !important;
18245
  }
16848 stevensc 18246
 
16825 efrain 18247
  .mx-wd-md-10p-f {
18248
    max-width: 10% !important;
18249
  }
16848 stevensc 18250
 
16825 efrain 18251
  .mn-wd-md-10p-f {
18252
    min-width: 10% !important;
18253
  }
16848 stevensc 18254
 
16825 efrain 18255
  .wd-md-15 {
18256
    width: 15px;
18257
  }
16848 stevensc 18258
 
16825 efrain 18259
  .wd-md-15p {
18260
    width: 15%;
18261
  }
16848 stevensc 18262
 
16825 efrain 18263
  .mx-wd-md-15p {
18264
    max-width: 15%;
18265
  }
16848 stevensc 18266
 
16825 efrain 18267
  .mn-wd-md-15p {
18268
    min-width: 15%;
18269
  }
16848 stevensc 18270
 
16825 efrain 18271
  .wd-md-15-f {
18272
    width: 15px !important;
18273
  }
16848 stevensc 18274
 
16825 efrain 18275
  .wd-md-15p-f {
18276
    width: 15% !important;
18277
  }
16848 stevensc 18278
 
16825 efrain 18279
  .mx-wd-md-15p-f {
18280
    max-width: 15% !important;
18281
  }
16848 stevensc 18282
 
16825 efrain 18283
  .mn-wd-md-15p-f {
18284
    min-width: 15% !important;
18285
  }
16848 stevensc 18286
 
16825 efrain 18287
  .wd-md-20 {
18288
    width: 20px;
18289
  }
16848 stevensc 18290
 
16825 efrain 18291
  .wd-md-20p {
18292
    width: 20%;
18293
  }
16848 stevensc 18294
 
16825 efrain 18295
  .mx-wd-md-20p {
18296
    max-width: 20%;
18297
  }
16848 stevensc 18298
 
16825 efrain 18299
  .mn-wd-md-20p {
18300
    min-width: 20%;
18301
  }
16848 stevensc 18302
 
16825 efrain 18303
  .wd-md-20-f {
18304
    width: 20px !important;
18305
  }
16848 stevensc 18306
 
16825 efrain 18307
  .wd-md-20p-f {
18308
    width: 20% !important;
18309
  }
16848 stevensc 18310
 
16825 efrain 18311
  .mx-wd-md-20p-f {
18312
    max-width: 20% !important;
18313
  }
16848 stevensc 18314
 
16825 efrain 18315
  .mn-wd-md-20p-f {
18316
    min-width: 20% !important;
18317
  }
16848 stevensc 18318
 
16825 efrain 18319
  .wd-md-25 {
18320
    width: 25px;
18321
  }
16848 stevensc 18322
 
16825 efrain 18323
  .wd-md-25p {
18324
    width: 25%;
18325
  }
16848 stevensc 18326
 
16825 efrain 18327
  .mx-wd-md-25p {
18328
    max-width: 25%;
18329
  }
16848 stevensc 18330
 
16825 efrain 18331
  .mn-wd-md-25p {
18332
    min-width: 25%;
18333
  }
16848 stevensc 18334
 
16825 efrain 18335
  .wd-md-25-f {
18336
    width: 25px !important;
18337
  }
16848 stevensc 18338
 
16825 efrain 18339
  .wd-md-25p-f {
18340
    width: 25% !important;
18341
  }
16848 stevensc 18342
 
16825 efrain 18343
  .mx-wd-md-25p-f {
18344
    max-width: 25% !important;
18345
  }
16848 stevensc 18346
 
16825 efrain 18347
  .mn-wd-md-25p-f {
18348
    min-width: 25% !important;
18349
  }
16848 stevensc 18350
 
16825 efrain 18351
  .wd-md-30 {
18352
    width: 30px;
18353
  }
16848 stevensc 18354
 
16825 efrain 18355
  .wd-md-30p {
18356
    width: 30%;
18357
  }
16848 stevensc 18358
 
16825 efrain 18359
  .mx-wd-md-30p {
18360
    max-width: 30%;
18361
  }
16848 stevensc 18362
 
16825 efrain 18363
  .mn-wd-md-30p {
18364
    min-width: 30%;
18365
  }
16848 stevensc 18366
 
16825 efrain 18367
  .wd-md-30-f {
18368
    width: 30px !important;
18369
  }
16848 stevensc 18370
 
16825 efrain 18371
  .wd-md-30p-f {
18372
    width: 30% !important;
18373
  }
16848 stevensc 18374
 
16825 efrain 18375
  .mx-wd-md-30p-f {
18376
    max-width: 30% !important;
18377
  }
16848 stevensc 18378
 
16825 efrain 18379
  .mn-wd-md-30p-f {
18380
    min-width: 30% !important;
18381
  }
16848 stevensc 18382
 
16825 efrain 18383
  .wd-md-35 {
18384
    width: 35px;
18385
  }
16848 stevensc 18386
 
16825 efrain 18387
  .wd-md-35p {
18388
    width: 35%;
18389
  }
16848 stevensc 18390
 
16825 efrain 18391
  .mx-wd-md-35p {
18392
    max-width: 35%;
18393
  }
16848 stevensc 18394
 
16825 efrain 18395
  .mn-wd-md-35p {
18396
    min-width: 35%;
18397
  }
16848 stevensc 18398
 
16825 efrain 18399
  .wd-md-35-f {
18400
    width: 35px !important;
18401
  }
16848 stevensc 18402
 
16825 efrain 18403
  .wd-md-35p-f {
18404
    width: 35% !important;
18405
  }
16848 stevensc 18406
 
16825 efrain 18407
  .mx-wd-md-35p-f {
18408
    max-width: 35% !important;
18409
  }
16848 stevensc 18410
 
16825 efrain 18411
  .mn-wd-md-35p-f {
18412
    min-width: 35% !important;
18413
  }
16848 stevensc 18414
 
16825 efrain 18415
  .wd-md-40 {
18416
    width: 40px;
18417
  }
16848 stevensc 18418
 
16825 efrain 18419
  .wd-md-40p {
18420
    width: 40%;
18421
  }
16848 stevensc 18422
 
16825 efrain 18423
  .mx-wd-md-40p {
18424
    max-width: 40%;
18425
  }
16848 stevensc 18426
 
16825 efrain 18427
  .mn-wd-md-40p {
18428
    min-width: 40%;
18429
  }
16848 stevensc 18430
 
16825 efrain 18431
  .wd-md-40-f {
18432
    width: 40px !important;
18433
  }
16848 stevensc 18434
 
16825 efrain 18435
  .wd-md-40p-f {
18436
    width: 40% !important;
18437
  }
16848 stevensc 18438
 
16825 efrain 18439
  .mx-wd-md-40p-f {
18440
    max-width: 40% !important;
18441
  }
16848 stevensc 18442
 
16825 efrain 18443
  .mn-wd-md-40p-f {
18444
    min-width: 40% !important;
18445
  }
16848 stevensc 18446
 
16825 efrain 18447
  .wd-md-45 {
18448
    width: 45px;
18449
  }
16848 stevensc 18450
 
16825 efrain 18451
  .wd-md-45p {
18452
    width: 45%;
18453
  }
16848 stevensc 18454
 
16825 efrain 18455
  .mx-wd-md-45p {
18456
    max-width: 45%;
18457
  }
16848 stevensc 18458
 
16825 efrain 18459
  .mn-wd-md-45p {
18460
    min-width: 45%;
18461
  }
16848 stevensc 18462
 
16825 efrain 18463
  .wd-md-45-f {
18464
    width: 45px !important;
18465
  }
16848 stevensc 18466
 
16825 efrain 18467
  .wd-md-45p-f {
18468
    width: 45% !important;
18469
  }
16848 stevensc 18470
 
16825 efrain 18471
  .mx-wd-md-45p-f {
18472
    max-width: 45% !important;
18473
  }
16848 stevensc 18474
 
16825 efrain 18475
  .mn-wd-md-45p-f {
18476
    min-width: 45% !important;
18477
  }
16848 stevensc 18478
 
16825 efrain 18479
  .wd-md-50 {
18480
    width: 50px;
18481
  }
16848 stevensc 18482
 
16825 efrain 18483
  .wd-md-50p {
18484
    width: 50%;
18485
  }
16848 stevensc 18486
 
16825 efrain 18487
  .mx-wd-md-50p {
18488
    max-width: 50%;
18489
  }
16848 stevensc 18490
 
16825 efrain 18491
  .mn-wd-md-50p {
18492
    min-width: 50%;
18493
  }
16848 stevensc 18494
 
16825 efrain 18495
  .wd-md-50-f {
18496
    width: 50px !important;
18497
  }
16848 stevensc 18498
 
16825 efrain 18499
  .wd-md-50p-f {
18500
    width: 50% !important;
18501
  }
16848 stevensc 18502
 
16825 efrain 18503
  .mx-wd-md-50p-f {
18504
    max-width: 50% !important;
18505
  }
16848 stevensc 18506
 
16825 efrain 18507
  .mn-wd-md-50p-f {
18508
    min-width: 50% !important;
18509
  }
16848 stevensc 18510
 
16825 efrain 18511
  .wd-md-55 {
18512
    width: 55px;
18513
  }
16848 stevensc 18514
 
16825 efrain 18515
  .wd-md-55p {
18516
    width: 55%;
18517
  }
16848 stevensc 18518
 
16825 efrain 18519
  .mx-wd-md-55p {
18520
    max-width: 55%;
18521
  }
16848 stevensc 18522
 
16825 efrain 18523
  .mn-wd-md-55p {
18524
    min-width: 55%;
18525
  }
16848 stevensc 18526
 
16825 efrain 18527
  .wd-md-55-f {
18528
    width: 55px !important;
18529
  }
16848 stevensc 18530
 
16825 efrain 18531
  .wd-md-55p-f {
18532
    width: 55% !important;
18533
  }
16848 stevensc 18534
 
16825 efrain 18535
  .mx-wd-md-55p-f {
18536
    max-width: 55% !important;
18537
  }
16848 stevensc 18538
 
16825 efrain 18539
  .mn-wd-md-55p-f {
18540
    min-width: 55% !important;
18541
  }
16848 stevensc 18542
 
16825 efrain 18543
  .wd-md-60 {
18544
    width: 60px;
18545
  }
16848 stevensc 18546
 
16825 efrain 18547
  .wd-md-60p {
18548
    width: 60%;
18549
  }
16848 stevensc 18550
 
16825 efrain 18551
  .mx-wd-md-60p {
18552
    max-width: 60%;
18553
  }
16848 stevensc 18554
 
16825 efrain 18555
  .mn-wd-md-60p {
18556
    min-width: 60%;
18557
  }
16848 stevensc 18558
 
16825 efrain 18559
  .wd-md-60-f {
18560
    width: 60px !important;
18561
  }
16848 stevensc 18562
 
16825 efrain 18563
  .wd-md-60p-f {
18564
    width: 60% !important;
18565
  }
16848 stevensc 18566
 
16825 efrain 18567
  .mx-wd-md-60p-f {
18568
    max-width: 60% !important;
18569
  }
16848 stevensc 18570
 
16825 efrain 18571
  .mn-wd-md-60p-f {
18572
    min-width: 60% !important;
18573
  }
16848 stevensc 18574
 
16825 efrain 18575
  .wd-md-65 {
18576
    width: 65px;
18577
  }
16848 stevensc 18578
 
16825 efrain 18579
  .wd-md-65p {
18580
    width: 65%;
18581
  }
16848 stevensc 18582
 
16825 efrain 18583
  .mx-wd-md-65p {
18584
    max-width: 65%;
18585
  }
16848 stevensc 18586
 
16825 efrain 18587
  .mn-wd-md-65p {
18588
    min-width: 65%;
18589
  }
16848 stevensc 18590
 
16825 efrain 18591
  .wd-md-65-f {
18592
    width: 65px !important;
18593
  }
16848 stevensc 18594
 
16825 efrain 18595
  .wd-md-65p-f {
18596
    width: 65% !important;
18597
  }
16848 stevensc 18598
 
16825 efrain 18599
  .mx-wd-md-65p-f {
18600
    max-width: 65% !important;
18601
  }
16848 stevensc 18602
 
16825 efrain 18603
  .mn-wd-md-65p-f {
18604
    min-width: 65% !important;
18605
  }
16848 stevensc 18606
 
16825 efrain 18607
  .wd-md-70 {
18608
    width: 70px;
18609
  }
16848 stevensc 18610
 
16825 efrain 18611
  .wd-md-70p {
18612
    width: 70%;
18613
  }
16848 stevensc 18614
 
16825 efrain 18615
  .mx-wd-md-70p {
18616
    max-width: 70%;
18617
  }
16848 stevensc 18618
 
16825 efrain 18619
  .mn-wd-md-70p {
18620
    min-width: 70%;
18621
  }
16848 stevensc 18622
 
16825 efrain 18623
  .wd-md-70-f {
18624
    width: 70px !important;
18625
  }
16848 stevensc 18626
 
16825 efrain 18627
  .wd-md-70p-f {
18628
    width: 70% !important;
18629
  }
16848 stevensc 18630
 
16825 efrain 18631
  .mx-wd-md-70p-f {
18632
    max-width: 70% !important;
18633
  }
16848 stevensc 18634
 
16825 efrain 18635
  .mn-wd-md-70p-f {
18636
    min-width: 70% !important;
18637
  }
16848 stevensc 18638
 
16825 efrain 18639
  .wd-md-75 {
18640
    width: 75px;
18641
  }
16848 stevensc 18642
 
16825 efrain 18643
  .wd-md-75p {
18644
    width: 75%;
18645
  }
16848 stevensc 18646
 
16825 efrain 18647
  .mx-wd-md-75p {
18648
    max-width: 75%;
18649
  }
16848 stevensc 18650
 
16825 efrain 18651
  .mn-wd-md-75p {
18652
    min-width: 75%;
18653
  }
16848 stevensc 18654
 
16825 efrain 18655
  .wd-md-75-f {
18656
    width: 75px !important;
18657
  }
16848 stevensc 18658
 
16825 efrain 18659
  .wd-md-75p-f {
18660
    width: 75% !important;
18661
  }
16848 stevensc 18662
 
16825 efrain 18663
  .mx-wd-md-75p-f {
18664
    max-width: 75% !important;
18665
  }
16848 stevensc 18666
 
16825 efrain 18667
  .mn-wd-md-75p-f {
18668
    min-width: 75% !important;
18669
  }
16848 stevensc 18670
 
16825 efrain 18671
  .wd-md-80 {
18672
    width: 80px;
18673
  }
16848 stevensc 18674
 
16825 efrain 18675
  .wd-md-80p {
18676
    width: 80%;
18677
  }
16848 stevensc 18678
 
16825 efrain 18679
  .mx-wd-md-80p {
18680
    max-width: 80%;
18681
  }
16848 stevensc 18682
 
16825 efrain 18683
  .mn-wd-md-80p {
18684
    min-width: 80%;
18685
  }
16848 stevensc 18686
 
16825 efrain 18687
  .wd-md-80-f {
18688
    width: 80px !important;
18689
  }
16848 stevensc 18690
 
16825 efrain 18691
  .wd-md-80p-f {
18692
    width: 80% !important;
18693
  }
16848 stevensc 18694
 
16825 efrain 18695
  .mx-wd-md-80p-f {
18696
    max-width: 80% !important;
18697
  }
16848 stevensc 18698
 
16825 efrain 18699
  .mn-wd-md-80p-f {
18700
    min-width: 80% !important;
18701
  }
16848 stevensc 18702
 
16825 efrain 18703
  .wd-md-85 {
18704
    width: 85px;
18705
  }
16848 stevensc 18706
 
16825 efrain 18707
  .wd-md-85p {
18708
    width: 85%;
18709
  }
16848 stevensc 18710
 
16825 efrain 18711
  .mx-wd-md-85p {
18712
    max-width: 85%;
18713
  }
16848 stevensc 18714
 
16825 efrain 18715
  .mn-wd-md-85p {
18716
    min-width: 85%;
18717
  }
16848 stevensc 18718
 
16825 efrain 18719
  .wd-md-85-f {
18720
    width: 85px !important;
18721
  }
16848 stevensc 18722
 
16825 efrain 18723
  .wd-md-85p-f {
18724
    width: 85% !important;
18725
  }
16848 stevensc 18726
 
16825 efrain 18727
  .mx-wd-md-85p-f {
18728
    max-width: 85% !important;
18729
  }
16848 stevensc 18730
 
16825 efrain 18731
  .mn-wd-md-85p-f {
18732
    min-width: 85% !important;
18733
  }
16848 stevensc 18734
 
16825 efrain 18735
  .wd-md-90 {
18736
    width: 90px;
18737
  }
16848 stevensc 18738
 
16825 efrain 18739
  .wd-md-90p {
18740
    width: 90%;
18741
  }
16848 stevensc 18742
 
16825 efrain 18743
  .mx-wd-md-90p {
18744
    max-width: 90%;
18745
  }
16848 stevensc 18746
 
16825 efrain 18747
  .mn-wd-md-90p {
18748
    min-width: 90%;
18749
  }
16848 stevensc 18750
 
16825 efrain 18751
  .wd-md-90-f {
18752
    width: 90px !important;
18753
  }
16848 stevensc 18754
 
16825 efrain 18755
  .wd-md-90p-f {
18756
    width: 90% !important;
18757
  }
16848 stevensc 18758
 
16825 efrain 18759
  .mx-wd-md-90p-f {
18760
    max-width: 90% !important;
18761
  }
16848 stevensc 18762
 
16825 efrain 18763
  .mn-wd-md-90p-f {
18764
    min-width: 90% !important;
18765
  }
16848 stevensc 18766
 
16825 efrain 18767
  .wd-md-95 {
18768
    width: 95px;
18769
  }
16848 stevensc 18770
 
16825 efrain 18771
  .wd-md-95p {
18772
    width: 95%;
18773
  }
16848 stevensc 18774
 
16825 efrain 18775
  .mx-wd-md-95p {
18776
    max-width: 95%;
18777
  }
16848 stevensc 18778
 
16825 efrain 18779
  .mn-wd-md-95p {
18780
    min-width: 95%;
18781
  }
16848 stevensc 18782
 
16825 efrain 18783
  .wd-md-95-f {
18784
    width: 95px !important;
18785
  }
16848 stevensc 18786
 
16825 efrain 18787
  .wd-md-95p-f {
18788
    width: 95% !important;
18789
  }
16848 stevensc 18790
 
16825 efrain 18791
  .mx-wd-md-95p-f {
18792
    max-width: 95% !important;
18793
  }
16848 stevensc 18794
 
16825 efrain 18795
  .mn-wd-md-95p-f {
18796
    min-width: 95% !important;
18797
  }
16848 stevensc 18798
 
16825 efrain 18799
  .wd-md-100 {
18800
    width: 100px;
18801
  }
16848 stevensc 18802
 
16825 efrain 18803
  .wd-md-100p {
18804
    width: 100%;
18805
  }
16848 stevensc 18806
 
16825 efrain 18807
  .mx-wd-md-100p {
18808
    max-width: 100%;
18809
  }
16848 stevensc 18810
 
16825 efrain 18811
  .mn-wd-md-100p {
18812
    min-width: 100%;
18813
  }
16848 stevensc 18814
 
16825 efrain 18815
  .wd-md-100-f {
18816
    width: 100px !important;
18817
  }
16848 stevensc 18818
 
16825 efrain 18819
  .wd-md-100p-f {
18820
    width: 100% !important;
18821
  }
16848 stevensc 18822
 
16825 efrain 18823
  .mx-wd-md-100p-f {
18824
    max-width: 100% !important;
18825
  }
16848 stevensc 18826
 
16825 efrain 18827
  .mn-wd-md-100p-f {
18828
    min-width: 100% !important;
18829
  }
16848 stevensc 18830
 
16825 efrain 18831
  .wd-md-150 {
18832
    width: 150px;
18833
  }
16848 stevensc 18834
 
16825 efrain 18835
  .wd-md-150p {
18836
    width: 150%;
18837
  }
16848 stevensc 18838
 
16825 efrain 18839
  .mx-wd-md-150p {
18840
    max-width: 150%;
18841
  }
16848 stevensc 18842
 
16825 efrain 18843
  .mn-wd-md-150p {
18844
    min-width: 150%;
18845
  }
16848 stevensc 18846
 
16825 efrain 18847
  .wd-md-150-f {
18848
    width: 150px !important;
18849
  }
16848 stevensc 18850
 
16825 efrain 18851
  .wd-md-150p-f {
18852
    width: 150% !important;
18853
  }
16848 stevensc 18854
 
16825 efrain 18855
  .mx-wd-md-150p-f {
18856
    max-width: 150% !important;
18857
  }
16848 stevensc 18858
 
16825 efrain 18859
  .mn-wd-md-150p-f {
18860
    min-width: 150% !important;
18861
  }
16848 stevensc 18862
 
16825 efrain 18863
  .wd-md-200 {
18864
    width: 200px;
18865
  }
16848 stevensc 18866
 
16825 efrain 18867
  .wd-md-200p {
18868
    width: 200%;
18869
  }
16848 stevensc 18870
 
16825 efrain 18871
  .mx-wd-md-200p {
18872
    max-width: 200%;
18873
  }
16848 stevensc 18874
 
16825 efrain 18875
  .mn-wd-md-200p {
18876
    min-width: 200%;
18877
  }
16848 stevensc 18878
 
16825 efrain 18879
  .wd-md-200-f {
18880
    width: 200px !important;
18881
  }
16848 stevensc 18882
 
16825 efrain 18883
  .wd-md-200p-f {
18884
    width: 200% !important;
18885
  }
16848 stevensc 18886
 
16825 efrain 18887
  .mx-wd-md-200p-f {
18888
    max-width: 200% !important;
18889
  }
16848 stevensc 18890
 
16825 efrain 18891
  .mn-wd-md-200p-f {
18892
    min-width: 200% !important;
18893
  }
16848 stevensc 18894
 
16825 efrain 18895
  .wd-md-250 {
18896
    width: 250px;
18897
  }
16848 stevensc 18898
 
16825 efrain 18899
  .wd-md-250p {
18900
    width: 250%;
18901
  }
16848 stevensc 18902
 
16825 efrain 18903
  .mx-wd-md-250p {
18904
    max-width: 250%;
18905
  }
16848 stevensc 18906
 
16825 efrain 18907
  .mn-wd-md-250p {
18908
    min-width: 250%;
18909
  }
16848 stevensc 18910
 
16825 efrain 18911
  .wd-md-250-f {
18912
    width: 250px !important;
18913
  }
16848 stevensc 18914
 
16825 efrain 18915
  .wd-md-250p-f {
18916
    width: 250% !important;
18917
  }
16848 stevensc 18918
 
16825 efrain 18919
  .mx-wd-md-250p-f {
18920
    max-width: 250% !important;
18921
  }
16848 stevensc 18922
 
16825 efrain 18923
  .mn-wd-md-250p-f {
18924
    min-width: 250% !important;
18925
  }
16848 stevensc 18926
 
16825 efrain 18927
  .wd-md-300 {
18928
    width: 300px;
18929
  }
16848 stevensc 18930
 
16825 efrain 18931
  .wd-md-300p {
18932
    width: 300%;
18933
  }
16848 stevensc 18934
 
16825 efrain 18935
  .mx-wd-md-300p {
18936
    max-width: 300%;
18937
  }
16848 stevensc 18938
 
16825 efrain 18939
  .mn-wd-md-300p {
18940
    min-width: 300%;
18941
  }
16848 stevensc 18942
 
16825 efrain 18943
  .wd-md-300-f {
18944
    width: 300px !important;
18945
  }
16848 stevensc 18946
 
16825 efrain 18947
  .wd-md-300p-f {
18948
    width: 300% !important;
18949
  }
16848 stevensc 18950
 
16825 efrain 18951
  .mx-wd-md-300p-f {
18952
    max-width: 300% !important;
18953
  }
16848 stevensc 18954
 
16825 efrain 18955
  .mn-wd-md-300p-f {
18956
    min-width: 300% !important;
18957
  }
16848 stevensc 18958
 
16825 efrain 18959
  .wd-md-350 {
18960
    width: 350px;
18961
  }
16848 stevensc 18962
 
16825 efrain 18963
  .wd-md-350p {
18964
    width: 350%;
18965
  }
16848 stevensc 18966
 
16825 efrain 18967
  .mx-wd-md-350p {
18968
    max-width: 350%;
18969
  }
16848 stevensc 18970
 
16825 efrain 18971
  .mn-wd-md-350p {
18972
    min-width: 350%;
18973
  }
16848 stevensc 18974
 
16825 efrain 18975
  .wd-md-350-f {
18976
    width: 350px !important;
18977
  }
16848 stevensc 18978
 
16825 efrain 18979
  .wd-md-350p-f {
18980
    width: 350% !important;
18981
  }
16848 stevensc 18982
 
16825 efrain 18983
  .mx-wd-md-350p-f {
18984
    max-width: 350% !important;
18985
  }
16848 stevensc 18986
 
16825 efrain 18987
  .mn-wd-md-350p-f {
18988
    min-width: 350% !important;
18989
  }
16848 stevensc 18990
 
16825 efrain 18991
  .wd-md-400 {
18992
    width: 400px;
18993
  }
16848 stevensc 18994
 
16825 efrain 18995
  .wd-md-400p {
18996
    width: 400%;
18997
  }
16848 stevensc 18998
 
16825 efrain 18999
  .mx-wd-md-400p {
19000
    max-width: 400%;
19001
  }
16848 stevensc 19002
 
16825 efrain 19003
  .mn-wd-md-400p {
19004
    min-width: 400%;
19005
  }
16848 stevensc 19006
 
16825 efrain 19007
  .wd-md-400-f {
19008
    width: 400px !important;
19009
  }
16848 stevensc 19010
 
16825 efrain 19011
  .wd-md-400p-f {
19012
    width: 400% !important;
19013
  }
16848 stevensc 19014
 
16825 efrain 19015
  .mx-wd-md-400p-f {
19016
    max-width: 400% !important;
19017
  }
16848 stevensc 19018
 
16825 efrain 19019
  .mn-wd-md-400p-f {
19020
    min-width: 400% !important;
19021
  }
16848 stevensc 19022
 
16825 efrain 19023
  .wd-md-450 {
19024
    width: 450px;
19025
  }
16848 stevensc 19026
 
16825 efrain 19027
  .wd-md-450p {
19028
    width: 450%;
19029
  }
16848 stevensc 19030
 
16825 efrain 19031
  .mx-wd-md-450p {
19032
    max-width: 450%;
19033
  }
16848 stevensc 19034
 
16825 efrain 19035
  .mn-wd-md-450p {
19036
    min-width: 450%;
19037
  }
16848 stevensc 19038
 
16825 efrain 19039
  .wd-md-450-f {
19040
    width: 450px !important;
19041
  }
16848 stevensc 19042
 
16825 efrain 19043
  .wd-md-450p-f {
19044
    width: 450% !important;
19045
  }
16848 stevensc 19046
 
16825 efrain 19047
  .mx-wd-md-450p-f {
19048
    max-width: 450% !important;
19049
  }
16848 stevensc 19050
 
16825 efrain 19051
  .mn-wd-md-450p-f {
19052
    min-width: 450% !important;
19053
  }
16848 stevensc 19054
 
16825 efrain 19055
  .wd-md-500 {
19056
    width: 500px;
19057
  }
16848 stevensc 19058
 
16825 efrain 19059
  .wd-md-500p {
19060
    width: 500%;
19061
  }
16848 stevensc 19062
 
16825 efrain 19063
  .mx-wd-md-500p {
19064
    max-width: 500%;
19065
  }
16848 stevensc 19066
 
16825 efrain 19067
  .mn-wd-md-500p {
19068
    min-width: 500%;
19069
  }
16848 stevensc 19070
 
16825 efrain 19071
  .wd-md-500-f {
19072
    width: 500px !important;
19073
  }
16848 stevensc 19074
 
16825 efrain 19075
  .wd-md-500p-f {
19076
    width: 500% !important;
19077
  }
16848 stevensc 19078
 
16825 efrain 19079
  .mx-wd-md-500p-f {
19080
    max-width: 500% !important;
19081
  }
16848 stevensc 19082
 
16825 efrain 19083
  .mn-wd-md-500p-f {
19084
    min-width: 500% !important;
19085
  }
16848 stevensc 19086
 
16825 efrain 19087
  .wd-md-550 {
19088
    width: 550px;
19089
  }
16848 stevensc 19090
 
16825 efrain 19091
  .wd-md-550p {
19092
    width: 550%;
19093
  }
16848 stevensc 19094
 
16825 efrain 19095
  .mx-wd-md-550p {
19096
    max-width: 550%;
19097
  }
16848 stevensc 19098
 
16825 efrain 19099
  .mn-wd-md-550p {
19100
    min-width: 550%;
19101
  }
16848 stevensc 19102
 
16825 efrain 19103
  .wd-md-550-f {
19104
    width: 550px !important;
19105
  }
16848 stevensc 19106
 
16825 efrain 19107
  .wd-md-550p-f {
19108
    width: 550% !important;
19109
  }
16848 stevensc 19110
 
16825 efrain 19111
  .mx-wd-md-550p-f {
19112
    max-width: 550% !important;
19113
  }
16848 stevensc 19114
 
16825 efrain 19115
  .mn-wd-md-550p-f {
19116
    min-width: 550% !important;
19117
  }
16848 stevensc 19118
 
16825 efrain 19119
  .wd-md-600 {
19120
    width: 600px;
19121
  }
16848 stevensc 19122
 
16825 efrain 19123
  .wd-md-600p {
19124
    width: 600%;
19125
  }
16848 stevensc 19126
 
16825 efrain 19127
  .mx-wd-md-600p {
19128
    max-width: 600%;
19129
  }
16848 stevensc 19130
 
16825 efrain 19131
  .mn-wd-md-600p {
19132
    min-width: 600%;
19133
  }
16848 stevensc 19134
 
16825 efrain 19135
  .wd-md-600-f {
19136
    width: 600px !important;
19137
  }
16848 stevensc 19138
 
16825 efrain 19139
  .wd-md-600p-f {
19140
    width: 600% !important;
19141
  }
16848 stevensc 19142
 
16825 efrain 19143
  .mx-wd-md-600p-f {
19144
    max-width: 600% !important;
19145
  }
16848 stevensc 19146
 
16825 efrain 19147
  .mn-wd-md-600p-f {
19148
    min-width: 600% !important;
19149
  }
16848 stevensc 19150
 
16825 efrain 19151
  .wd-md-650 {
19152
    width: 650px;
19153
  }
16848 stevensc 19154
 
16825 efrain 19155
  .wd-md-650p {
19156
    width: 650%;
19157
  }
16848 stevensc 19158
 
16825 efrain 19159
  .mx-wd-md-650p {
19160
    max-width: 650%;
19161
  }
16848 stevensc 19162
 
16825 efrain 19163
  .mn-wd-md-650p {
19164
    min-width: 650%;
19165
  }
16848 stevensc 19166
 
16825 efrain 19167
  .wd-md-650-f {
19168
    width: 650px !important;
19169
  }
16848 stevensc 19170
 
16825 efrain 19171
  .wd-md-650p-f {
19172
    width: 650% !important;
19173
  }
16848 stevensc 19174
 
16825 efrain 19175
  .mx-wd-md-650p-f {
19176
    max-width: 650% !important;
19177
  }
16848 stevensc 19178
 
16825 efrain 19179
  .mn-wd-md-650p-f {
19180
    min-width: 650% !important;
19181
  }
16848 stevensc 19182
 
16825 efrain 19183
  .wd-md-700 {
19184
    width: 700px;
19185
  }
16848 stevensc 19186
 
16825 efrain 19187
  .wd-md-700p {
19188
    width: 700%;
19189
  }
16848 stevensc 19190
 
16825 efrain 19191
  .mx-wd-md-700p {
19192
    max-width: 700%;
19193
  }
16848 stevensc 19194
 
16825 efrain 19195
  .mn-wd-md-700p {
19196
    min-width: 700%;
19197
  }
16848 stevensc 19198
 
16825 efrain 19199
  .wd-md-700-f {
19200
    width: 700px !important;
19201
  }
16848 stevensc 19202
 
16825 efrain 19203
  .wd-md-700p-f {
19204
    width: 700% !important;
19205
  }
16848 stevensc 19206
 
16825 efrain 19207
  .mx-wd-md-700p-f {
19208
    max-width: 700% !important;
19209
  }
16848 stevensc 19210
 
16825 efrain 19211
  .mn-wd-md-700p-f {
19212
    min-width: 700% !important;
19213
  }
16848 stevensc 19214
 
16825 efrain 19215
  .wd-md-750 {
19216
    width: 750px;
19217
  }
16848 stevensc 19218
 
16825 efrain 19219
  .wd-md-750p {
19220
    width: 750%;
19221
  }
16848 stevensc 19222
 
16825 efrain 19223
  .mx-wd-md-750p {
19224
    max-width: 750%;
19225
  }
16848 stevensc 19226
 
16825 efrain 19227
  .mn-wd-md-750p {
19228
    min-width: 750%;
19229
  }
16848 stevensc 19230
 
16825 efrain 19231
  .wd-md-750-f {
19232
    width: 750px !important;
19233
  }
16848 stevensc 19234
 
16825 efrain 19235
  .wd-md-750p-f {
19236
    width: 750% !important;
19237
  }
16848 stevensc 19238
 
16825 efrain 19239
  .mx-wd-md-750p-f {
19240
    max-width: 750% !important;
19241
  }
16848 stevensc 19242
 
16825 efrain 19243
  .mn-wd-md-750p-f {
19244
    min-width: 750% !important;
19245
  }
16848 stevensc 19246
 
16825 efrain 19247
  .wd-md-800 {
19248
    width: 800px;
19249
  }
16848 stevensc 19250
 
16825 efrain 19251
  .wd-md-800p {
19252
    width: 800%;
19253
  }
16848 stevensc 19254
 
16825 efrain 19255
  .mx-wd-md-800p {
19256
    max-width: 800%;
19257
  }
16848 stevensc 19258
 
16825 efrain 19259
  .mn-wd-md-800p {
19260
    min-width: 800%;
19261
  }
16848 stevensc 19262
 
16825 efrain 19263
  .wd-md-800-f {
19264
    width: 800px !important;
19265
  }
16848 stevensc 19266
 
16825 efrain 19267
  .wd-md-800p-f {
19268
    width: 800% !important;
19269
  }
16848 stevensc 19270
 
16825 efrain 19271
  .mx-wd-md-800p-f {
19272
    max-width: 800% !important;
19273
  }
16848 stevensc 19274
 
16825 efrain 19275
  .mn-wd-md-800p-f {
19276
    min-width: 800% !important;
19277
  }
16848 stevensc 19278
 
16825 efrain 19279
  .wd-md-850 {
19280
    width: 850px;
19281
  }
16848 stevensc 19282
 
16825 efrain 19283
  .wd-md-850p {
19284
    width: 850%;
19285
  }
16848 stevensc 19286
 
16825 efrain 19287
  .mx-wd-md-850p {
19288
    max-width: 850%;
19289
  }
16848 stevensc 19290
 
16825 efrain 19291
  .mn-wd-md-850p {
19292
    min-width: 850%;
19293
  }
16848 stevensc 19294
 
16825 efrain 19295
  .wd-md-850-f {
19296
    width: 850px !important;
19297
  }
16848 stevensc 19298
 
16825 efrain 19299
  .wd-md-850p-f {
19300
    width: 850% !important;
19301
  }
16848 stevensc 19302
 
16825 efrain 19303
  .mx-wd-md-850p-f {
19304
    max-width: 850% !important;
19305
  }
16848 stevensc 19306
 
16825 efrain 19307
  .mn-wd-md-850p-f {
19308
    min-width: 850% !important;
19309
  }
16848 stevensc 19310
 
16825 efrain 19311
  .wd-md-900 {
19312
    width: 900px;
19313
  }
16848 stevensc 19314
 
16825 efrain 19315
  .wd-md-900p {
19316
    width: 900%;
19317
  }
16848 stevensc 19318
 
16825 efrain 19319
  .mx-wd-md-900p {
19320
    max-width: 900%;
19321
  }
16848 stevensc 19322
 
16825 efrain 19323
  .mn-wd-md-900p {
19324
    min-width: 900%;
19325
  }
16848 stevensc 19326
 
16825 efrain 19327
  .wd-md-900-f {
19328
    width: 900px !important;
19329
  }
16848 stevensc 19330
 
16825 efrain 19331
  .wd-md-900p-f {
19332
    width: 900% !important;
19333
  }
16848 stevensc 19334
 
16825 efrain 19335
  .mx-wd-md-900p-f {
19336
    max-width: 900% !important;
19337
  }
16848 stevensc 19338
 
16825 efrain 19339
  .mn-wd-md-900p-f {
19340
    min-width: 900% !important;
19341
  }
16848 stevensc 19342
 
16825 efrain 19343
  .wd-md-950 {
19344
    width: 950px;
19345
  }
16848 stevensc 19346
 
16825 efrain 19347
  .wd-md-950p {
19348
    width: 950%;
19349
  }
16848 stevensc 19350
 
16825 efrain 19351
  .mx-wd-md-950p {
19352
    max-width: 950%;
19353
  }
16848 stevensc 19354
 
16825 efrain 19355
  .mn-wd-md-950p {
19356
    min-width: 950%;
19357
  }
16848 stevensc 19358
 
16825 efrain 19359
  .wd-md-950-f {
19360
    width: 950px !important;
19361
  }
16848 stevensc 19362
 
16825 efrain 19363
  .wd-md-950p-f {
19364
    width: 950% !important;
19365
  }
16848 stevensc 19366
 
16825 efrain 19367
  .mx-wd-md-950p-f {
19368
    max-width: 950% !important;
19369
  }
16848 stevensc 19370
 
16825 efrain 19371
  .mn-wd-md-950p-f {
19372
    min-width: 950% !important;
19373
  }
16848 stevensc 19374
 
16825 efrain 19375
  .wd-md-1000 {
19376
    width: 1000px;
19377
  }
16848 stevensc 19378
 
16825 efrain 19379
  .wd-md-1000p {
19380
    width: 1000%;
19381
  }
16848 stevensc 19382
 
16825 efrain 19383
  .mx-wd-md-1000p {
19384
    max-width: 1000%;
19385
  }
16848 stevensc 19386
 
16825 efrain 19387
  .mn-wd-md-1000p {
19388
    min-width: 1000%;
19389
  }
16848 stevensc 19390
 
16825 efrain 19391
  .wd-md-1000-f {
19392
    width: 1000px !important;
19393
  }
16848 stevensc 19394
 
16825 efrain 19395
  .wd-md-1000p-f {
19396
    width: 1000% !important;
19397
  }
16848 stevensc 19398
 
16825 efrain 19399
  .mx-wd-md-1000p-f {
19400
    max-width: 1000% !important;
19401
  }
16848 stevensc 19402
 
16825 efrain 19403
  .mn-wd-md-1000p-f {
19404
    min-width: 1000% !important;
19405
  }
16848 stevensc 19406
 
16825 efrain 19407
  .wd-md-auto {
19408
    width: auto;
19409
  }
16848 stevensc 19410
 
16825 efrain 19411
  .wd-md-auto-f {
19412
    width: auto !important;
19413
  }
16848 stevensc 19414
 
16825 efrain 19415
  .wd-md-120 {
19416
    width: 120px;
19417
  }
19418
}
16848 stevensc 19419
 
16825 efrain 19420
@media (min-width: 992px) {
19421
  .wd-lg-5 {
19422
    width: 5px;
19423
  }
16848 stevensc 19424
 
16825 efrain 19425
  .wd-lg-5p {
19426
    width: 5%;
19427
  }
16848 stevensc 19428
 
16825 efrain 19429
  .mx-wd-lg-5p {
19430
    max-width: 5%;
19431
  }
16848 stevensc 19432
 
16825 efrain 19433
  .mn-wd-lg-5p {
19434
    min-width: 5%;
19435
  }
16848 stevensc 19436
 
16825 efrain 19437
  .wd-lg-5-f {
19438
    width: 5px !important;
19439
  }
16848 stevensc 19440
 
16825 efrain 19441
  .wd-lg-5p-f {
19442
    width: 5% !important;
19443
  }
16848 stevensc 19444
 
16825 efrain 19445
  .mx-wd-lg-5p-f {
19446
    max-width: 5% !important;
19447
  }
16848 stevensc 19448
 
16825 efrain 19449
  .mn-wd-lg-5p-f {
19450
    min-width: 5% !important;
19451
  }
16848 stevensc 19452
 
16825 efrain 19453
  .wd-lg-10 {
19454
    width: 10px;
19455
  }
16848 stevensc 19456
 
16825 efrain 19457
  .wd-lg-10p {
19458
    width: 10%;
19459
  }
16848 stevensc 19460
 
16825 efrain 19461
  .mx-wd-lg-10p {
19462
    max-width: 10%;
19463
  }
16848 stevensc 19464
 
16825 efrain 19465
  .mn-wd-lg-10p {
19466
    min-width: 10%;
19467
  }
16848 stevensc 19468
 
16825 efrain 19469
  .wd-lg-10-f {
19470
    width: 10px !important;
19471
  }
16848 stevensc 19472
 
16825 efrain 19473
  .wd-lg-10p-f {
19474
    width: 10% !important;
19475
  }
16848 stevensc 19476
 
16825 efrain 19477
  .mx-wd-lg-10p-f {
19478
    max-width: 10% !important;
19479
  }
16848 stevensc 19480
 
16825 efrain 19481
  .mn-wd-lg-10p-f {
19482
    min-width: 10% !important;
19483
  }
16848 stevensc 19484
 
16825 efrain 19485
  .wd-lg-15 {
19486
    width: 15px;
19487
  }
16848 stevensc 19488
 
16825 efrain 19489
  .wd-lg-15p {
19490
    width: 15%;
19491
  }
16848 stevensc 19492
 
16825 efrain 19493
  .mx-wd-lg-15p {
19494
    max-width: 15%;
19495
  }
16848 stevensc 19496
 
16825 efrain 19497
  .mn-wd-lg-15p {
19498
    min-width: 15%;
19499
  }
16848 stevensc 19500
 
16825 efrain 19501
  .wd-lg-15-f {
19502
    width: 15px !important;
19503
  }
16848 stevensc 19504
 
16825 efrain 19505
  .wd-lg-15p-f {
19506
    width: 15% !important;
19507
  }
16848 stevensc 19508
 
16825 efrain 19509
  .mx-wd-lg-15p-f {
19510
    max-width: 15% !important;
19511
  }
16848 stevensc 19512
 
16825 efrain 19513
  .mn-wd-lg-15p-f {
19514
    min-width: 15% !important;
19515
  }
16848 stevensc 19516
 
16825 efrain 19517
  .wd-lg-20 {
19518
    width: 20px;
19519
  }
16848 stevensc 19520
 
16825 efrain 19521
  .wd-lg-20p {
19522
    width: 20%;
19523
  }
16848 stevensc 19524
 
16825 efrain 19525
  .mx-wd-lg-20p {
19526
    max-width: 20%;
19527
  }
16848 stevensc 19528
 
16825 efrain 19529
  .mn-wd-lg-20p {
19530
    min-width: 20%;
19531
  }
16848 stevensc 19532
 
16825 efrain 19533
  .wd-lg-20-f {
19534
    width: 20px !important;
19535
  }
16848 stevensc 19536
 
16825 efrain 19537
  .wd-lg-20p-f {
19538
    width: 20% !important;
19539
  }
16848 stevensc 19540
 
16825 efrain 19541
  .mx-wd-lg-20p-f {
19542
    max-width: 20% !important;
19543
  }
16848 stevensc 19544
 
16825 efrain 19545
  .mn-wd-lg-20p-f {
19546
    min-width: 20% !important;
19547
  }
16848 stevensc 19548
 
16825 efrain 19549
  .wd-lg-25 {
19550
    width: 25px;
19551
  }
16848 stevensc 19552
 
16825 efrain 19553
  .wd-lg-25p {
19554
    width: 25%;
19555
  }
16848 stevensc 19556
 
16825 efrain 19557
  .mx-wd-lg-25p {
19558
    max-width: 25%;
19559
  }
16848 stevensc 19560
 
16825 efrain 19561
  .mn-wd-lg-25p {
19562
    min-width: 25%;
19563
  }
16848 stevensc 19564
 
16825 efrain 19565
  .wd-lg-25-f {
19566
    width: 25px !important;
19567
  }
16848 stevensc 19568
 
16825 efrain 19569
  .wd-lg-25p-f {
19570
    width: 25% !important;
19571
  }
16848 stevensc 19572
 
16825 efrain 19573
  .mx-wd-lg-25p-f {
19574
    max-width: 25% !important;
19575
  }
16848 stevensc 19576
 
16825 efrain 19577
  .mn-wd-lg-25p-f {
19578
    min-width: 25% !important;
19579
  }
16848 stevensc 19580
 
16825 efrain 19581
  .wd-lg-30 {
19582
    width: 30px;
19583
  }
16848 stevensc 19584
 
16825 efrain 19585
  .wd-lg-30p {
19586
    width: 30%;
19587
  }
16848 stevensc 19588
 
16825 efrain 19589
  .mx-wd-lg-30p {
19590
    max-width: 30%;
19591
  }
16848 stevensc 19592
 
16825 efrain 19593
  .mn-wd-lg-30p {
19594
    min-width: 30%;
19595
  }
16848 stevensc 19596
 
16825 efrain 19597
  .wd-lg-30-f {
19598
    width: 30px !important;
19599
  }
16848 stevensc 19600
 
16825 efrain 19601
  .wd-lg-30p-f {
19602
    width: 30% !important;
19603
  }
16848 stevensc 19604
 
16825 efrain 19605
  .mx-wd-lg-30p-f {
19606
    max-width: 30% !important;
19607
  }
16848 stevensc 19608
 
16825 efrain 19609
  .mn-wd-lg-30p-f {
19610
    min-width: 30% !important;
19611
  }
16848 stevensc 19612
 
16825 efrain 19613
  .wd-lg-35 {
19614
    width: 35px;
19615
  }
16848 stevensc 19616
 
16825 efrain 19617
  .wd-lg-35p {
19618
    width: 35%;
19619
  }
16848 stevensc 19620
 
16825 efrain 19621
  .mx-wd-lg-35p {
19622
    max-width: 35%;
19623
  }
16848 stevensc 19624
 
16825 efrain 19625
  .mn-wd-lg-35p {
19626
    min-width: 35%;
19627
  }
16848 stevensc 19628
 
16825 efrain 19629
  .wd-lg-35-f {
19630
    width: 35px !important;
19631
  }
16848 stevensc 19632
 
16825 efrain 19633
  .wd-lg-35p-f {
19634
    width: 35% !important;
19635
  }
16848 stevensc 19636
 
16825 efrain 19637
  .mx-wd-lg-35p-f {
19638
    max-width: 35% !important;
19639
  }
16848 stevensc 19640
 
16825 efrain 19641
  .mn-wd-lg-35p-f {
19642
    min-width: 35% !important;
19643
  }
16848 stevensc 19644
 
16825 efrain 19645
  .wd-lg-40 {
19646
    width: 40px;
19647
  }
16848 stevensc 19648
 
16825 efrain 19649
  .wd-lg-40p {
19650
    width: 40%;
19651
  }
16848 stevensc 19652
 
16825 efrain 19653
  .mx-wd-lg-40p {
19654
    max-width: 40%;
19655
  }
16848 stevensc 19656
 
16825 efrain 19657
  .mn-wd-lg-40p {
19658
    min-width: 40%;
19659
  }
16848 stevensc 19660
 
16825 efrain 19661
  .wd-lg-40-f {
19662
    width: 40px !important;
19663
  }
16848 stevensc 19664
 
16825 efrain 19665
  .wd-lg-40p-f {
19666
    width: 40% !important;
19667
  }
16848 stevensc 19668
 
16825 efrain 19669
  .mx-wd-lg-40p-f {
19670
    max-width: 40% !important;
19671
  }
16848 stevensc 19672
 
16825 efrain 19673
  .mn-wd-lg-40p-f {
19674
    min-width: 40% !important;
19675
  }
16848 stevensc 19676
 
16825 efrain 19677
  .wd-lg-45 {
19678
    width: 45px;
19679
  }
16848 stevensc 19680
 
16825 efrain 19681
  .wd-lg-45p {
19682
    width: 45%;
19683
  }
16848 stevensc 19684
 
16825 efrain 19685
  .mx-wd-lg-45p {
19686
    max-width: 45%;
19687
  }
16848 stevensc 19688
 
16825 efrain 19689
  .mn-wd-lg-45p {
19690
    min-width: 45%;
19691
  }
16848 stevensc 19692
 
16825 efrain 19693
  .wd-lg-45-f {
19694
    width: 45px !important;
19695
  }
16848 stevensc 19696
 
16825 efrain 19697
  .wd-lg-45p-f {
19698
    width: 45% !important;
19699
  }
16848 stevensc 19700
 
16825 efrain 19701
  .mx-wd-lg-45p-f {
19702
    max-width: 45% !important;
19703
  }
16848 stevensc 19704
 
16825 efrain 19705
  .mn-wd-lg-45p-f {
19706
    min-width: 45% !important;
19707
  }
16848 stevensc 19708
 
16825 efrain 19709
  .wd-lg-50 {
19710
    width: 50px;
19711
  }
16848 stevensc 19712
 
16825 efrain 19713
  .wd-lg-50p {
19714
    width: 50%;
19715
  }
16848 stevensc 19716
 
16825 efrain 19717
  .mx-wd-lg-50p {
19718
    max-width: 50%;
19719
  }
16848 stevensc 19720
 
16825 efrain 19721
  .mn-wd-lg-50p {
19722
    min-width: 50%;
19723
  }
16848 stevensc 19724
 
16825 efrain 19725
  .wd-lg-50-f {
19726
    width: 50px !important;
19727
  }
16848 stevensc 19728
 
16825 efrain 19729
  .wd-lg-50p-f {
19730
    width: 50% !important;
19731
  }
16848 stevensc 19732
 
16825 efrain 19733
  .mx-wd-lg-50p-f {
19734
    max-width: 50% !important;
19735
  }
16848 stevensc 19736
 
16825 efrain 19737
  .mn-wd-lg-50p-f {
19738
    min-width: 50% !important;
19739
  }
16848 stevensc 19740
 
16825 efrain 19741
  .wd-lg-55 {
19742
    width: 55px;
19743
  }
16848 stevensc 19744
 
16825 efrain 19745
  .wd-lg-55p {
19746
    width: 55%;
19747
  }
16848 stevensc 19748
 
16825 efrain 19749
  .mx-wd-lg-55p {
19750
    max-width: 55%;
19751
  }
16848 stevensc 19752
 
16825 efrain 19753
  .mn-wd-lg-55p {
19754
    min-width: 55%;
19755
  }
16848 stevensc 19756
 
16825 efrain 19757
  .wd-lg-55-f {
19758
    width: 55px !important;
19759
  }
16848 stevensc 19760
 
16825 efrain 19761
  .wd-lg-55p-f {
19762
    width: 55% !important;
19763
  }
16848 stevensc 19764
 
16825 efrain 19765
  .mx-wd-lg-55p-f {
19766
    max-width: 55% !important;
19767
  }
16848 stevensc 19768
 
16825 efrain 19769
  .mn-wd-lg-55p-f {
19770
    min-width: 55% !important;
19771
  }
16848 stevensc 19772
 
16825 efrain 19773
  .wd-lg-60 {
19774
    width: 60px;
19775
  }
16848 stevensc 19776
 
16825 efrain 19777
  .wd-lg-60p {
19778
    width: 60%;
19779
  }
16848 stevensc 19780
 
16825 efrain 19781
  .mx-wd-lg-60p {
19782
    max-width: 60%;
19783
  }
16848 stevensc 19784
 
16825 efrain 19785
  .mn-wd-lg-60p {
19786
    min-width: 60%;
19787
  }
16848 stevensc 19788
 
16825 efrain 19789
  .wd-lg-60-f {
19790
    width: 60px !important;
19791
  }
16848 stevensc 19792
 
16825 efrain 19793
  .wd-lg-60p-f {
19794
    width: 60% !important;
19795
  }
16848 stevensc 19796
 
16825 efrain 19797
  .mx-wd-lg-60p-f {
19798
    max-width: 60% !important;
19799
  }
16848 stevensc 19800
 
16825 efrain 19801
  .mn-wd-lg-60p-f {
19802
    min-width: 60% !important;
19803
  }
16848 stevensc 19804
 
16825 efrain 19805
  .wd-lg-65 {
19806
    width: 65px;
19807
  }
16848 stevensc 19808
 
16825 efrain 19809
  .wd-lg-65p {
19810
    width: 65%;
19811
  }
16848 stevensc 19812
 
16825 efrain 19813
  .mx-wd-lg-65p {
19814
    max-width: 65%;
19815
  }
16848 stevensc 19816
 
16825 efrain 19817
  .mn-wd-lg-65p {
19818
    min-width: 65%;
19819
  }
16848 stevensc 19820
 
16825 efrain 19821
  .wd-lg-65-f {
19822
    width: 65px !important;
19823
  }
16848 stevensc 19824
 
16825 efrain 19825
  .wd-lg-65p-f {
19826
    width: 65% !important;
19827
  }
16848 stevensc 19828
 
16825 efrain 19829
  .mx-wd-lg-65p-f {
19830
    max-width: 65% !important;
19831
  }
16848 stevensc 19832
 
16825 efrain 19833
  .mn-wd-lg-65p-f {
19834
    min-width: 65% !important;
19835
  }
16848 stevensc 19836
 
16825 efrain 19837
  .wd-lg-70 {
19838
    width: 70px;
19839
  }
16848 stevensc 19840
 
16825 efrain 19841
  .wd-lg-70p {
19842
    width: 70%;
19843
  }
16848 stevensc 19844
 
16825 efrain 19845
  .mx-wd-lg-70p {
19846
    max-width: 70%;
19847
  }
16848 stevensc 19848
 
16825 efrain 19849
  .mn-wd-lg-70p {
19850
    min-width: 70%;
19851
  }
16848 stevensc 19852
 
16825 efrain 19853
  .wd-lg-70-f {
19854
    width: 70px !important;
19855
  }
16848 stevensc 19856
 
16825 efrain 19857
  .wd-lg-70p-f {
19858
    width: 70% !important;
19859
  }
16848 stevensc 19860
 
16825 efrain 19861
  .mx-wd-lg-70p-f {
19862
    max-width: 70% !important;
19863
  }
16848 stevensc 19864
 
16825 efrain 19865
  .mn-wd-lg-70p-f {
19866
    min-width: 70% !important;
19867
  }
16848 stevensc 19868
 
16825 efrain 19869
  .wd-lg-75 {
19870
    width: 75px;
19871
  }
16848 stevensc 19872
 
16825 efrain 19873
  .wd-lg-75p {
19874
    width: 75%;
19875
  }
16848 stevensc 19876
 
16825 efrain 19877
  .mx-wd-lg-75p {
19878
    max-width: 75%;
19879
  }
16848 stevensc 19880
 
16825 efrain 19881
  .mn-wd-lg-75p {
19882
    min-width: 75%;
19883
  }
16848 stevensc 19884
 
16825 efrain 19885
  .wd-lg-75-f {
19886
    width: 75px !important;
19887
  }
16848 stevensc 19888
 
16825 efrain 19889
  .wd-lg-75p-f {
19890
    width: 75% !important;
19891
  }
16848 stevensc 19892
 
16825 efrain 19893
  .mx-wd-lg-75p-f {
19894
    max-width: 75% !important;
19895
  }
16848 stevensc 19896
 
16825 efrain 19897
  .mn-wd-lg-75p-f {
19898
    min-width: 75% !important;
19899
  }
16848 stevensc 19900
 
16825 efrain 19901
  .wd-lg-80 {
19902
    width: 80px;
19903
  }
16848 stevensc 19904
 
16825 efrain 19905
  .wd-lg-80p {
19906
    width: 80%;
19907
  }
16848 stevensc 19908
 
16825 efrain 19909
  .mx-wd-lg-80p {
19910
    max-width: 80%;
19911
  }
16848 stevensc 19912
 
16825 efrain 19913
  .mn-wd-lg-80p {
19914
    min-width: 80%;
19915
  }
16848 stevensc 19916
 
16825 efrain 19917
  .wd-lg-80-f {
19918
    width: 80px !important;
19919
  }
16848 stevensc 19920
 
16825 efrain 19921
  .wd-lg-80p-f {
19922
    width: 80% !important;
19923
  }
16848 stevensc 19924
 
16825 efrain 19925
  .mx-wd-lg-80p-f {
19926
    max-width: 80% !important;
19927
  }
16848 stevensc 19928
 
16825 efrain 19929
  .mn-wd-lg-80p-f {
19930
    min-width: 80% !important;
19931
  }
16848 stevensc 19932
 
16825 efrain 19933
  .wd-lg-85 {
19934
    width: 85px;
19935
  }
16848 stevensc 19936
 
16825 efrain 19937
  .wd-lg-85p {
19938
    width: 85%;
19939
  }
16848 stevensc 19940
 
16825 efrain 19941
  .mx-wd-lg-85p {
19942
    max-width: 85%;
19943
  }
16848 stevensc 19944
 
16825 efrain 19945
  .mn-wd-lg-85p {
19946
    min-width: 85%;
19947
  }
16848 stevensc 19948
 
16825 efrain 19949
  .wd-lg-85-f {
19950
    width: 85px !important;
19951
  }
16848 stevensc 19952
 
16825 efrain 19953
  .wd-lg-85p-f {
19954
    width: 85% !important;
19955
  }
16848 stevensc 19956
 
16825 efrain 19957
  .mx-wd-lg-85p-f {
19958
    max-width: 85% !important;
19959
  }
16848 stevensc 19960
 
16825 efrain 19961
  .mn-wd-lg-85p-f {
19962
    min-width: 85% !important;
19963
  }
16848 stevensc 19964
 
16825 efrain 19965
  .wd-lg-90 {
19966
    width: 90px;
19967
  }
16848 stevensc 19968
 
16825 efrain 19969
  .wd-lg-90p {
19970
    width: 90%;
19971
  }
16848 stevensc 19972
 
16825 efrain 19973
  .mx-wd-lg-90p {
19974
    max-width: 90%;
19975
  }
16848 stevensc 19976
 
16825 efrain 19977
  .mn-wd-lg-90p {
19978
    min-width: 90%;
19979
  }
16848 stevensc 19980
 
16825 efrain 19981
  .wd-lg-90-f {
19982
    width: 90px !important;
19983
  }
16848 stevensc 19984
 
16825 efrain 19985
  .wd-lg-90p-f {
19986
    width: 90% !important;
19987
  }
16848 stevensc 19988
 
16825 efrain 19989
  .mx-wd-lg-90p-f {
19990
    max-width: 90% !important;
19991
  }
16848 stevensc 19992
 
16825 efrain 19993
  .mn-wd-lg-90p-f {
19994
    min-width: 90% !important;
19995
  }
16848 stevensc 19996
 
16825 efrain 19997
  .wd-lg-95 {
19998
    width: 95px;
19999
  }
16848 stevensc 20000
 
16825 efrain 20001
  .wd-lg-95p {
20002
    width: 95%;
20003
  }
16848 stevensc 20004
 
16825 efrain 20005
  .mx-wd-lg-95p {
20006
    max-width: 95%;
20007
  }
16848 stevensc 20008
 
16825 efrain 20009
  .mn-wd-lg-95p {
20010
    min-width: 95%;
20011
  }
16848 stevensc 20012
 
16825 efrain 20013
  .wd-lg-95-f {
20014
    width: 95px !important;
20015
  }
16848 stevensc 20016
 
16825 efrain 20017
  .wd-lg-95p-f {
20018
    width: 95% !important;
20019
  }
16848 stevensc 20020
 
16825 efrain 20021
  .mx-wd-lg-95p-f {
20022
    max-width: 95% !important;
20023
  }
16848 stevensc 20024
 
16825 efrain 20025
  .mn-wd-lg-95p-f {
20026
    min-width: 95% !important;
20027
  }
16848 stevensc 20028
 
16825 efrain 20029
  .wd-lg-100 {
20030
    width: 100px;
20031
  }
16848 stevensc 20032
 
16825 efrain 20033
  .wd-lg-100p {
20034
    width: 100%;
20035
  }
16848 stevensc 20036
 
16825 efrain 20037
  .mx-wd-lg-100p {
20038
    max-width: 100%;
20039
  }
16848 stevensc 20040
 
16825 efrain 20041
  .mn-wd-lg-100p {
20042
    min-width: 100%;
20043
  }
16848 stevensc 20044
 
16825 efrain 20045
  .wd-lg-100-f {
20046
    width: 100px !important;
20047
  }
16848 stevensc 20048
 
16825 efrain 20049
  .wd-lg-100p-f {
20050
    width: 100% !important;
20051
  }
16848 stevensc 20052
 
16825 efrain 20053
  .mx-wd-lg-100p-f {
20054
    max-width: 100% !important;
20055
  }
16848 stevensc 20056
 
16825 efrain 20057
  .mn-wd-lg-100p-f {
20058
    min-width: 100% !important;
20059
  }
16848 stevensc 20060
 
16825 efrain 20061
  .wd-lg-150 {
20062
    width: 150px;
20063
  }
16848 stevensc 20064
 
16825 efrain 20065
  .wd-lg-150p {
20066
    width: 150%;
20067
  }
16848 stevensc 20068
 
16825 efrain 20069
  .mx-wd-lg-150p {
20070
    max-width: 150%;
20071
  }
16848 stevensc 20072
 
16825 efrain 20073
  .mn-wd-lg-150p {
20074
    min-width: 150%;
20075
  }
16848 stevensc 20076
 
16825 efrain 20077
  .wd-lg-150-f {
20078
    width: 150px !important;
20079
  }
16848 stevensc 20080
 
16825 efrain 20081
  .wd-lg-150p-f {
20082
    width: 150% !important;
20083
  }
16848 stevensc 20084
 
16825 efrain 20085
  .mx-wd-lg-150p-f {
20086
    max-width: 150% !important;
20087
  }
16848 stevensc 20088
 
16825 efrain 20089
  .mn-wd-lg-150p-f {
20090
    min-width: 150% !important;
20091
  }
16848 stevensc 20092
 
16825 efrain 20093
  .wd-lg-200 {
20094
    width: 200px;
20095
  }
16848 stevensc 20096
 
16825 efrain 20097
  .wd-lg-200p {
20098
    width: 200%;
20099
  }
16848 stevensc 20100
 
16825 efrain 20101
  .mx-wd-lg-200p {
20102
    max-width: 200%;
20103
  }
16848 stevensc 20104
 
16825 efrain 20105
  .mn-wd-lg-200p {
20106
    min-width: 200%;
20107
  }
16848 stevensc 20108
 
16825 efrain 20109
  .wd-lg-200-f {
20110
    width: 200px !important;
20111
  }
16848 stevensc 20112
 
16825 efrain 20113
  .wd-lg-200p-f {
20114
    width: 200% !important;
20115
  }
16848 stevensc 20116
 
16825 efrain 20117
  .mx-wd-lg-200p-f {
20118
    max-width: 200% !important;
20119
  }
16848 stevensc 20120
 
16825 efrain 20121
  .mn-wd-lg-200p-f {
20122
    min-width: 200% !important;
20123
  }
16848 stevensc 20124
 
16825 efrain 20125
  .wd-lg-250 {
20126
    width: 250px;
20127
  }
16848 stevensc 20128
 
16825 efrain 20129
  .wd-lg-250p {
20130
    width: 250%;
20131
  }
16848 stevensc 20132
 
16825 efrain 20133
  .mx-wd-lg-250p {
20134
    max-width: 250%;
20135
  }
16848 stevensc 20136
 
16825 efrain 20137
  .mn-wd-lg-250p {
20138
    min-width: 250%;
20139
  }
16848 stevensc 20140
 
16825 efrain 20141
  .wd-lg-250-f {
20142
    width: 250px !important;
20143
  }
16848 stevensc 20144
 
16825 efrain 20145
  .wd-lg-250p-f {
20146
    width: 250% !important;
20147
  }
16848 stevensc 20148
 
16825 efrain 20149
  .mx-wd-lg-250p-f {
20150
    max-width: 250% !important;
20151
  }
16848 stevensc 20152
 
16825 efrain 20153
  .mn-wd-lg-250p-f {
20154
    min-width: 250% !important;
20155
  }
16848 stevensc 20156
 
16825 efrain 20157
  .wd-lg-300 {
20158
    width: 300px;
20159
  }
16848 stevensc 20160
 
16825 efrain 20161
  .wd-lg-300p {
20162
    width: 300%;
20163
  }
16848 stevensc 20164
 
16825 efrain 20165
  .mx-wd-lg-300p {
20166
    max-width: 300%;
20167
  }
16848 stevensc 20168
 
16825 efrain 20169
  .mn-wd-lg-300p {
20170
    min-width: 300%;
20171
  }
16848 stevensc 20172
 
16825 efrain 20173
  .wd-lg-300-f {
20174
    width: 300px !important;
20175
  }
16848 stevensc 20176
 
16825 efrain 20177
  .wd-lg-300p-f {
20178
    width: 300% !important;
20179
  }
16848 stevensc 20180
 
16825 efrain 20181
  .mx-wd-lg-300p-f {
20182
    max-width: 300% !important;
20183
  }
16848 stevensc 20184
 
16825 efrain 20185
  .mn-wd-lg-300p-f {
20186
    min-width: 300% !important;
20187
  }
16848 stevensc 20188
 
16825 efrain 20189
  .wd-lg-350 {
20190
    width: 350px;
20191
  }
16848 stevensc 20192
 
16825 efrain 20193
  .wd-lg-350p {
20194
    width: 350%;
20195
  }
16848 stevensc 20196
 
16825 efrain 20197
  .mx-wd-lg-350p {
20198
    max-width: 350%;
20199
  }
16848 stevensc 20200
 
16825 efrain 20201
  .mn-wd-lg-350p {
20202
    min-width: 350%;
20203
  }
16848 stevensc 20204
 
16825 efrain 20205
  .wd-lg-350-f {
20206
    width: 350px !important;
20207
  }
16848 stevensc 20208
 
16825 efrain 20209
  .wd-lg-350p-f {
20210
    width: 350% !important;
20211
  }
16848 stevensc 20212
 
16825 efrain 20213
  .mx-wd-lg-350p-f {
20214
    max-width: 350% !important;
20215
  }
16848 stevensc 20216
 
16825 efrain 20217
  .mn-wd-lg-350p-f {
20218
    min-width: 350% !important;
20219
  }
16848 stevensc 20220
 
16825 efrain 20221
  .wd-lg-400 {
20222
    width: 400px;
20223
  }
16848 stevensc 20224
 
16825 efrain 20225
  .wd-lg-400p {
20226
    width: 400%;
20227
  }
16848 stevensc 20228
 
16825 efrain 20229
  .mx-wd-lg-400p {
20230
    max-width: 400%;
20231
  }
16848 stevensc 20232
 
16825 efrain 20233
  .mn-wd-lg-400p {
20234
    min-width: 400%;
20235
  }
16848 stevensc 20236
 
16825 efrain 20237
  .wd-lg-400-f {
20238
    width: 400px !important;
20239
  }
16848 stevensc 20240
 
16825 efrain 20241
  .wd-lg-400p-f {
20242
    width: 400% !important;
20243
  }
16848 stevensc 20244
 
16825 efrain 20245
  .mx-wd-lg-400p-f {
20246
    max-width: 400% !important;
20247
  }
16848 stevensc 20248
 
16825 efrain 20249
  .mn-wd-lg-400p-f {
20250
    min-width: 400% !important;
20251
  }
16848 stevensc 20252
 
16825 efrain 20253
  .wd-lg-450 {
20254
    width: 450px;
20255
  }
16848 stevensc 20256
 
16825 efrain 20257
  .wd-lg-450p {
20258
    width: 450%;
20259
  }
16848 stevensc 20260
 
16825 efrain 20261
  .mx-wd-lg-450p {
20262
    max-width: 450%;
20263
  }
16848 stevensc 20264
 
16825 efrain 20265
  .mn-wd-lg-450p {
20266
    min-width: 450%;
20267
  }
16848 stevensc 20268
 
16825 efrain 20269
  .wd-lg-450-f {
20270
    width: 450px !important;
20271
  }
16848 stevensc 20272
 
16825 efrain 20273
  .wd-lg-450p-f {
20274
    width: 450% !important;
20275
  }
16848 stevensc 20276
 
16825 efrain 20277
  .mx-wd-lg-450p-f {
20278
    max-width: 450% !important;
20279
  }
16848 stevensc 20280
 
16825 efrain 20281
  .mn-wd-lg-450p-f {
20282
    min-width: 450% !important;
20283
  }
16848 stevensc 20284
 
16825 efrain 20285
  .wd-lg-500 {
20286
    width: 500px;
20287
  }
16848 stevensc 20288
 
16825 efrain 20289
  .wd-lg-500p {
20290
    width: 500%;
20291
  }
16848 stevensc 20292
 
16825 efrain 20293
  .mx-wd-lg-500p {
20294
    max-width: 500%;
20295
  }
16848 stevensc 20296
 
16825 efrain 20297
  .mn-wd-lg-500p {
20298
    min-width: 500%;
20299
  }
16848 stevensc 20300
 
16825 efrain 20301
  .wd-lg-500-f {
20302
    width: 500px !important;
20303
  }
16848 stevensc 20304
 
16825 efrain 20305
  .wd-lg-500p-f {
20306
    width: 500% !important;
20307
  }
16848 stevensc 20308
 
16825 efrain 20309
  .mx-wd-lg-500p-f {
20310
    max-width: 500% !important;
20311
  }
16848 stevensc 20312
 
16825 efrain 20313
  .mn-wd-lg-500p-f {
20314
    min-width: 500% !important;
20315
  }
16848 stevensc 20316
 
16825 efrain 20317
  .wd-lg-550 {
20318
    width: 550px;
20319
  }
16848 stevensc 20320
 
16825 efrain 20321
  .wd-lg-550p {
20322
    width: 550%;
20323
  }
16848 stevensc 20324
 
16825 efrain 20325
  .mx-wd-lg-550p {
20326
    max-width: 550%;
20327
  }
16848 stevensc 20328
 
16825 efrain 20329
  .mn-wd-lg-550p {
20330
    min-width: 550%;
20331
  }
16848 stevensc 20332
 
16825 efrain 20333
  .wd-lg-550-f {
20334
    width: 550px !important;
20335
  }
16848 stevensc 20336
 
16825 efrain 20337
  .wd-lg-550p-f {
20338
    width: 550% !important;
20339
  }
16848 stevensc 20340
 
16825 efrain 20341
  .mx-wd-lg-550p-f {
20342
    max-width: 550% !important;
20343
  }
16848 stevensc 20344
 
16825 efrain 20345
  .mn-wd-lg-550p-f {
20346
    min-width: 550% !important;
20347
  }
16848 stevensc 20348
 
16825 efrain 20349
  .wd-lg-600 {
20350
    width: 600px;
20351
  }
16848 stevensc 20352
 
16825 efrain 20353
  .wd-lg-600p {
20354
    width: 600%;
20355
  }
16848 stevensc 20356
 
16825 efrain 20357
  .mx-wd-lg-600p {
20358
    max-width: 600%;
20359
  }
16848 stevensc 20360
 
16825 efrain 20361
  .mn-wd-lg-600p {
20362
    min-width: 600%;
20363
  }
16848 stevensc 20364
 
16825 efrain 20365
  .wd-lg-600-f {
20366
    width: 600px !important;
20367
  }
16848 stevensc 20368
 
16825 efrain 20369
  .wd-lg-600p-f {
20370
    width: 600% !important;
20371
  }
16848 stevensc 20372
 
16825 efrain 20373
  .mx-wd-lg-600p-f {
20374
    max-width: 600% !important;
20375
  }
16848 stevensc 20376
 
16825 efrain 20377
  .mn-wd-lg-600p-f {
20378
    min-width: 600% !important;
20379
  }
16848 stevensc 20380
 
16825 efrain 20381
  .wd-lg-650 {
20382
    width: 650px;
20383
  }
16848 stevensc 20384
 
16825 efrain 20385
  .wd-lg-650p {
20386
    width: 650%;
20387
  }
16848 stevensc 20388
 
16825 efrain 20389
  .mx-wd-lg-650p {
20390
    max-width: 650%;
20391
  }
16848 stevensc 20392
 
16825 efrain 20393
  .mn-wd-lg-650p {
20394
    min-width: 650%;
20395
  }
16848 stevensc 20396
 
16825 efrain 20397
  .wd-lg-650-f {
20398
    width: 650px !important;
20399
  }
16848 stevensc 20400
 
16825 efrain 20401
  .wd-lg-650p-f {
20402
    width: 650% !important;
20403
  }
16848 stevensc 20404
 
16825 efrain 20405
  .mx-wd-lg-650p-f {
20406
    max-width: 650% !important;
20407
  }
16848 stevensc 20408
 
16825 efrain 20409
  .mn-wd-lg-650p-f {
20410
    min-width: 650% !important;
20411
  }
16848 stevensc 20412
 
16825 efrain 20413
  .wd-lg-700 {
20414
    width: 700px;
20415
  }
16848 stevensc 20416
 
16825 efrain 20417
  .wd-lg-700p {
20418
    width: 700%;
20419
  }
16848 stevensc 20420
 
16825 efrain 20421
  .mx-wd-lg-700p {
20422
    max-width: 700%;
20423
  }
16848 stevensc 20424
 
16825 efrain 20425
  .mn-wd-lg-700p {
20426
    min-width: 700%;
20427
  }
16848 stevensc 20428
 
16825 efrain 20429
  .wd-lg-700-f {
20430
    width: 700px !important;
20431
  }
16848 stevensc 20432
 
16825 efrain 20433
  .wd-lg-700p-f {
20434
    width: 700% !important;
20435
  }
16848 stevensc 20436
 
16825 efrain 20437
  .mx-wd-lg-700p-f {
20438
    max-width: 700% !important;
20439
  }
16848 stevensc 20440
 
16825 efrain 20441
  .mn-wd-lg-700p-f {
20442
    min-width: 700% !important;
20443
  }
16848 stevensc 20444
 
16825 efrain 20445
  .wd-lg-750 {
20446
    width: 750px;
20447
  }
16848 stevensc 20448
 
16825 efrain 20449
  .wd-lg-750p {
20450
    width: 750%;
20451
  }
16848 stevensc 20452
 
16825 efrain 20453
  .mx-wd-lg-750p {
20454
    max-width: 750%;
20455
  }
16848 stevensc 20456
 
16825 efrain 20457
  .mn-wd-lg-750p {
20458
    min-width: 750%;
20459
  }
16848 stevensc 20460
 
16825 efrain 20461
  .wd-lg-750-f {
20462
    width: 750px !important;
20463
  }
16848 stevensc 20464
 
16825 efrain 20465
  .wd-lg-750p-f {
20466
    width: 750% !important;
20467
  }
16848 stevensc 20468
 
16825 efrain 20469
  .mx-wd-lg-750p-f {
20470
    max-width: 750% !important;
20471
  }
16848 stevensc 20472
 
16825 efrain 20473
  .mn-wd-lg-750p-f {
20474
    min-width: 750% !important;
20475
  }
16848 stevensc 20476
 
16825 efrain 20477
  .wd-lg-800 {
20478
    width: 800px;
20479
  }
16848 stevensc 20480
 
16825 efrain 20481
  .wd-lg-800p {
20482
    width: 800%;
20483
  }
16848 stevensc 20484
 
16825 efrain 20485
  .mx-wd-lg-800p {
20486
    max-width: 800%;
20487
  }
16848 stevensc 20488
 
16825 efrain 20489
  .mn-wd-lg-800p {
20490
    min-width: 800%;
20491
  }
16848 stevensc 20492
 
16825 efrain 20493
  .wd-lg-800-f {
20494
    width: 800px !important;
20495
  }
16848 stevensc 20496
 
16825 efrain 20497
  .wd-lg-800p-f {
20498
    width: 800% !important;
20499
  }
16848 stevensc 20500
 
16825 efrain 20501
  .mx-wd-lg-800p-f {
20502
    max-width: 800% !important;
20503
  }
16848 stevensc 20504
 
16825 efrain 20505
  .mn-wd-lg-800p-f {
20506
    min-width: 800% !important;
20507
  }
16848 stevensc 20508
 
16825 efrain 20509
  .wd-lg-850 {
20510
    width: 850px;
20511
  }
16848 stevensc 20512
 
16825 efrain 20513
  .wd-lg-850p {
20514
    width: 850%;
20515
  }
16848 stevensc 20516
 
16825 efrain 20517
  .mx-wd-lg-850p {
20518
    max-width: 850%;
20519
  }
16848 stevensc 20520
 
16825 efrain 20521
  .mn-wd-lg-850p {
20522
    min-width: 850%;
20523
  }
16848 stevensc 20524
 
16825 efrain 20525
  .wd-lg-850-f {
20526
    width: 850px !important;
20527
  }
16848 stevensc 20528
 
16825 efrain 20529
  .wd-lg-850p-f {
20530
    width: 850% !important;
20531
  }
16848 stevensc 20532
 
16825 efrain 20533
  .mx-wd-lg-850p-f {
20534
    max-width: 850% !important;
20535
  }
16848 stevensc 20536
 
16825 efrain 20537
  .mn-wd-lg-850p-f {
20538
    min-width: 850% !important;
20539
  }
16848 stevensc 20540
 
16825 efrain 20541
  .wd-lg-900 {
20542
    width: 900px;
20543
  }
16848 stevensc 20544
 
16825 efrain 20545
  .wd-lg-900p {
20546
    width: 900%;
20547
  }
16848 stevensc 20548
 
16825 efrain 20549
  .mx-wd-lg-900p {
20550
    max-width: 900%;
20551
  }
16848 stevensc 20552
 
16825 efrain 20553
  .mn-wd-lg-900p {
20554
    min-width: 900%;
20555
  }
16848 stevensc 20556
 
16825 efrain 20557
  .wd-lg-900-f {
20558
    width: 900px !important;
20559
  }
16848 stevensc 20560
 
16825 efrain 20561
  .wd-lg-900p-f {
20562
    width: 900% !important;
20563
  }
16848 stevensc 20564
 
16825 efrain 20565
  .mx-wd-lg-900p-f {
20566
    max-width: 900% !important;
20567
  }
16848 stevensc 20568
 
16825 efrain 20569
  .mn-wd-lg-900p-f {
20570
    min-width: 900% !important;
20571
  }
16848 stevensc 20572
 
16825 efrain 20573
  .wd-lg-950 {
20574
    width: 950px;
20575
  }
16848 stevensc 20576
 
16825 efrain 20577
  .wd-lg-950p {
20578
    width: 950%;
20579
  }
16848 stevensc 20580
 
16825 efrain 20581
  .mx-wd-lg-950p {
20582
    max-width: 950%;
20583
  }
16848 stevensc 20584
 
16825 efrain 20585
  .mn-wd-lg-950p {
20586
    min-width: 950%;
20587
  }
16848 stevensc 20588
 
16825 efrain 20589
  .wd-lg-950-f {
20590
    width: 950px !important;
20591
  }
16848 stevensc 20592
 
16825 efrain 20593
  .wd-lg-950p-f {
20594
    width: 950% !important;
20595
  }
16848 stevensc 20596
 
16825 efrain 20597
  .mx-wd-lg-950p-f {
20598
    max-width: 950% !important;
20599
  }
16848 stevensc 20600
 
16825 efrain 20601
  .mn-wd-lg-950p-f {
20602
    min-width: 950% !important;
20603
  }
16848 stevensc 20604
 
16825 efrain 20605
  .wd-lg-1000 {
20606
    width: 1000px;
20607
  }
16848 stevensc 20608
 
16825 efrain 20609
  .wd-lg-1000p {
20610
    width: 1000%;
20611
  }
16848 stevensc 20612
 
16825 efrain 20613
  .mx-wd-lg-1000p {
20614
    max-width: 1000%;
20615
  }
16848 stevensc 20616
 
16825 efrain 20617
  .mn-wd-lg-1000p {
20618
    min-width: 1000%;
20619
  }
16848 stevensc 20620
 
16825 efrain 20621
  .wd-lg-1000-f {
20622
    width: 1000px !important;
20623
  }
16848 stevensc 20624
 
16825 efrain 20625
  .wd-lg-1000p-f {
20626
    width: 1000% !important;
20627
  }
16848 stevensc 20628
 
16825 efrain 20629
  .mx-wd-lg-1000p-f {
20630
    max-width: 1000% !important;
20631
  }
16848 stevensc 20632
 
16825 efrain 20633
  .mn-wd-lg-1000p-f {
20634
    min-width: 1000% !important;
20635
  }
16848 stevensc 20636
 
16825 efrain 20637
  .wd-lg-auto {
20638
    width: auto;
20639
  }
16848 stevensc 20640
 
16825 efrain 20641
  .wd-lg-auto-f {
20642
    width: auto !important;
20643
  }
20644
}
16848 stevensc 20645
 
16825 efrain 20646
@media (min-width: 1200px) {
20647
  .wd-xl-5 {
20648
    width: 5px;
20649
  }
16848 stevensc 20650
 
16825 efrain 20651
  .wd-xl-5p {
20652
    width: 5%;
20653
  }
16848 stevensc 20654
 
16825 efrain 20655
  .mx-wd-xl-5p {
20656
    max-width: 5%;
20657
  }
16848 stevensc 20658
 
16825 efrain 20659
  .mn-wd-xl-5p {
20660
    min-width: 5%;
20661
  }
16848 stevensc 20662
 
16825 efrain 20663
  .wd-xl-5-f {
20664
    width: 5px !important;
20665
  }
16848 stevensc 20666
 
16825 efrain 20667
  .wd-xl-5p-f {
20668
    width: 5% !important;
20669
  }
16848 stevensc 20670
 
16825 efrain 20671
  .mx-wd-xl-5p-f {
20672
    max-width: 5% !important;
20673
  }
16848 stevensc 20674
 
16825 efrain 20675
  .mn-wd-xl-5p-f {
20676
    min-width: 5% !important;
20677
  }
16848 stevensc 20678
 
16825 efrain 20679
  .wd-xl-10 {
20680
    width: 10px;
20681
  }
16848 stevensc 20682
 
16825 efrain 20683
  .wd-xl-10p {
20684
    width: 10%;
20685
  }
16848 stevensc 20686
 
16825 efrain 20687
  .mx-wd-xl-10p {
20688
    max-width: 10%;
20689
  }
16848 stevensc 20690
 
16825 efrain 20691
  .mn-wd-xl-10p {
20692
    min-width: 10%;
20693
  }
16848 stevensc 20694
 
16825 efrain 20695
  .wd-xl-10-f {
20696
    width: 10px !important;
20697
  }
16848 stevensc 20698
 
16825 efrain 20699
  .wd-xl-10p-f {
20700
    width: 10% !important;
20701
  }
16848 stevensc 20702
 
16825 efrain 20703
  .mx-wd-xl-10p-f {
20704
    max-width: 10% !important;
20705
  }
16848 stevensc 20706
 
16825 efrain 20707
  .mn-wd-xl-10p-f {
20708
    min-width: 10% !important;
20709
  }
16848 stevensc 20710
 
16825 efrain 20711
  .wd-xl-15 {
20712
    width: 15px;
20713
  }
16848 stevensc 20714
 
16825 efrain 20715
  .wd-xl-15p {
20716
    width: 15%;
20717
  }
16848 stevensc 20718
 
16825 efrain 20719
  .mx-wd-xl-15p {
20720
    max-width: 15%;
20721
  }
16848 stevensc 20722
 
16825 efrain 20723
  .mn-wd-xl-15p {
20724
    min-width: 15%;
20725
  }
16848 stevensc 20726
 
16825 efrain 20727
  .wd-xl-15-f {
20728
    width: 15px !important;
20729
  }
16848 stevensc 20730
 
16825 efrain 20731
  .wd-xl-15p-f {
20732
    width: 15% !important;
20733
  }
16848 stevensc 20734
 
16825 efrain 20735
  .mx-wd-xl-15p-f {
20736
    max-width: 15% !important;
20737
  }
16848 stevensc 20738
 
16825 efrain 20739
  .mn-wd-xl-15p-f {
20740
    min-width: 15% !important;
20741
  }
16848 stevensc 20742
 
16825 efrain 20743
  .wd-xl-20 {
20744
    width: 20px;
20745
  }
16848 stevensc 20746
 
16825 efrain 20747
  .wd-xl-20p {
20748
    width: 20%;
20749
  }
16848 stevensc 20750
 
16825 efrain 20751
  .mx-wd-xl-20p {
20752
    max-width: 20%;
20753
  }
16848 stevensc 20754
 
16825 efrain 20755
  .mn-wd-xl-20p {
20756
    min-width: 20%;
20757
  }
16848 stevensc 20758
 
16825 efrain 20759
  .wd-xl-20-f {
20760
    width: 20px !important;
20761
  }
16848 stevensc 20762
 
16825 efrain 20763
  .wd-xl-20p-f {
20764
    width: 20% !important;
20765
  }
16848 stevensc 20766
 
16825 efrain 20767
  .mx-wd-xl-20p-f {
20768
    max-width: 20% !important;
20769
  }
16848 stevensc 20770
 
16825 efrain 20771
  .mn-wd-xl-20p-f {
20772
    min-width: 20% !important;
20773
  }
16848 stevensc 20774
 
16825 efrain 20775
  .wd-xl-25 {
20776
    width: 25px;
20777
  }
16848 stevensc 20778
 
16825 efrain 20779
  .wd-xl-25p {
20780
    width: 25%;
20781
  }
16848 stevensc 20782
 
16825 efrain 20783
  .mx-wd-xl-25p {
20784
    max-width: 25%;
20785
  }
16848 stevensc 20786
 
16825 efrain 20787
  .mn-wd-xl-25p {
20788
    min-width: 25%;
20789
  }
16848 stevensc 20790
 
16825 efrain 20791
  .wd-xl-25-f {
20792
    width: 25px !important;
20793
  }
16848 stevensc 20794
 
16825 efrain 20795
  .wd-xl-25p-f {
20796
    width: 25% !important;
20797
  }
16848 stevensc 20798
 
16825 efrain 20799
  .mx-wd-xl-25p-f {
20800
    max-width: 25% !important;
20801
  }
16848 stevensc 20802
 
16825 efrain 20803
  .mn-wd-xl-25p-f {
20804
    min-width: 25% !important;
20805
  }
16848 stevensc 20806
 
16825 efrain 20807
  .wd-xl-30 {
20808
    width: 30px;
20809
  }
16848 stevensc 20810
 
16825 efrain 20811
  .wd-xl-30p {
20812
    width: 30%;
20813
  }
16848 stevensc 20814
 
16825 efrain 20815
  .mx-wd-xl-30p {
20816
    max-width: 30%;
20817
  }
16848 stevensc 20818
 
16825 efrain 20819
  .mn-wd-xl-30p {
20820
    min-width: 30%;
20821
  }
16848 stevensc 20822
 
16825 efrain 20823
  .wd-xl-30-f {
20824
    width: 30px !important;
20825
  }
16848 stevensc 20826
 
16825 efrain 20827
  .wd-xl-30p-f {
20828
    width: 30% !important;
20829
  }
16848 stevensc 20830
 
16825 efrain 20831
  .mx-wd-xl-30p-f {
20832
    max-width: 30% !important;
20833
  }
16848 stevensc 20834
 
16825 efrain 20835
  .mn-wd-xl-30p-f {
20836
    min-width: 30% !important;
20837
  }
16848 stevensc 20838
 
16825 efrain 20839
  .wd-xl-35 {
20840
    width: 35px;
20841
  }
16848 stevensc 20842
 
16825 efrain 20843
  .wd-xl-35p {
20844
    width: 35%;
20845
  }
16848 stevensc 20846
 
16825 efrain 20847
  .mx-wd-xl-35p {
20848
    max-width: 35%;
20849
  }
16848 stevensc 20850
 
16825 efrain 20851
  .mn-wd-xl-35p {
20852
    min-width: 35%;
20853
  }
16848 stevensc 20854
 
16825 efrain 20855
  .wd-xl-35-f {
20856
    width: 35px !important;
20857
  }
16848 stevensc 20858
 
16825 efrain 20859
  .wd-xl-35p-f {
20860
    width: 35% !important;
20861
  }
16848 stevensc 20862
 
16825 efrain 20863
  .mx-wd-xl-35p-f {
20864
    max-width: 35% !important;
20865
  }
16848 stevensc 20866
 
16825 efrain 20867
  .mn-wd-xl-35p-f {
20868
    min-width: 35% !important;
20869
  }
16848 stevensc 20870
 
16825 efrain 20871
  .wd-xl-40 {
20872
    width: 40px;
20873
  }
16848 stevensc 20874
 
16825 efrain 20875
  .wd-xl-40p {
20876
    width: 40%;
20877
  }
16848 stevensc 20878
 
16825 efrain 20879
  .mx-wd-xl-40p {
20880
    max-width: 40%;
20881
  }
16848 stevensc 20882
 
16825 efrain 20883
  .mn-wd-xl-40p {
20884
    min-width: 40%;
20885
  }
16848 stevensc 20886
 
16825 efrain 20887
  .wd-xl-40-f {
20888
    width: 40px !important;
20889
  }
16848 stevensc 20890
 
16825 efrain 20891
  .wd-xl-40p-f {
20892
    width: 40% !important;
20893
  }
16848 stevensc 20894
 
16825 efrain 20895
  .mx-wd-xl-40p-f {
20896
    max-width: 40% !important;
20897
  }
16848 stevensc 20898
 
16825 efrain 20899
  .mn-wd-xl-40p-f {
20900
    min-width: 40% !important;
20901
  }
16848 stevensc 20902
 
16825 efrain 20903
  .wd-xl-45 {
20904
    width: 45px;
20905
  }
16848 stevensc 20906
 
16825 efrain 20907
  .wd-xl-45p {
20908
    width: 45%;
20909
  }
16848 stevensc 20910
 
16825 efrain 20911
  .mx-wd-xl-45p {
20912
    max-width: 45%;
20913
  }
16848 stevensc 20914
 
16825 efrain 20915
  .mn-wd-xl-45p {
20916
    min-width: 45%;
20917
  }
16848 stevensc 20918
 
16825 efrain 20919
  .wd-xl-45-f {
20920
    width: 45px !important;
20921
  }
16848 stevensc 20922
 
16825 efrain 20923
  .wd-xl-45p-f {
20924
    width: 45% !important;
20925
  }
16848 stevensc 20926
 
16825 efrain 20927
  .mx-wd-xl-45p-f {
20928
    max-width: 45% !important;
20929
  }
16848 stevensc 20930
 
16825 efrain 20931
  .mn-wd-xl-45p-f {
20932
    min-width: 45% !important;
20933
  }
16848 stevensc 20934
 
16825 efrain 20935
  .wd-xl-50 {
20936
    width: 50px;
20937
  }
16848 stevensc 20938
 
16825 efrain 20939
  .wd-xl-50p {
20940
    width: 50%;
20941
  }
16848 stevensc 20942
 
16825 efrain 20943
  .mx-wd-xl-50p {
20944
    max-width: 50%;
20945
  }
16848 stevensc 20946
 
16825 efrain 20947
  .mn-wd-xl-50p {
20948
    min-width: 50%;
20949
  }
16848 stevensc 20950
 
16825 efrain 20951
  .wd-xl-50-f {
20952
    width: 50px !important;
20953
  }
16848 stevensc 20954
 
16825 efrain 20955
  .wd-xl-50p-f {
20956
    width: 50% !important;
20957
  }
16848 stevensc 20958
 
16825 efrain 20959
  .mx-wd-xl-50p-f {
20960
    max-width: 50% !important;
20961
  }
16848 stevensc 20962
 
16825 efrain 20963
  .mn-wd-xl-50p-f {
20964
    min-width: 50% !important;
20965
  }
16848 stevensc 20966
 
16825 efrain 20967
  .wd-xl-55 {
20968
    width: 55px;
20969
  }
16848 stevensc 20970
 
16825 efrain 20971
  .wd-xl-55p {
20972
    width: 55%;
20973
  }
16848 stevensc 20974
 
16825 efrain 20975
  .mx-wd-xl-55p {
20976
    max-width: 55%;
20977
  }
16848 stevensc 20978
 
16825 efrain 20979
  .mn-wd-xl-55p {
20980
    min-width: 55%;
20981
  }
16848 stevensc 20982
 
16825 efrain 20983
  .wd-xl-55-f {
20984
    width: 55px !important;
20985
  }
16848 stevensc 20986
 
16825 efrain 20987
  .wd-xl-55p-f {
20988
    width: 55% !important;
20989
  }
16848 stevensc 20990
 
16825 efrain 20991
  .mx-wd-xl-55p-f {
20992
    max-width: 55% !important;
20993
  }
16848 stevensc 20994
 
16825 efrain 20995
  .mn-wd-xl-55p-f {
20996
    min-width: 55% !important;
20997
  }
16848 stevensc 20998
 
16825 efrain 20999
  .wd-xl-60 {
21000
    width: 60px;
21001
  }
16848 stevensc 21002
 
16825 efrain 21003
  .wd-xl-60p {
21004
    width: 60%;
21005
  }
16848 stevensc 21006
 
16825 efrain 21007
  .mx-wd-xl-60p {
21008
    max-width: 60%;
21009
  }
16848 stevensc 21010
 
16825 efrain 21011
  .mn-wd-xl-60p {
21012
    min-width: 60%;
21013
  }
16848 stevensc 21014
 
16825 efrain 21015
  .wd-xl-60-f {
21016
    width: 60px !important;
21017
  }
16848 stevensc 21018
 
16825 efrain 21019
  .wd-xl-60p-f {
21020
    width: 60% !important;
21021
  }
16848 stevensc 21022
 
16825 efrain 21023
  .mx-wd-xl-60p-f {
21024
    max-width: 60% !important;
21025
  }
16848 stevensc 21026
 
16825 efrain 21027
  .mn-wd-xl-60p-f {
21028
    min-width: 60% !important;
21029
  }
16848 stevensc 21030
 
16825 efrain 21031
  .wd-xl-65 {
21032
    width: 65px;
21033
  }
16848 stevensc 21034
 
16825 efrain 21035
  .wd-xl-65p {
21036
    width: 65%;
21037
  }
16848 stevensc 21038
 
16825 efrain 21039
  .mx-wd-xl-65p {
21040
    max-width: 65%;
21041
  }
16848 stevensc 21042
 
16825 efrain 21043
  .mn-wd-xl-65p {
21044
    min-width: 65%;
21045
  }
16848 stevensc 21046
 
16825 efrain 21047
  .wd-xl-65-f {
21048
    width: 65px !important;
21049
  }
16848 stevensc 21050
 
16825 efrain 21051
  .wd-xl-65p-f {
21052
    width: 65% !important;
21053
  }
16848 stevensc 21054
 
16825 efrain 21055
  .mx-wd-xl-65p-f {
21056
    max-width: 65% !important;
21057
  }
16848 stevensc 21058
 
16825 efrain 21059
  .mn-wd-xl-65p-f {
21060
    min-width: 65% !important;
21061
  }
16848 stevensc 21062
 
16825 efrain 21063
  .wd-xl-70 {
21064
    width: 70px;
21065
  }
16848 stevensc 21066
 
16825 efrain 21067
  .wd-xl-70p {
21068
    width: 70%;
21069
  }
16848 stevensc 21070
 
16825 efrain 21071
  .mx-wd-xl-70p {
21072
    max-width: 70%;
21073
  }
16848 stevensc 21074
 
16825 efrain 21075
  .mn-wd-xl-70p {
21076
    min-width: 70%;
21077
  }
16848 stevensc 21078
 
16825 efrain 21079
  .wd-xl-70-f {
21080
    width: 70px !important;
21081
  }
16848 stevensc 21082
 
16825 efrain 21083
  .wd-xl-70p-f {
21084
    width: 70% !important;
21085
  }
16848 stevensc 21086
 
16825 efrain 21087
  .mx-wd-xl-70p-f {
21088
    max-width: 70% !important;
21089
  }
16848 stevensc 21090
 
16825 efrain 21091
  .mn-wd-xl-70p-f {
21092
    min-width: 70% !important;
21093
  }
16848 stevensc 21094
 
16825 efrain 21095
  .wd-xl-75 {
21096
    width: 75px;
21097
  }
16848 stevensc 21098
 
16825 efrain 21099
  .wd-xl-75p {
21100
    width: 75%;
21101
  }
16848 stevensc 21102
 
16825 efrain 21103
  .mx-wd-xl-75p {
21104
    max-width: 75%;
21105
  }
16848 stevensc 21106
 
16825 efrain 21107
  .mn-wd-xl-75p {
21108
    min-width: 75%;
21109
  }
16848 stevensc 21110
 
16825 efrain 21111
  .wd-xl-75-f {
21112
    width: 75px !important;
21113
  }
16848 stevensc 21114
 
16825 efrain 21115
  .wd-xl-75p-f {
21116
    width: 75% !important;
21117
  }
16848 stevensc 21118
 
16825 efrain 21119
  .mx-wd-xl-75p-f {
21120
    max-width: 75% !important;
21121
  }
16848 stevensc 21122
 
16825 efrain 21123
  .mn-wd-xl-75p-f {
21124
    min-width: 75% !important;
21125
  }
16848 stevensc 21126
 
16825 efrain 21127
  .wd-xl-80 {
21128
    width: 80px;
21129
  }
16848 stevensc 21130
 
16825 efrain 21131
  .wd-xl-80p {
21132
    width: 80%;
21133
  }
16848 stevensc 21134
 
16825 efrain 21135
  .mx-wd-xl-80p {
21136
    max-width: 80%;
21137
  }
16848 stevensc 21138
 
16825 efrain 21139
  .mn-wd-xl-80p {
21140
    min-width: 80%;
21141
  }
16848 stevensc 21142
 
16825 efrain 21143
  .wd-xl-80-f {
21144
    width: 80px !important;
21145
  }
16848 stevensc 21146
 
16825 efrain 21147
  .wd-xl-80p-f {
21148
    width: 80% !important;
21149
  }
16848 stevensc 21150
 
16825 efrain 21151
  .mx-wd-xl-80p-f {
21152
    max-width: 80% !important;
21153
  }
16848 stevensc 21154
 
16825 efrain 21155
  .mn-wd-xl-80p-f {
21156
    min-width: 80% !important;
21157
  }
16848 stevensc 21158
 
16825 efrain 21159
  .wd-xl-85 {
21160
    width: 85px;
21161
  }
16848 stevensc 21162
 
16825 efrain 21163
  .wd-xl-85p {
21164
    width: 85%;
21165
  }
16848 stevensc 21166
 
16825 efrain 21167
  .mx-wd-xl-85p {
21168
    max-width: 85%;
21169
  }
16848 stevensc 21170
 
16825 efrain 21171
  .mn-wd-xl-85p {
21172
    min-width: 85%;
21173
  }
16848 stevensc 21174
 
16825 efrain 21175
  .wd-xl-85-f {
21176
    width: 85px !important;
21177
  }
16848 stevensc 21178
 
16825 efrain 21179
  .wd-xl-85p-f {
21180
    width: 85% !important;
21181
  }
16848 stevensc 21182
 
16825 efrain 21183
  .mx-wd-xl-85p-f {
21184
    max-width: 85% !important;
21185
  }
16848 stevensc 21186
 
16825 efrain 21187
  .mn-wd-xl-85p-f {
21188
    min-width: 85% !important;
21189
  }
16848 stevensc 21190
 
16825 efrain 21191
  .wd-xl-90 {
21192
    width: 90px;
21193
  }
16848 stevensc 21194
 
16825 efrain 21195
  .wd-xl-90p {
21196
    width: 90%;
21197
  }
16848 stevensc 21198
 
16825 efrain 21199
  .mx-wd-xl-90p {
21200
    max-width: 90%;
21201
  }
16848 stevensc 21202
 
16825 efrain 21203
  .mn-wd-xl-90p {
21204
    min-width: 90%;
21205
  }
16848 stevensc 21206
 
16825 efrain 21207
  .wd-xl-90-f {
21208
    width: 90px !important;
21209
  }
16848 stevensc 21210
 
16825 efrain 21211
  .wd-xl-90p-f {
21212
    width: 90% !important;
21213
  }
16848 stevensc 21214
 
16825 efrain 21215
  .mx-wd-xl-90p-f {
21216
    max-width: 90% !important;
21217
  }
16848 stevensc 21218
 
16825 efrain 21219
  .mn-wd-xl-90p-f {
21220
    min-width: 90% !important;
21221
  }
16848 stevensc 21222
 
16825 efrain 21223
  .wd-xl-95 {
21224
    width: 95px;
21225
  }
16848 stevensc 21226
 
16825 efrain 21227
  .wd-xl-95p {
21228
    width: 95%;
21229
  }
16848 stevensc 21230
 
16825 efrain 21231
  .mx-wd-xl-95p {
21232
    max-width: 95%;
21233
  }
16848 stevensc 21234
 
16825 efrain 21235
  .mn-wd-xl-95p {
21236
    min-width: 95%;
21237
  }
16848 stevensc 21238
 
16825 efrain 21239
  .wd-xl-95-f {
21240
    width: 95px !important;
21241
  }
16848 stevensc 21242
 
16825 efrain 21243
  .wd-xl-95p-f {
21244
    width: 95% !important;
21245
  }
16848 stevensc 21246
 
16825 efrain 21247
  .mx-wd-xl-95p-f {
21248
    max-width: 95% !important;
21249
  }
16848 stevensc 21250
 
16825 efrain 21251
  .mn-wd-xl-95p-f {
21252
    min-width: 95% !important;
21253
  }
16848 stevensc 21254
 
16825 efrain 21255
  .wd-xl-100 {
21256
    width: 100px;
21257
  }
16848 stevensc 21258
 
16825 efrain 21259
  .wd-xl-100p {
21260
    width: 100%;
21261
  }
16848 stevensc 21262
 
16825 efrain 21263
  .mx-wd-xl-100p {
21264
    max-width: 100%;
21265
  }
16848 stevensc 21266
 
16825 efrain 21267
  .mn-wd-xl-100p {
21268
    min-width: 100%;
21269
  }
16848 stevensc 21270
 
16825 efrain 21271
  .wd-xl-100-f {
21272
    width: 100px !important;
21273
  }
16848 stevensc 21274
 
16825 efrain 21275
  .wd-xl-100p-f {
21276
    width: 100% !important;
21277
  }
16848 stevensc 21278
 
16825 efrain 21279
  .mx-wd-xl-100p-f {
21280
    max-width: 100% !important;
21281
  }
16848 stevensc 21282
 
16825 efrain 21283
  .mn-wd-xl-100p-f {
21284
    min-width: 100% !important;
21285
  }
16848 stevensc 21286
 
16825 efrain 21287
  .wd-xl-150 {
21288
    width: 150px;
21289
  }
16848 stevensc 21290
 
16825 efrain 21291
  .wd-xl-150p {
21292
    width: 150%;
21293
  }
16848 stevensc 21294
 
16825 efrain 21295
  .mx-wd-xl-150p {
21296
    max-width: 150%;
21297
  }
16848 stevensc 21298
 
16825 efrain 21299
  .mn-wd-xl-150p {
21300
    min-width: 150%;
21301
  }
16848 stevensc 21302
 
16825 efrain 21303
  .wd-xl-150-f {
21304
    width: 150px !important;
21305
  }
16848 stevensc 21306
 
16825 efrain 21307
  .wd-xl-150p-f {
21308
    width: 150% !important;
21309
  }
16848 stevensc 21310
 
16825 efrain 21311
  .mx-wd-xl-150p-f {
21312
    max-width: 150% !important;
21313
  }
16848 stevensc 21314
 
16825 efrain 21315
  .mn-wd-xl-150p-f {
21316
    min-width: 150% !important;
21317
  }
16848 stevensc 21318
 
16825 efrain 21319
  .wd-xl-200 {
21320
    width: 200px;
21321
  }
16848 stevensc 21322
 
16825 efrain 21323
  .wd-xl-200p {
21324
    width: 200%;
21325
  }
16848 stevensc 21326
 
16825 efrain 21327
  .mx-wd-xl-200p {
21328
    max-width: 200%;
21329
  }
16848 stevensc 21330
 
16825 efrain 21331
  .mn-wd-xl-200p {
21332
    min-width: 200%;
21333
  }
16848 stevensc 21334
 
16825 efrain 21335
  .wd-xl-200-f {
21336
    width: 200px !important;
21337
  }
16848 stevensc 21338
 
16825 efrain 21339
  .wd-xl-200p-f {
21340
    width: 200% !important;
21341
  }
16848 stevensc 21342
 
16825 efrain 21343
  .mx-wd-xl-200p-f {
21344
    max-width: 200% !important;
21345
  }
16848 stevensc 21346
 
16825 efrain 21347
  .mn-wd-xl-200p-f {
21348
    min-width: 200% !important;
21349
  }
16848 stevensc 21350
 
16825 efrain 21351
  .wd-xl-250 {
21352
    width: 250px;
21353
  }
16848 stevensc 21354
 
16825 efrain 21355
  .wd-xl-250p {
21356
    width: 250%;
21357
  }
16848 stevensc 21358
 
16825 efrain 21359
  .mx-wd-xl-250p {
21360
    max-width: 250%;
21361
  }
16848 stevensc 21362
 
16825 efrain 21363
  .mn-wd-xl-250p {
21364
    min-width: 250%;
21365
  }
16848 stevensc 21366
 
16825 efrain 21367
  .wd-xl-250-f {
21368
    width: 250px !important;
21369
  }
16848 stevensc 21370
 
16825 efrain 21371
  .wd-xl-250p-f {
21372
    width: 250% !important;
21373
  }
16848 stevensc 21374
 
16825 efrain 21375
  .mx-wd-xl-250p-f {
21376
    max-width: 250% !important;
21377
  }
16848 stevensc 21378
 
16825 efrain 21379
  .mn-wd-xl-250p-f {
21380
    min-width: 250% !important;
21381
  }
16848 stevensc 21382
 
16825 efrain 21383
  .wd-xl-300 {
21384
    width: 300px;
21385
  }
16848 stevensc 21386
 
16825 efrain 21387
  .wd-xl-300p {
21388
    width: 300%;
21389
  }
16848 stevensc 21390
 
16825 efrain 21391
  .mx-wd-xl-300p {
21392
    max-width: 300%;
21393
  }
16848 stevensc 21394
 
16825 efrain 21395
  .mn-wd-xl-300p {
21396
    min-width: 300%;
21397
  }
16848 stevensc 21398
 
16825 efrain 21399
  .wd-xl-300-f {
21400
    width: 300px !important;
21401
  }
16848 stevensc 21402
 
16825 efrain 21403
  .wd-xl-300p-f {
21404
    width: 300% !important;
21405
  }
16848 stevensc 21406
 
16825 efrain 21407
  .mx-wd-xl-300p-f {
21408
    max-width: 300% !important;
21409
  }
16848 stevensc 21410
 
16825 efrain 21411
  .mn-wd-xl-300p-f {
21412
    min-width: 300% !important;
21413
  }
16848 stevensc 21414
 
16825 efrain 21415
  .wd-xl-350 {
21416
    width: 350px;
21417
  }
16848 stevensc 21418
 
16825 efrain 21419
  .wd-xl-350p {
21420
    width: 350%;
21421
  }
16848 stevensc 21422
 
16825 efrain 21423
  .mx-wd-xl-350p {
21424
    max-width: 350%;
21425
  }
16848 stevensc 21426
 
16825 efrain 21427
  .mn-wd-xl-350p {
21428
    min-width: 350%;
21429
  }
16848 stevensc 21430
 
16825 efrain 21431
  .wd-xl-350-f {
21432
    width: 350px !important;
21433
  }
16848 stevensc 21434
 
16825 efrain 21435
  .wd-xl-350p-f {
21436
    width: 350% !important;
21437
  }
16848 stevensc 21438
 
16825 efrain 21439
  .mx-wd-xl-350p-f {
21440
    max-width: 350% !important;
21441
  }
16848 stevensc 21442
 
16825 efrain 21443
  .mn-wd-xl-350p-f {
21444
    min-width: 350% !important;
21445
  }
16848 stevensc 21446
 
16825 efrain 21447
  .wd-xl-400 {
21448
    width: 400px;
21449
  }
16848 stevensc 21450
 
16825 efrain 21451
  .wd-xl-400p {
21452
    width: 400%;
21453
  }
16848 stevensc 21454
 
16825 efrain 21455
  .mx-wd-xl-400p {
21456
    max-width: 400%;
21457
  }
16848 stevensc 21458
 
16825 efrain 21459
  .mn-wd-xl-400p {
21460
    min-width: 400%;
21461
  }
16848 stevensc 21462
 
16825 efrain 21463
  .wd-xl-400-f {
21464
    width: 400px !important;
21465
  }
16848 stevensc 21466
 
16825 efrain 21467
  .wd-xl-400p-f {
21468
    width: 400% !important;
21469
  }
16848 stevensc 21470
 
16825 efrain 21471
  .mx-wd-xl-400p-f {
21472
    max-width: 400% !important;
21473
  }
16848 stevensc 21474
 
16825 efrain 21475
  .mn-wd-xl-400p-f {
21476
    min-width: 400% !important;
21477
  }
16848 stevensc 21478
 
16825 efrain 21479
  .wd-xl-450 {
21480
    width: 450px;
21481
  }
16848 stevensc 21482
 
16825 efrain 21483
  .wd-xl-450p {
21484
    width: 450%;
21485
  }
16848 stevensc 21486
 
16825 efrain 21487
  .mx-wd-xl-450p {
21488
    max-width: 450%;
21489
  }
16848 stevensc 21490
 
16825 efrain 21491
  .mn-wd-xl-450p {
21492
    min-width: 450%;
21493
  }
16848 stevensc 21494
 
16825 efrain 21495
  .wd-xl-450-f {
21496
    width: 450px !important;
21497
  }
16848 stevensc 21498
 
16825 efrain 21499
  .wd-xl-450p-f {
21500
    width: 450% !important;
21501
  }
16848 stevensc 21502
 
16825 efrain 21503
  .mx-wd-xl-450p-f {
21504
    max-width: 450% !important;
21505
  }
16848 stevensc 21506
 
16825 efrain 21507
  .mn-wd-xl-450p-f {
21508
    min-width: 450% !important;
21509
  }
16848 stevensc 21510
 
16825 efrain 21511
  .wd-xl-500 {
21512
    width: 500px;
21513
  }
16848 stevensc 21514
 
16825 efrain 21515
  .wd-xl-500p {
21516
    width: 500%;
21517
  }
16848 stevensc 21518
 
16825 efrain 21519
  .mx-wd-xl-500p {
21520
    max-width: 500%;
21521
  }
16848 stevensc 21522
 
16825 efrain 21523
  .mn-wd-xl-500p {
21524
    min-width: 500%;
21525
  }
16848 stevensc 21526
 
16825 efrain 21527
  .wd-xl-500-f {
21528
    width: 500px !important;
21529
  }
16848 stevensc 21530
 
16825 efrain 21531
  .wd-xl-500p-f {
21532
    width: 500% !important;
21533
  }
16848 stevensc 21534
 
16825 efrain 21535
  .mx-wd-xl-500p-f {
21536
    max-width: 500% !important;
21537
  }
16848 stevensc 21538
 
16825 efrain 21539
  .mn-wd-xl-500p-f {
21540
    min-width: 500% !important;
21541
  }
16848 stevensc 21542
 
16825 efrain 21543
  .wd-xl-550 {
21544
    width: 550px;
21545
  }
16848 stevensc 21546
 
16825 efrain 21547
  .wd-xl-550p {
21548
    width: 550%;
21549
  }
16848 stevensc 21550
 
16825 efrain 21551
  .mx-wd-xl-550p {
21552
    max-width: 550%;
21553
  }
16848 stevensc 21554
 
16825 efrain 21555
  .mn-wd-xl-550p {
21556
    min-width: 550%;
21557
  }
16848 stevensc 21558
 
16825 efrain 21559
  .wd-xl-550-f {
21560
    width: 550px !important;
21561
  }
16848 stevensc 21562
 
16825 efrain 21563
  .wd-xl-550p-f {
21564
    width: 550% !important;
21565
  }
16848 stevensc 21566
 
16825 efrain 21567
  .mx-wd-xl-550p-f {
21568
    max-width: 550% !important;
21569
  }
16848 stevensc 21570
 
16825 efrain 21571
  .mn-wd-xl-550p-f {
21572
    min-width: 550% !important;
21573
  }
16848 stevensc 21574
 
16825 efrain 21575
  .wd-xl-600 {
21576
    width: 600px;
21577
  }
16848 stevensc 21578
 
16825 efrain 21579
  .wd-xl-600p {
21580
    width: 600%;
21581
  }
16848 stevensc 21582
 
16825 efrain 21583
  .mx-wd-xl-600p {
21584
    max-width: 600%;
21585
  }
16848 stevensc 21586
 
16825 efrain 21587
  .mn-wd-xl-600p {
21588
    min-width: 600%;
21589
  }
16848 stevensc 21590
 
16825 efrain 21591
  .wd-xl-600-f {
21592
    width: 600px !important;
21593
  }
16848 stevensc 21594
 
16825 efrain 21595
  .wd-xl-600p-f {
21596
    width: 600% !important;
21597
  }
16848 stevensc 21598
 
16825 efrain 21599
  .mx-wd-xl-600p-f {
21600
    max-width: 600% !important;
21601
  }
16848 stevensc 21602
 
16825 efrain 21603
  .mn-wd-xl-600p-f {
21604
    min-width: 600% !important;
21605
  }
16848 stevensc 21606
 
16825 efrain 21607
  .wd-xl-650 {
21608
    width: 650px;
21609
  }
16848 stevensc 21610
 
16825 efrain 21611
  .wd-xl-650p {
21612
    width: 650%;
21613
  }
16848 stevensc 21614
 
16825 efrain 21615
  .mx-wd-xl-650p {
21616
    max-width: 650%;
21617
  }
16848 stevensc 21618
 
16825 efrain 21619
  .mn-wd-xl-650p {
21620
    min-width: 650%;
21621
  }
16848 stevensc 21622
 
16825 efrain 21623
  .wd-xl-650-f {
21624
    width: 650px !important;
21625
  }
16848 stevensc 21626
 
16825 efrain 21627
  .wd-xl-650p-f {
21628
    width: 650% !important;
21629
  }
16848 stevensc 21630
 
16825 efrain 21631
  .mx-wd-xl-650p-f {
21632
    max-width: 650% !important;
21633
  }
16848 stevensc 21634
 
16825 efrain 21635
  .mn-wd-xl-650p-f {
21636
    min-width: 650% !important;
21637
  }
16848 stevensc 21638
 
16825 efrain 21639
  .wd-xl-700 {
21640
    width: 700px;
21641
  }
16848 stevensc 21642
 
16825 efrain 21643
  .wd-xl-700p {
21644
    width: 700%;
21645
  }
16848 stevensc 21646
 
16825 efrain 21647
  .mx-wd-xl-700p {
21648
    max-width: 700%;
21649
  }
16848 stevensc 21650
 
16825 efrain 21651
  .mn-wd-xl-700p {
21652
    min-width: 700%;
21653
  }
16848 stevensc 21654
 
16825 efrain 21655
  .wd-xl-700-f {
21656
    width: 700px !important;
21657
  }
16848 stevensc 21658
 
16825 efrain 21659
  .wd-xl-700p-f {
21660
    width: 700% !important;
21661
  }
16848 stevensc 21662
 
16825 efrain 21663
  .mx-wd-xl-700p-f {
21664
    max-width: 700% !important;
21665
  }
16848 stevensc 21666
 
16825 efrain 21667
  .mn-wd-xl-700p-f {
21668
    min-width: 700% !important;
21669
  }
16848 stevensc 21670
 
16825 efrain 21671
  .wd-xl-750 {
21672
    width: 750px;
21673
  }
16848 stevensc 21674
 
16825 efrain 21675
  .wd-xl-750p {
21676
    width: 750%;
21677
  }
16848 stevensc 21678
 
16825 efrain 21679
  .mx-wd-xl-750p {
21680
    max-width: 750%;
21681
  }
16848 stevensc 21682
 
16825 efrain 21683
  .mn-wd-xl-750p {
21684
    min-width: 750%;
21685
  }
16848 stevensc 21686
 
16825 efrain 21687
  .wd-xl-750-f {
21688
    width: 750px !important;
21689
  }
16848 stevensc 21690
 
16825 efrain 21691
  .wd-xl-750p-f {
21692
    width: 750% !important;
21693
  }
16848 stevensc 21694
 
16825 efrain 21695
  .mx-wd-xl-750p-f {
21696
    max-width: 750% !important;
21697
  }
16848 stevensc 21698
 
16825 efrain 21699
  .mn-wd-xl-750p-f {
21700
    min-width: 750% !important;
21701
  }
16848 stevensc 21702
 
16825 efrain 21703
  .wd-xl-800 {
21704
    width: 800px;
21705
  }
16848 stevensc 21706
 
16825 efrain 21707
  .wd-xl-800p {
21708
    width: 800%;
21709
  }
16848 stevensc 21710
 
16825 efrain 21711
  .mx-wd-xl-800p {
21712
    max-width: 800%;
21713
  }
16848 stevensc 21714
 
16825 efrain 21715
  .mn-wd-xl-800p {
21716
    min-width: 800%;
21717
  }
16848 stevensc 21718
 
16825 efrain 21719
  .wd-xl-800-f {
21720
    width: 800px !important;
21721
  }
16848 stevensc 21722
 
16825 efrain 21723
  .wd-xl-800p-f {
21724
    width: 800% !important;
21725
  }
16848 stevensc 21726
 
16825 efrain 21727
  .mx-wd-xl-800p-f {
21728
    max-width: 800% !important;
21729
  }
16848 stevensc 21730
 
16825 efrain 21731
  .mn-wd-xl-800p-f {
21732
    min-width: 800% !important;
21733
  }
16848 stevensc 21734
 
16825 efrain 21735
  .wd-xl-850 {
21736
    width: 850px;
21737
  }
16848 stevensc 21738
 
16825 efrain 21739
  .wd-xl-850p {
21740
    width: 850%;
21741
  }
16848 stevensc 21742
 
16825 efrain 21743
  .mx-wd-xl-850p {
21744
    max-width: 850%;
21745
  }
16848 stevensc 21746
 
16825 efrain 21747
  .mn-wd-xl-850p {
21748
    min-width: 850%;
21749
  }
16848 stevensc 21750
 
16825 efrain 21751
  .wd-xl-850-f {
21752
    width: 850px !important;
21753
  }
16848 stevensc 21754
 
16825 efrain 21755
  .wd-xl-850p-f {
21756
    width: 850% !important;
21757
  }
16848 stevensc 21758
 
16825 efrain 21759
  .mx-wd-xl-850p-f {
21760
    max-width: 850% !important;
21761
  }
16848 stevensc 21762
 
16825 efrain 21763
  .mn-wd-xl-850p-f {
21764
    min-width: 850% !important;
21765
  }
16848 stevensc 21766
 
16825 efrain 21767
  .wd-xl-900 {
21768
    width: 900px;
21769
  }
16848 stevensc 21770
 
16825 efrain 21771
  .wd-xl-900p {
21772
    width: 900%;
21773
  }
16848 stevensc 21774
 
16825 efrain 21775
  .mx-wd-xl-900p {
21776
    max-width: 900%;
21777
  }
16848 stevensc 21778
 
16825 efrain 21779
  .mn-wd-xl-900p {
21780
    min-width: 900%;
21781
  }
16848 stevensc 21782
 
16825 efrain 21783
  .wd-xl-900-f {
21784
    width: 900px !important;
21785
  }
16848 stevensc 21786
 
16825 efrain 21787
  .wd-xl-900p-f {
21788
    width: 900% !important;
21789
  }
16848 stevensc 21790
 
16825 efrain 21791
  .mx-wd-xl-900p-f {
21792
    max-width: 900% !important;
21793
  }
16848 stevensc 21794
 
16825 efrain 21795
  .mn-wd-xl-900p-f {
21796
    min-width: 900% !important;
21797
  }
16848 stevensc 21798
 
16825 efrain 21799
  .wd-xl-950 {
21800
    width: 950px;
21801
  }
16848 stevensc 21802
 
16825 efrain 21803
  .wd-xl-950p {
21804
    width: 950%;
21805
  }
16848 stevensc 21806
 
16825 efrain 21807
  .mx-wd-xl-950p {
21808
    max-width: 950%;
21809
  }
16848 stevensc 21810
 
16825 efrain 21811
  .mn-wd-xl-950p {
21812
    min-width: 950%;
21813
  }
16848 stevensc 21814
 
16825 efrain 21815
  .wd-xl-950-f {
21816
    width: 950px !important;
21817
  }
16848 stevensc 21818
 
16825 efrain 21819
  .wd-xl-950p-f {
21820
    width: 950% !important;
21821
  }
16848 stevensc 21822
 
16825 efrain 21823
  .mx-wd-xl-950p-f {
21824
    max-width: 950% !important;
21825
  }
16848 stevensc 21826
 
16825 efrain 21827
  .mn-wd-xl-950p-f {
21828
    min-width: 950% !important;
21829
  }
16848 stevensc 21830
 
16825 efrain 21831
  .wd-xl-1000 {
21832
    width: 1000px;
21833
  }
16848 stevensc 21834
 
16825 efrain 21835
  .wd-xl-1000p {
21836
    width: 1000%;
21837
  }
16848 stevensc 21838
 
16825 efrain 21839
  .mx-wd-xl-1000p {
21840
    max-width: 1000%;
21841
  }
16848 stevensc 21842
 
16825 efrain 21843
  .mn-wd-xl-1000p {
21844
    min-width: 1000%;
21845
  }
16848 stevensc 21846
 
16825 efrain 21847
  .wd-xl-1000-f {
21848
    width: 1000px !important;
21849
  }
16848 stevensc 21850
 
16825 efrain 21851
  .wd-xl-1000p-f {
21852
    width: 1000% !important;
21853
  }
16848 stevensc 21854
 
16825 efrain 21855
  .mx-wd-xl-1000p-f {
21856
    max-width: 1000% !important;
21857
  }
16848 stevensc 21858
 
16825 efrain 21859
  .mn-wd-xl-1000p-f {
21860
    min-width: 1000% !important;
21861
  }
16848 stevensc 21862
 
16825 efrain 21863
  .wd-xl-auto {
21864
    width: auto;
21865
  }
16848 stevensc 21866
 
16825 efrain 21867
  .wd-xl-auto {
21868
    width: auto !important;
21869
  }
21870
}
16848 stevensc 21871
 
16825 efrain 21872
@media (min-width: 1400px) {
21873
  .wd-xxl-5 {
21874
    width: 5px;
21875
  }
16848 stevensc 21876
 
16825 efrain 21877
  .wd-xxl-5p {
21878
    width: 5%;
21879
  }
16848 stevensc 21880
 
16825 efrain 21881
  .mx-wd-xxl-5p {
21882
    max-width: 5%;
21883
  }
16848 stevensc 21884
 
16825 efrain 21885
  .mn-wd-xxl-5p {
21886
    min-width: 5%;
21887
  }
16848 stevensc 21888
 
16825 efrain 21889
  .wd-xxl-5-f {
21890
    width: 5px !important;
21891
  }
16848 stevensc 21892
 
16825 efrain 21893
  .wd-xxl-5p-f {
21894
    width: 5% !important;
21895
  }
16848 stevensc 21896
 
16825 efrain 21897
  .mx-wd-xxl-5p-f {
21898
    max-width: 5% !important;
21899
  }
16848 stevensc 21900
 
16825 efrain 21901
  .mn-wd-xxl-5p-f {
21902
    min-width: 5% !important;
21903
  }
16848 stevensc 21904
 
16825 efrain 21905
  .wd-xxl-10 {
21906
    width: 10px;
21907
  }
16848 stevensc 21908
 
16825 efrain 21909
  .wd-xxl-10p {
21910
    width: 10%;
21911
  }
16848 stevensc 21912
 
16825 efrain 21913
  .mx-wd-xxl-10p {
21914
    max-width: 10%;
21915
  }
16848 stevensc 21916
 
16825 efrain 21917
  .mn-wd-xxl-10p {
21918
    min-width: 10%;
21919
  }
16848 stevensc 21920
 
16825 efrain 21921
  .wd-xxl-10-f {
21922
    width: 10px !important;
21923
  }
16848 stevensc 21924
 
16825 efrain 21925
  .wd-xxl-10p-f {
21926
    width: 10% !important;
21927
  }
16848 stevensc 21928
 
16825 efrain 21929
  .mx-wd-xxl-10p-f {
21930
    max-width: 10% !important;
21931
  }
16848 stevensc 21932
 
16825 efrain 21933
  .mn-wd-xxl-10p-f {
21934
    min-width: 10% !important;
21935
  }
16848 stevensc 21936
 
16825 efrain 21937
  .wd-xxl-15 {
21938
    width: 15px;
21939
  }
16848 stevensc 21940
 
16825 efrain 21941
  .wd-xxl-15p {
21942
    width: 15%;
21943
  }
16848 stevensc 21944
 
16825 efrain 21945
  .mx-wd-xxl-15p {
21946
    max-width: 15%;
21947
  }
16848 stevensc 21948
 
16825 efrain 21949
  .mn-wd-xxl-15p {
21950
    min-width: 15%;
21951
  }
16848 stevensc 21952
 
16825 efrain 21953
  .wd-xxl-15-f {
21954
    width: 15px !important;
21955
  }
16848 stevensc 21956
 
16825 efrain 21957
  .wd-xxl-15p-f {
21958
    width: 15% !important;
21959
  }
16848 stevensc 21960
 
16825 efrain 21961
  .mx-wd-xxl-15p-f {
21962
    max-width: 15% !important;
21963
  }
16848 stevensc 21964
 
16825 efrain 21965
  .mn-wd-xxl-15p-f {
21966
    min-width: 15% !important;
21967
  }
16848 stevensc 21968
 
16825 efrain 21969
  .wd-xxl-20 {
21970
    width: 20px;
21971
  }
16848 stevensc 21972
 
16825 efrain 21973
  .wd-xxl-20p {
21974
    width: 20%;
21975
  }
16848 stevensc 21976
 
16825 efrain 21977
  .mx-wd-xxl-20p {
21978
    max-width: 20%;
21979
  }
16848 stevensc 21980
 
16825 efrain 21981
  .mn-wd-xxl-20p {
21982
    min-width: 20%;
21983
  }
16848 stevensc 21984
 
16825 efrain 21985
  .wd-xxl-20-f {
21986
    width: 20px !important;
21987
  }
16848 stevensc 21988
 
16825 efrain 21989
  .wd-xxl-20p-f {
21990
    width: 20% !important;
21991
  }
16848 stevensc 21992
 
16825 efrain 21993
  .mx-wd-xxl-20p-f {
21994
    max-width: 20% !important;
21995
  }
16848 stevensc 21996
 
16825 efrain 21997
  .mn-wd-xxl-20p-f {
21998
    min-width: 20% !important;
21999
  }
16848 stevensc 22000
 
16825 efrain 22001
  .wd-xxl-25 {
22002
    width: 25px;
22003
  }
16848 stevensc 22004
 
16825 efrain 22005
  .wd-xxl-25p {
22006
    width: 25%;
22007
  }
16848 stevensc 22008
 
16825 efrain 22009
  .mx-wd-xxl-25p {
22010
    max-width: 25%;
22011
  }
16848 stevensc 22012
 
16825 efrain 22013
  .mn-wd-xxl-25p {
22014
    min-width: 25%;
22015
  }
16848 stevensc 22016
 
16825 efrain 22017
  .wd-xxl-25-f {
22018
    width: 25px !important;
22019
  }
16848 stevensc 22020
 
16825 efrain 22021
  .wd-xxl-25p-f {
22022
    width: 25% !important;
22023
  }
16848 stevensc 22024
 
16825 efrain 22025
  .mx-wd-xxl-25p-f {
22026
    max-width: 25% !important;
22027
  }
16848 stevensc 22028
 
16825 efrain 22029
  .mn-wd-xxl-25p-f {
22030
    min-width: 25% !important;
22031
  }
16848 stevensc 22032
 
16825 efrain 22033
  .wd-xxl-30 {
22034
    width: 30px;
22035
  }
16848 stevensc 22036
 
16825 efrain 22037
  .wd-xxl-30p {
22038
    width: 30%;
22039
  }
16848 stevensc 22040
 
16825 efrain 22041
  .mx-wd-xxl-30p {
22042
    max-width: 30%;
22043
  }
16848 stevensc 22044
 
16825 efrain 22045
  .mn-wd-xxl-30p {
22046
    min-width: 30%;
22047
  }
16848 stevensc 22048
 
16825 efrain 22049
  .wd-xxl-30-f {
22050
    width: 30px !important;
22051
  }
16848 stevensc 22052
 
16825 efrain 22053
  .wd-xxl-30p-f {
22054
    width: 30% !important;
22055
  }
16848 stevensc 22056
 
16825 efrain 22057
  .mx-wd-xxl-30p-f {
22058
    max-width: 30% !important;
22059
  }
16848 stevensc 22060
 
16825 efrain 22061
  .mn-wd-xxl-30p-f {
22062
    min-width: 30% !important;
22063
  }
16848 stevensc 22064
 
16825 efrain 22065
  .wd-xxl-35 {
22066
    width: 35px;
22067
  }
16848 stevensc 22068
 
16825 efrain 22069
  .wd-xxl-35p {
22070
    width: 35%;
22071
  }
16848 stevensc 22072
 
16825 efrain 22073
  .mx-wd-xxl-35p {
22074
    max-width: 35%;
22075
  }
16848 stevensc 22076
 
16825 efrain 22077
  .mn-wd-xxl-35p {
22078
    min-width: 35%;
22079
  }
16848 stevensc 22080
 
16825 efrain 22081
  .wd-xxl-35-f {
22082
    width: 35px !important;
22083
  }
16848 stevensc 22084
 
16825 efrain 22085
  .wd-xxl-35p-f {
22086
    width: 35% !important;
22087
  }
16848 stevensc 22088
 
16825 efrain 22089
  .mx-wd-xxl-35p-f {
22090
    max-width: 35% !important;
22091
  }
16848 stevensc 22092
 
16825 efrain 22093
  .mn-wd-xxl-35p-f {
22094
    min-width: 35% !important;
22095
  }
16848 stevensc 22096
 
16825 efrain 22097
  .wd-xxl-40 {
22098
    width: 40px;
22099
  }
16848 stevensc 22100
 
16825 efrain 22101
  .wd-xxl-40p {
22102
    width: 40%;
22103
  }
16848 stevensc 22104
 
16825 efrain 22105
  .mx-wd-xxl-40p {
22106
    max-width: 40%;
22107
  }
16848 stevensc 22108
 
16825 efrain 22109
  .mn-wd-xxl-40p {
22110
    min-width: 40%;
22111
  }
16848 stevensc 22112
 
16825 efrain 22113
  .wd-xxl-40-f {
22114
    width: 40px !important;
22115
  }
16848 stevensc 22116
 
16825 efrain 22117
  .wd-xxl-40p-f {
22118
    width: 40% !important;
22119
  }
16848 stevensc 22120
 
16825 efrain 22121
  .mx-wd-xxl-40p-f {
22122
    max-width: 40% !important;
22123
  }
16848 stevensc 22124
 
16825 efrain 22125
  .mn-wd-xxl-40p-f {
22126
    min-width: 40% !important;
22127
  }
16848 stevensc 22128
 
16825 efrain 22129
  .wd-xxl-45 {
22130
    width: 45px;
22131
  }
16848 stevensc 22132
 
16825 efrain 22133
  .wd-xxl-45p {
22134
    width: 45%;
22135
  }
16848 stevensc 22136
 
16825 efrain 22137
  .mx-wd-xxl-45p {
22138
    max-width: 45%;
22139
  }
16848 stevensc 22140
 
16825 efrain 22141
  .mn-wd-xxl-45p {
22142
    min-width: 45%;
22143
  }
16848 stevensc 22144
 
16825 efrain 22145
  .wd-xxl-45-f {
22146
    width: 45px !important;
22147
  }
16848 stevensc 22148
 
16825 efrain 22149
  .wd-xxl-45p-f {
22150
    width: 45% !important;
22151
  }
16848 stevensc 22152
 
16825 efrain 22153
  .mx-wd-xxl-45p-f {
22154
    max-width: 45% !important;
22155
  }
16848 stevensc 22156
 
16825 efrain 22157
  .mn-wd-xxl-45p-f {
22158
    min-width: 45% !important;
22159
  }
16848 stevensc 22160
 
16825 efrain 22161
  .wd-xxl-50 {
22162
    width: 50px;
22163
  }
16848 stevensc 22164
 
16825 efrain 22165
  .wd-xxl-50p {
22166
    width: 50%;
22167
  }
16848 stevensc 22168
 
16825 efrain 22169
  .mx-wd-xxl-50p {
22170
    max-width: 50%;
22171
  }
16848 stevensc 22172
 
16825 efrain 22173
  .mn-wd-xxl-50p {
22174
    min-width: 50%;
22175
  }
16848 stevensc 22176
 
16825 efrain 22177
  .wd-xxl-50-f {
22178
    width: 50px !important;
22179
  }
16848 stevensc 22180
 
16825 efrain 22181
  .wd-xxl-50p-f {
22182
    width: 50% !important;
22183
  }
16848 stevensc 22184
 
16825 efrain 22185
  .mx-wd-xxl-50p-f {
22186
    max-width: 50% !important;
22187
  }
16848 stevensc 22188
 
16825 efrain 22189
  .mn-wd-xxl-50p-f {
22190
    min-width: 50% !important;
22191
  }
16848 stevensc 22192
 
16825 efrain 22193
  .wd-xxl-55 {
22194
    width: 55px;
22195
  }
16848 stevensc 22196
 
16825 efrain 22197
  .wd-xxl-55p {
22198
    width: 55%;
22199
  }
16848 stevensc 22200
 
16825 efrain 22201
  .mx-wd-xxl-55p {
22202
    max-width: 55%;
22203
  }
16848 stevensc 22204
 
16825 efrain 22205
  .mn-wd-xxl-55p {
22206
    min-width: 55%;
22207
  }
16848 stevensc 22208
 
16825 efrain 22209
  .wd-xxl-55-f {
22210
    width: 55px !important;
22211
  }
16848 stevensc 22212
 
16825 efrain 22213
  .wd-xxl-55p-f {
22214
    width: 55% !important;
22215
  }
16848 stevensc 22216
 
16825 efrain 22217
  .mx-wd-xxl-55p-f {
22218
    max-width: 55% !important;
22219
  }
16848 stevensc 22220
 
16825 efrain 22221
  .mn-wd-xxl-55p-f {
22222
    min-width: 55% !important;
22223
  }
16848 stevensc 22224
 
16825 efrain 22225
  .wd-xxl-60 {
22226
    width: 60px;
22227
  }
16848 stevensc 22228
 
16825 efrain 22229
  .wd-xxl-60p {
22230
    width: 60%;
22231
  }
16848 stevensc 22232
 
16825 efrain 22233
  .mx-wd-xxl-60p {
22234
    max-width: 60%;
22235
  }
16848 stevensc 22236
 
16825 efrain 22237
  .mn-wd-xxl-60p {
22238
    min-width: 60%;
22239
  }
16848 stevensc 22240
 
16825 efrain 22241
  .wd-xxl-60-f {
22242
    width: 60px !important;
22243
  }
16848 stevensc 22244
 
16825 efrain 22245
  .wd-xxl-60p-f {
22246
    width: 60% !important;
22247
  }
16848 stevensc 22248
 
16825 efrain 22249
  .mx-wd-xxl-60p-f {
22250
    max-width: 60% !important;
22251
  }
16848 stevensc 22252
 
16825 efrain 22253
  .mn-wd-xxl-60p-f {
22254
    min-width: 60% !important;
22255
  }
16848 stevensc 22256
 
16825 efrain 22257
  .wd-xxl-65 {
22258
    width: 65px;
22259
  }
16848 stevensc 22260
 
16825 efrain 22261
  .wd-xxl-65p {
22262
    width: 65%;
22263
  }
16848 stevensc 22264
 
16825 efrain 22265
  .mx-wd-xxl-65p {
22266
    max-width: 65%;
22267
  }
16848 stevensc 22268
 
16825 efrain 22269
  .mn-wd-xxl-65p {
22270
    min-width: 65%;
22271
  }
16848 stevensc 22272
 
16825 efrain 22273
  .wd-xxl-65-f {
22274
    width: 65px !important;
22275
  }
16848 stevensc 22276
 
16825 efrain 22277
  .wd-xxl-65p-f {
22278
    width: 65% !important;
22279
  }
16848 stevensc 22280
 
16825 efrain 22281
  .mx-wd-xxl-65p-f {
22282
    max-width: 65% !important;
22283
  }
16848 stevensc 22284
 
16825 efrain 22285
  .mn-wd-xxl-65p-f {
22286
    min-width: 65% !important;
22287
  }
16848 stevensc 22288
 
16825 efrain 22289
  .wd-xxl-70 {
22290
    width: 70px;
22291
  }
16848 stevensc 22292
 
16825 efrain 22293
  .wd-xxl-70p {
22294
    width: 70%;
22295
  }
16848 stevensc 22296
 
16825 efrain 22297
  .mx-wd-xxl-70p {
22298
    max-width: 70%;
22299
  }
16848 stevensc 22300
 
16825 efrain 22301
  .mn-wd-xxl-70p {
22302
    min-width: 70%;
22303
  }
16848 stevensc 22304
 
16825 efrain 22305
  .wd-xxl-70-f {
22306
    width: 70px !important;
22307
  }
16848 stevensc 22308
 
16825 efrain 22309
  .wd-xxl-70p-f {
22310
    width: 70% !important;
22311
  }
16848 stevensc 22312
 
16825 efrain 22313
  .mx-wd-xxl-70p-f {
22314
    max-width: 70% !important;
22315
  }
16848 stevensc 22316
 
16825 efrain 22317
  .mn-wd-xxl-70p-f {
22318
    min-width: 70% !important;
22319
  }
16848 stevensc 22320
 
16825 efrain 22321
  .wd-xxl-75 {
22322
    width: 75px;
22323
  }
16848 stevensc 22324
 
16825 efrain 22325
  .wd-xxl-75p {
22326
    width: 75%;
22327
  }
16848 stevensc 22328
 
16825 efrain 22329
  .mx-wd-xxl-75p {
22330
    max-width: 75%;
22331
  }
16848 stevensc 22332
 
16825 efrain 22333
  .mn-wd-xxl-75p {
22334
    min-width: 75%;
22335
  }
16848 stevensc 22336
 
16825 efrain 22337
  .wd-xxl-75-f {
22338
    width: 75px !important;
22339
  }
16848 stevensc 22340
 
16825 efrain 22341
  .wd-xxl-75p-f {
22342
    width: 75% !important;
22343
  }
16848 stevensc 22344
 
16825 efrain 22345
  .mx-wd-xxl-75p-f {
22346
    max-width: 75% !important;
22347
  }
16848 stevensc 22348
 
16825 efrain 22349
  .mn-wd-xxl-75p-f {
22350
    min-width: 75% !important;
22351
  }
16848 stevensc 22352
 
16825 efrain 22353
  .wd-xxl-80 {
22354
    width: 80px;
22355
  }
16848 stevensc 22356
 
16825 efrain 22357
  .wd-xxl-80p {
22358
    width: 80%;
22359
  }
16848 stevensc 22360
 
16825 efrain 22361
  .mx-wd-xxl-80p {
22362
    max-width: 80%;
22363
  }
16848 stevensc 22364
 
16825 efrain 22365
  .mn-wd-xxl-80p {
22366
    min-width: 80%;
22367
  }
16848 stevensc 22368
 
16825 efrain 22369
  .wd-xxl-80-f {
22370
    width: 80px !important;
22371
  }
16848 stevensc 22372
 
16825 efrain 22373
  .wd-xxl-80p-f {
22374
    width: 80% !important;
22375
  }
16848 stevensc 22376
 
16825 efrain 22377
  .mx-wd-xxl-80p-f {
22378
    max-width: 80% !important;
22379
  }
16848 stevensc 22380
 
16825 efrain 22381
  .mn-wd-xxl-80p-f {
22382
    min-width: 80% !important;
22383
  }
16848 stevensc 22384
 
16825 efrain 22385
  .wd-xxl-85 {
22386
    width: 85px;
22387
  }
16848 stevensc 22388
 
16825 efrain 22389
  .wd-xxl-85p {
22390
    width: 85%;
22391
  }
16848 stevensc 22392
 
16825 efrain 22393
  .mx-wd-xxl-85p {
22394
    max-width: 85%;
22395
  }
16848 stevensc 22396
 
16825 efrain 22397
  .mn-wd-xxl-85p {
22398
    min-width: 85%;
22399
  }
16848 stevensc 22400
 
16825 efrain 22401
  .wd-xxl-85-f {
22402
    width: 85px !important;
22403
  }
16848 stevensc 22404
 
16825 efrain 22405
  .wd-xxl-85p-f {
22406
    width: 85% !important;
22407
  }
16848 stevensc 22408
 
16825 efrain 22409
  .mx-wd-xxl-85p-f {
22410
    max-width: 85% !important;
22411
  }
16848 stevensc 22412
 
16825 efrain 22413
  .mn-wd-xxl-85p-f {
22414
    min-width: 85% !important;
22415
  }
16848 stevensc 22416
 
16825 efrain 22417
  .wd-xxl-90 {
22418
    width: 90px;
22419
  }
16848 stevensc 22420
 
16825 efrain 22421
  .wd-xxl-90p {
22422
    width: 90%;
22423
  }
16848 stevensc 22424
 
16825 efrain 22425
  .mx-wd-xxl-90p {
22426
    max-width: 90%;
22427
  }
16848 stevensc 22428
 
16825 efrain 22429
  .mn-wd-xxl-90p {
22430
    min-width: 90%;
22431
  }
16848 stevensc 22432
 
16825 efrain 22433
  .wd-xxl-90-f {
22434
    width: 90px !important;
22435
  }
16848 stevensc 22436
 
16825 efrain 22437
  .wd-xxl-90p-f {
22438
    width: 90% !important;
22439
  }
16848 stevensc 22440
 
16825 efrain 22441
  .mx-wd-xxl-90p-f {
22442
    max-width: 90% !important;
22443
  }
16848 stevensc 22444
 
16825 efrain 22445
  .mn-wd-xxl-90p-f {
22446
    min-width: 90% !important;
22447
  }
16848 stevensc 22448
 
16825 efrain 22449
  .wd-xxl-95 {
22450
    width: 95px;
22451
  }
16848 stevensc 22452
 
16825 efrain 22453
  .wd-xxl-95p {
22454
    width: 95%;
22455
  }
16848 stevensc 22456
 
16825 efrain 22457
  .mx-wd-xxl-95p {
22458
    max-width: 95%;
22459
  }
16848 stevensc 22460
 
16825 efrain 22461
  .mn-wd-xxl-95p {
22462
    min-width: 95%;
22463
  }
16848 stevensc 22464
 
16825 efrain 22465
  .wd-xxl-95-f {
22466
    width: 95px !important;
22467
  }
16848 stevensc 22468
 
16825 efrain 22469
  .wd-xxl-95p-f {
22470
    width: 95% !important;
22471
  }
16848 stevensc 22472
 
16825 efrain 22473
  .mx-wd-xxl-95p-f {
22474
    max-width: 95% !important;
22475
  }
16848 stevensc 22476
 
16825 efrain 22477
  .mn-wd-xxl-95p-f {
22478
    min-width: 95% !important;
22479
  }
16848 stevensc 22480
 
16825 efrain 22481
  .wd-xxl-100 {
22482
    width: 100px;
22483
  }
16848 stevensc 22484
 
16825 efrain 22485
  .wd-xxl-100p {
22486
    width: 100%;
22487
  }
16848 stevensc 22488
 
16825 efrain 22489
  .mx-wd-xxl-100p {
22490
    max-width: 100%;
22491
  }
16848 stevensc 22492
 
16825 efrain 22493
  .mn-wd-xxl-100p {
22494
    min-width: 100%;
22495
  }
16848 stevensc 22496
 
16825 efrain 22497
  .wd-xxl-100-f {
22498
    width: 100px !important;
22499
  }
16848 stevensc 22500
 
16825 efrain 22501
  .wd-xxl-100p-f {
22502
    width: 100% !important;
22503
  }
16848 stevensc 22504
 
16825 efrain 22505
  .mx-wd-xxl-100p-f {
22506
    max-width: 100% !important;
22507
  }
16848 stevensc 22508
 
16825 efrain 22509
  .mn-wd-xxl-100p-f {
22510
    min-width: 100% !important;
22511
  }
16848 stevensc 22512
 
16825 efrain 22513
  .wd-xxl-150 {
22514
    width: 150px;
22515
  }
16848 stevensc 22516
 
16825 efrain 22517
  .wd-xxl-150p {
22518
    width: 150%;
22519
  }
16848 stevensc 22520
 
16825 efrain 22521
  .mx-wd-xxl-150p {
22522
    max-width: 150%;
22523
  }
16848 stevensc 22524
 
16825 efrain 22525
  .mn-wd-xxl-150p {
22526
    min-width: 150%;
22527
  }
16848 stevensc 22528
 
16825 efrain 22529
  .wd-xxl-150-f {
22530
    width: 150px !important;
22531
  }
16848 stevensc 22532
 
16825 efrain 22533
  .wd-xxl-150p-f {
22534
    width: 150% !important;
22535
  }
16848 stevensc 22536
 
16825 efrain 22537
  .mx-wd-xxl-150p-f {
22538
    max-width: 150% !important;
22539
  }
16848 stevensc 22540
 
16825 efrain 22541
  .mn-wd-xxl-150p-f {
22542
    min-width: 150% !important;
22543
  }
16848 stevensc 22544
 
16825 efrain 22545
  .wd-xxl-200 {
22546
    width: 200px;
22547
  }
16848 stevensc 22548
 
16825 efrain 22549
  .wd-xxl-200p {
22550
    width: 200%;
22551
  }
16848 stevensc 22552
 
16825 efrain 22553
  .mx-wd-xxl-200p {
22554
    max-width: 200%;
22555
  }
16848 stevensc 22556
 
16825 efrain 22557
  .mn-wd-xxl-200p {
22558
    min-width: 200%;
22559
  }
16848 stevensc 22560
 
16825 efrain 22561
  .wd-xxl-200-f {
22562
    width: 200px !important;
22563
  }
16848 stevensc 22564
 
16825 efrain 22565
  .wd-xxl-200p-f {
22566
    width: 200% !important;
22567
  }
16848 stevensc 22568
 
16825 efrain 22569
  .mx-wd-xxl-200p-f {
22570
    max-width: 200% !important;
22571
  }
16848 stevensc 22572
 
16825 efrain 22573
  .mn-wd-xxl-200p-f {
22574
    min-width: 200% !important;
22575
  }
16848 stevensc 22576
 
16825 efrain 22577
  .wd-xxl-250 {
22578
    width: 250px;
22579
  }
16848 stevensc 22580
 
16825 efrain 22581
  .wd-xxl-250p {
22582
    width: 250%;
22583
  }
16848 stevensc 22584
 
16825 efrain 22585
  .mx-wd-xxl-250p {
22586
    max-width: 250%;
22587
  }
16848 stevensc 22588
 
16825 efrain 22589
  .mn-wd-xxl-250p {
22590
    min-width: 250%;
22591
  }
16848 stevensc 22592
 
16825 efrain 22593
  .wd-xxl-250-f {
22594
    width: 250px !important;
22595
  }
16848 stevensc 22596
 
16825 efrain 22597
  .wd-xxl-250p-f {
22598
    width: 250% !important;
22599
  }
16848 stevensc 22600
 
16825 efrain 22601
  .mx-wd-xxl-250p-f {
22602
    max-width: 250% !important;
22603
  }
16848 stevensc 22604
 
16825 efrain 22605
  .mn-wd-xxl-250p-f {
22606
    min-width: 250% !important;
22607
  }
16848 stevensc 22608
 
16825 efrain 22609
  .wd-xxl-300 {
22610
    width: 300px;
22611
  }
16848 stevensc 22612
 
16825 efrain 22613
  .wd-xxl-300p {
22614
    width: 300%;
22615
  }
16848 stevensc 22616
 
16825 efrain 22617
  .mx-wd-xxl-300p {
22618
    max-width: 300%;
22619
  }
16848 stevensc 22620
 
16825 efrain 22621
  .mn-wd-xxl-300p {
22622
    min-width: 300%;
22623
  }
16848 stevensc 22624
 
16825 efrain 22625
  .wd-xxl-300-f {
22626
    width: 300px !important;
22627
  }
16848 stevensc 22628
 
16825 efrain 22629
  .wd-xxl-300p-f {
22630
    width: 300% !important;
22631
  }
16848 stevensc 22632
 
16825 efrain 22633
  .mx-wd-xxl-300p-f {
22634
    max-width: 300% !important;
22635
  }
16848 stevensc 22636
 
16825 efrain 22637
  .mn-wd-xxl-300p-f {
22638
    min-width: 300% !important;
22639
  }
16848 stevensc 22640
 
16825 efrain 22641
  .wd-xxl-350 {
22642
    width: 350px;
22643
  }
16848 stevensc 22644
 
16825 efrain 22645
  .wd-xxl-350p {
22646
    width: 350%;
22647
  }
16848 stevensc 22648
 
16825 efrain 22649
  .mx-wd-xxl-350p {
22650
    max-width: 350%;
22651
  }
16848 stevensc 22652
 
16825 efrain 22653
  .mn-wd-xxl-350p {
22654
    min-width: 350%;
22655
  }
16848 stevensc 22656
 
16825 efrain 22657
  .wd-xxl-350-f {
22658
    width: 350px !important;
22659
  }
16848 stevensc 22660
 
16825 efrain 22661
  .wd-xxl-350p-f {
22662
    width: 350% !important;
22663
  }
16848 stevensc 22664
 
16825 efrain 22665
  .mx-wd-xxl-350p-f {
22666
    max-width: 350% !important;
22667
  }
16848 stevensc 22668
 
16825 efrain 22669
  .mn-wd-xxl-350p-f {
22670
    min-width: 350% !important;
22671
  }
16848 stevensc 22672
 
16825 efrain 22673
  .wd-xxl-400 {
22674
    width: 400px;
22675
  }
16848 stevensc 22676
 
16825 efrain 22677
  .wd-xxl-400p {
22678
    width: 400%;
22679
  }
16848 stevensc 22680
 
16825 efrain 22681
  .mx-wd-xxl-400p {
22682
    max-width: 400%;
22683
  }
16848 stevensc 22684
 
16825 efrain 22685
  .mn-wd-xxl-400p {
22686
    min-width: 400%;
22687
  }
16848 stevensc 22688
 
16825 efrain 22689
  .wd-xxl-400-f {
22690
    width: 400px !important;
22691
  }
16848 stevensc 22692
 
16825 efrain 22693
  .wd-xxl-400p-f {
22694
    width: 400% !important;
22695
  }
16848 stevensc 22696
 
16825 efrain 22697
  .mx-wd-xxl-400p-f {
22698
    max-width: 400% !important;
22699
  }
16848 stevensc 22700
 
16825 efrain 22701
  .mn-wd-xxl-400p-f {
22702
    min-width: 400% !important;
22703
  }
16848 stevensc 22704
 
16825 efrain 22705
  .wd-xxl-450 {
22706
    width: 450px;
22707
  }
16848 stevensc 22708
 
16825 efrain 22709
  .wd-xxl-450p {
22710
    width: 450%;
22711
  }
16848 stevensc 22712
 
16825 efrain 22713
  .mx-wd-xxl-450p {
22714
    max-width: 450%;
22715
  }
16848 stevensc 22716
 
16825 efrain 22717
  .mn-wd-xxl-450p {
22718
    min-width: 450%;
22719
  }
16848 stevensc 22720
 
16825 efrain 22721
  .wd-xxl-450-f {
22722
    width: 450px !important;
22723
  }
16848 stevensc 22724
 
16825 efrain 22725
  .wd-xxl-450p-f {
22726
    width: 450% !important;
22727
  }
16848 stevensc 22728
 
16825 efrain 22729
  .mx-wd-xxl-450p-f {
22730
    max-width: 450% !important;
22731
  }
16848 stevensc 22732
 
16825 efrain 22733
  .mn-wd-xxl-450p-f {
22734
    min-width: 450% !important;
22735
  }
16848 stevensc 22736
 
16825 efrain 22737
  .wd-xxl-500 {
22738
    width: 500px;
22739
  }
16848 stevensc 22740
 
16825 efrain 22741
  .wd-xxl-500p {
22742
    width: 500%;
22743
  }
16848 stevensc 22744
 
16825 efrain 22745
  .mx-wd-xxl-500p {
22746
    max-width: 500%;
22747
  }
16848 stevensc 22748
 
16825 efrain 22749
  .mn-wd-xxl-500p {
22750
    min-width: 500%;
22751
  }
16848 stevensc 22752
 
16825 efrain 22753
  .wd-xxl-500-f {
22754
    width: 500px !important;
22755
  }
16848 stevensc 22756
 
16825 efrain 22757
  .wd-xxl-500p-f {
22758
    width: 500% !important;
22759
  }
16848 stevensc 22760
 
16825 efrain 22761
  .mx-wd-xxl-500p-f {
22762
    max-width: 500% !important;
22763
  }
16848 stevensc 22764
 
16825 efrain 22765
  .mn-wd-xxl-500p-f {
22766
    min-width: 500% !important;
22767
  }
16848 stevensc 22768
 
16825 efrain 22769
  .wd-xxl-550 {
22770
    width: 550px;
22771
  }
16848 stevensc 22772
 
16825 efrain 22773
  .wd-xxl-550p {
22774
    width: 550%;
22775
  }
16848 stevensc 22776
 
16825 efrain 22777
  .mx-wd-xxl-550p {
22778
    max-width: 550%;
22779
  }
16848 stevensc 22780
 
16825 efrain 22781
  .mn-wd-xxl-550p {
22782
    min-width: 550%;
22783
  }
16848 stevensc 22784
 
16825 efrain 22785
  .wd-xxl-550-f {
22786
    width: 550px !important;
22787
  }
16848 stevensc 22788
 
16825 efrain 22789
  .wd-xxl-550p-f {
22790
    width: 550% !important;
22791
  }
16848 stevensc 22792
 
16825 efrain 22793
  .mx-wd-xxl-550p-f {
22794
    max-width: 550% !important;
22795
  }
16848 stevensc 22796
 
16825 efrain 22797
  .mn-wd-xxl-550p-f {
22798
    min-width: 550% !important;
22799
  }
16848 stevensc 22800
 
16825 efrain 22801
  .wd-xxl-600 {
22802
    width: 600px;
22803
  }
16848 stevensc 22804
 
16825 efrain 22805
  .wd-xxl-600p {
22806
    width: 600%;
22807
  }
16848 stevensc 22808
 
16825 efrain 22809
  .mx-wd-xxl-600p {
22810
    max-width: 600%;
22811
  }
16848 stevensc 22812
 
16825 efrain 22813
  .mn-wd-xxl-600p {
22814
    min-width: 600%;
22815
  }
16848 stevensc 22816
 
16825 efrain 22817
  .wd-xxl-600-f {
22818
    width: 600px !important;
22819
  }
16848 stevensc 22820
 
16825 efrain 22821
  .wd-xxl-600p-f {
22822
    width: 600% !important;
22823
  }
16848 stevensc 22824
 
16825 efrain 22825
  .mx-wd-xxl-600p-f {
22826
    max-width: 600% !important;
22827
  }
16848 stevensc 22828
 
16825 efrain 22829
  .mn-wd-xxl-600p-f {
22830
    min-width: 600% !important;
22831
  }
16848 stevensc 22832
 
16825 efrain 22833
  .wd-xxl-650 {
22834
    width: 650px;
22835
  }
16848 stevensc 22836
 
16825 efrain 22837
  .wd-xxl-650p {
22838
    width: 650%;
22839
  }
16848 stevensc 22840
 
16825 efrain 22841
  .mx-wd-xxl-650p {
22842
    max-width: 650%;
22843
  }
16848 stevensc 22844
 
16825 efrain 22845
  .mn-wd-xxl-650p {
22846
    min-width: 650%;
22847
  }
16848 stevensc 22848
 
16825 efrain 22849
  .wd-xxl-650-f {
22850
    width: 650px !important;
22851
  }
16848 stevensc 22852
 
16825 efrain 22853
  .wd-xxl-650p-f {
22854
    width: 650% !important;
22855
  }
16848 stevensc 22856
 
16825 efrain 22857
  .mx-wd-xxl-650p-f {
22858
    max-width: 650% !important;
22859
  }
16848 stevensc 22860
 
16825 efrain 22861
  .mn-wd-xxl-650p-f {
22862
    min-width: 650% !important;
22863
  }
16848 stevensc 22864
 
16825 efrain 22865
  .wd-xxl-700 {
22866
    width: 700px;
22867
  }
16848 stevensc 22868
 
16825 efrain 22869
  .wd-xxl-700p {
22870
    width: 700%;
22871
  }
16848 stevensc 22872
 
16825 efrain 22873
  .mx-wd-xxl-700p {
22874
    max-width: 700%;
22875
  }
16848 stevensc 22876
 
16825 efrain 22877
  .mn-wd-xxl-700p {
22878
    min-width: 700%;
22879
  }
16848 stevensc 22880
 
16825 efrain 22881
  .wd-xxl-700-f {
22882
    width: 700px !important;
22883
  }
16848 stevensc 22884
 
16825 efrain 22885
  .wd-xxl-700p-f {
22886
    width: 700% !important;
22887
  }
16848 stevensc 22888
 
16825 efrain 22889
  .mx-wd-xxl-700p-f {
22890
    max-width: 700% !important;
22891
  }
16848 stevensc 22892
 
16825 efrain 22893
  .mn-wd-xxl-700p-f {
22894
    min-width: 700% !important;
22895
  }
16848 stevensc 22896
 
16825 efrain 22897
  .wd-xxl-750 {
22898
    width: 750px;
22899
  }
16848 stevensc 22900
 
16825 efrain 22901
  .wd-xxl-750p {
22902
    width: 750%;
22903
  }
16848 stevensc 22904
 
16825 efrain 22905
  .mx-wd-xxl-750p {
22906
    max-width: 750%;
22907
  }
16848 stevensc 22908
 
16825 efrain 22909
  .mn-wd-xxl-750p {
22910
    min-width: 750%;
22911
  }
16848 stevensc 22912
 
16825 efrain 22913
  .wd-xxl-750-f {
22914
    width: 750px !important;
22915
  }
16848 stevensc 22916
 
16825 efrain 22917
  .wd-xxl-750p-f {
22918
    width: 750% !important;
22919
  }
16848 stevensc 22920
 
16825 efrain 22921
  .mx-wd-xxl-750p-f {
22922
    max-width: 750% !important;
22923
  }
16848 stevensc 22924
 
16825 efrain 22925
  .mn-wd-xxl-750p-f {
22926
    min-width: 750% !important;
22927
  }
16848 stevensc 22928
 
16825 efrain 22929
  .wd-xxl-800 {
22930
    width: 800px;
22931
  }
16848 stevensc 22932
 
16825 efrain 22933
  .wd-xxl-800p {
22934
    width: 800%;
22935
  }
16848 stevensc 22936
 
16825 efrain 22937
  .mx-wd-xxl-800p {
22938
    max-width: 800%;
22939
  }
16848 stevensc 22940
 
16825 efrain 22941
  .mn-wd-xxl-800p {
22942
    min-width: 800%;
22943
  }
16848 stevensc 22944
 
16825 efrain 22945
  .wd-xxl-800-f {
22946
    width: 800px !important;
22947
  }
16848 stevensc 22948
 
16825 efrain 22949
  .wd-xxl-800p-f {
22950
    width: 800% !important;
22951
  }
16848 stevensc 22952
 
16825 efrain 22953
  .mx-wd-xxl-800p-f {
22954
    max-width: 800% !important;
22955
  }
16848 stevensc 22956
 
16825 efrain 22957
  .mn-wd-xxl-800p-f {
22958
    min-width: 800% !important;
22959
  }
16848 stevensc 22960
 
16825 efrain 22961
  .wd-xxl-850 {
22962
    width: 850px;
22963
  }
16848 stevensc 22964
 
16825 efrain 22965
  .wd-xxl-850p {
22966
    width: 850%;
22967
  }
16848 stevensc 22968
 
16825 efrain 22969
  .mx-wd-xxl-850p {
22970
    max-width: 850%;
22971
  }
16848 stevensc 22972
 
16825 efrain 22973
  .mn-wd-xxl-850p {
22974
    min-width: 850%;
22975
  }
16848 stevensc 22976
 
16825 efrain 22977
  .wd-xxl-850-f {
22978
    width: 850px !important;
22979
  }
16848 stevensc 22980
 
16825 efrain 22981
  .wd-xxl-850p-f {
22982
    width: 850% !important;
22983
  }
16848 stevensc 22984
 
16825 efrain 22985
  .mx-wd-xxl-850p-f {
22986
    max-width: 850% !important;
22987
  }
16848 stevensc 22988
 
16825 efrain 22989
  .mn-wd-xxl-850p-f {
22990
    min-width: 850% !important;
22991
  }
16848 stevensc 22992
 
16825 efrain 22993
  .wd-xxl-900 {
22994
    width: 900px;
22995
  }
16848 stevensc 22996
 
16825 efrain 22997
  .wd-xxl-900p {
22998
    width: 900%;
22999
  }
16848 stevensc 23000
 
16825 efrain 23001
  .mx-wd-xxl-900p {
23002
    max-width: 900%;
23003
  }
16848 stevensc 23004
 
16825 efrain 23005
  .mn-wd-xxl-900p {
23006
    min-width: 900%;
23007
  }
16848 stevensc 23008
 
16825 efrain 23009
  .wd-xxl-900-f {
23010
    width: 900px !important;
23011
  }
16848 stevensc 23012
 
16825 efrain 23013
  .wd-xxl-900p-f {
23014
    width: 900% !important;
23015
  }
16848 stevensc 23016
 
16825 efrain 23017
  .mx-wd-xxl-900p-f {
23018
    max-width: 900% !important;
23019
  }
16848 stevensc 23020
 
16825 efrain 23021
  .mn-wd-xxl-900p-f {
23022
    min-width: 900% !important;
23023
  }
16848 stevensc 23024
 
16825 efrain 23025
  .wd-xxl-950 {
23026
    width: 950px;
23027
  }
16848 stevensc 23028
 
16825 efrain 23029
  .wd-xxl-950p {
23030
    width: 950%;
23031
  }
16848 stevensc 23032
 
16825 efrain 23033
  .mx-wd-xxl-950p {
23034
    max-width: 950%;
23035
  }
16848 stevensc 23036
 
16825 efrain 23037
  .mn-wd-xxl-950p {
23038
    min-width: 950%;
23039
  }
16848 stevensc 23040
 
16825 efrain 23041
  .wd-xxl-950-f {
23042
    width: 950px !important;
23043
  }
16848 stevensc 23044
 
16825 efrain 23045
  .wd-xxl-950p-f {
23046
    width: 950% !important;
23047
  }
16848 stevensc 23048
 
16825 efrain 23049
  .mx-wd-xxl-950p-f {
23050
    max-width: 950% !important;
23051
  }
16848 stevensc 23052
 
16825 efrain 23053
  .mn-wd-xxl-950p-f {
23054
    min-width: 950% !important;
23055
  }
16848 stevensc 23056
 
16825 efrain 23057
  .wd-xxl-1000 {
23058
    width: 1000px;
23059
  }
16848 stevensc 23060
 
16825 efrain 23061
  .wd-xxl-1000p {
23062
    width: 1000%;
23063
  }
16848 stevensc 23064
 
16825 efrain 23065
  .mx-wd-xxl-1000p {
23066
    max-width: 1000%;
23067
  }
16848 stevensc 23068
 
16825 efrain 23069
  .mn-wd-xxl-1000p {
23070
    min-width: 1000%;
23071
  }
16848 stevensc 23072
 
16825 efrain 23073
  .wd-xxl-1000-f {
23074
    width: 1000px !important;
23075
  }
16848 stevensc 23076
 
16825 efrain 23077
  .wd-xxl-1000p-f {
23078
    width: 1000% !important;
23079
  }
16848 stevensc 23080
 
16825 efrain 23081
  .mx-wd-xxl-1000p-f {
23082
    max-width: 1000% !important;
23083
  }
16848 stevensc 23084
 
16825 efrain 23085
  .mn-wd-xxl-1000p-f {
23086
    min-width: 1000% !important;
23087
  }
16848 stevensc 23088
 
16825 efrain 23089
  .wd-xxl-auto {
23090
    width: auto;
23091
  }
16848 stevensc 23092
 
16825 efrain 23093
  .wd-xxl-auto {
23094
    width: auto !important;
23095
  }
23096
}
16848 stevensc 23097
 
16825 efrain 23098
.bg-facebook {
23099
  background: social-color("facebook");
23100
}
23101
 
23102
.bg-twitter {
23103
  background: social-color("twitter");
23104
}
23105
 
23106
.bg-google {
23107
  background: social-color("google");
23108
}
23109
 
23110
.bg-youtube {
23111
  background: social-color("youtube");
23112
}
23113
 
23114
.bg-vimeo {
23115
  background: social-color("vimeo");
23116
}
23117
 
23118
.bg-dribbble {
23119
  background: social-color("dribbble");
23120
}
23121
 
23122
.bg-github {
23123
  background: social-color("github");
23124
}
23125
 
23126
.bg-instagram {
23127
  background: social-color("instagram");
23128
}
23129
 
23130
.bg-pinterest {
23131
  background: social-color("pinterest");
23132
}
23133
 
23134
.bg-flickr {
23135
  background: social-color("flickr");
23136
}
23137
 
23138
.bg-bitbucket {
23139
  background: social-color("bitbucket");
23140
}
23141
 
23142
.bg-linkedin {
23143
  background: social-color("linkedin");
23144
}
23145
 
23146
body {
23147
  margin: 0;
23148
  padding: 0;
23149
}
23150
 
16848 stevensc 23151
.btn,
23152
.wizard>.actions a,
23153
.wizard>.actions a:active,
23154
.wizard>.actions a:hover,
23155
div.tox .tox-button,
23156
.swal2-popup .swal2-actions button,
23157
.fc .fc-button-primary,
16825 efrain 23158
.btn-group.open .dropdown-toggle,
23159
.btn:active,
23160
.btn:focus,
23161
.btn:hover,
23162
.btn:visited,
23163
a,
23164
a:active,
23165
a:checked,
23166
a:focus,
23167
a:hover,
23168
a:visited,
23169
body,
23170
button,
23171
button:active,
23172
button:hover,
23173
button:visited,
23174
div,
23175
input,
23176
input:active,
23177
input:hover,
23178
input:focus,
23179
input:visited,
23180
select,
23181
select:active,
23182
select:focus,
23183
select:visited,
23184
textarea,
23185
textarea:active,
23186
textarea:focus,
23187
textarea:visited {
23188
  -webkit-box-shadow: none;
23189
  -moz-box-shadow: none;
23190
  box-shadow: none;
23191
}
23192
 
23193
select,
23194
.form-check-input {
16848 stevensc 23195
  appearance: none;
16825 efrain 23196
  -moz-appearance: none;
23197
}
23198
 
23199
input:-webkit-autofill,
23200
input:-webkit-autofill:hover,
23201
input:-webkit-autofill:focus,
23202
input:-webkit-autofill:active {
23203
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23204
  -webkit-text-fill-color: #000;
23205
}
23206
 
23207
*:-moz-full-screen,
23208
*:-webkit-full-screen,
23209
*:fullscreen *:-ms-full-screen {
23210
  overflow: auto;
23211
}
23212
 
23213
pre {
23214
  background-color: color(gray-lighter);
23215
  padding: 15px;
23216
  font-size: 14px;
23217
}
23218
 
23219
code {
23220
  padding: 5px;
23221
  font-family: "Roboto", Helvetica, sans-serif;
23222
  font-weight: 400;
23223
  font-size: 0.875rem;
23224
  border-radius: 4px;
23225
}
23226
 
23227
.grid-margin {
23228
  margin-bottom: 1.5rem;
23229
}
23230
 
23231
@media (min-width: 576px) {
23232
  .grid-margin-sm-0 {
23233
    margin-bottom: 0;
23234
  }
23235
}
23236
 
23237
@media (min-width: 768px) {
23238
  .grid-margin-md-0 {
23239
    margin-bottom: 0;
23240
  }
23241
}
23242
 
23243
@media (min-width: 992px) {
23244
  .grid-margin-lg-0 {
23245
    margin-bottom: 0;
23246
  }
23247
}
23248
 
23249
@media (min-width: 1200px) {
23250
  .grid-margin-xl-0 {
23251
    margin-bottom: 0;
23252
  }
23253
}
23254
 
23255
.stretch-card {
23256
  display: flex;
23257
  align-items: stretch;
23258
  justify-content: stretch;
23259
}
16848 stevensc 23260
 
23261
.stretch-card>.card {
16825 efrain 23262
  width: 100%;
23263
  min-width: 100%;
23264
}
23265
 
23266
.img-lg {
23267
  width: 92px;
23268
  height: 92px;
23269
}
23270
 
23271
.img-md {
23272
  width: 75px;
23273
  height: 92px;
23274
}
23275
 
23276
.img-sm {
23277
  width: 43px;
23278
  height: 43px;
23279
}
23280
 
23281
.img-xs {
23282
  width: 36px;
23283
  height: 36px;
23284
}
23285
 
23286
.img-ss {
23287
  width: 26px;
23288
  height: 26px;
23289
}
23290
 
23291
.fw-boldest {
23292
  font-weight: 900;
23293
}
23294
 
23295
.tx-10 {
23296
  font-size: 10px;
23297
}
23298
 
23299
.tx-11 {
23300
  font-size: 11px;
23301
}
23302
 
23303
.tx-12 {
23304
  font-size: 12px;
23305
}
23306
 
23307
.tx-13 {
23308
  font-size: 13px;
23309
}
23310
 
23311
.tx-14 {
23312
  font-size: 14px;
23313
}
23314
 
23315
.tx-16 {
23316
  font-size: 16px;
23317
}
23318
 
23319
.tx-80 {
23320
  font-size: 80px;
23321
}
23322
 
23323
svg.icon-xs {
23324
  width: 12px;
23325
  height: 12px;
23326
}
23327
 
23328
svg.icon-sm {
23329
  width: 14px;
23330
  height: 14px;
23331
}
23332
 
23333
svg.icon-md {
23334
  width: 16px;
23335
  height: 16px;
23336
}
23337
 
23338
svg.icon-lg {
23339
  width: 20px;
23340
  height: 20px;
23341
}
23342
 
23343
svg.icon-xl {
23344
  width: 26px;
23345
  height: 26px;
23346
}
23347
 
23348
svg.icon-xxl {
23349
  width: 40px;
23350
  height: 40px;
23351
}
23352
 
23353
.icon-xs {
23354
  font-size: 14px;
23355
}
23356
 
23357
.icon-sm {
23358
  font-size: 16px;
23359
}
23360
 
23361
.icon-md {
23362
  font-size: 18px;
23363
}
23364
 
23365
.icon-lg {
23366
  font-size: 20px;
23367
}
23368
 
23369
.icon-xl {
23370
  font-size: 24px;
23371
}
23372
 
23373
.icon-xxl {
23374
  font-size: 30px;
23375
}
23376
 
23377
.cursor-pointer {
23378
  cursor: pointer;
23379
}
23380
 
23381
.cursor-default {
23382
  cursor: default;
23383
}
23384
 
23385
.pt-1px {
23386
  padding-top: 1px;
23387
}
23388
 
23389
.pt-2px {
23390
  padding-top: 2px;
23391
}
23392
 
23393
.pt-3px {
23394
  padding-top: 3px;
23395
}
23396
 
23397
.pb-1px {
23398
  padding-bottom: 1px;
23399
}
23400
 
23401
.pb-2px {
23402
  padding-bottom: 2px;
23403
}
23404
 
23405
.pb-3px {
23406
  padding-bottom: 3px;
23407
}
23408
 
23409
.mt-1px {
23410
  margin-top: 1px;
23411
}
23412
 
23413
.mt-2px {
23414
  margin-top: 2px;
23415
}
23416
 
23417
.mt-3px {
23418
  margin-top: 3px;
23419
}
23420
 
23421
.mb-1px {
23422
  margin-bottom: 1px;
23423
}
23424
 
23425
.mb-2px {
23426
  margin-bottom: 2px;
23427
}
23428
 
23429
.mb-3px {
23430
  margin-bottom: 3px;
23431
}
23432
 
23433
.ht-5 {
23434
  height: 5px;
23435
}
23436
 
23437
.ht-10 {
23438
  height: 10px;
23439
}
23440
 
23441
.ht-15 {
23442
  height: 15px;
23443
}
23444
 
23445
.ht-20 {
23446
  height: 20px;
23447
}
23448
 
23449
.ht-30 {
23450
  height: 30px;
23451
}
23452
 
23453
.ht-40 {
23454
  height: 40px;
23455
}
23456
 
23457
.ht-50 {
23458
  height: 50px;
23459
}
23460
 
23461
.ht-60 {
23462
  height: 60px;
23463
}
23464
 
23465
.ht-70 {
23466
  height: 70px;
23467
}
23468
 
23469
.ht-80 {
23470
  height: 80px;
23471
}
23472
 
23473
.ht-90 {
23474
  height: 90px;
23475
}
23476
 
23477
.ht-100 {
23478
  height: 100px;
23479
}
23480
 
23481
body {
23482
  -webkit-font-smoothing: antialiased;
23483
  -moz-osx-font-smoothing: grayscale;
23484
}
23485
 
23486
.text-facebook {
23487
  color: #3b5998;
23488
}
23489
 
23490
.text-twitter {
23491
  color: #1da1f2;
23492
}
23493
 
23494
.text-google {
23495
  color: #dc4e41;
23496
}
23497
 
23498
.text-youtube {
23499
  color: #f00;
23500
}
23501
 
23502
.text-vimeo {
23503
  color: #1ab7ea;
23504
}
23505
 
23506
.text-dribbble {
23507
  color: #ea4c89;
23508
}
23509
 
23510
.text-github {
23511
  color: #181717;
23512
}
23513
 
23514
.text-instagram {
23515
  color: #e4405f;
23516
}
23517
 
23518
.text-pinterest {
23519
  color: #bd081c;
23520
}
23521
 
23522
.text-flickr {
23523
  color: #0063dc;
23524
}
23525
 
23526
.text-bitbucket {
23527
  color: #0052cc;
23528
}
23529
 
23530
.text-linkedin {
23531
  color: #0077b5;
23532
}
23533
 
23534
.main-content {
23535
  color: #000;
23536
  font-size: 16px;
23537
}
16848 stevensc 23538
 
23539
.main-content>.page-title {
16825 efrain 23540
  margin-bottom: 1rem;
23541
  font-weight: 400;
23542
}
16848 stevensc 23543
 
23544
.main-content>h4,
23545
.main-content>.h4 {
16825 efrain 23546
  margin-top: 1.5rem;
23547
  margin-bottom: 0.875rem;
23548
}
16848 stevensc 23549
 
23550
.main-content>h4::before,
23551
.main-content>.h4::before {
16825 efrain 23552
  display: block;
23553
  height: 5.4rem;
23554
  margin-top: -6rem;
23555
  content: "";
23556
}
16848 stevensc 23557
 
23558
.main-content>hr {
16825 efrain 23559
  margin-top: 40px;
23560
  margin-bottom: 40px;
23561
}
16848 stevensc 23562
 
16825 efrain 23563
.main-content .example {
23564
  font-size: 0.875rem;
23565
  letter-spacing: normal;
23566
  padding: 10px;
23567
  background-color: #fff;
23568
  border: 4px solid #e9ecef;
23569
  position: relative;
23570
}
16848 stevensc 23571
 
16825 efrain 23572
@media (min-width: 576px) {
23573
  .main-content .example {
23574
    padding: 25px;
23575
  }
23576
}
16848 stevensc 23577
 
16825 efrain 23578
.main-content .highlight {
23579
  position: relative;
23580
  background-color: #fff;
23581
  padding: 15px;
23582
}
16848 stevensc 23583
 
16825 efrain 23584
.main-content .highlight pre {
23585
  padding: 15px;
23586
  font-size: 0.875rem;
23587
  font-family: "Roboto", Helvetica, sans-serif;
23588
  background: transparent;
23589
  line-height: 1.4;
23590
  margin: 0;
23591
}
16848 stevensc 23592
 
16825 efrain 23593
.main-content .highlight pre code {
23594
  font-family: "Roboto", Helvetica, sans-serif;
23595
  padding: 0;
23596
  tab-size: 8;
23597
  color: #000;
23598
  text-shadow: none;
23599
}
16848 stevensc 23600
 
23601
.main-content .highlight pre code .token.url,
23602
.main-content .highlight pre code .token.string,
23603
.main-content .highlight pre code .token.entity,
23604
.main-content .highlight pre code .token.operator {
16825 efrain 23605
  background: none;
23606
}
16848 stevensc 23607
 
16825 efrain 23608
.main-content .highlight .btn-clipboard {
23609
  position: absolute;
23610
  top: 6px;
23611
  right: 6px;
23612
  font-size: 12px;
23613
  padding: 1px 6px;
23614
  background: rgba(101, 113, 255, 0.2);
23615
}
16848 stevensc 23616
 
23617
.main-content .highlight .btn-clipboard:hover,
23618
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23619
  background: rgba(101, 113, 255, 0.3);
23620
  border-color: transparent;
23621
  transition: background 0.3s ease-in-out;
23622
}
23623
 
16848 stevensc 23624
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23625
  margin-top: 0.5rem;
23626
}
16848 stevensc 23627
 
16825 efrain 23628
.example .modal.static {
23629
  position: static;
23630
  display: block;
23631
}
16848 stevensc 23632
 
16825 efrain 23633
.example .navbar {
23634
  position: relative;
23635
  padding: 0.5rem 1rem;
23636
  left: auto;
23637
  width: 100%;
23638
  height: auto;
23639
  z-index: 9;
23640
  border-bottom: 0;
23641
  box-shadow: none;
23642
}
16848 stevensc 23643
 
16825 efrain 23644
.example .navbar .navbar-brand {
23645
  font-size: 1.25rem;
23646
}
16848 stevensc 23647
 
23648
.example .progress+.progress {
16825 efrain 23649
  margin-top: 10px;
23650
}
16848 stevensc 23651
 
16825 efrain 23652
.example .perfect-scrollbar-example {
23653
  position: relative;
23654
  max-height: 250px;
23655
  background: #fff;
23656
}
16848 stevensc 23657
 
16825 efrain 23658
.example .scrollspy-example {
23659
  position: relative;
23660
  height: 200px;
23661
  margin-top: 0.5rem;
23662
  overflow: auto;
23663
}
16848 stevensc 23664
 
16825 efrain 23665
.example .scrollspy-example-2 {
23666
  position: relative;
23667
  height: 350px;
23668
  overflow: auto;
23669
}
16848 stevensc 23670
 
16825 efrain 23671
.example nav .breadcrumb {
23672
  margin-bottom: 0.75rem;
23673
}
16848 stevensc 23674
 
16825 efrain 23675
.example nav:last-child .breadcrumb {
23676
  margin-bottom: 0;
23677
}
23678
 
23679
.page-breadcrumb {
23680
  margin-bottom: 15px;
23681
}
16848 stevensc 23682
 
16825 efrain 23683
.page-breadcrumb .breadcrumb {
23684
  padding: 0;
23685
  background: #f9fafb;
23686
}
23687
 
23688
.noble-ui-logo {
23689
  font-weight: 700;
23690
  font-size: 25px;
23691
  color: #000865;
23692
}
16848 stevensc 23693
 
16825 efrain 23694
.noble-ui-logo span {
23695
  color: #6571ff;
23696
  font-weight: 300;
23697
}
16848 stevensc 23698
 
16825 efrain 23699
.noble-ui-logo:hover {
23700
  color: #000865;
23701
}
16848 stevensc 23702
 
16825 efrain 23703
.noble-ui-logo.logo-light {
23704
  color: #000;
23705
}
23706
 
23707
.buy-now-wrapper {
23708
  position: fixed;
23709
  bottom: 30px;
23710
  right: 35px;
23711
  z-index: 99999;
23712
}
16848 stevensc 23713
 
16825 efrain 23714
.rtl .buy-now-wrapper {
23715
  right: auto;
23716
  left: 35px;
23717
}
16848 stevensc 23718
 
23719
.buy-now-wrapper .btn svg,
23720
.buy-now-wrapper .wizard>.actions a svg,
23721
.wizard>.actions .buy-now-wrapper a svg,
23722
.buy-now-wrapper div.tox .tox-button svg,
23723
div.tox .buy-now-wrapper .tox-button svg,
23724
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23725
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23726
.buy-now-wrapper .fc .fc-button-primary svg,
23727
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23728
  width: 19px !important;
23729
  height: 19px !important;
23730
}
23731
 
23732
.main-wrapper {
23733
  display: flex;
23734
}
16848 stevensc 23735
 
16825 efrain 23736
.main-wrapper .page-wrapper {
23737
  min-height: 100vh;
23738
  background: #f9fafb;
23739
  width: calc(100% - 240px);
23740
  margin-left: 240px;
23741
  display: flex;
23742
  flex-direction: column;
23743
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23744
  transition: margin 0.1s ease, width 0.1s ease;
23745
}
16848 stevensc 23746
 
16825 efrain 23747
.main-wrapper .page-wrapper .page-content {
23748
  flex-grow: 1;
23749
  padding: 25px;
23750
  margin-top: 60px;
23751
}
16848 stevensc 23752
 
16825 efrain 23753
@media (max-width: 767px) {
23754
  .main-wrapper .page-wrapper .page-content {
23755
    padding: 25px 15px;
23756
  }
23757
}
16848 stevensc 23758
 
16825 efrain 23759
.main-wrapper .page-wrapper.full-page {
23760
  width: 100%;
23761
  margin-left: 0;
23762
}
16848 stevensc 23763
 
16825 efrain 23764
.main-wrapper .page-wrapper.full-page .page-content {
23765
  margin-top: 0;
23766
}
16848 stevensc 23767
 
16825 efrain 23768
@media (max-width: 991px) {
23769
  .main-wrapper .page-wrapper {
23770
    margin-left: 0;
23771
    width: 100%;
23772
  }
23773
}
23774
 
23775
.page-content .content-nav-wrapper {
23776
  padding: 0;
23777
  position: sticky;
23778
  top: 80px;
23779
  height: calc(100vh - 6rem);
23780
  overflow-y: auto;
23781
  border-left: 1px solid #e9ecef;
23782
  display: none;
23783
}
16848 stevensc 23784
 
16825 efrain 23785
@media (min-width: 1200px) {
23786
  .page-content .content-nav-wrapper {
23787
    display: block;
23788
  }
23789
}
16848 stevensc 23790
 
16825 efrain 23791
.page-content .content-nav-wrapper .content-nav {
23792
  padding: 0px 25px;
23793
}
16848 stevensc 23794
 
16825 efrain 23795
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23796
  padding: 0;
23797
  height: 30px;
23798
  white-space: nowrap;
23799
  color: #7987a1;
23800
  display: flex;
23801
  align-items: center;
23802
}
23803
 
23804
.navbar {
23805
  width: calc(100% - 240px);
23806
  height: 60px;
23807
  background: #fff;
23808
  border-bottom: 1px solid #e9ecef;
23809
  display: flex;
23810
  align-items: center;
23811
  padding: 0;
23812
  position: fixed;
23813
  right: 0;
23814
  left: 240px;
23815
  z-index: 978;
23816
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23817
  transition: width 0.1s ease, left 0.1s ease;
23818
}
16848 stevensc 23819
 
16825 efrain 23820
@media (max-width: 991px) {
23821
  .navbar {
23822
    width: 100%;
23823
    left: 0;
23824
  }
16848 stevensc 23825
 
16825 efrain 23826
  .navbar .navbar-content {
23827
    width: calc(100% - 70px - 1px);
23828
  }
23829
}
16848 stevensc 23830
 
16825 efrain 23831
.navbar .sidebar-toggler {
23832
  height: 100%;
23833
  border-right: 1px solid #e9ecef;
23834
  align-items: center;
23835
  padding: 0 25px;
23836
  display: none;
23837
}
16848 stevensc 23838
 
16825 efrain 23839
.navbar .sidebar-toggler svg {
23840
  width: 20px;
23841
  height: 20px;
23842
  color: #7987a1;
23843
}
16848 stevensc 23844
 
16825 efrain 23845
@media (max-width: 991px) {
23846
  .navbar .sidebar-toggler {
23847
    display: flex;
23848
  }
23849
}
16848 stevensc 23850
 
16825 efrain 23851
.navbar .search-form {
23852
  width: 100%;
23853
  margin-right: 60px;
23854
}
16848 stevensc 23855
 
16825 efrain 23856
.navbar .search-form .input-group .input-group-text {
23857
  padding: 0;
23858
  border: 0;
23859
  color: #7987a1;
23860
  background: #fff;
23861
}
16848 stevensc 23862
 
16825 efrain 23863
.navbar .search-form .input-group .input-group-text svg {
23864
  width: 20px;
23865
  height: 20px;
23866
  cursor: pointer;
23867
}
16848 stevensc 23868
 
23869
.navbar .search-form .input-group .form-control,
23870
.navbar .search-form .input-group .typeahead.tt-input,
23871
.navbar .search-form .input-group .typeahead.tt-hint,
23872
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23873
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23874
  border: 0;
23875
  margin-top: 3px;
23876
}
16848 stevensc 23877
 
16825 efrain 23878
.navbar .navbar-content {
23879
  display: flex;
23880
  width: 100%;
23881
  height: 100%;
23882
  padding-left: 25px;
23883
  padding-right: 25px;
23884
}
16848 stevensc 23885
 
16825 efrain 23886
@media (max-width: 991px) {
23887
  .navbar .navbar-content {
23888
    width: calc(100% - 70px - 1px);
23889
  }
23890
}
16848 stevensc 23891
 
16825 efrain 23892
.navbar .navbar-content .navbar-nav {
23893
  display: flex;
23894
  flex-direction: row;
23895
  margin-left: auto;
23896
}
16848 stevensc 23897
 
16825 efrain 23898
.navbar .navbar-content .navbar-nav .nav-item {
23899
  position: relative;
23900
  margin-left: 5px;
23901
  margin-right: 5px;
23902
  min-width: 30px;
23903
  display: flex;
23904
  align-items: center;
23905
}
16848 stevensc 23906
 
16825 efrain 23907
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23908
  color: #000;
23909
  padding: 0;
23910
  position: relative;
23911
  margin-left: auto;
23912
  margin-right: auto;
23913
}
16848 stevensc 23914
 
23915
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23916
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23917
  color: #6571ff;
23918
}
16848 stevensc 23919
 
16825 efrain 23920
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23921
  display: none;
23922
}
16848 stevensc 23923
 
16825 efrain 23924
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23925
  width: 20px;
23926
  height: 20px;
23927
}
16848 stevensc 23928
 
16825 efrain 23929
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23930
  position: absolute;
23931
  top: 0px;
23932
  right: 2px;
23933
}
16848 stevensc 23934
 
16825 efrain 23935
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23936
  background: #6571ff;
23937
  width: 7px;
23938
  height: 7px;
23939
  border-radius: 50%;
23940
}
16848 stevensc 23941
 
16825 efrain 23942
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23943
  background-color: #6571ff;
23944
  content: "";
23945
  display: table;
23946
  border-radius: 50%;
23947
  position: absolute;
23948
}
16848 stevensc 23949
 
16825 efrain 23950
@media (max-width: 767px) {
23951
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23952
    position: static;
23953
  }
23954
}
16848 stevensc 23955
 
23956
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23957
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23958
  width: max-content;
23959
  position: absolute;
23960
  right: -20px;
23961
  left: auto;
23962
}
16848 stevensc 23963
 
23964
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23965
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23966
  content: "";
23967
  width: 13px;
23968
  height: 13px;
23969
  background: #fff;
23970
  position: absolute;
23971
  top: -7px;
23972
  right: 28px;
23973
  transform: rotate(45deg);
23974
  border-top: 1px solid #f2f4f9;
23975
  border-left: 1px solid #f2f4f9;
23976
}
16848 stevensc 23977
 
16825 efrain 23978
@media (max-width: 767px) {
16848 stevensc 23979
 
23980
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23981
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23982
    right: 20px;
23983
    width: calc(100% - 40px);
23984
  }
16848 stevensc 23985
 
23986
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23987
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23988
    display: none;
23989
  }
23990
}
23991
 
23992
.sidebar {
23993
  width: 240px;
23994
  height: 100%;
23995
  position: fixed;
23996
  left: 0;
23997
  top: 0;
23998
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
23999
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24000
  z-index: 999;
24001
}
16848 stevensc 24002
 
16825 efrain 24003
.sidebar .sidebar-header {
24004
  background: #fff;
24005
  height: 60px;
24006
  border-bottom: 1px solid #e9ecef;
24007
  display: flex;
24008
  justify-content: space-between;
24009
  align-items: center;
24010
  padding: 0 25px;
24011
  border-right: 1px solid #e9ecef;
24012
  z-index: 999;
24013
  width: 240px;
24014
  -webkit-transition: width 0.1s ease;
24015
  transition: width 0.1s ease;
24016
}
16848 stevensc 24017
 
16825 efrain 24018
.sidebar-open .sidebar .sidebar-header {
24019
  border-bottom: 1px solid #e9ecef;
24020
}
16848 stevensc 24021
 
16825 efrain 24022
.sidebar .sidebar-header .sidebar-brand {
24023
  opacity: 1;
24024
  visibility: visible;
24025
  -webkit-transition: opacity 0.5s ease;
24026
  transition: opacity 0.5s ease;
24027
  font-weight: 700;
24028
  font-size: 25px;
24029
  color: #000865;
16848 stevensc 24030
  direction: ltr
24031
    /*rtl:ignore*/
24032
  ;
16825 efrain 24033
}
16848 stevensc 24034
 
16825 efrain 24035
.sidebar .sidebar-header .sidebar-brand span {
24036
  color: #6571ff;
24037
  font-weight: 300;
24038
}
16848 stevensc 24039
 
16825 efrain 24040
.sidebar .sidebar-header .sidebar-toggler {
24041
  cursor: pointer;
24042
  width: 18px;
24043
}
16848 stevensc 24044
 
16825 efrain 24045
.sidebar .sidebar-header .sidebar-toggler span {
24046
  display: block;
24047
  width: 100%;
24048
  border-radius: 3px;
24049
  height: 2px;
24050
  background: #7987a1;
24051
  -webkit-transition: all 0.3s;
24052
  transition: all 0.3s;
24053
  position: relative;
24054
}
16848 stevensc 24055
 
24056
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24057
  margin-top: 4px;
24058
}
16848 stevensc 24059
 
16825 efrain 24060
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24061
  -webkit-animation: ease 0.6s top forwards;
24062
  animation: ease 0.6s top forwards;
24063
}
16848 stevensc 24064
 
16825 efrain 24065
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24066
  -webkit-animation: ease 0.6s top-2 forwards;
24067
  animation: ease 0.6s top-2 forwards;
24068
}
16848 stevensc 24069
 
16825 efrain 24070
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24071
  -webkit-animation: ease 0.6s scaled forwards;
24072
  animation: ease 0.6s scaled forwards;
24073
}
16848 stevensc 24074
 
16825 efrain 24075
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24076
  -webkit-animation: ease 0.6s scaled-2 forwards;
24077
  animation: ease 0.6s scaled-2 forwards;
24078
}
16848 stevensc 24079
 
16825 efrain 24080
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24081
  -webkit-animation: ease 0.6s bottom forwards;
24082
  animation: ease 0.6s bottom forwards;
24083
}
16848 stevensc 24084
 
16825 efrain 24085
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24086
  -webkit-animation: ease 0.6s bottom-2 forwards;
24087
  animation: ease 0.6s bottom-2 forwards;
24088
}
16848 stevensc 24089
 
16825 efrain 24090
@-webkit-keyframes top {
24091
  0% {
24092
    top: 0;
24093
    -webkit-transform: rotate(0);
24094
    transform: rotate(0);
24095
  }
16848 stevensc 24096
 
16825 efrain 24097
  50% {
24098
    top: 6px;
24099
    -webkit-transform: rotate(0);
24100
    transform: rotate(0);
24101
  }
16848 stevensc 24102
 
16825 efrain 24103
  100% {
24104
    top: 6px;
24105
    -webkit-transform: rotate(45deg);
24106
    transform: rotate(45deg);
24107
  }
24108
}
16848 stevensc 24109
 
16825 efrain 24110
@keyframes top {
24111
  0% {
24112
    top: 0;
24113
    -webkit-transform: rotate(0);
24114
    transform: rotate(0);
24115
  }
16848 stevensc 24116
 
16825 efrain 24117
  50% {
24118
    top: 6px;
24119
    -webkit-transform: rotate(0);
24120
    transform: rotate(0);
24121
  }
16848 stevensc 24122
 
16825 efrain 24123
  100% {
24124
    top: 6px;
24125
    -webkit-transform: rotate(45deg);
24126
    transform: rotate(45deg);
24127
  }
24128
}
16848 stevensc 24129
 
16825 efrain 24130
@-webkit-keyframes top-2 {
24131
  0% {
24132
    top: 6px;
24133
    -webkit-transform: rotate(45deg);
24134
    transform: rotate(45deg);
24135
  }
16848 stevensc 24136
 
16825 efrain 24137
  50% {
24138
    top: 6px;
24139
    -webkit-transform: rotate(0deg);
24140
    transform: rotate(0deg);
24141
  }
16848 stevensc 24142
 
16825 efrain 24143
  100% {
24144
    top: 0;
24145
    -webkit-transform: rotate(0deg);
24146
    transform: rotate(0deg);
24147
  }
24148
}
16848 stevensc 24149
 
16825 efrain 24150
@keyframes top-2 {
24151
  0% {
24152
    top: 6px;
24153
    -webkit-transform: rotate(45deg);
24154
    transform: rotate(45deg);
24155
  }
16848 stevensc 24156
 
16825 efrain 24157
  50% {
24158
    top: 6px;
24159
    -webkit-transform: rotate(0deg);
24160
    transform: rotate(0deg);
24161
  }
16848 stevensc 24162
 
16825 efrain 24163
  100% {
24164
    top: 0;
24165
    -webkit-transform: rotate(0deg);
24166
    transform: rotate(0deg);
24167
  }
24168
}
16848 stevensc 24169
 
16825 efrain 24170
@-webkit-keyframes bottom {
24171
  0% {
24172
    bottom: 0;
24173
    -webkit-transform: rotate(0);
24174
    transform: rotate(0);
24175
  }
16848 stevensc 24176
 
16825 efrain 24177
  50% {
24178
    bottom: 6px;
24179
    -webkit-transform: rotate(0);
24180
    transform: rotate(0);
24181
  }
16848 stevensc 24182
 
16825 efrain 24183
  100% {
24184
    bottom: 6px;
24185
    -webkit-transform: rotate(135deg);
24186
    transform: rotate(135deg);
24187
  }
24188
}
16848 stevensc 24189
 
16825 efrain 24190
@keyframes bottom {
24191
  0% {
24192
    bottom: 0;
24193
    -webkit-transform: rotate(0);
24194
    transform: rotate(0);
24195
  }
16848 stevensc 24196
 
16825 efrain 24197
  50% {
24198
    bottom: 6px;
24199
    -webkit-transform: rotate(0);
24200
    transform: rotate(0);
24201
  }
16848 stevensc 24202
 
16825 efrain 24203
  100% {
24204
    bottom: 6px;
24205
    -webkit-transform: rotate(135deg);
24206
    transform: rotate(135deg);
24207
  }
24208
}
16848 stevensc 24209
 
16825 efrain 24210
@-webkit-keyframes bottom-2 {
24211
  0% {
24212
    bottom: 6px;
24213
    -webkit-transform: rotate(135deg);
24214
    transform: rotate(135deg);
24215
  }
16848 stevensc 24216
 
16825 efrain 24217
  50% {
24218
    bottom: 6px;
24219
    -webkit-transform: rotate(0);
24220
    transform: rotate(0);
24221
  }
16848 stevensc 24222
 
16825 efrain 24223
  100% {
24224
    bottom: 0;
24225
    -webkit-transform: rotate(0);
24226
    transform: rotate(0);
24227
  }
24228
}
16848 stevensc 24229
 
16825 efrain 24230
@keyframes bottom-2 {
24231
  0% {
24232
    bottom: 6px;
24233
    -webkit-transform: rotate(135deg);
24234
    transform: rotate(135deg);
24235
  }
16848 stevensc 24236
 
16825 efrain 24237
  50% {
24238
    bottom: 6px;
24239
    -webkit-transform: rotate(0);
24240
    transform: rotate(0);
24241
  }
16848 stevensc 24242
 
16825 efrain 24243
  100% {
24244
    bottom: 0;
24245
    -webkit-transform: rotate(0);
24246
    transform: rotate(0);
24247
  }
24248
}
16848 stevensc 24249
 
16825 efrain 24250
@-webkit-keyframes scaled {
24251
  50% {
24252
    -webkit-transform: scale(0);
24253
    transform: scale(0);
24254
  }
16848 stevensc 24255
 
16825 efrain 24256
  100% {
24257
    -webkit-transform: scale(0);
24258
    transform: scale(0);
24259
  }
24260
}
16848 stevensc 24261
 
16825 efrain 24262
@keyframes scaled {
24263
  50% {
24264
    -webkit-transform: scale(0);
24265
    transform: scale(0);
24266
  }
16848 stevensc 24267
 
16825 efrain 24268
  100% {
24269
    -webkit-transform: scale(0);
24270
    transform: scale(0);
24271
  }
24272
}
16848 stevensc 24273
 
16825 efrain 24274
@-webkit-keyframes scaled-2 {
24275
  0% {
24276
    -webkit-transform: scale(0);
24277
    transform: scale(0);
24278
  }
16848 stevensc 24279
 
16825 efrain 24280
  50% {
24281
    -webkit-transform: scale(0);
24282
    transform: scale(0);
24283
  }
16848 stevensc 24284
 
16825 efrain 24285
  100% {
24286
    -webkit-transform: scale(1);
24287
    transform: scale(1);
24288
  }
24289
}
16848 stevensc 24290
 
16825 efrain 24291
@keyframes scaled-2 {
24292
  0% {
24293
    -webkit-transform: scale(0);
24294
    transform: scale(0);
24295
  }
16848 stevensc 24296
 
16825 efrain 24297
  50% {
24298
    -webkit-transform: scale(0);
24299
    transform: scale(0);
24300
  }
16848 stevensc 24301
 
16825 efrain 24302
  100% {
24303
    -webkit-transform: scale(1);
24304
    transform: scale(1);
24305
  }
24306
}
16848 stevensc 24307
 
16825 efrain 24308
.sidebar .sidebar-body {
24309
  max-height: calc(100% - 60px);
24310
  position: relative;
24311
  border-right: 1px solid #e9ecef;
24312
  height: 100%;
24313
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24314
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24315
  background: #fff;
24316
}
16848 stevensc 24317
 
16825 efrain 24318
.sidebar .sidebar-body .nav {
24319
  display: flex;
24320
  flex-direction: column;
24321
  padding: 25px 25px 50px 25px;
24322
}
16848 stevensc 24323
 
16825 efrain 24324
.sidebar .sidebar-body .nav .nav-item {
24325
  position: relative;
24326
}
16848 stevensc 24327
 
16825 efrain 24328
.sidebar .sidebar-body .nav .nav-item .nav-link {
24329
  display: flex;
24330
  align-items: center;
24331
  padding: 0;
24332
  height: 32px;
24333
  white-space: nowrap;
24334
  color: #000;
24335
}
16848 stevensc 24336
 
16825 efrain 24337
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24338
  width: 16px;
24339
  height: 16px;
24340
  fill: rgba(233, 236, 239, 0.21);
24341
  position: absolute;
24342
  color: inherit;
24343
}
16848 stevensc 24344
 
16825 efrain 24345
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24346
  margin-left: 30px;
24347
  font-size: 14px;
24348
  -webkit-transition: all 0.2s ease-in-out;
24349
  transition: all 0.2s ease-in-out;
24350
}
16848 stevensc 24351
 
16825 efrain 24352
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24353
  width: 14px;
24354
  height: 14px;
24355
  margin-left: auto;
24356
  -webkit-transition: all 0.3s ease;
24357
  -webkit-transition: all 0.3s ease-in-out;
24358
  transition: all 0.3s ease-in-out;
24359
  color: inherit;
24360
}
16848 stevensc 24361
 
16825 efrain 24362
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24363
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24364
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24365
  -webkit-transition: all 0.3s ease;
24366
  transition: all 0.3s ease;
24367
}
16848 stevensc 24368
 
16825 efrain 24369
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24370
  color: #6571ff;
24371
}
16848 stevensc 24372
 
16825 efrain 24373
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24374
  -webkit-transform: rotate(90deg);
24375
  transform: rotate(180deg);
24376
}
16848 stevensc 24377
 
16825 efrain 24378
.sidebar .sidebar-body .nav .nav-item.nav-category {
24379
  color: #7987a1;
24380
  font-size: 11px;
24381
  text-transform: uppercase;
24382
  font-weight: 500;
24383
  letter-spacing: 0.5px;
24384
  margin-bottom: 5px;
24385
  height: 15px;
24386
}
16848 stevensc 24387
 
16825 efrain 24388
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24389
  margin-top: 20px;
24390
}
16848 stevensc 24391
 
16825 efrain 24392
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24393
  color: #6571ff;
24394
}
16848 stevensc 24395
 
16825 efrain 24396
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24397
  margin-left: 31px;
24398
}
16848 stevensc 24399
 
16825 efrain 24400
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24401
  color: #6571ff;
24402
  fill: rgba(239, 243, 255, 0.5);
24403
}
16848 stevensc 24404
 
16825 efrain 24405
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24406
  color: #6571ff;
24407
}
16848 stevensc 24408
 
16825 efrain 24409
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24410
  content: "";
24411
  width: 3px;
24412
  height: 26px;
24413
  background: #6571ff;
24414
  position: absolute;
24415
  left: -25px;
24416
}
16848 stevensc 24417
 
16825 efrain 24418
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24419
  fill: rgba(239, 243, 255, 0.5);
24420
  color: #6571ff;
24421
}
16848 stevensc 24422
 
16825 efrain 24423
.sidebar .sidebar-body .nav.sub-menu {
24424
  padding: 0 0 15px 33px;
24425
}
16848 stevensc 24426
 
16825 efrain 24427
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24428
  position: relative;
24429
}
16848 stevensc 24430
 
16825 efrain 24431
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24432
  height: 25px;
24433
  color: #000;
24434
  font-size: 13px;
24435
  -webkit-transition: all 0.3s ease-in-out;
24436
  transition: all 0.3s ease-in-out;
24437
}
16848 stevensc 24438
 
16825 efrain 24439
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24440
  content: "";
24441
  width: 6px;
24442
  height: 6px;
24443
  border-radius: 50%;
24444
  background: transparent;
24445
  border: 1px solid #aeb9c4;
24446
  position: absolute;
24447
  left: -29px;
24448
  top: 10px;
24449
  -webkit-transition: all 0.7s ease-in-out;
24450
  -webkit-transition: all 0.4s ease-in-out;
24451
  transition: all 0.4s ease-in-out;
24452
}
16848 stevensc 24453
 
16825 efrain 24454
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24455
  color: #6571ff;
24456
}
16848 stevensc 24457
 
16825 efrain 24458
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24459
  border: 1px solid #6571ff;
24460
  background: #6571ff;
24461
}
16848 stevensc 24462
 
16825 efrain 24463
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24464
  color: #6571ff;
24465
  margin-left: 3px;
24466
}
16848 stevensc 24467
 
16825 efrain 24468
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24469
  border: 1px solid #6571ff;
24470
  background: #6571ff;
24471
}
16848 stevensc 24472
 
16825 efrain 24473
@media (max-width: 991px) {
24474
  .sidebar {
24475
    z-index: 999;
24476
    margin-left: -240px;
24477
    visibility: hidden;
24478
  }
16848 stevensc 24479
 
16825 efrain 24480
  .sidebar-open .sidebar {
24481
    margin-left: 0;
24482
    visibility: visible;
24483
  }
16848 stevensc 24484
 
16825 efrain 24485
  .sidebar .sidebar-body .nav .nav-item {
24486
    width: auto;
24487
  }
16848 stevensc 24488
 
16825 efrain 24489
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24490
    -webkit-transition: none;
24491
    transition: none;
24492
    margin: 0;
24493
  }
24494
}
24495
 
24496
.sidebar-dark .sidebar .sidebar-header {
24497
  background: #0c1427;
24498
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24499
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24500
}
16848 stevensc 24501
 
16825 efrain 24502
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24503
  color: #e9ecef;
24504
}
16848 stevensc 24505
 
16825 efrain 24506
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24507
  background: #7987a1;
24508
}
16848 stevensc 24509
 
16825 efrain 24510
.sidebar-dark .sidebar .sidebar-body {
24511
  background: #0c1427;
24512
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24513
}
16848 stevensc 24514
 
16825 efrain 24515
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24516
  color: #fff;
24517
}
16848 stevensc 24518
 
16825 efrain 24519
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24520
  color: #7987a1;
24521
}
16848 stevensc 24522
 
16825 efrain 24523
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24524
  fill: none;
24525
}
16848 stevensc 24526
 
16825 efrain 24527
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24528
  color: #6571ff;
24529
}
16848 stevensc 24530
 
24531
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24532
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24533
  fill: rgba(101, 113, 255, 0.2);
24534
}
16848 stevensc 24535
 
24536
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24537
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24538
  color: #6571ff;
24539
}
24540
 
24541
.settings-sidebar {
24542
  position: fixed;
24543
  right: -232px;
24544
  top: 130px;
24545
  width: 232px;
24546
  background: #fff;
24547
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24548
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24549
  z-index: 999;
24550
  border-radius: 0 0 0 4px;
24551
  -webkit-transition: all 0.2s ease-in-out;
24552
  transition: all 0.2s ease-in-out;
24553
}
16848 stevensc 24554
 
16825 efrain 24555
.settings-open .settings-sidebar {
24556
  right: 0;
24557
}
16848 stevensc 24558
 
16825 efrain 24559
.settings-sidebar .sidebar-body {
24560
  position: relative;
24561
  padding: 18px;
24562
}
16848 stevensc 24563
 
16825 efrain 24564
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24565
  position: absolute;
24566
  left: -44px;
24567
  top: 0;
24568
  padding: 12px;
24569
  border-radius: 4px 0 0 4px;
24570
  background: #fff;
24571
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24572
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24573
}
16848 stevensc 24574
 
16825 efrain 24575
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24576
  width: 20px;
24577
  height: 20px;
24578
  color: #7987a1;
24579
}
16848 stevensc 24580
 
16825 efrain 24581
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24582
  position: relative;
24583
  display: block;
24584
  margin-bottom: 19px;
24585
  border-radius: 6px;
24586
  border: 3px solid #e9ecef;
24587
}
16848 stevensc 24588
 
16825 efrain 24589
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24590
  content: "";
24591
  position: absolute;
24592
  top: 0;
24593
  left: 0;
24594
  width: 100%;
24595
  height: 100%;
24596
  background: rgba(101, 113, 255, 0);
24597
}
16848 stevensc 24598
 
16825 efrain 24599
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24600
  margin-bottom: 0;
24601
}
16848 stevensc 24602
 
16825 efrain 24603
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24604
  border: 3px solid #b2b8ff;
24605
}
16848 stevensc 24606
 
16825 efrain 24607
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24608
  width: 100%;
24609
  border-radius: 3px;
24610
}
16848 stevensc 24611
 
16825 efrain 24612
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24613
  background: rgba(101, 113, 255, 0.2);
24614
  -webkit-transition: all 0.3s ease-in-out;
24615
  transition: all 0.3s ease-in-out;
24616
}
24617
 
24618
.sidebar-folded .sidebar .sidebar-header {
24619
  width: 70px;
24620
}
16848 stevensc 24621
 
16825 efrain 24622
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24623
  display: none;
24624
}
16848 stevensc 24625
 
16825 efrain 24626
.sidebar-folded .page-wrapper {
24627
  width: calc(100% - 70px);
24628
  margin-left: 70px;
24629
}
16848 stevensc 24630
 
16825 efrain 24631
.sidebar-folded .page-wrapper .navbar {
24632
  width: calc(100% - 70px);
24633
  left: 70px;
24634
  right: 0;
24635
}
16848 stevensc 24636
 
16825 efrain 24637
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24638
  width: 70px;
24639
}
16848 stevensc 24640
 
16825 efrain 24641
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24642
  width: 70px;
24643
}
16848 stevensc 24644
 
16825 efrain 24645
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24646
  opacity: 0;
24647
  visibility: hidden;
24648
  width: 0;
24649
}
16848 stevensc 24650
 
16825 efrain 24651
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24652
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24653
  visibility: hidden;
24654
  opacity: 0;
24655
}
16848 stevensc 24656
 
16825 efrain 24657
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24658
  visibility: hidden;
24659
}
16848 stevensc 24660
 
16825 efrain 24661
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24662
  content: "";
24663
  width: 5px;
24664
  height: 5px;
24665
  border-radius: 50%;
24666
  background: #7987a1;
24667
  position: absolute;
24668
  top: 5px;
24669
  left: 6px;
24670
  visibility: visible;
24671
}
16848 stevensc 24672
 
16825 efrain 24673
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24674
  display: none;
24675
}
24676
 
24677
@media (max-width: 991px) {
16848 stevensc 24678
 
24679
  .sidebar-open .main-wrapper::before,
24680
  .settings-open .main-wrapper::before {
16825 efrain 24681
    content: "";
24682
    width: 100vw;
24683
    background: rgba(0, 0, 0, 0.3);
24684
    position: fixed;
24685
    top: 0;
24686
    bottom: 0;
24687
    right: 0;
24688
    z-index: 99;
24689
    -webkit-transition: all 3s ease;
24690
    transition: all 3s ease;
24691
    z-index: 980;
24692
  }
24693
}
24694
 
24695
a.badge:hover {
24696
  color: #fff;
24697
}
24698
 
24699
.alert-primary {
24700
  background-color: rgba(101, 113, 255, 0.1);
24701
  color: #4c59ff;
24702
  border-color: rgba(101, 113, 255, 0.2);
24703
}
16848 stevensc 24704
 
16825 efrain 24705
.alert-primary .alert-link {
24706
  color: #4c59ff;
24707
}
16848 stevensc 24708
 
16825 efrain 24709
.alert-primary svg {
24710
  width: 19px;
24711
  height: 19px;
24712
  margin-right: 0.5rem;
24713
}
16848 stevensc 24714
 
16825 efrain 24715
.alert-primary i {
24716
  font-size: 19px;
24717
  margin-right: 0.5rem;
24718
}
24719
 
24720
.alert-fill-primary {
24721
  --bs-alert-color: #fff;
24722
  --bs-alert-bg: #6571ff;
24723
  --bs-alert-border-color: #6571ff;
24724
}
16848 stevensc 24725
 
16825 efrain 24726
.alert-fill-primary .alert-link {
24727
  color: #cccccc;
24728
}
16848 stevensc 24729
 
16825 efrain 24730
.alert-fill-primary.alert-fill-light {
24731
  color: #7987a1;
24732
}
24733
 
24734
.alert-secondary {
24735
  background-color: rgba(121, 135, 161, 0.1);
24736
  color: #6a7a96;
24737
  border-color: rgba(121, 135, 161, 0.2);
24738
}
16848 stevensc 24739
 
16825 efrain 24740
.alert-secondary .alert-link {
24741
  color: #6a7a96;
24742
}
16848 stevensc 24743
 
16825 efrain 24744
.alert-secondary svg {
24745
  width: 19px;
24746
  height: 19px;
24747
  margin-right: 0.5rem;
24748
}
16848 stevensc 24749
 
16825 efrain 24750
.alert-secondary i {
24751
  font-size: 19px;
24752
  margin-right: 0.5rem;
24753
}
24754
 
24755
.alert-fill-secondary {
24756
  --bs-alert-color: #fff;
24757
  --bs-alert-bg: #7987a1;
24758
  --bs-alert-border-color: #7987a1;
24759
}
16848 stevensc 24760
 
16825 efrain 24761
.alert-fill-secondary .alert-link {
24762
  color: #cccccc;
24763
}
16848 stevensc 24764
 
16825 efrain 24765
.alert-fill-secondary.alert-fill-light {
24766
  color: #7987a1;
24767
}
24768
 
24769
.alert-success {
24770
  background-color: rgba(5, 163, 74, 0.1);
24771
  color: #048a3f;
24772
  border-color: rgba(5, 163, 74, 0.2);
24773
}
16848 stevensc 24774
 
16825 efrain 24775
.alert-success .alert-link {
24776
  color: #048a3f;
24777
}
16848 stevensc 24778
 
16825 efrain 24779
.alert-success svg {
24780
  width: 19px;
24781
  height: 19px;
24782
  margin-right: 0.5rem;
24783
}
16848 stevensc 24784
 
16825 efrain 24785
.alert-success i {
24786
  font-size: 19px;
24787
  margin-right: 0.5rem;
24788
}
24789
 
24790
.alert-fill-success {
24791
  --bs-alert-color: #fff;
24792
  --bs-alert-bg: #05a34a;
24793
  --bs-alert-border-color: #05a34a;
24794
}
16848 stevensc 24795
 
16825 efrain 24796
.alert-fill-success .alert-link {
24797
  color: #cccccc;
24798
}
16848 stevensc 24799
 
16825 efrain 24800
.alert-fill-success.alert-fill-light {
24801
  color: #7987a1;
24802
}
24803
 
24804
.alert-info {
24805
  background-color: rgba(102, 209, 209, 0.1);
24806
  color: #52cbcb;
24807
  border-color: rgba(102, 209, 209, 0.2);
24808
}
16848 stevensc 24809
 
16825 efrain 24810
.alert-info .alert-link {
24811
  color: #52cbcb;
24812
}
16848 stevensc 24813
 
16825 efrain 24814
.alert-info svg {
24815
  width: 19px;
24816
  height: 19px;
24817
  margin-right: 0.5rem;
24818
}
16848 stevensc 24819
 
16825 efrain 24820
.alert-info i {
24821
  font-size: 19px;
24822
  margin-right: 0.5rem;
24823
}
24824
 
24825
.alert-fill-info {
24826
  --bs-alert-color: #fff;
24827
  --bs-alert-bg: #66d1d1;
24828
  --bs-alert-border-color: #66d1d1;
24829
}
16848 stevensc 24830
 
16825 efrain 24831
.alert-fill-info .alert-link {
24832
  color: #cccccc;
24833
}
16848 stevensc 24834
 
16825 efrain 24835
.alert-fill-info.alert-fill-light {
24836
  color: #7987a1;
24837
}
24838
 
24839
.alert-warning {
24840
  background-color: rgba(251, 188, 6, 0.1);
24841
  color: #e4aa04;
24842
  border-color: rgba(251, 188, 6, 0.2);
24843
}
16848 stevensc 24844
 
16825 efrain 24845
.alert-warning .alert-link {
24846
  color: #e4aa04;
24847
}
16848 stevensc 24848
 
16825 efrain 24849
.alert-warning svg {
24850
  width: 19px;
24851
  height: 19px;
24852
  margin-right: 0.5rem;
24853
}
16848 stevensc 24854
 
16825 efrain 24855
.alert-warning i {
24856
  font-size: 19px;
24857
  margin-right: 0.5rem;
24858
}
24859
 
24860
.alert-fill-warning {
24861
  --bs-alert-color: #fff;
24862
  --bs-alert-bg: #fbbc06;
24863
  --bs-alert-border-color: #fbbc06;
24864
}
16848 stevensc 24865
 
16825 efrain 24866
.alert-fill-warning .alert-link {
24867
  color: #cccccc;
24868
}
16848 stevensc 24869
 
16825 efrain 24870
.alert-fill-warning.alert-fill-light {
24871
  color: #7987a1;
24872
}
24873
 
24874
.alert-danger {
24875
  background-color: rgba(255, 51, 102, 0.1);
24876
  color: #ff1a53;
24877
  border-color: rgba(255, 51, 102, 0.2);
24878
}
16848 stevensc 24879
 
16825 efrain 24880
.alert-danger .alert-link {
24881
  color: #ff1a53;
24882
}
16848 stevensc 24883
 
16825 efrain 24884
.alert-danger svg {
24885
  width: 19px;
24886
  height: 19px;
24887
  margin-right: 0.5rem;
24888
}
16848 stevensc 24889
 
16825 efrain 24890
.alert-danger i {
24891
  font-size: 19px;
24892
  margin-right: 0.5rem;
24893
}
24894
 
24895
.alert-fill-danger {
24896
  --bs-alert-color: #fff;
24897
  --bs-alert-bg: #ff3366;
24898
  --bs-alert-border-color: #ff3366;
24899
}
16848 stevensc 24900
 
16825 efrain 24901
.alert-fill-danger .alert-link {
24902
  color: #cccccc;
24903
}
16848 stevensc 24904
 
16825 efrain 24905
.alert-fill-danger.alert-fill-light {
24906
  color: #7987a1;
24907
}
24908
 
24909
.alert-light {
24910
  background-color: rgba(233, 236, 239, 0.1);
24911
  color: #dadfe4;
24912
  border-color: rgba(233, 236, 239, 0.2);
24913
}
16848 stevensc 24914
 
16825 efrain 24915
.alert-light .alert-link {
24916
  color: #dadfe4;
24917
}
16848 stevensc 24918
 
16825 efrain 24919
.alert-light svg {
24920
  width: 19px;
24921
  height: 19px;
24922
  margin-right: 0.5rem;
24923
}
16848 stevensc 24924
 
16825 efrain 24925
.alert-light i {
24926
  font-size: 19px;
24927
  margin-right: 0.5rem;
24928
}
24929
 
24930
.alert-fill-light {
24931
  --bs-alert-color: #fff;
24932
  --bs-alert-bg: #e9ecef;
24933
  --bs-alert-border-color: #e9ecef;
24934
}
16848 stevensc 24935
 
16825 efrain 24936
.alert-fill-light .alert-link {
24937
  color: #cccccc;
24938
}
16848 stevensc 24939
 
16825 efrain 24940
.alert-fill-light.alert-fill-light {
24941
  color: #7987a1;
24942
}
24943
 
24944
.alert-dark {
24945
  background-color: rgba(6, 12, 23, 0.1);
24946
  color: #010103;
24947
  border-color: rgba(6, 12, 23, 0.2);
24948
}
16848 stevensc 24949
 
16825 efrain 24950
.alert-dark .alert-link {
24951
  color: #010103;
24952
}
16848 stevensc 24953
 
16825 efrain 24954
.alert-dark svg {
24955
  width: 19px;
24956
  height: 19px;
24957
  margin-right: 0.5rem;
24958
}
16848 stevensc 24959
 
16825 efrain 24960
.alert-dark i {
24961
  font-size: 19px;
24962
  margin-right: 0.5rem;
24963
}
24964
 
24965
.alert-fill-dark {
24966
  --bs-alert-color: #fff;
24967
  --bs-alert-bg: #060c17;
24968
  --bs-alert-border-color: #060c17;
24969
}
16848 stevensc 24970
 
16825 efrain 24971
.alert-fill-dark .alert-link {
24972
  color: #cccccc;
24973
}
16848 stevensc 24974
 
16825 efrain 24975
.alert-fill-dark.alert-fill-light {
24976
  color: #7987a1;
24977
}
24978
 
16848 stevensc 24979
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24980
  content: "-" !important;
24981
}
16848 stevensc 24982
 
24983
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24984
  content: "•" !important;
24985
}
16848 stevensc 24986
 
24987
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24988
  content: ">" !important;
24989
}
24990
 
24991
/* Buttons */
16848 stevensc 24992
.btn i,
24993
.wizard>.actions a i,
24994
.wizard>.actions a:active i,
24995
.wizard>.actions a:hover i,
24996
div.tox .tox-button i,
24997
.swal2-popup .swal2-actions button i,
24998
.fc .fc-button-primary i {
16825 efrain 24999
  font-size: 1rem;
25000
}
16848 stevensc 25001
 
25002
.btn.btn-rounded,
25003
.wizard>.actions a.btn-rounded,
25004
div.tox .btn-rounded.tox-button,
25005
.swal2-popup .swal2-actions button.btn-rounded,
25006
.fc .btn-rounded.fc-button-primary {
16825 efrain 25007
  border-radius: 50px;
25008
}
16848 stevensc 25009
 
25010
.btn.btn-xs,
25011
.wizard>.actions a.btn-xs,
25012
div.tox .btn-xs.tox-button,
25013
.swal2-popup .swal2-actions button.btn-xs,
25014
.fc .btn-xs.fc-button-primary {
16825 efrain 25015
  padding: 0.313rem 0.8rem;
25016
  font-size: 0.75rem;
25017
}
16848 stevensc 25018
 
25019
.btn.btn-icon,
25020
.wizard>.actions a.btn-icon,
25021
div.tox .btn-icon.tox-button,
25022
.swal2-popup .swal2-actions button.btn-icon,
25023
.fc .btn-icon.fc-button-primary {
16825 efrain 25024
  width: 38px;
25025
  height: 38px;
25026
  padding: 0;
25027
  display: inline-flex;
25028
  align-items: center;
25029
  justify-content: center;
25030
}
16848 stevensc 25031
 
25032
.btn.btn-icon svg,
25033
.wizard>.actions a.btn-icon svg,
25034
div.tox .btn-icon.tox-button svg,
25035
.swal2-popup .swal2-actions button.btn-icon svg,
25036
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25037
  height: 18px;
25038
}
16848 stevensc 25039
 
25040
.btn.btn-icon.btn-xs,
25041
.wizard>.actions a.btn-icon.btn-xs,
25042
div.tox .btn-icon.btn-xs.tox-button,
25043
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25044
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25045
  width: 30px;
25046
  height: 30px;
25047
}
16848 stevensc 25048
 
25049
.btn.btn-icon.btn-xs svg,
25050
.wizard>.actions a.btn-icon.btn-xs svg,
25051
div.tox .btn-icon.btn-xs.tox-button svg,
25052
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25053
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25054
  height: 14px;
25055
}
16848 stevensc 25056
 
25057
.btn.btn-icon.btn-sm,
25058
.wizard>.actions a.btn-icon.btn-sm,
25059
div.tox .btn-icon.btn-sm.tox-button,
25060
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25061
.fc .btn-icon.fc-button-primary,
25062
.btn-group-sm>.btn.btn-icon,
25063
.wizard>.actions .btn-group-sm>a.btn-icon,
25064
div.tox .btn-group-sm>.btn-icon.tox-button,
25065
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25066
  width: 36px;
25067
  height: 36px;
25068
}
16848 stevensc 25069
 
25070
.btn.btn-icon.btn-sm svg,
25071
.wizard>.actions a.btn-icon.btn-sm svg,
25072
div.tox .btn-icon.btn-sm.tox-button svg,
25073
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25074
.fc .btn-icon.fc-button-primary svg,
25075
.btn-group-sm>.btn.btn-icon svg,
25076
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25077
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25078
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25079
  height: 15px;
25080
}
16848 stevensc 25081
 
25082
.btn.btn-icon.btn-lg,
25083
.wizard>.actions a.btn-icon.btn-lg,
25084
div.tox .btn-icon.btn-lg.tox-button,
25085
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25086
.fc .btn-icon.btn-lg.fc-button-primary,
25087
.btn-group-lg>.btn.btn-icon,
25088
.wizard>.actions .btn-group-lg>a.btn-icon,
25089
div.tox .btn-group-lg>.btn-icon.tox-button,
25090
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25091
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25092
  width: 42px;
25093
  height: 42px;
25094
}
16848 stevensc 25095
 
25096
.btn.btn-icon.btn-lg svg,
25097
.wizard>.actions a.btn-icon.btn-lg svg,
25098
div.tox .btn-icon.btn-lg.tox-button svg,
25099
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25100
.fc .btn-icon.btn-lg.fc-button-primary svg,
25101
.btn-group-lg>.btn.btn-icon svg,
25102
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25103
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25104
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25105
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25106
  height: 18px;
25107
}
16848 stevensc 25108
 
25109
.btn.btn-icon-text .btn-icon-prepend,
25110
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25111
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25112
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25113
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25114
  margin-right: 0.5rem;
25115
}
16848 stevensc 25116
 
25117
.btn.btn-icon-text .btn-icon-append,
25118
.wizard>.actions a.btn-icon-text .btn-icon-append,
25119
div.tox .btn-icon-text.tox-button .btn-icon-append,
25120
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25121
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25122
  margin-left: 0.5rem;
25123
}
16848 stevensc 25124
 
25125
.btn.btn-icon-text .btn-icon-prepend,
25126
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25127
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25128
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25129
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25130
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25131
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25132
div.tox .btn-icon-text.tox-button .btn-icon-append,
25133
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25134
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25135
  width: 18px;
25136
  height: 18px;
25137
}
16848 stevensc 25138
 
25139
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25140
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25141
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25142
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25143
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25144
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25145
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25146
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25147
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25148
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25149
  width: 14px;
25150
  height: 14px;
25151
}
16848 stevensc 25152
 
25153
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25154
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25155
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25156
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25157
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25158
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25159
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25160
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25161
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25162
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25163
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25164
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25165
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25166
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25167
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25168
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25169
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25170
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25171
  width: 15px;
25172
  height: 15px;
25173
}
16848 stevensc 25174
 
25175
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25176
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25177
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25178
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25179
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25180
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25181
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25182
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25183
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25184
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25185
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25186
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25187
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25188
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25189
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25190
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25191
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25192
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25193
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25194
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25195
  width: 18px;
25196
  height: 18px;
25197
}
25198
 
25199
.btn-facebook {
25200
  background: #3b5998;
25201
  color: #fff;
25202
}
16848 stevensc 25203
 
25204
.btn-facebook:hover,
25205
.btn-facebook:focus {
16825 efrain 25206
  background: #2d4373;
25207
  color: #fff;
25208
}
16848 stevensc 25209
 
16825 efrain 25210
.btn-facebook.btn-social-icon-text {
25211
  padding: 0 1.5rem 0 0;
25212
  background: #4c70ba;
25213
}
16848 stevensc 25214
 
16825 efrain 25215
.btn-facebook.btn-social-icon-text i {
25216
  background: #3b5998;
25217
  padding: 0.75rem;
25218
  display: inline-block;
25219
  margin-right: 1.5rem;
25220
}
25221
 
25222
.btn-outline-facebook {
25223
  border: 1px solid #3b5998;
25224
  color: #3b5998;
25225
}
16848 stevensc 25226
 
16825 efrain 25227
.btn-outline-facebook:hover {
25228
  background: #3b5998;
25229
  color: #fff;
25230
}
25231
 
25232
.btn-twitter {
25233
  background: #1da1f2;
25234
  color: #fff;
25235
}
16848 stevensc 25236
 
25237
.btn-twitter:hover,
25238
.btn-twitter:focus {
16825 efrain 25239
  background: #0c85d0;
25240
  color: #fff;
25241
}
16848 stevensc 25242
 
16825 efrain 25243
.btn-twitter.btn-social-icon-text {
25244
  padding: 0 1.5rem 0 0;
25245
  background: #4db5f5;
25246
}
16848 stevensc 25247
 
16825 efrain 25248
.btn-twitter.btn-social-icon-text i {
25249
  background: #1da1f2;
25250
  padding: 0.75rem;
25251
  display: inline-block;
25252
  margin-right: 1.5rem;
25253
}
25254
 
25255
.btn-outline-twitter {
25256
  border: 1px solid #1da1f2;
25257
  color: #1da1f2;
25258
}
16848 stevensc 25259
 
16825 efrain 25260
.btn-outline-twitter:hover {
25261
  background: #1da1f2;
25262
  color: #fff;
25263
}
25264
 
25265
.btn-google {
25266
  background: #dc4e41;
25267
  color: #fff;
25268
}
16848 stevensc 25269
 
25270
.btn-google:hover,
25271
.btn-google:focus {
16825 efrain 25272
  background: #c63224;
25273
  color: #fff;
25274
}
16848 stevensc 25275
 
16825 efrain 25276
.btn-google.btn-social-icon-text {
25277
  padding: 0 1.5rem 0 0;
25278
  background: #e4766c;
25279
}
16848 stevensc 25280
 
16825 efrain 25281
.btn-google.btn-social-icon-text i {
25282
  background: #dc4e41;
25283
  padding: 0.75rem;
25284
  display: inline-block;
25285
  margin-right: 1.5rem;
25286
}
25287
 
25288
.btn-outline-google {
25289
  border: 1px solid #dc4e41;
25290
  color: #dc4e41;
25291
}
16848 stevensc 25292
 
16825 efrain 25293
.btn-outline-google:hover {
25294
  background: #dc4e41;
25295
  color: #fff;
25296
}
25297
 
25298
.btn-youtube {
25299
  background: #f00;
25300
  color: #fff;
25301
}
16848 stevensc 25302
 
25303
.btn-youtube:hover,
25304
.btn-youtube:focus {
16825 efrain 25305
  background: #cc0000;
25306
  color: #fff;
25307
}
16848 stevensc 25308
 
16825 efrain 25309
.btn-youtube.btn-social-icon-text {
25310
  padding: 0 1.5rem 0 0;
25311
  background: #ff3333;
25312
}
16848 stevensc 25313
 
16825 efrain 25314
.btn-youtube.btn-social-icon-text i {
25315
  background: #f00;
25316
  padding: 0.75rem;
25317
  display: inline-block;
25318
  margin-right: 1.5rem;
25319
}
25320
 
25321
.btn-outline-youtube {
25322
  border: 1px solid #f00;
25323
  color: #f00;
25324
}
16848 stevensc 25325
 
16825 efrain 25326
.btn-outline-youtube:hover {
25327
  background: #f00;
25328
  color: #fff;
25329
}
25330
 
25331
.btn-vimeo {
25332
  background: #1ab7ea;
25333
  color: #fff;
25334
}
16848 stevensc 25335
 
25336
.btn-vimeo:hover,
25337
.btn-vimeo:focus {
16825 efrain 25338
  background: #1295bf;
25339
  color: #fff;
25340
}
16848 stevensc 25341
 
16825 efrain 25342
.btn-vimeo.btn-social-icon-text {
25343
  padding: 0 1.5rem 0 0;
25344
  background: #49c6ee;
25345
}
16848 stevensc 25346
 
16825 efrain 25347
.btn-vimeo.btn-social-icon-text i {
25348
  background: #1ab7ea;
25349
  padding: 0.75rem;
25350
  display: inline-block;
25351
  margin-right: 1.5rem;
25352
}
25353
 
25354
.btn-outline-vimeo {
25355
  border: 1px solid #1ab7ea;
25356
  color: #1ab7ea;
25357
}
16848 stevensc 25358
 
16825 efrain 25359
.btn-outline-vimeo:hover {
25360
  background: #1ab7ea;
25361
  color: #fff;
25362
}
25363
 
25364
.btn-dribbble {
25365
  background: #ea4c89;
25366
  color: #fff;
25367
}
16848 stevensc 25368
 
25369
.btn-dribbble:hover,
25370
.btn-dribbble:focus {
16825 efrain 25371
  background: #e51e6b;
25372
  color: #fff;
25373
}
16848 stevensc 25374
 
16825 efrain 25375
.btn-dribbble.btn-social-icon-text {
25376
  padding: 0 1.5rem 0 0;
25377
  background: #ef7aa7;
25378
}
16848 stevensc 25379
 
16825 efrain 25380
.btn-dribbble.btn-social-icon-text i {
25381
  background: #ea4c89;
25382
  padding: 0.75rem;
25383
  display: inline-block;
25384
  margin-right: 1.5rem;
25385
}
25386
 
25387
.btn-outline-dribbble {
25388
  border: 1px solid #ea4c89;
25389
  color: #ea4c89;
25390
}
16848 stevensc 25391
 
16825 efrain 25392
.btn-outline-dribbble:hover {
25393
  background: #ea4c89;
25394
  color: #fff;
25395
}
25396
 
25397
.btn-github {
25398
  background: #181717;
25399
  color: #fff;
25400
}
16848 stevensc 25401
 
25402
.btn-github:hover,
25403
.btn-github:focus {
16825 efrain 25404
  background: black;
25405
  color: #fff;
25406
}
16848 stevensc 25407
 
16825 efrain 25408
.btn-github.btn-social-icon-text {
25409
  padding: 0 1.5rem 0 0;
25410
  background: #323030;
25411
}
16848 stevensc 25412
 
16825 efrain 25413
.btn-github.btn-social-icon-text i {
25414
  background: #181717;
25415
  padding: 0.75rem;
25416
  display: inline-block;
25417
  margin-right: 1.5rem;
25418
}
25419
 
25420
.btn-outline-github {
25421
  border: 1px solid #181717;
25422
  color: #181717;
25423
}
16848 stevensc 25424
 
16825 efrain 25425
.btn-outline-github:hover {
25426
  background: #181717;
25427
  color: #fff;
25428
}
25429
 
25430
.btn-instagram {
25431
  background: #e4405f;
25432
  color: #fff;
25433
}
16848 stevensc 25434
 
25435
.btn-instagram:hover,
25436
.btn-instagram:focus {
16825 efrain 25437
  background: #d31e40;
25438
  color: #fff;
25439
}
16848 stevensc 25440
 
16825 efrain 25441
.btn-instagram.btn-social-icon-text {
25442
  padding: 0 1.5rem 0 0;
25443
  background: #ea6d84;
25444
}
16848 stevensc 25445
 
16825 efrain 25446
.btn-instagram.btn-social-icon-text i {
25447
  background: #e4405f;
25448
  padding: 0.75rem;
25449
  display: inline-block;
25450
  margin-right: 1.5rem;
25451
}
25452
 
25453
.btn-outline-instagram {
25454
  border: 1px solid #e4405f;
25455
  color: #e4405f;
25456
}
16848 stevensc 25457
 
16825 efrain 25458
.btn-outline-instagram:hover {
25459
  background: #e4405f;
25460
  color: #fff;
25461
}
25462
 
25463
.btn-pinterest {
25464
  background: #bd081c;
25465
  color: #fff;
25466
}
16848 stevensc 25467
 
25468
.btn-pinterest:hover,
25469
.btn-pinterest:focus {
16825 efrain 25470
  background: #8c0615;
25471
  color: #fff;
25472
}
16848 stevensc 25473
 
16825 efrain 25474
.btn-pinterest.btn-social-icon-text {
25475
  padding: 0 1.5rem 0 0;
25476
  background: #ee0a23;
25477
}
16848 stevensc 25478
 
16825 efrain 25479
.btn-pinterest.btn-social-icon-text i {
25480
  background: #bd081c;
25481
  padding: 0.75rem;
25482
  display: inline-block;
25483
  margin-right: 1.5rem;
25484
}
25485
 
25486
.btn-outline-pinterest {
25487
  border: 1px solid #bd081c;
25488
  color: #bd081c;
25489
}
16848 stevensc 25490
 
16825 efrain 25491
.btn-outline-pinterest:hover {
25492
  background: #bd081c;
25493
  color: #fff;
25494
}
25495
 
25496
.btn-flickr {
25497
  background: #0063dc;
25498
  color: #fff;
25499
}
16848 stevensc 25500
 
25501
.btn-flickr:hover,
25502
.btn-flickr:focus {
16825 efrain 25503
  background: #004ca9;
25504
  color: #fff;
25505
}
16848 stevensc 25506
 
16825 efrain 25507
.btn-flickr.btn-social-icon-text {
25508
  padding: 0 1.5rem 0 0;
25509
  background: #107cff;
25510
}
16848 stevensc 25511
 
16825 efrain 25512
.btn-flickr.btn-social-icon-text i {
25513
  background: #0063dc;
25514
  padding: 0.75rem;
25515
  display: inline-block;
25516
  margin-right: 1.5rem;
25517
}
25518
 
25519
.btn-outline-flickr {
25520
  border: 1px solid #0063dc;
25521
  color: #0063dc;
25522
}
16848 stevensc 25523
 
16825 efrain 25524
.btn-outline-flickr:hover {
25525
  background: #0063dc;
25526
  color: #fff;
25527
}
25528
 
25529
.btn-bitbucket {
25530
  background: #0052cc;
25531
  color: #fff;
25532
}
16848 stevensc 25533
 
25534
.btn-bitbucket:hover,
25535
.btn-bitbucket:focus {
16825 efrain 25536
  background: #003e99;
25537
  color: #fff;
25538
}
16848 stevensc 25539
 
16825 efrain 25540
.btn-bitbucket.btn-social-icon-text {
25541
  padding: 0 1.5rem 0 0;
25542
  background: #0067ff;
25543
}
16848 stevensc 25544
 
16825 efrain 25545
.btn-bitbucket.btn-social-icon-text i {
25546
  background: #0052cc;
25547
  padding: 0.75rem;
25548
  display: inline-block;
25549
  margin-right: 1.5rem;
25550
}
25551
 
25552
.btn-outline-bitbucket {
25553
  border: 1px solid #0052cc;
25554
  color: #0052cc;
25555
}
16848 stevensc 25556
 
16825 efrain 25557
.btn-outline-bitbucket:hover {
25558
  background: #0052cc;
25559
  color: #fff;
25560
}
25561
 
25562
.btn-linkedin {
25563
  background: #0077b5;
25564
  color: #fff;
25565
}
16848 stevensc 25566
 
25567
.btn-linkedin:hover,
25568
.btn-linkedin:focus {
16825 efrain 25569
  background: #005582;
25570
  color: #fff;
25571
}
16848 stevensc 25572
 
16825 efrain 25573
.btn-linkedin.btn-social-icon-text {
25574
  padding: 0 1.5rem 0 0;
25575
  background: #0099e8;
25576
}
16848 stevensc 25577
 
16825 efrain 25578
.btn-linkedin.btn-social-icon-text i {
25579
  background: #0077b5;
25580
  padding: 0.75rem;
25581
  display: inline-block;
25582
  margin-right: 1.5rem;
25583
}
25584
 
25585
.btn-outline-linkedin {
25586
  border: 1px solid #0077b5;
25587
  color: #0077b5;
25588
}
16848 stevensc 25589
 
16825 efrain 25590
.btn-outline-linkedin:hover {
25591
  background: #0077b5;
25592
  color: #fff;
25593
}
25594
 
25595
.btn-inverse-primary {
25596
  background-color: rgba(101, 113, 255, 0.2);
25597
  background-image: none;
25598
  border-color: rgba(101, 113, 255, 0);
25599
}
16848 stevensc 25600
 
16825 efrain 25601
.btn-inverse-primary:not(.btn-inverse-light) {
25602
  color: #6571ff;
25603
}
16848 stevensc 25604
 
25605
.btn-inverse-primary:hover,
25606
.btn-inverse-primary.active,
25607
.btn-inverse-primary:active,
25608
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25609
  background-color: rgba(101, 113, 255, 0.3);
25610
  border-color: rgba(101, 113, 255, 0);
25611
}
16848 stevensc 25612
 
25613
.btn-inverse-primary.focus,
25614
.btn-inverse-primary:focus {
16825 efrain 25615
  background-color: rgba(101, 113, 255, 0.3);
25616
  border-color: transparent;
25617
}
16848 stevensc 25618
 
25619
.btn-inverse-primary.disabled,
25620
.btn-inverse-primary:disabled {
16825 efrain 25621
  color: #6571ff;
25622
  background-color: transparent;
25623
}
25624
 
25625
.btn-inverse-secondary {
25626
  background-color: rgba(121, 135, 161, 0.2);
25627
  background-image: none;
25628
  border-color: rgba(121, 135, 161, 0);
25629
}
16848 stevensc 25630
 
16825 efrain 25631
.btn-inverse-secondary:not(.btn-inverse-light) {
25632
  color: #7987a1;
25633
}
16848 stevensc 25634
 
25635
.btn-inverse-secondary:hover,
25636
.btn-inverse-secondary.active,
25637
.btn-inverse-secondary:active,
25638
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25639
  background-color: rgba(121, 135, 161, 0.3);
25640
  border-color: rgba(121, 135, 161, 0);
25641
}
16848 stevensc 25642
 
25643
.btn-inverse-secondary.focus,
25644
.btn-inverse-secondary:focus {
16825 efrain 25645
  background-color: rgba(121, 135, 161, 0.3);
25646
  border-color: transparent;
25647
}
16848 stevensc 25648
 
25649
.btn-inverse-secondary.disabled,
25650
.btn-inverse-secondary:disabled {
16825 efrain 25651
  color: #7987a1;
25652
  background-color: transparent;
25653
}
25654
 
25655
.btn-inverse-success {
25656
  background-color: rgba(5, 163, 74, 0.2);
25657
  background-image: none;
25658
  border-color: rgba(5, 163, 74, 0);
25659
}
16848 stevensc 25660
 
16825 efrain 25661
.btn-inverse-success:not(.btn-inverse-light) {
25662
  color: #05a34a;
25663
}
16848 stevensc 25664
 
25665
.btn-inverse-success:hover,
25666
.btn-inverse-success.active,
25667
.btn-inverse-success:active,
25668
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25669
  background-color: rgba(5, 163, 74, 0.3);
25670
  border-color: rgba(5, 163, 74, 0);
25671
}
16848 stevensc 25672
 
25673
.btn-inverse-success.focus,
25674
.btn-inverse-success:focus {
16825 efrain 25675
  background-color: rgba(5, 163, 74, 0.3);
25676
  border-color: transparent;
25677
}
16848 stevensc 25678
 
25679
.btn-inverse-success.disabled,
25680
.btn-inverse-success:disabled {
16825 efrain 25681
  color: #05a34a;
25682
  background-color: transparent;
25683
}
25684
 
25685
.btn-inverse-info {
25686
  background-color: rgba(102, 209, 209, 0.2);
25687
  background-image: none;
25688
  border-color: rgba(102, 209, 209, 0);
25689
}
16848 stevensc 25690
 
16825 efrain 25691
.btn-inverse-info:not(.btn-inverse-light) {
25692
  color: #66d1d1;
25693
}
16848 stevensc 25694
 
25695
.btn-inverse-info:hover,
25696
.btn-inverse-info.active,
25697
.btn-inverse-info:active,
25698
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25699
  background-color: rgba(102, 209, 209, 0.3);
25700
  border-color: rgba(102, 209, 209, 0);
25701
}
16848 stevensc 25702
 
25703
.btn-inverse-info.focus,
25704
.btn-inverse-info:focus {
16825 efrain 25705
  background-color: rgba(102, 209, 209, 0.3);
25706
  border-color: transparent;
25707
}
16848 stevensc 25708
 
25709
.btn-inverse-info.disabled,
25710
.btn-inverse-info:disabled {
16825 efrain 25711
  color: #66d1d1;
25712
  background-color: transparent;
25713
}
25714
 
25715
.btn-inverse-warning {
25716
  background-color: rgba(251, 188, 6, 0.2);
25717
  background-image: none;
25718
  border-color: rgba(251, 188, 6, 0);
25719
}
16848 stevensc 25720
 
16825 efrain 25721
.btn-inverse-warning:not(.btn-inverse-light) {
25722
  color: #fbbc06;
25723
}
16848 stevensc 25724
 
25725
.btn-inverse-warning:hover,
25726
.btn-inverse-warning.active,
25727
.btn-inverse-warning:active,
25728
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25729
  background-color: rgba(251, 188, 6, 0.3);
25730
  border-color: rgba(251, 188, 6, 0);
25731
}
16848 stevensc 25732
 
25733
.btn-inverse-warning.focus,
25734
.btn-inverse-warning:focus {
16825 efrain 25735
  background-color: rgba(251, 188, 6, 0.3);
25736
  border-color: transparent;
25737
}
16848 stevensc 25738
 
25739
.btn-inverse-warning.disabled,
25740
.btn-inverse-warning:disabled {
16825 efrain 25741
  color: #fbbc06;
25742
  background-color: transparent;
25743
}
25744
 
25745
.btn-inverse-danger {
25746
  background-color: rgba(255, 51, 102, 0.2);
25747
  background-image: none;
25748
  border-color: rgba(255, 51, 102, 0);
25749
}
16848 stevensc 25750
 
16825 efrain 25751
.btn-inverse-danger:not(.btn-inverse-light) {
25752
  color: #ff3366;
25753
}
16848 stevensc 25754
 
25755
.btn-inverse-danger:hover,
25756
.btn-inverse-danger.active,
25757
.btn-inverse-danger:active,
25758
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25759
  background-color: rgba(255, 51, 102, 0.3);
25760
  border-color: rgba(255, 51, 102, 0);
25761
}
16848 stevensc 25762
 
25763
.btn-inverse-danger.focus,
25764
.btn-inverse-danger:focus {
16825 efrain 25765
  background-color: rgba(255, 51, 102, 0.3);
25766
  border-color: transparent;
25767
}
16848 stevensc 25768
 
25769
.btn-inverse-danger.disabled,
25770
.btn-inverse-danger:disabled {
16825 efrain 25771
  color: #ff3366;
25772
  background-color: transparent;
25773
}
25774
 
25775
.btn-inverse-light {
25776
  background-color: rgba(233, 236, 239, 0.2);
25777
  background-image: none;
25778
  border-color: rgba(233, 236, 239, 0);
25779
}
16848 stevensc 25780
 
16825 efrain 25781
.btn-inverse-light:not(.btn-inverse-light) {
25782
  color: #e9ecef;
25783
}
16848 stevensc 25784
 
25785
.btn-inverse-light:hover,
25786
.btn-inverse-light.active,
25787
.btn-inverse-light:active,
25788
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25789
  background-color: rgba(233, 236, 239, 0.3);
25790
  border-color: rgba(233, 236, 239, 0);
25791
}
16848 stevensc 25792
 
25793
.btn-inverse-light.focus,
25794
.btn-inverse-light:focus {
16825 efrain 25795
  background-color: rgba(233, 236, 239, 0.3);
25796
  border-color: transparent;
25797
}
16848 stevensc 25798
 
25799
.btn-inverse-light.disabled,
25800
.btn-inverse-light:disabled {
16825 efrain 25801
  color: #e9ecef;
25802
  background-color: transparent;
25803
}
25804
 
25805
.btn-inverse-dark {
25806
  background-color: rgba(6, 12, 23, 0.2);
25807
  background-image: none;
25808
  border-color: rgba(6, 12, 23, 0);
25809
}
16848 stevensc 25810
 
16825 efrain 25811
.btn-inverse-dark:not(.btn-inverse-light) {
25812
  color: #060c17;
25813
}
16848 stevensc 25814
 
25815
.btn-inverse-dark:hover,
25816
.btn-inverse-dark.active,
25817
.btn-inverse-dark:active,
25818
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25819
  background-color: rgba(6, 12, 23, 0.3);
25820
  border-color: rgba(6, 12, 23, 0);
25821
}
16848 stevensc 25822
 
25823
.btn-inverse-dark.focus,
25824
.btn-inverse-dark:focus {
16825 efrain 25825
  background-color: rgba(6, 12, 23, 0.3);
25826
  border-color: transparent;
25827
}
16848 stevensc 25828
 
25829
.btn-inverse-dark.disabled,
25830
.btn-inverse-dark:disabled {
16825 efrain 25831
  color: #060c17;
25832
  background-color: transparent;
25833
}
25834
 
25835
.card {
25836
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25837
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25838
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25839
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25840
}
16848 stevensc 25841
 
25842
.card .card-body+.card-body {
16825 efrain 25843
  padding-top: 1rem;
25844
}
16848 stevensc 25845
 
16825 efrain 25846
.card .card-title {
25847
  text-transform: uppercase;
25848
  font-size: 0.875rem;
25849
  font-weight: 500;
25850
}
25851
 
25852
.card-group {
25853
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25854
}
16848 stevensc 25855
 
16825 efrain 25856
.card-group .card {
25857
  box-shadow: none;
25858
}
25859
 
25860
.dropdown .dropdown-toggle:after,
25861
.btn-group .dropdown-toggle:after {
25862
  border-top: 0;
25863
  border-right: 0;
25864
  border-left: 0;
25865
  border-bottom: 0;
25866
  font: normal normal normal 24px/1 "feather";
25867
  content: "\e842";
25868
  width: auto;
25869
  height: auto;
25870
  vertical-align: middle;
25871
  line-height: 0.625rem;
25872
  font-size: 0.875rem;
25873
}
16848 stevensc 25874
 
16825 efrain 25875
.dropdown.dropup .dropdown-toggle::after,
25876
.btn-group.dropup .dropdown-toggle::after {
25877
  content: "\e845";
25878
}
16848 stevensc 25879
 
16825 efrain 25880
.dropdown.dropstart .dropdown-toggle::before,
25881
.btn-group.dropstart .dropdown-toggle::before {
25882
  border: 0;
25883
  font: normal normal normal 24px/1 "feather";
25884
  content: "\e843";
25885
  width: auto;
25886
  height: auto;
25887
  vertical-align: middle;
25888
  line-height: 0.625rem;
25889
  font-size: 0.875rem;
25890
}
16848 stevensc 25891
 
16825 efrain 25892
.dropdown.dropend .dropdown-toggle::after,
25893
.btn-group.dropend .dropdown-toggle::after {
25894
  content: "\e844";
25895
}
25896
 
16848 stevensc 25897
.dropdown-menu,
25898
.tt-menu {
16825 efrain 25899
  padding: 0.35rem;
25900
  margin-top: 0;
25901
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25902
}
25903
 
16848 stevensc 25904
.dropdown-item,
25905
.tt-menu .tt-suggestion {
16825 efrain 25906
  font-size: 0.812rem;
25907
  padding: 0.25rem 0.875rem;
25908
  border-radius: 2px;
25909
}
16848 stevensc 25910
 
25911
.dropdown-item i,
25912
.tt-menu .tt-suggestion i,
25913
.dropdown-item svg,
25914
.tt-menu .tt-suggestion svg {
16825 efrain 25915
  color: #7987a1;
25916
}
16848 stevensc 25917
 
25918
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25919
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25920
  background-color: rgba(101, 113, 255, 0.1);
25921
}
16848 stevensc 25922
 
25923
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25924
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25925
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25926
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25927
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25928
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25929
  color: #6571ff;
25930
}
16848 stevensc 25931
 
25932
.dropdown-item:active i,
25933
.tt-menu .tt-suggestion:active i,
25934
.dropdown-item:active svg,
25935
.tt-menu .tt-suggestion:active svg,
25936
.dropdown-item.active i,
25937
.tt-menu .active.tt-suggestion i,
25938
.dropdown-item.active svg,
25939
.tt-menu .active.tt-suggestion svg {
16825 efrain 25940
  color: #fff;
25941
}
25942
 
25943
.form-control-xs,
25944
.form-select-xs {
25945
  padding: 0.313rem 0.8rem;
25946
  font-size: 0.75rem;
25947
}
25948
 
16848 stevensc 25949
.form-control-xs+.input-group-text {
16825 efrain 25950
  padding-top: 0.313rem;
25951
  padding-bottom: 0.313rem;
25952
}
25953
 
25954
.form-check-input {
25955
  margin-top: 0.13em;
25956
}
25957
 
25958
.input-group-text svg {
25959
  width: 18px;
25960
  height: 18px;
25961
}
25962
 
25963
[type=tel],
25964
[type=url],
25965
[type=email],
25966
[type=number] {
25967
  direction: ltr;
25968
}
25969
 
25970
.icons-list {
25971
  border-left: 1px solid #e9ecef;
25972
  border-top: 1px solid #e9ecef;
25973
}
16848 stevensc 25974
 
25975
.icons-list>div {
16825 efrain 25976
  border-bottom: 1px solid #e9ecef;
25977
  border-right: 1px solid #e9ecef;
25978
  background: #f9fafb;
25979
  display: flex;
25980
  align-items: center;
25981
  padding: 15px 20px;
25982
  font-weight: 400;
25983
  transition: all 0.3s ease-in-out;
25984
}
16848 stevensc 25985
 
25986
.icons-list>div i {
16825 efrain 25987
  display: inline-block;
25988
  font-size: 20px;
25989
  text-align: left;
25990
  margin-right: 12px;
25991
  color: #7987a1;
25992
  transition: all 0.3s ease-in-out;
25993
}
16848 stevensc 25994
 
25995
.icons-list>div svg {
16825 efrain 25996
  width: 20px;
25997
  margin-right: 12px;
25998
  color: #7987a1;
25999
  transition: all 0.3s ease-in-out;
26000
}
16848 stevensc 26001
 
26002
.icons-list>div:hover {
16825 efrain 26003
  cursor: text;
26004
}
16848 stevensc 26005
 
26006
.icons-list>div:hover i,
26007
.icons-list>div:hover svg {
16825 efrain 26008
  transform: scale(1.3);
26009
  color: #6571ff;
26010
}
26011
 
26012
.nav.nav-tabs .nav-item .nav-link {
26013
  border-color: #e9ecef #e9ecef #dee2e6;
26014
  color: #000;
26015
  background-color: #f8f9fa;
26016
  cursor: pointer;
26017
}
16848 stevensc 26018
 
16825 efrain 26019
.nav.nav-tabs .nav-item .nav-link.active {
26020
  border-color: #dee2e6 #dee2e6 #fff;
26021
  color: #6571ff;
26022
  background: #fff;
26023
}
16848 stevensc 26024
 
16825 efrain 26025
.nav.nav-tabs .nav-item .nav-link.disabled {
26026
  background-color: transparent;
26027
  color: #7987a1;
26028
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26029
}
16848 stevensc 26030
 
16825 efrain 26031
.nav.nav-tabs.nav-tabs-vertical {
26032
  border-bottom: 0;
26033
}
16848 stevensc 26034
 
16825 efrain 26035
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26036
  width: 100%;
26037
  border: 1px solid transparent;
26038
  border-radius: 0;
26039
  border-color: #e9ecef #e9ecef #dee2e6;
26040
  color: #000;
26041
  background-color: #f8f9fa;
26042
}
16848 stevensc 26043
 
16825 efrain 26044
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26045
  border-radius: 0.25rem 0 0 0;
26046
}
16848 stevensc 26047
 
16825 efrain 26048
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26049
  border-radius: 0 0 0 0.25rem;
26050
}
16848 stevensc 26051
 
16825 efrain 26052
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26053
  background-color: #fff;
26054
  color: #6571ff;
26055
  border-right-color: transparent;
26056
}
16848 stevensc 26057
 
16825 efrain 26058
.nav.nav-tabs.nav-tabs-line .nav-link {
26059
  border: 0;
26060
  background-color: transparent;
26061
}
16848 stevensc 26062
 
16825 efrain 26063
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26064
  border-bottom: 2px solid #6571ff;
26065
}
26066
 
26067
.tab-content.tab-content-vertical {
26068
  height: 100%;
26069
}
26070
 
26071
.pagination .page-item .page-link svg {
26072
  width: 18px;
26073
  height: 18px;
26074
}
16848 stevensc 26075
 
16825 efrain 26076
.pagination.pagination-separated .page-item {
26077
  margin-left: 2px;
26078
  margin-right: 2px;
26079
}
16848 stevensc 26080
 
16825 efrain 26081
.pagination.pagination-separated .page-item:first-child {
26082
  margin-left: 0;
26083
}
16848 stevensc 26084
 
16825 efrain 26085
.pagination.pagination-separated .page-item:last-child {
26086
  margin-right: 0;
26087
}
16848 stevensc 26088
 
16825 efrain 26089
.pagination.pagination-rounded .page-item {
26090
  margin-right: 2px;
26091
  margin-left: 2px;
26092
}
16848 stevensc 26093
 
16825 efrain 26094
.pagination.pagination-rounded .page-item .page-link {
26095
  border-radius: 50px;
26096
}
26097
 
26098
.table {
26099
  margin-bottom: 0;
26100
}
16848 stevensc 26101
 
26102
.table> :not(:last-child)> :last-child>* {
16825 efrain 26103
  border-bottom-color: inherit;
26104
}
16848 stevensc 26105
 
16825 efrain 26106
.table thead th {
26107
  border-top: 0;
26108
  font-weight: 500;
26109
  font-size: 12px;
26110
  text-transform: uppercase;
26111
  color: #7987a1;
26112
}
16848 stevensc 26113
 
16825 efrain 26114
.table thead th i {
26115
  margin-left: 0.325rem;
26116
}
16848 stevensc 26117
 
16825 efrain 26118
.table th,
26119
.table td {
26120
  white-space: nowrap;
26121
}
16848 stevensc 26122
 
16825 efrain 26123
.table td img {
26124
  width: 36px;
26125
  height: 36px;
26126
  border-radius: 100%;
26127
}
26128
 
26129
.timeline {
26130
  border-left: 3px solid #6571ff;
26131
  border-bottom-right-radius: 0.25rem;
26132
  border-top-right-radius: 0.25rem;
26133
  background: rgba(101, 113, 255, 0.2);
26134
  margin: 0 auto;
26135
  position: relative;
26136
  padding: 50px;
26137
  list-style: none;
26138
  max-width: 40%;
26139
}
16848 stevensc 26140
 
16825 efrain 26141
@media (max-width: 767px) {
26142
  .timeline {
26143
    max-width: 98%;
26144
    padding: 25px;
26145
  }
26146
}
16848 stevensc 26147
 
16825 efrain 26148
.timeline .event {
26149
  border-bottom: 1px dashed #e9ecef;
26150
  padding-bottom: 25px;
26151
  margin-bottom: 25px;
26152
  position: relative;
26153
}
16848 stevensc 26154
 
16825 efrain 26155
@media (max-width: 767px) {
26156
  .timeline .event {
26157
    padding-top: 30px;
26158
  }
26159
}
16848 stevensc 26160
 
16825 efrain 26161
.timeline .event .title {
26162
  font-weight: 500;
26163
  font-size: 1rem;
26164
  margin-bottom: 10px;
26165
}
16848 stevensc 26166
 
16825 efrain 26167
.timeline .event:last-of-type {
26168
  padding-bottom: 0;
26169
  margin-bottom: 0;
26170
  border: none;
26171
}
16848 stevensc 26172
 
26173
.timeline .event:before,
26174
.timeline .event:after {
16825 efrain 26175
  position: absolute;
26176
  display: block;
26177
  top: 0;
26178
}
16848 stevensc 26179
 
16825 efrain 26180
.timeline .event:before {
26181
  left: -207px;
26182
  content: attr(data-date);
26183
  text-align: right;
26184
  font-weight: 500;
26185
  font-size: 0.9em;
26186
  min-width: 120px;
26187
}
16848 stevensc 26188
 
16825 efrain 26189
@media (max-width: 767px) {
26190
  .timeline .event:before {
26191
    left: 0px;
26192
    text-align: left;
26193
  }
26194
}
16848 stevensc 26195
 
16825 efrain 26196
.timeline .event:after {
26197
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26198
  box-shadow: 0 0 0 3px #6571ff;
26199
  left: -55.8px;
26200
  background: #fff;
26201
  border-radius: 50%;
26202
  height: 9px;
26203
  width: 9px;
26204
  content: "";
26205
  top: 5px;
26206
}
16848 stevensc 26207
 
16825 efrain 26208
@media (max-width: 767px) {
26209
  .timeline .event:after {
26210
    left: -31.8px;
26211
  }
26212
}
26213
 
26214
.chat-wrapper {
26215
  height: calc(100vh - 60px - 102px);
26216
}
16848 stevensc 26217
 
16825 efrain 26218
@media (max-width: 991px) {
26219
  .chat-wrapper {
26220
    min-height: 100%;
26221
  }
26222
}
16848 stevensc 26223
 
16825 efrain 26224
@media (max-width: 991px) {
26225
  .chat-wrapper {
26226
    height: 100%;
26227
  }
26228
}
16848 stevensc 26229
 
16825 efrain 26230
@media (min-width: 992px) {
26231
  .chat-wrapper .chat-aside {
26232
    padding-right: 23px;
26233
  }
26234
}
16848 stevensc 26235
 
16825 efrain 26236
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26237
  position: relative;
26238
  max-height: calc(100vh - 385px);
26239
}
16848 stevensc 26240
 
26241
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26242
  padding-top: 11px;
26243
  padding-bottom: 11px;
26244
}
16848 stevensc 26245
 
16825 efrain 26246
@media (max-width: 991px) {
26247
  .chat-wrapper .chat-content {
26248
    position: absolute;
26249
    background: #fff;
26250
    left: 0;
26251
    bottom: -1px;
26252
    top: 0;
26253
    right: 0;
26254
    display: none;
26255
  }
16848 stevensc 26256
 
16825 efrain 26257
  .chat-wrapper .chat-content.show {
26258
    display: block;
26259
  }
26260
}
16848 stevensc 26261
 
16825 efrain 26262
.chat-wrapper .chat-content .chat-header {
26263
  padding: 0 10px;
26264
}
16848 stevensc 26265
 
16825 efrain 26266
.chat-wrapper .chat-content .chat-body {
26267
  position: relative;
26268
  max-height: calc(100vh - 340px);
26269
  margin-top: 20px;
26270
  margin-bottom: 20px;
26271
}
16848 stevensc 26272
 
16825 efrain 26273
@media (max-width: 767px) {
26274
  .chat-wrapper .chat-content .chat-body {
26275
    max-height: calc(100vh - 315px);
26276
  }
26277
}
16848 stevensc 26278
 
16825 efrain 26279
@media (max-width: 991px) {
26280
  .chat-wrapper .chat-content .chat-body {
26281
    max-height: calc(100vh - 342px);
26282
  }
26283
}
16848 stevensc 26284
 
16825 efrain 26285
.chat-wrapper .chat-content .chat-body .messages {
26286
  padding: 0 10px;
26287
  list-style-type: none;
26288
}
16848 stevensc 26289
 
16825 efrain 26290
.chat-wrapper .chat-content .chat-body .messages .message-item {
26291
  display: flex;
26292
  max-width: 80%;
26293
  margin-bottom: 20px;
26294
}
16848 stevensc 26295
 
16825 efrain 26296
@media (max-width: 767px) {
26297
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26298
    max-width: 95%;
26299
  }
26300
}
16848 stevensc 26301
 
16825 efrain 26302
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26303
  position: relative;
26304
  padding: 7px 15px;
26305
  margin-bottom: 4px;
26306
  width: -webkit-fit-content;
26307
  width: -moz-fit-content;
26308
  width: fit-content;
26309
}
16848 stevensc 26310
 
16825 efrain 26311
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26312
  font-size: 12px;
26313
  color: #7987a1;
26314
}
16848 stevensc 26315
 
16825 efrain 26316
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26317
  order: 1;
26318
  margin-right: 15px;
26319
}
16848 stevensc 26320
 
16825 efrain 26321
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26322
  order: 2;
26323
}
16848 stevensc 26324
 
16825 efrain 26325
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26326
  background: rgba(101, 113, 255, 0.1);
26327
  border-radius: 0 5px 5px;
26328
}
16848 stevensc 26329
 
16825 efrain 26330
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26331
  content: "";
26332
  width: 0;
26333
  height: 0;
26334
  position: absolute;
26335
  left: -10px;
26336
  top: 0;
26337
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26338
  border-bottom: 5px solid transparent;
26339
  border-left: 5px solid transparent;
26340
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26341
}
16848 stevensc 26342
 
16825 efrain 26343
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26344
  margin-left: auto;
26345
}
16848 stevensc 26346
 
16825 efrain 26347
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26348
  order: 2;
26349
  margin-left: 15px;
26350
}
16848 stevensc 26351
 
16825 efrain 26352
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26353
  order: 1;
26354
  margin-left: auto;
26355
}
16848 stevensc 26356
 
16825 efrain 26357
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26358
  background: rgba(102, 209, 209, 0.1);
26359
  border-radius: 5px 0 5px 5px;
26360
  margin-left: auto;
26361
}
16848 stevensc 26362
 
16825 efrain 26363
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26364
  content: "";
26365
  width: 0;
26366
  height: 0;
26367
  position: absolute;
26368
  right: -10px;
26369
  top: 0;
26370
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26371
  border-bottom: 5px solid transparent;
26372
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26373
  border-right: 5px solid transparent;
26374
}
16848 stevensc 26375
 
16825 efrain 26376
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26377
  text-align: right;
26378
  display: block;
26379
}
16848 stevensc 26380
 
16825 efrain 26381
.chat-wrapper figure {
26382
  position: relative;
26383
}
16848 stevensc 26384
 
16825 efrain 26385
.chat-wrapper figure .status {
26386
  width: 11px;
26387
  height: 11px;
26388
  background: #7987a1;
26389
  position: absolute;
26390
  bottom: 0px;
26391
  right: -2px;
26392
  border-radius: 50%;
26393
  border: 2px solid #fff;
26394
}
16848 stevensc 26395
 
16825 efrain 26396
.chat-wrapper figure .status.online {
26397
  background: #05a34a;
26398
}
16848 stevensc 26399
 
16825 efrain 26400
.chat-wrapper figure .status.offline {
26401
  background: #7987a1;
26402
}
26403
 
26404
.auth-page .auth-side-wrapper {
26405
  width: 100%;
26406
  height: 100%;
26407
  background-image: url(https://via.placeholder.com/219x452);
26408
  background-size: cover;
26409
}
26410
 
26411
.email-aside-nav.collapse {
26412
  display: block;
26413
}
16848 stevensc 26414
 
16825 efrain 26415
@media (max-width: 991px) {
26416
  .email-aside-nav.collapse {
26417
    display: none;
26418
  }
26419
}
16848 stevensc 26420
 
16825 efrain 26421
@media (max-width: 991px) {
26422
  .email-aside-nav.collapse.show {
26423
    display: block;
26424
  }
26425
}
16848 stevensc 26426
 
16825 efrain 26427
.email-aside-nav .nav-item {
26428
  border-radius: 0.2rem;
26429
}
16848 stevensc 26430
 
16825 efrain 26431
.email-aside-nav .nav-item .nav-link {
26432
  color: #000;
26433
}
16848 stevensc 26434
 
16825 efrain 26435
.email-aside-nav .nav-item .nav-link svg {
26436
  color: #7987a1;
26437
}
16848 stevensc 26438
 
26439
.email-aside-nav .nav-item.active,
26440
.email-aside-nav .nav-item:hover {
16825 efrain 26441
  background: rgba(101, 113, 255, 0.1);
26442
}
16848 stevensc 26443
 
26444
.email-aside-nav .nav-item.active .nav-link,
26445
.email-aside-nav .nav-item.active .nav-link svg,
26446
.email-aside-nav .nav-item:hover .nav-link,
26447
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26448
  color: #6571ff;
26449
}
26450
 
26451
.email-list-item {
26452
  display: flex;
26453
  align-items: center;
26454
  border-bottom: 1px solid #e9ecef;
26455
  padding: 10px 20px;
26456
  cursor: pointer;
26457
}
16848 stevensc 26458
 
16825 efrain 26459
.email-list-item:hover {
26460
  background: rgba(101, 113, 255, 0.08);
26461
}
16848 stevensc 26462
 
16825 efrain 26463
.email-list-item:last-child {
26464
  margin-bottom: 5px;
26465
}
16848 stevensc 26466
 
16825 efrain 26467
.email-list-item .email-list-actions {
26468
  width: 40px;
26469
  vertical-align: top;
26470
  display: table-cell;
26471
}
16848 stevensc 26472
 
16825 efrain 26473
.email-list-item .email-list-actions .form-check {
26474
  margin-bottom: 0;
26475
}
16848 stevensc 26476
 
16825 efrain 26477
.email-list-item .email-list-actions .favorite {
26478
  display: block;
26479
  padding-left: 1px;
26480
  line-height: 15px;
26481
}
16848 stevensc 26482
 
16825 efrain 26483
.email-list-item .email-list-actions .favorite span svg {
26484
  width: 14px;
26485
  color: #7987a1;
26486
}
16848 stevensc 26487
 
16825 efrain 26488
.email-list-item .email-list-actions .favorite:hover span {
26489
  color: #8d8d8d;
26490
}
16848 stevensc 26491
 
16825 efrain 26492
.email-list-item .email-list-actions .favorite.active span svg {
26493
  color: #fbbc06;
26494
}
16848 stevensc 26495
 
16825 efrain 26496
.email-list-item .email-list-detail {
26497
  width: calc(100% - 40px);
26498
  display: flex;
26499
  justify-content: space-between;
26500
  align-items: center;
26501
  flex-grow: 1;
26502
}
16848 stevensc 26503
 
16825 efrain 26504
.email-list-item .email-list-detail .content {
26505
  overflow: hidden;
26506
}
16848 stevensc 26507
 
16825 efrain 26508
.email-list-item .email-list-detail .content .from {
26509
  display: block;
26510
  margin: 0 0 1px 0;
26511
  color: #000;
26512
}
16848 stevensc 26513
 
16825 efrain 26514
.email-list-item .email-list-detail .content .msg {
26515
  width: 97%;
26516
  color: #7987a1;
26517
  font-size: 0.8rem;
26518
  overflow: hidden;
26519
  text-overflow: ellipsis;
26520
  white-space: nowrap;
26521
}
16848 stevensc 26522
 
16825 efrain 26523
.email-list-item .email-list-detail .date {
26524
  color: #000;
26525
  white-space: nowrap;
26526
}
16848 stevensc 26527
 
16825 efrain 26528
.email-list-item .email-list-detail .date .icon svg {
26529
  width: 14px;
26530
  margin-right: 7px;
26531
  color: #3d405c;
26532
}
16848 stevensc 26533
 
16825 efrain 26534
.email-list-item.email-list-item--unread {
26535
  background-color: rgba(101, 113, 255, 0.09);
26536
}
16848 stevensc 26537
 
16825 efrain 26538
.email-list-item.email-list-item--unread .content .from {
26539
  font-weight: 500;
26540
}
16848 stevensc 26541
 
16825 efrain 26542
.email-list-item.email-list-item--unread .content .msg {
26543
  font-weight: 700;
26544
}
26545
 
26546
.ace_editor {
26547
  border-radius: 0.25rem;
26548
  margin: auto;
26549
  height: 300px;
26550
  width: 100%;
26551
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26552
}
16848 stevensc 26553
 
16825 efrain 26554
.ace_editor .ace_content {
26555
  font-size: 0.875rem;
26556
}
26557
 
26558
div.apexcharts-canvas .apexcharts-menu {
26559
  background: #fff !important;
26560
  color: #000;
26561
  border-color: #e9ecef;
26562
}
16848 stevensc 26563
 
16825 efrain 26564
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26565
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26566
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26567
div.apexcharts-canvas .apexcharts-reset-icon svg,
26568
div.apexcharts-canvas .apexcharts-pan-icon svg,
26569
div.apexcharts-canvas .apexcharts-selection-icon svg,
26570
div.apexcharts-canvas .apexcharts-menu-icon svg,
26571
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26572
  fill: #7987a1;
26573
}
16848 stevensc 26574
 
16825 efrain 26575
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26576
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26577
  display: flex;
26578
  align-items: center;
26579
}
16848 stevensc 26580
 
16825 efrain 26581
div.apexcharts-canvas .apexcharts-legend-marker {
26582
  margin-right: 3px;
26583
}
16848 stevensc 26584
 
16825 efrain 26585
div.apexcharts-canvas .apexcharts-tooltip {
26586
  background: rgba(255, 255, 255, 0.8);
26587
  color: #000;
26588
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26589
  border-radius: 0.25rem;
26590
  border: 1px solid #f2f4f9;
26591
}
16848 stevensc 26592
 
16825 efrain 26593
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26594
  border-color: #e9ecef;
26595
  background-color: #fff;
26596
}
16848 stevensc 26597
 
16825 efrain 26598
div.apexcharts-canvas .apexcharts-tooltip * {
26599
  font-family: "Roboto", Helvetica, sans-serif !important;
26600
}
16848 stevensc 26601
 
16825 efrain 26602
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26603
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26604
  padding: 0 10px;
26605
}
16848 stevensc 26606
 
16825 efrain 26607
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26608
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26609
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26610
  margin-left: 0;
26611
}
16848 stevensc 26612
 
16825 efrain 26613
div.apexcharts-canvas .apexcharts-tooltip-title {
26614
  margin-bottom: 0;
26615
}
16848 stevensc 26616
 
16825 efrain 26617
div.apexcharts-canvas .apexcharts-xaxistooltip,
26618
div.apexcharts-canvas .apexcharts-yaxistooltip {
26619
  background: #fff;
26620
  color: #000;
26621
  border-color: #f2f4f9;
26622
}
16848 stevensc 26623
 
16825 efrain 26624
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26625
  border-bottom-color: #f2f4f9;
26626
}
16848 stevensc 26627
 
16825 efrain 26628
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26629
  border-bottom-color: rgba(255, 255, 255, 0.8);
26630
}
16848 stevensc 26631
 
16825 efrain 26632
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26633
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26634
  border-left-color: #f2f4f9;
26635
}
16848 stevensc 26636
 
16825 efrain 26637
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26638
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26639
  border-left-color: rgba(255, 255, 255, 0.8);
26640
}
26641
 
26642
@media (max-width: 767px) {
26643
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26644
    text-align: left;
26645
  }
26646
}
16848 stevensc 26647
 
16825 efrain 26648
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26649
  margin-left: 10px;
26650
  margin-right: 10px;
26651
}
16848 stevensc 26652
 
16825 efrain 26653
@media (max-width: 767px) {
26654
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26655
    text-align: left;
26656
    margin-left: -19px;
26657
  }
26658
}
26659
 
26660
.dropify-wrapper {
26661
  border: 1px solid #e9ecef;
26662
  border-radius: 0.25rem;
26663
}
16848 stevensc 26664
 
16825 efrain 26665
.dropify-wrapper .dropify-message span.file-icon {
26666
  font-size: 0.875rem;
26667
  color: #7987a1;
26668
}
16848 stevensc 26669
 
16825 efrain 26670
.dropify-wrapper .dropify-message span.file-icon::before {
26671
  font-family: feather;
26672
  content: "\e8e3";
26673
  font-size: 24px;
26674
}
26675
 
26676
.dropzone {
26677
  overflow: auto;
26678
  border: 1px solid #e9ecef;
26679
  border-radius: 0.25rem;
26680
  max-height: 200px;
26681
  padding: 0;
26682
}
16848 stevensc 26683
 
16825 efrain 26684
@media (min-width: 1400px) {
26685
  .dropzone {
26686
    min-height: 200px;
26687
  }
26688
}
16848 stevensc 26689
 
16825 efrain 26690
.dropzone.dz-clickable .dz-message {
26691
  margin-top: 65px;
26692
}
16848 stevensc 26693
 
26694
.dropzone .dz-preview.dz-image-preview .dz-image,
26695
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26696
  border-radius: 0.25rem;
26697
}
26698
 
16848 stevensc 26699
.form-control.flatpickr-input,
26700
.flatpickr-input.typeahead.tt-input,
26701
.flatpickr-input.typeahead.tt-hint,
26702
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26703
  background-color: #fff;
26704
}
26705
 
26706
.flatpickr-day.selected,
26707
.flatpickr-day.startRange,
26708
.flatpickr-day.endRange,
26709
.flatpickr-day.selected.inRange,
26710
.flatpickr-day.startRange.inRange,
26711
.flatpickr-day.endRange.inRange,
26712
.flatpickr-day.selected:focus,
26713
.flatpickr-day.startRange:focus,
26714
.flatpickr-day.endRange:focus,
26715
.flatpickr-day.selected:hover,
26716
.flatpickr-day.startRange:hover,
26717
.flatpickr-day.endRange:hover,
26718
.flatpickr-day.selected.prevMonthDay,
26719
.flatpickr-day.startRange.prevMonthDay,
26720
.flatpickr-day.endRange.prevMonthDay,
26721
.flatpickr-day.selected.nextMonthDay,
26722
.flatpickr-day.startRange.nextMonthDay,
26723
.flatpickr-day.endRange.nextMonthDay {
26724
  background: #6571ff;
26725
  border-color: #6571ff;
26726
}
26727
 
26728
.flatpickr-months {
26729
  padding: 0 1rem;
26730
  padding-top: 0.5rem;
26731
}
26732
 
26733
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26734
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26735
  left: 11px;
26736
  right: auto !important;
26737
  top: 8px;
26738
}
26739
 
26740
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26741
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26742
  right: 11px;
26743
  left: auto !important;
26744
  top: 8px;
26745
}
26746
 
26747
.flatpickr-months .flatpickr-prev-month:hover svg,
26748
.flatpickr-months .flatpickr-next-month:hover svg {
26749
  fill: #6571ff;
26750
}
26751
 
26752
.flatpickr-months .flatpickr-month {
26753
  height: 42px;
26754
}
26755
 
26756
.flatpickr-current-month .flatpickr-monthDropdown-months {
26757
  font-size: 1rem;
26758
  border-radius: 0.25rem;
26759
  padding: 0.3rem 0.5rem;
26760
}
26761
 
26762
.flatpickr-weekdays {
26763
  padding: 0 10px;
26764
}
26765
 
26766
.dayContainer {
26767
  padding: 0 10px 10px;
26768
}
26769
 
26770
.fc {
26771
  --fc-button-active-bg-color: #6571ff;
26772
  --fc-button-active-border-color: #6571ff;
26773
}
16848 stevensc 26774
 
16825 efrain 26775
.fc .fc-button .fc-icon {
26776
  font-size: 1.2 em;
26777
}
16848 stevensc 26778
 
16825 efrain 26779
.fc .fc-button-primary:focus,
26780
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26781
.fc .fc-button-primary:not(:disabled):active:focus {
26782
  box-shadow: none;
26783
}
16848 stevensc 26784
 
16825 efrain 26785
.fc .fc-button-primary:disabled {
26786
  border-color: #6571ff;
26787
}
16848 stevensc 26788
 
16825 efrain 26789
@media (max-width: 767px) {
26790
  .fc .fc-toolbar {
26791
    flex-direction: column;
26792
  }
16848 stevensc 26793
 
16825 efrain 26794
  .fc .fc-toolbar .fc-toolbar-chunk {
26795
    margin-bottom: 12px;
26796
  }
26797
}
16848 stevensc 26798
 
16825 efrain 26799
.fc .fc-daygrid-day-number,
26800
.fc .fc-col-header-cell-cushion {
26801
  color: #000;
26802
}
16848 stevensc 26803
 
16825 efrain 26804
.fc .fc-daygrid-event {
26805
  padding: 4px;
26806
}
16848 stevensc 26807
 
16825 efrain 26808
.fc .fc-daygrid-day.fc-day-today {
26809
  background-color: rgba(101, 113, 255, 0.2);
26810
}
16848 stevensc 26811
 
16825 efrain 26812
.fc .fc-list-event:hover td {
26813
  background-color: rgba(101, 113, 255, 0.2);
26814
}
16848 stevensc 26815
 
16825 efrain 26816
.fc .fc-list-day-text,
26817
.fc .fc-list-day-side-text {
26818
  color: #000;
26819
}
26820
 
26821
.fc-theme-standard td,
26822
.fc-theme-standard th,
26823
.fc-theme-standard .fc-scrollgrid {
26824
  border-color: #e9ecef;
26825
}
26826
 
26827
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26828
.fc-timegrid-event.fc-event-mirror,
26829
.fc-timegrid-more-link {
26830
  box-shadow: none;
26831
}
26832
 
26833
.fc-theme-standard .fc-popover {
26834
  background-color: #fff;
26835
  border-color: #f2f4f9;
26836
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26837
}
16848 stevensc 26838
 
16825 efrain 26839
.fc-theme-standard .fc-popover .fc-popover-header {
26840
  background-color: #7987a1;
26841
}
26842
 
26843
.fc-theme-standard .fc-list-day-cushion {
26844
  background-color: #fff;
26845
}
26846
 
26847
.fc-theme-standard .fc-list {
26848
  border-color: #e9ecef;
26849
}
26850
 
26851
.fc-event {
26852
  margin-bottom: 10px;
26853
  padding: 8px;
26854
  border-radius: 2px;
26855
  background: rgba(101, 113, 255, 0.2);
26856
  border: 0;
26857
  border-left: 3px solid #6571ff;
26858
  color: #000;
26859
  font-weight: 500;
26860
}
26861
 
26862
.fc-h-event .fc-event-main {
26863
  color: #000;
26864
}
26865
 
26866
.flot-chart-wrapper .flot-chart {
26867
  width: 100%;
26868
  position: relative;
26869
  max-width: none;
26870
  height: 400px;
26871
}
16848 stevensc 26872
 
16825 efrain 26873
@media (max-width: 767px) {
26874
  .flot-chart-wrapper {
26875
    height: 200px;
26876
    min-height: 200px;
26877
  }
16848 stevensc 26878
 
16825 efrain 26879
  .flot-chart-wrapper .flot-chart {
26880
    height: 100%;
26881
  }
26882
}
26883
 
16848 stevensc 26884
.flot-text .flot-x-axis>div,
16825 efrain 26885
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26886
.flot-text .flot-y-axis>div,
16825 efrain 26887
.flot-text .flot-y-axis .flot-tick-label {
26888
  color: #000;
26889
}
26890
 
26891
.peity-custom svg {
26892
  margin-right: 10px;
26893
}
26894
 
26895
.ps__thumb-x {
26896
  background-color: #d9d9d9;
26897
  height: 4px;
26898
}
26899
 
26900
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26901
.ps__rail-x:focus>.ps__thumb-x,
26902
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26903
  background-color: #b3b3b3;
26904
  height: 6px;
26905
}
26906
 
26907
.ps__rail-x {
26908
  height: 10px;
26909
}
26910
 
26911
.ps__thumb-y {
26912
  background-color: #d9d9d9;
26913
  width: 4px;
26914
  /*rtl:raw:
26915
   left: 2px !important;
26916
  right: auto !important;
26917
   */
26918
}
26919
 
26920
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26921
.ps__rail-y:focus>.ps__thumb-y,
26922
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26923
  background-color: #b3b3b3;
26924
  width: 6px;
26925
}
26926
 
26927
.ps__rail-y {
26928
  width: 10px;
26929
  /*rtl:raw:
26930
   left: 0 !important;
26931
  right: auto !important;
26932
   */
26933
}
26934
 
26935
.ps .ps__rail-x.ps--clicking,
26936
.ps .ps__rail-x:focus,
26937
.ps .ps__rail-x:hover,
26938
.ps .ps__rail-y.ps--clicking,
26939
.ps .ps__rail-y:focus,
26940
.ps .ps__rail-y:hover {
26941
  background-color: #e9ecef;
26942
}
26943
 
26944
.swal2-popup {
26945
  font-size: 0.875rem;
26946
}
16848 stevensc 26947
 
16825 efrain 26948
.swal2-popup .swal2-title {
26949
  font-size: 25px;
26950
  line-height: 1;
26951
  font-weight: 500;
26952
  color: #000;
26953
  margin-bottom: 0;
26954
}
16848 stevensc 26955
 
16825 efrain 26956
.swal2-popup .swal2-html-container {
26957
  font-size: 0.875rem;
26958
  color: #7987a1;
26959
  font-weight: initial;
26960
  margin-top: 11px;
26961
  text-decoration: none;
26962
}
16848 stevensc 26963
 
16825 efrain 26964
.swal2-popup .swal2-actions button svg {
26965
  width: 16px;
26966
  height: 16px;
26967
}
16848 stevensc 26968
 
16825 efrain 26969
.swal2-popup .swal2-close {
26970
  font-size: 22px;
26971
}
16848 stevensc 26972
 
16825 efrain 26973
.swal2-popup .swal2-close:focus {
26974
  box-shadow: none;
26975
}
16848 stevensc 26976
 
16825 efrain 26977
.swal2-popup .swal2-timer-progress-bar {
26978
  background: #7987a1;
26979
}
26980
 
26981
.select2-container--default .select2-selection--single,
26982
.select2-container--default .select2-selection--multiple {
26983
  border: 1px solid #e9ecef;
26984
  border-radius: 0.25rem;
26985
}
16848 stevensc 26986
 
26987
.select2-container--focus.select2-container--default .select2-selection--single,
26988
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 26989
  border: 1px solid #cbd1db;
26990
}
26991
 
26992
.select2-dropdown {
26993
  border: 1px solid #cbd1db;
26994
  border-radius: 0.25rem;
26995
}
26996
 
26997
.select2-container--default .select2-results__option--highlighted[aria-selected] {
26998
  background-color: #6571ff;
26999
}
27000
 
27001
.select2-container .select2-selection--single,
27002
.select2-container .select2-selection--multiple {
27003
  height: auto;
27004
}
27005
 
27006
.select2-container--default .select2-selection--single .select2-selection__rendered {
27007
  line-height: 1.5;
27008
  padding: 0.469rem 0.8rem;
27009
}
16848 stevensc 27010
 
16825 efrain 27011
.select2-container--default .select2-selection--single .select2-selection__arrow {
27012
  height: 100%;
27013
}
16848 stevensc 27014
 
16825 efrain 27015
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27016
  left: 0;
27017
}
27018
 
27019
.select2-container--default .select2-selection--multiple {
27020
  min-height: 38px;
27021
}
16848 stevensc 27022
 
16825 efrain 27023
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27024
  padding: 0 6px;
27025
}
16848 stevensc 27026
 
16825 efrain 27027
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27028
  background-color: #6571ff;
27029
  color: #fff;
27030
  border-color: #6571ff;
27031
  padding: 1px 8px;
27032
  border-radius: 0.15rem;
27033
  margin-top: 5px;
27034
}
16848 stevensc 27035
 
16825 efrain 27036
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27037
  color: #fff;
27038
  opacity: 0.5;
27039
}
27040
 
27041
.select2-container .select2-search--inline {
27042
  margin-top: 3px;
27043
}
27044
 
27045
.EasyMDEContainer .CodeMirror {
27046
  background: #fff;
27047
  border: 1px solid #e9ecef;
27048
  color: #000;
27049
  border-bottom-left-radius: 0;
27050
  border-bottom-right-radius: 0;
27051
}
27052
 
27053
.editor-toolbar {
27054
  border: 1px solid #e9ecef;
27055
  border-bottom: 0;
27056
  border-radius: 0.25rem 0.25rem 0 0;
27057
}
16848 stevensc 27058
 
27059
.editor-toolbar,
27060
.editor-toolbar:hover {
16825 efrain 27061
  opacity: 1;
27062
}
16848 stevensc 27063
 
16825 efrain 27064
.editor-toolbar button {
27065
  color: rgba(0, 0, 0, 0.7) !important;
27066
}
16848 stevensc 27067
 
16825 efrain 27068
.editor-toolbar button:hover {
27069
  background: #e9ecef;
27070
  border: none;
27071
}
16848 stevensc 27072
 
16825 efrain 27073
.editor-toolbar i.separator {
27074
  border-left: 1px solid #e9ecef;
27075
  border-right: 1px solid #e9ecef;
27076
}
27077
 
27078
.CodeMirror-fullscreen,
27079
.editor-toolbar.fullscreen,
27080
.editor-preview-side {
27081
  z-index: 999;
27082
}
27083
 
27084
.editor-preview-side {
27085
  border-color: #e9ecef;
27086
}
27087
 
16848 stevensc 27088
.editor-toolbar button.active,
27089
.editor-toolbar button:hover {
16825 efrain 27090
  background: #e9ecef;
27091
  border-color: transparent;
27092
}
27093
 
27094
.editor-statusbar {
27095
  padding: 0 10px;
27096
  border: 1px solid #e9ecef;
27097
  border-top-color: transparent;
27098
  border-bottom-left-radius: 0.25rem;
27099
  border-bottom-right-radius: 0.25rem;
27100
}
27101
 
27102
div.tagsinput {
27103
  padding: 6px 6px 1px;
27104
  border-color: #e9ecef;
27105
  border-radius: 0.25rem;
27106
}
16848 stevensc 27107
 
16825 efrain 27108
div.tagsinput span.tag {
27109
  background: #6571ff;
27110
  color: #fff;
27111
  border: 0;
27112
  padding: 3px 7px;
27113
  font-family: inherit;
27114
  border-radius: 0.15rem;
27115
  margin-bottom: 4px;
27116
  float: left;
27117
  /*rtl:raw:
27118
  margin-left: 0;
27119
  margin-right: 5px;
27120
  */
27121
}
16848 stevensc 27122
 
16825 efrain 27123
div.tagsinput span.tag a {
27124
  font-size: 13px;
27125
  font-weight: 500;
27126
  color: #fff;
27127
  opacity: 0.5;
27128
}
16848 stevensc 27129
 
16825 efrain 27130
div.tagsinput #tags_addTag {
27131
  float: left;
27132
  /*rtl:raw:
27133
  margin-right: 5px;
27134
  */
27135
}
16848 stevensc 27136
 
16825 efrain 27137
div.tagsinput input {
27138
  margin: 0;
27139
  padding: 1px;
27140
  border-radius: 0.25rem;
27141
}
27142
 
27143
.tox.tox-tinymce {
27144
  border: 1px solid #e9ecef;
27145
  border-radius: 0.25rem;
27146
}
16848 stevensc 27147
 
16825 efrain 27148
.tox.tox-tinymce .tox-menubar,
27149
.tox.tox-tinymce .tox-toolbar-overlord,
27150
.tox.tox-tinymce .tox-toolbar,
27151
.tox.tox-tinymce .tox-toolbar__overflow,
27152
.tox.tox-tinymce .tox-toolbar__primary {
27153
  background-color: #fff;
27154
  background-image: none;
27155
  border-bottom: 1px solid #e9ecef;
27156
}
16848 stevensc 27157
 
16825 efrain 27158
.tox.tox-tinymce .tox-toolbar-overlord {
27159
  border-bottom: none;
27160
}
16848 stevensc 27161
 
16825 efrain 27162
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27163
  padding: 0;
27164
  box-shadow: none;
27165
}
16848 stevensc 27166
 
16825 efrain 27167
.tox.tox-tinymce .tox-edit-area__iframe {
27168
  background-color: #fff;
27169
}
16848 stevensc 27170
 
16825 efrain 27171
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27172
  border-right-color: #e9ecef;
27173
  border-left-color: #e9ecef;
27174
}
16848 stevensc 27175
 
16825 efrain 27176
.tox.tox-tinymce .tox-statusbar {
27177
  background-color: #fff;
27178
  border-color: #e9ecef;
27179
  color: #7987a1;
27180
}
16848 stevensc 27181
 
16825 efrain 27182
.tox.tox-tinymce .tox-statusbar a,
27183
.tox.tox-tinymce .tox-statusbar__path-item,
27184
.tox.tox-tinymce .tox-statusbar__wordcount {
27185
  color: #7987a1;
27186
}
16848 stevensc 27187
 
16825 efrain 27188
.tox.tox-tinymce .tox-mbtn {
27189
  color: #000;
27190
}
16848 stevensc 27191
 
16825 efrain 27192
.tox.tox-tinymce .tox-tbtn {
27193
  color: rgba(0, 0, 0, 0.7);
27194
}
16848 stevensc 27195
 
16825 efrain 27196
.tox.tox-tinymce .tox-tbtn:hover {
27197
  background: #e9ecef;
27198
  color: #000;
27199
}
16848 stevensc 27200
 
16825 efrain 27201
.tox.tox-tinymce .tox-tbtn:hover svg {
27202
  fill: #000;
27203
}
16848 stevensc 27204
 
16825 efrain 27205
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27206
  color: #000;
27207
}
16848 stevensc 27208
 
16825 efrain 27209
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27210
  background: #e9ecef;
27211
  color: #000;
27212
}
16848 stevensc 27213
 
16825 efrain 27214
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27215
.tox.tox-tinymce .tox-mbtn--active {
27216
  background: #e9ecef;
27217
  color: #000;
27218
}
16848 stevensc 27219
 
16825 efrain 27220
.tox.tox-tinymce .tox-tbtn svg {
27221
  fill: rgba(0, 0, 0, 0.7);
27222
}
16848 stevensc 27223
 
16825 efrain 27224
.tox.tox-tinymce .tox-tbtn--disabled svg,
27225
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27226
.tox.tox-tinymce .tox-tbtn:disabled svg,
27227
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27228
  fill: #e9ecef;
27229
}
16848 stevensc 27230
 
16825 efrain 27231
.tox.tox-tinymce .tox-split-button:hover {
27232
  box-shadow: 0 0 0 1px #e9ecef inset;
27233
}
16848 stevensc 27234
 
16825 efrain 27235
.tox.tox-tinymce .tox-split-button:focus {
27236
  background: #e9ecef;
27237
}
16848 stevensc 27238
 
16825 efrain 27239
.tox.tox-tinymce .tox-tbtn--enabled,
27240
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27241
.tox.tox-tinymce .tox-tbtn:focus {
27242
  background: #e9ecef;
27243
}
27244
 
27245
div.tox .tox-menu {
27246
  background-color: #fff;
27247
  border-color: #f2f4f9;
27248
}
16848 stevensc 27249
 
16825 efrain 27250
div.tox .tox-collection__item {
27251
  color: #000;
27252
}
16848 stevensc 27253
 
16825 efrain 27254
div.tox .tox-collection--list .tox-collection__item--enabled {
27255
  background-color: #6571ff;
27256
  color: #fff;
27257
}
16848 stevensc 27258
 
16825 efrain 27259
div.tox .tox-collection--list .tox-collection__group {
27260
  border-color: #e9ecef;
27261
}
16848 stevensc 27262
 
16825 efrain 27263
div.tox .tox-collection--toolbar .tox-collection__item--active {
27264
  background-color: #e9ecef;
27265
}
16848 stevensc 27266
 
16825 efrain 27267
div.tox .tox-collection--list .tox-collection__item--active {
27268
  background-color: #e9ecef;
27269
}
16848 stevensc 27270
 
16825 efrain 27271
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27272
  color: #000;
27273
}
16848 stevensc 27274
 
16825 efrain 27275
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27276
  color: #000;
27277
}
16848 stevensc 27278
 
16825 efrain 27279
div.tox .tox-dialog-wrap__backdrop {
27280
  background-color: rgba(0, 0, 0, 0.75);
27281
}
16848 stevensc 27282
 
16825 efrain 27283
div.tox .tox-dialog,
27284
div.tox .tox-dialog__header,
27285
div.tox .tox-dialog__footer {
27286
  background-color: #fff;
27287
  border-color: #e9ecef;
27288
  color: #000;
27289
}
16848 stevensc 27290
 
16825 efrain 27291
div.tox .tox-button--secondary:hover:not(:disabled) {
27292
  background-color: #7987a1;
27293
  border-color: #7987a1;
27294
  color: #fff;
27295
}
16848 stevensc 27296
 
16825 efrain 27297
div.tox .tox-button--naked:hover:not(:disabled) {
27298
  background-color: transparent;
27299
  border-color: transparent;
27300
}
16848 stevensc 27301
 
16825 efrain 27302
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27303
  color: #333333;
27304
}
16848 stevensc 27305
 
16825 efrain 27306
div.tox .tox-listboxfield .tox-listbox--select,
27307
div.tox .tox-textarea,
27308
div.tox .tox-textfield,
27309
div.tox .tox-toolbar-textfield {
27310
  background-color: #fff;
27311
  border-color: #e9ecef;
27312
  color: #000;
27313
}
16848 stevensc 27314
 
16825 efrain 27315
div.tox .tox-listboxfield .tox-listbox--select:focus,
27316
div.tox .tox-textarea:focus,
27317
div.tox .tox-textfield:focus {
27318
  background-color: #fff;
27319
  border-color: #cbd1db;
27320
}
16848 stevensc 27321
 
16825 efrain 27322
div.tox .tox-dialog__table tbody tr {
27323
  border-color: #e9ecef;
27324
}
16848 stevensc 27325
 
16825 efrain 27326
div.tox .tox-dialog__body {
27327
  color: #000;
27328
}
27329
 
27330
.typeahead.tt-input,
27331
.typeahead.tt-hint {
27332
  background-color: #fff !important;
27333
  /*rtl:raw:
27334
  direction: rtl;
27335
  */
27336
}
27337
 
27338
.tt-menu .tt-suggestion {
27339
  cursor: pointer;
27340
}
27341
 
16848 stevensc 27342
.tabcontrol ul,
27343
.wizard ul {
16825 efrain 27344
  display: flex;
27345
}
16848 stevensc 27346
 
16825 efrain 27347
@media (max-width: 676px) {
16848 stevensc 27348
 
27349
  .tabcontrol ul,
27350
  .wizard ul {
16825 efrain 27351
    flex-wrap: wrap;
27352
  }
27353
}
27354
 
16848 stevensc 27355
.wizard>.steps>ul>li {
16825 efrain 27356
  width: auto;
27357
  display: flex;
27358
  flex-grow: 1;
27359
}
27360
 
16848 stevensc 27361
.wizard>.steps .disabled a,
27362
.wizard>.steps .disabled a:active,
27363
.wizard>.steps .disabled a:hover {
16825 efrain 27364
  background-color: #e9ecef;
27365
  color: #000;
27366
  border: 1px solid transparent;
27367
}
27368
 
16848 stevensc 27369
.wizard>.steps .current a,
27370
.wizard>.steps .current a:active,
27371
.wizard>.steps .current a:hover {
16825 efrain 27372
  background-color: #6571ff;
27373
  border: 1px solid transparent;
27374
}
27375
 
16848 stevensc 27376
.wizard>.steps a,
27377
.wizard>.steps a:active,
27378
.wizard>.steps a:hover {
16825 efrain 27379
  padding: 0.469rem 0.8rem;
27380
  border-radius: 0.25rem;
27381
  width: 100%;
27382
}
27383
 
16848 stevensc 27384
.wizard>.steps .done a,
27385
.wizard>.steps .done a:active,
27386
.wizard>.steps .done a:hover {
16825 efrain 27387
  background-color: rgba(101, 113, 255, 0.2);
27388
  color: #6571ff;
27389
  border: 1px solid #6571ff;
27390
}
27391
 
16848 stevensc 27392
.wizard>.steps ul li a,
27393
.wizard>.steps ul li a:active,
27394
.wizard>.steps ul li a:hover {
16825 efrain 27395
  margin: 0 0.5em 0.5em 0;
27396
}
16848 stevensc 27397
 
27398
.wizard>.steps ul li:last-child a,
27399
.wizard>.steps ul li:last-child a:active,
27400
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27401
  margin: 0 0 0.5em 0;
27402
}
27403
 
16848 stevensc 27404
.wizard>.steps .number {
16825 efrain 27405
  font-size: inherit;
27406
}
27407
 
16848 stevensc 27408
.wizard>.content {
16825 efrain 27409
  background: #fff;
27410
  border: 1px solid #e9ecef;
27411
  min-height: 23em;
27412
  overflow: auto;
27413
  margin: 0.5em 0;
27414
}
27415
 
27416
@media (max-width: 767px) {
16848 stevensc 27417
  .wizard>.content>.body {
16825 efrain 27418
    width: 90%;
27419
    height: 90%;
27420
    padding: 5%;
27421
  }
27422
}
27423
 
16848 stevensc 27424
.wizard>.actions .disabled a,
27425
.wizard>.actions .disabled a:active,
27426
.wizard>.actions .disabled a:hover {
16825 efrain 27427
  background: #e9ecef;
27428
  border-color: #e9ecef;
27429
  cursor: not-allowed;
27430
  color: #aeb7c5;
27431
}
27432
 
16848 stevensc 27433
.wizard>.actions .disabled a:focus {
16825 efrain 27434
  box-shadow: none;
27435
  color: #aeb7c5;
27436
}
27437
 
16848 stevensc 27438
.wizard>.actions>ul li {
16825 efrain 27439
  margin-right: 0;
27440
  margin-left: 0.7em;
27441
}
27442
 
16848 stevensc 27443
.wizard.vertical>.steps ul {
16825 efrain 27444
  flex-direction: column;
27445
}
27446
 
16848 stevensc 27447
.wizard.vertical>.content {
16825 efrain 27448
  margin: 0 0 0.5em 2%;
27449
  width: 68%;
27450
}
27451
 
16848 stevensc 27452
.wizard.vertical>.steps a,
27453
.wizard.vertical>.steps a:active,
27454
.wizard.vertical>.steps a:hover {
16825 efrain 27455
  margin: 0 0 0.5em 0;
27456
}
27457
 
16848 stevensc 27458
.wizard.vertical>.actions {
16825 efrain 27459
  margin: 0;
27460
  width: 100%;
27461
}
27462
 
16848 stevensc 27463
.wizard.vertical>.actions>ul>li {
16825 efrain 27464
  margin: 0 0 0 0.7em;
27465
}
16848 stevensc 27466
 
27467
.pac-container {
27468
  z-index: 1200;
27469
}
27470
 
16849 stevensc 27471
.feed-container {
27472
  background-color: var(--bg-color);
27473
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27474
  height: fit-content;
27475
  width: -moz-available;
27476
  width: -webkit-fill-available;
27477
  width: fill-available;
27478
  overflow: hidden;
27479
  position: relative;
27480
}
27481
 
27482
.feed-container span {
27483
  font-size: 0.9rem;
27484
}
27485
 
27486
.feed-container p {
27487
  color: var(--font-color);
27488
  font-size: 14px;
27489
  text-align: justify;
27490
  margin-bottom: 0.5rem;
27491
}
27492
 
27493
.feed-container h2 {
27494
  font-size: 1rem;
27495
}
27496
 
27497
.feed-header {
27498
  display: flex;
27499
  gap: 0.5rem;
27500
  padding: 10px 1rem;
27501
  align-items: center;
27502
  position: relative;
27503
}
27504
 
16851 stevensc 27505
.feed-info {
27506
  align-items: center;
27507
  display: inline-flex;
27508
  gap: 0.5rem;
27509
  width: fit-content;
27510
}
27511
 
16849 stevensc 27512
.feed_body {
27513
  padding: 10px 1rem;
27514
  display: flex;
27515
  flex-direction: column;
27516
}
27517
 
27518
.feed-actions {
27519
  display: flex;
16851 stevensc 27520
  justify-content: flex-end;
16849 stevensc 27521
  border-top: 1px solid rgb(211, 211, 211);
27522
  padding: 5px;
27523
}
27524
 
27525
.feed-actions>button {
27526
  align-items: center;
27527
  border-radius: var(--border-radius);
27528
  cursor: pointer;
27529
  display: inline-flex;
16851 stevensc 27530
  flex-direction: row;
27531
  gap: 0.5rem;
27532
  font-size: 1rem;
16849 stevensc 27533
  padding: 5px;
27534
  position: relative;
27535
}
27536
 
27537
.feed-actions>button:hover {
27538
  background-color: whitesmoke;
27539
}
27540
 
16851 stevensc 27541
.feed-actions>span,
27542
.feed-actions>svg {
27543
  color: var(--subtitle-color);
27544
  font-weight: 600;
27545
  font-size: .9rem;
27546
}
27547
 
16849 stevensc 27548
@media (max-width: 768px) {
27549
  .feed-container {
27550
    border-radius: var(--border-radius);
27551
  }
27552
 
16851 stevensc 27553
  .feed-actions>button {
27554
    font-size: 0.9rem;
27555
    flex-direction: column;
27556
    gap: 0;
16849 stevensc 27557
  }
27558
}
27559
 
16848 stevensc 27560
/*# sourceMappingURL=../maps/demo1/style.css.map */