Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16890 | Rev 16915 | 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
 
16887 stevensc 110
button,
111
button:active,
112
button:focus {
16869 stevensc 113
  margin: 0;
114
  padding: 0;
115
  background: transparent;
16874 stevensc 116
  outline: none;
16869 stevensc 117
  border: 0;
118
}
119
 
16868 stevensc 120
img {
121
  max-width: 100%;
122
}
123
 
16887 stevensc 124
*::-webkit-scrollbar {
125
  width: 6px !important;
126
  height: 6px !important;
127
}
128
 
129
*::-webkit-scrollbar-thumb {
130
  background-color: rgba(0, 0, 0, 0.2);
131
}
132
 
133
*::-webkit-scrollbar-track {
134
  background: rgba(255, 255, 255, 0.08);
135
}
136
 
137
*::-webkit-input-placeholder {
138
  color: #ccc;
139
  font-size: 15px;
140
}
141
 
142
h1,
143
h2,
144
h3,
145
h4,
146
h5,
147
h6 {
148
  color: var(--title-color);
149
}
150
 
151
i,
152
svg {
153
  color: var(--icons-color)
154
}
155
 
16888 stevensc 156
button i,
157
button svg {
158
  color: currentColor;
159
}
160
 
16848 stevensc 161
h6,
162
.h6,
163
h5,
164
.h5,
165
h4,
166
.h4,
167
h3,
168
.h3,
169
h2,
170
.h2,
171
h1,
172
.h1 {
16825 efrain 173
  margin-top: 0;
174
  margin-bottom: 0;
175
  font-weight: 500;
176
  line-height: 1.2;
177
}
178
 
16848 stevensc 179
h1,
180
.h1 {
16825 efrain 181
  font-size: calc(1.375rem + 1.5vw);
182
}
16848 stevensc 183
 
16825 efrain 184
@media (min-width: 1200px) {
16848 stevensc 185
 
186
  h1,
187
  .h1 {
16825 efrain 188
    font-size: 2.5rem;
189
  }
190
}
191
 
16848 stevensc 192
h2,
193
.h2 {
16825 efrain 194
  font-size: calc(1.325rem + 0.9vw);
195
}
16848 stevensc 196
 
16825 efrain 197
@media (min-width: 1200px) {
16848 stevensc 198
 
199
  h2,
200
  .h2 {
16825 efrain 201
    font-size: 2rem;
202
  }
203
}
204
 
16848 stevensc 205
h3,
206
.h3 {
16825 efrain 207
  font-size: calc(1.275rem + 0.3vw);
208
}
16848 stevensc 209
 
16825 efrain 210
@media (min-width: 1200px) {
16848 stevensc 211
 
212
  h3,
213
  .h3 {
16825 efrain 214
    font-size: 1.5rem;
215
  }
216
}
217
 
16848 stevensc 218
h4,
219
.h4 {
16825 efrain 220
  font-size: 1.25rem;
221
}
222
 
16848 stevensc 223
h5,
224
.h5 {
16825 efrain 225
  font-size: 1rem;
226
}
227
 
16848 stevensc 228
h6,
229
.h6 {
16825 efrain 230
  font-size: 0.875rem;
231
}
232
 
233
p {
234
  margin-top: 0;
235
  margin-bottom: 0;
236
}
237
 
238
abbr[title] {
239
  text-decoration: underline dotted;
240
  cursor: help;
241
  text-decoration-skip-ink: none;
242
}
243
 
244
address {
245
  margin-bottom: 1rem;
246
  font-style: normal;
247
  line-height: inherit;
248
}
249
 
250
ol,
251
ul {
16874 stevensc 252
  list-style: none;
16875 stevensc 253
  padding: 0;
16825 efrain 254
}
255
 
256
ol,
257
ul,
258
dl {
259
  margin-top: 0;
16874 stevensc 260
  margin-bottom: 0;
16825 efrain 261
}
262
 
263
ol ol,
264
ul ul,
265
ol ul,
266
ul ol {
267
  margin-bottom: 0;
268
}
269
 
270
dt {
271
  font-weight: 500;
272
}
273
 
274
dd {
275
  margin-bottom: 0.5rem;
276
  margin-left: 0;
277
}
278
 
279
blockquote {
280
  margin: 0 0 1rem;
281
}
282
 
283
b,
284
strong {
285
  font-weight: 700;
286
}
287
 
16848 stevensc 288
small,
289
.small {
16825 efrain 290
  font-size: 0.875em;
291
}
292
 
16848 stevensc 293
mark,
294
.mark {
16825 efrain 295
  padding: 0.1875em;
296
  background-color: var(--bs-highlight-bg);
297
}
298
 
299
sub,
300
sup {
301
  position: relative;
302
  font-size: 0.75em;
303
  line-height: 0;
304
  vertical-align: baseline;
305
}
306
 
307
sub {
308
  bottom: -0.25em;
309
}
310
 
311
sup {
312
  top: -0.5em;
313
}
314
 
315
a {
316
  color: var(--bs-link-color);
317
  text-decoration: none;
318
}
16848 stevensc 319
 
16825 efrain 320
a:hover {
321
  color: var(--bs-link-hover-color);
322
}
323
 
16848 stevensc 324
a:not([href]):not([class]),
325
a:not([href]):not([class]):hover {
16825 efrain 326
  color: inherit;
327
  text-decoration: none;
328
}
329
 
330
pre,
331
code,
332
kbd,
333
samp {
334
  font-family: var(--bs-font-monospace);
335
  font-size: 1em;
336
}
337
 
338
pre {
339
  display: block;
340
  margin-top: 0;
341
  margin-bottom: 1rem;
342
  overflow: auto;
343
  font-size: 0.875em;
344
}
16848 stevensc 345
 
16825 efrain 346
pre code {
347
  font-size: inherit;
348
  color: inherit;
349
  word-break: normal;
350
}
351
 
352
code {
353
  font-size: 0.875em;
354
  color: var(--bs-code-color);
355
  word-wrap: break-word;
356
}
16848 stevensc 357
 
358
a>code {
16825 efrain 359
  color: inherit;
360
}
361
 
362
kbd {
363
  padding: 0.1875rem 0.375rem;
364
  font-size: 0.875em;
365
  color: var(--bs-body-bg);
366
  background-color: var(--bs-body-color);
367
  border-radius: 0.25rem;
368
}
16848 stevensc 369
 
16825 efrain 370
kbd kbd {
371
  padding: 0;
372
  font-size: 1em;
373
}
374
 
375
figure {
376
  margin: 0 0 1rem;
377
}
378
 
379
img,
380
svg {
381
  vertical-align: middle;
382
}
383
 
384
table {
385
  caption-side: bottom;
386
  border-collapse: collapse;
387
}
388
 
389
caption {
390
  padding-top: 0.85rem;
391
  padding-bottom: 0.85rem;
392
  color: #7987a1;
393
  text-align: left;
394
}
395
 
396
th {
397
  text-align: inherit;
398
  text-align: -webkit-match-parent;
399
}
400
 
401
thead,
402
tbody,
403
tfoot,
404
tr,
405
td,
406
th {
407
  border-color: inherit;
408
  border-style: solid;
409
  border-width: 0;
410
}
411
 
412
label {
413
  display: inline-block;
414
}
415
 
416
button {
417
  border-radius: 0;
418
}
419
 
420
button:focus:not(:focus-visible) {
421
  outline: 0;
422
}
423
 
424
input,
425
button,
426
select,
427
optgroup,
428
textarea {
429
  margin: 0;
430
  font-family: inherit;
431
  font-size: inherit;
432
  line-height: inherit;
433
}
434
 
435
button,
436
select {
437
  text-transform: none;
438
}
439
 
440
[role=button] {
441
  cursor: pointer;
442
}
443
 
444
select {
445
  word-wrap: normal;
446
}
16848 stevensc 447
 
16825 efrain 448
select:disabled {
449
  opacity: 1;
450
}
451
 
452
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
453
  display: none !important;
454
}
455
 
456
button,
457
[type=button],
458
[type=reset],
459
[type=submit] {
16848 stevensc 460
  appearance: button;
16825 efrain 461
}
16848 stevensc 462
 
16825 efrain 463
button:not(:disabled),
464
[type=button]:not(:disabled),
465
[type=reset]:not(:disabled),
466
[type=submit]:not(:disabled) {
467
  cursor: pointer;
468
}
469
 
470
::-moz-focus-inner {
471
  padding: 0;
472
  border-style: none;
473
}
474
 
475
textarea {
476
  resize: vertical;
477
}
478
 
479
fieldset {
480
  min-width: 0;
481
  padding: 0;
482
  margin: 0;
483
  border: 0;
484
}
485
 
486
legend {
487
  float: left;
488
  width: 100%;
489
  padding: 0;
490
  margin-bottom: 0.5rem;
491
  font-size: calc(1.275rem + 0.3vw);
492
  line-height: inherit;
493
}
16848 stevensc 494
 
16825 efrain 495
@media (min-width: 1200px) {
496
  legend {
497
    font-size: 1.5rem;
498
  }
499
}
16848 stevensc 500
 
501
legend+* {
16825 efrain 502
  clear: left;
503
}
504
 
505
::-webkit-datetime-edit-fields-wrapper,
506
::-webkit-datetime-edit-text,
507
::-webkit-datetime-edit-minute,
508
::-webkit-datetime-edit-hour-field,
509
::-webkit-datetime-edit-day-field,
510
::-webkit-datetime-edit-month-field,
511
::-webkit-datetime-edit-year-field {
512
  padding: 0;
513
}
514
 
515
::-webkit-inner-spin-button {
516
  height: auto;
517
}
518
 
519
[type=search] {
520
  outline-offset: -2px;
16848 stevensc 521
  appearance: textfield;
16825 efrain 522
}
523
 
524
/* rtl:raw:
525
[type="tel"],
526
[type="url"],
527
[type="email"],
528
[type="number"] {
529
  direction: ltr;
530
}
531
*/
532
::-webkit-search-decoration {
533
  -webkit-appearance: none;
534
}
535
 
536
::-webkit-color-swatch-wrapper {
537
  padding: 0;
538
}
539
 
540
::file-selector-button {
541
  font: inherit;
16848 stevensc 542
  appearance: button;
16825 efrain 543
}
544
 
545
output {
546
  display: inline-block;
547
}
548
 
549
iframe {
550
  border: 0;
551
}
552
 
553
summary {
554
  display: list-item;
555
  cursor: pointer;
556
}
557
 
558
progress {
559
  vertical-align: baseline;
560
}
561
 
562
[hidden] {
563
  display: none !important;
564
}
565
 
566
.lead {
567
  font-size: 1.09375rem;
568
  font-weight: 300;
569
}
570
 
571
.display-1 {
572
  font-size: calc(1.625rem + 4.5vw);
573
  font-weight: 300;
574
  line-height: 1.2;
575
}
16848 stevensc 576
 
16825 efrain 577
@media (min-width: 1200px) {
578
  .display-1 {
579
    font-size: 5rem;
580
  }
581
}
582
 
583
.display-2 {
584
  font-size: calc(1.575rem + 3.9vw);
585
  font-weight: 300;
586
  line-height: 1.2;
587
}
16848 stevensc 588
 
16825 efrain 589
@media (min-width: 1200px) {
590
  .display-2 {
591
    font-size: 4.5rem;
592
  }
593
}
594
 
595
.display-3 {
596
  font-size: calc(1.525rem + 3.3vw);
597
  font-weight: 300;
598
  line-height: 1.2;
599
}
16848 stevensc 600
 
16825 efrain 601
@media (min-width: 1200px) {
602
  .display-3 {
603
    font-size: 4rem;
604
  }
605
}
606
 
607
.display-4 {
608
  font-size: calc(1.475rem + 2.7vw);
609
  font-weight: 300;
610
  line-height: 1.2;
611
}
16848 stevensc 612
 
16825 efrain 613
@media (min-width: 1200px) {
614
  .display-4 {
615
    font-size: 3.5rem;
616
  }
617
}
618
 
619
.display-5 {
620
  font-size: calc(1.425rem + 2.1vw);
621
  font-weight: 300;
622
  line-height: 1.2;
623
}
16848 stevensc 624
 
16825 efrain 625
@media (min-width: 1200px) {
626
  .display-5 {
627
    font-size: 3rem;
628
  }
629
}
630
 
631
.display-6 {
632
  font-size: calc(1.375rem + 1.5vw);
633
  font-weight: 300;
634
  line-height: 1.2;
635
}
16848 stevensc 636
 
16825 efrain 637
@media (min-width: 1200px) {
638
  .display-6 {
639
    font-size: 2.5rem;
640
  }
641
}
642
 
643
.list-unstyled {
644
  padding-left: 0;
645
  list-style: none;
646
}
647
 
648
.list-inline {
649
  padding-left: 0;
650
  list-style: none;
651
}
652
 
653
.list-inline-item {
654
  display: inline-block;
655
}
16848 stevensc 656
 
16825 efrain 657
.list-inline-item:not(:last-child) {
658
  margin-right: 0.5rem;
659
}
660
 
661
.initialism {
662
  font-size: 0.875em;
663
  text-transform: uppercase;
664
}
665
 
666
.blockquote {
667
  margin-bottom: 1rem;
668
  font-size: 1.09375rem;
669
}
16848 stevensc 670
 
671
.blockquote> :last-child {
16825 efrain 672
  margin-bottom: 0;
673
}
674
 
675
.blockquote-footer {
676
  margin-top: -1rem;
677
  margin-bottom: 1rem;
678
  font-size: 0.875em;
679
  color: #7987a1;
680
}
16848 stevensc 681
 
16825 efrain 682
.blockquote-footer::before {
683
  content: "— ";
684
}
685
 
686
.img-fluid {
687
  max-width: 100%;
688
  height: auto;
689
}
690
 
691
.img-thumbnail {
692
  padding: 0.25rem;
693
  background-color: #f9fafb;
694
  border: 1px solid var(--bs-border-color);
695
  border-radius: 0.25rem;
696
  max-width: 100%;
697
  height: auto;
698
}
699
 
700
.figure {
701
  display: inline-block;
702
}
703
 
704
.figure-img {
705
  margin-bottom: 0.5rem;
706
  line-height: 1;
707
}
708
 
709
.figure-caption {
710
  font-size: 0.875em;
711
  color: #7987a1;
712
}
713
 
714
.container,
715
.container-fluid,
716
.container-xxl,
717
.container-xl,
718
.container-lg,
719
.container-md,
720
.container-sm {
721
  --bs-gutter-x: 1.5rem;
722
  --bs-gutter-y: 0;
723
  width: 100%;
724
  padding-right: calc(var(--bs-gutter-x) * 0.5);
725
  padding-left: calc(var(--bs-gutter-x) * 0.5);
726
  margin-right: auto;
727
  margin-left: auto;
728
}
729
 
730
@media (min-width: 576px) {
16848 stevensc 731
 
732
  .container-sm,
733
  .container {
16825 efrain 734
    max-width: 540px;
735
  }
736
}
16848 stevensc 737
 
16825 efrain 738
@media (min-width: 768px) {
16848 stevensc 739
 
740
  .container-md,
741
  .container-sm,
742
  .container {
16825 efrain 743
    max-width: 720px;
744
  }
745
}
16848 stevensc 746
 
16825 efrain 747
@media (min-width: 992px) {
16848 stevensc 748
 
749
  .container-lg,
750
  .container-md,
751
  .container-sm,
752
  .container {
16825 efrain 753
    max-width: 960px;
754
  }
755
}
16848 stevensc 756
 
16825 efrain 757
@media (min-width: 1200px) {
16848 stevensc 758
 
759
  .container-xl,
760
  .container-lg,
761
  .container-md,
762
  .container-sm,
763
  .container {
16825 efrain 764
    max-width: 1140px;
765
  }
766
}
16848 stevensc 767
 
16825 efrain 768
@media (min-width: 1400px) {
16848 stevensc 769
 
770
  .container-xxl,
771
  .container-xl,
772
  .container-lg,
773
  .container-md,
774
  .container-sm,
775
  .container {
16825 efrain 776
    max-width: 1320px;
777
  }
778
}
16848 stevensc 779
 
16825 efrain 780
.row {
781
  --bs-gutter-x: 1.5rem;
782
  --bs-gutter-y: 0;
783
  display: flex;
784
  flex-wrap: wrap;
785
  margin-top: calc(-1 * var(--bs-gutter-y));
786
  margin-right: calc(-0.5 * var(--bs-gutter-x));
787
  margin-left: calc(-0.5 * var(--bs-gutter-x));
788
}
16848 stevensc 789
 
790
.row>* {
16825 efrain 791
  flex-shrink: 0;
792
  width: 100%;
793
  max-width: 100%;
794
  padding-right: calc(var(--bs-gutter-x) * 0.5);
795
  padding-left: calc(var(--bs-gutter-x) * 0.5);
796
  margin-top: var(--bs-gutter-y);
797
}
798
 
799
.col {
800
  flex: 1 0 0%;
801
}
802
 
16848 stevensc 803
.row-cols-auto>* {
16825 efrain 804
  flex: 0 0 auto;
805
  width: auto;
806
}
807
 
16848 stevensc 808
.row-cols-1>* {
16825 efrain 809
  flex: 0 0 auto;
810
  width: 100%;
811
}
812
 
16848 stevensc 813
.row-cols-2>* {
16825 efrain 814
  flex: 0 0 auto;
815
  width: 50%;
816
}
817
 
16848 stevensc 818
.row-cols-3>* {
16825 efrain 819
  flex: 0 0 auto;
820
  width: 33.3333333333%;
821
}
822
 
16848 stevensc 823
.row-cols-4>* {
16825 efrain 824
  flex: 0 0 auto;
825
  width: 25%;
826
}
827
 
16848 stevensc 828
.row-cols-5>* {
16825 efrain 829
  flex: 0 0 auto;
830
  width: 20%;
831
}
832
 
16848 stevensc 833
.row-cols-6>* {
16825 efrain 834
  flex: 0 0 auto;
835
  width: 16.6666666667%;
836
}
837
 
838
.col-auto {
839
  flex: 0 0 auto;
840
  width: auto;
841
}
842
 
843
.col-1 {
844
  flex: 0 0 auto;
845
  width: 8.33333333%;
846
}
847
 
848
.col-2 {
849
  flex: 0 0 auto;
850
  width: 16.66666667%;
851
}
852
 
853
.col-3 {
854
  flex: 0 0 auto;
855
  width: 25%;
856
}
857
 
858
.col-4 {
859
  flex: 0 0 auto;
860
  width: 33.33333333%;
861
}
862
 
863
.col-5 {
864
  flex: 0 0 auto;
865
  width: 41.66666667%;
866
}
867
 
868
.col-6 {
869
  flex: 0 0 auto;
870
  width: 50%;
871
}
872
 
873
.col-7 {
874
  flex: 0 0 auto;
875
  width: 58.33333333%;
876
}
877
 
878
.col-8 {
879
  flex: 0 0 auto;
880
  width: 66.66666667%;
881
}
882
 
883
.col-9 {
884
  flex: 0 0 auto;
885
  width: 75%;
886
}
887
 
888
.col-10 {
889
  flex: 0 0 auto;
890
  width: 83.33333333%;
891
}
892
 
893
.col-11 {
894
  flex: 0 0 auto;
895
  width: 91.66666667%;
896
}
897
 
898
.col-12 {
899
  flex: 0 0 auto;
900
  width: 100%;
901
}
902
 
903
.offset-1 {
904
  margin-left: 8.33333333%;
905
}
906
 
907
.offset-2 {
908
  margin-left: 16.66666667%;
909
}
910
 
911
.offset-3 {
912
  margin-left: 25%;
913
}
914
 
915
.offset-4 {
916
  margin-left: 33.33333333%;
917
}
918
 
919
.offset-5 {
920
  margin-left: 41.66666667%;
921
}
922
 
923
.offset-6 {
924
  margin-left: 50%;
925
}
926
 
927
.offset-7 {
928
  margin-left: 58.33333333%;
929
}
930
 
931
.offset-8 {
932
  margin-left: 66.66666667%;
933
}
934
 
935
.offset-9 {
936
  margin-left: 75%;
937
}
938
 
939
.offset-10 {
940
  margin-left: 83.33333333%;
941
}
942
 
943
.offset-11 {
944
  margin-left: 91.66666667%;
945
}
946
 
947
.g-0,
948
.gx-0 {
949
  --bs-gutter-x: 0;
950
}
951
 
952
.g-0,
953
.gy-0 {
954
  --bs-gutter-y: 0;
955
}
956
 
957
.g-1,
958
.gx-1 {
959
  --bs-gutter-x: 0.25rem;
960
}
961
 
962
.g-1,
963
.gy-1 {
964
  --bs-gutter-y: 0.25rem;
965
}
966
 
967
.g-2,
968
.gx-2 {
969
  --bs-gutter-x: 0.5rem;
970
}
971
 
972
.g-2,
973
.gy-2 {
974
  --bs-gutter-y: 0.5rem;
975
}
976
 
977
.g-3,
978
.gx-3 {
979
  --bs-gutter-x: 1rem;
980
}
981
 
982
.g-3,
983
.gy-3 {
984
  --bs-gutter-y: 1rem;
985
}
986
 
987
.g-4,
988
.gx-4 {
989
  --bs-gutter-x: 1.5rem;
990
}
991
 
992
.g-4,
993
.gy-4 {
994
  --bs-gutter-y: 1.5rem;
995
}
996
 
997
.g-5,
998
.gx-5 {
999
  --bs-gutter-x: 3rem;
1000
}
1001
 
1002
.g-5,
1003
.gy-5 {
1004
  --bs-gutter-y: 3rem;
1005
}
1006
 
1007
.g-6,
1008
.gx-6 {
1009
  --bs-gutter-x: 4.5rem;
1010
}
1011
 
1012
.g-6,
1013
.gy-6 {
1014
  --bs-gutter-y: 4.5rem;
1015
}
1016
 
1017
.g-7,
1018
.gx-7 {
1019
  --bs-gutter-x: 6rem;
1020
}
1021
 
1022
.g-7,
1023
.gy-7 {
1024
  --bs-gutter-y: 6rem;
1025
}
1026
 
1027
@media (min-width: 576px) {
1028
  .col-sm {
1029
    flex: 1 0 0%;
1030
  }
16848 stevensc 1031
 
1032
  .row-cols-sm-auto>* {
16825 efrain 1033
    flex: 0 0 auto;
1034
    width: auto;
1035
  }
16848 stevensc 1036
 
1037
  .row-cols-sm-1>* {
16825 efrain 1038
    flex: 0 0 auto;
1039
    width: 100%;
1040
  }
16848 stevensc 1041
 
1042
  .row-cols-sm-2>* {
16825 efrain 1043
    flex: 0 0 auto;
1044
    width: 50%;
1045
  }
16848 stevensc 1046
 
1047
  .row-cols-sm-3>* {
16825 efrain 1048
    flex: 0 0 auto;
1049
    width: 33.3333333333%;
1050
  }
16848 stevensc 1051
 
1052
  .row-cols-sm-4>* {
16825 efrain 1053
    flex: 0 0 auto;
1054
    width: 25%;
1055
  }
16848 stevensc 1056
 
1057
  .row-cols-sm-5>* {
16825 efrain 1058
    flex: 0 0 auto;
1059
    width: 20%;
1060
  }
16848 stevensc 1061
 
1062
  .row-cols-sm-6>* {
16825 efrain 1063
    flex: 0 0 auto;
1064
    width: 16.6666666667%;
1065
  }
16848 stevensc 1066
 
16825 efrain 1067
  .col-sm-auto {
1068
    flex: 0 0 auto;
1069
    width: auto;
1070
  }
16848 stevensc 1071
 
16825 efrain 1072
  .col-sm-1 {
1073
    flex: 0 0 auto;
1074
    width: 8.33333333%;
1075
  }
16848 stevensc 1076
 
16825 efrain 1077
  .col-sm-2 {
1078
    flex: 0 0 auto;
1079
    width: 16.66666667%;
1080
  }
16848 stevensc 1081
 
16825 efrain 1082
  .col-sm-3 {
1083
    flex: 0 0 auto;
1084
    width: 25%;
1085
  }
16848 stevensc 1086
 
16825 efrain 1087
  .col-sm-4 {
1088
    flex: 0 0 auto;
1089
    width: 33.33333333%;
1090
  }
16848 stevensc 1091
 
16825 efrain 1092
  .col-sm-5 {
1093
    flex: 0 0 auto;
1094
    width: 41.66666667%;
1095
  }
16848 stevensc 1096
 
16825 efrain 1097
  .col-sm-6 {
1098
    flex: 0 0 auto;
1099
    width: 50%;
1100
  }
16848 stevensc 1101
 
16825 efrain 1102
  .col-sm-7 {
1103
    flex: 0 0 auto;
1104
    width: 58.33333333%;
1105
  }
16848 stevensc 1106
 
16825 efrain 1107
  .col-sm-8 {
1108
    flex: 0 0 auto;
1109
    width: 66.66666667%;
1110
  }
16848 stevensc 1111
 
16825 efrain 1112
  .col-sm-9 {
1113
    flex: 0 0 auto;
1114
    width: 75%;
1115
  }
16848 stevensc 1116
 
16825 efrain 1117
  .col-sm-10 {
1118
    flex: 0 0 auto;
1119
    width: 83.33333333%;
1120
  }
16848 stevensc 1121
 
16825 efrain 1122
  .col-sm-11 {
1123
    flex: 0 0 auto;
1124
    width: 91.66666667%;
1125
  }
16848 stevensc 1126
 
16825 efrain 1127
  .col-sm-12 {
1128
    flex: 0 0 auto;
1129
    width: 100%;
1130
  }
16848 stevensc 1131
 
16825 efrain 1132
  .offset-sm-0 {
1133
    margin-left: 0;
1134
  }
16848 stevensc 1135
 
16825 efrain 1136
  .offset-sm-1 {
1137
    margin-left: 8.33333333%;
1138
  }
16848 stevensc 1139
 
16825 efrain 1140
  .offset-sm-2 {
1141
    margin-left: 16.66666667%;
1142
  }
16848 stevensc 1143
 
16825 efrain 1144
  .offset-sm-3 {
1145
    margin-left: 25%;
1146
  }
16848 stevensc 1147
 
16825 efrain 1148
  .offset-sm-4 {
1149
    margin-left: 33.33333333%;
1150
  }
16848 stevensc 1151
 
16825 efrain 1152
  .offset-sm-5 {
1153
    margin-left: 41.66666667%;
1154
  }
16848 stevensc 1155
 
16825 efrain 1156
  .offset-sm-6 {
1157
    margin-left: 50%;
1158
  }
16848 stevensc 1159
 
16825 efrain 1160
  .offset-sm-7 {
1161
    margin-left: 58.33333333%;
1162
  }
16848 stevensc 1163
 
16825 efrain 1164
  .offset-sm-8 {
1165
    margin-left: 66.66666667%;
1166
  }
16848 stevensc 1167
 
16825 efrain 1168
  .offset-sm-9 {
1169
    margin-left: 75%;
1170
  }
16848 stevensc 1171
 
16825 efrain 1172
  .offset-sm-10 {
1173
    margin-left: 83.33333333%;
1174
  }
16848 stevensc 1175
 
16825 efrain 1176
  .offset-sm-11 {
1177
    margin-left: 91.66666667%;
1178
  }
16848 stevensc 1179
 
16825 efrain 1180
  .g-sm-0,
1181
  .gx-sm-0 {
1182
    --bs-gutter-x: 0;
1183
  }
16848 stevensc 1184
 
16825 efrain 1185
  .g-sm-0,
1186
  .gy-sm-0 {
1187
    --bs-gutter-y: 0;
1188
  }
16848 stevensc 1189
 
16825 efrain 1190
  .g-sm-1,
1191
  .gx-sm-1 {
1192
    --bs-gutter-x: 0.25rem;
1193
  }
16848 stevensc 1194
 
16825 efrain 1195
  .g-sm-1,
1196
  .gy-sm-1 {
1197
    --bs-gutter-y: 0.25rem;
1198
  }
16848 stevensc 1199
 
16825 efrain 1200
  .g-sm-2,
1201
  .gx-sm-2 {
1202
    --bs-gutter-x: 0.5rem;
1203
  }
16848 stevensc 1204
 
16825 efrain 1205
  .g-sm-2,
1206
  .gy-sm-2 {
1207
    --bs-gutter-y: 0.5rem;
1208
  }
16848 stevensc 1209
 
16825 efrain 1210
  .g-sm-3,
1211
  .gx-sm-3 {
1212
    --bs-gutter-x: 1rem;
1213
  }
16848 stevensc 1214
 
16825 efrain 1215
  .g-sm-3,
1216
  .gy-sm-3 {
1217
    --bs-gutter-y: 1rem;
1218
  }
16848 stevensc 1219
 
16825 efrain 1220
  .g-sm-4,
1221
  .gx-sm-4 {
1222
    --bs-gutter-x: 1.5rem;
1223
  }
16848 stevensc 1224
 
16825 efrain 1225
  .g-sm-4,
1226
  .gy-sm-4 {
1227
    --bs-gutter-y: 1.5rem;
1228
  }
16848 stevensc 1229
 
16825 efrain 1230
  .g-sm-5,
1231
  .gx-sm-5 {
1232
    --bs-gutter-x: 3rem;
1233
  }
16848 stevensc 1234
 
16825 efrain 1235
  .g-sm-5,
1236
  .gy-sm-5 {
1237
    --bs-gutter-y: 3rem;
1238
  }
16848 stevensc 1239
 
16825 efrain 1240
  .g-sm-6,
1241
  .gx-sm-6 {
1242
    --bs-gutter-x: 4.5rem;
1243
  }
16848 stevensc 1244
 
16825 efrain 1245
  .g-sm-6,
1246
  .gy-sm-6 {
1247
    --bs-gutter-y: 4.5rem;
1248
  }
16848 stevensc 1249
 
16825 efrain 1250
  .g-sm-7,
1251
  .gx-sm-7 {
1252
    --bs-gutter-x: 6rem;
1253
  }
16848 stevensc 1254
 
16825 efrain 1255
  .g-sm-7,
1256
  .gy-sm-7 {
1257
    --bs-gutter-y: 6rem;
1258
  }
1259
}
16848 stevensc 1260
 
16825 efrain 1261
@media (min-width: 768px) {
1262
  .col-md {
1263
    flex: 1 0 0%;
1264
  }
16848 stevensc 1265
 
1266
  .row-cols-md-auto>* {
16825 efrain 1267
    flex: 0 0 auto;
1268
    width: auto;
1269
  }
16848 stevensc 1270
 
1271
  .row-cols-md-1>* {
16825 efrain 1272
    flex: 0 0 auto;
1273
    width: 100%;
1274
  }
16848 stevensc 1275
 
1276
  .row-cols-md-2>* {
16825 efrain 1277
    flex: 0 0 auto;
1278
    width: 50%;
1279
  }
16848 stevensc 1280
 
1281
  .row-cols-md-3>* {
16825 efrain 1282
    flex: 0 0 auto;
1283
    width: 33.3333333333%;
1284
  }
16848 stevensc 1285
 
1286
  .row-cols-md-4>* {
16825 efrain 1287
    flex: 0 0 auto;
1288
    width: 25%;
1289
  }
16848 stevensc 1290
 
1291
  .row-cols-md-5>* {
16825 efrain 1292
    flex: 0 0 auto;
1293
    width: 20%;
1294
  }
16848 stevensc 1295
 
1296
  .row-cols-md-6>* {
16825 efrain 1297
    flex: 0 0 auto;
1298
    width: 16.6666666667%;
1299
  }
16848 stevensc 1300
 
16825 efrain 1301
  .col-md-auto {
1302
    flex: 0 0 auto;
1303
    width: auto;
1304
  }
16848 stevensc 1305
 
16825 efrain 1306
  .col-md-1 {
1307
    flex: 0 0 auto;
1308
    width: 8.33333333%;
1309
  }
16848 stevensc 1310
 
16825 efrain 1311
  .col-md-2 {
1312
    flex: 0 0 auto;
1313
    width: 16.66666667%;
1314
  }
16848 stevensc 1315
 
16825 efrain 1316
  .col-md-3 {
1317
    flex: 0 0 auto;
1318
    width: 25%;
1319
  }
16848 stevensc 1320
 
16825 efrain 1321
  .col-md-4 {
1322
    flex: 0 0 auto;
1323
    width: 33.33333333%;
1324
  }
16848 stevensc 1325
 
16825 efrain 1326
  .col-md-5 {
1327
    flex: 0 0 auto;
1328
    width: 41.66666667%;
1329
  }
16848 stevensc 1330
 
16825 efrain 1331
  .col-md-6 {
1332
    flex: 0 0 auto;
1333
    width: 50%;
1334
  }
16848 stevensc 1335
 
16825 efrain 1336
  .col-md-7 {
1337
    flex: 0 0 auto;
1338
    width: 58.33333333%;
1339
  }
16848 stevensc 1340
 
16825 efrain 1341
  .col-md-8 {
1342
    flex: 0 0 auto;
1343
    width: 66.66666667%;
1344
  }
16848 stevensc 1345
 
16825 efrain 1346
  .col-md-9 {
1347
    flex: 0 0 auto;
1348
    width: 75%;
1349
  }
16848 stevensc 1350
 
16825 efrain 1351
  .col-md-10 {
1352
    flex: 0 0 auto;
1353
    width: 83.33333333%;
1354
  }
16848 stevensc 1355
 
16825 efrain 1356
  .col-md-11 {
1357
    flex: 0 0 auto;
1358
    width: 91.66666667%;
1359
  }
16848 stevensc 1360
 
16825 efrain 1361
  .col-md-12 {
1362
    flex: 0 0 auto;
1363
    width: 100%;
1364
  }
16848 stevensc 1365
 
16825 efrain 1366
  .offset-md-0 {
1367
    margin-left: 0;
1368
  }
16848 stevensc 1369
 
16825 efrain 1370
  .offset-md-1 {
1371
    margin-left: 8.33333333%;
1372
  }
16848 stevensc 1373
 
16825 efrain 1374
  .offset-md-2 {
1375
    margin-left: 16.66666667%;
1376
  }
16848 stevensc 1377
 
16825 efrain 1378
  .offset-md-3 {
1379
    margin-left: 25%;
1380
  }
16848 stevensc 1381
 
16825 efrain 1382
  .offset-md-4 {
1383
    margin-left: 33.33333333%;
1384
  }
16848 stevensc 1385
 
16825 efrain 1386
  .offset-md-5 {
1387
    margin-left: 41.66666667%;
1388
  }
16848 stevensc 1389
 
16825 efrain 1390
  .offset-md-6 {
1391
    margin-left: 50%;
1392
  }
16848 stevensc 1393
 
16825 efrain 1394
  .offset-md-7 {
1395
    margin-left: 58.33333333%;
1396
  }
16848 stevensc 1397
 
16825 efrain 1398
  .offset-md-8 {
1399
    margin-left: 66.66666667%;
1400
  }
16848 stevensc 1401
 
16825 efrain 1402
  .offset-md-9 {
1403
    margin-left: 75%;
1404
  }
16848 stevensc 1405
 
16825 efrain 1406
  .offset-md-10 {
1407
    margin-left: 83.33333333%;
1408
  }
16848 stevensc 1409
 
16825 efrain 1410
  .offset-md-11 {
1411
    margin-left: 91.66666667%;
1412
  }
16848 stevensc 1413
 
16825 efrain 1414
  .g-md-0,
1415
  .gx-md-0 {
1416
    --bs-gutter-x: 0;
1417
  }
16848 stevensc 1418
 
16825 efrain 1419
  .g-md-0,
1420
  .gy-md-0 {
1421
    --bs-gutter-y: 0;
1422
  }
16848 stevensc 1423
 
16825 efrain 1424
  .g-md-1,
1425
  .gx-md-1 {
1426
    --bs-gutter-x: 0.25rem;
1427
  }
16848 stevensc 1428
 
16825 efrain 1429
  .g-md-1,
1430
  .gy-md-1 {
1431
    --bs-gutter-y: 0.25rem;
1432
  }
16848 stevensc 1433
 
16825 efrain 1434
  .g-md-2,
1435
  .gx-md-2 {
1436
    --bs-gutter-x: 0.5rem;
1437
  }
16848 stevensc 1438
 
16825 efrain 1439
  .g-md-2,
1440
  .gy-md-2 {
1441
    --bs-gutter-y: 0.5rem;
1442
  }
16848 stevensc 1443
 
16825 efrain 1444
  .g-md-3,
1445
  .gx-md-3 {
1446
    --bs-gutter-x: 1rem;
1447
  }
16848 stevensc 1448
 
16825 efrain 1449
  .g-md-3,
1450
  .gy-md-3 {
1451
    --bs-gutter-y: 1rem;
1452
  }
16848 stevensc 1453
 
16825 efrain 1454
  .g-md-4,
1455
  .gx-md-4 {
1456
    --bs-gutter-x: 1.5rem;
1457
  }
16848 stevensc 1458
 
16825 efrain 1459
  .g-md-4,
1460
  .gy-md-4 {
1461
    --bs-gutter-y: 1.5rem;
1462
  }
16848 stevensc 1463
 
16825 efrain 1464
  .g-md-5,
1465
  .gx-md-5 {
1466
    --bs-gutter-x: 3rem;
1467
  }
16848 stevensc 1468
 
16825 efrain 1469
  .g-md-5,
1470
  .gy-md-5 {
1471
    --bs-gutter-y: 3rem;
1472
  }
16848 stevensc 1473
 
16825 efrain 1474
  .g-md-6,
1475
  .gx-md-6 {
1476
    --bs-gutter-x: 4.5rem;
1477
  }
16848 stevensc 1478
 
16825 efrain 1479
  .g-md-6,
1480
  .gy-md-6 {
1481
    --bs-gutter-y: 4.5rem;
1482
  }
16848 stevensc 1483
 
16825 efrain 1484
  .g-md-7,
1485
  .gx-md-7 {
1486
    --bs-gutter-x: 6rem;
1487
  }
16848 stevensc 1488
 
16825 efrain 1489
  .g-md-7,
1490
  .gy-md-7 {
1491
    --bs-gutter-y: 6rem;
1492
  }
1493
}
16848 stevensc 1494
 
16825 efrain 1495
@media (min-width: 992px) {
1496
  .col-lg {
1497
    flex: 1 0 0%;
1498
  }
16848 stevensc 1499
 
1500
  .row-cols-lg-auto>* {
16825 efrain 1501
    flex: 0 0 auto;
1502
    width: auto;
1503
  }
16848 stevensc 1504
 
1505
  .row-cols-lg-1>* {
16825 efrain 1506
    flex: 0 0 auto;
1507
    width: 100%;
1508
  }
16848 stevensc 1509
 
1510
  .row-cols-lg-2>* {
16825 efrain 1511
    flex: 0 0 auto;
1512
    width: 50%;
1513
  }
16848 stevensc 1514
 
1515
  .row-cols-lg-3>* {
16825 efrain 1516
    flex: 0 0 auto;
1517
    width: 33.3333333333%;
1518
  }
16848 stevensc 1519
 
1520
  .row-cols-lg-4>* {
16825 efrain 1521
    flex: 0 0 auto;
1522
    width: 25%;
1523
  }
16848 stevensc 1524
 
1525
  .row-cols-lg-5>* {
16825 efrain 1526
    flex: 0 0 auto;
1527
    width: 20%;
1528
  }
16848 stevensc 1529
 
1530
  .row-cols-lg-6>* {
16825 efrain 1531
    flex: 0 0 auto;
1532
    width: 16.6666666667%;
1533
  }
16848 stevensc 1534
 
16825 efrain 1535
  .col-lg-auto {
1536
    flex: 0 0 auto;
1537
    width: auto;
1538
  }
16848 stevensc 1539
 
16825 efrain 1540
  .col-lg-1 {
1541
    flex: 0 0 auto;
1542
    width: 8.33333333%;
1543
  }
16848 stevensc 1544
 
16825 efrain 1545
  .col-lg-2 {
1546
    flex: 0 0 auto;
1547
    width: 16.66666667%;
1548
  }
16848 stevensc 1549
 
16825 efrain 1550
  .col-lg-3 {
1551
    flex: 0 0 auto;
1552
    width: 25%;
1553
  }
16848 stevensc 1554
 
16825 efrain 1555
  .col-lg-4 {
1556
    flex: 0 0 auto;
1557
    width: 33.33333333%;
1558
  }
16848 stevensc 1559
 
16825 efrain 1560
  .col-lg-5 {
1561
    flex: 0 0 auto;
1562
    width: 41.66666667%;
1563
  }
16848 stevensc 1564
 
16825 efrain 1565
  .col-lg-6 {
1566
    flex: 0 0 auto;
1567
    width: 50%;
1568
  }
16848 stevensc 1569
 
16825 efrain 1570
  .col-lg-7 {
1571
    flex: 0 0 auto;
1572
    width: 58.33333333%;
1573
  }
16848 stevensc 1574
 
16825 efrain 1575
  .col-lg-8 {
1576
    flex: 0 0 auto;
1577
    width: 66.66666667%;
1578
  }
16848 stevensc 1579
 
16825 efrain 1580
  .col-lg-9 {
1581
    flex: 0 0 auto;
1582
    width: 75%;
1583
  }
16848 stevensc 1584
 
16825 efrain 1585
  .col-lg-10 {
1586
    flex: 0 0 auto;
1587
    width: 83.33333333%;
1588
  }
16848 stevensc 1589
 
16825 efrain 1590
  .col-lg-11 {
1591
    flex: 0 0 auto;
1592
    width: 91.66666667%;
1593
  }
16848 stevensc 1594
 
16825 efrain 1595
  .col-lg-12 {
1596
    flex: 0 0 auto;
1597
    width: 100%;
1598
  }
16848 stevensc 1599
 
16825 efrain 1600
  .offset-lg-0 {
1601
    margin-left: 0;
1602
  }
16848 stevensc 1603
 
16825 efrain 1604
  .offset-lg-1 {
1605
    margin-left: 8.33333333%;
1606
  }
16848 stevensc 1607
 
16825 efrain 1608
  .offset-lg-2 {
1609
    margin-left: 16.66666667%;
1610
  }
16848 stevensc 1611
 
16825 efrain 1612
  .offset-lg-3 {
1613
    margin-left: 25%;
1614
  }
16848 stevensc 1615
 
16825 efrain 1616
  .offset-lg-4 {
1617
    margin-left: 33.33333333%;
1618
  }
16848 stevensc 1619
 
16825 efrain 1620
  .offset-lg-5 {
1621
    margin-left: 41.66666667%;
1622
  }
16848 stevensc 1623
 
16825 efrain 1624
  .offset-lg-6 {
1625
    margin-left: 50%;
1626
  }
16848 stevensc 1627
 
16825 efrain 1628
  .offset-lg-7 {
1629
    margin-left: 58.33333333%;
1630
  }
16848 stevensc 1631
 
16825 efrain 1632
  .offset-lg-8 {
1633
    margin-left: 66.66666667%;
1634
  }
16848 stevensc 1635
 
16825 efrain 1636
  .offset-lg-9 {
1637
    margin-left: 75%;
1638
  }
16848 stevensc 1639
 
16825 efrain 1640
  .offset-lg-10 {
1641
    margin-left: 83.33333333%;
1642
  }
16848 stevensc 1643
 
16825 efrain 1644
  .offset-lg-11 {
1645
    margin-left: 91.66666667%;
1646
  }
16848 stevensc 1647
 
16825 efrain 1648
  .g-lg-0,
1649
  .gx-lg-0 {
1650
    --bs-gutter-x: 0;
1651
  }
16848 stevensc 1652
 
16825 efrain 1653
  .g-lg-0,
1654
  .gy-lg-0 {
1655
    --bs-gutter-y: 0;
1656
  }
16848 stevensc 1657
 
16825 efrain 1658
  .g-lg-1,
1659
  .gx-lg-1 {
1660
    --bs-gutter-x: 0.25rem;
1661
  }
16848 stevensc 1662
 
16825 efrain 1663
  .g-lg-1,
1664
  .gy-lg-1 {
1665
    --bs-gutter-y: 0.25rem;
1666
  }
16848 stevensc 1667
 
16825 efrain 1668
  .g-lg-2,
1669
  .gx-lg-2 {
1670
    --bs-gutter-x: 0.5rem;
1671
  }
16848 stevensc 1672
 
16825 efrain 1673
  .g-lg-2,
1674
  .gy-lg-2 {
1675
    --bs-gutter-y: 0.5rem;
1676
  }
16848 stevensc 1677
 
16825 efrain 1678
  .g-lg-3,
1679
  .gx-lg-3 {
1680
    --bs-gutter-x: 1rem;
1681
  }
16848 stevensc 1682
 
16825 efrain 1683
  .g-lg-3,
1684
  .gy-lg-3 {
1685
    --bs-gutter-y: 1rem;
1686
  }
16848 stevensc 1687
 
16825 efrain 1688
  .g-lg-4,
1689
  .gx-lg-4 {
1690
    --bs-gutter-x: 1.5rem;
1691
  }
16848 stevensc 1692
 
16825 efrain 1693
  .g-lg-4,
1694
  .gy-lg-4 {
1695
    --bs-gutter-y: 1.5rem;
1696
  }
16848 stevensc 1697
 
16825 efrain 1698
  .g-lg-5,
1699
  .gx-lg-5 {
1700
    --bs-gutter-x: 3rem;
1701
  }
16848 stevensc 1702
 
16825 efrain 1703
  .g-lg-5,
1704
  .gy-lg-5 {
1705
    --bs-gutter-y: 3rem;
1706
  }
16848 stevensc 1707
 
16825 efrain 1708
  .g-lg-6,
1709
  .gx-lg-6 {
1710
    --bs-gutter-x: 4.5rem;
1711
  }
16848 stevensc 1712
 
16825 efrain 1713
  .g-lg-6,
1714
  .gy-lg-6 {
1715
    --bs-gutter-y: 4.5rem;
1716
  }
16848 stevensc 1717
 
16825 efrain 1718
  .g-lg-7,
1719
  .gx-lg-7 {
1720
    --bs-gutter-x: 6rem;
1721
  }
16848 stevensc 1722
 
16825 efrain 1723
  .g-lg-7,
1724
  .gy-lg-7 {
1725
    --bs-gutter-y: 6rem;
1726
  }
1727
}
16848 stevensc 1728
 
16825 efrain 1729
@media (min-width: 1200px) {
1730
  .col-xl {
1731
    flex: 1 0 0%;
1732
  }
16848 stevensc 1733
 
1734
  .row-cols-xl-auto>* {
16825 efrain 1735
    flex: 0 0 auto;
1736
    width: auto;
1737
  }
16848 stevensc 1738
 
1739
  .row-cols-xl-1>* {
16825 efrain 1740
    flex: 0 0 auto;
1741
    width: 100%;
1742
  }
16848 stevensc 1743
 
1744
  .row-cols-xl-2>* {
16825 efrain 1745
    flex: 0 0 auto;
1746
    width: 50%;
1747
  }
16848 stevensc 1748
 
1749
  .row-cols-xl-3>* {
16825 efrain 1750
    flex: 0 0 auto;
1751
    width: 33.3333333333%;
1752
  }
16848 stevensc 1753
 
1754
  .row-cols-xl-4>* {
16825 efrain 1755
    flex: 0 0 auto;
1756
    width: 25%;
1757
  }
16848 stevensc 1758
 
1759
  .row-cols-xl-5>* {
16825 efrain 1760
    flex: 0 0 auto;
1761
    width: 20%;
1762
  }
16848 stevensc 1763
 
1764
  .row-cols-xl-6>* {
16825 efrain 1765
    flex: 0 0 auto;
1766
    width: 16.6666666667%;
1767
  }
16848 stevensc 1768
 
16825 efrain 1769
  .col-xl-auto {
1770
    flex: 0 0 auto;
1771
    width: auto;
1772
  }
16848 stevensc 1773
 
16825 efrain 1774
  .col-xl-1 {
1775
    flex: 0 0 auto;
1776
    width: 8.33333333%;
1777
  }
16848 stevensc 1778
 
16825 efrain 1779
  .col-xl-2 {
1780
    flex: 0 0 auto;
1781
    width: 16.66666667%;
1782
  }
16848 stevensc 1783
 
16825 efrain 1784
  .col-xl-3 {
1785
    flex: 0 0 auto;
1786
    width: 25%;
1787
  }
16848 stevensc 1788
 
16825 efrain 1789
  .col-xl-4 {
1790
    flex: 0 0 auto;
1791
    width: 33.33333333%;
1792
  }
16848 stevensc 1793
 
16825 efrain 1794
  .col-xl-5 {
1795
    flex: 0 0 auto;
1796
    width: 41.66666667%;
1797
  }
16848 stevensc 1798
 
16825 efrain 1799
  .col-xl-6 {
1800
    flex: 0 0 auto;
1801
    width: 50%;
1802
  }
16848 stevensc 1803
 
16825 efrain 1804
  .col-xl-7 {
1805
    flex: 0 0 auto;
1806
    width: 58.33333333%;
1807
  }
16848 stevensc 1808
 
16825 efrain 1809
  .col-xl-8 {
1810
    flex: 0 0 auto;
1811
    width: 66.66666667%;
1812
  }
16848 stevensc 1813
 
16825 efrain 1814
  .col-xl-9 {
1815
    flex: 0 0 auto;
1816
    width: 75%;
1817
  }
16848 stevensc 1818
 
16825 efrain 1819
  .col-xl-10 {
1820
    flex: 0 0 auto;
1821
    width: 83.33333333%;
1822
  }
16848 stevensc 1823
 
16825 efrain 1824
  .col-xl-11 {
1825
    flex: 0 0 auto;
1826
    width: 91.66666667%;
1827
  }
16848 stevensc 1828
 
16825 efrain 1829
  .col-xl-12 {
1830
    flex: 0 0 auto;
1831
    width: 100%;
1832
  }
16848 stevensc 1833
 
16825 efrain 1834
  .offset-xl-0 {
1835
    margin-left: 0;
1836
  }
16848 stevensc 1837
 
16825 efrain 1838
  .offset-xl-1 {
1839
    margin-left: 8.33333333%;
1840
  }
16848 stevensc 1841
 
16825 efrain 1842
  .offset-xl-2 {
1843
    margin-left: 16.66666667%;
1844
  }
16848 stevensc 1845
 
16825 efrain 1846
  .offset-xl-3 {
1847
    margin-left: 25%;
1848
  }
16848 stevensc 1849
 
16825 efrain 1850
  .offset-xl-4 {
1851
    margin-left: 33.33333333%;
1852
  }
16848 stevensc 1853
 
16825 efrain 1854
  .offset-xl-5 {
1855
    margin-left: 41.66666667%;
1856
  }
16848 stevensc 1857
 
16825 efrain 1858
  .offset-xl-6 {
1859
    margin-left: 50%;
1860
  }
16848 stevensc 1861
 
16825 efrain 1862
  .offset-xl-7 {
1863
    margin-left: 58.33333333%;
1864
  }
16848 stevensc 1865
 
16825 efrain 1866
  .offset-xl-8 {
1867
    margin-left: 66.66666667%;
1868
  }
16848 stevensc 1869
 
16825 efrain 1870
  .offset-xl-9 {
1871
    margin-left: 75%;
1872
  }
16848 stevensc 1873
 
16825 efrain 1874
  .offset-xl-10 {
1875
    margin-left: 83.33333333%;
1876
  }
16848 stevensc 1877
 
16825 efrain 1878
  .offset-xl-11 {
1879
    margin-left: 91.66666667%;
1880
  }
16848 stevensc 1881
 
16825 efrain 1882
  .g-xl-0,
1883
  .gx-xl-0 {
1884
    --bs-gutter-x: 0;
1885
  }
16848 stevensc 1886
 
16825 efrain 1887
  .g-xl-0,
1888
  .gy-xl-0 {
1889
    --bs-gutter-y: 0;
1890
  }
16848 stevensc 1891
 
16825 efrain 1892
  .g-xl-1,
1893
  .gx-xl-1 {
1894
    --bs-gutter-x: 0.25rem;
1895
  }
16848 stevensc 1896
 
16825 efrain 1897
  .g-xl-1,
1898
  .gy-xl-1 {
1899
    --bs-gutter-y: 0.25rem;
1900
  }
16848 stevensc 1901
 
16825 efrain 1902
  .g-xl-2,
1903
  .gx-xl-2 {
1904
    --bs-gutter-x: 0.5rem;
1905
  }
16848 stevensc 1906
 
16825 efrain 1907
  .g-xl-2,
1908
  .gy-xl-2 {
1909
    --bs-gutter-y: 0.5rem;
1910
  }
16848 stevensc 1911
 
16825 efrain 1912
  .g-xl-3,
1913
  .gx-xl-3 {
1914
    --bs-gutter-x: 1rem;
1915
  }
16848 stevensc 1916
 
16825 efrain 1917
  .g-xl-3,
1918
  .gy-xl-3 {
1919
    --bs-gutter-y: 1rem;
1920
  }
16848 stevensc 1921
 
16825 efrain 1922
  .g-xl-4,
1923
  .gx-xl-4 {
1924
    --bs-gutter-x: 1.5rem;
1925
  }
16848 stevensc 1926
 
16825 efrain 1927
  .g-xl-4,
1928
  .gy-xl-4 {
1929
    --bs-gutter-y: 1.5rem;
1930
  }
16848 stevensc 1931
 
16825 efrain 1932
  .g-xl-5,
1933
  .gx-xl-5 {
1934
    --bs-gutter-x: 3rem;
1935
  }
16848 stevensc 1936
 
16825 efrain 1937
  .g-xl-5,
1938
  .gy-xl-5 {
1939
    --bs-gutter-y: 3rem;
1940
  }
16848 stevensc 1941
 
16825 efrain 1942
  .g-xl-6,
1943
  .gx-xl-6 {
1944
    --bs-gutter-x: 4.5rem;
1945
  }
16848 stevensc 1946
 
16825 efrain 1947
  .g-xl-6,
1948
  .gy-xl-6 {
1949
    --bs-gutter-y: 4.5rem;
1950
  }
16848 stevensc 1951
 
16825 efrain 1952
  .g-xl-7,
1953
  .gx-xl-7 {
1954
    --bs-gutter-x: 6rem;
1955
  }
16848 stevensc 1956
 
16825 efrain 1957
  .g-xl-7,
1958
  .gy-xl-7 {
1959
    --bs-gutter-y: 6rem;
1960
  }
1961
}
16848 stevensc 1962
 
16825 efrain 1963
@media (min-width: 1400px) {
1964
  .col-xxl {
1965
    flex: 1 0 0%;
1966
  }
16848 stevensc 1967
 
1968
  .row-cols-xxl-auto>* {
16825 efrain 1969
    flex: 0 0 auto;
1970
    width: auto;
1971
  }
16848 stevensc 1972
 
1973
  .row-cols-xxl-1>* {
16825 efrain 1974
    flex: 0 0 auto;
1975
    width: 100%;
1976
  }
16848 stevensc 1977
 
1978
  .row-cols-xxl-2>* {
16825 efrain 1979
    flex: 0 0 auto;
1980
    width: 50%;
1981
  }
16848 stevensc 1982
 
1983
  .row-cols-xxl-3>* {
16825 efrain 1984
    flex: 0 0 auto;
1985
    width: 33.3333333333%;
1986
  }
16848 stevensc 1987
 
1988
  .row-cols-xxl-4>* {
16825 efrain 1989
    flex: 0 0 auto;
1990
    width: 25%;
1991
  }
16848 stevensc 1992
 
1993
  .row-cols-xxl-5>* {
16825 efrain 1994
    flex: 0 0 auto;
1995
    width: 20%;
1996
  }
16848 stevensc 1997
 
1998
  .row-cols-xxl-6>* {
16825 efrain 1999
    flex: 0 0 auto;
2000
    width: 16.6666666667%;
2001
  }
16848 stevensc 2002
 
16825 efrain 2003
  .col-xxl-auto {
2004
    flex: 0 0 auto;
2005
    width: auto;
2006
  }
16848 stevensc 2007
 
16825 efrain 2008
  .col-xxl-1 {
2009
    flex: 0 0 auto;
2010
    width: 8.33333333%;
2011
  }
16848 stevensc 2012
 
16825 efrain 2013
  .col-xxl-2 {
2014
    flex: 0 0 auto;
2015
    width: 16.66666667%;
2016
  }
16848 stevensc 2017
 
16825 efrain 2018
  .col-xxl-3 {
2019
    flex: 0 0 auto;
2020
    width: 25%;
2021
  }
16848 stevensc 2022
 
16825 efrain 2023
  .col-xxl-4 {
2024
    flex: 0 0 auto;
2025
    width: 33.33333333%;
2026
  }
16848 stevensc 2027
 
16825 efrain 2028
  .col-xxl-5 {
2029
    flex: 0 0 auto;
2030
    width: 41.66666667%;
2031
  }
16848 stevensc 2032
 
16825 efrain 2033
  .col-xxl-6 {
2034
    flex: 0 0 auto;
2035
    width: 50%;
2036
  }
16848 stevensc 2037
 
16825 efrain 2038
  .col-xxl-7 {
2039
    flex: 0 0 auto;
2040
    width: 58.33333333%;
2041
  }
16848 stevensc 2042
 
16825 efrain 2043
  .col-xxl-8 {
2044
    flex: 0 0 auto;
2045
    width: 66.66666667%;
2046
  }
16848 stevensc 2047
 
16825 efrain 2048
  .col-xxl-9 {
2049
    flex: 0 0 auto;
2050
    width: 75%;
2051
  }
16848 stevensc 2052
 
16825 efrain 2053
  .col-xxl-10 {
2054
    flex: 0 0 auto;
2055
    width: 83.33333333%;
2056
  }
16848 stevensc 2057
 
16825 efrain 2058
  .col-xxl-11 {
2059
    flex: 0 0 auto;
2060
    width: 91.66666667%;
2061
  }
16848 stevensc 2062
 
16825 efrain 2063
  .col-xxl-12 {
2064
    flex: 0 0 auto;
2065
    width: 100%;
2066
  }
16848 stevensc 2067
 
16825 efrain 2068
  .offset-xxl-0 {
2069
    margin-left: 0;
2070
  }
16848 stevensc 2071
 
16825 efrain 2072
  .offset-xxl-1 {
2073
    margin-left: 8.33333333%;
2074
  }
16848 stevensc 2075
 
16825 efrain 2076
  .offset-xxl-2 {
2077
    margin-left: 16.66666667%;
2078
  }
16848 stevensc 2079
 
16825 efrain 2080
  .offset-xxl-3 {
2081
    margin-left: 25%;
2082
  }
16848 stevensc 2083
 
16825 efrain 2084
  .offset-xxl-4 {
2085
    margin-left: 33.33333333%;
2086
  }
16848 stevensc 2087
 
16825 efrain 2088
  .offset-xxl-5 {
2089
    margin-left: 41.66666667%;
2090
  }
16848 stevensc 2091
 
16825 efrain 2092
  .offset-xxl-6 {
2093
    margin-left: 50%;
2094
  }
16848 stevensc 2095
 
16825 efrain 2096
  .offset-xxl-7 {
2097
    margin-left: 58.33333333%;
2098
  }
16848 stevensc 2099
 
16825 efrain 2100
  .offset-xxl-8 {
2101
    margin-left: 66.66666667%;
2102
  }
16848 stevensc 2103
 
16825 efrain 2104
  .offset-xxl-9 {
2105
    margin-left: 75%;
2106
  }
16848 stevensc 2107
 
16825 efrain 2108
  .offset-xxl-10 {
2109
    margin-left: 83.33333333%;
2110
  }
16848 stevensc 2111
 
16825 efrain 2112
  .offset-xxl-11 {
2113
    margin-left: 91.66666667%;
2114
  }
16848 stevensc 2115
 
16825 efrain 2116
  .g-xxl-0,
2117
  .gx-xxl-0 {
2118
    --bs-gutter-x: 0;
2119
  }
16848 stevensc 2120
 
16825 efrain 2121
  .g-xxl-0,
2122
  .gy-xxl-0 {
2123
    --bs-gutter-y: 0;
2124
  }
16848 stevensc 2125
 
16825 efrain 2126
  .g-xxl-1,
2127
  .gx-xxl-1 {
2128
    --bs-gutter-x: 0.25rem;
2129
  }
16848 stevensc 2130
 
16825 efrain 2131
  .g-xxl-1,
2132
  .gy-xxl-1 {
2133
    --bs-gutter-y: 0.25rem;
2134
  }
16848 stevensc 2135
 
16825 efrain 2136
  .g-xxl-2,
2137
  .gx-xxl-2 {
2138
    --bs-gutter-x: 0.5rem;
2139
  }
16848 stevensc 2140
 
16825 efrain 2141
  .g-xxl-2,
2142
  .gy-xxl-2 {
2143
    --bs-gutter-y: 0.5rem;
2144
  }
16848 stevensc 2145
 
16825 efrain 2146
  .g-xxl-3,
2147
  .gx-xxl-3 {
2148
    --bs-gutter-x: 1rem;
2149
  }
16848 stevensc 2150
 
16825 efrain 2151
  .g-xxl-3,
2152
  .gy-xxl-3 {
2153
    --bs-gutter-y: 1rem;
2154
  }
16848 stevensc 2155
 
16825 efrain 2156
  .g-xxl-4,
2157
  .gx-xxl-4 {
2158
    --bs-gutter-x: 1.5rem;
2159
  }
16848 stevensc 2160
 
16825 efrain 2161
  .g-xxl-4,
2162
  .gy-xxl-4 {
2163
    --bs-gutter-y: 1.5rem;
2164
  }
16848 stevensc 2165
 
16825 efrain 2166
  .g-xxl-5,
2167
  .gx-xxl-5 {
2168
    --bs-gutter-x: 3rem;
2169
  }
16848 stevensc 2170
 
16825 efrain 2171
  .g-xxl-5,
2172
  .gy-xxl-5 {
2173
    --bs-gutter-y: 3rem;
2174
  }
16848 stevensc 2175
 
16825 efrain 2176
  .g-xxl-6,
2177
  .gx-xxl-6 {
2178
    --bs-gutter-x: 4.5rem;
2179
  }
16848 stevensc 2180
 
16825 efrain 2181
  .g-xxl-6,
2182
  .gy-xxl-6 {
2183
    --bs-gutter-y: 4.5rem;
2184
  }
16848 stevensc 2185
 
16825 efrain 2186
  .g-xxl-7,
2187
  .gx-xxl-7 {
2188
    --bs-gutter-x: 6rem;
2189
  }
16848 stevensc 2190
 
16825 efrain 2191
  .g-xxl-7,
2192
  .gy-xxl-7 {
2193
    --bs-gutter-y: 6rem;
2194
  }
2195
}
16848 stevensc 2196
 
16825 efrain 2197
.table {
2198
  --bs-table-color: var(--bs-body-color);
2199
  --bs-table-bg: transparent;
2200
  --bs-table-border-color: var(--bs-border-color);
2201
  --bs-table-accent-bg: transparent;
2202
  --bs-table-striped-color: var(--bs-body-color);
2203
  --bs-table-striped-bg: #e9ecef;
2204
  --bs-table-active-color: var(--bs-body-color);
2205
  --bs-table-active-bg: #dee2e6;
2206
  --bs-table-hover-color: var(--bs-body-color);
2207
  --bs-table-hover-bg: #e9ecef;
2208
  width: 100%;
2209
  margin-bottom: 1rem;
2210
  color: var(--bs-table-color);
2211
  vertical-align: top;
2212
  border-color: var(--bs-table-border-color);
2213
}
16848 stevensc 2214
 
2215
.table> :not(caption)>*>* {
16825 efrain 2216
  padding: 0.85rem 0.85rem;
2217
  background-color: var(--bs-table-bg);
2218
  border-bottom-width: 1px;
2219
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2220
}
16848 stevensc 2221
 
2222
.table>tbody {
16825 efrain 2223
  vertical-align: inherit;
2224
}
16848 stevensc 2225
 
2226
.table>thead {
16825 efrain 2227
  vertical-align: bottom;
2228
}
2229
 
2230
.table-group-divider {
2231
  border-top: 2px solid #e9ecef;
2232
}
2233
 
2234
.caption-top {
2235
  caption-side: top;
2236
}
2237
 
16848 stevensc 2238
.table-sm> :not(caption)>*>* {
16825 efrain 2239
  padding: 0.55rem 0.55rem;
2240
}
2241
 
16848 stevensc 2242
.table-bordered> :not(caption)>* {
16825 efrain 2243
  border-width: 1px 0;
2244
}
16848 stevensc 2245
 
2246
.table-bordered> :not(caption)>*>* {
16825 efrain 2247
  border-width: 0 1px;
2248
}
2249
 
16848 stevensc 2250
.table-borderless> :not(caption)>*>* {
16825 efrain 2251
  border-bottom-width: 0;
2252
}
16848 stevensc 2253
 
2254
.table-borderless> :not(:first-child) {
16825 efrain 2255
  border-top-width: 0;
2256
}
2257
 
16848 stevensc 2258
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2259
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2260
  color: var(--bs-table-striped-color);
2261
}
2262
 
16848 stevensc 2263
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2264
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2265
  color: var(--bs-table-striped-color);
2266
}
2267
 
2268
.table-active {
2269
  --bs-table-accent-bg: var(--bs-table-active-bg);
2270
  color: var(--bs-table-active-color);
2271
}
2272
 
16848 stevensc 2273
.table-hover>tbody>tr:hover>* {
16825 efrain 2274
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2275
  color: var(--bs-table-hover-color);
2276
}
2277
 
2278
.table-primary {
2279
  --bs-table-color: #000;
2280
  --bs-table-bg: #e0e3ff;
2281
  --bs-table-border-color: #cacce6;
2282
  --bs-table-striped-bg: #d5d8f2;
2283
  --bs-table-striped-color: #000;
2284
  --bs-table-active-bg: #cacce6;
2285
  --bs-table-active-color: #000;
2286
  --bs-table-hover-bg: #cfd2ec;
2287
  --bs-table-hover-color: #000;
2288
  color: var(--bs-table-color);
2289
  border-color: var(--bs-table-border-color);
2290
}
2291
 
2292
.table-secondary {
2293
  --bs-table-color: #000;
2294
  --bs-table-bg: #e4e7ec;
2295
  --bs-table-border-color: #cdd0d4;
2296
  --bs-table-striped-bg: #d9dbe0;
2297
  --bs-table-striped-color: #000;
2298
  --bs-table-active-bg: #cdd0d4;
2299
  --bs-table-active-color: #000;
2300
  --bs-table-hover-bg: #d3d6da;
2301
  --bs-table-hover-color: #000;
2302
  color: var(--bs-table-color);
2303
  border-color: var(--bs-table-border-color);
2304
}
2305
 
2306
.table-success {
2307
  --bs-table-color: #000;
2308
  --bs-table-bg: #cdeddb;
2309
  --bs-table-border-color: #b9d5c5;
2310
  --bs-table-striped-bg: #c3e1d0;
2311
  --bs-table-striped-color: #000;
2312
  --bs-table-active-bg: #b9d5c5;
2313
  --bs-table-active-color: #000;
2314
  --bs-table-hover-bg: #bedbcb;
2315
  --bs-table-hover-color: #000;
2316
  color: var(--bs-table-color);
2317
  border-color: var(--bs-table-border-color);
2318
}
2319
 
2320
.table-info {
2321
  --bs-table-color: #000;
2322
  --bs-table-bg: #e0f6f6;
2323
  --bs-table-border-color: #cadddd;
2324
  --bs-table-striped-bg: #d5eaea;
2325
  --bs-table-striped-color: #000;
2326
  --bs-table-active-bg: #cadddd;
2327
  --bs-table-active-color: #000;
2328
  --bs-table-hover-bg: #cfe4e4;
2329
  --bs-table-hover-color: #000;
2330
  color: var(--bs-table-color);
2331
  border-color: var(--bs-table-border-color);
2332
}
2333
 
2334
.table-warning {
2335
  --bs-table-color: #000;
2336
  --bs-table-bg: #fef2cd;
2337
  --bs-table-border-color: #e5dab9;
2338
  --bs-table-striped-bg: #f1e6c3;
2339
  --bs-table-striped-color: #000;
2340
  --bs-table-active-bg: #e5dab9;
2341
  --bs-table-active-color: #000;
2342
  --bs-table-hover-bg: #ebe0be;
2343
  --bs-table-hover-color: #000;
2344
  color: var(--bs-table-color);
2345
  border-color: var(--bs-table-border-color);
2346
}
2347
 
2348
.table-danger {
2349
  --bs-table-color: #000;
2350
  --bs-table-bg: #ffd6e0;
2351
  --bs-table-border-color: #e6c1ca;
2352
  --bs-table-striped-bg: #f2cbd5;
2353
  --bs-table-striped-color: #000;
2354
  --bs-table-active-bg: #e6c1ca;
2355
  --bs-table-active-color: #000;
2356
  --bs-table-hover-bg: #ecc6cf;
2357
  --bs-table-hover-color: #000;
2358
  color: var(--bs-table-color);
2359
  border-color: var(--bs-table-border-color);
2360
}
2361
 
2362
.table-light {
2363
  --bs-table-color: #000;
2364
  --bs-table-bg: #e9ecef;
2365
  --bs-table-border-color: #d2d4d7;
2366
  --bs-table-striped-bg: #dde0e3;
2367
  --bs-table-striped-color: #000;
2368
  --bs-table-active-bg: #d2d4d7;
2369
  --bs-table-active-color: #000;
2370
  --bs-table-hover-bg: #d8dadd;
2371
  --bs-table-hover-color: #000;
2372
  color: var(--bs-table-color);
2373
  border-color: var(--bs-table-border-color);
2374
}
2375
 
2376
.table-dark {
2377
  --bs-table-color: #fff;
2378
  --bs-table-bg: #060c17;
2379
  --bs-table-border-color: #1f242e;
2380
  --bs-table-striped-bg: #121823;
2381
  --bs-table-striped-color: #fff;
2382
  --bs-table-active-bg: #1f242e;
2383
  --bs-table-active-color: #fff;
2384
  --bs-table-hover-bg: #191e28;
2385
  --bs-table-hover-color: #fff;
2386
  color: var(--bs-table-color);
2387
  border-color: var(--bs-table-border-color);
2388
}
2389
 
2390
.table-responsive {
2391
  overflow-x: auto;
2392
  -webkit-overflow-scrolling: touch;
2393
}
2394
 
2395
@media (max-width: 575.98px) {
2396
  .table-responsive-sm {
2397
    overflow-x: auto;
2398
    -webkit-overflow-scrolling: touch;
2399
  }
2400
}
16848 stevensc 2401
 
16825 efrain 2402
@media (max-width: 767.98px) {
2403
  .table-responsive-md {
2404
    overflow-x: auto;
2405
    -webkit-overflow-scrolling: touch;
2406
  }
2407
}
16848 stevensc 2408
 
16825 efrain 2409
@media (max-width: 991.98px) {
2410
  .table-responsive-lg {
2411
    overflow-x: auto;
2412
    -webkit-overflow-scrolling: touch;
2413
  }
2414
}
16848 stevensc 2415
 
16825 efrain 2416
@media (max-width: 1199.98px) {
2417
  .table-responsive-xl {
2418
    overflow-x: auto;
2419
    -webkit-overflow-scrolling: touch;
2420
  }
2421
}
16848 stevensc 2422
 
16825 efrain 2423
@media (max-width: 1399.98px) {
2424
  .table-responsive-xxl {
2425
    overflow-x: auto;
2426
    -webkit-overflow-scrolling: touch;
2427
  }
2428
}
16848 stevensc 2429
 
16825 efrain 2430
.form-label {
2431
  margin-bottom: 0.5rem;
2432
}
2433
 
2434
.col-form-label {
2435
  padding-top: calc(0.469rem + 1px);
2436
  padding-bottom: calc(0.469rem + 1px);
2437
  margin-bottom: 0;
2438
  font-size: inherit;
2439
  line-height: 1.5;
2440
}
2441
 
2442
.col-form-label-lg {
2443
  padding-top: calc(0.5rem + 1px);
2444
  padding-bottom: calc(0.5rem + 1px);
2445
  font-size: 1rem;
2446
}
2447
 
2448
.col-form-label-sm {
2449
  padding-top: calc(0.391rem + 1px);
2450
  padding-bottom: calc(0.391rem + 1px);
2451
  font-size: 0.812rem;
2452
}
2453
 
2454
.form-text {
2455
  margin-top: 0.25rem;
2456
  font-size: 0.875em;
2457
  color: #7987a1;
2458
}
2459
 
16848 stevensc 2460
.form-control,
2461
.typeahead.tt-input,
2462
.typeahead.tt-hint,
2463
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2464
  display: block;
2465
  width: 100%;
2466
  padding: 0.469rem 0.8rem;
2467
  font-size: 0.875rem;
2468
  font-weight: 400;
2469
  line-height: 1.5;
2470
  color: #000;
2471
  background-color: #fff;
2472
  background-clip: padding-box;
2473
  border: 1px solid #e9ecef;
2474
  appearance: none;
2475
  border-radius: 0.25rem;
2476
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2477
}
16848 stevensc 2478
 
16825 efrain 2479
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2480
 
2481
  .form-control,
2482
  .typeahead.tt-input,
2483
  .typeahead.tt-hint,
2484
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2485
    transition: none;
2486
  }
2487
}
16848 stevensc 2488
 
2489
.form-control[type=file],
2490
[type=file].typeahead.tt-input,
2491
[type=file].typeahead.tt-hint,
2492
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2493
  overflow: hidden;
2494
}
16848 stevensc 2495
 
2496
.form-control[type=file]:not(:disabled):not([readonly]),
2497
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2498
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2499
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2500
  cursor: pointer;
2501
}
16848 stevensc 2502
 
2503
.form-control:focus,
2504
.typeahead.tt-input:focus,
2505
.typeahead.tt-hint:focus,
2506
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2507
  color: #000;
2508
  background-color: #fff;
2509
  border-color: #cbd1db;
2510
  outline: 0;
2511
  box-shadow: none;
2512
}
16848 stevensc 2513
 
2514
.form-control::-webkit-date-and-time-value,
2515
.typeahead.tt-input::-webkit-date-and-time-value,
2516
.typeahead.tt-hint::-webkit-date-and-time-value,
2517
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2518
  height: 1.5em;
2519
}
16848 stevensc 2520
 
2521
.form-control::placeholder,
2522
.typeahead.tt-input::placeholder,
2523
.typeahead.tt-hint::placeholder,
2524
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2525
  color: #aeb7c5;
2526
  opacity: 1;
2527
}
16848 stevensc 2528
 
2529
.form-control:disabled,
2530
.typeahead.tt-input:disabled,
2531
.typeahead.tt-hint:disabled,
2532
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2533
  background-color: #e9ecef;
2534
  opacity: 1;
2535
}
16848 stevensc 2536
 
2537
.form-control::file-selector-button,
2538
.typeahead.tt-input::file-selector-button,
2539
.typeahead.tt-hint::file-selector-button,
2540
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2541
  padding: 0.469rem 0.8rem;
2542
  margin: -0.469rem -0.8rem;
2543
  margin-inline-end: 0.8rem;
2544
  color: #000;
2545
  background-color: #f8f9fa;
2546
  pointer-events: none;
2547
  border-color: inherit;
2548
  border-style: solid;
2549
  border-width: 0;
2550
  border-inline-end-width: 1px;
2551
  border-radius: 0;
2552
  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;
2553
}
16848 stevensc 2554
 
16825 efrain 2555
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2556
 
2557
  .form-control::file-selector-button,
2558
  .typeahead.tt-input::file-selector-button,
2559
  .typeahead.tt-hint::file-selector-button,
2560
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2561
    transition: none;
2562
  }
2563
}
16848 stevensc 2564
 
2565
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2566
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2567
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2568
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2569
  background-color: #ecedee;
2570
}
2571
 
2572
.form-control-plaintext {
2573
  display: block;
2574
  width: 100%;
2575
  padding: 0.469rem 0;
2576
  margin-bottom: 0;
2577
  line-height: 1.5;
2578
  color: #000;
2579
  background-color: transparent;
2580
  border: solid transparent;
2581
  border-width: 1px 0;
2582
}
16848 stevensc 2583
 
16825 efrain 2584
.form-control-plaintext:focus {
2585
  outline: 0;
2586
}
16848 stevensc 2587
 
2588
.form-control-plaintext.form-control-sm,
2589
.form-control-plaintext.form-control-lg {
16825 efrain 2590
  padding-right: 0;
2591
  padding-left: 0;
2592
}
2593
 
2594
.form-control-sm {
2595
  min-height: calc(1.5em + 0.782rem + 2px);
2596
  padding: 0.391rem 0.8rem;
2597
  font-size: 0.812rem;
2598
  border-radius: 0.25rem;
2599
}
16848 stevensc 2600
 
16825 efrain 2601
.form-control-sm::file-selector-button {
2602
  padding: 0.391rem 0.8rem;
2603
  margin: -0.391rem -0.8rem;
2604
  margin-inline-end: 0.8rem;
2605
}
2606
 
2607
.form-control-lg {
2608
  min-height: calc(1.5em + 1rem + 2px);
2609
  padding: 0.5rem 0.8rem;
2610
  font-size: 1rem;
2611
  border-radius: 0.25rem;
2612
}
16848 stevensc 2613
 
16825 efrain 2614
.form-control-lg::file-selector-button {
2615
  padding: 0.5rem 0.8rem;
2616
  margin: -0.5rem -0.8rem;
2617
  margin-inline-end: 0.8rem;
2618
}
2619
 
16848 stevensc 2620
textarea.form-control,
2621
textarea.typeahead.tt-input,
2622
textarea.typeahead.tt-hint,
2623
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2624
  min-height: calc(1.5em + 0.938rem + 2px);
2625
}
16848 stevensc 2626
 
16825 efrain 2627
textarea.form-control-sm {
2628
  min-height: calc(1.5em + 0.782rem + 2px);
2629
}
16848 stevensc 2630
 
16825 efrain 2631
textarea.form-control-lg {
2632
  min-height: calc(1.5em + 1rem + 2px);
2633
}
2634
 
2635
.form-control-color {
2636
  width: 3rem;
2637
  height: calc(1.5em + 0.938rem + 2px);
2638
  padding: 0.469rem;
2639
}
16848 stevensc 2640
 
16825 efrain 2641
.form-control-color:not(:disabled):not([readonly]) {
2642
  cursor: pointer;
2643
}
16848 stevensc 2644
 
16825 efrain 2645
.form-control-color::-moz-color-swatch {
2646
  border: 0 !important;
2647
  border-radius: 0.25rem;
2648
}
16848 stevensc 2649
 
16825 efrain 2650
.form-control-color::-webkit-color-swatch {
2651
  border-radius: 0.25rem;
2652
}
16848 stevensc 2653
 
16825 efrain 2654
.form-control-color.form-control-sm {
2655
  height: calc(1.5em + 0.782rem + 2px);
2656
}
16848 stevensc 2657
 
16825 efrain 2658
.form-control-color.form-control-lg {
2659
  height: calc(1.5em + 1rem + 2px);
2660
}
2661
 
2662
.form-select {
2663
  display: block;
2664
  width: 100%;
2665
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2666
  -moz-padding-start: calc(0.8rem - 3px);
2667
  font-size: 0.875rem;
2668
  font-weight: 400;
2669
  line-height: 1.5;
2670
  color: #000;
2671
  background-color: #fff;
2672
  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");
2673
  background-repeat: no-repeat;
2674
  background-position: right 0.8rem center;
2675
  background-size: 16px 12px;
2676
  border: 1px solid #e9ecef;
2677
  border-radius: 0.25rem;
2678
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2679
  appearance: none;
2680
}
16848 stevensc 2681
 
16825 efrain 2682
@media (prefers-reduced-motion: reduce) {
2683
  .form-select {
2684
    transition: none;
2685
  }
2686
}
16848 stevensc 2687
 
16825 efrain 2688
.form-select:focus {
2689
  border-color: #cbd1db;
2690
  outline: 0;
2691
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2692
}
16848 stevensc 2693
 
2694
.form-select[multiple],
2695
.form-select[size]:not([size="1"]) {
16825 efrain 2696
  padding-right: 0.8rem;
2697
  background-image: none;
2698
}
16848 stevensc 2699
 
16825 efrain 2700
.form-select:disabled {
2701
  background-color: #e9ecef;
2702
}
16848 stevensc 2703
 
16825 efrain 2704
.form-select:-moz-focusring {
2705
  color: transparent;
2706
  text-shadow: 0 0 0 #000;
2707
}
2708
 
2709
.form-select-sm {
2710
  padding-top: 0.391rem;
2711
  padding-bottom: 0.391rem;
2712
  padding-left: 0.8rem;
2713
  font-size: 0.812rem;
2714
  border-radius: 0.25rem;
2715
}
2716
 
2717
.form-select-lg {
2718
  padding-top: 0.5rem;
2719
  padding-bottom: 0.5rem;
2720
  padding-left: 0.8rem;
2721
  font-size: 1rem;
2722
  border-radius: 0.25rem;
2723
}
2724
 
2725
.form-check {
2726
  display: block;
2727
  min-height: 1.3125rem;
2728
  padding-left: 1.8em;
2729
  margin-bottom: 0.125rem;
2730
}
16848 stevensc 2731
 
16825 efrain 2732
.form-check .form-check-input {
2733
  float: left;
2734
  margin-left: -1.8em;
2735
}
2736
 
2737
.form-check-reverse {
2738
  padding-right: 1.8em;
2739
  padding-left: 0;
2740
  text-align: right;
2741
}
16848 stevensc 2742
 
16825 efrain 2743
.form-check-reverse .form-check-input {
2744
  float: right;
2745
  margin-right: -1.8em;
2746
  margin-left: 0;
2747
}
2748
 
2749
.form-check-input {
2750
  width: 1.3em;
2751
  height: 1.3em;
2752
  margin-top: 0.1em;
2753
  vertical-align: top;
2754
  background-color: #fff;
2755
  background-repeat: no-repeat;
2756
  background-position: center;
2757
  background-size: contain;
2758
  border: 1px solid rgba(0, 0, 0, 0.25);
2759
  appearance: none;
2760
  print-color-adjust: exact;
2761
}
16848 stevensc 2762
 
16825 efrain 2763
.form-check-input[type=checkbox] {
2764
  border-radius: 0.15em;
2765
}
16848 stevensc 2766
 
16825 efrain 2767
.form-check-input[type=radio] {
2768
  border-radius: 50%;
2769
}
16848 stevensc 2770
 
16825 efrain 2771
.form-check-input:active {
2772
  filter: brightness(90%);
2773
}
16848 stevensc 2774
 
16825 efrain 2775
.form-check-input:focus {
2776
  border-color: #cbd1db;
2777
  outline: 0;
2778
  box-shadow: none;
2779
}
16848 stevensc 2780
 
16825 efrain 2781
.form-check-input:checked {
2782
  background-color: #6571ff;
2783
  border-color: #6571ff;
2784
}
16848 stevensc 2785
 
16825 efrain 2786
.form-check-input:checked[type=checkbox] {
2787
  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");
2788
}
16848 stevensc 2789
 
16825 efrain 2790
.form-check-input:checked[type=radio] {
2791
  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");
2792
}
16848 stevensc 2793
 
16825 efrain 2794
.form-check-input[type=checkbox]:indeterminate {
2795
  background-color: #6571ff;
2796
  border-color: #6571ff;
2797
  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");
2798
}
16848 stevensc 2799
 
16825 efrain 2800
.form-check-input:disabled {
2801
  pointer-events: none;
2802
  filter: none;
2803
  opacity: 0.5;
2804
}
16848 stevensc 2805
 
2806
.form-check-input[disabled]~.form-check-label,
2807
.form-check-input:disabled~.form-check-label {
16825 efrain 2808
  cursor: default;
2809
  opacity: 0.5;
2810
}
2811
 
2812
.form-switch {
2813
  padding-left: 2.5em;
2814
}
16848 stevensc 2815
 
16825 efrain 2816
.form-switch .form-check-input {
2817
  width: 2em;
2818
  margin-left: -2.5em;
2819
  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");
2820
  background-position: left center;
2821
  border-radius: 2em;
2822
  transition: background-position 0.15s ease-in-out;
2823
}
16848 stevensc 2824
 
16825 efrain 2825
@media (prefers-reduced-motion: reduce) {
2826
  .form-switch .form-check-input {
2827
    transition: none;
2828
  }
2829
}
16848 stevensc 2830
 
16825 efrain 2831
.form-switch .form-check-input:focus {
2832
  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");
2833
}
16848 stevensc 2834
 
16825 efrain 2835
.form-switch .form-check-input:checked {
2836
  background-position: right center;
2837
  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");
2838
}
16848 stevensc 2839
 
16825 efrain 2840
.form-switch.form-check-reverse {
2841
  padding-right: 2.5em;
2842
  padding-left: 0;
2843
}
16848 stevensc 2844
 
16825 efrain 2845
.form-switch.form-check-reverse .form-check-input {
2846
  margin-right: -2.5em;
2847
  margin-left: 0;
2848
}
2849
 
2850
.form-check-inline {
2851
  display: inline-block;
2852
  margin-right: 1rem;
2853
}
2854
 
2855
.btn-check {
2856
  position: absolute;
2857
  clip: rect(0, 0, 0, 0);
2858
  pointer-events: none;
2859
}
16848 stevensc 2860
 
2861
.btn-check[disabled]+.btn,
2862
.wizard>.actions .btn-check[disabled]+a,
2863
div.tox .btn-check[disabled]+.tox-button,
2864
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2865
.fc .btn-check[disabled]+.fc-button-primary,
2866
.btn-check:disabled+.btn,
2867
.wizard>.actions .btn-check:disabled+a,
2868
div.tox .btn-check:disabled+.tox-button,
2869
.swal2-popup .swal2-actions .btn-check:disabled+button,
2870
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2871
  pointer-events: none;
2872
  filter: none;
2873
  opacity: 0.65;
2874
}
2875
 
2876
.form-range {
2877
  width: 100%;
2878
  height: 1rem;
2879
  padding: 0;
2880
  background-color: transparent;
2881
  appearance: none;
2882
}
16848 stevensc 2883
 
16825 efrain 2884
.form-range:focus {
2885
  outline: 0;
2886
}
16848 stevensc 2887
 
16825 efrain 2888
.form-range:focus::-webkit-slider-thumb {
2889
  box-shadow: 0 0 0 1px #f9fafb, none;
2890
}
16848 stevensc 2891
 
16825 efrain 2892
.form-range:focus::-moz-range-thumb {
2893
  box-shadow: 0 0 0 1px #f9fafb, none;
2894
}
16848 stevensc 2895
 
16825 efrain 2896
.form-range::-moz-focus-outer {
2897
  border: 0;
2898
}
16848 stevensc 2899
 
16825 efrain 2900
.form-range::-webkit-slider-thumb {
2901
  width: 1rem;
2902
  height: 1rem;
2903
  margin-top: -0.25rem;
2904
  background-color: #6571ff;
2905
  border: 0;
2906
  border-radius: 1rem;
2907
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2908
  appearance: none;
2909
}
16848 stevensc 2910
 
16825 efrain 2911
@media (prefers-reduced-motion: reduce) {
2912
  .form-range::-webkit-slider-thumb {
2913
    transition: none;
2914
  }
2915
}
16848 stevensc 2916
 
16825 efrain 2917
.form-range::-webkit-slider-thumb:active {
2918
  background-color: #d1d4ff;
2919
}
16848 stevensc 2920
 
16825 efrain 2921
.form-range::-webkit-slider-runnable-track {
2922
  width: 100%;
2923
  height: 0.5rem;
2924
  color: transparent;
2925
  cursor: pointer;
2926
  background-color: #dee2e6;
2927
  border-color: transparent;
2928
  border-radius: 1rem;
2929
}
16848 stevensc 2930
 
16825 efrain 2931
.form-range::-moz-range-thumb {
2932
  width: 1rem;
2933
  height: 1rem;
2934
  background-color: #6571ff;
2935
  border: 0;
2936
  border-radius: 1rem;
2937
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2938
  appearance: none;
2939
}
16848 stevensc 2940
 
16825 efrain 2941
@media (prefers-reduced-motion: reduce) {
2942
  .form-range::-moz-range-thumb {
2943
    transition: none;
2944
  }
2945
}
16848 stevensc 2946
 
16825 efrain 2947
.form-range::-moz-range-thumb:active {
2948
  background-color: #d1d4ff;
2949
}
16848 stevensc 2950
 
16825 efrain 2951
.form-range::-moz-range-track {
2952
  width: 100%;
2953
  height: 0.5rem;
2954
  color: transparent;
2955
  cursor: pointer;
2956
  background-color: #dee2e6;
2957
  border-color: transparent;
2958
  border-radius: 1rem;
2959
}
16848 stevensc 2960
 
16825 efrain 2961
.form-range:disabled {
2962
  pointer-events: none;
2963
}
16848 stevensc 2964
 
16825 efrain 2965
.form-range:disabled::-webkit-slider-thumb {
2966
  background-color: #aeb7c5;
2967
}
16848 stevensc 2968
 
16825 efrain 2969
.form-range:disabled::-moz-range-thumb {
2970
  background-color: #aeb7c5;
2971
}
2972
 
2973
.form-floating {
2974
  position: relative;
2975
}
16848 stevensc 2976
 
2977
.form-floating>.form-control,
2978
.form-floating>.typeahead.tt-input,
2979
.form-floating>.typeahead.tt-hint,
2980
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2981
.form-floating>.form-control-plaintext,
2982
.form-floating>.form-select {
16825 efrain 2983
  height: calc(3.5rem + 2px);
2984
  line-height: 1.25;
2985
}
16848 stevensc 2986
 
2987
.form-floating>label {
16825 efrain 2988
  position: absolute;
2989
  top: 0;
2990
  left: 0;
2991
  width: 100%;
2992
  height: 100%;
2993
  padding: 1rem 0.8rem;
2994
  overflow: hidden;
2995
  text-align: start;
2996
  text-overflow: ellipsis;
2997
  white-space: nowrap;
2998
  pointer-events: none;
2999
  border: 1px solid transparent;
3000
  transform-origin: 0 0;
3001
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
3002
}
16848 stevensc 3003
 
16825 efrain 3004
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3005
  .form-floating>label {
16825 efrain 3006
    transition: none;
3007
  }
3008
}
16848 stevensc 3009
 
3010
.form-floating>.form-control,
3011
.form-floating>.typeahead.tt-input,
3012
.form-floating>.typeahead.tt-hint,
3013
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
3014
.form-floating>.form-control-plaintext {
16825 efrain 3015
  padding: 1rem 0.8rem;
3016
}
16848 stevensc 3017
 
3018
.form-floating>.form-control::placeholder,
3019
.form-floating>.typeahead.tt-input::placeholder,
3020
.form-floating>.typeahead.tt-hint::placeholder,
3021
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
3022
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 3023
  color: transparent;
3024
}
16848 stevensc 3025
 
3026
.form-floating>.form-control:focus,
3027
.form-floating>.typeahead.tt-input:focus,
3028
.form-floating>.typeahead.tt-hint:focus,
3029
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
3030
.form-floating>.form-control:not(:placeholder-shown),
3031
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
3032
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
3033
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3034
.form-floating>.form-control-plaintext:focus,
3035
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3036
  padding-top: 1.625rem;
3037
  padding-bottom: 0.625rem;
3038
}
16848 stevensc 3039
 
3040
.form-floating>.form-control:-webkit-autofill,
3041
.form-floating>.typeahead.tt-input:-webkit-autofill,
3042
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3043
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3044
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3045
  padding-top: 1.625rem;
3046
  padding-bottom: 0.625rem;
3047
}
16848 stevensc 3048
 
3049
.form-floating>.form-select {
16825 efrain 3050
  padding-top: 1.625rem;
3051
  padding-bottom: 0.625rem;
3052
}
16848 stevensc 3053
 
3054
.form-floating>.form-control:focus~label,
3055
.form-floating>.typeahead.tt-input:focus~label,
3056
.form-floating>.typeahead.tt-hint:focus~label,
3057
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3058
.form-floating>.form-control:not(:placeholder-shown)~label,
3059
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3060
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3061
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3062
.form-floating>.form-control-plaintext~label,
3063
.form-floating>.form-select~label {
16825 efrain 3064
  opacity: 0.65;
3065
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3066
}
16848 stevensc 3067
 
3068
.form-floating>.form-control:-webkit-autofill~label,
3069
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3070
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3071
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3072
  opacity: 0.65;
3073
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3074
}
16848 stevensc 3075
 
3076
.form-floating>.form-control-plaintext~label {
16825 efrain 3077
  border-width: 1px 0;
3078
}
3079
 
3080
.input-group {
3081
  position: relative;
3082
  display: flex;
3083
  flex-wrap: wrap;
3084
  align-items: stretch;
3085
  width: 100%;
3086
}
16848 stevensc 3087
 
3088
.input-group>.form-control,
3089
.input-group>.typeahead.tt-input,
3090
.input-group>.typeahead.tt-hint,
3091
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3092
.input-group>.form-select,
3093
.input-group>.form-floating {
16825 efrain 3094
  position: relative;
3095
  flex: 1 1 auto;
3096
  width: 1%;
3097
  min-width: 0;
3098
}
16848 stevensc 3099
 
3100
.input-group>.form-control:focus,
3101
.input-group>.typeahead.tt-input:focus,
3102
.input-group>.typeahead.tt-hint:focus,
3103
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3104
.input-group>.form-select:focus,
3105
.input-group>.form-floating:focus-within {
16825 efrain 3106
  z-index: 5;
3107
}
16848 stevensc 3108
 
3109
.input-group .btn,
3110
.input-group .wizard>.actions a,
3111
.wizard>.actions .input-group a,
3112
.input-group div.tox .tox-button,
3113
div.tox .input-group .tox-button,
3114
.input-group .swal2-popup .swal2-actions button,
3115
.swal2-popup .swal2-actions .input-group button,
3116
.input-group .fc .fc-button-primary,
3117
.fc .input-group .fc-button-primary {
16825 efrain 3118
  position: relative;
3119
  z-index: 2;
3120
}
16848 stevensc 3121
 
3122
.input-group .btn:focus,
3123
.input-group .wizard>.actions a:focus,
3124
.wizard>.actions .input-group a:focus,
3125
.input-group div.tox .tox-button:focus,
3126
div.tox .input-group .tox-button:focus,
3127
.input-group .swal2-popup .swal2-actions button:focus,
3128
.swal2-popup .swal2-actions .input-group button:focus,
3129
.input-group .fc .fc-button-primary:focus,
3130
.fc .input-group .fc-button-primary:focus {
16825 efrain 3131
  z-index: 5;
3132
}
3133
 
3134
.input-group-text {
3135
  display: flex;
3136
  align-items: center;
3137
  padding: 0.469rem 0.563rem;
3138
  font-size: 0.875rem;
3139
  font-weight: 400;
3140
  line-height: 1.5;
3141
  color: #000;
3142
  text-align: center;
3143
  white-space: nowrap;
3144
  background-color: #f8f9fa;
3145
  border: 1px solid #e9ecef;
3146
  border-radius: 0.25rem;
3147
}
3148
 
16848 stevensc 3149
.input-group-lg>.form-control,
3150
.input-group-lg>.typeahead.tt-input,
3151
.input-group-lg>.typeahead.tt-hint,
3152
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3153
.input-group-lg>.form-select,
3154
.input-group-lg>.input-group-text,
3155
.input-group-lg>.btn,
3156
.wizard>.actions .input-group-lg>a,
3157
div.tox .input-group-lg>.tox-button,
3158
.swal2-popup .swal2-actions .input-group-lg>button,
3159
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3160
  padding: 0.5rem 0.8rem;
3161
  font-size: 1rem;
3162
  border-radius: 0.25rem;
3163
}
3164
 
16848 stevensc 3165
.input-group-sm>.form-control,
3166
.input-group-sm>.typeahead.tt-input,
3167
.input-group-sm>.typeahead.tt-hint,
3168
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3169
.input-group-sm>.form-select,
3170
.input-group-sm>.input-group-text,
3171
.input-group-sm>.btn,
3172
.wizard>.actions .input-group-sm>a,
3173
div.tox .input-group-sm>.tox-button,
3174
.swal2-popup .swal2-actions .input-group-sm>button,
3175
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3176
  padding: 0.391rem 0.8rem;
3177
  font-size: 0.812rem;
3178
  border-radius: 0.25rem;
3179
}
3180
 
16848 stevensc 3181
.input-group-lg>.form-select,
3182
.input-group-sm>.form-select {
16825 efrain 3183
  padding-right: 3.2rem;
3184
}
3185
 
16848 stevensc 3186
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3187
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3188
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3189
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3190
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3191
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3192
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3193
  border-top-right-radius: 0;
3194
  border-bottom-right-radius: 0;
3195
}
16848 stevensc 3196
 
3197
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3198
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3199
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3200
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3201
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3202
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3203
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3204
  border-top-right-radius: 0;
3205
  border-bottom-right-radius: 0;
3206
}
16848 stevensc 3207
 
3208
.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 3209
  margin-left: -1px;
3210
  border-top-left-radius: 0;
3211
  border-bottom-left-radius: 0;
3212
}
16848 stevensc 3213
 
3214
.input-group>.form-floating:not(:first-child)>.form-control,
3215
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3216
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3217
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3218
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3219
  border-top-left-radius: 0;
3220
  border-bottom-left-radius: 0;
3221
}
3222
 
3223
.valid-feedback {
3224
  display: none;
3225
  width: 100%;
3226
  margin-top: 0.25rem;
3227
  font-size: 0.875em;
3228
  color: #05a34a;
3229
}
3230
 
3231
.valid-tooltip {
3232
  position: absolute;
3233
  top: 100%;
3234
  z-index: 5;
3235
  display: none;
3236
  max-width: 100%;
3237
  padding: 0.25rem 0.5rem;
3238
  margin-top: 0.1rem;
3239
  font-size: 0.812rem;
3240
  color: #fff;
3241
  background-color: rgba(5, 163, 74, 0.9);
3242
  border-radius: 0.25rem;
3243
}
3244
 
16848 stevensc 3245
.was-validated :valid~.valid-feedback,
3246
.was-validated :valid~.valid-tooltip,
3247
.is-valid~.valid-feedback,
3248
.is-valid~.valid-tooltip {
16825 efrain 3249
  display: block;
3250
}
3251
 
16848 stevensc 3252
.was-validated .form-control:valid,
3253
.was-validated .typeahead.tt-input:valid,
3254
.was-validated .typeahead.tt-hint:valid,
3255
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3256
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3257
.form-control.is-valid,
3258
.is-valid.typeahead.tt-input,
3259
.is-valid.typeahead.tt-hint,
3260
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3261
  border-color: #05a34a;
3262
  padding-right: calc(1.5em + 0.938rem);
3263
  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");
3264
  background-repeat: no-repeat;
3265
  background-position: right calc(0.375em + 0.2345rem) center;
3266
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3267
}
16848 stevensc 3268
 
3269
.was-validated .form-control:valid:focus,
3270
.was-validated .typeahead.tt-input:valid:focus,
3271
.was-validated .typeahead.tt-hint:valid:focus,
3272
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3273
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3274
.form-control.is-valid:focus,
3275
.is-valid.typeahead.tt-input:focus,
3276
.is-valid.typeahead.tt-hint:focus,
3277
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3278
  border-color: #05a34a;
3279
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3280
}
3281
 
16848 stevensc 3282
.was-validated textarea.form-control:valid,
3283
.was-validated textarea.typeahead.tt-input:valid,
3284
.was-validated textarea.typeahead.tt-hint:valid,
3285
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3286
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3287
textarea.form-control.is-valid,
3288
textarea.is-valid.typeahead.tt-input,
3289
textarea.is-valid.typeahead.tt-hint,
3290
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3291
  padding-right: calc(1.5em + 0.938rem);
3292
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3293
}
3294
 
16848 stevensc 3295
.was-validated .form-select:valid,
3296
.form-select.is-valid {
16825 efrain 3297
  border-color: #05a34a;
3298
}
16848 stevensc 3299
 
3300
.was-validated .form-select:valid:not([multiple]):not([size]),
3301
.was-validated .form-select:valid:not([multiple])[size="1"],
3302
.form-select.is-valid:not([multiple]):not([size]),
3303
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3304
  padding-right: 4.4rem;
3305
  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");
3306
  background-position: right 0.8rem center, center right 2.4rem;
3307
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3308
}
16848 stevensc 3309
 
3310
.was-validated .form-select:valid:focus,
3311
.form-select.is-valid:focus {
16825 efrain 3312
  border-color: #05a34a;
3313
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3314
}
3315
 
16848 stevensc 3316
.was-validated .form-control-color:valid,
3317
.form-control-color.is-valid {
16825 efrain 3318
  width: calc(3rem + calc(1.5em + 0.938rem));
3319
}
3320
 
16848 stevensc 3321
.was-validated .form-check-input:valid,
3322
.form-check-input.is-valid {
16825 efrain 3323
  border-color: #05a34a;
3324
}
16848 stevensc 3325
 
3326
.was-validated .form-check-input:valid:checked,
3327
.form-check-input.is-valid:checked {
16825 efrain 3328
  background-color: #05a34a;
3329
}
16848 stevensc 3330
 
3331
.was-validated .form-check-input:valid:focus,
3332
.form-check-input.is-valid:focus {
16825 efrain 3333
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3334
}
16848 stevensc 3335
 
3336
.was-validated .form-check-input:valid~.form-check-label,
3337
.form-check-input.is-valid~.form-check-label {
16825 efrain 3338
  color: #05a34a;
3339
}
3340
 
16848 stevensc 3341
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3342
  margin-left: 0.5em;
3343
}
3344
 
16848 stevensc 3345
.was-validated .input-group>.form-control:not(:focus):valid,
3346
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3347
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3348
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3349
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3350
.input-group>.form-control:not(:focus).is-valid,
3351
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3352
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3353
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3354
.was-validated .input-group>.form-select:not(:focus):valid,
3355
.input-group>.form-select:not(:focus).is-valid,
3356
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3357
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3358
  z-index: 3;
3359
}
3360
 
3361
.invalid-feedback {
3362
  display: none;
3363
  width: 100%;
3364
  margin-top: 0.25rem;
3365
  font-size: 0.875em;
3366
  color: #ff3366;
3367
}
3368
 
3369
.invalid-tooltip {
3370
  position: absolute;
3371
  top: 100%;
3372
  z-index: 5;
3373
  display: none;
3374
  max-width: 100%;
3375
  padding: 0.25rem 0.5rem;
3376
  margin-top: 0.1rem;
3377
  font-size: 0.812rem;
3378
  color: #fff;
3379
  background-color: rgba(255, 51, 102, 0.9);
3380
  border-radius: 0.25rem;
3381
}
3382
 
16848 stevensc 3383
.was-validated :invalid~.invalid-feedback,
3384
.was-validated :invalid~.invalid-tooltip,
3385
.is-invalid~.invalid-feedback,
3386
.is-invalid~.invalid-tooltip {
16825 efrain 3387
  display: block;
3388
}
3389
 
16848 stevensc 3390
.was-validated .form-control:invalid,
3391
.was-validated .typeahead.tt-input:invalid,
3392
.was-validated .typeahead.tt-hint:invalid,
3393
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3394
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3395
.form-control.is-invalid,
3396
.is-invalid.typeahead.tt-input,
3397
.is-invalid.typeahead.tt-hint,
3398
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3399
  border-color: #ff3366;
3400
  padding-right: calc(1.5em + 0.938rem);
3401
  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");
3402
  background-repeat: no-repeat;
3403
  background-position: right calc(0.375em + 0.2345rem) center;
3404
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3405
}
16848 stevensc 3406
 
3407
.was-validated .form-control:invalid:focus,
3408
.was-validated .typeahead.tt-input:invalid:focus,
3409
.was-validated .typeahead.tt-hint:invalid:focus,
3410
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3411
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3412
.form-control.is-invalid:focus,
3413
.is-invalid.typeahead.tt-input:focus,
3414
.is-invalid.typeahead.tt-hint:focus,
3415
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3416
  border-color: #ff3366;
3417
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3418
}
3419
 
16848 stevensc 3420
.was-validated textarea.form-control:invalid,
3421
.was-validated textarea.typeahead.tt-input:invalid,
3422
.was-validated textarea.typeahead.tt-hint:invalid,
3423
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3424
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3425
textarea.form-control.is-invalid,
3426
textarea.is-invalid.typeahead.tt-input,
3427
textarea.is-invalid.typeahead.tt-hint,
3428
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3429
  padding-right: calc(1.5em + 0.938rem);
3430
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3431
}
3432
 
16848 stevensc 3433
.was-validated .form-select:invalid,
3434
.form-select.is-invalid {
16825 efrain 3435
  border-color: #ff3366;
3436
}
16848 stevensc 3437
 
3438
.was-validated .form-select:invalid:not([multiple]):not([size]),
3439
.was-validated .form-select:invalid:not([multiple])[size="1"],
3440
.form-select.is-invalid:not([multiple]):not([size]),
3441
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3442
  padding-right: 4.4rem;
3443
  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");
3444
  background-position: right 0.8rem center, center right 2.4rem;
3445
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3446
}
16848 stevensc 3447
 
3448
.was-validated .form-select:invalid:focus,
3449
.form-select.is-invalid:focus {
16825 efrain 3450
  border-color: #ff3366;
3451
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3452
}
3453
 
16848 stevensc 3454
.was-validated .form-control-color:invalid,
3455
.form-control-color.is-invalid {
16825 efrain 3456
  width: calc(3rem + calc(1.5em + 0.938rem));
3457
}
3458
 
16848 stevensc 3459
.was-validated .form-check-input:invalid,
3460
.form-check-input.is-invalid {
16825 efrain 3461
  border-color: #ff3366;
3462
}
16848 stevensc 3463
 
3464
.was-validated .form-check-input:invalid:checked,
3465
.form-check-input.is-invalid:checked {
16825 efrain 3466
  background-color: #ff3366;
3467
}
16848 stevensc 3468
 
3469
.was-validated .form-check-input:invalid:focus,
3470
.form-check-input.is-invalid:focus {
16825 efrain 3471
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3472
}
16848 stevensc 3473
 
3474
.was-validated .form-check-input:invalid~.form-check-label,
3475
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3476
  color: #ff3366;
3477
}
3478
 
16848 stevensc 3479
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3480
  margin-left: 0.5em;
3481
}
3482
 
16848 stevensc 3483
.was-validated .input-group>.form-control:not(:focus):invalid,
3484
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3485
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3486
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3487
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3488
.input-group>.form-control:not(:focus).is-invalid,
3489
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3490
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3491
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3492
.was-validated .input-group>.form-select:not(:focus):invalid,
3493
.input-group>.form-select:not(:focus).is-invalid,
3494
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3495
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3496
  z-index: 4;
3497
}
3498
 
16848 stevensc 3499
.btn,
3500
.wizard>.actions a,
3501
.wizard>.actions a:active,
3502
.wizard>.actions a:hover,
3503
div.tox .tox-button,
3504
.swal2-popup .swal2-actions button,
3505
.fc .fc-button-primary {
16825 efrain 3506
  --bs-btn-padding-x: 0.8rem;
3507
  --bs-btn-padding-y: 0.469rem;
3508
  --bs-btn-font-family: ;
3509
  --bs-btn-font-size: 0.875rem;
3510
  --bs-btn-font-weight: 400;
3511
  --bs-btn-line-height: 1.5;
3512
  --bs-btn-color: #000;
3513
  --bs-btn-bg: transparent;
3514
  --bs-btn-border-width: 1px;
3515
  --bs-btn-border-color: transparent;
3516
  --bs-btn-border-radius: 0.25rem;
3517
  --bs-btn-hover-border-color: transparent;
3518
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3519
  --bs-btn-disabled-opacity: 0.65;
3520
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3521
  display: inline-block;
3522
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3523
  font-family: var(--bs-btn-font-family);
3524
  font-size: var(--bs-btn-font-size);
3525
  font-weight: var(--bs-btn-font-weight);
3526
  line-height: var(--bs-btn-line-height);
3527
  color: var(--bs-btn-color);
3528
  text-align: center;
3529
  vertical-align: middle;
3530
  cursor: pointer;
3531
  user-select: none;
3532
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3533
  border-radius: var(--bs-btn-border-radius);
3534
  background-color: var(--bs-btn-bg);
3535
  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;
3536
}
16848 stevensc 3537
 
16825 efrain 3538
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3539
 
3540
  .btn,
3541
  .wizard>.actions a,
3542
  .wizard>.actions a:active,
3543
  .wizard>.actions a:hover,
3544
  div.tox .tox-button,
3545
  .swal2-popup .swal2-actions button,
3546
  .fc .fc-button-primary {
16825 efrain 3547
    transition: none;
3548
  }
3549
}
16848 stevensc 3550
 
3551
.btn:hover,
3552
.wizard>.actions a:hover,
3553
div.tox .tox-button:hover,
3554
.swal2-popup .swal2-actions button:hover,
3555
.fc .fc-button-primary:hover {
16825 efrain 3556
  color: var(--bs-btn-hover-color);
3557
  background-color: var(--bs-btn-hover-bg);
3558
  border-color: var(--bs-btn-hover-border-color);
3559
}
16848 stevensc 3560
 
3561
.btn-check+.btn:hover,
3562
.wizard>.actions .btn-check+a:hover,
3563
div.tox .btn-check+.tox-button:hover,
3564
.swal2-popup .swal2-actions .btn-check+button:hover,
3565
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3566
  color: var(--bs-btn-color);
3567
  background-color: var(--bs-btn-bg);
3568
  border-color: var(--bs-btn-border-color);
3569
}
16848 stevensc 3570
 
3571
.btn:focus-visible,
3572
.wizard>.actions a:focus-visible,
3573
div.tox .tox-button:focus-visible,
3574
.swal2-popup .swal2-actions button:focus-visible,
3575
.fc .fc-button-primary:focus-visible {
16825 efrain 3576
  color: var(--bs-btn-hover-color);
3577
  background-color: var(--bs-btn-hover-bg);
3578
  border-color: var(--bs-btn-hover-border-color);
3579
  outline: 0;
3580
  box-shadow: var(--bs-btn-focus-box-shadow);
3581
}
16848 stevensc 3582
 
3583
.btn-check:focus-visible+.btn,
3584
.wizard>.actions .btn-check:focus-visible+a,
3585
div.tox .btn-check:focus-visible+.tox-button,
3586
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3587
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3588
  border-color: var(--bs-btn-hover-border-color);
3589
  outline: 0;
3590
  box-shadow: var(--bs-btn-focus-box-shadow);
3591
}
16848 stevensc 3592
 
3593
.btn-check:checked+.btn,
3594
.wizard>.actions .btn-check:checked+a,
3595
div.tox .btn-check:checked+.tox-button,
3596
.swal2-popup .swal2-actions .btn-check:checked+button,
3597
.fc .btn-check:checked+.fc-button-primary,
3598
:not(.btn-check)+.btn:active,
3599
.wizard>.actions :not(.btn-check)+a:active,
3600
div.tox :not(.btn-check)+.tox-button:active,
3601
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3602
.fc :not(.btn-check)+.fc-button-primary:active,
3603
.btn:first-child:active,
3604
.wizard>.actions a:first-child:active,
3605
div.tox .tox-button:first-child:active,
3606
.swal2-popup .swal2-actions button:first-child:active,
3607
.fc .fc-button-primary:first-child:active,
3608
.btn.active,
3609
.wizard>.actions a.active,
3610
div.tox .active.tox-button,
3611
.swal2-popup .swal2-actions button.active,
3612
.fc .active.fc-button-primary,
3613
.btn.show,
3614
.wizard>.actions a.show,
3615
div.tox .show.tox-button,
3616
.swal2-popup .swal2-actions button.show,
3617
.fc .show.fc-button-primary {
16825 efrain 3618
  color: var(--bs-btn-active-color);
3619
  background-color: var(--bs-btn-active-bg);
3620
  border-color: var(--bs-btn-active-border-color);
3621
}
16848 stevensc 3622
 
3623
.btn-check:checked+.btn:focus-visible,
3624
.wizard>.actions .btn-check:checked+a:focus-visible,
3625
div.tox .btn-check:checked+.tox-button:focus-visible,
3626
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3627
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3628
:not(.btn-check)+.btn:active:focus-visible,
3629
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3630
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3631
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3632
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3633
.btn:first-child:active:focus-visible,
3634
.wizard>.actions a:first-child:active:focus-visible,
3635
div.tox .tox-button:first-child:active:focus-visible,
3636
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3637
.fc .fc-button-primary:first-child:active:focus-visible,
3638
.btn.active:focus-visible,
3639
.wizard>.actions a.active:focus-visible,
3640
div.tox .active.tox-button:focus-visible,
3641
.swal2-popup .swal2-actions button.active:focus-visible,
3642
.fc .active.fc-button-primary:focus-visible,
3643
.btn.show:focus-visible,
3644
.wizard>.actions a.show:focus-visible,
3645
div.tox .show.tox-button:focus-visible,
3646
.swal2-popup .swal2-actions button.show:focus-visible,
3647
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3648
  box-shadow: var(--bs-btn-focus-box-shadow);
3649
}
16848 stevensc 3650
 
3651
.btn:disabled,
3652
.wizard>.actions a:disabled,
3653
div.tox .tox-button:disabled,
3654
.swal2-popup .swal2-actions button:disabled,
3655
.fc .fc-button-primary:disabled,
3656
.btn.disabled,
3657
.wizard>.actions a.disabled,
3658
div.tox .disabled.tox-button,
3659
.swal2-popup .swal2-actions button.disabled,
3660
.fc .disabled.fc-button-primary,
3661
fieldset:disabled .btn,
3662
fieldset:disabled .wizard>.actions a,
3663
.wizard>.actions fieldset:disabled a,
3664
fieldset:disabled div.tox .tox-button,
3665
div.tox fieldset:disabled .tox-button,
3666
fieldset:disabled .swal2-popup .swal2-actions button,
3667
.swal2-popup .swal2-actions fieldset:disabled button,
3668
fieldset:disabled .fc .fc-button-primary,
3669
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3670
  color: var(--bs-btn-disabled-color);
3671
  pointer-events: none;
3672
  background-color: var(--bs-btn-disabled-bg);
3673
  border-color: var(--bs-btn-disabled-border-color);
3674
  opacity: var(--bs-btn-disabled-opacity);
3675
}
3676
 
16848 stevensc 3677
.btn-primary,
3678
.wizard>.actions a,
3679
.wizard>.actions a:active,
3680
.wizard>.actions a:hover,
3681
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3682
.swal2-popup .swal2-actions button.swal2-confirm,
3683
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3684
.fc .fc-button-primary:not(:disabled):active {
3685
  --bs-btn-color: #fff;
3686
  --bs-btn-bg: #6571ff;
3687
  --bs-btn-border-color: #6571ff;
3688
  --bs-btn-hover-color: #fff;
3689
  --bs-btn-hover-bg: #5660d9;
3690
  --bs-btn-hover-border-color: #515acc;
3691
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3692
  --bs-btn-active-color: #fff;
3693
  --bs-btn-active-bg: #515acc;
3694
  --bs-btn-active-border-color: #4c55bf;
3695
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3696
  --bs-btn-disabled-color: #fff;
3697
  --bs-btn-disabled-bg: #6571ff;
3698
  --bs-btn-disabled-border-color: #6571ff;
3699
}
3700
 
16848 stevensc 3701
.btn-secondary,
3702
div.tox .tox-button--secondary {
16825 efrain 3703
  --bs-btn-color: #fff;
3704
  --bs-btn-bg: #7987a1;
3705
  --bs-btn-border-color: #7987a1;
3706
  --bs-btn-hover-color: #fff;
3707
  --bs-btn-hover-bg: #677389;
3708
  --bs-btn-hover-border-color: #616c81;
3709
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3710
  --bs-btn-active-color: #fff;
3711
  --bs-btn-active-bg: #616c81;
3712
  --bs-btn-active-border-color: #5b6579;
3713
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3714
  --bs-btn-disabled-color: #fff;
3715
  --bs-btn-disabled-bg: #7987a1;
3716
  --bs-btn-disabled-border-color: #7987a1;
3717
}
3718
 
3719
.btn-success {
3720
  --bs-btn-color: #fff;
3721
  --bs-btn-bg: #05a34a;
3722
  --bs-btn-border-color: #05a34a;
3723
  --bs-btn-hover-color: #fff;
3724
  --bs-btn-hover-bg: #048b3f;
3725
  --bs-btn-hover-border-color: #04823b;
3726
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3727
  --bs-btn-active-color: #fff;
3728
  --bs-btn-active-bg: #04823b;
3729
  --bs-btn-active-border-color: #047a38;
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: #05a34a;
3733
  --bs-btn-disabled-border-color: #05a34a;
3734
}
3735
 
3736
.btn-info {
3737
  --bs-btn-color: #000;
3738
  --bs-btn-bg: #66d1d1;
3739
  --bs-btn-border-color: #66d1d1;
3740
  --bs-btn-hover-color: #000;
3741
  --bs-btn-hover-bg: #7dd8d8;
3742
  --bs-btn-hover-border-color: #75d6d6;
3743
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3744
  --bs-btn-active-color: #000;
3745
  --bs-btn-active-bg: #85dada;
3746
  --bs-btn-active-border-color: #75d6d6;
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: #66d1d1;
3750
  --bs-btn-disabled-border-color: #66d1d1;
3751
}
3752
 
3753
.btn-warning {
3754
  --bs-btn-color: #000;
3755
  --bs-btn-bg: #fbbc06;
3756
  --bs-btn-border-color: #fbbc06;
3757
  --bs-btn-hover-color: #000;
3758
  --bs-btn-hover-bg: #fcc62b;
3759
  --bs-btn-hover-border-color: #fbc31f;
3760
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3761
  --bs-btn-active-color: #000;
3762
  --bs-btn-active-bg: #fcc938;
3763
  --bs-btn-active-border-color: #fbc31f;
3764
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3765
  --bs-btn-disabled-color: #000;
3766
  --bs-btn-disabled-bg: #fbbc06;
3767
  --bs-btn-disabled-border-color: #fbbc06;
3768
}
3769
 
16848 stevensc 3770
.btn-danger,
3771
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3772
  --bs-btn-color: #fff;
3773
  --bs-btn-bg: #ff3366;
3774
  --bs-btn-border-color: #ff3366;
3775
  --bs-btn-hover-color: #fff;
3776
  --bs-btn-hover-bg: #d92b57;
3777
  --bs-btn-hover-border-color: #cc2952;
3778
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3779
  --bs-btn-active-color: #fff;
3780
  --bs-btn-active-bg: #cc2952;
3781
  --bs-btn-active-border-color: #bf264d;
3782
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3783
  --bs-btn-disabled-color: #fff;
3784
  --bs-btn-disabled-bg: #ff3366;
3785
  --bs-btn-disabled-border-color: #ff3366;
3786
}
3787
 
3788
.btn-light {
3789
  --bs-btn-color: #000;
3790
  --bs-btn-bg: #e9ecef;
3791
  --bs-btn-border-color: #e9ecef;
3792
  --bs-btn-hover-color: #000;
3793
  --bs-btn-hover-bg: #c6c9cb;
3794
  --bs-btn-hover-border-color: #babdbf;
3795
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3796
  --bs-btn-active-color: #000;
3797
  --bs-btn-active-bg: #babdbf;
3798
  --bs-btn-active-border-color: #afb1b3;
3799
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3800
  --bs-btn-disabled-color: #000;
3801
  --bs-btn-disabled-bg: #e9ecef;
3802
  --bs-btn-disabled-border-color: #e9ecef;
3803
}
3804
 
3805
.btn-dark {
3806
  --bs-btn-color: #fff;
3807
  --bs-btn-bg: #060c17;
3808
  --bs-btn-border-color: #060c17;
3809
  --bs-btn-hover-color: #fff;
3810
  --bs-btn-hover-bg: #2b303a;
3811
  --bs-btn-hover-border-color: #1f242e;
3812
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3813
  --bs-btn-active-color: #fff;
3814
  --bs-btn-active-bg: #383d45;
3815
  --bs-btn-active-border-color: #1f242e;
3816
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3817
  --bs-btn-disabled-color: #fff;
3818
  --bs-btn-disabled-bg: #060c17;
3819
  --bs-btn-disabled-border-color: #060c17;
3820
}
3821
 
16848 stevensc 3822
.btn-outline-primary,
3823
.fc .fc-button-primary {
16825 efrain 3824
  --bs-btn-color: #6571ff;
3825
  --bs-btn-border-color: #6571ff;
3826
  --bs-btn-hover-color: #fff;
3827
  --bs-btn-hover-bg: #6571ff;
3828
  --bs-btn-hover-border-color: #6571ff;
3829
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3830
  --bs-btn-active-color: #fff;
3831
  --bs-btn-active-bg: #6571ff;
3832
  --bs-btn-active-border-color: #6571ff;
3833
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3834
  --bs-btn-disabled-color: #6571ff;
3835
  --bs-btn-disabled-bg: transparent;
3836
  --bs-btn-disabled-border-color: #6571ff;
3837
  --bs-gradient: none;
3838
}
3839
 
3840
.btn-outline-secondary {
3841
  --bs-btn-color: #7987a1;
3842
  --bs-btn-border-color: #7987a1;
3843
  --bs-btn-hover-color: #fff;
3844
  --bs-btn-hover-bg: #7987a1;
3845
  --bs-btn-hover-border-color: #7987a1;
3846
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3847
  --bs-btn-active-color: #fff;
3848
  --bs-btn-active-bg: #7987a1;
3849
  --bs-btn-active-border-color: #7987a1;
3850
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3851
  --bs-btn-disabled-color: #7987a1;
3852
  --bs-btn-disabled-bg: transparent;
3853
  --bs-btn-disabled-border-color: #7987a1;
3854
  --bs-gradient: none;
3855
}
3856
 
3857
.btn-outline-success {
3858
  --bs-btn-color: #05a34a;
3859
  --bs-btn-border-color: #05a34a;
3860
  --bs-btn-hover-color: #fff;
3861
  --bs-btn-hover-bg: #05a34a;
3862
  --bs-btn-hover-border-color: #05a34a;
3863
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3864
  --bs-btn-active-color: #fff;
3865
  --bs-btn-active-bg: #05a34a;
3866
  --bs-btn-active-border-color: #05a34a;
3867
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3868
  --bs-btn-disabled-color: #05a34a;
3869
  --bs-btn-disabled-bg: transparent;
3870
  --bs-btn-disabled-border-color: #05a34a;
3871
  --bs-gradient: none;
3872
}
3873
 
3874
.btn-outline-info {
3875
  --bs-btn-color: #66d1d1;
3876
  --bs-btn-border-color: #66d1d1;
3877
  --bs-btn-hover-color: #000;
3878
  --bs-btn-hover-bg: #66d1d1;
3879
  --bs-btn-hover-border-color: #66d1d1;
3880
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3881
  --bs-btn-active-color: #000;
3882
  --bs-btn-active-bg: #66d1d1;
3883
  --bs-btn-active-border-color: #66d1d1;
3884
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3885
  --bs-btn-disabled-color: #66d1d1;
3886
  --bs-btn-disabled-bg: transparent;
3887
  --bs-btn-disabled-border-color: #66d1d1;
3888
  --bs-gradient: none;
3889
}
3890
 
3891
.btn-outline-warning {
3892
  --bs-btn-color: #fbbc06;
3893
  --bs-btn-border-color: #fbbc06;
3894
  --bs-btn-hover-color: #000;
3895
  --bs-btn-hover-bg: #fbbc06;
3896
  --bs-btn-hover-border-color: #fbbc06;
3897
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3898
  --bs-btn-active-color: #000;
3899
  --bs-btn-active-bg: #fbbc06;
3900
  --bs-btn-active-border-color: #fbbc06;
3901
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3902
  --bs-btn-disabled-color: #fbbc06;
3903
  --bs-btn-disabled-bg: transparent;
3904
  --bs-btn-disabled-border-color: #fbbc06;
3905
  --bs-gradient: none;
3906
}
3907
 
3908
.btn-outline-danger {
3909
  --bs-btn-color: #ff3366;
3910
  --bs-btn-border-color: #ff3366;
3911
  --bs-btn-hover-color: #fff;
3912
  --bs-btn-hover-bg: #ff3366;
3913
  --bs-btn-hover-border-color: #ff3366;
3914
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3915
  --bs-btn-active-color: #fff;
3916
  --bs-btn-active-bg: #ff3366;
3917
  --bs-btn-active-border-color: #ff3366;
3918
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3919
  --bs-btn-disabled-color: #ff3366;
3920
  --bs-btn-disabled-bg: transparent;
3921
  --bs-btn-disabled-border-color: #ff3366;
3922
  --bs-gradient: none;
3923
}
3924
 
3925
.btn-outline-light {
3926
  --bs-btn-color: #e9ecef;
3927
  --bs-btn-border-color: #e9ecef;
3928
  --bs-btn-hover-color: #000;
3929
  --bs-btn-hover-bg: #e9ecef;
3930
  --bs-btn-hover-border-color: #e9ecef;
3931
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3932
  --bs-btn-active-color: #000;
3933
  --bs-btn-active-bg: #e9ecef;
3934
  --bs-btn-active-border-color: #e9ecef;
3935
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3936
  --bs-btn-disabled-color: #e9ecef;
3937
  --bs-btn-disabled-bg: transparent;
3938
  --bs-btn-disabled-border-color: #e9ecef;
3939
  --bs-gradient: none;
3940
}
3941
 
3942
.btn-outline-dark {
3943
  --bs-btn-color: #060c17;
3944
  --bs-btn-border-color: #060c17;
3945
  --bs-btn-hover-color: #fff;
3946
  --bs-btn-hover-bg: #060c17;
3947
  --bs-btn-hover-border-color: #060c17;
3948
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3949
  --bs-btn-active-color: #fff;
3950
  --bs-btn-active-bg: #060c17;
3951
  --bs-btn-active-border-color: #060c17;
3952
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3953
  --bs-btn-disabled-color: #060c17;
3954
  --bs-btn-disabled-bg: transparent;
3955
  --bs-btn-disabled-border-color: #060c17;
3956
  --bs-gradient: none;
3957
}
3958
 
3959
.btn-link {
3960
  --bs-btn-font-weight: 400;
3961
  --bs-btn-color: var(--bs-link-color);
3962
  --bs-btn-bg: transparent;
3963
  --bs-btn-border-color: transparent;
3964
  --bs-btn-hover-color: var(--bs-link-hover-color);
3965
  --bs-btn-hover-border-color: transparent;
3966
  --bs-btn-active-color: var(--bs-link-hover-color);
3967
  --bs-btn-active-border-color: transparent;
3968
  --bs-btn-disabled-color: #7987a1;
3969
  --bs-btn-disabled-border-color: transparent;
3970
  --bs-btn-box-shadow: none;
3971
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3972
  text-decoration: none;
3973
}
16848 stevensc 3974
 
16825 efrain 3975
.btn-link:focus-visible {
3976
  color: var(--bs-btn-color);
3977
}
16848 stevensc 3978
 
16825 efrain 3979
.btn-link:hover {
3980
  color: var(--bs-btn-hover-color);
3981
}
3982
 
16848 stevensc 3983
.btn-lg,
3984
.btn-group-lg>.btn,
3985
.wizard>.actions .btn-group-lg>a,
3986
div.tox .btn-group-lg>.tox-button,
3987
.swal2-popup .swal2-actions .btn-group-lg>button,
3988
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3989
  --bs-btn-padding-y: 0.5rem;
3990
  --bs-btn-padding-x: 0.8rem;
3991
  --bs-btn-font-size: 1rem;
3992
  --bs-btn-border-radius: 0.25rem;
3993
}
3994
 
16848 stevensc 3995
.btn-sm,
3996
.fc .fc-button-primary,
3997
.btn-group-sm>.btn,
3998
.wizard>.actions .btn-group-sm>a,
3999
div.tox .btn-group-sm>.tox-button,
4000
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 4001
  --bs-btn-padding-y: 0.391rem;
4002
  --bs-btn-padding-x: 0.8rem;
4003
  --bs-btn-font-size: 0.812rem;
4004
  --bs-btn-border-radius: 0.25rem;
4005
}
4006
 
4007
.fade {
4008
  transition: opacity 0.15s linear;
4009
}
16848 stevensc 4010
 
16825 efrain 4011
@media (prefers-reduced-motion: reduce) {
4012
  .fade {
4013
    transition: none;
4014
  }
4015
}
16848 stevensc 4016
 
16825 efrain 4017
.fade:not(.show) {
4018
  opacity: 0;
4019
}
4020
 
4021
.collapse:not(.show) {
4022
  display: none;
4023
}
4024
 
4025
.collapsing {
4026
  height: 0;
4027
  overflow: hidden;
4028
  transition: height 0.35s ease;
4029
}
16848 stevensc 4030
 
16825 efrain 4031
@media (prefers-reduced-motion: reduce) {
4032
  .collapsing {
4033
    transition: none;
4034
  }
4035
}
16848 stevensc 4036
 
16825 efrain 4037
.collapsing.collapse-horizontal {
4038
  width: 0;
4039
  height: auto;
4040
  transition: width 0.35s ease;
4041
}
16848 stevensc 4042
 
16825 efrain 4043
@media (prefers-reduced-motion: reduce) {
4044
  .collapsing.collapse-horizontal {
4045
    transition: none;
4046
  }
4047
}
4048
 
4049
.dropup,
4050
.dropend,
4051
.dropdown,
4052
.dropstart,
4053
.dropup-center,
4054
.dropdown-center {
4055
  position: relative;
4056
}
4057
 
4058
.dropdown-toggle {
4059
  white-space: nowrap;
4060
}
16848 stevensc 4061
 
16825 efrain 4062
.dropdown-toggle::after {
4063
  display: inline-block;
4064
  margin-left: 0.255em;
4065
  vertical-align: 0.255em;
4066
  content: "";
4067
  border-top: 0.3em solid;
4068
  border-right: 0.3em solid transparent;
4069
  border-bottom: 0;
4070
  border-left: 0.3em solid transparent;
4071
}
16848 stevensc 4072
 
16825 efrain 4073
.dropdown-toggle:empty::after {
4074
  margin-left: 0;
4075
}
4076
 
16848 stevensc 4077
.dropdown-menu,
4078
.tt-menu {
16825 efrain 4079
  --bs-dropdown-zindex: 1000;
4080
  --bs-dropdown-min-width: 10rem;
4081
  --bs-dropdown-padding-x: 0;
4082
  --bs-dropdown-padding-y: 0.5rem;
4083
  --bs-dropdown-spacer: 0.125rem;
4084
  --bs-dropdown-font-size: 0.875rem;
4085
  --bs-dropdown-color: #000;
4086
  --bs-dropdown-bg: #fff;
4087
  --bs-dropdown-border-color: #f2f4f9;
4088
  --bs-dropdown-border-radius: 0.25rem;
4089
  --bs-dropdown-border-width: 1px;
4090
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4091
  --bs-dropdown-divider-bg: #f2f4f9;
4092
  --bs-dropdown-divider-margin-y: 0.5rem;
4093
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4094
  --bs-dropdown-link-color: #060c17;
4095
  --bs-dropdown-link-hover-color: #050b15;
4096
  --bs-dropdown-link-hover-bg: #e9ecef;
4097
  --bs-dropdown-link-active-color: #fff;
4098
  --bs-dropdown-link-active-bg: #6571ff;
4099
  --bs-dropdown-link-disabled-color: #aeb7c5;
4100
  --bs-dropdown-item-padding-x: 1rem;
4101
  --bs-dropdown-item-padding-y: 0.25rem;
4102
  --bs-dropdown-header-color: #7987a1;
4103
  --bs-dropdown-header-padding-x: 1rem;
4104
  --bs-dropdown-header-padding-y: 0.5rem;
4105
  position: absolute;
4106
  z-index: var(--bs-dropdown-zindex);
4107
  display: none;
4108
  min-width: var(--bs-dropdown-min-width);
4109
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4110
  margin: 0;
4111
  font-size: var(--bs-dropdown-font-size);
4112
  color: var(--bs-dropdown-color);
4113
  text-align: left;
4114
  list-style: none;
4115
  background-color: var(--bs-dropdown-bg);
4116
  background-clip: padding-box;
4117
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4118
  border-radius: var(--bs-dropdown-border-radius);
4119
}
16848 stevensc 4120
 
4121
.dropdown-menu[data-bs-popper],
4122
[data-bs-popper].tt-menu {
16825 efrain 4123
  top: 100%;
4124
  left: 0;
4125
  margin-top: var(--bs-dropdown-spacer);
4126
}
4127
 
4128
.dropdown-menu-start {
4129
  --bs-position: start;
4130
}
16848 stevensc 4131
 
16825 efrain 4132
.dropdown-menu-start[data-bs-popper] {
4133
  right: auto;
4134
  left: 0;
4135
}
4136
 
4137
.dropdown-menu-end {
4138
  --bs-position: end;
4139
}
16848 stevensc 4140
 
16825 efrain 4141
.dropdown-menu-end[data-bs-popper] {
4142
  right: 0;
4143
  left: auto;
4144
}
4145
 
4146
@media (min-width: 576px) {
4147
  .dropdown-menu-sm-start {
4148
    --bs-position: start;
4149
  }
16848 stevensc 4150
 
16825 efrain 4151
  .dropdown-menu-sm-start[data-bs-popper] {
4152
    right: auto;
4153
    left: 0;
4154
  }
16848 stevensc 4155
 
16825 efrain 4156
  .dropdown-menu-sm-end {
4157
    --bs-position: end;
4158
  }
16848 stevensc 4159
 
16825 efrain 4160
  .dropdown-menu-sm-end[data-bs-popper] {
4161
    right: 0;
4162
    left: auto;
4163
  }
4164
}
16848 stevensc 4165
 
16825 efrain 4166
@media (min-width: 768px) {
4167
  .dropdown-menu-md-start {
4168
    --bs-position: start;
4169
  }
16848 stevensc 4170
 
16825 efrain 4171
  .dropdown-menu-md-start[data-bs-popper] {
4172
    right: auto;
4173
    left: 0;
4174
  }
16848 stevensc 4175
 
16825 efrain 4176
  .dropdown-menu-md-end {
4177
    --bs-position: end;
4178
  }
16848 stevensc 4179
 
16825 efrain 4180
  .dropdown-menu-md-end[data-bs-popper] {
4181
    right: 0;
4182
    left: auto;
4183
  }
4184
}
16848 stevensc 4185
 
16825 efrain 4186
@media (min-width: 992px) {
4187
  .dropdown-menu-lg-start {
4188
    --bs-position: start;
4189
  }
16848 stevensc 4190
 
16825 efrain 4191
  .dropdown-menu-lg-start[data-bs-popper] {
4192
    right: auto;
4193
    left: 0;
4194
  }
16848 stevensc 4195
 
16825 efrain 4196
  .dropdown-menu-lg-end {
4197
    --bs-position: end;
4198
  }
16848 stevensc 4199
 
16825 efrain 4200
  .dropdown-menu-lg-end[data-bs-popper] {
4201
    right: 0;
4202
    left: auto;
4203
  }
4204
}
16848 stevensc 4205
 
16825 efrain 4206
@media (min-width: 1200px) {
4207
  .dropdown-menu-xl-start {
4208
    --bs-position: start;
4209
  }
16848 stevensc 4210
 
16825 efrain 4211
  .dropdown-menu-xl-start[data-bs-popper] {
4212
    right: auto;
4213
    left: 0;
4214
  }
16848 stevensc 4215
 
16825 efrain 4216
  .dropdown-menu-xl-end {
4217
    --bs-position: end;
4218
  }
16848 stevensc 4219
 
16825 efrain 4220
  .dropdown-menu-xl-end[data-bs-popper] {
4221
    right: 0;
4222
    left: auto;
4223
  }
4224
}
16848 stevensc 4225
 
16825 efrain 4226
@media (min-width: 1400px) {
4227
  .dropdown-menu-xxl-start {
4228
    --bs-position: start;
4229
  }
16848 stevensc 4230
 
16825 efrain 4231
  .dropdown-menu-xxl-start[data-bs-popper] {
4232
    right: auto;
4233
    left: 0;
4234
  }
16848 stevensc 4235
 
16825 efrain 4236
  .dropdown-menu-xxl-end {
4237
    --bs-position: end;
4238
  }
16848 stevensc 4239
 
16825 efrain 4240
  .dropdown-menu-xxl-end[data-bs-popper] {
4241
    right: 0;
4242
    left: auto;
4243
  }
4244
}
16848 stevensc 4245
 
4246
.dropup .dropdown-menu[data-bs-popper],
4247
.dropup [data-bs-popper].tt-menu {
16825 efrain 4248
  top: auto;
4249
  bottom: 100%;
4250
  margin-top: 0;
4251
  margin-bottom: var(--bs-dropdown-spacer);
4252
}
16848 stevensc 4253
 
16825 efrain 4254
.dropup .dropdown-toggle::after {
4255
  display: inline-block;
4256
  margin-left: 0.255em;
4257
  vertical-align: 0.255em;
4258
  content: "";
4259
  border-top: 0;
4260
  border-right: 0.3em solid transparent;
4261
  border-bottom: 0.3em solid;
4262
  border-left: 0.3em solid transparent;
4263
}
16848 stevensc 4264
 
16825 efrain 4265
.dropup .dropdown-toggle:empty::after {
4266
  margin-left: 0;
4267
}
4268
 
16848 stevensc 4269
.dropend .dropdown-menu[data-bs-popper],
4270
.dropend [data-bs-popper].tt-menu {
16825 efrain 4271
  top: 0;
4272
  right: auto;
4273
  left: 100%;
4274
  margin-top: 0;
4275
  margin-left: var(--bs-dropdown-spacer);
4276
}
16848 stevensc 4277
 
16825 efrain 4278
.dropend .dropdown-toggle::after {
4279
  display: inline-block;
4280
  margin-left: 0.255em;
4281
  vertical-align: 0.255em;
4282
  content: "";
4283
  border-top: 0.3em solid transparent;
4284
  border-right: 0;
4285
  border-bottom: 0.3em solid transparent;
4286
  border-left: 0.3em solid;
4287
}
16848 stevensc 4288
 
16825 efrain 4289
.dropend .dropdown-toggle:empty::after {
4290
  margin-left: 0;
4291
}
16848 stevensc 4292
 
16825 efrain 4293
.dropend .dropdown-toggle::after {
4294
  vertical-align: 0;
4295
}
4296
 
16848 stevensc 4297
.dropstart .dropdown-menu[data-bs-popper],
4298
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4299
  top: 0;
4300
  right: 100%;
4301
  left: auto;
4302
  margin-top: 0;
4303
  margin-right: var(--bs-dropdown-spacer);
4304
}
16848 stevensc 4305
 
16825 efrain 4306
.dropstart .dropdown-toggle::after {
4307
  display: inline-block;
4308
  margin-left: 0.255em;
4309
  vertical-align: 0.255em;
4310
  content: "";
4311
}
16848 stevensc 4312
 
16825 efrain 4313
.dropstart .dropdown-toggle::after {
4314
  display: none;
4315
}
16848 stevensc 4316
 
16825 efrain 4317
.dropstart .dropdown-toggle::before {
4318
  display: inline-block;
4319
  margin-right: 0.255em;
4320
  vertical-align: 0.255em;
4321
  content: "";
4322
  border-top: 0.3em solid transparent;
4323
  border-right: 0.3em solid;
4324
  border-bottom: 0.3em solid transparent;
4325
}
16848 stevensc 4326
 
16825 efrain 4327
.dropstart .dropdown-toggle:empty::after {
4328
  margin-left: 0;
4329
}
16848 stevensc 4330
 
16825 efrain 4331
.dropstart .dropdown-toggle::before {
4332
  vertical-align: 0;
4333
}
4334
 
4335
.dropdown-divider {
4336
  height: 0;
4337
  margin: var(--bs-dropdown-divider-margin-y) 0;
4338
  overflow: hidden;
4339
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4340
  opacity: 1;
4341
}
4342
 
16848 stevensc 4343
.dropdown-item,
4344
.tt-menu .tt-suggestion {
16825 efrain 4345
  display: block;
4346
  width: 100%;
4347
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4348
  clear: both;
4349
  font-weight: 400;
4350
  color: var(--bs-dropdown-link-color);
4351
  text-align: inherit;
4352
  white-space: nowrap;
4353
  background-color: transparent;
4354
  border: 0;
4355
}
16848 stevensc 4356
 
4357
.dropdown-item:hover,
4358
.tt-menu .tt-suggestion:hover,
4359
.dropdown-item:focus,
4360
.tt-menu .tt-suggestion:focus {
16825 efrain 4361
  color: var(--bs-dropdown-link-hover-color);
4362
  background-color: var(--bs-dropdown-link-hover-bg);
4363
}
16848 stevensc 4364
 
4365
.dropdown-item.active,
4366
.tt-menu .active.tt-suggestion,
4367
.dropdown-item:active,
4368
.tt-menu .tt-suggestion:active {
16825 efrain 4369
  color: var(--bs-dropdown-link-active-color);
4370
  text-decoration: none;
4371
  background-color: var(--bs-dropdown-link-active-bg);
4372
}
16848 stevensc 4373
 
4374
.dropdown-item.disabled,
4375
.tt-menu .disabled.tt-suggestion,
4376
.dropdown-item:disabled,
4377
.tt-menu .tt-suggestion:disabled {
16825 efrain 4378
  color: var(--bs-dropdown-link-disabled-color);
4379
  pointer-events: none;
4380
  background-color: transparent;
4381
}
4382
 
16848 stevensc 4383
.dropdown-menu.show,
4384
.show.tt-menu {
16825 efrain 4385
  display: block;
4386
}
4387
 
4388
.dropdown-header {
4389
  display: block;
4390
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4391
  margin-bottom: 0;
4392
  font-size: 0.812rem;
4393
  color: var(--bs-dropdown-header-color);
4394
  white-space: nowrap;
4395
}
4396
 
4397
.dropdown-item-text {
4398
  display: block;
4399
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4400
  color: var(--bs-dropdown-link-color);
4401
}
4402
 
4403
.dropdown-menu-dark {
4404
  --bs-dropdown-color: #dee2e6;
4405
  --bs-dropdown-bg: #212a3a;
4406
  --bs-dropdown-border-color: #f2f4f9;
4407
  --bs-dropdown-box-shadow: ;
4408
  --bs-dropdown-link-color: #dee2e6;
4409
  --bs-dropdown-link-hover-color: #fff;
4410
  --bs-dropdown-divider-bg: #f2f4f9;
4411
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4412
  --bs-dropdown-link-active-color: #fff;
4413
  --bs-dropdown-link-active-bg: #6571ff;
4414
  --bs-dropdown-link-disabled-color: #aeb7c5;
4415
  --bs-dropdown-header-color: #aeb7c5;
4416
}
4417
 
4418
.btn-group,
4419
.btn-group-vertical {
4420
  position: relative;
4421
  display: inline-flex;
4422
  vertical-align: middle;
4423
}
16848 stevensc 4424
 
4425
.btn-group>.btn,
4426
.wizard>.actions .btn-group>a,
4427
div.tox .btn-group>.tox-button,
4428
.swal2-popup .swal2-actions .btn-group>button,
4429
.fc .btn-group>.fc-button-primary,
4430
.btn-group-vertical>.btn,
4431
.wizard>.actions .btn-group-vertical>a,
4432
div.tox .btn-group-vertical>.tox-button,
4433
.swal2-popup .swal2-actions .btn-group-vertical>button,
4434
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4435
  position: relative;
4436
  flex: 1 1 auto;
4437
}
16848 stevensc 4438
 
4439
.btn-group>.btn-check:checked+.btn,
4440
.wizard>.actions .btn-group>.btn-check:checked+a,
4441
div.tox .btn-group>.btn-check:checked+.tox-button,
4442
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4443
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4444
.btn-group>.btn-check:focus+.btn,
4445
.wizard>.actions .btn-group>.btn-check:focus+a,
4446
div.tox .btn-group>.btn-check:focus+.tox-button,
4447
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4448
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4449
.btn-group>.btn:hover,
4450
.wizard>.actions .btn-group>a:hover,
4451
div.tox .btn-group>.tox-button:hover,
4452
.swal2-popup .swal2-actions .btn-group>button:hover,
4453
.fc .btn-group>.fc-button-primary:hover,
4454
.btn-group>.btn:focus,
4455
.wizard>.actions .btn-group>a:focus,
4456
div.tox .btn-group>.tox-button:focus,
4457
.swal2-popup .swal2-actions .btn-group>button:focus,
4458
.fc .btn-group>.fc-button-primary:focus,
4459
.btn-group>.btn:active,
4460
.wizard>.actions .btn-group>a:active,
4461
div.tox .btn-group>.tox-button:active,
4462
.swal2-popup .swal2-actions .btn-group>button:active,
4463
.fc .btn-group>.fc-button-primary:active,
4464
.btn-group>.btn.active,
4465
.wizard>.actions .btn-group>a.active,
4466
div.tox .btn-group>.active.tox-button,
4467
.swal2-popup .swal2-actions .btn-group>button.active,
4468
.fc .btn-group>.active.fc-button-primary,
4469
.btn-group-vertical>.btn-check:checked+.btn,
4470
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4471
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4472
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4473
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4474
.btn-group-vertical>.btn-check:focus+.btn,
4475
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4476
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4477
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4478
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4479
.btn-group-vertical>.btn:hover,
4480
.wizard>.actions .btn-group-vertical>a:hover,
4481
div.tox .btn-group-vertical>.tox-button:hover,
4482
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4483
.fc .btn-group-vertical>.fc-button-primary:hover,
4484
.btn-group-vertical>.btn:focus,
4485
.wizard>.actions .btn-group-vertical>a:focus,
4486
div.tox .btn-group-vertical>.tox-button:focus,
4487
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4488
.fc .btn-group-vertical>.fc-button-primary:focus,
4489
.btn-group-vertical>.btn:active,
4490
.wizard>.actions .btn-group-vertical>a:active,
4491
div.tox .btn-group-vertical>.tox-button:active,
4492
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4493
.fc .btn-group-vertical>.fc-button-primary:active,
4494
.btn-group-vertical>.btn.active,
4495
.wizard>.actions .btn-group-vertical>a.active,
4496
div.tox .btn-group-vertical>.active.tox-button,
4497
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4498
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4499
  z-index: 1;
4500
}
4501
 
4502
.btn-toolbar {
4503
  display: flex;
4504
  flex-wrap: wrap;
4505
  justify-content: flex-start;
4506
}
16848 stevensc 4507
 
16825 efrain 4508
.btn-toolbar .input-group {
4509
  width: auto;
4510
}
4511
 
4512
.btn-group {
4513
  border-radius: 0.25rem;
4514
}
16848 stevensc 4515
 
4516
.btn-group> :not(.btn-check:first-child)+.btn,
4517
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4518
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4519
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4520
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4521
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4522
  margin-left: -1px;
4523
}
16848 stevensc 4524
 
4525
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4526
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4527
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4528
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4529
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4530
.btn-group>.btn.dropdown-toggle-split:first-child,
4531
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4532
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4533
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4534
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4535
.btn-group>.btn-group:not(:last-child)>.btn,
4536
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4537
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4538
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4539
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4540
  border-top-right-radius: 0;
4541
  border-bottom-right-radius: 0;
4542
}
16848 stevensc 4543
 
4544
.btn-group>.btn:nth-child(n+3),
4545
.wizard>.actions .btn-group>a:nth-child(n+3),
4546
div.tox .btn-group>.tox-button:nth-child(n+3),
4547
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4548
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4549
.btn-group> :not(.btn-check)+.btn,
4550
.wizard>.actions .btn-group> :not(.btn-check)+a,
4551
div.tox .btn-group> :not(.btn-check)+.tox-button,
4552
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4553
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4554
.btn-group>.btn-group:not(:first-child)>.btn,
4555
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4556
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4557
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4558
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4559
  border-top-left-radius: 0;
4560
  border-bottom-left-radius: 0;
4561
}
4562
 
4563
.dropdown-toggle-split {
4564
  padding-right: 0.6rem;
4565
  padding-left: 0.6rem;
4566
}
16848 stevensc 4567
 
4568
.dropdown-toggle-split::after,
4569
.dropup .dropdown-toggle-split::after,
4570
.dropend .dropdown-toggle-split::after {
16825 efrain 4571
  margin-left: 0;
4572
}
16848 stevensc 4573
 
16825 efrain 4574
.dropstart .dropdown-toggle-split::before {
4575
  margin-right: 0;
4576
}
4577
 
16848 stevensc 4578
.btn-sm+.dropdown-toggle-split,
4579
.fc .fc-button-primary+.dropdown-toggle-split,
4580
.btn-group-sm>.btn+.dropdown-toggle-split,
4581
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4582
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4583
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4584
  padding-right: 0.6rem;
4585
  padding-left: 0.6rem;
4586
}
4587
 
16848 stevensc 4588
.btn-lg+.dropdown-toggle-split,
4589
.btn-group-lg>.btn+.dropdown-toggle-split,
4590
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4591
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4592
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4593
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4594
  padding-right: 0.6rem;
4595
  padding-left: 0.6rem;
4596
}
4597
 
4598
.btn-group-vertical {
4599
  flex-direction: column;
4600
  align-items: flex-start;
4601
  justify-content: center;
4602
}
16848 stevensc 4603
 
4604
.btn-group-vertical>.btn,
4605
.wizard>.actions .btn-group-vertical>a,
4606
div.tox .btn-group-vertical>.tox-button,
4607
.swal2-popup .swal2-actions .btn-group-vertical>button,
4608
.fc .btn-group-vertical>.fc-button-primary,
4609
.btn-group-vertical>.btn-group {
16825 efrain 4610
  width: 100%;
4611
}
16848 stevensc 4612
 
4613
.btn-group-vertical>.btn:not(:first-child),
4614
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4615
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4616
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4617
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4618
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4619
  margin-top: -1px;
4620
}
16848 stevensc 4621
 
4622
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4623
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4624
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4625
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4626
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4627
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4628
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4629
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4630
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4631
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4632
  border-bottom-right-radius: 0;
4633
  border-bottom-left-radius: 0;
4634
}
16848 stevensc 4635
 
4636
.btn-group-vertical>.btn~.btn,
4637
.wizard>.actions .btn-group-vertical>a~.btn,
4638
.wizard>.actions .btn-group-vertical>.btn~a,
4639
.wizard>.actions .btn-group-vertical>a~a,
4640
div.tox .btn-group-vertical>.tox-button~.btn,
4641
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4642
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4643
div.tox .btn-group-vertical>.btn~.tox-button,
4644
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4645
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4646
div.tox .btn-group-vertical>.tox-button~.tox-button,
4647
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4648
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4649
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4650
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4651
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4652
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4653
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4654
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4655
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4656
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4657
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4658
.fc .btn-group-vertical>.fc-button-primary~.btn,
4659
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4660
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4661
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4662
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4663
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4664
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4665
.fc .btn-group-vertical>.btn~.fc-button-primary,
4666
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4667
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4668
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4669
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4670
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4671
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4672
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4673
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4674
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4675
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4676
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4677
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4678
  border-top-left-radius: 0;
4679
  border-top-right-radius: 0;
4680
}
4681
 
4682
.nav {
4683
  --bs-nav-link-padding-x: 1rem;
4684
  --bs-nav-link-padding-y: 0.5rem;
4685
  --bs-nav-link-font-weight: ;
4686
  --bs-nav-link-color: var(--bs-link-color);
4687
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4688
  --bs-nav-link-disabled-color: #7987a1;
4689
  display: flex;
4690
  flex-wrap: wrap;
4691
  padding-left: 0;
4692
  margin-bottom: 0;
4693
  list-style: none;
4694
}
4695
 
4696
.nav-link {
4697
  display: block;
4698
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4699
  font-size: var(--bs-nav-link-font-size);
4700
  font-weight: var(--bs-nav-link-font-weight);
4701
  color: var(--bs-nav-link-color);
4702
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4703
}
16848 stevensc 4704
 
16825 efrain 4705
@media (prefers-reduced-motion: reduce) {
4706
  .nav-link {
4707
    transition: none;
4708
  }
4709
}
16848 stevensc 4710
 
4711
.nav-link:hover,
4712
.nav-link:focus {
16825 efrain 4713
  color: var(--bs-nav-link-hover-color);
4714
}
16848 stevensc 4715
 
16825 efrain 4716
.nav-link.disabled {
4717
  color: var(--bs-nav-link-disabled-color);
4718
  pointer-events: none;
4719
  cursor: default;
4720
}
4721
 
4722
.nav-tabs {
4723
  --bs-nav-tabs-border-width: 1px;
4724
  --bs-nav-tabs-border-color: #dee2e6;
4725
  --bs-nav-tabs-border-radius: 0.25rem;
4726
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4727
  --bs-nav-tabs-link-active-color: #41516c;
4728
  --bs-nav-tabs-link-active-bg: #fff;
4729
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4730
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4731
}
16848 stevensc 4732
 
16825 efrain 4733
.nav-tabs .nav-link {
4734
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4735
  background: none;
4736
  border: var(--bs-nav-tabs-border-width) solid transparent;
4737
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4738
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4739
}
16848 stevensc 4740
 
4741
.nav-tabs .nav-link:hover,
4742
.nav-tabs .nav-link:focus {
16825 efrain 4743
  isolation: isolate;
4744
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4745
}
16848 stevensc 4746
 
4747
.nav-tabs .nav-link.disabled,
4748
.nav-tabs .nav-link:disabled {
16825 efrain 4749
  color: var(--bs-nav-link-disabled-color);
4750
  background-color: transparent;
4751
  border-color: transparent;
4752
}
16848 stevensc 4753
 
16825 efrain 4754
.nav-tabs .nav-link.active,
4755
.nav-tabs .nav-item.show .nav-link {
4756
  color: var(--bs-nav-tabs-link-active-color);
4757
  background-color: var(--bs-nav-tabs-link-active-bg);
4758
  border-color: var(--bs-nav-tabs-link-active-border-color);
4759
}
16848 stevensc 4760
 
4761
.nav-tabs .dropdown-menu,
4762
.nav-tabs .tt-menu {
16825 efrain 4763
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4764
  border-top-left-radius: 0;
4765
  border-top-right-radius: 0;
4766
}
4767
 
4768
.nav-pills {
4769
  --bs-nav-pills-border-radius: 0.25rem;
4770
  --bs-nav-pills-link-active-color: #fff;
4771
  --bs-nav-pills-link-active-bg: #6571ff;
4772
}
16848 stevensc 4773
 
16825 efrain 4774
.nav-pills .nav-link {
4775
  background: none;
4776
  border: 0;
4777
  border-radius: var(--bs-nav-pills-border-radius);
4778
}
16848 stevensc 4779
 
16825 efrain 4780
.nav-pills .nav-link:disabled {
4781
  color: var(--bs-nav-link-disabled-color);
4782
  background-color: transparent;
4783
  border-color: transparent;
4784
}
16848 stevensc 4785
 
16825 efrain 4786
.nav-pills .nav-link.active,
16848 stevensc 4787
.nav-pills .show>.nav-link {
16825 efrain 4788
  color: var(--bs-nav-pills-link-active-color);
4789
  background-color: var(--bs-nav-pills-link-active-bg);
4790
}
4791
 
16848 stevensc 4792
.nav-fill>.nav-link,
16825 efrain 4793
.nav-fill .nav-item {
4794
  flex: 1 1 auto;
4795
  text-align: center;
4796
}
4797
 
16848 stevensc 4798
.nav-justified>.nav-link,
16825 efrain 4799
.nav-justified .nav-item {
4800
  flex-basis: 0;
4801
  flex-grow: 1;
4802
  text-align: center;
4803
}
4804
 
4805
.nav-fill .nav-item .nav-link,
4806
.nav-justified .nav-item .nav-link {
4807
  width: 100%;
4808
}
4809
 
16848 stevensc 4810
.tab-content>.tab-pane {
16825 efrain 4811
  display: none;
4812
}
16848 stevensc 4813
 
4814
.tab-content>.active {
16825 efrain 4815
  display: block;
4816
}
4817
 
4818
.navbar {
4819
  --bs-navbar-padding-x: 0;
4820
  --bs-navbar-padding-y: 0.5rem;
4821
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4822
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4823
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4824
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4825
  --bs-navbar-brand-padding-y: 0.40625rem;
4826
  --bs-navbar-brand-margin-end: 1rem;
4827
  --bs-navbar-brand-font-size: 1rem;
4828
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4829
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4830
  --bs-navbar-nav-link-padding-x: 0.5rem;
4831
  --bs-navbar-toggler-padding-y: 0.25rem;
4832
  --bs-navbar-toggler-padding-x: 0.75rem;
4833
  --bs-navbar-toggler-font-size: 1rem;
4834
  --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");
4835
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4836
  --bs-navbar-toggler-border-radius: 0.25rem;
4837
  --bs-navbar-toggler-focus-width: 0;
4838
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4839
  position: relative;
4840
  display: flex;
4841
  flex-wrap: wrap;
4842
  align-items: center;
4843
  justify-content: space-between;
4844
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4845
}
16848 stevensc 4846
 
4847
.navbar>.container,
4848
.navbar>.container-fluid,
4849
.navbar>.container-sm,
4850
.navbar>.container-md,
4851
.navbar>.container-lg,
4852
.navbar>.container-xl,
4853
.navbar>.container-xxl {
16825 efrain 4854
  display: flex;
4855
  flex-wrap: inherit;
4856
  align-items: center;
4857
  justify-content: space-between;
4858
}
16848 stevensc 4859
 
16825 efrain 4860
.navbar-brand {
4861
  padding-top: var(--bs-navbar-brand-padding-y);
4862
  padding-bottom: var(--bs-navbar-brand-padding-y);
4863
  margin-right: var(--bs-navbar-brand-margin-end);
4864
  font-size: var(--bs-navbar-brand-font-size);
4865
  color: var(--bs-navbar-brand-color);
4866
  white-space: nowrap;
4867
}
16848 stevensc 4868
 
4869
.navbar-brand:hover,
4870
.navbar-brand:focus {
16825 efrain 4871
  color: var(--bs-navbar-brand-hover-color);
4872
}
4873
 
4874
.navbar-nav {
4875
  --bs-nav-link-padding-x: 0;
4876
  --bs-nav-link-padding-y: 0.5rem;
4877
  --bs-nav-link-font-weight: ;
4878
  --bs-nav-link-color: var(--bs-navbar-color);
4879
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4880
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4881
  display: flex;
4882
  flex-direction: column;
4883
  padding-left: 0;
4884
  margin-bottom: 0;
4885
  list-style: none;
4886
}
16848 stevensc 4887
 
4888
.navbar-nav .show>.nav-link,
16825 efrain 4889
.navbar-nav .nav-link.active {
4890
  color: var(--bs-navbar-active-color);
4891
}
16848 stevensc 4892
 
4893
.navbar-nav .dropdown-menu,
4894
.navbar-nav .tt-menu {
16825 efrain 4895
  position: static;
4896
}
4897
 
4898
.navbar-text {
4899
  padding-top: 0.5rem;
4900
  padding-bottom: 0.5rem;
4901
  color: var(--bs-navbar-color);
4902
}
16848 stevensc 4903
 
16825 efrain 4904
.navbar-text a,
4905
.navbar-text a:hover,
4906
.navbar-text a:focus {
4907
  color: var(--bs-navbar-active-color);
4908
}
4909
 
4910
.navbar-collapse {
4911
  flex-basis: 100%;
4912
  flex-grow: 1;
4913
  align-items: center;
4914
}
4915
 
4916
.navbar-toggler {
4917
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4918
  font-size: var(--bs-navbar-toggler-font-size);
4919
  line-height: 1;
4920
  color: var(--bs-navbar-color);
4921
  background-color: transparent;
4922
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4923
  border-radius: var(--bs-navbar-toggler-border-radius);
4924
  transition: var(--bs-navbar-toggler-transition);
4925
}
16848 stevensc 4926
 
16825 efrain 4927
@media (prefers-reduced-motion: reduce) {
4928
  .navbar-toggler {
4929
    transition: none;
4930
  }
4931
}
16848 stevensc 4932
 
16825 efrain 4933
.navbar-toggler:hover {
4934
  text-decoration: none;
4935
}
16848 stevensc 4936
 
16825 efrain 4937
.navbar-toggler:focus {
4938
  text-decoration: none;
4939
  outline: 0;
4940
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4941
}
4942
 
4943
.navbar-toggler-icon {
4944
  display: inline-block;
4945
  width: 1.5em;
4946
  height: 1.5em;
4947
  vertical-align: middle;
4948
  background-image: var(--bs-navbar-toggler-icon-bg);
4949
  background-repeat: no-repeat;
4950
  background-position: center;
4951
  background-size: 100%;
4952
}
4953
 
4954
.navbar-nav-scroll {
4955
  max-height: var(--bs-scroll-height, 75vh);
4956
  overflow-y: auto;
4957
}
4958
 
4959
@media (min-width: 576px) {
4960
  .navbar-expand-sm {
4961
    flex-wrap: nowrap;
4962
    justify-content: flex-start;
4963
  }
16848 stevensc 4964
 
16825 efrain 4965
  .navbar-expand-sm .navbar-nav {
4966
    flex-direction: row;
4967
  }
16848 stevensc 4968
 
4969
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4970
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4971
    position: absolute;
4972
  }
16848 stevensc 4973
 
16825 efrain 4974
  .navbar-expand-sm .navbar-nav .nav-link {
4975
    padding-right: var(--bs-navbar-nav-link-padding-x);
4976
    padding-left: var(--bs-navbar-nav-link-padding-x);
4977
  }
16848 stevensc 4978
 
16825 efrain 4979
  .navbar-expand-sm .navbar-nav-scroll {
4980
    overflow: visible;
4981
  }
16848 stevensc 4982
 
16825 efrain 4983
  .navbar-expand-sm .navbar-collapse {
4984
    display: flex !important;
4985
    flex-basis: auto;
4986
  }
16848 stevensc 4987
 
16825 efrain 4988
  .navbar-expand-sm .navbar-toggler {
4989
    display: none;
4990
  }
16848 stevensc 4991
 
16825 efrain 4992
  .navbar-expand-sm .offcanvas {
4993
    position: static;
4994
    z-index: auto;
4995
    flex-grow: 1;
4996
    width: auto !important;
4997
    height: auto !important;
4998
    visibility: visible !important;
4999
    background-color: transparent !important;
5000
    border: 0 !important;
5001
    transform: none !important;
5002
    transition: none;
5003
  }
16848 stevensc 5004
 
16825 efrain 5005
  .navbar-expand-sm .offcanvas .offcanvas-header {
5006
    display: none;
5007
  }
16848 stevensc 5008
 
16825 efrain 5009
  .navbar-expand-sm .offcanvas .offcanvas-body {
5010
    display: flex;
5011
    flex-grow: 0;
5012
    padding: 0;
5013
    overflow-y: visible;
5014
  }
5015
}
16848 stevensc 5016
 
16825 efrain 5017
@media (min-width: 768px) {
5018
  .navbar-expand-md {
5019
    flex-wrap: nowrap;
5020
    justify-content: flex-start;
5021
  }
16848 stevensc 5022
 
16825 efrain 5023
  .navbar-expand-md .navbar-nav {
5024
    flex-direction: row;
5025
  }
16848 stevensc 5026
 
5027
  .navbar-expand-md .navbar-nav .dropdown-menu,
5028
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 5029
    position: absolute;
5030
  }
16848 stevensc 5031
 
16825 efrain 5032
  .navbar-expand-md .navbar-nav .nav-link {
5033
    padding-right: var(--bs-navbar-nav-link-padding-x);
5034
    padding-left: var(--bs-navbar-nav-link-padding-x);
5035
  }
16848 stevensc 5036
 
16825 efrain 5037
  .navbar-expand-md .navbar-nav-scroll {
5038
    overflow: visible;
5039
  }
16848 stevensc 5040
 
16825 efrain 5041
  .navbar-expand-md .navbar-collapse {
5042
    display: flex !important;
5043
    flex-basis: auto;
5044
  }
16848 stevensc 5045
 
16825 efrain 5046
  .navbar-expand-md .navbar-toggler {
5047
    display: none;
5048
  }
16848 stevensc 5049
 
16825 efrain 5050
  .navbar-expand-md .offcanvas {
5051
    position: static;
5052
    z-index: auto;
5053
    flex-grow: 1;
5054
    width: auto !important;
5055
    height: auto !important;
5056
    visibility: visible !important;
5057
    background-color: transparent !important;
5058
    border: 0 !important;
5059
    transform: none !important;
5060
    transition: none;
5061
  }
16848 stevensc 5062
 
16825 efrain 5063
  .navbar-expand-md .offcanvas .offcanvas-header {
5064
    display: none;
5065
  }
16848 stevensc 5066
 
16825 efrain 5067
  .navbar-expand-md .offcanvas .offcanvas-body {
5068
    display: flex;
5069
    flex-grow: 0;
5070
    padding: 0;
5071
    overflow-y: visible;
5072
  }
5073
}
16848 stevensc 5074
 
16825 efrain 5075
@media (min-width: 992px) {
5076
  .navbar-expand-lg {
5077
    flex-wrap: nowrap;
5078
    justify-content: flex-start;
5079
  }
16848 stevensc 5080
 
16825 efrain 5081
  .navbar-expand-lg .navbar-nav {
5082
    flex-direction: row;
5083
  }
16848 stevensc 5084
 
5085
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5086
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5087
    position: absolute;
5088
  }
16848 stevensc 5089
 
16825 efrain 5090
  .navbar-expand-lg .navbar-nav .nav-link {
5091
    padding-right: var(--bs-navbar-nav-link-padding-x);
5092
    padding-left: var(--bs-navbar-nav-link-padding-x);
5093
  }
16848 stevensc 5094
 
16825 efrain 5095
  .navbar-expand-lg .navbar-nav-scroll {
5096
    overflow: visible;
5097
  }
16848 stevensc 5098
 
16825 efrain 5099
  .navbar-expand-lg .navbar-collapse {
5100
    display: flex !important;
5101
    flex-basis: auto;
5102
  }
16848 stevensc 5103
 
16825 efrain 5104
  .navbar-expand-lg .navbar-toggler {
5105
    display: none;
5106
  }
16848 stevensc 5107
 
16825 efrain 5108
  .navbar-expand-lg .offcanvas {
5109
    position: static;
5110
    z-index: auto;
5111
    flex-grow: 1;
5112
    width: auto !important;
5113
    height: auto !important;
5114
    visibility: visible !important;
5115
    background-color: transparent !important;
5116
    border: 0 !important;
5117
    transform: none !important;
5118
    transition: none;
5119
  }
16848 stevensc 5120
 
16825 efrain 5121
  .navbar-expand-lg .offcanvas .offcanvas-header {
5122
    display: none;
5123
  }
16848 stevensc 5124
 
16825 efrain 5125
  .navbar-expand-lg .offcanvas .offcanvas-body {
5126
    display: flex;
5127
    flex-grow: 0;
5128
    padding: 0;
5129
    overflow-y: visible;
5130
  }
5131
}
16848 stevensc 5132
 
16825 efrain 5133
@media (min-width: 1200px) {
5134
  .navbar-expand-xl {
5135
    flex-wrap: nowrap;
5136
    justify-content: flex-start;
5137
  }
16848 stevensc 5138
 
16825 efrain 5139
  .navbar-expand-xl .navbar-nav {
5140
    flex-direction: row;
5141
  }
16848 stevensc 5142
 
5143
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5144
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5145
    position: absolute;
5146
  }
16848 stevensc 5147
 
16825 efrain 5148
  .navbar-expand-xl .navbar-nav .nav-link {
5149
    padding-right: var(--bs-navbar-nav-link-padding-x);
5150
    padding-left: var(--bs-navbar-nav-link-padding-x);
5151
  }
16848 stevensc 5152
 
16825 efrain 5153
  .navbar-expand-xl .navbar-nav-scroll {
5154
    overflow: visible;
5155
  }
16848 stevensc 5156
 
16825 efrain 5157
  .navbar-expand-xl .navbar-collapse {
5158
    display: flex !important;
5159
    flex-basis: auto;
5160
  }
16848 stevensc 5161
 
16825 efrain 5162
  .navbar-expand-xl .navbar-toggler {
5163
    display: none;
5164
  }
16848 stevensc 5165
 
16825 efrain 5166
  .navbar-expand-xl .offcanvas {
5167
    position: static;
5168
    z-index: auto;
5169
    flex-grow: 1;
5170
    width: auto !important;
5171
    height: auto !important;
5172
    visibility: visible !important;
5173
    background-color: transparent !important;
5174
    border: 0 !important;
5175
    transform: none !important;
5176
    transition: none;
5177
  }
16848 stevensc 5178
 
16825 efrain 5179
  .navbar-expand-xl .offcanvas .offcanvas-header {
5180
    display: none;
5181
  }
16848 stevensc 5182
 
16825 efrain 5183
  .navbar-expand-xl .offcanvas .offcanvas-body {
5184
    display: flex;
5185
    flex-grow: 0;
5186
    padding: 0;
5187
    overflow-y: visible;
5188
  }
5189
}
16848 stevensc 5190
 
16825 efrain 5191
@media (min-width: 1400px) {
5192
  .navbar-expand-xxl {
5193
    flex-wrap: nowrap;
5194
    justify-content: flex-start;
5195
  }
16848 stevensc 5196
 
16825 efrain 5197
  .navbar-expand-xxl .navbar-nav {
5198
    flex-direction: row;
5199
  }
16848 stevensc 5200
 
5201
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5202
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5203
    position: absolute;
5204
  }
16848 stevensc 5205
 
16825 efrain 5206
  .navbar-expand-xxl .navbar-nav .nav-link {
5207
    padding-right: var(--bs-navbar-nav-link-padding-x);
5208
    padding-left: var(--bs-navbar-nav-link-padding-x);
5209
  }
16848 stevensc 5210
 
16825 efrain 5211
  .navbar-expand-xxl .navbar-nav-scroll {
5212
    overflow: visible;
5213
  }
16848 stevensc 5214
 
16825 efrain 5215
  .navbar-expand-xxl .navbar-collapse {
5216
    display: flex !important;
5217
    flex-basis: auto;
5218
  }
16848 stevensc 5219
 
16825 efrain 5220
  .navbar-expand-xxl .navbar-toggler {
5221
    display: none;
5222
  }
16848 stevensc 5223
 
16825 efrain 5224
  .navbar-expand-xxl .offcanvas {
5225
    position: static;
5226
    z-index: auto;
5227
    flex-grow: 1;
5228
    width: auto !important;
5229
    height: auto !important;
5230
    visibility: visible !important;
5231
    background-color: transparent !important;
5232
    border: 0 !important;
5233
    transform: none !important;
5234
    transition: none;
5235
  }
16848 stevensc 5236
 
16825 efrain 5237
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5238
    display: none;
5239
  }
16848 stevensc 5240
 
16825 efrain 5241
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5242
    display: flex;
5243
    flex-grow: 0;
5244
    padding: 0;
5245
    overflow-y: visible;
5246
  }
5247
}
16848 stevensc 5248
 
16825 efrain 5249
.navbar-expand {
5250
  flex-wrap: nowrap;
5251
  justify-content: flex-start;
5252
}
16848 stevensc 5253
 
16825 efrain 5254
.navbar-expand .navbar-nav {
5255
  flex-direction: row;
5256
}
16848 stevensc 5257
 
5258
.navbar-expand .navbar-nav .dropdown-menu,
5259
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5260
  position: absolute;
5261
}
16848 stevensc 5262
 
16825 efrain 5263
.navbar-expand .navbar-nav .nav-link {
5264
  padding-right: var(--bs-navbar-nav-link-padding-x);
5265
  padding-left: var(--bs-navbar-nav-link-padding-x);
5266
}
16848 stevensc 5267
 
16825 efrain 5268
.navbar-expand .navbar-nav-scroll {
5269
  overflow: visible;
5270
}
16848 stevensc 5271
 
16825 efrain 5272
.navbar-expand .navbar-collapse {
5273
  display: flex !important;
5274
  flex-basis: auto;
5275
}
16848 stevensc 5276
 
16825 efrain 5277
.navbar-expand .navbar-toggler {
5278
  display: none;
5279
}
16848 stevensc 5280
 
16825 efrain 5281
.navbar-expand .offcanvas {
5282
  position: static;
5283
  z-index: auto;
5284
  flex-grow: 1;
5285
  width: auto !important;
5286
  height: auto !important;
5287
  visibility: visible !important;
5288
  background-color: transparent !important;
5289
  border: 0 !important;
5290
  transform: none !important;
5291
  transition: none;
5292
}
16848 stevensc 5293
 
16825 efrain 5294
.navbar-expand .offcanvas .offcanvas-header {
5295
  display: none;
5296
}
16848 stevensc 5297
 
16825 efrain 5298
.navbar-expand .offcanvas .offcanvas-body {
5299
  display: flex;
5300
  flex-grow: 0;
5301
  padding: 0;
5302
  overflow-y: visible;
5303
}
5304
 
5305
.navbar-dark {
5306
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5307
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5308
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5309
  --bs-navbar-active-color: #fff;
5310
  --bs-navbar-brand-color: #fff;
5311
  --bs-navbar-brand-hover-color: #fff;
5312
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5313
  --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");
5314
}
5315
 
5316
.card {
5317
  --bs-card-spacer-y: 1.5rem;
5318
  --bs-card-spacer-x: 1.5rem;
5319
  --bs-card-title-spacer-y: 0.875rem;
5320
  --bs-card-border-width: 1px;
5321
  --bs-card-border-color: #f2f4f9;
5322
  --bs-card-border-radius: 0.25rem;
5323
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5324
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5325
  --bs-card-cap-padding-y: 0.875rem;
5326
  --bs-card-cap-padding-x: 1.5rem;
5327
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5328
  --bs-card-cap-color: ;
5329
  --bs-card-height: ;
5330
  --bs-card-color: ;
5331
  --bs-card-bg: #fff;
5332
  --bs-card-img-overlay-padding: 1rem;
5333
  --bs-card-group-margin: 0.75rem;
5334
  position: relative;
5335
  display: flex;
5336
  flex-direction: column;
5337
  min-width: 0;
5338
  height: var(--bs-card-height);
5339
  word-wrap: break-word;
5340
  background-color: var(--bs-card-bg);
5341
  background-clip: border-box;
5342
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5343
  border-radius: var(--bs-card-border-radius);
5344
}
16848 stevensc 5345
 
5346
.card>hr {
16825 efrain 5347
  margin-right: 0;
5348
  margin-left: 0;
5349
}
16848 stevensc 5350
 
5351
.card>.list-group {
16825 efrain 5352
  border-top: inherit;
5353
  border-bottom: inherit;
5354
}
16848 stevensc 5355
 
5356
.card>.list-group:first-child {
16825 efrain 5357
  border-top-width: 0;
5358
  border-top-left-radius: var(--bs-card-inner-border-radius);
5359
  border-top-right-radius: var(--bs-card-inner-border-radius);
5360
}
16848 stevensc 5361
 
5362
.card>.list-group:last-child {
16825 efrain 5363
  border-bottom-width: 0;
5364
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5365
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5366
}
16848 stevensc 5367
 
5368
.card>.card-header+.list-group,
5369
.card>.list-group+.card-footer {
16825 efrain 5370
  border-top: 0;
5371
}
5372
 
5373
.card-body {
5374
  flex: 1 1 auto;
5375
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5376
  color: var(--bs-card-color);
5377
}
5378
 
5379
.card-title {
5380
  margin-bottom: var(--bs-card-title-spacer-y);
5381
}
5382
 
5383
.card-subtitle {
5384
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5385
  margin-bottom: 0;
5386
}
5387
 
5388
.card-text:last-child {
5389
  margin-bottom: 0;
5390
}
5391
 
16848 stevensc 5392
.card-link+.card-link {
16825 efrain 5393
  margin-left: var(--bs-card-spacer-x);
5394
}
5395
 
5396
.card-header {
5397
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5398
  margin-bottom: 0;
5399
  color: var(--bs-card-cap-color);
5400
  background-color: var(--bs-card-cap-bg);
5401
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5402
}
16848 stevensc 5403
 
16825 efrain 5404
.card-header:first-child {
5405
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5406
}
5407
 
5408
.card-footer {
5409
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5410
  color: var(--bs-card-cap-color);
5411
  background-color: var(--bs-card-cap-bg);
5412
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5413
}
16848 stevensc 5414
 
16825 efrain 5415
.card-footer:last-child {
5416
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5417
}
5418
 
5419
.card-header-tabs {
5420
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5421
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5422
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5423
  border-bottom: 0;
5424
}
16848 stevensc 5425
 
16825 efrain 5426
.card-header-tabs .nav-link.active {
5427
  background-color: var(--bs-card-bg);
5428
  border-bottom-color: var(--bs-card-bg);
5429
}
5430
 
5431
.card-header-pills {
5432
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5433
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5434
}
5435
 
5436
.card-img-overlay {
5437
  position: absolute;
5438
  top: 0;
5439
  right: 0;
5440
  bottom: 0;
5441
  left: 0;
5442
  padding: var(--bs-card-img-overlay-padding);
5443
  border-radius: var(--bs-card-inner-border-radius);
5444
}
5445
 
5446
.card-img,
5447
.card-img-top,
5448
.card-img-bottom {
5449
  width: 100%;
5450
}
5451
 
5452
.card-img,
5453
.card-img-top {
5454
  border-top-left-radius: var(--bs-card-inner-border-radius);
5455
  border-top-right-radius: var(--bs-card-inner-border-radius);
5456
}
5457
 
5458
.card-img,
5459
.card-img-bottom {
5460
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5461
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5462
}
5463
 
16848 stevensc 5464
.card-group>.card {
16825 efrain 5465
  margin-bottom: var(--bs-card-group-margin);
5466
}
16848 stevensc 5467
 
16825 efrain 5468
@media (min-width: 576px) {
5469
  .card-group {
5470
    display: flex;
5471
    flex-flow: row wrap;
5472
  }
16848 stevensc 5473
 
5474
  .card-group>.card {
16825 efrain 5475
    flex: 1 0 0%;
5476
    margin-bottom: 0;
5477
  }
16848 stevensc 5478
 
5479
  .card-group>.card+.card {
16825 efrain 5480
    margin-left: 0;
5481
    border-left: 0;
5482
  }
16848 stevensc 5483
 
5484
  .card-group>.card:not(:last-child) {
16825 efrain 5485
    border-top-right-radius: 0;
5486
    border-bottom-right-radius: 0;
5487
  }
16848 stevensc 5488
 
5489
  .card-group>.card:not(:last-child) .card-img-top,
5490
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5491
    border-top-right-radius: 0;
5492
  }
16848 stevensc 5493
 
5494
  .card-group>.card:not(:last-child) .card-img-bottom,
5495
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5496
    border-bottom-right-radius: 0;
5497
  }
16848 stevensc 5498
 
5499
  .card-group>.card:not(:first-child) {
16825 efrain 5500
    border-top-left-radius: 0;
5501
    border-bottom-left-radius: 0;
5502
  }
16848 stevensc 5503
 
5504
  .card-group>.card:not(:first-child) .card-img-top,
5505
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5506
    border-top-left-radius: 0;
5507
  }
16848 stevensc 5508
 
5509
  .card-group>.card:not(:first-child) .card-img-bottom,
5510
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5511
    border-bottom-left-radius: 0;
5512
  }
5513
}
5514
 
5515
.accordion {
5516
  --bs-accordion-color: #000;
5517
  --bs-accordion-bg: #fff;
5518
  --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;
5519
  --bs-accordion-border-color: #e9ecef;
5520
  --bs-accordion-border-width: 1px;
5521
  --bs-accordion-border-radius: 0.25rem;
5522
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5523
  --bs-accordion-btn-padding-x: 1.25rem;
5524
  --bs-accordion-btn-padding-y: 1rem;
5525
  --bs-accordion-btn-color: #000;
5526
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5527
  --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");
5528
  --bs-accordion-btn-icon-width: 0.875rem;
5529
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5530
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5531
  --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");
5532
  --bs-accordion-btn-focus-border-color: #cbd1db;
5533
  --bs-accordion-btn-focus-box-shadow: none;
5534
  --bs-accordion-body-padding-x: 1.25rem;
5535
  --bs-accordion-body-padding-y: 1rem;
5536
  --bs-accordion-active-color: #5b66e6;
5537
  --bs-accordion-active-bg: #f0f1ff;
5538
}
5539
 
5540
.accordion-button {
5541
  position: relative;
5542
  display: flex;
5543
  align-items: center;
5544
  width: 100%;
5545
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5546
  font-size: 0.875rem;
5547
  color: var(--bs-accordion-btn-color);
5548
  text-align: left;
5549
  background-color: var(--bs-accordion-btn-bg);
5550
  border: 0;
5551
  border-radius: 0;
5552
  overflow-anchor: none;
5553
  transition: var(--bs-accordion-transition);
5554
}
16848 stevensc 5555
 
16825 efrain 5556
@media (prefers-reduced-motion: reduce) {
5557
  .accordion-button {
5558
    transition: none;
5559
  }
5560
}
16848 stevensc 5561
 
16825 efrain 5562
.accordion-button:not(.collapsed) {
5563
  color: var(--bs-accordion-active-color);
5564
  background-color: var(--bs-accordion-active-bg);
5565
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5566
}
16848 stevensc 5567
 
16825 efrain 5568
.accordion-button:not(.collapsed)::after {
5569
  background-image: var(--bs-accordion-btn-active-icon);
5570
  transform: var(--bs-accordion-btn-icon-transform);
5571
}
16848 stevensc 5572
 
16825 efrain 5573
.accordion-button::after {
5574
  flex-shrink: 0;
5575
  width: var(--bs-accordion-btn-icon-width);
5576
  height: var(--bs-accordion-btn-icon-width);
5577
  margin-left: auto;
5578
  content: "";
5579
  background-image: var(--bs-accordion-btn-icon);
5580
  background-repeat: no-repeat;
5581
  background-size: var(--bs-accordion-btn-icon-width);
5582
  transition: var(--bs-accordion-btn-icon-transition);
5583
}
16848 stevensc 5584
 
16825 efrain 5585
@media (prefers-reduced-motion: reduce) {
5586
  .accordion-button::after {
5587
    transition: none;
5588
  }
5589
}
16848 stevensc 5590
 
16825 efrain 5591
.accordion-button:hover {
5592
  z-index: 2;
5593
}
16848 stevensc 5594
 
16825 efrain 5595
.accordion-button:focus {
5596
  z-index: 3;
5597
  border-color: var(--bs-accordion-btn-focus-border-color);
5598
  outline: 0;
5599
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5600
}
5601
 
5602
.accordion-header {
5603
  margin-bottom: 0;
5604
}
5605
 
5606
.accordion-item {
5607
  color: var(--bs-accordion-color);
5608
  background-color: var(--bs-accordion-bg);
5609
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5610
}
16848 stevensc 5611
 
16825 efrain 5612
.accordion-item:first-of-type {
5613
  border-top-left-radius: var(--bs-accordion-border-radius);
5614
  border-top-right-radius: var(--bs-accordion-border-radius);
5615
}
16848 stevensc 5616
 
16825 efrain 5617
.accordion-item:first-of-type .accordion-button {
5618
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5619
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5620
}
16848 stevensc 5621
 
16825 efrain 5622
.accordion-item:not(:first-of-type) {
5623
  border-top: 0;
5624
}
16848 stevensc 5625
 
16825 efrain 5626
.accordion-item:last-of-type {
5627
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5628
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5629
}
16848 stevensc 5630
 
16825 efrain 5631
.accordion-item:last-of-type .accordion-button.collapsed {
5632
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5633
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5634
}
16848 stevensc 5635
 
16825 efrain 5636
.accordion-item:last-of-type .accordion-collapse {
5637
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5638
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5639
}
5640
 
5641
.accordion-body {
5642
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5643
}
5644
 
5645
.accordion-flush .accordion-collapse {
5646
  border-width: 0;
5647
}
16848 stevensc 5648
 
16825 efrain 5649
.accordion-flush .accordion-item {
5650
  border-right: 0;
5651
  border-left: 0;
5652
  border-radius: 0;
5653
}
16848 stevensc 5654
 
16825 efrain 5655
.accordion-flush .accordion-item:first-child {
5656
  border-top: 0;
5657
}
16848 stevensc 5658
 
16825 efrain 5659
.accordion-flush .accordion-item:last-child {
5660
  border-bottom: 0;
5661
}
16848 stevensc 5662
 
5663
.accordion-flush .accordion-item .accordion-button,
5664
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5665
  border-radius: 0;
5666
}
5667
 
5668
.breadcrumb {
5669
  --bs-breadcrumb-padding-x: 0;
5670
  --bs-breadcrumb-padding-y: 0;
5671
  --bs-breadcrumb-margin-bottom: 1rem;
5672
  --bs-breadcrumb-bg: ;
5673
  --bs-breadcrumb-border-radius: ;
5674
  --bs-breadcrumb-divider-color: #7987a1;
5675
  --bs-breadcrumb-item-padding-x: 0.5rem;
5676
  --bs-breadcrumb-item-active-color: #7987a1;
5677
  display: flex;
5678
  flex-wrap: wrap;
5679
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5680
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5681
  font-size: var(--bs-breadcrumb-font-size);
5682
  list-style: none;
5683
  background-color: var(--bs-breadcrumb-bg);
5684
  border-radius: var(--bs-breadcrumb-border-radius);
5685
}
5686
 
16848 stevensc 5687
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5688
  padding-left: var(--bs-breadcrumb-item-padding-x);
5689
}
16848 stevensc 5690
 
5691
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5692
  float: left;
5693
  padding-right: var(--bs-breadcrumb-item-padding-x);
5694
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5695
  content: var(--bs-breadcrumb-divider, "/")
5696
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5697
  ;
16825 efrain 5698
}
16848 stevensc 5699
 
16825 efrain 5700
.breadcrumb-item.active {
5701
  color: var(--bs-breadcrumb-item-active-color);
5702
}
5703
 
5704
.pagination {
5705
  --bs-pagination-padding-x: 1rem;
5706
  --bs-pagination-padding-y: 0.469rem;
5707
  --bs-pagination-font-size: 0.875rem;
5708
  --bs-pagination-color: #6571ff;
5709
  --bs-pagination-bg: #fff;
5710
  --bs-pagination-border-width: 1px;
5711
  --bs-pagination-border-color: #dee2e6;
5712
  --bs-pagination-border-radius: 0.25rem;
5713
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5714
  --bs-pagination-hover-bg: #e9ecef;
5715
  --bs-pagination-hover-border-color: #dee2e6;
5716
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5717
  --bs-pagination-focus-bg: #e9ecef;
5718
  --bs-pagination-focus-box-shadow: none;
5719
  --bs-pagination-active-color: #fff;
5720
  --bs-pagination-active-bg: #6571ff;
5721
  --bs-pagination-active-border-color: #6571ff;
5722
  --bs-pagination-disabled-color: #7987a1;
5723
  --bs-pagination-disabled-bg: #fff;
5724
  --bs-pagination-disabled-border-color: #dee2e6;
5725
  display: flex;
5726
  padding-left: 0;
5727
  list-style: none;
5728
}
5729
 
5730
.page-link {
5731
  position: relative;
5732
  display: block;
5733
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5734
  font-size: var(--bs-pagination-font-size);
5735
  color: var(--bs-pagination-color);
5736
  background-color: var(--bs-pagination-bg);
5737
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5738
  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;
5739
}
16848 stevensc 5740
 
16825 efrain 5741
@media (prefers-reduced-motion: reduce) {
5742
  .page-link {
5743
    transition: none;
5744
  }
5745
}
16848 stevensc 5746
 
16825 efrain 5747
.page-link:hover {
5748
  z-index: 2;
5749
  color: var(--bs-pagination-hover-color);
5750
  background-color: var(--bs-pagination-hover-bg);
5751
  border-color: var(--bs-pagination-hover-border-color);
5752
}
16848 stevensc 5753
 
16825 efrain 5754
.page-link:focus {
5755
  z-index: 3;
5756
  color: var(--bs-pagination-focus-color);
5757
  background-color: var(--bs-pagination-focus-bg);
5758
  outline: 0;
5759
  box-shadow: var(--bs-pagination-focus-box-shadow);
5760
}
16848 stevensc 5761
 
5762
.page-link.active,
5763
.active>.page-link {
16825 efrain 5764
  z-index: 3;
5765
  color: var(--bs-pagination-active-color);
5766
  background-color: var(--bs-pagination-active-bg);
5767
  border-color: var(--bs-pagination-active-border-color);
5768
}
16848 stevensc 5769
 
5770
.page-link.disabled,
5771
.disabled>.page-link {
16825 efrain 5772
  color: var(--bs-pagination-disabled-color);
5773
  pointer-events: none;
5774
  background-color: var(--bs-pagination-disabled-bg);
5775
  border-color: var(--bs-pagination-disabled-border-color);
5776
}
5777
 
5778
.page-item:not(:first-child) .page-link {
5779
  margin-left: -1px;
5780
}
16848 stevensc 5781
 
16825 efrain 5782
.page-item:first-child .page-link {
5783
  border-top-left-radius: var(--bs-pagination-border-radius);
5784
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5785
}
16848 stevensc 5786
 
16825 efrain 5787
.page-item:last-child .page-link {
5788
  border-top-right-radius: var(--bs-pagination-border-radius);
5789
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5790
}
5791
 
5792
.pagination-lg {
5793
  --bs-pagination-padding-x: 1.1rem;
5794
  --bs-pagination-padding-y: 0.5rem;
5795
  --bs-pagination-font-size: 1rem;
5796
  --bs-pagination-border-radius: 0.5rem;
5797
}
5798
 
5799
.pagination-sm {
5800
  --bs-pagination-padding-x: 0.75rem;
5801
  --bs-pagination-padding-y: 0.391rem;
5802
  --bs-pagination-font-size: 0.812rem;
5803
  --bs-pagination-border-radius: 0.25rem;
5804
}
5805
 
5806
.badge {
5807
  --bs-badge-padding-x: 0.65em;
5808
  --bs-badge-padding-y: 0.35em;
5809
  --bs-badge-font-size: 0.8em;
5810
  --bs-badge-font-weight: 500;
5811
  --bs-badge-color: #fff;
5812
  --bs-badge-border-radius: 0.25rem;
5813
  display: inline-block;
5814
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5815
  font-size: var(--bs-badge-font-size);
5816
  font-weight: var(--bs-badge-font-weight);
5817
  line-height: 1;
5818
  color: var(--bs-badge-color);
5819
  text-align: center;
5820
  white-space: nowrap;
5821
  vertical-align: baseline;
5822
  border-radius: var(--bs-badge-border-radius);
5823
}
16848 stevensc 5824
 
16825 efrain 5825
.badge:empty {
5826
  display: none;
5827
}
5828
 
16848 stevensc 5829
.btn .badge,
5830
.wizard>.actions a .badge,
5831
div.tox .tox-button .badge,
5832
.swal2-popup .swal2-actions button .badge,
5833
.fc .fc-button-primary .badge {
16825 efrain 5834
  position: relative;
5835
  top: -1px;
5836
}
5837
 
5838
.alert {
5839
  --bs-alert-bg: transparent;
5840
  --bs-alert-padding-x: 1rem;
5841
  --bs-alert-padding-y: 1rem;
5842
  --bs-alert-margin-bottom: 1rem;
5843
  --bs-alert-color: inherit;
5844
  --bs-alert-border-color: transparent;
5845
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5846
  --bs-alert-border-radius: 0.25rem;
5847
  position: relative;
5848
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5849
  margin-bottom: var(--bs-alert-margin-bottom);
5850
  color: var(--bs-alert-color);
5851
  background-color: var(--bs-alert-bg);
5852
  border: var(--bs-alert-border);
5853
  border-radius: var(--bs-alert-border-radius);
5854
}
5855
 
5856
.alert-heading {
5857
  color: inherit;
5858
}
5859
 
5860
.alert-link {
5861
  font-weight: 500;
5862
}
5863
 
5864
.alert-dismissible {
5865
  padding-right: 3rem;
5866
}
16848 stevensc 5867
 
16825 efrain 5868
.alert-dismissible .btn-close {
5869
  position: absolute;
5870
  top: 0;
5871
  right: 0;
5872
  z-index: 2;
5873
  padding: 1.25rem 1rem;
5874
}
5875
 
5876
.alert-primary {
5877
  --bs-alert-color: #3d4499;
5878
  --bs-alert-bg: #e0e3ff;
5879
  --bs-alert-border-color: #d1d4ff;
5880
}
16848 stevensc 5881
 
16825 efrain 5882
.alert-primary .alert-link {
5883
  color: #31367a;
5884
}
5885
 
5886
.alert-secondary {
5887
  --bs-alert-color: #495161;
5888
  --bs-alert-bg: #e4e7ec;
5889
  --bs-alert-border-color: #d7dbe3;
5890
}
16848 stevensc 5891
 
16825 efrain 5892
.alert-secondary .alert-link {
5893
  color: #3a414e;
5894
}
5895
 
5896
.alert-success {
5897
  --bs-alert-color: #03622c;
5898
  --bs-alert-bg: #cdeddb;
5899
  --bs-alert-border-color: #b4e3c9;
5900
}
16848 stevensc 5901
 
16825 efrain 5902
.alert-success .alert-link {
5903
  color: #024e23;
5904
}
5905
 
5906
.alert-info {
5907
  --bs-alert-color: #3d7d7d;
5908
  --bs-alert-bg: #e0f6f6;
5909
  --bs-alert-border-color: #d1f1f1;
5910
}
16848 stevensc 5911
 
16825 efrain 5912
.alert-info .alert-link {
5913
  color: #316464;
5914
}
5915
 
5916
.alert-warning {
5917
  --bs-alert-color: #977104;
5918
  --bs-alert-bg: #fef2cd;
5919
  --bs-alert-border-color: #feebb4;
5920
}
16848 stevensc 5921
 
16825 efrain 5922
.alert-warning .alert-link {
5923
  color: #795a03;
5924
}
5925
 
5926
.alert-danger {
5927
  --bs-alert-color: #991f3d;
5928
  --bs-alert-bg: #ffd6e0;
5929
  --bs-alert-border-color: #ffc2d1;
5930
}
16848 stevensc 5931
 
16825 efrain 5932
.alert-danger .alert-link {
5933
  color: #7a1931;
5934
}
5935
 
5936
.alert-light {
5937
  --bs-alert-color: #8c8e8f;
5938
  --bs-alert-bg: #fbfbfc;
5939
  --bs-alert-border-color: #f8f9fa;
5940
}
16848 stevensc 5941
 
16825 efrain 5942
.alert-light .alert-link {
5943
  color: #707272;
5944
}
5945
 
5946
.alert-dark {
5947
  --bs-alert-color: #04070e;
5948
  --bs-alert-bg: #cdced1;
5949
  --bs-alert-border-color: #b4b6b9;
5950
}
16848 stevensc 5951
 
16825 efrain 5952
.alert-dark .alert-link {
5953
  color: #03060b;
5954
}
5955
 
5956
@keyframes progress-bar-stripes {
5957
  0% {
5958
    background-position-x: 1rem;
5959
  }
5960
}
16848 stevensc 5961
 
16825 efrain 5962
.progress {
5963
  --bs-progress-height: 1rem;
5964
  --bs-progress-font-size: 0.65625rem;
5965
  --bs-progress-bg: #e9ecef;
5966
  --bs-progress-border-radius: 0.25rem;
5967
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5968
  --bs-progress-bar-color: #fff;
5969
  --bs-progress-bar-bg: #6571ff;
5970
  --bs-progress-bar-transition: width 0.6s ease;
5971
  display: flex;
5972
  height: var(--bs-progress-height);
5973
  overflow: hidden;
5974
  font-size: var(--bs-progress-font-size);
5975
  background-color: var(--bs-progress-bg);
5976
  border-radius: var(--bs-progress-border-radius);
5977
}
5978
 
5979
.progress-bar {
5980
  display: flex;
5981
  flex-direction: column;
5982
  justify-content: center;
5983
  overflow: hidden;
5984
  color: var(--bs-progress-bar-color);
5985
  text-align: center;
5986
  white-space: nowrap;
5987
  background-color: var(--bs-progress-bar-bg);
5988
  transition: var(--bs-progress-bar-transition);
5989
}
16848 stevensc 5990
 
16825 efrain 5991
@media (prefers-reduced-motion: reduce) {
5992
  .progress-bar {
5993
    transition: none;
5994
  }
5995
}
5996
 
5997
.progress-bar-striped {
5998
  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);
5999
  background-size: var(--bs-progress-height) var(--bs-progress-height);
6000
}
6001
 
6002
.progress-bar-animated {
6003
  animation: 1s linear infinite progress-bar-stripes;
6004
}
16848 stevensc 6005
 
16825 efrain 6006
@media (prefers-reduced-motion: reduce) {
6007
  .progress-bar-animated {
6008
    animation: none;
6009
  }
6010
}
6011
 
6012
.list-group {
6013
  --bs-list-group-color: #060c17;
6014
  --bs-list-group-bg: #fff;
6015
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
6016
  --bs-list-group-border-width: 1px;
6017
  --bs-list-group-border-radius: 0.25rem;
6018
  --bs-list-group-item-padding-x: 1.25rem;
6019
  --bs-list-group-item-padding-y: 0.75rem;
6020
  --bs-list-group-action-color: #41516c;
6021
  --bs-list-group-action-hover-color: #41516c;
6022
  --bs-list-group-action-hover-bg: #f8f9fa;
6023
  --bs-list-group-action-active-color: #000;
6024
  --bs-list-group-action-active-bg: #e9ecef;
6025
  --bs-list-group-disabled-color: #7987a1;
6026
  --bs-list-group-disabled-bg: #fff;
6027
  --bs-list-group-active-color: #fff;
6028
  --bs-list-group-active-bg: #6571ff;
6029
  --bs-list-group-active-border-color: #6571ff;
6030
  display: flex;
6031
  flex-direction: column;
6032
  padding-left: 0;
6033
  margin-bottom: 0;
6034
  border-radius: var(--bs-list-group-border-radius);
6035
}
6036
 
6037
.list-group-numbered {
6038
  list-style-type: none;
6039
  counter-reset: section;
6040
}
16848 stevensc 6041
 
6042
.list-group-numbered>.list-group-item::before {
16825 efrain 6043
  content: counters(section, ".") ". ";
6044
  counter-increment: section;
6045
}
6046
 
6047
.list-group-item-action {
6048
  width: 100%;
6049
  color: var(--bs-list-group-action-color);
6050
  text-align: inherit;
6051
}
16848 stevensc 6052
 
6053
.list-group-item-action:hover,
6054
.list-group-item-action:focus {
16825 efrain 6055
  z-index: 1;
6056
  color: var(--bs-list-group-action-hover-color);
6057
  text-decoration: none;
6058
  background-color: var(--bs-list-group-action-hover-bg);
6059
}
16848 stevensc 6060
 
16825 efrain 6061
.list-group-item-action:active {
6062
  color: var(--bs-list-group-action-active-color);
6063
  background-color: var(--bs-list-group-action-active-bg);
6064
}
6065
 
6066
.list-group-item {
6067
  position: relative;
6068
  display: block;
6069
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6070
  color: var(--bs-list-group-color);
6071
  background-color: var(--bs-list-group-bg);
6072
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6073
}
16848 stevensc 6074
 
16825 efrain 6075
.list-group-item:first-child {
6076
  border-top-left-radius: inherit;
6077
  border-top-right-radius: inherit;
6078
}
16848 stevensc 6079
 
16825 efrain 6080
.list-group-item:last-child {
6081
  border-bottom-right-radius: inherit;
6082
  border-bottom-left-radius: inherit;
6083
}
16848 stevensc 6084
 
6085
.list-group-item.disabled,
6086
.list-group-item:disabled {
16825 efrain 6087
  color: var(--bs-list-group-disabled-color);
6088
  pointer-events: none;
6089
  background-color: var(--bs-list-group-disabled-bg);
6090
}
16848 stevensc 6091
 
16825 efrain 6092
.list-group-item.active {
6093
  z-index: 2;
6094
  color: var(--bs-list-group-active-color);
6095
  background-color: var(--bs-list-group-active-bg);
6096
  border-color: var(--bs-list-group-active-border-color);
6097
}
16848 stevensc 6098
 
6099
.list-group-item+.list-group-item {
16825 efrain 6100
  border-top-width: 0;
6101
}
16848 stevensc 6102
 
6103
.list-group-item+.list-group-item.active {
16825 efrain 6104
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6105
  border-top-width: var(--bs-list-group-border-width);
6106
}
6107
 
6108
.list-group-horizontal {
6109
  flex-direction: row;
6110
}
16848 stevensc 6111
 
6112
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6113
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6114
  border-top-right-radius: 0;
6115
}
16848 stevensc 6116
 
6117
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6118
  border-top-right-radius: var(--bs-list-group-border-radius);
6119
  border-bottom-left-radius: 0;
6120
}
16848 stevensc 6121
 
6122
.list-group-horizontal>.list-group-item.active {
16825 efrain 6123
  margin-top: 0;
6124
}
16848 stevensc 6125
 
6126
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6127
  border-top-width: var(--bs-list-group-border-width);
6128
  border-left-width: 0;
6129
}
16848 stevensc 6130
 
6131
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6132
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6133
  border-left-width: var(--bs-list-group-border-width);
6134
}
6135
 
6136
@media (min-width: 576px) {
6137
  .list-group-horizontal-sm {
6138
    flex-direction: row;
6139
  }
16848 stevensc 6140
 
6141
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6142
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6143
    border-top-right-radius: 0;
6144
  }
16848 stevensc 6145
 
6146
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6147
    border-top-right-radius: var(--bs-list-group-border-radius);
6148
    border-bottom-left-radius: 0;
6149
  }
16848 stevensc 6150
 
6151
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6152
    margin-top: 0;
6153
  }
16848 stevensc 6154
 
6155
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6156
    border-top-width: var(--bs-list-group-border-width);
6157
    border-left-width: 0;
6158
  }
16848 stevensc 6159
 
6160
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6161
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6162
    border-left-width: var(--bs-list-group-border-width);
6163
  }
6164
}
16848 stevensc 6165
 
16825 efrain 6166
@media (min-width: 768px) {
6167
  .list-group-horizontal-md {
6168
    flex-direction: row;
6169
  }
16848 stevensc 6170
 
6171
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6172
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6173
    border-top-right-radius: 0;
6174
  }
16848 stevensc 6175
 
6176
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6177
    border-top-right-radius: var(--bs-list-group-border-radius);
6178
    border-bottom-left-radius: 0;
6179
  }
16848 stevensc 6180
 
6181
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6182
    margin-top: 0;
6183
  }
16848 stevensc 6184
 
6185
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6186
    border-top-width: var(--bs-list-group-border-width);
6187
    border-left-width: 0;
6188
  }
16848 stevensc 6189
 
6190
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6191
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6192
    border-left-width: var(--bs-list-group-border-width);
6193
  }
6194
}
16848 stevensc 6195
 
16825 efrain 6196
@media (min-width: 992px) {
6197
  .list-group-horizontal-lg {
6198
    flex-direction: row;
6199
  }
16848 stevensc 6200
 
6201
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6202
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6203
    border-top-right-radius: 0;
6204
  }
16848 stevensc 6205
 
6206
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6207
    border-top-right-radius: var(--bs-list-group-border-radius);
6208
    border-bottom-left-radius: 0;
6209
  }
16848 stevensc 6210
 
6211
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6212
    margin-top: 0;
6213
  }
16848 stevensc 6214
 
6215
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6216
    border-top-width: var(--bs-list-group-border-width);
6217
    border-left-width: 0;
6218
  }
16848 stevensc 6219
 
6220
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6221
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6222
    border-left-width: var(--bs-list-group-border-width);
6223
  }
6224
}
16848 stevensc 6225
 
16825 efrain 6226
@media (min-width: 1200px) {
6227
  .list-group-horizontal-xl {
6228
    flex-direction: row;
6229
  }
16848 stevensc 6230
 
6231
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6232
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6233
    border-top-right-radius: 0;
6234
  }
16848 stevensc 6235
 
6236
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6237
    border-top-right-radius: var(--bs-list-group-border-radius);
6238
    border-bottom-left-radius: 0;
6239
  }
16848 stevensc 6240
 
6241
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6242
    margin-top: 0;
6243
  }
16848 stevensc 6244
 
6245
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6246
    border-top-width: var(--bs-list-group-border-width);
6247
    border-left-width: 0;
6248
  }
16848 stevensc 6249
 
6250
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6251
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6252
    border-left-width: var(--bs-list-group-border-width);
6253
  }
6254
}
16848 stevensc 6255
 
16825 efrain 6256
@media (min-width: 1400px) {
6257
  .list-group-horizontal-xxl {
6258
    flex-direction: row;
6259
  }
16848 stevensc 6260
 
6261
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6262
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6263
    border-top-right-radius: 0;
6264
  }
16848 stevensc 6265
 
6266
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6267
    border-top-right-radius: var(--bs-list-group-border-radius);
6268
    border-bottom-left-radius: 0;
6269
  }
16848 stevensc 6270
 
6271
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6272
    margin-top: 0;
6273
  }
16848 stevensc 6274
 
6275
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6276
    border-top-width: var(--bs-list-group-border-width);
6277
    border-left-width: 0;
6278
  }
16848 stevensc 6279
 
6280
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6281
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6282
    border-left-width: var(--bs-list-group-border-width);
6283
  }
6284
}
16848 stevensc 6285
 
16825 efrain 6286
.list-group-flush {
6287
  border-radius: 0;
6288
}
16848 stevensc 6289
 
6290
.list-group-flush>.list-group-item {
16825 efrain 6291
  border-width: 0 0 var(--bs-list-group-border-width);
6292
}
16848 stevensc 6293
 
6294
.list-group-flush>.list-group-item:last-child {
16825 efrain 6295
  border-bottom-width: 0;
6296
}
6297
 
6298
.list-group-item-primary {
6299
  color: #3d4499;
6300
  background-color: #e0e3ff;
6301
}
16848 stevensc 6302
 
6303
.list-group-item-primary.list-group-item-action:hover,
6304
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6305
  color: #3d4499;
6306
  background-color: #cacce6;
6307
}
16848 stevensc 6308
 
16825 efrain 6309
.list-group-item-primary.list-group-item-action.active {
6310
  color: #fff;
6311
  background-color: #3d4499;
6312
  border-color: #3d4499;
6313
}
6314
 
6315
.list-group-item-secondary {
6316
  color: #495161;
6317
  background-color: #e4e7ec;
6318
}
16848 stevensc 6319
 
6320
.list-group-item-secondary.list-group-item-action:hover,
6321
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6322
  color: #495161;
6323
  background-color: #cdd0d4;
6324
}
16848 stevensc 6325
 
16825 efrain 6326
.list-group-item-secondary.list-group-item-action.active {
6327
  color: #fff;
6328
  background-color: #495161;
6329
  border-color: #495161;
6330
}
6331
 
6332
.list-group-item-success {
6333
  color: #03622c;
6334
  background-color: #cdeddb;
6335
}
16848 stevensc 6336
 
6337
.list-group-item-success.list-group-item-action:hover,
6338
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6339
  color: #03622c;
6340
  background-color: #b9d5c5;
6341
}
16848 stevensc 6342
 
16825 efrain 6343
.list-group-item-success.list-group-item-action.active {
6344
  color: #fff;
6345
  background-color: #03622c;
6346
  border-color: #03622c;
6347
}
6348
 
6349
.list-group-item-info {
6350
  color: #3d7d7d;
6351
  background-color: #e0f6f6;
6352
}
16848 stevensc 6353
 
6354
.list-group-item-info.list-group-item-action:hover,
6355
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6356
  color: #3d7d7d;
6357
  background-color: #cadddd;
6358
}
16848 stevensc 6359
 
16825 efrain 6360
.list-group-item-info.list-group-item-action.active {
6361
  color: #fff;
6362
  background-color: #3d7d7d;
6363
  border-color: #3d7d7d;
6364
}
6365
 
6366
.list-group-item-warning {
6367
  color: #977104;
6368
  background-color: #fef2cd;
6369
}
16848 stevensc 6370
 
6371
.list-group-item-warning.list-group-item-action:hover,
6372
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6373
  color: #977104;
6374
  background-color: #e5dab9;
6375
}
16848 stevensc 6376
 
16825 efrain 6377
.list-group-item-warning.list-group-item-action.active {
6378
  color: #fff;
6379
  background-color: #977104;
6380
  border-color: #977104;
6381
}
6382
 
6383
.list-group-item-danger {
6384
  color: #991f3d;
6385
  background-color: #ffd6e0;
6386
}
16848 stevensc 6387
 
6388
.list-group-item-danger.list-group-item-action:hover,
6389
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6390
  color: #991f3d;
6391
  background-color: #e6c1ca;
6392
}
16848 stevensc 6393
 
16825 efrain 6394
.list-group-item-danger.list-group-item-action.active {
6395
  color: #fff;
6396
  background-color: #991f3d;
6397
  border-color: #991f3d;
6398
}
6399
 
6400
.list-group-item-light {
6401
  color: #8c8e8f;
6402
  background-color: #fbfbfc;
6403
}
16848 stevensc 6404
 
6405
.list-group-item-light.list-group-item-action:hover,
6406
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6407
  color: #8c8e8f;
6408
  background-color: #e2e2e3;
6409
}
16848 stevensc 6410
 
16825 efrain 6411
.list-group-item-light.list-group-item-action.active {
6412
  color: #fff;
6413
  background-color: #8c8e8f;
6414
  border-color: #8c8e8f;
6415
}
6416
 
6417
.list-group-item-dark {
6418
  color: #04070e;
6419
  background-color: #cdced1;
6420
}
16848 stevensc 6421
 
6422
.list-group-item-dark.list-group-item-action:hover,
6423
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6424
  color: #04070e;
6425
  background-color: #b9b9bc;
6426
}
16848 stevensc 6427
 
16825 efrain 6428
.list-group-item-dark.list-group-item-action.active {
6429
  color: #fff;
6430
  background-color: #04070e;
6431
  border-color: #04070e;
6432
}
6433
 
6434
.btn-close {
6435
  box-sizing: content-box;
6436
  width: 0.8em;
6437
  height: 0.8em;
6438
  padding: 0.25em 0.25em;
6439
  color: #000;
6440
  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;
6441
  border: 0;
6442
  border-radius: 0.25rem;
6443
  opacity: 0.5;
6444
}
16848 stevensc 6445
 
16825 efrain 6446
.btn-close:hover {
6447
  color: #000;
6448
  text-decoration: none;
6449
  opacity: 0.75;
6450
}
16848 stevensc 6451
 
16825 efrain 6452
.btn-close:focus {
6453
  outline: 0;
6454
  box-shadow: none;
6455
  opacity: 1;
6456
}
16848 stevensc 6457
 
6458
.btn-close:disabled,
6459
.btn-close.disabled {
16825 efrain 6460
  pointer-events: none;
6461
  user-select: none;
6462
  opacity: 0.25;
6463
}
6464
 
6465
.btn-close-white {
6466
  filter: invert(1) grayscale(100%) brightness(200%);
6467
}
6468
 
6469
.toast {
6470
  --bs-toast-zindex: 1090;
6471
  --bs-toast-padding-x: 0.75rem;
6472
  --bs-toast-padding-y: 0.5rem;
6473
  --bs-toast-spacing: 1.5rem;
6474
  --bs-toast-max-width: 350px;
6475
  --bs-toast-font-size: 0.875rem;
6476
  --bs-toast-color: ;
6477
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6478
  --bs-toast-border-width: 1px;
6479
  --bs-toast-border-color: var(--bs-border-color-translucent);
6480
  --bs-toast-border-radius: 0.25rem;
6481
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6482
  --bs-toast-header-color: #7987a1;
6483
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6484
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6485
  width: var(--bs-toast-max-width);
6486
  max-width: 100%;
6487
  font-size: var(--bs-toast-font-size);
6488
  color: var(--bs-toast-color);
6489
  pointer-events: auto;
6490
  background-color: var(--bs-toast-bg);
6491
  background-clip: padding-box;
6492
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6493
  box-shadow: var(--bs-toast-box-shadow);
6494
  border-radius: var(--bs-toast-border-radius);
6495
}
16848 stevensc 6496
 
16825 efrain 6497
.toast.showing {
6498
  opacity: 0;
6499
}
16848 stevensc 6500
 
16825 efrain 6501
.toast:not(.show) {
6502
  display: none;
6503
}
6504
 
6505
.toast-container {
6506
  --bs-toast-zindex: 1090;
6507
  position: absolute;
6508
  z-index: var(--bs-toast-zindex);
6509
  width: max-content;
6510
  max-width: 100%;
6511
  pointer-events: none;
6512
}
16848 stevensc 6513
 
6514
.toast-container> :not(:last-child) {
16825 efrain 6515
  margin-bottom: var(--bs-toast-spacing);
6516
}
6517
 
6518
.toast-header {
6519
  display: flex;
6520
  align-items: center;
6521
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6522
  color: var(--bs-toast-header-color);
6523
  background-color: var(--bs-toast-header-bg);
6524
  background-clip: padding-box;
6525
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6526
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6527
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6528
}
16848 stevensc 6529
 
16825 efrain 6530
.toast-header .btn-close {
6531
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6532
  margin-left: var(--bs-toast-padding-x);
6533
}
6534
 
6535
.toast-body {
6536
  padding: var(--bs-toast-padding-x);
6537
  word-wrap: break-word;
6538
}
6539
 
6540
.modal {
6541
  --bs-modal-zindex: 1055;
6542
  --bs-modal-width: 500px;
6543
  --bs-modal-padding: 1rem;
6544
  --bs-modal-margin: 0.5rem;
6545
  --bs-modal-color: ;
6546
  --bs-modal-bg: #fff;
6547
  --bs-modal-border-color: #e9ecef;
6548
  --bs-modal-border-width: 1px;
6549
  --bs-modal-border-radius: 0.5rem;
6550
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6551
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6552
  --bs-modal-header-padding-x: 1rem;
6553
  --bs-modal-header-padding-y: 1rem;
6554
  --bs-modal-header-padding: 1rem 1rem;
6555
  --bs-modal-header-border-color: var(--bs-border-color);
6556
  --bs-modal-header-border-width: 1px;
6557
  --bs-modal-title-line-height: 1.5;
6558
  --bs-modal-footer-gap: 0.5rem;
6559
  --bs-modal-footer-bg: ;
6560
  --bs-modal-footer-border-color: var(--bs-border-color);
6561
  --bs-modal-footer-border-width: 1px;
6562
  position: fixed;
6563
  top: 0;
6564
  left: 0;
6565
  z-index: var(--bs-modal-zindex);
6566
  display: none;
6567
  width: 100%;
6568
  height: 100%;
6569
  overflow-x: hidden;
6570
  overflow-y: auto;
6571
  outline: 0;
6572
}
6573
 
6574
.modal-dialog {
6575
  position: relative;
6576
  width: auto;
6577
  margin: var(--bs-modal-margin);
6578
  pointer-events: none;
6579
}
16848 stevensc 6580
 
16825 efrain 6581
.modal.fade .modal-dialog {
6582
  transition: transform 0.4s ease;
6583
  transform: scale(0.8);
6584
}
16848 stevensc 6585
 
16825 efrain 6586
@media (prefers-reduced-motion: reduce) {
6587
  .modal.fade .modal-dialog {
6588
    transition: none;
6589
  }
6590
}
16848 stevensc 6591
 
16825 efrain 6592
.modal.show .modal-dialog {
6593
  transform: none;
6594
}
16848 stevensc 6595
 
16825 efrain 6596
.modal.modal-static .modal-dialog {
6597
  transform: scale(1.02);
6598
}
6599
 
6600
.modal-dialog-scrollable {
6601
  height: calc(100% - var(--bs-modal-margin) * 2);
6602
}
16848 stevensc 6603
 
16825 efrain 6604
.modal-dialog-scrollable .modal-content {
6605
  max-height: 100%;
6606
  overflow: hidden;
6607
}
16848 stevensc 6608
 
16825 efrain 6609
.modal-dialog-scrollable .modal-body {
6610
  overflow-y: auto;
6611
}
6612
 
6613
.modal-dialog-centered {
6614
  display: flex;
6615
  align-items: center;
6616
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6617
}
6618
 
6619
.modal-content {
6620
  position: relative;
6621
  display: flex;
6622
  flex-direction: column;
6623
  width: 100%;
6624
  color: var(--bs-modal-color);
6625
  pointer-events: auto;
6626
  background-color: var(--bs-modal-bg);
6627
  background-clip: padding-box;
6628
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6629
  border-radius: var(--bs-modal-border-radius);
6630
  outline: 0;
6631
}
6632
 
6633
.modal-backdrop {
6634
  --bs-backdrop-zindex: 1050;
6635
  --bs-backdrop-bg: #000;
6636
  --bs-backdrop-opacity: 0.5;
6637
  position: fixed;
6638
  top: 0;
6639
  left: 0;
6640
  z-index: var(--bs-backdrop-zindex);
6641
  width: 100vw;
6642
  height: 100vh;
6643
  background-color: var(--bs-backdrop-bg);
6644
}
16848 stevensc 6645
 
16825 efrain 6646
.modal-backdrop.fade {
6647
  opacity: 0;
6648
}
16848 stevensc 6649
 
16825 efrain 6650
.modal-backdrop.show {
6651
  opacity: var(--bs-backdrop-opacity);
6652
}
6653
 
6654
.modal-header {
6655
  display: flex;
6656
  flex-shrink: 0;
6657
  align-items: center;
6658
  justify-content: space-between;
6659
  padding: var(--bs-modal-header-padding);
6660
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6661
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6662
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6663
}
16848 stevensc 6664
 
16825 efrain 6665
.modal-header .btn-close {
6666
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6667
  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;
6668
}
6669
 
6670
.modal-title {
6671
  margin-bottom: 0;
6672
  line-height: var(--bs-modal-title-line-height);
6673
}
6674
 
6675
.modal-body {
6676
  position: relative;
6677
  flex: 1 1 auto;
6678
  padding: var(--bs-modal-padding);
6679
}
6680
 
6681
.modal-footer {
6682
  display: flex;
6683
  flex-shrink: 0;
6684
  flex-wrap: wrap;
6685
  align-items: center;
6686
  justify-content: flex-end;
6687
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6688
  background-color: var(--bs-modal-footer-bg);
6689
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6690
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6691
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6692
}
16848 stevensc 6693
 
6694
.modal-footer>* {
16825 efrain 6695
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6696
}
6697
 
6698
@media (min-width: 576px) {
6699
  .modal {
6700
    --bs-modal-margin: 1.75rem;
6701
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6702
  }
16848 stevensc 6703
 
16825 efrain 6704
  .modal-dialog {
6705
    max-width: var(--bs-modal-width);
6706
    margin-right: auto;
6707
    margin-left: auto;
6708
  }
16848 stevensc 6709
 
16825 efrain 6710
  .modal-sm {
6711
    --bs-modal-width: 300px;
6712
  }
6713
}
16848 stevensc 6714
 
16825 efrain 6715
@media (min-width: 992px) {
16848 stevensc 6716
 
16825 efrain 6717
  .modal-lg,
6718
  .modal-xl {
6719
    --bs-modal-width: 800px;
6720
  }
6721
}
16848 stevensc 6722
 
16825 efrain 6723
@media (min-width: 1200px) {
6724
  .modal-xl {
6725
    --bs-modal-width: 1140px;
6726
  }
6727
}
16848 stevensc 6728
 
16825 efrain 6729
.modal-fullscreen {
6730
  width: 100vw;
6731
  max-width: none;
6732
  height: 100%;
6733
  margin: 0;
6734
}
16848 stevensc 6735
 
16825 efrain 6736
.modal-fullscreen .modal-content {
6737
  height: 100%;
6738
  border: 0;
6739
  border-radius: 0;
6740
}
16848 stevensc 6741
 
16825 efrain 6742
.modal-fullscreen .modal-header,
6743
.modal-fullscreen .modal-footer {
6744
  border-radius: 0;
6745
}
16848 stevensc 6746
 
16825 efrain 6747
.modal-fullscreen .modal-body {
6748
  overflow-y: auto;
6749
}
6750
 
6751
@media (max-width: 575.98px) {
6752
  .modal-fullscreen-sm-down {
6753
    width: 100vw;
6754
    max-width: none;
6755
    height: 100%;
6756
    margin: 0;
6757
  }
16848 stevensc 6758
 
16825 efrain 6759
  .modal-fullscreen-sm-down .modal-content {
6760
    height: 100%;
6761
    border: 0;
6762
    border-radius: 0;
6763
  }
16848 stevensc 6764
 
16825 efrain 6765
  .modal-fullscreen-sm-down .modal-header,
6766
  .modal-fullscreen-sm-down .modal-footer {
6767
    border-radius: 0;
6768
  }
16848 stevensc 6769
 
16825 efrain 6770
  .modal-fullscreen-sm-down .modal-body {
6771
    overflow-y: auto;
6772
  }
6773
}
16848 stevensc 6774
 
16825 efrain 6775
@media (max-width: 767.98px) {
6776
  .modal-fullscreen-md-down {
6777
    width: 100vw;
6778
    max-width: none;
6779
    height: 100%;
6780
    margin: 0;
6781
  }
16848 stevensc 6782
 
16825 efrain 6783
  .modal-fullscreen-md-down .modal-content {
6784
    height: 100%;
6785
    border: 0;
6786
    border-radius: 0;
6787
  }
16848 stevensc 6788
 
16825 efrain 6789
  .modal-fullscreen-md-down .modal-header,
6790
  .modal-fullscreen-md-down .modal-footer {
6791
    border-radius: 0;
6792
  }
16848 stevensc 6793
 
16825 efrain 6794
  .modal-fullscreen-md-down .modal-body {
6795
    overflow-y: auto;
6796
  }
6797
}
16848 stevensc 6798
 
16825 efrain 6799
@media (max-width: 991.98px) {
6800
  .modal-fullscreen-lg-down {
6801
    width: 100vw;
6802
    max-width: none;
6803
    height: 100%;
6804
    margin: 0;
6805
  }
16848 stevensc 6806
 
16825 efrain 6807
  .modal-fullscreen-lg-down .modal-content {
6808
    height: 100%;
6809
    border: 0;
6810
    border-radius: 0;
6811
  }
16848 stevensc 6812
 
16825 efrain 6813
  .modal-fullscreen-lg-down .modal-header,
6814
  .modal-fullscreen-lg-down .modal-footer {
6815
    border-radius: 0;
6816
  }
16848 stevensc 6817
 
16825 efrain 6818
  .modal-fullscreen-lg-down .modal-body {
6819
    overflow-y: auto;
6820
  }
6821
}
16848 stevensc 6822
 
16825 efrain 6823
@media (max-width: 1199.98px) {
6824
  .modal-fullscreen-xl-down {
6825
    width: 100vw;
6826
    max-width: none;
6827
    height: 100%;
6828
    margin: 0;
6829
  }
16848 stevensc 6830
 
16825 efrain 6831
  .modal-fullscreen-xl-down .modal-content {
6832
    height: 100%;
6833
    border: 0;
6834
    border-radius: 0;
6835
  }
16848 stevensc 6836
 
16825 efrain 6837
  .modal-fullscreen-xl-down .modal-header,
6838
  .modal-fullscreen-xl-down .modal-footer {
6839
    border-radius: 0;
6840
  }
16848 stevensc 6841
 
16825 efrain 6842
  .modal-fullscreen-xl-down .modal-body {
6843
    overflow-y: auto;
6844
  }
6845
}
16848 stevensc 6846
 
16825 efrain 6847
@media (max-width: 1399.98px) {
6848
  .modal-fullscreen-xxl-down {
6849
    width: 100vw;
6850
    max-width: none;
6851
    height: 100%;
6852
    margin: 0;
6853
  }
16848 stevensc 6854
 
16825 efrain 6855
  .modal-fullscreen-xxl-down .modal-content {
6856
    height: 100%;
6857
    border: 0;
6858
    border-radius: 0;
6859
  }
16848 stevensc 6860
 
16825 efrain 6861
  .modal-fullscreen-xxl-down .modal-header,
6862
  .modal-fullscreen-xxl-down .modal-footer {
6863
    border-radius: 0;
6864
  }
16848 stevensc 6865
 
16825 efrain 6866
  .modal-fullscreen-xxl-down .modal-body {
6867
    overflow-y: auto;
6868
  }
6869
}
16848 stevensc 6870
 
16825 efrain 6871
.tooltip {
6872
  --bs-tooltip-zindex: 1080;
6873
  --bs-tooltip-max-width: 200px;
6874
  --bs-tooltip-padding-x: 0.5rem;
6875
  --bs-tooltip-padding-y: 0.25rem;
6876
  --bs-tooltip-margin: ;
6877
  --bs-tooltip-font-size: 0.812rem;
6878
  --bs-tooltip-color: #fff;
6879
  --bs-tooltip-bg: #000;
6880
  --bs-tooltip-border-radius: 0.25rem;
6881
  --bs-tooltip-opacity: 0.9;
6882
  --bs-tooltip-arrow-width: 0.8rem;
6883
  --bs-tooltip-arrow-height: 0.4rem;
6884
  z-index: var(--bs-tooltip-zindex);
6885
  display: block;
6886
  padding: var(--bs-tooltip-arrow-height);
6887
  margin: var(--bs-tooltip-margin);
6888
  font-family: var(--bs-font-sans-serif);
6889
  font-style: normal;
6890
  font-weight: 400;
6891
  line-height: 1.5;
6892
  text-align: left;
6893
  text-align: start;
6894
  text-decoration: none;
6895
  text-shadow: none;
6896
  text-transform: none;
6897
  letter-spacing: normal;
6898
  word-break: normal;
6899
  white-space: normal;
6900
  word-spacing: normal;
6901
  line-break: auto;
6902
  font-size: var(--bs-tooltip-font-size);
6903
  word-wrap: break-word;
6904
  opacity: 0;
6905
}
16848 stevensc 6906
 
16825 efrain 6907
.tooltip.show {
6908
  opacity: var(--bs-tooltip-opacity);
6909
}
16848 stevensc 6910
 
16825 efrain 6911
.tooltip .tooltip-arrow {
6912
  display: block;
6913
  width: var(--bs-tooltip-arrow-width);
6914
  height: var(--bs-tooltip-arrow-height);
6915
}
16848 stevensc 6916
 
16825 efrain 6917
.tooltip .tooltip-arrow::before {
6918
  position: absolute;
6919
  content: "";
6920
  border-color: transparent;
6921
  border-style: solid;
6922
}
6923
 
16848 stevensc 6924
.bs-tooltip-top .tooltip-arrow,
6925
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6926
  bottom: 0;
6927
}
16848 stevensc 6928
 
6929
.bs-tooltip-top .tooltip-arrow::before,
6930
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6931
  top: -1px;
6932
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6933
  border-top-color: var(--bs-tooltip-bg);
6934
}
6935
 
6936
/* rtl:begin:ignore */
16848 stevensc 6937
.bs-tooltip-end .tooltip-arrow,
6938
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6939
  left: 0;
6940
  width: var(--bs-tooltip-arrow-height);
6941
  height: var(--bs-tooltip-arrow-width);
6942
}
16848 stevensc 6943
 
6944
.bs-tooltip-end .tooltip-arrow::before,
6945
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6946
  right: -1px;
6947
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6948
  border-right-color: var(--bs-tooltip-bg);
6949
}
6950
 
6951
/* rtl:end:ignore */
16848 stevensc 6952
.bs-tooltip-bottom .tooltip-arrow,
6953
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6954
  top: 0;
6955
}
16848 stevensc 6956
 
6957
.bs-tooltip-bottom .tooltip-arrow::before,
6958
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6959
  bottom: -1px;
6960
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6961
  border-bottom-color: var(--bs-tooltip-bg);
6962
}
6963
 
6964
/* rtl:begin:ignore */
16848 stevensc 6965
.bs-tooltip-start .tooltip-arrow,
6966
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6967
  right: 0;
6968
  width: var(--bs-tooltip-arrow-height);
6969
  height: var(--bs-tooltip-arrow-width);
6970
}
16848 stevensc 6971
 
6972
.bs-tooltip-start .tooltip-arrow::before,
6973
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6974
  left: -1px;
6975
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6976
  border-left-color: var(--bs-tooltip-bg);
6977
}
6978
 
6979
/* rtl:end:ignore */
6980
.tooltip-inner {
6981
  max-width: var(--bs-tooltip-max-width);
6982
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6983
  color: var(--bs-tooltip-color);
6984
  text-align: center;
6985
  background-color: var(--bs-tooltip-bg);
6986
  border-radius: var(--bs-tooltip-border-radius);
6987
}
6988
 
6989
.popover {
6990
  --bs-popover-zindex: 1070;
6991
  --bs-popover-max-width: 276px;
6992
  --bs-popover-font-size: 0.812rem;
6993
  --bs-popover-bg: #fff;
6994
  --bs-popover-border-width: 1px;
6995
  --bs-popover-border-color: #e9ecef;
6996
  --bs-popover-border-radius: 0.5rem;
6997
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6998
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6999
  --bs-popover-header-padding-x: 1rem;
7000
  --bs-popover-header-padding-y: 0.5rem;
7001
  --bs-popover-header-font-size: 0.875rem;
7002
  --bs-popover-header-color: ;
7003
  --bs-popover-header-bg: #e9ecef;
7004
  --bs-popover-body-padding-x: 1rem;
7005
  --bs-popover-body-padding-y: 1rem;
7006
  --bs-popover-body-color: #000;
7007
  --bs-popover-arrow-width: 1rem;
7008
  --bs-popover-arrow-height: 0.5rem;
7009
  --bs-popover-arrow-border: var(--bs-popover-border-color);
7010
  z-index: var(--bs-popover-zindex);
7011
  display: block;
7012
  max-width: var(--bs-popover-max-width);
7013
  font-family: var(--bs-font-sans-serif);
7014
  font-style: normal;
7015
  font-weight: 400;
7016
  line-height: 1.5;
7017
  text-align: left;
7018
  text-align: start;
7019
  text-decoration: none;
7020
  text-shadow: none;
7021
  text-transform: none;
7022
  letter-spacing: normal;
7023
  word-break: normal;
7024
  white-space: normal;
7025
  word-spacing: normal;
7026
  line-break: auto;
7027
  font-size: var(--bs-popover-font-size);
7028
  word-wrap: break-word;
7029
  background-color: var(--bs-popover-bg);
7030
  background-clip: padding-box;
7031
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7032
  border-radius: var(--bs-popover-border-radius);
7033
}
16848 stevensc 7034
 
16825 efrain 7035
.popover .popover-arrow {
7036
  display: block;
7037
  width: var(--bs-popover-arrow-width);
7038
  height: var(--bs-popover-arrow-height);
7039
}
16848 stevensc 7040
 
7041
.popover .popover-arrow::before,
7042
.popover .popover-arrow::after {
16825 efrain 7043
  position: absolute;
7044
  display: block;
7045
  content: "";
7046
  border-color: transparent;
7047
  border-style: solid;
7048
  border-width: 0;
7049
}
7050
 
16848 stevensc 7051
.bs-popover-top>.popover-arrow,
7052
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7053
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7054
}
16848 stevensc 7055
 
7056
.bs-popover-top>.popover-arrow::before,
7057
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7058
.bs-popover-top>.popover-arrow::after,
7059
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7060
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7061
}
16848 stevensc 7062
 
7063
.bs-popover-top>.popover-arrow::before,
7064
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7065
  bottom: 0;
7066
  border-top-color: var(--bs-popover-arrow-border);
7067
}
16848 stevensc 7068
 
7069
.bs-popover-top>.popover-arrow::after,
7070
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7071
  bottom: var(--bs-popover-border-width);
7072
  border-top-color: var(--bs-popover-bg);
7073
}
7074
 
7075
/* rtl:begin:ignore */
16848 stevensc 7076
.bs-popover-end>.popover-arrow,
7077
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7078
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7079
  width: var(--bs-popover-arrow-height);
7080
  height: var(--bs-popover-arrow-width);
7081
}
16848 stevensc 7082
 
7083
.bs-popover-end>.popover-arrow::before,
7084
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7085
.bs-popover-end>.popover-arrow::after,
7086
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7087
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7088
}
16848 stevensc 7089
 
7090
.bs-popover-end>.popover-arrow::before,
7091
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7092
  left: 0;
7093
  border-right-color: var(--bs-popover-arrow-border);
7094
}
16848 stevensc 7095
 
7096
.bs-popover-end>.popover-arrow::after,
7097
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7098
  left: var(--bs-popover-border-width);
7099
  border-right-color: var(--bs-popover-bg);
7100
}
7101
 
7102
/* rtl:end:ignore */
16848 stevensc 7103
.bs-popover-bottom>.popover-arrow,
7104
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7105
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7106
}
16848 stevensc 7107
 
7108
.bs-popover-bottom>.popover-arrow::before,
7109
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7110
.bs-popover-bottom>.popover-arrow::after,
7111
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7112
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7113
}
16848 stevensc 7114
 
7115
.bs-popover-bottom>.popover-arrow::before,
7116
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7117
  top: 0;
7118
  border-bottom-color: var(--bs-popover-arrow-border);
7119
}
16848 stevensc 7120
 
7121
.bs-popover-bottom>.popover-arrow::after,
7122
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7123
  top: var(--bs-popover-border-width);
7124
  border-bottom-color: var(--bs-popover-bg);
7125
}
16848 stevensc 7126
 
7127
.bs-popover-bottom .popover-header::before,
7128
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7129
  position: absolute;
7130
  top: 0;
7131
  left: 50%;
7132
  display: block;
7133
  width: var(--bs-popover-arrow-width);
7134
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7135
  content: "";
7136
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7137
}
7138
 
7139
/* rtl:begin:ignore */
16848 stevensc 7140
.bs-popover-start>.popover-arrow,
7141
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7142
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7143
  width: var(--bs-popover-arrow-height);
7144
  height: var(--bs-popover-arrow-width);
7145
}
16848 stevensc 7146
 
7147
.bs-popover-start>.popover-arrow::before,
7148
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7149
.bs-popover-start>.popover-arrow::after,
7150
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7151
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7152
}
16848 stevensc 7153
 
7154
.bs-popover-start>.popover-arrow::before,
7155
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7156
  right: 0;
7157
  border-left-color: var(--bs-popover-arrow-border);
7158
}
16848 stevensc 7159
 
7160
.bs-popover-start>.popover-arrow::after,
7161
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7162
  right: var(--bs-popover-border-width);
7163
  border-left-color: var(--bs-popover-bg);
7164
}
7165
 
7166
/* rtl:end:ignore */
7167
.popover-header {
7168
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7169
  margin-bottom: 0;
7170
  font-size: var(--bs-popover-header-font-size);
7171
  color: var(--bs-popover-header-color);
7172
  background-color: var(--bs-popover-header-bg);
7173
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7174
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7175
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7176
}
16848 stevensc 7177
 
16825 efrain 7178
.popover-header:empty {
7179
  display: none;
7180
}
7181
 
7182
.popover-body {
7183
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7184
  color: var(--bs-popover-body-color);
7185
}
7186
 
7187
.carousel {
7188
  position: relative;
7189
}
7190
 
7191
.carousel.pointer-event {
7192
  touch-action: pan-y;
7193
}
7194
 
7195
.carousel-inner {
7196
  position: relative;
7197
  width: 100%;
7198
  overflow: hidden;
7199
}
16848 stevensc 7200
 
16825 efrain 7201
.carousel-inner::after {
7202
  display: block;
7203
  clear: both;
7204
  content: "";
7205
}
7206
 
7207
.carousel-item {
7208
  position: relative;
7209
  display: none;
7210
  float: left;
7211
  width: 100%;
7212
  margin-right: -100%;
7213
  backface-visibility: hidden;
7214
  transition: transform 0.6s ease-in-out;
7215
}
16848 stevensc 7216
 
16825 efrain 7217
@media (prefers-reduced-motion: reduce) {
7218
  .carousel-item {
7219
    transition: none;
7220
  }
7221
}
7222
 
7223
.carousel-item.active,
7224
.carousel-item-next,
7225
.carousel-item-prev {
7226
  display: block;
7227
}
7228
 
7229
/* rtl:begin:ignore */
7230
.carousel-item-next:not(.carousel-item-start),
7231
.active.carousel-item-end {
7232
  transform: translateX(100%);
7233
}
7234
 
7235
.carousel-item-prev:not(.carousel-item-end),
7236
.active.carousel-item-start {
7237
  transform: translateX(-100%);
7238
}
7239
 
7240
/* rtl:end:ignore */
7241
.carousel-fade .carousel-item {
7242
  opacity: 0;
7243
  transition-property: opacity;
7244
  transform: none;
7245
}
16848 stevensc 7246
 
16825 efrain 7247
.carousel-fade .carousel-item.active,
7248
.carousel-fade .carousel-item-next.carousel-item-start,
7249
.carousel-fade .carousel-item-prev.carousel-item-end {
7250
  z-index: 1;
7251
  opacity: 1;
7252
}
16848 stevensc 7253
 
16825 efrain 7254
.carousel-fade .active.carousel-item-start,
7255
.carousel-fade .active.carousel-item-end {
7256
  z-index: 0;
7257
  opacity: 0;
7258
  transition: opacity 0s 0.6s;
7259
}
16848 stevensc 7260
 
16825 efrain 7261
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7262
 
16825 efrain 7263
  .carousel-fade .active.carousel-item-start,
7264
  .carousel-fade .active.carousel-item-end {
7265
    transition: none;
7266
  }
7267
}
7268
 
7269
.carousel-control-prev,
7270
.carousel-control-next {
7271
  position: absolute;
7272
  top: 0;
7273
  bottom: 0;
7274
  z-index: 1;
7275
  display: flex;
7276
  align-items: center;
7277
  justify-content: center;
7278
  width: 15%;
7279
  padding: 0;
7280
  color: #fff;
7281
  text-align: center;
7282
  background: none;
7283
  border: 0;
7284
  opacity: 0.5;
7285
  transition: opacity 0.15s ease;
7286
}
16848 stevensc 7287
 
16825 efrain 7288
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7289
 
16825 efrain 7290
  .carousel-control-prev,
7291
  .carousel-control-next {
7292
    transition: none;
7293
  }
7294
}
16848 stevensc 7295
 
7296
.carousel-control-prev:hover,
7297
.carousel-control-prev:focus,
16825 efrain 7298
.carousel-control-next:hover,
7299
.carousel-control-next:focus {
7300
  color: #fff;
7301
  text-decoration: none;
7302
  outline: 0;
7303
  opacity: 0.9;
7304
}
7305
 
7306
.carousel-control-prev {
7307
  left: 0;
7308
}
7309
 
7310
.carousel-control-next {
7311
  right: 0;
7312
}
7313
 
7314
.carousel-control-prev-icon,
7315
.carousel-control-next-icon {
7316
  display: inline-block;
7317
  width: 2rem;
7318
  height: 2rem;
7319
  background-repeat: no-repeat;
7320
  background-position: 50%;
7321
  background-size: 100% 100%;
7322
}
7323
 
7324
/* rtl:options: {
7325
  "autoRename": true,
7326
  "stringMap":[ {
7327
    "name"    : "prev-next",
7328
    "search"  : "prev",
7329
    "replace" : "next"
7330
  } ]
7331
} */
7332
.carousel-control-prev-icon {
7333
  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");
7334
}
7335
 
7336
.carousel-control-next-icon {
7337
  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");
7338
}
7339
 
7340
.carousel-indicators {
7341
  position: absolute;
7342
  right: 0;
7343
  bottom: 0;
7344
  left: 0;
7345
  z-index: 2;
7346
  display: flex;
7347
  justify-content: center;
7348
  padding: 0;
7349
  margin-right: 15%;
7350
  margin-bottom: 1rem;
7351
  margin-left: 15%;
7352
  list-style: none;
7353
}
16848 stevensc 7354
 
16825 efrain 7355
.carousel-indicators [data-bs-target] {
7356
  box-sizing: content-box;
7357
  flex: 0 1 auto;
7358
  width: 30px;
7359
  height: 3px;
7360
  padding: 0;
7361
  margin-right: 3px;
7362
  margin-left: 3px;
7363
  text-indent: -999px;
7364
  cursor: pointer;
7365
  background-color: #fff;
7366
  background-clip: padding-box;
7367
  border: 0;
7368
  border-top: 10px solid transparent;
7369
  border-bottom: 10px solid transparent;
7370
  opacity: 0.5;
7371
  transition: opacity 0.6s ease;
7372
}
16848 stevensc 7373
 
16825 efrain 7374
@media (prefers-reduced-motion: reduce) {
7375
  .carousel-indicators [data-bs-target] {
7376
    transition: none;
7377
  }
7378
}
16848 stevensc 7379
 
16825 efrain 7380
.carousel-indicators .active {
7381
  opacity: 1;
7382
}
7383
 
7384
.carousel-caption {
7385
  position: absolute;
7386
  right: 15%;
7387
  bottom: 1.25rem;
7388
  left: 15%;
7389
  padding-top: 1.25rem;
7390
  padding-bottom: 1.25rem;
7391
  color: #fff;
7392
  text-align: center;
7393
}
7394
 
7395
.carousel-dark .carousel-control-prev-icon,
7396
.carousel-dark .carousel-control-next-icon {
7397
  filter: invert(1) grayscale(100);
7398
}
16848 stevensc 7399
 
16825 efrain 7400
.carousel-dark .carousel-indicators [data-bs-target] {
7401
  background-color: #000;
7402
}
16848 stevensc 7403
 
16825 efrain 7404
.carousel-dark .carousel-caption {
7405
  color: #000;
7406
}
7407
 
7408
.spinner-grow,
7409
.spinner-border {
7410
  display: inline-block;
7411
  width: var(--bs-spinner-width);
7412
  height: var(--bs-spinner-height);
7413
  vertical-align: var(--bs-spinner-vertical-align);
7414
  border-radius: 50%;
7415
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7416
}
7417
 
7418
@keyframes spinner-border {
7419
  to {
16848 stevensc 7420
    transform: rotate(360deg)
7421
      /* rtl:ignore */
7422
    ;
16825 efrain 7423
  }
7424
}
16848 stevensc 7425
 
16825 efrain 7426
.spinner-border {
7427
  --bs-spinner-width: 2rem;
7428
  --bs-spinner-height: 2rem;
7429
  --bs-spinner-vertical-align: -0.125em;
7430
  --bs-spinner-border-width: 0.25em;
7431
  --bs-spinner-animation-speed: 0.75s;
7432
  --bs-spinner-animation-name: spinner-border;
7433
  border: var(--bs-spinner-border-width) solid currentcolor;
7434
  border-right-color: transparent;
7435
}
7436
 
7437
.spinner-border-sm {
7438
  --bs-spinner-width: 1rem;
7439
  --bs-spinner-height: 1rem;
7440
  --bs-spinner-border-width: 0.2em;
7441
}
7442
 
7443
@keyframes spinner-grow {
7444
  0% {
7445
    transform: scale(0);
7446
  }
16848 stevensc 7447
 
16825 efrain 7448
  50% {
7449
    opacity: 1;
7450
    transform: none;
7451
  }
7452
}
16848 stevensc 7453
 
16825 efrain 7454
.spinner-grow {
7455
  --bs-spinner-width: 2rem;
7456
  --bs-spinner-height: 2rem;
7457
  --bs-spinner-vertical-align: -0.125em;
7458
  --bs-spinner-animation-speed: 0.75s;
7459
  --bs-spinner-animation-name: spinner-grow;
7460
  background-color: currentcolor;
7461
  opacity: 0;
7462
}
7463
 
7464
.spinner-grow-sm {
7465
  --bs-spinner-width: 1rem;
7466
  --bs-spinner-height: 1rem;
7467
}
7468
 
7469
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7470
 
16825 efrain 7471
  .spinner-border,
7472
  .spinner-grow {
7473
    --bs-spinner-animation-speed: 1.5s;
7474
  }
7475
}
16848 stevensc 7476
 
16825 efrain 7477
.clearfix::after {
7478
  display: block;
7479
  clear: both;
7480
  content: "";
7481
}
7482
 
7483
.text-bg-primary {
7484
  color: #fff !important;
7485
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7486
}
7487
 
7488
.text-bg-secondary {
7489
  color: #fff !important;
7490
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7491
}
7492
 
7493
.text-bg-success {
7494
  color: #fff !important;
7495
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7496
}
7497
 
7498
.text-bg-info {
7499
  color: #000 !important;
7500
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7501
}
7502
 
7503
.text-bg-warning {
7504
  color: #000 !important;
7505
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7506
}
7507
 
7508
.text-bg-danger {
7509
  color: #fff !important;
7510
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7511
}
7512
 
7513
.text-bg-light {
7514
  color: #000 !important;
7515
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7516
}
7517
 
7518
.text-bg-dark {
7519
  color: #fff !important;
7520
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7521
}
7522
 
7523
.link-primary {
7524
  color: #6571ff !important;
7525
}
16848 stevensc 7526
 
7527
.link-primary:hover,
7528
.link-primary:focus {
16825 efrain 7529
  color: #515acc !important;
7530
}
7531
 
7532
.link-secondary {
7533
  color: #7987a1 !important;
7534
}
16848 stevensc 7535
 
7536
.link-secondary:hover,
7537
.link-secondary:focus {
16825 efrain 7538
  color: #616c81 !important;
7539
}
7540
 
7541
.link-success {
7542
  color: #05a34a !important;
7543
}
16848 stevensc 7544
 
7545
.link-success:hover,
7546
.link-success:focus {
16825 efrain 7547
  color: #04823b !important;
7548
}
7549
 
7550
.link-info {
7551
  color: #66d1d1 !important;
7552
}
16848 stevensc 7553
 
7554
.link-info:hover,
7555
.link-info:focus {
16825 efrain 7556
  color: #85dada !important;
7557
}
7558
 
7559
.link-warning {
7560
  color: #fbbc06 !important;
7561
}
16848 stevensc 7562
 
7563
.link-warning:hover,
7564
.link-warning:focus {
16825 efrain 7565
  color: #fcc938 !important;
7566
}
7567
 
7568
.link-danger {
7569
  color: #ff3366 !important;
7570
}
16848 stevensc 7571
 
7572
.link-danger:hover,
7573
.link-danger:focus {
16825 efrain 7574
  color: #cc2952 !important;
7575
}
7576
 
7577
.link-light {
7578
  color: #e9ecef !important;
7579
}
16848 stevensc 7580
 
7581
.link-light:hover,
7582
.link-light:focus {
16825 efrain 7583
  color: #edf0f2 !important;
7584
}
7585
 
7586
.link-dark {
7587
  color: #060c17 !important;
7588
}
16848 stevensc 7589
 
7590
.link-dark:hover,
7591
.link-dark:focus {
16825 efrain 7592
  color: #050a12 !important;
7593
}
7594
 
7595
.ratio {
7596
  position: relative;
7597
  width: 100%;
7598
}
16848 stevensc 7599
 
16825 efrain 7600
.ratio::before {
7601
  display: block;
7602
  padding-top: var(--bs-aspect-ratio);
7603
  content: "";
7604
}
16848 stevensc 7605
 
7606
.ratio>* {
16825 efrain 7607
  position: absolute;
7608
  top: 0;
7609
  left: 0;
7610
  width: 100%;
7611
  height: 100%;
7612
}
7613
 
7614
.ratio-1x1 {
7615
  --bs-aspect-ratio: 100%;
7616
}
7617
 
7618
.ratio-4x3 {
7619
  --bs-aspect-ratio: 75%;
7620
}
7621
 
7622
.ratio-16x9 {
7623
  --bs-aspect-ratio: 56.25%;
7624
}
7625
 
7626
.ratio-21x9 {
7627
  --bs-aspect-ratio: 42.8571428571%;
7628
}
7629
 
7630
.fixed-top {
7631
  position: fixed;
7632
  top: 0;
7633
  right: 0;
7634
  left: 0;
7635
  z-index: 1030;
7636
}
7637
 
7638
.fixed-bottom {
7639
  position: fixed;
7640
  right: 0;
7641
  bottom: 0;
7642
  left: 0;
7643
  z-index: 1030;
7644
}
7645
 
7646
.sticky-top {
7647
  position: sticky;
7648
  top: 0;
7649
  z-index: 1020;
7650
}
7651
 
7652
.sticky-bottom {
7653
  position: sticky;
7654
  bottom: 0;
7655
  z-index: 1020;
7656
}
7657
 
7658
@media (min-width: 576px) {
7659
  .sticky-sm-top {
7660
    position: sticky;
7661
    top: 0;
7662
    z-index: 1020;
7663
  }
16848 stevensc 7664
 
16825 efrain 7665
  .sticky-sm-bottom {
7666
    position: sticky;
7667
    bottom: 0;
7668
    z-index: 1020;
7669
  }
7670
}
16848 stevensc 7671
 
16825 efrain 7672
@media (min-width: 768px) {
7673
  .sticky-md-top {
7674
    position: sticky;
7675
    top: 0;
7676
    z-index: 1020;
7677
  }
16848 stevensc 7678
 
16825 efrain 7679
  .sticky-md-bottom {
7680
    position: sticky;
7681
    bottom: 0;
7682
    z-index: 1020;
7683
  }
7684
}
16848 stevensc 7685
 
16825 efrain 7686
@media (min-width: 992px) {
7687
  .sticky-lg-top {
7688
    position: sticky;
7689
    top: 0;
7690
    z-index: 1020;
7691
  }
16848 stevensc 7692
 
16825 efrain 7693
  .sticky-lg-bottom {
7694
    position: sticky;
7695
    bottom: 0;
7696
    z-index: 1020;
7697
  }
7698
}
16848 stevensc 7699
 
16825 efrain 7700
@media (min-width: 1200px) {
7701
  .sticky-xl-top {
7702
    position: sticky;
7703
    top: 0;
7704
    z-index: 1020;
7705
  }
16848 stevensc 7706
 
16825 efrain 7707
  .sticky-xl-bottom {
7708
    position: sticky;
7709
    bottom: 0;
7710
    z-index: 1020;
7711
  }
7712
}
16848 stevensc 7713
 
16825 efrain 7714
@media (min-width: 1400px) {
7715
  .sticky-xxl-top {
7716
    position: sticky;
7717
    top: 0;
7718
    z-index: 1020;
7719
  }
16848 stevensc 7720
 
16825 efrain 7721
  .sticky-xxl-bottom {
7722
    position: sticky;
7723
    bottom: 0;
7724
    z-index: 1020;
7725
  }
7726
}
16848 stevensc 7727
 
16825 efrain 7728
.hstack {
7729
  display: flex;
7730
  flex-direction: row;
7731
  align-items: center;
7732
  align-self: stretch;
7733
}
7734
 
7735
.vstack {
7736
  display: flex;
7737
  flex: 1 1 auto;
7738
  flex-direction: column;
7739
  align-self: stretch;
7740
}
7741
 
7742
.visually-hidden,
7743
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7744
  position: absolute !important;
7745
  width: 1px !important;
7746
  height: 1px !important;
7747
  padding: 0 !important;
7748
  margin: -1px !important;
7749
  overflow: hidden !important;
7750
  clip: rect(0, 0, 0, 0) !important;
7751
  white-space: nowrap !important;
7752
  border: 0 !important;
7753
}
7754
 
7755
.stretched-link::after {
7756
  position: absolute;
7757
  top: 0;
7758
  right: 0;
7759
  bottom: 0;
7760
  left: 0;
7761
  z-index: 1;
7762
  content: "";
7763
}
7764
 
7765
.text-truncate {
7766
  overflow: hidden;
7767
  text-overflow: ellipsis;
7768
  white-space: nowrap;
7769
}
7770
 
7771
.vr {
7772
  display: inline-block;
7773
  align-self: stretch;
7774
  width: 1px;
7775
  min-height: 1em;
7776
  background-color: currentcolor;
7777
  opacity: 0.1;
7778
}
7779
 
7780
.align-baseline {
7781
  vertical-align: baseline !important;
7782
}
7783
 
7784
.align-top {
7785
  vertical-align: top !important;
7786
}
7787
 
7788
.align-middle {
7789
  vertical-align: middle !important;
7790
}
7791
 
7792
.align-bottom {
7793
  vertical-align: bottom !important;
7794
}
7795
 
7796
.align-text-bottom {
7797
  vertical-align: text-bottom !important;
7798
}
7799
 
7800
.align-text-top {
7801
  vertical-align: text-top !important;
7802
}
7803
 
7804
.float-start {
7805
  float: left !important;
7806
}
7807
 
7808
.float-end {
7809
  float: right !important;
7810
}
7811
 
7812
.float-none {
7813
  float: none !important;
7814
}
7815
 
7816
.opacity-0 {
7817
  opacity: 0 !important;
7818
}
7819
 
7820
.opacity-25 {
7821
  opacity: 0.25 !important;
7822
}
7823
 
7824
.opacity-50 {
7825
  opacity: 0.5 !important;
7826
}
7827
 
7828
.opacity-75 {
7829
  opacity: 0.75 !important;
7830
}
7831
 
7832
.opacity-100 {
7833
  opacity: 1 !important;
7834
}
7835
 
7836
.overflow-auto {
7837
  overflow: auto !important;
7838
}
7839
 
7840
.overflow-hidden {
7841
  overflow: hidden !important;
7842
}
7843
 
7844
.overflow-visible {
7845
  overflow: visible !important;
7846
}
7847
 
7848
.overflow-scroll {
7849
  overflow: scroll !important;
7850
}
7851
 
7852
.d-inline {
7853
  display: inline !important;
7854
}
7855
 
7856
.d-inline-block {
7857
  display: inline-block !important;
7858
}
7859
 
7860
.d-block {
7861
  display: block !important;
7862
}
7863
 
7864
.d-grid {
7865
  display: grid !important;
7866
}
7867
 
7868
.d-table {
7869
  display: table !important;
7870
}
7871
 
7872
.d-table-row {
7873
  display: table-row !important;
7874
}
7875
 
7876
.d-table-cell {
7877
  display: table-cell !important;
7878
}
7879
 
7880
.d-flex {
7881
  display: flex !important;
7882
}
7883
 
7884
.d-inline-flex {
7885
  display: inline-flex !important;
7886
}
7887
 
16848 stevensc 7888
.d-none,
7889
.navbar .search-form {
16825 efrain 7890
  display: none !important;
7891
}
7892
 
7893
.shadow {
7894
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7895
}
7896
 
7897
.shadow-sm {
7898
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7899
}
7900
 
7901
.shadow-lg {
7902
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7903
}
7904
 
7905
.shadow-none {
7906
  box-shadow: none !important;
7907
}
7908
 
7909
.position-static {
7910
  position: static !important;
7911
}
7912
 
7913
.position-relative {
7914
  position: relative !important;
7915
}
7916
 
7917
.position-absolute {
7918
  position: absolute !important;
7919
}
7920
 
7921
.position-fixed {
7922
  position: fixed !important;
7923
}
7924
 
7925
.position-sticky {
7926
  position: sticky !important;
7927
}
7928
 
7929
.top-0 {
7930
  top: 0 !important;
7931
}
7932
 
7933
.top-10 {
7934
  top: 10% !important;
7935
}
7936
 
7937
.top-20 {
7938
  top: 20% !important;
7939
}
7940
 
7941
.top-25 {
7942
  top: 25% !important;
7943
}
7944
 
7945
.top-30 {
7946
  top: 30% !important;
7947
}
7948
 
7949
.top-40 {
7950
  top: 40% !important;
7951
}
7952
 
7953
.top-50 {
7954
  top: 50% !important;
7955
}
7956
 
7957
.top-60 {
7958
  top: 60% !important;
7959
}
7960
 
7961
.top-70 {
7962
  top: 70% !important;
7963
}
7964
 
7965
.top-75 {
7966
  top: 75% !important;
7967
}
7968
 
7969
.top-80 {
7970
  top: 80% !important;
7971
}
7972
 
7973
.top-90 {
7974
  top: 90% !important;
7975
}
7976
 
7977
.top-100 {
7978
  top: 100% !important;
7979
}
7980
 
7981
.bottom-0 {
7982
  bottom: 0 !important;
7983
}
7984
 
7985
.bottom-10 {
7986
  bottom: 10% !important;
7987
}
7988
 
7989
.bottom-20 {
7990
  bottom: 20% !important;
7991
}
7992
 
7993
.bottom-25 {
7994
  bottom: 25% !important;
7995
}
7996
 
7997
.bottom-30 {
7998
  bottom: 30% !important;
7999
}
8000
 
8001
.bottom-40 {
8002
  bottom: 40% !important;
8003
}
8004
 
8005
.bottom-50 {
8006
  bottom: 50% !important;
8007
}
8008
 
8009
.bottom-60 {
8010
  bottom: 60% !important;
8011
}
8012
 
8013
.bottom-70 {
8014
  bottom: 70% !important;
8015
}
8016
 
8017
.bottom-75 {
8018
  bottom: 75% !important;
8019
}
8020
 
8021
.bottom-80 {
8022
  bottom: 80% !important;
8023
}
8024
 
8025
.bottom-90 {
8026
  bottom: 90% !important;
8027
}
8028
 
8029
.bottom-100 {
8030
  bottom: 100% !important;
8031
}
8032
 
8033
.start-0 {
8034
  left: 0 !important;
8035
}
8036
 
8037
.start-10 {
8038
  left: 10% !important;
8039
}
8040
 
8041
.start-20 {
8042
  left: 20% !important;
8043
}
8044
 
8045
.start-25 {
8046
  left: 25% !important;
8047
}
8048
 
8049
.start-30 {
8050
  left: 30% !important;
8051
}
8052
 
8053
.start-40 {
8054
  left: 40% !important;
8055
}
8056
 
8057
.start-50 {
8058
  left: 50% !important;
8059
}
8060
 
8061
.start-60 {
8062
  left: 60% !important;
8063
}
8064
 
8065
.start-70 {
8066
  left: 70% !important;
8067
}
8068
 
8069
.start-75 {
8070
  left: 75% !important;
8071
}
8072
 
8073
.start-80 {
8074
  left: 80% !important;
8075
}
8076
 
8077
.start-90 {
8078
  left: 90% !important;
8079
}
8080
 
8081
.start-100 {
8082
  left: 100% !important;
8083
}
8084
 
8085
.end-0 {
8086
  right: 0 !important;
8087
}
8088
 
8089
.end-10 {
8090
  right: 10% !important;
8091
}
8092
 
8093
.end-20 {
8094
  right: 20% !important;
8095
}
8096
 
8097
.end-25 {
8098
  right: 25% !important;
8099
}
8100
 
8101
.end-30 {
8102
  right: 30% !important;
8103
}
8104
 
8105
.end-40 {
8106
  right: 40% !important;
8107
}
8108
 
8109
.end-50 {
8110
  right: 50% !important;
8111
}
8112
 
8113
.end-60 {
8114
  right: 60% !important;
8115
}
8116
 
8117
.end-70 {
8118
  right: 70% !important;
8119
}
8120
 
8121
.end-75 {
8122
  right: 75% !important;
8123
}
8124
 
8125
.end-80 {
8126
  right: 80% !important;
8127
}
8128
 
8129
.end-90 {
8130
  right: 90% !important;
8131
}
8132
 
8133
.end-100 {
8134
  right: 100% !important;
8135
}
8136
 
8137
.translate-middle {
8138
  transform: translate(-50%, -50%) !important;
8139
}
8140
 
8141
.translate-middle-x {
8142
  transform: translateX(-50%) !important;
8143
}
8144
 
8145
.translate-middle-y {
8146
  transform: translateY(-50%) !important;
8147
}
8148
 
8149
.border {
8150
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8151
}
8152
 
8153
.border-0 {
8154
  border: 0 !important;
8155
}
8156
 
8157
.border-top {
8158
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8159
}
8160
 
8161
.border-top-0 {
8162
  border-top: 0 !important;
8163
}
8164
 
8165
.border-end {
8166
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8167
}
8168
 
8169
.border-end-0 {
8170
  border-right: 0 !important;
8171
}
8172
 
8173
.border-bottom {
8174
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8175
}
8176
 
8177
.border-bottom-0 {
8178
  border-bottom: 0 !important;
8179
}
8180
 
8181
.border-start {
8182
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8183
}
8184
 
8185
.border-start-0 {
8186
  border-left: 0 !important;
8187
}
8188
 
8189
.border-primary {
8190
  --bs-border-opacity: 1;
8191
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8192
}
8193
 
8194
.border-secondary {
8195
  --bs-border-opacity: 1;
8196
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8197
}
8198
 
8199
.border-success {
8200
  --bs-border-opacity: 1;
8201
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8202
}
8203
 
8204
.border-info {
8205
  --bs-border-opacity: 1;
8206
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8207
}
8208
 
8209
.border-warning {
8210
  --bs-border-opacity: 1;
8211
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8212
}
8213
 
16848 stevensc 8214
.border-danger,
8215
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8216
  --bs-border-opacity: 1;
8217
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8218
}
8219
 
8220
.border-light {
8221
  --bs-border-opacity: 1;
8222
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8223
}
8224
 
8225
.border-dark {
8226
  --bs-border-opacity: 1;
8227
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8228
}
8229
 
8230
.border-white {
8231
  --bs-border-opacity: 1;
8232
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8233
}
8234
 
8235
.border-1 {
8236
  --bs-border-width: 1px;
8237
}
8238
 
8239
.border-2 {
8240
  --bs-border-width: 2px;
8241
}
8242
 
8243
.border-3 {
8244
  --bs-border-width: 3px;
8245
}
8246
 
8247
.border-4 {
8248
  --bs-border-width: 4px;
8249
}
8250
 
8251
.border-5 {
8252
  --bs-border-width: 5px;
8253
}
8254
 
8255
.border-opacity-10 {
8256
  --bs-border-opacity: 0.1;
8257
}
8258
 
8259
.border-opacity-25 {
8260
  --bs-border-opacity: 0.25;
8261
}
8262
 
8263
.border-opacity-50 {
8264
  --bs-border-opacity: 0.5;
8265
}
8266
 
8267
.border-opacity-75 {
8268
  --bs-border-opacity: 0.75;
8269
}
8270
 
8271
.border-opacity-100 {
8272
  --bs-border-opacity: 1;
8273
}
8274
 
16854 stevensc 8275
.w-fit {
8276
  width: fit-content !important;
8277
}
8278
 
16825 efrain 8279
.w-25 {
8280
  width: 25% !important;
8281
}
8282
 
8283
.w-50 {
8284
  width: 50% !important;
8285
}
8286
 
8287
.w-75 {
8288
  width: 75% !important;
8289
}
8290
 
8291
.w-100 {
8292
  width: 100% !important;
8293
}
8294
 
8295
.w-auto {
8296
  width: auto !important;
8297
}
8298
 
8299
.mw-100 {
8300
  max-width: 100% !important;
8301
}
8302
 
8303
.vw-100 {
8304
  width: 100vw !important;
8305
}
8306
 
8307
.min-vw-100 {
8308
  min-width: 100vw !important;
8309
}
8310
 
8311
.h-25 {
8312
  height: 25% !important;
8313
}
8314
 
8315
.h-50 {
8316
  height: 50% !important;
8317
}
8318
 
8319
.h-75 {
8320
  height: 75% !important;
8321
}
8322
 
8323
.h-100 {
8324
  height: 100% !important;
8325
}
8326
 
8327
.h-auto {
8328
  height: auto !important;
8329
}
8330
 
8331
.mh-100 {
8332
  max-height: 100% !important;
8333
}
8334
 
8335
.vh-100 {
8336
  height: 100vh !important;
8337
}
8338
 
8339
.min-vh-100 {
8340
  min-height: 100vh !important;
8341
}
8342
 
8343
.flex-fill {
8344
  flex: 1 1 auto !important;
8345
}
8346
 
8347
.flex-row {
8348
  flex-direction: row !important;
8349
}
8350
 
8351
.flex-column {
8352
  flex-direction: column !important;
8353
}
8354
 
8355
.flex-row-reverse {
8356
  flex-direction: row-reverse !important;
8357
}
8358
 
8359
.flex-column-reverse {
8360
  flex-direction: column-reverse !important;
8361
}
8362
 
8363
.flex-grow-0 {
8364
  flex-grow: 0 !important;
8365
}
8366
 
8367
.flex-grow-1 {
8368
  flex-grow: 1 !important;
8369
}
8370
 
8371
.flex-shrink-0 {
8372
  flex-shrink: 0 !important;
8373
}
8374
 
8375
.flex-shrink-1 {
8376
  flex-shrink: 1 !important;
8377
}
8378
 
8379
.flex-wrap {
8380
  flex-wrap: wrap !important;
8381
}
8382
 
8383
.flex-nowrap {
8384
  flex-wrap: nowrap !important;
8385
}
8386
 
8387
.flex-wrap-reverse {
8388
  flex-wrap: wrap-reverse !important;
8389
}
8390
 
8391
.justify-content-start {
8392
  justify-content: flex-start !important;
8393
}
8394
 
8395
.justify-content-end {
8396
  justify-content: flex-end !important;
8397
}
8398
 
16848 stevensc 8399
.justify-content-center,
8400
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8401
  justify-content: center !important;
8402
}
8403
 
8404
.justify-content-between {
8405
  justify-content: space-between !important;
8406
}
8407
 
8408
.justify-content-around {
8409
  justify-content: space-around !important;
8410
}
8411
 
8412
.justify-content-evenly {
8413
  justify-content: space-evenly !important;
8414
}
8415
 
8416
.align-items-start {
8417
  align-items: flex-start !important;
8418
}
8419
 
8420
.align-items-end {
8421
  align-items: flex-end !important;
8422
}
8423
 
16848 stevensc 8424
.align-items-center,
8425
.navbar .search-form {
16825 efrain 8426
  align-items: center !important;
8427
}
8428
 
8429
.align-items-baseline {
8430
  align-items: baseline !important;
8431
}
8432
 
8433
.align-items-stretch {
8434
  align-items: stretch !important;
8435
}
8436
 
8437
.align-content-start {
8438
  align-content: flex-start !important;
8439
}
8440
 
8441
.align-content-end {
8442
  align-content: flex-end !important;
8443
}
8444
 
8445
.align-content-center {
8446
  align-content: center !important;
8447
}
8448
 
8449
.align-content-between {
8450
  align-content: space-between !important;
8451
}
8452
 
8453
.align-content-around {
8454
  align-content: space-around !important;
8455
}
8456
 
8457
.align-content-stretch {
8458
  align-content: stretch !important;
8459
}
8460
 
8461
.align-self-auto {
8462
  align-self: auto !important;
8463
}
8464
 
8465
.align-self-start {
8466
  align-self: flex-start !important;
8467
}
8468
 
8469
.align-self-end {
8470
  align-self: flex-end !important;
8471
}
8472
 
8473
.align-self-center {
8474
  align-self: center !important;
8475
}
8476
 
8477
.align-self-baseline {
8478
  align-self: baseline !important;
8479
}
8480
 
8481
.align-self-stretch {
8482
  align-self: stretch !important;
8483
}
8484
 
8485
.order-first {
8486
  order: -1 !important;
8487
}
8488
 
8489
.order-0 {
8490
  order: 0 !important;
8491
}
8492
 
8493
.order-1 {
8494
  order: 1 !important;
8495
}
8496
 
8497
.order-2 {
8498
  order: 2 !important;
8499
}
8500
 
8501
.order-3 {
8502
  order: 3 !important;
8503
}
8504
 
8505
.order-4 {
8506
  order: 4 !important;
8507
}
8508
 
8509
.order-5 {
8510
  order: 5 !important;
8511
}
8512
 
8513
.order-last {
8514
  order: 6 !important;
8515
}
8516
 
8517
.m-0 {
8518
  margin: 0 !important;
8519
}
8520
 
8521
.m-1 {
8522
  margin: 0.25rem !important;
8523
}
8524
 
8525
.m-2 {
8526
  margin: 0.5rem !important;
8527
}
8528
 
8529
.m-3 {
8530
  margin: 1rem !important;
8531
}
8532
 
8533
.m-4 {
8534
  margin: 1.5rem !important;
8535
}
8536
 
8537
.m-5 {
8538
  margin: 3rem !important;
8539
}
8540
 
8541
.m-6 {
8542
  margin: 4.5rem !important;
8543
}
8544
 
8545
.m-7 {
8546
  margin: 6rem !important;
8547
}
8548
 
8549
.m-auto {
8550
  margin: auto !important;
8551
}
8552
 
8553
.mx-0 {
8554
  margin-right: 0 !important;
8555
  margin-left: 0 !important;
8556
}
8557
 
8558
.mx-1 {
8559
  margin-right: 0.25rem !important;
8560
  margin-left: 0.25rem !important;
8561
}
8562
 
8563
.mx-2 {
8564
  margin-right: 0.5rem !important;
8565
  margin-left: 0.5rem !important;
8566
}
8567
 
8568
.mx-3 {
8569
  margin-right: 1rem !important;
8570
  margin-left: 1rem !important;
8571
}
8572
 
8573
.mx-4 {
8574
  margin-right: 1.5rem !important;
8575
  margin-left: 1.5rem !important;
8576
}
8577
 
8578
.mx-5 {
8579
  margin-right: 3rem !important;
8580
  margin-left: 3rem !important;
8581
}
8582
 
8583
.mx-6 {
8584
  margin-right: 4.5rem !important;
8585
  margin-left: 4.5rem !important;
8586
}
8587
 
8588
.mx-7 {
8589
  margin-right: 6rem !important;
8590
  margin-left: 6rem !important;
8591
}
8592
 
8593
.mx-auto {
8594
  margin-right: auto !important;
8595
  margin-left: auto !important;
8596
}
8597
 
8598
.my-0 {
8599
  margin-top: 0 !important;
8600
  margin-bottom: 0 !important;
8601
}
8602
 
8603
.my-1 {
8604
  margin-top: 0.25rem !important;
8605
  margin-bottom: 0.25rem !important;
8606
}
8607
 
8608
.my-2 {
8609
  margin-top: 0.5rem !important;
8610
  margin-bottom: 0.5rem !important;
8611
}
8612
 
8613
.my-3 {
8614
  margin-top: 1rem !important;
8615
  margin-bottom: 1rem !important;
8616
}
8617
 
8618
.my-4 {
8619
  margin-top: 1.5rem !important;
8620
  margin-bottom: 1.5rem !important;
8621
}
8622
 
8623
.my-5 {
8624
  margin-top: 3rem !important;
8625
  margin-bottom: 3rem !important;
8626
}
8627
 
8628
.my-6 {
8629
  margin-top: 4.5rem !important;
8630
  margin-bottom: 4.5rem !important;
8631
}
8632
 
8633
.my-7 {
8634
  margin-top: 6rem !important;
8635
  margin-bottom: 6rem !important;
8636
}
8637
 
8638
.my-auto {
8639
  margin-top: auto !important;
8640
  margin-bottom: auto !important;
8641
}
8642
 
8643
.mt-0 {
8644
  margin-top: 0 !important;
8645
}
8646
 
8647
.mt-1 {
8648
  margin-top: 0.25rem !important;
8649
}
8650
 
8651
.mt-2 {
8652
  margin-top: 0.5rem !important;
8653
}
8654
 
16848 stevensc 8655
.mt-3,
8656
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8657
  margin-top: 1rem !important;
8658
}
8659
 
8660
.mt-4 {
8661
  margin-top: 1.5rem !important;
8662
}
8663
 
8664
.mt-5 {
8665
  margin-top: 3rem !important;
8666
}
8667
 
8668
.mt-6 {
8669
  margin-top: 4.5rem !important;
8670
}
8671
 
8672
.mt-7 {
8673
  margin-top: 6rem !important;
8674
}
8675
 
8676
.mt-auto {
8677
  margin-top: auto !important;
8678
}
8679
 
8680
.me-0 {
8681
  margin-right: 0 !important;
8682
}
8683
 
8684
.me-1 {
8685
  margin-right: 0.25rem !important;
8686
}
8687
 
8688
.me-2 {
8689
  margin-right: 0.5rem !important;
8690
}
8691
 
8692
.me-3 {
8693
  margin-right: 1rem !important;
8694
}
8695
 
8696
.me-4 {
8697
  margin-right: 1.5rem !important;
8698
}
8699
 
8700
.me-5 {
8701
  margin-right: 3rem !important;
8702
}
8703
 
8704
.me-6 {
8705
  margin-right: 4.5rem !important;
8706
}
8707
 
8708
.me-7 {
8709
  margin-right: 6rem !important;
8710
}
8711
 
8712
.me-auto {
8713
  margin-right: auto !important;
8714
}
8715
 
8716
.mb-0 {
8717
  margin-bottom: 0 !important;
8718
}
8719
 
16848 stevensc 8720
.mb-1,
8721
.example .btn-group {
16825 efrain 8722
  margin-bottom: 0.25rem !important;
8723
}
8724
 
8725
.mb-2 {
8726
  margin-bottom: 0.5rem !important;
8727
}
8728
 
8729
.mb-3 {
8730
  margin-bottom: 1rem !important;
8731
}
8732
 
8733
.mb-4 {
8734
  margin-bottom: 1.5rem !important;
8735
}
8736
 
8737
.mb-5 {
8738
  margin-bottom: 3rem !important;
8739
}
8740
 
8741
.mb-6 {
8742
  margin-bottom: 4.5rem !important;
8743
}
8744
 
8745
.mb-7 {
8746
  margin-bottom: 6rem !important;
8747
}
8748
 
8749
.mb-auto {
8750
  margin-bottom: auto !important;
8751
}
8752
 
8753
.ms-0 {
8754
  margin-left: 0 !important;
8755
}
8756
 
8757
.ms-1 {
8758
  margin-left: 0.25rem !important;
8759
}
8760
 
8761
.ms-2 {
8762
  margin-left: 0.5rem !important;
8763
}
8764
 
8765
.ms-3 {
8766
  margin-left: 1rem !important;
8767
}
8768
 
8769
.ms-4 {
8770
  margin-left: 1.5rem !important;
8771
}
8772
 
8773
.ms-5 {
8774
  margin-left: 3rem !important;
8775
}
8776
 
8777
.ms-6 {
8778
  margin-left: 4.5rem !important;
8779
}
8780
 
8781
.ms-7 {
8782
  margin-left: 6rem !important;
8783
}
8784
 
8785
.ms-auto {
8786
  margin-left: auto !important;
8787
}
8788
 
8789
.m-n1 {
8790
  margin: -0.25rem !important;
8791
}
8792
 
8793
.m-n2 {
8794
  margin: -0.5rem !important;
8795
}
8796
 
8797
.m-n3 {
8798
  margin: -1rem !important;
8799
}
8800
 
8801
.m-n4 {
8802
  margin: -1.5rem !important;
8803
}
8804
 
8805
.m-n5 {
8806
  margin: -3rem !important;
8807
}
8808
 
8809
.m-n6 {
8810
  margin: -4.5rem !important;
8811
}
8812
 
8813
.m-n7 {
8814
  margin: -6rem !important;
8815
}
8816
 
8817
.mx-n1 {
8818
  margin-right: -0.25rem !important;
8819
  margin-left: -0.25rem !important;
8820
}
8821
 
8822
.mx-n2 {
8823
  margin-right: -0.5rem !important;
8824
  margin-left: -0.5rem !important;
8825
}
8826
 
8827
.mx-n3 {
8828
  margin-right: -1rem !important;
8829
  margin-left: -1rem !important;
8830
}
8831
 
8832
.mx-n4 {
8833
  margin-right: -1.5rem !important;
8834
  margin-left: -1.5rem !important;
8835
}
8836
 
8837
.mx-n5 {
8838
  margin-right: -3rem !important;
8839
  margin-left: -3rem !important;
8840
}
8841
 
8842
.mx-n6 {
8843
  margin-right: -4.5rem !important;
8844
  margin-left: -4.5rem !important;
8845
}
8846
 
8847
.mx-n7 {
8848
  margin-right: -6rem !important;
8849
  margin-left: -6rem !important;
8850
}
8851
 
8852
.my-n1 {
8853
  margin-top: -0.25rem !important;
8854
  margin-bottom: -0.25rem !important;
8855
}
8856
 
8857
.my-n2 {
8858
  margin-top: -0.5rem !important;
8859
  margin-bottom: -0.5rem !important;
8860
}
8861
 
8862
.my-n3 {
8863
  margin-top: -1rem !important;
8864
  margin-bottom: -1rem !important;
8865
}
8866
 
8867
.my-n4 {
8868
  margin-top: -1.5rem !important;
8869
  margin-bottom: -1.5rem !important;
8870
}
8871
 
8872
.my-n5 {
8873
  margin-top: -3rem !important;
8874
  margin-bottom: -3rem !important;
8875
}
8876
 
8877
.my-n6 {
8878
  margin-top: -4.5rem !important;
8879
  margin-bottom: -4.5rem !important;
8880
}
8881
 
8882
.my-n7 {
8883
  margin-top: -6rem !important;
8884
  margin-bottom: -6rem !important;
8885
}
8886
 
8887
.mt-n1 {
8888
  margin-top: -0.25rem !important;
8889
}
8890
 
8891
.mt-n2 {
8892
  margin-top: -0.5rem !important;
8893
}
8894
 
8895
.mt-n3 {
8896
  margin-top: -1rem !important;
8897
}
8898
 
8899
.mt-n4 {
8900
  margin-top: -1.5rem !important;
8901
}
8902
 
8903
.mt-n5 {
8904
  margin-top: -3rem !important;
8905
}
8906
 
8907
.mt-n6 {
8908
  margin-top: -4.5rem !important;
8909
}
8910
 
8911
.mt-n7 {
8912
  margin-top: -6rem !important;
8913
}
8914
 
8915
.me-n1 {
8916
  margin-right: -0.25rem !important;
8917
}
8918
 
8919
.me-n2 {
8920
  margin-right: -0.5rem !important;
8921
}
8922
 
8923
.me-n3 {
8924
  margin-right: -1rem !important;
8925
}
8926
 
8927
.me-n4 {
8928
  margin-right: -1.5rem !important;
8929
}
8930
 
8931
.me-n5 {
8932
  margin-right: -3rem !important;
8933
}
8934
 
8935
.me-n6 {
8936
  margin-right: -4.5rem !important;
8937
}
8938
 
8939
.me-n7 {
8940
  margin-right: -6rem !important;
8941
}
8942
 
8943
.mb-n1 {
8944
  margin-bottom: -0.25rem !important;
8945
}
8946
 
8947
.mb-n2 {
8948
  margin-bottom: -0.5rem !important;
8949
}
8950
 
8951
.mb-n3 {
8952
  margin-bottom: -1rem !important;
8953
}
8954
 
8955
.mb-n4 {
8956
  margin-bottom: -1.5rem !important;
8957
}
8958
 
8959
.mb-n5 {
8960
  margin-bottom: -3rem !important;
8961
}
8962
 
8963
.mb-n6 {
8964
  margin-bottom: -4.5rem !important;
8965
}
8966
 
8967
.mb-n7 {
8968
  margin-bottom: -6rem !important;
8969
}
8970
 
8971
.ms-n1 {
8972
  margin-left: -0.25rem !important;
8973
}
8974
 
8975
.ms-n2 {
8976
  margin-left: -0.5rem !important;
8977
}
8978
 
8979
.ms-n3 {
8980
  margin-left: -1rem !important;
8981
}
8982
 
8983
.ms-n4 {
8984
  margin-left: -1.5rem !important;
8985
}
8986
 
8987
.ms-n5 {
8988
  margin-left: -3rem !important;
8989
}
8990
 
8991
.ms-n6 {
8992
  margin-left: -4.5rem !important;
8993
}
8994
 
8995
.ms-n7 {
8996
  margin-left: -6rem !important;
8997
}
8998
 
8999
.p-0 {
9000
  padding: 0 !important;
9001
}
9002
 
9003
.p-1 {
9004
  padding: 0.25rem !important;
9005
}
9006
 
9007
.p-2 {
9008
  padding: 0.5rem !important;
9009
}
9010
 
9011
.p-3 {
9012
  padding: 1rem !important;
9013
}
9014
 
9015
.p-4 {
9016
  padding: 1.5rem !important;
9017
}
9018
 
9019
.p-5 {
9020
  padding: 3rem !important;
9021
}
9022
 
9023
.p-6 {
9024
  padding: 4.5rem !important;
9025
}
9026
 
9027
.p-7 {
9028
  padding: 6rem !important;
9029
}
9030
 
9031
.px-0 {
9032
  padding-right: 0 !important;
9033
  padding-left: 0 !important;
9034
}
9035
 
9036
.px-1 {
9037
  padding-right: 0.25rem !important;
9038
  padding-left: 0.25rem !important;
9039
}
9040
 
9041
.px-2 {
9042
  padding-right: 0.5rem !important;
9043
  padding-left: 0.5rem !important;
9044
}
9045
 
9046
.px-3 {
9047
  padding-right: 1rem !important;
9048
  padding-left: 1rem !important;
9049
}
9050
 
9051
.px-4 {
9052
  padding-right: 1.5rem !important;
9053
  padding-left: 1.5rem !important;
9054
}
9055
 
9056
.px-5 {
9057
  padding-right: 3rem !important;
9058
  padding-left: 3rem !important;
9059
}
9060
 
9061
.px-6 {
9062
  padding-right: 4.5rem !important;
9063
  padding-left: 4.5rem !important;
9064
}
9065
 
9066
.px-7 {
9067
  padding-right: 6rem !important;
9068
  padding-left: 6rem !important;
9069
}
9070
 
9071
.py-0 {
9072
  padding-top: 0 !important;
9073
  padding-bottom: 0 !important;
9074
}
9075
 
9076
.py-1 {
9077
  padding-top: 0.25rem !important;
9078
  padding-bottom: 0.25rem !important;
9079
}
9080
 
9081
.py-2 {
9082
  padding-top: 0.5rem !important;
9083
  padding-bottom: 0.5rem !important;
9084
}
9085
 
9086
.py-3 {
9087
  padding-top: 1rem !important;
9088
  padding-bottom: 1rem !important;
9089
}
9090
 
9091
.py-4 {
9092
  padding-top: 1.5rem !important;
9093
  padding-bottom: 1.5rem !important;
9094
}
9095
 
9096
.py-5 {
9097
  padding-top: 3rem !important;
9098
  padding-bottom: 3rem !important;
9099
}
9100
 
9101
.py-6 {
9102
  padding-top: 4.5rem !important;
9103
  padding-bottom: 4.5rem !important;
9104
}
9105
 
9106
.py-7 {
9107
  padding-top: 6rem !important;
9108
  padding-bottom: 6rem !important;
9109
}
9110
 
9111
.pt-0 {
9112
  padding-top: 0 !important;
9113
}
9114
 
9115
.pt-1 {
9116
  padding-top: 0.25rem !important;
9117
}
9118
 
9119
.pt-2 {
9120
  padding-top: 0.5rem !important;
9121
}
9122
 
9123
.pt-3 {
9124
  padding-top: 1rem !important;
9125
}
9126
 
9127
.pt-4 {
9128
  padding-top: 1.5rem !important;
9129
}
9130
 
9131
.pt-5 {
9132
  padding-top: 3rem !important;
9133
}
9134
 
9135
.pt-6 {
9136
  padding-top: 4.5rem !important;
9137
}
9138
 
9139
.pt-7 {
9140
  padding-top: 6rem !important;
9141
}
9142
 
9143
.pe-0 {
9144
  padding-right: 0 !important;
9145
}
9146
 
9147
.pe-1 {
9148
  padding-right: 0.25rem !important;
9149
}
9150
 
9151
.pe-2 {
9152
  padding-right: 0.5rem !important;
9153
}
9154
 
9155
.pe-3 {
9156
  padding-right: 1rem !important;
9157
}
9158
 
9159
.pe-4 {
9160
  padding-right: 1.5rem !important;
9161
}
9162
 
9163
.pe-5 {
9164
  padding-right: 3rem !important;
9165
}
9166
 
9167
.pe-6 {
9168
  padding-right: 4.5rem !important;
9169
}
9170
 
9171
.pe-7 {
9172
  padding-right: 6rem !important;
9173
}
9174
 
9175
.pb-0 {
9176
  padding-bottom: 0 !important;
9177
}
9178
 
9179
.pb-1 {
9180
  padding-bottom: 0.25rem !important;
9181
}
9182
 
9183
.pb-2 {
9184
  padding-bottom: 0.5rem !important;
9185
}
9186
 
9187
.pb-3 {
9188
  padding-bottom: 1rem !important;
9189
}
9190
 
9191
.pb-4 {
9192
  padding-bottom: 1.5rem !important;
9193
}
9194
 
9195
.pb-5 {
9196
  padding-bottom: 3rem !important;
9197
}
9198
 
9199
.pb-6 {
9200
  padding-bottom: 4.5rem !important;
9201
}
9202
 
9203
.pb-7 {
9204
  padding-bottom: 6rem !important;
9205
}
9206
 
9207
.ps-0 {
9208
  padding-left: 0 !important;
9209
}
9210
 
9211
.ps-1 {
9212
  padding-left: 0.25rem !important;
9213
}
9214
 
9215
.ps-2 {
9216
  padding-left: 0.5rem !important;
9217
}
9218
 
9219
.ps-3 {
9220
  padding-left: 1rem !important;
9221
}
9222
 
9223
.ps-4 {
9224
  padding-left: 1.5rem !important;
9225
}
9226
 
9227
.ps-5 {
9228
  padding-left: 3rem !important;
9229
}
9230
 
9231
.ps-6 {
9232
  padding-left: 4.5rem !important;
9233
}
9234
 
9235
.ps-7 {
9236
  padding-left: 6rem !important;
9237
}
9238
 
9239
.gap-0 {
9240
  gap: 0 !important;
9241
}
9242
 
9243
.gap-1 {
9244
  gap: 0.25rem !important;
9245
}
9246
 
9247
.gap-2 {
9248
  gap: 0.5rem !important;
9249
}
9250
 
9251
.gap-3 {
9252
  gap: 1rem !important;
9253
}
9254
 
9255
.gap-4 {
9256
  gap: 1.5rem !important;
9257
}
9258
 
9259
.gap-5 {
9260
  gap: 3rem !important;
9261
}
9262
 
9263
.gap-6 {
9264
  gap: 4.5rem !important;
9265
}
9266
 
9267
.gap-7 {
9268
  gap: 6rem !important;
9269
}
9270
 
9271
.font-monospace {
9272
  font-family: var(--bs-font-monospace) !important;
9273
}
9274
 
9275
.fs-1 {
9276
  font-size: calc(1.375rem + 1.5vw) !important;
9277
}
9278
 
9279
.fs-2 {
9280
  font-size: calc(1.325rem + 0.9vw) !important;
9281
}
9282
 
9283
.fs-3 {
9284
  font-size: calc(1.275rem + 0.3vw) !important;
9285
}
9286
 
9287
.fs-4 {
9288
  font-size: 1.25rem !important;
9289
}
9290
 
9291
.fs-5 {
9292
  font-size: 1rem !important;
9293
}
9294
 
9295
.fs-6 {
9296
  font-size: 0.875rem !important;
9297
}
9298
 
9299
.fst-italic {
9300
  font-style: italic !important;
9301
}
9302
 
9303
.fst-normal {
9304
  font-style: normal !important;
9305
}
9306
 
9307
.fw-light {
9308
  font-weight: 300 !important;
9309
}
9310
 
9311
.fw-lighter {
9312
  font-weight: lighter !important;
9313
}
9314
 
9315
.fw-normal {
9316
  font-weight: 400 !important;
9317
}
9318
 
9319
.fw-bold {
9320
  font-weight: 500 !important;
9321
}
9322
 
9323
.fw-semibold {
9324
  font-weight: 600 !important;
9325
}
9326
 
9327
.fw-bolder {
9328
  font-weight: 700 !important;
9329
}
9330
 
9331
.lh-1 {
9332
  line-height: 1 !important;
9333
}
9334
 
9335
.lh-sm {
9336
  line-height: 1.25 !important;
9337
}
9338
 
9339
.lh-base {
9340
  line-height: 1.5 !important;
9341
}
9342
 
9343
.lh-lg {
9344
  line-height: 2 !important;
9345
}
9346
 
9347
.text-start {
9348
  text-align: left !important;
9349
}
9350
 
9351
.text-end {
9352
  text-align: right !important;
9353
}
9354
 
9355
.text-center {
9356
  text-align: center !important;
9357
}
9358
 
9359
.text-decoration-none {
9360
  text-decoration: none !important;
9361
}
9362
 
9363
.text-decoration-underline {
9364
  text-decoration: underline !important;
9365
}
9366
 
9367
.text-decoration-line-through {
9368
  text-decoration: line-through !important;
9369
}
9370
 
9371
.text-lowercase {
9372
  text-transform: lowercase !important;
9373
}
9374
 
9375
.text-uppercase {
9376
  text-transform: uppercase !important;
9377
}
9378
 
9379
.text-capitalize {
9380
  text-transform: capitalize !important;
9381
}
9382
 
9383
.text-wrap {
9384
  white-space: normal !important;
9385
}
9386
 
9387
.text-nowrap {
9388
  white-space: nowrap !important;
9389
}
9390
 
9391
/* rtl:begin:remove */
9392
.text-break {
9393
  word-wrap: break-word !important;
9394
  word-break: break-word !important;
9395
}
9396
 
9397
/* rtl:end:remove */
9398
.text-primary {
9399
  --bs-text-opacity: 1;
9400
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9401
}
9402
 
9403
.text-secondary {
9404
  --bs-text-opacity: 1;
9405
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9406
}
9407
 
9408
.text-success {
9409
  --bs-text-opacity: 1;
9410
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9411
}
9412
 
9413
.text-info {
9414
  --bs-text-opacity: 1;
9415
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9416
}
9417
 
9418
.text-warning {
9419
  --bs-text-opacity: 1;
9420
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9421
}
9422
 
9423
.text-danger {
9424
  --bs-text-opacity: 1;
9425
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9426
}
9427
 
9428
.text-light {
9429
  --bs-text-opacity: 1;
9430
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9431
}
9432
 
9433
.text-dark {
9434
  --bs-text-opacity: 1;
9435
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9436
}
9437
 
9438
.text-black {
9439
  --bs-text-opacity: 1;
9440
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9441
}
9442
 
9443
.text-white {
9444
  --bs-text-opacity: 1;
9445
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9446
}
9447
 
9448
.text-body {
9449
  --bs-text-opacity: 1;
9450
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9451
}
9452
 
16848 stevensc 9453
.text-muted,
9454
.dropzone.dz-clickable .dz-message * {
16825 efrain 9455
  --bs-text-opacity: 1;
9456
  color: #7987a1 !important;
9457
}
9458
 
9459
.text-black-50 {
9460
  --bs-text-opacity: 1;
9461
  color: rgba(0, 0, 0, 0.5) !important;
9462
}
9463
 
9464
.text-white-50 {
9465
  --bs-text-opacity: 1;
9466
  color: rgba(255, 255, 255, 0.5) !important;
9467
}
9468
 
9469
.text-reset {
9470
  --bs-text-opacity: 1;
9471
  color: inherit !important;
9472
}
9473
 
9474
.text-opacity-25 {
9475
  --bs-text-opacity: 0.25;
9476
}
9477
 
9478
.text-opacity-50 {
9479
  --bs-text-opacity: 0.5;
9480
}
9481
 
9482
.text-opacity-75 {
9483
  --bs-text-opacity: 0.75;
9484
}
9485
 
9486
.text-opacity-100 {
9487
  --bs-text-opacity: 1;
9488
}
9489
 
9490
.bg-primary {
9491
  --bs-bg-opacity: 1;
9492
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9493
}
9494
 
9495
.bg-secondary {
9496
  --bs-bg-opacity: 1;
9497
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9498
}
9499
 
9500
.bg-success {
9501
  --bs-bg-opacity: 1;
9502
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9503
}
9504
 
9505
.bg-info {
9506
  --bs-bg-opacity: 1;
9507
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9508
}
9509
 
9510
.bg-warning {
9511
  --bs-bg-opacity: 1;
9512
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9513
}
9514
 
9515
.bg-danger {
9516
  --bs-bg-opacity: 1;
9517
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9518
}
9519
 
9520
.bg-light {
9521
  --bs-bg-opacity: 1;
9522
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9523
}
9524
 
9525
.bg-dark {
9526
  --bs-bg-opacity: 1;
9527
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9528
}
9529
 
9530
.bg-black {
9531
  --bs-bg-opacity: 1;
9532
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9533
}
9534
 
9535
.bg-white {
9536
  --bs-bg-opacity: 1;
9537
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9538
}
9539
 
9540
.bg-body {
9541
  --bs-bg-opacity: 1;
9542
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9543
}
9544
 
9545
.bg-transparent {
9546
  --bs-bg-opacity: 1;
9547
  background-color: transparent !important;
9548
}
9549
 
9550
.bg-opacity-10 {
9551
  --bs-bg-opacity: 0.1;
9552
}
9553
 
9554
.bg-opacity-25 {
9555
  --bs-bg-opacity: 0.25;
9556
}
9557
 
9558
.bg-opacity-50 {
9559
  --bs-bg-opacity: 0.5;
9560
}
9561
 
9562
.bg-opacity-75 {
9563
  --bs-bg-opacity: 0.75;
9564
}
9565
 
9566
.bg-opacity-100 {
9567
  --bs-bg-opacity: 1;
9568
}
9569
 
9570
.bg-gradient {
9571
  background-image: var(--bs-gradient) !important;
9572
}
9573
 
9574
.user-select-all {
9575
  user-select: all !important;
9576
}
9577
 
9578
.user-select-auto {
9579
  user-select: auto !important;
9580
}
9581
 
9582
.user-select-none {
9583
  user-select: none !important;
9584
}
9585
 
9586
.pe-none {
9587
  pointer-events: none !important;
9588
}
9589
 
9590
.pe-auto {
9591
  pointer-events: auto !important;
9592
}
9593
 
9594
.rounded {
9595
  border-radius: var(--bs-border-radius) !important;
9596
}
9597
 
9598
.rounded-0 {
9599
  border-radius: 0 !important;
9600
}
9601
 
9602
.rounded-1 {
9603
  border-radius: var(--bs-border-radius-sm) !important;
9604
}
9605
 
9606
.rounded-2 {
9607
  border-radius: var(--bs-border-radius) !important;
9608
}
9609
 
9610
.rounded-3 {
9611
  border-radius: var(--bs-border-radius-lg) !important;
9612
}
9613
 
9614
.rounded-4 {
9615
  border-radius: var(--bs-border-radius-xl) !important;
9616
}
9617
 
9618
.rounded-5 {
9619
  border-radius: var(--bs-border-radius-2xl) !important;
9620
}
9621
 
9622
.rounded-circle {
9623
  border-radius: 50% !important;
9624
}
9625
 
9626
.rounded-pill {
9627
  border-radius: var(--bs-border-radius-pill) !important;
9628
}
9629
 
9630
.rounded-top {
9631
  border-top-left-radius: var(--bs-border-radius) !important;
9632
  border-top-right-radius: var(--bs-border-radius) !important;
9633
}
9634
 
9635
.rounded-end {
9636
  border-top-right-radius: var(--bs-border-radius) !important;
9637
  border-bottom-right-radius: var(--bs-border-radius) !important;
9638
}
9639
 
9640
.rounded-bottom {
9641
  border-bottom-right-radius: var(--bs-border-radius) !important;
9642
  border-bottom-left-radius: var(--bs-border-radius) !important;
9643
}
9644
 
9645
.rounded-start {
9646
  border-bottom-left-radius: var(--bs-border-radius) !important;
9647
  border-top-left-radius: var(--bs-border-radius) !important;
9648
}
9649
 
9650
.visible {
9651
  visibility: visible !important;
9652
}
9653
 
9654
.invisible {
9655
  visibility: hidden !important;
9656
}
9657
 
9658
.bg-gray-100 {
9659
  background-color: #f8f9fa !important;
9660
}
9661
 
9662
.bg-gray-200 {
9663
  background-color: #e9ecef !important;
9664
}
9665
 
9666
.bg-gray-300 {
9667
  background-color: #dee2e6 !important;
9668
}
9669
 
9670
.bg-gray-400 {
9671
  background-color: #cbd1db !important;
9672
}
9673
 
9674
.bg-gray-500 {
9675
  background-color: #aeb7c5 !important;
9676
}
9677
 
9678
.bg-gray-600 {
9679
  background-color: #7987a1 !important;
9680
}
9681
 
9682
.bg-gray-700 {
9683
  background-color: #41516c !important;
9684
}
9685
 
9686
.bg-gray-800 {
9687
  background-color: #212a3a !important;
9688
}
9689
 
9690
.bg-gray-900 {
9691
  background-color: #060c17 !important;
9692
}
9693
 
9694
@media (min-width: 576px) {
9695
  .float-sm-start {
9696
    float: left !important;
9697
  }
16848 stevensc 9698
 
16825 efrain 9699
  .float-sm-end {
9700
    float: right !important;
9701
  }
16848 stevensc 9702
 
16825 efrain 9703
  .float-sm-none {
9704
    float: none !important;
9705
  }
16848 stevensc 9706
 
16825 efrain 9707
  .d-sm-inline {
9708
    display: inline !important;
9709
  }
16848 stevensc 9710
 
16825 efrain 9711
  .d-sm-inline-block {
9712
    display: inline-block !important;
9713
  }
16848 stevensc 9714
 
16825 efrain 9715
  .d-sm-block {
9716
    display: block !important;
9717
  }
16848 stevensc 9718
 
16825 efrain 9719
  .d-sm-grid {
9720
    display: grid !important;
9721
  }
16848 stevensc 9722
 
16825 efrain 9723
  .d-sm-table {
9724
    display: table !important;
9725
  }
16848 stevensc 9726
 
16825 efrain 9727
  .d-sm-table-row {
9728
    display: table-row !important;
9729
  }
16848 stevensc 9730
 
16825 efrain 9731
  .d-sm-table-cell {
9732
    display: table-cell !important;
9733
  }
16848 stevensc 9734
 
16825 efrain 9735
  .d-sm-flex {
9736
    display: flex !important;
9737
  }
16848 stevensc 9738
 
16825 efrain 9739
  .d-sm-inline-flex {
9740
    display: inline-flex !important;
9741
  }
16848 stevensc 9742
 
16825 efrain 9743
  .d-sm-none {
9744
    display: none !important;
9745
  }
16848 stevensc 9746
 
16825 efrain 9747
  .border-sm {
9748
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9749
  }
16848 stevensc 9750
 
16825 efrain 9751
  .border-sm-0 {
9752
    border: 0 !important;
9753
  }
16848 stevensc 9754
 
16825 efrain 9755
  .border-top-sm {
9756
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9757
  }
16848 stevensc 9758
 
16825 efrain 9759
  .border-top-sm-0 {
9760
    border-top: 0 !important;
9761
  }
16848 stevensc 9762
 
16825 efrain 9763
  .border-end-sm {
9764
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9765
  }
16848 stevensc 9766
 
16825 efrain 9767
  .border-end-sm-0 {
9768
    border-right: 0 !important;
9769
  }
16848 stevensc 9770
 
16825 efrain 9771
  .border-bottom-sm {
9772
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9773
  }
16848 stevensc 9774
 
16825 efrain 9775
  .border-bottom-sm-0 {
9776
    border-bottom: 0 !important;
9777
  }
16848 stevensc 9778
 
16825 efrain 9779
  .border-start-sm {
9780
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9781
  }
16848 stevensc 9782
 
16825 efrain 9783
  .border-start-sm-0 {
9784
    border-left: 0 !important;
9785
  }
16848 stevensc 9786
 
16825 efrain 9787
  .flex-sm-fill {
9788
    flex: 1 1 auto !important;
9789
  }
16848 stevensc 9790
 
16825 efrain 9791
  .flex-sm-row {
9792
    flex-direction: row !important;
9793
  }
16848 stevensc 9794
 
16825 efrain 9795
  .flex-sm-column {
9796
    flex-direction: column !important;
9797
  }
16848 stevensc 9798
 
16825 efrain 9799
  .flex-sm-row-reverse {
9800
    flex-direction: row-reverse !important;
9801
  }
16848 stevensc 9802
 
16825 efrain 9803
  .flex-sm-column-reverse {
9804
    flex-direction: column-reverse !important;
9805
  }
16848 stevensc 9806
 
16825 efrain 9807
  .flex-sm-grow-0 {
9808
    flex-grow: 0 !important;
9809
  }
16848 stevensc 9810
 
16825 efrain 9811
  .flex-sm-grow-1 {
9812
    flex-grow: 1 !important;
9813
  }
16848 stevensc 9814
 
16825 efrain 9815
  .flex-sm-shrink-0 {
9816
    flex-shrink: 0 !important;
9817
  }
16848 stevensc 9818
 
16825 efrain 9819
  .flex-sm-shrink-1 {
9820
    flex-shrink: 1 !important;
9821
  }
16848 stevensc 9822
 
16825 efrain 9823
  .flex-sm-wrap {
9824
    flex-wrap: wrap !important;
9825
  }
16848 stevensc 9826
 
16825 efrain 9827
  .flex-sm-nowrap {
9828
    flex-wrap: nowrap !important;
9829
  }
16848 stevensc 9830
 
16825 efrain 9831
  .flex-sm-wrap-reverse {
9832
    flex-wrap: wrap-reverse !important;
9833
  }
16848 stevensc 9834
 
16825 efrain 9835
  .justify-content-sm-start {
9836
    justify-content: flex-start !important;
9837
  }
16848 stevensc 9838
 
16825 efrain 9839
  .justify-content-sm-end {
9840
    justify-content: flex-end !important;
9841
  }
16848 stevensc 9842
 
16825 efrain 9843
  .justify-content-sm-center {
9844
    justify-content: center !important;
9845
  }
16848 stevensc 9846
 
16825 efrain 9847
  .justify-content-sm-between {
9848
    justify-content: space-between !important;
9849
  }
16848 stevensc 9850
 
16825 efrain 9851
  .justify-content-sm-around {
9852
    justify-content: space-around !important;
9853
  }
16848 stevensc 9854
 
16825 efrain 9855
  .justify-content-sm-evenly {
9856
    justify-content: space-evenly !important;
9857
  }
16848 stevensc 9858
 
16825 efrain 9859
  .align-items-sm-start {
9860
    align-items: flex-start !important;
9861
  }
16848 stevensc 9862
 
16825 efrain 9863
  .align-items-sm-end {
9864
    align-items: flex-end !important;
9865
  }
16848 stevensc 9866
 
16825 efrain 9867
  .align-items-sm-center {
9868
    align-items: center !important;
9869
  }
16848 stevensc 9870
 
16825 efrain 9871
  .align-items-sm-baseline {
9872
    align-items: baseline !important;
9873
  }
16848 stevensc 9874
 
16825 efrain 9875
  .align-items-sm-stretch {
9876
    align-items: stretch !important;
9877
  }
16848 stevensc 9878
 
16825 efrain 9879
  .align-content-sm-start {
9880
    align-content: flex-start !important;
9881
  }
16848 stevensc 9882
 
16825 efrain 9883
  .align-content-sm-end {
9884
    align-content: flex-end !important;
9885
  }
16848 stevensc 9886
 
16825 efrain 9887
  .align-content-sm-center {
9888
    align-content: center !important;
9889
  }
16848 stevensc 9890
 
16825 efrain 9891
  .align-content-sm-between {
9892
    align-content: space-between !important;
9893
  }
16848 stevensc 9894
 
16825 efrain 9895
  .align-content-sm-around {
9896
    align-content: space-around !important;
9897
  }
16848 stevensc 9898
 
16825 efrain 9899
  .align-content-sm-stretch {
9900
    align-content: stretch !important;
9901
  }
16848 stevensc 9902
 
16825 efrain 9903
  .align-self-sm-auto {
9904
    align-self: auto !important;
9905
  }
16848 stevensc 9906
 
16825 efrain 9907
  .align-self-sm-start {
9908
    align-self: flex-start !important;
9909
  }
16848 stevensc 9910
 
16825 efrain 9911
  .align-self-sm-end {
9912
    align-self: flex-end !important;
9913
  }
16848 stevensc 9914
 
16825 efrain 9915
  .align-self-sm-center {
9916
    align-self: center !important;
9917
  }
16848 stevensc 9918
 
16825 efrain 9919
  .align-self-sm-baseline {
9920
    align-self: baseline !important;
9921
  }
16848 stevensc 9922
 
16825 efrain 9923
  .align-self-sm-stretch {
9924
    align-self: stretch !important;
9925
  }
16848 stevensc 9926
 
16825 efrain 9927
  .order-sm-first {
9928
    order: -1 !important;
9929
  }
16848 stevensc 9930
 
16825 efrain 9931
  .order-sm-0 {
9932
    order: 0 !important;
9933
  }
16848 stevensc 9934
 
16825 efrain 9935
  .order-sm-1 {
9936
    order: 1 !important;
9937
  }
16848 stevensc 9938
 
16825 efrain 9939
  .order-sm-2 {
9940
    order: 2 !important;
9941
  }
16848 stevensc 9942
 
16825 efrain 9943
  .order-sm-3 {
9944
    order: 3 !important;
9945
  }
16848 stevensc 9946
 
16825 efrain 9947
  .order-sm-4 {
9948
    order: 4 !important;
9949
  }
16848 stevensc 9950
 
16825 efrain 9951
  .order-sm-5 {
9952
    order: 5 !important;
9953
  }
16848 stevensc 9954
 
16825 efrain 9955
  .order-sm-last {
9956
    order: 6 !important;
9957
  }
16848 stevensc 9958
 
16825 efrain 9959
  .m-sm-0 {
9960
    margin: 0 !important;
9961
  }
16848 stevensc 9962
 
16825 efrain 9963
  .m-sm-1 {
9964
    margin: 0.25rem !important;
9965
  }
16848 stevensc 9966
 
16825 efrain 9967
  .m-sm-2 {
9968
    margin: 0.5rem !important;
9969
  }
16848 stevensc 9970
 
16825 efrain 9971
  .m-sm-3 {
9972
    margin: 1rem !important;
9973
  }
16848 stevensc 9974
 
16825 efrain 9975
  .m-sm-4 {
9976
    margin: 1.5rem !important;
9977
  }
16848 stevensc 9978
 
16825 efrain 9979
  .m-sm-5 {
9980
    margin: 3rem !important;
9981
  }
16848 stevensc 9982
 
16825 efrain 9983
  .m-sm-6 {
9984
    margin: 4.5rem !important;
9985
  }
16848 stevensc 9986
 
16825 efrain 9987
  .m-sm-7 {
9988
    margin: 6rem !important;
9989
  }
16848 stevensc 9990
 
16825 efrain 9991
  .m-sm-auto {
9992
    margin: auto !important;
9993
  }
16848 stevensc 9994
 
16825 efrain 9995
  .mx-sm-0 {
9996
    margin-right: 0 !important;
9997
    margin-left: 0 !important;
9998
  }
16848 stevensc 9999
 
16825 efrain 10000
  .mx-sm-1 {
10001
    margin-right: 0.25rem !important;
10002
    margin-left: 0.25rem !important;
10003
  }
16848 stevensc 10004
 
16825 efrain 10005
  .mx-sm-2 {
10006
    margin-right: 0.5rem !important;
10007
    margin-left: 0.5rem !important;
10008
  }
16848 stevensc 10009
 
16825 efrain 10010
  .mx-sm-3 {
10011
    margin-right: 1rem !important;
10012
    margin-left: 1rem !important;
10013
  }
16848 stevensc 10014
 
16825 efrain 10015
  .mx-sm-4 {
10016
    margin-right: 1.5rem !important;
10017
    margin-left: 1.5rem !important;
10018
  }
16848 stevensc 10019
 
16825 efrain 10020
  .mx-sm-5 {
10021
    margin-right: 3rem !important;
10022
    margin-left: 3rem !important;
10023
  }
16848 stevensc 10024
 
16825 efrain 10025
  .mx-sm-6 {
10026
    margin-right: 4.5rem !important;
10027
    margin-left: 4.5rem !important;
10028
  }
16848 stevensc 10029
 
16825 efrain 10030
  .mx-sm-7 {
10031
    margin-right: 6rem !important;
10032
    margin-left: 6rem !important;
10033
  }
16848 stevensc 10034
 
16825 efrain 10035
  .mx-sm-auto {
10036
    margin-right: auto !important;
10037
    margin-left: auto !important;
10038
  }
16848 stevensc 10039
 
16825 efrain 10040
  .my-sm-0 {
10041
    margin-top: 0 !important;
10042
    margin-bottom: 0 !important;
10043
  }
16848 stevensc 10044
 
16825 efrain 10045
  .my-sm-1 {
10046
    margin-top: 0.25rem !important;
10047
    margin-bottom: 0.25rem !important;
10048
  }
16848 stevensc 10049
 
16825 efrain 10050
  .my-sm-2 {
10051
    margin-top: 0.5rem !important;
10052
    margin-bottom: 0.5rem !important;
10053
  }
16848 stevensc 10054
 
16825 efrain 10055
  .my-sm-3 {
10056
    margin-top: 1rem !important;
10057
    margin-bottom: 1rem !important;
10058
  }
16848 stevensc 10059
 
16825 efrain 10060
  .my-sm-4 {
10061
    margin-top: 1.5rem !important;
10062
    margin-bottom: 1.5rem !important;
10063
  }
16848 stevensc 10064
 
16825 efrain 10065
  .my-sm-5 {
10066
    margin-top: 3rem !important;
10067
    margin-bottom: 3rem !important;
10068
  }
16848 stevensc 10069
 
16825 efrain 10070
  .my-sm-6 {
10071
    margin-top: 4.5rem !important;
10072
    margin-bottom: 4.5rem !important;
10073
  }
16848 stevensc 10074
 
16825 efrain 10075
  .my-sm-7 {
10076
    margin-top: 6rem !important;
10077
    margin-bottom: 6rem !important;
10078
  }
16848 stevensc 10079
 
16825 efrain 10080
  .my-sm-auto {
10081
    margin-top: auto !important;
10082
    margin-bottom: auto !important;
10083
  }
16848 stevensc 10084
 
16825 efrain 10085
  .mt-sm-0 {
10086
    margin-top: 0 !important;
10087
  }
16848 stevensc 10088
 
16825 efrain 10089
  .mt-sm-1 {
10090
    margin-top: 0.25rem !important;
10091
  }
16848 stevensc 10092
 
16825 efrain 10093
  .mt-sm-2 {
10094
    margin-top: 0.5rem !important;
10095
  }
16848 stevensc 10096
 
16825 efrain 10097
  .mt-sm-3 {
10098
    margin-top: 1rem !important;
10099
  }
16848 stevensc 10100
 
16825 efrain 10101
  .mt-sm-4 {
10102
    margin-top: 1.5rem !important;
10103
  }
16848 stevensc 10104
 
16825 efrain 10105
  .mt-sm-5 {
10106
    margin-top: 3rem !important;
10107
  }
16848 stevensc 10108
 
16825 efrain 10109
  .mt-sm-6 {
10110
    margin-top: 4.5rem !important;
10111
  }
16848 stevensc 10112
 
16825 efrain 10113
  .mt-sm-7 {
10114
    margin-top: 6rem !important;
10115
  }
16848 stevensc 10116
 
16825 efrain 10117
  .mt-sm-auto {
10118
    margin-top: auto !important;
10119
  }
16848 stevensc 10120
 
16825 efrain 10121
  .me-sm-0 {
10122
    margin-right: 0 !important;
10123
  }
16848 stevensc 10124
 
16825 efrain 10125
  .me-sm-1 {
10126
    margin-right: 0.25rem !important;
10127
  }
16848 stevensc 10128
 
16825 efrain 10129
  .me-sm-2 {
10130
    margin-right: 0.5rem !important;
10131
  }
16848 stevensc 10132
 
16825 efrain 10133
  .me-sm-3 {
10134
    margin-right: 1rem !important;
10135
  }
16848 stevensc 10136
 
16825 efrain 10137
  .me-sm-4 {
10138
    margin-right: 1.5rem !important;
10139
  }
16848 stevensc 10140
 
16825 efrain 10141
  .me-sm-5 {
10142
    margin-right: 3rem !important;
10143
  }
16848 stevensc 10144
 
16825 efrain 10145
  .me-sm-6 {
10146
    margin-right: 4.5rem !important;
10147
  }
16848 stevensc 10148
 
16825 efrain 10149
  .me-sm-7 {
10150
    margin-right: 6rem !important;
10151
  }
16848 stevensc 10152
 
16825 efrain 10153
  .me-sm-auto {
10154
    margin-right: auto !important;
10155
  }
16848 stevensc 10156
 
16825 efrain 10157
  .mb-sm-0 {
10158
    margin-bottom: 0 !important;
10159
  }
16848 stevensc 10160
 
16825 efrain 10161
  .mb-sm-1 {
10162
    margin-bottom: 0.25rem !important;
10163
  }
16848 stevensc 10164
 
16825 efrain 10165
  .mb-sm-2 {
10166
    margin-bottom: 0.5rem !important;
10167
  }
16848 stevensc 10168
 
16825 efrain 10169
  .mb-sm-3 {
10170
    margin-bottom: 1rem !important;
10171
  }
16848 stevensc 10172
 
16825 efrain 10173
  .mb-sm-4 {
10174
    margin-bottom: 1.5rem !important;
10175
  }
16848 stevensc 10176
 
16825 efrain 10177
  .mb-sm-5 {
10178
    margin-bottom: 3rem !important;
10179
  }
16848 stevensc 10180
 
16825 efrain 10181
  .mb-sm-6 {
10182
    margin-bottom: 4.5rem !important;
10183
  }
16848 stevensc 10184
 
16825 efrain 10185
  .mb-sm-7 {
10186
    margin-bottom: 6rem !important;
10187
  }
16848 stevensc 10188
 
16825 efrain 10189
  .mb-sm-auto {
10190
    margin-bottom: auto !important;
10191
  }
16848 stevensc 10192
 
16825 efrain 10193
  .ms-sm-0 {
10194
    margin-left: 0 !important;
10195
  }
16848 stevensc 10196
 
16825 efrain 10197
  .ms-sm-1 {
10198
    margin-left: 0.25rem !important;
10199
  }
16848 stevensc 10200
 
16825 efrain 10201
  .ms-sm-2 {
10202
    margin-left: 0.5rem !important;
10203
  }
16848 stevensc 10204
 
16825 efrain 10205
  .ms-sm-3 {
10206
    margin-left: 1rem !important;
10207
  }
16848 stevensc 10208
 
16825 efrain 10209
  .ms-sm-4 {
10210
    margin-left: 1.5rem !important;
10211
  }
16848 stevensc 10212
 
16825 efrain 10213
  .ms-sm-5 {
10214
    margin-left: 3rem !important;
10215
  }
16848 stevensc 10216
 
16825 efrain 10217
  .ms-sm-6 {
10218
    margin-left: 4.5rem !important;
10219
  }
16848 stevensc 10220
 
16825 efrain 10221
  .ms-sm-7 {
10222
    margin-left: 6rem !important;
10223
  }
16848 stevensc 10224
 
16825 efrain 10225
  .ms-sm-auto {
10226
    margin-left: auto !important;
10227
  }
16848 stevensc 10228
 
16825 efrain 10229
  .m-sm-n1 {
10230
    margin: -0.25rem !important;
10231
  }
16848 stevensc 10232
 
16825 efrain 10233
  .m-sm-n2 {
10234
    margin: -0.5rem !important;
10235
  }
16848 stevensc 10236
 
16825 efrain 10237
  .m-sm-n3 {
10238
    margin: -1rem !important;
10239
  }
16848 stevensc 10240
 
16825 efrain 10241
  .m-sm-n4 {
10242
    margin: -1.5rem !important;
10243
  }
16848 stevensc 10244
 
16825 efrain 10245
  .m-sm-n5 {
10246
    margin: -3rem !important;
10247
  }
16848 stevensc 10248
 
16825 efrain 10249
  .m-sm-n6 {
10250
    margin: -4.5rem !important;
10251
  }
16848 stevensc 10252
 
16825 efrain 10253
  .m-sm-n7 {
10254
    margin: -6rem !important;
10255
  }
16848 stevensc 10256
 
16825 efrain 10257
  .mx-sm-n1 {
10258
    margin-right: -0.25rem !important;
10259
    margin-left: -0.25rem !important;
10260
  }
16848 stevensc 10261
 
16825 efrain 10262
  .mx-sm-n2 {
10263
    margin-right: -0.5rem !important;
10264
    margin-left: -0.5rem !important;
10265
  }
16848 stevensc 10266
 
16825 efrain 10267
  .mx-sm-n3 {
10268
    margin-right: -1rem !important;
10269
    margin-left: -1rem !important;
10270
  }
16848 stevensc 10271
 
16825 efrain 10272
  .mx-sm-n4 {
10273
    margin-right: -1.5rem !important;
10274
    margin-left: -1.5rem !important;
10275
  }
16848 stevensc 10276
 
16825 efrain 10277
  .mx-sm-n5 {
10278
    margin-right: -3rem !important;
10279
    margin-left: -3rem !important;
10280
  }
16848 stevensc 10281
 
16825 efrain 10282
  .mx-sm-n6 {
10283
    margin-right: -4.5rem !important;
10284
    margin-left: -4.5rem !important;
10285
  }
16848 stevensc 10286
 
16825 efrain 10287
  .mx-sm-n7 {
10288
    margin-right: -6rem !important;
10289
    margin-left: -6rem !important;
10290
  }
16848 stevensc 10291
 
16825 efrain 10292
  .my-sm-n1 {
10293
    margin-top: -0.25rem !important;
10294
    margin-bottom: -0.25rem !important;
10295
  }
16848 stevensc 10296
 
16825 efrain 10297
  .my-sm-n2 {
10298
    margin-top: -0.5rem !important;
10299
    margin-bottom: -0.5rem !important;
10300
  }
16848 stevensc 10301
 
16825 efrain 10302
  .my-sm-n3 {
10303
    margin-top: -1rem !important;
10304
    margin-bottom: -1rem !important;
10305
  }
16848 stevensc 10306
 
16825 efrain 10307
  .my-sm-n4 {
10308
    margin-top: -1.5rem !important;
10309
    margin-bottom: -1.5rem !important;
10310
  }
16848 stevensc 10311
 
16825 efrain 10312
  .my-sm-n5 {
10313
    margin-top: -3rem !important;
10314
    margin-bottom: -3rem !important;
10315
  }
16848 stevensc 10316
 
16825 efrain 10317
  .my-sm-n6 {
10318
    margin-top: -4.5rem !important;
10319
    margin-bottom: -4.5rem !important;
10320
  }
16848 stevensc 10321
 
16825 efrain 10322
  .my-sm-n7 {
10323
    margin-top: -6rem !important;
10324
    margin-bottom: -6rem !important;
10325
  }
16848 stevensc 10326
 
16825 efrain 10327
  .mt-sm-n1 {
10328
    margin-top: -0.25rem !important;
10329
  }
16848 stevensc 10330
 
16825 efrain 10331
  .mt-sm-n2 {
10332
    margin-top: -0.5rem !important;
10333
  }
16848 stevensc 10334
 
16825 efrain 10335
  .mt-sm-n3 {
10336
    margin-top: -1rem !important;
10337
  }
16848 stevensc 10338
 
16825 efrain 10339
  .mt-sm-n4 {
10340
    margin-top: -1.5rem !important;
10341
  }
16848 stevensc 10342
 
16825 efrain 10343
  .mt-sm-n5 {
10344
    margin-top: -3rem !important;
10345
  }
16848 stevensc 10346
 
16825 efrain 10347
  .mt-sm-n6 {
10348
    margin-top: -4.5rem !important;
10349
  }
16848 stevensc 10350
 
16825 efrain 10351
  .mt-sm-n7 {
10352
    margin-top: -6rem !important;
10353
  }
16848 stevensc 10354
 
16825 efrain 10355
  .me-sm-n1 {
10356
    margin-right: -0.25rem !important;
10357
  }
16848 stevensc 10358
 
16825 efrain 10359
  .me-sm-n2 {
10360
    margin-right: -0.5rem !important;
10361
  }
16848 stevensc 10362
 
16825 efrain 10363
  .me-sm-n3 {
10364
    margin-right: -1rem !important;
10365
  }
16848 stevensc 10366
 
16825 efrain 10367
  .me-sm-n4 {
10368
    margin-right: -1.5rem !important;
10369
  }
16848 stevensc 10370
 
16825 efrain 10371
  .me-sm-n5 {
10372
    margin-right: -3rem !important;
10373
  }
16848 stevensc 10374
 
16825 efrain 10375
  .me-sm-n6 {
10376
    margin-right: -4.5rem !important;
10377
  }
16848 stevensc 10378
 
16825 efrain 10379
  .me-sm-n7 {
10380
    margin-right: -6rem !important;
10381
  }
16848 stevensc 10382
 
16825 efrain 10383
  .mb-sm-n1 {
10384
    margin-bottom: -0.25rem !important;
10385
  }
16848 stevensc 10386
 
16825 efrain 10387
  .mb-sm-n2 {
10388
    margin-bottom: -0.5rem !important;
10389
  }
16848 stevensc 10390
 
16825 efrain 10391
  .mb-sm-n3 {
10392
    margin-bottom: -1rem !important;
10393
  }
16848 stevensc 10394
 
16825 efrain 10395
  .mb-sm-n4 {
10396
    margin-bottom: -1.5rem !important;
10397
  }
16848 stevensc 10398
 
16825 efrain 10399
  .mb-sm-n5 {
10400
    margin-bottom: -3rem !important;
10401
  }
16848 stevensc 10402
 
16825 efrain 10403
  .mb-sm-n6 {
10404
    margin-bottom: -4.5rem !important;
10405
  }
16848 stevensc 10406
 
16825 efrain 10407
  .mb-sm-n7 {
10408
    margin-bottom: -6rem !important;
10409
  }
16848 stevensc 10410
 
16825 efrain 10411
  .ms-sm-n1 {
10412
    margin-left: -0.25rem !important;
10413
  }
16848 stevensc 10414
 
16825 efrain 10415
  .ms-sm-n2 {
10416
    margin-left: -0.5rem !important;
10417
  }
16848 stevensc 10418
 
16825 efrain 10419
  .ms-sm-n3 {
10420
    margin-left: -1rem !important;
10421
  }
16848 stevensc 10422
 
16825 efrain 10423
  .ms-sm-n4 {
10424
    margin-left: -1.5rem !important;
10425
  }
16848 stevensc 10426
 
16825 efrain 10427
  .ms-sm-n5 {
10428
    margin-left: -3rem !important;
10429
  }
16848 stevensc 10430
 
16825 efrain 10431
  .ms-sm-n6 {
10432
    margin-left: -4.5rem !important;
10433
  }
16848 stevensc 10434
 
16825 efrain 10435
  .ms-sm-n7 {
10436
    margin-left: -6rem !important;
10437
  }
16848 stevensc 10438
 
16825 efrain 10439
  .p-sm-0 {
10440
    padding: 0 !important;
10441
  }
16848 stevensc 10442
 
16825 efrain 10443
  .p-sm-1 {
10444
    padding: 0.25rem !important;
10445
  }
16848 stevensc 10446
 
16825 efrain 10447
  .p-sm-2 {
10448
    padding: 0.5rem !important;
10449
  }
16848 stevensc 10450
 
16825 efrain 10451
  .p-sm-3 {
10452
    padding: 1rem !important;
10453
  }
16848 stevensc 10454
 
16825 efrain 10455
  .p-sm-4 {
10456
    padding: 1.5rem !important;
10457
  }
16848 stevensc 10458
 
16825 efrain 10459
  .p-sm-5 {
10460
    padding: 3rem !important;
10461
  }
16848 stevensc 10462
 
16825 efrain 10463
  .p-sm-6 {
10464
    padding: 4.5rem !important;
10465
  }
16848 stevensc 10466
 
16825 efrain 10467
  .p-sm-7 {
10468
    padding: 6rem !important;
10469
  }
16848 stevensc 10470
 
16825 efrain 10471
  .px-sm-0 {
10472
    padding-right: 0 !important;
10473
    padding-left: 0 !important;
10474
  }
16848 stevensc 10475
 
16825 efrain 10476
  .px-sm-1 {
10477
    padding-right: 0.25rem !important;
10478
    padding-left: 0.25rem !important;
10479
  }
16848 stevensc 10480
 
16825 efrain 10481
  .px-sm-2 {
10482
    padding-right: 0.5rem !important;
10483
    padding-left: 0.5rem !important;
10484
  }
16848 stevensc 10485
 
16825 efrain 10486
  .px-sm-3 {
10487
    padding-right: 1rem !important;
10488
    padding-left: 1rem !important;
10489
  }
16848 stevensc 10490
 
16825 efrain 10491
  .px-sm-4 {
10492
    padding-right: 1.5rem !important;
10493
    padding-left: 1.5rem !important;
10494
  }
16848 stevensc 10495
 
16825 efrain 10496
  .px-sm-5 {
10497
    padding-right: 3rem !important;
10498
    padding-left: 3rem !important;
10499
  }
16848 stevensc 10500
 
16825 efrain 10501
  .px-sm-6 {
10502
    padding-right: 4.5rem !important;
10503
    padding-left: 4.5rem !important;
10504
  }
16848 stevensc 10505
 
16825 efrain 10506
  .px-sm-7 {
10507
    padding-right: 6rem !important;
10508
    padding-left: 6rem !important;
10509
  }
16848 stevensc 10510
 
16825 efrain 10511
  .py-sm-0 {
10512
    padding-top: 0 !important;
10513
    padding-bottom: 0 !important;
10514
  }
16848 stevensc 10515
 
16825 efrain 10516
  .py-sm-1 {
10517
    padding-top: 0.25rem !important;
10518
    padding-bottom: 0.25rem !important;
10519
  }
16848 stevensc 10520
 
16825 efrain 10521
  .py-sm-2 {
10522
    padding-top: 0.5rem !important;
10523
    padding-bottom: 0.5rem !important;
10524
  }
16848 stevensc 10525
 
16825 efrain 10526
  .py-sm-3 {
10527
    padding-top: 1rem !important;
10528
    padding-bottom: 1rem !important;
10529
  }
16848 stevensc 10530
 
16825 efrain 10531
  .py-sm-4 {
10532
    padding-top: 1.5rem !important;
10533
    padding-bottom: 1.5rem !important;
10534
  }
16848 stevensc 10535
 
16825 efrain 10536
  .py-sm-5 {
10537
    padding-top: 3rem !important;
10538
    padding-bottom: 3rem !important;
10539
  }
16848 stevensc 10540
 
16825 efrain 10541
  .py-sm-6 {
10542
    padding-top: 4.5rem !important;
10543
    padding-bottom: 4.5rem !important;
10544
  }
16848 stevensc 10545
 
16825 efrain 10546
  .py-sm-7 {
10547
    padding-top: 6rem !important;
10548
    padding-bottom: 6rem !important;
10549
  }
16848 stevensc 10550
 
16825 efrain 10551
  .pt-sm-0 {
10552
    padding-top: 0 !important;
10553
  }
16848 stevensc 10554
 
16825 efrain 10555
  .pt-sm-1 {
10556
    padding-top: 0.25rem !important;
10557
  }
16848 stevensc 10558
 
16825 efrain 10559
  .pt-sm-2 {
10560
    padding-top: 0.5rem !important;
10561
  }
16848 stevensc 10562
 
16825 efrain 10563
  .pt-sm-3 {
10564
    padding-top: 1rem !important;
10565
  }
16848 stevensc 10566
 
16825 efrain 10567
  .pt-sm-4 {
10568
    padding-top: 1.5rem !important;
10569
  }
16848 stevensc 10570
 
16825 efrain 10571
  .pt-sm-5 {
10572
    padding-top: 3rem !important;
10573
  }
16848 stevensc 10574
 
16825 efrain 10575
  .pt-sm-6 {
10576
    padding-top: 4.5rem !important;
10577
  }
16848 stevensc 10578
 
16825 efrain 10579
  .pt-sm-7 {
10580
    padding-top: 6rem !important;
10581
  }
16848 stevensc 10582
 
16825 efrain 10583
  .pe-sm-0 {
10584
    padding-right: 0 !important;
10585
  }
16848 stevensc 10586
 
16825 efrain 10587
  .pe-sm-1 {
10588
    padding-right: 0.25rem !important;
10589
  }
16848 stevensc 10590
 
16825 efrain 10591
  .pe-sm-2 {
10592
    padding-right: 0.5rem !important;
10593
  }
16848 stevensc 10594
 
16825 efrain 10595
  .pe-sm-3 {
10596
    padding-right: 1rem !important;
10597
  }
16848 stevensc 10598
 
16825 efrain 10599
  .pe-sm-4 {
10600
    padding-right: 1.5rem !important;
10601
  }
16848 stevensc 10602
 
16825 efrain 10603
  .pe-sm-5 {
10604
    padding-right: 3rem !important;
10605
  }
16848 stevensc 10606
 
16825 efrain 10607
  .pe-sm-6 {
10608
    padding-right: 4.5rem !important;
10609
  }
16848 stevensc 10610
 
16825 efrain 10611
  .pe-sm-7 {
10612
    padding-right: 6rem !important;
10613
  }
16848 stevensc 10614
 
16825 efrain 10615
  .pb-sm-0 {
10616
    padding-bottom: 0 !important;
10617
  }
16848 stevensc 10618
 
16825 efrain 10619
  .pb-sm-1 {
10620
    padding-bottom: 0.25rem !important;
10621
  }
16848 stevensc 10622
 
16825 efrain 10623
  .pb-sm-2 {
10624
    padding-bottom: 0.5rem !important;
10625
  }
16848 stevensc 10626
 
16825 efrain 10627
  .pb-sm-3 {
10628
    padding-bottom: 1rem !important;
10629
  }
16848 stevensc 10630
 
16825 efrain 10631
  .pb-sm-4 {
10632
    padding-bottom: 1.5rem !important;
10633
  }
16848 stevensc 10634
 
16825 efrain 10635
  .pb-sm-5 {
10636
    padding-bottom: 3rem !important;
10637
  }
16848 stevensc 10638
 
16825 efrain 10639
  .pb-sm-6 {
10640
    padding-bottom: 4.5rem !important;
10641
  }
16848 stevensc 10642
 
16825 efrain 10643
  .pb-sm-7 {
10644
    padding-bottom: 6rem !important;
10645
  }
16848 stevensc 10646
 
16825 efrain 10647
  .ps-sm-0 {
10648
    padding-left: 0 !important;
10649
  }
16848 stevensc 10650
 
16825 efrain 10651
  .ps-sm-1 {
10652
    padding-left: 0.25rem !important;
10653
  }
16848 stevensc 10654
 
16825 efrain 10655
  .ps-sm-2 {
10656
    padding-left: 0.5rem !important;
10657
  }
16848 stevensc 10658
 
16825 efrain 10659
  .ps-sm-3 {
10660
    padding-left: 1rem !important;
10661
  }
16848 stevensc 10662
 
16825 efrain 10663
  .ps-sm-4 {
10664
    padding-left: 1.5rem !important;
10665
  }
16848 stevensc 10666
 
16825 efrain 10667
  .ps-sm-5 {
10668
    padding-left: 3rem !important;
10669
  }
16848 stevensc 10670
 
16825 efrain 10671
  .ps-sm-6 {
10672
    padding-left: 4.5rem !important;
10673
  }
16848 stevensc 10674
 
16825 efrain 10675
  .ps-sm-7 {
10676
    padding-left: 6rem !important;
10677
  }
16848 stevensc 10678
 
16825 efrain 10679
  .gap-sm-0 {
10680
    gap: 0 !important;
10681
  }
16848 stevensc 10682
 
16825 efrain 10683
  .gap-sm-1 {
10684
    gap: 0.25rem !important;
10685
  }
16848 stevensc 10686
 
16825 efrain 10687
  .gap-sm-2 {
10688
    gap: 0.5rem !important;
10689
  }
16848 stevensc 10690
 
16825 efrain 10691
  .gap-sm-3 {
10692
    gap: 1rem !important;
10693
  }
16848 stevensc 10694
 
16825 efrain 10695
  .gap-sm-4 {
10696
    gap: 1.5rem !important;
10697
  }
16848 stevensc 10698
 
16825 efrain 10699
  .gap-sm-5 {
10700
    gap: 3rem !important;
10701
  }
16848 stevensc 10702
 
16825 efrain 10703
  .gap-sm-6 {
10704
    gap: 4.5rem !important;
10705
  }
16848 stevensc 10706
 
16825 efrain 10707
  .gap-sm-7 {
10708
    gap: 6rem !important;
10709
  }
16848 stevensc 10710
 
16825 efrain 10711
  .text-sm-start {
10712
    text-align: left !important;
10713
  }
16848 stevensc 10714
 
16825 efrain 10715
  .text-sm-end {
10716
    text-align: right !important;
10717
  }
16848 stevensc 10718
 
16825 efrain 10719
  .text-sm-center {
10720
    text-align: center !important;
10721
  }
10722
}
16848 stevensc 10723
 
16825 efrain 10724
@media (min-width: 768px) {
10725
  .float-md-start {
10726
    float: left !important;
10727
  }
16848 stevensc 10728
 
16825 efrain 10729
  .float-md-end {
10730
    float: right !important;
10731
  }
16848 stevensc 10732
 
16825 efrain 10733
  .float-md-none {
10734
    float: none !important;
10735
  }
16848 stevensc 10736
 
16825 efrain 10737
  .d-md-inline {
10738
    display: inline !important;
10739
  }
16848 stevensc 10740
 
16825 efrain 10741
  .d-md-inline-block {
10742
    display: inline-block !important;
10743
  }
16848 stevensc 10744
 
16825 efrain 10745
  .d-md-block {
10746
    display: block !important;
10747
  }
16848 stevensc 10748
 
16825 efrain 10749
  .d-md-grid {
10750
    display: grid !important;
10751
  }
16848 stevensc 10752
 
16825 efrain 10753
  .d-md-table {
10754
    display: table !important;
10755
  }
16848 stevensc 10756
 
16825 efrain 10757
  .d-md-table-row {
10758
    display: table-row !important;
10759
  }
16848 stevensc 10760
 
16825 efrain 10761
  .d-md-table-cell {
10762
    display: table-cell !important;
10763
  }
16848 stevensc 10764
 
10765
  .d-md-flex,
10766
  .navbar .search-form {
16825 efrain 10767
    display: flex !important;
10768
  }
16848 stevensc 10769
 
16825 efrain 10770
  .d-md-inline-flex {
10771
    display: inline-flex !important;
10772
  }
16848 stevensc 10773
 
16825 efrain 10774
  .d-md-none {
10775
    display: none !important;
10776
  }
16848 stevensc 10777
 
16825 efrain 10778
  .border-md {
10779
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10780
  }
16848 stevensc 10781
 
16825 efrain 10782
  .border-md-0 {
10783
    border: 0 !important;
10784
  }
16848 stevensc 10785
 
16825 efrain 10786
  .border-top-md {
10787
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10788
  }
16848 stevensc 10789
 
16825 efrain 10790
  .border-top-md-0 {
10791
    border-top: 0 !important;
10792
  }
16848 stevensc 10793
 
16825 efrain 10794
  .border-end-md {
10795
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10796
  }
16848 stevensc 10797
 
16825 efrain 10798
  .border-end-md-0 {
10799
    border-right: 0 !important;
10800
  }
16848 stevensc 10801
 
16825 efrain 10802
  .border-bottom-md {
10803
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10804
  }
16848 stevensc 10805
 
16825 efrain 10806
  .border-bottom-md-0 {
10807
    border-bottom: 0 !important;
10808
  }
16848 stevensc 10809
 
16825 efrain 10810
  .border-start-md {
10811
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10812
  }
16848 stevensc 10813
 
16825 efrain 10814
  .border-start-md-0 {
10815
    border-left: 0 !important;
10816
  }
16848 stevensc 10817
 
16825 efrain 10818
  .flex-md-fill {
10819
    flex: 1 1 auto !important;
10820
  }
16848 stevensc 10821
 
16825 efrain 10822
  .flex-md-row {
10823
    flex-direction: row !important;
10824
  }
16848 stevensc 10825
 
16825 efrain 10826
  .flex-md-column {
10827
    flex-direction: column !important;
10828
  }
16848 stevensc 10829
 
16825 efrain 10830
  .flex-md-row-reverse {
10831
    flex-direction: row-reverse !important;
10832
  }
16848 stevensc 10833
 
16825 efrain 10834
  .flex-md-column-reverse {
10835
    flex-direction: column-reverse !important;
10836
  }
16848 stevensc 10837
 
16825 efrain 10838
  .flex-md-grow-0 {
10839
    flex-grow: 0 !important;
10840
  }
16848 stevensc 10841
 
16825 efrain 10842
  .flex-md-grow-1 {
10843
    flex-grow: 1 !important;
10844
  }
16848 stevensc 10845
 
16825 efrain 10846
  .flex-md-shrink-0 {
10847
    flex-shrink: 0 !important;
10848
  }
16848 stevensc 10849
 
16825 efrain 10850
  .flex-md-shrink-1 {
10851
    flex-shrink: 1 !important;
10852
  }
16848 stevensc 10853
 
16825 efrain 10854
  .flex-md-wrap {
10855
    flex-wrap: wrap !important;
10856
  }
16848 stevensc 10857
 
16825 efrain 10858
  .flex-md-nowrap {
10859
    flex-wrap: nowrap !important;
10860
  }
16848 stevensc 10861
 
16825 efrain 10862
  .flex-md-wrap-reverse {
10863
    flex-wrap: wrap-reverse !important;
10864
  }
16848 stevensc 10865
 
16825 efrain 10866
  .justify-content-md-start {
10867
    justify-content: flex-start !important;
10868
  }
16848 stevensc 10869
 
10870
  .justify-content-md-end,
10871
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10872
    justify-content: flex-end !important;
10873
  }
16848 stevensc 10874
 
16825 efrain 10875
  .justify-content-md-center {
10876
    justify-content: center !important;
10877
  }
16848 stevensc 10878
 
16825 efrain 10879
  .justify-content-md-between {
10880
    justify-content: space-between !important;
10881
  }
16848 stevensc 10882
 
16825 efrain 10883
  .justify-content-md-around {
10884
    justify-content: space-around !important;
10885
  }
16848 stevensc 10886
 
16825 efrain 10887
  .justify-content-md-evenly {
10888
    justify-content: space-evenly !important;
10889
  }
16848 stevensc 10890
 
16825 efrain 10891
  .align-items-md-start {
10892
    align-items: flex-start !important;
10893
  }
16848 stevensc 10894
 
16825 efrain 10895
  .align-items-md-end {
10896
    align-items: flex-end !important;
10897
  }
16848 stevensc 10898
 
16825 efrain 10899
  .align-items-md-center {
10900
    align-items: center !important;
10901
  }
16848 stevensc 10902
 
16825 efrain 10903
  .align-items-md-baseline {
10904
    align-items: baseline !important;
10905
  }
16848 stevensc 10906
 
16825 efrain 10907
  .align-items-md-stretch {
10908
    align-items: stretch !important;
10909
  }
16848 stevensc 10910
 
16825 efrain 10911
  .align-content-md-start {
10912
    align-content: flex-start !important;
10913
  }
16848 stevensc 10914
 
16825 efrain 10915
  .align-content-md-end {
10916
    align-content: flex-end !important;
10917
  }
16848 stevensc 10918
 
16825 efrain 10919
  .align-content-md-center {
10920
    align-content: center !important;
10921
  }
16848 stevensc 10922
 
16825 efrain 10923
  .align-content-md-between {
10924
    align-content: space-between !important;
10925
  }
16848 stevensc 10926
 
16825 efrain 10927
  .align-content-md-around {
10928
    align-content: space-around !important;
10929
  }
16848 stevensc 10930
 
16825 efrain 10931
  .align-content-md-stretch {
10932
    align-content: stretch !important;
10933
  }
16848 stevensc 10934
 
16825 efrain 10935
  .align-self-md-auto {
10936
    align-self: auto !important;
10937
  }
16848 stevensc 10938
 
16825 efrain 10939
  .align-self-md-start {
10940
    align-self: flex-start !important;
10941
  }
16848 stevensc 10942
 
16825 efrain 10943
  .align-self-md-end {
10944
    align-self: flex-end !important;
10945
  }
16848 stevensc 10946
 
16825 efrain 10947
  .align-self-md-center {
10948
    align-self: center !important;
10949
  }
16848 stevensc 10950
 
16825 efrain 10951
  .align-self-md-baseline {
10952
    align-self: baseline !important;
10953
  }
16848 stevensc 10954
 
16825 efrain 10955
  .align-self-md-stretch {
10956
    align-self: stretch !important;
10957
  }
16848 stevensc 10958
 
16825 efrain 10959
  .order-md-first {
10960
    order: -1 !important;
10961
  }
16848 stevensc 10962
 
16825 efrain 10963
  .order-md-0 {
10964
    order: 0 !important;
10965
  }
16848 stevensc 10966
 
16825 efrain 10967
  .order-md-1 {
10968
    order: 1 !important;
10969
  }
16848 stevensc 10970
 
16825 efrain 10971
  .order-md-2 {
10972
    order: 2 !important;
10973
  }
16848 stevensc 10974
 
16825 efrain 10975
  .order-md-3 {
10976
    order: 3 !important;
10977
  }
16848 stevensc 10978
 
16825 efrain 10979
  .order-md-4 {
10980
    order: 4 !important;
10981
  }
16848 stevensc 10982
 
16825 efrain 10983
  .order-md-5 {
10984
    order: 5 !important;
10985
  }
16848 stevensc 10986
 
16825 efrain 10987
  .order-md-last {
10988
    order: 6 !important;
10989
  }
16848 stevensc 10990
 
16825 efrain 10991
  .m-md-0 {
10992
    margin: 0 !important;
10993
  }
16848 stevensc 10994
 
16825 efrain 10995
  .m-md-1 {
10996
    margin: 0.25rem !important;
10997
  }
16848 stevensc 10998
 
16825 efrain 10999
  .m-md-2 {
11000
    margin: 0.5rem !important;
11001
  }
16848 stevensc 11002
 
16825 efrain 11003
  .m-md-3 {
11004
    margin: 1rem !important;
11005
  }
16848 stevensc 11006
 
16825 efrain 11007
  .m-md-4 {
11008
    margin: 1.5rem !important;
11009
  }
16848 stevensc 11010
 
16825 efrain 11011
  .m-md-5 {
11012
    margin: 3rem !important;
11013
  }
16848 stevensc 11014
 
16825 efrain 11015
  .m-md-6 {
11016
    margin: 4.5rem !important;
11017
  }
16848 stevensc 11018
 
16825 efrain 11019
  .m-md-7 {
11020
    margin: 6rem !important;
11021
  }
16848 stevensc 11022
 
16825 efrain 11023
  .m-md-auto {
11024
    margin: auto !important;
11025
  }
16848 stevensc 11026
 
16825 efrain 11027
  .mx-md-0 {
11028
    margin-right: 0 !important;
11029
    margin-left: 0 !important;
11030
  }
16848 stevensc 11031
 
16825 efrain 11032
  .mx-md-1 {
11033
    margin-right: 0.25rem !important;
11034
    margin-left: 0.25rem !important;
11035
  }
16848 stevensc 11036
 
16825 efrain 11037
  .mx-md-2 {
11038
    margin-right: 0.5rem !important;
11039
    margin-left: 0.5rem !important;
11040
  }
16848 stevensc 11041
 
16825 efrain 11042
  .mx-md-3 {
11043
    margin-right: 1rem !important;
11044
    margin-left: 1rem !important;
11045
  }
16848 stevensc 11046
 
16825 efrain 11047
  .mx-md-4 {
11048
    margin-right: 1.5rem !important;
11049
    margin-left: 1.5rem !important;
11050
  }
16848 stevensc 11051
 
16825 efrain 11052
  .mx-md-5 {
11053
    margin-right: 3rem !important;
11054
    margin-left: 3rem !important;
11055
  }
16848 stevensc 11056
 
16825 efrain 11057
  .mx-md-6 {
11058
    margin-right: 4.5rem !important;
11059
    margin-left: 4.5rem !important;
11060
  }
16848 stevensc 11061
 
16825 efrain 11062
  .mx-md-7 {
11063
    margin-right: 6rem !important;
11064
    margin-left: 6rem !important;
11065
  }
16848 stevensc 11066
 
16825 efrain 11067
  .mx-md-auto {
11068
    margin-right: auto !important;
11069
    margin-left: auto !important;
11070
  }
16848 stevensc 11071
 
16825 efrain 11072
  .my-md-0 {
11073
    margin-top: 0 !important;
11074
    margin-bottom: 0 !important;
11075
  }
16848 stevensc 11076
 
16825 efrain 11077
  .my-md-1 {
11078
    margin-top: 0.25rem !important;
11079
    margin-bottom: 0.25rem !important;
11080
  }
16848 stevensc 11081
 
16825 efrain 11082
  .my-md-2 {
11083
    margin-top: 0.5rem !important;
11084
    margin-bottom: 0.5rem !important;
11085
  }
16848 stevensc 11086
 
16825 efrain 11087
  .my-md-3 {
11088
    margin-top: 1rem !important;
11089
    margin-bottom: 1rem !important;
11090
  }
16848 stevensc 11091
 
16825 efrain 11092
  .my-md-4 {
11093
    margin-top: 1.5rem !important;
11094
    margin-bottom: 1.5rem !important;
11095
  }
16848 stevensc 11096
 
16825 efrain 11097
  .my-md-5 {
11098
    margin-top: 3rem !important;
11099
    margin-bottom: 3rem !important;
11100
  }
16848 stevensc 11101
 
16825 efrain 11102
  .my-md-6 {
11103
    margin-top: 4.5rem !important;
11104
    margin-bottom: 4.5rem !important;
11105
  }
16848 stevensc 11106
 
16825 efrain 11107
  .my-md-7 {
11108
    margin-top: 6rem !important;
11109
    margin-bottom: 6rem !important;
11110
  }
16848 stevensc 11111
 
16825 efrain 11112
  .my-md-auto {
11113
    margin-top: auto !important;
11114
    margin-bottom: auto !important;
11115
  }
16848 stevensc 11116
 
11117
  .mt-md-0,
11118
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11119
    margin-top: 0 !important;
11120
  }
16848 stevensc 11121
 
16825 efrain 11122
  .mt-md-1 {
11123
    margin-top: 0.25rem !important;
11124
  }
16848 stevensc 11125
 
16825 efrain 11126
  .mt-md-2 {
11127
    margin-top: 0.5rem !important;
11128
  }
16848 stevensc 11129
 
16825 efrain 11130
  .mt-md-3 {
11131
    margin-top: 1rem !important;
11132
  }
16848 stevensc 11133
 
16825 efrain 11134
  .mt-md-4 {
11135
    margin-top: 1.5rem !important;
11136
  }
16848 stevensc 11137
 
16825 efrain 11138
  .mt-md-5 {
11139
    margin-top: 3rem !important;
11140
  }
16848 stevensc 11141
 
16825 efrain 11142
  .mt-md-6 {
11143
    margin-top: 4.5rem !important;
11144
  }
16848 stevensc 11145
 
16825 efrain 11146
  .mt-md-7 {
11147
    margin-top: 6rem !important;
11148
  }
16848 stevensc 11149
 
16825 efrain 11150
  .mt-md-auto {
11151
    margin-top: auto !important;
11152
  }
16848 stevensc 11153
 
16825 efrain 11154
  .me-md-0 {
11155
    margin-right: 0 !important;
11156
  }
16848 stevensc 11157
 
16825 efrain 11158
  .me-md-1 {
11159
    margin-right: 0.25rem !important;
11160
  }
16848 stevensc 11161
 
16825 efrain 11162
  .me-md-2 {
11163
    margin-right: 0.5rem !important;
11164
  }
16848 stevensc 11165
 
16825 efrain 11166
  .me-md-3 {
11167
    margin-right: 1rem !important;
11168
  }
16848 stevensc 11169
 
16825 efrain 11170
  .me-md-4 {
11171
    margin-right: 1.5rem !important;
11172
  }
16848 stevensc 11173
 
16825 efrain 11174
  .me-md-5 {
11175
    margin-right: 3rem !important;
11176
  }
16848 stevensc 11177
 
16825 efrain 11178
  .me-md-6 {
11179
    margin-right: 4.5rem !important;
11180
  }
16848 stevensc 11181
 
16825 efrain 11182
  .me-md-7 {
11183
    margin-right: 6rem !important;
11184
  }
16848 stevensc 11185
 
16825 efrain 11186
  .me-md-auto {
11187
    margin-right: auto !important;
11188
  }
16848 stevensc 11189
 
11190
  .mb-md-0,
11191
  .example .btn-group {
16825 efrain 11192
    margin-bottom: 0 !important;
11193
  }
16848 stevensc 11194
 
16825 efrain 11195
  .mb-md-1 {
11196
    margin-bottom: 0.25rem !important;
11197
  }
16848 stevensc 11198
 
16825 efrain 11199
  .mb-md-2 {
11200
    margin-bottom: 0.5rem !important;
11201
  }
16848 stevensc 11202
 
16825 efrain 11203
  .mb-md-3 {
11204
    margin-bottom: 1rem !important;
11205
  }
16848 stevensc 11206
 
16825 efrain 11207
  .mb-md-4 {
11208
    margin-bottom: 1.5rem !important;
11209
  }
16848 stevensc 11210
 
16825 efrain 11211
  .mb-md-5 {
11212
    margin-bottom: 3rem !important;
11213
  }
16848 stevensc 11214
 
16825 efrain 11215
  .mb-md-6 {
11216
    margin-bottom: 4.5rem !important;
11217
  }
16848 stevensc 11218
 
16825 efrain 11219
  .mb-md-7 {
11220
    margin-bottom: 6rem !important;
11221
  }
16848 stevensc 11222
 
16825 efrain 11223
  .mb-md-auto {
11224
    margin-bottom: auto !important;
11225
  }
16848 stevensc 11226
 
16825 efrain 11227
  .ms-md-0 {
11228
    margin-left: 0 !important;
11229
  }
16848 stevensc 11230
 
16825 efrain 11231
  .ms-md-1 {
11232
    margin-left: 0.25rem !important;
11233
  }
16848 stevensc 11234
 
16825 efrain 11235
  .ms-md-2 {
11236
    margin-left: 0.5rem !important;
11237
  }
16848 stevensc 11238
 
16825 efrain 11239
  .ms-md-3 {
11240
    margin-left: 1rem !important;
11241
  }
16848 stevensc 11242
 
16825 efrain 11243
  .ms-md-4 {
11244
    margin-left: 1.5rem !important;
11245
  }
16848 stevensc 11246
 
16825 efrain 11247
  .ms-md-5 {
11248
    margin-left: 3rem !important;
11249
  }
16848 stevensc 11250
 
16825 efrain 11251
  .ms-md-6 {
11252
    margin-left: 4.5rem !important;
11253
  }
16848 stevensc 11254
 
16825 efrain 11255
  .ms-md-7 {
11256
    margin-left: 6rem !important;
11257
  }
16848 stevensc 11258
 
16825 efrain 11259
  .ms-md-auto {
11260
    margin-left: auto !important;
11261
  }
16848 stevensc 11262
 
16825 efrain 11263
  .m-md-n1 {
11264
    margin: -0.25rem !important;
11265
  }
16848 stevensc 11266
 
16825 efrain 11267
  .m-md-n2 {
11268
    margin: -0.5rem !important;
11269
  }
16848 stevensc 11270
 
16825 efrain 11271
  .m-md-n3 {
11272
    margin: -1rem !important;
11273
  }
16848 stevensc 11274
 
16825 efrain 11275
  .m-md-n4 {
11276
    margin: -1.5rem !important;
11277
  }
16848 stevensc 11278
 
16825 efrain 11279
  .m-md-n5 {
11280
    margin: -3rem !important;
11281
  }
16848 stevensc 11282
 
16825 efrain 11283
  .m-md-n6 {
11284
    margin: -4.5rem !important;
11285
  }
16848 stevensc 11286
 
16825 efrain 11287
  .m-md-n7 {
11288
    margin: -6rem !important;
11289
  }
16848 stevensc 11290
 
16825 efrain 11291
  .mx-md-n1 {
11292
    margin-right: -0.25rem !important;
11293
    margin-left: -0.25rem !important;
11294
  }
16848 stevensc 11295
 
16825 efrain 11296
  .mx-md-n2 {
11297
    margin-right: -0.5rem !important;
11298
    margin-left: -0.5rem !important;
11299
  }
16848 stevensc 11300
 
16825 efrain 11301
  .mx-md-n3 {
11302
    margin-right: -1rem !important;
11303
    margin-left: -1rem !important;
11304
  }
16848 stevensc 11305
 
16825 efrain 11306
  .mx-md-n4 {
11307
    margin-right: -1.5rem !important;
11308
    margin-left: -1.5rem !important;
11309
  }
16848 stevensc 11310
 
16825 efrain 11311
  .mx-md-n5 {
11312
    margin-right: -3rem !important;
11313
    margin-left: -3rem !important;
11314
  }
16848 stevensc 11315
 
16825 efrain 11316
  .mx-md-n6 {
11317
    margin-right: -4.5rem !important;
11318
    margin-left: -4.5rem !important;
11319
  }
16848 stevensc 11320
 
16825 efrain 11321
  .mx-md-n7 {
11322
    margin-right: -6rem !important;
11323
    margin-left: -6rem !important;
11324
  }
16848 stevensc 11325
 
16825 efrain 11326
  .my-md-n1 {
11327
    margin-top: -0.25rem !important;
11328
    margin-bottom: -0.25rem !important;
11329
  }
16848 stevensc 11330
 
16825 efrain 11331
  .my-md-n2 {
11332
    margin-top: -0.5rem !important;
11333
    margin-bottom: -0.5rem !important;
11334
  }
16848 stevensc 11335
 
16825 efrain 11336
  .my-md-n3 {
11337
    margin-top: -1rem !important;
11338
    margin-bottom: -1rem !important;
11339
  }
16848 stevensc 11340
 
16825 efrain 11341
  .my-md-n4 {
11342
    margin-top: -1.5rem !important;
11343
    margin-bottom: -1.5rem !important;
11344
  }
16848 stevensc 11345
 
16825 efrain 11346
  .my-md-n5 {
11347
    margin-top: -3rem !important;
11348
    margin-bottom: -3rem !important;
11349
  }
16848 stevensc 11350
 
16825 efrain 11351
  .my-md-n6 {
11352
    margin-top: -4.5rem !important;
11353
    margin-bottom: -4.5rem !important;
11354
  }
16848 stevensc 11355
 
16825 efrain 11356
  .my-md-n7 {
11357
    margin-top: -6rem !important;
11358
    margin-bottom: -6rem !important;
11359
  }
16848 stevensc 11360
 
16825 efrain 11361
  .mt-md-n1 {
11362
    margin-top: -0.25rem !important;
11363
  }
16848 stevensc 11364
 
16825 efrain 11365
  .mt-md-n2 {
11366
    margin-top: -0.5rem !important;
11367
  }
16848 stevensc 11368
 
16825 efrain 11369
  .mt-md-n3 {
11370
    margin-top: -1rem !important;
11371
  }
16848 stevensc 11372
 
16825 efrain 11373
  .mt-md-n4 {
11374
    margin-top: -1.5rem !important;
11375
  }
16848 stevensc 11376
 
16825 efrain 11377
  .mt-md-n5 {
11378
    margin-top: -3rem !important;
11379
  }
16848 stevensc 11380
 
16825 efrain 11381
  .mt-md-n6 {
11382
    margin-top: -4.5rem !important;
11383
  }
16848 stevensc 11384
 
16825 efrain 11385
  .mt-md-n7 {
11386
    margin-top: -6rem !important;
11387
  }
16848 stevensc 11388
 
16825 efrain 11389
  .me-md-n1 {
11390
    margin-right: -0.25rem !important;
11391
  }
16848 stevensc 11392
 
16825 efrain 11393
  .me-md-n2 {
11394
    margin-right: -0.5rem !important;
11395
  }
16848 stevensc 11396
 
16825 efrain 11397
  .me-md-n3 {
11398
    margin-right: -1rem !important;
11399
  }
16848 stevensc 11400
 
16825 efrain 11401
  .me-md-n4 {
11402
    margin-right: -1.5rem !important;
11403
  }
16848 stevensc 11404
 
16825 efrain 11405
  .me-md-n5 {
11406
    margin-right: -3rem !important;
11407
  }
16848 stevensc 11408
 
16825 efrain 11409
  .me-md-n6 {
11410
    margin-right: -4.5rem !important;
11411
  }
16848 stevensc 11412
 
16825 efrain 11413
  .me-md-n7 {
11414
    margin-right: -6rem !important;
11415
  }
16848 stevensc 11416
 
16825 efrain 11417
  .mb-md-n1 {
11418
    margin-bottom: -0.25rem !important;
11419
  }
16848 stevensc 11420
 
16825 efrain 11421
  .mb-md-n2 {
11422
    margin-bottom: -0.5rem !important;
11423
  }
16848 stevensc 11424
 
16825 efrain 11425
  .mb-md-n3 {
11426
    margin-bottom: -1rem !important;
11427
  }
16848 stevensc 11428
 
16825 efrain 11429
  .mb-md-n4 {
11430
    margin-bottom: -1.5rem !important;
11431
  }
16848 stevensc 11432
 
16825 efrain 11433
  .mb-md-n5 {
11434
    margin-bottom: -3rem !important;
11435
  }
16848 stevensc 11436
 
16825 efrain 11437
  .mb-md-n6 {
11438
    margin-bottom: -4.5rem !important;
11439
  }
16848 stevensc 11440
 
16825 efrain 11441
  .mb-md-n7 {
11442
    margin-bottom: -6rem !important;
11443
  }
16848 stevensc 11444
 
16825 efrain 11445
  .ms-md-n1 {
11446
    margin-left: -0.25rem !important;
11447
  }
16848 stevensc 11448
 
16825 efrain 11449
  .ms-md-n2 {
11450
    margin-left: -0.5rem !important;
11451
  }
16848 stevensc 11452
 
16825 efrain 11453
  .ms-md-n3 {
11454
    margin-left: -1rem !important;
11455
  }
16848 stevensc 11456
 
16825 efrain 11457
  .ms-md-n4 {
11458
    margin-left: -1.5rem !important;
11459
  }
16848 stevensc 11460
 
16825 efrain 11461
  .ms-md-n5 {
11462
    margin-left: -3rem !important;
11463
  }
16848 stevensc 11464
 
16825 efrain 11465
  .ms-md-n6 {
11466
    margin-left: -4.5rem !important;
11467
  }
16848 stevensc 11468
 
16825 efrain 11469
  .ms-md-n7 {
11470
    margin-left: -6rem !important;
11471
  }
16848 stevensc 11472
 
16825 efrain 11473
  .p-md-0 {
11474
    padding: 0 !important;
11475
  }
16848 stevensc 11476
 
16825 efrain 11477
  .p-md-1 {
11478
    padding: 0.25rem !important;
11479
  }
16848 stevensc 11480
 
16825 efrain 11481
  .p-md-2 {
11482
    padding: 0.5rem !important;
11483
  }
16848 stevensc 11484
 
16825 efrain 11485
  .p-md-3 {
11486
    padding: 1rem !important;
11487
  }
16848 stevensc 11488
 
16825 efrain 11489
  .p-md-4 {
11490
    padding: 1.5rem !important;
11491
  }
16848 stevensc 11492
 
16825 efrain 11493
  .p-md-5 {
11494
    padding: 3rem !important;
11495
  }
16848 stevensc 11496
 
16825 efrain 11497
  .p-md-6 {
11498
    padding: 4.5rem !important;
11499
  }
16848 stevensc 11500
 
16825 efrain 11501
  .p-md-7 {
11502
    padding: 6rem !important;
11503
  }
16848 stevensc 11504
 
16825 efrain 11505
  .px-md-0 {
11506
    padding-right: 0 !important;
11507
    padding-left: 0 !important;
11508
  }
16848 stevensc 11509
 
16825 efrain 11510
  .px-md-1 {
11511
    padding-right: 0.25rem !important;
11512
    padding-left: 0.25rem !important;
11513
  }
16848 stevensc 11514
 
16825 efrain 11515
  .px-md-2 {
11516
    padding-right: 0.5rem !important;
11517
    padding-left: 0.5rem !important;
11518
  }
16848 stevensc 11519
 
16825 efrain 11520
  .px-md-3 {
11521
    padding-right: 1rem !important;
11522
    padding-left: 1rem !important;
11523
  }
16848 stevensc 11524
 
16825 efrain 11525
  .px-md-4 {
11526
    padding-right: 1.5rem !important;
11527
    padding-left: 1.5rem !important;
11528
  }
16848 stevensc 11529
 
16825 efrain 11530
  .px-md-5 {
11531
    padding-right: 3rem !important;
11532
    padding-left: 3rem !important;
11533
  }
16848 stevensc 11534
 
16825 efrain 11535
  .px-md-6 {
11536
    padding-right: 4.5rem !important;
11537
    padding-left: 4.5rem !important;
11538
  }
16848 stevensc 11539
 
16825 efrain 11540
  .px-md-7 {
11541
    padding-right: 6rem !important;
11542
    padding-left: 6rem !important;
11543
  }
16848 stevensc 11544
 
16825 efrain 11545
  .py-md-0 {
11546
    padding-top: 0 !important;
11547
    padding-bottom: 0 !important;
11548
  }
16848 stevensc 11549
 
16825 efrain 11550
  .py-md-1 {
11551
    padding-top: 0.25rem !important;
11552
    padding-bottom: 0.25rem !important;
11553
  }
16848 stevensc 11554
 
16825 efrain 11555
  .py-md-2 {
11556
    padding-top: 0.5rem !important;
11557
    padding-bottom: 0.5rem !important;
11558
  }
16848 stevensc 11559
 
16825 efrain 11560
  .py-md-3 {
11561
    padding-top: 1rem !important;
11562
    padding-bottom: 1rem !important;
11563
  }
16848 stevensc 11564
 
16825 efrain 11565
  .py-md-4 {
11566
    padding-top: 1.5rem !important;
11567
    padding-bottom: 1.5rem !important;
11568
  }
16848 stevensc 11569
 
16825 efrain 11570
  .py-md-5 {
11571
    padding-top: 3rem !important;
11572
    padding-bottom: 3rem !important;
11573
  }
16848 stevensc 11574
 
16825 efrain 11575
  .py-md-6 {
11576
    padding-top: 4.5rem !important;
11577
    padding-bottom: 4.5rem !important;
11578
  }
16848 stevensc 11579
 
16825 efrain 11580
  .py-md-7 {
11581
    padding-top: 6rem !important;
11582
    padding-bottom: 6rem !important;
11583
  }
16848 stevensc 11584
 
16825 efrain 11585
  .pt-md-0 {
11586
    padding-top: 0 !important;
11587
  }
16848 stevensc 11588
 
16825 efrain 11589
  .pt-md-1 {
11590
    padding-top: 0.25rem !important;
11591
  }
16848 stevensc 11592
 
16825 efrain 11593
  .pt-md-2 {
11594
    padding-top: 0.5rem !important;
11595
  }
16848 stevensc 11596
 
16825 efrain 11597
  .pt-md-3 {
11598
    padding-top: 1rem !important;
11599
  }
16848 stevensc 11600
 
16825 efrain 11601
  .pt-md-4 {
11602
    padding-top: 1.5rem !important;
11603
  }
16848 stevensc 11604
 
16825 efrain 11605
  .pt-md-5 {
11606
    padding-top: 3rem !important;
11607
  }
16848 stevensc 11608
 
16825 efrain 11609
  .pt-md-6 {
11610
    padding-top: 4.5rem !important;
11611
  }
16848 stevensc 11612
 
16825 efrain 11613
  .pt-md-7 {
11614
    padding-top: 6rem !important;
11615
  }
16848 stevensc 11616
 
16825 efrain 11617
  .pe-md-0 {
11618
    padding-right: 0 !important;
11619
  }
16848 stevensc 11620
 
16825 efrain 11621
  .pe-md-1 {
11622
    padding-right: 0.25rem !important;
11623
  }
16848 stevensc 11624
 
16825 efrain 11625
  .pe-md-2 {
11626
    padding-right: 0.5rem !important;
11627
  }
16848 stevensc 11628
 
16825 efrain 11629
  .pe-md-3 {
11630
    padding-right: 1rem !important;
11631
  }
16848 stevensc 11632
 
16825 efrain 11633
  .pe-md-4 {
11634
    padding-right: 1.5rem !important;
11635
  }
16848 stevensc 11636
 
16825 efrain 11637
  .pe-md-5 {
11638
    padding-right: 3rem !important;
11639
  }
16848 stevensc 11640
 
16825 efrain 11641
  .pe-md-6 {
11642
    padding-right: 4.5rem !important;
11643
  }
16848 stevensc 11644
 
16825 efrain 11645
  .pe-md-7 {
11646
    padding-right: 6rem !important;
11647
  }
16848 stevensc 11648
 
16825 efrain 11649
  .pb-md-0 {
11650
    padding-bottom: 0 !important;
11651
  }
16848 stevensc 11652
 
16825 efrain 11653
  .pb-md-1 {
11654
    padding-bottom: 0.25rem !important;
11655
  }
16848 stevensc 11656
 
16825 efrain 11657
  .pb-md-2 {
11658
    padding-bottom: 0.5rem !important;
11659
  }
16848 stevensc 11660
 
16825 efrain 11661
  .pb-md-3 {
11662
    padding-bottom: 1rem !important;
11663
  }
16848 stevensc 11664
 
16825 efrain 11665
  .pb-md-4 {
11666
    padding-bottom: 1.5rem !important;
11667
  }
16848 stevensc 11668
 
16825 efrain 11669
  .pb-md-5 {
11670
    padding-bottom: 3rem !important;
11671
  }
16848 stevensc 11672
 
16825 efrain 11673
  .pb-md-6 {
11674
    padding-bottom: 4.5rem !important;
11675
  }
16848 stevensc 11676
 
16825 efrain 11677
  .pb-md-7 {
11678
    padding-bottom: 6rem !important;
11679
  }
16848 stevensc 11680
 
16825 efrain 11681
  .ps-md-0 {
11682
    padding-left: 0 !important;
11683
  }
16848 stevensc 11684
 
16825 efrain 11685
  .ps-md-1 {
11686
    padding-left: 0.25rem !important;
11687
  }
16848 stevensc 11688
 
16825 efrain 11689
  .ps-md-2 {
11690
    padding-left: 0.5rem !important;
11691
  }
16848 stevensc 11692
 
16825 efrain 11693
  .ps-md-3 {
11694
    padding-left: 1rem !important;
11695
  }
16848 stevensc 11696
 
16825 efrain 11697
  .ps-md-4 {
11698
    padding-left: 1.5rem !important;
11699
  }
16848 stevensc 11700
 
16825 efrain 11701
  .ps-md-5 {
11702
    padding-left: 3rem !important;
11703
  }
16848 stevensc 11704
 
16825 efrain 11705
  .ps-md-6 {
11706
    padding-left: 4.5rem !important;
11707
  }
16848 stevensc 11708
 
16825 efrain 11709
  .ps-md-7 {
11710
    padding-left: 6rem !important;
11711
  }
16848 stevensc 11712
 
16825 efrain 11713
  .gap-md-0 {
11714
    gap: 0 !important;
11715
  }
16848 stevensc 11716
 
16825 efrain 11717
  .gap-md-1 {
11718
    gap: 0.25rem !important;
11719
  }
16848 stevensc 11720
 
16825 efrain 11721
  .gap-md-2 {
11722
    gap: 0.5rem !important;
11723
  }
16848 stevensc 11724
 
16825 efrain 11725
  .gap-md-3 {
11726
    gap: 1rem !important;
11727
  }
16848 stevensc 11728
 
16825 efrain 11729
  .gap-md-4 {
11730
    gap: 1.5rem !important;
11731
  }
16848 stevensc 11732
 
16825 efrain 11733
  .gap-md-5 {
11734
    gap: 3rem !important;
11735
  }
16848 stevensc 11736
 
16825 efrain 11737
  .gap-md-6 {
11738
    gap: 4.5rem !important;
11739
  }
16848 stevensc 11740
 
16825 efrain 11741
  .gap-md-7 {
11742
    gap: 6rem !important;
11743
  }
16848 stevensc 11744
 
16825 efrain 11745
  .text-md-start {
11746
    text-align: left !important;
11747
  }
16848 stevensc 11748
 
16825 efrain 11749
  .text-md-end {
11750
    text-align: right !important;
11751
  }
16848 stevensc 11752
 
16825 efrain 11753
  .text-md-center {
11754
    text-align: center !important;
11755
  }
11756
}
16848 stevensc 11757
 
16825 efrain 11758
@media (min-width: 992px) {
11759
  .float-lg-start {
11760
    float: left !important;
11761
  }
16848 stevensc 11762
 
16825 efrain 11763
  .float-lg-end {
11764
    float: right !important;
11765
  }
16848 stevensc 11766
 
16825 efrain 11767
  .float-lg-none {
11768
    float: none !important;
11769
  }
16848 stevensc 11770
 
16825 efrain 11771
  .d-lg-inline {
11772
    display: inline !important;
11773
  }
16848 stevensc 11774
 
16825 efrain 11775
  .d-lg-inline-block {
11776
    display: inline-block !important;
11777
  }
16848 stevensc 11778
 
16825 efrain 11779
  .d-lg-block {
11780
    display: block !important;
11781
  }
16848 stevensc 11782
 
16825 efrain 11783
  .d-lg-grid {
11784
    display: grid !important;
11785
  }
16848 stevensc 11786
 
16825 efrain 11787
  .d-lg-table {
11788
    display: table !important;
11789
  }
16848 stevensc 11790
 
16825 efrain 11791
  .d-lg-table-row {
11792
    display: table-row !important;
11793
  }
16848 stevensc 11794
 
16825 efrain 11795
  .d-lg-table-cell {
11796
    display: table-cell !important;
11797
  }
16848 stevensc 11798
 
16825 efrain 11799
  .d-lg-flex {
11800
    display: flex !important;
11801
  }
16848 stevensc 11802
 
16825 efrain 11803
  .d-lg-inline-flex {
11804
    display: inline-flex !important;
11805
  }
16848 stevensc 11806
 
16825 efrain 11807
  .d-lg-none {
11808
    display: none !important;
11809
  }
16848 stevensc 11810
 
16825 efrain 11811
  .border-lg {
11812
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11813
  }
16848 stevensc 11814
 
16825 efrain 11815
  .border-lg-0 {
11816
    border: 0 !important;
11817
  }
16848 stevensc 11818
 
16825 efrain 11819
  .border-top-lg {
11820
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11821
  }
16848 stevensc 11822
 
16825 efrain 11823
  .border-top-lg-0 {
11824
    border-top: 0 !important;
11825
  }
16848 stevensc 11826
 
16825 efrain 11827
  .border-end-lg {
11828
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11829
  }
16848 stevensc 11830
 
16825 efrain 11831
  .border-end-lg-0 {
11832
    border-right: 0 !important;
11833
  }
16848 stevensc 11834
 
16825 efrain 11835
  .border-bottom-lg {
11836
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11837
  }
16848 stevensc 11838
 
16825 efrain 11839
  .border-bottom-lg-0 {
11840
    border-bottom: 0 !important;
11841
  }
16848 stevensc 11842
 
16825 efrain 11843
  .border-start-lg {
11844
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11845
  }
16848 stevensc 11846
 
16825 efrain 11847
  .border-start-lg-0 {
11848
    border-left: 0 !important;
11849
  }
16848 stevensc 11850
 
16825 efrain 11851
  .flex-lg-fill {
11852
    flex: 1 1 auto !important;
11853
  }
16848 stevensc 11854
 
16825 efrain 11855
  .flex-lg-row {
11856
    flex-direction: row !important;
11857
  }
16848 stevensc 11858
 
16825 efrain 11859
  .flex-lg-column {
11860
    flex-direction: column !important;
11861
  }
16848 stevensc 11862
 
16825 efrain 11863
  .flex-lg-row-reverse {
11864
    flex-direction: row-reverse !important;
11865
  }
16848 stevensc 11866
 
16825 efrain 11867
  .flex-lg-column-reverse {
11868
    flex-direction: column-reverse !important;
11869
  }
16848 stevensc 11870
 
16825 efrain 11871
  .flex-lg-grow-0 {
11872
    flex-grow: 0 !important;
11873
  }
16848 stevensc 11874
 
16825 efrain 11875
  .flex-lg-grow-1 {
11876
    flex-grow: 1 !important;
11877
  }
16848 stevensc 11878
 
16825 efrain 11879
  .flex-lg-shrink-0 {
11880
    flex-shrink: 0 !important;
11881
  }
16848 stevensc 11882
 
16825 efrain 11883
  .flex-lg-shrink-1 {
11884
    flex-shrink: 1 !important;
11885
  }
16848 stevensc 11886
 
16825 efrain 11887
  .flex-lg-wrap {
11888
    flex-wrap: wrap !important;
11889
  }
16848 stevensc 11890
 
16825 efrain 11891
  .flex-lg-nowrap {
11892
    flex-wrap: nowrap !important;
11893
  }
16848 stevensc 11894
 
16825 efrain 11895
  .flex-lg-wrap-reverse {
11896
    flex-wrap: wrap-reverse !important;
11897
  }
16848 stevensc 11898
 
16825 efrain 11899
  .justify-content-lg-start {
11900
    justify-content: flex-start !important;
11901
  }
16848 stevensc 11902
 
16825 efrain 11903
  .justify-content-lg-end {
11904
    justify-content: flex-end !important;
11905
  }
16848 stevensc 11906
 
16825 efrain 11907
  .justify-content-lg-center {
11908
    justify-content: center !important;
11909
  }
16848 stevensc 11910
 
16825 efrain 11911
  .justify-content-lg-between {
11912
    justify-content: space-between !important;
11913
  }
16848 stevensc 11914
 
16825 efrain 11915
  .justify-content-lg-around {
11916
    justify-content: space-around !important;
11917
  }
16848 stevensc 11918
 
16825 efrain 11919
  .justify-content-lg-evenly {
11920
    justify-content: space-evenly !important;
11921
  }
16848 stevensc 11922
 
16825 efrain 11923
  .align-items-lg-start {
11924
    align-items: flex-start !important;
11925
  }
16848 stevensc 11926
 
16825 efrain 11927
  .align-items-lg-end {
11928
    align-items: flex-end !important;
11929
  }
16848 stevensc 11930
 
16825 efrain 11931
  .align-items-lg-center {
11932
    align-items: center !important;
11933
  }
16848 stevensc 11934
 
16825 efrain 11935
  .align-items-lg-baseline {
11936
    align-items: baseline !important;
11937
  }
16848 stevensc 11938
 
16825 efrain 11939
  .align-items-lg-stretch {
11940
    align-items: stretch !important;
11941
  }
16848 stevensc 11942
 
16825 efrain 11943
  .align-content-lg-start {
11944
    align-content: flex-start !important;
11945
  }
16848 stevensc 11946
 
16825 efrain 11947
  .align-content-lg-end {
11948
    align-content: flex-end !important;
11949
  }
16848 stevensc 11950
 
16825 efrain 11951
  .align-content-lg-center {
11952
    align-content: center !important;
11953
  }
16848 stevensc 11954
 
16825 efrain 11955
  .align-content-lg-between {
11956
    align-content: space-between !important;
11957
  }
16848 stevensc 11958
 
16825 efrain 11959
  .align-content-lg-around {
11960
    align-content: space-around !important;
11961
  }
16848 stevensc 11962
 
16825 efrain 11963
  .align-content-lg-stretch {
11964
    align-content: stretch !important;
11965
  }
16848 stevensc 11966
 
16825 efrain 11967
  .align-self-lg-auto {
11968
    align-self: auto !important;
11969
  }
16848 stevensc 11970
 
16825 efrain 11971
  .align-self-lg-start {
11972
    align-self: flex-start !important;
11973
  }
16848 stevensc 11974
 
16825 efrain 11975
  .align-self-lg-end {
11976
    align-self: flex-end !important;
11977
  }
16848 stevensc 11978
 
16825 efrain 11979
  .align-self-lg-center {
11980
    align-self: center !important;
11981
  }
16848 stevensc 11982
 
16825 efrain 11983
  .align-self-lg-baseline {
11984
    align-self: baseline !important;
11985
  }
16848 stevensc 11986
 
16825 efrain 11987
  .align-self-lg-stretch {
11988
    align-self: stretch !important;
11989
  }
16848 stevensc 11990
 
16825 efrain 11991
  .order-lg-first {
11992
    order: -1 !important;
11993
  }
16848 stevensc 11994
 
16825 efrain 11995
  .order-lg-0 {
11996
    order: 0 !important;
11997
  }
16848 stevensc 11998
 
16825 efrain 11999
  .order-lg-1 {
12000
    order: 1 !important;
12001
  }
16848 stevensc 12002
 
16825 efrain 12003
  .order-lg-2 {
12004
    order: 2 !important;
12005
  }
16848 stevensc 12006
 
16825 efrain 12007
  .order-lg-3 {
12008
    order: 3 !important;
12009
  }
16848 stevensc 12010
 
16825 efrain 12011
  .order-lg-4 {
12012
    order: 4 !important;
12013
  }
16848 stevensc 12014
 
16825 efrain 12015
  .order-lg-5 {
12016
    order: 5 !important;
12017
  }
16848 stevensc 12018
 
16825 efrain 12019
  .order-lg-last {
12020
    order: 6 !important;
12021
  }
16848 stevensc 12022
 
16825 efrain 12023
  .m-lg-0 {
12024
    margin: 0 !important;
12025
  }
16848 stevensc 12026
 
16825 efrain 12027
  .m-lg-1 {
12028
    margin: 0.25rem !important;
12029
  }
16848 stevensc 12030
 
16825 efrain 12031
  .m-lg-2 {
12032
    margin: 0.5rem !important;
12033
  }
16848 stevensc 12034
 
16825 efrain 12035
  .m-lg-3 {
12036
    margin: 1rem !important;
12037
  }
16848 stevensc 12038
 
16825 efrain 12039
  .m-lg-4 {
12040
    margin: 1.5rem !important;
12041
  }
16848 stevensc 12042
 
16825 efrain 12043
  .m-lg-5 {
12044
    margin: 3rem !important;
12045
  }
16848 stevensc 12046
 
16825 efrain 12047
  .m-lg-6 {
12048
    margin: 4.5rem !important;
12049
  }
16848 stevensc 12050
 
16825 efrain 12051
  .m-lg-7 {
12052
    margin: 6rem !important;
12053
  }
16848 stevensc 12054
 
16825 efrain 12055
  .m-lg-auto {
12056
    margin: auto !important;
12057
  }
16848 stevensc 12058
 
16825 efrain 12059
  .mx-lg-0 {
12060
    margin-right: 0 !important;
12061
    margin-left: 0 !important;
12062
  }
16848 stevensc 12063
 
16825 efrain 12064
  .mx-lg-1 {
12065
    margin-right: 0.25rem !important;
12066
    margin-left: 0.25rem !important;
12067
  }
16848 stevensc 12068
 
16825 efrain 12069
  .mx-lg-2 {
12070
    margin-right: 0.5rem !important;
12071
    margin-left: 0.5rem !important;
12072
  }
16848 stevensc 12073
 
16825 efrain 12074
  .mx-lg-3 {
12075
    margin-right: 1rem !important;
12076
    margin-left: 1rem !important;
12077
  }
16848 stevensc 12078
 
16825 efrain 12079
  .mx-lg-4 {
12080
    margin-right: 1.5rem !important;
12081
    margin-left: 1.5rem !important;
12082
  }
16848 stevensc 12083
 
16825 efrain 12084
  .mx-lg-5 {
12085
    margin-right: 3rem !important;
12086
    margin-left: 3rem !important;
12087
  }
16848 stevensc 12088
 
16825 efrain 12089
  .mx-lg-6 {
12090
    margin-right: 4.5rem !important;
12091
    margin-left: 4.5rem !important;
12092
  }
16848 stevensc 12093
 
16825 efrain 12094
  .mx-lg-7 {
12095
    margin-right: 6rem !important;
12096
    margin-left: 6rem !important;
12097
  }
16848 stevensc 12098
 
16825 efrain 12099
  .mx-lg-auto {
12100
    margin-right: auto !important;
12101
    margin-left: auto !important;
12102
  }
16848 stevensc 12103
 
16825 efrain 12104
  .my-lg-0 {
12105
    margin-top: 0 !important;
12106
    margin-bottom: 0 !important;
12107
  }
16848 stevensc 12108
 
16825 efrain 12109
  .my-lg-1 {
12110
    margin-top: 0.25rem !important;
12111
    margin-bottom: 0.25rem !important;
12112
  }
16848 stevensc 12113
 
16825 efrain 12114
  .my-lg-2 {
12115
    margin-top: 0.5rem !important;
12116
    margin-bottom: 0.5rem !important;
12117
  }
16848 stevensc 12118
 
16825 efrain 12119
  .my-lg-3 {
12120
    margin-top: 1rem !important;
12121
    margin-bottom: 1rem !important;
12122
  }
16848 stevensc 12123
 
16825 efrain 12124
  .my-lg-4 {
12125
    margin-top: 1.5rem !important;
12126
    margin-bottom: 1.5rem !important;
12127
  }
16848 stevensc 12128
 
16825 efrain 12129
  .my-lg-5 {
12130
    margin-top: 3rem !important;
12131
    margin-bottom: 3rem !important;
12132
  }
16848 stevensc 12133
 
16825 efrain 12134
  .my-lg-6 {
12135
    margin-top: 4.5rem !important;
12136
    margin-bottom: 4.5rem !important;
12137
  }
16848 stevensc 12138
 
16825 efrain 12139
  .my-lg-7 {
12140
    margin-top: 6rem !important;
12141
    margin-bottom: 6rem !important;
12142
  }
16848 stevensc 12143
 
16825 efrain 12144
  .my-lg-auto {
12145
    margin-top: auto !important;
12146
    margin-bottom: auto !important;
12147
  }
16848 stevensc 12148
 
16825 efrain 12149
  .mt-lg-0 {
12150
    margin-top: 0 !important;
12151
  }
16848 stevensc 12152
 
16825 efrain 12153
  .mt-lg-1 {
12154
    margin-top: 0.25rem !important;
12155
  }
16848 stevensc 12156
 
16825 efrain 12157
  .mt-lg-2 {
12158
    margin-top: 0.5rem !important;
12159
  }
16848 stevensc 12160
 
16825 efrain 12161
  .mt-lg-3 {
12162
    margin-top: 1rem !important;
12163
  }
16848 stevensc 12164
 
16825 efrain 12165
  .mt-lg-4 {
12166
    margin-top: 1.5rem !important;
12167
  }
16848 stevensc 12168
 
16825 efrain 12169
  .mt-lg-5 {
12170
    margin-top: 3rem !important;
12171
  }
16848 stevensc 12172
 
16825 efrain 12173
  .mt-lg-6 {
12174
    margin-top: 4.5rem !important;
12175
  }
16848 stevensc 12176
 
16825 efrain 12177
  .mt-lg-7 {
12178
    margin-top: 6rem !important;
12179
  }
16848 stevensc 12180
 
16825 efrain 12181
  .mt-lg-auto {
12182
    margin-top: auto !important;
12183
  }
16848 stevensc 12184
 
16825 efrain 12185
  .me-lg-0 {
12186
    margin-right: 0 !important;
12187
  }
16848 stevensc 12188
 
16825 efrain 12189
  .me-lg-1 {
12190
    margin-right: 0.25rem !important;
12191
  }
16848 stevensc 12192
 
16825 efrain 12193
  .me-lg-2 {
12194
    margin-right: 0.5rem !important;
12195
  }
16848 stevensc 12196
 
16825 efrain 12197
  .me-lg-3 {
12198
    margin-right: 1rem !important;
12199
  }
16848 stevensc 12200
 
16825 efrain 12201
  .me-lg-4 {
12202
    margin-right: 1.5rem !important;
12203
  }
16848 stevensc 12204
 
16825 efrain 12205
  .me-lg-5 {
12206
    margin-right: 3rem !important;
12207
  }
16848 stevensc 12208
 
16825 efrain 12209
  .me-lg-6 {
12210
    margin-right: 4.5rem !important;
12211
  }
16848 stevensc 12212
 
16825 efrain 12213
  .me-lg-7 {
12214
    margin-right: 6rem !important;
12215
  }
16848 stevensc 12216
 
16825 efrain 12217
  .me-lg-auto {
12218
    margin-right: auto !important;
12219
  }
16848 stevensc 12220
 
16825 efrain 12221
  .mb-lg-0 {
12222
    margin-bottom: 0 !important;
12223
  }
16848 stevensc 12224
 
16825 efrain 12225
  .mb-lg-1 {
12226
    margin-bottom: 0.25rem !important;
12227
  }
16848 stevensc 12228
 
16825 efrain 12229
  .mb-lg-2 {
12230
    margin-bottom: 0.5rem !important;
12231
  }
16848 stevensc 12232
 
16825 efrain 12233
  .mb-lg-3 {
12234
    margin-bottom: 1rem !important;
12235
  }
16848 stevensc 12236
 
16825 efrain 12237
  .mb-lg-4 {
12238
    margin-bottom: 1.5rem !important;
12239
  }
16848 stevensc 12240
 
16825 efrain 12241
  .mb-lg-5 {
12242
    margin-bottom: 3rem !important;
12243
  }
16848 stevensc 12244
 
16825 efrain 12245
  .mb-lg-6 {
12246
    margin-bottom: 4.5rem !important;
12247
  }
16848 stevensc 12248
 
16825 efrain 12249
  .mb-lg-7 {
12250
    margin-bottom: 6rem !important;
12251
  }
16848 stevensc 12252
 
16825 efrain 12253
  .mb-lg-auto {
12254
    margin-bottom: auto !important;
12255
  }
16848 stevensc 12256
 
16825 efrain 12257
  .ms-lg-0 {
12258
    margin-left: 0 !important;
12259
  }
16848 stevensc 12260
 
16825 efrain 12261
  .ms-lg-1 {
12262
    margin-left: 0.25rem !important;
12263
  }
16848 stevensc 12264
 
16825 efrain 12265
  .ms-lg-2 {
12266
    margin-left: 0.5rem !important;
12267
  }
16848 stevensc 12268
 
16825 efrain 12269
  .ms-lg-3 {
12270
    margin-left: 1rem !important;
12271
  }
16848 stevensc 12272
 
16825 efrain 12273
  .ms-lg-4 {
12274
    margin-left: 1.5rem !important;
12275
  }
16848 stevensc 12276
 
16825 efrain 12277
  .ms-lg-5 {
12278
    margin-left: 3rem !important;
12279
  }
16848 stevensc 12280
 
16825 efrain 12281
  .ms-lg-6 {
12282
    margin-left: 4.5rem !important;
12283
  }
16848 stevensc 12284
 
16825 efrain 12285
  .ms-lg-7 {
12286
    margin-left: 6rem !important;
12287
  }
16848 stevensc 12288
 
16825 efrain 12289
  .ms-lg-auto {
12290
    margin-left: auto !important;
12291
  }
16848 stevensc 12292
 
16825 efrain 12293
  .m-lg-n1 {
12294
    margin: -0.25rem !important;
12295
  }
16848 stevensc 12296
 
16825 efrain 12297
  .m-lg-n2 {
12298
    margin: -0.5rem !important;
12299
  }
16848 stevensc 12300
 
16825 efrain 12301
  .m-lg-n3 {
12302
    margin: -1rem !important;
12303
  }
16848 stevensc 12304
 
16825 efrain 12305
  .m-lg-n4 {
12306
    margin: -1.5rem !important;
12307
  }
16848 stevensc 12308
 
16825 efrain 12309
  .m-lg-n5 {
12310
    margin: -3rem !important;
12311
  }
16848 stevensc 12312
 
16825 efrain 12313
  .m-lg-n6 {
12314
    margin: -4.5rem !important;
12315
  }
16848 stevensc 12316
 
16825 efrain 12317
  .m-lg-n7 {
12318
    margin: -6rem !important;
12319
  }
16848 stevensc 12320
 
16825 efrain 12321
  .mx-lg-n1 {
12322
    margin-right: -0.25rem !important;
12323
    margin-left: -0.25rem !important;
12324
  }
16848 stevensc 12325
 
16825 efrain 12326
  .mx-lg-n2 {
12327
    margin-right: -0.5rem !important;
12328
    margin-left: -0.5rem !important;
12329
  }
16848 stevensc 12330
 
16825 efrain 12331
  .mx-lg-n3 {
12332
    margin-right: -1rem !important;
12333
    margin-left: -1rem !important;
12334
  }
16848 stevensc 12335
 
16825 efrain 12336
  .mx-lg-n4 {
12337
    margin-right: -1.5rem !important;
12338
    margin-left: -1.5rem !important;
12339
  }
16848 stevensc 12340
 
16825 efrain 12341
  .mx-lg-n5 {
12342
    margin-right: -3rem !important;
12343
    margin-left: -3rem !important;
12344
  }
16848 stevensc 12345
 
16825 efrain 12346
  .mx-lg-n6 {
12347
    margin-right: -4.5rem !important;
12348
    margin-left: -4.5rem !important;
12349
  }
16848 stevensc 12350
 
16825 efrain 12351
  .mx-lg-n7 {
12352
    margin-right: -6rem !important;
12353
    margin-left: -6rem !important;
12354
  }
16848 stevensc 12355
 
16825 efrain 12356
  .my-lg-n1 {
12357
    margin-top: -0.25rem !important;
12358
    margin-bottom: -0.25rem !important;
12359
  }
16848 stevensc 12360
 
16825 efrain 12361
  .my-lg-n2 {
12362
    margin-top: -0.5rem !important;
12363
    margin-bottom: -0.5rem !important;
12364
  }
16848 stevensc 12365
 
16825 efrain 12366
  .my-lg-n3 {
12367
    margin-top: -1rem !important;
12368
    margin-bottom: -1rem !important;
12369
  }
16848 stevensc 12370
 
16825 efrain 12371
  .my-lg-n4 {
12372
    margin-top: -1.5rem !important;
12373
    margin-bottom: -1.5rem !important;
12374
  }
16848 stevensc 12375
 
16825 efrain 12376
  .my-lg-n5 {
12377
    margin-top: -3rem !important;
12378
    margin-bottom: -3rem !important;
12379
  }
16848 stevensc 12380
 
16825 efrain 12381
  .my-lg-n6 {
12382
    margin-top: -4.5rem !important;
12383
    margin-bottom: -4.5rem !important;
12384
  }
16848 stevensc 12385
 
16825 efrain 12386
  .my-lg-n7 {
12387
    margin-top: -6rem !important;
12388
    margin-bottom: -6rem !important;
12389
  }
16848 stevensc 12390
 
16825 efrain 12391
  .mt-lg-n1 {
12392
    margin-top: -0.25rem !important;
12393
  }
16848 stevensc 12394
 
16825 efrain 12395
  .mt-lg-n2 {
12396
    margin-top: -0.5rem !important;
12397
  }
16848 stevensc 12398
 
16825 efrain 12399
  .mt-lg-n3 {
12400
    margin-top: -1rem !important;
12401
  }
16848 stevensc 12402
 
16825 efrain 12403
  .mt-lg-n4 {
12404
    margin-top: -1.5rem !important;
12405
  }
16848 stevensc 12406
 
16825 efrain 12407
  .mt-lg-n5 {
12408
    margin-top: -3rem !important;
12409
  }
16848 stevensc 12410
 
16825 efrain 12411
  .mt-lg-n6 {
12412
    margin-top: -4.5rem !important;
12413
  }
16848 stevensc 12414
 
16825 efrain 12415
  .mt-lg-n7 {
12416
    margin-top: -6rem !important;
12417
  }
16848 stevensc 12418
 
16825 efrain 12419
  .me-lg-n1 {
12420
    margin-right: -0.25rem !important;
12421
  }
16848 stevensc 12422
 
16825 efrain 12423
  .me-lg-n2 {
12424
    margin-right: -0.5rem !important;
12425
  }
16848 stevensc 12426
 
16825 efrain 12427
  .me-lg-n3 {
12428
    margin-right: -1rem !important;
12429
  }
16848 stevensc 12430
 
16825 efrain 12431
  .me-lg-n4 {
12432
    margin-right: -1.5rem !important;
12433
  }
16848 stevensc 12434
 
16825 efrain 12435
  .me-lg-n5 {
12436
    margin-right: -3rem !important;
12437
  }
16848 stevensc 12438
 
16825 efrain 12439
  .me-lg-n6 {
12440
    margin-right: -4.5rem !important;
12441
  }
16848 stevensc 12442
 
16825 efrain 12443
  .me-lg-n7 {
12444
    margin-right: -6rem !important;
12445
  }
16848 stevensc 12446
 
16825 efrain 12447
  .mb-lg-n1 {
12448
    margin-bottom: -0.25rem !important;
12449
  }
16848 stevensc 12450
 
16825 efrain 12451
  .mb-lg-n2 {
12452
    margin-bottom: -0.5rem !important;
12453
  }
16848 stevensc 12454
 
16825 efrain 12455
  .mb-lg-n3 {
12456
    margin-bottom: -1rem !important;
12457
  }
16848 stevensc 12458
 
16825 efrain 12459
  .mb-lg-n4 {
12460
    margin-bottom: -1.5rem !important;
12461
  }
16848 stevensc 12462
 
16825 efrain 12463
  .mb-lg-n5 {
12464
    margin-bottom: -3rem !important;
12465
  }
16848 stevensc 12466
 
16825 efrain 12467
  .mb-lg-n6 {
12468
    margin-bottom: -4.5rem !important;
12469
  }
16848 stevensc 12470
 
16825 efrain 12471
  .mb-lg-n7 {
12472
    margin-bottom: -6rem !important;
12473
  }
16848 stevensc 12474
 
16825 efrain 12475
  .ms-lg-n1 {
12476
    margin-left: -0.25rem !important;
12477
  }
16848 stevensc 12478
 
16825 efrain 12479
  .ms-lg-n2 {
12480
    margin-left: -0.5rem !important;
12481
  }
16848 stevensc 12482
 
16825 efrain 12483
  .ms-lg-n3 {
12484
    margin-left: -1rem !important;
12485
  }
16848 stevensc 12486
 
16825 efrain 12487
  .ms-lg-n4 {
12488
    margin-left: -1.5rem !important;
12489
  }
16848 stevensc 12490
 
16825 efrain 12491
  .ms-lg-n5 {
12492
    margin-left: -3rem !important;
12493
  }
16848 stevensc 12494
 
16825 efrain 12495
  .ms-lg-n6 {
12496
    margin-left: -4.5rem !important;
12497
  }
16848 stevensc 12498
 
16825 efrain 12499
  .ms-lg-n7 {
12500
    margin-left: -6rem !important;
12501
  }
16848 stevensc 12502
 
16825 efrain 12503
  .p-lg-0 {
12504
    padding: 0 !important;
12505
  }
16848 stevensc 12506
 
16825 efrain 12507
  .p-lg-1 {
12508
    padding: 0.25rem !important;
12509
  }
16848 stevensc 12510
 
16825 efrain 12511
  .p-lg-2 {
12512
    padding: 0.5rem !important;
12513
  }
16848 stevensc 12514
 
16825 efrain 12515
  .p-lg-3 {
12516
    padding: 1rem !important;
12517
  }
16848 stevensc 12518
 
16825 efrain 12519
  .p-lg-4 {
12520
    padding: 1.5rem !important;
12521
  }
16848 stevensc 12522
 
16825 efrain 12523
  .p-lg-5 {
12524
    padding: 3rem !important;
12525
  }
16848 stevensc 12526
 
16825 efrain 12527
  .p-lg-6 {
12528
    padding: 4.5rem !important;
12529
  }
16848 stevensc 12530
 
16825 efrain 12531
  .p-lg-7 {
12532
    padding: 6rem !important;
12533
  }
16848 stevensc 12534
 
16825 efrain 12535
  .px-lg-0 {
12536
    padding-right: 0 !important;
12537
    padding-left: 0 !important;
12538
  }
16848 stevensc 12539
 
16825 efrain 12540
  .px-lg-1 {
12541
    padding-right: 0.25rem !important;
12542
    padding-left: 0.25rem !important;
12543
  }
16848 stevensc 12544
 
16825 efrain 12545
  .px-lg-2 {
12546
    padding-right: 0.5rem !important;
12547
    padding-left: 0.5rem !important;
12548
  }
16848 stevensc 12549
 
16825 efrain 12550
  .px-lg-3 {
12551
    padding-right: 1rem !important;
12552
    padding-left: 1rem !important;
12553
  }
16848 stevensc 12554
 
16825 efrain 12555
  .px-lg-4 {
12556
    padding-right: 1.5rem !important;
12557
    padding-left: 1.5rem !important;
12558
  }
16848 stevensc 12559
 
16825 efrain 12560
  .px-lg-5 {
12561
    padding-right: 3rem !important;
12562
    padding-left: 3rem !important;
12563
  }
16848 stevensc 12564
 
16825 efrain 12565
  .px-lg-6 {
12566
    padding-right: 4.5rem !important;
12567
    padding-left: 4.5rem !important;
12568
  }
16848 stevensc 12569
 
16825 efrain 12570
  .px-lg-7 {
12571
    padding-right: 6rem !important;
12572
    padding-left: 6rem !important;
12573
  }
16848 stevensc 12574
 
16825 efrain 12575
  .py-lg-0 {
12576
    padding-top: 0 !important;
12577
    padding-bottom: 0 !important;
12578
  }
16848 stevensc 12579
 
16825 efrain 12580
  .py-lg-1 {
12581
    padding-top: 0.25rem !important;
12582
    padding-bottom: 0.25rem !important;
12583
  }
16848 stevensc 12584
 
16825 efrain 12585
  .py-lg-2 {
12586
    padding-top: 0.5rem !important;
12587
    padding-bottom: 0.5rem !important;
12588
  }
16848 stevensc 12589
 
16825 efrain 12590
  .py-lg-3 {
12591
    padding-top: 1rem !important;
12592
    padding-bottom: 1rem !important;
12593
  }
16848 stevensc 12594
 
16825 efrain 12595
  .py-lg-4 {
12596
    padding-top: 1.5rem !important;
12597
    padding-bottom: 1.5rem !important;
12598
  }
16848 stevensc 12599
 
16825 efrain 12600
  .py-lg-5 {
12601
    padding-top: 3rem !important;
12602
    padding-bottom: 3rem !important;
12603
  }
16848 stevensc 12604
 
16825 efrain 12605
  .py-lg-6 {
12606
    padding-top: 4.5rem !important;
12607
    padding-bottom: 4.5rem !important;
12608
  }
16848 stevensc 12609
 
16825 efrain 12610
  .py-lg-7 {
12611
    padding-top: 6rem !important;
12612
    padding-bottom: 6rem !important;
12613
  }
16848 stevensc 12614
 
16825 efrain 12615
  .pt-lg-0 {
12616
    padding-top: 0 !important;
12617
  }
16848 stevensc 12618
 
16825 efrain 12619
  .pt-lg-1 {
12620
    padding-top: 0.25rem !important;
12621
  }
16848 stevensc 12622
 
16825 efrain 12623
  .pt-lg-2 {
12624
    padding-top: 0.5rem !important;
12625
  }
16848 stevensc 12626
 
16825 efrain 12627
  .pt-lg-3 {
12628
    padding-top: 1rem !important;
12629
  }
16848 stevensc 12630
 
16825 efrain 12631
  .pt-lg-4 {
12632
    padding-top: 1.5rem !important;
12633
  }
16848 stevensc 12634
 
16825 efrain 12635
  .pt-lg-5 {
12636
    padding-top: 3rem !important;
12637
  }
16848 stevensc 12638
 
16825 efrain 12639
  .pt-lg-6 {
12640
    padding-top: 4.5rem !important;
12641
  }
16848 stevensc 12642
 
16825 efrain 12643
  .pt-lg-7 {
12644
    padding-top: 6rem !important;
12645
  }
16848 stevensc 12646
 
16825 efrain 12647
  .pe-lg-0 {
12648
    padding-right: 0 !important;
12649
  }
16848 stevensc 12650
 
16825 efrain 12651
  .pe-lg-1 {
12652
    padding-right: 0.25rem !important;
12653
  }
16848 stevensc 12654
 
16825 efrain 12655
  .pe-lg-2 {
12656
    padding-right: 0.5rem !important;
12657
  }
16848 stevensc 12658
 
16825 efrain 12659
  .pe-lg-3 {
12660
    padding-right: 1rem !important;
12661
  }
16848 stevensc 12662
 
16825 efrain 12663
  .pe-lg-4 {
12664
    padding-right: 1.5rem !important;
12665
  }
16848 stevensc 12666
 
16825 efrain 12667
  .pe-lg-5 {
12668
    padding-right: 3rem !important;
12669
  }
16848 stevensc 12670
 
16825 efrain 12671
  .pe-lg-6 {
12672
    padding-right: 4.5rem !important;
12673
  }
16848 stevensc 12674
 
16825 efrain 12675
  .pe-lg-7 {
12676
    padding-right: 6rem !important;
12677
  }
16848 stevensc 12678
 
16825 efrain 12679
  .pb-lg-0 {
12680
    padding-bottom: 0 !important;
12681
  }
16848 stevensc 12682
 
16825 efrain 12683
  .pb-lg-1 {
12684
    padding-bottom: 0.25rem !important;
12685
  }
16848 stevensc 12686
 
16825 efrain 12687
  .pb-lg-2 {
12688
    padding-bottom: 0.5rem !important;
12689
  }
16848 stevensc 12690
 
16825 efrain 12691
  .pb-lg-3 {
12692
    padding-bottom: 1rem !important;
12693
  }
16848 stevensc 12694
 
16825 efrain 12695
  .pb-lg-4 {
12696
    padding-bottom: 1.5rem !important;
12697
  }
16848 stevensc 12698
 
16825 efrain 12699
  .pb-lg-5 {
12700
    padding-bottom: 3rem !important;
12701
  }
16848 stevensc 12702
 
16825 efrain 12703
  .pb-lg-6 {
12704
    padding-bottom: 4.5rem !important;
12705
  }
16848 stevensc 12706
 
16825 efrain 12707
  .pb-lg-7 {
12708
    padding-bottom: 6rem !important;
12709
  }
16848 stevensc 12710
 
16825 efrain 12711
  .ps-lg-0 {
12712
    padding-left: 0 !important;
12713
  }
16848 stevensc 12714
 
16825 efrain 12715
  .ps-lg-1 {
12716
    padding-left: 0.25rem !important;
12717
  }
16848 stevensc 12718
 
16825 efrain 12719
  .ps-lg-2 {
12720
    padding-left: 0.5rem !important;
12721
  }
16848 stevensc 12722
 
16825 efrain 12723
  .ps-lg-3 {
12724
    padding-left: 1rem !important;
12725
  }
16848 stevensc 12726
 
16825 efrain 12727
  .ps-lg-4 {
12728
    padding-left: 1.5rem !important;
12729
  }
16848 stevensc 12730
 
16825 efrain 12731
  .ps-lg-5 {
12732
    padding-left: 3rem !important;
12733
  }
16848 stevensc 12734
 
16825 efrain 12735
  .ps-lg-6 {
12736
    padding-left: 4.5rem !important;
12737
  }
16848 stevensc 12738
 
16825 efrain 12739
  .ps-lg-7 {
12740
    padding-left: 6rem !important;
12741
  }
16848 stevensc 12742
 
16825 efrain 12743
  .gap-lg-0 {
12744
    gap: 0 !important;
12745
  }
16848 stevensc 12746
 
16825 efrain 12747
  .gap-lg-1 {
12748
    gap: 0.25rem !important;
12749
  }
16848 stevensc 12750
 
16825 efrain 12751
  .gap-lg-2 {
12752
    gap: 0.5rem !important;
12753
  }
16848 stevensc 12754
 
16825 efrain 12755
  .gap-lg-3 {
12756
    gap: 1rem !important;
12757
  }
16848 stevensc 12758
 
16825 efrain 12759
  .gap-lg-4 {
12760
    gap: 1.5rem !important;
12761
  }
16848 stevensc 12762
 
16825 efrain 12763
  .gap-lg-5 {
12764
    gap: 3rem !important;
12765
  }
16848 stevensc 12766
 
16825 efrain 12767
  .gap-lg-6 {
12768
    gap: 4.5rem !important;
12769
  }
16848 stevensc 12770
 
16825 efrain 12771
  .gap-lg-7 {
12772
    gap: 6rem !important;
12773
  }
16848 stevensc 12774
 
16825 efrain 12775
  .text-lg-start {
12776
    text-align: left !important;
12777
  }
16848 stevensc 12778
 
16825 efrain 12779
  .text-lg-end {
12780
    text-align: right !important;
12781
  }
16848 stevensc 12782
 
16825 efrain 12783
  .text-lg-center {
12784
    text-align: center !important;
12785
  }
12786
}
16848 stevensc 12787
 
16825 efrain 12788
@media (min-width: 1200px) {
12789
  .float-xl-start {
12790
    float: left !important;
12791
  }
16848 stevensc 12792
 
16825 efrain 12793
  .float-xl-end {
12794
    float: right !important;
12795
  }
16848 stevensc 12796
 
16825 efrain 12797
  .float-xl-none {
12798
    float: none !important;
12799
  }
16848 stevensc 12800
 
16825 efrain 12801
  .d-xl-inline {
12802
    display: inline !important;
12803
  }
16848 stevensc 12804
 
16825 efrain 12805
  .d-xl-inline-block {
12806
    display: inline-block !important;
12807
  }
16848 stevensc 12808
 
16825 efrain 12809
  .d-xl-block {
12810
    display: block !important;
12811
  }
16848 stevensc 12812
 
16825 efrain 12813
  .d-xl-grid {
12814
    display: grid !important;
12815
  }
16848 stevensc 12816
 
16825 efrain 12817
  .d-xl-table {
12818
    display: table !important;
12819
  }
16848 stevensc 12820
 
16825 efrain 12821
  .d-xl-table-row {
12822
    display: table-row !important;
12823
  }
16848 stevensc 12824
 
16825 efrain 12825
  .d-xl-table-cell {
12826
    display: table-cell !important;
12827
  }
16848 stevensc 12828
 
16825 efrain 12829
  .d-xl-flex {
12830
    display: flex !important;
12831
  }
16848 stevensc 12832
 
16825 efrain 12833
  .d-xl-inline-flex {
12834
    display: inline-flex !important;
12835
  }
16848 stevensc 12836
 
16825 efrain 12837
  .d-xl-none {
12838
    display: none !important;
12839
  }
16848 stevensc 12840
 
16825 efrain 12841
  .border-xl {
12842
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12843
  }
16848 stevensc 12844
 
16825 efrain 12845
  .border-xl-0 {
12846
    border: 0 !important;
12847
  }
16848 stevensc 12848
 
16825 efrain 12849
  .border-top-xl {
12850
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12851
  }
16848 stevensc 12852
 
16825 efrain 12853
  .border-top-xl-0 {
12854
    border-top: 0 !important;
12855
  }
16848 stevensc 12856
 
16825 efrain 12857
  .border-end-xl {
12858
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12859
  }
16848 stevensc 12860
 
16825 efrain 12861
  .border-end-xl-0 {
12862
    border-right: 0 !important;
12863
  }
16848 stevensc 12864
 
16825 efrain 12865
  .border-bottom-xl {
12866
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12867
  }
16848 stevensc 12868
 
16825 efrain 12869
  .border-bottom-xl-0 {
12870
    border-bottom: 0 !important;
12871
  }
16848 stevensc 12872
 
16825 efrain 12873
  .border-start-xl {
12874
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12875
  }
16848 stevensc 12876
 
16825 efrain 12877
  .border-start-xl-0 {
12878
    border-left: 0 !important;
12879
  }
16848 stevensc 12880
 
16825 efrain 12881
  .flex-xl-fill {
12882
    flex: 1 1 auto !important;
12883
  }
16848 stevensc 12884
 
16825 efrain 12885
  .flex-xl-row {
12886
    flex-direction: row !important;
12887
  }
16848 stevensc 12888
 
16825 efrain 12889
  .flex-xl-column {
12890
    flex-direction: column !important;
12891
  }
16848 stevensc 12892
 
16825 efrain 12893
  .flex-xl-row-reverse {
12894
    flex-direction: row-reverse !important;
12895
  }
16848 stevensc 12896
 
16825 efrain 12897
  .flex-xl-column-reverse {
12898
    flex-direction: column-reverse !important;
12899
  }
16848 stevensc 12900
 
16825 efrain 12901
  .flex-xl-grow-0 {
12902
    flex-grow: 0 !important;
12903
  }
16848 stevensc 12904
 
16825 efrain 12905
  .flex-xl-grow-1 {
12906
    flex-grow: 1 !important;
12907
  }
16848 stevensc 12908
 
16825 efrain 12909
  .flex-xl-shrink-0 {
12910
    flex-shrink: 0 !important;
12911
  }
16848 stevensc 12912
 
16825 efrain 12913
  .flex-xl-shrink-1 {
12914
    flex-shrink: 1 !important;
12915
  }
16848 stevensc 12916
 
16825 efrain 12917
  .flex-xl-wrap {
12918
    flex-wrap: wrap !important;
12919
  }
16848 stevensc 12920
 
16825 efrain 12921
  .flex-xl-nowrap {
12922
    flex-wrap: nowrap !important;
12923
  }
16848 stevensc 12924
 
16825 efrain 12925
  .flex-xl-wrap-reverse {
12926
    flex-wrap: wrap-reverse !important;
12927
  }
16848 stevensc 12928
 
16825 efrain 12929
  .justify-content-xl-start {
12930
    justify-content: flex-start !important;
12931
  }
16848 stevensc 12932
 
16825 efrain 12933
  .justify-content-xl-end {
12934
    justify-content: flex-end !important;
12935
  }
16848 stevensc 12936
 
16825 efrain 12937
  .justify-content-xl-center {
12938
    justify-content: center !important;
12939
  }
16848 stevensc 12940
 
16825 efrain 12941
  .justify-content-xl-between {
12942
    justify-content: space-between !important;
12943
  }
16848 stevensc 12944
 
16825 efrain 12945
  .justify-content-xl-around {
12946
    justify-content: space-around !important;
12947
  }
16848 stevensc 12948
 
16825 efrain 12949
  .justify-content-xl-evenly {
12950
    justify-content: space-evenly !important;
12951
  }
16848 stevensc 12952
 
16825 efrain 12953
  .align-items-xl-start {
12954
    align-items: flex-start !important;
12955
  }
16848 stevensc 12956
 
16825 efrain 12957
  .align-items-xl-end {
12958
    align-items: flex-end !important;
12959
  }
16848 stevensc 12960
 
16825 efrain 12961
  .align-items-xl-center {
12962
    align-items: center !important;
12963
  }
16848 stevensc 12964
 
16825 efrain 12965
  .align-items-xl-baseline {
12966
    align-items: baseline !important;
12967
  }
16848 stevensc 12968
 
16825 efrain 12969
  .align-items-xl-stretch {
12970
    align-items: stretch !important;
12971
  }
16848 stevensc 12972
 
16825 efrain 12973
  .align-content-xl-start {
12974
    align-content: flex-start !important;
12975
  }
16848 stevensc 12976
 
16825 efrain 12977
  .align-content-xl-end {
12978
    align-content: flex-end !important;
12979
  }
16848 stevensc 12980
 
16825 efrain 12981
  .align-content-xl-center {
12982
    align-content: center !important;
12983
  }
16848 stevensc 12984
 
16825 efrain 12985
  .align-content-xl-between {
12986
    align-content: space-between !important;
12987
  }
16848 stevensc 12988
 
16825 efrain 12989
  .align-content-xl-around {
12990
    align-content: space-around !important;
12991
  }
16848 stevensc 12992
 
16825 efrain 12993
  .align-content-xl-stretch {
12994
    align-content: stretch !important;
12995
  }
16848 stevensc 12996
 
16825 efrain 12997
  .align-self-xl-auto {
12998
    align-self: auto !important;
12999
  }
16848 stevensc 13000
 
16825 efrain 13001
  .align-self-xl-start {
13002
    align-self: flex-start !important;
13003
  }
16848 stevensc 13004
 
16825 efrain 13005
  .align-self-xl-end {
13006
    align-self: flex-end !important;
13007
  }
16848 stevensc 13008
 
16825 efrain 13009
  .align-self-xl-center {
13010
    align-self: center !important;
13011
  }
16848 stevensc 13012
 
16825 efrain 13013
  .align-self-xl-baseline {
13014
    align-self: baseline !important;
13015
  }
16848 stevensc 13016
 
16825 efrain 13017
  .align-self-xl-stretch {
13018
    align-self: stretch !important;
13019
  }
16848 stevensc 13020
 
16825 efrain 13021
  .order-xl-first {
13022
    order: -1 !important;
13023
  }
16848 stevensc 13024
 
16825 efrain 13025
  .order-xl-0 {
13026
    order: 0 !important;
13027
  }
16848 stevensc 13028
 
16825 efrain 13029
  .order-xl-1 {
13030
    order: 1 !important;
13031
  }
16848 stevensc 13032
 
16825 efrain 13033
  .order-xl-2 {
13034
    order: 2 !important;
13035
  }
16848 stevensc 13036
 
16825 efrain 13037
  .order-xl-3 {
13038
    order: 3 !important;
13039
  }
16848 stevensc 13040
 
16825 efrain 13041
  .order-xl-4 {
13042
    order: 4 !important;
13043
  }
16848 stevensc 13044
 
16825 efrain 13045
  .order-xl-5 {
13046
    order: 5 !important;
13047
  }
16848 stevensc 13048
 
16825 efrain 13049
  .order-xl-last {
13050
    order: 6 !important;
13051
  }
16848 stevensc 13052
 
16825 efrain 13053
  .m-xl-0 {
13054
    margin: 0 !important;
13055
  }
16848 stevensc 13056
 
16825 efrain 13057
  .m-xl-1 {
13058
    margin: 0.25rem !important;
13059
  }
16848 stevensc 13060
 
16825 efrain 13061
  .m-xl-2 {
13062
    margin: 0.5rem !important;
13063
  }
16848 stevensc 13064
 
16825 efrain 13065
  .m-xl-3 {
13066
    margin: 1rem !important;
13067
  }
16848 stevensc 13068
 
16825 efrain 13069
  .m-xl-4 {
13070
    margin: 1.5rem !important;
13071
  }
16848 stevensc 13072
 
16825 efrain 13073
  .m-xl-5 {
13074
    margin: 3rem !important;
13075
  }
16848 stevensc 13076
 
16825 efrain 13077
  .m-xl-6 {
13078
    margin: 4.5rem !important;
13079
  }
16848 stevensc 13080
 
16825 efrain 13081
  .m-xl-7 {
13082
    margin: 6rem !important;
13083
  }
16848 stevensc 13084
 
16825 efrain 13085
  .m-xl-auto {
13086
    margin: auto !important;
13087
  }
16848 stevensc 13088
 
16825 efrain 13089
  .mx-xl-0 {
13090
    margin-right: 0 !important;
13091
    margin-left: 0 !important;
13092
  }
16848 stevensc 13093
 
16825 efrain 13094
  .mx-xl-1 {
13095
    margin-right: 0.25rem !important;
13096
    margin-left: 0.25rem !important;
13097
  }
16848 stevensc 13098
 
16825 efrain 13099
  .mx-xl-2 {
13100
    margin-right: 0.5rem !important;
13101
    margin-left: 0.5rem !important;
13102
  }
16848 stevensc 13103
 
16825 efrain 13104
  .mx-xl-3 {
13105
    margin-right: 1rem !important;
13106
    margin-left: 1rem !important;
13107
  }
16848 stevensc 13108
 
16825 efrain 13109
  .mx-xl-4 {
13110
    margin-right: 1.5rem !important;
13111
    margin-left: 1.5rem !important;
13112
  }
16848 stevensc 13113
 
16825 efrain 13114
  .mx-xl-5 {
13115
    margin-right: 3rem !important;
13116
    margin-left: 3rem !important;
13117
  }
16848 stevensc 13118
 
16825 efrain 13119
  .mx-xl-6 {
13120
    margin-right: 4.5rem !important;
13121
    margin-left: 4.5rem !important;
13122
  }
16848 stevensc 13123
 
16825 efrain 13124
  .mx-xl-7 {
13125
    margin-right: 6rem !important;
13126
    margin-left: 6rem !important;
13127
  }
16848 stevensc 13128
 
16825 efrain 13129
  .mx-xl-auto {
13130
    margin-right: auto !important;
13131
    margin-left: auto !important;
13132
  }
16848 stevensc 13133
 
16825 efrain 13134
  .my-xl-0 {
13135
    margin-top: 0 !important;
13136
    margin-bottom: 0 !important;
13137
  }
16848 stevensc 13138
 
16825 efrain 13139
  .my-xl-1 {
13140
    margin-top: 0.25rem !important;
13141
    margin-bottom: 0.25rem !important;
13142
  }
16848 stevensc 13143
 
16825 efrain 13144
  .my-xl-2 {
13145
    margin-top: 0.5rem !important;
13146
    margin-bottom: 0.5rem !important;
13147
  }
16848 stevensc 13148
 
16825 efrain 13149
  .my-xl-3 {
13150
    margin-top: 1rem !important;
13151
    margin-bottom: 1rem !important;
13152
  }
16848 stevensc 13153
 
16825 efrain 13154
  .my-xl-4 {
13155
    margin-top: 1.5rem !important;
13156
    margin-bottom: 1.5rem !important;
13157
  }
16848 stevensc 13158
 
16825 efrain 13159
  .my-xl-5 {
13160
    margin-top: 3rem !important;
13161
    margin-bottom: 3rem !important;
13162
  }
16848 stevensc 13163
 
16825 efrain 13164
  .my-xl-6 {
13165
    margin-top: 4.5rem !important;
13166
    margin-bottom: 4.5rem !important;
13167
  }
16848 stevensc 13168
 
16825 efrain 13169
  .my-xl-7 {
13170
    margin-top: 6rem !important;
13171
    margin-bottom: 6rem !important;
13172
  }
16848 stevensc 13173
 
16825 efrain 13174
  .my-xl-auto {
13175
    margin-top: auto !important;
13176
    margin-bottom: auto !important;
13177
  }
16848 stevensc 13178
 
16825 efrain 13179
  .mt-xl-0 {
13180
    margin-top: 0 !important;
13181
  }
16848 stevensc 13182
 
16825 efrain 13183
  .mt-xl-1 {
13184
    margin-top: 0.25rem !important;
13185
  }
16848 stevensc 13186
 
16825 efrain 13187
  .mt-xl-2 {
13188
    margin-top: 0.5rem !important;
13189
  }
16848 stevensc 13190
 
16825 efrain 13191
  .mt-xl-3 {
13192
    margin-top: 1rem !important;
13193
  }
16848 stevensc 13194
 
16825 efrain 13195
  .mt-xl-4 {
13196
    margin-top: 1.5rem !important;
13197
  }
16848 stevensc 13198
 
16825 efrain 13199
  .mt-xl-5 {
13200
    margin-top: 3rem !important;
13201
  }
16848 stevensc 13202
 
16825 efrain 13203
  .mt-xl-6 {
13204
    margin-top: 4.5rem !important;
13205
  }
16848 stevensc 13206
 
16825 efrain 13207
  .mt-xl-7 {
13208
    margin-top: 6rem !important;
13209
  }
16848 stevensc 13210
 
16825 efrain 13211
  .mt-xl-auto {
13212
    margin-top: auto !important;
13213
  }
16848 stevensc 13214
 
16825 efrain 13215
  .me-xl-0 {
13216
    margin-right: 0 !important;
13217
  }
16848 stevensc 13218
 
16825 efrain 13219
  .me-xl-1 {
13220
    margin-right: 0.25rem !important;
13221
  }
16848 stevensc 13222
 
16825 efrain 13223
  .me-xl-2 {
13224
    margin-right: 0.5rem !important;
13225
  }
16848 stevensc 13226
 
16825 efrain 13227
  .me-xl-3 {
13228
    margin-right: 1rem !important;
13229
  }
16848 stevensc 13230
 
16825 efrain 13231
  .me-xl-4 {
13232
    margin-right: 1.5rem !important;
13233
  }
16848 stevensc 13234
 
16825 efrain 13235
  .me-xl-5 {
13236
    margin-right: 3rem !important;
13237
  }
16848 stevensc 13238
 
16825 efrain 13239
  .me-xl-6 {
13240
    margin-right: 4.5rem !important;
13241
  }
16848 stevensc 13242
 
16825 efrain 13243
  .me-xl-7 {
13244
    margin-right: 6rem !important;
13245
  }
16848 stevensc 13246
 
16825 efrain 13247
  .me-xl-auto {
13248
    margin-right: auto !important;
13249
  }
16848 stevensc 13250
 
16825 efrain 13251
  .mb-xl-0 {
13252
    margin-bottom: 0 !important;
13253
  }
16848 stevensc 13254
 
16825 efrain 13255
  .mb-xl-1 {
13256
    margin-bottom: 0.25rem !important;
13257
  }
16848 stevensc 13258
 
16825 efrain 13259
  .mb-xl-2 {
13260
    margin-bottom: 0.5rem !important;
13261
  }
16848 stevensc 13262
 
16825 efrain 13263
  .mb-xl-3 {
13264
    margin-bottom: 1rem !important;
13265
  }
16848 stevensc 13266
 
16825 efrain 13267
  .mb-xl-4 {
13268
    margin-bottom: 1.5rem !important;
13269
  }
16848 stevensc 13270
 
16825 efrain 13271
  .mb-xl-5 {
13272
    margin-bottom: 3rem !important;
13273
  }
16848 stevensc 13274
 
16825 efrain 13275
  .mb-xl-6 {
13276
    margin-bottom: 4.5rem !important;
13277
  }
16848 stevensc 13278
 
16825 efrain 13279
  .mb-xl-7 {
13280
    margin-bottom: 6rem !important;
13281
  }
16848 stevensc 13282
 
16825 efrain 13283
  .mb-xl-auto {
13284
    margin-bottom: auto !important;
13285
  }
16848 stevensc 13286
 
16825 efrain 13287
  .ms-xl-0 {
13288
    margin-left: 0 !important;
13289
  }
16848 stevensc 13290
 
16825 efrain 13291
  .ms-xl-1 {
13292
    margin-left: 0.25rem !important;
13293
  }
16848 stevensc 13294
 
16825 efrain 13295
  .ms-xl-2 {
13296
    margin-left: 0.5rem !important;
13297
  }
16848 stevensc 13298
 
16825 efrain 13299
  .ms-xl-3 {
13300
    margin-left: 1rem !important;
13301
  }
16848 stevensc 13302
 
16825 efrain 13303
  .ms-xl-4 {
13304
    margin-left: 1.5rem !important;
13305
  }
16848 stevensc 13306
 
16825 efrain 13307
  .ms-xl-5 {
13308
    margin-left: 3rem !important;
13309
  }
16848 stevensc 13310
 
16825 efrain 13311
  .ms-xl-6 {
13312
    margin-left: 4.5rem !important;
13313
  }
16848 stevensc 13314
 
16825 efrain 13315
  .ms-xl-7 {
13316
    margin-left: 6rem !important;
13317
  }
16848 stevensc 13318
 
16825 efrain 13319
  .ms-xl-auto {
13320
    margin-left: auto !important;
13321
  }
16848 stevensc 13322
 
16825 efrain 13323
  .m-xl-n1 {
13324
    margin: -0.25rem !important;
13325
  }
16848 stevensc 13326
 
16825 efrain 13327
  .m-xl-n2 {
13328
    margin: -0.5rem !important;
13329
  }
16848 stevensc 13330
 
16825 efrain 13331
  .m-xl-n3 {
13332
    margin: -1rem !important;
13333
  }
16848 stevensc 13334
 
16825 efrain 13335
  .m-xl-n4 {
13336
    margin: -1.5rem !important;
13337
  }
16848 stevensc 13338
 
16825 efrain 13339
  .m-xl-n5 {
13340
    margin: -3rem !important;
13341
  }
16848 stevensc 13342
 
16825 efrain 13343
  .m-xl-n6 {
13344
    margin: -4.5rem !important;
13345
  }
16848 stevensc 13346
 
16825 efrain 13347
  .m-xl-n7 {
13348
    margin: -6rem !important;
13349
  }
16848 stevensc 13350
 
16825 efrain 13351
  .mx-xl-n1 {
13352
    margin-right: -0.25rem !important;
13353
    margin-left: -0.25rem !important;
13354
  }
16848 stevensc 13355
 
16825 efrain 13356
  .mx-xl-n2 {
13357
    margin-right: -0.5rem !important;
13358
    margin-left: -0.5rem !important;
13359
  }
16848 stevensc 13360
 
16825 efrain 13361
  .mx-xl-n3 {
13362
    margin-right: -1rem !important;
13363
    margin-left: -1rem !important;
13364
  }
16848 stevensc 13365
 
16825 efrain 13366
  .mx-xl-n4 {
13367
    margin-right: -1.5rem !important;
13368
    margin-left: -1.5rem !important;
13369
  }
16848 stevensc 13370
 
16825 efrain 13371
  .mx-xl-n5 {
13372
    margin-right: -3rem !important;
13373
    margin-left: -3rem !important;
13374
  }
16848 stevensc 13375
 
16825 efrain 13376
  .mx-xl-n6 {
13377
    margin-right: -4.5rem !important;
13378
    margin-left: -4.5rem !important;
13379
  }
16848 stevensc 13380
 
16825 efrain 13381
  .mx-xl-n7 {
13382
    margin-right: -6rem !important;
13383
    margin-left: -6rem !important;
13384
  }
16848 stevensc 13385
 
16825 efrain 13386
  .my-xl-n1 {
13387
    margin-top: -0.25rem !important;
13388
    margin-bottom: -0.25rem !important;
13389
  }
16848 stevensc 13390
 
16825 efrain 13391
  .my-xl-n2 {
13392
    margin-top: -0.5rem !important;
13393
    margin-bottom: -0.5rem !important;
13394
  }
16848 stevensc 13395
 
16825 efrain 13396
  .my-xl-n3 {
13397
    margin-top: -1rem !important;
13398
    margin-bottom: -1rem !important;
13399
  }
16848 stevensc 13400
 
16825 efrain 13401
  .my-xl-n4 {
13402
    margin-top: -1.5rem !important;
13403
    margin-bottom: -1.5rem !important;
13404
  }
16848 stevensc 13405
 
16825 efrain 13406
  .my-xl-n5 {
13407
    margin-top: -3rem !important;
13408
    margin-bottom: -3rem !important;
13409
  }
16848 stevensc 13410
 
16825 efrain 13411
  .my-xl-n6 {
13412
    margin-top: -4.5rem !important;
13413
    margin-bottom: -4.5rem !important;
13414
  }
16848 stevensc 13415
 
16825 efrain 13416
  .my-xl-n7 {
13417
    margin-top: -6rem !important;
13418
    margin-bottom: -6rem !important;
13419
  }
16848 stevensc 13420
 
16825 efrain 13421
  .mt-xl-n1 {
13422
    margin-top: -0.25rem !important;
13423
  }
16848 stevensc 13424
 
16825 efrain 13425
  .mt-xl-n2 {
13426
    margin-top: -0.5rem !important;
13427
  }
16848 stevensc 13428
 
16825 efrain 13429
  .mt-xl-n3 {
13430
    margin-top: -1rem !important;
13431
  }
16848 stevensc 13432
 
16825 efrain 13433
  .mt-xl-n4 {
13434
    margin-top: -1.5rem !important;
13435
  }
16848 stevensc 13436
 
16825 efrain 13437
  .mt-xl-n5 {
13438
    margin-top: -3rem !important;
13439
  }
16848 stevensc 13440
 
16825 efrain 13441
  .mt-xl-n6 {
13442
    margin-top: -4.5rem !important;
13443
  }
16848 stevensc 13444
 
16825 efrain 13445
  .mt-xl-n7 {
13446
    margin-top: -6rem !important;
13447
  }
16848 stevensc 13448
 
16825 efrain 13449
  .me-xl-n1 {
13450
    margin-right: -0.25rem !important;
13451
  }
16848 stevensc 13452
 
16825 efrain 13453
  .me-xl-n2 {
13454
    margin-right: -0.5rem !important;
13455
  }
16848 stevensc 13456
 
16825 efrain 13457
  .me-xl-n3 {
13458
    margin-right: -1rem !important;
13459
  }
16848 stevensc 13460
 
16825 efrain 13461
  .me-xl-n4 {
13462
    margin-right: -1.5rem !important;
13463
  }
16848 stevensc 13464
 
16825 efrain 13465
  .me-xl-n5 {
13466
    margin-right: -3rem !important;
13467
  }
16848 stevensc 13468
 
16825 efrain 13469
  .me-xl-n6 {
13470
    margin-right: -4.5rem !important;
13471
  }
16848 stevensc 13472
 
16825 efrain 13473
  .me-xl-n7 {
13474
    margin-right: -6rem !important;
13475
  }
16848 stevensc 13476
 
16825 efrain 13477
  .mb-xl-n1 {
13478
    margin-bottom: -0.25rem !important;
13479
  }
16848 stevensc 13480
 
16825 efrain 13481
  .mb-xl-n2 {
13482
    margin-bottom: -0.5rem !important;
13483
  }
16848 stevensc 13484
 
16825 efrain 13485
  .mb-xl-n3 {
13486
    margin-bottom: -1rem !important;
13487
  }
16848 stevensc 13488
 
16825 efrain 13489
  .mb-xl-n4 {
13490
    margin-bottom: -1.5rem !important;
13491
  }
16848 stevensc 13492
 
16825 efrain 13493
  .mb-xl-n5 {
13494
    margin-bottom: -3rem !important;
13495
  }
16848 stevensc 13496
 
16825 efrain 13497
  .mb-xl-n6 {
13498
    margin-bottom: -4.5rem !important;
13499
  }
16848 stevensc 13500
 
16825 efrain 13501
  .mb-xl-n7 {
13502
    margin-bottom: -6rem !important;
13503
  }
16848 stevensc 13504
 
16825 efrain 13505
  .ms-xl-n1 {
13506
    margin-left: -0.25rem !important;
13507
  }
16848 stevensc 13508
 
16825 efrain 13509
  .ms-xl-n2 {
13510
    margin-left: -0.5rem !important;
13511
  }
16848 stevensc 13512
 
16825 efrain 13513
  .ms-xl-n3 {
13514
    margin-left: -1rem !important;
13515
  }
16848 stevensc 13516
 
16825 efrain 13517
  .ms-xl-n4 {
13518
    margin-left: -1.5rem !important;
13519
  }
16848 stevensc 13520
 
16825 efrain 13521
  .ms-xl-n5 {
13522
    margin-left: -3rem !important;
13523
  }
16848 stevensc 13524
 
16825 efrain 13525
  .ms-xl-n6 {
13526
    margin-left: -4.5rem !important;
13527
  }
16848 stevensc 13528
 
16825 efrain 13529
  .ms-xl-n7 {
13530
    margin-left: -6rem !important;
13531
  }
16848 stevensc 13532
 
16825 efrain 13533
  .p-xl-0 {
13534
    padding: 0 !important;
13535
  }
16848 stevensc 13536
 
16825 efrain 13537
  .p-xl-1 {
13538
    padding: 0.25rem !important;
13539
  }
16848 stevensc 13540
 
16825 efrain 13541
  .p-xl-2 {
13542
    padding: 0.5rem !important;
13543
  }
16848 stevensc 13544
 
16825 efrain 13545
  .p-xl-3 {
13546
    padding: 1rem !important;
13547
  }
16848 stevensc 13548
 
16825 efrain 13549
  .p-xl-4 {
13550
    padding: 1.5rem !important;
13551
  }
16848 stevensc 13552
 
16825 efrain 13553
  .p-xl-5 {
13554
    padding: 3rem !important;
13555
  }
16848 stevensc 13556
 
16825 efrain 13557
  .p-xl-6 {
13558
    padding: 4.5rem !important;
13559
  }
16848 stevensc 13560
 
16825 efrain 13561
  .p-xl-7 {
13562
    padding: 6rem !important;
13563
  }
16848 stevensc 13564
 
16825 efrain 13565
  .px-xl-0 {
13566
    padding-right: 0 !important;
13567
    padding-left: 0 !important;
13568
  }
16848 stevensc 13569
 
16825 efrain 13570
  .px-xl-1 {
13571
    padding-right: 0.25rem !important;
13572
    padding-left: 0.25rem !important;
13573
  }
16848 stevensc 13574
 
16825 efrain 13575
  .px-xl-2 {
13576
    padding-right: 0.5rem !important;
13577
    padding-left: 0.5rem !important;
13578
  }
16848 stevensc 13579
 
16825 efrain 13580
  .px-xl-3 {
13581
    padding-right: 1rem !important;
13582
    padding-left: 1rem !important;
13583
  }
16848 stevensc 13584
 
16825 efrain 13585
  .px-xl-4 {
13586
    padding-right: 1.5rem !important;
13587
    padding-left: 1.5rem !important;
13588
  }
16848 stevensc 13589
 
16825 efrain 13590
  .px-xl-5 {
13591
    padding-right: 3rem !important;
13592
    padding-left: 3rem !important;
13593
  }
16848 stevensc 13594
 
16825 efrain 13595
  .px-xl-6 {
13596
    padding-right: 4.5rem !important;
13597
    padding-left: 4.5rem !important;
13598
  }
16848 stevensc 13599
 
16825 efrain 13600
  .px-xl-7 {
13601
    padding-right: 6rem !important;
13602
    padding-left: 6rem !important;
13603
  }
16848 stevensc 13604
 
16825 efrain 13605
  .py-xl-0 {
13606
    padding-top: 0 !important;
13607
    padding-bottom: 0 !important;
13608
  }
16848 stevensc 13609
 
16825 efrain 13610
  .py-xl-1 {
13611
    padding-top: 0.25rem !important;
13612
    padding-bottom: 0.25rem !important;
13613
  }
16848 stevensc 13614
 
16825 efrain 13615
  .py-xl-2 {
13616
    padding-top: 0.5rem !important;
13617
    padding-bottom: 0.5rem !important;
13618
  }
16848 stevensc 13619
 
16825 efrain 13620
  .py-xl-3 {
13621
    padding-top: 1rem !important;
13622
    padding-bottom: 1rem !important;
13623
  }
16848 stevensc 13624
 
16825 efrain 13625
  .py-xl-4 {
13626
    padding-top: 1.5rem !important;
13627
    padding-bottom: 1.5rem !important;
13628
  }
16848 stevensc 13629
 
16825 efrain 13630
  .py-xl-5 {
13631
    padding-top: 3rem !important;
13632
    padding-bottom: 3rem !important;
13633
  }
16848 stevensc 13634
 
16825 efrain 13635
  .py-xl-6 {
13636
    padding-top: 4.5rem !important;
13637
    padding-bottom: 4.5rem !important;
13638
  }
16848 stevensc 13639
 
16825 efrain 13640
  .py-xl-7 {
13641
    padding-top: 6rem !important;
13642
    padding-bottom: 6rem !important;
13643
  }
16848 stevensc 13644
 
16825 efrain 13645
  .pt-xl-0 {
13646
    padding-top: 0 !important;
13647
  }
16848 stevensc 13648
 
16825 efrain 13649
  .pt-xl-1 {
13650
    padding-top: 0.25rem !important;
13651
  }
16848 stevensc 13652
 
16825 efrain 13653
  .pt-xl-2 {
13654
    padding-top: 0.5rem !important;
13655
  }
16848 stevensc 13656
 
16825 efrain 13657
  .pt-xl-3 {
13658
    padding-top: 1rem !important;
13659
  }
16848 stevensc 13660
 
16825 efrain 13661
  .pt-xl-4 {
13662
    padding-top: 1.5rem !important;
13663
  }
16848 stevensc 13664
 
16825 efrain 13665
  .pt-xl-5 {
13666
    padding-top: 3rem !important;
13667
  }
16848 stevensc 13668
 
16825 efrain 13669
  .pt-xl-6 {
13670
    padding-top: 4.5rem !important;
13671
  }
16848 stevensc 13672
 
16825 efrain 13673
  .pt-xl-7 {
13674
    padding-top: 6rem !important;
13675
  }
16848 stevensc 13676
 
16825 efrain 13677
  .pe-xl-0 {
13678
    padding-right: 0 !important;
13679
  }
16848 stevensc 13680
 
16825 efrain 13681
  .pe-xl-1 {
13682
    padding-right: 0.25rem !important;
13683
  }
16848 stevensc 13684
 
16825 efrain 13685
  .pe-xl-2 {
13686
    padding-right: 0.5rem !important;
13687
  }
16848 stevensc 13688
 
16825 efrain 13689
  .pe-xl-3 {
13690
    padding-right: 1rem !important;
13691
  }
16848 stevensc 13692
 
16825 efrain 13693
  .pe-xl-4 {
13694
    padding-right: 1.5rem !important;
13695
  }
16848 stevensc 13696
 
16825 efrain 13697
  .pe-xl-5 {
13698
    padding-right: 3rem !important;
13699
  }
16848 stevensc 13700
 
16825 efrain 13701
  .pe-xl-6 {
13702
    padding-right: 4.5rem !important;
13703
  }
16848 stevensc 13704
 
16825 efrain 13705
  .pe-xl-7 {
13706
    padding-right: 6rem !important;
13707
  }
16848 stevensc 13708
 
16825 efrain 13709
  .pb-xl-0 {
13710
    padding-bottom: 0 !important;
13711
  }
16848 stevensc 13712
 
16825 efrain 13713
  .pb-xl-1 {
13714
    padding-bottom: 0.25rem !important;
13715
  }
16848 stevensc 13716
 
16825 efrain 13717
  .pb-xl-2 {
13718
    padding-bottom: 0.5rem !important;
13719
  }
16848 stevensc 13720
 
16825 efrain 13721
  .pb-xl-3 {
13722
    padding-bottom: 1rem !important;
13723
  }
16848 stevensc 13724
 
16825 efrain 13725
  .pb-xl-4 {
13726
    padding-bottom: 1.5rem !important;
13727
  }
16848 stevensc 13728
 
16825 efrain 13729
  .pb-xl-5 {
13730
    padding-bottom: 3rem !important;
13731
  }
16848 stevensc 13732
 
16825 efrain 13733
  .pb-xl-6 {
13734
    padding-bottom: 4.5rem !important;
13735
  }
16848 stevensc 13736
 
16825 efrain 13737
  .pb-xl-7 {
13738
    padding-bottom: 6rem !important;
13739
  }
16848 stevensc 13740
 
16825 efrain 13741
  .ps-xl-0 {
13742
    padding-left: 0 !important;
13743
  }
16848 stevensc 13744
 
16825 efrain 13745
  .ps-xl-1 {
13746
    padding-left: 0.25rem !important;
13747
  }
16848 stevensc 13748
 
16825 efrain 13749
  .ps-xl-2 {
13750
    padding-left: 0.5rem !important;
13751
  }
16848 stevensc 13752
 
16825 efrain 13753
  .ps-xl-3 {
13754
    padding-left: 1rem !important;
13755
  }
16848 stevensc 13756
 
16825 efrain 13757
  .ps-xl-4 {
13758
    padding-left: 1.5rem !important;
13759
  }
16848 stevensc 13760
 
16825 efrain 13761
  .ps-xl-5 {
13762
    padding-left: 3rem !important;
13763
  }
16848 stevensc 13764
 
16825 efrain 13765
  .ps-xl-6 {
13766
    padding-left: 4.5rem !important;
13767
  }
16848 stevensc 13768
 
16825 efrain 13769
  .ps-xl-7 {
13770
    padding-left: 6rem !important;
13771
  }
16848 stevensc 13772
 
16825 efrain 13773
  .gap-xl-0 {
13774
    gap: 0 !important;
13775
  }
16848 stevensc 13776
 
16825 efrain 13777
  .gap-xl-1 {
13778
    gap: 0.25rem !important;
13779
  }
16848 stevensc 13780
 
16825 efrain 13781
  .gap-xl-2 {
13782
    gap: 0.5rem !important;
13783
  }
16848 stevensc 13784
 
16825 efrain 13785
  .gap-xl-3 {
13786
    gap: 1rem !important;
13787
  }
16848 stevensc 13788
 
16825 efrain 13789
  .gap-xl-4 {
13790
    gap: 1.5rem !important;
13791
  }
16848 stevensc 13792
 
16825 efrain 13793
  .gap-xl-5 {
13794
    gap: 3rem !important;
13795
  }
16848 stevensc 13796
 
16825 efrain 13797
  .gap-xl-6 {
13798
    gap: 4.5rem !important;
13799
  }
16848 stevensc 13800
 
16825 efrain 13801
  .gap-xl-7 {
13802
    gap: 6rem !important;
13803
  }
16848 stevensc 13804
 
16825 efrain 13805
  .text-xl-start {
13806
    text-align: left !important;
13807
  }
16848 stevensc 13808
 
16825 efrain 13809
  .text-xl-end {
13810
    text-align: right !important;
13811
  }
16848 stevensc 13812
 
16825 efrain 13813
  .text-xl-center {
13814
    text-align: center !important;
13815
  }
13816
}
16848 stevensc 13817
 
16825 efrain 13818
@media (min-width: 1400px) {
13819
  .float-xxl-start {
13820
    float: left !important;
13821
  }
16848 stevensc 13822
 
16825 efrain 13823
  .float-xxl-end {
13824
    float: right !important;
13825
  }
16848 stevensc 13826
 
16825 efrain 13827
  .float-xxl-none {
13828
    float: none !important;
13829
  }
16848 stevensc 13830
 
16825 efrain 13831
  .d-xxl-inline {
13832
    display: inline !important;
13833
  }
16848 stevensc 13834
 
16825 efrain 13835
  .d-xxl-inline-block {
13836
    display: inline-block !important;
13837
  }
16848 stevensc 13838
 
16825 efrain 13839
  .d-xxl-block {
13840
    display: block !important;
13841
  }
16848 stevensc 13842
 
16825 efrain 13843
  .d-xxl-grid {
13844
    display: grid !important;
13845
  }
16848 stevensc 13846
 
16825 efrain 13847
  .d-xxl-table {
13848
    display: table !important;
13849
  }
16848 stevensc 13850
 
16825 efrain 13851
  .d-xxl-table-row {
13852
    display: table-row !important;
13853
  }
16848 stevensc 13854
 
16825 efrain 13855
  .d-xxl-table-cell {
13856
    display: table-cell !important;
13857
  }
16848 stevensc 13858
 
16825 efrain 13859
  .d-xxl-flex {
13860
    display: flex !important;
13861
  }
16848 stevensc 13862
 
16825 efrain 13863
  .d-xxl-inline-flex {
13864
    display: inline-flex !important;
13865
  }
16848 stevensc 13866
 
16825 efrain 13867
  .d-xxl-none {
13868
    display: none !important;
13869
  }
16848 stevensc 13870
 
16825 efrain 13871
  .border-xxl {
13872
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13873
  }
16848 stevensc 13874
 
16825 efrain 13875
  .border-xxl-0 {
13876
    border: 0 !important;
13877
  }
16848 stevensc 13878
 
16825 efrain 13879
  .border-top-xxl {
13880
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13881
  }
16848 stevensc 13882
 
16825 efrain 13883
  .border-top-xxl-0 {
13884
    border-top: 0 !important;
13885
  }
16848 stevensc 13886
 
16825 efrain 13887
  .border-end-xxl {
13888
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13889
  }
16848 stevensc 13890
 
16825 efrain 13891
  .border-end-xxl-0 {
13892
    border-right: 0 !important;
13893
  }
16848 stevensc 13894
 
16825 efrain 13895
  .border-bottom-xxl {
13896
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13897
  }
16848 stevensc 13898
 
16825 efrain 13899
  .border-bottom-xxl-0 {
13900
    border-bottom: 0 !important;
13901
  }
16848 stevensc 13902
 
16825 efrain 13903
  .border-start-xxl {
13904
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13905
  }
16848 stevensc 13906
 
16825 efrain 13907
  .border-start-xxl-0 {
13908
    border-left: 0 !important;
13909
  }
16848 stevensc 13910
 
16825 efrain 13911
  .flex-xxl-fill {
13912
    flex: 1 1 auto !important;
13913
  }
16848 stevensc 13914
 
16825 efrain 13915
  .flex-xxl-row {
13916
    flex-direction: row !important;
13917
  }
16848 stevensc 13918
 
16825 efrain 13919
  .flex-xxl-column {
13920
    flex-direction: column !important;
13921
  }
16848 stevensc 13922
 
16825 efrain 13923
  .flex-xxl-row-reverse {
13924
    flex-direction: row-reverse !important;
13925
  }
16848 stevensc 13926
 
16825 efrain 13927
  .flex-xxl-column-reverse {
13928
    flex-direction: column-reverse !important;
13929
  }
16848 stevensc 13930
 
16825 efrain 13931
  .flex-xxl-grow-0 {
13932
    flex-grow: 0 !important;
13933
  }
16848 stevensc 13934
 
16825 efrain 13935
  .flex-xxl-grow-1 {
13936
    flex-grow: 1 !important;
13937
  }
16848 stevensc 13938
 
16825 efrain 13939
  .flex-xxl-shrink-0 {
13940
    flex-shrink: 0 !important;
13941
  }
16848 stevensc 13942
 
16825 efrain 13943
  .flex-xxl-shrink-1 {
13944
    flex-shrink: 1 !important;
13945
  }
16848 stevensc 13946
 
16825 efrain 13947
  .flex-xxl-wrap {
13948
    flex-wrap: wrap !important;
13949
  }
16848 stevensc 13950
 
16825 efrain 13951
  .flex-xxl-nowrap {
13952
    flex-wrap: nowrap !important;
13953
  }
16848 stevensc 13954
 
16825 efrain 13955
  .flex-xxl-wrap-reverse {
13956
    flex-wrap: wrap-reverse !important;
13957
  }
16848 stevensc 13958
 
16825 efrain 13959
  .justify-content-xxl-start {
13960
    justify-content: flex-start !important;
13961
  }
16848 stevensc 13962
 
16825 efrain 13963
  .justify-content-xxl-end {
13964
    justify-content: flex-end !important;
13965
  }
16848 stevensc 13966
 
16825 efrain 13967
  .justify-content-xxl-center {
13968
    justify-content: center !important;
13969
  }
16848 stevensc 13970
 
16825 efrain 13971
  .justify-content-xxl-between {
13972
    justify-content: space-between !important;
13973
  }
16848 stevensc 13974
 
16825 efrain 13975
  .justify-content-xxl-around {
13976
    justify-content: space-around !important;
13977
  }
16848 stevensc 13978
 
16825 efrain 13979
  .justify-content-xxl-evenly {
13980
    justify-content: space-evenly !important;
13981
  }
16848 stevensc 13982
 
16825 efrain 13983
  .align-items-xxl-start {
13984
    align-items: flex-start !important;
13985
  }
16848 stevensc 13986
 
16825 efrain 13987
  .align-items-xxl-end {
13988
    align-items: flex-end !important;
13989
  }
16848 stevensc 13990
 
16825 efrain 13991
  .align-items-xxl-center {
13992
    align-items: center !important;
13993
  }
16848 stevensc 13994
 
16825 efrain 13995
  .align-items-xxl-baseline {
13996
    align-items: baseline !important;
13997
  }
16848 stevensc 13998
 
16825 efrain 13999
  .align-items-xxl-stretch {
14000
    align-items: stretch !important;
14001
  }
16848 stevensc 14002
 
16825 efrain 14003
  .align-content-xxl-start {
14004
    align-content: flex-start !important;
14005
  }
16848 stevensc 14006
 
16825 efrain 14007
  .align-content-xxl-end {
14008
    align-content: flex-end !important;
14009
  }
16848 stevensc 14010
 
16825 efrain 14011
  .align-content-xxl-center {
14012
    align-content: center !important;
14013
  }
16848 stevensc 14014
 
16825 efrain 14015
  .align-content-xxl-between {
14016
    align-content: space-between !important;
14017
  }
16848 stevensc 14018
 
16825 efrain 14019
  .align-content-xxl-around {
14020
    align-content: space-around !important;
14021
  }
16848 stevensc 14022
 
16825 efrain 14023
  .align-content-xxl-stretch {
14024
    align-content: stretch !important;
14025
  }
16848 stevensc 14026
 
16825 efrain 14027
  .align-self-xxl-auto {
14028
    align-self: auto !important;
14029
  }
16848 stevensc 14030
 
16825 efrain 14031
  .align-self-xxl-start {
14032
    align-self: flex-start !important;
14033
  }
16848 stevensc 14034
 
16825 efrain 14035
  .align-self-xxl-end {
14036
    align-self: flex-end !important;
14037
  }
16848 stevensc 14038
 
16825 efrain 14039
  .align-self-xxl-center {
14040
    align-self: center !important;
14041
  }
16848 stevensc 14042
 
16825 efrain 14043
  .align-self-xxl-baseline {
14044
    align-self: baseline !important;
14045
  }
16848 stevensc 14046
 
16825 efrain 14047
  .align-self-xxl-stretch {
14048
    align-self: stretch !important;
14049
  }
16848 stevensc 14050
 
16825 efrain 14051
  .order-xxl-first {
14052
    order: -1 !important;
14053
  }
16848 stevensc 14054
 
16825 efrain 14055
  .order-xxl-0 {
14056
    order: 0 !important;
14057
  }
16848 stevensc 14058
 
16825 efrain 14059
  .order-xxl-1 {
14060
    order: 1 !important;
14061
  }
16848 stevensc 14062
 
16825 efrain 14063
  .order-xxl-2 {
14064
    order: 2 !important;
14065
  }
16848 stevensc 14066
 
16825 efrain 14067
  .order-xxl-3 {
14068
    order: 3 !important;
14069
  }
16848 stevensc 14070
 
16825 efrain 14071
  .order-xxl-4 {
14072
    order: 4 !important;
14073
  }
16848 stevensc 14074
 
16825 efrain 14075
  .order-xxl-5 {
14076
    order: 5 !important;
14077
  }
16848 stevensc 14078
 
16825 efrain 14079
  .order-xxl-last {
14080
    order: 6 !important;
14081
  }
16848 stevensc 14082
 
16825 efrain 14083
  .m-xxl-0 {
14084
    margin: 0 !important;
14085
  }
16848 stevensc 14086
 
16825 efrain 14087
  .m-xxl-1 {
14088
    margin: 0.25rem !important;
14089
  }
16848 stevensc 14090
 
16825 efrain 14091
  .m-xxl-2 {
14092
    margin: 0.5rem !important;
14093
  }
16848 stevensc 14094
 
16825 efrain 14095
  .m-xxl-3 {
14096
    margin: 1rem !important;
14097
  }
16848 stevensc 14098
 
16825 efrain 14099
  .m-xxl-4 {
14100
    margin: 1.5rem !important;
14101
  }
16848 stevensc 14102
 
16825 efrain 14103
  .m-xxl-5 {
14104
    margin: 3rem !important;
14105
  }
16848 stevensc 14106
 
16825 efrain 14107
  .m-xxl-6 {
14108
    margin: 4.5rem !important;
14109
  }
16848 stevensc 14110
 
16825 efrain 14111
  .m-xxl-7 {
14112
    margin: 6rem !important;
14113
  }
16848 stevensc 14114
 
16825 efrain 14115
  .m-xxl-auto {
14116
    margin: auto !important;
14117
  }
16848 stevensc 14118
 
16825 efrain 14119
  .mx-xxl-0 {
14120
    margin-right: 0 !important;
14121
    margin-left: 0 !important;
14122
  }
16848 stevensc 14123
 
16825 efrain 14124
  .mx-xxl-1 {
14125
    margin-right: 0.25rem !important;
14126
    margin-left: 0.25rem !important;
14127
  }
16848 stevensc 14128
 
16825 efrain 14129
  .mx-xxl-2 {
14130
    margin-right: 0.5rem !important;
14131
    margin-left: 0.5rem !important;
14132
  }
16848 stevensc 14133
 
16825 efrain 14134
  .mx-xxl-3 {
14135
    margin-right: 1rem !important;
14136
    margin-left: 1rem !important;
14137
  }
16848 stevensc 14138
 
16825 efrain 14139
  .mx-xxl-4 {
14140
    margin-right: 1.5rem !important;
14141
    margin-left: 1.5rem !important;
14142
  }
16848 stevensc 14143
 
16825 efrain 14144
  .mx-xxl-5 {
14145
    margin-right: 3rem !important;
14146
    margin-left: 3rem !important;
14147
  }
16848 stevensc 14148
 
16825 efrain 14149
  .mx-xxl-6 {
14150
    margin-right: 4.5rem !important;
14151
    margin-left: 4.5rem !important;
14152
  }
16848 stevensc 14153
 
16825 efrain 14154
  .mx-xxl-7 {
14155
    margin-right: 6rem !important;
14156
    margin-left: 6rem !important;
14157
  }
16848 stevensc 14158
 
16825 efrain 14159
  .mx-xxl-auto {
14160
    margin-right: auto !important;
14161
    margin-left: auto !important;
14162
  }
16848 stevensc 14163
 
16825 efrain 14164
  .my-xxl-0 {
14165
    margin-top: 0 !important;
14166
    margin-bottom: 0 !important;
14167
  }
16848 stevensc 14168
 
16825 efrain 14169
  .my-xxl-1 {
14170
    margin-top: 0.25rem !important;
14171
    margin-bottom: 0.25rem !important;
14172
  }
16848 stevensc 14173
 
16825 efrain 14174
  .my-xxl-2 {
14175
    margin-top: 0.5rem !important;
14176
    margin-bottom: 0.5rem !important;
14177
  }
16848 stevensc 14178
 
16825 efrain 14179
  .my-xxl-3 {
14180
    margin-top: 1rem !important;
14181
    margin-bottom: 1rem !important;
14182
  }
16848 stevensc 14183
 
16825 efrain 14184
  .my-xxl-4 {
14185
    margin-top: 1.5rem !important;
14186
    margin-bottom: 1.5rem !important;
14187
  }
16848 stevensc 14188
 
16825 efrain 14189
  .my-xxl-5 {
14190
    margin-top: 3rem !important;
14191
    margin-bottom: 3rem !important;
14192
  }
16848 stevensc 14193
 
16825 efrain 14194
  .my-xxl-6 {
14195
    margin-top: 4.5rem !important;
14196
    margin-bottom: 4.5rem !important;
14197
  }
16848 stevensc 14198
 
16825 efrain 14199
  .my-xxl-7 {
14200
    margin-top: 6rem !important;
14201
    margin-bottom: 6rem !important;
14202
  }
16848 stevensc 14203
 
16825 efrain 14204
  .my-xxl-auto {
14205
    margin-top: auto !important;
14206
    margin-bottom: auto !important;
14207
  }
16848 stevensc 14208
 
16825 efrain 14209
  .mt-xxl-0 {
14210
    margin-top: 0 !important;
14211
  }
16848 stevensc 14212
 
16825 efrain 14213
  .mt-xxl-1 {
14214
    margin-top: 0.25rem !important;
14215
  }
16848 stevensc 14216
 
16825 efrain 14217
  .mt-xxl-2 {
14218
    margin-top: 0.5rem !important;
14219
  }
16848 stevensc 14220
 
16825 efrain 14221
  .mt-xxl-3 {
14222
    margin-top: 1rem !important;
14223
  }
16848 stevensc 14224
 
16825 efrain 14225
  .mt-xxl-4 {
14226
    margin-top: 1.5rem !important;
14227
  }
16848 stevensc 14228
 
16825 efrain 14229
  .mt-xxl-5 {
14230
    margin-top: 3rem !important;
14231
  }
16848 stevensc 14232
 
16825 efrain 14233
  .mt-xxl-6 {
14234
    margin-top: 4.5rem !important;
14235
  }
16848 stevensc 14236
 
16825 efrain 14237
  .mt-xxl-7 {
14238
    margin-top: 6rem !important;
14239
  }
16848 stevensc 14240
 
16825 efrain 14241
  .mt-xxl-auto {
14242
    margin-top: auto !important;
14243
  }
16848 stevensc 14244
 
16825 efrain 14245
  .me-xxl-0 {
14246
    margin-right: 0 !important;
14247
  }
16848 stevensc 14248
 
16825 efrain 14249
  .me-xxl-1 {
14250
    margin-right: 0.25rem !important;
14251
  }
16848 stevensc 14252
 
16825 efrain 14253
  .me-xxl-2 {
14254
    margin-right: 0.5rem !important;
14255
  }
16848 stevensc 14256
 
16825 efrain 14257
  .me-xxl-3 {
14258
    margin-right: 1rem !important;
14259
  }
16848 stevensc 14260
 
16825 efrain 14261
  .me-xxl-4 {
14262
    margin-right: 1.5rem !important;
14263
  }
16848 stevensc 14264
 
16825 efrain 14265
  .me-xxl-5 {
14266
    margin-right: 3rem !important;
14267
  }
16848 stevensc 14268
 
16825 efrain 14269
  .me-xxl-6 {
14270
    margin-right: 4.5rem !important;
14271
  }
16848 stevensc 14272
 
16825 efrain 14273
  .me-xxl-7 {
14274
    margin-right: 6rem !important;
14275
  }
16848 stevensc 14276
 
16825 efrain 14277
  .me-xxl-auto {
14278
    margin-right: auto !important;
14279
  }
16848 stevensc 14280
 
16825 efrain 14281
  .mb-xxl-0 {
14282
    margin-bottom: 0 !important;
14283
  }
16848 stevensc 14284
 
16825 efrain 14285
  .mb-xxl-1 {
14286
    margin-bottom: 0.25rem !important;
14287
  }
16848 stevensc 14288
 
16825 efrain 14289
  .mb-xxl-2 {
14290
    margin-bottom: 0.5rem !important;
14291
  }
16848 stevensc 14292
 
16825 efrain 14293
  .mb-xxl-3 {
14294
    margin-bottom: 1rem !important;
14295
  }
16848 stevensc 14296
 
16825 efrain 14297
  .mb-xxl-4 {
14298
    margin-bottom: 1.5rem !important;
14299
  }
16848 stevensc 14300
 
16825 efrain 14301
  .mb-xxl-5 {
14302
    margin-bottom: 3rem !important;
14303
  }
16848 stevensc 14304
 
16825 efrain 14305
  .mb-xxl-6 {
14306
    margin-bottom: 4.5rem !important;
14307
  }
16848 stevensc 14308
 
16825 efrain 14309
  .mb-xxl-7 {
14310
    margin-bottom: 6rem !important;
14311
  }
16848 stevensc 14312
 
16825 efrain 14313
  .mb-xxl-auto {
14314
    margin-bottom: auto !important;
14315
  }
16848 stevensc 14316
 
16825 efrain 14317
  .ms-xxl-0 {
14318
    margin-left: 0 !important;
14319
  }
16848 stevensc 14320
 
16825 efrain 14321
  .ms-xxl-1 {
14322
    margin-left: 0.25rem !important;
14323
  }
16848 stevensc 14324
 
16825 efrain 14325
  .ms-xxl-2 {
14326
    margin-left: 0.5rem !important;
14327
  }
16848 stevensc 14328
 
16825 efrain 14329
  .ms-xxl-3 {
14330
    margin-left: 1rem !important;
14331
  }
16848 stevensc 14332
 
16825 efrain 14333
  .ms-xxl-4 {
14334
    margin-left: 1.5rem !important;
14335
  }
16848 stevensc 14336
 
16825 efrain 14337
  .ms-xxl-5 {
14338
    margin-left: 3rem !important;
14339
  }
16848 stevensc 14340
 
16825 efrain 14341
  .ms-xxl-6 {
14342
    margin-left: 4.5rem !important;
14343
  }
16848 stevensc 14344
 
16825 efrain 14345
  .ms-xxl-7 {
14346
    margin-left: 6rem !important;
14347
  }
16848 stevensc 14348
 
16825 efrain 14349
  .ms-xxl-auto {
14350
    margin-left: auto !important;
14351
  }
16848 stevensc 14352
 
16825 efrain 14353
  .m-xxl-n1 {
14354
    margin: -0.25rem !important;
14355
  }
16848 stevensc 14356
 
16825 efrain 14357
  .m-xxl-n2 {
14358
    margin: -0.5rem !important;
14359
  }
16848 stevensc 14360
 
16825 efrain 14361
  .m-xxl-n3 {
14362
    margin: -1rem !important;
14363
  }
16848 stevensc 14364
 
16825 efrain 14365
  .m-xxl-n4 {
14366
    margin: -1.5rem !important;
14367
  }
16848 stevensc 14368
 
16825 efrain 14369
  .m-xxl-n5 {
14370
    margin: -3rem !important;
14371
  }
16848 stevensc 14372
 
16825 efrain 14373
  .m-xxl-n6 {
14374
    margin: -4.5rem !important;
14375
  }
16848 stevensc 14376
 
16825 efrain 14377
  .m-xxl-n7 {
14378
    margin: -6rem !important;
14379
  }
16848 stevensc 14380
 
16825 efrain 14381
  .mx-xxl-n1 {
14382
    margin-right: -0.25rem !important;
14383
    margin-left: -0.25rem !important;
14384
  }
16848 stevensc 14385
 
16825 efrain 14386
  .mx-xxl-n2 {
14387
    margin-right: -0.5rem !important;
14388
    margin-left: -0.5rem !important;
14389
  }
16848 stevensc 14390
 
16825 efrain 14391
  .mx-xxl-n3 {
14392
    margin-right: -1rem !important;
14393
    margin-left: -1rem !important;
14394
  }
16848 stevensc 14395
 
16825 efrain 14396
  .mx-xxl-n4 {
14397
    margin-right: -1.5rem !important;
14398
    margin-left: -1.5rem !important;
14399
  }
16848 stevensc 14400
 
16825 efrain 14401
  .mx-xxl-n5 {
14402
    margin-right: -3rem !important;
14403
    margin-left: -3rem !important;
14404
  }
16848 stevensc 14405
 
16825 efrain 14406
  .mx-xxl-n6 {
14407
    margin-right: -4.5rem !important;
14408
    margin-left: -4.5rem !important;
14409
  }
16848 stevensc 14410
 
16825 efrain 14411
  .mx-xxl-n7 {
14412
    margin-right: -6rem !important;
14413
    margin-left: -6rem !important;
14414
  }
16848 stevensc 14415
 
16825 efrain 14416
  .my-xxl-n1 {
14417
    margin-top: -0.25rem !important;
14418
    margin-bottom: -0.25rem !important;
14419
  }
16848 stevensc 14420
 
16825 efrain 14421
  .my-xxl-n2 {
14422
    margin-top: -0.5rem !important;
14423
    margin-bottom: -0.5rem !important;
14424
  }
16848 stevensc 14425
 
16825 efrain 14426
  .my-xxl-n3 {
14427
    margin-top: -1rem !important;
14428
    margin-bottom: -1rem !important;
14429
  }
16848 stevensc 14430
 
16825 efrain 14431
  .my-xxl-n4 {
14432
    margin-top: -1.5rem !important;
14433
    margin-bottom: -1.5rem !important;
14434
  }
16848 stevensc 14435
 
16825 efrain 14436
  .my-xxl-n5 {
14437
    margin-top: -3rem !important;
14438
    margin-bottom: -3rem !important;
14439
  }
16848 stevensc 14440
 
16825 efrain 14441
  .my-xxl-n6 {
14442
    margin-top: -4.5rem !important;
14443
    margin-bottom: -4.5rem !important;
14444
  }
16848 stevensc 14445
 
16825 efrain 14446
  .my-xxl-n7 {
14447
    margin-top: -6rem !important;
14448
    margin-bottom: -6rem !important;
14449
  }
16848 stevensc 14450
 
16825 efrain 14451
  .mt-xxl-n1 {
14452
    margin-top: -0.25rem !important;
14453
  }
16848 stevensc 14454
 
16825 efrain 14455
  .mt-xxl-n2 {
14456
    margin-top: -0.5rem !important;
14457
  }
16848 stevensc 14458
 
16825 efrain 14459
  .mt-xxl-n3 {
14460
    margin-top: -1rem !important;
14461
  }
16848 stevensc 14462
 
16825 efrain 14463
  .mt-xxl-n4 {
14464
    margin-top: -1.5rem !important;
14465
  }
16848 stevensc 14466
 
16825 efrain 14467
  .mt-xxl-n5 {
14468
    margin-top: -3rem !important;
14469
  }
16848 stevensc 14470
 
16825 efrain 14471
  .mt-xxl-n6 {
14472
    margin-top: -4.5rem !important;
14473
  }
16848 stevensc 14474
 
16825 efrain 14475
  .mt-xxl-n7 {
14476
    margin-top: -6rem !important;
14477
  }
16848 stevensc 14478
 
16825 efrain 14479
  .me-xxl-n1 {
14480
    margin-right: -0.25rem !important;
14481
  }
16848 stevensc 14482
 
16825 efrain 14483
  .me-xxl-n2 {
14484
    margin-right: -0.5rem !important;
14485
  }
16848 stevensc 14486
 
16825 efrain 14487
  .me-xxl-n3 {
14488
    margin-right: -1rem !important;
14489
  }
16848 stevensc 14490
 
16825 efrain 14491
  .me-xxl-n4 {
14492
    margin-right: -1.5rem !important;
14493
  }
16848 stevensc 14494
 
16825 efrain 14495
  .me-xxl-n5 {
14496
    margin-right: -3rem !important;
14497
  }
16848 stevensc 14498
 
16825 efrain 14499
  .me-xxl-n6 {
14500
    margin-right: -4.5rem !important;
14501
  }
16848 stevensc 14502
 
16825 efrain 14503
  .me-xxl-n7 {
14504
    margin-right: -6rem !important;
14505
  }
16848 stevensc 14506
 
16825 efrain 14507
  .mb-xxl-n1 {
14508
    margin-bottom: -0.25rem !important;
14509
  }
16848 stevensc 14510
 
16825 efrain 14511
  .mb-xxl-n2 {
14512
    margin-bottom: -0.5rem !important;
14513
  }
16848 stevensc 14514
 
16825 efrain 14515
  .mb-xxl-n3 {
14516
    margin-bottom: -1rem !important;
14517
  }
16848 stevensc 14518
 
16825 efrain 14519
  .mb-xxl-n4 {
14520
    margin-bottom: -1.5rem !important;
14521
  }
16848 stevensc 14522
 
16825 efrain 14523
  .mb-xxl-n5 {
14524
    margin-bottom: -3rem !important;
14525
  }
16848 stevensc 14526
 
16825 efrain 14527
  .mb-xxl-n6 {
14528
    margin-bottom: -4.5rem !important;
14529
  }
16848 stevensc 14530
 
16825 efrain 14531
  .mb-xxl-n7 {
14532
    margin-bottom: -6rem !important;
14533
  }
16848 stevensc 14534
 
16825 efrain 14535
  .ms-xxl-n1 {
14536
    margin-left: -0.25rem !important;
14537
  }
16848 stevensc 14538
 
16825 efrain 14539
  .ms-xxl-n2 {
14540
    margin-left: -0.5rem !important;
14541
  }
16848 stevensc 14542
 
16825 efrain 14543
  .ms-xxl-n3 {
14544
    margin-left: -1rem !important;
14545
  }
16848 stevensc 14546
 
16825 efrain 14547
  .ms-xxl-n4 {
14548
    margin-left: -1.5rem !important;
14549
  }
16848 stevensc 14550
 
16825 efrain 14551
  .ms-xxl-n5 {
14552
    margin-left: -3rem !important;
14553
  }
16848 stevensc 14554
 
16825 efrain 14555
  .ms-xxl-n6 {
14556
    margin-left: -4.5rem !important;
14557
  }
16848 stevensc 14558
 
16825 efrain 14559
  .ms-xxl-n7 {
14560
    margin-left: -6rem !important;
14561
  }
16848 stevensc 14562
 
16825 efrain 14563
  .p-xxl-0 {
14564
    padding: 0 !important;
14565
  }
16848 stevensc 14566
 
16825 efrain 14567
  .p-xxl-1 {
14568
    padding: 0.25rem !important;
14569
  }
16848 stevensc 14570
 
16825 efrain 14571
  .p-xxl-2 {
14572
    padding: 0.5rem !important;
14573
  }
16848 stevensc 14574
 
16825 efrain 14575
  .p-xxl-3 {
14576
    padding: 1rem !important;
14577
  }
16848 stevensc 14578
 
16825 efrain 14579
  .p-xxl-4 {
14580
    padding: 1.5rem !important;
14581
  }
16848 stevensc 14582
 
16825 efrain 14583
  .p-xxl-5 {
14584
    padding: 3rem !important;
14585
  }
16848 stevensc 14586
 
16825 efrain 14587
  .p-xxl-6 {
14588
    padding: 4.5rem !important;
14589
  }
16848 stevensc 14590
 
16825 efrain 14591
  .p-xxl-7 {
14592
    padding: 6rem !important;
14593
  }
16848 stevensc 14594
 
16825 efrain 14595
  .px-xxl-0 {
14596
    padding-right: 0 !important;
14597
    padding-left: 0 !important;
14598
  }
16848 stevensc 14599
 
16825 efrain 14600
  .px-xxl-1 {
14601
    padding-right: 0.25rem !important;
14602
    padding-left: 0.25rem !important;
14603
  }
16848 stevensc 14604
 
16825 efrain 14605
  .px-xxl-2 {
14606
    padding-right: 0.5rem !important;
14607
    padding-left: 0.5rem !important;
14608
  }
16848 stevensc 14609
 
16825 efrain 14610
  .px-xxl-3 {
14611
    padding-right: 1rem !important;
14612
    padding-left: 1rem !important;
14613
  }
16848 stevensc 14614
 
16825 efrain 14615
  .px-xxl-4 {
14616
    padding-right: 1.5rem !important;
14617
    padding-left: 1.5rem !important;
14618
  }
16848 stevensc 14619
 
16825 efrain 14620
  .px-xxl-5 {
14621
    padding-right: 3rem !important;
14622
    padding-left: 3rem !important;
14623
  }
16848 stevensc 14624
 
16825 efrain 14625
  .px-xxl-6 {
14626
    padding-right: 4.5rem !important;
14627
    padding-left: 4.5rem !important;
14628
  }
16848 stevensc 14629
 
16825 efrain 14630
  .px-xxl-7 {
14631
    padding-right: 6rem !important;
14632
    padding-left: 6rem !important;
14633
  }
16848 stevensc 14634
 
16825 efrain 14635
  .py-xxl-0 {
14636
    padding-top: 0 !important;
14637
    padding-bottom: 0 !important;
14638
  }
16848 stevensc 14639
 
16825 efrain 14640
  .py-xxl-1 {
14641
    padding-top: 0.25rem !important;
14642
    padding-bottom: 0.25rem !important;
14643
  }
16848 stevensc 14644
 
16825 efrain 14645
  .py-xxl-2 {
14646
    padding-top: 0.5rem !important;
14647
    padding-bottom: 0.5rem !important;
14648
  }
16848 stevensc 14649
 
16825 efrain 14650
  .py-xxl-3 {
14651
    padding-top: 1rem !important;
14652
    padding-bottom: 1rem !important;
14653
  }
16848 stevensc 14654
 
16825 efrain 14655
  .py-xxl-4 {
14656
    padding-top: 1.5rem !important;
14657
    padding-bottom: 1.5rem !important;
14658
  }
16848 stevensc 14659
 
16825 efrain 14660
  .py-xxl-5 {
14661
    padding-top: 3rem !important;
14662
    padding-bottom: 3rem !important;
14663
  }
16848 stevensc 14664
 
16825 efrain 14665
  .py-xxl-6 {
14666
    padding-top: 4.5rem !important;
14667
    padding-bottom: 4.5rem !important;
14668
  }
16848 stevensc 14669
 
16825 efrain 14670
  .py-xxl-7 {
14671
    padding-top: 6rem !important;
14672
    padding-bottom: 6rem !important;
14673
  }
16848 stevensc 14674
 
16825 efrain 14675
  .pt-xxl-0 {
14676
    padding-top: 0 !important;
14677
  }
16848 stevensc 14678
 
16825 efrain 14679
  .pt-xxl-1 {
14680
    padding-top: 0.25rem !important;
14681
  }
16848 stevensc 14682
 
16825 efrain 14683
  .pt-xxl-2 {
14684
    padding-top: 0.5rem !important;
14685
  }
16848 stevensc 14686
 
16825 efrain 14687
  .pt-xxl-3 {
14688
    padding-top: 1rem !important;
14689
  }
16848 stevensc 14690
 
16825 efrain 14691
  .pt-xxl-4 {
14692
    padding-top: 1.5rem !important;
14693
  }
16848 stevensc 14694
 
16825 efrain 14695
  .pt-xxl-5 {
14696
    padding-top: 3rem !important;
14697
  }
16848 stevensc 14698
 
16825 efrain 14699
  .pt-xxl-6 {
14700
    padding-top: 4.5rem !important;
14701
  }
16848 stevensc 14702
 
16825 efrain 14703
  .pt-xxl-7 {
14704
    padding-top: 6rem !important;
14705
  }
16848 stevensc 14706
 
16825 efrain 14707
  .pe-xxl-0 {
14708
    padding-right: 0 !important;
14709
  }
16848 stevensc 14710
 
16825 efrain 14711
  .pe-xxl-1 {
14712
    padding-right: 0.25rem !important;
14713
  }
16848 stevensc 14714
 
16825 efrain 14715
  .pe-xxl-2 {
14716
    padding-right: 0.5rem !important;
14717
  }
16848 stevensc 14718
 
16825 efrain 14719
  .pe-xxl-3 {
14720
    padding-right: 1rem !important;
14721
  }
16848 stevensc 14722
 
16825 efrain 14723
  .pe-xxl-4 {
14724
    padding-right: 1.5rem !important;
14725
  }
16848 stevensc 14726
 
16825 efrain 14727
  .pe-xxl-5 {
14728
    padding-right: 3rem !important;
14729
  }
16848 stevensc 14730
 
16825 efrain 14731
  .pe-xxl-6 {
14732
    padding-right: 4.5rem !important;
14733
  }
16848 stevensc 14734
 
16825 efrain 14735
  .pe-xxl-7 {
14736
    padding-right: 6rem !important;
14737
  }
16848 stevensc 14738
 
16825 efrain 14739
  .pb-xxl-0 {
14740
    padding-bottom: 0 !important;
14741
  }
16848 stevensc 14742
 
16825 efrain 14743
  .pb-xxl-1 {
14744
    padding-bottom: 0.25rem !important;
14745
  }
16848 stevensc 14746
 
16825 efrain 14747
  .pb-xxl-2 {
14748
    padding-bottom: 0.5rem !important;
14749
  }
16848 stevensc 14750
 
16825 efrain 14751
  .pb-xxl-3 {
14752
    padding-bottom: 1rem !important;
14753
  }
16848 stevensc 14754
 
16825 efrain 14755
  .pb-xxl-4 {
14756
    padding-bottom: 1.5rem !important;
14757
  }
16848 stevensc 14758
 
16825 efrain 14759
  .pb-xxl-5 {
14760
    padding-bottom: 3rem !important;
14761
  }
16848 stevensc 14762
 
16825 efrain 14763
  .pb-xxl-6 {
14764
    padding-bottom: 4.5rem !important;
14765
  }
16848 stevensc 14766
 
16825 efrain 14767
  .pb-xxl-7 {
14768
    padding-bottom: 6rem !important;
14769
  }
16848 stevensc 14770
 
16825 efrain 14771
  .ps-xxl-0 {
14772
    padding-left: 0 !important;
14773
  }
16848 stevensc 14774
 
16825 efrain 14775
  .ps-xxl-1 {
14776
    padding-left: 0.25rem !important;
14777
  }
16848 stevensc 14778
 
16825 efrain 14779
  .ps-xxl-2 {
14780
    padding-left: 0.5rem !important;
14781
  }
16848 stevensc 14782
 
16825 efrain 14783
  .ps-xxl-3 {
14784
    padding-left: 1rem !important;
14785
  }
16848 stevensc 14786
 
16825 efrain 14787
  .ps-xxl-4 {
14788
    padding-left: 1.5rem !important;
14789
  }
16848 stevensc 14790
 
16825 efrain 14791
  .ps-xxl-5 {
14792
    padding-left: 3rem !important;
14793
  }
16848 stevensc 14794
 
16825 efrain 14795
  .ps-xxl-6 {
14796
    padding-left: 4.5rem !important;
14797
  }
16848 stevensc 14798
 
16825 efrain 14799
  .ps-xxl-7 {
14800
    padding-left: 6rem !important;
14801
  }
16848 stevensc 14802
 
16825 efrain 14803
  .gap-xxl-0 {
14804
    gap: 0 !important;
14805
  }
16848 stevensc 14806
 
16825 efrain 14807
  .gap-xxl-1 {
14808
    gap: 0.25rem !important;
14809
  }
16848 stevensc 14810
 
16825 efrain 14811
  .gap-xxl-2 {
14812
    gap: 0.5rem !important;
14813
  }
16848 stevensc 14814
 
16825 efrain 14815
  .gap-xxl-3 {
14816
    gap: 1rem !important;
14817
  }
16848 stevensc 14818
 
16825 efrain 14819
  .gap-xxl-4 {
14820
    gap: 1.5rem !important;
14821
  }
16848 stevensc 14822
 
16825 efrain 14823
  .gap-xxl-5 {
14824
    gap: 3rem !important;
14825
  }
16848 stevensc 14826
 
16825 efrain 14827
  .gap-xxl-6 {
14828
    gap: 4.5rem !important;
14829
  }
16848 stevensc 14830
 
16825 efrain 14831
  .gap-xxl-7 {
14832
    gap: 6rem !important;
14833
  }
16848 stevensc 14834
 
16825 efrain 14835
  .text-xxl-start {
14836
    text-align: left !important;
14837
  }
16848 stevensc 14838
 
16825 efrain 14839
  .text-xxl-end {
14840
    text-align: right !important;
14841
  }
16848 stevensc 14842
 
16825 efrain 14843
  .text-xxl-center {
14844
    text-align: center !important;
14845
  }
14846
}
16848 stevensc 14847
 
16825 efrain 14848
@media (min-width: 1200px) {
14849
  .fs-1 {
14850
    font-size: 2.5rem !important;
14851
  }
16848 stevensc 14852
 
16825 efrain 14853
  .fs-2 {
14854
    font-size: 2rem !important;
14855
  }
16848 stevensc 14856
 
16825 efrain 14857
  .fs-3 {
14858
    font-size: 1.5rem !important;
14859
  }
14860
}
16848 stevensc 14861
 
16825 efrain 14862
@media print {
14863
  .d-print-inline {
14864
    display: inline !important;
14865
  }
16848 stevensc 14866
 
16825 efrain 14867
  .d-print-inline-block {
14868
    display: inline-block !important;
14869
  }
16848 stevensc 14870
 
16825 efrain 14871
  .d-print-block {
14872
    display: block !important;
14873
  }
16848 stevensc 14874
 
16825 efrain 14875
  .d-print-grid {
14876
    display: grid !important;
14877
  }
16848 stevensc 14878
 
16825 efrain 14879
  .d-print-table {
14880
    display: table !important;
14881
  }
16848 stevensc 14882
 
16825 efrain 14883
  .d-print-table-row {
14884
    display: table-row !important;
14885
  }
16848 stevensc 14886
 
16825 efrain 14887
  .d-print-table-cell {
14888
    display: table-cell !important;
14889
  }
16848 stevensc 14890
 
16825 efrain 14891
  .d-print-flex {
14892
    display: flex !important;
14893
  }
16848 stevensc 14894
 
16825 efrain 14895
  .d-print-inline-flex {
14896
    display: inline-flex !important;
14897
  }
16848 stevensc 14898
 
16825 efrain 14899
  .d-print-none {
14900
    display: none !important;
14901
  }
14902
}
16848 stevensc 14903
 
16825 efrain 14904
@keyframes dropdownAnimation {
14905
  from {
14906
    opacity: 0;
14907
    transform: translate3d(0, 20px, 0);
14908
  }
16848 stevensc 14909
 
16825 efrain 14910
  to {
14911
    opacity: 1;
14912
    transform: none;
14913
    transform: translate3d(0, 0px, 0);
14914
  }
14915
}
16848 stevensc 14916
 
14917
.dropdownAnimation,
14918
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14919
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14920
  -webkit-animation-name: dropdownAnimation;
14921
  animation-name: dropdownAnimation;
14922
  -webkit-animation-duration: 0.2s;
14923
  animation-duration: 0.2s;
14924
  -webkit-animation-fill-mode: both;
14925
  animation-fill-mode: both;
14926
}
14927
 
14928
@keyframes fadeOut {
14929
  from {
14930
    opacity: 1;
14931
  }
16848 stevensc 14932
 
16825 efrain 14933
  to {
14934
    opacity: 0;
14935
  }
14936
}
16848 stevensc 14937
 
16825 efrain 14938
.fadeOut {
14939
  animation-name: fadeOUt;
14940
}
14941
 
14942
@keyframes fadeInUp {
14943
  from {
14944
    opacity: 0;
14945
    transform: translate3d(0, 100%, 0);
14946
  }
16848 stevensc 14947
 
16825 efrain 14948
  to {
14949
    opacity: 1;
14950
    transform: none;
14951
  }
14952
}
16848 stevensc 14953
 
16825 efrain 14954
.fadeInUp {
14955
  animation-name: fadeInUp;
14956
}
14957
 
16848 stevensc 14958
.infinite-spin,
14959
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14960
  animation-name: spin;
14961
  animation-duration: 3s;
14962
  animation-iteration-count: infinite;
14963
  animation-timing-function: linear;
14964
}
16848 stevensc 14965
 
16825 efrain 14966
@keyframes spin {
14967
  from {
14968
    transform: rotate(0deg);
14969
  }
16848 stevensc 14970
 
16825 efrain 14971
  to {
14972
    transform: rotate(360deg);
14973
  }
14974
}
14975
 
16848 stevensc 14976
.pulse,
14977
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14978
  animation-name: pulse;
14979
  animation-duration: 0.9s;
14980
  animation-iteration-count: infinite;
14981
  animation-timing-function: ease-out;
14982
}
16848 stevensc 14983
 
16825 efrain 14984
@keyframes pulse {
14985
  0% {
14986
    opacity: 1;
14987
    width: 7px;
14988
    height: 7px;
14989
    left: 0;
14990
    top: 0;
14991
  }
16848 stevensc 14992
 
16825 efrain 14993
  95% {
14994
    opacity: 0.1;
14995
    left: -10.5px;
14996
    top: -10.5px;
14997
    width: 28px;
14998
    height: 28px;
14999
  }
16848 stevensc 15000
 
16825 efrain 15001
  100% {
15002
    opacity: 0;
15003
    width: 7px;
15004
    height: 7px;
15005
    left: 0;
15006
    top: 0;
15007
  }
15008
}
15009
 
15010
.wd-5 {
15011
  width: 5px;
15012
}
15013
 
15014
.wd-5p {
15015
  width: 5%;
15016
}
15017
 
15018
.mx-wd-5p {
15019
  max-width: 5%;
15020
}
15021
 
15022
.mn-wd-5p {
15023
  min-width: 5%;
15024
}
15025
 
15026
.wd-5-f {
15027
  width: 5px !important;
15028
}
15029
 
15030
.wd-5p-f {
15031
  width: 5% !important;
15032
}
15033
 
15034
.mx-wd-5p-f {
15035
  max-width: 5% !important;
15036
}
15037
 
15038
.mn-wd-5p-f {
15039
  min-width: 5% !important;
15040
}
15041
 
15042
.wd-10 {
15043
  width: 10px;
15044
}
15045
 
15046
.wd-10p {
15047
  width: 10%;
15048
}
15049
 
15050
.mx-wd-10p {
15051
  max-width: 10%;
15052
}
15053
 
15054
.mn-wd-10p {
15055
  min-width: 10%;
15056
}
15057
 
15058
.wd-10-f {
15059
  width: 10px !important;
15060
}
15061
 
15062
.wd-10p-f {
15063
  width: 10% !important;
15064
}
15065
 
15066
.mx-wd-10p-f {
15067
  max-width: 10% !important;
15068
}
15069
 
15070
.mn-wd-10p-f {
15071
  min-width: 10% !important;
15072
}
15073
 
15074
.wd-15 {
15075
  width: 15px;
15076
}
15077
 
15078
.wd-15p {
15079
  width: 15%;
15080
}
15081
 
15082
.mx-wd-15p {
15083
  max-width: 15%;
15084
}
15085
 
15086
.mn-wd-15p {
15087
  min-width: 15%;
15088
}
15089
 
15090
.wd-15-f {
15091
  width: 15px !important;
15092
}
15093
 
15094
.wd-15p-f {
15095
  width: 15% !important;
15096
}
15097
 
15098
.mx-wd-15p-f {
15099
  max-width: 15% !important;
15100
}
15101
 
15102
.mn-wd-15p-f {
15103
  min-width: 15% !important;
15104
}
15105
 
15106
.wd-20 {
15107
  width: 20px;
15108
}
15109
 
15110
.wd-20p {
15111
  width: 20%;
15112
}
15113
 
15114
.mx-wd-20p {
15115
  max-width: 20%;
15116
}
15117
 
15118
.mn-wd-20p {
15119
  min-width: 20%;
15120
}
15121
 
15122
.wd-20-f {
15123
  width: 20px !important;
15124
}
15125
 
15126
.wd-20p-f {
15127
  width: 20% !important;
15128
}
15129
 
15130
.mx-wd-20p-f {
15131
  max-width: 20% !important;
15132
}
15133
 
15134
.mn-wd-20p-f {
15135
  min-width: 20% !important;
15136
}
15137
 
15138
.wd-25 {
15139
  width: 25px;
15140
}
15141
 
15142
.wd-25p {
15143
  width: 25%;
15144
}
15145
 
15146
.mx-wd-25p {
15147
  max-width: 25%;
15148
}
15149
 
15150
.mn-wd-25p {
15151
  min-width: 25%;
15152
}
15153
 
15154
.wd-25-f {
15155
  width: 25px !important;
15156
}
15157
 
15158
.wd-25p-f {
15159
  width: 25% !important;
15160
}
15161
 
15162
.mx-wd-25p-f {
15163
  max-width: 25% !important;
15164
}
15165
 
15166
.mn-wd-25p-f {
15167
  min-width: 25% !important;
15168
}
15169
 
15170
.wd-30 {
15171
  width: 30px;
15172
}
15173
 
15174
.wd-30p {
15175
  width: 30%;
15176
}
15177
 
15178
.mx-wd-30p {
15179
  max-width: 30%;
15180
}
15181
 
15182
.mn-wd-30p {
15183
  min-width: 30%;
15184
}
15185
 
15186
.wd-30-f {
15187
  width: 30px !important;
15188
}
15189
 
15190
.wd-30p-f {
15191
  width: 30% !important;
15192
}
15193
 
15194
.mx-wd-30p-f {
15195
  max-width: 30% !important;
15196
}
15197
 
15198
.mn-wd-30p-f {
15199
  min-width: 30% !important;
15200
}
15201
 
15202
.wd-35 {
15203
  width: 35px;
15204
}
15205
 
15206
.wd-35p {
15207
  width: 35%;
15208
}
15209
 
15210
.mx-wd-35p {
15211
  max-width: 35%;
15212
}
15213
 
15214
.mn-wd-35p {
15215
  min-width: 35%;
15216
}
15217
 
15218
.wd-35-f {
15219
  width: 35px !important;
15220
}
15221
 
15222
.wd-35p-f {
15223
  width: 35% !important;
15224
}
15225
 
15226
.mx-wd-35p-f {
15227
  max-width: 35% !important;
15228
}
15229
 
15230
.mn-wd-35p-f {
15231
  min-width: 35% !important;
15232
}
15233
 
15234
.wd-40 {
15235
  width: 40px;
15236
}
15237
 
15238
.wd-40p {
15239
  width: 40%;
15240
}
15241
 
15242
.mx-wd-40p {
15243
  max-width: 40%;
15244
}
15245
 
15246
.mn-wd-40p {
15247
  min-width: 40%;
15248
}
15249
 
15250
.wd-40-f {
15251
  width: 40px !important;
15252
}
15253
 
15254
.wd-40p-f {
15255
  width: 40% !important;
15256
}
15257
 
15258
.mx-wd-40p-f {
15259
  max-width: 40% !important;
15260
}
15261
 
15262
.mn-wd-40p-f {
15263
  min-width: 40% !important;
15264
}
15265
 
15266
.wd-45 {
15267
  width: 45px;
15268
}
15269
 
15270
.wd-45p {
15271
  width: 45%;
15272
}
15273
 
15274
.mx-wd-45p {
15275
  max-width: 45%;
15276
}
15277
 
15278
.mn-wd-45p {
15279
  min-width: 45%;
15280
}
15281
 
15282
.wd-45-f {
15283
  width: 45px !important;
15284
}
15285
 
15286
.wd-45p-f {
15287
  width: 45% !important;
15288
}
15289
 
15290
.mx-wd-45p-f {
15291
  max-width: 45% !important;
15292
}
15293
 
15294
.mn-wd-45p-f {
15295
  min-width: 45% !important;
15296
}
15297
 
15298
.wd-50 {
15299
  width: 50px;
15300
}
15301
 
15302
.wd-50p {
15303
  width: 50%;
15304
}
15305
 
15306
.mx-wd-50p {
15307
  max-width: 50%;
15308
}
15309
 
15310
.mn-wd-50p {
15311
  min-width: 50%;
15312
}
15313
 
15314
.wd-50-f {
15315
  width: 50px !important;
15316
}
15317
 
15318
.wd-50p-f {
15319
  width: 50% !important;
15320
}
15321
 
15322
.mx-wd-50p-f {
15323
  max-width: 50% !important;
15324
}
15325
 
15326
.mn-wd-50p-f {
15327
  min-width: 50% !important;
15328
}
15329
 
15330
.wd-55 {
15331
  width: 55px;
15332
}
15333
 
15334
.wd-55p {
15335
  width: 55%;
15336
}
15337
 
15338
.mx-wd-55p {
15339
  max-width: 55%;
15340
}
15341
 
15342
.mn-wd-55p {
15343
  min-width: 55%;
15344
}
15345
 
15346
.wd-55-f {
15347
  width: 55px !important;
15348
}
15349
 
15350
.wd-55p-f {
15351
  width: 55% !important;
15352
}
15353
 
15354
.mx-wd-55p-f {
15355
  max-width: 55% !important;
15356
}
15357
 
15358
.mn-wd-55p-f {
15359
  min-width: 55% !important;
15360
}
15361
 
15362
.wd-60 {
15363
  width: 60px;
15364
}
15365
 
15366
.wd-60p {
15367
  width: 60%;
15368
}
15369
 
15370
.mx-wd-60p {
15371
  max-width: 60%;
15372
}
15373
 
15374
.mn-wd-60p {
15375
  min-width: 60%;
15376
}
15377
 
15378
.wd-60-f {
15379
  width: 60px !important;
15380
}
15381
 
15382
.wd-60p-f {
15383
  width: 60% !important;
15384
}
15385
 
15386
.mx-wd-60p-f {
15387
  max-width: 60% !important;
15388
}
15389
 
15390
.mn-wd-60p-f {
15391
  min-width: 60% !important;
15392
}
15393
 
15394
.wd-65 {
15395
  width: 65px;
15396
}
15397
 
15398
.wd-65p {
15399
  width: 65%;
15400
}
15401
 
15402
.mx-wd-65p {
15403
  max-width: 65%;
15404
}
15405
 
15406
.mn-wd-65p {
15407
  min-width: 65%;
15408
}
15409
 
15410
.wd-65-f {
15411
  width: 65px !important;
15412
}
15413
 
15414
.wd-65p-f {
15415
  width: 65% !important;
15416
}
15417
 
15418
.mx-wd-65p-f {
15419
  max-width: 65% !important;
15420
}
15421
 
15422
.mn-wd-65p-f {
15423
  min-width: 65% !important;
15424
}
15425
 
15426
.wd-70 {
15427
  width: 70px;
15428
}
15429
 
15430
.wd-70p {
15431
  width: 70%;
15432
}
15433
 
15434
.mx-wd-70p {
15435
  max-width: 70%;
15436
}
15437
 
15438
.mn-wd-70p {
15439
  min-width: 70%;
15440
}
15441
 
15442
.wd-70-f {
15443
  width: 70px !important;
15444
}
15445
 
15446
.wd-70p-f {
15447
  width: 70% !important;
15448
}
15449
 
15450
.mx-wd-70p-f {
15451
  max-width: 70% !important;
15452
}
15453
 
15454
.mn-wd-70p-f {
15455
  min-width: 70% !important;
15456
}
15457
 
15458
.wd-75 {
15459
  width: 75px;
15460
}
15461
 
15462
.wd-75p {
15463
  width: 75%;
15464
}
15465
 
15466
.mx-wd-75p {
15467
  max-width: 75%;
15468
}
15469
 
15470
.mn-wd-75p {
15471
  min-width: 75%;
15472
}
15473
 
15474
.wd-75-f {
15475
  width: 75px !important;
15476
}
15477
 
15478
.wd-75p-f {
15479
  width: 75% !important;
15480
}
15481
 
15482
.mx-wd-75p-f {
15483
  max-width: 75% !important;
15484
}
15485
 
15486
.mn-wd-75p-f {
15487
  min-width: 75% !important;
15488
}
15489
 
15490
.wd-80 {
15491
  width: 80px;
15492
}
15493
 
15494
.wd-80p {
15495
  width: 80%;
15496
}
15497
 
15498
.mx-wd-80p {
15499
  max-width: 80%;
15500
}
15501
 
15502
.mn-wd-80p {
15503
  min-width: 80%;
15504
}
15505
 
15506
.wd-80-f {
15507
  width: 80px !important;
15508
}
15509
 
15510
.wd-80p-f {
15511
  width: 80% !important;
15512
}
15513
 
15514
.mx-wd-80p-f {
15515
  max-width: 80% !important;
15516
}
15517
 
15518
.mn-wd-80p-f {
15519
  min-width: 80% !important;
15520
}
15521
 
15522
.wd-85 {
15523
  width: 85px;
15524
}
15525
 
15526
.wd-85p {
15527
  width: 85%;
15528
}
15529
 
15530
.mx-wd-85p {
15531
  max-width: 85%;
15532
}
15533
 
15534
.mn-wd-85p {
15535
  min-width: 85%;
15536
}
15537
 
15538
.wd-85-f {
15539
  width: 85px !important;
15540
}
15541
 
15542
.wd-85p-f {
15543
  width: 85% !important;
15544
}
15545
 
15546
.mx-wd-85p-f {
15547
  max-width: 85% !important;
15548
}
15549
 
15550
.mn-wd-85p-f {
15551
  min-width: 85% !important;
15552
}
15553
 
15554
.wd-90 {
15555
  width: 90px;
15556
}
15557
 
15558
.wd-90p {
15559
  width: 90%;
15560
}
15561
 
15562
.mx-wd-90p {
15563
  max-width: 90%;
15564
}
15565
 
15566
.mn-wd-90p {
15567
  min-width: 90%;
15568
}
15569
 
15570
.wd-90-f {
15571
  width: 90px !important;
15572
}
15573
 
15574
.wd-90p-f {
15575
  width: 90% !important;
15576
}
15577
 
15578
.mx-wd-90p-f {
15579
  max-width: 90% !important;
15580
}
15581
 
15582
.mn-wd-90p-f {
15583
  min-width: 90% !important;
15584
}
15585
 
15586
.wd-95 {
15587
  width: 95px;
15588
}
15589
 
15590
.wd-95p {
15591
  width: 95%;
15592
}
15593
 
15594
.mx-wd-95p {
15595
  max-width: 95%;
15596
}
15597
 
15598
.mn-wd-95p {
15599
  min-width: 95%;
15600
}
15601
 
15602
.wd-95-f {
15603
  width: 95px !important;
15604
}
15605
 
15606
.wd-95p-f {
15607
  width: 95% !important;
15608
}
15609
 
15610
.mx-wd-95p-f {
15611
  max-width: 95% !important;
15612
}
15613
 
15614
.mn-wd-95p-f {
15615
  min-width: 95% !important;
15616
}
15617
 
15618
.wd-100 {
15619
  width: 100px;
15620
}
15621
 
15622
.wd-100p {
15623
  width: 100%;
15624
}
15625
 
15626
.mx-wd-100p {
15627
  max-width: 100%;
15628
}
15629
 
15630
.mn-wd-100p {
15631
  min-width: 100%;
15632
}
15633
 
15634
.wd-100-f {
15635
  width: 100px !important;
15636
}
15637
 
15638
.wd-100p-f {
15639
  width: 100% !important;
15640
}
15641
 
15642
.mx-wd-100p-f {
15643
  max-width: 100% !important;
15644
}
15645
 
15646
.mn-wd-100p-f {
15647
  min-width: 100% !important;
15648
}
15649
 
15650
.wd-150 {
15651
  width: 150px;
15652
}
15653
 
15654
.wd-150-f {
15655
  width: 150px !important;
15656
}
15657
 
15658
.wd-200 {
15659
  width: 200px;
15660
}
15661
 
15662
.wd-200-f {
15663
  width: 200px !important;
15664
}
15665
 
15666
.wd-250 {
15667
  width: 250px;
15668
}
15669
 
15670
.wd-250-f {
15671
  width: 250px !important;
15672
}
15673
 
15674
.wd-300 {
15675
  width: 300px;
15676
}
15677
 
15678
.wd-300-f {
15679
  width: 300px !important;
15680
}
15681
 
15682
.wd-350 {
15683
  width: 350px;
15684
}
15685
 
15686
.wd-350-f {
15687
  width: 350px !important;
15688
}
15689
 
15690
.wd-400 {
15691
  width: 400px;
15692
}
15693
 
15694
.wd-400-f {
15695
  width: 400px !important;
15696
}
15697
 
15698
.wd-450 {
15699
  width: 450px;
15700
}
15701
 
15702
.wd-450-f {
15703
  width: 450px !important;
15704
}
15705
 
15706
.wd-500 {
15707
  width: 500px;
15708
}
15709
 
15710
.wd-500-f {
15711
  width: 500px !important;
15712
}
15713
 
15714
.wd-550 {
15715
  width: 550px;
15716
}
15717
 
15718
.wd-550-f {
15719
  width: 550px !important;
15720
}
15721
 
15722
.wd-600 {
15723
  width: 600px;
15724
}
15725
 
15726
.wd-600-f {
15727
  width: 600px !important;
15728
}
15729
 
15730
.wd-650 {
15731
  width: 650px;
15732
}
15733
 
15734
.wd-650-f {
15735
  width: 650px !important;
15736
}
15737
 
15738
.wd-700 {
15739
  width: 700px;
15740
}
15741
 
15742
.wd-700-f {
15743
  width: 700px !important;
15744
}
15745
 
15746
.wd-750 {
15747
  width: 750px;
15748
}
15749
 
15750
.wd-750-f {
15751
  width: 750px !important;
15752
}
15753
 
15754
.wd-800 {
15755
  width: 800px;
15756
}
15757
 
15758
.wd-800-f {
15759
  width: 800px !important;
15760
}
15761
 
15762
.wd-850 {
15763
  width: 850px;
15764
}
15765
 
15766
.wd-850-f {
15767
  width: 850px !important;
15768
}
15769
 
15770
.wd-900 {
15771
  width: 900px;
15772
}
15773
 
15774
.wd-900-f {
15775
  width: 900px !important;
15776
}
15777
 
15778
.wd-950 {
15779
  width: 950px;
15780
}
15781
 
15782
.wd-950-f {
15783
  width: 950px !important;
15784
}
15785
 
15786
.wd-1000 {
15787
  width: 1000px;
15788
}
15789
 
15790
.wd-1000-f {
15791
  width: 1000px !important;
15792
}
15793
 
15794
@media (min-width: 480px) {
15795
  .wd-xs-5 {
15796
    width: 5px;
15797
  }
16848 stevensc 15798
 
16825 efrain 15799
  .wd-xs-5p {
15800
    width: 5%;
15801
  }
16848 stevensc 15802
 
16825 efrain 15803
  .mx-wd-xs-5p {
15804
    max-width: 5%;
15805
  }
16848 stevensc 15806
 
16825 efrain 15807
  .mn-wd-xs-5p {
15808
    min-width: 5%;
15809
  }
16848 stevensc 15810
 
16825 efrain 15811
  .wd-xs-5-f {
15812
    width: 5px !important;
15813
  }
16848 stevensc 15814
 
16825 efrain 15815
  .wd-xs-5p-f {
15816
    width: 5% !important;
15817
  }
16848 stevensc 15818
 
16825 efrain 15819
  .mx-wd-xs-5p-f {
15820
    max-width: 5% !important;
15821
  }
16848 stevensc 15822
 
16825 efrain 15823
  .mn-wd-xs-5p-f {
15824
    min-width: 5% !important;
15825
  }
16848 stevensc 15826
 
16825 efrain 15827
  .wd-xs-10 {
15828
    width: 10px;
15829
  }
16848 stevensc 15830
 
16825 efrain 15831
  .wd-xs-10p {
15832
    width: 10%;
15833
  }
16848 stevensc 15834
 
16825 efrain 15835
  .mx-wd-xs-10p {
15836
    max-width: 10%;
15837
  }
16848 stevensc 15838
 
16825 efrain 15839
  .mn-wd-xs-10p {
15840
    min-width: 10%;
15841
  }
16848 stevensc 15842
 
16825 efrain 15843
  .wd-xs-10-f {
15844
    width: 10px !important;
15845
  }
16848 stevensc 15846
 
16825 efrain 15847
  .wd-xs-10p-f {
15848
    width: 10% !important;
15849
  }
16848 stevensc 15850
 
16825 efrain 15851
  .mx-wd-xs-10p-f {
15852
    max-width: 10% !important;
15853
  }
16848 stevensc 15854
 
16825 efrain 15855
  .mn-wd-xs-10p-f {
15856
    min-width: 10% !important;
15857
  }
16848 stevensc 15858
 
16825 efrain 15859
  .wd-xs-15 {
15860
    width: 15px;
15861
  }
16848 stevensc 15862
 
16825 efrain 15863
  .wd-xs-15p {
15864
    width: 15%;
15865
  }
16848 stevensc 15866
 
16825 efrain 15867
  .mx-wd-xs-15p {
15868
    max-width: 15%;
15869
  }
16848 stevensc 15870
 
16825 efrain 15871
  .mn-wd-xs-15p {
15872
    min-width: 15%;
15873
  }
16848 stevensc 15874
 
16825 efrain 15875
  .wd-xs-15-f {
15876
    width: 15px !important;
15877
  }
16848 stevensc 15878
 
16825 efrain 15879
  .wd-xs-15p-f {
15880
    width: 15% !important;
15881
  }
16848 stevensc 15882
 
16825 efrain 15883
  .mx-wd-xs-15p-f {
15884
    max-width: 15% !important;
15885
  }
16848 stevensc 15886
 
16825 efrain 15887
  .mn-wd-xs-15p-f {
15888
    min-width: 15% !important;
15889
  }
16848 stevensc 15890
 
16825 efrain 15891
  .wd-xs-20 {
15892
    width: 20px;
15893
  }
16848 stevensc 15894
 
16825 efrain 15895
  .wd-xs-20p {
15896
    width: 20%;
15897
  }
16848 stevensc 15898
 
16825 efrain 15899
  .mx-wd-xs-20p {
15900
    max-width: 20%;
15901
  }
16848 stevensc 15902
 
16825 efrain 15903
  .mn-wd-xs-20p {
15904
    min-width: 20%;
15905
  }
16848 stevensc 15906
 
16825 efrain 15907
  .wd-xs-20-f {
15908
    width: 20px !important;
15909
  }
16848 stevensc 15910
 
16825 efrain 15911
  .wd-xs-20p-f {
15912
    width: 20% !important;
15913
  }
16848 stevensc 15914
 
16825 efrain 15915
  .mx-wd-xs-20p-f {
15916
    max-width: 20% !important;
15917
  }
16848 stevensc 15918
 
16825 efrain 15919
  .mn-wd-xs-20p-f {
15920
    min-width: 20% !important;
15921
  }
16848 stevensc 15922
 
16825 efrain 15923
  .wd-xs-25 {
15924
    width: 25px;
15925
  }
16848 stevensc 15926
 
16825 efrain 15927
  .wd-xs-25p {
15928
    width: 25%;
15929
  }
16848 stevensc 15930
 
16825 efrain 15931
  .mx-wd-xs-25p {
15932
    max-width: 25%;
15933
  }
16848 stevensc 15934
 
16825 efrain 15935
  .mn-wd-xs-25p {
15936
    min-width: 25%;
15937
  }
16848 stevensc 15938
 
16825 efrain 15939
  .wd-xs-25-f {
15940
    width: 25px !important;
15941
  }
16848 stevensc 15942
 
16825 efrain 15943
  .wd-xs-25p-f {
15944
    width: 25% !important;
15945
  }
16848 stevensc 15946
 
16825 efrain 15947
  .mx-wd-xs-25p-f {
15948
    max-width: 25% !important;
15949
  }
16848 stevensc 15950
 
16825 efrain 15951
  .mn-wd-xs-25p-f {
15952
    min-width: 25% !important;
15953
  }
16848 stevensc 15954
 
16825 efrain 15955
  .wd-xs-30 {
15956
    width: 30px;
15957
  }
16848 stevensc 15958
 
16825 efrain 15959
  .wd-xs-30p {
15960
    width: 30%;
15961
  }
16848 stevensc 15962
 
16825 efrain 15963
  .mx-wd-xs-30p {
15964
    max-width: 30%;
15965
  }
16848 stevensc 15966
 
16825 efrain 15967
  .mn-wd-xs-30p {
15968
    min-width: 30%;
15969
  }
16848 stevensc 15970
 
16825 efrain 15971
  .wd-xs-30-f {
15972
    width: 30px !important;
15973
  }
16848 stevensc 15974
 
16825 efrain 15975
  .wd-xs-30p-f {
15976
    width: 30% !important;
15977
  }
16848 stevensc 15978
 
16825 efrain 15979
  .mx-wd-xs-30p-f {
15980
    max-width: 30% !important;
15981
  }
16848 stevensc 15982
 
16825 efrain 15983
  .mn-wd-xs-30p-f {
15984
    min-width: 30% !important;
15985
  }
16848 stevensc 15986
 
16825 efrain 15987
  .wd-xs-35 {
15988
    width: 35px;
15989
  }
16848 stevensc 15990
 
16825 efrain 15991
  .wd-xs-35p {
15992
    width: 35%;
15993
  }
16848 stevensc 15994
 
16825 efrain 15995
  .mx-wd-xs-35p {
15996
    max-width: 35%;
15997
  }
16848 stevensc 15998
 
16825 efrain 15999
  .mn-wd-xs-35p {
16000
    min-width: 35%;
16001
  }
16848 stevensc 16002
 
16825 efrain 16003
  .wd-xs-35-f {
16004
    width: 35px !important;
16005
  }
16848 stevensc 16006
 
16825 efrain 16007
  .wd-xs-35p-f {
16008
    width: 35% !important;
16009
  }
16848 stevensc 16010
 
16825 efrain 16011
  .mx-wd-xs-35p-f {
16012
    max-width: 35% !important;
16013
  }
16848 stevensc 16014
 
16825 efrain 16015
  .mn-wd-xs-35p-f {
16016
    min-width: 35% !important;
16017
  }
16848 stevensc 16018
 
16825 efrain 16019
  .wd-xs-40 {
16020
    width: 40px;
16021
  }
16848 stevensc 16022
 
16825 efrain 16023
  .wd-xs-40p {
16024
    width: 40%;
16025
  }
16848 stevensc 16026
 
16825 efrain 16027
  .mx-wd-xs-40p {
16028
    max-width: 40%;
16029
  }
16848 stevensc 16030
 
16825 efrain 16031
  .mn-wd-xs-40p {
16032
    min-width: 40%;
16033
  }
16848 stevensc 16034
 
16825 efrain 16035
  .wd-xs-40-f {
16036
    width: 40px !important;
16037
  }
16848 stevensc 16038
 
16825 efrain 16039
  .wd-xs-40p-f {
16040
    width: 40% !important;
16041
  }
16848 stevensc 16042
 
16825 efrain 16043
  .mx-wd-xs-40p-f {
16044
    max-width: 40% !important;
16045
  }
16848 stevensc 16046
 
16825 efrain 16047
  .mn-wd-xs-40p-f {
16048
    min-width: 40% !important;
16049
  }
16848 stevensc 16050
 
16825 efrain 16051
  .wd-xs-45 {
16052
    width: 45px;
16053
  }
16848 stevensc 16054
 
16825 efrain 16055
  .wd-xs-45p {
16056
    width: 45%;
16057
  }
16848 stevensc 16058
 
16825 efrain 16059
  .mx-wd-xs-45p {
16060
    max-width: 45%;
16061
  }
16848 stevensc 16062
 
16825 efrain 16063
  .mn-wd-xs-45p {
16064
    min-width: 45%;
16065
  }
16848 stevensc 16066
 
16825 efrain 16067
  .wd-xs-45-f {
16068
    width: 45px !important;
16069
  }
16848 stevensc 16070
 
16825 efrain 16071
  .wd-xs-45p-f {
16072
    width: 45% !important;
16073
  }
16848 stevensc 16074
 
16825 efrain 16075
  .mx-wd-xs-45p-f {
16076
    max-width: 45% !important;
16077
  }
16848 stevensc 16078
 
16825 efrain 16079
  .mn-wd-xs-45p-f {
16080
    min-width: 45% !important;
16081
  }
16848 stevensc 16082
 
16825 efrain 16083
  .wd-xs-50 {
16084
    width: 50px;
16085
  }
16848 stevensc 16086
 
16825 efrain 16087
  .wd-xs-50p {
16088
    width: 50%;
16089
  }
16848 stevensc 16090
 
16825 efrain 16091
  .mx-wd-xs-50p {
16092
    max-width: 50%;
16093
  }
16848 stevensc 16094
 
16825 efrain 16095
  .mn-wd-xs-50p {
16096
    min-width: 50%;
16097
  }
16848 stevensc 16098
 
16825 efrain 16099
  .wd-xs-50-f {
16100
    width: 50px !important;
16101
  }
16848 stevensc 16102
 
16825 efrain 16103
  .wd-xs-50p-f {
16104
    width: 50% !important;
16105
  }
16848 stevensc 16106
 
16825 efrain 16107
  .mx-wd-xs-50p-f {
16108
    max-width: 50% !important;
16109
  }
16848 stevensc 16110
 
16825 efrain 16111
  .mn-wd-xs-50p-f {
16112
    min-width: 50% !important;
16113
  }
16848 stevensc 16114
 
16825 efrain 16115
  .wd-xs-55 {
16116
    width: 55px;
16117
  }
16848 stevensc 16118
 
16825 efrain 16119
  .wd-xs-55p {
16120
    width: 55%;
16121
  }
16848 stevensc 16122
 
16825 efrain 16123
  .mx-wd-xs-55p {
16124
    max-width: 55%;
16125
  }
16848 stevensc 16126
 
16825 efrain 16127
  .mn-wd-xs-55p {
16128
    min-width: 55%;
16129
  }
16848 stevensc 16130
 
16825 efrain 16131
  .wd-xs-55-f {
16132
    width: 55px !important;
16133
  }
16848 stevensc 16134
 
16825 efrain 16135
  .wd-xs-55p-f {
16136
    width: 55% !important;
16137
  }
16848 stevensc 16138
 
16825 efrain 16139
  .mx-wd-xs-55p-f {
16140
    max-width: 55% !important;
16141
  }
16848 stevensc 16142
 
16825 efrain 16143
  .mn-wd-xs-55p-f {
16144
    min-width: 55% !important;
16145
  }
16848 stevensc 16146
 
16825 efrain 16147
  .wd-xs-60 {
16148
    width: 60px;
16149
  }
16848 stevensc 16150
 
16825 efrain 16151
  .wd-xs-60p {
16152
    width: 60%;
16153
  }
16848 stevensc 16154
 
16825 efrain 16155
  .mx-wd-xs-60p {
16156
    max-width: 60%;
16157
  }
16848 stevensc 16158
 
16825 efrain 16159
  .mn-wd-xs-60p {
16160
    min-width: 60%;
16161
  }
16848 stevensc 16162
 
16825 efrain 16163
  .wd-xs-60-f {
16164
    width: 60px !important;
16165
  }
16848 stevensc 16166
 
16825 efrain 16167
  .wd-xs-60p-f {
16168
    width: 60% !important;
16169
  }
16848 stevensc 16170
 
16825 efrain 16171
  .mx-wd-xs-60p-f {
16172
    max-width: 60% !important;
16173
  }
16848 stevensc 16174
 
16825 efrain 16175
  .mn-wd-xs-60p-f {
16176
    min-width: 60% !important;
16177
  }
16848 stevensc 16178
 
16825 efrain 16179
  .wd-xs-65 {
16180
    width: 65px;
16181
  }
16848 stevensc 16182
 
16825 efrain 16183
  .wd-xs-65p {
16184
    width: 65%;
16185
  }
16848 stevensc 16186
 
16825 efrain 16187
  .mx-wd-xs-65p {
16188
    max-width: 65%;
16189
  }
16848 stevensc 16190
 
16825 efrain 16191
  .mn-wd-xs-65p {
16192
    min-width: 65%;
16193
  }
16848 stevensc 16194
 
16825 efrain 16195
  .wd-xs-65-f {
16196
    width: 65px !important;
16197
  }
16848 stevensc 16198
 
16825 efrain 16199
  .wd-xs-65p-f {
16200
    width: 65% !important;
16201
  }
16848 stevensc 16202
 
16825 efrain 16203
  .mx-wd-xs-65p-f {
16204
    max-width: 65% !important;
16205
  }
16848 stevensc 16206
 
16825 efrain 16207
  .mn-wd-xs-65p-f {
16208
    min-width: 65% !important;
16209
  }
16848 stevensc 16210
 
16825 efrain 16211
  .wd-xs-70 {
16212
    width: 70px;
16213
  }
16848 stevensc 16214
 
16825 efrain 16215
  .wd-xs-70p {
16216
    width: 70%;
16217
  }
16848 stevensc 16218
 
16825 efrain 16219
  .mx-wd-xs-70p {
16220
    max-width: 70%;
16221
  }
16848 stevensc 16222
 
16825 efrain 16223
  .mn-wd-xs-70p {
16224
    min-width: 70%;
16225
  }
16848 stevensc 16226
 
16825 efrain 16227
  .wd-xs-70-f {
16228
    width: 70px !important;
16229
  }
16848 stevensc 16230
 
16825 efrain 16231
  .wd-xs-70p-f {
16232
    width: 70% !important;
16233
  }
16848 stevensc 16234
 
16825 efrain 16235
  .mx-wd-xs-70p-f {
16236
    max-width: 70% !important;
16237
  }
16848 stevensc 16238
 
16825 efrain 16239
  .mn-wd-xs-70p-f {
16240
    min-width: 70% !important;
16241
  }
16848 stevensc 16242
 
16825 efrain 16243
  .wd-xs-75 {
16244
    width: 75px;
16245
  }
16848 stevensc 16246
 
16825 efrain 16247
  .wd-xs-75p {
16248
    width: 75%;
16249
  }
16848 stevensc 16250
 
16825 efrain 16251
  .mx-wd-xs-75p {
16252
    max-width: 75%;
16253
  }
16848 stevensc 16254
 
16825 efrain 16255
  .mn-wd-xs-75p {
16256
    min-width: 75%;
16257
  }
16848 stevensc 16258
 
16825 efrain 16259
  .wd-xs-75-f {
16260
    width: 75px !important;
16261
  }
16848 stevensc 16262
 
16825 efrain 16263
  .wd-xs-75p-f {
16264
    width: 75% !important;
16265
  }
16848 stevensc 16266
 
16825 efrain 16267
  .mx-wd-xs-75p-f {
16268
    max-width: 75% !important;
16269
  }
16848 stevensc 16270
 
16825 efrain 16271
  .mn-wd-xs-75p-f {
16272
    min-width: 75% !important;
16273
  }
16848 stevensc 16274
 
16825 efrain 16275
  .wd-xs-80 {
16276
    width: 80px;
16277
  }
16848 stevensc 16278
 
16825 efrain 16279
  .wd-xs-80p {
16280
    width: 80%;
16281
  }
16848 stevensc 16282
 
16825 efrain 16283
  .mx-wd-xs-80p {
16284
    max-width: 80%;
16285
  }
16848 stevensc 16286
 
16825 efrain 16287
  .mn-wd-xs-80p {
16288
    min-width: 80%;
16289
  }
16848 stevensc 16290
 
16825 efrain 16291
  .wd-xs-80-f {
16292
    width: 80px !important;
16293
  }
16848 stevensc 16294
 
16825 efrain 16295
  .wd-xs-80p-f {
16296
    width: 80% !important;
16297
  }
16848 stevensc 16298
 
16825 efrain 16299
  .mx-wd-xs-80p-f {
16300
    max-width: 80% !important;
16301
  }
16848 stevensc 16302
 
16825 efrain 16303
  .mn-wd-xs-80p-f {
16304
    min-width: 80% !important;
16305
  }
16848 stevensc 16306
 
16825 efrain 16307
  .wd-xs-85 {
16308
    width: 85px;
16309
  }
16848 stevensc 16310
 
16825 efrain 16311
  .wd-xs-85p {
16312
    width: 85%;
16313
  }
16848 stevensc 16314
 
16825 efrain 16315
  .mx-wd-xs-85p {
16316
    max-width: 85%;
16317
  }
16848 stevensc 16318
 
16825 efrain 16319
  .mn-wd-xs-85p {
16320
    min-width: 85%;
16321
  }
16848 stevensc 16322
 
16825 efrain 16323
  .wd-xs-85-f {
16324
    width: 85px !important;
16325
  }
16848 stevensc 16326
 
16825 efrain 16327
  .wd-xs-85p-f {
16328
    width: 85% !important;
16329
  }
16848 stevensc 16330
 
16825 efrain 16331
  .mx-wd-xs-85p-f {
16332
    max-width: 85% !important;
16333
  }
16848 stevensc 16334
 
16825 efrain 16335
  .mn-wd-xs-85p-f {
16336
    min-width: 85% !important;
16337
  }
16848 stevensc 16338
 
16825 efrain 16339
  .wd-xs-90 {
16340
    width: 90px;
16341
  }
16848 stevensc 16342
 
16825 efrain 16343
  .wd-xs-90p {
16344
    width: 90%;
16345
  }
16848 stevensc 16346
 
16825 efrain 16347
  .mx-wd-xs-90p {
16348
    max-width: 90%;
16349
  }
16848 stevensc 16350
 
16825 efrain 16351
  .mn-wd-xs-90p {
16352
    min-width: 90%;
16353
  }
16848 stevensc 16354
 
16825 efrain 16355
  .wd-xs-90-f {
16356
    width: 90px !important;
16357
  }
16848 stevensc 16358
 
16825 efrain 16359
  .wd-xs-90p-f {
16360
    width: 90% !important;
16361
  }
16848 stevensc 16362
 
16825 efrain 16363
  .mx-wd-xs-90p-f {
16364
    max-width: 90% !important;
16365
  }
16848 stevensc 16366
 
16825 efrain 16367
  .mn-wd-xs-90p-f {
16368
    min-width: 90% !important;
16369
  }
16848 stevensc 16370
 
16825 efrain 16371
  .wd-xs-95 {
16372
    width: 95px;
16373
  }
16848 stevensc 16374
 
16825 efrain 16375
  .wd-xs-95p {
16376
    width: 95%;
16377
  }
16848 stevensc 16378
 
16825 efrain 16379
  .mx-wd-xs-95p {
16380
    max-width: 95%;
16381
  }
16848 stevensc 16382
 
16825 efrain 16383
  .mn-wd-xs-95p {
16384
    min-width: 95%;
16385
  }
16848 stevensc 16386
 
16825 efrain 16387
  .wd-xs-95-f {
16388
    width: 95px !important;
16389
  }
16848 stevensc 16390
 
16825 efrain 16391
  .wd-xs-95p-f {
16392
    width: 95% !important;
16393
  }
16848 stevensc 16394
 
16825 efrain 16395
  .mx-wd-xs-95p-f {
16396
    max-width: 95% !important;
16397
  }
16848 stevensc 16398
 
16825 efrain 16399
  .mn-wd-xs-95p-f {
16400
    min-width: 95% !important;
16401
  }
16848 stevensc 16402
 
16825 efrain 16403
  .wd-xs-100 {
16404
    width: 100px;
16405
  }
16848 stevensc 16406
 
16825 efrain 16407
  .wd-xs-100p {
16408
    width: 100%;
16409
  }
16848 stevensc 16410
 
16825 efrain 16411
  .mx-wd-xs-100p {
16412
    max-width: 100%;
16413
  }
16848 stevensc 16414
 
16825 efrain 16415
  .mn-wd-xs-100p {
16416
    min-width: 100%;
16417
  }
16848 stevensc 16418
 
16825 efrain 16419
  .wd-xs-100-f {
16420
    width: 100px !important;
16421
  }
16848 stevensc 16422
 
16825 efrain 16423
  .wd-xs-100p-f {
16424
    width: 100% !important;
16425
  }
16848 stevensc 16426
 
16825 efrain 16427
  .mx-wd-xs-100p-f {
16428
    max-width: 100% !important;
16429
  }
16848 stevensc 16430
 
16825 efrain 16431
  .mn-wd-xs-100p-f {
16432
    min-width: 100% !important;
16433
  }
16848 stevensc 16434
 
16825 efrain 16435
  .wd-xs-150 {
16436
    width: 150px;
16437
  }
16848 stevensc 16438
 
16825 efrain 16439
  .wd-xs-150p {
16440
    width: 150%;
16441
  }
16848 stevensc 16442
 
16825 efrain 16443
  .mx-wd-xs-150p {
16444
    max-width: 150%;
16445
  }
16848 stevensc 16446
 
16825 efrain 16447
  .mn-wd-xs-150p {
16448
    min-width: 150%;
16449
  }
16848 stevensc 16450
 
16825 efrain 16451
  .wd-xs-150-f {
16452
    width: 150px !important;
16453
  }
16848 stevensc 16454
 
16825 efrain 16455
  .wd-xs-150p-f {
16456
    width: 150% !important;
16457
  }
16848 stevensc 16458
 
16825 efrain 16459
  .mx-wd-xs-150p-f {
16460
    max-width: 150% !important;
16461
  }
16848 stevensc 16462
 
16825 efrain 16463
  .mn-wd-xs-150p-f {
16464
    min-width: 150% !important;
16465
  }
16848 stevensc 16466
 
16825 efrain 16467
  .wd-xs-200 {
16468
    width: 200px;
16469
  }
16848 stevensc 16470
 
16825 efrain 16471
  .wd-xs-200p {
16472
    width: 200%;
16473
  }
16848 stevensc 16474
 
16825 efrain 16475
  .mx-wd-xs-200p {
16476
    max-width: 200%;
16477
  }
16848 stevensc 16478
 
16825 efrain 16479
  .mn-wd-xs-200p {
16480
    min-width: 200%;
16481
  }
16848 stevensc 16482
 
16825 efrain 16483
  .wd-xs-200-f {
16484
    width: 200px !important;
16485
  }
16848 stevensc 16486
 
16825 efrain 16487
  .wd-xs-200p-f {
16488
    width: 200% !important;
16489
  }
16848 stevensc 16490
 
16825 efrain 16491
  .mx-wd-xs-200p-f {
16492
    max-width: 200% !important;
16493
  }
16848 stevensc 16494
 
16825 efrain 16495
  .mn-wd-xs-200p-f {
16496
    min-width: 200% !important;
16497
  }
16848 stevensc 16498
 
16825 efrain 16499
  .wd-xs-250 {
16500
    width: 250px;
16501
  }
16848 stevensc 16502
 
16825 efrain 16503
  .wd-xs-250p {
16504
    width: 250%;
16505
  }
16848 stevensc 16506
 
16825 efrain 16507
  .mx-wd-xs-250p {
16508
    max-width: 250%;
16509
  }
16848 stevensc 16510
 
16825 efrain 16511
  .mn-wd-xs-250p {
16512
    min-width: 250%;
16513
  }
16848 stevensc 16514
 
16825 efrain 16515
  .wd-xs-250-f {
16516
    width: 250px !important;
16517
  }
16848 stevensc 16518
 
16825 efrain 16519
  .wd-xs-250p-f {
16520
    width: 250% !important;
16521
  }
16848 stevensc 16522
 
16825 efrain 16523
  .mx-wd-xs-250p-f {
16524
    max-width: 250% !important;
16525
  }
16848 stevensc 16526
 
16825 efrain 16527
  .mn-wd-xs-250p-f {
16528
    min-width: 250% !important;
16529
  }
16848 stevensc 16530
 
16825 efrain 16531
  .wd-xs-300 {
16532
    width: 300px;
16533
  }
16848 stevensc 16534
 
16825 efrain 16535
  .wd-xs-300p {
16536
    width: 300%;
16537
  }
16848 stevensc 16538
 
16825 efrain 16539
  .mx-wd-xs-300p {
16540
    max-width: 300%;
16541
  }
16848 stevensc 16542
 
16825 efrain 16543
  .mn-wd-xs-300p {
16544
    min-width: 300%;
16545
  }
16848 stevensc 16546
 
16825 efrain 16547
  .wd-xs-300-f {
16548
    width: 300px !important;
16549
  }
16848 stevensc 16550
 
16825 efrain 16551
  .wd-xs-300p-f {
16552
    width: 300% !important;
16553
  }
16848 stevensc 16554
 
16825 efrain 16555
  .mx-wd-xs-300p-f {
16556
    max-width: 300% !important;
16557
  }
16848 stevensc 16558
 
16825 efrain 16559
  .mn-wd-xs-300p-f {
16560
    min-width: 300% !important;
16561
  }
16848 stevensc 16562
 
16825 efrain 16563
  .wd-xs-350 {
16564
    width: 350px;
16565
  }
16848 stevensc 16566
 
16825 efrain 16567
  .wd-xs-350p {
16568
    width: 350%;
16569
  }
16848 stevensc 16570
 
16825 efrain 16571
  .mx-wd-xs-350p {
16572
    max-width: 350%;
16573
  }
16848 stevensc 16574
 
16825 efrain 16575
  .mn-wd-xs-350p {
16576
    min-width: 350%;
16577
  }
16848 stevensc 16578
 
16825 efrain 16579
  .wd-xs-350-f {
16580
    width: 350px !important;
16581
  }
16848 stevensc 16582
 
16825 efrain 16583
  .wd-xs-350p-f {
16584
    width: 350% !important;
16585
  }
16848 stevensc 16586
 
16825 efrain 16587
  .mx-wd-xs-350p-f {
16588
    max-width: 350% !important;
16589
  }
16848 stevensc 16590
 
16825 efrain 16591
  .mn-wd-xs-350p-f {
16592
    min-width: 350% !important;
16593
  }
16848 stevensc 16594
 
16825 efrain 16595
  .wd-xs-400 {
16596
    width: 400px;
16597
  }
16848 stevensc 16598
 
16825 efrain 16599
  .wd-xs-400p {
16600
    width: 400%;
16601
  }
16848 stevensc 16602
 
16825 efrain 16603
  .mx-wd-xs-400p {
16604
    max-width: 400%;
16605
  }
16848 stevensc 16606
 
16825 efrain 16607
  .mn-wd-xs-400p {
16608
    min-width: 400%;
16609
  }
16848 stevensc 16610
 
16825 efrain 16611
  .wd-xs-400-f {
16612
    width: 400px !important;
16613
  }
16848 stevensc 16614
 
16825 efrain 16615
  .wd-xs-400p-f {
16616
    width: 400% !important;
16617
  }
16848 stevensc 16618
 
16825 efrain 16619
  .mx-wd-xs-400p-f {
16620
    max-width: 400% !important;
16621
  }
16848 stevensc 16622
 
16825 efrain 16623
  .mn-wd-xs-400p-f {
16624
    min-width: 400% !important;
16625
  }
16848 stevensc 16626
 
16825 efrain 16627
  .wd-xs-450 {
16628
    width: 450px;
16629
  }
16848 stevensc 16630
 
16825 efrain 16631
  .wd-xs-450p {
16632
    width: 450%;
16633
  }
16848 stevensc 16634
 
16825 efrain 16635
  .mx-wd-xs-450p {
16636
    max-width: 450%;
16637
  }
16848 stevensc 16638
 
16825 efrain 16639
  .mn-wd-xs-450p {
16640
    min-width: 450%;
16641
  }
16848 stevensc 16642
 
16825 efrain 16643
  .wd-xs-450-f {
16644
    width: 450px !important;
16645
  }
16848 stevensc 16646
 
16825 efrain 16647
  .wd-xs-450p-f {
16648
    width: 450% !important;
16649
  }
16848 stevensc 16650
 
16825 efrain 16651
  .mx-wd-xs-450p-f {
16652
    max-width: 450% !important;
16653
  }
16848 stevensc 16654
 
16825 efrain 16655
  .mn-wd-xs-450p-f {
16656
    min-width: 450% !important;
16657
  }
16848 stevensc 16658
 
16825 efrain 16659
  .wd-xs-500 {
16660
    width: 500px;
16661
  }
16848 stevensc 16662
 
16825 efrain 16663
  .wd-xs-500p {
16664
    width: 500%;
16665
  }
16848 stevensc 16666
 
16825 efrain 16667
  .mx-wd-xs-500p {
16668
    max-width: 500%;
16669
  }
16848 stevensc 16670
 
16825 efrain 16671
  .mn-wd-xs-500p {
16672
    min-width: 500%;
16673
  }
16848 stevensc 16674
 
16825 efrain 16675
  .wd-xs-500-f {
16676
    width: 500px !important;
16677
  }
16848 stevensc 16678
 
16825 efrain 16679
  .wd-xs-500p-f {
16680
    width: 500% !important;
16681
  }
16848 stevensc 16682
 
16825 efrain 16683
  .mx-wd-xs-500p-f {
16684
    max-width: 500% !important;
16685
  }
16848 stevensc 16686
 
16825 efrain 16687
  .mn-wd-xs-500p-f {
16688
    min-width: 500% !important;
16689
  }
16848 stevensc 16690
 
16825 efrain 16691
  .wd-xs-550 {
16692
    width: 550px;
16693
  }
16848 stevensc 16694
 
16825 efrain 16695
  .wd-xs-550p {
16696
    width: 550%;
16697
  }
16848 stevensc 16698
 
16825 efrain 16699
  .mx-wd-xs-550p {
16700
    max-width: 550%;
16701
  }
16848 stevensc 16702
 
16825 efrain 16703
  .mn-wd-xs-550p {
16704
    min-width: 550%;
16705
  }
16848 stevensc 16706
 
16825 efrain 16707
  .wd-xs-550-f {
16708
    width: 550px !important;
16709
  }
16848 stevensc 16710
 
16825 efrain 16711
  .wd-xs-550p-f {
16712
    width: 550% !important;
16713
  }
16848 stevensc 16714
 
16825 efrain 16715
  .mx-wd-xs-550p-f {
16716
    max-width: 550% !important;
16717
  }
16848 stevensc 16718
 
16825 efrain 16719
  .mn-wd-xs-550p-f {
16720
    min-width: 550% !important;
16721
  }
16848 stevensc 16722
 
16825 efrain 16723
  .wd-xs-600 {
16724
    width: 600px;
16725
  }
16848 stevensc 16726
 
16825 efrain 16727
  .wd-xs-600p {
16728
    width: 600%;
16729
  }
16848 stevensc 16730
 
16825 efrain 16731
  .mx-wd-xs-600p {
16732
    max-width: 600%;
16733
  }
16848 stevensc 16734
 
16825 efrain 16735
  .mn-wd-xs-600p {
16736
    min-width: 600%;
16737
  }
16848 stevensc 16738
 
16825 efrain 16739
  .wd-xs-600-f {
16740
    width: 600px !important;
16741
  }
16848 stevensc 16742
 
16825 efrain 16743
  .wd-xs-600p-f {
16744
    width: 600% !important;
16745
  }
16848 stevensc 16746
 
16825 efrain 16747
  .mx-wd-xs-600p-f {
16748
    max-width: 600% !important;
16749
  }
16848 stevensc 16750
 
16825 efrain 16751
  .mn-wd-xs-600p-f {
16752
    min-width: 600% !important;
16753
  }
16848 stevensc 16754
 
16825 efrain 16755
  .wd-xs-650 {
16756
    width: 650px;
16757
  }
16848 stevensc 16758
 
16825 efrain 16759
  .wd-xs-650p {
16760
    width: 650%;
16761
  }
16848 stevensc 16762
 
16825 efrain 16763
  .mx-wd-xs-650p {
16764
    max-width: 650%;
16765
  }
16848 stevensc 16766
 
16825 efrain 16767
  .mn-wd-xs-650p {
16768
    min-width: 650%;
16769
  }
16848 stevensc 16770
 
16825 efrain 16771
  .wd-xs-650-f {
16772
    width: 650px !important;
16773
  }
16848 stevensc 16774
 
16825 efrain 16775
  .wd-xs-650p-f {
16776
    width: 650% !important;
16777
  }
16848 stevensc 16778
 
16825 efrain 16779
  .mx-wd-xs-650p-f {
16780
    max-width: 650% !important;
16781
  }
16848 stevensc 16782
 
16825 efrain 16783
  .mn-wd-xs-650p-f {
16784
    min-width: 650% !important;
16785
  }
16848 stevensc 16786
 
16825 efrain 16787
  .wd-xs-700 {
16788
    width: 700px;
16789
  }
16848 stevensc 16790
 
16825 efrain 16791
  .wd-xs-700p {
16792
    width: 700%;
16793
  }
16848 stevensc 16794
 
16825 efrain 16795
  .mx-wd-xs-700p {
16796
    max-width: 700%;
16797
  }
16848 stevensc 16798
 
16825 efrain 16799
  .mn-wd-xs-700p {
16800
    min-width: 700%;
16801
  }
16848 stevensc 16802
 
16825 efrain 16803
  .wd-xs-700-f {
16804
    width: 700px !important;
16805
  }
16848 stevensc 16806
 
16825 efrain 16807
  .wd-xs-700p-f {
16808
    width: 700% !important;
16809
  }
16848 stevensc 16810
 
16825 efrain 16811
  .mx-wd-xs-700p-f {
16812
    max-width: 700% !important;
16813
  }
16848 stevensc 16814
 
16825 efrain 16815
  .mn-wd-xs-700p-f {
16816
    min-width: 700% !important;
16817
  }
16848 stevensc 16818
 
16825 efrain 16819
  .wd-xs-750 {
16820
    width: 750px;
16821
  }
16848 stevensc 16822
 
16825 efrain 16823
  .wd-xs-750p {
16824
    width: 750%;
16825
  }
16848 stevensc 16826
 
16825 efrain 16827
  .mx-wd-xs-750p {
16828
    max-width: 750%;
16829
  }
16848 stevensc 16830
 
16825 efrain 16831
  .mn-wd-xs-750p {
16832
    min-width: 750%;
16833
  }
16848 stevensc 16834
 
16825 efrain 16835
  .wd-xs-750-f {
16836
    width: 750px !important;
16837
  }
16848 stevensc 16838
 
16825 efrain 16839
  .wd-xs-750p-f {
16840
    width: 750% !important;
16841
  }
16848 stevensc 16842
 
16825 efrain 16843
  .mx-wd-xs-750p-f {
16844
    max-width: 750% !important;
16845
  }
16848 stevensc 16846
 
16825 efrain 16847
  .mn-wd-xs-750p-f {
16848
    min-width: 750% !important;
16849
  }
16848 stevensc 16850
 
16825 efrain 16851
  .wd-xs-800 {
16852
    width: 800px;
16853
  }
16848 stevensc 16854
 
16825 efrain 16855
  .wd-xs-800p {
16856
    width: 800%;
16857
  }
16848 stevensc 16858
 
16825 efrain 16859
  .mx-wd-xs-800p {
16860
    max-width: 800%;
16861
  }
16848 stevensc 16862
 
16825 efrain 16863
  .mn-wd-xs-800p {
16864
    min-width: 800%;
16865
  }
16848 stevensc 16866
 
16825 efrain 16867
  .wd-xs-800-f {
16868
    width: 800px !important;
16869
  }
16848 stevensc 16870
 
16825 efrain 16871
  .wd-xs-800p-f {
16872
    width: 800% !important;
16873
  }
16848 stevensc 16874
 
16825 efrain 16875
  .mx-wd-xs-800p-f {
16876
    max-width: 800% !important;
16877
  }
16848 stevensc 16878
 
16825 efrain 16879
  .mn-wd-xs-800p-f {
16880
    min-width: 800% !important;
16881
  }
16848 stevensc 16882
 
16825 efrain 16883
  .wd-xs-850 {
16884
    width: 850px;
16885
  }
16848 stevensc 16886
 
16825 efrain 16887
  .wd-xs-850p {
16888
    width: 850%;
16889
  }
16848 stevensc 16890
 
16825 efrain 16891
  .mx-wd-xs-850p {
16892
    max-width: 850%;
16893
  }
16848 stevensc 16894
 
16825 efrain 16895
  .mn-wd-xs-850p {
16896
    min-width: 850%;
16897
  }
16848 stevensc 16898
 
16825 efrain 16899
  .wd-xs-850-f {
16900
    width: 850px !important;
16901
  }
16848 stevensc 16902
 
16825 efrain 16903
  .wd-xs-850p-f {
16904
    width: 850% !important;
16905
  }
16848 stevensc 16906
 
16825 efrain 16907
  .mx-wd-xs-850p-f {
16908
    max-width: 850% !important;
16909
  }
16848 stevensc 16910
 
16825 efrain 16911
  .mn-wd-xs-850p-f {
16912
    min-width: 850% !important;
16913
  }
16848 stevensc 16914
 
16825 efrain 16915
  .wd-xs-900 {
16916
    width: 900px;
16917
  }
16848 stevensc 16918
 
16825 efrain 16919
  .wd-xs-900p {
16920
    width: 900%;
16921
  }
16848 stevensc 16922
 
16825 efrain 16923
  .mx-wd-xs-900p {
16924
    max-width: 900%;
16925
  }
16848 stevensc 16926
 
16825 efrain 16927
  .mn-wd-xs-900p {
16928
    min-width: 900%;
16929
  }
16848 stevensc 16930
 
16825 efrain 16931
  .wd-xs-900-f {
16932
    width: 900px !important;
16933
  }
16848 stevensc 16934
 
16825 efrain 16935
  .wd-xs-900p-f {
16936
    width: 900% !important;
16937
  }
16848 stevensc 16938
 
16825 efrain 16939
  .mx-wd-xs-900p-f {
16940
    max-width: 900% !important;
16941
  }
16848 stevensc 16942
 
16825 efrain 16943
  .mn-wd-xs-900p-f {
16944
    min-width: 900% !important;
16945
  }
16848 stevensc 16946
 
16825 efrain 16947
  .wd-xs-950 {
16948
    width: 950px;
16949
  }
16848 stevensc 16950
 
16825 efrain 16951
  .wd-xs-950p {
16952
    width: 950%;
16953
  }
16848 stevensc 16954
 
16825 efrain 16955
  .mx-wd-xs-950p {
16956
    max-width: 950%;
16957
  }
16848 stevensc 16958
 
16825 efrain 16959
  .mn-wd-xs-950p {
16960
    min-width: 950%;
16961
  }
16848 stevensc 16962
 
16825 efrain 16963
  .wd-xs-950-f {
16964
    width: 950px !important;
16965
  }
16848 stevensc 16966
 
16825 efrain 16967
  .wd-xs-950p-f {
16968
    width: 950% !important;
16969
  }
16848 stevensc 16970
 
16825 efrain 16971
  .mx-wd-xs-950p-f {
16972
    max-width: 950% !important;
16973
  }
16848 stevensc 16974
 
16825 efrain 16975
  .mn-wd-xs-950p-f {
16976
    min-width: 950% !important;
16977
  }
16848 stevensc 16978
 
16825 efrain 16979
  .wd-xs-1000 {
16980
    width: 1000px;
16981
  }
16848 stevensc 16982
 
16825 efrain 16983
  .wd-xs-1000p {
16984
    width: 1000%;
16985
  }
16848 stevensc 16986
 
16825 efrain 16987
  .mx-wd-xs-1000p {
16988
    max-width: 1000%;
16989
  }
16848 stevensc 16990
 
16825 efrain 16991
  .mn-wd-xs-1000p {
16992
    min-width: 1000%;
16993
  }
16848 stevensc 16994
 
16825 efrain 16995
  .wd-xs-1000-f {
16996
    width: 1000px !important;
16997
  }
16848 stevensc 16998
 
16825 efrain 16999
  .wd-xs-1000p-f {
17000
    width: 1000% !important;
17001
  }
16848 stevensc 17002
 
16825 efrain 17003
  .mx-wd-xs-1000p-f {
17004
    max-width: 1000% !important;
17005
  }
16848 stevensc 17006
 
16825 efrain 17007
  .mn-wd-xs-1000p-f {
17008
    min-width: 1000% !important;
17009
  }
16848 stevensc 17010
 
16825 efrain 17011
  .wd-xs-auto {
17012
    width: auto;
17013
  }
16848 stevensc 17014
 
16825 efrain 17015
  .wd-xs-auto-f {
17016
    width: auto !important;
17017
  }
17018
}
16848 stevensc 17019
 
16825 efrain 17020
@media (min-width: 576px) {
17021
  .wd-sm-5 {
17022
    width: 5px;
17023
  }
16848 stevensc 17024
 
16825 efrain 17025
  .wd-sm-5p {
17026
    width: 5%;
17027
  }
16848 stevensc 17028
 
16825 efrain 17029
  .mx-wd-sm-5p {
17030
    max-width: 5%;
17031
  }
16848 stevensc 17032
 
16825 efrain 17033
  .mn-wd-sm-5p {
17034
    min-width: 5%;
17035
  }
16848 stevensc 17036
 
16825 efrain 17037
  .wd-sm-5-f {
17038
    width: 5px !important;
17039
  }
16848 stevensc 17040
 
16825 efrain 17041
  .wd-sm-5p-f {
17042
    width: 5% !important;
17043
  }
16848 stevensc 17044
 
16825 efrain 17045
  .mx-wd-sm-5p-f {
17046
    max-width: 5% !important;
17047
  }
16848 stevensc 17048
 
16825 efrain 17049
  .mn-wd-sm-5p-f {
17050
    min-width: 5% !important;
17051
  }
16848 stevensc 17052
 
16825 efrain 17053
  .wd-sm-10 {
17054
    width: 10px;
17055
  }
16848 stevensc 17056
 
16825 efrain 17057
  .wd-sm-10p {
17058
    width: 10%;
17059
  }
16848 stevensc 17060
 
16825 efrain 17061
  .mx-wd-sm-10p {
17062
    max-width: 10%;
17063
  }
16848 stevensc 17064
 
16825 efrain 17065
  .mn-wd-sm-10p {
17066
    min-width: 10%;
17067
  }
16848 stevensc 17068
 
16825 efrain 17069
  .wd-sm-10-f {
17070
    width: 10px !important;
17071
  }
16848 stevensc 17072
 
16825 efrain 17073
  .wd-sm-10p-f {
17074
    width: 10% !important;
17075
  }
16848 stevensc 17076
 
16825 efrain 17077
  .mx-wd-sm-10p-f {
17078
    max-width: 10% !important;
17079
  }
16848 stevensc 17080
 
16825 efrain 17081
  .mn-wd-sm-10p-f {
17082
    min-width: 10% !important;
17083
  }
16848 stevensc 17084
 
16825 efrain 17085
  .wd-sm-15 {
17086
    width: 15px;
17087
  }
16848 stevensc 17088
 
16825 efrain 17089
  .wd-sm-15p {
17090
    width: 15%;
17091
  }
16848 stevensc 17092
 
16825 efrain 17093
  .mx-wd-sm-15p {
17094
    max-width: 15%;
17095
  }
16848 stevensc 17096
 
16825 efrain 17097
  .mn-wd-sm-15p {
17098
    min-width: 15%;
17099
  }
16848 stevensc 17100
 
16825 efrain 17101
  .wd-sm-15-f {
17102
    width: 15px !important;
17103
  }
16848 stevensc 17104
 
16825 efrain 17105
  .wd-sm-15p-f {
17106
    width: 15% !important;
17107
  }
16848 stevensc 17108
 
16825 efrain 17109
  .mx-wd-sm-15p-f {
17110
    max-width: 15% !important;
17111
  }
16848 stevensc 17112
 
16825 efrain 17113
  .mn-wd-sm-15p-f {
17114
    min-width: 15% !important;
17115
  }
16848 stevensc 17116
 
16825 efrain 17117
  .wd-sm-20 {
17118
    width: 20px;
17119
  }
16848 stevensc 17120
 
16825 efrain 17121
  .wd-sm-20p {
17122
    width: 20%;
17123
  }
16848 stevensc 17124
 
16825 efrain 17125
  .mx-wd-sm-20p {
17126
    max-width: 20%;
17127
  }
16848 stevensc 17128
 
16825 efrain 17129
  .mn-wd-sm-20p {
17130
    min-width: 20%;
17131
  }
16848 stevensc 17132
 
16825 efrain 17133
  .wd-sm-20-f {
17134
    width: 20px !important;
17135
  }
16848 stevensc 17136
 
16825 efrain 17137
  .wd-sm-20p-f {
17138
    width: 20% !important;
17139
  }
16848 stevensc 17140
 
16825 efrain 17141
  .mx-wd-sm-20p-f {
17142
    max-width: 20% !important;
17143
  }
16848 stevensc 17144
 
16825 efrain 17145
  .mn-wd-sm-20p-f {
17146
    min-width: 20% !important;
17147
  }
16848 stevensc 17148
 
16825 efrain 17149
  .wd-sm-25 {
17150
    width: 25px;
17151
  }
16848 stevensc 17152
 
16825 efrain 17153
  .wd-sm-25p {
17154
    width: 25%;
17155
  }
16848 stevensc 17156
 
16825 efrain 17157
  .mx-wd-sm-25p {
17158
    max-width: 25%;
17159
  }
16848 stevensc 17160
 
16825 efrain 17161
  .mn-wd-sm-25p {
17162
    min-width: 25%;
17163
  }
16848 stevensc 17164
 
16825 efrain 17165
  .wd-sm-25-f {
17166
    width: 25px !important;
17167
  }
16848 stevensc 17168
 
16825 efrain 17169
  .wd-sm-25p-f {
17170
    width: 25% !important;
17171
  }
16848 stevensc 17172
 
16825 efrain 17173
  .mx-wd-sm-25p-f {
17174
    max-width: 25% !important;
17175
  }
16848 stevensc 17176
 
16825 efrain 17177
  .mn-wd-sm-25p-f {
17178
    min-width: 25% !important;
17179
  }
16848 stevensc 17180
 
16825 efrain 17181
  .wd-sm-30 {
17182
    width: 30px;
17183
  }
16848 stevensc 17184
 
16825 efrain 17185
  .wd-sm-30p {
17186
    width: 30%;
17187
  }
16848 stevensc 17188
 
16825 efrain 17189
  .mx-wd-sm-30p {
17190
    max-width: 30%;
17191
  }
16848 stevensc 17192
 
16825 efrain 17193
  .mn-wd-sm-30p {
17194
    min-width: 30%;
17195
  }
16848 stevensc 17196
 
16825 efrain 17197
  .wd-sm-30-f {
17198
    width: 30px !important;
17199
  }
16848 stevensc 17200
 
16825 efrain 17201
  .wd-sm-30p-f {
17202
    width: 30% !important;
17203
  }
16848 stevensc 17204
 
16825 efrain 17205
  .mx-wd-sm-30p-f {
17206
    max-width: 30% !important;
17207
  }
16848 stevensc 17208
 
16825 efrain 17209
  .mn-wd-sm-30p-f {
17210
    min-width: 30% !important;
17211
  }
16848 stevensc 17212
 
16825 efrain 17213
  .wd-sm-35 {
17214
    width: 35px;
17215
  }
16848 stevensc 17216
 
16825 efrain 17217
  .wd-sm-35p {
17218
    width: 35%;
17219
  }
16848 stevensc 17220
 
16825 efrain 17221
  .mx-wd-sm-35p {
17222
    max-width: 35%;
17223
  }
16848 stevensc 17224
 
16825 efrain 17225
  .mn-wd-sm-35p {
17226
    min-width: 35%;
17227
  }
16848 stevensc 17228
 
16825 efrain 17229
  .wd-sm-35-f {
17230
    width: 35px !important;
17231
  }
16848 stevensc 17232
 
16825 efrain 17233
  .wd-sm-35p-f {
17234
    width: 35% !important;
17235
  }
16848 stevensc 17236
 
16825 efrain 17237
  .mx-wd-sm-35p-f {
17238
    max-width: 35% !important;
17239
  }
16848 stevensc 17240
 
16825 efrain 17241
  .mn-wd-sm-35p-f {
17242
    min-width: 35% !important;
17243
  }
16848 stevensc 17244
 
16825 efrain 17245
  .wd-sm-40 {
17246
    width: 40px;
17247
  }
16848 stevensc 17248
 
16825 efrain 17249
  .wd-sm-40p {
17250
    width: 40%;
17251
  }
16848 stevensc 17252
 
16825 efrain 17253
  .mx-wd-sm-40p {
17254
    max-width: 40%;
17255
  }
16848 stevensc 17256
 
16825 efrain 17257
  .mn-wd-sm-40p {
17258
    min-width: 40%;
17259
  }
16848 stevensc 17260
 
16825 efrain 17261
  .wd-sm-40-f {
17262
    width: 40px !important;
17263
  }
16848 stevensc 17264
 
16825 efrain 17265
  .wd-sm-40p-f {
17266
    width: 40% !important;
17267
  }
16848 stevensc 17268
 
16825 efrain 17269
  .mx-wd-sm-40p-f {
17270
    max-width: 40% !important;
17271
  }
16848 stevensc 17272
 
16825 efrain 17273
  .mn-wd-sm-40p-f {
17274
    min-width: 40% !important;
17275
  }
16848 stevensc 17276
 
16825 efrain 17277
  .wd-sm-45 {
17278
    width: 45px;
17279
  }
16848 stevensc 17280
 
16825 efrain 17281
  .wd-sm-45p {
17282
    width: 45%;
17283
  }
16848 stevensc 17284
 
16825 efrain 17285
  .mx-wd-sm-45p {
17286
    max-width: 45%;
17287
  }
16848 stevensc 17288
 
16825 efrain 17289
  .mn-wd-sm-45p {
17290
    min-width: 45%;
17291
  }
16848 stevensc 17292
 
16825 efrain 17293
  .wd-sm-45-f {
17294
    width: 45px !important;
17295
  }
16848 stevensc 17296
 
16825 efrain 17297
  .wd-sm-45p-f {
17298
    width: 45% !important;
17299
  }
16848 stevensc 17300
 
16825 efrain 17301
  .mx-wd-sm-45p-f {
17302
    max-width: 45% !important;
17303
  }
16848 stevensc 17304
 
16825 efrain 17305
  .mn-wd-sm-45p-f {
17306
    min-width: 45% !important;
17307
  }
16848 stevensc 17308
 
16825 efrain 17309
  .wd-sm-50 {
17310
    width: 50px;
17311
  }
16848 stevensc 17312
 
16825 efrain 17313
  .wd-sm-50p {
17314
    width: 50%;
17315
  }
16848 stevensc 17316
 
16825 efrain 17317
  .mx-wd-sm-50p {
17318
    max-width: 50%;
17319
  }
16848 stevensc 17320
 
16825 efrain 17321
  .mn-wd-sm-50p {
17322
    min-width: 50%;
17323
  }
16848 stevensc 17324
 
16825 efrain 17325
  .wd-sm-50-f {
17326
    width: 50px !important;
17327
  }
16848 stevensc 17328
 
16825 efrain 17329
  .wd-sm-50p-f {
17330
    width: 50% !important;
17331
  }
16848 stevensc 17332
 
16825 efrain 17333
  .mx-wd-sm-50p-f {
17334
    max-width: 50% !important;
17335
  }
16848 stevensc 17336
 
16825 efrain 17337
  .mn-wd-sm-50p-f {
17338
    min-width: 50% !important;
17339
  }
16848 stevensc 17340
 
16825 efrain 17341
  .wd-sm-55 {
17342
    width: 55px;
17343
  }
16848 stevensc 17344
 
16825 efrain 17345
  .wd-sm-55p {
17346
    width: 55%;
17347
  }
16848 stevensc 17348
 
16825 efrain 17349
  .mx-wd-sm-55p {
17350
    max-width: 55%;
17351
  }
16848 stevensc 17352
 
16825 efrain 17353
  .mn-wd-sm-55p {
17354
    min-width: 55%;
17355
  }
16848 stevensc 17356
 
16825 efrain 17357
  .wd-sm-55-f {
17358
    width: 55px !important;
17359
  }
16848 stevensc 17360
 
16825 efrain 17361
  .wd-sm-55p-f {
17362
    width: 55% !important;
17363
  }
16848 stevensc 17364
 
16825 efrain 17365
  .mx-wd-sm-55p-f {
17366
    max-width: 55% !important;
17367
  }
16848 stevensc 17368
 
16825 efrain 17369
  .mn-wd-sm-55p-f {
17370
    min-width: 55% !important;
17371
  }
16848 stevensc 17372
 
16825 efrain 17373
  .wd-sm-60 {
17374
    width: 60px;
17375
  }
16848 stevensc 17376
 
16825 efrain 17377
  .wd-sm-60p {
17378
    width: 60%;
17379
  }
16848 stevensc 17380
 
16825 efrain 17381
  .mx-wd-sm-60p {
17382
    max-width: 60%;
17383
  }
16848 stevensc 17384
 
16825 efrain 17385
  .mn-wd-sm-60p {
17386
    min-width: 60%;
17387
  }
16848 stevensc 17388
 
16825 efrain 17389
  .wd-sm-60-f {
17390
    width: 60px !important;
17391
  }
16848 stevensc 17392
 
16825 efrain 17393
  .wd-sm-60p-f {
17394
    width: 60% !important;
17395
  }
16848 stevensc 17396
 
16825 efrain 17397
  .mx-wd-sm-60p-f {
17398
    max-width: 60% !important;
17399
  }
16848 stevensc 17400
 
16825 efrain 17401
  .mn-wd-sm-60p-f {
17402
    min-width: 60% !important;
17403
  }
16848 stevensc 17404
 
16825 efrain 17405
  .wd-sm-65 {
17406
    width: 65px;
17407
  }
16848 stevensc 17408
 
16825 efrain 17409
  .wd-sm-65p {
17410
    width: 65%;
17411
  }
16848 stevensc 17412
 
16825 efrain 17413
  .mx-wd-sm-65p {
17414
    max-width: 65%;
17415
  }
16848 stevensc 17416
 
16825 efrain 17417
  .mn-wd-sm-65p {
17418
    min-width: 65%;
17419
  }
16848 stevensc 17420
 
16825 efrain 17421
  .wd-sm-65-f {
17422
    width: 65px !important;
17423
  }
16848 stevensc 17424
 
16825 efrain 17425
  .wd-sm-65p-f {
17426
    width: 65% !important;
17427
  }
16848 stevensc 17428
 
16825 efrain 17429
  .mx-wd-sm-65p-f {
17430
    max-width: 65% !important;
17431
  }
16848 stevensc 17432
 
16825 efrain 17433
  .mn-wd-sm-65p-f {
17434
    min-width: 65% !important;
17435
  }
16848 stevensc 17436
 
16825 efrain 17437
  .wd-sm-70 {
17438
    width: 70px;
17439
  }
16848 stevensc 17440
 
16825 efrain 17441
  .wd-sm-70p {
17442
    width: 70%;
17443
  }
16848 stevensc 17444
 
16825 efrain 17445
  .mx-wd-sm-70p {
17446
    max-width: 70%;
17447
  }
16848 stevensc 17448
 
16825 efrain 17449
  .mn-wd-sm-70p {
17450
    min-width: 70%;
17451
  }
16848 stevensc 17452
 
16825 efrain 17453
  .wd-sm-70-f {
17454
    width: 70px !important;
17455
  }
16848 stevensc 17456
 
16825 efrain 17457
  .wd-sm-70p-f {
17458
    width: 70% !important;
17459
  }
16848 stevensc 17460
 
16825 efrain 17461
  .mx-wd-sm-70p-f {
17462
    max-width: 70% !important;
17463
  }
16848 stevensc 17464
 
16825 efrain 17465
  .mn-wd-sm-70p-f {
17466
    min-width: 70% !important;
17467
  }
16848 stevensc 17468
 
16825 efrain 17469
  .wd-sm-75 {
17470
    width: 75px;
17471
  }
16848 stevensc 17472
 
16825 efrain 17473
  .wd-sm-75p {
17474
    width: 75%;
17475
  }
16848 stevensc 17476
 
16825 efrain 17477
  .mx-wd-sm-75p {
17478
    max-width: 75%;
17479
  }
16848 stevensc 17480
 
16825 efrain 17481
  .mn-wd-sm-75p {
17482
    min-width: 75%;
17483
  }
16848 stevensc 17484
 
16825 efrain 17485
  .wd-sm-75-f {
17486
    width: 75px !important;
17487
  }
16848 stevensc 17488
 
16825 efrain 17489
  .wd-sm-75p-f {
17490
    width: 75% !important;
17491
  }
16848 stevensc 17492
 
16825 efrain 17493
  .mx-wd-sm-75p-f {
17494
    max-width: 75% !important;
17495
  }
16848 stevensc 17496
 
16825 efrain 17497
  .mn-wd-sm-75p-f {
17498
    min-width: 75% !important;
17499
  }
16848 stevensc 17500
 
16825 efrain 17501
  .wd-sm-80 {
17502
    width: 80px;
17503
  }
16848 stevensc 17504
 
16825 efrain 17505
  .wd-sm-80p {
17506
    width: 80%;
17507
  }
16848 stevensc 17508
 
16825 efrain 17509
  .mx-wd-sm-80p {
17510
    max-width: 80%;
17511
  }
16848 stevensc 17512
 
16825 efrain 17513
  .mn-wd-sm-80p {
17514
    min-width: 80%;
17515
  }
16848 stevensc 17516
 
16825 efrain 17517
  .wd-sm-80-f {
17518
    width: 80px !important;
17519
  }
16848 stevensc 17520
 
16825 efrain 17521
  .wd-sm-80p-f {
17522
    width: 80% !important;
17523
  }
16848 stevensc 17524
 
16825 efrain 17525
  .mx-wd-sm-80p-f {
17526
    max-width: 80% !important;
17527
  }
16848 stevensc 17528
 
16825 efrain 17529
  .mn-wd-sm-80p-f {
17530
    min-width: 80% !important;
17531
  }
16848 stevensc 17532
 
16825 efrain 17533
  .wd-sm-85 {
17534
    width: 85px;
17535
  }
16848 stevensc 17536
 
16825 efrain 17537
  .wd-sm-85p {
17538
    width: 85%;
17539
  }
16848 stevensc 17540
 
16825 efrain 17541
  .mx-wd-sm-85p {
17542
    max-width: 85%;
17543
  }
16848 stevensc 17544
 
16825 efrain 17545
  .mn-wd-sm-85p {
17546
    min-width: 85%;
17547
  }
16848 stevensc 17548
 
16825 efrain 17549
  .wd-sm-85-f {
17550
    width: 85px !important;
17551
  }
16848 stevensc 17552
 
16825 efrain 17553
  .wd-sm-85p-f {
17554
    width: 85% !important;
17555
  }
16848 stevensc 17556
 
16825 efrain 17557
  .mx-wd-sm-85p-f {
17558
    max-width: 85% !important;
17559
  }
16848 stevensc 17560
 
16825 efrain 17561
  .mn-wd-sm-85p-f {
17562
    min-width: 85% !important;
17563
  }
16848 stevensc 17564
 
16825 efrain 17565
  .wd-sm-90 {
17566
    width: 90px;
17567
  }
16848 stevensc 17568
 
16825 efrain 17569
  .wd-sm-90p {
17570
    width: 90%;
17571
  }
16848 stevensc 17572
 
16825 efrain 17573
  .mx-wd-sm-90p {
17574
    max-width: 90%;
17575
  }
16848 stevensc 17576
 
16825 efrain 17577
  .mn-wd-sm-90p {
17578
    min-width: 90%;
17579
  }
16848 stevensc 17580
 
16825 efrain 17581
  .wd-sm-90-f {
17582
    width: 90px !important;
17583
  }
16848 stevensc 17584
 
16825 efrain 17585
  .wd-sm-90p-f {
17586
    width: 90% !important;
17587
  }
16848 stevensc 17588
 
16825 efrain 17589
  .mx-wd-sm-90p-f {
17590
    max-width: 90% !important;
17591
  }
16848 stevensc 17592
 
16825 efrain 17593
  .mn-wd-sm-90p-f {
17594
    min-width: 90% !important;
17595
  }
16848 stevensc 17596
 
16825 efrain 17597
  .wd-sm-95 {
17598
    width: 95px;
17599
  }
16848 stevensc 17600
 
16825 efrain 17601
  .wd-sm-95p {
17602
    width: 95%;
17603
  }
16848 stevensc 17604
 
16825 efrain 17605
  .mx-wd-sm-95p {
17606
    max-width: 95%;
17607
  }
16848 stevensc 17608
 
16825 efrain 17609
  .mn-wd-sm-95p {
17610
    min-width: 95%;
17611
  }
16848 stevensc 17612
 
16825 efrain 17613
  .wd-sm-95-f {
17614
    width: 95px !important;
17615
  }
16848 stevensc 17616
 
16825 efrain 17617
  .wd-sm-95p-f {
17618
    width: 95% !important;
17619
  }
16848 stevensc 17620
 
16825 efrain 17621
  .mx-wd-sm-95p-f {
17622
    max-width: 95% !important;
17623
  }
16848 stevensc 17624
 
16825 efrain 17625
  .mn-wd-sm-95p-f {
17626
    min-width: 95% !important;
17627
  }
16848 stevensc 17628
 
16825 efrain 17629
  .wd-sm-100 {
17630
    width: 100px;
17631
  }
16848 stevensc 17632
 
16825 efrain 17633
  .wd-sm-100p {
17634
    width: 100%;
17635
  }
16848 stevensc 17636
 
16825 efrain 17637
  .mx-wd-sm-100p {
17638
    max-width: 100%;
17639
  }
16848 stevensc 17640
 
16825 efrain 17641
  .mn-wd-sm-100p {
17642
    min-width: 100%;
17643
  }
16848 stevensc 17644
 
16825 efrain 17645
  .wd-sm-100-f {
17646
    width: 100px !important;
17647
  }
16848 stevensc 17648
 
16825 efrain 17649
  .wd-sm-100p-f {
17650
    width: 100% !important;
17651
  }
16848 stevensc 17652
 
16825 efrain 17653
  .mx-wd-sm-100p-f {
17654
    max-width: 100% !important;
17655
  }
16848 stevensc 17656
 
16825 efrain 17657
  .mn-wd-sm-100p-f {
17658
    min-width: 100% !important;
17659
  }
16848 stevensc 17660
 
16825 efrain 17661
  .wd-sm-150 {
17662
    width: 150px;
17663
  }
16848 stevensc 17664
 
16825 efrain 17665
  .wd-sm-150p {
17666
    width: 150%;
17667
  }
16848 stevensc 17668
 
16825 efrain 17669
  .mx-wd-sm-150p {
17670
    max-width: 150%;
17671
  }
16848 stevensc 17672
 
16825 efrain 17673
  .mn-wd-sm-150p {
17674
    min-width: 150%;
17675
  }
16848 stevensc 17676
 
16825 efrain 17677
  .wd-sm-150-f {
17678
    width: 150px !important;
17679
  }
16848 stevensc 17680
 
16825 efrain 17681
  .wd-sm-150p-f {
17682
    width: 150% !important;
17683
  }
16848 stevensc 17684
 
16825 efrain 17685
  .mx-wd-sm-150p-f {
17686
    max-width: 150% !important;
17687
  }
16848 stevensc 17688
 
16825 efrain 17689
  .mn-wd-sm-150p-f {
17690
    min-width: 150% !important;
17691
  }
16848 stevensc 17692
 
16825 efrain 17693
  .wd-sm-200 {
17694
    width: 200px;
17695
  }
16848 stevensc 17696
 
16825 efrain 17697
  .wd-sm-200p {
17698
    width: 200%;
17699
  }
16848 stevensc 17700
 
16825 efrain 17701
  .mx-wd-sm-200p {
17702
    max-width: 200%;
17703
  }
16848 stevensc 17704
 
16825 efrain 17705
  .mn-wd-sm-200p {
17706
    min-width: 200%;
17707
  }
16848 stevensc 17708
 
16825 efrain 17709
  .wd-sm-200-f {
17710
    width: 200px !important;
17711
  }
16848 stevensc 17712
 
16825 efrain 17713
  .wd-sm-200p-f {
17714
    width: 200% !important;
17715
  }
16848 stevensc 17716
 
16825 efrain 17717
  .mx-wd-sm-200p-f {
17718
    max-width: 200% !important;
17719
  }
16848 stevensc 17720
 
16825 efrain 17721
  .mn-wd-sm-200p-f {
17722
    min-width: 200% !important;
17723
  }
16848 stevensc 17724
 
16825 efrain 17725
  .wd-sm-250 {
17726
    width: 250px;
17727
  }
16848 stevensc 17728
 
16825 efrain 17729
  .wd-sm-250p {
17730
    width: 250%;
17731
  }
16848 stevensc 17732
 
16825 efrain 17733
  .mx-wd-sm-250p {
17734
    max-width: 250%;
17735
  }
16848 stevensc 17736
 
16825 efrain 17737
  .mn-wd-sm-250p {
17738
    min-width: 250%;
17739
  }
16848 stevensc 17740
 
16825 efrain 17741
  .wd-sm-250-f {
17742
    width: 250px !important;
17743
  }
16848 stevensc 17744
 
16825 efrain 17745
  .wd-sm-250p-f {
17746
    width: 250% !important;
17747
  }
16848 stevensc 17748
 
16825 efrain 17749
  .mx-wd-sm-250p-f {
17750
    max-width: 250% !important;
17751
  }
16848 stevensc 17752
 
16825 efrain 17753
  .mn-wd-sm-250p-f {
17754
    min-width: 250% !important;
17755
  }
16848 stevensc 17756
 
16825 efrain 17757
  .wd-sm-300 {
17758
    width: 300px;
17759
  }
16848 stevensc 17760
 
16825 efrain 17761
  .wd-sm-300p {
17762
    width: 300%;
17763
  }
16848 stevensc 17764
 
16825 efrain 17765
  .mx-wd-sm-300p {
17766
    max-width: 300%;
17767
  }
16848 stevensc 17768
 
16825 efrain 17769
  .mn-wd-sm-300p {
17770
    min-width: 300%;
17771
  }
16848 stevensc 17772
 
16825 efrain 17773
  .wd-sm-300-f {
17774
    width: 300px !important;
17775
  }
16848 stevensc 17776
 
16825 efrain 17777
  .wd-sm-300p-f {
17778
    width: 300% !important;
17779
  }
16848 stevensc 17780
 
16825 efrain 17781
  .mx-wd-sm-300p-f {
17782
    max-width: 300% !important;
17783
  }
16848 stevensc 17784
 
16825 efrain 17785
  .mn-wd-sm-300p-f {
17786
    min-width: 300% !important;
17787
  }
16848 stevensc 17788
 
16825 efrain 17789
  .wd-sm-350 {
17790
    width: 350px;
17791
  }
16848 stevensc 17792
 
16825 efrain 17793
  .wd-sm-350p {
17794
    width: 350%;
17795
  }
16848 stevensc 17796
 
16825 efrain 17797
  .mx-wd-sm-350p {
17798
    max-width: 350%;
17799
  }
16848 stevensc 17800
 
16825 efrain 17801
  .mn-wd-sm-350p {
17802
    min-width: 350%;
17803
  }
16848 stevensc 17804
 
16825 efrain 17805
  .wd-sm-350-f {
17806
    width: 350px !important;
17807
  }
16848 stevensc 17808
 
16825 efrain 17809
  .wd-sm-350p-f {
17810
    width: 350% !important;
17811
  }
16848 stevensc 17812
 
16825 efrain 17813
  .mx-wd-sm-350p-f {
17814
    max-width: 350% !important;
17815
  }
16848 stevensc 17816
 
16825 efrain 17817
  .mn-wd-sm-350p-f {
17818
    min-width: 350% !important;
17819
  }
16848 stevensc 17820
 
16825 efrain 17821
  .wd-sm-400 {
17822
    width: 400px;
17823
  }
16848 stevensc 17824
 
16825 efrain 17825
  .wd-sm-400p {
17826
    width: 400%;
17827
  }
16848 stevensc 17828
 
16825 efrain 17829
  .mx-wd-sm-400p {
17830
    max-width: 400%;
17831
  }
16848 stevensc 17832
 
16825 efrain 17833
  .mn-wd-sm-400p {
17834
    min-width: 400%;
17835
  }
16848 stevensc 17836
 
16825 efrain 17837
  .wd-sm-400-f {
17838
    width: 400px !important;
17839
  }
16848 stevensc 17840
 
16825 efrain 17841
  .wd-sm-400p-f {
17842
    width: 400% !important;
17843
  }
16848 stevensc 17844
 
16825 efrain 17845
  .mx-wd-sm-400p-f {
17846
    max-width: 400% !important;
17847
  }
16848 stevensc 17848
 
16825 efrain 17849
  .mn-wd-sm-400p-f {
17850
    min-width: 400% !important;
17851
  }
16848 stevensc 17852
 
16825 efrain 17853
  .wd-sm-450 {
17854
    width: 450px;
17855
  }
16848 stevensc 17856
 
16825 efrain 17857
  .wd-sm-450p {
17858
    width: 450%;
17859
  }
16848 stevensc 17860
 
16825 efrain 17861
  .mx-wd-sm-450p {
17862
    max-width: 450%;
17863
  }
16848 stevensc 17864
 
16825 efrain 17865
  .mn-wd-sm-450p {
17866
    min-width: 450%;
17867
  }
16848 stevensc 17868
 
16825 efrain 17869
  .wd-sm-450-f {
17870
    width: 450px !important;
17871
  }
16848 stevensc 17872
 
16825 efrain 17873
  .wd-sm-450p-f {
17874
    width: 450% !important;
17875
  }
16848 stevensc 17876
 
16825 efrain 17877
  .mx-wd-sm-450p-f {
17878
    max-width: 450% !important;
17879
  }
16848 stevensc 17880
 
16825 efrain 17881
  .mn-wd-sm-450p-f {
17882
    min-width: 450% !important;
17883
  }
16848 stevensc 17884
 
16825 efrain 17885
  .wd-sm-500 {
17886
    width: 500px;
17887
  }
16848 stevensc 17888
 
16825 efrain 17889
  .wd-sm-500p {
17890
    width: 500%;
17891
  }
16848 stevensc 17892
 
16825 efrain 17893
  .mx-wd-sm-500p {
17894
    max-width: 500%;
17895
  }
16848 stevensc 17896
 
16825 efrain 17897
  .mn-wd-sm-500p {
17898
    min-width: 500%;
17899
  }
16848 stevensc 17900
 
16825 efrain 17901
  .wd-sm-500-f {
17902
    width: 500px !important;
17903
  }
16848 stevensc 17904
 
16825 efrain 17905
  .wd-sm-500p-f {
17906
    width: 500% !important;
17907
  }
16848 stevensc 17908
 
16825 efrain 17909
  .mx-wd-sm-500p-f {
17910
    max-width: 500% !important;
17911
  }
16848 stevensc 17912
 
16825 efrain 17913
  .mn-wd-sm-500p-f {
17914
    min-width: 500% !important;
17915
  }
16848 stevensc 17916
 
16825 efrain 17917
  .wd-sm-550 {
17918
    width: 550px;
17919
  }
16848 stevensc 17920
 
16825 efrain 17921
  .wd-sm-550p {
17922
    width: 550%;
17923
  }
16848 stevensc 17924
 
16825 efrain 17925
  .mx-wd-sm-550p {
17926
    max-width: 550%;
17927
  }
16848 stevensc 17928
 
16825 efrain 17929
  .mn-wd-sm-550p {
17930
    min-width: 550%;
17931
  }
16848 stevensc 17932
 
16825 efrain 17933
  .wd-sm-550-f {
17934
    width: 550px !important;
17935
  }
16848 stevensc 17936
 
16825 efrain 17937
  .wd-sm-550p-f {
17938
    width: 550% !important;
17939
  }
16848 stevensc 17940
 
16825 efrain 17941
  .mx-wd-sm-550p-f {
17942
    max-width: 550% !important;
17943
  }
16848 stevensc 17944
 
16825 efrain 17945
  .mn-wd-sm-550p-f {
17946
    min-width: 550% !important;
17947
  }
16848 stevensc 17948
 
16825 efrain 17949
  .wd-sm-600 {
17950
    width: 600px;
17951
  }
16848 stevensc 17952
 
16825 efrain 17953
  .wd-sm-600p {
17954
    width: 600%;
17955
  }
16848 stevensc 17956
 
16825 efrain 17957
  .mx-wd-sm-600p {
17958
    max-width: 600%;
17959
  }
16848 stevensc 17960
 
16825 efrain 17961
  .mn-wd-sm-600p {
17962
    min-width: 600%;
17963
  }
16848 stevensc 17964
 
16825 efrain 17965
  .wd-sm-600-f {
17966
    width: 600px !important;
17967
  }
16848 stevensc 17968
 
16825 efrain 17969
  .wd-sm-600p-f {
17970
    width: 600% !important;
17971
  }
16848 stevensc 17972
 
16825 efrain 17973
  .mx-wd-sm-600p-f {
17974
    max-width: 600% !important;
17975
  }
16848 stevensc 17976
 
16825 efrain 17977
  .mn-wd-sm-600p-f {
17978
    min-width: 600% !important;
17979
  }
16848 stevensc 17980
 
16825 efrain 17981
  .wd-sm-650 {
17982
    width: 650px;
17983
  }
16848 stevensc 17984
 
16825 efrain 17985
  .wd-sm-650p {
17986
    width: 650%;
17987
  }
16848 stevensc 17988
 
16825 efrain 17989
  .mx-wd-sm-650p {
17990
    max-width: 650%;
17991
  }
16848 stevensc 17992
 
16825 efrain 17993
  .mn-wd-sm-650p {
17994
    min-width: 650%;
17995
  }
16848 stevensc 17996
 
16825 efrain 17997
  .wd-sm-650-f {
17998
    width: 650px !important;
17999
  }
16848 stevensc 18000
 
16825 efrain 18001
  .wd-sm-650p-f {
18002
    width: 650% !important;
18003
  }
16848 stevensc 18004
 
16825 efrain 18005
  .mx-wd-sm-650p-f {
18006
    max-width: 650% !important;
18007
  }
16848 stevensc 18008
 
16825 efrain 18009
  .mn-wd-sm-650p-f {
18010
    min-width: 650% !important;
18011
  }
16848 stevensc 18012
 
16825 efrain 18013
  .wd-sm-700 {
18014
    width: 700px;
18015
  }
16848 stevensc 18016
 
16825 efrain 18017
  .wd-sm-700p {
18018
    width: 700%;
18019
  }
16848 stevensc 18020
 
16825 efrain 18021
  .mx-wd-sm-700p {
18022
    max-width: 700%;
18023
  }
16848 stevensc 18024
 
16825 efrain 18025
  .mn-wd-sm-700p {
18026
    min-width: 700%;
18027
  }
16848 stevensc 18028
 
16825 efrain 18029
  .wd-sm-700-f {
18030
    width: 700px !important;
18031
  }
16848 stevensc 18032
 
16825 efrain 18033
  .wd-sm-700p-f {
18034
    width: 700% !important;
18035
  }
16848 stevensc 18036
 
16825 efrain 18037
  .mx-wd-sm-700p-f {
18038
    max-width: 700% !important;
18039
  }
16848 stevensc 18040
 
16825 efrain 18041
  .mn-wd-sm-700p-f {
18042
    min-width: 700% !important;
18043
  }
16848 stevensc 18044
 
16825 efrain 18045
  .wd-sm-750 {
18046
    width: 750px;
18047
  }
16848 stevensc 18048
 
16825 efrain 18049
  .wd-sm-750p {
18050
    width: 750%;
18051
  }
16848 stevensc 18052
 
16825 efrain 18053
  .mx-wd-sm-750p {
18054
    max-width: 750%;
18055
  }
16848 stevensc 18056
 
16825 efrain 18057
  .mn-wd-sm-750p {
18058
    min-width: 750%;
18059
  }
16848 stevensc 18060
 
16825 efrain 18061
  .wd-sm-750-f {
18062
    width: 750px !important;
18063
  }
16848 stevensc 18064
 
16825 efrain 18065
  .wd-sm-750p-f {
18066
    width: 750% !important;
18067
  }
16848 stevensc 18068
 
16825 efrain 18069
  .mx-wd-sm-750p-f {
18070
    max-width: 750% !important;
18071
  }
16848 stevensc 18072
 
16825 efrain 18073
  .mn-wd-sm-750p-f {
18074
    min-width: 750% !important;
18075
  }
16848 stevensc 18076
 
16825 efrain 18077
  .wd-sm-800 {
18078
    width: 800px;
18079
  }
16848 stevensc 18080
 
16825 efrain 18081
  .wd-sm-800p {
18082
    width: 800%;
18083
  }
16848 stevensc 18084
 
16825 efrain 18085
  .mx-wd-sm-800p {
18086
    max-width: 800%;
18087
  }
16848 stevensc 18088
 
16825 efrain 18089
  .mn-wd-sm-800p {
18090
    min-width: 800%;
18091
  }
16848 stevensc 18092
 
16825 efrain 18093
  .wd-sm-800-f {
18094
    width: 800px !important;
18095
  }
16848 stevensc 18096
 
16825 efrain 18097
  .wd-sm-800p-f {
18098
    width: 800% !important;
18099
  }
16848 stevensc 18100
 
16825 efrain 18101
  .mx-wd-sm-800p-f {
18102
    max-width: 800% !important;
18103
  }
16848 stevensc 18104
 
16825 efrain 18105
  .mn-wd-sm-800p-f {
18106
    min-width: 800% !important;
18107
  }
16848 stevensc 18108
 
16825 efrain 18109
  .wd-sm-850 {
18110
    width: 850px;
18111
  }
16848 stevensc 18112
 
16825 efrain 18113
  .wd-sm-850p {
18114
    width: 850%;
18115
  }
16848 stevensc 18116
 
16825 efrain 18117
  .mx-wd-sm-850p {
18118
    max-width: 850%;
18119
  }
16848 stevensc 18120
 
16825 efrain 18121
  .mn-wd-sm-850p {
18122
    min-width: 850%;
18123
  }
16848 stevensc 18124
 
16825 efrain 18125
  .wd-sm-850-f {
18126
    width: 850px !important;
18127
  }
16848 stevensc 18128
 
16825 efrain 18129
  .wd-sm-850p-f {
18130
    width: 850% !important;
18131
  }
16848 stevensc 18132
 
16825 efrain 18133
  .mx-wd-sm-850p-f {
18134
    max-width: 850% !important;
18135
  }
16848 stevensc 18136
 
16825 efrain 18137
  .mn-wd-sm-850p-f {
18138
    min-width: 850% !important;
18139
  }
16848 stevensc 18140
 
16825 efrain 18141
  .wd-sm-900 {
18142
    width: 900px;
18143
  }
16848 stevensc 18144
 
16825 efrain 18145
  .wd-sm-900p {
18146
    width: 900%;
18147
  }
16848 stevensc 18148
 
16825 efrain 18149
  .mx-wd-sm-900p {
18150
    max-width: 900%;
18151
  }
16848 stevensc 18152
 
16825 efrain 18153
  .mn-wd-sm-900p {
18154
    min-width: 900%;
18155
  }
16848 stevensc 18156
 
16825 efrain 18157
  .wd-sm-900-f {
18158
    width: 900px !important;
18159
  }
16848 stevensc 18160
 
16825 efrain 18161
  .wd-sm-900p-f {
18162
    width: 900% !important;
18163
  }
16848 stevensc 18164
 
16825 efrain 18165
  .mx-wd-sm-900p-f {
18166
    max-width: 900% !important;
18167
  }
16848 stevensc 18168
 
16825 efrain 18169
  .mn-wd-sm-900p-f {
18170
    min-width: 900% !important;
18171
  }
16848 stevensc 18172
 
16825 efrain 18173
  .wd-sm-950 {
18174
    width: 950px;
18175
  }
16848 stevensc 18176
 
16825 efrain 18177
  .wd-sm-950p {
18178
    width: 950%;
18179
  }
16848 stevensc 18180
 
16825 efrain 18181
  .mx-wd-sm-950p {
18182
    max-width: 950%;
18183
  }
16848 stevensc 18184
 
16825 efrain 18185
  .mn-wd-sm-950p {
18186
    min-width: 950%;
18187
  }
16848 stevensc 18188
 
16825 efrain 18189
  .wd-sm-950-f {
18190
    width: 950px !important;
18191
  }
16848 stevensc 18192
 
16825 efrain 18193
  .wd-sm-950p-f {
18194
    width: 950% !important;
18195
  }
16848 stevensc 18196
 
16825 efrain 18197
  .mx-wd-sm-950p-f {
18198
    max-width: 950% !important;
18199
  }
16848 stevensc 18200
 
16825 efrain 18201
  .mn-wd-sm-950p-f {
18202
    min-width: 950% !important;
18203
  }
16848 stevensc 18204
 
16825 efrain 18205
  .wd-sm-1000 {
18206
    width: 1000px;
18207
  }
16848 stevensc 18208
 
16825 efrain 18209
  .wd-sm-1000p {
18210
    width: 1000%;
18211
  }
16848 stevensc 18212
 
16825 efrain 18213
  .mx-wd-sm-1000p {
18214
    max-width: 1000%;
18215
  }
16848 stevensc 18216
 
16825 efrain 18217
  .mn-wd-sm-1000p {
18218
    min-width: 1000%;
18219
  }
16848 stevensc 18220
 
16825 efrain 18221
  .wd-sm-1000-f {
18222
    width: 1000px !important;
18223
  }
16848 stevensc 18224
 
16825 efrain 18225
  .wd-sm-1000p-f {
18226
    width: 1000% !important;
18227
  }
16848 stevensc 18228
 
16825 efrain 18229
  .mx-wd-sm-1000p-f {
18230
    max-width: 1000% !important;
18231
  }
16848 stevensc 18232
 
16825 efrain 18233
  .mn-wd-sm-1000p-f {
18234
    min-width: 1000% !important;
18235
  }
16848 stevensc 18236
 
16825 efrain 18237
  .wd-sm-auto {
18238
    width: auto;
18239
  }
16848 stevensc 18240
 
16825 efrain 18241
  .wd-sm-auto-f {
18242
    width: auto !important;
18243
  }
18244
}
16848 stevensc 18245
 
16825 efrain 18246
@media (min-width: 768px) {
18247
  .wd-md-5 {
18248
    width: 5px;
18249
  }
16848 stevensc 18250
 
16825 efrain 18251
  .wd-md-5p {
18252
    width: 5%;
18253
  }
16848 stevensc 18254
 
16825 efrain 18255
  .mx-wd-md-5p {
18256
    max-width: 5%;
18257
  }
16848 stevensc 18258
 
16825 efrain 18259
  .mn-wd-md-5p {
18260
    min-width: 5%;
18261
  }
16848 stevensc 18262
 
16825 efrain 18263
  .wd-md-5-f {
18264
    width: 5px !important;
18265
  }
16848 stevensc 18266
 
16825 efrain 18267
  .wd-md-5p-f {
18268
    width: 5% !important;
18269
  }
16848 stevensc 18270
 
16825 efrain 18271
  .mx-wd-md-5p-f {
18272
    max-width: 5% !important;
18273
  }
16848 stevensc 18274
 
16825 efrain 18275
  .mn-wd-md-5p-f {
18276
    min-width: 5% !important;
18277
  }
16848 stevensc 18278
 
16825 efrain 18279
  .wd-md-10 {
18280
    width: 10px;
18281
  }
16848 stevensc 18282
 
16825 efrain 18283
  .wd-md-10p {
18284
    width: 10%;
18285
  }
16848 stevensc 18286
 
16825 efrain 18287
  .mx-wd-md-10p {
18288
    max-width: 10%;
18289
  }
16848 stevensc 18290
 
16825 efrain 18291
  .mn-wd-md-10p {
18292
    min-width: 10%;
18293
  }
16848 stevensc 18294
 
16825 efrain 18295
  .wd-md-10-f {
18296
    width: 10px !important;
18297
  }
16848 stevensc 18298
 
16825 efrain 18299
  .wd-md-10p-f {
18300
    width: 10% !important;
18301
  }
16848 stevensc 18302
 
16825 efrain 18303
  .mx-wd-md-10p-f {
18304
    max-width: 10% !important;
18305
  }
16848 stevensc 18306
 
16825 efrain 18307
  .mn-wd-md-10p-f {
18308
    min-width: 10% !important;
18309
  }
16848 stevensc 18310
 
16825 efrain 18311
  .wd-md-15 {
18312
    width: 15px;
18313
  }
16848 stevensc 18314
 
16825 efrain 18315
  .wd-md-15p {
18316
    width: 15%;
18317
  }
16848 stevensc 18318
 
16825 efrain 18319
  .mx-wd-md-15p {
18320
    max-width: 15%;
18321
  }
16848 stevensc 18322
 
16825 efrain 18323
  .mn-wd-md-15p {
18324
    min-width: 15%;
18325
  }
16848 stevensc 18326
 
16825 efrain 18327
  .wd-md-15-f {
18328
    width: 15px !important;
18329
  }
16848 stevensc 18330
 
16825 efrain 18331
  .wd-md-15p-f {
18332
    width: 15% !important;
18333
  }
16848 stevensc 18334
 
16825 efrain 18335
  .mx-wd-md-15p-f {
18336
    max-width: 15% !important;
18337
  }
16848 stevensc 18338
 
16825 efrain 18339
  .mn-wd-md-15p-f {
18340
    min-width: 15% !important;
18341
  }
16848 stevensc 18342
 
16825 efrain 18343
  .wd-md-20 {
18344
    width: 20px;
18345
  }
16848 stevensc 18346
 
16825 efrain 18347
  .wd-md-20p {
18348
    width: 20%;
18349
  }
16848 stevensc 18350
 
16825 efrain 18351
  .mx-wd-md-20p {
18352
    max-width: 20%;
18353
  }
16848 stevensc 18354
 
16825 efrain 18355
  .mn-wd-md-20p {
18356
    min-width: 20%;
18357
  }
16848 stevensc 18358
 
16825 efrain 18359
  .wd-md-20-f {
18360
    width: 20px !important;
18361
  }
16848 stevensc 18362
 
16825 efrain 18363
  .wd-md-20p-f {
18364
    width: 20% !important;
18365
  }
16848 stevensc 18366
 
16825 efrain 18367
  .mx-wd-md-20p-f {
18368
    max-width: 20% !important;
18369
  }
16848 stevensc 18370
 
16825 efrain 18371
  .mn-wd-md-20p-f {
18372
    min-width: 20% !important;
18373
  }
16848 stevensc 18374
 
16825 efrain 18375
  .wd-md-25 {
18376
    width: 25px;
18377
  }
16848 stevensc 18378
 
16825 efrain 18379
  .wd-md-25p {
18380
    width: 25%;
18381
  }
16848 stevensc 18382
 
16825 efrain 18383
  .mx-wd-md-25p {
18384
    max-width: 25%;
18385
  }
16848 stevensc 18386
 
16825 efrain 18387
  .mn-wd-md-25p {
18388
    min-width: 25%;
18389
  }
16848 stevensc 18390
 
16825 efrain 18391
  .wd-md-25-f {
18392
    width: 25px !important;
18393
  }
16848 stevensc 18394
 
16825 efrain 18395
  .wd-md-25p-f {
18396
    width: 25% !important;
18397
  }
16848 stevensc 18398
 
16825 efrain 18399
  .mx-wd-md-25p-f {
18400
    max-width: 25% !important;
18401
  }
16848 stevensc 18402
 
16825 efrain 18403
  .mn-wd-md-25p-f {
18404
    min-width: 25% !important;
18405
  }
16848 stevensc 18406
 
16825 efrain 18407
  .wd-md-30 {
18408
    width: 30px;
18409
  }
16848 stevensc 18410
 
16825 efrain 18411
  .wd-md-30p {
18412
    width: 30%;
18413
  }
16848 stevensc 18414
 
16825 efrain 18415
  .mx-wd-md-30p {
18416
    max-width: 30%;
18417
  }
16848 stevensc 18418
 
16825 efrain 18419
  .mn-wd-md-30p {
18420
    min-width: 30%;
18421
  }
16848 stevensc 18422
 
16825 efrain 18423
  .wd-md-30-f {
18424
    width: 30px !important;
18425
  }
16848 stevensc 18426
 
16825 efrain 18427
  .wd-md-30p-f {
18428
    width: 30% !important;
18429
  }
16848 stevensc 18430
 
16825 efrain 18431
  .mx-wd-md-30p-f {
18432
    max-width: 30% !important;
18433
  }
16848 stevensc 18434
 
16825 efrain 18435
  .mn-wd-md-30p-f {
18436
    min-width: 30% !important;
18437
  }
16848 stevensc 18438
 
16825 efrain 18439
  .wd-md-35 {
18440
    width: 35px;
18441
  }
16848 stevensc 18442
 
16825 efrain 18443
  .wd-md-35p {
18444
    width: 35%;
18445
  }
16848 stevensc 18446
 
16825 efrain 18447
  .mx-wd-md-35p {
18448
    max-width: 35%;
18449
  }
16848 stevensc 18450
 
16825 efrain 18451
  .mn-wd-md-35p {
18452
    min-width: 35%;
18453
  }
16848 stevensc 18454
 
16825 efrain 18455
  .wd-md-35-f {
18456
    width: 35px !important;
18457
  }
16848 stevensc 18458
 
16825 efrain 18459
  .wd-md-35p-f {
18460
    width: 35% !important;
18461
  }
16848 stevensc 18462
 
16825 efrain 18463
  .mx-wd-md-35p-f {
18464
    max-width: 35% !important;
18465
  }
16848 stevensc 18466
 
16825 efrain 18467
  .mn-wd-md-35p-f {
18468
    min-width: 35% !important;
18469
  }
16848 stevensc 18470
 
16825 efrain 18471
  .wd-md-40 {
18472
    width: 40px;
18473
  }
16848 stevensc 18474
 
16825 efrain 18475
  .wd-md-40p {
18476
    width: 40%;
18477
  }
16848 stevensc 18478
 
16825 efrain 18479
  .mx-wd-md-40p {
18480
    max-width: 40%;
18481
  }
16848 stevensc 18482
 
16825 efrain 18483
  .mn-wd-md-40p {
18484
    min-width: 40%;
18485
  }
16848 stevensc 18486
 
16825 efrain 18487
  .wd-md-40-f {
18488
    width: 40px !important;
18489
  }
16848 stevensc 18490
 
16825 efrain 18491
  .wd-md-40p-f {
18492
    width: 40% !important;
18493
  }
16848 stevensc 18494
 
16825 efrain 18495
  .mx-wd-md-40p-f {
18496
    max-width: 40% !important;
18497
  }
16848 stevensc 18498
 
16825 efrain 18499
  .mn-wd-md-40p-f {
18500
    min-width: 40% !important;
18501
  }
16848 stevensc 18502
 
16825 efrain 18503
  .wd-md-45 {
18504
    width: 45px;
18505
  }
16848 stevensc 18506
 
16825 efrain 18507
  .wd-md-45p {
18508
    width: 45%;
18509
  }
16848 stevensc 18510
 
16825 efrain 18511
  .mx-wd-md-45p {
18512
    max-width: 45%;
18513
  }
16848 stevensc 18514
 
16825 efrain 18515
  .mn-wd-md-45p {
18516
    min-width: 45%;
18517
  }
16848 stevensc 18518
 
16825 efrain 18519
  .wd-md-45-f {
18520
    width: 45px !important;
18521
  }
16848 stevensc 18522
 
16825 efrain 18523
  .wd-md-45p-f {
18524
    width: 45% !important;
18525
  }
16848 stevensc 18526
 
16825 efrain 18527
  .mx-wd-md-45p-f {
18528
    max-width: 45% !important;
18529
  }
16848 stevensc 18530
 
16825 efrain 18531
  .mn-wd-md-45p-f {
18532
    min-width: 45% !important;
18533
  }
16848 stevensc 18534
 
16825 efrain 18535
  .wd-md-50 {
18536
    width: 50px;
18537
  }
16848 stevensc 18538
 
16825 efrain 18539
  .wd-md-50p {
18540
    width: 50%;
18541
  }
16848 stevensc 18542
 
16825 efrain 18543
  .mx-wd-md-50p {
18544
    max-width: 50%;
18545
  }
16848 stevensc 18546
 
16825 efrain 18547
  .mn-wd-md-50p {
18548
    min-width: 50%;
18549
  }
16848 stevensc 18550
 
16825 efrain 18551
  .wd-md-50-f {
18552
    width: 50px !important;
18553
  }
16848 stevensc 18554
 
16825 efrain 18555
  .wd-md-50p-f {
18556
    width: 50% !important;
18557
  }
16848 stevensc 18558
 
16825 efrain 18559
  .mx-wd-md-50p-f {
18560
    max-width: 50% !important;
18561
  }
16848 stevensc 18562
 
16825 efrain 18563
  .mn-wd-md-50p-f {
18564
    min-width: 50% !important;
18565
  }
16848 stevensc 18566
 
16825 efrain 18567
  .wd-md-55 {
18568
    width: 55px;
18569
  }
16848 stevensc 18570
 
16825 efrain 18571
  .wd-md-55p {
18572
    width: 55%;
18573
  }
16848 stevensc 18574
 
16825 efrain 18575
  .mx-wd-md-55p {
18576
    max-width: 55%;
18577
  }
16848 stevensc 18578
 
16825 efrain 18579
  .mn-wd-md-55p {
18580
    min-width: 55%;
18581
  }
16848 stevensc 18582
 
16825 efrain 18583
  .wd-md-55-f {
18584
    width: 55px !important;
18585
  }
16848 stevensc 18586
 
16825 efrain 18587
  .wd-md-55p-f {
18588
    width: 55% !important;
18589
  }
16848 stevensc 18590
 
16825 efrain 18591
  .mx-wd-md-55p-f {
18592
    max-width: 55% !important;
18593
  }
16848 stevensc 18594
 
16825 efrain 18595
  .mn-wd-md-55p-f {
18596
    min-width: 55% !important;
18597
  }
16848 stevensc 18598
 
16825 efrain 18599
  .wd-md-60 {
18600
    width: 60px;
18601
  }
16848 stevensc 18602
 
16825 efrain 18603
  .wd-md-60p {
18604
    width: 60%;
18605
  }
16848 stevensc 18606
 
16825 efrain 18607
  .mx-wd-md-60p {
18608
    max-width: 60%;
18609
  }
16848 stevensc 18610
 
16825 efrain 18611
  .mn-wd-md-60p {
18612
    min-width: 60%;
18613
  }
16848 stevensc 18614
 
16825 efrain 18615
  .wd-md-60-f {
18616
    width: 60px !important;
18617
  }
16848 stevensc 18618
 
16825 efrain 18619
  .wd-md-60p-f {
18620
    width: 60% !important;
18621
  }
16848 stevensc 18622
 
16825 efrain 18623
  .mx-wd-md-60p-f {
18624
    max-width: 60% !important;
18625
  }
16848 stevensc 18626
 
16825 efrain 18627
  .mn-wd-md-60p-f {
18628
    min-width: 60% !important;
18629
  }
16848 stevensc 18630
 
16825 efrain 18631
  .wd-md-65 {
18632
    width: 65px;
18633
  }
16848 stevensc 18634
 
16825 efrain 18635
  .wd-md-65p {
18636
    width: 65%;
18637
  }
16848 stevensc 18638
 
16825 efrain 18639
  .mx-wd-md-65p {
18640
    max-width: 65%;
18641
  }
16848 stevensc 18642
 
16825 efrain 18643
  .mn-wd-md-65p {
18644
    min-width: 65%;
18645
  }
16848 stevensc 18646
 
16825 efrain 18647
  .wd-md-65-f {
18648
    width: 65px !important;
18649
  }
16848 stevensc 18650
 
16825 efrain 18651
  .wd-md-65p-f {
18652
    width: 65% !important;
18653
  }
16848 stevensc 18654
 
16825 efrain 18655
  .mx-wd-md-65p-f {
18656
    max-width: 65% !important;
18657
  }
16848 stevensc 18658
 
16825 efrain 18659
  .mn-wd-md-65p-f {
18660
    min-width: 65% !important;
18661
  }
16848 stevensc 18662
 
16825 efrain 18663
  .wd-md-70 {
18664
    width: 70px;
18665
  }
16848 stevensc 18666
 
16825 efrain 18667
  .wd-md-70p {
18668
    width: 70%;
18669
  }
16848 stevensc 18670
 
16825 efrain 18671
  .mx-wd-md-70p {
18672
    max-width: 70%;
18673
  }
16848 stevensc 18674
 
16825 efrain 18675
  .mn-wd-md-70p {
18676
    min-width: 70%;
18677
  }
16848 stevensc 18678
 
16825 efrain 18679
  .wd-md-70-f {
18680
    width: 70px !important;
18681
  }
16848 stevensc 18682
 
16825 efrain 18683
  .wd-md-70p-f {
18684
    width: 70% !important;
18685
  }
16848 stevensc 18686
 
16825 efrain 18687
  .mx-wd-md-70p-f {
18688
    max-width: 70% !important;
18689
  }
16848 stevensc 18690
 
16825 efrain 18691
  .mn-wd-md-70p-f {
18692
    min-width: 70% !important;
18693
  }
16848 stevensc 18694
 
16825 efrain 18695
  .wd-md-75 {
18696
    width: 75px;
18697
  }
16848 stevensc 18698
 
16825 efrain 18699
  .wd-md-75p {
18700
    width: 75%;
18701
  }
16848 stevensc 18702
 
16825 efrain 18703
  .mx-wd-md-75p {
18704
    max-width: 75%;
18705
  }
16848 stevensc 18706
 
16825 efrain 18707
  .mn-wd-md-75p {
18708
    min-width: 75%;
18709
  }
16848 stevensc 18710
 
16825 efrain 18711
  .wd-md-75-f {
18712
    width: 75px !important;
18713
  }
16848 stevensc 18714
 
16825 efrain 18715
  .wd-md-75p-f {
18716
    width: 75% !important;
18717
  }
16848 stevensc 18718
 
16825 efrain 18719
  .mx-wd-md-75p-f {
18720
    max-width: 75% !important;
18721
  }
16848 stevensc 18722
 
16825 efrain 18723
  .mn-wd-md-75p-f {
18724
    min-width: 75% !important;
18725
  }
16848 stevensc 18726
 
16825 efrain 18727
  .wd-md-80 {
18728
    width: 80px;
18729
  }
16848 stevensc 18730
 
16825 efrain 18731
  .wd-md-80p {
18732
    width: 80%;
18733
  }
16848 stevensc 18734
 
16825 efrain 18735
  .mx-wd-md-80p {
18736
    max-width: 80%;
18737
  }
16848 stevensc 18738
 
16825 efrain 18739
  .mn-wd-md-80p {
18740
    min-width: 80%;
18741
  }
16848 stevensc 18742
 
16825 efrain 18743
  .wd-md-80-f {
18744
    width: 80px !important;
18745
  }
16848 stevensc 18746
 
16825 efrain 18747
  .wd-md-80p-f {
18748
    width: 80% !important;
18749
  }
16848 stevensc 18750
 
16825 efrain 18751
  .mx-wd-md-80p-f {
18752
    max-width: 80% !important;
18753
  }
16848 stevensc 18754
 
16825 efrain 18755
  .mn-wd-md-80p-f {
18756
    min-width: 80% !important;
18757
  }
16848 stevensc 18758
 
16825 efrain 18759
  .wd-md-85 {
18760
    width: 85px;
18761
  }
16848 stevensc 18762
 
16825 efrain 18763
  .wd-md-85p {
18764
    width: 85%;
18765
  }
16848 stevensc 18766
 
16825 efrain 18767
  .mx-wd-md-85p {
18768
    max-width: 85%;
18769
  }
16848 stevensc 18770
 
16825 efrain 18771
  .mn-wd-md-85p {
18772
    min-width: 85%;
18773
  }
16848 stevensc 18774
 
16825 efrain 18775
  .wd-md-85-f {
18776
    width: 85px !important;
18777
  }
16848 stevensc 18778
 
16825 efrain 18779
  .wd-md-85p-f {
18780
    width: 85% !important;
18781
  }
16848 stevensc 18782
 
16825 efrain 18783
  .mx-wd-md-85p-f {
18784
    max-width: 85% !important;
18785
  }
16848 stevensc 18786
 
16825 efrain 18787
  .mn-wd-md-85p-f {
18788
    min-width: 85% !important;
18789
  }
16848 stevensc 18790
 
16825 efrain 18791
  .wd-md-90 {
18792
    width: 90px;
18793
  }
16848 stevensc 18794
 
16825 efrain 18795
  .wd-md-90p {
18796
    width: 90%;
18797
  }
16848 stevensc 18798
 
16825 efrain 18799
  .mx-wd-md-90p {
18800
    max-width: 90%;
18801
  }
16848 stevensc 18802
 
16825 efrain 18803
  .mn-wd-md-90p {
18804
    min-width: 90%;
18805
  }
16848 stevensc 18806
 
16825 efrain 18807
  .wd-md-90-f {
18808
    width: 90px !important;
18809
  }
16848 stevensc 18810
 
16825 efrain 18811
  .wd-md-90p-f {
18812
    width: 90% !important;
18813
  }
16848 stevensc 18814
 
16825 efrain 18815
  .mx-wd-md-90p-f {
18816
    max-width: 90% !important;
18817
  }
16848 stevensc 18818
 
16825 efrain 18819
  .mn-wd-md-90p-f {
18820
    min-width: 90% !important;
18821
  }
16848 stevensc 18822
 
16825 efrain 18823
  .wd-md-95 {
18824
    width: 95px;
18825
  }
16848 stevensc 18826
 
16825 efrain 18827
  .wd-md-95p {
18828
    width: 95%;
18829
  }
16848 stevensc 18830
 
16825 efrain 18831
  .mx-wd-md-95p {
18832
    max-width: 95%;
18833
  }
16848 stevensc 18834
 
16825 efrain 18835
  .mn-wd-md-95p {
18836
    min-width: 95%;
18837
  }
16848 stevensc 18838
 
16825 efrain 18839
  .wd-md-95-f {
18840
    width: 95px !important;
18841
  }
16848 stevensc 18842
 
16825 efrain 18843
  .wd-md-95p-f {
18844
    width: 95% !important;
18845
  }
16848 stevensc 18846
 
16825 efrain 18847
  .mx-wd-md-95p-f {
18848
    max-width: 95% !important;
18849
  }
16848 stevensc 18850
 
16825 efrain 18851
  .mn-wd-md-95p-f {
18852
    min-width: 95% !important;
18853
  }
16848 stevensc 18854
 
16825 efrain 18855
  .wd-md-100 {
18856
    width: 100px;
18857
  }
16848 stevensc 18858
 
16825 efrain 18859
  .wd-md-100p {
18860
    width: 100%;
18861
  }
16848 stevensc 18862
 
16825 efrain 18863
  .mx-wd-md-100p {
18864
    max-width: 100%;
18865
  }
16848 stevensc 18866
 
16825 efrain 18867
  .mn-wd-md-100p {
18868
    min-width: 100%;
18869
  }
16848 stevensc 18870
 
16825 efrain 18871
  .wd-md-100-f {
18872
    width: 100px !important;
18873
  }
16848 stevensc 18874
 
16825 efrain 18875
  .wd-md-100p-f {
18876
    width: 100% !important;
18877
  }
16848 stevensc 18878
 
16825 efrain 18879
  .mx-wd-md-100p-f {
18880
    max-width: 100% !important;
18881
  }
16848 stevensc 18882
 
16825 efrain 18883
  .mn-wd-md-100p-f {
18884
    min-width: 100% !important;
18885
  }
16848 stevensc 18886
 
16825 efrain 18887
  .wd-md-150 {
18888
    width: 150px;
18889
  }
16848 stevensc 18890
 
16825 efrain 18891
  .wd-md-150p {
18892
    width: 150%;
18893
  }
16848 stevensc 18894
 
16825 efrain 18895
  .mx-wd-md-150p {
18896
    max-width: 150%;
18897
  }
16848 stevensc 18898
 
16825 efrain 18899
  .mn-wd-md-150p {
18900
    min-width: 150%;
18901
  }
16848 stevensc 18902
 
16825 efrain 18903
  .wd-md-150-f {
18904
    width: 150px !important;
18905
  }
16848 stevensc 18906
 
16825 efrain 18907
  .wd-md-150p-f {
18908
    width: 150% !important;
18909
  }
16848 stevensc 18910
 
16825 efrain 18911
  .mx-wd-md-150p-f {
18912
    max-width: 150% !important;
18913
  }
16848 stevensc 18914
 
16825 efrain 18915
  .mn-wd-md-150p-f {
18916
    min-width: 150% !important;
18917
  }
16848 stevensc 18918
 
16825 efrain 18919
  .wd-md-200 {
18920
    width: 200px;
18921
  }
16848 stevensc 18922
 
16825 efrain 18923
  .wd-md-200p {
18924
    width: 200%;
18925
  }
16848 stevensc 18926
 
16825 efrain 18927
  .mx-wd-md-200p {
18928
    max-width: 200%;
18929
  }
16848 stevensc 18930
 
16825 efrain 18931
  .mn-wd-md-200p {
18932
    min-width: 200%;
18933
  }
16848 stevensc 18934
 
16825 efrain 18935
  .wd-md-200-f {
18936
    width: 200px !important;
18937
  }
16848 stevensc 18938
 
16825 efrain 18939
  .wd-md-200p-f {
18940
    width: 200% !important;
18941
  }
16848 stevensc 18942
 
16825 efrain 18943
  .mx-wd-md-200p-f {
18944
    max-width: 200% !important;
18945
  }
16848 stevensc 18946
 
16825 efrain 18947
  .mn-wd-md-200p-f {
18948
    min-width: 200% !important;
18949
  }
16848 stevensc 18950
 
16825 efrain 18951
  .wd-md-250 {
18952
    width: 250px;
18953
  }
16848 stevensc 18954
 
16825 efrain 18955
  .wd-md-250p {
18956
    width: 250%;
18957
  }
16848 stevensc 18958
 
16825 efrain 18959
  .mx-wd-md-250p {
18960
    max-width: 250%;
18961
  }
16848 stevensc 18962
 
16825 efrain 18963
  .mn-wd-md-250p {
18964
    min-width: 250%;
18965
  }
16848 stevensc 18966
 
16825 efrain 18967
  .wd-md-250-f {
18968
    width: 250px !important;
18969
  }
16848 stevensc 18970
 
16825 efrain 18971
  .wd-md-250p-f {
18972
    width: 250% !important;
18973
  }
16848 stevensc 18974
 
16825 efrain 18975
  .mx-wd-md-250p-f {
18976
    max-width: 250% !important;
18977
  }
16848 stevensc 18978
 
16825 efrain 18979
  .mn-wd-md-250p-f {
18980
    min-width: 250% !important;
18981
  }
16848 stevensc 18982
 
16825 efrain 18983
  .wd-md-300 {
18984
    width: 300px;
18985
  }
16848 stevensc 18986
 
16825 efrain 18987
  .wd-md-300p {
18988
    width: 300%;
18989
  }
16848 stevensc 18990
 
16825 efrain 18991
  .mx-wd-md-300p {
18992
    max-width: 300%;
18993
  }
16848 stevensc 18994
 
16825 efrain 18995
  .mn-wd-md-300p {
18996
    min-width: 300%;
18997
  }
16848 stevensc 18998
 
16825 efrain 18999
  .wd-md-300-f {
19000
    width: 300px !important;
19001
  }
16848 stevensc 19002
 
16825 efrain 19003
  .wd-md-300p-f {
19004
    width: 300% !important;
19005
  }
16848 stevensc 19006
 
16825 efrain 19007
  .mx-wd-md-300p-f {
19008
    max-width: 300% !important;
19009
  }
16848 stevensc 19010
 
16825 efrain 19011
  .mn-wd-md-300p-f {
19012
    min-width: 300% !important;
19013
  }
16848 stevensc 19014
 
16825 efrain 19015
  .wd-md-350 {
19016
    width: 350px;
19017
  }
16848 stevensc 19018
 
16825 efrain 19019
  .wd-md-350p {
19020
    width: 350%;
19021
  }
16848 stevensc 19022
 
16825 efrain 19023
  .mx-wd-md-350p {
19024
    max-width: 350%;
19025
  }
16848 stevensc 19026
 
16825 efrain 19027
  .mn-wd-md-350p {
19028
    min-width: 350%;
19029
  }
16848 stevensc 19030
 
16825 efrain 19031
  .wd-md-350-f {
19032
    width: 350px !important;
19033
  }
16848 stevensc 19034
 
16825 efrain 19035
  .wd-md-350p-f {
19036
    width: 350% !important;
19037
  }
16848 stevensc 19038
 
16825 efrain 19039
  .mx-wd-md-350p-f {
19040
    max-width: 350% !important;
19041
  }
16848 stevensc 19042
 
16825 efrain 19043
  .mn-wd-md-350p-f {
19044
    min-width: 350% !important;
19045
  }
16848 stevensc 19046
 
16825 efrain 19047
  .wd-md-400 {
19048
    width: 400px;
19049
  }
16848 stevensc 19050
 
16825 efrain 19051
  .wd-md-400p {
19052
    width: 400%;
19053
  }
16848 stevensc 19054
 
16825 efrain 19055
  .mx-wd-md-400p {
19056
    max-width: 400%;
19057
  }
16848 stevensc 19058
 
16825 efrain 19059
  .mn-wd-md-400p {
19060
    min-width: 400%;
19061
  }
16848 stevensc 19062
 
16825 efrain 19063
  .wd-md-400-f {
19064
    width: 400px !important;
19065
  }
16848 stevensc 19066
 
16825 efrain 19067
  .wd-md-400p-f {
19068
    width: 400% !important;
19069
  }
16848 stevensc 19070
 
16825 efrain 19071
  .mx-wd-md-400p-f {
19072
    max-width: 400% !important;
19073
  }
16848 stevensc 19074
 
16825 efrain 19075
  .mn-wd-md-400p-f {
19076
    min-width: 400% !important;
19077
  }
16848 stevensc 19078
 
16825 efrain 19079
  .wd-md-450 {
19080
    width: 450px;
19081
  }
16848 stevensc 19082
 
16825 efrain 19083
  .wd-md-450p {
19084
    width: 450%;
19085
  }
16848 stevensc 19086
 
16825 efrain 19087
  .mx-wd-md-450p {
19088
    max-width: 450%;
19089
  }
16848 stevensc 19090
 
16825 efrain 19091
  .mn-wd-md-450p {
19092
    min-width: 450%;
19093
  }
16848 stevensc 19094
 
16825 efrain 19095
  .wd-md-450-f {
19096
    width: 450px !important;
19097
  }
16848 stevensc 19098
 
16825 efrain 19099
  .wd-md-450p-f {
19100
    width: 450% !important;
19101
  }
16848 stevensc 19102
 
16825 efrain 19103
  .mx-wd-md-450p-f {
19104
    max-width: 450% !important;
19105
  }
16848 stevensc 19106
 
16825 efrain 19107
  .mn-wd-md-450p-f {
19108
    min-width: 450% !important;
19109
  }
16848 stevensc 19110
 
16825 efrain 19111
  .wd-md-500 {
19112
    width: 500px;
19113
  }
16848 stevensc 19114
 
16825 efrain 19115
  .wd-md-500p {
19116
    width: 500%;
19117
  }
16848 stevensc 19118
 
16825 efrain 19119
  .mx-wd-md-500p {
19120
    max-width: 500%;
19121
  }
16848 stevensc 19122
 
16825 efrain 19123
  .mn-wd-md-500p {
19124
    min-width: 500%;
19125
  }
16848 stevensc 19126
 
16825 efrain 19127
  .wd-md-500-f {
19128
    width: 500px !important;
19129
  }
16848 stevensc 19130
 
16825 efrain 19131
  .wd-md-500p-f {
19132
    width: 500% !important;
19133
  }
16848 stevensc 19134
 
16825 efrain 19135
  .mx-wd-md-500p-f {
19136
    max-width: 500% !important;
19137
  }
16848 stevensc 19138
 
16825 efrain 19139
  .mn-wd-md-500p-f {
19140
    min-width: 500% !important;
19141
  }
16848 stevensc 19142
 
16825 efrain 19143
  .wd-md-550 {
19144
    width: 550px;
19145
  }
16848 stevensc 19146
 
16825 efrain 19147
  .wd-md-550p {
19148
    width: 550%;
19149
  }
16848 stevensc 19150
 
16825 efrain 19151
  .mx-wd-md-550p {
19152
    max-width: 550%;
19153
  }
16848 stevensc 19154
 
16825 efrain 19155
  .mn-wd-md-550p {
19156
    min-width: 550%;
19157
  }
16848 stevensc 19158
 
16825 efrain 19159
  .wd-md-550-f {
19160
    width: 550px !important;
19161
  }
16848 stevensc 19162
 
16825 efrain 19163
  .wd-md-550p-f {
19164
    width: 550% !important;
19165
  }
16848 stevensc 19166
 
16825 efrain 19167
  .mx-wd-md-550p-f {
19168
    max-width: 550% !important;
19169
  }
16848 stevensc 19170
 
16825 efrain 19171
  .mn-wd-md-550p-f {
19172
    min-width: 550% !important;
19173
  }
16848 stevensc 19174
 
16825 efrain 19175
  .wd-md-600 {
19176
    width: 600px;
19177
  }
16848 stevensc 19178
 
16825 efrain 19179
  .wd-md-600p {
19180
    width: 600%;
19181
  }
16848 stevensc 19182
 
16825 efrain 19183
  .mx-wd-md-600p {
19184
    max-width: 600%;
19185
  }
16848 stevensc 19186
 
16825 efrain 19187
  .mn-wd-md-600p {
19188
    min-width: 600%;
19189
  }
16848 stevensc 19190
 
16825 efrain 19191
  .wd-md-600-f {
19192
    width: 600px !important;
19193
  }
16848 stevensc 19194
 
16825 efrain 19195
  .wd-md-600p-f {
19196
    width: 600% !important;
19197
  }
16848 stevensc 19198
 
16825 efrain 19199
  .mx-wd-md-600p-f {
19200
    max-width: 600% !important;
19201
  }
16848 stevensc 19202
 
16825 efrain 19203
  .mn-wd-md-600p-f {
19204
    min-width: 600% !important;
19205
  }
16848 stevensc 19206
 
16825 efrain 19207
  .wd-md-650 {
19208
    width: 650px;
19209
  }
16848 stevensc 19210
 
16825 efrain 19211
  .wd-md-650p {
19212
    width: 650%;
19213
  }
16848 stevensc 19214
 
16825 efrain 19215
  .mx-wd-md-650p {
19216
    max-width: 650%;
19217
  }
16848 stevensc 19218
 
16825 efrain 19219
  .mn-wd-md-650p {
19220
    min-width: 650%;
19221
  }
16848 stevensc 19222
 
16825 efrain 19223
  .wd-md-650-f {
19224
    width: 650px !important;
19225
  }
16848 stevensc 19226
 
16825 efrain 19227
  .wd-md-650p-f {
19228
    width: 650% !important;
19229
  }
16848 stevensc 19230
 
16825 efrain 19231
  .mx-wd-md-650p-f {
19232
    max-width: 650% !important;
19233
  }
16848 stevensc 19234
 
16825 efrain 19235
  .mn-wd-md-650p-f {
19236
    min-width: 650% !important;
19237
  }
16848 stevensc 19238
 
16825 efrain 19239
  .wd-md-700 {
19240
    width: 700px;
19241
  }
16848 stevensc 19242
 
16825 efrain 19243
  .wd-md-700p {
19244
    width: 700%;
19245
  }
16848 stevensc 19246
 
16825 efrain 19247
  .mx-wd-md-700p {
19248
    max-width: 700%;
19249
  }
16848 stevensc 19250
 
16825 efrain 19251
  .mn-wd-md-700p {
19252
    min-width: 700%;
19253
  }
16848 stevensc 19254
 
16825 efrain 19255
  .wd-md-700-f {
19256
    width: 700px !important;
19257
  }
16848 stevensc 19258
 
16825 efrain 19259
  .wd-md-700p-f {
19260
    width: 700% !important;
19261
  }
16848 stevensc 19262
 
16825 efrain 19263
  .mx-wd-md-700p-f {
19264
    max-width: 700% !important;
19265
  }
16848 stevensc 19266
 
16825 efrain 19267
  .mn-wd-md-700p-f {
19268
    min-width: 700% !important;
19269
  }
16848 stevensc 19270
 
16825 efrain 19271
  .wd-md-750 {
19272
    width: 750px;
19273
  }
16848 stevensc 19274
 
16825 efrain 19275
  .wd-md-750p {
19276
    width: 750%;
19277
  }
16848 stevensc 19278
 
16825 efrain 19279
  .mx-wd-md-750p {
19280
    max-width: 750%;
19281
  }
16848 stevensc 19282
 
16825 efrain 19283
  .mn-wd-md-750p {
19284
    min-width: 750%;
19285
  }
16848 stevensc 19286
 
16825 efrain 19287
  .wd-md-750-f {
19288
    width: 750px !important;
19289
  }
16848 stevensc 19290
 
16825 efrain 19291
  .wd-md-750p-f {
19292
    width: 750% !important;
19293
  }
16848 stevensc 19294
 
16825 efrain 19295
  .mx-wd-md-750p-f {
19296
    max-width: 750% !important;
19297
  }
16848 stevensc 19298
 
16825 efrain 19299
  .mn-wd-md-750p-f {
19300
    min-width: 750% !important;
19301
  }
16848 stevensc 19302
 
16825 efrain 19303
  .wd-md-800 {
19304
    width: 800px;
19305
  }
16848 stevensc 19306
 
16825 efrain 19307
  .wd-md-800p {
19308
    width: 800%;
19309
  }
16848 stevensc 19310
 
16825 efrain 19311
  .mx-wd-md-800p {
19312
    max-width: 800%;
19313
  }
16848 stevensc 19314
 
16825 efrain 19315
  .mn-wd-md-800p {
19316
    min-width: 800%;
19317
  }
16848 stevensc 19318
 
16825 efrain 19319
  .wd-md-800-f {
19320
    width: 800px !important;
19321
  }
16848 stevensc 19322
 
16825 efrain 19323
  .wd-md-800p-f {
19324
    width: 800% !important;
19325
  }
16848 stevensc 19326
 
16825 efrain 19327
  .mx-wd-md-800p-f {
19328
    max-width: 800% !important;
19329
  }
16848 stevensc 19330
 
16825 efrain 19331
  .mn-wd-md-800p-f {
19332
    min-width: 800% !important;
19333
  }
16848 stevensc 19334
 
16825 efrain 19335
  .wd-md-850 {
19336
    width: 850px;
19337
  }
16848 stevensc 19338
 
16825 efrain 19339
  .wd-md-850p {
19340
    width: 850%;
19341
  }
16848 stevensc 19342
 
16825 efrain 19343
  .mx-wd-md-850p {
19344
    max-width: 850%;
19345
  }
16848 stevensc 19346
 
16825 efrain 19347
  .mn-wd-md-850p {
19348
    min-width: 850%;
19349
  }
16848 stevensc 19350
 
16825 efrain 19351
  .wd-md-850-f {
19352
    width: 850px !important;
19353
  }
16848 stevensc 19354
 
16825 efrain 19355
  .wd-md-850p-f {
19356
    width: 850% !important;
19357
  }
16848 stevensc 19358
 
16825 efrain 19359
  .mx-wd-md-850p-f {
19360
    max-width: 850% !important;
19361
  }
16848 stevensc 19362
 
16825 efrain 19363
  .mn-wd-md-850p-f {
19364
    min-width: 850% !important;
19365
  }
16848 stevensc 19366
 
16825 efrain 19367
  .wd-md-900 {
19368
    width: 900px;
19369
  }
16848 stevensc 19370
 
16825 efrain 19371
  .wd-md-900p {
19372
    width: 900%;
19373
  }
16848 stevensc 19374
 
16825 efrain 19375
  .mx-wd-md-900p {
19376
    max-width: 900%;
19377
  }
16848 stevensc 19378
 
16825 efrain 19379
  .mn-wd-md-900p {
19380
    min-width: 900%;
19381
  }
16848 stevensc 19382
 
16825 efrain 19383
  .wd-md-900-f {
19384
    width: 900px !important;
19385
  }
16848 stevensc 19386
 
16825 efrain 19387
  .wd-md-900p-f {
19388
    width: 900% !important;
19389
  }
16848 stevensc 19390
 
16825 efrain 19391
  .mx-wd-md-900p-f {
19392
    max-width: 900% !important;
19393
  }
16848 stevensc 19394
 
16825 efrain 19395
  .mn-wd-md-900p-f {
19396
    min-width: 900% !important;
19397
  }
16848 stevensc 19398
 
16825 efrain 19399
  .wd-md-950 {
19400
    width: 950px;
19401
  }
16848 stevensc 19402
 
16825 efrain 19403
  .wd-md-950p {
19404
    width: 950%;
19405
  }
16848 stevensc 19406
 
16825 efrain 19407
  .mx-wd-md-950p {
19408
    max-width: 950%;
19409
  }
16848 stevensc 19410
 
16825 efrain 19411
  .mn-wd-md-950p {
19412
    min-width: 950%;
19413
  }
16848 stevensc 19414
 
16825 efrain 19415
  .wd-md-950-f {
19416
    width: 950px !important;
19417
  }
16848 stevensc 19418
 
16825 efrain 19419
  .wd-md-950p-f {
19420
    width: 950% !important;
19421
  }
16848 stevensc 19422
 
16825 efrain 19423
  .mx-wd-md-950p-f {
19424
    max-width: 950% !important;
19425
  }
16848 stevensc 19426
 
16825 efrain 19427
  .mn-wd-md-950p-f {
19428
    min-width: 950% !important;
19429
  }
16848 stevensc 19430
 
16825 efrain 19431
  .wd-md-1000 {
19432
    width: 1000px;
19433
  }
16848 stevensc 19434
 
16825 efrain 19435
  .wd-md-1000p {
19436
    width: 1000%;
19437
  }
16848 stevensc 19438
 
16825 efrain 19439
  .mx-wd-md-1000p {
19440
    max-width: 1000%;
19441
  }
16848 stevensc 19442
 
16825 efrain 19443
  .mn-wd-md-1000p {
19444
    min-width: 1000%;
19445
  }
16848 stevensc 19446
 
16825 efrain 19447
  .wd-md-1000-f {
19448
    width: 1000px !important;
19449
  }
16848 stevensc 19450
 
16825 efrain 19451
  .wd-md-1000p-f {
19452
    width: 1000% !important;
19453
  }
16848 stevensc 19454
 
16825 efrain 19455
  .mx-wd-md-1000p-f {
19456
    max-width: 1000% !important;
19457
  }
16848 stevensc 19458
 
16825 efrain 19459
  .mn-wd-md-1000p-f {
19460
    min-width: 1000% !important;
19461
  }
16848 stevensc 19462
 
16825 efrain 19463
  .wd-md-auto {
19464
    width: auto;
19465
  }
16848 stevensc 19466
 
16825 efrain 19467
  .wd-md-auto-f {
19468
    width: auto !important;
19469
  }
16848 stevensc 19470
 
16825 efrain 19471
  .wd-md-120 {
19472
    width: 120px;
19473
  }
19474
}
16848 stevensc 19475
 
16825 efrain 19476
@media (min-width: 992px) {
19477
  .wd-lg-5 {
19478
    width: 5px;
19479
  }
16848 stevensc 19480
 
16825 efrain 19481
  .wd-lg-5p {
19482
    width: 5%;
19483
  }
16848 stevensc 19484
 
16825 efrain 19485
  .mx-wd-lg-5p {
19486
    max-width: 5%;
19487
  }
16848 stevensc 19488
 
16825 efrain 19489
  .mn-wd-lg-5p {
19490
    min-width: 5%;
19491
  }
16848 stevensc 19492
 
16825 efrain 19493
  .wd-lg-5-f {
19494
    width: 5px !important;
19495
  }
16848 stevensc 19496
 
16825 efrain 19497
  .wd-lg-5p-f {
19498
    width: 5% !important;
19499
  }
16848 stevensc 19500
 
16825 efrain 19501
  .mx-wd-lg-5p-f {
19502
    max-width: 5% !important;
19503
  }
16848 stevensc 19504
 
16825 efrain 19505
  .mn-wd-lg-5p-f {
19506
    min-width: 5% !important;
19507
  }
16848 stevensc 19508
 
16825 efrain 19509
  .wd-lg-10 {
19510
    width: 10px;
19511
  }
16848 stevensc 19512
 
16825 efrain 19513
  .wd-lg-10p {
19514
    width: 10%;
19515
  }
16848 stevensc 19516
 
16825 efrain 19517
  .mx-wd-lg-10p {
19518
    max-width: 10%;
19519
  }
16848 stevensc 19520
 
16825 efrain 19521
  .mn-wd-lg-10p {
19522
    min-width: 10%;
19523
  }
16848 stevensc 19524
 
16825 efrain 19525
  .wd-lg-10-f {
19526
    width: 10px !important;
19527
  }
16848 stevensc 19528
 
16825 efrain 19529
  .wd-lg-10p-f {
19530
    width: 10% !important;
19531
  }
16848 stevensc 19532
 
16825 efrain 19533
  .mx-wd-lg-10p-f {
19534
    max-width: 10% !important;
19535
  }
16848 stevensc 19536
 
16825 efrain 19537
  .mn-wd-lg-10p-f {
19538
    min-width: 10% !important;
19539
  }
16848 stevensc 19540
 
16825 efrain 19541
  .wd-lg-15 {
19542
    width: 15px;
19543
  }
16848 stevensc 19544
 
16825 efrain 19545
  .wd-lg-15p {
19546
    width: 15%;
19547
  }
16848 stevensc 19548
 
16825 efrain 19549
  .mx-wd-lg-15p {
19550
    max-width: 15%;
19551
  }
16848 stevensc 19552
 
16825 efrain 19553
  .mn-wd-lg-15p {
19554
    min-width: 15%;
19555
  }
16848 stevensc 19556
 
16825 efrain 19557
  .wd-lg-15-f {
19558
    width: 15px !important;
19559
  }
16848 stevensc 19560
 
16825 efrain 19561
  .wd-lg-15p-f {
19562
    width: 15% !important;
19563
  }
16848 stevensc 19564
 
16825 efrain 19565
  .mx-wd-lg-15p-f {
19566
    max-width: 15% !important;
19567
  }
16848 stevensc 19568
 
16825 efrain 19569
  .mn-wd-lg-15p-f {
19570
    min-width: 15% !important;
19571
  }
16848 stevensc 19572
 
16825 efrain 19573
  .wd-lg-20 {
19574
    width: 20px;
19575
  }
16848 stevensc 19576
 
16825 efrain 19577
  .wd-lg-20p {
19578
    width: 20%;
19579
  }
16848 stevensc 19580
 
16825 efrain 19581
  .mx-wd-lg-20p {
19582
    max-width: 20%;
19583
  }
16848 stevensc 19584
 
16825 efrain 19585
  .mn-wd-lg-20p {
19586
    min-width: 20%;
19587
  }
16848 stevensc 19588
 
16825 efrain 19589
  .wd-lg-20-f {
19590
    width: 20px !important;
19591
  }
16848 stevensc 19592
 
16825 efrain 19593
  .wd-lg-20p-f {
19594
    width: 20% !important;
19595
  }
16848 stevensc 19596
 
16825 efrain 19597
  .mx-wd-lg-20p-f {
19598
    max-width: 20% !important;
19599
  }
16848 stevensc 19600
 
16825 efrain 19601
  .mn-wd-lg-20p-f {
19602
    min-width: 20% !important;
19603
  }
16848 stevensc 19604
 
16825 efrain 19605
  .wd-lg-25 {
19606
    width: 25px;
19607
  }
16848 stevensc 19608
 
16825 efrain 19609
  .wd-lg-25p {
19610
    width: 25%;
19611
  }
16848 stevensc 19612
 
16825 efrain 19613
  .mx-wd-lg-25p {
19614
    max-width: 25%;
19615
  }
16848 stevensc 19616
 
16825 efrain 19617
  .mn-wd-lg-25p {
19618
    min-width: 25%;
19619
  }
16848 stevensc 19620
 
16825 efrain 19621
  .wd-lg-25-f {
19622
    width: 25px !important;
19623
  }
16848 stevensc 19624
 
16825 efrain 19625
  .wd-lg-25p-f {
19626
    width: 25% !important;
19627
  }
16848 stevensc 19628
 
16825 efrain 19629
  .mx-wd-lg-25p-f {
19630
    max-width: 25% !important;
19631
  }
16848 stevensc 19632
 
16825 efrain 19633
  .mn-wd-lg-25p-f {
19634
    min-width: 25% !important;
19635
  }
16848 stevensc 19636
 
16825 efrain 19637
  .wd-lg-30 {
19638
    width: 30px;
19639
  }
16848 stevensc 19640
 
16825 efrain 19641
  .wd-lg-30p {
19642
    width: 30%;
19643
  }
16848 stevensc 19644
 
16825 efrain 19645
  .mx-wd-lg-30p {
19646
    max-width: 30%;
19647
  }
16848 stevensc 19648
 
16825 efrain 19649
  .mn-wd-lg-30p {
19650
    min-width: 30%;
19651
  }
16848 stevensc 19652
 
16825 efrain 19653
  .wd-lg-30-f {
19654
    width: 30px !important;
19655
  }
16848 stevensc 19656
 
16825 efrain 19657
  .wd-lg-30p-f {
19658
    width: 30% !important;
19659
  }
16848 stevensc 19660
 
16825 efrain 19661
  .mx-wd-lg-30p-f {
19662
    max-width: 30% !important;
19663
  }
16848 stevensc 19664
 
16825 efrain 19665
  .mn-wd-lg-30p-f {
19666
    min-width: 30% !important;
19667
  }
16848 stevensc 19668
 
16825 efrain 19669
  .wd-lg-35 {
19670
    width: 35px;
19671
  }
16848 stevensc 19672
 
16825 efrain 19673
  .wd-lg-35p {
19674
    width: 35%;
19675
  }
16848 stevensc 19676
 
16825 efrain 19677
  .mx-wd-lg-35p {
19678
    max-width: 35%;
19679
  }
16848 stevensc 19680
 
16825 efrain 19681
  .mn-wd-lg-35p {
19682
    min-width: 35%;
19683
  }
16848 stevensc 19684
 
16825 efrain 19685
  .wd-lg-35-f {
19686
    width: 35px !important;
19687
  }
16848 stevensc 19688
 
16825 efrain 19689
  .wd-lg-35p-f {
19690
    width: 35% !important;
19691
  }
16848 stevensc 19692
 
16825 efrain 19693
  .mx-wd-lg-35p-f {
19694
    max-width: 35% !important;
19695
  }
16848 stevensc 19696
 
16825 efrain 19697
  .mn-wd-lg-35p-f {
19698
    min-width: 35% !important;
19699
  }
16848 stevensc 19700
 
16825 efrain 19701
  .wd-lg-40 {
19702
    width: 40px;
19703
  }
16848 stevensc 19704
 
16825 efrain 19705
  .wd-lg-40p {
19706
    width: 40%;
19707
  }
16848 stevensc 19708
 
16825 efrain 19709
  .mx-wd-lg-40p {
19710
    max-width: 40%;
19711
  }
16848 stevensc 19712
 
16825 efrain 19713
  .mn-wd-lg-40p {
19714
    min-width: 40%;
19715
  }
16848 stevensc 19716
 
16825 efrain 19717
  .wd-lg-40-f {
19718
    width: 40px !important;
19719
  }
16848 stevensc 19720
 
16825 efrain 19721
  .wd-lg-40p-f {
19722
    width: 40% !important;
19723
  }
16848 stevensc 19724
 
16825 efrain 19725
  .mx-wd-lg-40p-f {
19726
    max-width: 40% !important;
19727
  }
16848 stevensc 19728
 
16825 efrain 19729
  .mn-wd-lg-40p-f {
19730
    min-width: 40% !important;
19731
  }
16848 stevensc 19732
 
16825 efrain 19733
  .wd-lg-45 {
19734
    width: 45px;
19735
  }
16848 stevensc 19736
 
16825 efrain 19737
  .wd-lg-45p {
19738
    width: 45%;
19739
  }
16848 stevensc 19740
 
16825 efrain 19741
  .mx-wd-lg-45p {
19742
    max-width: 45%;
19743
  }
16848 stevensc 19744
 
16825 efrain 19745
  .mn-wd-lg-45p {
19746
    min-width: 45%;
19747
  }
16848 stevensc 19748
 
16825 efrain 19749
  .wd-lg-45-f {
19750
    width: 45px !important;
19751
  }
16848 stevensc 19752
 
16825 efrain 19753
  .wd-lg-45p-f {
19754
    width: 45% !important;
19755
  }
16848 stevensc 19756
 
16825 efrain 19757
  .mx-wd-lg-45p-f {
19758
    max-width: 45% !important;
19759
  }
16848 stevensc 19760
 
16825 efrain 19761
  .mn-wd-lg-45p-f {
19762
    min-width: 45% !important;
19763
  }
16848 stevensc 19764
 
16825 efrain 19765
  .wd-lg-50 {
19766
    width: 50px;
19767
  }
16848 stevensc 19768
 
16825 efrain 19769
  .wd-lg-50p {
19770
    width: 50%;
19771
  }
16848 stevensc 19772
 
16825 efrain 19773
  .mx-wd-lg-50p {
19774
    max-width: 50%;
19775
  }
16848 stevensc 19776
 
16825 efrain 19777
  .mn-wd-lg-50p {
19778
    min-width: 50%;
19779
  }
16848 stevensc 19780
 
16825 efrain 19781
  .wd-lg-50-f {
19782
    width: 50px !important;
19783
  }
16848 stevensc 19784
 
16825 efrain 19785
  .wd-lg-50p-f {
19786
    width: 50% !important;
19787
  }
16848 stevensc 19788
 
16825 efrain 19789
  .mx-wd-lg-50p-f {
19790
    max-width: 50% !important;
19791
  }
16848 stevensc 19792
 
16825 efrain 19793
  .mn-wd-lg-50p-f {
19794
    min-width: 50% !important;
19795
  }
16848 stevensc 19796
 
16825 efrain 19797
  .wd-lg-55 {
19798
    width: 55px;
19799
  }
16848 stevensc 19800
 
16825 efrain 19801
  .wd-lg-55p {
19802
    width: 55%;
19803
  }
16848 stevensc 19804
 
16825 efrain 19805
  .mx-wd-lg-55p {
19806
    max-width: 55%;
19807
  }
16848 stevensc 19808
 
16825 efrain 19809
  .mn-wd-lg-55p {
19810
    min-width: 55%;
19811
  }
16848 stevensc 19812
 
16825 efrain 19813
  .wd-lg-55-f {
19814
    width: 55px !important;
19815
  }
16848 stevensc 19816
 
16825 efrain 19817
  .wd-lg-55p-f {
19818
    width: 55% !important;
19819
  }
16848 stevensc 19820
 
16825 efrain 19821
  .mx-wd-lg-55p-f {
19822
    max-width: 55% !important;
19823
  }
16848 stevensc 19824
 
16825 efrain 19825
  .mn-wd-lg-55p-f {
19826
    min-width: 55% !important;
19827
  }
16848 stevensc 19828
 
16825 efrain 19829
  .wd-lg-60 {
19830
    width: 60px;
19831
  }
16848 stevensc 19832
 
16825 efrain 19833
  .wd-lg-60p {
19834
    width: 60%;
19835
  }
16848 stevensc 19836
 
16825 efrain 19837
  .mx-wd-lg-60p {
19838
    max-width: 60%;
19839
  }
16848 stevensc 19840
 
16825 efrain 19841
  .mn-wd-lg-60p {
19842
    min-width: 60%;
19843
  }
16848 stevensc 19844
 
16825 efrain 19845
  .wd-lg-60-f {
19846
    width: 60px !important;
19847
  }
16848 stevensc 19848
 
16825 efrain 19849
  .wd-lg-60p-f {
19850
    width: 60% !important;
19851
  }
16848 stevensc 19852
 
16825 efrain 19853
  .mx-wd-lg-60p-f {
19854
    max-width: 60% !important;
19855
  }
16848 stevensc 19856
 
16825 efrain 19857
  .mn-wd-lg-60p-f {
19858
    min-width: 60% !important;
19859
  }
16848 stevensc 19860
 
16825 efrain 19861
  .wd-lg-65 {
19862
    width: 65px;
19863
  }
16848 stevensc 19864
 
16825 efrain 19865
  .wd-lg-65p {
19866
    width: 65%;
19867
  }
16848 stevensc 19868
 
16825 efrain 19869
  .mx-wd-lg-65p {
19870
    max-width: 65%;
19871
  }
16848 stevensc 19872
 
16825 efrain 19873
  .mn-wd-lg-65p {
19874
    min-width: 65%;
19875
  }
16848 stevensc 19876
 
16825 efrain 19877
  .wd-lg-65-f {
19878
    width: 65px !important;
19879
  }
16848 stevensc 19880
 
16825 efrain 19881
  .wd-lg-65p-f {
19882
    width: 65% !important;
19883
  }
16848 stevensc 19884
 
16825 efrain 19885
  .mx-wd-lg-65p-f {
19886
    max-width: 65% !important;
19887
  }
16848 stevensc 19888
 
16825 efrain 19889
  .mn-wd-lg-65p-f {
19890
    min-width: 65% !important;
19891
  }
16848 stevensc 19892
 
16825 efrain 19893
  .wd-lg-70 {
19894
    width: 70px;
19895
  }
16848 stevensc 19896
 
16825 efrain 19897
  .wd-lg-70p {
19898
    width: 70%;
19899
  }
16848 stevensc 19900
 
16825 efrain 19901
  .mx-wd-lg-70p {
19902
    max-width: 70%;
19903
  }
16848 stevensc 19904
 
16825 efrain 19905
  .mn-wd-lg-70p {
19906
    min-width: 70%;
19907
  }
16848 stevensc 19908
 
16825 efrain 19909
  .wd-lg-70-f {
19910
    width: 70px !important;
19911
  }
16848 stevensc 19912
 
16825 efrain 19913
  .wd-lg-70p-f {
19914
    width: 70% !important;
19915
  }
16848 stevensc 19916
 
16825 efrain 19917
  .mx-wd-lg-70p-f {
19918
    max-width: 70% !important;
19919
  }
16848 stevensc 19920
 
16825 efrain 19921
  .mn-wd-lg-70p-f {
19922
    min-width: 70% !important;
19923
  }
16848 stevensc 19924
 
16825 efrain 19925
  .wd-lg-75 {
19926
    width: 75px;
19927
  }
16848 stevensc 19928
 
16825 efrain 19929
  .wd-lg-75p {
19930
    width: 75%;
19931
  }
16848 stevensc 19932
 
16825 efrain 19933
  .mx-wd-lg-75p {
19934
    max-width: 75%;
19935
  }
16848 stevensc 19936
 
16825 efrain 19937
  .mn-wd-lg-75p {
19938
    min-width: 75%;
19939
  }
16848 stevensc 19940
 
16825 efrain 19941
  .wd-lg-75-f {
19942
    width: 75px !important;
19943
  }
16848 stevensc 19944
 
16825 efrain 19945
  .wd-lg-75p-f {
19946
    width: 75% !important;
19947
  }
16848 stevensc 19948
 
16825 efrain 19949
  .mx-wd-lg-75p-f {
19950
    max-width: 75% !important;
19951
  }
16848 stevensc 19952
 
16825 efrain 19953
  .mn-wd-lg-75p-f {
19954
    min-width: 75% !important;
19955
  }
16848 stevensc 19956
 
16825 efrain 19957
  .wd-lg-80 {
19958
    width: 80px;
19959
  }
16848 stevensc 19960
 
16825 efrain 19961
  .wd-lg-80p {
19962
    width: 80%;
19963
  }
16848 stevensc 19964
 
16825 efrain 19965
  .mx-wd-lg-80p {
19966
    max-width: 80%;
19967
  }
16848 stevensc 19968
 
16825 efrain 19969
  .mn-wd-lg-80p {
19970
    min-width: 80%;
19971
  }
16848 stevensc 19972
 
16825 efrain 19973
  .wd-lg-80-f {
19974
    width: 80px !important;
19975
  }
16848 stevensc 19976
 
16825 efrain 19977
  .wd-lg-80p-f {
19978
    width: 80% !important;
19979
  }
16848 stevensc 19980
 
16825 efrain 19981
  .mx-wd-lg-80p-f {
19982
    max-width: 80% !important;
19983
  }
16848 stevensc 19984
 
16825 efrain 19985
  .mn-wd-lg-80p-f {
19986
    min-width: 80% !important;
19987
  }
16848 stevensc 19988
 
16825 efrain 19989
  .wd-lg-85 {
19990
    width: 85px;
19991
  }
16848 stevensc 19992
 
16825 efrain 19993
  .wd-lg-85p {
19994
    width: 85%;
19995
  }
16848 stevensc 19996
 
16825 efrain 19997
  .mx-wd-lg-85p {
19998
    max-width: 85%;
19999
  }
16848 stevensc 20000
 
16825 efrain 20001
  .mn-wd-lg-85p {
20002
    min-width: 85%;
20003
  }
16848 stevensc 20004
 
16825 efrain 20005
  .wd-lg-85-f {
20006
    width: 85px !important;
20007
  }
16848 stevensc 20008
 
16825 efrain 20009
  .wd-lg-85p-f {
20010
    width: 85% !important;
20011
  }
16848 stevensc 20012
 
16825 efrain 20013
  .mx-wd-lg-85p-f {
20014
    max-width: 85% !important;
20015
  }
16848 stevensc 20016
 
16825 efrain 20017
  .mn-wd-lg-85p-f {
20018
    min-width: 85% !important;
20019
  }
16848 stevensc 20020
 
16825 efrain 20021
  .wd-lg-90 {
20022
    width: 90px;
20023
  }
16848 stevensc 20024
 
16825 efrain 20025
  .wd-lg-90p {
20026
    width: 90%;
20027
  }
16848 stevensc 20028
 
16825 efrain 20029
  .mx-wd-lg-90p {
20030
    max-width: 90%;
20031
  }
16848 stevensc 20032
 
16825 efrain 20033
  .mn-wd-lg-90p {
20034
    min-width: 90%;
20035
  }
16848 stevensc 20036
 
16825 efrain 20037
  .wd-lg-90-f {
20038
    width: 90px !important;
20039
  }
16848 stevensc 20040
 
16825 efrain 20041
  .wd-lg-90p-f {
20042
    width: 90% !important;
20043
  }
16848 stevensc 20044
 
16825 efrain 20045
  .mx-wd-lg-90p-f {
20046
    max-width: 90% !important;
20047
  }
16848 stevensc 20048
 
16825 efrain 20049
  .mn-wd-lg-90p-f {
20050
    min-width: 90% !important;
20051
  }
16848 stevensc 20052
 
16825 efrain 20053
  .wd-lg-95 {
20054
    width: 95px;
20055
  }
16848 stevensc 20056
 
16825 efrain 20057
  .wd-lg-95p {
20058
    width: 95%;
20059
  }
16848 stevensc 20060
 
16825 efrain 20061
  .mx-wd-lg-95p {
20062
    max-width: 95%;
20063
  }
16848 stevensc 20064
 
16825 efrain 20065
  .mn-wd-lg-95p {
20066
    min-width: 95%;
20067
  }
16848 stevensc 20068
 
16825 efrain 20069
  .wd-lg-95-f {
20070
    width: 95px !important;
20071
  }
16848 stevensc 20072
 
16825 efrain 20073
  .wd-lg-95p-f {
20074
    width: 95% !important;
20075
  }
16848 stevensc 20076
 
16825 efrain 20077
  .mx-wd-lg-95p-f {
20078
    max-width: 95% !important;
20079
  }
16848 stevensc 20080
 
16825 efrain 20081
  .mn-wd-lg-95p-f {
20082
    min-width: 95% !important;
20083
  }
16848 stevensc 20084
 
16825 efrain 20085
  .wd-lg-100 {
20086
    width: 100px;
20087
  }
16848 stevensc 20088
 
16825 efrain 20089
  .wd-lg-100p {
20090
    width: 100%;
20091
  }
16848 stevensc 20092
 
16825 efrain 20093
  .mx-wd-lg-100p {
20094
    max-width: 100%;
20095
  }
16848 stevensc 20096
 
16825 efrain 20097
  .mn-wd-lg-100p {
20098
    min-width: 100%;
20099
  }
16848 stevensc 20100
 
16825 efrain 20101
  .wd-lg-100-f {
20102
    width: 100px !important;
20103
  }
16848 stevensc 20104
 
16825 efrain 20105
  .wd-lg-100p-f {
20106
    width: 100% !important;
20107
  }
16848 stevensc 20108
 
16825 efrain 20109
  .mx-wd-lg-100p-f {
20110
    max-width: 100% !important;
20111
  }
16848 stevensc 20112
 
16825 efrain 20113
  .mn-wd-lg-100p-f {
20114
    min-width: 100% !important;
20115
  }
16848 stevensc 20116
 
16825 efrain 20117
  .wd-lg-150 {
20118
    width: 150px;
20119
  }
16848 stevensc 20120
 
16825 efrain 20121
  .wd-lg-150p {
20122
    width: 150%;
20123
  }
16848 stevensc 20124
 
16825 efrain 20125
  .mx-wd-lg-150p {
20126
    max-width: 150%;
20127
  }
16848 stevensc 20128
 
16825 efrain 20129
  .mn-wd-lg-150p {
20130
    min-width: 150%;
20131
  }
16848 stevensc 20132
 
16825 efrain 20133
  .wd-lg-150-f {
20134
    width: 150px !important;
20135
  }
16848 stevensc 20136
 
16825 efrain 20137
  .wd-lg-150p-f {
20138
    width: 150% !important;
20139
  }
16848 stevensc 20140
 
16825 efrain 20141
  .mx-wd-lg-150p-f {
20142
    max-width: 150% !important;
20143
  }
16848 stevensc 20144
 
16825 efrain 20145
  .mn-wd-lg-150p-f {
20146
    min-width: 150% !important;
20147
  }
16848 stevensc 20148
 
16825 efrain 20149
  .wd-lg-200 {
20150
    width: 200px;
20151
  }
16848 stevensc 20152
 
16825 efrain 20153
  .wd-lg-200p {
20154
    width: 200%;
20155
  }
16848 stevensc 20156
 
16825 efrain 20157
  .mx-wd-lg-200p {
20158
    max-width: 200%;
20159
  }
16848 stevensc 20160
 
16825 efrain 20161
  .mn-wd-lg-200p {
20162
    min-width: 200%;
20163
  }
16848 stevensc 20164
 
16825 efrain 20165
  .wd-lg-200-f {
20166
    width: 200px !important;
20167
  }
16848 stevensc 20168
 
16825 efrain 20169
  .wd-lg-200p-f {
20170
    width: 200% !important;
20171
  }
16848 stevensc 20172
 
16825 efrain 20173
  .mx-wd-lg-200p-f {
20174
    max-width: 200% !important;
20175
  }
16848 stevensc 20176
 
16825 efrain 20177
  .mn-wd-lg-200p-f {
20178
    min-width: 200% !important;
20179
  }
16848 stevensc 20180
 
16825 efrain 20181
  .wd-lg-250 {
20182
    width: 250px;
20183
  }
16848 stevensc 20184
 
16825 efrain 20185
  .wd-lg-250p {
20186
    width: 250%;
20187
  }
16848 stevensc 20188
 
16825 efrain 20189
  .mx-wd-lg-250p {
20190
    max-width: 250%;
20191
  }
16848 stevensc 20192
 
16825 efrain 20193
  .mn-wd-lg-250p {
20194
    min-width: 250%;
20195
  }
16848 stevensc 20196
 
16825 efrain 20197
  .wd-lg-250-f {
20198
    width: 250px !important;
20199
  }
16848 stevensc 20200
 
16825 efrain 20201
  .wd-lg-250p-f {
20202
    width: 250% !important;
20203
  }
16848 stevensc 20204
 
16825 efrain 20205
  .mx-wd-lg-250p-f {
20206
    max-width: 250% !important;
20207
  }
16848 stevensc 20208
 
16825 efrain 20209
  .mn-wd-lg-250p-f {
20210
    min-width: 250% !important;
20211
  }
16848 stevensc 20212
 
16825 efrain 20213
  .wd-lg-300 {
20214
    width: 300px;
20215
  }
16848 stevensc 20216
 
16825 efrain 20217
  .wd-lg-300p {
20218
    width: 300%;
20219
  }
16848 stevensc 20220
 
16825 efrain 20221
  .mx-wd-lg-300p {
20222
    max-width: 300%;
20223
  }
16848 stevensc 20224
 
16825 efrain 20225
  .mn-wd-lg-300p {
20226
    min-width: 300%;
20227
  }
16848 stevensc 20228
 
16825 efrain 20229
  .wd-lg-300-f {
20230
    width: 300px !important;
20231
  }
16848 stevensc 20232
 
16825 efrain 20233
  .wd-lg-300p-f {
20234
    width: 300% !important;
20235
  }
16848 stevensc 20236
 
16825 efrain 20237
  .mx-wd-lg-300p-f {
20238
    max-width: 300% !important;
20239
  }
16848 stevensc 20240
 
16825 efrain 20241
  .mn-wd-lg-300p-f {
20242
    min-width: 300% !important;
20243
  }
16848 stevensc 20244
 
16825 efrain 20245
  .wd-lg-350 {
20246
    width: 350px;
20247
  }
16848 stevensc 20248
 
16825 efrain 20249
  .wd-lg-350p {
20250
    width: 350%;
20251
  }
16848 stevensc 20252
 
16825 efrain 20253
  .mx-wd-lg-350p {
20254
    max-width: 350%;
20255
  }
16848 stevensc 20256
 
16825 efrain 20257
  .mn-wd-lg-350p {
20258
    min-width: 350%;
20259
  }
16848 stevensc 20260
 
16825 efrain 20261
  .wd-lg-350-f {
20262
    width: 350px !important;
20263
  }
16848 stevensc 20264
 
16825 efrain 20265
  .wd-lg-350p-f {
20266
    width: 350% !important;
20267
  }
16848 stevensc 20268
 
16825 efrain 20269
  .mx-wd-lg-350p-f {
20270
    max-width: 350% !important;
20271
  }
16848 stevensc 20272
 
16825 efrain 20273
  .mn-wd-lg-350p-f {
20274
    min-width: 350% !important;
20275
  }
16848 stevensc 20276
 
16825 efrain 20277
  .wd-lg-400 {
20278
    width: 400px;
20279
  }
16848 stevensc 20280
 
16825 efrain 20281
  .wd-lg-400p {
20282
    width: 400%;
20283
  }
16848 stevensc 20284
 
16825 efrain 20285
  .mx-wd-lg-400p {
20286
    max-width: 400%;
20287
  }
16848 stevensc 20288
 
16825 efrain 20289
  .mn-wd-lg-400p {
20290
    min-width: 400%;
20291
  }
16848 stevensc 20292
 
16825 efrain 20293
  .wd-lg-400-f {
20294
    width: 400px !important;
20295
  }
16848 stevensc 20296
 
16825 efrain 20297
  .wd-lg-400p-f {
20298
    width: 400% !important;
20299
  }
16848 stevensc 20300
 
16825 efrain 20301
  .mx-wd-lg-400p-f {
20302
    max-width: 400% !important;
20303
  }
16848 stevensc 20304
 
16825 efrain 20305
  .mn-wd-lg-400p-f {
20306
    min-width: 400% !important;
20307
  }
16848 stevensc 20308
 
16825 efrain 20309
  .wd-lg-450 {
20310
    width: 450px;
20311
  }
16848 stevensc 20312
 
16825 efrain 20313
  .wd-lg-450p {
20314
    width: 450%;
20315
  }
16848 stevensc 20316
 
16825 efrain 20317
  .mx-wd-lg-450p {
20318
    max-width: 450%;
20319
  }
16848 stevensc 20320
 
16825 efrain 20321
  .mn-wd-lg-450p {
20322
    min-width: 450%;
20323
  }
16848 stevensc 20324
 
16825 efrain 20325
  .wd-lg-450-f {
20326
    width: 450px !important;
20327
  }
16848 stevensc 20328
 
16825 efrain 20329
  .wd-lg-450p-f {
20330
    width: 450% !important;
20331
  }
16848 stevensc 20332
 
16825 efrain 20333
  .mx-wd-lg-450p-f {
20334
    max-width: 450% !important;
20335
  }
16848 stevensc 20336
 
16825 efrain 20337
  .mn-wd-lg-450p-f {
20338
    min-width: 450% !important;
20339
  }
16848 stevensc 20340
 
16825 efrain 20341
  .wd-lg-500 {
20342
    width: 500px;
20343
  }
16848 stevensc 20344
 
16825 efrain 20345
  .wd-lg-500p {
20346
    width: 500%;
20347
  }
16848 stevensc 20348
 
16825 efrain 20349
  .mx-wd-lg-500p {
20350
    max-width: 500%;
20351
  }
16848 stevensc 20352
 
16825 efrain 20353
  .mn-wd-lg-500p {
20354
    min-width: 500%;
20355
  }
16848 stevensc 20356
 
16825 efrain 20357
  .wd-lg-500-f {
20358
    width: 500px !important;
20359
  }
16848 stevensc 20360
 
16825 efrain 20361
  .wd-lg-500p-f {
20362
    width: 500% !important;
20363
  }
16848 stevensc 20364
 
16825 efrain 20365
  .mx-wd-lg-500p-f {
20366
    max-width: 500% !important;
20367
  }
16848 stevensc 20368
 
16825 efrain 20369
  .mn-wd-lg-500p-f {
20370
    min-width: 500% !important;
20371
  }
16848 stevensc 20372
 
16825 efrain 20373
  .wd-lg-550 {
20374
    width: 550px;
20375
  }
16848 stevensc 20376
 
16825 efrain 20377
  .wd-lg-550p {
20378
    width: 550%;
20379
  }
16848 stevensc 20380
 
16825 efrain 20381
  .mx-wd-lg-550p {
20382
    max-width: 550%;
20383
  }
16848 stevensc 20384
 
16825 efrain 20385
  .mn-wd-lg-550p {
20386
    min-width: 550%;
20387
  }
16848 stevensc 20388
 
16825 efrain 20389
  .wd-lg-550-f {
20390
    width: 550px !important;
20391
  }
16848 stevensc 20392
 
16825 efrain 20393
  .wd-lg-550p-f {
20394
    width: 550% !important;
20395
  }
16848 stevensc 20396
 
16825 efrain 20397
  .mx-wd-lg-550p-f {
20398
    max-width: 550% !important;
20399
  }
16848 stevensc 20400
 
16825 efrain 20401
  .mn-wd-lg-550p-f {
20402
    min-width: 550% !important;
20403
  }
16848 stevensc 20404
 
16825 efrain 20405
  .wd-lg-600 {
20406
    width: 600px;
20407
  }
16848 stevensc 20408
 
16825 efrain 20409
  .wd-lg-600p {
20410
    width: 600%;
20411
  }
16848 stevensc 20412
 
16825 efrain 20413
  .mx-wd-lg-600p {
20414
    max-width: 600%;
20415
  }
16848 stevensc 20416
 
16825 efrain 20417
  .mn-wd-lg-600p {
20418
    min-width: 600%;
20419
  }
16848 stevensc 20420
 
16825 efrain 20421
  .wd-lg-600-f {
20422
    width: 600px !important;
20423
  }
16848 stevensc 20424
 
16825 efrain 20425
  .wd-lg-600p-f {
20426
    width: 600% !important;
20427
  }
16848 stevensc 20428
 
16825 efrain 20429
  .mx-wd-lg-600p-f {
20430
    max-width: 600% !important;
20431
  }
16848 stevensc 20432
 
16825 efrain 20433
  .mn-wd-lg-600p-f {
20434
    min-width: 600% !important;
20435
  }
16848 stevensc 20436
 
16825 efrain 20437
  .wd-lg-650 {
20438
    width: 650px;
20439
  }
16848 stevensc 20440
 
16825 efrain 20441
  .wd-lg-650p {
20442
    width: 650%;
20443
  }
16848 stevensc 20444
 
16825 efrain 20445
  .mx-wd-lg-650p {
20446
    max-width: 650%;
20447
  }
16848 stevensc 20448
 
16825 efrain 20449
  .mn-wd-lg-650p {
20450
    min-width: 650%;
20451
  }
16848 stevensc 20452
 
16825 efrain 20453
  .wd-lg-650-f {
20454
    width: 650px !important;
20455
  }
16848 stevensc 20456
 
16825 efrain 20457
  .wd-lg-650p-f {
20458
    width: 650% !important;
20459
  }
16848 stevensc 20460
 
16825 efrain 20461
  .mx-wd-lg-650p-f {
20462
    max-width: 650% !important;
20463
  }
16848 stevensc 20464
 
16825 efrain 20465
  .mn-wd-lg-650p-f {
20466
    min-width: 650% !important;
20467
  }
16848 stevensc 20468
 
16825 efrain 20469
  .wd-lg-700 {
20470
    width: 700px;
20471
  }
16848 stevensc 20472
 
16825 efrain 20473
  .wd-lg-700p {
20474
    width: 700%;
20475
  }
16848 stevensc 20476
 
16825 efrain 20477
  .mx-wd-lg-700p {
20478
    max-width: 700%;
20479
  }
16848 stevensc 20480
 
16825 efrain 20481
  .mn-wd-lg-700p {
20482
    min-width: 700%;
20483
  }
16848 stevensc 20484
 
16825 efrain 20485
  .wd-lg-700-f {
20486
    width: 700px !important;
20487
  }
16848 stevensc 20488
 
16825 efrain 20489
  .wd-lg-700p-f {
20490
    width: 700% !important;
20491
  }
16848 stevensc 20492
 
16825 efrain 20493
  .mx-wd-lg-700p-f {
20494
    max-width: 700% !important;
20495
  }
16848 stevensc 20496
 
16825 efrain 20497
  .mn-wd-lg-700p-f {
20498
    min-width: 700% !important;
20499
  }
16848 stevensc 20500
 
16825 efrain 20501
  .wd-lg-750 {
20502
    width: 750px;
20503
  }
16848 stevensc 20504
 
16825 efrain 20505
  .wd-lg-750p {
20506
    width: 750%;
20507
  }
16848 stevensc 20508
 
16825 efrain 20509
  .mx-wd-lg-750p {
20510
    max-width: 750%;
20511
  }
16848 stevensc 20512
 
16825 efrain 20513
  .mn-wd-lg-750p {
20514
    min-width: 750%;
20515
  }
16848 stevensc 20516
 
16825 efrain 20517
  .wd-lg-750-f {
20518
    width: 750px !important;
20519
  }
16848 stevensc 20520
 
16825 efrain 20521
  .wd-lg-750p-f {
20522
    width: 750% !important;
20523
  }
16848 stevensc 20524
 
16825 efrain 20525
  .mx-wd-lg-750p-f {
20526
    max-width: 750% !important;
20527
  }
16848 stevensc 20528
 
16825 efrain 20529
  .mn-wd-lg-750p-f {
20530
    min-width: 750% !important;
20531
  }
16848 stevensc 20532
 
16825 efrain 20533
  .wd-lg-800 {
20534
    width: 800px;
20535
  }
16848 stevensc 20536
 
16825 efrain 20537
  .wd-lg-800p {
20538
    width: 800%;
20539
  }
16848 stevensc 20540
 
16825 efrain 20541
  .mx-wd-lg-800p {
20542
    max-width: 800%;
20543
  }
16848 stevensc 20544
 
16825 efrain 20545
  .mn-wd-lg-800p {
20546
    min-width: 800%;
20547
  }
16848 stevensc 20548
 
16825 efrain 20549
  .wd-lg-800-f {
20550
    width: 800px !important;
20551
  }
16848 stevensc 20552
 
16825 efrain 20553
  .wd-lg-800p-f {
20554
    width: 800% !important;
20555
  }
16848 stevensc 20556
 
16825 efrain 20557
  .mx-wd-lg-800p-f {
20558
    max-width: 800% !important;
20559
  }
16848 stevensc 20560
 
16825 efrain 20561
  .mn-wd-lg-800p-f {
20562
    min-width: 800% !important;
20563
  }
16848 stevensc 20564
 
16825 efrain 20565
  .wd-lg-850 {
20566
    width: 850px;
20567
  }
16848 stevensc 20568
 
16825 efrain 20569
  .wd-lg-850p {
20570
    width: 850%;
20571
  }
16848 stevensc 20572
 
16825 efrain 20573
  .mx-wd-lg-850p {
20574
    max-width: 850%;
20575
  }
16848 stevensc 20576
 
16825 efrain 20577
  .mn-wd-lg-850p {
20578
    min-width: 850%;
20579
  }
16848 stevensc 20580
 
16825 efrain 20581
  .wd-lg-850-f {
20582
    width: 850px !important;
20583
  }
16848 stevensc 20584
 
16825 efrain 20585
  .wd-lg-850p-f {
20586
    width: 850% !important;
20587
  }
16848 stevensc 20588
 
16825 efrain 20589
  .mx-wd-lg-850p-f {
20590
    max-width: 850% !important;
20591
  }
16848 stevensc 20592
 
16825 efrain 20593
  .mn-wd-lg-850p-f {
20594
    min-width: 850% !important;
20595
  }
16848 stevensc 20596
 
16825 efrain 20597
  .wd-lg-900 {
20598
    width: 900px;
20599
  }
16848 stevensc 20600
 
16825 efrain 20601
  .wd-lg-900p {
20602
    width: 900%;
20603
  }
16848 stevensc 20604
 
16825 efrain 20605
  .mx-wd-lg-900p {
20606
    max-width: 900%;
20607
  }
16848 stevensc 20608
 
16825 efrain 20609
  .mn-wd-lg-900p {
20610
    min-width: 900%;
20611
  }
16848 stevensc 20612
 
16825 efrain 20613
  .wd-lg-900-f {
20614
    width: 900px !important;
20615
  }
16848 stevensc 20616
 
16825 efrain 20617
  .wd-lg-900p-f {
20618
    width: 900% !important;
20619
  }
16848 stevensc 20620
 
16825 efrain 20621
  .mx-wd-lg-900p-f {
20622
    max-width: 900% !important;
20623
  }
16848 stevensc 20624
 
16825 efrain 20625
  .mn-wd-lg-900p-f {
20626
    min-width: 900% !important;
20627
  }
16848 stevensc 20628
 
16825 efrain 20629
  .wd-lg-950 {
20630
    width: 950px;
20631
  }
16848 stevensc 20632
 
16825 efrain 20633
  .wd-lg-950p {
20634
    width: 950%;
20635
  }
16848 stevensc 20636
 
16825 efrain 20637
  .mx-wd-lg-950p {
20638
    max-width: 950%;
20639
  }
16848 stevensc 20640
 
16825 efrain 20641
  .mn-wd-lg-950p {
20642
    min-width: 950%;
20643
  }
16848 stevensc 20644
 
16825 efrain 20645
  .wd-lg-950-f {
20646
    width: 950px !important;
20647
  }
16848 stevensc 20648
 
16825 efrain 20649
  .wd-lg-950p-f {
20650
    width: 950% !important;
20651
  }
16848 stevensc 20652
 
16825 efrain 20653
  .mx-wd-lg-950p-f {
20654
    max-width: 950% !important;
20655
  }
16848 stevensc 20656
 
16825 efrain 20657
  .mn-wd-lg-950p-f {
20658
    min-width: 950% !important;
20659
  }
16848 stevensc 20660
 
16825 efrain 20661
  .wd-lg-1000 {
20662
    width: 1000px;
20663
  }
16848 stevensc 20664
 
16825 efrain 20665
  .wd-lg-1000p {
20666
    width: 1000%;
20667
  }
16848 stevensc 20668
 
16825 efrain 20669
  .mx-wd-lg-1000p {
20670
    max-width: 1000%;
20671
  }
16848 stevensc 20672
 
16825 efrain 20673
  .mn-wd-lg-1000p {
20674
    min-width: 1000%;
20675
  }
16848 stevensc 20676
 
16825 efrain 20677
  .wd-lg-1000-f {
20678
    width: 1000px !important;
20679
  }
16848 stevensc 20680
 
16825 efrain 20681
  .wd-lg-1000p-f {
20682
    width: 1000% !important;
20683
  }
16848 stevensc 20684
 
16825 efrain 20685
  .mx-wd-lg-1000p-f {
20686
    max-width: 1000% !important;
20687
  }
16848 stevensc 20688
 
16825 efrain 20689
  .mn-wd-lg-1000p-f {
20690
    min-width: 1000% !important;
20691
  }
16848 stevensc 20692
 
16825 efrain 20693
  .wd-lg-auto {
20694
    width: auto;
20695
  }
16848 stevensc 20696
 
16825 efrain 20697
  .wd-lg-auto-f {
20698
    width: auto !important;
20699
  }
20700
}
16848 stevensc 20701
 
16825 efrain 20702
@media (min-width: 1200px) {
20703
  .wd-xl-5 {
20704
    width: 5px;
20705
  }
16848 stevensc 20706
 
16825 efrain 20707
  .wd-xl-5p {
20708
    width: 5%;
20709
  }
16848 stevensc 20710
 
16825 efrain 20711
  .mx-wd-xl-5p {
20712
    max-width: 5%;
20713
  }
16848 stevensc 20714
 
16825 efrain 20715
  .mn-wd-xl-5p {
20716
    min-width: 5%;
20717
  }
16848 stevensc 20718
 
16825 efrain 20719
  .wd-xl-5-f {
20720
    width: 5px !important;
20721
  }
16848 stevensc 20722
 
16825 efrain 20723
  .wd-xl-5p-f {
20724
    width: 5% !important;
20725
  }
16848 stevensc 20726
 
16825 efrain 20727
  .mx-wd-xl-5p-f {
20728
    max-width: 5% !important;
20729
  }
16848 stevensc 20730
 
16825 efrain 20731
  .mn-wd-xl-5p-f {
20732
    min-width: 5% !important;
20733
  }
16848 stevensc 20734
 
16825 efrain 20735
  .wd-xl-10 {
20736
    width: 10px;
20737
  }
16848 stevensc 20738
 
16825 efrain 20739
  .wd-xl-10p {
20740
    width: 10%;
20741
  }
16848 stevensc 20742
 
16825 efrain 20743
  .mx-wd-xl-10p {
20744
    max-width: 10%;
20745
  }
16848 stevensc 20746
 
16825 efrain 20747
  .mn-wd-xl-10p {
20748
    min-width: 10%;
20749
  }
16848 stevensc 20750
 
16825 efrain 20751
  .wd-xl-10-f {
20752
    width: 10px !important;
20753
  }
16848 stevensc 20754
 
16825 efrain 20755
  .wd-xl-10p-f {
20756
    width: 10% !important;
20757
  }
16848 stevensc 20758
 
16825 efrain 20759
  .mx-wd-xl-10p-f {
20760
    max-width: 10% !important;
20761
  }
16848 stevensc 20762
 
16825 efrain 20763
  .mn-wd-xl-10p-f {
20764
    min-width: 10% !important;
20765
  }
16848 stevensc 20766
 
16825 efrain 20767
  .wd-xl-15 {
20768
    width: 15px;
20769
  }
16848 stevensc 20770
 
16825 efrain 20771
  .wd-xl-15p {
20772
    width: 15%;
20773
  }
16848 stevensc 20774
 
16825 efrain 20775
  .mx-wd-xl-15p {
20776
    max-width: 15%;
20777
  }
16848 stevensc 20778
 
16825 efrain 20779
  .mn-wd-xl-15p {
20780
    min-width: 15%;
20781
  }
16848 stevensc 20782
 
16825 efrain 20783
  .wd-xl-15-f {
20784
    width: 15px !important;
20785
  }
16848 stevensc 20786
 
16825 efrain 20787
  .wd-xl-15p-f {
20788
    width: 15% !important;
20789
  }
16848 stevensc 20790
 
16825 efrain 20791
  .mx-wd-xl-15p-f {
20792
    max-width: 15% !important;
20793
  }
16848 stevensc 20794
 
16825 efrain 20795
  .mn-wd-xl-15p-f {
20796
    min-width: 15% !important;
20797
  }
16848 stevensc 20798
 
16825 efrain 20799
  .wd-xl-20 {
20800
    width: 20px;
20801
  }
16848 stevensc 20802
 
16825 efrain 20803
  .wd-xl-20p {
20804
    width: 20%;
20805
  }
16848 stevensc 20806
 
16825 efrain 20807
  .mx-wd-xl-20p {
20808
    max-width: 20%;
20809
  }
16848 stevensc 20810
 
16825 efrain 20811
  .mn-wd-xl-20p {
20812
    min-width: 20%;
20813
  }
16848 stevensc 20814
 
16825 efrain 20815
  .wd-xl-20-f {
20816
    width: 20px !important;
20817
  }
16848 stevensc 20818
 
16825 efrain 20819
  .wd-xl-20p-f {
20820
    width: 20% !important;
20821
  }
16848 stevensc 20822
 
16825 efrain 20823
  .mx-wd-xl-20p-f {
20824
    max-width: 20% !important;
20825
  }
16848 stevensc 20826
 
16825 efrain 20827
  .mn-wd-xl-20p-f {
20828
    min-width: 20% !important;
20829
  }
16848 stevensc 20830
 
16825 efrain 20831
  .wd-xl-25 {
20832
    width: 25px;
20833
  }
16848 stevensc 20834
 
16825 efrain 20835
  .wd-xl-25p {
20836
    width: 25%;
20837
  }
16848 stevensc 20838
 
16825 efrain 20839
  .mx-wd-xl-25p {
20840
    max-width: 25%;
20841
  }
16848 stevensc 20842
 
16825 efrain 20843
  .mn-wd-xl-25p {
20844
    min-width: 25%;
20845
  }
16848 stevensc 20846
 
16825 efrain 20847
  .wd-xl-25-f {
20848
    width: 25px !important;
20849
  }
16848 stevensc 20850
 
16825 efrain 20851
  .wd-xl-25p-f {
20852
    width: 25% !important;
20853
  }
16848 stevensc 20854
 
16825 efrain 20855
  .mx-wd-xl-25p-f {
20856
    max-width: 25% !important;
20857
  }
16848 stevensc 20858
 
16825 efrain 20859
  .mn-wd-xl-25p-f {
20860
    min-width: 25% !important;
20861
  }
16848 stevensc 20862
 
16825 efrain 20863
  .wd-xl-30 {
20864
    width: 30px;
20865
  }
16848 stevensc 20866
 
16825 efrain 20867
  .wd-xl-30p {
20868
    width: 30%;
20869
  }
16848 stevensc 20870
 
16825 efrain 20871
  .mx-wd-xl-30p {
20872
    max-width: 30%;
20873
  }
16848 stevensc 20874
 
16825 efrain 20875
  .mn-wd-xl-30p {
20876
    min-width: 30%;
20877
  }
16848 stevensc 20878
 
16825 efrain 20879
  .wd-xl-30-f {
20880
    width: 30px !important;
20881
  }
16848 stevensc 20882
 
16825 efrain 20883
  .wd-xl-30p-f {
20884
    width: 30% !important;
20885
  }
16848 stevensc 20886
 
16825 efrain 20887
  .mx-wd-xl-30p-f {
20888
    max-width: 30% !important;
20889
  }
16848 stevensc 20890
 
16825 efrain 20891
  .mn-wd-xl-30p-f {
20892
    min-width: 30% !important;
20893
  }
16848 stevensc 20894
 
16825 efrain 20895
  .wd-xl-35 {
20896
    width: 35px;
20897
  }
16848 stevensc 20898
 
16825 efrain 20899
  .wd-xl-35p {
20900
    width: 35%;
20901
  }
16848 stevensc 20902
 
16825 efrain 20903
  .mx-wd-xl-35p {
20904
    max-width: 35%;
20905
  }
16848 stevensc 20906
 
16825 efrain 20907
  .mn-wd-xl-35p {
20908
    min-width: 35%;
20909
  }
16848 stevensc 20910
 
16825 efrain 20911
  .wd-xl-35-f {
20912
    width: 35px !important;
20913
  }
16848 stevensc 20914
 
16825 efrain 20915
  .wd-xl-35p-f {
20916
    width: 35% !important;
20917
  }
16848 stevensc 20918
 
16825 efrain 20919
  .mx-wd-xl-35p-f {
20920
    max-width: 35% !important;
20921
  }
16848 stevensc 20922
 
16825 efrain 20923
  .mn-wd-xl-35p-f {
20924
    min-width: 35% !important;
20925
  }
16848 stevensc 20926
 
16825 efrain 20927
  .wd-xl-40 {
20928
    width: 40px;
20929
  }
16848 stevensc 20930
 
16825 efrain 20931
  .wd-xl-40p {
20932
    width: 40%;
20933
  }
16848 stevensc 20934
 
16825 efrain 20935
  .mx-wd-xl-40p {
20936
    max-width: 40%;
20937
  }
16848 stevensc 20938
 
16825 efrain 20939
  .mn-wd-xl-40p {
20940
    min-width: 40%;
20941
  }
16848 stevensc 20942
 
16825 efrain 20943
  .wd-xl-40-f {
20944
    width: 40px !important;
20945
  }
16848 stevensc 20946
 
16825 efrain 20947
  .wd-xl-40p-f {
20948
    width: 40% !important;
20949
  }
16848 stevensc 20950
 
16825 efrain 20951
  .mx-wd-xl-40p-f {
20952
    max-width: 40% !important;
20953
  }
16848 stevensc 20954
 
16825 efrain 20955
  .mn-wd-xl-40p-f {
20956
    min-width: 40% !important;
20957
  }
16848 stevensc 20958
 
16825 efrain 20959
  .wd-xl-45 {
20960
    width: 45px;
20961
  }
16848 stevensc 20962
 
16825 efrain 20963
  .wd-xl-45p {
20964
    width: 45%;
20965
  }
16848 stevensc 20966
 
16825 efrain 20967
  .mx-wd-xl-45p {
20968
    max-width: 45%;
20969
  }
16848 stevensc 20970
 
16825 efrain 20971
  .mn-wd-xl-45p {
20972
    min-width: 45%;
20973
  }
16848 stevensc 20974
 
16825 efrain 20975
  .wd-xl-45-f {
20976
    width: 45px !important;
20977
  }
16848 stevensc 20978
 
16825 efrain 20979
  .wd-xl-45p-f {
20980
    width: 45% !important;
20981
  }
16848 stevensc 20982
 
16825 efrain 20983
  .mx-wd-xl-45p-f {
20984
    max-width: 45% !important;
20985
  }
16848 stevensc 20986
 
16825 efrain 20987
  .mn-wd-xl-45p-f {
20988
    min-width: 45% !important;
20989
  }
16848 stevensc 20990
 
16825 efrain 20991
  .wd-xl-50 {
20992
    width: 50px;
20993
  }
16848 stevensc 20994
 
16825 efrain 20995
  .wd-xl-50p {
20996
    width: 50%;
20997
  }
16848 stevensc 20998
 
16825 efrain 20999
  .mx-wd-xl-50p {
21000
    max-width: 50%;
21001
  }
16848 stevensc 21002
 
16825 efrain 21003
  .mn-wd-xl-50p {
21004
    min-width: 50%;
21005
  }
16848 stevensc 21006
 
16825 efrain 21007
  .wd-xl-50-f {
21008
    width: 50px !important;
21009
  }
16848 stevensc 21010
 
16825 efrain 21011
  .wd-xl-50p-f {
21012
    width: 50% !important;
21013
  }
16848 stevensc 21014
 
16825 efrain 21015
  .mx-wd-xl-50p-f {
21016
    max-width: 50% !important;
21017
  }
16848 stevensc 21018
 
16825 efrain 21019
  .mn-wd-xl-50p-f {
21020
    min-width: 50% !important;
21021
  }
16848 stevensc 21022
 
16825 efrain 21023
  .wd-xl-55 {
21024
    width: 55px;
21025
  }
16848 stevensc 21026
 
16825 efrain 21027
  .wd-xl-55p {
21028
    width: 55%;
21029
  }
16848 stevensc 21030
 
16825 efrain 21031
  .mx-wd-xl-55p {
21032
    max-width: 55%;
21033
  }
16848 stevensc 21034
 
16825 efrain 21035
  .mn-wd-xl-55p {
21036
    min-width: 55%;
21037
  }
16848 stevensc 21038
 
16825 efrain 21039
  .wd-xl-55-f {
21040
    width: 55px !important;
21041
  }
16848 stevensc 21042
 
16825 efrain 21043
  .wd-xl-55p-f {
21044
    width: 55% !important;
21045
  }
16848 stevensc 21046
 
16825 efrain 21047
  .mx-wd-xl-55p-f {
21048
    max-width: 55% !important;
21049
  }
16848 stevensc 21050
 
16825 efrain 21051
  .mn-wd-xl-55p-f {
21052
    min-width: 55% !important;
21053
  }
16848 stevensc 21054
 
16825 efrain 21055
  .wd-xl-60 {
21056
    width: 60px;
21057
  }
16848 stevensc 21058
 
16825 efrain 21059
  .wd-xl-60p {
21060
    width: 60%;
21061
  }
16848 stevensc 21062
 
16825 efrain 21063
  .mx-wd-xl-60p {
21064
    max-width: 60%;
21065
  }
16848 stevensc 21066
 
16825 efrain 21067
  .mn-wd-xl-60p {
21068
    min-width: 60%;
21069
  }
16848 stevensc 21070
 
16825 efrain 21071
  .wd-xl-60-f {
21072
    width: 60px !important;
21073
  }
16848 stevensc 21074
 
16825 efrain 21075
  .wd-xl-60p-f {
21076
    width: 60% !important;
21077
  }
16848 stevensc 21078
 
16825 efrain 21079
  .mx-wd-xl-60p-f {
21080
    max-width: 60% !important;
21081
  }
16848 stevensc 21082
 
16825 efrain 21083
  .mn-wd-xl-60p-f {
21084
    min-width: 60% !important;
21085
  }
16848 stevensc 21086
 
16825 efrain 21087
  .wd-xl-65 {
21088
    width: 65px;
21089
  }
16848 stevensc 21090
 
16825 efrain 21091
  .wd-xl-65p {
21092
    width: 65%;
21093
  }
16848 stevensc 21094
 
16825 efrain 21095
  .mx-wd-xl-65p {
21096
    max-width: 65%;
21097
  }
16848 stevensc 21098
 
16825 efrain 21099
  .mn-wd-xl-65p {
21100
    min-width: 65%;
21101
  }
16848 stevensc 21102
 
16825 efrain 21103
  .wd-xl-65-f {
21104
    width: 65px !important;
21105
  }
16848 stevensc 21106
 
16825 efrain 21107
  .wd-xl-65p-f {
21108
    width: 65% !important;
21109
  }
16848 stevensc 21110
 
16825 efrain 21111
  .mx-wd-xl-65p-f {
21112
    max-width: 65% !important;
21113
  }
16848 stevensc 21114
 
16825 efrain 21115
  .mn-wd-xl-65p-f {
21116
    min-width: 65% !important;
21117
  }
16848 stevensc 21118
 
16825 efrain 21119
  .wd-xl-70 {
21120
    width: 70px;
21121
  }
16848 stevensc 21122
 
16825 efrain 21123
  .wd-xl-70p {
21124
    width: 70%;
21125
  }
16848 stevensc 21126
 
16825 efrain 21127
  .mx-wd-xl-70p {
21128
    max-width: 70%;
21129
  }
16848 stevensc 21130
 
16825 efrain 21131
  .mn-wd-xl-70p {
21132
    min-width: 70%;
21133
  }
16848 stevensc 21134
 
16825 efrain 21135
  .wd-xl-70-f {
21136
    width: 70px !important;
21137
  }
16848 stevensc 21138
 
16825 efrain 21139
  .wd-xl-70p-f {
21140
    width: 70% !important;
21141
  }
16848 stevensc 21142
 
16825 efrain 21143
  .mx-wd-xl-70p-f {
21144
    max-width: 70% !important;
21145
  }
16848 stevensc 21146
 
16825 efrain 21147
  .mn-wd-xl-70p-f {
21148
    min-width: 70% !important;
21149
  }
16848 stevensc 21150
 
16825 efrain 21151
  .wd-xl-75 {
21152
    width: 75px;
21153
  }
16848 stevensc 21154
 
16825 efrain 21155
  .wd-xl-75p {
21156
    width: 75%;
21157
  }
16848 stevensc 21158
 
16825 efrain 21159
  .mx-wd-xl-75p {
21160
    max-width: 75%;
21161
  }
16848 stevensc 21162
 
16825 efrain 21163
  .mn-wd-xl-75p {
21164
    min-width: 75%;
21165
  }
16848 stevensc 21166
 
16825 efrain 21167
  .wd-xl-75-f {
21168
    width: 75px !important;
21169
  }
16848 stevensc 21170
 
16825 efrain 21171
  .wd-xl-75p-f {
21172
    width: 75% !important;
21173
  }
16848 stevensc 21174
 
16825 efrain 21175
  .mx-wd-xl-75p-f {
21176
    max-width: 75% !important;
21177
  }
16848 stevensc 21178
 
16825 efrain 21179
  .mn-wd-xl-75p-f {
21180
    min-width: 75% !important;
21181
  }
16848 stevensc 21182
 
16825 efrain 21183
  .wd-xl-80 {
21184
    width: 80px;
21185
  }
16848 stevensc 21186
 
16825 efrain 21187
  .wd-xl-80p {
21188
    width: 80%;
21189
  }
16848 stevensc 21190
 
16825 efrain 21191
  .mx-wd-xl-80p {
21192
    max-width: 80%;
21193
  }
16848 stevensc 21194
 
16825 efrain 21195
  .mn-wd-xl-80p {
21196
    min-width: 80%;
21197
  }
16848 stevensc 21198
 
16825 efrain 21199
  .wd-xl-80-f {
21200
    width: 80px !important;
21201
  }
16848 stevensc 21202
 
16825 efrain 21203
  .wd-xl-80p-f {
21204
    width: 80% !important;
21205
  }
16848 stevensc 21206
 
16825 efrain 21207
  .mx-wd-xl-80p-f {
21208
    max-width: 80% !important;
21209
  }
16848 stevensc 21210
 
16825 efrain 21211
  .mn-wd-xl-80p-f {
21212
    min-width: 80% !important;
21213
  }
16848 stevensc 21214
 
16825 efrain 21215
  .wd-xl-85 {
21216
    width: 85px;
21217
  }
16848 stevensc 21218
 
16825 efrain 21219
  .wd-xl-85p {
21220
    width: 85%;
21221
  }
16848 stevensc 21222
 
16825 efrain 21223
  .mx-wd-xl-85p {
21224
    max-width: 85%;
21225
  }
16848 stevensc 21226
 
16825 efrain 21227
  .mn-wd-xl-85p {
21228
    min-width: 85%;
21229
  }
16848 stevensc 21230
 
16825 efrain 21231
  .wd-xl-85-f {
21232
    width: 85px !important;
21233
  }
16848 stevensc 21234
 
16825 efrain 21235
  .wd-xl-85p-f {
21236
    width: 85% !important;
21237
  }
16848 stevensc 21238
 
16825 efrain 21239
  .mx-wd-xl-85p-f {
21240
    max-width: 85% !important;
21241
  }
16848 stevensc 21242
 
16825 efrain 21243
  .mn-wd-xl-85p-f {
21244
    min-width: 85% !important;
21245
  }
16848 stevensc 21246
 
16825 efrain 21247
  .wd-xl-90 {
21248
    width: 90px;
21249
  }
16848 stevensc 21250
 
16825 efrain 21251
  .wd-xl-90p {
21252
    width: 90%;
21253
  }
16848 stevensc 21254
 
16825 efrain 21255
  .mx-wd-xl-90p {
21256
    max-width: 90%;
21257
  }
16848 stevensc 21258
 
16825 efrain 21259
  .mn-wd-xl-90p {
21260
    min-width: 90%;
21261
  }
16848 stevensc 21262
 
16825 efrain 21263
  .wd-xl-90-f {
21264
    width: 90px !important;
21265
  }
16848 stevensc 21266
 
16825 efrain 21267
  .wd-xl-90p-f {
21268
    width: 90% !important;
21269
  }
16848 stevensc 21270
 
16825 efrain 21271
  .mx-wd-xl-90p-f {
21272
    max-width: 90% !important;
21273
  }
16848 stevensc 21274
 
16825 efrain 21275
  .mn-wd-xl-90p-f {
21276
    min-width: 90% !important;
21277
  }
16848 stevensc 21278
 
16825 efrain 21279
  .wd-xl-95 {
21280
    width: 95px;
21281
  }
16848 stevensc 21282
 
16825 efrain 21283
  .wd-xl-95p {
21284
    width: 95%;
21285
  }
16848 stevensc 21286
 
16825 efrain 21287
  .mx-wd-xl-95p {
21288
    max-width: 95%;
21289
  }
16848 stevensc 21290
 
16825 efrain 21291
  .mn-wd-xl-95p {
21292
    min-width: 95%;
21293
  }
16848 stevensc 21294
 
16825 efrain 21295
  .wd-xl-95-f {
21296
    width: 95px !important;
21297
  }
16848 stevensc 21298
 
16825 efrain 21299
  .wd-xl-95p-f {
21300
    width: 95% !important;
21301
  }
16848 stevensc 21302
 
16825 efrain 21303
  .mx-wd-xl-95p-f {
21304
    max-width: 95% !important;
21305
  }
16848 stevensc 21306
 
16825 efrain 21307
  .mn-wd-xl-95p-f {
21308
    min-width: 95% !important;
21309
  }
16848 stevensc 21310
 
16825 efrain 21311
  .wd-xl-100 {
21312
    width: 100px;
21313
  }
16848 stevensc 21314
 
16825 efrain 21315
  .wd-xl-100p {
21316
    width: 100%;
21317
  }
16848 stevensc 21318
 
16825 efrain 21319
  .mx-wd-xl-100p {
21320
    max-width: 100%;
21321
  }
16848 stevensc 21322
 
16825 efrain 21323
  .mn-wd-xl-100p {
21324
    min-width: 100%;
21325
  }
16848 stevensc 21326
 
16825 efrain 21327
  .wd-xl-100-f {
21328
    width: 100px !important;
21329
  }
16848 stevensc 21330
 
16825 efrain 21331
  .wd-xl-100p-f {
21332
    width: 100% !important;
21333
  }
16848 stevensc 21334
 
16825 efrain 21335
  .mx-wd-xl-100p-f {
21336
    max-width: 100% !important;
21337
  }
16848 stevensc 21338
 
16825 efrain 21339
  .mn-wd-xl-100p-f {
21340
    min-width: 100% !important;
21341
  }
16848 stevensc 21342
 
16825 efrain 21343
  .wd-xl-150 {
21344
    width: 150px;
21345
  }
16848 stevensc 21346
 
16825 efrain 21347
  .wd-xl-150p {
21348
    width: 150%;
21349
  }
16848 stevensc 21350
 
16825 efrain 21351
  .mx-wd-xl-150p {
21352
    max-width: 150%;
21353
  }
16848 stevensc 21354
 
16825 efrain 21355
  .mn-wd-xl-150p {
21356
    min-width: 150%;
21357
  }
16848 stevensc 21358
 
16825 efrain 21359
  .wd-xl-150-f {
21360
    width: 150px !important;
21361
  }
16848 stevensc 21362
 
16825 efrain 21363
  .wd-xl-150p-f {
21364
    width: 150% !important;
21365
  }
16848 stevensc 21366
 
16825 efrain 21367
  .mx-wd-xl-150p-f {
21368
    max-width: 150% !important;
21369
  }
16848 stevensc 21370
 
16825 efrain 21371
  .mn-wd-xl-150p-f {
21372
    min-width: 150% !important;
21373
  }
16848 stevensc 21374
 
16825 efrain 21375
  .wd-xl-200 {
21376
    width: 200px;
21377
  }
16848 stevensc 21378
 
16825 efrain 21379
  .wd-xl-200p {
21380
    width: 200%;
21381
  }
16848 stevensc 21382
 
16825 efrain 21383
  .mx-wd-xl-200p {
21384
    max-width: 200%;
21385
  }
16848 stevensc 21386
 
16825 efrain 21387
  .mn-wd-xl-200p {
21388
    min-width: 200%;
21389
  }
16848 stevensc 21390
 
16825 efrain 21391
  .wd-xl-200-f {
21392
    width: 200px !important;
21393
  }
16848 stevensc 21394
 
16825 efrain 21395
  .wd-xl-200p-f {
21396
    width: 200% !important;
21397
  }
16848 stevensc 21398
 
16825 efrain 21399
  .mx-wd-xl-200p-f {
21400
    max-width: 200% !important;
21401
  }
16848 stevensc 21402
 
16825 efrain 21403
  .mn-wd-xl-200p-f {
21404
    min-width: 200% !important;
21405
  }
16848 stevensc 21406
 
16825 efrain 21407
  .wd-xl-250 {
21408
    width: 250px;
21409
  }
16848 stevensc 21410
 
16825 efrain 21411
  .wd-xl-250p {
21412
    width: 250%;
21413
  }
16848 stevensc 21414
 
16825 efrain 21415
  .mx-wd-xl-250p {
21416
    max-width: 250%;
21417
  }
16848 stevensc 21418
 
16825 efrain 21419
  .mn-wd-xl-250p {
21420
    min-width: 250%;
21421
  }
16848 stevensc 21422
 
16825 efrain 21423
  .wd-xl-250-f {
21424
    width: 250px !important;
21425
  }
16848 stevensc 21426
 
16825 efrain 21427
  .wd-xl-250p-f {
21428
    width: 250% !important;
21429
  }
16848 stevensc 21430
 
16825 efrain 21431
  .mx-wd-xl-250p-f {
21432
    max-width: 250% !important;
21433
  }
16848 stevensc 21434
 
16825 efrain 21435
  .mn-wd-xl-250p-f {
21436
    min-width: 250% !important;
21437
  }
16848 stevensc 21438
 
16825 efrain 21439
  .wd-xl-300 {
21440
    width: 300px;
21441
  }
16848 stevensc 21442
 
16825 efrain 21443
  .wd-xl-300p {
21444
    width: 300%;
21445
  }
16848 stevensc 21446
 
16825 efrain 21447
  .mx-wd-xl-300p {
21448
    max-width: 300%;
21449
  }
16848 stevensc 21450
 
16825 efrain 21451
  .mn-wd-xl-300p {
21452
    min-width: 300%;
21453
  }
16848 stevensc 21454
 
16825 efrain 21455
  .wd-xl-300-f {
21456
    width: 300px !important;
21457
  }
16848 stevensc 21458
 
16825 efrain 21459
  .wd-xl-300p-f {
21460
    width: 300% !important;
21461
  }
16848 stevensc 21462
 
16825 efrain 21463
  .mx-wd-xl-300p-f {
21464
    max-width: 300% !important;
21465
  }
16848 stevensc 21466
 
16825 efrain 21467
  .mn-wd-xl-300p-f {
21468
    min-width: 300% !important;
21469
  }
16848 stevensc 21470
 
16825 efrain 21471
  .wd-xl-350 {
21472
    width: 350px;
21473
  }
16848 stevensc 21474
 
16825 efrain 21475
  .wd-xl-350p {
21476
    width: 350%;
21477
  }
16848 stevensc 21478
 
16825 efrain 21479
  .mx-wd-xl-350p {
21480
    max-width: 350%;
21481
  }
16848 stevensc 21482
 
16825 efrain 21483
  .mn-wd-xl-350p {
21484
    min-width: 350%;
21485
  }
16848 stevensc 21486
 
16825 efrain 21487
  .wd-xl-350-f {
21488
    width: 350px !important;
21489
  }
16848 stevensc 21490
 
16825 efrain 21491
  .wd-xl-350p-f {
21492
    width: 350% !important;
21493
  }
16848 stevensc 21494
 
16825 efrain 21495
  .mx-wd-xl-350p-f {
21496
    max-width: 350% !important;
21497
  }
16848 stevensc 21498
 
16825 efrain 21499
  .mn-wd-xl-350p-f {
21500
    min-width: 350% !important;
21501
  }
16848 stevensc 21502
 
16825 efrain 21503
  .wd-xl-400 {
21504
    width: 400px;
21505
  }
16848 stevensc 21506
 
16825 efrain 21507
  .wd-xl-400p {
21508
    width: 400%;
21509
  }
16848 stevensc 21510
 
16825 efrain 21511
  .mx-wd-xl-400p {
21512
    max-width: 400%;
21513
  }
16848 stevensc 21514
 
16825 efrain 21515
  .mn-wd-xl-400p {
21516
    min-width: 400%;
21517
  }
16848 stevensc 21518
 
16825 efrain 21519
  .wd-xl-400-f {
21520
    width: 400px !important;
21521
  }
16848 stevensc 21522
 
16825 efrain 21523
  .wd-xl-400p-f {
21524
    width: 400% !important;
21525
  }
16848 stevensc 21526
 
16825 efrain 21527
  .mx-wd-xl-400p-f {
21528
    max-width: 400% !important;
21529
  }
16848 stevensc 21530
 
16825 efrain 21531
  .mn-wd-xl-400p-f {
21532
    min-width: 400% !important;
21533
  }
16848 stevensc 21534
 
16825 efrain 21535
  .wd-xl-450 {
21536
    width: 450px;
21537
  }
16848 stevensc 21538
 
16825 efrain 21539
  .wd-xl-450p {
21540
    width: 450%;
21541
  }
16848 stevensc 21542
 
16825 efrain 21543
  .mx-wd-xl-450p {
21544
    max-width: 450%;
21545
  }
16848 stevensc 21546
 
16825 efrain 21547
  .mn-wd-xl-450p {
21548
    min-width: 450%;
21549
  }
16848 stevensc 21550
 
16825 efrain 21551
  .wd-xl-450-f {
21552
    width: 450px !important;
21553
  }
16848 stevensc 21554
 
16825 efrain 21555
  .wd-xl-450p-f {
21556
    width: 450% !important;
21557
  }
16848 stevensc 21558
 
16825 efrain 21559
  .mx-wd-xl-450p-f {
21560
    max-width: 450% !important;
21561
  }
16848 stevensc 21562
 
16825 efrain 21563
  .mn-wd-xl-450p-f {
21564
    min-width: 450% !important;
21565
  }
16848 stevensc 21566
 
16825 efrain 21567
  .wd-xl-500 {
21568
    width: 500px;
21569
  }
16848 stevensc 21570
 
16825 efrain 21571
  .wd-xl-500p {
21572
    width: 500%;
21573
  }
16848 stevensc 21574
 
16825 efrain 21575
  .mx-wd-xl-500p {
21576
    max-width: 500%;
21577
  }
16848 stevensc 21578
 
16825 efrain 21579
  .mn-wd-xl-500p {
21580
    min-width: 500%;
21581
  }
16848 stevensc 21582
 
16825 efrain 21583
  .wd-xl-500-f {
21584
    width: 500px !important;
21585
  }
16848 stevensc 21586
 
16825 efrain 21587
  .wd-xl-500p-f {
21588
    width: 500% !important;
21589
  }
16848 stevensc 21590
 
16825 efrain 21591
  .mx-wd-xl-500p-f {
21592
    max-width: 500% !important;
21593
  }
16848 stevensc 21594
 
16825 efrain 21595
  .mn-wd-xl-500p-f {
21596
    min-width: 500% !important;
21597
  }
16848 stevensc 21598
 
16825 efrain 21599
  .wd-xl-550 {
21600
    width: 550px;
21601
  }
16848 stevensc 21602
 
16825 efrain 21603
  .wd-xl-550p {
21604
    width: 550%;
21605
  }
16848 stevensc 21606
 
16825 efrain 21607
  .mx-wd-xl-550p {
21608
    max-width: 550%;
21609
  }
16848 stevensc 21610
 
16825 efrain 21611
  .mn-wd-xl-550p {
21612
    min-width: 550%;
21613
  }
16848 stevensc 21614
 
16825 efrain 21615
  .wd-xl-550-f {
21616
    width: 550px !important;
21617
  }
16848 stevensc 21618
 
16825 efrain 21619
  .wd-xl-550p-f {
21620
    width: 550% !important;
21621
  }
16848 stevensc 21622
 
16825 efrain 21623
  .mx-wd-xl-550p-f {
21624
    max-width: 550% !important;
21625
  }
16848 stevensc 21626
 
16825 efrain 21627
  .mn-wd-xl-550p-f {
21628
    min-width: 550% !important;
21629
  }
16848 stevensc 21630
 
16825 efrain 21631
  .wd-xl-600 {
21632
    width: 600px;
21633
  }
16848 stevensc 21634
 
16825 efrain 21635
  .wd-xl-600p {
21636
    width: 600%;
21637
  }
16848 stevensc 21638
 
16825 efrain 21639
  .mx-wd-xl-600p {
21640
    max-width: 600%;
21641
  }
16848 stevensc 21642
 
16825 efrain 21643
  .mn-wd-xl-600p {
21644
    min-width: 600%;
21645
  }
16848 stevensc 21646
 
16825 efrain 21647
  .wd-xl-600-f {
21648
    width: 600px !important;
21649
  }
16848 stevensc 21650
 
16825 efrain 21651
  .wd-xl-600p-f {
21652
    width: 600% !important;
21653
  }
16848 stevensc 21654
 
16825 efrain 21655
  .mx-wd-xl-600p-f {
21656
    max-width: 600% !important;
21657
  }
16848 stevensc 21658
 
16825 efrain 21659
  .mn-wd-xl-600p-f {
21660
    min-width: 600% !important;
21661
  }
16848 stevensc 21662
 
16825 efrain 21663
  .wd-xl-650 {
21664
    width: 650px;
21665
  }
16848 stevensc 21666
 
16825 efrain 21667
  .wd-xl-650p {
21668
    width: 650%;
21669
  }
16848 stevensc 21670
 
16825 efrain 21671
  .mx-wd-xl-650p {
21672
    max-width: 650%;
21673
  }
16848 stevensc 21674
 
16825 efrain 21675
  .mn-wd-xl-650p {
21676
    min-width: 650%;
21677
  }
16848 stevensc 21678
 
16825 efrain 21679
  .wd-xl-650-f {
21680
    width: 650px !important;
21681
  }
16848 stevensc 21682
 
16825 efrain 21683
  .wd-xl-650p-f {
21684
    width: 650% !important;
21685
  }
16848 stevensc 21686
 
16825 efrain 21687
  .mx-wd-xl-650p-f {
21688
    max-width: 650% !important;
21689
  }
16848 stevensc 21690
 
16825 efrain 21691
  .mn-wd-xl-650p-f {
21692
    min-width: 650% !important;
21693
  }
16848 stevensc 21694
 
16825 efrain 21695
  .wd-xl-700 {
21696
    width: 700px;
21697
  }
16848 stevensc 21698
 
16825 efrain 21699
  .wd-xl-700p {
21700
    width: 700%;
21701
  }
16848 stevensc 21702
 
16825 efrain 21703
  .mx-wd-xl-700p {
21704
    max-width: 700%;
21705
  }
16848 stevensc 21706
 
16825 efrain 21707
  .mn-wd-xl-700p {
21708
    min-width: 700%;
21709
  }
16848 stevensc 21710
 
16825 efrain 21711
  .wd-xl-700-f {
21712
    width: 700px !important;
21713
  }
16848 stevensc 21714
 
16825 efrain 21715
  .wd-xl-700p-f {
21716
    width: 700% !important;
21717
  }
16848 stevensc 21718
 
16825 efrain 21719
  .mx-wd-xl-700p-f {
21720
    max-width: 700% !important;
21721
  }
16848 stevensc 21722
 
16825 efrain 21723
  .mn-wd-xl-700p-f {
21724
    min-width: 700% !important;
21725
  }
16848 stevensc 21726
 
16825 efrain 21727
  .wd-xl-750 {
21728
    width: 750px;
21729
  }
16848 stevensc 21730
 
16825 efrain 21731
  .wd-xl-750p {
21732
    width: 750%;
21733
  }
16848 stevensc 21734
 
16825 efrain 21735
  .mx-wd-xl-750p {
21736
    max-width: 750%;
21737
  }
16848 stevensc 21738
 
16825 efrain 21739
  .mn-wd-xl-750p {
21740
    min-width: 750%;
21741
  }
16848 stevensc 21742
 
16825 efrain 21743
  .wd-xl-750-f {
21744
    width: 750px !important;
21745
  }
16848 stevensc 21746
 
16825 efrain 21747
  .wd-xl-750p-f {
21748
    width: 750% !important;
21749
  }
16848 stevensc 21750
 
16825 efrain 21751
  .mx-wd-xl-750p-f {
21752
    max-width: 750% !important;
21753
  }
16848 stevensc 21754
 
16825 efrain 21755
  .mn-wd-xl-750p-f {
21756
    min-width: 750% !important;
21757
  }
16848 stevensc 21758
 
16825 efrain 21759
  .wd-xl-800 {
21760
    width: 800px;
21761
  }
16848 stevensc 21762
 
16825 efrain 21763
  .wd-xl-800p {
21764
    width: 800%;
21765
  }
16848 stevensc 21766
 
16825 efrain 21767
  .mx-wd-xl-800p {
21768
    max-width: 800%;
21769
  }
16848 stevensc 21770
 
16825 efrain 21771
  .mn-wd-xl-800p {
21772
    min-width: 800%;
21773
  }
16848 stevensc 21774
 
16825 efrain 21775
  .wd-xl-800-f {
21776
    width: 800px !important;
21777
  }
16848 stevensc 21778
 
16825 efrain 21779
  .wd-xl-800p-f {
21780
    width: 800% !important;
21781
  }
16848 stevensc 21782
 
16825 efrain 21783
  .mx-wd-xl-800p-f {
21784
    max-width: 800% !important;
21785
  }
16848 stevensc 21786
 
16825 efrain 21787
  .mn-wd-xl-800p-f {
21788
    min-width: 800% !important;
21789
  }
16848 stevensc 21790
 
16825 efrain 21791
  .wd-xl-850 {
21792
    width: 850px;
21793
  }
16848 stevensc 21794
 
16825 efrain 21795
  .wd-xl-850p {
21796
    width: 850%;
21797
  }
16848 stevensc 21798
 
16825 efrain 21799
  .mx-wd-xl-850p {
21800
    max-width: 850%;
21801
  }
16848 stevensc 21802
 
16825 efrain 21803
  .mn-wd-xl-850p {
21804
    min-width: 850%;
21805
  }
16848 stevensc 21806
 
16825 efrain 21807
  .wd-xl-850-f {
21808
    width: 850px !important;
21809
  }
16848 stevensc 21810
 
16825 efrain 21811
  .wd-xl-850p-f {
21812
    width: 850% !important;
21813
  }
16848 stevensc 21814
 
16825 efrain 21815
  .mx-wd-xl-850p-f {
21816
    max-width: 850% !important;
21817
  }
16848 stevensc 21818
 
16825 efrain 21819
  .mn-wd-xl-850p-f {
21820
    min-width: 850% !important;
21821
  }
16848 stevensc 21822
 
16825 efrain 21823
  .wd-xl-900 {
21824
    width: 900px;
21825
  }
16848 stevensc 21826
 
16825 efrain 21827
  .wd-xl-900p {
21828
    width: 900%;
21829
  }
16848 stevensc 21830
 
16825 efrain 21831
  .mx-wd-xl-900p {
21832
    max-width: 900%;
21833
  }
16848 stevensc 21834
 
16825 efrain 21835
  .mn-wd-xl-900p {
21836
    min-width: 900%;
21837
  }
16848 stevensc 21838
 
16825 efrain 21839
  .wd-xl-900-f {
21840
    width: 900px !important;
21841
  }
16848 stevensc 21842
 
16825 efrain 21843
  .wd-xl-900p-f {
21844
    width: 900% !important;
21845
  }
16848 stevensc 21846
 
16825 efrain 21847
  .mx-wd-xl-900p-f {
21848
    max-width: 900% !important;
21849
  }
16848 stevensc 21850
 
16825 efrain 21851
  .mn-wd-xl-900p-f {
21852
    min-width: 900% !important;
21853
  }
16848 stevensc 21854
 
16825 efrain 21855
  .wd-xl-950 {
21856
    width: 950px;
21857
  }
16848 stevensc 21858
 
16825 efrain 21859
  .wd-xl-950p {
21860
    width: 950%;
21861
  }
16848 stevensc 21862
 
16825 efrain 21863
  .mx-wd-xl-950p {
21864
    max-width: 950%;
21865
  }
16848 stevensc 21866
 
16825 efrain 21867
  .mn-wd-xl-950p {
21868
    min-width: 950%;
21869
  }
16848 stevensc 21870
 
16825 efrain 21871
  .wd-xl-950-f {
21872
    width: 950px !important;
21873
  }
16848 stevensc 21874
 
16825 efrain 21875
  .wd-xl-950p-f {
21876
    width: 950% !important;
21877
  }
16848 stevensc 21878
 
16825 efrain 21879
  .mx-wd-xl-950p-f {
21880
    max-width: 950% !important;
21881
  }
16848 stevensc 21882
 
16825 efrain 21883
  .mn-wd-xl-950p-f {
21884
    min-width: 950% !important;
21885
  }
16848 stevensc 21886
 
16825 efrain 21887
  .wd-xl-1000 {
21888
    width: 1000px;
21889
  }
16848 stevensc 21890
 
16825 efrain 21891
  .wd-xl-1000p {
21892
    width: 1000%;
21893
  }
16848 stevensc 21894
 
16825 efrain 21895
  .mx-wd-xl-1000p {
21896
    max-width: 1000%;
21897
  }
16848 stevensc 21898
 
16825 efrain 21899
  .mn-wd-xl-1000p {
21900
    min-width: 1000%;
21901
  }
16848 stevensc 21902
 
16825 efrain 21903
  .wd-xl-1000-f {
21904
    width: 1000px !important;
21905
  }
16848 stevensc 21906
 
16825 efrain 21907
  .wd-xl-1000p-f {
21908
    width: 1000% !important;
21909
  }
16848 stevensc 21910
 
16825 efrain 21911
  .mx-wd-xl-1000p-f {
21912
    max-width: 1000% !important;
21913
  }
16848 stevensc 21914
 
16825 efrain 21915
  .mn-wd-xl-1000p-f {
21916
    min-width: 1000% !important;
21917
  }
16848 stevensc 21918
 
16825 efrain 21919
  .wd-xl-auto {
21920
    width: auto;
21921
  }
16848 stevensc 21922
 
16825 efrain 21923
  .wd-xl-auto {
21924
    width: auto !important;
21925
  }
21926
}
16848 stevensc 21927
 
16825 efrain 21928
@media (min-width: 1400px) {
21929
  .wd-xxl-5 {
21930
    width: 5px;
21931
  }
16848 stevensc 21932
 
16825 efrain 21933
  .wd-xxl-5p {
21934
    width: 5%;
21935
  }
16848 stevensc 21936
 
16825 efrain 21937
  .mx-wd-xxl-5p {
21938
    max-width: 5%;
21939
  }
16848 stevensc 21940
 
16825 efrain 21941
  .mn-wd-xxl-5p {
21942
    min-width: 5%;
21943
  }
16848 stevensc 21944
 
16825 efrain 21945
  .wd-xxl-5-f {
21946
    width: 5px !important;
21947
  }
16848 stevensc 21948
 
16825 efrain 21949
  .wd-xxl-5p-f {
21950
    width: 5% !important;
21951
  }
16848 stevensc 21952
 
16825 efrain 21953
  .mx-wd-xxl-5p-f {
21954
    max-width: 5% !important;
21955
  }
16848 stevensc 21956
 
16825 efrain 21957
  .mn-wd-xxl-5p-f {
21958
    min-width: 5% !important;
21959
  }
16848 stevensc 21960
 
16825 efrain 21961
  .wd-xxl-10 {
21962
    width: 10px;
21963
  }
16848 stevensc 21964
 
16825 efrain 21965
  .wd-xxl-10p {
21966
    width: 10%;
21967
  }
16848 stevensc 21968
 
16825 efrain 21969
  .mx-wd-xxl-10p {
21970
    max-width: 10%;
21971
  }
16848 stevensc 21972
 
16825 efrain 21973
  .mn-wd-xxl-10p {
21974
    min-width: 10%;
21975
  }
16848 stevensc 21976
 
16825 efrain 21977
  .wd-xxl-10-f {
21978
    width: 10px !important;
21979
  }
16848 stevensc 21980
 
16825 efrain 21981
  .wd-xxl-10p-f {
21982
    width: 10% !important;
21983
  }
16848 stevensc 21984
 
16825 efrain 21985
  .mx-wd-xxl-10p-f {
21986
    max-width: 10% !important;
21987
  }
16848 stevensc 21988
 
16825 efrain 21989
  .mn-wd-xxl-10p-f {
21990
    min-width: 10% !important;
21991
  }
16848 stevensc 21992
 
16825 efrain 21993
  .wd-xxl-15 {
21994
    width: 15px;
21995
  }
16848 stevensc 21996
 
16825 efrain 21997
  .wd-xxl-15p {
21998
    width: 15%;
21999
  }
16848 stevensc 22000
 
16825 efrain 22001
  .mx-wd-xxl-15p {
22002
    max-width: 15%;
22003
  }
16848 stevensc 22004
 
16825 efrain 22005
  .mn-wd-xxl-15p {
22006
    min-width: 15%;
22007
  }
16848 stevensc 22008
 
16825 efrain 22009
  .wd-xxl-15-f {
22010
    width: 15px !important;
22011
  }
16848 stevensc 22012
 
16825 efrain 22013
  .wd-xxl-15p-f {
22014
    width: 15% !important;
22015
  }
16848 stevensc 22016
 
16825 efrain 22017
  .mx-wd-xxl-15p-f {
22018
    max-width: 15% !important;
22019
  }
16848 stevensc 22020
 
16825 efrain 22021
  .mn-wd-xxl-15p-f {
22022
    min-width: 15% !important;
22023
  }
16848 stevensc 22024
 
16825 efrain 22025
  .wd-xxl-20 {
22026
    width: 20px;
22027
  }
16848 stevensc 22028
 
16825 efrain 22029
  .wd-xxl-20p {
22030
    width: 20%;
22031
  }
16848 stevensc 22032
 
16825 efrain 22033
  .mx-wd-xxl-20p {
22034
    max-width: 20%;
22035
  }
16848 stevensc 22036
 
16825 efrain 22037
  .mn-wd-xxl-20p {
22038
    min-width: 20%;
22039
  }
16848 stevensc 22040
 
16825 efrain 22041
  .wd-xxl-20-f {
22042
    width: 20px !important;
22043
  }
16848 stevensc 22044
 
16825 efrain 22045
  .wd-xxl-20p-f {
22046
    width: 20% !important;
22047
  }
16848 stevensc 22048
 
16825 efrain 22049
  .mx-wd-xxl-20p-f {
22050
    max-width: 20% !important;
22051
  }
16848 stevensc 22052
 
16825 efrain 22053
  .mn-wd-xxl-20p-f {
22054
    min-width: 20% !important;
22055
  }
16848 stevensc 22056
 
16825 efrain 22057
  .wd-xxl-25 {
22058
    width: 25px;
22059
  }
16848 stevensc 22060
 
16825 efrain 22061
  .wd-xxl-25p {
22062
    width: 25%;
22063
  }
16848 stevensc 22064
 
16825 efrain 22065
  .mx-wd-xxl-25p {
22066
    max-width: 25%;
22067
  }
16848 stevensc 22068
 
16825 efrain 22069
  .mn-wd-xxl-25p {
22070
    min-width: 25%;
22071
  }
16848 stevensc 22072
 
16825 efrain 22073
  .wd-xxl-25-f {
22074
    width: 25px !important;
22075
  }
16848 stevensc 22076
 
16825 efrain 22077
  .wd-xxl-25p-f {
22078
    width: 25% !important;
22079
  }
16848 stevensc 22080
 
16825 efrain 22081
  .mx-wd-xxl-25p-f {
22082
    max-width: 25% !important;
22083
  }
16848 stevensc 22084
 
16825 efrain 22085
  .mn-wd-xxl-25p-f {
22086
    min-width: 25% !important;
22087
  }
16848 stevensc 22088
 
16825 efrain 22089
  .wd-xxl-30 {
22090
    width: 30px;
22091
  }
16848 stevensc 22092
 
16825 efrain 22093
  .wd-xxl-30p {
22094
    width: 30%;
22095
  }
16848 stevensc 22096
 
16825 efrain 22097
  .mx-wd-xxl-30p {
22098
    max-width: 30%;
22099
  }
16848 stevensc 22100
 
16825 efrain 22101
  .mn-wd-xxl-30p {
22102
    min-width: 30%;
22103
  }
16848 stevensc 22104
 
16825 efrain 22105
  .wd-xxl-30-f {
22106
    width: 30px !important;
22107
  }
16848 stevensc 22108
 
16825 efrain 22109
  .wd-xxl-30p-f {
22110
    width: 30% !important;
22111
  }
16848 stevensc 22112
 
16825 efrain 22113
  .mx-wd-xxl-30p-f {
22114
    max-width: 30% !important;
22115
  }
16848 stevensc 22116
 
16825 efrain 22117
  .mn-wd-xxl-30p-f {
22118
    min-width: 30% !important;
22119
  }
16848 stevensc 22120
 
16825 efrain 22121
  .wd-xxl-35 {
22122
    width: 35px;
22123
  }
16848 stevensc 22124
 
16825 efrain 22125
  .wd-xxl-35p {
22126
    width: 35%;
22127
  }
16848 stevensc 22128
 
16825 efrain 22129
  .mx-wd-xxl-35p {
22130
    max-width: 35%;
22131
  }
16848 stevensc 22132
 
16825 efrain 22133
  .mn-wd-xxl-35p {
22134
    min-width: 35%;
22135
  }
16848 stevensc 22136
 
16825 efrain 22137
  .wd-xxl-35-f {
22138
    width: 35px !important;
22139
  }
16848 stevensc 22140
 
16825 efrain 22141
  .wd-xxl-35p-f {
22142
    width: 35% !important;
22143
  }
16848 stevensc 22144
 
16825 efrain 22145
  .mx-wd-xxl-35p-f {
22146
    max-width: 35% !important;
22147
  }
16848 stevensc 22148
 
16825 efrain 22149
  .mn-wd-xxl-35p-f {
22150
    min-width: 35% !important;
22151
  }
16848 stevensc 22152
 
16825 efrain 22153
  .wd-xxl-40 {
22154
    width: 40px;
22155
  }
16848 stevensc 22156
 
16825 efrain 22157
  .wd-xxl-40p {
22158
    width: 40%;
22159
  }
16848 stevensc 22160
 
16825 efrain 22161
  .mx-wd-xxl-40p {
22162
    max-width: 40%;
22163
  }
16848 stevensc 22164
 
16825 efrain 22165
  .mn-wd-xxl-40p {
22166
    min-width: 40%;
22167
  }
16848 stevensc 22168
 
16825 efrain 22169
  .wd-xxl-40-f {
22170
    width: 40px !important;
22171
  }
16848 stevensc 22172
 
16825 efrain 22173
  .wd-xxl-40p-f {
22174
    width: 40% !important;
22175
  }
16848 stevensc 22176
 
16825 efrain 22177
  .mx-wd-xxl-40p-f {
22178
    max-width: 40% !important;
22179
  }
16848 stevensc 22180
 
16825 efrain 22181
  .mn-wd-xxl-40p-f {
22182
    min-width: 40% !important;
22183
  }
16848 stevensc 22184
 
16825 efrain 22185
  .wd-xxl-45 {
22186
    width: 45px;
22187
  }
16848 stevensc 22188
 
16825 efrain 22189
  .wd-xxl-45p {
22190
    width: 45%;
22191
  }
16848 stevensc 22192
 
16825 efrain 22193
  .mx-wd-xxl-45p {
22194
    max-width: 45%;
22195
  }
16848 stevensc 22196
 
16825 efrain 22197
  .mn-wd-xxl-45p {
22198
    min-width: 45%;
22199
  }
16848 stevensc 22200
 
16825 efrain 22201
  .wd-xxl-45-f {
22202
    width: 45px !important;
22203
  }
16848 stevensc 22204
 
16825 efrain 22205
  .wd-xxl-45p-f {
22206
    width: 45% !important;
22207
  }
16848 stevensc 22208
 
16825 efrain 22209
  .mx-wd-xxl-45p-f {
22210
    max-width: 45% !important;
22211
  }
16848 stevensc 22212
 
16825 efrain 22213
  .mn-wd-xxl-45p-f {
22214
    min-width: 45% !important;
22215
  }
16848 stevensc 22216
 
16825 efrain 22217
  .wd-xxl-50 {
22218
    width: 50px;
22219
  }
16848 stevensc 22220
 
16825 efrain 22221
  .wd-xxl-50p {
22222
    width: 50%;
22223
  }
16848 stevensc 22224
 
16825 efrain 22225
  .mx-wd-xxl-50p {
22226
    max-width: 50%;
22227
  }
16848 stevensc 22228
 
16825 efrain 22229
  .mn-wd-xxl-50p {
22230
    min-width: 50%;
22231
  }
16848 stevensc 22232
 
16825 efrain 22233
  .wd-xxl-50-f {
22234
    width: 50px !important;
22235
  }
16848 stevensc 22236
 
16825 efrain 22237
  .wd-xxl-50p-f {
22238
    width: 50% !important;
22239
  }
16848 stevensc 22240
 
16825 efrain 22241
  .mx-wd-xxl-50p-f {
22242
    max-width: 50% !important;
22243
  }
16848 stevensc 22244
 
16825 efrain 22245
  .mn-wd-xxl-50p-f {
22246
    min-width: 50% !important;
22247
  }
16848 stevensc 22248
 
16825 efrain 22249
  .wd-xxl-55 {
22250
    width: 55px;
22251
  }
16848 stevensc 22252
 
16825 efrain 22253
  .wd-xxl-55p {
22254
    width: 55%;
22255
  }
16848 stevensc 22256
 
16825 efrain 22257
  .mx-wd-xxl-55p {
22258
    max-width: 55%;
22259
  }
16848 stevensc 22260
 
16825 efrain 22261
  .mn-wd-xxl-55p {
22262
    min-width: 55%;
22263
  }
16848 stevensc 22264
 
16825 efrain 22265
  .wd-xxl-55-f {
22266
    width: 55px !important;
22267
  }
16848 stevensc 22268
 
16825 efrain 22269
  .wd-xxl-55p-f {
22270
    width: 55% !important;
22271
  }
16848 stevensc 22272
 
16825 efrain 22273
  .mx-wd-xxl-55p-f {
22274
    max-width: 55% !important;
22275
  }
16848 stevensc 22276
 
16825 efrain 22277
  .mn-wd-xxl-55p-f {
22278
    min-width: 55% !important;
22279
  }
16848 stevensc 22280
 
16825 efrain 22281
  .wd-xxl-60 {
22282
    width: 60px;
22283
  }
16848 stevensc 22284
 
16825 efrain 22285
  .wd-xxl-60p {
22286
    width: 60%;
22287
  }
16848 stevensc 22288
 
16825 efrain 22289
  .mx-wd-xxl-60p {
22290
    max-width: 60%;
22291
  }
16848 stevensc 22292
 
16825 efrain 22293
  .mn-wd-xxl-60p {
22294
    min-width: 60%;
22295
  }
16848 stevensc 22296
 
16825 efrain 22297
  .wd-xxl-60-f {
22298
    width: 60px !important;
22299
  }
16848 stevensc 22300
 
16825 efrain 22301
  .wd-xxl-60p-f {
22302
    width: 60% !important;
22303
  }
16848 stevensc 22304
 
16825 efrain 22305
  .mx-wd-xxl-60p-f {
22306
    max-width: 60% !important;
22307
  }
16848 stevensc 22308
 
16825 efrain 22309
  .mn-wd-xxl-60p-f {
22310
    min-width: 60% !important;
22311
  }
16848 stevensc 22312
 
16825 efrain 22313
  .wd-xxl-65 {
22314
    width: 65px;
22315
  }
16848 stevensc 22316
 
16825 efrain 22317
  .wd-xxl-65p {
22318
    width: 65%;
22319
  }
16848 stevensc 22320
 
16825 efrain 22321
  .mx-wd-xxl-65p {
22322
    max-width: 65%;
22323
  }
16848 stevensc 22324
 
16825 efrain 22325
  .mn-wd-xxl-65p {
22326
    min-width: 65%;
22327
  }
16848 stevensc 22328
 
16825 efrain 22329
  .wd-xxl-65-f {
22330
    width: 65px !important;
22331
  }
16848 stevensc 22332
 
16825 efrain 22333
  .wd-xxl-65p-f {
22334
    width: 65% !important;
22335
  }
16848 stevensc 22336
 
16825 efrain 22337
  .mx-wd-xxl-65p-f {
22338
    max-width: 65% !important;
22339
  }
16848 stevensc 22340
 
16825 efrain 22341
  .mn-wd-xxl-65p-f {
22342
    min-width: 65% !important;
22343
  }
16848 stevensc 22344
 
16825 efrain 22345
  .wd-xxl-70 {
22346
    width: 70px;
22347
  }
16848 stevensc 22348
 
16825 efrain 22349
  .wd-xxl-70p {
22350
    width: 70%;
22351
  }
16848 stevensc 22352
 
16825 efrain 22353
  .mx-wd-xxl-70p {
22354
    max-width: 70%;
22355
  }
16848 stevensc 22356
 
16825 efrain 22357
  .mn-wd-xxl-70p {
22358
    min-width: 70%;
22359
  }
16848 stevensc 22360
 
16825 efrain 22361
  .wd-xxl-70-f {
22362
    width: 70px !important;
22363
  }
16848 stevensc 22364
 
16825 efrain 22365
  .wd-xxl-70p-f {
22366
    width: 70% !important;
22367
  }
16848 stevensc 22368
 
16825 efrain 22369
  .mx-wd-xxl-70p-f {
22370
    max-width: 70% !important;
22371
  }
16848 stevensc 22372
 
16825 efrain 22373
  .mn-wd-xxl-70p-f {
22374
    min-width: 70% !important;
22375
  }
16848 stevensc 22376
 
16825 efrain 22377
  .wd-xxl-75 {
22378
    width: 75px;
22379
  }
16848 stevensc 22380
 
16825 efrain 22381
  .wd-xxl-75p {
22382
    width: 75%;
22383
  }
16848 stevensc 22384
 
16825 efrain 22385
  .mx-wd-xxl-75p {
22386
    max-width: 75%;
22387
  }
16848 stevensc 22388
 
16825 efrain 22389
  .mn-wd-xxl-75p {
22390
    min-width: 75%;
22391
  }
16848 stevensc 22392
 
16825 efrain 22393
  .wd-xxl-75-f {
22394
    width: 75px !important;
22395
  }
16848 stevensc 22396
 
16825 efrain 22397
  .wd-xxl-75p-f {
22398
    width: 75% !important;
22399
  }
16848 stevensc 22400
 
16825 efrain 22401
  .mx-wd-xxl-75p-f {
22402
    max-width: 75% !important;
22403
  }
16848 stevensc 22404
 
16825 efrain 22405
  .mn-wd-xxl-75p-f {
22406
    min-width: 75% !important;
22407
  }
16848 stevensc 22408
 
16825 efrain 22409
  .wd-xxl-80 {
22410
    width: 80px;
22411
  }
16848 stevensc 22412
 
16825 efrain 22413
  .wd-xxl-80p {
22414
    width: 80%;
22415
  }
16848 stevensc 22416
 
16825 efrain 22417
  .mx-wd-xxl-80p {
22418
    max-width: 80%;
22419
  }
16848 stevensc 22420
 
16825 efrain 22421
  .mn-wd-xxl-80p {
22422
    min-width: 80%;
22423
  }
16848 stevensc 22424
 
16825 efrain 22425
  .wd-xxl-80-f {
22426
    width: 80px !important;
22427
  }
16848 stevensc 22428
 
16825 efrain 22429
  .wd-xxl-80p-f {
22430
    width: 80% !important;
22431
  }
16848 stevensc 22432
 
16825 efrain 22433
  .mx-wd-xxl-80p-f {
22434
    max-width: 80% !important;
22435
  }
16848 stevensc 22436
 
16825 efrain 22437
  .mn-wd-xxl-80p-f {
22438
    min-width: 80% !important;
22439
  }
16848 stevensc 22440
 
16825 efrain 22441
  .wd-xxl-85 {
22442
    width: 85px;
22443
  }
16848 stevensc 22444
 
16825 efrain 22445
  .wd-xxl-85p {
22446
    width: 85%;
22447
  }
16848 stevensc 22448
 
16825 efrain 22449
  .mx-wd-xxl-85p {
22450
    max-width: 85%;
22451
  }
16848 stevensc 22452
 
16825 efrain 22453
  .mn-wd-xxl-85p {
22454
    min-width: 85%;
22455
  }
16848 stevensc 22456
 
16825 efrain 22457
  .wd-xxl-85-f {
22458
    width: 85px !important;
22459
  }
16848 stevensc 22460
 
16825 efrain 22461
  .wd-xxl-85p-f {
22462
    width: 85% !important;
22463
  }
16848 stevensc 22464
 
16825 efrain 22465
  .mx-wd-xxl-85p-f {
22466
    max-width: 85% !important;
22467
  }
16848 stevensc 22468
 
16825 efrain 22469
  .mn-wd-xxl-85p-f {
22470
    min-width: 85% !important;
22471
  }
16848 stevensc 22472
 
16825 efrain 22473
  .wd-xxl-90 {
22474
    width: 90px;
22475
  }
16848 stevensc 22476
 
16825 efrain 22477
  .wd-xxl-90p {
22478
    width: 90%;
22479
  }
16848 stevensc 22480
 
16825 efrain 22481
  .mx-wd-xxl-90p {
22482
    max-width: 90%;
22483
  }
16848 stevensc 22484
 
16825 efrain 22485
  .mn-wd-xxl-90p {
22486
    min-width: 90%;
22487
  }
16848 stevensc 22488
 
16825 efrain 22489
  .wd-xxl-90-f {
22490
    width: 90px !important;
22491
  }
16848 stevensc 22492
 
16825 efrain 22493
  .wd-xxl-90p-f {
22494
    width: 90% !important;
22495
  }
16848 stevensc 22496
 
16825 efrain 22497
  .mx-wd-xxl-90p-f {
22498
    max-width: 90% !important;
22499
  }
16848 stevensc 22500
 
16825 efrain 22501
  .mn-wd-xxl-90p-f {
22502
    min-width: 90% !important;
22503
  }
16848 stevensc 22504
 
16825 efrain 22505
  .wd-xxl-95 {
22506
    width: 95px;
22507
  }
16848 stevensc 22508
 
16825 efrain 22509
  .wd-xxl-95p {
22510
    width: 95%;
22511
  }
16848 stevensc 22512
 
16825 efrain 22513
  .mx-wd-xxl-95p {
22514
    max-width: 95%;
22515
  }
16848 stevensc 22516
 
16825 efrain 22517
  .mn-wd-xxl-95p {
22518
    min-width: 95%;
22519
  }
16848 stevensc 22520
 
16825 efrain 22521
  .wd-xxl-95-f {
22522
    width: 95px !important;
22523
  }
16848 stevensc 22524
 
16825 efrain 22525
  .wd-xxl-95p-f {
22526
    width: 95% !important;
22527
  }
16848 stevensc 22528
 
16825 efrain 22529
  .mx-wd-xxl-95p-f {
22530
    max-width: 95% !important;
22531
  }
16848 stevensc 22532
 
16825 efrain 22533
  .mn-wd-xxl-95p-f {
22534
    min-width: 95% !important;
22535
  }
16848 stevensc 22536
 
16825 efrain 22537
  .wd-xxl-100 {
22538
    width: 100px;
22539
  }
16848 stevensc 22540
 
16825 efrain 22541
  .wd-xxl-100p {
22542
    width: 100%;
22543
  }
16848 stevensc 22544
 
16825 efrain 22545
  .mx-wd-xxl-100p {
22546
    max-width: 100%;
22547
  }
16848 stevensc 22548
 
16825 efrain 22549
  .mn-wd-xxl-100p {
22550
    min-width: 100%;
22551
  }
16848 stevensc 22552
 
16825 efrain 22553
  .wd-xxl-100-f {
22554
    width: 100px !important;
22555
  }
16848 stevensc 22556
 
16825 efrain 22557
  .wd-xxl-100p-f {
22558
    width: 100% !important;
22559
  }
16848 stevensc 22560
 
16825 efrain 22561
  .mx-wd-xxl-100p-f {
22562
    max-width: 100% !important;
22563
  }
16848 stevensc 22564
 
16825 efrain 22565
  .mn-wd-xxl-100p-f {
22566
    min-width: 100% !important;
22567
  }
16848 stevensc 22568
 
16825 efrain 22569
  .wd-xxl-150 {
22570
    width: 150px;
22571
  }
16848 stevensc 22572
 
16825 efrain 22573
  .wd-xxl-150p {
22574
    width: 150%;
22575
  }
16848 stevensc 22576
 
16825 efrain 22577
  .mx-wd-xxl-150p {
22578
    max-width: 150%;
22579
  }
16848 stevensc 22580
 
16825 efrain 22581
  .mn-wd-xxl-150p {
22582
    min-width: 150%;
22583
  }
16848 stevensc 22584
 
16825 efrain 22585
  .wd-xxl-150-f {
22586
    width: 150px !important;
22587
  }
16848 stevensc 22588
 
16825 efrain 22589
  .wd-xxl-150p-f {
22590
    width: 150% !important;
22591
  }
16848 stevensc 22592
 
16825 efrain 22593
  .mx-wd-xxl-150p-f {
22594
    max-width: 150% !important;
22595
  }
16848 stevensc 22596
 
16825 efrain 22597
  .mn-wd-xxl-150p-f {
22598
    min-width: 150% !important;
22599
  }
16848 stevensc 22600
 
16825 efrain 22601
  .wd-xxl-200 {
22602
    width: 200px;
22603
  }
16848 stevensc 22604
 
16825 efrain 22605
  .wd-xxl-200p {
22606
    width: 200%;
22607
  }
16848 stevensc 22608
 
16825 efrain 22609
  .mx-wd-xxl-200p {
22610
    max-width: 200%;
22611
  }
16848 stevensc 22612
 
16825 efrain 22613
  .mn-wd-xxl-200p {
22614
    min-width: 200%;
22615
  }
16848 stevensc 22616
 
16825 efrain 22617
  .wd-xxl-200-f {
22618
    width: 200px !important;
22619
  }
16848 stevensc 22620
 
16825 efrain 22621
  .wd-xxl-200p-f {
22622
    width: 200% !important;
22623
  }
16848 stevensc 22624
 
16825 efrain 22625
  .mx-wd-xxl-200p-f {
22626
    max-width: 200% !important;
22627
  }
16848 stevensc 22628
 
16825 efrain 22629
  .mn-wd-xxl-200p-f {
22630
    min-width: 200% !important;
22631
  }
16848 stevensc 22632
 
16825 efrain 22633
  .wd-xxl-250 {
22634
    width: 250px;
22635
  }
16848 stevensc 22636
 
16825 efrain 22637
  .wd-xxl-250p {
22638
    width: 250%;
22639
  }
16848 stevensc 22640
 
16825 efrain 22641
  .mx-wd-xxl-250p {
22642
    max-width: 250%;
22643
  }
16848 stevensc 22644
 
16825 efrain 22645
  .mn-wd-xxl-250p {
22646
    min-width: 250%;
22647
  }
16848 stevensc 22648
 
16825 efrain 22649
  .wd-xxl-250-f {
22650
    width: 250px !important;
22651
  }
16848 stevensc 22652
 
16825 efrain 22653
  .wd-xxl-250p-f {
22654
    width: 250% !important;
22655
  }
16848 stevensc 22656
 
16825 efrain 22657
  .mx-wd-xxl-250p-f {
22658
    max-width: 250% !important;
22659
  }
16848 stevensc 22660
 
16825 efrain 22661
  .mn-wd-xxl-250p-f {
22662
    min-width: 250% !important;
22663
  }
16848 stevensc 22664
 
16825 efrain 22665
  .wd-xxl-300 {
22666
    width: 300px;
22667
  }
16848 stevensc 22668
 
16825 efrain 22669
  .wd-xxl-300p {
22670
    width: 300%;
22671
  }
16848 stevensc 22672
 
16825 efrain 22673
  .mx-wd-xxl-300p {
22674
    max-width: 300%;
22675
  }
16848 stevensc 22676
 
16825 efrain 22677
  .mn-wd-xxl-300p {
22678
    min-width: 300%;
22679
  }
16848 stevensc 22680
 
16825 efrain 22681
  .wd-xxl-300-f {
22682
    width: 300px !important;
22683
  }
16848 stevensc 22684
 
16825 efrain 22685
  .wd-xxl-300p-f {
22686
    width: 300% !important;
22687
  }
16848 stevensc 22688
 
16825 efrain 22689
  .mx-wd-xxl-300p-f {
22690
    max-width: 300% !important;
22691
  }
16848 stevensc 22692
 
16825 efrain 22693
  .mn-wd-xxl-300p-f {
22694
    min-width: 300% !important;
22695
  }
16848 stevensc 22696
 
16825 efrain 22697
  .wd-xxl-350 {
22698
    width: 350px;
22699
  }
16848 stevensc 22700
 
16825 efrain 22701
  .wd-xxl-350p {
22702
    width: 350%;
22703
  }
16848 stevensc 22704
 
16825 efrain 22705
  .mx-wd-xxl-350p {
22706
    max-width: 350%;
22707
  }
16848 stevensc 22708
 
16825 efrain 22709
  .mn-wd-xxl-350p {
22710
    min-width: 350%;
22711
  }
16848 stevensc 22712
 
16825 efrain 22713
  .wd-xxl-350-f {
22714
    width: 350px !important;
22715
  }
16848 stevensc 22716
 
16825 efrain 22717
  .wd-xxl-350p-f {
22718
    width: 350% !important;
22719
  }
16848 stevensc 22720
 
16825 efrain 22721
  .mx-wd-xxl-350p-f {
22722
    max-width: 350% !important;
22723
  }
16848 stevensc 22724
 
16825 efrain 22725
  .mn-wd-xxl-350p-f {
22726
    min-width: 350% !important;
22727
  }
16848 stevensc 22728
 
16825 efrain 22729
  .wd-xxl-400 {
22730
    width: 400px;
22731
  }
16848 stevensc 22732
 
16825 efrain 22733
  .wd-xxl-400p {
22734
    width: 400%;
22735
  }
16848 stevensc 22736
 
16825 efrain 22737
  .mx-wd-xxl-400p {
22738
    max-width: 400%;
22739
  }
16848 stevensc 22740
 
16825 efrain 22741
  .mn-wd-xxl-400p {
22742
    min-width: 400%;
22743
  }
16848 stevensc 22744
 
16825 efrain 22745
  .wd-xxl-400-f {
22746
    width: 400px !important;
22747
  }
16848 stevensc 22748
 
16825 efrain 22749
  .wd-xxl-400p-f {
22750
    width: 400% !important;
22751
  }
16848 stevensc 22752
 
16825 efrain 22753
  .mx-wd-xxl-400p-f {
22754
    max-width: 400% !important;
22755
  }
16848 stevensc 22756
 
16825 efrain 22757
  .mn-wd-xxl-400p-f {
22758
    min-width: 400% !important;
22759
  }
16848 stevensc 22760
 
16825 efrain 22761
  .wd-xxl-450 {
22762
    width: 450px;
22763
  }
16848 stevensc 22764
 
16825 efrain 22765
  .wd-xxl-450p {
22766
    width: 450%;
22767
  }
16848 stevensc 22768
 
16825 efrain 22769
  .mx-wd-xxl-450p {
22770
    max-width: 450%;
22771
  }
16848 stevensc 22772
 
16825 efrain 22773
  .mn-wd-xxl-450p {
22774
    min-width: 450%;
22775
  }
16848 stevensc 22776
 
16825 efrain 22777
  .wd-xxl-450-f {
22778
    width: 450px !important;
22779
  }
16848 stevensc 22780
 
16825 efrain 22781
  .wd-xxl-450p-f {
22782
    width: 450% !important;
22783
  }
16848 stevensc 22784
 
16825 efrain 22785
  .mx-wd-xxl-450p-f {
22786
    max-width: 450% !important;
22787
  }
16848 stevensc 22788
 
16825 efrain 22789
  .mn-wd-xxl-450p-f {
22790
    min-width: 450% !important;
22791
  }
16848 stevensc 22792
 
16825 efrain 22793
  .wd-xxl-500 {
22794
    width: 500px;
22795
  }
16848 stevensc 22796
 
16825 efrain 22797
  .wd-xxl-500p {
22798
    width: 500%;
22799
  }
16848 stevensc 22800
 
16825 efrain 22801
  .mx-wd-xxl-500p {
22802
    max-width: 500%;
22803
  }
16848 stevensc 22804
 
16825 efrain 22805
  .mn-wd-xxl-500p {
22806
    min-width: 500%;
22807
  }
16848 stevensc 22808
 
16825 efrain 22809
  .wd-xxl-500-f {
22810
    width: 500px !important;
22811
  }
16848 stevensc 22812
 
16825 efrain 22813
  .wd-xxl-500p-f {
22814
    width: 500% !important;
22815
  }
16848 stevensc 22816
 
16825 efrain 22817
  .mx-wd-xxl-500p-f {
22818
    max-width: 500% !important;
22819
  }
16848 stevensc 22820
 
16825 efrain 22821
  .mn-wd-xxl-500p-f {
22822
    min-width: 500% !important;
22823
  }
16848 stevensc 22824
 
16825 efrain 22825
  .wd-xxl-550 {
22826
    width: 550px;
22827
  }
16848 stevensc 22828
 
16825 efrain 22829
  .wd-xxl-550p {
22830
    width: 550%;
22831
  }
16848 stevensc 22832
 
16825 efrain 22833
  .mx-wd-xxl-550p {
22834
    max-width: 550%;
22835
  }
16848 stevensc 22836
 
16825 efrain 22837
  .mn-wd-xxl-550p {
22838
    min-width: 550%;
22839
  }
16848 stevensc 22840
 
16825 efrain 22841
  .wd-xxl-550-f {
22842
    width: 550px !important;
22843
  }
16848 stevensc 22844
 
16825 efrain 22845
  .wd-xxl-550p-f {
22846
    width: 550% !important;
22847
  }
16848 stevensc 22848
 
16825 efrain 22849
  .mx-wd-xxl-550p-f {
22850
    max-width: 550% !important;
22851
  }
16848 stevensc 22852
 
16825 efrain 22853
  .mn-wd-xxl-550p-f {
22854
    min-width: 550% !important;
22855
  }
16848 stevensc 22856
 
16825 efrain 22857
  .wd-xxl-600 {
22858
    width: 600px;
22859
  }
16848 stevensc 22860
 
16825 efrain 22861
  .wd-xxl-600p {
22862
    width: 600%;
22863
  }
16848 stevensc 22864
 
16825 efrain 22865
  .mx-wd-xxl-600p {
22866
    max-width: 600%;
22867
  }
16848 stevensc 22868
 
16825 efrain 22869
  .mn-wd-xxl-600p {
22870
    min-width: 600%;
22871
  }
16848 stevensc 22872
 
16825 efrain 22873
  .wd-xxl-600-f {
22874
    width: 600px !important;
22875
  }
16848 stevensc 22876
 
16825 efrain 22877
  .wd-xxl-600p-f {
22878
    width: 600% !important;
22879
  }
16848 stevensc 22880
 
16825 efrain 22881
  .mx-wd-xxl-600p-f {
22882
    max-width: 600% !important;
22883
  }
16848 stevensc 22884
 
16825 efrain 22885
  .mn-wd-xxl-600p-f {
22886
    min-width: 600% !important;
22887
  }
16848 stevensc 22888
 
16825 efrain 22889
  .wd-xxl-650 {
22890
    width: 650px;
22891
  }
16848 stevensc 22892
 
16825 efrain 22893
  .wd-xxl-650p {
22894
    width: 650%;
22895
  }
16848 stevensc 22896
 
16825 efrain 22897
  .mx-wd-xxl-650p {
22898
    max-width: 650%;
22899
  }
16848 stevensc 22900
 
16825 efrain 22901
  .mn-wd-xxl-650p {
22902
    min-width: 650%;
22903
  }
16848 stevensc 22904
 
16825 efrain 22905
  .wd-xxl-650-f {
22906
    width: 650px !important;
22907
  }
16848 stevensc 22908
 
16825 efrain 22909
  .wd-xxl-650p-f {
22910
    width: 650% !important;
22911
  }
16848 stevensc 22912
 
16825 efrain 22913
  .mx-wd-xxl-650p-f {
22914
    max-width: 650% !important;
22915
  }
16848 stevensc 22916
 
16825 efrain 22917
  .mn-wd-xxl-650p-f {
22918
    min-width: 650% !important;
22919
  }
16848 stevensc 22920
 
16825 efrain 22921
  .wd-xxl-700 {
22922
    width: 700px;
22923
  }
16848 stevensc 22924
 
16825 efrain 22925
  .wd-xxl-700p {
22926
    width: 700%;
22927
  }
16848 stevensc 22928
 
16825 efrain 22929
  .mx-wd-xxl-700p {
22930
    max-width: 700%;
22931
  }
16848 stevensc 22932
 
16825 efrain 22933
  .mn-wd-xxl-700p {
22934
    min-width: 700%;
22935
  }
16848 stevensc 22936
 
16825 efrain 22937
  .wd-xxl-700-f {
22938
    width: 700px !important;
22939
  }
16848 stevensc 22940
 
16825 efrain 22941
  .wd-xxl-700p-f {
22942
    width: 700% !important;
22943
  }
16848 stevensc 22944
 
16825 efrain 22945
  .mx-wd-xxl-700p-f {
22946
    max-width: 700% !important;
22947
  }
16848 stevensc 22948
 
16825 efrain 22949
  .mn-wd-xxl-700p-f {
22950
    min-width: 700% !important;
22951
  }
16848 stevensc 22952
 
16825 efrain 22953
  .wd-xxl-750 {
22954
    width: 750px;
22955
  }
16848 stevensc 22956
 
16825 efrain 22957
  .wd-xxl-750p {
22958
    width: 750%;
22959
  }
16848 stevensc 22960
 
16825 efrain 22961
  .mx-wd-xxl-750p {
22962
    max-width: 750%;
22963
  }
16848 stevensc 22964
 
16825 efrain 22965
  .mn-wd-xxl-750p {
22966
    min-width: 750%;
22967
  }
16848 stevensc 22968
 
16825 efrain 22969
  .wd-xxl-750-f {
22970
    width: 750px !important;
22971
  }
16848 stevensc 22972
 
16825 efrain 22973
  .wd-xxl-750p-f {
22974
    width: 750% !important;
22975
  }
16848 stevensc 22976
 
16825 efrain 22977
  .mx-wd-xxl-750p-f {
22978
    max-width: 750% !important;
22979
  }
16848 stevensc 22980
 
16825 efrain 22981
  .mn-wd-xxl-750p-f {
22982
    min-width: 750% !important;
22983
  }
16848 stevensc 22984
 
16825 efrain 22985
  .wd-xxl-800 {
22986
    width: 800px;
22987
  }
16848 stevensc 22988
 
16825 efrain 22989
  .wd-xxl-800p {
22990
    width: 800%;
22991
  }
16848 stevensc 22992
 
16825 efrain 22993
  .mx-wd-xxl-800p {
22994
    max-width: 800%;
22995
  }
16848 stevensc 22996
 
16825 efrain 22997
  .mn-wd-xxl-800p {
22998
    min-width: 800%;
22999
  }
16848 stevensc 23000
 
16825 efrain 23001
  .wd-xxl-800-f {
23002
    width: 800px !important;
23003
  }
16848 stevensc 23004
 
16825 efrain 23005
  .wd-xxl-800p-f {
23006
    width: 800% !important;
23007
  }
16848 stevensc 23008
 
16825 efrain 23009
  .mx-wd-xxl-800p-f {
23010
    max-width: 800% !important;
23011
  }
16848 stevensc 23012
 
16825 efrain 23013
  .mn-wd-xxl-800p-f {
23014
    min-width: 800% !important;
23015
  }
16848 stevensc 23016
 
16825 efrain 23017
  .wd-xxl-850 {
23018
    width: 850px;
23019
  }
16848 stevensc 23020
 
16825 efrain 23021
  .wd-xxl-850p {
23022
    width: 850%;
23023
  }
16848 stevensc 23024
 
16825 efrain 23025
  .mx-wd-xxl-850p {
23026
    max-width: 850%;
23027
  }
16848 stevensc 23028
 
16825 efrain 23029
  .mn-wd-xxl-850p {
23030
    min-width: 850%;
23031
  }
16848 stevensc 23032
 
16825 efrain 23033
  .wd-xxl-850-f {
23034
    width: 850px !important;
23035
  }
16848 stevensc 23036
 
16825 efrain 23037
  .wd-xxl-850p-f {
23038
    width: 850% !important;
23039
  }
16848 stevensc 23040
 
16825 efrain 23041
  .mx-wd-xxl-850p-f {
23042
    max-width: 850% !important;
23043
  }
16848 stevensc 23044
 
16825 efrain 23045
  .mn-wd-xxl-850p-f {
23046
    min-width: 850% !important;
23047
  }
16848 stevensc 23048
 
16825 efrain 23049
  .wd-xxl-900 {
23050
    width: 900px;
23051
  }
16848 stevensc 23052
 
16825 efrain 23053
  .wd-xxl-900p {
23054
    width: 900%;
23055
  }
16848 stevensc 23056
 
16825 efrain 23057
  .mx-wd-xxl-900p {
23058
    max-width: 900%;
23059
  }
16848 stevensc 23060
 
16825 efrain 23061
  .mn-wd-xxl-900p {
23062
    min-width: 900%;
23063
  }
16848 stevensc 23064
 
16825 efrain 23065
  .wd-xxl-900-f {
23066
    width: 900px !important;
23067
  }
16848 stevensc 23068
 
16825 efrain 23069
  .wd-xxl-900p-f {
23070
    width: 900% !important;
23071
  }
16848 stevensc 23072
 
16825 efrain 23073
  .mx-wd-xxl-900p-f {
23074
    max-width: 900% !important;
23075
  }
16848 stevensc 23076
 
16825 efrain 23077
  .mn-wd-xxl-900p-f {
23078
    min-width: 900% !important;
23079
  }
16848 stevensc 23080
 
16825 efrain 23081
  .wd-xxl-950 {
23082
    width: 950px;
23083
  }
16848 stevensc 23084
 
16825 efrain 23085
  .wd-xxl-950p {
23086
    width: 950%;
23087
  }
16848 stevensc 23088
 
16825 efrain 23089
  .mx-wd-xxl-950p {
23090
    max-width: 950%;
23091
  }
16848 stevensc 23092
 
16825 efrain 23093
  .mn-wd-xxl-950p {
23094
    min-width: 950%;
23095
  }
16848 stevensc 23096
 
16825 efrain 23097
  .wd-xxl-950-f {
23098
    width: 950px !important;
23099
  }
16848 stevensc 23100
 
16825 efrain 23101
  .wd-xxl-950p-f {
23102
    width: 950% !important;
23103
  }
16848 stevensc 23104
 
16825 efrain 23105
  .mx-wd-xxl-950p-f {
23106
    max-width: 950% !important;
23107
  }
16848 stevensc 23108
 
16825 efrain 23109
  .mn-wd-xxl-950p-f {
23110
    min-width: 950% !important;
23111
  }
16848 stevensc 23112
 
16825 efrain 23113
  .wd-xxl-1000 {
23114
    width: 1000px;
23115
  }
16848 stevensc 23116
 
16825 efrain 23117
  .wd-xxl-1000p {
23118
    width: 1000%;
23119
  }
16848 stevensc 23120
 
16825 efrain 23121
  .mx-wd-xxl-1000p {
23122
    max-width: 1000%;
23123
  }
16848 stevensc 23124
 
16825 efrain 23125
  .mn-wd-xxl-1000p {
23126
    min-width: 1000%;
23127
  }
16848 stevensc 23128
 
16825 efrain 23129
  .wd-xxl-1000-f {
23130
    width: 1000px !important;
23131
  }
16848 stevensc 23132
 
16825 efrain 23133
  .wd-xxl-1000p-f {
23134
    width: 1000% !important;
23135
  }
16848 stevensc 23136
 
16825 efrain 23137
  .mx-wd-xxl-1000p-f {
23138
    max-width: 1000% !important;
23139
  }
16848 stevensc 23140
 
16825 efrain 23141
  .mn-wd-xxl-1000p-f {
23142
    min-width: 1000% !important;
23143
  }
16848 stevensc 23144
 
16825 efrain 23145
  .wd-xxl-auto {
23146
    width: auto;
23147
  }
16848 stevensc 23148
 
16825 efrain 23149
  .wd-xxl-auto {
23150
    width: auto !important;
23151
  }
23152
}
16848 stevensc 23153
 
16825 efrain 23154
.bg-facebook {
23155
  background: social-color("facebook");
23156
}
23157
 
23158
.bg-twitter {
23159
  background: social-color("twitter");
23160
}
23161
 
23162
.bg-google {
23163
  background: social-color("google");
23164
}
23165
 
23166
.bg-youtube {
23167
  background: social-color("youtube");
23168
}
23169
 
23170
.bg-vimeo {
23171
  background: social-color("vimeo");
23172
}
23173
 
23174
.bg-dribbble {
23175
  background: social-color("dribbble");
23176
}
23177
 
23178
.bg-github {
23179
  background: social-color("github");
23180
}
23181
 
23182
.bg-instagram {
23183
  background: social-color("instagram");
23184
}
23185
 
23186
.bg-pinterest {
23187
  background: social-color("pinterest");
23188
}
23189
 
23190
.bg-flickr {
23191
  background: social-color("flickr");
23192
}
23193
 
23194
.bg-bitbucket {
23195
  background: social-color("bitbucket");
23196
}
23197
 
23198
.bg-linkedin {
23199
  background: social-color("linkedin");
23200
}
23201
 
23202
body {
23203
  margin: 0;
23204
  padding: 0;
23205
}
23206
 
16848 stevensc 23207
.btn,
23208
.wizard>.actions a,
23209
.wizard>.actions a:active,
23210
.wizard>.actions a:hover,
23211
div.tox .tox-button,
23212
.swal2-popup .swal2-actions button,
23213
.fc .fc-button-primary,
16825 efrain 23214
.btn-group.open .dropdown-toggle,
23215
.btn:active,
23216
.btn:focus,
23217
.btn:hover,
23218
.btn:visited,
23219
a,
23220
a:active,
23221
a:checked,
23222
a:focus,
23223
a:hover,
23224
a:visited,
23225
body,
23226
button,
23227
button:active,
23228
button:hover,
23229
button:visited,
23230
div,
23231
input,
23232
input:active,
23233
input:hover,
23234
input:focus,
23235
input:visited,
23236
select,
23237
select:active,
23238
select:focus,
23239
select:visited,
23240
textarea,
23241
textarea:active,
23242
textarea:focus,
23243
textarea:visited {
23244
  -webkit-box-shadow: none;
23245
  -moz-box-shadow: none;
23246
  box-shadow: none;
23247
}
23248
 
23249
select,
23250
.form-check-input {
16848 stevensc 23251
  appearance: none;
16825 efrain 23252
  -moz-appearance: none;
23253
}
23254
 
23255
input:-webkit-autofill,
23256
input:-webkit-autofill:hover,
23257
input:-webkit-autofill:focus,
23258
input:-webkit-autofill:active {
23259
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23260
  -webkit-text-fill-color: #000;
23261
}
23262
 
23263
*:-moz-full-screen,
23264
*:-webkit-full-screen,
23265
*:fullscreen *:-ms-full-screen {
23266
  overflow: auto;
23267
}
23268
 
23269
pre {
23270
  background-color: color(gray-lighter);
23271
  padding: 15px;
23272
  font-size: 14px;
23273
}
23274
 
23275
code {
23276
  padding: 5px;
23277
  font-family: "Roboto", Helvetica, sans-serif;
23278
  font-weight: 400;
23279
  font-size: 0.875rem;
23280
  border-radius: 4px;
23281
}
23282
 
23283
.grid-margin {
23284
  margin-bottom: 1.5rem;
23285
}
23286
 
23287
@media (min-width: 576px) {
23288
  .grid-margin-sm-0 {
23289
    margin-bottom: 0;
23290
  }
23291
}
23292
 
23293
@media (min-width: 768px) {
23294
  .grid-margin-md-0 {
23295
    margin-bottom: 0;
23296
  }
23297
}
23298
 
23299
@media (min-width: 992px) {
23300
  .grid-margin-lg-0 {
23301
    margin-bottom: 0;
23302
  }
23303
}
23304
 
23305
@media (min-width: 1200px) {
23306
  .grid-margin-xl-0 {
23307
    margin-bottom: 0;
23308
  }
23309
}
23310
 
23311
.stretch-card {
23312
  display: flex;
23313
  align-items: stretch;
23314
  justify-content: stretch;
23315
}
16848 stevensc 23316
 
23317
.stretch-card>.card {
16825 efrain 23318
  width: 100%;
23319
  min-width: 100%;
23320
}
23321
 
23322
.img-lg {
23323
  width: 92px;
23324
  height: 92px;
23325
}
23326
 
23327
.img-md {
23328
  width: 75px;
23329
  height: 92px;
23330
}
23331
 
23332
.img-sm {
23333
  width: 43px;
23334
  height: 43px;
23335
}
23336
 
23337
.img-xs {
23338
  width: 36px;
23339
  height: 36px;
23340
}
23341
 
23342
.img-ss {
23343
  width: 26px;
23344
  height: 26px;
23345
}
23346
 
23347
.fw-boldest {
23348
  font-weight: 900;
23349
}
23350
 
23351
.tx-10 {
23352
  font-size: 10px;
23353
}
23354
 
23355
.tx-11 {
23356
  font-size: 11px;
23357
}
23358
 
23359
.tx-12 {
23360
  font-size: 12px;
23361
}
23362
 
23363
.tx-13 {
23364
  font-size: 13px;
23365
}
23366
 
23367
.tx-14 {
23368
  font-size: 14px;
23369
}
23370
 
23371
.tx-16 {
23372
  font-size: 16px;
23373
}
23374
 
23375
.tx-80 {
23376
  font-size: 80px;
23377
}
23378
 
23379
svg.icon-xs {
23380
  width: 12px;
23381
  height: 12px;
23382
}
23383
 
23384
svg.icon-sm {
23385
  width: 14px;
23386
  height: 14px;
23387
}
23388
 
23389
svg.icon-md {
23390
  width: 16px;
23391
  height: 16px;
23392
}
23393
 
23394
svg.icon-lg {
23395
  width: 20px;
23396
  height: 20px;
23397
}
23398
 
23399
svg.icon-xl {
23400
  width: 26px;
23401
  height: 26px;
23402
}
23403
 
23404
svg.icon-xxl {
23405
  width: 40px;
23406
  height: 40px;
23407
}
23408
 
23409
.icon-xs {
23410
  font-size: 14px;
23411
}
23412
 
23413
.icon-sm {
23414
  font-size: 16px;
23415
}
23416
 
23417
.icon-md {
23418
  font-size: 18px;
23419
}
23420
 
23421
.icon-lg {
23422
  font-size: 20px;
23423
}
23424
 
23425
.icon-xl {
23426
  font-size: 24px;
23427
}
23428
 
23429
.icon-xxl {
23430
  font-size: 30px;
23431
}
23432
 
23433
.cursor-pointer {
23434
  cursor: pointer;
23435
}
23436
 
23437
.cursor-default {
23438
  cursor: default;
23439
}
23440
 
23441
.pt-1px {
23442
  padding-top: 1px;
23443
}
23444
 
23445
.pt-2px {
23446
  padding-top: 2px;
23447
}
23448
 
23449
.pt-3px {
23450
  padding-top: 3px;
23451
}
23452
 
23453
.pb-1px {
23454
  padding-bottom: 1px;
23455
}
23456
 
23457
.pb-2px {
23458
  padding-bottom: 2px;
23459
}
23460
 
23461
.pb-3px {
23462
  padding-bottom: 3px;
23463
}
23464
 
23465
.mt-1px {
23466
  margin-top: 1px;
23467
}
23468
 
23469
.mt-2px {
23470
  margin-top: 2px;
23471
}
23472
 
23473
.mt-3px {
23474
  margin-top: 3px;
23475
}
23476
 
23477
.mb-1px {
23478
  margin-bottom: 1px;
23479
}
23480
 
23481
.mb-2px {
23482
  margin-bottom: 2px;
23483
}
23484
 
23485
.mb-3px {
23486
  margin-bottom: 3px;
23487
}
23488
 
23489
.ht-5 {
23490
  height: 5px;
23491
}
23492
 
23493
.ht-10 {
23494
  height: 10px;
23495
}
23496
 
23497
.ht-15 {
23498
  height: 15px;
23499
}
23500
 
23501
.ht-20 {
23502
  height: 20px;
23503
}
23504
 
23505
.ht-30 {
23506
  height: 30px;
23507
}
23508
 
23509
.ht-40 {
23510
  height: 40px;
23511
}
23512
 
23513
.ht-50 {
23514
  height: 50px;
23515
}
23516
 
23517
.ht-60 {
23518
  height: 60px;
23519
}
23520
 
23521
.ht-70 {
23522
  height: 70px;
23523
}
23524
 
23525
.ht-80 {
23526
  height: 80px;
23527
}
23528
 
23529
.ht-90 {
23530
  height: 90px;
23531
}
23532
 
23533
.ht-100 {
23534
  height: 100px;
23535
}
23536
 
23537
body {
23538
  -webkit-font-smoothing: antialiased;
23539
  -moz-osx-font-smoothing: grayscale;
23540
}
23541
 
23542
.text-facebook {
23543
  color: #3b5998;
23544
}
23545
 
23546
.text-twitter {
23547
  color: #1da1f2;
23548
}
23549
 
23550
.text-google {
23551
  color: #dc4e41;
23552
}
23553
 
23554
.text-youtube {
23555
  color: #f00;
23556
}
23557
 
23558
.text-vimeo {
23559
  color: #1ab7ea;
23560
}
23561
 
23562
.text-dribbble {
23563
  color: #ea4c89;
23564
}
23565
 
23566
.text-github {
23567
  color: #181717;
23568
}
23569
 
23570
.text-instagram {
23571
  color: #e4405f;
23572
}
23573
 
23574
.text-pinterest {
23575
  color: #bd081c;
23576
}
23577
 
23578
.text-flickr {
23579
  color: #0063dc;
23580
}
23581
 
23582
.text-bitbucket {
23583
  color: #0052cc;
23584
}
23585
 
23586
.text-linkedin {
23587
  color: #0077b5;
23588
}
23589
 
23590
.main-content {
23591
  color: #000;
23592
  font-size: 16px;
23593
}
16848 stevensc 23594
 
23595
.main-content>.page-title {
16825 efrain 23596
  margin-bottom: 1rem;
23597
  font-weight: 400;
23598
}
16848 stevensc 23599
 
23600
.main-content>h4,
23601
.main-content>.h4 {
16825 efrain 23602
  margin-top: 1.5rem;
23603
  margin-bottom: 0.875rem;
23604
}
16848 stevensc 23605
 
23606
.main-content>h4::before,
23607
.main-content>.h4::before {
16825 efrain 23608
  display: block;
23609
  height: 5.4rem;
23610
  margin-top: -6rem;
23611
  content: "";
23612
}
16848 stevensc 23613
 
23614
.main-content>hr {
16825 efrain 23615
  margin-top: 40px;
23616
  margin-bottom: 40px;
23617
}
16848 stevensc 23618
 
16825 efrain 23619
.main-content .example {
23620
  font-size: 0.875rem;
23621
  letter-spacing: normal;
23622
  padding: 10px;
23623
  background-color: #fff;
23624
  border: 4px solid #e9ecef;
23625
  position: relative;
23626
}
16848 stevensc 23627
 
16825 efrain 23628
@media (min-width: 576px) {
23629
  .main-content .example {
23630
    padding: 25px;
23631
  }
23632
}
16848 stevensc 23633
 
16825 efrain 23634
.main-content .highlight {
23635
  position: relative;
23636
  background-color: #fff;
23637
  padding: 15px;
23638
}
16848 stevensc 23639
 
16825 efrain 23640
.main-content .highlight pre {
23641
  padding: 15px;
23642
  font-size: 0.875rem;
23643
  font-family: "Roboto", Helvetica, sans-serif;
23644
  background: transparent;
23645
  line-height: 1.4;
23646
  margin: 0;
23647
}
16848 stevensc 23648
 
16825 efrain 23649
.main-content .highlight pre code {
23650
  font-family: "Roboto", Helvetica, sans-serif;
23651
  padding: 0;
23652
  tab-size: 8;
23653
  color: #000;
23654
  text-shadow: none;
23655
}
16848 stevensc 23656
 
23657
.main-content .highlight pre code .token.url,
23658
.main-content .highlight pre code .token.string,
23659
.main-content .highlight pre code .token.entity,
23660
.main-content .highlight pre code .token.operator {
16825 efrain 23661
  background: none;
23662
}
16848 stevensc 23663
 
16825 efrain 23664
.main-content .highlight .btn-clipboard {
23665
  position: absolute;
23666
  top: 6px;
23667
  right: 6px;
23668
  font-size: 12px;
23669
  padding: 1px 6px;
23670
  background: rgba(101, 113, 255, 0.2);
23671
}
16848 stevensc 23672
 
23673
.main-content .highlight .btn-clipboard:hover,
23674
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23675
  background: rgba(101, 113, 255, 0.3);
23676
  border-color: transparent;
23677
  transition: background 0.3s ease-in-out;
23678
}
23679
 
16848 stevensc 23680
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23681
  margin-top: 0.5rem;
23682
}
16848 stevensc 23683
 
16825 efrain 23684
.example .modal.static {
23685
  position: static;
23686
  display: block;
23687
}
16848 stevensc 23688
 
16825 efrain 23689
.example .navbar {
23690
  position: relative;
23691
  padding: 0.5rem 1rem;
23692
  left: auto;
23693
  width: 100%;
23694
  height: auto;
23695
  z-index: 9;
23696
  border-bottom: 0;
23697
  box-shadow: none;
23698
}
16848 stevensc 23699
 
16825 efrain 23700
.example .navbar .navbar-brand {
23701
  font-size: 1.25rem;
23702
}
16848 stevensc 23703
 
23704
.example .progress+.progress {
16825 efrain 23705
  margin-top: 10px;
23706
}
16848 stevensc 23707
 
16825 efrain 23708
.example .perfect-scrollbar-example {
23709
  position: relative;
23710
  max-height: 250px;
23711
  background: #fff;
23712
}
16848 stevensc 23713
 
16825 efrain 23714
.example .scrollspy-example {
23715
  position: relative;
23716
  height: 200px;
23717
  margin-top: 0.5rem;
23718
  overflow: auto;
23719
}
16848 stevensc 23720
 
16825 efrain 23721
.example .scrollspy-example-2 {
23722
  position: relative;
23723
  height: 350px;
23724
  overflow: auto;
23725
}
16848 stevensc 23726
 
16825 efrain 23727
.example nav .breadcrumb {
23728
  margin-bottom: 0.75rem;
23729
}
16848 stevensc 23730
 
16825 efrain 23731
.example nav:last-child .breadcrumb {
23732
  margin-bottom: 0;
23733
}
23734
 
23735
.page-breadcrumb {
23736
  margin-bottom: 15px;
23737
}
16848 stevensc 23738
 
16825 efrain 23739
.page-breadcrumb .breadcrumb {
23740
  padding: 0;
23741
  background: #f9fafb;
23742
}
23743
 
23744
.noble-ui-logo {
23745
  font-weight: 700;
23746
  font-size: 25px;
23747
  color: #000865;
23748
}
16848 stevensc 23749
 
16825 efrain 23750
.noble-ui-logo span {
23751
  color: #6571ff;
23752
  font-weight: 300;
23753
}
16848 stevensc 23754
 
16825 efrain 23755
.noble-ui-logo:hover {
23756
  color: #000865;
23757
}
16848 stevensc 23758
 
16825 efrain 23759
.noble-ui-logo.logo-light {
23760
  color: #000;
23761
}
23762
 
23763
.buy-now-wrapper {
23764
  position: fixed;
23765
  bottom: 30px;
23766
  right: 35px;
23767
  z-index: 99999;
23768
}
16848 stevensc 23769
 
16825 efrain 23770
.rtl .buy-now-wrapper {
23771
  right: auto;
23772
  left: 35px;
23773
}
16848 stevensc 23774
 
23775
.buy-now-wrapper .btn svg,
23776
.buy-now-wrapper .wizard>.actions a svg,
23777
.wizard>.actions .buy-now-wrapper a svg,
23778
.buy-now-wrapper div.tox .tox-button svg,
23779
div.tox .buy-now-wrapper .tox-button svg,
23780
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23781
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23782
.buy-now-wrapper .fc .fc-button-primary svg,
23783
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23784
  width: 19px !important;
23785
  height: 19px !important;
23786
}
23787
 
23788
.main-wrapper .page-wrapper {
23789
  min-height: 100vh;
23790
  background: #f9fafb;
23791
  width: calc(100% - 240px);
23792
  margin-left: 240px;
23793
  display: flex;
23794
  flex-direction: column;
23795
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23796
  transition: margin 0.1s ease, width 0.1s ease;
23797
}
16848 stevensc 23798
 
16825 efrain 23799
.main-wrapper .page-wrapper .page-content {
23800
  flex-grow: 1;
23801
  padding: 25px;
23802
  margin-top: 60px;
23803
}
16848 stevensc 23804
 
16825 efrain 23805
@media (max-width: 767px) {
23806
  .main-wrapper .page-wrapper .page-content {
23807
    padding: 25px 15px;
23808
  }
23809
}
16848 stevensc 23810
 
16825 efrain 23811
.main-wrapper .page-wrapper.full-page {
23812
  width: 100%;
23813
  margin-left: 0;
23814
}
16848 stevensc 23815
 
16825 efrain 23816
.main-wrapper .page-wrapper.full-page .page-content {
23817
  margin-top: 0;
23818
}
16848 stevensc 23819
 
16825 efrain 23820
@media (max-width: 991px) {
23821
  .main-wrapper .page-wrapper {
23822
    margin-left: 0;
23823
    width: 100%;
23824
  }
23825
}
23826
 
23827
.page-content .content-nav-wrapper {
23828
  padding: 0;
23829
  position: sticky;
23830
  top: 80px;
23831
  height: calc(100vh - 6rem);
23832
  overflow-y: auto;
23833
  border-left: 1px solid #e9ecef;
23834
  display: none;
23835
}
16848 stevensc 23836
 
16825 efrain 23837
@media (min-width: 1200px) {
23838
  .page-content .content-nav-wrapper {
23839
    display: block;
23840
  }
23841
}
16848 stevensc 23842
 
16825 efrain 23843
.page-content .content-nav-wrapper .content-nav {
23844
  padding: 0px 25px;
23845
}
16848 stevensc 23846
 
16825 efrain 23847
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23848
  padding: 0;
23849
  height: 30px;
23850
  white-space: nowrap;
23851
  color: #7987a1;
23852
  display: flex;
23853
  align-items: center;
23854
}
23855
 
23856
.navbar {
23857
  width: calc(100% - 240px);
23858
  height: 60px;
23859
  background: #fff;
23860
  border-bottom: 1px solid #e9ecef;
23861
  display: flex;
23862
  align-items: center;
23863
  padding: 0;
23864
  position: fixed;
23865
  right: 0;
23866
  left: 240px;
23867
  z-index: 978;
23868
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23869
  transition: width 0.1s ease, left 0.1s ease;
23870
}
16848 stevensc 23871
 
16825 efrain 23872
@media (max-width: 991px) {
23873
  .navbar {
23874
    width: 100%;
23875
    left: 0;
23876
  }
16848 stevensc 23877
 
16825 efrain 23878
  .navbar .navbar-content {
23879
    width: calc(100% - 70px - 1px);
23880
  }
23881
}
16848 stevensc 23882
 
16825 efrain 23883
.navbar .sidebar-toggler {
23884
  height: 100%;
23885
  border-right: 1px solid #e9ecef;
23886
  align-items: center;
23887
  padding: 0 25px;
23888
  display: none;
23889
}
16848 stevensc 23890
 
16825 efrain 23891
.navbar .sidebar-toggler svg {
23892
  width: 20px;
23893
  height: 20px;
23894
  color: #7987a1;
23895
}
16848 stevensc 23896
 
16825 efrain 23897
@media (max-width: 991px) {
23898
  .navbar .sidebar-toggler {
23899
    display: flex;
23900
  }
23901
}
16848 stevensc 23902
 
16825 efrain 23903
.navbar .search-form {
23904
  width: 100%;
23905
  margin-right: 60px;
23906
}
16848 stevensc 23907
 
16825 efrain 23908
.navbar .search-form .input-group .input-group-text {
23909
  padding: 0;
23910
  border: 0;
23911
  color: #7987a1;
23912
  background: #fff;
23913
}
16848 stevensc 23914
 
16825 efrain 23915
.navbar .search-form .input-group .input-group-text svg {
23916
  width: 20px;
23917
  height: 20px;
23918
  cursor: pointer;
23919
}
16848 stevensc 23920
 
23921
.navbar .search-form .input-group .form-control,
23922
.navbar .search-form .input-group .typeahead.tt-input,
23923
.navbar .search-form .input-group .typeahead.tt-hint,
23924
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23925
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23926
  border: 0;
23927
  margin-top: 3px;
23928
}
16848 stevensc 23929
 
16825 efrain 23930
.navbar .navbar-content {
23931
  display: flex;
23932
  width: 100%;
23933
  height: 100%;
23934
  padding-left: 25px;
23935
  padding-right: 25px;
23936
}
16848 stevensc 23937
 
16825 efrain 23938
@media (max-width: 991px) {
23939
  .navbar .navbar-content {
23940
    width: calc(100% - 70px - 1px);
23941
  }
23942
}
16848 stevensc 23943
 
16825 efrain 23944
.navbar .navbar-content .navbar-nav {
23945
  display: flex;
23946
  flex-direction: row;
23947
  margin-left: auto;
23948
}
16848 stevensc 23949
 
16825 efrain 23950
.navbar .navbar-content .navbar-nav .nav-item {
23951
  position: relative;
23952
  margin-left: 5px;
23953
  margin-right: 5px;
23954
  min-width: 30px;
23955
  display: flex;
23956
  align-items: center;
23957
}
16848 stevensc 23958
 
16825 efrain 23959
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23960
  color: #000;
23961
  padding: 0;
23962
  position: relative;
23963
  margin-left: auto;
23964
  margin-right: auto;
23965
}
16848 stevensc 23966
 
23967
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23968
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23969
  color: #6571ff;
23970
}
16848 stevensc 23971
 
16825 efrain 23972
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23973
  display: none;
23974
}
16848 stevensc 23975
 
16825 efrain 23976
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23977
  width: 20px;
23978
  height: 20px;
23979
}
16848 stevensc 23980
 
16825 efrain 23981
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23982
  position: absolute;
23983
  top: 0px;
23984
  right: 2px;
23985
}
16848 stevensc 23986
 
16825 efrain 23987
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23988
  background: #6571ff;
23989
  width: 7px;
23990
  height: 7px;
23991
  border-radius: 50%;
23992
}
16848 stevensc 23993
 
16825 efrain 23994
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23995
  background-color: #6571ff;
23996
  content: "";
23997
  display: table;
23998
  border-radius: 50%;
23999
  position: absolute;
24000
}
16848 stevensc 24001
 
16825 efrain 24002
@media (max-width: 767px) {
24003
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
24004
    position: static;
24005
  }
24006
}
16848 stevensc 24007
 
24008
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24009
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24010
  width: max-content;
24011
  position: absolute;
24012
  right: -20px;
24013
  left: auto;
24014
}
16848 stevensc 24015
 
24016
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24017
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24018
  content: "";
24019
  width: 13px;
24020
  height: 13px;
24021
  background: #fff;
24022
  position: absolute;
24023
  top: -7px;
24024
  right: 28px;
24025
  transform: rotate(45deg);
24026
  border-top: 1px solid #f2f4f9;
24027
  border-left: 1px solid #f2f4f9;
24028
}
16848 stevensc 24029
 
16825 efrain 24030
@media (max-width: 767px) {
16848 stevensc 24031
 
24032
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24033
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24034
    right: 20px;
24035
    width: calc(100% - 40px);
24036
  }
16848 stevensc 24037
 
24038
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24039
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24040
    display: none;
24041
  }
24042
}
24043
 
24044
.sidebar {
24045
  width: 240px;
24046
  height: 100%;
24047
  position: fixed;
24048
  left: 0;
24049
  top: 0;
24050
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24051
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24052
  z-index: 999;
24053
}
16848 stevensc 24054
 
16825 efrain 24055
.sidebar .sidebar-header {
24056
  background: #fff;
24057
  height: 60px;
24058
  border-bottom: 1px solid #e9ecef;
24059
  display: flex;
24060
  justify-content: space-between;
24061
  align-items: center;
24062
  padding: 0 25px;
24063
  border-right: 1px solid #e9ecef;
24064
  z-index: 999;
24065
  width: 240px;
24066
  -webkit-transition: width 0.1s ease;
24067
  transition: width 0.1s ease;
24068
}
16848 stevensc 24069
 
16825 efrain 24070
.sidebar-open .sidebar .sidebar-header {
24071
  border-bottom: 1px solid #e9ecef;
24072
}
16848 stevensc 24073
 
16825 efrain 24074
.sidebar .sidebar-header .sidebar-brand {
24075
  opacity: 1;
24076
  visibility: visible;
24077
  -webkit-transition: opacity 0.5s ease;
24078
  transition: opacity 0.5s ease;
24079
  font-weight: 700;
24080
  font-size: 25px;
24081
  color: #000865;
16848 stevensc 24082
  direction: ltr
24083
    /*rtl:ignore*/
24084
  ;
16825 efrain 24085
}
16848 stevensc 24086
 
16825 efrain 24087
.sidebar .sidebar-header .sidebar-brand span {
24088
  color: #6571ff;
24089
  font-weight: 300;
24090
}
16848 stevensc 24091
 
16825 efrain 24092
.sidebar .sidebar-header .sidebar-toggler {
24093
  cursor: pointer;
24094
  width: 18px;
24095
}
16848 stevensc 24096
 
16825 efrain 24097
.sidebar .sidebar-header .sidebar-toggler span {
24098
  display: block;
24099
  width: 100%;
24100
  border-radius: 3px;
24101
  height: 2px;
24102
  background: #7987a1;
24103
  -webkit-transition: all 0.3s;
24104
  transition: all 0.3s;
24105
  position: relative;
24106
}
16848 stevensc 24107
 
24108
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24109
  margin-top: 4px;
24110
}
16848 stevensc 24111
 
16825 efrain 24112
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24113
  -webkit-animation: ease 0.6s top forwards;
24114
  animation: ease 0.6s top forwards;
24115
}
16848 stevensc 24116
 
16825 efrain 24117
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24118
  -webkit-animation: ease 0.6s top-2 forwards;
24119
  animation: ease 0.6s top-2 forwards;
24120
}
16848 stevensc 24121
 
16825 efrain 24122
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24123
  -webkit-animation: ease 0.6s scaled forwards;
24124
  animation: ease 0.6s scaled forwards;
24125
}
16848 stevensc 24126
 
16825 efrain 24127
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24128
  -webkit-animation: ease 0.6s scaled-2 forwards;
24129
  animation: ease 0.6s scaled-2 forwards;
24130
}
16848 stevensc 24131
 
16825 efrain 24132
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24133
  -webkit-animation: ease 0.6s bottom forwards;
24134
  animation: ease 0.6s bottom forwards;
24135
}
16848 stevensc 24136
 
16825 efrain 24137
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24138
  -webkit-animation: ease 0.6s bottom-2 forwards;
24139
  animation: ease 0.6s bottom-2 forwards;
24140
}
16848 stevensc 24141
 
16825 efrain 24142
@-webkit-keyframes top {
24143
  0% {
24144
    top: 0;
24145
    -webkit-transform: rotate(0);
24146
    transform: rotate(0);
24147
  }
16848 stevensc 24148
 
16825 efrain 24149
  50% {
24150
    top: 6px;
24151
    -webkit-transform: rotate(0);
24152
    transform: rotate(0);
24153
  }
16848 stevensc 24154
 
16825 efrain 24155
  100% {
24156
    top: 6px;
24157
    -webkit-transform: rotate(45deg);
24158
    transform: rotate(45deg);
24159
  }
24160
}
16848 stevensc 24161
 
16825 efrain 24162
@keyframes top {
24163
  0% {
24164
    top: 0;
24165
    -webkit-transform: rotate(0);
24166
    transform: rotate(0);
24167
  }
16848 stevensc 24168
 
16825 efrain 24169
  50% {
24170
    top: 6px;
24171
    -webkit-transform: rotate(0);
24172
    transform: rotate(0);
24173
  }
16848 stevensc 24174
 
16825 efrain 24175
  100% {
24176
    top: 6px;
24177
    -webkit-transform: rotate(45deg);
24178
    transform: rotate(45deg);
24179
  }
24180
}
16848 stevensc 24181
 
16825 efrain 24182
@-webkit-keyframes top-2 {
24183
  0% {
24184
    top: 6px;
24185
    -webkit-transform: rotate(45deg);
24186
    transform: rotate(45deg);
24187
  }
16848 stevensc 24188
 
16825 efrain 24189
  50% {
24190
    top: 6px;
24191
    -webkit-transform: rotate(0deg);
24192
    transform: rotate(0deg);
24193
  }
16848 stevensc 24194
 
16825 efrain 24195
  100% {
24196
    top: 0;
24197
    -webkit-transform: rotate(0deg);
24198
    transform: rotate(0deg);
24199
  }
24200
}
16848 stevensc 24201
 
16825 efrain 24202
@keyframes top-2 {
24203
  0% {
24204
    top: 6px;
24205
    -webkit-transform: rotate(45deg);
24206
    transform: rotate(45deg);
24207
  }
16848 stevensc 24208
 
16825 efrain 24209
  50% {
24210
    top: 6px;
24211
    -webkit-transform: rotate(0deg);
24212
    transform: rotate(0deg);
24213
  }
16848 stevensc 24214
 
16825 efrain 24215
  100% {
24216
    top: 0;
24217
    -webkit-transform: rotate(0deg);
24218
    transform: rotate(0deg);
24219
  }
24220
}
16848 stevensc 24221
 
16825 efrain 24222
@-webkit-keyframes bottom {
24223
  0% {
24224
    bottom: 0;
24225
    -webkit-transform: rotate(0);
24226
    transform: rotate(0);
24227
  }
16848 stevensc 24228
 
16825 efrain 24229
  50% {
24230
    bottom: 6px;
24231
    -webkit-transform: rotate(0);
24232
    transform: rotate(0);
24233
  }
16848 stevensc 24234
 
16825 efrain 24235
  100% {
24236
    bottom: 6px;
24237
    -webkit-transform: rotate(135deg);
24238
    transform: rotate(135deg);
24239
  }
24240
}
16848 stevensc 24241
 
16825 efrain 24242
@keyframes bottom {
24243
  0% {
24244
    bottom: 0;
24245
    -webkit-transform: rotate(0);
24246
    transform: rotate(0);
24247
  }
16848 stevensc 24248
 
16825 efrain 24249
  50% {
24250
    bottom: 6px;
24251
    -webkit-transform: rotate(0);
24252
    transform: rotate(0);
24253
  }
16848 stevensc 24254
 
16825 efrain 24255
  100% {
24256
    bottom: 6px;
24257
    -webkit-transform: rotate(135deg);
24258
    transform: rotate(135deg);
24259
  }
24260
}
16848 stevensc 24261
 
16825 efrain 24262
@-webkit-keyframes bottom-2 {
24263
  0% {
24264
    bottom: 6px;
24265
    -webkit-transform: rotate(135deg);
24266
    transform: rotate(135deg);
24267
  }
16848 stevensc 24268
 
16825 efrain 24269
  50% {
24270
    bottom: 6px;
24271
    -webkit-transform: rotate(0);
24272
    transform: rotate(0);
24273
  }
16848 stevensc 24274
 
16825 efrain 24275
  100% {
24276
    bottom: 0;
24277
    -webkit-transform: rotate(0);
24278
    transform: rotate(0);
24279
  }
24280
}
16848 stevensc 24281
 
16825 efrain 24282
@keyframes bottom-2 {
24283
  0% {
24284
    bottom: 6px;
24285
    -webkit-transform: rotate(135deg);
24286
    transform: rotate(135deg);
24287
  }
16848 stevensc 24288
 
16825 efrain 24289
  50% {
24290
    bottom: 6px;
24291
    -webkit-transform: rotate(0);
24292
    transform: rotate(0);
24293
  }
16848 stevensc 24294
 
16825 efrain 24295
  100% {
24296
    bottom: 0;
24297
    -webkit-transform: rotate(0);
24298
    transform: rotate(0);
24299
  }
24300
}
16848 stevensc 24301
 
16825 efrain 24302
@-webkit-keyframes scaled {
24303
  50% {
24304
    -webkit-transform: scale(0);
24305
    transform: scale(0);
24306
  }
16848 stevensc 24307
 
16825 efrain 24308
  100% {
24309
    -webkit-transform: scale(0);
24310
    transform: scale(0);
24311
  }
24312
}
16848 stevensc 24313
 
16825 efrain 24314
@keyframes scaled {
24315
  50% {
24316
    -webkit-transform: scale(0);
24317
    transform: scale(0);
24318
  }
16848 stevensc 24319
 
16825 efrain 24320
  100% {
24321
    -webkit-transform: scale(0);
24322
    transform: scale(0);
24323
  }
24324
}
16848 stevensc 24325
 
16825 efrain 24326
@-webkit-keyframes scaled-2 {
24327
  0% {
24328
    -webkit-transform: scale(0);
24329
    transform: scale(0);
24330
  }
16848 stevensc 24331
 
16825 efrain 24332
  50% {
24333
    -webkit-transform: scale(0);
24334
    transform: scale(0);
24335
  }
16848 stevensc 24336
 
16825 efrain 24337
  100% {
24338
    -webkit-transform: scale(1);
24339
    transform: scale(1);
24340
  }
24341
}
16848 stevensc 24342
 
16825 efrain 24343
@keyframes scaled-2 {
24344
  0% {
24345
    -webkit-transform: scale(0);
24346
    transform: scale(0);
24347
  }
16848 stevensc 24348
 
16825 efrain 24349
  50% {
24350
    -webkit-transform: scale(0);
24351
    transform: scale(0);
24352
  }
16848 stevensc 24353
 
16825 efrain 24354
  100% {
24355
    -webkit-transform: scale(1);
24356
    transform: scale(1);
24357
  }
24358
}
16848 stevensc 24359
 
16825 efrain 24360
.sidebar .sidebar-body {
24361
  max-height: calc(100% - 60px);
24362
  position: relative;
24363
  border-right: 1px solid #e9ecef;
24364
  height: 100%;
24365
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24366
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24367
  background: #fff;
24368
}
16848 stevensc 24369
 
16825 efrain 24370
.sidebar .sidebar-body .nav {
24371
  display: flex;
24372
  flex-direction: column;
24373
  padding: 25px 25px 50px 25px;
24374
}
16848 stevensc 24375
 
16825 efrain 24376
.sidebar .sidebar-body .nav .nav-item {
24377
  position: relative;
24378
}
16848 stevensc 24379
 
16825 efrain 24380
.sidebar .sidebar-body .nav .nav-item .nav-link {
24381
  display: flex;
24382
  align-items: center;
24383
  padding: 0;
24384
  height: 32px;
24385
  white-space: nowrap;
24386
  color: #000;
24387
}
16848 stevensc 24388
 
16825 efrain 24389
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24390
  width: 16px;
24391
  height: 16px;
24392
  fill: rgba(233, 236, 239, 0.21);
24393
  position: absolute;
24394
  color: inherit;
24395
}
16848 stevensc 24396
 
16825 efrain 24397
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24398
  margin-left: 30px;
24399
  font-size: 14px;
24400
  -webkit-transition: all 0.2s ease-in-out;
24401
  transition: all 0.2s ease-in-out;
24402
}
16848 stevensc 24403
 
16825 efrain 24404
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24405
  width: 14px;
24406
  height: 14px;
24407
  margin-left: auto;
24408
  -webkit-transition: all 0.3s ease;
24409
  -webkit-transition: all 0.3s ease-in-out;
24410
  transition: all 0.3s ease-in-out;
24411
  color: inherit;
24412
}
16848 stevensc 24413
 
16825 efrain 24414
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24415
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24416
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24417
  -webkit-transition: all 0.3s ease;
24418
  transition: all 0.3s ease;
24419
}
16848 stevensc 24420
 
16825 efrain 24421
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24422
  color: #6571ff;
24423
}
16848 stevensc 24424
 
16825 efrain 24425
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24426
  -webkit-transform: rotate(90deg);
24427
  transform: rotate(180deg);
24428
}
16848 stevensc 24429
 
16825 efrain 24430
.sidebar .sidebar-body .nav .nav-item.nav-category {
24431
  color: #7987a1;
24432
  font-size: 11px;
24433
  text-transform: uppercase;
24434
  font-weight: 500;
24435
  letter-spacing: 0.5px;
24436
  margin-bottom: 5px;
24437
  height: 15px;
24438
}
16848 stevensc 24439
 
16825 efrain 24440
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24441
  margin-top: 20px;
24442
}
16848 stevensc 24443
 
16825 efrain 24444
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24445
  color: #6571ff;
24446
}
16848 stevensc 24447
 
16825 efrain 24448
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24449
  margin-left: 31px;
24450
}
16848 stevensc 24451
 
16825 efrain 24452
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24453
  color: #6571ff;
24454
  fill: rgba(239, 243, 255, 0.5);
24455
}
16848 stevensc 24456
 
16825 efrain 24457
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24458
  color: #6571ff;
24459
}
16848 stevensc 24460
 
16825 efrain 24461
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24462
  content: "";
24463
  width: 3px;
24464
  height: 26px;
24465
  background: #6571ff;
24466
  position: absolute;
24467
  left: -25px;
24468
}
16848 stevensc 24469
 
16825 efrain 24470
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24471
  fill: rgba(239, 243, 255, 0.5);
24472
  color: #6571ff;
24473
}
16848 stevensc 24474
 
16825 efrain 24475
.sidebar .sidebar-body .nav.sub-menu {
24476
  padding: 0 0 15px 33px;
24477
}
16848 stevensc 24478
 
16825 efrain 24479
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24480
  position: relative;
24481
}
16848 stevensc 24482
 
16825 efrain 24483
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24484
  height: 25px;
24485
  color: #000;
24486
  font-size: 13px;
24487
  -webkit-transition: all 0.3s ease-in-out;
24488
  transition: all 0.3s ease-in-out;
24489
}
16848 stevensc 24490
 
16825 efrain 24491
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24492
  content: "";
24493
  width: 6px;
24494
  height: 6px;
24495
  border-radius: 50%;
24496
  background: transparent;
24497
  border: 1px solid #aeb9c4;
24498
  position: absolute;
24499
  left: -29px;
24500
  top: 10px;
24501
  -webkit-transition: all 0.7s ease-in-out;
24502
  -webkit-transition: all 0.4s ease-in-out;
24503
  transition: all 0.4s ease-in-out;
24504
}
16848 stevensc 24505
 
16893 stevensc 24506
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active .sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
16825 efrain 24507
  color: #6571ff;
24508
}
16848 stevensc 24509
 
16825 efrain 24510
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24511
  border: 1px solid #6571ff;
24512
  background: #6571ff;
24513
}
16848 stevensc 24514
 
16893 stevensc 24515
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover>.nav-link {
16825 efrain 24516
  color: #6571ff;
24517
  margin-left: 3px;
24518
}
16848 stevensc 24519
 
16893 stevensc 24520
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover>.nav-link::before {
16825 efrain 24521
  border: 1px solid #6571ff;
24522
  background: #6571ff;
24523
}
16848 stevensc 24524
 
16825 efrain 24525
@media (max-width: 991px) {
24526
  .sidebar {
24527
    z-index: 999;
24528
    margin-left: -240px;
24529
    visibility: hidden;
24530
  }
16848 stevensc 24531
 
16825 efrain 24532
  .sidebar-open .sidebar {
24533
    margin-left: 0;
24534
    visibility: visible;
24535
  }
16848 stevensc 24536
 
16825 efrain 24537
  .sidebar .sidebar-body .nav .nav-item {
24538
    width: auto;
24539
  }
16848 stevensc 24540
 
16825 efrain 24541
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24542
    -webkit-transition: none;
24543
    transition: none;
24544
    margin: 0;
24545
  }
24546
}
24547
 
24548
.sidebar-dark .sidebar .sidebar-header {
24549
  background: #0c1427;
24550
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24551
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24552
}
16848 stevensc 24553
 
16825 efrain 24554
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24555
  color: #e9ecef;
24556
}
16848 stevensc 24557
 
16825 efrain 24558
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24559
  background: #7987a1;
24560
}
16848 stevensc 24561
 
16825 efrain 24562
.sidebar-dark .sidebar .sidebar-body {
24563
  background: #0c1427;
24564
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24565
}
16848 stevensc 24566
 
16825 efrain 24567
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24568
  color: #fff;
24569
}
16848 stevensc 24570
 
16825 efrain 24571
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24572
  color: #7987a1;
24573
}
16848 stevensc 24574
 
16825 efrain 24575
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24576
  fill: none;
24577
}
16848 stevensc 24578
 
16825 efrain 24579
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24580
  color: #6571ff;
24581
}
16848 stevensc 24582
 
24583
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24584
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24585
  fill: rgba(101, 113, 255, 0.2);
24586
}
16848 stevensc 24587
 
24588
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24589
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24590
  color: #6571ff;
24591
}
24592
 
24593
.settings-sidebar {
24594
  position: fixed;
24595
  right: -232px;
24596
  top: 130px;
24597
  width: 232px;
24598
  background: #fff;
24599
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24600
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24601
  z-index: 999;
24602
  border-radius: 0 0 0 4px;
24603
  -webkit-transition: all 0.2s ease-in-out;
24604
  transition: all 0.2s ease-in-out;
24605
}
16848 stevensc 24606
 
16825 efrain 24607
.settings-open .settings-sidebar {
24608
  right: 0;
24609
}
16848 stevensc 24610
 
16825 efrain 24611
.settings-sidebar .sidebar-body {
24612
  position: relative;
24613
  padding: 18px;
24614
}
16848 stevensc 24615
 
16825 efrain 24616
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24617
  position: absolute;
24618
  left: -44px;
24619
  top: 0;
24620
  padding: 12px;
24621
  border-radius: 4px 0 0 4px;
24622
  background: #fff;
24623
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24624
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24625
}
16848 stevensc 24626
 
16825 efrain 24627
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24628
  width: 20px;
24629
  height: 20px;
24630
  color: #7987a1;
24631
}
16848 stevensc 24632
 
16825 efrain 24633
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24634
  position: relative;
24635
  display: block;
24636
  margin-bottom: 19px;
24637
  border-radius: 6px;
24638
  border: 3px solid #e9ecef;
24639
}
16848 stevensc 24640
 
16825 efrain 24641
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24642
  content: "";
24643
  position: absolute;
24644
  top: 0;
24645
  left: 0;
24646
  width: 100%;
24647
  height: 100%;
24648
  background: rgba(101, 113, 255, 0);
24649
}
16848 stevensc 24650
 
16825 efrain 24651
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24652
  margin-bottom: 0;
24653
}
16848 stevensc 24654
 
16825 efrain 24655
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24656
  border: 3px solid #b2b8ff;
24657
}
16848 stevensc 24658
 
16825 efrain 24659
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24660
  width: 100%;
24661
  border-radius: 3px;
24662
}
16848 stevensc 24663
 
16825 efrain 24664
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24665
  background: rgba(101, 113, 255, 0.2);
24666
  -webkit-transition: all 0.3s ease-in-out;
24667
  transition: all 0.3s ease-in-out;
24668
}
24669
 
24670
.sidebar-folded .sidebar .sidebar-header {
24671
  width: 70px;
24672
}
16848 stevensc 24673
 
16825 efrain 24674
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24675
  display: none;
24676
}
16848 stevensc 24677
 
16825 efrain 24678
.sidebar-folded .page-wrapper {
24679
  width: calc(100% - 70px);
24680
  margin-left: 70px;
24681
}
16848 stevensc 24682
 
16825 efrain 24683
.sidebar-folded .page-wrapper .navbar {
24684
  width: calc(100% - 70px);
24685
  left: 70px;
24686
  right: 0;
24687
}
16848 stevensc 24688
 
16825 efrain 24689
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24690
  width: 70px;
24691
}
16848 stevensc 24692
 
16825 efrain 24693
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24694
  width: 70px;
24695
}
16848 stevensc 24696
 
16825 efrain 24697
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24698
  opacity: 0;
24699
  visibility: hidden;
24700
  width: 0;
24701
}
16848 stevensc 24702
 
16825 efrain 24703
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24704
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24705
  visibility: hidden;
24706
  opacity: 0;
24707
}
16848 stevensc 24708
 
16825 efrain 24709
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24710
  visibility: hidden;
24711
}
16848 stevensc 24712
 
16825 efrain 24713
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24714
  content: "";
24715
  width: 5px;
24716
  height: 5px;
24717
  border-radius: 50%;
24718
  background: #7987a1;
24719
  position: absolute;
24720
  top: 5px;
24721
  left: 6px;
24722
  visibility: visible;
24723
}
16848 stevensc 24724
 
16825 efrain 24725
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24726
  display: none;
24727
}
24728
 
24729
@media (max-width: 991px) {
16848 stevensc 24730
 
24731
  .sidebar-open .main-wrapper::before,
24732
  .settings-open .main-wrapper::before {
16825 efrain 24733
    content: "";
24734
    width: 100vw;
24735
    background: rgba(0, 0, 0, 0.3);
24736
    position: fixed;
24737
    top: 0;
24738
    bottom: 0;
24739
    right: 0;
24740
    z-index: 99;
24741
    -webkit-transition: all 3s ease;
24742
    transition: all 3s ease;
24743
    z-index: 980;
24744
  }
24745
}
24746
 
24747
a.badge:hover {
24748
  color: #fff;
24749
}
24750
 
24751
.alert-primary {
24752
  background-color: rgba(101, 113, 255, 0.1);
24753
  color: #4c59ff;
24754
  border-color: rgba(101, 113, 255, 0.2);
24755
}
16848 stevensc 24756
 
16825 efrain 24757
.alert-primary .alert-link {
24758
  color: #4c59ff;
24759
}
16848 stevensc 24760
 
16825 efrain 24761
.alert-primary svg {
24762
  width: 19px;
24763
  height: 19px;
24764
  margin-right: 0.5rem;
24765
}
16848 stevensc 24766
 
16825 efrain 24767
.alert-primary i {
24768
  font-size: 19px;
24769
  margin-right: 0.5rem;
24770
}
24771
 
24772
.alert-fill-primary {
24773
  --bs-alert-color: #fff;
24774
  --bs-alert-bg: #6571ff;
24775
  --bs-alert-border-color: #6571ff;
24776
}
16848 stevensc 24777
 
16825 efrain 24778
.alert-fill-primary .alert-link {
24779
  color: #cccccc;
24780
}
16848 stevensc 24781
 
16825 efrain 24782
.alert-fill-primary.alert-fill-light {
24783
  color: #7987a1;
24784
}
24785
 
24786
.alert-secondary {
24787
  background-color: rgba(121, 135, 161, 0.1);
24788
  color: #6a7a96;
24789
  border-color: rgba(121, 135, 161, 0.2);
24790
}
16848 stevensc 24791
 
16825 efrain 24792
.alert-secondary .alert-link {
24793
  color: #6a7a96;
24794
}
16848 stevensc 24795
 
16825 efrain 24796
.alert-secondary svg {
24797
  width: 19px;
24798
  height: 19px;
24799
  margin-right: 0.5rem;
24800
}
16848 stevensc 24801
 
16825 efrain 24802
.alert-secondary i {
24803
  font-size: 19px;
24804
  margin-right: 0.5rem;
24805
}
24806
 
24807
.alert-fill-secondary {
24808
  --bs-alert-color: #fff;
24809
  --bs-alert-bg: #7987a1;
24810
  --bs-alert-border-color: #7987a1;
24811
}
16848 stevensc 24812
 
16825 efrain 24813
.alert-fill-secondary .alert-link {
24814
  color: #cccccc;
24815
}
16848 stevensc 24816
 
16825 efrain 24817
.alert-fill-secondary.alert-fill-light {
24818
  color: #7987a1;
24819
}
24820
 
24821
.alert-success {
24822
  background-color: rgba(5, 163, 74, 0.1);
24823
  color: #048a3f;
24824
  border-color: rgba(5, 163, 74, 0.2);
24825
}
16848 stevensc 24826
 
16825 efrain 24827
.alert-success .alert-link {
24828
  color: #048a3f;
24829
}
16848 stevensc 24830
 
16825 efrain 24831
.alert-success svg {
24832
  width: 19px;
24833
  height: 19px;
24834
  margin-right: 0.5rem;
24835
}
16848 stevensc 24836
 
16825 efrain 24837
.alert-success i {
24838
  font-size: 19px;
24839
  margin-right: 0.5rem;
24840
}
24841
 
24842
.alert-fill-success {
24843
  --bs-alert-color: #fff;
24844
  --bs-alert-bg: #05a34a;
24845
  --bs-alert-border-color: #05a34a;
24846
}
16848 stevensc 24847
 
16825 efrain 24848
.alert-fill-success .alert-link {
24849
  color: #cccccc;
24850
}
16848 stevensc 24851
 
16825 efrain 24852
.alert-fill-success.alert-fill-light {
24853
  color: #7987a1;
24854
}
24855
 
24856
.alert-info {
24857
  background-color: rgba(102, 209, 209, 0.1);
24858
  color: #52cbcb;
24859
  border-color: rgba(102, 209, 209, 0.2);
24860
}
16848 stevensc 24861
 
16825 efrain 24862
.alert-info .alert-link {
24863
  color: #52cbcb;
24864
}
16848 stevensc 24865
 
16825 efrain 24866
.alert-info svg {
24867
  width: 19px;
24868
  height: 19px;
24869
  margin-right: 0.5rem;
24870
}
16848 stevensc 24871
 
16825 efrain 24872
.alert-info i {
24873
  font-size: 19px;
24874
  margin-right: 0.5rem;
24875
}
24876
 
24877
.alert-fill-info {
24878
  --bs-alert-color: #fff;
24879
  --bs-alert-bg: #66d1d1;
24880
  --bs-alert-border-color: #66d1d1;
24881
}
16848 stevensc 24882
 
16825 efrain 24883
.alert-fill-info .alert-link {
24884
  color: #cccccc;
24885
}
16848 stevensc 24886
 
16825 efrain 24887
.alert-fill-info.alert-fill-light {
24888
  color: #7987a1;
24889
}
24890
 
24891
.alert-warning {
24892
  background-color: rgba(251, 188, 6, 0.1);
24893
  color: #e4aa04;
24894
  border-color: rgba(251, 188, 6, 0.2);
24895
}
16848 stevensc 24896
 
16825 efrain 24897
.alert-warning .alert-link {
24898
  color: #e4aa04;
24899
}
16848 stevensc 24900
 
16825 efrain 24901
.alert-warning svg {
24902
  width: 19px;
24903
  height: 19px;
24904
  margin-right: 0.5rem;
24905
}
16848 stevensc 24906
 
16825 efrain 24907
.alert-warning i {
24908
  font-size: 19px;
24909
  margin-right: 0.5rem;
24910
}
24911
 
24912
.alert-fill-warning {
24913
  --bs-alert-color: #fff;
24914
  --bs-alert-bg: #fbbc06;
24915
  --bs-alert-border-color: #fbbc06;
24916
}
16848 stevensc 24917
 
16825 efrain 24918
.alert-fill-warning .alert-link {
24919
  color: #cccccc;
24920
}
16848 stevensc 24921
 
16825 efrain 24922
.alert-fill-warning.alert-fill-light {
24923
  color: #7987a1;
24924
}
24925
 
24926
.alert-danger {
24927
  background-color: rgba(255, 51, 102, 0.1);
24928
  color: #ff1a53;
24929
  border-color: rgba(255, 51, 102, 0.2);
24930
}
16848 stevensc 24931
 
16825 efrain 24932
.alert-danger .alert-link {
24933
  color: #ff1a53;
24934
}
16848 stevensc 24935
 
16825 efrain 24936
.alert-danger svg {
24937
  width: 19px;
24938
  height: 19px;
24939
  margin-right: 0.5rem;
24940
}
16848 stevensc 24941
 
16825 efrain 24942
.alert-danger i {
24943
  font-size: 19px;
24944
  margin-right: 0.5rem;
24945
}
24946
 
24947
.alert-fill-danger {
24948
  --bs-alert-color: #fff;
24949
  --bs-alert-bg: #ff3366;
24950
  --bs-alert-border-color: #ff3366;
24951
}
16848 stevensc 24952
 
16825 efrain 24953
.alert-fill-danger .alert-link {
24954
  color: #cccccc;
24955
}
16848 stevensc 24956
 
16825 efrain 24957
.alert-fill-danger.alert-fill-light {
24958
  color: #7987a1;
24959
}
24960
 
24961
.alert-light {
24962
  background-color: rgba(233, 236, 239, 0.1);
24963
  color: #dadfe4;
24964
  border-color: rgba(233, 236, 239, 0.2);
24965
}
16848 stevensc 24966
 
16825 efrain 24967
.alert-light .alert-link {
24968
  color: #dadfe4;
24969
}
16848 stevensc 24970
 
16825 efrain 24971
.alert-light svg {
24972
  width: 19px;
24973
  height: 19px;
24974
  margin-right: 0.5rem;
24975
}
16848 stevensc 24976
 
16825 efrain 24977
.alert-light i {
24978
  font-size: 19px;
24979
  margin-right: 0.5rem;
24980
}
24981
 
24982
.alert-fill-light {
24983
  --bs-alert-color: #fff;
24984
  --bs-alert-bg: #e9ecef;
24985
  --bs-alert-border-color: #e9ecef;
24986
}
16848 stevensc 24987
 
16825 efrain 24988
.alert-fill-light .alert-link {
24989
  color: #cccccc;
24990
}
16848 stevensc 24991
 
16825 efrain 24992
.alert-fill-light.alert-fill-light {
24993
  color: #7987a1;
24994
}
24995
 
24996
.alert-dark {
24997
  background-color: rgba(6, 12, 23, 0.1);
24998
  color: #010103;
24999
  border-color: rgba(6, 12, 23, 0.2);
25000
}
16848 stevensc 25001
 
16825 efrain 25002
.alert-dark .alert-link {
25003
  color: #010103;
25004
}
16848 stevensc 25005
 
16825 efrain 25006
.alert-dark svg {
25007
  width: 19px;
25008
  height: 19px;
25009
  margin-right: 0.5rem;
25010
}
16848 stevensc 25011
 
16825 efrain 25012
.alert-dark i {
25013
  font-size: 19px;
25014
  margin-right: 0.5rem;
25015
}
25016
 
25017
.alert-fill-dark {
25018
  --bs-alert-color: #fff;
25019
  --bs-alert-bg: #060c17;
25020
  --bs-alert-border-color: #060c17;
25021
}
16848 stevensc 25022
 
16825 efrain 25023
.alert-fill-dark .alert-link {
25024
  color: #cccccc;
25025
}
16848 stevensc 25026
 
16825 efrain 25027
.alert-fill-dark.alert-fill-light {
25028
  color: #7987a1;
25029
}
25030
 
16848 stevensc 25031
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25032
  content: "-" !important;
25033
}
16848 stevensc 25034
 
25035
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25036
  content: "•" !important;
25037
}
16848 stevensc 25038
 
25039
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25040
  content: ">" !important;
25041
}
25042
 
25043
/* Buttons */
16848 stevensc 25044
.wizard>.actions a i,
25045
.wizard>.actions a:active i,
25046
.wizard>.actions a:hover i,
25047
div.tox .tox-button i,
25048
.swal2-popup .swal2-actions button i,
25049
.fc .fc-button-primary i {
16825 efrain 25050
  font-size: 1rem;
25051
}
16848 stevensc 25052
 
25053
.btn.btn-rounded,
25054
.wizard>.actions a.btn-rounded,
25055
div.tox .btn-rounded.tox-button,
25056
.swal2-popup .swal2-actions button.btn-rounded,
25057
.fc .btn-rounded.fc-button-primary {
16825 efrain 25058
  border-radius: 50px;
25059
}
16848 stevensc 25060
 
25061
.btn.btn-xs,
25062
.wizard>.actions a.btn-xs,
25063
div.tox .btn-xs.tox-button,
25064
.swal2-popup .swal2-actions button.btn-xs,
25065
.fc .btn-xs.fc-button-primary {
16825 efrain 25066
  padding: 0.313rem 0.8rem;
25067
  font-size: 0.75rem;
25068
}
16848 stevensc 25069
 
25070
.btn.btn-icon,
25071
.wizard>.actions a.btn-icon,
25072
div.tox .btn-icon.tox-button,
25073
.swal2-popup .swal2-actions button.btn-icon,
25074
.fc .btn-icon.fc-button-primary {
16825 efrain 25075
  width: 38px;
25076
  height: 38px;
25077
  padding: 0;
25078
  display: inline-flex;
25079
  align-items: center;
25080
  justify-content: center;
25081
}
16848 stevensc 25082
 
25083
.btn.btn-icon svg,
25084
.wizard>.actions a.btn-icon svg,
25085
div.tox .btn-icon.tox-button svg,
25086
.swal2-popup .swal2-actions button.btn-icon svg,
25087
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25088
  height: 18px;
25089
}
16848 stevensc 25090
 
25091
.btn.btn-icon.btn-xs,
25092
.wizard>.actions a.btn-icon.btn-xs,
25093
div.tox .btn-icon.btn-xs.tox-button,
25094
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25095
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25096
  width: 30px;
25097
  height: 30px;
25098
}
16848 stevensc 25099
 
25100
.btn.btn-icon.btn-xs svg,
25101
.wizard>.actions a.btn-icon.btn-xs svg,
25102
div.tox .btn-icon.btn-xs.tox-button svg,
25103
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25104
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25105
  height: 14px;
25106
}
16848 stevensc 25107
 
25108
.btn.btn-icon.btn-sm,
25109
.wizard>.actions a.btn-icon.btn-sm,
25110
div.tox .btn-icon.btn-sm.tox-button,
25111
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25112
.fc .btn-icon.fc-button-primary,
25113
.btn-group-sm>.btn.btn-icon,
25114
.wizard>.actions .btn-group-sm>a.btn-icon,
25115
div.tox .btn-group-sm>.btn-icon.tox-button,
25116
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25117
  width: 36px;
25118
  height: 36px;
25119
}
16848 stevensc 25120
 
25121
.btn.btn-icon.btn-sm svg,
25122
.wizard>.actions a.btn-icon.btn-sm svg,
25123
div.tox .btn-icon.btn-sm.tox-button svg,
25124
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25125
.fc .btn-icon.fc-button-primary svg,
25126
.btn-group-sm>.btn.btn-icon svg,
25127
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25128
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25129
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25130
  height: 15px;
25131
}
16848 stevensc 25132
 
25133
.btn.btn-icon.btn-lg,
25134
.wizard>.actions a.btn-icon.btn-lg,
25135
div.tox .btn-icon.btn-lg.tox-button,
25136
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25137
.fc .btn-icon.btn-lg.fc-button-primary,
25138
.btn-group-lg>.btn.btn-icon,
25139
.wizard>.actions .btn-group-lg>a.btn-icon,
25140
div.tox .btn-group-lg>.btn-icon.tox-button,
25141
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25142
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25143
  width: 42px;
25144
  height: 42px;
25145
}
16848 stevensc 25146
 
25147
.btn.btn-icon.btn-lg svg,
25148
.wizard>.actions a.btn-icon.btn-lg svg,
25149
div.tox .btn-icon.btn-lg.tox-button svg,
25150
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25151
.fc .btn-icon.btn-lg.fc-button-primary svg,
25152
.btn-group-lg>.btn.btn-icon svg,
25153
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25154
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25155
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25156
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25157
  height: 18px;
25158
}
16848 stevensc 25159
 
25160
.btn.btn-icon-text .btn-icon-prepend,
25161
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25162
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25163
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25164
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25165
  margin-right: 0.5rem;
25166
}
16848 stevensc 25167
 
25168
.btn.btn-icon-text .btn-icon-append,
25169
.wizard>.actions a.btn-icon-text .btn-icon-append,
25170
div.tox .btn-icon-text.tox-button .btn-icon-append,
25171
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25172
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25173
  margin-left: 0.5rem;
25174
}
16848 stevensc 25175
 
25176
.btn.btn-icon-text .btn-icon-prepend,
25177
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25178
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25179
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25180
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25181
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25182
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25183
div.tox .btn-icon-text.tox-button .btn-icon-append,
25184
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25185
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25186
  width: 18px;
25187
  height: 18px;
25188
}
16848 stevensc 25189
 
25190
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25191
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25192
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25193
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25194
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25195
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25196
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25197
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25198
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25199
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25200
  width: 14px;
25201
  height: 14px;
25202
}
16848 stevensc 25203
 
25204
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25205
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25206
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25207
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25208
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25209
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25210
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25211
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25212
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25213
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25214
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25215
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25216
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25217
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25218
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25219
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25220
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25221
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25222
  width: 15px;
25223
  height: 15px;
25224
}
16848 stevensc 25225
 
25226
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25227
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25228
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25229
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25230
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25231
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25232
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25233
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25234
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25235
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25236
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25237
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25238
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25239
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25240
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25241
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25242
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25243
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25244
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25245
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25246
  width: 18px;
25247
  height: 18px;
25248
}
25249
 
25250
.btn-facebook {
25251
  background: #3b5998;
25252
  color: #fff;
25253
}
16848 stevensc 25254
 
25255
.btn-facebook:hover,
25256
.btn-facebook:focus {
16825 efrain 25257
  background: #2d4373;
25258
  color: #fff;
25259
}
16848 stevensc 25260
 
16825 efrain 25261
.btn-facebook.btn-social-icon-text {
25262
  padding: 0 1.5rem 0 0;
25263
  background: #4c70ba;
25264
}
16848 stevensc 25265
 
16825 efrain 25266
.btn-facebook.btn-social-icon-text i {
25267
  background: #3b5998;
25268
  padding: 0.75rem;
25269
  display: inline-block;
25270
  margin-right: 1.5rem;
25271
}
25272
 
25273
.btn-outline-facebook {
25274
  border: 1px solid #3b5998;
25275
  color: #3b5998;
25276
}
16848 stevensc 25277
 
16825 efrain 25278
.btn-outline-facebook:hover {
25279
  background: #3b5998;
25280
  color: #fff;
25281
}
25282
 
25283
.btn-twitter {
25284
  background: #1da1f2;
25285
  color: #fff;
25286
}
16848 stevensc 25287
 
25288
.btn-twitter:hover,
25289
.btn-twitter:focus {
16825 efrain 25290
  background: #0c85d0;
25291
  color: #fff;
25292
}
16848 stevensc 25293
 
16825 efrain 25294
.btn-twitter.btn-social-icon-text {
25295
  padding: 0 1.5rem 0 0;
25296
  background: #4db5f5;
25297
}
16848 stevensc 25298
 
16825 efrain 25299
.btn-twitter.btn-social-icon-text i {
25300
  background: #1da1f2;
25301
  padding: 0.75rem;
25302
  display: inline-block;
25303
  margin-right: 1.5rem;
25304
}
25305
 
25306
.btn-outline-twitter {
25307
  border: 1px solid #1da1f2;
25308
  color: #1da1f2;
25309
}
16848 stevensc 25310
 
16825 efrain 25311
.btn-outline-twitter:hover {
25312
  background: #1da1f2;
25313
  color: #fff;
25314
}
25315
 
25316
.btn-google {
25317
  background: #dc4e41;
25318
  color: #fff;
25319
}
16848 stevensc 25320
 
25321
.btn-google:hover,
25322
.btn-google:focus {
16825 efrain 25323
  background: #c63224;
25324
  color: #fff;
25325
}
16848 stevensc 25326
 
16825 efrain 25327
.btn-google.btn-social-icon-text {
25328
  padding: 0 1.5rem 0 0;
25329
  background: #e4766c;
25330
}
16848 stevensc 25331
 
16825 efrain 25332
.btn-google.btn-social-icon-text i {
25333
  background: #dc4e41;
25334
  padding: 0.75rem;
25335
  display: inline-block;
25336
  margin-right: 1.5rem;
25337
}
25338
 
25339
.btn-outline-google {
25340
  border: 1px solid #dc4e41;
25341
  color: #dc4e41;
25342
}
16848 stevensc 25343
 
16825 efrain 25344
.btn-outline-google:hover {
25345
  background: #dc4e41;
25346
  color: #fff;
25347
}
25348
 
25349
.btn-youtube {
25350
  background: #f00;
25351
  color: #fff;
25352
}
16848 stevensc 25353
 
25354
.btn-youtube:hover,
25355
.btn-youtube:focus {
16825 efrain 25356
  background: #cc0000;
25357
  color: #fff;
25358
}
16848 stevensc 25359
 
16825 efrain 25360
.btn-youtube.btn-social-icon-text {
25361
  padding: 0 1.5rem 0 0;
25362
  background: #ff3333;
25363
}
16848 stevensc 25364
 
16825 efrain 25365
.btn-youtube.btn-social-icon-text i {
25366
  background: #f00;
25367
  padding: 0.75rem;
25368
  display: inline-block;
25369
  margin-right: 1.5rem;
25370
}
25371
 
25372
.btn-outline-youtube {
25373
  border: 1px solid #f00;
25374
  color: #f00;
25375
}
16848 stevensc 25376
 
16825 efrain 25377
.btn-outline-youtube:hover {
25378
  background: #f00;
25379
  color: #fff;
25380
}
25381
 
25382
.btn-vimeo {
25383
  background: #1ab7ea;
25384
  color: #fff;
25385
}
16848 stevensc 25386
 
25387
.btn-vimeo:hover,
25388
.btn-vimeo:focus {
16825 efrain 25389
  background: #1295bf;
25390
  color: #fff;
25391
}
16848 stevensc 25392
 
16825 efrain 25393
.btn-vimeo.btn-social-icon-text {
25394
  padding: 0 1.5rem 0 0;
25395
  background: #49c6ee;
25396
}
16848 stevensc 25397
 
16825 efrain 25398
.btn-vimeo.btn-social-icon-text i {
25399
  background: #1ab7ea;
25400
  padding: 0.75rem;
25401
  display: inline-block;
25402
  margin-right: 1.5rem;
25403
}
25404
 
25405
.btn-outline-vimeo {
25406
  border: 1px solid #1ab7ea;
25407
  color: #1ab7ea;
25408
}
16848 stevensc 25409
 
16825 efrain 25410
.btn-outline-vimeo:hover {
25411
  background: #1ab7ea;
25412
  color: #fff;
25413
}
25414
 
25415
.btn-dribbble {
25416
  background: #ea4c89;
25417
  color: #fff;
25418
}
16848 stevensc 25419
 
25420
.btn-dribbble:hover,
25421
.btn-dribbble:focus {
16825 efrain 25422
  background: #e51e6b;
25423
  color: #fff;
25424
}
16848 stevensc 25425
 
16825 efrain 25426
.btn-dribbble.btn-social-icon-text {
25427
  padding: 0 1.5rem 0 0;
25428
  background: #ef7aa7;
25429
}
16848 stevensc 25430
 
16825 efrain 25431
.btn-dribbble.btn-social-icon-text i {
25432
  background: #ea4c89;
25433
  padding: 0.75rem;
25434
  display: inline-block;
25435
  margin-right: 1.5rem;
25436
}
25437
 
25438
.btn-outline-dribbble {
25439
  border: 1px solid #ea4c89;
25440
  color: #ea4c89;
25441
}
16848 stevensc 25442
 
16825 efrain 25443
.btn-outline-dribbble:hover {
25444
  background: #ea4c89;
25445
  color: #fff;
25446
}
25447
 
25448
.btn-github {
25449
  background: #181717;
25450
  color: #fff;
25451
}
16848 stevensc 25452
 
25453
.btn-github:hover,
25454
.btn-github:focus {
16825 efrain 25455
  background: black;
25456
  color: #fff;
25457
}
16848 stevensc 25458
 
16825 efrain 25459
.btn-github.btn-social-icon-text {
25460
  padding: 0 1.5rem 0 0;
25461
  background: #323030;
25462
}
16848 stevensc 25463
 
16825 efrain 25464
.btn-github.btn-social-icon-text i {
25465
  background: #181717;
25466
  padding: 0.75rem;
25467
  display: inline-block;
25468
  margin-right: 1.5rem;
25469
}
25470
 
25471
.btn-outline-github {
25472
  border: 1px solid #181717;
25473
  color: #181717;
25474
}
16848 stevensc 25475
 
16825 efrain 25476
.btn-outline-github:hover {
25477
  background: #181717;
25478
  color: #fff;
25479
}
25480
 
25481
.btn-instagram {
25482
  background: #e4405f;
25483
  color: #fff;
25484
}
16848 stevensc 25485
 
25486
.btn-instagram:hover,
25487
.btn-instagram:focus {
16825 efrain 25488
  background: #d31e40;
25489
  color: #fff;
25490
}
16848 stevensc 25491
 
16825 efrain 25492
.btn-instagram.btn-social-icon-text {
25493
  padding: 0 1.5rem 0 0;
25494
  background: #ea6d84;
25495
}
16848 stevensc 25496
 
16825 efrain 25497
.btn-instagram.btn-social-icon-text i {
25498
  background: #e4405f;
25499
  padding: 0.75rem;
25500
  display: inline-block;
25501
  margin-right: 1.5rem;
25502
}
25503
 
25504
.btn-outline-instagram {
25505
  border: 1px solid #e4405f;
25506
  color: #e4405f;
25507
}
16848 stevensc 25508
 
16825 efrain 25509
.btn-outline-instagram:hover {
25510
  background: #e4405f;
25511
  color: #fff;
25512
}
25513
 
25514
.btn-pinterest {
25515
  background: #bd081c;
25516
  color: #fff;
25517
}
16848 stevensc 25518
 
25519
.btn-pinterest:hover,
25520
.btn-pinterest:focus {
16825 efrain 25521
  background: #8c0615;
25522
  color: #fff;
25523
}
16848 stevensc 25524
 
16825 efrain 25525
.btn-pinterest.btn-social-icon-text {
25526
  padding: 0 1.5rem 0 0;
25527
  background: #ee0a23;
25528
}
16848 stevensc 25529
 
16825 efrain 25530
.btn-pinterest.btn-social-icon-text i {
25531
  background: #bd081c;
25532
  padding: 0.75rem;
25533
  display: inline-block;
25534
  margin-right: 1.5rem;
25535
}
25536
 
25537
.btn-outline-pinterest {
25538
  border: 1px solid #bd081c;
25539
  color: #bd081c;
25540
}
16848 stevensc 25541
 
16825 efrain 25542
.btn-outline-pinterest:hover {
25543
  background: #bd081c;
25544
  color: #fff;
25545
}
25546
 
25547
.btn-flickr {
25548
  background: #0063dc;
25549
  color: #fff;
25550
}
16848 stevensc 25551
 
25552
.btn-flickr:hover,
25553
.btn-flickr:focus {
16825 efrain 25554
  background: #004ca9;
25555
  color: #fff;
25556
}
16848 stevensc 25557
 
16825 efrain 25558
.btn-flickr.btn-social-icon-text {
25559
  padding: 0 1.5rem 0 0;
25560
  background: #107cff;
25561
}
16848 stevensc 25562
 
16825 efrain 25563
.btn-flickr.btn-social-icon-text i {
25564
  background: #0063dc;
25565
  padding: 0.75rem;
25566
  display: inline-block;
25567
  margin-right: 1.5rem;
25568
}
25569
 
25570
.btn-outline-flickr {
25571
  border: 1px solid #0063dc;
25572
  color: #0063dc;
25573
}
16848 stevensc 25574
 
16825 efrain 25575
.btn-outline-flickr:hover {
25576
  background: #0063dc;
25577
  color: #fff;
25578
}
25579
 
25580
.btn-bitbucket {
25581
  background: #0052cc;
25582
  color: #fff;
25583
}
16848 stevensc 25584
 
25585
.btn-bitbucket:hover,
25586
.btn-bitbucket:focus {
16825 efrain 25587
  background: #003e99;
25588
  color: #fff;
25589
}
16848 stevensc 25590
 
16825 efrain 25591
.btn-bitbucket.btn-social-icon-text {
25592
  padding: 0 1.5rem 0 0;
25593
  background: #0067ff;
25594
}
16848 stevensc 25595
 
16825 efrain 25596
.btn-bitbucket.btn-social-icon-text i {
25597
  background: #0052cc;
25598
  padding: 0.75rem;
25599
  display: inline-block;
25600
  margin-right: 1.5rem;
25601
}
25602
 
25603
.btn-outline-bitbucket {
25604
  border: 1px solid #0052cc;
25605
  color: #0052cc;
25606
}
16848 stevensc 25607
 
16825 efrain 25608
.btn-outline-bitbucket:hover {
25609
  background: #0052cc;
25610
  color: #fff;
25611
}
25612
 
25613
.btn-linkedin {
25614
  background: #0077b5;
25615
  color: #fff;
25616
}
16848 stevensc 25617
 
25618
.btn-linkedin:hover,
25619
.btn-linkedin:focus {
16825 efrain 25620
  background: #005582;
25621
  color: #fff;
25622
}
16848 stevensc 25623
 
16825 efrain 25624
.btn-linkedin.btn-social-icon-text {
25625
  padding: 0 1.5rem 0 0;
25626
  background: #0099e8;
25627
}
16848 stevensc 25628
 
16825 efrain 25629
.btn-linkedin.btn-social-icon-text i {
25630
  background: #0077b5;
25631
  padding: 0.75rem;
25632
  display: inline-block;
25633
  margin-right: 1.5rem;
25634
}
25635
 
25636
.btn-outline-linkedin {
25637
  border: 1px solid #0077b5;
25638
  color: #0077b5;
25639
}
16848 stevensc 25640
 
16825 efrain 25641
.btn-outline-linkedin:hover {
25642
  background: #0077b5;
25643
  color: #fff;
25644
}
25645
 
25646
.btn-inverse-primary {
25647
  background-color: rgba(101, 113, 255, 0.2);
25648
  background-image: none;
25649
  border-color: rgba(101, 113, 255, 0);
25650
}
16848 stevensc 25651
 
16825 efrain 25652
.btn-inverse-primary:not(.btn-inverse-light) {
25653
  color: #6571ff;
25654
}
16848 stevensc 25655
 
25656
.btn-inverse-primary:hover,
25657
.btn-inverse-primary.active,
25658
.btn-inverse-primary:active,
25659
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25660
  background-color: rgba(101, 113, 255, 0.3);
25661
  border-color: rgba(101, 113, 255, 0);
25662
}
16848 stevensc 25663
 
25664
.btn-inverse-primary.focus,
25665
.btn-inverse-primary:focus {
16825 efrain 25666
  background-color: rgba(101, 113, 255, 0.3);
25667
  border-color: transparent;
25668
}
16848 stevensc 25669
 
25670
.btn-inverse-primary.disabled,
25671
.btn-inverse-primary:disabled {
16825 efrain 25672
  color: #6571ff;
25673
  background-color: transparent;
25674
}
25675
 
25676
.btn-inverse-secondary {
25677
  background-color: rgba(121, 135, 161, 0.2);
25678
  background-image: none;
25679
  border-color: rgba(121, 135, 161, 0);
25680
}
16848 stevensc 25681
 
16825 efrain 25682
.btn-inverse-secondary:not(.btn-inverse-light) {
25683
  color: #7987a1;
25684
}
16848 stevensc 25685
 
25686
.btn-inverse-secondary:hover,
25687
.btn-inverse-secondary.active,
25688
.btn-inverse-secondary:active,
25689
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25690
  background-color: rgba(121, 135, 161, 0.3);
25691
  border-color: rgba(121, 135, 161, 0);
25692
}
16848 stevensc 25693
 
25694
.btn-inverse-secondary.focus,
25695
.btn-inverse-secondary:focus {
16825 efrain 25696
  background-color: rgba(121, 135, 161, 0.3);
25697
  border-color: transparent;
25698
}
16848 stevensc 25699
 
25700
.btn-inverse-secondary.disabled,
25701
.btn-inverse-secondary:disabled {
16825 efrain 25702
  color: #7987a1;
25703
  background-color: transparent;
25704
}
25705
 
25706
.btn-inverse-success {
25707
  background-color: rgba(5, 163, 74, 0.2);
25708
  background-image: none;
25709
  border-color: rgba(5, 163, 74, 0);
25710
}
16848 stevensc 25711
 
16825 efrain 25712
.btn-inverse-success:not(.btn-inverse-light) {
25713
  color: #05a34a;
25714
}
16848 stevensc 25715
 
25716
.btn-inverse-success:hover,
25717
.btn-inverse-success.active,
25718
.btn-inverse-success:active,
25719
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25720
  background-color: rgba(5, 163, 74, 0.3);
25721
  border-color: rgba(5, 163, 74, 0);
25722
}
16848 stevensc 25723
 
25724
.btn-inverse-success.focus,
25725
.btn-inverse-success:focus {
16825 efrain 25726
  background-color: rgba(5, 163, 74, 0.3);
25727
  border-color: transparent;
25728
}
16848 stevensc 25729
 
25730
.btn-inverse-success.disabled,
25731
.btn-inverse-success:disabled {
16825 efrain 25732
  color: #05a34a;
25733
  background-color: transparent;
25734
}
25735
 
25736
.btn-inverse-info {
25737
  background-color: rgba(102, 209, 209, 0.2);
25738
  background-image: none;
25739
  border-color: rgba(102, 209, 209, 0);
25740
}
16848 stevensc 25741
 
16825 efrain 25742
.btn-inverse-info:not(.btn-inverse-light) {
25743
  color: #66d1d1;
25744
}
16848 stevensc 25745
 
25746
.btn-inverse-info:hover,
25747
.btn-inverse-info.active,
25748
.btn-inverse-info:active,
25749
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25750
  background-color: rgba(102, 209, 209, 0.3);
25751
  border-color: rgba(102, 209, 209, 0);
25752
}
16848 stevensc 25753
 
25754
.btn-inverse-info.focus,
25755
.btn-inverse-info:focus {
16825 efrain 25756
  background-color: rgba(102, 209, 209, 0.3);
25757
  border-color: transparent;
25758
}
16848 stevensc 25759
 
25760
.btn-inverse-info.disabled,
25761
.btn-inverse-info:disabled {
16825 efrain 25762
  color: #66d1d1;
25763
  background-color: transparent;
25764
}
25765
 
25766
.btn-inverse-warning {
25767
  background-color: rgba(251, 188, 6, 0.2);
25768
  background-image: none;
25769
  border-color: rgba(251, 188, 6, 0);
25770
}
16848 stevensc 25771
 
16825 efrain 25772
.btn-inverse-warning:not(.btn-inverse-light) {
25773
  color: #fbbc06;
25774
}
16848 stevensc 25775
 
25776
.btn-inverse-warning:hover,
25777
.btn-inverse-warning.active,
25778
.btn-inverse-warning:active,
25779
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25780
  background-color: rgba(251, 188, 6, 0.3);
25781
  border-color: rgba(251, 188, 6, 0);
25782
}
16848 stevensc 25783
 
25784
.btn-inverse-warning.focus,
25785
.btn-inverse-warning:focus {
16825 efrain 25786
  background-color: rgba(251, 188, 6, 0.3);
25787
  border-color: transparent;
25788
}
16848 stevensc 25789
 
25790
.btn-inverse-warning.disabled,
25791
.btn-inverse-warning:disabled {
16825 efrain 25792
  color: #fbbc06;
25793
  background-color: transparent;
25794
}
25795
 
25796
.btn-inverse-danger {
25797
  background-color: rgba(255, 51, 102, 0.2);
25798
  background-image: none;
25799
  border-color: rgba(255, 51, 102, 0);
25800
}
16848 stevensc 25801
 
16825 efrain 25802
.btn-inverse-danger:not(.btn-inverse-light) {
25803
  color: #ff3366;
25804
}
16848 stevensc 25805
 
25806
.btn-inverse-danger:hover,
25807
.btn-inverse-danger.active,
25808
.btn-inverse-danger:active,
25809
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25810
  background-color: rgba(255, 51, 102, 0.3);
25811
  border-color: rgba(255, 51, 102, 0);
25812
}
16848 stevensc 25813
 
25814
.btn-inverse-danger.focus,
25815
.btn-inverse-danger:focus {
16825 efrain 25816
  background-color: rgba(255, 51, 102, 0.3);
25817
  border-color: transparent;
25818
}
16848 stevensc 25819
 
25820
.btn-inverse-danger.disabled,
25821
.btn-inverse-danger:disabled {
16825 efrain 25822
  color: #ff3366;
25823
  background-color: transparent;
25824
}
25825
 
25826
.btn-inverse-light {
25827
  background-color: rgba(233, 236, 239, 0.2);
25828
  background-image: none;
25829
  border-color: rgba(233, 236, 239, 0);
25830
}
16848 stevensc 25831
 
16825 efrain 25832
.btn-inverse-light:not(.btn-inverse-light) {
25833
  color: #e9ecef;
25834
}
16848 stevensc 25835
 
25836
.btn-inverse-light:hover,
25837
.btn-inverse-light.active,
25838
.btn-inverse-light:active,
25839
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25840
  background-color: rgba(233, 236, 239, 0.3);
25841
  border-color: rgba(233, 236, 239, 0);
25842
}
16848 stevensc 25843
 
25844
.btn-inverse-light.focus,
25845
.btn-inverse-light:focus {
16825 efrain 25846
  background-color: rgba(233, 236, 239, 0.3);
25847
  border-color: transparent;
25848
}
16848 stevensc 25849
 
25850
.btn-inverse-light.disabled,
25851
.btn-inverse-light:disabled {
16825 efrain 25852
  color: #e9ecef;
25853
  background-color: transparent;
25854
}
25855
 
25856
.btn-inverse-dark {
25857
  background-color: rgba(6, 12, 23, 0.2);
25858
  background-image: none;
25859
  border-color: rgba(6, 12, 23, 0);
25860
}
16848 stevensc 25861
 
16825 efrain 25862
.btn-inverse-dark:not(.btn-inverse-light) {
25863
  color: #060c17;
25864
}
16848 stevensc 25865
 
25866
.btn-inverse-dark:hover,
25867
.btn-inverse-dark.active,
25868
.btn-inverse-dark:active,
25869
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25870
  background-color: rgba(6, 12, 23, 0.3);
25871
  border-color: rgba(6, 12, 23, 0);
25872
}
16848 stevensc 25873
 
25874
.btn-inverse-dark.focus,
25875
.btn-inverse-dark:focus {
16825 efrain 25876
  background-color: rgba(6, 12, 23, 0.3);
25877
  border-color: transparent;
25878
}
16848 stevensc 25879
 
25880
.btn-inverse-dark.disabled,
25881
.btn-inverse-dark:disabled {
16825 efrain 25882
  color: #060c17;
25883
  background-color: transparent;
25884
}
25885
 
25886
.card {
25887
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25888
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25889
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25890
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25891
}
16848 stevensc 25892
 
25893
.card .card-body+.card-body {
16825 efrain 25894
  padding-top: 1rem;
25895
}
16848 stevensc 25896
 
16825 efrain 25897
.card .card-title {
25898
  text-transform: uppercase;
25899
  font-size: 0.875rem;
25900
  font-weight: 500;
25901
}
25902
 
25903
.card-group {
25904
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25905
}
16848 stevensc 25906
 
16825 efrain 25907
.card-group .card {
25908
  box-shadow: none;
25909
}
25910
 
25911
.dropdown .dropdown-toggle:after,
25912
.btn-group .dropdown-toggle:after {
25913
  border-top: 0;
25914
  border-right: 0;
25915
  border-left: 0;
25916
  border-bottom: 0;
25917
  font: normal normal normal 24px/1 "feather";
25918
  content: "\e842";
25919
  width: auto;
25920
  height: auto;
25921
  vertical-align: middle;
25922
  line-height: 0.625rem;
25923
  font-size: 0.875rem;
25924
}
16848 stevensc 25925
 
16825 efrain 25926
.dropdown.dropup .dropdown-toggle::after,
25927
.btn-group.dropup .dropdown-toggle::after {
25928
  content: "\e845";
25929
}
16848 stevensc 25930
 
16825 efrain 25931
.dropdown.dropstart .dropdown-toggle::before,
25932
.btn-group.dropstart .dropdown-toggle::before {
25933
  border: 0;
25934
  font: normal normal normal 24px/1 "feather";
25935
  content: "\e843";
25936
  width: auto;
25937
  height: auto;
25938
  vertical-align: middle;
25939
  line-height: 0.625rem;
25940
  font-size: 0.875rem;
25941
}
16848 stevensc 25942
 
16825 efrain 25943
.dropdown.dropend .dropdown-toggle::after,
25944
.btn-group.dropend .dropdown-toggle::after {
25945
  content: "\e844";
25946
}
25947
 
16848 stevensc 25948
.dropdown-menu,
25949
.tt-menu {
16825 efrain 25950
  padding: 0.35rem;
25951
  margin-top: 0;
25952
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25953
}
25954
 
16848 stevensc 25955
.dropdown-item,
25956
.tt-menu .tt-suggestion {
16825 efrain 25957
  font-size: 0.812rem;
25958
  padding: 0.25rem 0.875rem;
25959
  border-radius: 2px;
25960
}
16848 stevensc 25961
 
25962
.dropdown-item i,
25963
.tt-menu .tt-suggestion i,
25964
.dropdown-item svg,
25965
.tt-menu .tt-suggestion svg {
16825 efrain 25966
  color: #7987a1;
25967
}
16848 stevensc 25968
 
25969
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25970
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25971
  background-color: rgba(101, 113, 255, 0.1);
25972
}
16848 stevensc 25973
 
25974
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25975
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25976
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25977
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25978
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25979
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25980
  color: #6571ff;
25981
}
16848 stevensc 25982
 
25983
.dropdown-item:active i,
25984
.tt-menu .tt-suggestion:active i,
25985
.dropdown-item:active svg,
25986
.tt-menu .tt-suggestion:active svg,
25987
.dropdown-item.active i,
25988
.tt-menu .active.tt-suggestion i,
25989
.dropdown-item.active svg,
25990
.tt-menu .active.tt-suggestion svg {
16825 efrain 25991
  color: #fff;
25992
}
25993
 
25994
.form-control-xs,
25995
.form-select-xs {
25996
  padding: 0.313rem 0.8rem;
25997
  font-size: 0.75rem;
25998
}
25999
 
16848 stevensc 26000
.form-control-xs+.input-group-text {
16825 efrain 26001
  padding-top: 0.313rem;
26002
  padding-bottom: 0.313rem;
26003
}
26004
 
26005
.form-check-input {
26006
  margin-top: 0.13em;
26007
}
26008
 
26009
.input-group-text svg {
26010
  width: 18px;
26011
  height: 18px;
26012
}
26013
 
26014
[type=tel],
26015
[type=url],
26016
[type=email],
26017
[type=number] {
26018
  direction: ltr;
26019
}
26020
 
26021
.icons-list {
26022
  border-left: 1px solid #e9ecef;
26023
  border-top: 1px solid #e9ecef;
26024
}
16848 stevensc 26025
 
26026
.icons-list>div {
16825 efrain 26027
  border-bottom: 1px solid #e9ecef;
26028
  border-right: 1px solid #e9ecef;
26029
  background: #f9fafb;
26030
  display: flex;
26031
  align-items: center;
26032
  padding: 15px 20px;
26033
  font-weight: 400;
26034
  transition: all 0.3s ease-in-out;
26035
}
16848 stevensc 26036
 
26037
.icons-list>div i {
16825 efrain 26038
  display: inline-block;
26039
  font-size: 20px;
26040
  text-align: left;
26041
  margin-right: 12px;
26042
  color: #7987a1;
26043
  transition: all 0.3s ease-in-out;
26044
}
16848 stevensc 26045
 
26046
.icons-list>div svg {
16825 efrain 26047
  width: 20px;
26048
  margin-right: 12px;
26049
  color: #7987a1;
26050
  transition: all 0.3s ease-in-out;
26051
}
16848 stevensc 26052
 
26053
.icons-list>div:hover {
16825 efrain 26054
  cursor: text;
26055
}
16848 stevensc 26056
 
26057
.icons-list>div:hover i,
26058
.icons-list>div:hover svg {
16825 efrain 26059
  transform: scale(1.3);
26060
  color: #6571ff;
26061
}
26062
 
26063
.nav.nav-tabs .nav-item .nav-link {
26064
  border-color: #e9ecef #e9ecef #dee2e6;
26065
  color: #000;
26066
  background-color: #f8f9fa;
26067
  cursor: pointer;
26068
}
16848 stevensc 26069
 
16825 efrain 26070
.nav.nav-tabs .nav-item .nav-link.active {
26071
  border-color: #dee2e6 #dee2e6 #fff;
26072
  color: #6571ff;
26073
  background: #fff;
26074
}
16848 stevensc 26075
 
16825 efrain 26076
.nav.nav-tabs .nav-item .nav-link.disabled {
26077
  background-color: transparent;
26078
  color: #7987a1;
26079
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26080
}
16848 stevensc 26081
 
16825 efrain 26082
.nav.nav-tabs.nav-tabs-vertical {
26083
  border-bottom: 0;
26084
}
16848 stevensc 26085
 
16825 efrain 26086
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26087
  width: 100%;
26088
  border: 1px solid transparent;
26089
  border-radius: 0;
26090
  border-color: #e9ecef #e9ecef #dee2e6;
26091
  color: #000;
26092
  background-color: #f8f9fa;
26093
}
16848 stevensc 26094
 
16825 efrain 26095
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26096
  border-radius: 0.25rem 0 0 0;
26097
}
16848 stevensc 26098
 
16825 efrain 26099
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26100
  border-radius: 0 0 0 0.25rem;
26101
}
16848 stevensc 26102
 
16825 efrain 26103
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26104
  background-color: #fff;
26105
  color: #6571ff;
26106
  border-right-color: transparent;
26107
}
16848 stevensc 26108
 
16825 efrain 26109
.nav.nav-tabs.nav-tabs-line .nav-link {
26110
  border: 0;
26111
  background-color: transparent;
26112
}
16848 stevensc 26113
 
16825 efrain 26114
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26115
  border-bottom: 2px solid #6571ff;
26116
}
26117
 
26118
.tab-content.tab-content-vertical {
26119
  height: 100%;
26120
}
26121
 
26122
.pagination .page-item .page-link svg {
26123
  width: 18px;
26124
  height: 18px;
26125
}
16848 stevensc 26126
 
16825 efrain 26127
.pagination.pagination-separated .page-item {
26128
  margin-left: 2px;
26129
  margin-right: 2px;
26130
}
16848 stevensc 26131
 
16825 efrain 26132
.pagination.pagination-separated .page-item:first-child {
26133
  margin-left: 0;
26134
}
16848 stevensc 26135
 
16825 efrain 26136
.pagination.pagination-separated .page-item:last-child {
26137
  margin-right: 0;
26138
}
16848 stevensc 26139
 
16825 efrain 26140
.pagination.pagination-rounded .page-item {
26141
  margin-right: 2px;
26142
  margin-left: 2px;
26143
}
16848 stevensc 26144
 
16825 efrain 26145
.pagination.pagination-rounded .page-item .page-link {
26146
  border-radius: 50px;
26147
}
26148
 
26149
.table {
26150
  margin-bottom: 0;
26151
}
16848 stevensc 26152
 
26153
.table> :not(:last-child)> :last-child>* {
16825 efrain 26154
  border-bottom-color: inherit;
26155
}
16848 stevensc 26156
 
16825 efrain 26157
.table thead th {
26158
  border-top: 0;
26159
  font-weight: 500;
26160
  font-size: 12px;
26161
  text-transform: uppercase;
26162
  color: #7987a1;
26163
}
16848 stevensc 26164
 
16825 efrain 26165
.table thead th i {
26166
  margin-left: 0.325rem;
26167
}
16848 stevensc 26168
 
16825 efrain 26169
.table th,
26170
.table td {
26171
  white-space: nowrap;
26172
}
16848 stevensc 26173
 
16825 efrain 26174
.table td img {
26175
  width: 36px;
26176
  height: 36px;
26177
  border-radius: 100%;
26178
}
26179
 
26180
.timeline {
26181
  border-left: 3px solid #6571ff;
26182
  border-bottom-right-radius: 0.25rem;
26183
  border-top-right-radius: 0.25rem;
26184
  background: rgba(101, 113, 255, 0.2);
26185
  margin: 0 auto;
26186
  position: relative;
26187
  padding: 50px;
26188
  list-style: none;
26189
  max-width: 40%;
26190
}
16848 stevensc 26191
 
16825 efrain 26192
@media (max-width: 767px) {
26193
  .timeline {
26194
    max-width: 98%;
26195
    padding: 25px;
26196
  }
26197
}
16848 stevensc 26198
 
16825 efrain 26199
.timeline .event {
26200
  border-bottom: 1px dashed #e9ecef;
26201
  padding-bottom: 25px;
26202
  margin-bottom: 25px;
26203
  position: relative;
26204
}
16848 stevensc 26205
 
16825 efrain 26206
@media (max-width: 767px) {
26207
  .timeline .event {
26208
    padding-top: 30px;
26209
  }
26210
}
16848 stevensc 26211
 
16825 efrain 26212
.timeline .event .title {
26213
  font-weight: 500;
26214
  font-size: 1rem;
26215
  margin-bottom: 10px;
26216
}
16848 stevensc 26217
 
16825 efrain 26218
.timeline .event:last-of-type {
26219
  padding-bottom: 0;
26220
  margin-bottom: 0;
26221
  border: none;
26222
}
16848 stevensc 26223
 
26224
.timeline .event:before,
26225
.timeline .event:after {
16825 efrain 26226
  position: absolute;
26227
  display: block;
26228
  top: 0;
26229
}
16848 stevensc 26230
 
16825 efrain 26231
.timeline .event:before {
26232
  left: -207px;
26233
  content: attr(data-date);
26234
  text-align: right;
26235
  font-weight: 500;
26236
  font-size: 0.9em;
26237
  min-width: 120px;
26238
}
16848 stevensc 26239
 
16825 efrain 26240
@media (max-width: 767px) {
26241
  .timeline .event:before {
26242
    left: 0px;
26243
    text-align: left;
26244
  }
26245
}
16848 stevensc 26246
 
16825 efrain 26247
.timeline .event:after {
26248
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26249
  box-shadow: 0 0 0 3px #6571ff;
26250
  left: -55.8px;
26251
  background: #fff;
26252
  border-radius: 50%;
26253
  height: 9px;
26254
  width: 9px;
26255
  content: "";
26256
  top: 5px;
26257
}
16848 stevensc 26258
 
16825 efrain 26259
@media (max-width: 767px) {
26260
  .timeline .event:after {
26261
    left: -31.8px;
26262
  }
26263
}
26264
 
26265
.chat-wrapper {
26266
  height: calc(100vh - 60px - 102px);
26267
}
16848 stevensc 26268
 
16825 efrain 26269
@media (max-width: 991px) {
26270
  .chat-wrapper {
26271
    min-height: 100%;
26272
  }
26273
}
16848 stevensc 26274
 
16825 efrain 26275
@media (max-width: 991px) {
26276
  .chat-wrapper {
26277
    height: 100%;
26278
  }
26279
}
16848 stevensc 26280
 
16825 efrain 26281
@media (min-width: 992px) {
26282
  .chat-wrapper .chat-aside {
26283
    padding-right: 23px;
26284
  }
26285
}
16848 stevensc 26286
 
16825 efrain 26287
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26288
  position: relative;
26289
  max-height: calc(100vh - 385px);
26290
}
16848 stevensc 26291
 
26292
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26293
  padding-top: 11px;
26294
  padding-bottom: 11px;
26295
}
16848 stevensc 26296
 
16825 efrain 26297
@media (max-width: 991px) {
26298
  .chat-wrapper .chat-content {
26299
    position: absolute;
26300
    background: #fff;
26301
    left: 0;
26302
    bottom: -1px;
26303
    top: 0;
26304
    right: 0;
26305
    display: none;
26306
  }
16848 stevensc 26307
 
16825 efrain 26308
  .chat-wrapper .chat-content.show {
26309
    display: block;
26310
  }
26311
}
16848 stevensc 26312
 
16825 efrain 26313
.chat-wrapper .chat-content .chat-header {
26314
  padding: 0 10px;
26315
}
16848 stevensc 26316
 
16825 efrain 26317
.chat-wrapper .chat-content .chat-body {
26318
  position: relative;
26319
  max-height: calc(100vh - 340px);
26320
  margin-top: 20px;
26321
  margin-bottom: 20px;
26322
}
16848 stevensc 26323
 
16825 efrain 26324
@media (max-width: 767px) {
26325
  .chat-wrapper .chat-content .chat-body {
26326
    max-height: calc(100vh - 315px);
26327
  }
26328
}
16848 stevensc 26329
 
16825 efrain 26330
@media (max-width: 991px) {
26331
  .chat-wrapper .chat-content .chat-body {
26332
    max-height: calc(100vh - 342px);
26333
  }
26334
}
16848 stevensc 26335
 
16825 efrain 26336
.chat-wrapper .chat-content .chat-body .messages {
26337
  padding: 0 10px;
26338
  list-style-type: none;
26339
}
16848 stevensc 26340
 
16825 efrain 26341
.chat-wrapper .chat-content .chat-body .messages .message-item {
26342
  display: flex;
26343
  max-width: 80%;
26344
  margin-bottom: 20px;
26345
}
16848 stevensc 26346
 
16825 efrain 26347
@media (max-width: 767px) {
26348
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26349
    max-width: 95%;
26350
  }
26351
}
16848 stevensc 26352
 
16825 efrain 26353
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26354
  position: relative;
26355
  padding: 7px 15px;
26356
  margin-bottom: 4px;
26357
  width: -webkit-fit-content;
26358
  width: -moz-fit-content;
26359
  width: fit-content;
26360
}
16848 stevensc 26361
 
16825 efrain 26362
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26363
  font-size: 12px;
26364
  color: #7987a1;
26365
}
16848 stevensc 26366
 
16825 efrain 26367
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26368
  order: 1;
26369
  margin-right: 15px;
26370
}
16848 stevensc 26371
 
16825 efrain 26372
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26373
  order: 2;
26374
}
16848 stevensc 26375
 
16825 efrain 26376
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26377
  background: rgba(101, 113, 255, 0.1);
26378
  border-radius: 0 5px 5px;
26379
}
16848 stevensc 26380
 
16825 efrain 26381
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26382
  content: "";
26383
  width: 0;
26384
  height: 0;
26385
  position: absolute;
26386
  left: -10px;
26387
  top: 0;
26388
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26389
  border-bottom: 5px solid transparent;
26390
  border-left: 5px solid transparent;
26391
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26392
}
16848 stevensc 26393
 
16825 efrain 26394
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26395
  margin-left: auto;
26396
}
16848 stevensc 26397
 
16825 efrain 26398
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26399
  order: 2;
26400
  margin-left: 15px;
26401
}
16848 stevensc 26402
 
16825 efrain 26403
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26404
  order: 1;
26405
  margin-left: auto;
26406
}
16848 stevensc 26407
 
16825 efrain 26408
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26409
  background: rgba(102, 209, 209, 0.1);
26410
  border-radius: 5px 0 5px 5px;
26411
  margin-left: auto;
26412
}
16848 stevensc 26413
 
16825 efrain 26414
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26415
  content: "";
26416
  width: 0;
26417
  height: 0;
26418
  position: absolute;
26419
  right: -10px;
26420
  top: 0;
26421
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26422
  border-bottom: 5px solid transparent;
26423
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26424
  border-right: 5px solid transparent;
26425
}
16848 stevensc 26426
 
16825 efrain 26427
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26428
  text-align: right;
26429
  display: block;
26430
}
16848 stevensc 26431
 
16825 efrain 26432
.chat-wrapper figure {
26433
  position: relative;
26434
}
16848 stevensc 26435
 
16825 efrain 26436
.chat-wrapper figure .status {
26437
  width: 11px;
26438
  height: 11px;
26439
  background: #7987a1;
26440
  position: absolute;
26441
  bottom: 0px;
26442
  right: -2px;
26443
  border-radius: 50%;
26444
  border: 2px solid #fff;
26445
}
16848 stevensc 26446
 
16825 efrain 26447
.chat-wrapper figure .status.online {
26448
  background: #05a34a;
26449
}
16848 stevensc 26450
 
16825 efrain 26451
.chat-wrapper figure .status.offline {
26452
  background: #7987a1;
26453
}
26454
 
26455
.auth-page .auth-side-wrapper {
26456
  width: 100%;
26457
  height: 100%;
26458
  background-image: url(https://via.placeholder.com/219x452);
26459
  background-size: cover;
26460
}
26461
 
26462
.email-aside-nav.collapse {
26463
  display: block;
26464
}
16848 stevensc 26465
 
16825 efrain 26466
@media (max-width: 991px) {
26467
  .email-aside-nav.collapse {
26468
    display: none;
26469
  }
26470
}
16848 stevensc 26471
 
16825 efrain 26472
@media (max-width: 991px) {
26473
  .email-aside-nav.collapse.show {
26474
    display: block;
26475
  }
26476
}
16848 stevensc 26477
 
16825 efrain 26478
.email-aside-nav .nav-item {
26479
  border-radius: 0.2rem;
26480
}
16848 stevensc 26481
 
16825 efrain 26482
.email-aside-nav .nav-item .nav-link {
26483
  color: #000;
26484
}
16848 stevensc 26485
 
16825 efrain 26486
.email-aside-nav .nav-item .nav-link svg {
26487
  color: #7987a1;
26488
}
16848 stevensc 26489
 
26490
.email-aside-nav .nav-item.active,
26491
.email-aside-nav .nav-item:hover {
16825 efrain 26492
  background: rgba(101, 113, 255, 0.1);
26493
}
16848 stevensc 26494
 
26495
.email-aside-nav .nav-item.active .nav-link,
26496
.email-aside-nav .nav-item.active .nav-link svg,
26497
.email-aside-nav .nav-item:hover .nav-link,
26498
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26499
  color: #6571ff;
26500
}
26501
 
26502
.email-list-item {
26503
  display: flex;
26504
  align-items: center;
26505
  border-bottom: 1px solid #e9ecef;
26506
  padding: 10px 20px;
26507
  cursor: pointer;
26508
}
16848 stevensc 26509
 
16825 efrain 26510
.email-list-item:hover {
26511
  background: rgba(101, 113, 255, 0.08);
26512
}
16848 stevensc 26513
 
16825 efrain 26514
.email-list-item:last-child {
26515
  margin-bottom: 5px;
26516
}
16848 stevensc 26517
 
16825 efrain 26518
.email-list-item .email-list-actions {
26519
  width: 40px;
26520
  vertical-align: top;
26521
  display: table-cell;
26522
}
16848 stevensc 26523
 
16825 efrain 26524
.email-list-item .email-list-actions .form-check {
26525
  margin-bottom: 0;
26526
}
16848 stevensc 26527
 
16825 efrain 26528
.email-list-item .email-list-actions .favorite {
26529
  display: block;
26530
  padding-left: 1px;
26531
  line-height: 15px;
26532
}
16848 stevensc 26533
 
16825 efrain 26534
.email-list-item .email-list-actions .favorite span svg {
26535
  width: 14px;
26536
  color: #7987a1;
26537
}
16848 stevensc 26538
 
16825 efrain 26539
.email-list-item .email-list-actions .favorite:hover span {
26540
  color: #8d8d8d;
26541
}
16848 stevensc 26542
 
16825 efrain 26543
.email-list-item .email-list-actions .favorite.active span svg {
26544
  color: #fbbc06;
26545
}
16848 stevensc 26546
 
16825 efrain 26547
.email-list-item .email-list-detail {
26548
  width: calc(100% - 40px);
26549
  display: flex;
26550
  justify-content: space-between;
26551
  align-items: center;
26552
  flex-grow: 1;
26553
}
16848 stevensc 26554
 
16825 efrain 26555
.email-list-item .email-list-detail .content {
26556
  overflow: hidden;
26557
}
16848 stevensc 26558
 
16825 efrain 26559
.email-list-item .email-list-detail .content .from {
26560
  display: block;
26561
  margin: 0 0 1px 0;
26562
  color: #000;
26563
}
16848 stevensc 26564
 
16825 efrain 26565
.email-list-item .email-list-detail .content .msg {
26566
  width: 97%;
26567
  color: #7987a1;
26568
  font-size: 0.8rem;
26569
  overflow: hidden;
26570
  text-overflow: ellipsis;
26571
  white-space: nowrap;
26572
}
16848 stevensc 26573
 
16825 efrain 26574
.email-list-item .email-list-detail .date {
26575
  color: #000;
26576
  white-space: nowrap;
26577
}
16848 stevensc 26578
 
16825 efrain 26579
.email-list-item .email-list-detail .date .icon svg {
26580
  width: 14px;
26581
  margin-right: 7px;
26582
  color: #3d405c;
26583
}
16848 stevensc 26584
 
16825 efrain 26585
.email-list-item.email-list-item--unread {
26586
  background-color: rgba(101, 113, 255, 0.09);
26587
}
16848 stevensc 26588
 
16825 efrain 26589
.email-list-item.email-list-item--unread .content .from {
26590
  font-weight: 500;
26591
}
16848 stevensc 26592
 
16825 efrain 26593
.email-list-item.email-list-item--unread .content .msg {
26594
  font-weight: 700;
26595
}
26596
 
26597
.ace_editor {
26598
  border-radius: 0.25rem;
26599
  margin: auto;
26600
  height: 300px;
26601
  width: 100%;
26602
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26603
}
16848 stevensc 26604
 
16825 efrain 26605
.ace_editor .ace_content {
26606
  font-size: 0.875rem;
26607
}
26608
 
26609
div.apexcharts-canvas .apexcharts-menu {
26610
  background: #fff !important;
26611
  color: #000;
26612
  border-color: #e9ecef;
26613
}
16848 stevensc 26614
 
16825 efrain 26615
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26616
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26617
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26618
div.apexcharts-canvas .apexcharts-reset-icon svg,
26619
div.apexcharts-canvas .apexcharts-pan-icon svg,
26620
div.apexcharts-canvas .apexcharts-selection-icon svg,
26621
div.apexcharts-canvas .apexcharts-menu-icon svg,
26622
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26623
  fill: #7987a1;
26624
}
16848 stevensc 26625
 
16825 efrain 26626
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26627
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26628
  display: flex;
26629
  align-items: center;
26630
}
16848 stevensc 26631
 
16825 efrain 26632
div.apexcharts-canvas .apexcharts-legend-marker {
26633
  margin-right: 3px;
26634
}
16848 stevensc 26635
 
16825 efrain 26636
div.apexcharts-canvas .apexcharts-tooltip {
26637
  background: rgba(255, 255, 255, 0.8);
26638
  color: #000;
26639
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26640
  border-radius: 0.25rem;
26641
  border: 1px solid #f2f4f9;
26642
}
16848 stevensc 26643
 
16825 efrain 26644
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26645
  border-color: #e9ecef;
26646
  background-color: #fff;
26647
}
16848 stevensc 26648
 
16825 efrain 26649
div.apexcharts-canvas .apexcharts-tooltip * {
26650
  font-family: "Roboto", Helvetica, sans-serif !important;
26651
}
16848 stevensc 26652
 
16825 efrain 26653
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26654
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26655
  padding: 0 10px;
26656
}
16848 stevensc 26657
 
16825 efrain 26658
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26659
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26660
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26661
  margin-left: 0;
26662
}
16848 stevensc 26663
 
16825 efrain 26664
div.apexcharts-canvas .apexcharts-tooltip-title {
26665
  margin-bottom: 0;
26666
}
16848 stevensc 26667
 
16825 efrain 26668
div.apexcharts-canvas .apexcharts-xaxistooltip,
26669
div.apexcharts-canvas .apexcharts-yaxistooltip {
26670
  background: #fff;
26671
  color: #000;
26672
  border-color: #f2f4f9;
26673
}
16848 stevensc 26674
 
16825 efrain 26675
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26676
  border-bottom-color: #f2f4f9;
26677
}
16848 stevensc 26678
 
16825 efrain 26679
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26680
  border-bottom-color: rgba(255, 255, 255, 0.8);
26681
}
16848 stevensc 26682
 
16825 efrain 26683
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26684
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26685
  border-left-color: #f2f4f9;
26686
}
16848 stevensc 26687
 
16825 efrain 26688
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26689
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26690
  border-left-color: rgba(255, 255, 255, 0.8);
26691
}
26692
 
26693
@media (max-width: 767px) {
26694
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26695
    text-align: left;
26696
  }
26697
}
16848 stevensc 26698
 
16825 efrain 26699
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26700
  margin-left: 10px;
26701
  margin-right: 10px;
26702
}
16848 stevensc 26703
 
16825 efrain 26704
@media (max-width: 767px) {
26705
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26706
    text-align: left;
26707
    margin-left: -19px;
26708
  }
26709
}
26710
 
26711
.dropify-wrapper {
26712
  border: 1px solid #e9ecef;
26713
  border-radius: 0.25rem;
26714
}
16848 stevensc 26715
 
16825 efrain 26716
.dropify-wrapper .dropify-message span.file-icon {
26717
  font-size: 0.875rem;
26718
  color: #7987a1;
26719
}
16848 stevensc 26720
 
16825 efrain 26721
.dropify-wrapper .dropify-message span.file-icon::before {
26722
  font-family: feather;
26723
  content: "\e8e3";
26724
  font-size: 24px;
26725
}
26726
 
26727
.dropzone {
26728
  overflow: auto;
26729
  border: 1px solid #e9ecef;
26730
  border-radius: 0.25rem;
26731
  max-height: 200px;
26732
  padding: 0;
26733
}
16848 stevensc 26734
 
16825 efrain 26735
@media (min-width: 1400px) {
26736
  .dropzone {
26737
    min-height: 200px;
26738
  }
26739
}
16848 stevensc 26740
 
16825 efrain 26741
.dropzone.dz-clickable .dz-message {
26742
  margin-top: 65px;
26743
}
16848 stevensc 26744
 
26745
.dropzone .dz-preview.dz-image-preview .dz-image,
26746
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26747
  border-radius: 0.25rem;
26748
}
26749
 
16848 stevensc 26750
.form-control.flatpickr-input,
26751
.flatpickr-input.typeahead.tt-input,
26752
.flatpickr-input.typeahead.tt-hint,
26753
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26754
  background-color: #fff;
26755
}
26756
 
26757
.flatpickr-day.selected,
26758
.flatpickr-day.startRange,
26759
.flatpickr-day.endRange,
26760
.flatpickr-day.selected.inRange,
26761
.flatpickr-day.startRange.inRange,
26762
.flatpickr-day.endRange.inRange,
26763
.flatpickr-day.selected:focus,
26764
.flatpickr-day.startRange:focus,
26765
.flatpickr-day.endRange:focus,
26766
.flatpickr-day.selected:hover,
26767
.flatpickr-day.startRange:hover,
26768
.flatpickr-day.endRange:hover,
26769
.flatpickr-day.selected.prevMonthDay,
26770
.flatpickr-day.startRange.prevMonthDay,
26771
.flatpickr-day.endRange.prevMonthDay,
26772
.flatpickr-day.selected.nextMonthDay,
26773
.flatpickr-day.startRange.nextMonthDay,
26774
.flatpickr-day.endRange.nextMonthDay {
26775
  background: #6571ff;
26776
  border-color: #6571ff;
26777
}
26778
 
26779
.flatpickr-months {
26780
  padding: 0 1rem;
26781
  padding-top: 0.5rem;
26782
}
26783
 
26784
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26785
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26786
  left: 11px;
26787
  right: auto !important;
26788
  top: 8px;
26789
}
26790
 
26791
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26792
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26793
  right: 11px;
26794
  left: auto !important;
26795
  top: 8px;
26796
}
26797
 
26798
.flatpickr-months .flatpickr-prev-month:hover svg,
26799
.flatpickr-months .flatpickr-next-month:hover svg {
26800
  fill: #6571ff;
26801
}
26802
 
26803
.flatpickr-months .flatpickr-month {
26804
  height: 42px;
26805
}
26806
 
26807
.flatpickr-current-month .flatpickr-monthDropdown-months {
26808
  font-size: 1rem;
26809
  border-radius: 0.25rem;
26810
  padding: 0.3rem 0.5rem;
26811
}
26812
 
26813
.flatpickr-weekdays {
26814
  padding: 0 10px;
26815
}
26816
 
26817
.dayContainer {
26818
  padding: 0 10px 10px;
26819
}
26820
 
26821
.fc {
26822
  --fc-button-active-bg-color: #6571ff;
26823
  --fc-button-active-border-color: #6571ff;
26824
}
16848 stevensc 26825
 
16825 efrain 26826
.fc .fc-button .fc-icon {
26827
  font-size: 1.2 em;
26828
}
16848 stevensc 26829
 
16825 efrain 26830
.fc .fc-button-primary:focus,
26831
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26832
.fc .fc-button-primary:not(:disabled):active:focus {
26833
  box-shadow: none;
26834
}
16848 stevensc 26835
 
16825 efrain 26836
.fc .fc-button-primary:disabled {
26837
  border-color: #6571ff;
26838
}
16848 stevensc 26839
 
16825 efrain 26840
@media (max-width: 767px) {
26841
  .fc .fc-toolbar {
26842
    flex-direction: column;
26843
  }
16848 stevensc 26844
 
16825 efrain 26845
  .fc .fc-toolbar .fc-toolbar-chunk {
26846
    margin-bottom: 12px;
26847
  }
26848
}
16848 stevensc 26849
 
16825 efrain 26850
.fc .fc-daygrid-day-number,
26851
.fc .fc-col-header-cell-cushion {
26852
  color: #000;
26853
}
16848 stevensc 26854
 
16825 efrain 26855
.fc .fc-daygrid-event {
26856
  padding: 4px;
26857
}
16848 stevensc 26858
 
16825 efrain 26859
.fc .fc-daygrid-day.fc-day-today {
26860
  background-color: rgba(101, 113, 255, 0.2);
26861
}
16848 stevensc 26862
 
16825 efrain 26863
.fc .fc-list-event:hover td {
26864
  background-color: rgba(101, 113, 255, 0.2);
26865
}
16848 stevensc 26866
 
16825 efrain 26867
.fc .fc-list-day-text,
26868
.fc .fc-list-day-side-text {
26869
  color: #000;
26870
}
26871
 
26872
.fc-theme-standard td,
26873
.fc-theme-standard th,
26874
.fc-theme-standard .fc-scrollgrid {
26875
  border-color: #e9ecef;
26876
}
26877
 
26878
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26879
.fc-timegrid-event.fc-event-mirror,
26880
.fc-timegrid-more-link {
26881
  box-shadow: none;
26882
}
26883
 
26884
.fc-theme-standard .fc-popover {
26885
  background-color: #fff;
26886
  border-color: #f2f4f9;
26887
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26888
}
16848 stevensc 26889
 
16825 efrain 26890
.fc-theme-standard .fc-popover .fc-popover-header {
26891
  background-color: #7987a1;
26892
}
26893
 
26894
.fc-theme-standard .fc-list-day-cushion {
26895
  background-color: #fff;
26896
}
26897
 
26898
.fc-theme-standard .fc-list {
26899
  border-color: #e9ecef;
26900
}
26901
 
26902
.fc-event {
26903
  margin-bottom: 10px;
26904
  padding: 8px;
26905
  border-radius: 2px;
26906
  background: rgba(101, 113, 255, 0.2);
26907
  border: 0;
26908
  border-left: 3px solid #6571ff;
26909
  color: #000;
26910
  font-weight: 500;
26911
}
26912
 
26913
.fc-h-event .fc-event-main {
26914
  color: #000;
26915
}
26916
 
26917
.flot-chart-wrapper .flot-chart {
26918
  width: 100%;
26919
  position: relative;
26920
  max-width: none;
26921
  height: 400px;
26922
}
16848 stevensc 26923
 
16825 efrain 26924
@media (max-width: 767px) {
26925
  .flot-chart-wrapper {
26926
    height: 200px;
26927
    min-height: 200px;
26928
  }
16848 stevensc 26929
 
16825 efrain 26930
  .flot-chart-wrapper .flot-chart {
26931
    height: 100%;
26932
  }
26933
}
26934
 
16848 stevensc 26935
.flot-text .flot-x-axis>div,
16825 efrain 26936
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26937
.flot-text .flot-y-axis>div,
16825 efrain 26938
.flot-text .flot-y-axis .flot-tick-label {
26939
  color: #000;
26940
}
26941
 
26942
.peity-custom svg {
26943
  margin-right: 10px;
26944
}
26945
 
26946
.ps__thumb-x {
26947
  background-color: #d9d9d9;
26948
  height: 4px;
26949
}
26950
 
26951
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26952
.ps__rail-x:focus>.ps__thumb-x,
26953
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26954
  background-color: #b3b3b3;
26955
  height: 6px;
26956
}
26957
 
26958
.ps__rail-x {
26959
  height: 10px;
26960
}
26961
 
26962
.ps__thumb-y {
26963
  background-color: #d9d9d9;
26964
  width: 4px;
26965
  /*rtl:raw:
26966
   left: 2px !important;
26967
  right: auto !important;
26968
   */
26969
}
26970
 
26971
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26972
.ps__rail-y:focus>.ps__thumb-y,
26973
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26974
  background-color: #b3b3b3;
26975
  width: 6px;
26976
}
26977
 
26978
.ps__rail-y {
26979
  width: 10px;
26980
  /*rtl:raw:
26981
   left: 0 !important;
26982
  right: auto !important;
26983
   */
26984
}
26985
 
26986
.ps .ps__rail-x.ps--clicking,
26987
.ps .ps__rail-x:focus,
26988
.ps .ps__rail-x:hover,
26989
.ps .ps__rail-y.ps--clicking,
26990
.ps .ps__rail-y:focus,
26991
.ps .ps__rail-y:hover {
26992
  background-color: #e9ecef;
26993
}
26994
 
26995
.swal2-popup {
26996
  font-size: 0.875rem;
26997
}
16848 stevensc 26998
 
16825 efrain 26999
.swal2-popup .swal2-title {
27000
  font-size: 25px;
27001
  line-height: 1;
27002
  font-weight: 500;
27003
  color: #000;
27004
  margin-bottom: 0;
27005
}
16848 stevensc 27006
 
16825 efrain 27007
.swal2-popup .swal2-html-container {
27008
  font-size: 0.875rem;
27009
  color: #7987a1;
27010
  font-weight: initial;
27011
  margin-top: 11px;
27012
  text-decoration: none;
27013
}
16848 stevensc 27014
 
16825 efrain 27015
.swal2-popup .swal2-actions button svg {
27016
  width: 16px;
27017
  height: 16px;
27018
}
16848 stevensc 27019
 
16825 efrain 27020
.swal2-popup .swal2-close {
27021
  font-size: 22px;
27022
}
16848 stevensc 27023
 
16825 efrain 27024
.swal2-popup .swal2-close:focus {
27025
  box-shadow: none;
27026
}
16848 stevensc 27027
 
16825 efrain 27028
.swal2-popup .swal2-timer-progress-bar {
27029
  background: #7987a1;
27030
}
27031
 
27032
.select2-container--default .select2-selection--single,
27033
.select2-container--default .select2-selection--multiple {
27034
  border: 1px solid #e9ecef;
27035
  border-radius: 0.25rem;
27036
}
16848 stevensc 27037
 
27038
.select2-container--focus.select2-container--default .select2-selection--single,
27039
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27040
  border: 1px solid #cbd1db;
27041
}
27042
 
27043
.select2-dropdown {
27044
  border: 1px solid #cbd1db;
27045
  border-radius: 0.25rem;
27046
}
27047
 
27048
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27049
  background-color: #6571ff;
27050
}
27051
 
27052
.select2-container .select2-selection--single,
27053
.select2-container .select2-selection--multiple {
27054
  height: auto;
27055
}
27056
 
27057
.select2-container--default .select2-selection--single .select2-selection__rendered {
27058
  line-height: 1.5;
27059
  padding: 0.469rem 0.8rem;
27060
}
16848 stevensc 27061
 
16825 efrain 27062
.select2-container--default .select2-selection--single .select2-selection__arrow {
27063
  height: 100%;
27064
}
16848 stevensc 27065
 
16825 efrain 27066
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27067
  left: 0;
27068
}
27069
 
27070
.select2-container--default .select2-selection--multiple {
27071
  min-height: 38px;
27072
}
16848 stevensc 27073
 
16825 efrain 27074
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27075
  padding: 0 6px;
27076
}
16848 stevensc 27077
 
16825 efrain 27078
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27079
  background-color: #6571ff;
27080
  color: #fff;
27081
  border-color: #6571ff;
27082
  padding: 1px 8px;
27083
  border-radius: 0.15rem;
27084
  margin-top: 5px;
27085
}
16848 stevensc 27086
 
16825 efrain 27087
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27088
  color: #fff;
27089
  opacity: 0.5;
27090
}
27091
 
27092
.select2-container .select2-search--inline {
27093
  margin-top: 3px;
27094
}
27095
 
27096
.EasyMDEContainer .CodeMirror {
27097
  background: #fff;
27098
  border: 1px solid #e9ecef;
27099
  color: #000;
27100
  border-bottom-left-radius: 0;
27101
  border-bottom-right-radius: 0;
27102
}
27103
 
27104
.editor-toolbar {
27105
  border: 1px solid #e9ecef;
27106
  border-bottom: 0;
27107
  border-radius: 0.25rem 0.25rem 0 0;
27108
}
16848 stevensc 27109
 
27110
.editor-toolbar,
27111
.editor-toolbar:hover {
16825 efrain 27112
  opacity: 1;
27113
}
16848 stevensc 27114
 
16825 efrain 27115
.editor-toolbar button {
27116
  color: rgba(0, 0, 0, 0.7) !important;
27117
}
16848 stevensc 27118
 
16825 efrain 27119
.editor-toolbar button:hover {
27120
  background: #e9ecef;
27121
  border: none;
27122
}
16848 stevensc 27123
 
16825 efrain 27124
.editor-toolbar i.separator {
27125
  border-left: 1px solid #e9ecef;
27126
  border-right: 1px solid #e9ecef;
27127
}
27128
 
27129
.CodeMirror-fullscreen,
27130
.editor-toolbar.fullscreen,
27131
.editor-preview-side {
27132
  z-index: 999;
27133
}
27134
 
27135
.editor-preview-side {
27136
  border-color: #e9ecef;
27137
}
27138
 
16848 stevensc 27139
.editor-toolbar button.active,
27140
.editor-toolbar button:hover {
16825 efrain 27141
  background: #e9ecef;
27142
  border-color: transparent;
27143
}
27144
 
27145
.editor-statusbar {
27146
  padding: 0 10px;
27147
  border: 1px solid #e9ecef;
27148
  border-top-color: transparent;
27149
  border-bottom-left-radius: 0.25rem;
27150
  border-bottom-right-radius: 0.25rem;
27151
}
27152
 
27153
div.tagsinput {
27154
  padding: 6px 6px 1px;
27155
  border-color: #e9ecef;
27156
  border-radius: 0.25rem;
27157
}
16848 stevensc 27158
 
16825 efrain 27159
div.tagsinput span.tag {
27160
  background: #6571ff;
27161
  color: #fff;
27162
  border: 0;
27163
  padding: 3px 7px;
27164
  font-family: inherit;
27165
  border-radius: 0.15rem;
27166
  margin-bottom: 4px;
27167
  float: left;
27168
  /*rtl:raw:
27169
  margin-left: 0;
27170
  margin-right: 5px;
27171
  */
27172
}
16848 stevensc 27173
 
16825 efrain 27174
div.tagsinput span.tag a {
27175
  font-size: 13px;
27176
  font-weight: 500;
27177
  color: #fff;
27178
  opacity: 0.5;
27179
}
16848 stevensc 27180
 
16825 efrain 27181
div.tagsinput #tags_addTag {
27182
  float: left;
27183
  /*rtl:raw:
27184
  margin-right: 5px;
27185
  */
27186
}
16848 stevensc 27187
 
16825 efrain 27188
div.tagsinput input {
27189
  margin: 0;
27190
  padding: 1px;
27191
  border-radius: 0.25rem;
27192
}
27193
 
27194
.tox.tox-tinymce {
27195
  border: 1px solid #e9ecef;
27196
  border-radius: 0.25rem;
27197
}
16848 stevensc 27198
 
16825 efrain 27199
.tox.tox-tinymce .tox-menubar,
27200
.tox.tox-tinymce .tox-toolbar-overlord,
27201
.tox.tox-tinymce .tox-toolbar,
27202
.tox.tox-tinymce .tox-toolbar__overflow,
27203
.tox.tox-tinymce .tox-toolbar__primary {
27204
  background-color: #fff;
27205
  background-image: none;
27206
  border-bottom: 1px solid #e9ecef;
27207
}
16848 stevensc 27208
 
16825 efrain 27209
.tox.tox-tinymce .tox-toolbar-overlord {
27210
  border-bottom: none;
27211
}
16848 stevensc 27212
 
16825 efrain 27213
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27214
  padding: 0;
27215
  box-shadow: none;
27216
}
16848 stevensc 27217
 
16825 efrain 27218
.tox.tox-tinymce .tox-edit-area__iframe {
27219
  background-color: #fff;
27220
}
16848 stevensc 27221
 
16825 efrain 27222
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27223
  border-right-color: #e9ecef;
27224
  border-left-color: #e9ecef;
27225
}
16848 stevensc 27226
 
16825 efrain 27227
.tox.tox-tinymce .tox-statusbar {
27228
  background-color: #fff;
27229
  border-color: #e9ecef;
27230
  color: #7987a1;
27231
}
16848 stevensc 27232
 
16825 efrain 27233
.tox.tox-tinymce .tox-statusbar a,
27234
.tox.tox-tinymce .tox-statusbar__path-item,
27235
.tox.tox-tinymce .tox-statusbar__wordcount {
27236
  color: #7987a1;
27237
}
16848 stevensc 27238
 
16825 efrain 27239
.tox.tox-tinymce .tox-mbtn {
27240
  color: #000;
27241
}
16848 stevensc 27242
 
16825 efrain 27243
.tox.tox-tinymce .tox-tbtn {
27244
  color: rgba(0, 0, 0, 0.7);
27245
}
16848 stevensc 27246
 
16825 efrain 27247
.tox.tox-tinymce .tox-tbtn:hover {
27248
  background: #e9ecef;
27249
  color: #000;
27250
}
16848 stevensc 27251
 
16825 efrain 27252
.tox.tox-tinymce .tox-tbtn:hover svg {
27253
  fill: #000;
27254
}
16848 stevensc 27255
 
16825 efrain 27256
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27257
  color: #000;
27258
}
16848 stevensc 27259
 
16825 efrain 27260
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27261
  background: #e9ecef;
27262
  color: #000;
27263
}
16848 stevensc 27264
 
16825 efrain 27265
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27266
.tox.tox-tinymce .tox-mbtn--active {
27267
  background: #e9ecef;
27268
  color: #000;
27269
}
16848 stevensc 27270
 
16825 efrain 27271
.tox.tox-tinymce .tox-tbtn svg {
27272
  fill: rgba(0, 0, 0, 0.7);
27273
}
16848 stevensc 27274
 
16825 efrain 27275
.tox.tox-tinymce .tox-tbtn--disabled svg,
27276
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27277
.tox.tox-tinymce .tox-tbtn:disabled svg,
27278
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27279
  fill: #e9ecef;
27280
}
16848 stevensc 27281
 
16825 efrain 27282
.tox.tox-tinymce .tox-split-button:hover {
27283
  box-shadow: 0 0 0 1px #e9ecef inset;
27284
}
16848 stevensc 27285
 
16825 efrain 27286
.tox.tox-tinymce .tox-split-button:focus {
27287
  background: #e9ecef;
27288
}
16848 stevensc 27289
 
16825 efrain 27290
.tox.tox-tinymce .tox-tbtn--enabled,
27291
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27292
.tox.tox-tinymce .tox-tbtn:focus {
27293
  background: #e9ecef;
27294
}
27295
 
27296
div.tox .tox-menu {
27297
  background-color: #fff;
27298
  border-color: #f2f4f9;
27299
}
16848 stevensc 27300
 
16825 efrain 27301
div.tox .tox-collection__item {
27302
  color: #000;
27303
}
16848 stevensc 27304
 
16825 efrain 27305
div.tox .tox-collection--list .tox-collection__item--enabled {
27306
  background-color: #6571ff;
27307
  color: #fff;
27308
}
16848 stevensc 27309
 
16825 efrain 27310
div.tox .tox-collection--list .tox-collection__group {
27311
  border-color: #e9ecef;
27312
}
16848 stevensc 27313
 
16825 efrain 27314
div.tox .tox-collection--toolbar .tox-collection__item--active {
27315
  background-color: #e9ecef;
27316
}
16848 stevensc 27317
 
16825 efrain 27318
div.tox .tox-collection--list .tox-collection__item--active {
27319
  background-color: #e9ecef;
27320
}
16848 stevensc 27321
 
16825 efrain 27322
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27323
  color: #000;
27324
}
16848 stevensc 27325
 
16825 efrain 27326
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27327
  color: #000;
27328
}
16848 stevensc 27329
 
16825 efrain 27330
div.tox .tox-dialog-wrap__backdrop {
27331
  background-color: rgba(0, 0, 0, 0.75);
27332
}
16848 stevensc 27333
 
16825 efrain 27334
div.tox .tox-dialog,
27335
div.tox .tox-dialog__header,
27336
div.tox .tox-dialog__footer {
27337
  background-color: #fff;
27338
  border-color: #e9ecef;
27339
  color: #000;
27340
}
16848 stevensc 27341
 
16825 efrain 27342
div.tox .tox-button--secondary:hover:not(:disabled) {
27343
  background-color: #7987a1;
27344
  border-color: #7987a1;
27345
  color: #fff;
27346
}
16848 stevensc 27347
 
16825 efrain 27348
div.tox .tox-button--naked:hover:not(:disabled) {
27349
  background-color: transparent;
27350
  border-color: transparent;
27351
}
16848 stevensc 27352
 
16825 efrain 27353
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27354
  color: #333333;
27355
}
16848 stevensc 27356
 
16825 efrain 27357
div.tox .tox-listboxfield .tox-listbox--select,
27358
div.tox .tox-textarea,
27359
div.tox .tox-textfield,
27360
div.tox .tox-toolbar-textfield {
27361
  background-color: #fff;
27362
  border-color: #e9ecef;
27363
  color: #000;
27364
}
16848 stevensc 27365
 
16825 efrain 27366
div.tox .tox-listboxfield .tox-listbox--select:focus,
27367
div.tox .tox-textarea:focus,
27368
div.tox .tox-textfield:focus {
27369
  background-color: #fff;
27370
  border-color: #cbd1db;
27371
}
16848 stevensc 27372
 
16825 efrain 27373
div.tox .tox-dialog__table tbody tr {
27374
  border-color: #e9ecef;
27375
}
16848 stevensc 27376
 
16825 efrain 27377
div.tox .tox-dialog__body {
27378
  color: #000;
27379
}
27380
 
27381
.typeahead.tt-input,
27382
.typeahead.tt-hint {
27383
  background-color: #fff !important;
27384
  /*rtl:raw:
27385
  direction: rtl;
27386
  */
27387
}
27388
 
27389
.tt-menu .tt-suggestion {
27390
  cursor: pointer;
27391
}
27392
 
16848 stevensc 27393
.tabcontrol ul,
27394
.wizard ul {
16825 efrain 27395
  display: flex;
27396
}
16848 stevensc 27397
 
16825 efrain 27398
@media (max-width: 676px) {
16848 stevensc 27399
 
27400
  .tabcontrol ul,
27401
  .wizard ul {
16825 efrain 27402
    flex-wrap: wrap;
27403
  }
27404
}
27405
 
16848 stevensc 27406
.wizard>.steps>ul>li {
16825 efrain 27407
  width: auto;
27408
  display: flex;
27409
  flex-grow: 1;
27410
}
27411
 
16848 stevensc 27412
.wizard>.steps .disabled a,
27413
.wizard>.steps .disabled a:active,
27414
.wizard>.steps .disabled a:hover {
16825 efrain 27415
  background-color: #e9ecef;
27416
  color: #000;
27417
  border: 1px solid transparent;
27418
}
27419
 
16848 stevensc 27420
.wizard>.steps .current a,
27421
.wizard>.steps .current a:active,
27422
.wizard>.steps .current a:hover {
16825 efrain 27423
  background-color: #6571ff;
27424
  border: 1px solid transparent;
27425
}
27426
 
16848 stevensc 27427
.wizard>.steps a,
27428
.wizard>.steps a:active,
27429
.wizard>.steps a:hover {
16825 efrain 27430
  padding: 0.469rem 0.8rem;
27431
  border-radius: 0.25rem;
27432
  width: 100%;
27433
}
27434
 
16848 stevensc 27435
.wizard>.steps .done a,
27436
.wizard>.steps .done a:active,
27437
.wizard>.steps .done a:hover {
16825 efrain 27438
  background-color: rgba(101, 113, 255, 0.2);
27439
  color: #6571ff;
27440
  border: 1px solid #6571ff;
27441
}
27442
 
16848 stevensc 27443
.wizard>.steps ul li a,
27444
.wizard>.steps ul li a:active,
27445
.wizard>.steps ul li a:hover {
16825 efrain 27446
  margin: 0 0.5em 0.5em 0;
27447
}
16848 stevensc 27448
 
27449
.wizard>.steps ul li:last-child a,
27450
.wizard>.steps ul li:last-child a:active,
27451
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27452
  margin: 0 0 0.5em 0;
27453
}
27454
 
16848 stevensc 27455
.wizard>.steps .number {
16825 efrain 27456
  font-size: inherit;
27457
}
27458
 
16848 stevensc 27459
.wizard>.content {
16825 efrain 27460
  background: #fff;
27461
  border: 1px solid #e9ecef;
27462
  min-height: 23em;
27463
  overflow: auto;
27464
  margin: 0.5em 0;
27465
}
27466
 
27467
@media (max-width: 767px) {
16848 stevensc 27468
  .wizard>.content>.body {
16825 efrain 27469
    width: 90%;
27470
    height: 90%;
27471
    padding: 5%;
27472
  }
27473
}
27474
 
16848 stevensc 27475
.wizard>.actions .disabled a,
27476
.wizard>.actions .disabled a:active,
27477
.wizard>.actions .disabled a:hover {
16825 efrain 27478
  background: #e9ecef;
27479
  border-color: #e9ecef;
27480
  cursor: not-allowed;
27481
  color: #aeb7c5;
27482
}
27483
 
16848 stevensc 27484
.wizard>.actions .disabled a:focus {
16825 efrain 27485
  box-shadow: none;
27486
  color: #aeb7c5;
27487
}
27488
 
16848 stevensc 27489
.wizard>.actions>ul li {
16825 efrain 27490
  margin-right: 0;
27491
  margin-left: 0.7em;
27492
}
27493
 
16848 stevensc 27494
.wizard.vertical>.steps ul {
16825 efrain 27495
  flex-direction: column;
27496
}
27497
 
16848 stevensc 27498
.wizard.vertical>.content {
16825 efrain 27499
  margin: 0 0 0.5em 2%;
27500
  width: 68%;
27501
}
27502
 
16848 stevensc 27503
.wizard.vertical>.steps a,
27504
.wizard.vertical>.steps a:active,
27505
.wizard.vertical>.steps a:hover {
16825 efrain 27506
  margin: 0 0 0.5em 0;
27507
}
27508
 
16848 stevensc 27509
.wizard.vertical>.actions {
16825 efrain 27510
  margin: 0;
27511
  width: 100%;
27512
}
27513
 
16848 stevensc 27514
.wizard.vertical>.actions>ul>li {
16825 efrain 27515
  margin: 0 0 0 0.7em;
27516
}
16848 stevensc 27517
 
27518
.pac-container {
27519
  z-index: 1200;
27520
}
27521
 
16857 stevensc 27522
.feed-section {
27523
  display: flex;
27524
  flex-direction: column;
27525
  gap: .5rem;
16858 stevensc 27526
  width: 50%;
27527
  margin: 0 auto;
16857 stevensc 27528
  box-sizing: border-box;
16865 stevensc 27529
  align-items: center;
16857 stevensc 27530
}
27531
 
16867 stevensc 27532
.theme-container {
16849 stevensc 27533
  background-color: var(--bg-color);
27534
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27535
  height: fit-content;
27536
  width: -moz-available;
27537
  width: -webkit-fill-available;
27538
  width: fill-available;
27539
  overflow: hidden;
27540
  position: relative;
16853 stevensc 27541
  border-radius: var(--border-radius);
16849 stevensc 27542
}
27543
 
16867 stevensc 27544
.theme-container span {
16849 stevensc 27545
  font-size: 0.9rem;
16853 stevensc 27546
  line-height: 1;
27547
  color: var(--subtitle-color);
27548
  font-weight: 600;
16849 stevensc 27549
}
27550
 
16867 stevensc 27551
.theme-container p {
16849 stevensc 27552
  color: var(--font-color);
27553
  font-size: 14px;
27554
  text-align: justify;
27555
  margin-bottom: 0.5rem;
27556
}
27557
 
16867 stevensc 27558
.theme-container h2 {
16849 stevensc 27559
  font-size: 1rem;
16853 stevensc 27560
  font-weight: 600;
16849 stevensc 27561
}
27562
 
16867 stevensc 27563
.theme-container input,
27564
.theme-container input:focus {
16859 stevensc 27565
  align-items: center;
27566
  color: gray;
27567
  display: flex;
27568
  min-height: 1.5rem;
27569
  gap: 5px;
27570
  width: 100%;
27571
  border: 1px solid lightgray;
27572
  background-color: rgb(255, 255, 255);
27573
  border-radius: 30px;
27574
  padding: 5px 5px 5px 1rem;
27575
}
27576
 
16849 stevensc 27577
.feed-header {
27578
  display: flex;
27579
  gap: 0.5rem;
27580
  padding: 10px 1rem;
27581
  align-items: center;
27582
  position: relative;
27583
}
27584
 
16858 stevensc 27585
.feed-header a>img {
27586
  width: 50px;
27587
  height: 50px;
27588
  border-radius: 50%;
27589
  object-fit: cover;
27590
}
27591
 
16851 stevensc 27592
.feed-info {
27593
  display: inline-flex;
16852 stevensc 27594
  flex-direction: column;
16851 stevensc 27595
  width: fit-content;
27596
}
27597
 
16852 stevensc 27598
.feed-body {
16849 stevensc 27599
  padding: 10px 1rem;
27600
  display: flex;
27601
  flex-direction: column;
27602
}
27603
 
16856 stevensc 27604
.feed-body>img,
27605
.feed-body>video {
27606
  width: 100%;
27607
  object-fit: cover;
27608
  max-height: 60vh;
27609
}
27610
 
16849 stevensc 27611
.feed-actions {
27612
  display: flex;
16851 stevensc 27613
  justify-content: flex-end;
16849 stevensc 27614
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27615
  gap: .5rem;
16849 stevensc 27616
  padding: 5px;
27617
}
27618
 
27619
.feed-actions>button {
27620
  align-items: center;
27621
  border-radius: var(--border-radius);
27622
  cursor: pointer;
27623
  display: inline-flex;
16851 stevensc 27624
  flex-direction: row;
27625
  gap: 0.5rem;
27626
  font-size: 1rem;
16849 stevensc 27627
  padding: 5px;
27628
  position: relative;
27629
}
27630
 
27631
.feed-actions>button:hover {
27632
  background-color: whitesmoke;
27633
}
27634
 
16851 stevensc 27635
.feed-actions>span,
27636
.feed-actions>svg {
27637
  color: var(--subtitle-color);
27638
  font-weight: 600;
27639
  font-size: .9rem;
27640
}
27641
 
16860 stevensc 27642
.comment-form {
27643
  display: flex;
27644
  align-items: center;
27645
  gap: 0.5rem;
27646
  width: 100%;
27647
}
27648
 
27649
.comment-list {
27650
  display: flex;
27651
  flex-direction: column;
27652
  gap: 0.5rem;
16863 stevensc 27653
  margin: 0;
16861 stevensc 27654
  list-style: none;
16863 stevensc 27655
  padding: 0.5rem;
16860 stevensc 27656
  max-height: 300px;
27657
  overflow-y: auto;
27658
  width: 100%;
27659
}
27660
 
27661
.comment-container {
27662
  background-color: var(--chat-send);
27663
  border-radius: var(--border-radius);
27664
  display: flex;
27665
  flex-direction: column;
27666
  flex-grow: 1;
27667
  gap: 0.5rem;
27668
  max-width: 100%;
27669
  overflow: hidden;
27670
  padding: 0.5rem;
27671
  position: relative;
27672
}
27673
 
16849 stevensc 27674
@media (max-width: 768px) {
16857 stevensc 27675
  .feed-section {
16858 stevensc 27676
    width: 100%;
16857 stevensc 27677
  }
27678
 
16867 stevensc 27679
  .theme-container {
16853 stevensc 27680
    border-radius: 0;
16849 stevensc 27681
  }
27682
 
16851 stevensc 27683
  .feed-actions>button {
27684
    font-size: 0.9rem;
27685
    flex-direction: column;
27686
    gap: 0;
16849 stevensc 27687
  }
27688
}
27689
 
16866 stevensc 27690
/* ============= user_profile ============= */
27691
.user_profile {
16873 stevensc 27692
  display: flex;
27693
  flex-direction: column;
16874 stevensc 27694
  gap: 0.5rem;
16878 stevensc 27695
  text-align: center;
16866 stevensc 27696
}
27697
 
16878 stevensc 27698
.social-links {
27699
  display: flex;
27700
  flex-direction: column;
16880 stevensc 27701
}
27702
 
27703
.social-links a {
27704
  display: inline-block;
16878 stevensc 27705
  white-space: nowrap;
27706
  text-overflow: ellipsis;
16880 stevensc 27707
  overflow: hidden;
16881 stevensc 27708
  text-align: start;
16878 stevensc 27709
  width: 100%;
27710
}
27711
 
16866 stevensc 27712
.user-pro-img {
16871 stevensc 27713
  height: 100px;
27714
  width: 100px;
16866 stevensc 27715
  position: relative;
16873 stevensc 27716
  border: 2px solid var(--button-bg);
27717
  margin: -50px auto 0;
16883 stevensc 27718
  border-radius: 50%;
16873 stevensc 27719
  background-color: #f5f5f5;
16866 stevensc 27720
}
27721
 
16871 stevensc 27722
.user-pro-img img {
27723
  width: 100%;
27724
  height: 100%;
27725
  object-fit: cover;
16882 stevensc 27726
  border-radius: 50%;
16871 stevensc 27727
}
27728
 
16882 stevensc 27729
.add-dp {
16866 stevensc 27730
  position: absolute;
16882 stevensc 27731
  top: -6px;
16866 stevensc 27732
  left: 60%;
16883 stevensc 27733
  width: 40px;
27734
  height: 40px;
16882 stevensc 27735
  display: grid;
16883 stevensc 27736
  cursor: pointer;
16882 stevensc 27737
  place-items: center;
27738
  border-radius: 50%;
16883 stevensc 27739
  background-color: var(--button-bg);
16882 stevensc 27740
  transition: all .2s ease-in-out;
16866 stevensc 27741
}
27742
 
27743
.add-dp i {
16882 stevensc 27744
  color: #fff;
16866 stevensc 27745
  font-size: 14px;
27746
}
27747
 
16882 stevensc 27748
.add-dp:hover {
16883 stevensc 27749
  opacity: 0.90;
16882 stevensc 27750
  transform: scale(0.9);
16866 stevensc 27751
}
27752
 
27753
#go-back {
27754
  font-size: 2rem;
27755
}
27756
 
27757
.user_pro_status {
27758
  width: 100%;
27759
  border-bottom: 1px solid #e5e5e5;
27760
}
27761
 
16867 stevensc 27762
.add-pic-box {
16869 stevensc 27763
  width: 50px;
27764
  height: 50px;
27765
  background-color: var(--button-bg);
27766
  border-radius: 50%;
27767
  color: var(--button-text-color) !important;
16867 stevensc 27768
  position: absolute;
16871 stevensc 27769
  top: 1rem;
27770
  right: 1rem;
16869 stevensc 27771
  display: grid;
27772
  place-items: center;
16871 stevensc 27773
  cursor: pointer;
27774
  transition: all .2s ease-in-out;
16867 stevensc 27775
}
27776
 
16871 stevensc 27777
.add-pic-box:hover {
27778
  opacity: 0.80;
27779
}
27780
 
16869 stevensc 27781
.add-pic-box svg,
27782
.add-pic-box i {
16867 stevensc 27783
  font-weight: 600;
16869 stevensc 27784
  color: var(--button-text-color) !important;
16867 stevensc 27785
}
27786
 
16869 stevensc 27787
.cover-sec {
27788
  position: relative;
16871 stevensc 27789
  background: #0008;
27790
  max-height: 400px;
16868 stevensc 27791
}
27792
 
16871 stevensc 27793
.cover-sec img {
27794
  width: 100%;
27795
  height: 100%;
27796
  object-fit: cover;
27797
}
27798
 
16866 stevensc 27799
/* ============= end user_profile ============= */
27800
 
16874 stevensc 27801
/* ============= buttons ============= */
27802
.btn {
27803
  font-size: 0.95rem;
27804
  height: fit-content;
27805
  line-height: 1;
16886 stevensc 27806
  display: inline-flex;
27807
  gap: 5px;
16890 stevensc 27808
  padding: 5px 10px !important;
16874 stevensc 27809
}
27810
 
16886 stevensc 27811
.btn i,
27812
.btn svg {
27813
  font-size: 0.95rem;
27814
}
27815
 
16874 stevensc 27816
.btn-primary {
27817
  background-color: var(--button-bg);
27818
  border-radius: var(--border-radius);
27819
  color: var(--button-text-color) !important;
27820
  border: none !important;
27821
}
27822
 
27823
.btn-primary:hover {
27824
  background-color: var(--button-bg-hover);
27825
}
27826
 
16886 stevensc 27827
.btn-secondary,
27828
.btn-edit {
27829
  background: var(--button-bg-secondary) !important;
27830
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27831
  border-radius: var(--border-radius);
27832
  color: var(--button-text-color-secondary) !important;
27833
}
27834
 
16886 stevensc 27835
.btn-secondary:hover,
27836
.btn-edit:hover {
27837
  background-color: var(--button-bg-secondary-hover) !important;
27838
  border-color: var(--border-trasnparent) !important;
16874 stevensc 27839
}
27840
 
16886 stevensc 27841
.btn-tertiary,
27842
.btn-danger {
27843
  background-color: var(--button-bg-tertiary) !important;
27844
  border-radius: var(--border-radius) !important;
27845
  border-color: #f4f4f4 !important;
16874 stevensc 27846
  color: var(--button-text-color-tertiary) !important;
27847
}
27848
 
16886 stevensc 27849
.btn-tertiary:hover,
27850
.btn-danger:hover {
27851
  background: #d4d4d4 !important;
27852
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27853
  color: var(--border-primary) !important;
27854
}
27855
 
27856
.btn-secondary:disabled,
27857
.btn-primary:disabled,
27858
.btn-tertiary:disabled {
27859
  cursor: no-drop;
27860
}
27861
 
27862
/* ============= end buttons ============= */
27863
 
16875 stevensc 27864
/* ============= profile extended ============= */
16876 stevensc 27865
.main-ws-sec {
27866
  display: flex;
27867
  flex-direction: column;
27868
  gap: 0.5rem;
27869
  width: 100%;
27870
}
27871
 
16877 stevensc 27872
.user-profile-ov {
16875 stevensc 27873
  width: 100%;
27874
  background-color: var(--bg-color);
16878 stevensc 27875
  padding: 10px;
16875 stevensc 27876
  border: 1px solid var(--border-primary);
16879 stevensc 27877
  border-radius: var(--border-radius);
16875 stevensc 27878
}
27879
 
16877 stevensc 27880
.user-profile-ov h3 {
16875 stevensc 27881
  color: var(--title-color);
27882
  font-weight: 600;
27883
}
27884
 
16877 stevensc 27885
.user-profile-ov i,
27886
user-profile-ov svg {
16875 stevensc 27887
  color: var(--icons-color);
27888
  font-size: 13px;
27889
}
27890
 
16877 stevensc 27891
.user-profile-ov strong {
16875 stevensc 27892
  font-weight: bold;
27893
}
27894
 
27895
/* ============= end profile extended ============= */
27896
 
16848 stevensc 27897
/*# sourceMappingURL=../maps/demo1/style.css.map */