Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16886 | Rev 16888 | 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
 
16848 stevensc 156
h6,
157
.h6,
158
h5,
159
.h5,
160
h4,
161
.h4,
162
h3,
163
.h3,
164
h2,
165
.h2,
166
h1,
167
.h1 {
16825 efrain 168
  margin-top: 0;
169
  margin-bottom: 0;
170
  font-weight: 500;
171
  line-height: 1.2;
172
}
173
 
16848 stevensc 174
h1,
175
.h1 {
16825 efrain 176
  font-size: calc(1.375rem + 1.5vw);
177
}
16848 stevensc 178
 
16825 efrain 179
@media (min-width: 1200px) {
16848 stevensc 180
 
181
  h1,
182
  .h1 {
16825 efrain 183
    font-size: 2.5rem;
184
  }
185
}
186
 
16848 stevensc 187
h2,
188
.h2 {
16825 efrain 189
  font-size: calc(1.325rem + 0.9vw);
190
}
16848 stevensc 191
 
16825 efrain 192
@media (min-width: 1200px) {
16848 stevensc 193
 
194
  h2,
195
  .h2 {
16825 efrain 196
    font-size: 2rem;
197
  }
198
}
199
 
16848 stevensc 200
h3,
201
.h3 {
16825 efrain 202
  font-size: calc(1.275rem + 0.3vw);
203
}
16848 stevensc 204
 
16825 efrain 205
@media (min-width: 1200px) {
16848 stevensc 206
 
207
  h3,
208
  .h3 {
16825 efrain 209
    font-size: 1.5rem;
210
  }
211
}
212
 
16848 stevensc 213
h4,
214
.h4 {
16825 efrain 215
  font-size: 1.25rem;
216
}
217
 
16848 stevensc 218
h5,
219
.h5 {
16825 efrain 220
  font-size: 1rem;
221
}
222
 
16848 stevensc 223
h6,
224
.h6 {
16825 efrain 225
  font-size: 0.875rem;
226
}
227
 
228
p {
229
  margin-top: 0;
230
  margin-bottom: 0;
231
}
232
 
233
abbr[title] {
234
  text-decoration: underline dotted;
235
  cursor: help;
236
  text-decoration-skip-ink: none;
237
}
238
 
239
address {
240
  margin-bottom: 1rem;
241
  font-style: normal;
242
  line-height: inherit;
243
}
244
 
245
ol,
246
ul {
16874 stevensc 247
  list-style: none;
16875 stevensc 248
  padding: 0;
16825 efrain 249
}
250
 
251
ol,
252
ul,
253
dl {
254
  margin-top: 0;
16874 stevensc 255
  margin-bottom: 0;
16825 efrain 256
}
257
 
258
ol ol,
259
ul ul,
260
ol ul,
261
ul ol {
262
  margin-bottom: 0;
263
}
264
 
265
dt {
266
  font-weight: 500;
267
}
268
 
269
dd {
270
  margin-bottom: 0.5rem;
271
  margin-left: 0;
272
}
273
 
274
blockquote {
275
  margin: 0 0 1rem;
276
}
277
 
278
b,
279
strong {
280
  font-weight: 700;
281
}
282
 
16848 stevensc 283
small,
284
.small {
16825 efrain 285
  font-size: 0.875em;
286
}
287
 
16848 stevensc 288
mark,
289
.mark {
16825 efrain 290
  padding: 0.1875em;
291
  background-color: var(--bs-highlight-bg);
292
}
293
 
294
sub,
295
sup {
296
  position: relative;
297
  font-size: 0.75em;
298
  line-height: 0;
299
  vertical-align: baseline;
300
}
301
 
302
sub {
303
  bottom: -0.25em;
304
}
305
 
306
sup {
307
  top: -0.5em;
308
}
309
 
310
a {
311
  color: var(--bs-link-color);
312
  text-decoration: none;
313
}
16848 stevensc 314
 
16825 efrain 315
a:hover {
316
  color: var(--bs-link-hover-color);
317
}
318
 
16848 stevensc 319
a:not([href]):not([class]),
320
a:not([href]):not([class]):hover {
16825 efrain 321
  color: inherit;
322
  text-decoration: none;
323
}
324
 
325
pre,
326
code,
327
kbd,
328
samp {
329
  font-family: var(--bs-font-monospace);
330
  font-size: 1em;
331
}
332
 
333
pre {
334
  display: block;
335
  margin-top: 0;
336
  margin-bottom: 1rem;
337
  overflow: auto;
338
  font-size: 0.875em;
339
}
16848 stevensc 340
 
16825 efrain 341
pre code {
342
  font-size: inherit;
343
  color: inherit;
344
  word-break: normal;
345
}
346
 
347
code {
348
  font-size: 0.875em;
349
  color: var(--bs-code-color);
350
  word-wrap: break-word;
351
}
16848 stevensc 352
 
353
a>code {
16825 efrain 354
  color: inherit;
355
}
356
 
357
kbd {
358
  padding: 0.1875rem 0.375rem;
359
  font-size: 0.875em;
360
  color: var(--bs-body-bg);
361
  background-color: var(--bs-body-color);
362
  border-radius: 0.25rem;
363
}
16848 stevensc 364
 
16825 efrain 365
kbd kbd {
366
  padding: 0;
367
  font-size: 1em;
368
}
369
 
370
figure {
371
  margin: 0 0 1rem;
372
}
373
 
374
img,
375
svg {
376
  vertical-align: middle;
377
}
378
 
379
table {
380
  caption-side: bottom;
381
  border-collapse: collapse;
382
}
383
 
384
caption {
385
  padding-top: 0.85rem;
386
  padding-bottom: 0.85rem;
387
  color: #7987a1;
388
  text-align: left;
389
}
390
 
391
th {
392
  text-align: inherit;
393
  text-align: -webkit-match-parent;
394
}
395
 
396
thead,
397
tbody,
398
tfoot,
399
tr,
400
td,
401
th {
402
  border-color: inherit;
403
  border-style: solid;
404
  border-width: 0;
405
}
406
 
407
label {
408
  display: inline-block;
409
}
410
 
411
button {
412
  border-radius: 0;
413
}
414
 
415
button:focus:not(:focus-visible) {
416
  outline: 0;
417
}
418
 
419
input,
420
button,
421
select,
422
optgroup,
423
textarea {
424
  margin: 0;
425
  font-family: inherit;
426
  font-size: inherit;
427
  line-height: inherit;
428
}
429
 
430
button,
431
select {
432
  text-transform: none;
433
}
434
 
435
[role=button] {
436
  cursor: pointer;
437
}
438
 
439
select {
440
  word-wrap: normal;
441
}
16848 stevensc 442
 
16825 efrain 443
select:disabled {
444
  opacity: 1;
445
}
446
 
447
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
448
  display: none !important;
449
}
450
 
451
button,
452
[type=button],
453
[type=reset],
454
[type=submit] {
16848 stevensc 455
  appearance: button;
16825 efrain 456
}
16848 stevensc 457
 
16825 efrain 458
button:not(:disabled),
459
[type=button]:not(:disabled),
460
[type=reset]:not(:disabled),
461
[type=submit]:not(:disabled) {
462
  cursor: pointer;
463
}
464
 
465
::-moz-focus-inner {
466
  padding: 0;
467
  border-style: none;
468
}
469
 
470
textarea {
471
  resize: vertical;
472
}
473
 
474
fieldset {
475
  min-width: 0;
476
  padding: 0;
477
  margin: 0;
478
  border: 0;
479
}
480
 
481
legend {
482
  float: left;
483
  width: 100%;
484
  padding: 0;
485
  margin-bottom: 0.5rem;
486
  font-size: calc(1.275rem + 0.3vw);
487
  line-height: inherit;
488
}
16848 stevensc 489
 
16825 efrain 490
@media (min-width: 1200px) {
491
  legend {
492
    font-size: 1.5rem;
493
  }
494
}
16848 stevensc 495
 
496
legend+* {
16825 efrain 497
  clear: left;
498
}
499
 
500
::-webkit-datetime-edit-fields-wrapper,
501
::-webkit-datetime-edit-text,
502
::-webkit-datetime-edit-minute,
503
::-webkit-datetime-edit-hour-field,
504
::-webkit-datetime-edit-day-field,
505
::-webkit-datetime-edit-month-field,
506
::-webkit-datetime-edit-year-field {
507
  padding: 0;
508
}
509
 
510
::-webkit-inner-spin-button {
511
  height: auto;
512
}
513
 
514
[type=search] {
515
  outline-offset: -2px;
16848 stevensc 516
  appearance: textfield;
16825 efrain 517
}
518
 
519
/* rtl:raw:
520
[type="tel"],
521
[type="url"],
522
[type="email"],
523
[type="number"] {
524
  direction: ltr;
525
}
526
*/
527
::-webkit-search-decoration {
528
  -webkit-appearance: none;
529
}
530
 
531
::-webkit-color-swatch-wrapper {
532
  padding: 0;
533
}
534
 
535
::file-selector-button {
536
  font: inherit;
16848 stevensc 537
  appearance: button;
16825 efrain 538
}
539
 
540
output {
541
  display: inline-block;
542
}
543
 
544
iframe {
545
  border: 0;
546
}
547
 
548
summary {
549
  display: list-item;
550
  cursor: pointer;
551
}
552
 
553
progress {
554
  vertical-align: baseline;
555
}
556
 
557
[hidden] {
558
  display: none !important;
559
}
560
 
561
.lead {
562
  font-size: 1.09375rem;
563
  font-weight: 300;
564
}
565
 
566
.display-1 {
567
  font-size: calc(1.625rem + 4.5vw);
568
  font-weight: 300;
569
  line-height: 1.2;
570
}
16848 stevensc 571
 
16825 efrain 572
@media (min-width: 1200px) {
573
  .display-1 {
574
    font-size: 5rem;
575
  }
576
}
577
 
578
.display-2 {
579
  font-size: calc(1.575rem + 3.9vw);
580
  font-weight: 300;
581
  line-height: 1.2;
582
}
16848 stevensc 583
 
16825 efrain 584
@media (min-width: 1200px) {
585
  .display-2 {
586
    font-size: 4.5rem;
587
  }
588
}
589
 
590
.display-3 {
591
  font-size: calc(1.525rem + 3.3vw);
592
  font-weight: 300;
593
  line-height: 1.2;
594
}
16848 stevensc 595
 
16825 efrain 596
@media (min-width: 1200px) {
597
  .display-3 {
598
    font-size: 4rem;
599
  }
600
}
601
 
602
.display-4 {
603
  font-size: calc(1.475rem + 2.7vw);
604
  font-weight: 300;
605
  line-height: 1.2;
606
}
16848 stevensc 607
 
16825 efrain 608
@media (min-width: 1200px) {
609
  .display-4 {
610
    font-size: 3.5rem;
611
  }
612
}
613
 
614
.display-5 {
615
  font-size: calc(1.425rem + 2.1vw);
616
  font-weight: 300;
617
  line-height: 1.2;
618
}
16848 stevensc 619
 
16825 efrain 620
@media (min-width: 1200px) {
621
  .display-5 {
622
    font-size: 3rem;
623
  }
624
}
625
 
626
.display-6 {
627
  font-size: calc(1.375rem + 1.5vw);
628
  font-weight: 300;
629
  line-height: 1.2;
630
}
16848 stevensc 631
 
16825 efrain 632
@media (min-width: 1200px) {
633
  .display-6 {
634
    font-size: 2.5rem;
635
  }
636
}
637
 
638
.list-unstyled {
639
  padding-left: 0;
640
  list-style: none;
641
}
642
 
643
.list-inline {
644
  padding-left: 0;
645
  list-style: none;
646
}
647
 
648
.list-inline-item {
649
  display: inline-block;
650
}
16848 stevensc 651
 
16825 efrain 652
.list-inline-item:not(:last-child) {
653
  margin-right: 0.5rem;
654
}
655
 
656
.initialism {
657
  font-size: 0.875em;
658
  text-transform: uppercase;
659
}
660
 
661
.blockquote {
662
  margin-bottom: 1rem;
663
  font-size: 1.09375rem;
664
}
16848 stevensc 665
 
666
.blockquote> :last-child {
16825 efrain 667
  margin-bottom: 0;
668
}
669
 
670
.blockquote-footer {
671
  margin-top: -1rem;
672
  margin-bottom: 1rem;
673
  font-size: 0.875em;
674
  color: #7987a1;
675
}
16848 stevensc 676
 
16825 efrain 677
.blockquote-footer::before {
678
  content: "— ";
679
}
680
 
681
.img-fluid {
682
  max-width: 100%;
683
  height: auto;
684
}
685
 
686
.img-thumbnail {
687
  padding: 0.25rem;
688
  background-color: #f9fafb;
689
  border: 1px solid var(--bs-border-color);
690
  border-radius: 0.25rem;
691
  max-width: 100%;
692
  height: auto;
693
}
694
 
695
.figure {
696
  display: inline-block;
697
}
698
 
699
.figure-img {
700
  margin-bottom: 0.5rem;
701
  line-height: 1;
702
}
703
 
704
.figure-caption {
705
  font-size: 0.875em;
706
  color: #7987a1;
707
}
708
 
709
.container,
710
.container-fluid,
711
.container-xxl,
712
.container-xl,
713
.container-lg,
714
.container-md,
715
.container-sm {
716
  --bs-gutter-x: 1.5rem;
717
  --bs-gutter-y: 0;
718
  width: 100%;
719
  padding-right: calc(var(--bs-gutter-x) * 0.5);
720
  padding-left: calc(var(--bs-gutter-x) * 0.5);
721
  margin-right: auto;
722
  margin-left: auto;
723
}
724
 
725
@media (min-width: 576px) {
16848 stevensc 726
 
727
  .container-sm,
728
  .container {
16825 efrain 729
    max-width: 540px;
730
  }
731
}
16848 stevensc 732
 
16825 efrain 733
@media (min-width: 768px) {
16848 stevensc 734
 
735
  .container-md,
736
  .container-sm,
737
  .container {
16825 efrain 738
    max-width: 720px;
739
  }
740
}
16848 stevensc 741
 
16825 efrain 742
@media (min-width: 992px) {
16848 stevensc 743
 
744
  .container-lg,
745
  .container-md,
746
  .container-sm,
747
  .container {
16825 efrain 748
    max-width: 960px;
749
  }
750
}
16848 stevensc 751
 
16825 efrain 752
@media (min-width: 1200px) {
16848 stevensc 753
 
754
  .container-xl,
755
  .container-lg,
756
  .container-md,
757
  .container-sm,
758
  .container {
16825 efrain 759
    max-width: 1140px;
760
  }
761
}
16848 stevensc 762
 
16825 efrain 763
@media (min-width: 1400px) {
16848 stevensc 764
 
765
  .container-xxl,
766
  .container-xl,
767
  .container-lg,
768
  .container-md,
769
  .container-sm,
770
  .container {
16825 efrain 771
    max-width: 1320px;
772
  }
773
}
16848 stevensc 774
 
16825 efrain 775
.row {
776
  --bs-gutter-x: 1.5rem;
777
  --bs-gutter-y: 0;
778
  display: flex;
779
  flex-wrap: wrap;
780
  margin-top: calc(-1 * var(--bs-gutter-y));
781
  margin-right: calc(-0.5 * var(--bs-gutter-x));
782
  margin-left: calc(-0.5 * var(--bs-gutter-x));
783
}
16848 stevensc 784
 
785
.row>* {
16825 efrain 786
  flex-shrink: 0;
787
  width: 100%;
788
  max-width: 100%;
789
  padding-right: calc(var(--bs-gutter-x) * 0.5);
790
  padding-left: calc(var(--bs-gutter-x) * 0.5);
791
  margin-top: var(--bs-gutter-y);
792
}
793
 
794
.col {
795
  flex: 1 0 0%;
796
}
797
 
16848 stevensc 798
.row-cols-auto>* {
16825 efrain 799
  flex: 0 0 auto;
800
  width: auto;
801
}
802
 
16848 stevensc 803
.row-cols-1>* {
16825 efrain 804
  flex: 0 0 auto;
805
  width: 100%;
806
}
807
 
16848 stevensc 808
.row-cols-2>* {
16825 efrain 809
  flex: 0 0 auto;
810
  width: 50%;
811
}
812
 
16848 stevensc 813
.row-cols-3>* {
16825 efrain 814
  flex: 0 0 auto;
815
  width: 33.3333333333%;
816
}
817
 
16848 stevensc 818
.row-cols-4>* {
16825 efrain 819
  flex: 0 0 auto;
820
  width: 25%;
821
}
822
 
16848 stevensc 823
.row-cols-5>* {
16825 efrain 824
  flex: 0 0 auto;
825
  width: 20%;
826
}
827
 
16848 stevensc 828
.row-cols-6>* {
16825 efrain 829
  flex: 0 0 auto;
830
  width: 16.6666666667%;
831
}
832
 
833
.col-auto {
834
  flex: 0 0 auto;
835
  width: auto;
836
}
837
 
838
.col-1 {
839
  flex: 0 0 auto;
840
  width: 8.33333333%;
841
}
842
 
843
.col-2 {
844
  flex: 0 0 auto;
845
  width: 16.66666667%;
846
}
847
 
848
.col-3 {
849
  flex: 0 0 auto;
850
  width: 25%;
851
}
852
 
853
.col-4 {
854
  flex: 0 0 auto;
855
  width: 33.33333333%;
856
}
857
 
858
.col-5 {
859
  flex: 0 0 auto;
860
  width: 41.66666667%;
861
}
862
 
863
.col-6 {
864
  flex: 0 0 auto;
865
  width: 50%;
866
}
867
 
868
.col-7 {
869
  flex: 0 0 auto;
870
  width: 58.33333333%;
871
}
872
 
873
.col-8 {
874
  flex: 0 0 auto;
875
  width: 66.66666667%;
876
}
877
 
878
.col-9 {
879
  flex: 0 0 auto;
880
  width: 75%;
881
}
882
 
883
.col-10 {
884
  flex: 0 0 auto;
885
  width: 83.33333333%;
886
}
887
 
888
.col-11 {
889
  flex: 0 0 auto;
890
  width: 91.66666667%;
891
}
892
 
893
.col-12 {
894
  flex: 0 0 auto;
895
  width: 100%;
896
}
897
 
898
.offset-1 {
899
  margin-left: 8.33333333%;
900
}
901
 
902
.offset-2 {
903
  margin-left: 16.66666667%;
904
}
905
 
906
.offset-3 {
907
  margin-left: 25%;
908
}
909
 
910
.offset-4 {
911
  margin-left: 33.33333333%;
912
}
913
 
914
.offset-5 {
915
  margin-left: 41.66666667%;
916
}
917
 
918
.offset-6 {
919
  margin-left: 50%;
920
}
921
 
922
.offset-7 {
923
  margin-left: 58.33333333%;
924
}
925
 
926
.offset-8 {
927
  margin-left: 66.66666667%;
928
}
929
 
930
.offset-9 {
931
  margin-left: 75%;
932
}
933
 
934
.offset-10 {
935
  margin-left: 83.33333333%;
936
}
937
 
938
.offset-11 {
939
  margin-left: 91.66666667%;
940
}
941
 
942
.g-0,
943
.gx-0 {
944
  --bs-gutter-x: 0;
945
}
946
 
947
.g-0,
948
.gy-0 {
949
  --bs-gutter-y: 0;
950
}
951
 
952
.g-1,
953
.gx-1 {
954
  --bs-gutter-x: 0.25rem;
955
}
956
 
957
.g-1,
958
.gy-1 {
959
  --bs-gutter-y: 0.25rem;
960
}
961
 
962
.g-2,
963
.gx-2 {
964
  --bs-gutter-x: 0.5rem;
965
}
966
 
967
.g-2,
968
.gy-2 {
969
  --bs-gutter-y: 0.5rem;
970
}
971
 
972
.g-3,
973
.gx-3 {
974
  --bs-gutter-x: 1rem;
975
}
976
 
977
.g-3,
978
.gy-3 {
979
  --bs-gutter-y: 1rem;
980
}
981
 
982
.g-4,
983
.gx-4 {
984
  --bs-gutter-x: 1.5rem;
985
}
986
 
987
.g-4,
988
.gy-4 {
989
  --bs-gutter-y: 1.5rem;
990
}
991
 
992
.g-5,
993
.gx-5 {
994
  --bs-gutter-x: 3rem;
995
}
996
 
997
.g-5,
998
.gy-5 {
999
  --bs-gutter-y: 3rem;
1000
}
1001
 
1002
.g-6,
1003
.gx-6 {
1004
  --bs-gutter-x: 4.5rem;
1005
}
1006
 
1007
.g-6,
1008
.gy-6 {
1009
  --bs-gutter-y: 4.5rem;
1010
}
1011
 
1012
.g-7,
1013
.gx-7 {
1014
  --bs-gutter-x: 6rem;
1015
}
1016
 
1017
.g-7,
1018
.gy-7 {
1019
  --bs-gutter-y: 6rem;
1020
}
1021
 
1022
@media (min-width: 576px) {
1023
  .col-sm {
1024
    flex: 1 0 0%;
1025
  }
16848 stevensc 1026
 
1027
  .row-cols-sm-auto>* {
16825 efrain 1028
    flex: 0 0 auto;
1029
    width: auto;
1030
  }
16848 stevensc 1031
 
1032
  .row-cols-sm-1>* {
16825 efrain 1033
    flex: 0 0 auto;
1034
    width: 100%;
1035
  }
16848 stevensc 1036
 
1037
  .row-cols-sm-2>* {
16825 efrain 1038
    flex: 0 0 auto;
1039
    width: 50%;
1040
  }
16848 stevensc 1041
 
1042
  .row-cols-sm-3>* {
16825 efrain 1043
    flex: 0 0 auto;
1044
    width: 33.3333333333%;
1045
  }
16848 stevensc 1046
 
1047
  .row-cols-sm-4>* {
16825 efrain 1048
    flex: 0 0 auto;
1049
    width: 25%;
1050
  }
16848 stevensc 1051
 
1052
  .row-cols-sm-5>* {
16825 efrain 1053
    flex: 0 0 auto;
1054
    width: 20%;
1055
  }
16848 stevensc 1056
 
1057
  .row-cols-sm-6>* {
16825 efrain 1058
    flex: 0 0 auto;
1059
    width: 16.6666666667%;
1060
  }
16848 stevensc 1061
 
16825 efrain 1062
  .col-sm-auto {
1063
    flex: 0 0 auto;
1064
    width: auto;
1065
  }
16848 stevensc 1066
 
16825 efrain 1067
  .col-sm-1 {
1068
    flex: 0 0 auto;
1069
    width: 8.33333333%;
1070
  }
16848 stevensc 1071
 
16825 efrain 1072
  .col-sm-2 {
1073
    flex: 0 0 auto;
1074
    width: 16.66666667%;
1075
  }
16848 stevensc 1076
 
16825 efrain 1077
  .col-sm-3 {
1078
    flex: 0 0 auto;
1079
    width: 25%;
1080
  }
16848 stevensc 1081
 
16825 efrain 1082
  .col-sm-4 {
1083
    flex: 0 0 auto;
1084
    width: 33.33333333%;
1085
  }
16848 stevensc 1086
 
16825 efrain 1087
  .col-sm-5 {
1088
    flex: 0 0 auto;
1089
    width: 41.66666667%;
1090
  }
16848 stevensc 1091
 
16825 efrain 1092
  .col-sm-6 {
1093
    flex: 0 0 auto;
1094
    width: 50%;
1095
  }
16848 stevensc 1096
 
16825 efrain 1097
  .col-sm-7 {
1098
    flex: 0 0 auto;
1099
    width: 58.33333333%;
1100
  }
16848 stevensc 1101
 
16825 efrain 1102
  .col-sm-8 {
1103
    flex: 0 0 auto;
1104
    width: 66.66666667%;
1105
  }
16848 stevensc 1106
 
16825 efrain 1107
  .col-sm-9 {
1108
    flex: 0 0 auto;
1109
    width: 75%;
1110
  }
16848 stevensc 1111
 
16825 efrain 1112
  .col-sm-10 {
1113
    flex: 0 0 auto;
1114
    width: 83.33333333%;
1115
  }
16848 stevensc 1116
 
16825 efrain 1117
  .col-sm-11 {
1118
    flex: 0 0 auto;
1119
    width: 91.66666667%;
1120
  }
16848 stevensc 1121
 
16825 efrain 1122
  .col-sm-12 {
1123
    flex: 0 0 auto;
1124
    width: 100%;
1125
  }
16848 stevensc 1126
 
16825 efrain 1127
  .offset-sm-0 {
1128
    margin-left: 0;
1129
  }
16848 stevensc 1130
 
16825 efrain 1131
  .offset-sm-1 {
1132
    margin-left: 8.33333333%;
1133
  }
16848 stevensc 1134
 
16825 efrain 1135
  .offset-sm-2 {
1136
    margin-left: 16.66666667%;
1137
  }
16848 stevensc 1138
 
16825 efrain 1139
  .offset-sm-3 {
1140
    margin-left: 25%;
1141
  }
16848 stevensc 1142
 
16825 efrain 1143
  .offset-sm-4 {
1144
    margin-left: 33.33333333%;
1145
  }
16848 stevensc 1146
 
16825 efrain 1147
  .offset-sm-5 {
1148
    margin-left: 41.66666667%;
1149
  }
16848 stevensc 1150
 
16825 efrain 1151
  .offset-sm-6 {
1152
    margin-left: 50%;
1153
  }
16848 stevensc 1154
 
16825 efrain 1155
  .offset-sm-7 {
1156
    margin-left: 58.33333333%;
1157
  }
16848 stevensc 1158
 
16825 efrain 1159
  .offset-sm-8 {
1160
    margin-left: 66.66666667%;
1161
  }
16848 stevensc 1162
 
16825 efrain 1163
  .offset-sm-9 {
1164
    margin-left: 75%;
1165
  }
16848 stevensc 1166
 
16825 efrain 1167
  .offset-sm-10 {
1168
    margin-left: 83.33333333%;
1169
  }
16848 stevensc 1170
 
16825 efrain 1171
  .offset-sm-11 {
1172
    margin-left: 91.66666667%;
1173
  }
16848 stevensc 1174
 
16825 efrain 1175
  .g-sm-0,
1176
  .gx-sm-0 {
1177
    --bs-gutter-x: 0;
1178
  }
16848 stevensc 1179
 
16825 efrain 1180
  .g-sm-0,
1181
  .gy-sm-0 {
1182
    --bs-gutter-y: 0;
1183
  }
16848 stevensc 1184
 
16825 efrain 1185
  .g-sm-1,
1186
  .gx-sm-1 {
1187
    --bs-gutter-x: 0.25rem;
1188
  }
16848 stevensc 1189
 
16825 efrain 1190
  .g-sm-1,
1191
  .gy-sm-1 {
1192
    --bs-gutter-y: 0.25rem;
1193
  }
16848 stevensc 1194
 
16825 efrain 1195
  .g-sm-2,
1196
  .gx-sm-2 {
1197
    --bs-gutter-x: 0.5rem;
1198
  }
16848 stevensc 1199
 
16825 efrain 1200
  .g-sm-2,
1201
  .gy-sm-2 {
1202
    --bs-gutter-y: 0.5rem;
1203
  }
16848 stevensc 1204
 
16825 efrain 1205
  .g-sm-3,
1206
  .gx-sm-3 {
1207
    --bs-gutter-x: 1rem;
1208
  }
16848 stevensc 1209
 
16825 efrain 1210
  .g-sm-3,
1211
  .gy-sm-3 {
1212
    --bs-gutter-y: 1rem;
1213
  }
16848 stevensc 1214
 
16825 efrain 1215
  .g-sm-4,
1216
  .gx-sm-4 {
1217
    --bs-gutter-x: 1.5rem;
1218
  }
16848 stevensc 1219
 
16825 efrain 1220
  .g-sm-4,
1221
  .gy-sm-4 {
1222
    --bs-gutter-y: 1.5rem;
1223
  }
16848 stevensc 1224
 
16825 efrain 1225
  .g-sm-5,
1226
  .gx-sm-5 {
1227
    --bs-gutter-x: 3rem;
1228
  }
16848 stevensc 1229
 
16825 efrain 1230
  .g-sm-5,
1231
  .gy-sm-5 {
1232
    --bs-gutter-y: 3rem;
1233
  }
16848 stevensc 1234
 
16825 efrain 1235
  .g-sm-6,
1236
  .gx-sm-6 {
1237
    --bs-gutter-x: 4.5rem;
1238
  }
16848 stevensc 1239
 
16825 efrain 1240
  .g-sm-6,
1241
  .gy-sm-6 {
1242
    --bs-gutter-y: 4.5rem;
1243
  }
16848 stevensc 1244
 
16825 efrain 1245
  .g-sm-7,
1246
  .gx-sm-7 {
1247
    --bs-gutter-x: 6rem;
1248
  }
16848 stevensc 1249
 
16825 efrain 1250
  .g-sm-7,
1251
  .gy-sm-7 {
1252
    --bs-gutter-y: 6rem;
1253
  }
1254
}
16848 stevensc 1255
 
16825 efrain 1256
@media (min-width: 768px) {
1257
  .col-md {
1258
    flex: 1 0 0%;
1259
  }
16848 stevensc 1260
 
1261
  .row-cols-md-auto>* {
16825 efrain 1262
    flex: 0 0 auto;
1263
    width: auto;
1264
  }
16848 stevensc 1265
 
1266
  .row-cols-md-1>* {
16825 efrain 1267
    flex: 0 0 auto;
1268
    width: 100%;
1269
  }
16848 stevensc 1270
 
1271
  .row-cols-md-2>* {
16825 efrain 1272
    flex: 0 0 auto;
1273
    width: 50%;
1274
  }
16848 stevensc 1275
 
1276
  .row-cols-md-3>* {
16825 efrain 1277
    flex: 0 0 auto;
1278
    width: 33.3333333333%;
1279
  }
16848 stevensc 1280
 
1281
  .row-cols-md-4>* {
16825 efrain 1282
    flex: 0 0 auto;
1283
    width: 25%;
1284
  }
16848 stevensc 1285
 
1286
  .row-cols-md-5>* {
16825 efrain 1287
    flex: 0 0 auto;
1288
    width: 20%;
1289
  }
16848 stevensc 1290
 
1291
  .row-cols-md-6>* {
16825 efrain 1292
    flex: 0 0 auto;
1293
    width: 16.6666666667%;
1294
  }
16848 stevensc 1295
 
16825 efrain 1296
  .col-md-auto {
1297
    flex: 0 0 auto;
1298
    width: auto;
1299
  }
16848 stevensc 1300
 
16825 efrain 1301
  .col-md-1 {
1302
    flex: 0 0 auto;
1303
    width: 8.33333333%;
1304
  }
16848 stevensc 1305
 
16825 efrain 1306
  .col-md-2 {
1307
    flex: 0 0 auto;
1308
    width: 16.66666667%;
1309
  }
16848 stevensc 1310
 
16825 efrain 1311
  .col-md-3 {
1312
    flex: 0 0 auto;
1313
    width: 25%;
1314
  }
16848 stevensc 1315
 
16825 efrain 1316
  .col-md-4 {
1317
    flex: 0 0 auto;
1318
    width: 33.33333333%;
1319
  }
16848 stevensc 1320
 
16825 efrain 1321
  .col-md-5 {
1322
    flex: 0 0 auto;
1323
    width: 41.66666667%;
1324
  }
16848 stevensc 1325
 
16825 efrain 1326
  .col-md-6 {
1327
    flex: 0 0 auto;
1328
    width: 50%;
1329
  }
16848 stevensc 1330
 
16825 efrain 1331
  .col-md-7 {
1332
    flex: 0 0 auto;
1333
    width: 58.33333333%;
1334
  }
16848 stevensc 1335
 
16825 efrain 1336
  .col-md-8 {
1337
    flex: 0 0 auto;
1338
    width: 66.66666667%;
1339
  }
16848 stevensc 1340
 
16825 efrain 1341
  .col-md-9 {
1342
    flex: 0 0 auto;
1343
    width: 75%;
1344
  }
16848 stevensc 1345
 
16825 efrain 1346
  .col-md-10 {
1347
    flex: 0 0 auto;
1348
    width: 83.33333333%;
1349
  }
16848 stevensc 1350
 
16825 efrain 1351
  .col-md-11 {
1352
    flex: 0 0 auto;
1353
    width: 91.66666667%;
1354
  }
16848 stevensc 1355
 
16825 efrain 1356
  .col-md-12 {
1357
    flex: 0 0 auto;
1358
    width: 100%;
1359
  }
16848 stevensc 1360
 
16825 efrain 1361
  .offset-md-0 {
1362
    margin-left: 0;
1363
  }
16848 stevensc 1364
 
16825 efrain 1365
  .offset-md-1 {
1366
    margin-left: 8.33333333%;
1367
  }
16848 stevensc 1368
 
16825 efrain 1369
  .offset-md-2 {
1370
    margin-left: 16.66666667%;
1371
  }
16848 stevensc 1372
 
16825 efrain 1373
  .offset-md-3 {
1374
    margin-left: 25%;
1375
  }
16848 stevensc 1376
 
16825 efrain 1377
  .offset-md-4 {
1378
    margin-left: 33.33333333%;
1379
  }
16848 stevensc 1380
 
16825 efrain 1381
  .offset-md-5 {
1382
    margin-left: 41.66666667%;
1383
  }
16848 stevensc 1384
 
16825 efrain 1385
  .offset-md-6 {
1386
    margin-left: 50%;
1387
  }
16848 stevensc 1388
 
16825 efrain 1389
  .offset-md-7 {
1390
    margin-left: 58.33333333%;
1391
  }
16848 stevensc 1392
 
16825 efrain 1393
  .offset-md-8 {
1394
    margin-left: 66.66666667%;
1395
  }
16848 stevensc 1396
 
16825 efrain 1397
  .offset-md-9 {
1398
    margin-left: 75%;
1399
  }
16848 stevensc 1400
 
16825 efrain 1401
  .offset-md-10 {
1402
    margin-left: 83.33333333%;
1403
  }
16848 stevensc 1404
 
16825 efrain 1405
  .offset-md-11 {
1406
    margin-left: 91.66666667%;
1407
  }
16848 stevensc 1408
 
16825 efrain 1409
  .g-md-0,
1410
  .gx-md-0 {
1411
    --bs-gutter-x: 0;
1412
  }
16848 stevensc 1413
 
16825 efrain 1414
  .g-md-0,
1415
  .gy-md-0 {
1416
    --bs-gutter-y: 0;
1417
  }
16848 stevensc 1418
 
16825 efrain 1419
  .g-md-1,
1420
  .gx-md-1 {
1421
    --bs-gutter-x: 0.25rem;
1422
  }
16848 stevensc 1423
 
16825 efrain 1424
  .g-md-1,
1425
  .gy-md-1 {
1426
    --bs-gutter-y: 0.25rem;
1427
  }
16848 stevensc 1428
 
16825 efrain 1429
  .g-md-2,
1430
  .gx-md-2 {
1431
    --bs-gutter-x: 0.5rem;
1432
  }
16848 stevensc 1433
 
16825 efrain 1434
  .g-md-2,
1435
  .gy-md-2 {
1436
    --bs-gutter-y: 0.5rem;
1437
  }
16848 stevensc 1438
 
16825 efrain 1439
  .g-md-3,
1440
  .gx-md-3 {
1441
    --bs-gutter-x: 1rem;
1442
  }
16848 stevensc 1443
 
16825 efrain 1444
  .g-md-3,
1445
  .gy-md-3 {
1446
    --bs-gutter-y: 1rem;
1447
  }
16848 stevensc 1448
 
16825 efrain 1449
  .g-md-4,
1450
  .gx-md-4 {
1451
    --bs-gutter-x: 1.5rem;
1452
  }
16848 stevensc 1453
 
16825 efrain 1454
  .g-md-4,
1455
  .gy-md-4 {
1456
    --bs-gutter-y: 1.5rem;
1457
  }
16848 stevensc 1458
 
16825 efrain 1459
  .g-md-5,
1460
  .gx-md-5 {
1461
    --bs-gutter-x: 3rem;
1462
  }
16848 stevensc 1463
 
16825 efrain 1464
  .g-md-5,
1465
  .gy-md-5 {
1466
    --bs-gutter-y: 3rem;
1467
  }
16848 stevensc 1468
 
16825 efrain 1469
  .g-md-6,
1470
  .gx-md-6 {
1471
    --bs-gutter-x: 4.5rem;
1472
  }
16848 stevensc 1473
 
16825 efrain 1474
  .g-md-6,
1475
  .gy-md-6 {
1476
    --bs-gutter-y: 4.5rem;
1477
  }
16848 stevensc 1478
 
16825 efrain 1479
  .g-md-7,
1480
  .gx-md-7 {
1481
    --bs-gutter-x: 6rem;
1482
  }
16848 stevensc 1483
 
16825 efrain 1484
  .g-md-7,
1485
  .gy-md-7 {
1486
    --bs-gutter-y: 6rem;
1487
  }
1488
}
16848 stevensc 1489
 
16825 efrain 1490
@media (min-width: 992px) {
1491
  .col-lg {
1492
    flex: 1 0 0%;
1493
  }
16848 stevensc 1494
 
1495
  .row-cols-lg-auto>* {
16825 efrain 1496
    flex: 0 0 auto;
1497
    width: auto;
1498
  }
16848 stevensc 1499
 
1500
  .row-cols-lg-1>* {
16825 efrain 1501
    flex: 0 0 auto;
1502
    width: 100%;
1503
  }
16848 stevensc 1504
 
1505
  .row-cols-lg-2>* {
16825 efrain 1506
    flex: 0 0 auto;
1507
    width: 50%;
1508
  }
16848 stevensc 1509
 
1510
  .row-cols-lg-3>* {
16825 efrain 1511
    flex: 0 0 auto;
1512
    width: 33.3333333333%;
1513
  }
16848 stevensc 1514
 
1515
  .row-cols-lg-4>* {
16825 efrain 1516
    flex: 0 0 auto;
1517
    width: 25%;
1518
  }
16848 stevensc 1519
 
1520
  .row-cols-lg-5>* {
16825 efrain 1521
    flex: 0 0 auto;
1522
    width: 20%;
1523
  }
16848 stevensc 1524
 
1525
  .row-cols-lg-6>* {
16825 efrain 1526
    flex: 0 0 auto;
1527
    width: 16.6666666667%;
1528
  }
16848 stevensc 1529
 
16825 efrain 1530
  .col-lg-auto {
1531
    flex: 0 0 auto;
1532
    width: auto;
1533
  }
16848 stevensc 1534
 
16825 efrain 1535
  .col-lg-1 {
1536
    flex: 0 0 auto;
1537
    width: 8.33333333%;
1538
  }
16848 stevensc 1539
 
16825 efrain 1540
  .col-lg-2 {
1541
    flex: 0 0 auto;
1542
    width: 16.66666667%;
1543
  }
16848 stevensc 1544
 
16825 efrain 1545
  .col-lg-3 {
1546
    flex: 0 0 auto;
1547
    width: 25%;
1548
  }
16848 stevensc 1549
 
16825 efrain 1550
  .col-lg-4 {
1551
    flex: 0 0 auto;
1552
    width: 33.33333333%;
1553
  }
16848 stevensc 1554
 
16825 efrain 1555
  .col-lg-5 {
1556
    flex: 0 0 auto;
1557
    width: 41.66666667%;
1558
  }
16848 stevensc 1559
 
16825 efrain 1560
  .col-lg-6 {
1561
    flex: 0 0 auto;
1562
    width: 50%;
1563
  }
16848 stevensc 1564
 
16825 efrain 1565
  .col-lg-7 {
1566
    flex: 0 0 auto;
1567
    width: 58.33333333%;
1568
  }
16848 stevensc 1569
 
16825 efrain 1570
  .col-lg-8 {
1571
    flex: 0 0 auto;
1572
    width: 66.66666667%;
1573
  }
16848 stevensc 1574
 
16825 efrain 1575
  .col-lg-9 {
1576
    flex: 0 0 auto;
1577
    width: 75%;
1578
  }
16848 stevensc 1579
 
16825 efrain 1580
  .col-lg-10 {
1581
    flex: 0 0 auto;
1582
    width: 83.33333333%;
1583
  }
16848 stevensc 1584
 
16825 efrain 1585
  .col-lg-11 {
1586
    flex: 0 0 auto;
1587
    width: 91.66666667%;
1588
  }
16848 stevensc 1589
 
16825 efrain 1590
  .col-lg-12 {
1591
    flex: 0 0 auto;
1592
    width: 100%;
1593
  }
16848 stevensc 1594
 
16825 efrain 1595
  .offset-lg-0 {
1596
    margin-left: 0;
1597
  }
16848 stevensc 1598
 
16825 efrain 1599
  .offset-lg-1 {
1600
    margin-left: 8.33333333%;
1601
  }
16848 stevensc 1602
 
16825 efrain 1603
  .offset-lg-2 {
1604
    margin-left: 16.66666667%;
1605
  }
16848 stevensc 1606
 
16825 efrain 1607
  .offset-lg-3 {
1608
    margin-left: 25%;
1609
  }
16848 stevensc 1610
 
16825 efrain 1611
  .offset-lg-4 {
1612
    margin-left: 33.33333333%;
1613
  }
16848 stevensc 1614
 
16825 efrain 1615
  .offset-lg-5 {
1616
    margin-left: 41.66666667%;
1617
  }
16848 stevensc 1618
 
16825 efrain 1619
  .offset-lg-6 {
1620
    margin-left: 50%;
1621
  }
16848 stevensc 1622
 
16825 efrain 1623
  .offset-lg-7 {
1624
    margin-left: 58.33333333%;
1625
  }
16848 stevensc 1626
 
16825 efrain 1627
  .offset-lg-8 {
1628
    margin-left: 66.66666667%;
1629
  }
16848 stevensc 1630
 
16825 efrain 1631
  .offset-lg-9 {
1632
    margin-left: 75%;
1633
  }
16848 stevensc 1634
 
16825 efrain 1635
  .offset-lg-10 {
1636
    margin-left: 83.33333333%;
1637
  }
16848 stevensc 1638
 
16825 efrain 1639
  .offset-lg-11 {
1640
    margin-left: 91.66666667%;
1641
  }
16848 stevensc 1642
 
16825 efrain 1643
  .g-lg-0,
1644
  .gx-lg-0 {
1645
    --bs-gutter-x: 0;
1646
  }
16848 stevensc 1647
 
16825 efrain 1648
  .g-lg-0,
1649
  .gy-lg-0 {
1650
    --bs-gutter-y: 0;
1651
  }
16848 stevensc 1652
 
16825 efrain 1653
  .g-lg-1,
1654
  .gx-lg-1 {
1655
    --bs-gutter-x: 0.25rem;
1656
  }
16848 stevensc 1657
 
16825 efrain 1658
  .g-lg-1,
1659
  .gy-lg-1 {
1660
    --bs-gutter-y: 0.25rem;
1661
  }
16848 stevensc 1662
 
16825 efrain 1663
  .g-lg-2,
1664
  .gx-lg-2 {
1665
    --bs-gutter-x: 0.5rem;
1666
  }
16848 stevensc 1667
 
16825 efrain 1668
  .g-lg-2,
1669
  .gy-lg-2 {
1670
    --bs-gutter-y: 0.5rem;
1671
  }
16848 stevensc 1672
 
16825 efrain 1673
  .g-lg-3,
1674
  .gx-lg-3 {
1675
    --bs-gutter-x: 1rem;
1676
  }
16848 stevensc 1677
 
16825 efrain 1678
  .g-lg-3,
1679
  .gy-lg-3 {
1680
    --bs-gutter-y: 1rem;
1681
  }
16848 stevensc 1682
 
16825 efrain 1683
  .g-lg-4,
1684
  .gx-lg-4 {
1685
    --bs-gutter-x: 1.5rem;
1686
  }
16848 stevensc 1687
 
16825 efrain 1688
  .g-lg-4,
1689
  .gy-lg-4 {
1690
    --bs-gutter-y: 1.5rem;
1691
  }
16848 stevensc 1692
 
16825 efrain 1693
  .g-lg-5,
1694
  .gx-lg-5 {
1695
    --bs-gutter-x: 3rem;
1696
  }
16848 stevensc 1697
 
16825 efrain 1698
  .g-lg-5,
1699
  .gy-lg-5 {
1700
    --bs-gutter-y: 3rem;
1701
  }
16848 stevensc 1702
 
16825 efrain 1703
  .g-lg-6,
1704
  .gx-lg-6 {
1705
    --bs-gutter-x: 4.5rem;
1706
  }
16848 stevensc 1707
 
16825 efrain 1708
  .g-lg-6,
1709
  .gy-lg-6 {
1710
    --bs-gutter-y: 4.5rem;
1711
  }
16848 stevensc 1712
 
16825 efrain 1713
  .g-lg-7,
1714
  .gx-lg-7 {
1715
    --bs-gutter-x: 6rem;
1716
  }
16848 stevensc 1717
 
16825 efrain 1718
  .g-lg-7,
1719
  .gy-lg-7 {
1720
    --bs-gutter-y: 6rem;
1721
  }
1722
}
16848 stevensc 1723
 
16825 efrain 1724
@media (min-width: 1200px) {
1725
  .col-xl {
1726
    flex: 1 0 0%;
1727
  }
16848 stevensc 1728
 
1729
  .row-cols-xl-auto>* {
16825 efrain 1730
    flex: 0 0 auto;
1731
    width: auto;
1732
  }
16848 stevensc 1733
 
1734
  .row-cols-xl-1>* {
16825 efrain 1735
    flex: 0 0 auto;
1736
    width: 100%;
1737
  }
16848 stevensc 1738
 
1739
  .row-cols-xl-2>* {
16825 efrain 1740
    flex: 0 0 auto;
1741
    width: 50%;
1742
  }
16848 stevensc 1743
 
1744
  .row-cols-xl-3>* {
16825 efrain 1745
    flex: 0 0 auto;
1746
    width: 33.3333333333%;
1747
  }
16848 stevensc 1748
 
1749
  .row-cols-xl-4>* {
16825 efrain 1750
    flex: 0 0 auto;
1751
    width: 25%;
1752
  }
16848 stevensc 1753
 
1754
  .row-cols-xl-5>* {
16825 efrain 1755
    flex: 0 0 auto;
1756
    width: 20%;
1757
  }
16848 stevensc 1758
 
1759
  .row-cols-xl-6>* {
16825 efrain 1760
    flex: 0 0 auto;
1761
    width: 16.6666666667%;
1762
  }
16848 stevensc 1763
 
16825 efrain 1764
  .col-xl-auto {
1765
    flex: 0 0 auto;
1766
    width: auto;
1767
  }
16848 stevensc 1768
 
16825 efrain 1769
  .col-xl-1 {
1770
    flex: 0 0 auto;
1771
    width: 8.33333333%;
1772
  }
16848 stevensc 1773
 
16825 efrain 1774
  .col-xl-2 {
1775
    flex: 0 0 auto;
1776
    width: 16.66666667%;
1777
  }
16848 stevensc 1778
 
16825 efrain 1779
  .col-xl-3 {
1780
    flex: 0 0 auto;
1781
    width: 25%;
1782
  }
16848 stevensc 1783
 
16825 efrain 1784
  .col-xl-4 {
1785
    flex: 0 0 auto;
1786
    width: 33.33333333%;
1787
  }
16848 stevensc 1788
 
16825 efrain 1789
  .col-xl-5 {
1790
    flex: 0 0 auto;
1791
    width: 41.66666667%;
1792
  }
16848 stevensc 1793
 
16825 efrain 1794
  .col-xl-6 {
1795
    flex: 0 0 auto;
1796
    width: 50%;
1797
  }
16848 stevensc 1798
 
16825 efrain 1799
  .col-xl-7 {
1800
    flex: 0 0 auto;
1801
    width: 58.33333333%;
1802
  }
16848 stevensc 1803
 
16825 efrain 1804
  .col-xl-8 {
1805
    flex: 0 0 auto;
1806
    width: 66.66666667%;
1807
  }
16848 stevensc 1808
 
16825 efrain 1809
  .col-xl-9 {
1810
    flex: 0 0 auto;
1811
    width: 75%;
1812
  }
16848 stevensc 1813
 
16825 efrain 1814
  .col-xl-10 {
1815
    flex: 0 0 auto;
1816
    width: 83.33333333%;
1817
  }
16848 stevensc 1818
 
16825 efrain 1819
  .col-xl-11 {
1820
    flex: 0 0 auto;
1821
    width: 91.66666667%;
1822
  }
16848 stevensc 1823
 
16825 efrain 1824
  .col-xl-12 {
1825
    flex: 0 0 auto;
1826
    width: 100%;
1827
  }
16848 stevensc 1828
 
16825 efrain 1829
  .offset-xl-0 {
1830
    margin-left: 0;
1831
  }
16848 stevensc 1832
 
16825 efrain 1833
  .offset-xl-1 {
1834
    margin-left: 8.33333333%;
1835
  }
16848 stevensc 1836
 
16825 efrain 1837
  .offset-xl-2 {
1838
    margin-left: 16.66666667%;
1839
  }
16848 stevensc 1840
 
16825 efrain 1841
  .offset-xl-3 {
1842
    margin-left: 25%;
1843
  }
16848 stevensc 1844
 
16825 efrain 1845
  .offset-xl-4 {
1846
    margin-left: 33.33333333%;
1847
  }
16848 stevensc 1848
 
16825 efrain 1849
  .offset-xl-5 {
1850
    margin-left: 41.66666667%;
1851
  }
16848 stevensc 1852
 
16825 efrain 1853
  .offset-xl-6 {
1854
    margin-left: 50%;
1855
  }
16848 stevensc 1856
 
16825 efrain 1857
  .offset-xl-7 {
1858
    margin-left: 58.33333333%;
1859
  }
16848 stevensc 1860
 
16825 efrain 1861
  .offset-xl-8 {
1862
    margin-left: 66.66666667%;
1863
  }
16848 stevensc 1864
 
16825 efrain 1865
  .offset-xl-9 {
1866
    margin-left: 75%;
1867
  }
16848 stevensc 1868
 
16825 efrain 1869
  .offset-xl-10 {
1870
    margin-left: 83.33333333%;
1871
  }
16848 stevensc 1872
 
16825 efrain 1873
  .offset-xl-11 {
1874
    margin-left: 91.66666667%;
1875
  }
16848 stevensc 1876
 
16825 efrain 1877
  .g-xl-0,
1878
  .gx-xl-0 {
1879
    --bs-gutter-x: 0;
1880
  }
16848 stevensc 1881
 
16825 efrain 1882
  .g-xl-0,
1883
  .gy-xl-0 {
1884
    --bs-gutter-y: 0;
1885
  }
16848 stevensc 1886
 
16825 efrain 1887
  .g-xl-1,
1888
  .gx-xl-1 {
1889
    --bs-gutter-x: 0.25rem;
1890
  }
16848 stevensc 1891
 
16825 efrain 1892
  .g-xl-1,
1893
  .gy-xl-1 {
1894
    --bs-gutter-y: 0.25rem;
1895
  }
16848 stevensc 1896
 
16825 efrain 1897
  .g-xl-2,
1898
  .gx-xl-2 {
1899
    --bs-gutter-x: 0.5rem;
1900
  }
16848 stevensc 1901
 
16825 efrain 1902
  .g-xl-2,
1903
  .gy-xl-2 {
1904
    --bs-gutter-y: 0.5rem;
1905
  }
16848 stevensc 1906
 
16825 efrain 1907
  .g-xl-3,
1908
  .gx-xl-3 {
1909
    --bs-gutter-x: 1rem;
1910
  }
16848 stevensc 1911
 
16825 efrain 1912
  .g-xl-3,
1913
  .gy-xl-3 {
1914
    --bs-gutter-y: 1rem;
1915
  }
16848 stevensc 1916
 
16825 efrain 1917
  .g-xl-4,
1918
  .gx-xl-4 {
1919
    --bs-gutter-x: 1.5rem;
1920
  }
16848 stevensc 1921
 
16825 efrain 1922
  .g-xl-4,
1923
  .gy-xl-4 {
1924
    --bs-gutter-y: 1.5rem;
1925
  }
16848 stevensc 1926
 
16825 efrain 1927
  .g-xl-5,
1928
  .gx-xl-5 {
1929
    --bs-gutter-x: 3rem;
1930
  }
16848 stevensc 1931
 
16825 efrain 1932
  .g-xl-5,
1933
  .gy-xl-5 {
1934
    --bs-gutter-y: 3rem;
1935
  }
16848 stevensc 1936
 
16825 efrain 1937
  .g-xl-6,
1938
  .gx-xl-6 {
1939
    --bs-gutter-x: 4.5rem;
1940
  }
16848 stevensc 1941
 
16825 efrain 1942
  .g-xl-6,
1943
  .gy-xl-6 {
1944
    --bs-gutter-y: 4.5rem;
1945
  }
16848 stevensc 1946
 
16825 efrain 1947
  .g-xl-7,
1948
  .gx-xl-7 {
1949
    --bs-gutter-x: 6rem;
1950
  }
16848 stevensc 1951
 
16825 efrain 1952
  .g-xl-7,
1953
  .gy-xl-7 {
1954
    --bs-gutter-y: 6rem;
1955
  }
1956
}
16848 stevensc 1957
 
16825 efrain 1958
@media (min-width: 1400px) {
1959
  .col-xxl {
1960
    flex: 1 0 0%;
1961
  }
16848 stevensc 1962
 
1963
  .row-cols-xxl-auto>* {
16825 efrain 1964
    flex: 0 0 auto;
1965
    width: auto;
1966
  }
16848 stevensc 1967
 
1968
  .row-cols-xxl-1>* {
16825 efrain 1969
    flex: 0 0 auto;
1970
    width: 100%;
1971
  }
16848 stevensc 1972
 
1973
  .row-cols-xxl-2>* {
16825 efrain 1974
    flex: 0 0 auto;
1975
    width: 50%;
1976
  }
16848 stevensc 1977
 
1978
  .row-cols-xxl-3>* {
16825 efrain 1979
    flex: 0 0 auto;
1980
    width: 33.3333333333%;
1981
  }
16848 stevensc 1982
 
1983
  .row-cols-xxl-4>* {
16825 efrain 1984
    flex: 0 0 auto;
1985
    width: 25%;
1986
  }
16848 stevensc 1987
 
1988
  .row-cols-xxl-5>* {
16825 efrain 1989
    flex: 0 0 auto;
1990
    width: 20%;
1991
  }
16848 stevensc 1992
 
1993
  .row-cols-xxl-6>* {
16825 efrain 1994
    flex: 0 0 auto;
1995
    width: 16.6666666667%;
1996
  }
16848 stevensc 1997
 
16825 efrain 1998
  .col-xxl-auto {
1999
    flex: 0 0 auto;
2000
    width: auto;
2001
  }
16848 stevensc 2002
 
16825 efrain 2003
  .col-xxl-1 {
2004
    flex: 0 0 auto;
2005
    width: 8.33333333%;
2006
  }
16848 stevensc 2007
 
16825 efrain 2008
  .col-xxl-2 {
2009
    flex: 0 0 auto;
2010
    width: 16.66666667%;
2011
  }
16848 stevensc 2012
 
16825 efrain 2013
  .col-xxl-3 {
2014
    flex: 0 0 auto;
2015
    width: 25%;
2016
  }
16848 stevensc 2017
 
16825 efrain 2018
  .col-xxl-4 {
2019
    flex: 0 0 auto;
2020
    width: 33.33333333%;
2021
  }
16848 stevensc 2022
 
16825 efrain 2023
  .col-xxl-5 {
2024
    flex: 0 0 auto;
2025
    width: 41.66666667%;
2026
  }
16848 stevensc 2027
 
16825 efrain 2028
  .col-xxl-6 {
2029
    flex: 0 0 auto;
2030
    width: 50%;
2031
  }
16848 stevensc 2032
 
16825 efrain 2033
  .col-xxl-7 {
2034
    flex: 0 0 auto;
2035
    width: 58.33333333%;
2036
  }
16848 stevensc 2037
 
16825 efrain 2038
  .col-xxl-8 {
2039
    flex: 0 0 auto;
2040
    width: 66.66666667%;
2041
  }
16848 stevensc 2042
 
16825 efrain 2043
  .col-xxl-9 {
2044
    flex: 0 0 auto;
2045
    width: 75%;
2046
  }
16848 stevensc 2047
 
16825 efrain 2048
  .col-xxl-10 {
2049
    flex: 0 0 auto;
2050
    width: 83.33333333%;
2051
  }
16848 stevensc 2052
 
16825 efrain 2053
  .col-xxl-11 {
2054
    flex: 0 0 auto;
2055
    width: 91.66666667%;
2056
  }
16848 stevensc 2057
 
16825 efrain 2058
  .col-xxl-12 {
2059
    flex: 0 0 auto;
2060
    width: 100%;
2061
  }
16848 stevensc 2062
 
16825 efrain 2063
  .offset-xxl-0 {
2064
    margin-left: 0;
2065
  }
16848 stevensc 2066
 
16825 efrain 2067
  .offset-xxl-1 {
2068
    margin-left: 8.33333333%;
2069
  }
16848 stevensc 2070
 
16825 efrain 2071
  .offset-xxl-2 {
2072
    margin-left: 16.66666667%;
2073
  }
16848 stevensc 2074
 
16825 efrain 2075
  .offset-xxl-3 {
2076
    margin-left: 25%;
2077
  }
16848 stevensc 2078
 
16825 efrain 2079
  .offset-xxl-4 {
2080
    margin-left: 33.33333333%;
2081
  }
16848 stevensc 2082
 
16825 efrain 2083
  .offset-xxl-5 {
2084
    margin-left: 41.66666667%;
2085
  }
16848 stevensc 2086
 
16825 efrain 2087
  .offset-xxl-6 {
2088
    margin-left: 50%;
2089
  }
16848 stevensc 2090
 
16825 efrain 2091
  .offset-xxl-7 {
2092
    margin-left: 58.33333333%;
2093
  }
16848 stevensc 2094
 
16825 efrain 2095
  .offset-xxl-8 {
2096
    margin-left: 66.66666667%;
2097
  }
16848 stevensc 2098
 
16825 efrain 2099
  .offset-xxl-9 {
2100
    margin-left: 75%;
2101
  }
16848 stevensc 2102
 
16825 efrain 2103
  .offset-xxl-10 {
2104
    margin-left: 83.33333333%;
2105
  }
16848 stevensc 2106
 
16825 efrain 2107
  .offset-xxl-11 {
2108
    margin-left: 91.66666667%;
2109
  }
16848 stevensc 2110
 
16825 efrain 2111
  .g-xxl-0,
2112
  .gx-xxl-0 {
2113
    --bs-gutter-x: 0;
2114
  }
16848 stevensc 2115
 
16825 efrain 2116
  .g-xxl-0,
2117
  .gy-xxl-0 {
2118
    --bs-gutter-y: 0;
2119
  }
16848 stevensc 2120
 
16825 efrain 2121
  .g-xxl-1,
2122
  .gx-xxl-1 {
2123
    --bs-gutter-x: 0.25rem;
2124
  }
16848 stevensc 2125
 
16825 efrain 2126
  .g-xxl-1,
2127
  .gy-xxl-1 {
2128
    --bs-gutter-y: 0.25rem;
2129
  }
16848 stevensc 2130
 
16825 efrain 2131
  .g-xxl-2,
2132
  .gx-xxl-2 {
2133
    --bs-gutter-x: 0.5rem;
2134
  }
16848 stevensc 2135
 
16825 efrain 2136
  .g-xxl-2,
2137
  .gy-xxl-2 {
2138
    --bs-gutter-y: 0.5rem;
2139
  }
16848 stevensc 2140
 
16825 efrain 2141
  .g-xxl-3,
2142
  .gx-xxl-3 {
2143
    --bs-gutter-x: 1rem;
2144
  }
16848 stevensc 2145
 
16825 efrain 2146
  .g-xxl-3,
2147
  .gy-xxl-3 {
2148
    --bs-gutter-y: 1rem;
2149
  }
16848 stevensc 2150
 
16825 efrain 2151
  .g-xxl-4,
2152
  .gx-xxl-4 {
2153
    --bs-gutter-x: 1.5rem;
2154
  }
16848 stevensc 2155
 
16825 efrain 2156
  .g-xxl-4,
2157
  .gy-xxl-4 {
2158
    --bs-gutter-y: 1.5rem;
2159
  }
16848 stevensc 2160
 
16825 efrain 2161
  .g-xxl-5,
2162
  .gx-xxl-5 {
2163
    --bs-gutter-x: 3rem;
2164
  }
16848 stevensc 2165
 
16825 efrain 2166
  .g-xxl-5,
2167
  .gy-xxl-5 {
2168
    --bs-gutter-y: 3rem;
2169
  }
16848 stevensc 2170
 
16825 efrain 2171
  .g-xxl-6,
2172
  .gx-xxl-6 {
2173
    --bs-gutter-x: 4.5rem;
2174
  }
16848 stevensc 2175
 
16825 efrain 2176
  .g-xxl-6,
2177
  .gy-xxl-6 {
2178
    --bs-gutter-y: 4.5rem;
2179
  }
16848 stevensc 2180
 
16825 efrain 2181
  .g-xxl-7,
2182
  .gx-xxl-7 {
2183
    --bs-gutter-x: 6rem;
2184
  }
16848 stevensc 2185
 
16825 efrain 2186
  .g-xxl-7,
2187
  .gy-xxl-7 {
2188
    --bs-gutter-y: 6rem;
2189
  }
2190
}
16848 stevensc 2191
 
16825 efrain 2192
.table {
2193
  --bs-table-color: var(--bs-body-color);
2194
  --bs-table-bg: transparent;
2195
  --bs-table-border-color: var(--bs-border-color);
2196
  --bs-table-accent-bg: transparent;
2197
  --bs-table-striped-color: var(--bs-body-color);
2198
  --bs-table-striped-bg: #e9ecef;
2199
  --bs-table-active-color: var(--bs-body-color);
2200
  --bs-table-active-bg: #dee2e6;
2201
  --bs-table-hover-color: var(--bs-body-color);
2202
  --bs-table-hover-bg: #e9ecef;
2203
  width: 100%;
2204
  margin-bottom: 1rem;
2205
  color: var(--bs-table-color);
2206
  vertical-align: top;
2207
  border-color: var(--bs-table-border-color);
2208
}
16848 stevensc 2209
 
2210
.table> :not(caption)>*>* {
16825 efrain 2211
  padding: 0.85rem 0.85rem;
2212
  background-color: var(--bs-table-bg);
2213
  border-bottom-width: 1px;
2214
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2215
}
16848 stevensc 2216
 
2217
.table>tbody {
16825 efrain 2218
  vertical-align: inherit;
2219
}
16848 stevensc 2220
 
2221
.table>thead {
16825 efrain 2222
  vertical-align: bottom;
2223
}
2224
 
2225
.table-group-divider {
2226
  border-top: 2px solid #e9ecef;
2227
}
2228
 
2229
.caption-top {
2230
  caption-side: top;
2231
}
2232
 
16848 stevensc 2233
.table-sm> :not(caption)>*>* {
16825 efrain 2234
  padding: 0.55rem 0.55rem;
2235
}
2236
 
16848 stevensc 2237
.table-bordered> :not(caption)>* {
16825 efrain 2238
  border-width: 1px 0;
2239
}
16848 stevensc 2240
 
2241
.table-bordered> :not(caption)>*>* {
16825 efrain 2242
  border-width: 0 1px;
2243
}
2244
 
16848 stevensc 2245
.table-borderless> :not(caption)>*>* {
16825 efrain 2246
  border-bottom-width: 0;
2247
}
16848 stevensc 2248
 
2249
.table-borderless> :not(:first-child) {
16825 efrain 2250
  border-top-width: 0;
2251
}
2252
 
16848 stevensc 2253
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2254
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2255
  color: var(--bs-table-striped-color);
2256
}
2257
 
16848 stevensc 2258
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2259
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2260
  color: var(--bs-table-striped-color);
2261
}
2262
 
2263
.table-active {
2264
  --bs-table-accent-bg: var(--bs-table-active-bg);
2265
  color: var(--bs-table-active-color);
2266
}
2267
 
16848 stevensc 2268
.table-hover>tbody>tr:hover>* {
16825 efrain 2269
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2270
  color: var(--bs-table-hover-color);
2271
}
2272
 
2273
.table-primary {
2274
  --bs-table-color: #000;
2275
  --bs-table-bg: #e0e3ff;
2276
  --bs-table-border-color: #cacce6;
2277
  --bs-table-striped-bg: #d5d8f2;
2278
  --bs-table-striped-color: #000;
2279
  --bs-table-active-bg: #cacce6;
2280
  --bs-table-active-color: #000;
2281
  --bs-table-hover-bg: #cfd2ec;
2282
  --bs-table-hover-color: #000;
2283
  color: var(--bs-table-color);
2284
  border-color: var(--bs-table-border-color);
2285
}
2286
 
2287
.table-secondary {
2288
  --bs-table-color: #000;
2289
  --bs-table-bg: #e4e7ec;
2290
  --bs-table-border-color: #cdd0d4;
2291
  --bs-table-striped-bg: #d9dbe0;
2292
  --bs-table-striped-color: #000;
2293
  --bs-table-active-bg: #cdd0d4;
2294
  --bs-table-active-color: #000;
2295
  --bs-table-hover-bg: #d3d6da;
2296
  --bs-table-hover-color: #000;
2297
  color: var(--bs-table-color);
2298
  border-color: var(--bs-table-border-color);
2299
}
2300
 
2301
.table-success {
2302
  --bs-table-color: #000;
2303
  --bs-table-bg: #cdeddb;
2304
  --bs-table-border-color: #b9d5c5;
2305
  --bs-table-striped-bg: #c3e1d0;
2306
  --bs-table-striped-color: #000;
2307
  --bs-table-active-bg: #b9d5c5;
2308
  --bs-table-active-color: #000;
2309
  --bs-table-hover-bg: #bedbcb;
2310
  --bs-table-hover-color: #000;
2311
  color: var(--bs-table-color);
2312
  border-color: var(--bs-table-border-color);
2313
}
2314
 
2315
.table-info {
2316
  --bs-table-color: #000;
2317
  --bs-table-bg: #e0f6f6;
2318
  --bs-table-border-color: #cadddd;
2319
  --bs-table-striped-bg: #d5eaea;
2320
  --bs-table-striped-color: #000;
2321
  --bs-table-active-bg: #cadddd;
2322
  --bs-table-active-color: #000;
2323
  --bs-table-hover-bg: #cfe4e4;
2324
  --bs-table-hover-color: #000;
2325
  color: var(--bs-table-color);
2326
  border-color: var(--bs-table-border-color);
2327
}
2328
 
2329
.table-warning {
2330
  --bs-table-color: #000;
2331
  --bs-table-bg: #fef2cd;
2332
  --bs-table-border-color: #e5dab9;
2333
  --bs-table-striped-bg: #f1e6c3;
2334
  --bs-table-striped-color: #000;
2335
  --bs-table-active-bg: #e5dab9;
2336
  --bs-table-active-color: #000;
2337
  --bs-table-hover-bg: #ebe0be;
2338
  --bs-table-hover-color: #000;
2339
  color: var(--bs-table-color);
2340
  border-color: var(--bs-table-border-color);
2341
}
2342
 
2343
.table-danger {
2344
  --bs-table-color: #000;
2345
  --bs-table-bg: #ffd6e0;
2346
  --bs-table-border-color: #e6c1ca;
2347
  --bs-table-striped-bg: #f2cbd5;
2348
  --bs-table-striped-color: #000;
2349
  --bs-table-active-bg: #e6c1ca;
2350
  --bs-table-active-color: #000;
2351
  --bs-table-hover-bg: #ecc6cf;
2352
  --bs-table-hover-color: #000;
2353
  color: var(--bs-table-color);
2354
  border-color: var(--bs-table-border-color);
2355
}
2356
 
2357
.table-light {
2358
  --bs-table-color: #000;
2359
  --bs-table-bg: #e9ecef;
2360
  --bs-table-border-color: #d2d4d7;
2361
  --bs-table-striped-bg: #dde0e3;
2362
  --bs-table-striped-color: #000;
2363
  --bs-table-active-bg: #d2d4d7;
2364
  --bs-table-active-color: #000;
2365
  --bs-table-hover-bg: #d8dadd;
2366
  --bs-table-hover-color: #000;
2367
  color: var(--bs-table-color);
2368
  border-color: var(--bs-table-border-color);
2369
}
2370
 
2371
.table-dark {
2372
  --bs-table-color: #fff;
2373
  --bs-table-bg: #060c17;
2374
  --bs-table-border-color: #1f242e;
2375
  --bs-table-striped-bg: #121823;
2376
  --bs-table-striped-color: #fff;
2377
  --bs-table-active-bg: #1f242e;
2378
  --bs-table-active-color: #fff;
2379
  --bs-table-hover-bg: #191e28;
2380
  --bs-table-hover-color: #fff;
2381
  color: var(--bs-table-color);
2382
  border-color: var(--bs-table-border-color);
2383
}
2384
 
2385
.table-responsive {
2386
  overflow-x: auto;
2387
  -webkit-overflow-scrolling: touch;
2388
}
2389
 
2390
@media (max-width: 575.98px) {
2391
  .table-responsive-sm {
2392
    overflow-x: auto;
2393
    -webkit-overflow-scrolling: touch;
2394
  }
2395
}
16848 stevensc 2396
 
16825 efrain 2397
@media (max-width: 767.98px) {
2398
  .table-responsive-md {
2399
    overflow-x: auto;
2400
    -webkit-overflow-scrolling: touch;
2401
  }
2402
}
16848 stevensc 2403
 
16825 efrain 2404
@media (max-width: 991.98px) {
2405
  .table-responsive-lg {
2406
    overflow-x: auto;
2407
    -webkit-overflow-scrolling: touch;
2408
  }
2409
}
16848 stevensc 2410
 
16825 efrain 2411
@media (max-width: 1199.98px) {
2412
  .table-responsive-xl {
2413
    overflow-x: auto;
2414
    -webkit-overflow-scrolling: touch;
2415
  }
2416
}
16848 stevensc 2417
 
16825 efrain 2418
@media (max-width: 1399.98px) {
2419
  .table-responsive-xxl {
2420
    overflow-x: auto;
2421
    -webkit-overflow-scrolling: touch;
2422
  }
2423
}
16848 stevensc 2424
 
16825 efrain 2425
.form-label {
2426
  margin-bottom: 0.5rem;
2427
}
2428
 
2429
.col-form-label {
2430
  padding-top: calc(0.469rem + 1px);
2431
  padding-bottom: calc(0.469rem + 1px);
2432
  margin-bottom: 0;
2433
  font-size: inherit;
2434
  line-height: 1.5;
2435
}
2436
 
2437
.col-form-label-lg {
2438
  padding-top: calc(0.5rem + 1px);
2439
  padding-bottom: calc(0.5rem + 1px);
2440
  font-size: 1rem;
2441
}
2442
 
2443
.col-form-label-sm {
2444
  padding-top: calc(0.391rem + 1px);
2445
  padding-bottom: calc(0.391rem + 1px);
2446
  font-size: 0.812rem;
2447
}
2448
 
2449
.form-text {
2450
  margin-top: 0.25rem;
2451
  font-size: 0.875em;
2452
  color: #7987a1;
2453
}
2454
 
16848 stevensc 2455
.form-control,
2456
.typeahead.tt-input,
2457
.typeahead.tt-hint,
2458
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2459
  display: block;
2460
  width: 100%;
2461
  padding: 0.469rem 0.8rem;
2462
  font-size: 0.875rem;
2463
  font-weight: 400;
2464
  line-height: 1.5;
2465
  color: #000;
2466
  background-color: #fff;
2467
  background-clip: padding-box;
2468
  border: 1px solid #e9ecef;
2469
  appearance: none;
2470
  border-radius: 0.25rem;
2471
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2472
}
16848 stevensc 2473
 
16825 efrain 2474
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2475
 
2476
  .form-control,
2477
  .typeahead.tt-input,
2478
  .typeahead.tt-hint,
2479
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2480
    transition: none;
2481
  }
2482
}
16848 stevensc 2483
 
2484
.form-control[type=file],
2485
[type=file].typeahead.tt-input,
2486
[type=file].typeahead.tt-hint,
2487
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2488
  overflow: hidden;
2489
}
16848 stevensc 2490
 
2491
.form-control[type=file]:not(:disabled):not([readonly]),
2492
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2493
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2494
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2495
  cursor: pointer;
2496
}
16848 stevensc 2497
 
2498
.form-control:focus,
2499
.typeahead.tt-input:focus,
2500
.typeahead.tt-hint:focus,
2501
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2502
  color: #000;
2503
  background-color: #fff;
2504
  border-color: #cbd1db;
2505
  outline: 0;
2506
  box-shadow: none;
2507
}
16848 stevensc 2508
 
2509
.form-control::-webkit-date-and-time-value,
2510
.typeahead.tt-input::-webkit-date-and-time-value,
2511
.typeahead.tt-hint::-webkit-date-and-time-value,
2512
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2513
  height: 1.5em;
2514
}
16848 stevensc 2515
 
2516
.form-control::placeholder,
2517
.typeahead.tt-input::placeholder,
2518
.typeahead.tt-hint::placeholder,
2519
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2520
  color: #aeb7c5;
2521
  opacity: 1;
2522
}
16848 stevensc 2523
 
2524
.form-control:disabled,
2525
.typeahead.tt-input:disabled,
2526
.typeahead.tt-hint:disabled,
2527
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2528
  background-color: #e9ecef;
2529
  opacity: 1;
2530
}
16848 stevensc 2531
 
2532
.form-control::file-selector-button,
2533
.typeahead.tt-input::file-selector-button,
2534
.typeahead.tt-hint::file-selector-button,
2535
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2536
  padding: 0.469rem 0.8rem;
2537
  margin: -0.469rem -0.8rem;
2538
  margin-inline-end: 0.8rem;
2539
  color: #000;
2540
  background-color: #f8f9fa;
2541
  pointer-events: none;
2542
  border-color: inherit;
2543
  border-style: solid;
2544
  border-width: 0;
2545
  border-inline-end-width: 1px;
2546
  border-radius: 0;
2547
  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;
2548
}
16848 stevensc 2549
 
16825 efrain 2550
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2551
 
2552
  .form-control::file-selector-button,
2553
  .typeahead.tt-input::file-selector-button,
2554
  .typeahead.tt-hint::file-selector-button,
2555
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2556
    transition: none;
2557
  }
2558
}
16848 stevensc 2559
 
2560
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2561
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2562
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2563
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2564
  background-color: #ecedee;
2565
}
2566
 
2567
.form-control-plaintext {
2568
  display: block;
2569
  width: 100%;
2570
  padding: 0.469rem 0;
2571
  margin-bottom: 0;
2572
  line-height: 1.5;
2573
  color: #000;
2574
  background-color: transparent;
2575
  border: solid transparent;
2576
  border-width: 1px 0;
2577
}
16848 stevensc 2578
 
16825 efrain 2579
.form-control-plaintext:focus {
2580
  outline: 0;
2581
}
16848 stevensc 2582
 
2583
.form-control-plaintext.form-control-sm,
2584
.form-control-plaintext.form-control-lg {
16825 efrain 2585
  padding-right: 0;
2586
  padding-left: 0;
2587
}
2588
 
2589
.form-control-sm {
2590
  min-height: calc(1.5em + 0.782rem + 2px);
2591
  padding: 0.391rem 0.8rem;
2592
  font-size: 0.812rem;
2593
  border-radius: 0.25rem;
2594
}
16848 stevensc 2595
 
16825 efrain 2596
.form-control-sm::file-selector-button {
2597
  padding: 0.391rem 0.8rem;
2598
  margin: -0.391rem -0.8rem;
2599
  margin-inline-end: 0.8rem;
2600
}
2601
 
2602
.form-control-lg {
2603
  min-height: calc(1.5em + 1rem + 2px);
2604
  padding: 0.5rem 0.8rem;
2605
  font-size: 1rem;
2606
  border-radius: 0.25rem;
2607
}
16848 stevensc 2608
 
16825 efrain 2609
.form-control-lg::file-selector-button {
2610
  padding: 0.5rem 0.8rem;
2611
  margin: -0.5rem -0.8rem;
2612
  margin-inline-end: 0.8rem;
2613
}
2614
 
16848 stevensc 2615
textarea.form-control,
2616
textarea.typeahead.tt-input,
2617
textarea.typeahead.tt-hint,
2618
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2619
  min-height: calc(1.5em + 0.938rem + 2px);
2620
}
16848 stevensc 2621
 
16825 efrain 2622
textarea.form-control-sm {
2623
  min-height: calc(1.5em + 0.782rem + 2px);
2624
}
16848 stevensc 2625
 
16825 efrain 2626
textarea.form-control-lg {
2627
  min-height: calc(1.5em + 1rem + 2px);
2628
}
2629
 
2630
.form-control-color {
2631
  width: 3rem;
2632
  height: calc(1.5em + 0.938rem + 2px);
2633
  padding: 0.469rem;
2634
}
16848 stevensc 2635
 
16825 efrain 2636
.form-control-color:not(:disabled):not([readonly]) {
2637
  cursor: pointer;
2638
}
16848 stevensc 2639
 
16825 efrain 2640
.form-control-color::-moz-color-swatch {
2641
  border: 0 !important;
2642
  border-radius: 0.25rem;
2643
}
16848 stevensc 2644
 
16825 efrain 2645
.form-control-color::-webkit-color-swatch {
2646
  border-radius: 0.25rem;
2647
}
16848 stevensc 2648
 
16825 efrain 2649
.form-control-color.form-control-sm {
2650
  height: calc(1.5em + 0.782rem + 2px);
2651
}
16848 stevensc 2652
 
16825 efrain 2653
.form-control-color.form-control-lg {
2654
  height: calc(1.5em + 1rem + 2px);
2655
}
2656
 
2657
.form-select {
2658
  display: block;
2659
  width: 100%;
2660
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2661
  -moz-padding-start: calc(0.8rem - 3px);
2662
  font-size: 0.875rem;
2663
  font-weight: 400;
2664
  line-height: 1.5;
2665
  color: #000;
2666
  background-color: #fff;
2667
  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");
2668
  background-repeat: no-repeat;
2669
  background-position: right 0.8rem center;
2670
  background-size: 16px 12px;
2671
  border: 1px solid #e9ecef;
2672
  border-radius: 0.25rem;
2673
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2674
  appearance: none;
2675
}
16848 stevensc 2676
 
16825 efrain 2677
@media (prefers-reduced-motion: reduce) {
2678
  .form-select {
2679
    transition: none;
2680
  }
2681
}
16848 stevensc 2682
 
16825 efrain 2683
.form-select:focus {
2684
  border-color: #cbd1db;
2685
  outline: 0;
2686
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2687
}
16848 stevensc 2688
 
2689
.form-select[multiple],
2690
.form-select[size]:not([size="1"]) {
16825 efrain 2691
  padding-right: 0.8rem;
2692
  background-image: none;
2693
}
16848 stevensc 2694
 
16825 efrain 2695
.form-select:disabled {
2696
  background-color: #e9ecef;
2697
}
16848 stevensc 2698
 
16825 efrain 2699
.form-select:-moz-focusring {
2700
  color: transparent;
2701
  text-shadow: 0 0 0 #000;
2702
}
2703
 
2704
.form-select-sm {
2705
  padding-top: 0.391rem;
2706
  padding-bottom: 0.391rem;
2707
  padding-left: 0.8rem;
2708
  font-size: 0.812rem;
2709
  border-radius: 0.25rem;
2710
}
2711
 
2712
.form-select-lg {
2713
  padding-top: 0.5rem;
2714
  padding-bottom: 0.5rem;
2715
  padding-left: 0.8rem;
2716
  font-size: 1rem;
2717
  border-radius: 0.25rem;
2718
}
2719
 
2720
.form-check {
2721
  display: block;
2722
  min-height: 1.3125rem;
2723
  padding-left: 1.8em;
2724
  margin-bottom: 0.125rem;
2725
}
16848 stevensc 2726
 
16825 efrain 2727
.form-check .form-check-input {
2728
  float: left;
2729
  margin-left: -1.8em;
2730
}
2731
 
2732
.form-check-reverse {
2733
  padding-right: 1.8em;
2734
  padding-left: 0;
2735
  text-align: right;
2736
}
16848 stevensc 2737
 
16825 efrain 2738
.form-check-reverse .form-check-input {
2739
  float: right;
2740
  margin-right: -1.8em;
2741
  margin-left: 0;
2742
}
2743
 
2744
.form-check-input {
2745
  width: 1.3em;
2746
  height: 1.3em;
2747
  margin-top: 0.1em;
2748
  vertical-align: top;
2749
  background-color: #fff;
2750
  background-repeat: no-repeat;
2751
  background-position: center;
2752
  background-size: contain;
2753
  border: 1px solid rgba(0, 0, 0, 0.25);
2754
  appearance: none;
2755
  print-color-adjust: exact;
2756
}
16848 stevensc 2757
 
16825 efrain 2758
.form-check-input[type=checkbox] {
2759
  border-radius: 0.15em;
2760
}
16848 stevensc 2761
 
16825 efrain 2762
.form-check-input[type=radio] {
2763
  border-radius: 50%;
2764
}
16848 stevensc 2765
 
16825 efrain 2766
.form-check-input:active {
2767
  filter: brightness(90%);
2768
}
16848 stevensc 2769
 
16825 efrain 2770
.form-check-input:focus {
2771
  border-color: #cbd1db;
2772
  outline: 0;
2773
  box-shadow: none;
2774
}
16848 stevensc 2775
 
16825 efrain 2776
.form-check-input:checked {
2777
  background-color: #6571ff;
2778
  border-color: #6571ff;
2779
}
16848 stevensc 2780
 
16825 efrain 2781
.form-check-input:checked[type=checkbox] {
2782
  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");
2783
}
16848 stevensc 2784
 
16825 efrain 2785
.form-check-input:checked[type=radio] {
2786
  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");
2787
}
16848 stevensc 2788
 
16825 efrain 2789
.form-check-input[type=checkbox]:indeterminate {
2790
  background-color: #6571ff;
2791
  border-color: #6571ff;
2792
  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");
2793
}
16848 stevensc 2794
 
16825 efrain 2795
.form-check-input:disabled {
2796
  pointer-events: none;
2797
  filter: none;
2798
  opacity: 0.5;
2799
}
16848 stevensc 2800
 
2801
.form-check-input[disabled]~.form-check-label,
2802
.form-check-input:disabled~.form-check-label {
16825 efrain 2803
  cursor: default;
2804
  opacity: 0.5;
2805
}
2806
 
2807
.form-switch {
2808
  padding-left: 2.5em;
2809
}
16848 stevensc 2810
 
16825 efrain 2811
.form-switch .form-check-input {
2812
  width: 2em;
2813
  margin-left: -2.5em;
2814
  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");
2815
  background-position: left center;
2816
  border-radius: 2em;
2817
  transition: background-position 0.15s ease-in-out;
2818
}
16848 stevensc 2819
 
16825 efrain 2820
@media (prefers-reduced-motion: reduce) {
2821
  .form-switch .form-check-input {
2822
    transition: none;
2823
  }
2824
}
16848 stevensc 2825
 
16825 efrain 2826
.form-switch .form-check-input:focus {
2827
  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");
2828
}
16848 stevensc 2829
 
16825 efrain 2830
.form-switch .form-check-input:checked {
2831
  background-position: right center;
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='%23fff'/%3e%3c/svg%3e");
2833
}
16848 stevensc 2834
 
16825 efrain 2835
.form-switch.form-check-reverse {
2836
  padding-right: 2.5em;
2837
  padding-left: 0;
2838
}
16848 stevensc 2839
 
16825 efrain 2840
.form-switch.form-check-reverse .form-check-input {
2841
  margin-right: -2.5em;
2842
  margin-left: 0;
2843
}
2844
 
2845
.form-check-inline {
2846
  display: inline-block;
2847
  margin-right: 1rem;
2848
}
2849
 
2850
.btn-check {
2851
  position: absolute;
2852
  clip: rect(0, 0, 0, 0);
2853
  pointer-events: none;
2854
}
16848 stevensc 2855
 
2856
.btn-check[disabled]+.btn,
2857
.wizard>.actions .btn-check[disabled]+a,
2858
div.tox .btn-check[disabled]+.tox-button,
2859
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2860
.fc .btn-check[disabled]+.fc-button-primary,
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 {
16825 efrain 2866
  pointer-events: none;
2867
  filter: none;
2868
  opacity: 0.65;
2869
}
2870
 
2871
.form-range {
2872
  width: 100%;
2873
  height: 1rem;
2874
  padding: 0;
2875
  background-color: transparent;
2876
  appearance: none;
2877
}
16848 stevensc 2878
 
16825 efrain 2879
.form-range:focus {
2880
  outline: 0;
2881
}
16848 stevensc 2882
 
16825 efrain 2883
.form-range:focus::-webkit-slider-thumb {
2884
  box-shadow: 0 0 0 1px #f9fafb, none;
2885
}
16848 stevensc 2886
 
16825 efrain 2887
.form-range:focus::-moz-range-thumb {
2888
  box-shadow: 0 0 0 1px #f9fafb, none;
2889
}
16848 stevensc 2890
 
16825 efrain 2891
.form-range::-moz-focus-outer {
2892
  border: 0;
2893
}
16848 stevensc 2894
 
16825 efrain 2895
.form-range::-webkit-slider-thumb {
2896
  width: 1rem;
2897
  height: 1rem;
2898
  margin-top: -0.25rem;
2899
  background-color: #6571ff;
2900
  border: 0;
2901
  border-radius: 1rem;
2902
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2903
  appearance: none;
2904
}
16848 stevensc 2905
 
16825 efrain 2906
@media (prefers-reduced-motion: reduce) {
2907
  .form-range::-webkit-slider-thumb {
2908
    transition: none;
2909
  }
2910
}
16848 stevensc 2911
 
16825 efrain 2912
.form-range::-webkit-slider-thumb:active {
2913
  background-color: #d1d4ff;
2914
}
16848 stevensc 2915
 
16825 efrain 2916
.form-range::-webkit-slider-runnable-track {
2917
  width: 100%;
2918
  height: 0.5rem;
2919
  color: transparent;
2920
  cursor: pointer;
2921
  background-color: #dee2e6;
2922
  border-color: transparent;
2923
  border-radius: 1rem;
2924
}
16848 stevensc 2925
 
16825 efrain 2926
.form-range::-moz-range-thumb {
2927
  width: 1rem;
2928
  height: 1rem;
2929
  background-color: #6571ff;
2930
  border: 0;
2931
  border-radius: 1rem;
2932
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2933
  appearance: none;
2934
}
16848 stevensc 2935
 
16825 efrain 2936
@media (prefers-reduced-motion: reduce) {
2937
  .form-range::-moz-range-thumb {
2938
    transition: none;
2939
  }
2940
}
16848 stevensc 2941
 
16825 efrain 2942
.form-range::-moz-range-thumb:active {
2943
  background-color: #d1d4ff;
2944
}
16848 stevensc 2945
 
16825 efrain 2946
.form-range::-moz-range-track {
2947
  width: 100%;
2948
  height: 0.5rem;
2949
  color: transparent;
2950
  cursor: pointer;
2951
  background-color: #dee2e6;
2952
  border-color: transparent;
2953
  border-radius: 1rem;
2954
}
16848 stevensc 2955
 
16825 efrain 2956
.form-range:disabled {
2957
  pointer-events: none;
2958
}
16848 stevensc 2959
 
16825 efrain 2960
.form-range:disabled::-webkit-slider-thumb {
2961
  background-color: #aeb7c5;
2962
}
16848 stevensc 2963
 
16825 efrain 2964
.form-range:disabled::-moz-range-thumb {
2965
  background-color: #aeb7c5;
2966
}
2967
 
2968
.form-floating {
2969
  position: relative;
2970
}
16848 stevensc 2971
 
2972
.form-floating>.form-control,
2973
.form-floating>.typeahead.tt-input,
2974
.form-floating>.typeahead.tt-hint,
2975
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2976
.form-floating>.form-control-plaintext,
2977
.form-floating>.form-select {
16825 efrain 2978
  height: calc(3.5rem + 2px);
2979
  line-height: 1.25;
2980
}
16848 stevensc 2981
 
2982
.form-floating>label {
16825 efrain 2983
  position: absolute;
2984
  top: 0;
2985
  left: 0;
2986
  width: 100%;
2987
  height: 100%;
2988
  padding: 1rem 0.8rem;
2989
  overflow: hidden;
2990
  text-align: start;
2991
  text-overflow: ellipsis;
2992
  white-space: nowrap;
2993
  pointer-events: none;
2994
  border: 1px solid transparent;
2995
  transform-origin: 0 0;
2996
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2997
}
16848 stevensc 2998
 
16825 efrain 2999
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3000
  .form-floating>label {
16825 efrain 3001
    transition: none;
3002
  }
3003
}
16848 stevensc 3004
 
3005
.form-floating>.form-control,
3006
.form-floating>.typeahead.tt-input,
3007
.form-floating>.typeahead.tt-hint,
3008
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
3009
.form-floating>.form-control-plaintext {
16825 efrain 3010
  padding: 1rem 0.8rem;
3011
}
16848 stevensc 3012
 
3013
.form-floating>.form-control::placeholder,
3014
.form-floating>.typeahead.tt-input::placeholder,
3015
.form-floating>.typeahead.tt-hint::placeholder,
3016
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
3017
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 3018
  color: transparent;
3019
}
16848 stevensc 3020
 
3021
.form-floating>.form-control:focus,
3022
.form-floating>.typeahead.tt-input:focus,
3023
.form-floating>.typeahead.tt-hint:focus,
3024
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
3025
.form-floating>.form-control:not(:placeholder-shown),
3026
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
3027
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
3028
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3029
.form-floating>.form-control-plaintext:focus,
3030
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3031
  padding-top: 1.625rem;
3032
  padding-bottom: 0.625rem;
3033
}
16848 stevensc 3034
 
3035
.form-floating>.form-control:-webkit-autofill,
3036
.form-floating>.typeahead.tt-input:-webkit-autofill,
3037
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3038
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3039
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3040
  padding-top: 1.625rem;
3041
  padding-bottom: 0.625rem;
3042
}
16848 stevensc 3043
 
3044
.form-floating>.form-select {
16825 efrain 3045
  padding-top: 1.625rem;
3046
  padding-bottom: 0.625rem;
3047
}
16848 stevensc 3048
 
3049
.form-floating>.form-control:focus~label,
3050
.form-floating>.typeahead.tt-input:focus~label,
3051
.form-floating>.typeahead.tt-hint:focus~label,
3052
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3053
.form-floating>.form-control:not(:placeholder-shown)~label,
3054
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3055
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3056
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3057
.form-floating>.form-control-plaintext~label,
3058
.form-floating>.form-select~label {
16825 efrain 3059
  opacity: 0.65;
3060
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3061
}
16848 stevensc 3062
 
3063
.form-floating>.form-control:-webkit-autofill~label,
3064
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3065
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3066
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3067
  opacity: 0.65;
3068
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3069
}
16848 stevensc 3070
 
3071
.form-floating>.form-control-plaintext~label {
16825 efrain 3072
  border-width: 1px 0;
3073
}
3074
 
3075
.input-group {
3076
  position: relative;
3077
  display: flex;
3078
  flex-wrap: wrap;
3079
  align-items: stretch;
3080
  width: 100%;
3081
}
16848 stevensc 3082
 
3083
.input-group>.form-control,
3084
.input-group>.typeahead.tt-input,
3085
.input-group>.typeahead.tt-hint,
3086
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3087
.input-group>.form-select,
3088
.input-group>.form-floating {
16825 efrain 3089
  position: relative;
3090
  flex: 1 1 auto;
3091
  width: 1%;
3092
  min-width: 0;
3093
}
16848 stevensc 3094
 
3095
.input-group>.form-control:focus,
3096
.input-group>.typeahead.tt-input:focus,
3097
.input-group>.typeahead.tt-hint:focus,
3098
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3099
.input-group>.form-select:focus,
3100
.input-group>.form-floating:focus-within {
16825 efrain 3101
  z-index: 5;
3102
}
16848 stevensc 3103
 
3104
.input-group .btn,
3105
.input-group .wizard>.actions a,
3106
.wizard>.actions .input-group a,
3107
.input-group div.tox .tox-button,
3108
div.tox .input-group .tox-button,
3109
.input-group .swal2-popup .swal2-actions button,
3110
.swal2-popup .swal2-actions .input-group button,
3111
.input-group .fc .fc-button-primary,
3112
.fc .input-group .fc-button-primary {
16825 efrain 3113
  position: relative;
3114
  z-index: 2;
3115
}
16848 stevensc 3116
 
3117
.input-group .btn:focus,
3118
.input-group .wizard>.actions a:focus,
3119
.wizard>.actions .input-group a:focus,
3120
.input-group div.tox .tox-button:focus,
3121
div.tox .input-group .tox-button:focus,
3122
.input-group .swal2-popup .swal2-actions button:focus,
3123
.swal2-popup .swal2-actions .input-group button:focus,
3124
.input-group .fc .fc-button-primary:focus,
3125
.fc .input-group .fc-button-primary:focus {
16825 efrain 3126
  z-index: 5;
3127
}
3128
 
3129
.input-group-text {
3130
  display: flex;
3131
  align-items: center;
3132
  padding: 0.469rem 0.563rem;
3133
  font-size: 0.875rem;
3134
  font-weight: 400;
3135
  line-height: 1.5;
3136
  color: #000;
3137
  text-align: center;
3138
  white-space: nowrap;
3139
  background-color: #f8f9fa;
3140
  border: 1px solid #e9ecef;
3141
  border-radius: 0.25rem;
3142
}
3143
 
16848 stevensc 3144
.input-group-lg>.form-control,
3145
.input-group-lg>.typeahead.tt-input,
3146
.input-group-lg>.typeahead.tt-hint,
3147
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3148
.input-group-lg>.form-select,
3149
.input-group-lg>.input-group-text,
3150
.input-group-lg>.btn,
3151
.wizard>.actions .input-group-lg>a,
3152
div.tox .input-group-lg>.tox-button,
3153
.swal2-popup .swal2-actions .input-group-lg>button,
3154
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3155
  padding: 0.5rem 0.8rem;
3156
  font-size: 1rem;
3157
  border-radius: 0.25rem;
3158
}
3159
 
16848 stevensc 3160
.input-group-sm>.form-control,
3161
.input-group-sm>.typeahead.tt-input,
3162
.input-group-sm>.typeahead.tt-hint,
3163
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3164
.input-group-sm>.form-select,
3165
.input-group-sm>.input-group-text,
3166
.input-group-sm>.btn,
3167
.wizard>.actions .input-group-sm>a,
3168
div.tox .input-group-sm>.tox-button,
3169
.swal2-popup .swal2-actions .input-group-sm>button,
3170
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3171
  padding: 0.391rem 0.8rem;
3172
  font-size: 0.812rem;
3173
  border-radius: 0.25rem;
3174
}
3175
 
16848 stevensc 3176
.input-group-lg>.form-select,
3177
.input-group-sm>.form-select {
16825 efrain 3178
  padding-right: 3.2rem;
3179
}
3180
 
16848 stevensc 3181
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3182
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3183
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3184
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3185
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3186
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3187
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3188
  border-top-right-radius: 0;
3189
  border-bottom-right-radius: 0;
3190
}
16848 stevensc 3191
 
3192
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3193
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3194
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3195
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3196
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3197
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3198
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3199
  border-top-right-radius: 0;
3200
  border-bottom-right-radius: 0;
3201
}
16848 stevensc 3202
 
3203
.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 3204
  margin-left: -1px;
3205
  border-top-left-radius: 0;
3206
  border-bottom-left-radius: 0;
3207
}
16848 stevensc 3208
 
3209
.input-group>.form-floating:not(:first-child)>.form-control,
3210
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3211
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3212
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3213
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3214
  border-top-left-radius: 0;
3215
  border-bottom-left-radius: 0;
3216
}
3217
 
3218
.valid-feedback {
3219
  display: none;
3220
  width: 100%;
3221
  margin-top: 0.25rem;
3222
  font-size: 0.875em;
3223
  color: #05a34a;
3224
}
3225
 
3226
.valid-tooltip {
3227
  position: absolute;
3228
  top: 100%;
3229
  z-index: 5;
3230
  display: none;
3231
  max-width: 100%;
3232
  padding: 0.25rem 0.5rem;
3233
  margin-top: 0.1rem;
3234
  font-size: 0.812rem;
3235
  color: #fff;
3236
  background-color: rgba(5, 163, 74, 0.9);
3237
  border-radius: 0.25rem;
3238
}
3239
 
16848 stevensc 3240
.was-validated :valid~.valid-feedback,
3241
.was-validated :valid~.valid-tooltip,
3242
.is-valid~.valid-feedback,
3243
.is-valid~.valid-tooltip {
16825 efrain 3244
  display: block;
3245
}
3246
 
16848 stevensc 3247
.was-validated .form-control:valid,
3248
.was-validated .typeahead.tt-input:valid,
3249
.was-validated .typeahead.tt-hint:valid,
3250
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3251
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3252
.form-control.is-valid,
3253
.is-valid.typeahead.tt-input,
3254
.is-valid.typeahead.tt-hint,
3255
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3256
  border-color: #05a34a;
3257
  padding-right: calc(1.5em + 0.938rem);
3258
  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");
3259
  background-repeat: no-repeat;
3260
  background-position: right calc(0.375em + 0.2345rem) center;
3261
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3262
}
16848 stevensc 3263
 
3264
.was-validated .form-control:valid:focus,
3265
.was-validated .typeahead.tt-input:valid:focus,
3266
.was-validated .typeahead.tt-hint:valid:focus,
3267
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3268
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3269
.form-control.is-valid:focus,
3270
.is-valid.typeahead.tt-input:focus,
3271
.is-valid.typeahead.tt-hint:focus,
3272
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3273
  border-color: #05a34a;
3274
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3275
}
3276
 
16848 stevensc 3277
.was-validated textarea.form-control:valid,
3278
.was-validated textarea.typeahead.tt-input:valid,
3279
.was-validated textarea.typeahead.tt-hint:valid,
3280
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3281
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3282
textarea.form-control.is-valid,
3283
textarea.is-valid.typeahead.tt-input,
3284
textarea.is-valid.typeahead.tt-hint,
3285
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3286
  padding-right: calc(1.5em + 0.938rem);
3287
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3288
}
3289
 
16848 stevensc 3290
.was-validated .form-select:valid,
3291
.form-select.is-valid {
16825 efrain 3292
  border-color: #05a34a;
3293
}
16848 stevensc 3294
 
3295
.was-validated .form-select:valid:not([multiple]):not([size]),
3296
.was-validated .form-select:valid:not([multiple])[size="1"],
3297
.form-select.is-valid:not([multiple]):not([size]),
3298
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3299
  padding-right: 4.4rem;
3300
  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");
3301
  background-position: right 0.8rem center, center right 2.4rem;
3302
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3303
}
16848 stevensc 3304
 
3305
.was-validated .form-select:valid:focus,
3306
.form-select.is-valid:focus {
16825 efrain 3307
  border-color: #05a34a;
3308
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3309
}
3310
 
16848 stevensc 3311
.was-validated .form-control-color:valid,
3312
.form-control-color.is-valid {
16825 efrain 3313
  width: calc(3rem + calc(1.5em + 0.938rem));
3314
}
3315
 
16848 stevensc 3316
.was-validated .form-check-input:valid,
3317
.form-check-input.is-valid {
16825 efrain 3318
  border-color: #05a34a;
3319
}
16848 stevensc 3320
 
3321
.was-validated .form-check-input:valid:checked,
3322
.form-check-input.is-valid:checked {
16825 efrain 3323
  background-color: #05a34a;
3324
}
16848 stevensc 3325
 
3326
.was-validated .form-check-input:valid:focus,
3327
.form-check-input.is-valid:focus {
16825 efrain 3328
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3329
}
16848 stevensc 3330
 
3331
.was-validated .form-check-input:valid~.form-check-label,
3332
.form-check-input.is-valid~.form-check-label {
16825 efrain 3333
  color: #05a34a;
3334
}
3335
 
16848 stevensc 3336
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3337
  margin-left: 0.5em;
3338
}
3339
 
16848 stevensc 3340
.was-validated .input-group>.form-control:not(:focus):valid,
3341
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3342
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3343
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3344
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3345
.input-group>.form-control:not(:focus).is-valid,
3346
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3347
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3348
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3349
.was-validated .input-group>.form-select:not(:focus):valid,
3350
.input-group>.form-select:not(:focus).is-valid,
3351
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3352
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3353
  z-index: 3;
3354
}
3355
 
3356
.invalid-feedback {
3357
  display: none;
3358
  width: 100%;
3359
  margin-top: 0.25rem;
3360
  font-size: 0.875em;
3361
  color: #ff3366;
3362
}
3363
 
3364
.invalid-tooltip {
3365
  position: absolute;
3366
  top: 100%;
3367
  z-index: 5;
3368
  display: none;
3369
  max-width: 100%;
3370
  padding: 0.25rem 0.5rem;
3371
  margin-top: 0.1rem;
3372
  font-size: 0.812rem;
3373
  color: #fff;
3374
  background-color: rgba(255, 51, 102, 0.9);
3375
  border-radius: 0.25rem;
3376
}
3377
 
16848 stevensc 3378
.was-validated :invalid~.invalid-feedback,
3379
.was-validated :invalid~.invalid-tooltip,
3380
.is-invalid~.invalid-feedback,
3381
.is-invalid~.invalid-tooltip {
16825 efrain 3382
  display: block;
3383
}
3384
 
16848 stevensc 3385
.was-validated .form-control:invalid,
3386
.was-validated .typeahead.tt-input:invalid,
3387
.was-validated .typeahead.tt-hint:invalid,
3388
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3389
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3390
.form-control.is-invalid,
3391
.is-invalid.typeahead.tt-input,
3392
.is-invalid.typeahead.tt-hint,
3393
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3394
  border-color: #ff3366;
3395
  padding-right: calc(1.5em + 0.938rem);
3396
  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");
3397
  background-repeat: no-repeat;
3398
  background-position: right calc(0.375em + 0.2345rem) center;
3399
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3400
}
16848 stevensc 3401
 
3402
.was-validated .form-control:invalid:focus,
3403
.was-validated .typeahead.tt-input:invalid:focus,
3404
.was-validated .typeahead.tt-hint:invalid:focus,
3405
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3406
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3407
.form-control.is-invalid:focus,
3408
.is-invalid.typeahead.tt-input:focus,
3409
.is-invalid.typeahead.tt-hint:focus,
3410
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3411
  border-color: #ff3366;
3412
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3413
}
3414
 
16848 stevensc 3415
.was-validated textarea.form-control:invalid,
3416
.was-validated textarea.typeahead.tt-input:invalid,
3417
.was-validated textarea.typeahead.tt-hint:invalid,
3418
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3419
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3420
textarea.form-control.is-invalid,
3421
textarea.is-invalid.typeahead.tt-input,
3422
textarea.is-invalid.typeahead.tt-hint,
3423
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3424
  padding-right: calc(1.5em + 0.938rem);
3425
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3426
}
3427
 
16848 stevensc 3428
.was-validated .form-select:invalid,
3429
.form-select.is-invalid {
16825 efrain 3430
  border-color: #ff3366;
3431
}
16848 stevensc 3432
 
3433
.was-validated .form-select:invalid:not([multiple]):not([size]),
3434
.was-validated .form-select:invalid:not([multiple])[size="1"],
3435
.form-select.is-invalid:not([multiple]):not([size]),
3436
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3437
  padding-right: 4.4rem;
3438
  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");
3439
  background-position: right 0.8rem center, center right 2.4rem;
3440
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3441
}
16848 stevensc 3442
 
3443
.was-validated .form-select:invalid:focus,
3444
.form-select.is-invalid:focus {
16825 efrain 3445
  border-color: #ff3366;
3446
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3447
}
3448
 
16848 stevensc 3449
.was-validated .form-control-color:invalid,
3450
.form-control-color.is-invalid {
16825 efrain 3451
  width: calc(3rem + calc(1.5em + 0.938rem));
3452
}
3453
 
16848 stevensc 3454
.was-validated .form-check-input:invalid,
3455
.form-check-input.is-invalid {
16825 efrain 3456
  border-color: #ff3366;
3457
}
16848 stevensc 3458
 
3459
.was-validated .form-check-input:invalid:checked,
3460
.form-check-input.is-invalid:checked {
16825 efrain 3461
  background-color: #ff3366;
3462
}
16848 stevensc 3463
 
3464
.was-validated .form-check-input:invalid:focus,
3465
.form-check-input.is-invalid:focus {
16825 efrain 3466
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3467
}
16848 stevensc 3468
 
3469
.was-validated .form-check-input:invalid~.form-check-label,
3470
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3471
  color: #ff3366;
3472
}
3473
 
16848 stevensc 3474
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3475
  margin-left: 0.5em;
3476
}
3477
 
16848 stevensc 3478
.was-validated .input-group>.form-control:not(:focus):invalid,
3479
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3480
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3481
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3482
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3483
.input-group>.form-control:not(:focus).is-invalid,
3484
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3485
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3486
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3487
.was-validated .input-group>.form-select:not(:focus):invalid,
3488
.input-group>.form-select:not(:focus).is-invalid,
3489
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3490
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3491
  z-index: 4;
3492
}
3493
 
16848 stevensc 3494
.btn,
3495
.wizard>.actions a,
3496
.wizard>.actions a:active,
3497
.wizard>.actions a:hover,
3498
div.tox .tox-button,
3499
.swal2-popup .swal2-actions button,
3500
.fc .fc-button-primary {
16825 efrain 3501
  --bs-btn-padding-x: 0.8rem;
3502
  --bs-btn-padding-y: 0.469rem;
3503
  --bs-btn-font-family: ;
3504
  --bs-btn-font-size: 0.875rem;
3505
  --bs-btn-font-weight: 400;
3506
  --bs-btn-line-height: 1.5;
3507
  --bs-btn-color: #000;
3508
  --bs-btn-bg: transparent;
3509
  --bs-btn-border-width: 1px;
3510
  --bs-btn-border-color: transparent;
3511
  --bs-btn-border-radius: 0.25rem;
3512
  --bs-btn-hover-border-color: transparent;
3513
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3514
  --bs-btn-disabled-opacity: 0.65;
3515
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3516
  display: inline-block;
3517
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3518
  font-family: var(--bs-btn-font-family);
3519
  font-size: var(--bs-btn-font-size);
3520
  font-weight: var(--bs-btn-font-weight);
3521
  line-height: var(--bs-btn-line-height);
3522
  color: var(--bs-btn-color);
3523
  text-align: center;
3524
  vertical-align: middle;
3525
  cursor: pointer;
3526
  user-select: none;
3527
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3528
  border-radius: var(--bs-btn-border-radius);
3529
  background-color: var(--bs-btn-bg);
3530
  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;
3531
}
16848 stevensc 3532
 
16825 efrain 3533
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3534
 
3535
  .btn,
3536
  .wizard>.actions a,
3537
  .wizard>.actions a:active,
3538
  .wizard>.actions a:hover,
3539
  div.tox .tox-button,
3540
  .swal2-popup .swal2-actions button,
3541
  .fc .fc-button-primary {
16825 efrain 3542
    transition: none;
3543
  }
3544
}
16848 stevensc 3545
 
3546
.btn:hover,
3547
.wizard>.actions a:hover,
3548
div.tox .tox-button:hover,
3549
.swal2-popup .swal2-actions button:hover,
3550
.fc .fc-button-primary:hover {
16825 efrain 3551
  color: var(--bs-btn-hover-color);
3552
  background-color: var(--bs-btn-hover-bg);
3553
  border-color: var(--bs-btn-hover-border-color);
3554
}
16848 stevensc 3555
 
3556
.btn-check+.btn:hover,
3557
.wizard>.actions .btn-check+a:hover,
3558
div.tox .btn-check+.tox-button:hover,
3559
.swal2-popup .swal2-actions .btn-check+button:hover,
3560
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3561
  color: var(--bs-btn-color);
3562
  background-color: var(--bs-btn-bg);
3563
  border-color: var(--bs-btn-border-color);
3564
}
16848 stevensc 3565
 
3566
.btn:focus-visible,
3567
.wizard>.actions a:focus-visible,
3568
div.tox .tox-button:focus-visible,
3569
.swal2-popup .swal2-actions button:focus-visible,
3570
.fc .fc-button-primary:focus-visible {
16825 efrain 3571
  color: var(--bs-btn-hover-color);
3572
  background-color: var(--bs-btn-hover-bg);
3573
  border-color: var(--bs-btn-hover-border-color);
3574
  outline: 0;
3575
  box-shadow: var(--bs-btn-focus-box-shadow);
3576
}
16848 stevensc 3577
 
3578
.btn-check:focus-visible+.btn,
3579
.wizard>.actions .btn-check:focus-visible+a,
3580
div.tox .btn-check:focus-visible+.tox-button,
3581
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3582
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3583
  border-color: var(--bs-btn-hover-border-color);
3584
  outline: 0;
3585
  box-shadow: var(--bs-btn-focus-box-shadow);
3586
}
16848 stevensc 3587
 
3588
.btn-check:checked+.btn,
3589
.wizard>.actions .btn-check:checked+a,
3590
div.tox .btn-check:checked+.tox-button,
3591
.swal2-popup .swal2-actions .btn-check:checked+button,
3592
.fc .btn-check:checked+.fc-button-primary,
3593
:not(.btn-check)+.btn:active,
3594
.wizard>.actions :not(.btn-check)+a:active,
3595
div.tox :not(.btn-check)+.tox-button:active,
3596
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3597
.fc :not(.btn-check)+.fc-button-primary:active,
3598
.btn:first-child:active,
3599
.wizard>.actions a:first-child:active,
3600
div.tox .tox-button:first-child:active,
3601
.swal2-popup .swal2-actions button:first-child:active,
3602
.fc .fc-button-primary:first-child:active,
3603
.btn.active,
3604
.wizard>.actions a.active,
3605
div.tox .active.tox-button,
3606
.swal2-popup .swal2-actions button.active,
3607
.fc .active.fc-button-primary,
3608
.btn.show,
3609
.wizard>.actions a.show,
3610
div.tox .show.tox-button,
3611
.swal2-popup .swal2-actions button.show,
3612
.fc .show.fc-button-primary {
16825 efrain 3613
  color: var(--bs-btn-active-color);
3614
  background-color: var(--bs-btn-active-bg);
3615
  border-color: var(--bs-btn-active-border-color);
3616
}
16848 stevensc 3617
 
3618
.btn-check:checked+.btn:focus-visible,
3619
.wizard>.actions .btn-check:checked+a:focus-visible,
3620
div.tox .btn-check:checked+.tox-button:focus-visible,
3621
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3622
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3623
:not(.btn-check)+.btn:active:focus-visible,
3624
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3625
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3626
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3627
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3628
.btn:first-child:active:focus-visible,
3629
.wizard>.actions a:first-child:active:focus-visible,
3630
div.tox .tox-button:first-child:active:focus-visible,
3631
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3632
.fc .fc-button-primary:first-child:active:focus-visible,
3633
.btn.active:focus-visible,
3634
.wizard>.actions a.active:focus-visible,
3635
div.tox .active.tox-button:focus-visible,
3636
.swal2-popup .swal2-actions button.active:focus-visible,
3637
.fc .active.fc-button-primary:focus-visible,
3638
.btn.show:focus-visible,
3639
.wizard>.actions a.show:focus-visible,
3640
div.tox .show.tox-button:focus-visible,
3641
.swal2-popup .swal2-actions button.show:focus-visible,
3642
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3643
  box-shadow: var(--bs-btn-focus-box-shadow);
3644
}
16848 stevensc 3645
 
3646
.btn:disabled,
3647
.wizard>.actions a:disabled,
3648
div.tox .tox-button:disabled,
3649
.swal2-popup .swal2-actions button:disabled,
3650
.fc .fc-button-primary:disabled,
3651
.btn.disabled,
3652
.wizard>.actions a.disabled,
3653
div.tox .disabled.tox-button,
3654
.swal2-popup .swal2-actions button.disabled,
3655
.fc .disabled.fc-button-primary,
3656
fieldset:disabled .btn,
3657
fieldset:disabled .wizard>.actions a,
3658
.wizard>.actions fieldset:disabled a,
3659
fieldset:disabled div.tox .tox-button,
3660
div.tox fieldset:disabled .tox-button,
3661
fieldset:disabled .swal2-popup .swal2-actions button,
3662
.swal2-popup .swal2-actions fieldset:disabled button,
3663
fieldset:disabled .fc .fc-button-primary,
3664
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3665
  color: var(--bs-btn-disabled-color);
3666
  pointer-events: none;
3667
  background-color: var(--bs-btn-disabled-bg);
3668
  border-color: var(--bs-btn-disabled-border-color);
3669
  opacity: var(--bs-btn-disabled-opacity);
3670
}
3671
 
16848 stevensc 3672
.btn-primary,
3673
.wizard>.actions a,
3674
.wizard>.actions a:active,
3675
.wizard>.actions a:hover,
3676
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3677
.swal2-popup .swal2-actions button.swal2-confirm,
3678
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3679
.fc .fc-button-primary:not(:disabled):active {
3680
  --bs-btn-color: #fff;
3681
  --bs-btn-bg: #6571ff;
3682
  --bs-btn-border-color: #6571ff;
3683
  --bs-btn-hover-color: #fff;
3684
  --bs-btn-hover-bg: #5660d9;
3685
  --bs-btn-hover-border-color: #515acc;
3686
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3687
  --bs-btn-active-color: #fff;
3688
  --bs-btn-active-bg: #515acc;
3689
  --bs-btn-active-border-color: #4c55bf;
3690
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3691
  --bs-btn-disabled-color: #fff;
3692
  --bs-btn-disabled-bg: #6571ff;
3693
  --bs-btn-disabled-border-color: #6571ff;
3694
}
3695
 
16848 stevensc 3696
.btn-secondary,
3697
div.tox .tox-button--secondary {
16825 efrain 3698
  --bs-btn-color: #fff;
3699
  --bs-btn-bg: #7987a1;
3700
  --bs-btn-border-color: #7987a1;
3701
  --bs-btn-hover-color: #fff;
3702
  --bs-btn-hover-bg: #677389;
3703
  --bs-btn-hover-border-color: #616c81;
3704
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3705
  --bs-btn-active-color: #fff;
3706
  --bs-btn-active-bg: #616c81;
3707
  --bs-btn-active-border-color: #5b6579;
3708
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3709
  --bs-btn-disabled-color: #fff;
3710
  --bs-btn-disabled-bg: #7987a1;
3711
  --bs-btn-disabled-border-color: #7987a1;
3712
}
3713
 
3714
.btn-success {
3715
  --bs-btn-color: #fff;
3716
  --bs-btn-bg: #05a34a;
3717
  --bs-btn-border-color: #05a34a;
3718
  --bs-btn-hover-color: #fff;
3719
  --bs-btn-hover-bg: #048b3f;
3720
  --bs-btn-hover-border-color: #04823b;
3721
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3722
  --bs-btn-active-color: #fff;
3723
  --bs-btn-active-bg: #04823b;
3724
  --bs-btn-active-border-color: #047a38;
3725
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3726
  --bs-btn-disabled-color: #fff;
3727
  --bs-btn-disabled-bg: #05a34a;
3728
  --bs-btn-disabled-border-color: #05a34a;
3729
}
3730
 
3731
.btn-info {
3732
  --bs-btn-color: #000;
3733
  --bs-btn-bg: #66d1d1;
3734
  --bs-btn-border-color: #66d1d1;
3735
  --bs-btn-hover-color: #000;
3736
  --bs-btn-hover-bg: #7dd8d8;
3737
  --bs-btn-hover-border-color: #75d6d6;
3738
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3739
  --bs-btn-active-color: #000;
3740
  --bs-btn-active-bg: #85dada;
3741
  --bs-btn-active-border-color: #75d6d6;
3742
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3743
  --bs-btn-disabled-color: #000;
3744
  --bs-btn-disabled-bg: #66d1d1;
3745
  --bs-btn-disabled-border-color: #66d1d1;
3746
}
3747
 
3748
.btn-warning {
3749
  --bs-btn-color: #000;
3750
  --bs-btn-bg: #fbbc06;
3751
  --bs-btn-border-color: #fbbc06;
3752
  --bs-btn-hover-color: #000;
3753
  --bs-btn-hover-bg: #fcc62b;
3754
  --bs-btn-hover-border-color: #fbc31f;
3755
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3756
  --bs-btn-active-color: #000;
3757
  --bs-btn-active-bg: #fcc938;
3758
  --bs-btn-active-border-color: #fbc31f;
3759
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3760
  --bs-btn-disabled-color: #000;
3761
  --bs-btn-disabled-bg: #fbbc06;
3762
  --bs-btn-disabled-border-color: #fbbc06;
3763
}
3764
 
16848 stevensc 3765
.btn-danger,
3766
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3767
  --bs-btn-color: #fff;
3768
  --bs-btn-bg: #ff3366;
3769
  --bs-btn-border-color: #ff3366;
3770
  --bs-btn-hover-color: #fff;
3771
  --bs-btn-hover-bg: #d92b57;
3772
  --bs-btn-hover-border-color: #cc2952;
3773
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3774
  --bs-btn-active-color: #fff;
3775
  --bs-btn-active-bg: #cc2952;
3776
  --bs-btn-active-border-color: #bf264d;
3777
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3778
  --bs-btn-disabled-color: #fff;
3779
  --bs-btn-disabled-bg: #ff3366;
3780
  --bs-btn-disabled-border-color: #ff3366;
3781
}
3782
 
3783
.btn-light {
3784
  --bs-btn-color: #000;
3785
  --bs-btn-bg: #e9ecef;
3786
  --bs-btn-border-color: #e9ecef;
3787
  --bs-btn-hover-color: #000;
3788
  --bs-btn-hover-bg: #c6c9cb;
3789
  --bs-btn-hover-border-color: #babdbf;
3790
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3791
  --bs-btn-active-color: #000;
3792
  --bs-btn-active-bg: #babdbf;
3793
  --bs-btn-active-border-color: #afb1b3;
3794
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3795
  --bs-btn-disabled-color: #000;
3796
  --bs-btn-disabled-bg: #e9ecef;
3797
  --bs-btn-disabled-border-color: #e9ecef;
3798
}
3799
 
3800
.btn-dark {
3801
  --bs-btn-color: #fff;
3802
  --bs-btn-bg: #060c17;
3803
  --bs-btn-border-color: #060c17;
3804
  --bs-btn-hover-color: #fff;
3805
  --bs-btn-hover-bg: #2b303a;
3806
  --bs-btn-hover-border-color: #1f242e;
3807
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3808
  --bs-btn-active-color: #fff;
3809
  --bs-btn-active-bg: #383d45;
3810
  --bs-btn-active-border-color: #1f242e;
3811
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3812
  --bs-btn-disabled-color: #fff;
3813
  --bs-btn-disabled-bg: #060c17;
3814
  --bs-btn-disabled-border-color: #060c17;
3815
}
3816
 
16848 stevensc 3817
.btn-outline-primary,
3818
.fc .fc-button-primary {
16825 efrain 3819
  --bs-btn-color: #6571ff;
3820
  --bs-btn-border-color: #6571ff;
3821
  --bs-btn-hover-color: #fff;
3822
  --bs-btn-hover-bg: #6571ff;
3823
  --bs-btn-hover-border-color: #6571ff;
3824
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3825
  --bs-btn-active-color: #fff;
3826
  --bs-btn-active-bg: #6571ff;
3827
  --bs-btn-active-border-color: #6571ff;
3828
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3829
  --bs-btn-disabled-color: #6571ff;
3830
  --bs-btn-disabled-bg: transparent;
3831
  --bs-btn-disabled-border-color: #6571ff;
3832
  --bs-gradient: none;
3833
}
3834
 
3835
.btn-outline-secondary {
3836
  --bs-btn-color: #7987a1;
3837
  --bs-btn-border-color: #7987a1;
3838
  --bs-btn-hover-color: #fff;
3839
  --bs-btn-hover-bg: #7987a1;
3840
  --bs-btn-hover-border-color: #7987a1;
3841
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3842
  --bs-btn-active-color: #fff;
3843
  --bs-btn-active-bg: #7987a1;
3844
  --bs-btn-active-border-color: #7987a1;
3845
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3846
  --bs-btn-disabled-color: #7987a1;
3847
  --bs-btn-disabled-bg: transparent;
3848
  --bs-btn-disabled-border-color: #7987a1;
3849
  --bs-gradient: none;
3850
}
3851
 
3852
.btn-outline-success {
3853
  --bs-btn-color: #05a34a;
3854
  --bs-btn-border-color: #05a34a;
3855
  --bs-btn-hover-color: #fff;
3856
  --bs-btn-hover-bg: #05a34a;
3857
  --bs-btn-hover-border-color: #05a34a;
3858
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3859
  --bs-btn-active-color: #fff;
3860
  --bs-btn-active-bg: #05a34a;
3861
  --bs-btn-active-border-color: #05a34a;
3862
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3863
  --bs-btn-disabled-color: #05a34a;
3864
  --bs-btn-disabled-bg: transparent;
3865
  --bs-btn-disabled-border-color: #05a34a;
3866
  --bs-gradient: none;
3867
}
3868
 
3869
.btn-outline-info {
3870
  --bs-btn-color: #66d1d1;
3871
  --bs-btn-border-color: #66d1d1;
3872
  --bs-btn-hover-color: #000;
3873
  --bs-btn-hover-bg: #66d1d1;
3874
  --bs-btn-hover-border-color: #66d1d1;
3875
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3876
  --bs-btn-active-color: #000;
3877
  --bs-btn-active-bg: #66d1d1;
3878
  --bs-btn-active-border-color: #66d1d1;
3879
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3880
  --bs-btn-disabled-color: #66d1d1;
3881
  --bs-btn-disabled-bg: transparent;
3882
  --bs-btn-disabled-border-color: #66d1d1;
3883
  --bs-gradient: none;
3884
}
3885
 
3886
.btn-outline-warning {
3887
  --bs-btn-color: #fbbc06;
3888
  --bs-btn-border-color: #fbbc06;
3889
  --bs-btn-hover-color: #000;
3890
  --bs-btn-hover-bg: #fbbc06;
3891
  --bs-btn-hover-border-color: #fbbc06;
3892
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3893
  --bs-btn-active-color: #000;
3894
  --bs-btn-active-bg: #fbbc06;
3895
  --bs-btn-active-border-color: #fbbc06;
3896
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3897
  --bs-btn-disabled-color: #fbbc06;
3898
  --bs-btn-disabled-bg: transparent;
3899
  --bs-btn-disabled-border-color: #fbbc06;
3900
  --bs-gradient: none;
3901
}
3902
 
3903
.btn-outline-danger {
3904
  --bs-btn-color: #ff3366;
3905
  --bs-btn-border-color: #ff3366;
3906
  --bs-btn-hover-color: #fff;
3907
  --bs-btn-hover-bg: #ff3366;
3908
  --bs-btn-hover-border-color: #ff3366;
3909
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3910
  --bs-btn-active-color: #fff;
3911
  --bs-btn-active-bg: #ff3366;
3912
  --bs-btn-active-border-color: #ff3366;
3913
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3914
  --bs-btn-disabled-color: #ff3366;
3915
  --bs-btn-disabled-bg: transparent;
3916
  --bs-btn-disabled-border-color: #ff3366;
3917
  --bs-gradient: none;
3918
}
3919
 
3920
.btn-outline-light {
3921
  --bs-btn-color: #e9ecef;
3922
  --bs-btn-border-color: #e9ecef;
3923
  --bs-btn-hover-color: #000;
3924
  --bs-btn-hover-bg: #e9ecef;
3925
  --bs-btn-hover-border-color: #e9ecef;
3926
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3927
  --bs-btn-active-color: #000;
3928
  --bs-btn-active-bg: #e9ecef;
3929
  --bs-btn-active-border-color: #e9ecef;
3930
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3931
  --bs-btn-disabled-color: #e9ecef;
3932
  --bs-btn-disabled-bg: transparent;
3933
  --bs-btn-disabled-border-color: #e9ecef;
3934
  --bs-gradient: none;
3935
}
3936
 
3937
.btn-outline-dark {
3938
  --bs-btn-color: #060c17;
3939
  --bs-btn-border-color: #060c17;
3940
  --bs-btn-hover-color: #fff;
3941
  --bs-btn-hover-bg: #060c17;
3942
  --bs-btn-hover-border-color: #060c17;
3943
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3944
  --bs-btn-active-color: #fff;
3945
  --bs-btn-active-bg: #060c17;
3946
  --bs-btn-active-border-color: #060c17;
3947
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3948
  --bs-btn-disabled-color: #060c17;
3949
  --bs-btn-disabled-bg: transparent;
3950
  --bs-btn-disabled-border-color: #060c17;
3951
  --bs-gradient: none;
3952
}
3953
 
3954
.btn-link {
3955
  --bs-btn-font-weight: 400;
3956
  --bs-btn-color: var(--bs-link-color);
3957
  --bs-btn-bg: transparent;
3958
  --bs-btn-border-color: transparent;
3959
  --bs-btn-hover-color: var(--bs-link-hover-color);
3960
  --bs-btn-hover-border-color: transparent;
3961
  --bs-btn-active-color: var(--bs-link-hover-color);
3962
  --bs-btn-active-border-color: transparent;
3963
  --bs-btn-disabled-color: #7987a1;
3964
  --bs-btn-disabled-border-color: transparent;
3965
  --bs-btn-box-shadow: none;
3966
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3967
  text-decoration: none;
3968
}
16848 stevensc 3969
 
16825 efrain 3970
.btn-link:focus-visible {
3971
  color: var(--bs-btn-color);
3972
}
16848 stevensc 3973
 
16825 efrain 3974
.btn-link:hover {
3975
  color: var(--bs-btn-hover-color);
3976
}
3977
 
16848 stevensc 3978
.btn-lg,
3979
.btn-group-lg>.btn,
3980
.wizard>.actions .btn-group-lg>a,
3981
div.tox .btn-group-lg>.tox-button,
3982
.swal2-popup .swal2-actions .btn-group-lg>button,
3983
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3984
  --bs-btn-padding-y: 0.5rem;
3985
  --bs-btn-padding-x: 0.8rem;
3986
  --bs-btn-font-size: 1rem;
3987
  --bs-btn-border-radius: 0.25rem;
3988
}
3989
 
16848 stevensc 3990
.btn-sm,
3991
.fc .fc-button-primary,
3992
.btn-group-sm>.btn,
3993
.wizard>.actions .btn-group-sm>a,
3994
div.tox .btn-group-sm>.tox-button,
3995
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3996
  --bs-btn-padding-y: 0.391rem;
3997
  --bs-btn-padding-x: 0.8rem;
3998
  --bs-btn-font-size: 0.812rem;
3999
  --bs-btn-border-radius: 0.25rem;
4000
}
4001
 
4002
.fade {
4003
  transition: opacity 0.15s linear;
4004
}
16848 stevensc 4005
 
16825 efrain 4006
@media (prefers-reduced-motion: reduce) {
4007
  .fade {
4008
    transition: none;
4009
  }
4010
}
16848 stevensc 4011
 
16825 efrain 4012
.fade:not(.show) {
4013
  opacity: 0;
4014
}
4015
 
4016
.collapse:not(.show) {
4017
  display: none;
4018
}
4019
 
4020
.collapsing {
4021
  height: 0;
4022
  overflow: hidden;
4023
  transition: height 0.35s ease;
4024
}
16848 stevensc 4025
 
16825 efrain 4026
@media (prefers-reduced-motion: reduce) {
4027
  .collapsing {
4028
    transition: none;
4029
  }
4030
}
16848 stevensc 4031
 
16825 efrain 4032
.collapsing.collapse-horizontal {
4033
  width: 0;
4034
  height: auto;
4035
  transition: width 0.35s ease;
4036
}
16848 stevensc 4037
 
16825 efrain 4038
@media (prefers-reduced-motion: reduce) {
4039
  .collapsing.collapse-horizontal {
4040
    transition: none;
4041
  }
4042
}
4043
 
4044
.dropup,
4045
.dropend,
4046
.dropdown,
4047
.dropstart,
4048
.dropup-center,
4049
.dropdown-center {
4050
  position: relative;
4051
}
4052
 
4053
.dropdown-toggle {
4054
  white-space: nowrap;
4055
}
16848 stevensc 4056
 
16825 efrain 4057
.dropdown-toggle::after {
4058
  display: inline-block;
4059
  margin-left: 0.255em;
4060
  vertical-align: 0.255em;
4061
  content: "";
4062
  border-top: 0.3em solid;
4063
  border-right: 0.3em solid transparent;
4064
  border-bottom: 0;
4065
  border-left: 0.3em solid transparent;
4066
}
16848 stevensc 4067
 
16825 efrain 4068
.dropdown-toggle:empty::after {
4069
  margin-left: 0;
4070
}
4071
 
16848 stevensc 4072
.dropdown-menu,
4073
.tt-menu {
16825 efrain 4074
  --bs-dropdown-zindex: 1000;
4075
  --bs-dropdown-min-width: 10rem;
4076
  --bs-dropdown-padding-x: 0;
4077
  --bs-dropdown-padding-y: 0.5rem;
4078
  --bs-dropdown-spacer: 0.125rem;
4079
  --bs-dropdown-font-size: 0.875rem;
4080
  --bs-dropdown-color: #000;
4081
  --bs-dropdown-bg: #fff;
4082
  --bs-dropdown-border-color: #f2f4f9;
4083
  --bs-dropdown-border-radius: 0.25rem;
4084
  --bs-dropdown-border-width: 1px;
4085
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4086
  --bs-dropdown-divider-bg: #f2f4f9;
4087
  --bs-dropdown-divider-margin-y: 0.5rem;
4088
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4089
  --bs-dropdown-link-color: #060c17;
4090
  --bs-dropdown-link-hover-color: #050b15;
4091
  --bs-dropdown-link-hover-bg: #e9ecef;
4092
  --bs-dropdown-link-active-color: #fff;
4093
  --bs-dropdown-link-active-bg: #6571ff;
4094
  --bs-dropdown-link-disabled-color: #aeb7c5;
4095
  --bs-dropdown-item-padding-x: 1rem;
4096
  --bs-dropdown-item-padding-y: 0.25rem;
4097
  --bs-dropdown-header-color: #7987a1;
4098
  --bs-dropdown-header-padding-x: 1rem;
4099
  --bs-dropdown-header-padding-y: 0.5rem;
4100
  position: absolute;
4101
  z-index: var(--bs-dropdown-zindex);
4102
  display: none;
4103
  min-width: var(--bs-dropdown-min-width);
4104
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4105
  margin: 0;
4106
  font-size: var(--bs-dropdown-font-size);
4107
  color: var(--bs-dropdown-color);
4108
  text-align: left;
4109
  list-style: none;
4110
  background-color: var(--bs-dropdown-bg);
4111
  background-clip: padding-box;
4112
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4113
  border-radius: var(--bs-dropdown-border-radius);
4114
}
16848 stevensc 4115
 
4116
.dropdown-menu[data-bs-popper],
4117
[data-bs-popper].tt-menu {
16825 efrain 4118
  top: 100%;
4119
  left: 0;
4120
  margin-top: var(--bs-dropdown-spacer);
4121
}
4122
 
4123
.dropdown-menu-start {
4124
  --bs-position: start;
4125
}
16848 stevensc 4126
 
16825 efrain 4127
.dropdown-menu-start[data-bs-popper] {
4128
  right: auto;
4129
  left: 0;
4130
}
4131
 
4132
.dropdown-menu-end {
4133
  --bs-position: end;
4134
}
16848 stevensc 4135
 
16825 efrain 4136
.dropdown-menu-end[data-bs-popper] {
4137
  right: 0;
4138
  left: auto;
4139
}
4140
 
4141
@media (min-width: 576px) {
4142
  .dropdown-menu-sm-start {
4143
    --bs-position: start;
4144
  }
16848 stevensc 4145
 
16825 efrain 4146
  .dropdown-menu-sm-start[data-bs-popper] {
4147
    right: auto;
4148
    left: 0;
4149
  }
16848 stevensc 4150
 
16825 efrain 4151
  .dropdown-menu-sm-end {
4152
    --bs-position: end;
4153
  }
16848 stevensc 4154
 
16825 efrain 4155
  .dropdown-menu-sm-end[data-bs-popper] {
4156
    right: 0;
4157
    left: auto;
4158
  }
4159
}
16848 stevensc 4160
 
16825 efrain 4161
@media (min-width: 768px) {
4162
  .dropdown-menu-md-start {
4163
    --bs-position: start;
4164
  }
16848 stevensc 4165
 
16825 efrain 4166
  .dropdown-menu-md-start[data-bs-popper] {
4167
    right: auto;
4168
    left: 0;
4169
  }
16848 stevensc 4170
 
16825 efrain 4171
  .dropdown-menu-md-end {
4172
    --bs-position: end;
4173
  }
16848 stevensc 4174
 
16825 efrain 4175
  .dropdown-menu-md-end[data-bs-popper] {
4176
    right: 0;
4177
    left: auto;
4178
  }
4179
}
16848 stevensc 4180
 
16825 efrain 4181
@media (min-width: 992px) {
4182
  .dropdown-menu-lg-start {
4183
    --bs-position: start;
4184
  }
16848 stevensc 4185
 
16825 efrain 4186
  .dropdown-menu-lg-start[data-bs-popper] {
4187
    right: auto;
4188
    left: 0;
4189
  }
16848 stevensc 4190
 
16825 efrain 4191
  .dropdown-menu-lg-end {
4192
    --bs-position: end;
4193
  }
16848 stevensc 4194
 
16825 efrain 4195
  .dropdown-menu-lg-end[data-bs-popper] {
4196
    right: 0;
4197
    left: auto;
4198
  }
4199
}
16848 stevensc 4200
 
16825 efrain 4201
@media (min-width: 1200px) {
4202
  .dropdown-menu-xl-start {
4203
    --bs-position: start;
4204
  }
16848 stevensc 4205
 
16825 efrain 4206
  .dropdown-menu-xl-start[data-bs-popper] {
4207
    right: auto;
4208
    left: 0;
4209
  }
16848 stevensc 4210
 
16825 efrain 4211
  .dropdown-menu-xl-end {
4212
    --bs-position: end;
4213
  }
16848 stevensc 4214
 
16825 efrain 4215
  .dropdown-menu-xl-end[data-bs-popper] {
4216
    right: 0;
4217
    left: auto;
4218
  }
4219
}
16848 stevensc 4220
 
16825 efrain 4221
@media (min-width: 1400px) {
4222
  .dropdown-menu-xxl-start {
4223
    --bs-position: start;
4224
  }
16848 stevensc 4225
 
16825 efrain 4226
  .dropdown-menu-xxl-start[data-bs-popper] {
4227
    right: auto;
4228
    left: 0;
4229
  }
16848 stevensc 4230
 
16825 efrain 4231
  .dropdown-menu-xxl-end {
4232
    --bs-position: end;
4233
  }
16848 stevensc 4234
 
16825 efrain 4235
  .dropdown-menu-xxl-end[data-bs-popper] {
4236
    right: 0;
4237
    left: auto;
4238
  }
4239
}
16848 stevensc 4240
 
4241
.dropup .dropdown-menu[data-bs-popper],
4242
.dropup [data-bs-popper].tt-menu {
16825 efrain 4243
  top: auto;
4244
  bottom: 100%;
4245
  margin-top: 0;
4246
  margin-bottom: var(--bs-dropdown-spacer);
4247
}
16848 stevensc 4248
 
16825 efrain 4249
.dropup .dropdown-toggle::after {
4250
  display: inline-block;
4251
  margin-left: 0.255em;
4252
  vertical-align: 0.255em;
4253
  content: "";
4254
  border-top: 0;
4255
  border-right: 0.3em solid transparent;
4256
  border-bottom: 0.3em solid;
4257
  border-left: 0.3em solid transparent;
4258
}
16848 stevensc 4259
 
16825 efrain 4260
.dropup .dropdown-toggle:empty::after {
4261
  margin-left: 0;
4262
}
4263
 
16848 stevensc 4264
.dropend .dropdown-menu[data-bs-popper],
4265
.dropend [data-bs-popper].tt-menu {
16825 efrain 4266
  top: 0;
4267
  right: auto;
4268
  left: 100%;
4269
  margin-top: 0;
4270
  margin-left: var(--bs-dropdown-spacer);
4271
}
16848 stevensc 4272
 
16825 efrain 4273
.dropend .dropdown-toggle::after {
4274
  display: inline-block;
4275
  margin-left: 0.255em;
4276
  vertical-align: 0.255em;
4277
  content: "";
4278
  border-top: 0.3em solid transparent;
4279
  border-right: 0;
4280
  border-bottom: 0.3em solid transparent;
4281
  border-left: 0.3em solid;
4282
}
16848 stevensc 4283
 
16825 efrain 4284
.dropend .dropdown-toggle:empty::after {
4285
  margin-left: 0;
4286
}
16848 stevensc 4287
 
16825 efrain 4288
.dropend .dropdown-toggle::after {
4289
  vertical-align: 0;
4290
}
4291
 
16848 stevensc 4292
.dropstart .dropdown-menu[data-bs-popper],
4293
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4294
  top: 0;
4295
  right: 100%;
4296
  left: auto;
4297
  margin-top: 0;
4298
  margin-right: var(--bs-dropdown-spacer);
4299
}
16848 stevensc 4300
 
16825 efrain 4301
.dropstart .dropdown-toggle::after {
4302
  display: inline-block;
4303
  margin-left: 0.255em;
4304
  vertical-align: 0.255em;
4305
  content: "";
4306
}
16848 stevensc 4307
 
16825 efrain 4308
.dropstart .dropdown-toggle::after {
4309
  display: none;
4310
}
16848 stevensc 4311
 
16825 efrain 4312
.dropstart .dropdown-toggle::before {
4313
  display: inline-block;
4314
  margin-right: 0.255em;
4315
  vertical-align: 0.255em;
4316
  content: "";
4317
  border-top: 0.3em solid transparent;
4318
  border-right: 0.3em solid;
4319
  border-bottom: 0.3em solid transparent;
4320
}
16848 stevensc 4321
 
16825 efrain 4322
.dropstart .dropdown-toggle:empty::after {
4323
  margin-left: 0;
4324
}
16848 stevensc 4325
 
16825 efrain 4326
.dropstart .dropdown-toggle::before {
4327
  vertical-align: 0;
4328
}
4329
 
4330
.dropdown-divider {
4331
  height: 0;
4332
  margin: var(--bs-dropdown-divider-margin-y) 0;
4333
  overflow: hidden;
4334
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4335
  opacity: 1;
4336
}
4337
 
16848 stevensc 4338
.dropdown-item,
4339
.tt-menu .tt-suggestion {
16825 efrain 4340
  display: block;
4341
  width: 100%;
4342
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4343
  clear: both;
4344
  font-weight: 400;
4345
  color: var(--bs-dropdown-link-color);
4346
  text-align: inherit;
4347
  white-space: nowrap;
4348
  background-color: transparent;
4349
  border: 0;
4350
}
16848 stevensc 4351
 
4352
.dropdown-item:hover,
4353
.tt-menu .tt-suggestion:hover,
4354
.dropdown-item:focus,
4355
.tt-menu .tt-suggestion:focus {
16825 efrain 4356
  color: var(--bs-dropdown-link-hover-color);
4357
  background-color: var(--bs-dropdown-link-hover-bg);
4358
}
16848 stevensc 4359
 
4360
.dropdown-item.active,
4361
.tt-menu .active.tt-suggestion,
4362
.dropdown-item:active,
4363
.tt-menu .tt-suggestion:active {
16825 efrain 4364
  color: var(--bs-dropdown-link-active-color);
4365
  text-decoration: none;
4366
  background-color: var(--bs-dropdown-link-active-bg);
4367
}
16848 stevensc 4368
 
4369
.dropdown-item.disabled,
4370
.tt-menu .disabled.tt-suggestion,
4371
.dropdown-item:disabled,
4372
.tt-menu .tt-suggestion:disabled {
16825 efrain 4373
  color: var(--bs-dropdown-link-disabled-color);
4374
  pointer-events: none;
4375
  background-color: transparent;
4376
}
4377
 
16848 stevensc 4378
.dropdown-menu.show,
4379
.show.tt-menu {
16825 efrain 4380
  display: block;
4381
}
4382
 
4383
.dropdown-header {
4384
  display: block;
4385
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4386
  margin-bottom: 0;
4387
  font-size: 0.812rem;
4388
  color: var(--bs-dropdown-header-color);
4389
  white-space: nowrap;
4390
}
4391
 
4392
.dropdown-item-text {
4393
  display: block;
4394
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4395
  color: var(--bs-dropdown-link-color);
4396
}
4397
 
4398
.dropdown-menu-dark {
4399
  --bs-dropdown-color: #dee2e6;
4400
  --bs-dropdown-bg: #212a3a;
4401
  --bs-dropdown-border-color: #f2f4f9;
4402
  --bs-dropdown-box-shadow: ;
4403
  --bs-dropdown-link-color: #dee2e6;
4404
  --bs-dropdown-link-hover-color: #fff;
4405
  --bs-dropdown-divider-bg: #f2f4f9;
4406
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4407
  --bs-dropdown-link-active-color: #fff;
4408
  --bs-dropdown-link-active-bg: #6571ff;
4409
  --bs-dropdown-link-disabled-color: #aeb7c5;
4410
  --bs-dropdown-header-color: #aeb7c5;
4411
}
4412
 
4413
.btn-group,
4414
.btn-group-vertical {
4415
  position: relative;
4416
  display: inline-flex;
4417
  vertical-align: middle;
4418
}
16848 stevensc 4419
 
4420
.btn-group>.btn,
4421
.wizard>.actions .btn-group>a,
4422
div.tox .btn-group>.tox-button,
4423
.swal2-popup .swal2-actions .btn-group>button,
4424
.fc .btn-group>.fc-button-primary,
4425
.btn-group-vertical>.btn,
4426
.wizard>.actions .btn-group-vertical>a,
4427
div.tox .btn-group-vertical>.tox-button,
4428
.swal2-popup .swal2-actions .btn-group-vertical>button,
4429
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4430
  position: relative;
4431
  flex: 1 1 auto;
4432
}
16848 stevensc 4433
 
4434
.btn-group>.btn-check:checked+.btn,
4435
.wizard>.actions .btn-group>.btn-check:checked+a,
4436
div.tox .btn-group>.btn-check:checked+.tox-button,
4437
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4438
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4439
.btn-group>.btn-check:focus+.btn,
4440
.wizard>.actions .btn-group>.btn-check:focus+a,
4441
div.tox .btn-group>.btn-check:focus+.tox-button,
4442
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4443
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4444
.btn-group>.btn:hover,
4445
.wizard>.actions .btn-group>a:hover,
4446
div.tox .btn-group>.tox-button:hover,
4447
.swal2-popup .swal2-actions .btn-group>button:hover,
4448
.fc .btn-group>.fc-button-primary:hover,
4449
.btn-group>.btn:focus,
4450
.wizard>.actions .btn-group>a:focus,
4451
div.tox .btn-group>.tox-button:focus,
4452
.swal2-popup .swal2-actions .btn-group>button:focus,
4453
.fc .btn-group>.fc-button-primary:focus,
4454
.btn-group>.btn:active,
4455
.wizard>.actions .btn-group>a:active,
4456
div.tox .btn-group>.tox-button:active,
4457
.swal2-popup .swal2-actions .btn-group>button:active,
4458
.fc .btn-group>.fc-button-primary:active,
4459
.btn-group>.btn.active,
4460
.wizard>.actions .btn-group>a.active,
4461
div.tox .btn-group>.active.tox-button,
4462
.swal2-popup .swal2-actions .btn-group>button.active,
4463
.fc .btn-group>.active.fc-button-primary,
4464
.btn-group-vertical>.btn-check:checked+.btn,
4465
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4466
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4467
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4468
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4469
.btn-group-vertical>.btn-check:focus+.btn,
4470
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4471
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4472
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4473
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4474
.btn-group-vertical>.btn:hover,
4475
.wizard>.actions .btn-group-vertical>a:hover,
4476
div.tox .btn-group-vertical>.tox-button:hover,
4477
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4478
.fc .btn-group-vertical>.fc-button-primary:hover,
4479
.btn-group-vertical>.btn:focus,
4480
.wizard>.actions .btn-group-vertical>a:focus,
4481
div.tox .btn-group-vertical>.tox-button:focus,
4482
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4483
.fc .btn-group-vertical>.fc-button-primary:focus,
4484
.btn-group-vertical>.btn:active,
4485
.wizard>.actions .btn-group-vertical>a:active,
4486
div.tox .btn-group-vertical>.tox-button:active,
4487
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4488
.fc .btn-group-vertical>.fc-button-primary:active,
4489
.btn-group-vertical>.btn.active,
4490
.wizard>.actions .btn-group-vertical>a.active,
4491
div.tox .btn-group-vertical>.active.tox-button,
4492
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4493
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4494
  z-index: 1;
4495
}
4496
 
4497
.btn-toolbar {
4498
  display: flex;
4499
  flex-wrap: wrap;
4500
  justify-content: flex-start;
4501
}
16848 stevensc 4502
 
16825 efrain 4503
.btn-toolbar .input-group {
4504
  width: auto;
4505
}
4506
 
4507
.btn-group {
4508
  border-radius: 0.25rem;
4509
}
16848 stevensc 4510
 
4511
.btn-group> :not(.btn-check:first-child)+.btn,
4512
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4513
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4514
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4515
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4516
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4517
  margin-left: -1px;
4518
}
16848 stevensc 4519
 
4520
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4521
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4522
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4523
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4524
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4525
.btn-group>.btn.dropdown-toggle-split:first-child,
4526
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4527
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4528
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4529
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4530
.btn-group>.btn-group:not(:last-child)>.btn,
4531
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4532
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4533
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4534
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4535
  border-top-right-radius: 0;
4536
  border-bottom-right-radius: 0;
4537
}
16848 stevensc 4538
 
4539
.btn-group>.btn:nth-child(n+3),
4540
.wizard>.actions .btn-group>a:nth-child(n+3),
4541
div.tox .btn-group>.tox-button:nth-child(n+3),
4542
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4543
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4544
.btn-group> :not(.btn-check)+.btn,
4545
.wizard>.actions .btn-group> :not(.btn-check)+a,
4546
div.tox .btn-group> :not(.btn-check)+.tox-button,
4547
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4548
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4549
.btn-group>.btn-group:not(:first-child)>.btn,
4550
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4551
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4552
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4553
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4554
  border-top-left-radius: 0;
4555
  border-bottom-left-radius: 0;
4556
}
4557
 
4558
.dropdown-toggle-split {
4559
  padding-right: 0.6rem;
4560
  padding-left: 0.6rem;
4561
}
16848 stevensc 4562
 
4563
.dropdown-toggle-split::after,
4564
.dropup .dropdown-toggle-split::after,
4565
.dropend .dropdown-toggle-split::after {
16825 efrain 4566
  margin-left: 0;
4567
}
16848 stevensc 4568
 
16825 efrain 4569
.dropstart .dropdown-toggle-split::before {
4570
  margin-right: 0;
4571
}
4572
 
16848 stevensc 4573
.btn-sm+.dropdown-toggle-split,
4574
.fc .fc-button-primary+.dropdown-toggle-split,
4575
.btn-group-sm>.btn+.dropdown-toggle-split,
4576
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4577
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4578
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4579
  padding-right: 0.6rem;
4580
  padding-left: 0.6rem;
4581
}
4582
 
16848 stevensc 4583
.btn-lg+.dropdown-toggle-split,
4584
.btn-group-lg>.btn+.dropdown-toggle-split,
4585
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4586
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4587
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4588
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4589
  padding-right: 0.6rem;
4590
  padding-left: 0.6rem;
4591
}
4592
 
4593
.btn-group-vertical {
4594
  flex-direction: column;
4595
  align-items: flex-start;
4596
  justify-content: center;
4597
}
16848 stevensc 4598
 
4599
.btn-group-vertical>.btn,
4600
.wizard>.actions .btn-group-vertical>a,
4601
div.tox .btn-group-vertical>.tox-button,
4602
.swal2-popup .swal2-actions .btn-group-vertical>button,
4603
.fc .btn-group-vertical>.fc-button-primary,
4604
.btn-group-vertical>.btn-group {
16825 efrain 4605
  width: 100%;
4606
}
16848 stevensc 4607
 
4608
.btn-group-vertical>.btn:not(:first-child),
4609
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4610
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4611
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4612
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4613
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4614
  margin-top: -1px;
4615
}
16848 stevensc 4616
 
4617
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4618
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4619
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4620
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4621
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4622
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4623
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4624
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4625
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4626
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4627
  border-bottom-right-radius: 0;
4628
  border-bottom-left-radius: 0;
4629
}
16848 stevensc 4630
 
4631
.btn-group-vertical>.btn~.btn,
4632
.wizard>.actions .btn-group-vertical>a~.btn,
4633
.wizard>.actions .btn-group-vertical>.btn~a,
4634
.wizard>.actions .btn-group-vertical>a~a,
4635
div.tox .btn-group-vertical>.tox-button~.btn,
4636
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4637
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4638
div.tox .btn-group-vertical>.btn~.tox-button,
4639
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4640
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4641
div.tox .btn-group-vertical>.tox-button~.tox-button,
4642
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4643
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4644
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4645
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4646
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4647
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4648
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4649
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4650
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4651
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4652
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4653
.fc .btn-group-vertical>.fc-button-primary~.btn,
4654
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4655
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4656
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4657
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4658
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4659
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4660
.fc .btn-group-vertical>.btn~.fc-button-primary,
4661
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4662
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4663
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4664
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4665
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4666
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4667
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4668
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4669
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4670
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4671
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4672
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4673
  border-top-left-radius: 0;
4674
  border-top-right-radius: 0;
4675
}
4676
 
4677
.nav {
4678
  --bs-nav-link-padding-x: 1rem;
4679
  --bs-nav-link-padding-y: 0.5rem;
4680
  --bs-nav-link-font-weight: ;
4681
  --bs-nav-link-color: var(--bs-link-color);
4682
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4683
  --bs-nav-link-disabled-color: #7987a1;
4684
  display: flex;
4685
  flex-wrap: wrap;
4686
  padding-left: 0;
4687
  margin-bottom: 0;
4688
  list-style: none;
4689
}
4690
 
4691
.nav-link {
4692
  display: block;
4693
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4694
  font-size: var(--bs-nav-link-font-size);
4695
  font-weight: var(--bs-nav-link-font-weight);
4696
  color: var(--bs-nav-link-color);
4697
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4698
}
16848 stevensc 4699
 
16825 efrain 4700
@media (prefers-reduced-motion: reduce) {
4701
  .nav-link {
4702
    transition: none;
4703
  }
4704
}
16848 stevensc 4705
 
4706
.nav-link:hover,
4707
.nav-link:focus {
16825 efrain 4708
  color: var(--bs-nav-link-hover-color);
4709
}
16848 stevensc 4710
 
16825 efrain 4711
.nav-link.disabled {
4712
  color: var(--bs-nav-link-disabled-color);
4713
  pointer-events: none;
4714
  cursor: default;
4715
}
4716
 
4717
.nav-tabs {
4718
  --bs-nav-tabs-border-width: 1px;
4719
  --bs-nav-tabs-border-color: #dee2e6;
4720
  --bs-nav-tabs-border-radius: 0.25rem;
4721
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4722
  --bs-nav-tabs-link-active-color: #41516c;
4723
  --bs-nav-tabs-link-active-bg: #fff;
4724
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4725
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4726
}
16848 stevensc 4727
 
16825 efrain 4728
.nav-tabs .nav-link {
4729
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4730
  background: none;
4731
  border: var(--bs-nav-tabs-border-width) solid transparent;
4732
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4733
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4734
}
16848 stevensc 4735
 
4736
.nav-tabs .nav-link:hover,
4737
.nav-tabs .nav-link:focus {
16825 efrain 4738
  isolation: isolate;
4739
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4740
}
16848 stevensc 4741
 
4742
.nav-tabs .nav-link.disabled,
4743
.nav-tabs .nav-link:disabled {
16825 efrain 4744
  color: var(--bs-nav-link-disabled-color);
4745
  background-color: transparent;
4746
  border-color: transparent;
4747
}
16848 stevensc 4748
 
16825 efrain 4749
.nav-tabs .nav-link.active,
4750
.nav-tabs .nav-item.show .nav-link {
4751
  color: var(--bs-nav-tabs-link-active-color);
4752
  background-color: var(--bs-nav-tabs-link-active-bg);
4753
  border-color: var(--bs-nav-tabs-link-active-border-color);
4754
}
16848 stevensc 4755
 
4756
.nav-tabs .dropdown-menu,
4757
.nav-tabs .tt-menu {
16825 efrain 4758
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4759
  border-top-left-radius: 0;
4760
  border-top-right-radius: 0;
4761
}
4762
 
4763
.nav-pills {
4764
  --bs-nav-pills-border-radius: 0.25rem;
4765
  --bs-nav-pills-link-active-color: #fff;
4766
  --bs-nav-pills-link-active-bg: #6571ff;
4767
}
16848 stevensc 4768
 
16825 efrain 4769
.nav-pills .nav-link {
4770
  background: none;
4771
  border: 0;
4772
  border-radius: var(--bs-nav-pills-border-radius);
4773
}
16848 stevensc 4774
 
16825 efrain 4775
.nav-pills .nav-link:disabled {
4776
  color: var(--bs-nav-link-disabled-color);
4777
  background-color: transparent;
4778
  border-color: transparent;
4779
}
16848 stevensc 4780
 
16825 efrain 4781
.nav-pills .nav-link.active,
16848 stevensc 4782
.nav-pills .show>.nav-link {
16825 efrain 4783
  color: var(--bs-nav-pills-link-active-color);
4784
  background-color: var(--bs-nav-pills-link-active-bg);
4785
}
4786
 
16848 stevensc 4787
.nav-fill>.nav-link,
16825 efrain 4788
.nav-fill .nav-item {
4789
  flex: 1 1 auto;
4790
  text-align: center;
4791
}
4792
 
16848 stevensc 4793
.nav-justified>.nav-link,
16825 efrain 4794
.nav-justified .nav-item {
4795
  flex-basis: 0;
4796
  flex-grow: 1;
4797
  text-align: center;
4798
}
4799
 
4800
.nav-fill .nav-item .nav-link,
4801
.nav-justified .nav-item .nav-link {
4802
  width: 100%;
4803
}
4804
 
16848 stevensc 4805
.tab-content>.tab-pane {
16825 efrain 4806
  display: none;
4807
}
16848 stevensc 4808
 
4809
.tab-content>.active {
16825 efrain 4810
  display: block;
4811
}
4812
 
4813
.navbar {
4814
  --bs-navbar-padding-x: 0;
4815
  --bs-navbar-padding-y: 0.5rem;
4816
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4817
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4818
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4819
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4820
  --bs-navbar-brand-padding-y: 0.40625rem;
4821
  --bs-navbar-brand-margin-end: 1rem;
4822
  --bs-navbar-brand-font-size: 1rem;
4823
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4824
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4825
  --bs-navbar-nav-link-padding-x: 0.5rem;
4826
  --bs-navbar-toggler-padding-y: 0.25rem;
4827
  --bs-navbar-toggler-padding-x: 0.75rem;
4828
  --bs-navbar-toggler-font-size: 1rem;
4829
  --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");
4830
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4831
  --bs-navbar-toggler-border-radius: 0.25rem;
4832
  --bs-navbar-toggler-focus-width: 0;
4833
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4834
  position: relative;
4835
  display: flex;
4836
  flex-wrap: wrap;
4837
  align-items: center;
4838
  justify-content: space-between;
4839
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4840
}
16848 stevensc 4841
 
4842
.navbar>.container,
4843
.navbar>.container-fluid,
4844
.navbar>.container-sm,
4845
.navbar>.container-md,
4846
.navbar>.container-lg,
4847
.navbar>.container-xl,
4848
.navbar>.container-xxl {
16825 efrain 4849
  display: flex;
4850
  flex-wrap: inherit;
4851
  align-items: center;
4852
  justify-content: space-between;
4853
}
16848 stevensc 4854
 
16825 efrain 4855
.navbar-brand {
4856
  padding-top: var(--bs-navbar-brand-padding-y);
4857
  padding-bottom: var(--bs-navbar-brand-padding-y);
4858
  margin-right: var(--bs-navbar-brand-margin-end);
4859
  font-size: var(--bs-navbar-brand-font-size);
4860
  color: var(--bs-navbar-brand-color);
4861
  white-space: nowrap;
4862
}
16848 stevensc 4863
 
4864
.navbar-brand:hover,
4865
.navbar-brand:focus {
16825 efrain 4866
  color: var(--bs-navbar-brand-hover-color);
4867
}
4868
 
4869
.navbar-nav {
4870
  --bs-nav-link-padding-x: 0;
4871
  --bs-nav-link-padding-y: 0.5rem;
4872
  --bs-nav-link-font-weight: ;
4873
  --bs-nav-link-color: var(--bs-navbar-color);
4874
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4875
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4876
  display: flex;
4877
  flex-direction: column;
4878
  padding-left: 0;
4879
  margin-bottom: 0;
4880
  list-style: none;
4881
}
16848 stevensc 4882
 
4883
.navbar-nav .show>.nav-link,
16825 efrain 4884
.navbar-nav .nav-link.active {
4885
  color: var(--bs-navbar-active-color);
4886
}
16848 stevensc 4887
 
4888
.navbar-nav .dropdown-menu,
4889
.navbar-nav .tt-menu {
16825 efrain 4890
  position: static;
4891
}
4892
 
4893
.navbar-text {
4894
  padding-top: 0.5rem;
4895
  padding-bottom: 0.5rem;
4896
  color: var(--bs-navbar-color);
4897
}
16848 stevensc 4898
 
16825 efrain 4899
.navbar-text a,
4900
.navbar-text a:hover,
4901
.navbar-text a:focus {
4902
  color: var(--bs-navbar-active-color);
4903
}
4904
 
4905
.navbar-collapse {
4906
  flex-basis: 100%;
4907
  flex-grow: 1;
4908
  align-items: center;
4909
}
4910
 
4911
.navbar-toggler {
4912
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4913
  font-size: var(--bs-navbar-toggler-font-size);
4914
  line-height: 1;
4915
  color: var(--bs-navbar-color);
4916
  background-color: transparent;
4917
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4918
  border-radius: var(--bs-navbar-toggler-border-radius);
4919
  transition: var(--bs-navbar-toggler-transition);
4920
}
16848 stevensc 4921
 
16825 efrain 4922
@media (prefers-reduced-motion: reduce) {
4923
  .navbar-toggler {
4924
    transition: none;
4925
  }
4926
}
16848 stevensc 4927
 
16825 efrain 4928
.navbar-toggler:hover {
4929
  text-decoration: none;
4930
}
16848 stevensc 4931
 
16825 efrain 4932
.navbar-toggler:focus {
4933
  text-decoration: none;
4934
  outline: 0;
4935
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4936
}
4937
 
4938
.navbar-toggler-icon {
4939
  display: inline-block;
4940
  width: 1.5em;
4941
  height: 1.5em;
4942
  vertical-align: middle;
4943
  background-image: var(--bs-navbar-toggler-icon-bg);
4944
  background-repeat: no-repeat;
4945
  background-position: center;
4946
  background-size: 100%;
4947
}
4948
 
4949
.navbar-nav-scroll {
4950
  max-height: var(--bs-scroll-height, 75vh);
4951
  overflow-y: auto;
4952
}
4953
 
4954
@media (min-width: 576px) {
4955
  .navbar-expand-sm {
4956
    flex-wrap: nowrap;
4957
    justify-content: flex-start;
4958
  }
16848 stevensc 4959
 
16825 efrain 4960
  .navbar-expand-sm .navbar-nav {
4961
    flex-direction: row;
4962
  }
16848 stevensc 4963
 
4964
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4965
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4966
    position: absolute;
4967
  }
16848 stevensc 4968
 
16825 efrain 4969
  .navbar-expand-sm .navbar-nav .nav-link {
4970
    padding-right: var(--bs-navbar-nav-link-padding-x);
4971
    padding-left: var(--bs-navbar-nav-link-padding-x);
4972
  }
16848 stevensc 4973
 
16825 efrain 4974
  .navbar-expand-sm .navbar-nav-scroll {
4975
    overflow: visible;
4976
  }
16848 stevensc 4977
 
16825 efrain 4978
  .navbar-expand-sm .navbar-collapse {
4979
    display: flex !important;
4980
    flex-basis: auto;
4981
  }
16848 stevensc 4982
 
16825 efrain 4983
  .navbar-expand-sm .navbar-toggler {
4984
    display: none;
4985
  }
16848 stevensc 4986
 
16825 efrain 4987
  .navbar-expand-sm .offcanvas {
4988
    position: static;
4989
    z-index: auto;
4990
    flex-grow: 1;
4991
    width: auto !important;
4992
    height: auto !important;
4993
    visibility: visible !important;
4994
    background-color: transparent !important;
4995
    border: 0 !important;
4996
    transform: none !important;
4997
    transition: none;
4998
  }
16848 stevensc 4999
 
16825 efrain 5000
  .navbar-expand-sm .offcanvas .offcanvas-header {
5001
    display: none;
5002
  }
16848 stevensc 5003
 
16825 efrain 5004
  .navbar-expand-sm .offcanvas .offcanvas-body {
5005
    display: flex;
5006
    flex-grow: 0;
5007
    padding: 0;
5008
    overflow-y: visible;
5009
  }
5010
}
16848 stevensc 5011
 
16825 efrain 5012
@media (min-width: 768px) {
5013
  .navbar-expand-md {
5014
    flex-wrap: nowrap;
5015
    justify-content: flex-start;
5016
  }
16848 stevensc 5017
 
16825 efrain 5018
  .navbar-expand-md .navbar-nav {
5019
    flex-direction: row;
5020
  }
16848 stevensc 5021
 
5022
  .navbar-expand-md .navbar-nav .dropdown-menu,
5023
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 5024
    position: absolute;
5025
  }
16848 stevensc 5026
 
16825 efrain 5027
  .navbar-expand-md .navbar-nav .nav-link {
5028
    padding-right: var(--bs-navbar-nav-link-padding-x);
5029
    padding-left: var(--bs-navbar-nav-link-padding-x);
5030
  }
16848 stevensc 5031
 
16825 efrain 5032
  .navbar-expand-md .navbar-nav-scroll {
5033
    overflow: visible;
5034
  }
16848 stevensc 5035
 
16825 efrain 5036
  .navbar-expand-md .navbar-collapse {
5037
    display: flex !important;
5038
    flex-basis: auto;
5039
  }
16848 stevensc 5040
 
16825 efrain 5041
  .navbar-expand-md .navbar-toggler {
5042
    display: none;
5043
  }
16848 stevensc 5044
 
16825 efrain 5045
  .navbar-expand-md .offcanvas {
5046
    position: static;
5047
    z-index: auto;
5048
    flex-grow: 1;
5049
    width: auto !important;
5050
    height: auto !important;
5051
    visibility: visible !important;
5052
    background-color: transparent !important;
5053
    border: 0 !important;
5054
    transform: none !important;
5055
    transition: none;
5056
  }
16848 stevensc 5057
 
16825 efrain 5058
  .navbar-expand-md .offcanvas .offcanvas-header {
5059
    display: none;
5060
  }
16848 stevensc 5061
 
16825 efrain 5062
  .navbar-expand-md .offcanvas .offcanvas-body {
5063
    display: flex;
5064
    flex-grow: 0;
5065
    padding: 0;
5066
    overflow-y: visible;
5067
  }
5068
}
16848 stevensc 5069
 
16825 efrain 5070
@media (min-width: 992px) {
5071
  .navbar-expand-lg {
5072
    flex-wrap: nowrap;
5073
    justify-content: flex-start;
5074
  }
16848 stevensc 5075
 
16825 efrain 5076
  .navbar-expand-lg .navbar-nav {
5077
    flex-direction: row;
5078
  }
16848 stevensc 5079
 
5080
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5081
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5082
    position: absolute;
5083
  }
16848 stevensc 5084
 
16825 efrain 5085
  .navbar-expand-lg .navbar-nav .nav-link {
5086
    padding-right: var(--bs-navbar-nav-link-padding-x);
5087
    padding-left: var(--bs-navbar-nav-link-padding-x);
5088
  }
16848 stevensc 5089
 
16825 efrain 5090
  .navbar-expand-lg .navbar-nav-scroll {
5091
    overflow: visible;
5092
  }
16848 stevensc 5093
 
16825 efrain 5094
  .navbar-expand-lg .navbar-collapse {
5095
    display: flex !important;
5096
    flex-basis: auto;
5097
  }
16848 stevensc 5098
 
16825 efrain 5099
  .navbar-expand-lg .navbar-toggler {
5100
    display: none;
5101
  }
16848 stevensc 5102
 
16825 efrain 5103
  .navbar-expand-lg .offcanvas {
5104
    position: static;
5105
    z-index: auto;
5106
    flex-grow: 1;
5107
    width: auto !important;
5108
    height: auto !important;
5109
    visibility: visible !important;
5110
    background-color: transparent !important;
5111
    border: 0 !important;
5112
    transform: none !important;
5113
    transition: none;
5114
  }
16848 stevensc 5115
 
16825 efrain 5116
  .navbar-expand-lg .offcanvas .offcanvas-header {
5117
    display: none;
5118
  }
16848 stevensc 5119
 
16825 efrain 5120
  .navbar-expand-lg .offcanvas .offcanvas-body {
5121
    display: flex;
5122
    flex-grow: 0;
5123
    padding: 0;
5124
    overflow-y: visible;
5125
  }
5126
}
16848 stevensc 5127
 
16825 efrain 5128
@media (min-width: 1200px) {
5129
  .navbar-expand-xl {
5130
    flex-wrap: nowrap;
5131
    justify-content: flex-start;
5132
  }
16848 stevensc 5133
 
16825 efrain 5134
  .navbar-expand-xl .navbar-nav {
5135
    flex-direction: row;
5136
  }
16848 stevensc 5137
 
5138
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5139
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5140
    position: absolute;
5141
  }
16848 stevensc 5142
 
16825 efrain 5143
  .navbar-expand-xl .navbar-nav .nav-link {
5144
    padding-right: var(--bs-navbar-nav-link-padding-x);
5145
    padding-left: var(--bs-navbar-nav-link-padding-x);
5146
  }
16848 stevensc 5147
 
16825 efrain 5148
  .navbar-expand-xl .navbar-nav-scroll {
5149
    overflow: visible;
5150
  }
16848 stevensc 5151
 
16825 efrain 5152
  .navbar-expand-xl .navbar-collapse {
5153
    display: flex !important;
5154
    flex-basis: auto;
5155
  }
16848 stevensc 5156
 
16825 efrain 5157
  .navbar-expand-xl .navbar-toggler {
5158
    display: none;
5159
  }
16848 stevensc 5160
 
16825 efrain 5161
  .navbar-expand-xl .offcanvas {
5162
    position: static;
5163
    z-index: auto;
5164
    flex-grow: 1;
5165
    width: auto !important;
5166
    height: auto !important;
5167
    visibility: visible !important;
5168
    background-color: transparent !important;
5169
    border: 0 !important;
5170
    transform: none !important;
5171
    transition: none;
5172
  }
16848 stevensc 5173
 
16825 efrain 5174
  .navbar-expand-xl .offcanvas .offcanvas-header {
5175
    display: none;
5176
  }
16848 stevensc 5177
 
16825 efrain 5178
  .navbar-expand-xl .offcanvas .offcanvas-body {
5179
    display: flex;
5180
    flex-grow: 0;
5181
    padding: 0;
5182
    overflow-y: visible;
5183
  }
5184
}
16848 stevensc 5185
 
16825 efrain 5186
@media (min-width: 1400px) {
5187
  .navbar-expand-xxl {
5188
    flex-wrap: nowrap;
5189
    justify-content: flex-start;
5190
  }
16848 stevensc 5191
 
16825 efrain 5192
  .navbar-expand-xxl .navbar-nav {
5193
    flex-direction: row;
5194
  }
16848 stevensc 5195
 
5196
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5197
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5198
    position: absolute;
5199
  }
16848 stevensc 5200
 
16825 efrain 5201
  .navbar-expand-xxl .navbar-nav .nav-link {
5202
    padding-right: var(--bs-navbar-nav-link-padding-x);
5203
    padding-left: var(--bs-navbar-nav-link-padding-x);
5204
  }
16848 stevensc 5205
 
16825 efrain 5206
  .navbar-expand-xxl .navbar-nav-scroll {
5207
    overflow: visible;
5208
  }
16848 stevensc 5209
 
16825 efrain 5210
  .navbar-expand-xxl .navbar-collapse {
5211
    display: flex !important;
5212
    flex-basis: auto;
5213
  }
16848 stevensc 5214
 
16825 efrain 5215
  .navbar-expand-xxl .navbar-toggler {
5216
    display: none;
5217
  }
16848 stevensc 5218
 
16825 efrain 5219
  .navbar-expand-xxl .offcanvas {
5220
    position: static;
5221
    z-index: auto;
5222
    flex-grow: 1;
5223
    width: auto !important;
5224
    height: auto !important;
5225
    visibility: visible !important;
5226
    background-color: transparent !important;
5227
    border: 0 !important;
5228
    transform: none !important;
5229
    transition: none;
5230
  }
16848 stevensc 5231
 
16825 efrain 5232
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5233
    display: none;
5234
  }
16848 stevensc 5235
 
16825 efrain 5236
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5237
    display: flex;
5238
    flex-grow: 0;
5239
    padding: 0;
5240
    overflow-y: visible;
5241
  }
5242
}
16848 stevensc 5243
 
16825 efrain 5244
.navbar-expand {
5245
  flex-wrap: nowrap;
5246
  justify-content: flex-start;
5247
}
16848 stevensc 5248
 
16825 efrain 5249
.navbar-expand .navbar-nav {
5250
  flex-direction: row;
5251
}
16848 stevensc 5252
 
5253
.navbar-expand .navbar-nav .dropdown-menu,
5254
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5255
  position: absolute;
5256
}
16848 stevensc 5257
 
16825 efrain 5258
.navbar-expand .navbar-nav .nav-link {
5259
  padding-right: var(--bs-navbar-nav-link-padding-x);
5260
  padding-left: var(--bs-navbar-nav-link-padding-x);
5261
}
16848 stevensc 5262
 
16825 efrain 5263
.navbar-expand .navbar-nav-scroll {
5264
  overflow: visible;
5265
}
16848 stevensc 5266
 
16825 efrain 5267
.navbar-expand .navbar-collapse {
5268
  display: flex !important;
5269
  flex-basis: auto;
5270
}
16848 stevensc 5271
 
16825 efrain 5272
.navbar-expand .navbar-toggler {
5273
  display: none;
5274
}
16848 stevensc 5275
 
16825 efrain 5276
.navbar-expand .offcanvas {
5277
  position: static;
5278
  z-index: auto;
5279
  flex-grow: 1;
5280
  width: auto !important;
5281
  height: auto !important;
5282
  visibility: visible !important;
5283
  background-color: transparent !important;
5284
  border: 0 !important;
5285
  transform: none !important;
5286
  transition: none;
5287
}
16848 stevensc 5288
 
16825 efrain 5289
.navbar-expand .offcanvas .offcanvas-header {
5290
  display: none;
5291
}
16848 stevensc 5292
 
16825 efrain 5293
.navbar-expand .offcanvas .offcanvas-body {
5294
  display: flex;
5295
  flex-grow: 0;
5296
  padding: 0;
5297
  overflow-y: visible;
5298
}
5299
 
5300
.navbar-dark {
5301
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5302
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5303
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5304
  --bs-navbar-active-color: #fff;
5305
  --bs-navbar-brand-color: #fff;
5306
  --bs-navbar-brand-hover-color: #fff;
5307
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5308
  --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");
5309
}
5310
 
5311
.card {
5312
  --bs-card-spacer-y: 1.5rem;
5313
  --bs-card-spacer-x: 1.5rem;
5314
  --bs-card-title-spacer-y: 0.875rem;
5315
  --bs-card-border-width: 1px;
5316
  --bs-card-border-color: #f2f4f9;
5317
  --bs-card-border-radius: 0.25rem;
5318
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5319
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5320
  --bs-card-cap-padding-y: 0.875rem;
5321
  --bs-card-cap-padding-x: 1.5rem;
5322
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5323
  --bs-card-cap-color: ;
5324
  --bs-card-height: ;
5325
  --bs-card-color: ;
5326
  --bs-card-bg: #fff;
5327
  --bs-card-img-overlay-padding: 1rem;
5328
  --bs-card-group-margin: 0.75rem;
5329
  position: relative;
5330
  display: flex;
5331
  flex-direction: column;
5332
  min-width: 0;
5333
  height: var(--bs-card-height);
5334
  word-wrap: break-word;
5335
  background-color: var(--bs-card-bg);
5336
  background-clip: border-box;
5337
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5338
  border-radius: var(--bs-card-border-radius);
5339
}
16848 stevensc 5340
 
5341
.card>hr {
16825 efrain 5342
  margin-right: 0;
5343
  margin-left: 0;
5344
}
16848 stevensc 5345
 
5346
.card>.list-group {
16825 efrain 5347
  border-top: inherit;
5348
  border-bottom: inherit;
5349
}
16848 stevensc 5350
 
5351
.card>.list-group:first-child {
16825 efrain 5352
  border-top-width: 0;
5353
  border-top-left-radius: var(--bs-card-inner-border-radius);
5354
  border-top-right-radius: var(--bs-card-inner-border-radius);
5355
}
16848 stevensc 5356
 
5357
.card>.list-group:last-child {
16825 efrain 5358
  border-bottom-width: 0;
5359
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5360
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5361
}
16848 stevensc 5362
 
5363
.card>.card-header+.list-group,
5364
.card>.list-group+.card-footer {
16825 efrain 5365
  border-top: 0;
5366
}
5367
 
5368
.card-body {
5369
  flex: 1 1 auto;
5370
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5371
  color: var(--bs-card-color);
5372
}
5373
 
5374
.card-title {
5375
  margin-bottom: var(--bs-card-title-spacer-y);
5376
}
5377
 
5378
.card-subtitle {
5379
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5380
  margin-bottom: 0;
5381
}
5382
 
5383
.card-text:last-child {
5384
  margin-bottom: 0;
5385
}
5386
 
16848 stevensc 5387
.card-link+.card-link {
16825 efrain 5388
  margin-left: var(--bs-card-spacer-x);
5389
}
5390
 
5391
.card-header {
5392
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5393
  margin-bottom: 0;
5394
  color: var(--bs-card-cap-color);
5395
  background-color: var(--bs-card-cap-bg);
5396
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5397
}
16848 stevensc 5398
 
16825 efrain 5399
.card-header:first-child {
5400
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5401
}
5402
 
5403
.card-footer {
5404
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5405
  color: var(--bs-card-cap-color);
5406
  background-color: var(--bs-card-cap-bg);
5407
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5408
}
16848 stevensc 5409
 
16825 efrain 5410
.card-footer:last-child {
5411
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5412
}
5413
 
5414
.card-header-tabs {
5415
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5416
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5417
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5418
  border-bottom: 0;
5419
}
16848 stevensc 5420
 
16825 efrain 5421
.card-header-tabs .nav-link.active {
5422
  background-color: var(--bs-card-bg);
5423
  border-bottom-color: var(--bs-card-bg);
5424
}
5425
 
5426
.card-header-pills {
5427
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5428
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5429
}
5430
 
5431
.card-img-overlay {
5432
  position: absolute;
5433
  top: 0;
5434
  right: 0;
5435
  bottom: 0;
5436
  left: 0;
5437
  padding: var(--bs-card-img-overlay-padding);
5438
  border-radius: var(--bs-card-inner-border-radius);
5439
}
5440
 
5441
.card-img,
5442
.card-img-top,
5443
.card-img-bottom {
5444
  width: 100%;
5445
}
5446
 
5447
.card-img,
5448
.card-img-top {
5449
  border-top-left-radius: var(--bs-card-inner-border-radius);
5450
  border-top-right-radius: var(--bs-card-inner-border-radius);
5451
}
5452
 
5453
.card-img,
5454
.card-img-bottom {
5455
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5456
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5457
}
5458
 
16848 stevensc 5459
.card-group>.card {
16825 efrain 5460
  margin-bottom: var(--bs-card-group-margin);
5461
}
16848 stevensc 5462
 
16825 efrain 5463
@media (min-width: 576px) {
5464
  .card-group {
5465
    display: flex;
5466
    flex-flow: row wrap;
5467
  }
16848 stevensc 5468
 
5469
  .card-group>.card {
16825 efrain 5470
    flex: 1 0 0%;
5471
    margin-bottom: 0;
5472
  }
16848 stevensc 5473
 
5474
  .card-group>.card+.card {
16825 efrain 5475
    margin-left: 0;
5476
    border-left: 0;
5477
  }
16848 stevensc 5478
 
5479
  .card-group>.card:not(:last-child) {
16825 efrain 5480
    border-top-right-radius: 0;
5481
    border-bottom-right-radius: 0;
5482
  }
16848 stevensc 5483
 
5484
  .card-group>.card:not(:last-child) .card-img-top,
5485
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5486
    border-top-right-radius: 0;
5487
  }
16848 stevensc 5488
 
5489
  .card-group>.card:not(:last-child) .card-img-bottom,
5490
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5491
    border-bottom-right-radius: 0;
5492
  }
16848 stevensc 5493
 
5494
  .card-group>.card:not(:first-child) {
16825 efrain 5495
    border-top-left-radius: 0;
5496
    border-bottom-left-radius: 0;
5497
  }
16848 stevensc 5498
 
5499
  .card-group>.card:not(:first-child) .card-img-top,
5500
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5501
    border-top-left-radius: 0;
5502
  }
16848 stevensc 5503
 
5504
  .card-group>.card:not(:first-child) .card-img-bottom,
5505
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5506
    border-bottom-left-radius: 0;
5507
  }
5508
}
5509
 
5510
.accordion {
5511
  --bs-accordion-color: #000;
5512
  --bs-accordion-bg: #fff;
5513
  --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;
5514
  --bs-accordion-border-color: #e9ecef;
5515
  --bs-accordion-border-width: 1px;
5516
  --bs-accordion-border-radius: 0.25rem;
5517
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5518
  --bs-accordion-btn-padding-x: 1.25rem;
5519
  --bs-accordion-btn-padding-y: 1rem;
5520
  --bs-accordion-btn-color: #000;
5521
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5522
  --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");
5523
  --bs-accordion-btn-icon-width: 0.875rem;
5524
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5525
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5526
  --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");
5527
  --bs-accordion-btn-focus-border-color: #cbd1db;
5528
  --bs-accordion-btn-focus-box-shadow: none;
5529
  --bs-accordion-body-padding-x: 1.25rem;
5530
  --bs-accordion-body-padding-y: 1rem;
5531
  --bs-accordion-active-color: #5b66e6;
5532
  --bs-accordion-active-bg: #f0f1ff;
5533
}
5534
 
5535
.accordion-button {
5536
  position: relative;
5537
  display: flex;
5538
  align-items: center;
5539
  width: 100%;
5540
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5541
  font-size: 0.875rem;
5542
  color: var(--bs-accordion-btn-color);
5543
  text-align: left;
5544
  background-color: var(--bs-accordion-btn-bg);
5545
  border: 0;
5546
  border-radius: 0;
5547
  overflow-anchor: none;
5548
  transition: var(--bs-accordion-transition);
5549
}
16848 stevensc 5550
 
16825 efrain 5551
@media (prefers-reduced-motion: reduce) {
5552
  .accordion-button {
5553
    transition: none;
5554
  }
5555
}
16848 stevensc 5556
 
16825 efrain 5557
.accordion-button:not(.collapsed) {
5558
  color: var(--bs-accordion-active-color);
5559
  background-color: var(--bs-accordion-active-bg);
5560
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5561
}
16848 stevensc 5562
 
16825 efrain 5563
.accordion-button:not(.collapsed)::after {
5564
  background-image: var(--bs-accordion-btn-active-icon);
5565
  transform: var(--bs-accordion-btn-icon-transform);
5566
}
16848 stevensc 5567
 
16825 efrain 5568
.accordion-button::after {
5569
  flex-shrink: 0;
5570
  width: var(--bs-accordion-btn-icon-width);
5571
  height: var(--bs-accordion-btn-icon-width);
5572
  margin-left: auto;
5573
  content: "";
5574
  background-image: var(--bs-accordion-btn-icon);
5575
  background-repeat: no-repeat;
5576
  background-size: var(--bs-accordion-btn-icon-width);
5577
  transition: var(--bs-accordion-btn-icon-transition);
5578
}
16848 stevensc 5579
 
16825 efrain 5580
@media (prefers-reduced-motion: reduce) {
5581
  .accordion-button::after {
5582
    transition: none;
5583
  }
5584
}
16848 stevensc 5585
 
16825 efrain 5586
.accordion-button:hover {
5587
  z-index: 2;
5588
}
16848 stevensc 5589
 
16825 efrain 5590
.accordion-button:focus {
5591
  z-index: 3;
5592
  border-color: var(--bs-accordion-btn-focus-border-color);
5593
  outline: 0;
5594
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5595
}
5596
 
5597
.accordion-header {
5598
  margin-bottom: 0;
5599
}
5600
 
5601
.accordion-item {
5602
  color: var(--bs-accordion-color);
5603
  background-color: var(--bs-accordion-bg);
5604
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5605
}
16848 stevensc 5606
 
16825 efrain 5607
.accordion-item:first-of-type {
5608
  border-top-left-radius: var(--bs-accordion-border-radius);
5609
  border-top-right-radius: var(--bs-accordion-border-radius);
5610
}
16848 stevensc 5611
 
16825 efrain 5612
.accordion-item:first-of-type .accordion-button {
5613
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5614
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5615
}
16848 stevensc 5616
 
16825 efrain 5617
.accordion-item:not(:first-of-type) {
5618
  border-top: 0;
5619
}
16848 stevensc 5620
 
16825 efrain 5621
.accordion-item:last-of-type {
5622
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5623
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5624
}
16848 stevensc 5625
 
16825 efrain 5626
.accordion-item:last-of-type .accordion-button.collapsed {
5627
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5628
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5629
}
16848 stevensc 5630
 
16825 efrain 5631
.accordion-item:last-of-type .accordion-collapse {
5632
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5633
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5634
}
5635
 
5636
.accordion-body {
5637
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5638
}
5639
 
5640
.accordion-flush .accordion-collapse {
5641
  border-width: 0;
5642
}
16848 stevensc 5643
 
16825 efrain 5644
.accordion-flush .accordion-item {
5645
  border-right: 0;
5646
  border-left: 0;
5647
  border-radius: 0;
5648
}
16848 stevensc 5649
 
16825 efrain 5650
.accordion-flush .accordion-item:first-child {
5651
  border-top: 0;
5652
}
16848 stevensc 5653
 
16825 efrain 5654
.accordion-flush .accordion-item:last-child {
5655
  border-bottom: 0;
5656
}
16848 stevensc 5657
 
5658
.accordion-flush .accordion-item .accordion-button,
5659
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5660
  border-radius: 0;
5661
}
5662
 
5663
.breadcrumb {
5664
  --bs-breadcrumb-padding-x: 0;
5665
  --bs-breadcrumb-padding-y: 0;
5666
  --bs-breadcrumb-margin-bottom: 1rem;
5667
  --bs-breadcrumb-bg: ;
5668
  --bs-breadcrumb-border-radius: ;
5669
  --bs-breadcrumb-divider-color: #7987a1;
5670
  --bs-breadcrumb-item-padding-x: 0.5rem;
5671
  --bs-breadcrumb-item-active-color: #7987a1;
5672
  display: flex;
5673
  flex-wrap: wrap;
5674
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5675
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5676
  font-size: var(--bs-breadcrumb-font-size);
5677
  list-style: none;
5678
  background-color: var(--bs-breadcrumb-bg);
5679
  border-radius: var(--bs-breadcrumb-border-radius);
5680
}
5681
 
16848 stevensc 5682
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5683
  padding-left: var(--bs-breadcrumb-item-padding-x);
5684
}
16848 stevensc 5685
 
5686
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5687
  float: left;
5688
  padding-right: var(--bs-breadcrumb-item-padding-x);
5689
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5690
  content: var(--bs-breadcrumb-divider, "/")
5691
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5692
  ;
16825 efrain 5693
}
16848 stevensc 5694
 
16825 efrain 5695
.breadcrumb-item.active {
5696
  color: var(--bs-breadcrumb-item-active-color);
5697
}
5698
 
5699
.pagination {
5700
  --bs-pagination-padding-x: 1rem;
5701
  --bs-pagination-padding-y: 0.469rem;
5702
  --bs-pagination-font-size: 0.875rem;
5703
  --bs-pagination-color: #6571ff;
5704
  --bs-pagination-bg: #fff;
5705
  --bs-pagination-border-width: 1px;
5706
  --bs-pagination-border-color: #dee2e6;
5707
  --bs-pagination-border-radius: 0.25rem;
5708
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5709
  --bs-pagination-hover-bg: #e9ecef;
5710
  --bs-pagination-hover-border-color: #dee2e6;
5711
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5712
  --bs-pagination-focus-bg: #e9ecef;
5713
  --bs-pagination-focus-box-shadow: none;
5714
  --bs-pagination-active-color: #fff;
5715
  --bs-pagination-active-bg: #6571ff;
5716
  --bs-pagination-active-border-color: #6571ff;
5717
  --bs-pagination-disabled-color: #7987a1;
5718
  --bs-pagination-disabled-bg: #fff;
5719
  --bs-pagination-disabled-border-color: #dee2e6;
5720
  display: flex;
5721
  padding-left: 0;
5722
  list-style: none;
5723
}
5724
 
5725
.page-link {
5726
  position: relative;
5727
  display: block;
5728
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5729
  font-size: var(--bs-pagination-font-size);
5730
  color: var(--bs-pagination-color);
5731
  background-color: var(--bs-pagination-bg);
5732
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5733
  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;
5734
}
16848 stevensc 5735
 
16825 efrain 5736
@media (prefers-reduced-motion: reduce) {
5737
  .page-link {
5738
    transition: none;
5739
  }
5740
}
16848 stevensc 5741
 
16825 efrain 5742
.page-link:hover {
5743
  z-index: 2;
5744
  color: var(--bs-pagination-hover-color);
5745
  background-color: var(--bs-pagination-hover-bg);
5746
  border-color: var(--bs-pagination-hover-border-color);
5747
}
16848 stevensc 5748
 
16825 efrain 5749
.page-link:focus {
5750
  z-index: 3;
5751
  color: var(--bs-pagination-focus-color);
5752
  background-color: var(--bs-pagination-focus-bg);
5753
  outline: 0;
5754
  box-shadow: var(--bs-pagination-focus-box-shadow);
5755
}
16848 stevensc 5756
 
5757
.page-link.active,
5758
.active>.page-link {
16825 efrain 5759
  z-index: 3;
5760
  color: var(--bs-pagination-active-color);
5761
  background-color: var(--bs-pagination-active-bg);
5762
  border-color: var(--bs-pagination-active-border-color);
5763
}
16848 stevensc 5764
 
5765
.page-link.disabled,
5766
.disabled>.page-link {
16825 efrain 5767
  color: var(--bs-pagination-disabled-color);
5768
  pointer-events: none;
5769
  background-color: var(--bs-pagination-disabled-bg);
5770
  border-color: var(--bs-pagination-disabled-border-color);
5771
}
5772
 
5773
.page-item:not(:first-child) .page-link {
5774
  margin-left: -1px;
5775
}
16848 stevensc 5776
 
16825 efrain 5777
.page-item:first-child .page-link {
5778
  border-top-left-radius: var(--bs-pagination-border-radius);
5779
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5780
}
16848 stevensc 5781
 
16825 efrain 5782
.page-item:last-child .page-link {
5783
  border-top-right-radius: var(--bs-pagination-border-radius);
5784
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5785
}
5786
 
5787
.pagination-lg {
5788
  --bs-pagination-padding-x: 1.1rem;
5789
  --bs-pagination-padding-y: 0.5rem;
5790
  --bs-pagination-font-size: 1rem;
5791
  --bs-pagination-border-radius: 0.5rem;
5792
}
5793
 
5794
.pagination-sm {
5795
  --bs-pagination-padding-x: 0.75rem;
5796
  --bs-pagination-padding-y: 0.391rem;
5797
  --bs-pagination-font-size: 0.812rem;
5798
  --bs-pagination-border-radius: 0.25rem;
5799
}
5800
 
5801
.badge {
5802
  --bs-badge-padding-x: 0.65em;
5803
  --bs-badge-padding-y: 0.35em;
5804
  --bs-badge-font-size: 0.8em;
5805
  --bs-badge-font-weight: 500;
5806
  --bs-badge-color: #fff;
5807
  --bs-badge-border-radius: 0.25rem;
5808
  display: inline-block;
5809
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5810
  font-size: var(--bs-badge-font-size);
5811
  font-weight: var(--bs-badge-font-weight);
5812
  line-height: 1;
5813
  color: var(--bs-badge-color);
5814
  text-align: center;
5815
  white-space: nowrap;
5816
  vertical-align: baseline;
5817
  border-radius: var(--bs-badge-border-radius);
5818
}
16848 stevensc 5819
 
16825 efrain 5820
.badge:empty {
5821
  display: none;
5822
}
5823
 
16848 stevensc 5824
.btn .badge,
5825
.wizard>.actions a .badge,
5826
div.tox .tox-button .badge,
5827
.swal2-popup .swal2-actions button .badge,
5828
.fc .fc-button-primary .badge {
16825 efrain 5829
  position: relative;
5830
  top: -1px;
5831
}
5832
 
5833
.alert {
5834
  --bs-alert-bg: transparent;
5835
  --bs-alert-padding-x: 1rem;
5836
  --bs-alert-padding-y: 1rem;
5837
  --bs-alert-margin-bottom: 1rem;
5838
  --bs-alert-color: inherit;
5839
  --bs-alert-border-color: transparent;
5840
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5841
  --bs-alert-border-radius: 0.25rem;
5842
  position: relative;
5843
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5844
  margin-bottom: var(--bs-alert-margin-bottom);
5845
  color: var(--bs-alert-color);
5846
  background-color: var(--bs-alert-bg);
5847
  border: var(--bs-alert-border);
5848
  border-radius: var(--bs-alert-border-radius);
5849
}
5850
 
5851
.alert-heading {
5852
  color: inherit;
5853
}
5854
 
5855
.alert-link {
5856
  font-weight: 500;
5857
}
5858
 
5859
.alert-dismissible {
5860
  padding-right: 3rem;
5861
}
16848 stevensc 5862
 
16825 efrain 5863
.alert-dismissible .btn-close {
5864
  position: absolute;
5865
  top: 0;
5866
  right: 0;
5867
  z-index: 2;
5868
  padding: 1.25rem 1rem;
5869
}
5870
 
5871
.alert-primary {
5872
  --bs-alert-color: #3d4499;
5873
  --bs-alert-bg: #e0e3ff;
5874
  --bs-alert-border-color: #d1d4ff;
5875
}
16848 stevensc 5876
 
16825 efrain 5877
.alert-primary .alert-link {
5878
  color: #31367a;
5879
}
5880
 
5881
.alert-secondary {
5882
  --bs-alert-color: #495161;
5883
  --bs-alert-bg: #e4e7ec;
5884
  --bs-alert-border-color: #d7dbe3;
5885
}
16848 stevensc 5886
 
16825 efrain 5887
.alert-secondary .alert-link {
5888
  color: #3a414e;
5889
}
5890
 
5891
.alert-success {
5892
  --bs-alert-color: #03622c;
5893
  --bs-alert-bg: #cdeddb;
5894
  --bs-alert-border-color: #b4e3c9;
5895
}
16848 stevensc 5896
 
16825 efrain 5897
.alert-success .alert-link {
5898
  color: #024e23;
5899
}
5900
 
5901
.alert-info {
5902
  --bs-alert-color: #3d7d7d;
5903
  --bs-alert-bg: #e0f6f6;
5904
  --bs-alert-border-color: #d1f1f1;
5905
}
16848 stevensc 5906
 
16825 efrain 5907
.alert-info .alert-link {
5908
  color: #316464;
5909
}
5910
 
5911
.alert-warning {
5912
  --bs-alert-color: #977104;
5913
  --bs-alert-bg: #fef2cd;
5914
  --bs-alert-border-color: #feebb4;
5915
}
16848 stevensc 5916
 
16825 efrain 5917
.alert-warning .alert-link {
5918
  color: #795a03;
5919
}
5920
 
5921
.alert-danger {
5922
  --bs-alert-color: #991f3d;
5923
  --bs-alert-bg: #ffd6e0;
5924
  --bs-alert-border-color: #ffc2d1;
5925
}
16848 stevensc 5926
 
16825 efrain 5927
.alert-danger .alert-link {
5928
  color: #7a1931;
5929
}
5930
 
5931
.alert-light {
5932
  --bs-alert-color: #8c8e8f;
5933
  --bs-alert-bg: #fbfbfc;
5934
  --bs-alert-border-color: #f8f9fa;
5935
}
16848 stevensc 5936
 
16825 efrain 5937
.alert-light .alert-link {
5938
  color: #707272;
5939
}
5940
 
5941
.alert-dark {
5942
  --bs-alert-color: #04070e;
5943
  --bs-alert-bg: #cdced1;
5944
  --bs-alert-border-color: #b4b6b9;
5945
}
16848 stevensc 5946
 
16825 efrain 5947
.alert-dark .alert-link {
5948
  color: #03060b;
5949
}
5950
 
5951
@keyframes progress-bar-stripes {
5952
  0% {
5953
    background-position-x: 1rem;
5954
  }
5955
}
16848 stevensc 5956
 
16825 efrain 5957
.progress {
5958
  --bs-progress-height: 1rem;
5959
  --bs-progress-font-size: 0.65625rem;
5960
  --bs-progress-bg: #e9ecef;
5961
  --bs-progress-border-radius: 0.25rem;
5962
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5963
  --bs-progress-bar-color: #fff;
5964
  --bs-progress-bar-bg: #6571ff;
5965
  --bs-progress-bar-transition: width 0.6s ease;
5966
  display: flex;
5967
  height: var(--bs-progress-height);
5968
  overflow: hidden;
5969
  font-size: var(--bs-progress-font-size);
5970
  background-color: var(--bs-progress-bg);
5971
  border-radius: var(--bs-progress-border-radius);
5972
}
5973
 
5974
.progress-bar {
5975
  display: flex;
5976
  flex-direction: column;
5977
  justify-content: center;
5978
  overflow: hidden;
5979
  color: var(--bs-progress-bar-color);
5980
  text-align: center;
5981
  white-space: nowrap;
5982
  background-color: var(--bs-progress-bar-bg);
5983
  transition: var(--bs-progress-bar-transition);
5984
}
16848 stevensc 5985
 
16825 efrain 5986
@media (prefers-reduced-motion: reduce) {
5987
  .progress-bar {
5988
    transition: none;
5989
  }
5990
}
5991
 
5992
.progress-bar-striped {
5993
  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);
5994
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5995
}
5996
 
5997
.progress-bar-animated {
5998
  animation: 1s linear infinite progress-bar-stripes;
5999
}
16848 stevensc 6000
 
16825 efrain 6001
@media (prefers-reduced-motion: reduce) {
6002
  .progress-bar-animated {
6003
    animation: none;
6004
  }
6005
}
6006
 
6007
.list-group {
6008
  --bs-list-group-color: #060c17;
6009
  --bs-list-group-bg: #fff;
6010
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
6011
  --bs-list-group-border-width: 1px;
6012
  --bs-list-group-border-radius: 0.25rem;
6013
  --bs-list-group-item-padding-x: 1.25rem;
6014
  --bs-list-group-item-padding-y: 0.75rem;
6015
  --bs-list-group-action-color: #41516c;
6016
  --bs-list-group-action-hover-color: #41516c;
6017
  --bs-list-group-action-hover-bg: #f8f9fa;
6018
  --bs-list-group-action-active-color: #000;
6019
  --bs-list-group-action-active-bg: #e9ecef;
6020
  --bs-list-group-disabled-color: #7987a1;
6021
  --bs-list-group-disabled-bg: #fff;
6022
  --bs-list-group-active-color: #fff;
6023
  --bs-list-group-active-bg: #6571ff;
6024
  --bs-list-group-active-border-color: #6571ff;
6025
  display: flex;
6026
  flex-direction: column;
6027
  padding-left: 0;
6028
  margin-bottom: 0;
6029
  border-radius: var(--bs-list-group-border-radius);
6030
}
6031
 
6032
.list-group-numbered {
6033
  list-style-type: none;
6034
  counter-reset: section;
6035
}
16848 stevensc 6036
 
6037
.list-group-numbered>.list-group-item::before {
16825 efrain 6038
  content: counters(section, ".") ". ";
6039
  counter-increment: section;
6040
}
6041
 
6042
.list-group-item-action {
6043
  width: 100%;
6044
  color: var(--bs-list-group-action-color);
6045
  text-align: inherit;
6046
}
16848 stevensc 6047
 
6048
.list-group-item-action:hover,
6049
.list-group-item-action:focus {
16825 efrain 6050
  z-index: 1;
6051
  color: var(--bs-list-group-action-hover-color);
6052
  text-decoration: none;
6053
  background-color: var(--bs-list-group-action-hover-bg);
6054
}
16848 stevensc 6055
 
16825 efrain 6056
.list-group-item-action:active {
6057
  color: var(--bs-list-group-action-active-color);
6058
  background-color: var(--bs-list-group-action-active-bg);
6059
}
6060
 
6061
.list-group-item {
6062
  position: relative;
6063
  display: block;
6064
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6065
  color: var(--bs-list-group-color);
6066
  background-color: var(--bs-list-group-bg);
6067
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6068
}
16848 stevensc 6069
 
16825 efrain 6070
.list-group-item:first-child {
6071
  border-top-left-radius: inherit;
6072
  border-top-right-radius: inherit;
6073
}
16848 stevensc 6074
 
16825 efrain 6075
.list-group-item:last-child {
6076
  border-bottom-right-radius: inherit;
6077
  border-bottom-left-radius: inherit;
6078
}
16848 stevensc 6079
 
6080
.list-group-item.disabled,
6081
.list-group-item:disabled {
16825 efrain 6082
  color: var(--bs-list-group-disabled-color);
6083
  pointer-events: none;
6084
  background-color: var(--bs-list-group-disabled-bg);
6085
}
16848 stevensc 6086
 
16825 efrain 6087
.list-group-item.active {
6088
  z-index: 2;
6089
  color: var(--bs-list-group-active-color);
6090
  background-color: var(--bs-list-group-active-bg);
6091
  border-color: var(--bs-list-group-active-border-color);
6092
}
16848 stevensc 6093
 
6094
.list-group-item+.list-group-item {
16825 efrain 6095
  border-top-width: 0;
6096
}
16848 stevensc 6097
 
6098
.list-group-item+.list-group-item.active {
16825 efrain 6099
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6100
  border-top-width: var(--bs-list-group-border-width);
6101
}
6102
 
6103
.list-group-horizontal {
6104
  flex-direction: row;
6105
}
16848 stevensc 6106
 
6107
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6108
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6109
  border-top-right-radius: 0;
6110
}
16848 stevensc 6111
 
6112
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6113
  border-top-right-radius: var(--bs-list-group-border-radius);
6114
  border-bottom-left-radius: 0;
6115
}
16848 stevensc 6116
 
6117
.list-group-horizontal>.list-group-item.active {
16825 efrain 6118
  margin-top: 0;
6119
}
16848 stevensc 6120
 
6121
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6122
  border-top-width: var(--bs-list-group-border-width);
6123
  border-left-width: 0;
6124
}
16848 stevensc 6125
 
6126
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6127
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6128
  border-left-width: var(--bs-list-group-border-width);
6129
}
6130
 
6131
@media (min-width: 576px) {
6132
  .list-group-horizontal-sm {
6133
    flex-direction: row;
6134
  }
16848 stevensc 6135
 
6136
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6137
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6138
    border-top-right-radius: 0;
6139
  }
16848 stevensc 6140
 
6141
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6142
    border-top-right-radius: var(--bs-list-group-border-radius);
6143
    border-bottom-left-radius: 0;
6144
  }
16848 stevensc 6145
 
6146
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6147
    margin-top: 0;
6148
  }
16848 stevensc 6149
 
6150
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6151
    border-top-width: var(--bs-list-group-border-width);
6152
    border-left-width: 0;
6153
  }
16848 stevensc 6154
 
6155
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6156
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6157
    border-left-width: var(--bs-list-group-border-width);
6158
  }
6159
}
16848 stevensc 6160
 
16825 efrain 6161
@media (min-width: 768px) {
6162
  .list-group-horizontal-md {
6163
    flex-direction: row;
6164
  }
16848 stevensc 6165
 
6166
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6167
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6168
    border-top-right-radius: 0;
6169
  }
16848 stevensc 6170
 
6171
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6172
    border-top-right-radius: var(--bs-list-group-border-radius);
6173
    border-bottom-left-radius: 0;
6174
  }
16848 stevensc 6175
 
6176
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6177
    margin-top: 0;
6178
  }
16848 stevensc 6179
 
6180
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6181
    border-top-width: var(--bs-list-group-border-width);
6182
    border-left-width: 0;
6183
  }
16848 stevensc 6184
 
6185
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6186
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6187
    border-left-width: var(--bs-list-group-border-width);
6188
  }
6189
}
16848 stevensc 6190
 
16825 efrain 6191
@media (min-width: 992px) {
6192
  .list-group-horizontal-lg {
6193
    flex-direction: row;
6194
  }
16848 stevensc 6195
 
6196
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6197
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6198
    border-top-right-radius: 0;
6199
  }
16848 stevensc 6200
 
6201
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6202
    border-top-right-radius: var(--bs-list-group-border-radius);
6203
    border-bottom-left-radius: 0;
6204
  }
16848 stevensc 6205
 
6206
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6207
    margin-top: 0;
6208
  }
16848 stevensc 6209
 
6210
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6211
    border-top-width: var(--bs-list-group-border-width);
6212
    border-left-width: 0;
6213
  }
16848 stevensc 6214
 
6215
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6216
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6217
    border-left-width: var(--bs-list-group-border-width);
6218
  }
6219
}
16848 stevensc 6220
 
16825 efrain 6221
@media (min-width: 1200px) {
6222
  .list-group-horizontal-xl {
6223
    flex-direction: row;
6224
  }
16848 stevensc 6225
 
6226
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6227
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6228
    border-top-right-radius: 0;
6229
  }
16848 stevensc 6230
 
6231
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6232
    border-top-right-radius: var(--bs-list-group-border-radius);
6233
    border-bottom-left-radius: 0;
6234
  }
16848 stevensc 6235
 
6236
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6237
    margin-top: 0;
6238
  }
16848 stevensc 6239
 
6240
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6241
    border-top-width: var(--bs-list-group-border-width);
6242
    border-left-width: 0;
6243
  }
16848 stevensc 6244
 
6245
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6246
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6247
    border-left-width: var(--bs-list-group-border-width);
6248
  }
6249
}
16848 stevensc 6250
 
16825 efrain 6251
@media (min-width: 1400px) {
6252
  .list-group-horizontal-xxl {
6253
    flex-direction: row;
6254
  }
16848 stevensc 6255
 
6256
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6257
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6258
    border-top-right-radius: 0;
6259
  }
16848 stevensc 6260
 
6261
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6262
    border-top-right-radius: var(--bs-list-group-border-radius);
6263
    border-bottom-left-radius: 0;
6264
  }
16848 stevensc 6265
 
6266
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6267
    margin-top: 0;
6268
  }
16848 stevensc 6269
 
6270
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6271
    border-top-width: var(--bs-list-group-border-width);
6272
    border-left-width: 0;
6273
  }
16848 stevensc 6274
 
6275
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6276
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6277
    border-left-width: var(--bs-list-group-border-width);
6278
  }
6279
}
16848 stevensc 6280
 
16825 efrain 6281
.list-group-flush {
6282
  border-radius: 0;
6283
}
16848 stevensc 6284
 
6285
.list-group-flush>.list-group-item {
16825 efrain 6286
  border-width: 0 0 var(--bs-list-group-border-width);
6287
}
16848 stevensc 6288
 
6289
.list-group-flush>.list-group-item:last-child {
16825 efrain 6290
  border-bottom-width: 0;
6291
}
6292
 
6293
.list-group-item-primary {
6294
  color: #3d4499;
6295
  background-color: #e0e3ff;
6296
}
16848 stevensc 6297
 
6298
.list-group-item-primary.list-group-item-action:hover,
6299
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6300
  color: #3d4499;
6301
  background-color: #cacce6;
6302
}
16848 stevensc 6303
 
16825 efrain 6304
.list-group-item-primary.list-group-item-action.active {
6305
  color: #fff;
6306
  background-color: #3d4499;
6307
  border-color: #3d4499;
6308
}
6309
 
6310
.list-group-item-secondary {
6311
  color: #495161;
6312
  background-color: #e4e7ec;
6313
}
16848 stevensc 6314
 
6315
.list-group-item-secondary.list-group-item-action:hover,
6316
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6317
  color: #495161;
6318
  background-color: #cdd0d4;
6319
}
16848 stevensc 6320
 
16825 efrain 6321
.list-group-item-secondary.list-group-item-action.active {
6322
  color: #fff;
6323
  background-color: #495161;
6324
  border-color: #495161;
6325
}
6326
 
6327
.list-group-item-success {
6328
  color: #03622c;
6329
  background-color: #cdeddb;
6330
}
16848 stevensc 6331
 
6332
.list-group-item-success.list-group-item-action:hover,
6333
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6334
  color: #03622c;
6335
  background-color: #b9d5c5;
6336
}
16848 stevensc 6337
 
16825 efrain 6338
.list-group-item-success.list-group-item-action.active {
6339
  color: #fff;
6340
  background-color: #03622c;
6341
  border-color: #03622c;
6342
}
6343
 
6344
.list-group-item-info {
6345
  color: #3d7d7d;
6346
  background-color: #e0f6f6;
6347
}
16848 stevensc 6348
 
6349
.list-group-item-info.list-group-item-action:hover,
6350
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6351
  color: #3d7d7d;
6352
  background-color: #cadddd;
6353
}
16848 stevensc 6354
 
16825 efrain 6355
.list-group-item-info.list-group-item-action.active {
6356
  color: #fff;
6357
  background-color: #3d7d7d;
6358
  border-color: #3d7d7d;
6359
}
6360
 
6361
.list-group-item-warning {
6362
  color: #977104;
6363
  background-color: #fef2cd;
6364
}
16848 stevensc 6365
 
6366
.list-group-item-warning.list-group-item-action:hover,
6367
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6368
  color: #977104;
6369
  background-color: #e5dab9;
6370
}
16848 stevensc 6371
 
16825 efrain 6372
.list-group-item-warning.list-group-item-action.active {
6373
  color: #fff;
6374
  background-color: #977104;
6375
  border-color: #977104;
6376
}
6377
 
6378
.list-group-item-danger {
6379
  color: #991f3d;
6380
  background-color: #ffd6e0;
6381
}
16848 stevensc 6382
 
6383
.list-group-item-danger.list-group-item-action:hover,
6384
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6385
  color: #991f3d;
6386
  background-color: #e6c1ca;
6387
}
16848 stevensc 6388
 
16825 efrain 6389
.list-group-item-danger.list-group-item-action.active {
6390
  color: #fff;
6391
  background-color: #991f3d;
6392
  border-color: #991f3d;
6393
}
6394
 
6395
.list-group-item-light {
6396
  color: #8c8e8f;
6397
  background-color: #fbfbfc;
6398
}
16848 stevensc 6399
 
6400
.list-group-item-light.list-group-item-action:hover,
6401
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6402
  color: #8c8e8f;
6403
  background-color: #e2e2e3;
6404
}
16848 stevensc 6405
 
16825 efrain 6406
.list-group-item-light.list-group-item-action.active {
6407
  color: #fff;
6408
  background-color: #8c8e8f;
6409
  border-color: #8c8e8f;
6410
}
6411
 
6412
.list-group-item-dark {
6413
  color: #04070e;
6414
  background-color: #cdced1;
6415
}
16848 stevensc 6416
 
6417
.list-group-item-dark.list-group-item-action:hover,
6418
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6419
  color: #04070e;
6420
  background-color: #b9b9bc;
6421
}
16848 stevensc 6422
 
16825 efrain 6423
.list-group-item-dark.list-group-item-action.active {
6424
  color: #fff;
6425
  background-color: #04070e;
6426
  border-color: #04070e;
6427
}
6428
 
6429
.btn-close {
6430
  box-sizing: content-box;
6431
  width: 0.8em;
6432
  height: 0.8em;
6433
  padding: 0.25em 0.25em;
6434
  color: #000;
6435
  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;
6436
  border: 0;
6437
  border-radius: 0.25rem;
6438
  opacity: 0.5;
6439
}
16848 stevensc 6440
 
16825 efrain 6441
.btn-close:hover {
6442
  color: #000;
6443
  text-decoration: none;
6444
  opacity: 0.75;
6445
}
16848 stevensc 6446
 
16825 efrain 6447
.btn-close:focus {
6448
  outline: 0;
6449
  box-shadow: none;
6450
  opacity: 1;
6451
}
16848 stevensc 6452
 
6453
.btn-close:disabled,
6454
.btn-close.disabled {
16825 efrain 6455
  pointer-events: none;
6456
  user-select: none;
6457
  opacity: 0.25;
6458
}
6459
 
6460
.btn-close-white {
6461
  filter: invert(1) grayscale(100%) brightness(200%);
6462
}
6463
 
6464
.toast {
6465
  --bs-toast-zindex: 1090;
6466
  --bs-toast-padding-x: 0.75rem;
6467
  --bs-toast-padding-y: 0.5rem;
6468
  --bs-toast-spacing: 1.5rem;
6469
  --bs-toast-max-width: 350px;
6470
  --bs-toast-font-size: 0.875rem;
6471
  --bs-toast-color: ;
6472
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6473
  --bs-toast-border-width: 1px;
6474
  --bs-toast-border-color: var(--bs-border-color-translucent);
6475
  --bs-toast-border-radius: 0.25rem;
6476
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6477
  --bs-toast-header-color: #7987a1;
6478
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6479
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6480
  width: var(--bs-toast-max-width);
6481
  max-width: 100%;
6482
  font-size: var(--bs-toast-font-size);
6483
  color: var(--bs-toast-color);
6484
  pointer-events: auto;
6485
  background-color: var(--bs-toast-bg);
6486
  background-clip: padding-box;
6487
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6488
  box-shadow: var(--bs-toast-box-shadow);
6489
  border-radius: var(--bs-toast-border-radius);
6490
}
16848 stevensc 6491
 
16825 efrain 6492
.toast.showing {
6493
  opacity: 0;
6494
}
16848 stevensc 6495
 
16825 efrain 6496
.toast:not(.show) {
6497
  display: none;
6498
}
6499
 
6500
.toast-container {
6501
  --bs-toast-zindex: 1090;
6502
  position: absolute;
6503
  z-index: var(--bs-toast-zindex);
6504
  width: max-content;
6505
  max-width: 100%;
6506
  pointer-events: none;
6507
}
16848 stevensc 6508
 
6509
.toast-container> :not(:last-child) {
16825 efrain 6510
  margin-bottom: var(--bs-toast-spacing);
6511
}
6512
 
6513
.toast-header {
6514
  display: flex;
6515
  align-items: center;
6516
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6517
  color: var(--bs-toast-header-color);
6518
  background-color: var(--bs-toast-header-bg);
6519
  background-clip: padding-box;
6520
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6521
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6522
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6523
}
16848 stevensc 6524
 
16825 efrain 6525
.toast-header .btn-close {
6526
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6527
  margin-left: var(--bs-toast-padding-x);
6528
}
6529
 
6530
.toast-body {
6531
  padding: var(--bs-toast-padding-x);
6532
  word-wrap: break-word;
6533
}
6534
 
6535
.modal {
6536
  --bs-modal-zindex: 1055;
6537
  --bs-modal-width: 500px;
6538
  --bs-modal-padding: 1rem;
6539
  --bs-modal-margin: 0.5rem;
6540
  --bs-modal-color: ;
6541
  --bs-modal-bg: #fff;
6542
  --bs-modal-border-color: #e9ecef;
6543
  --bs-modal-border-width: 1px;
6544
  --bs-modal-border-radius: 0.5rem;
6545
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6546
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6547
  --bs-modal-header-padding-x: 1rem;
6548
  --bs-modal-header-padding-y: 1rem;
6549
  --bs-modal-header-padding: 1rem 1rem;
6550
  --bs-modal-header-border-color: var(--bs-border-color);
6551
  --bs-modal-header-border-width: 1px;
6552
  --bs-modal-title-line-height: 1.5;
6553
  --bs-modal-footer-gap: 0.5rem;
6554
  --bs-modal-footer-bg: ;
6555
  --bs-modal-footer-border-color: var(--bs-border-color);
6556
  --bs-modal-footer-border-width: 1px;
6557
  position: fixed;
6558
  top: 0;
6559
  left: 0;
6560
  z-index: var(--bs-modal-zindex);
6561
  display: none;
6562
  width: 100%;
6563
  height: 100%;
6564
  overflow-x: hidden;
6565
  overflow-y: auto;
6566
  outline: 0;
6567
}
6568
 
6569
.modal-dialog {
6570
  position: relative;
6571
  width: auto;
6572
  margin: var(--bs-modal-margin);
6573
  pointer-events: none;
6574
}
16848 stevensc 6575
 
16825 efrain 6576
.modal.fade .modal-dialog {
6577
  transition: transform 0.4s ease;
6578
  transform: scale(0.8);
6579
}
16848 stevensc 6580
 
16825 efrain 6581
@media (prefers-reduced-motion: reduce) {
6582
  .modal.fade .modal-dialog {
6583
    transition: none;
6584
  }
6585
}
16848 stevensc 6586
 
16825 efrain 6587
.modal.show .modal-dialog {
6588
  transform: none;
6589
}
16848 stevensc 6590
 
16825 efrain 6591
.modal.modal-static .modal-dialog {
6592
  transform: scale(1.02);
6593
}
6594
 
6595
.modal-dialog-scrollable {
6596
  height: calc(100% - var(--bs-modal-margin) * 2);
6597
}
16848 stevensc 6598
 
16825 efrain 6599
.modal-dialog-scrollable .modal-content {
6600
  max-height: 100%;
6601
  overflow: hidden;
6602
}
16848 stevensc 6603
 
16825 efrain 6604
.modal-dialog-scrollable .modal-body {
6605
  overflow-y: auto;
6606
}
6607
 
6608
.modal-dialog-centered {
6609
  display: flex;
6610
  align-items: center;
6611
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6612
}
6613
 
6614
.modal-content {
6615
  position: relative;
6616
  display: flex;
6617
  flex-direction: column;
6618
  width: 100%;
6619
  color: var(--bs-modal-color);
6620
  pointer-events: auto;
6621
  background-color: var(--bs-modal-bg);
6622
  background-clip: padding-box;
6623
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6624
  border-radius: var(--bs-modal-border-radius);
6625
  outline: 0;
6626
}
6627
 
6628
.modal-backdrop {
6629
  --bs-backdrop-zindex: 1050;
6630
  --bs-backdrop-bg: #000;
6631
  --bs-backdrop-opacity: 0.5;
6632
  position: fixed;
6633
  top: 0;
6634
  left: 0;
6635
  z-index: var(--bs-backdrop-zindex);
6636
  width: 100vw;
6637
  height: 100vh;
6638
  background-color: var(--bs-backdrop-bg);
6639
}
16848 stevensc 6640
 
16825 efrain 6641
.modal-backdrop.fade {
6642
  opacity: 0;
6643
}
16848 stevensc 6644
 
16825 efrain 6645
.modal-backdrop.show {
6646
  opacity: var(--bs-backdrop-opacity);
6647
}
6648
 
6649
.modal-header {
6650
  display: flex;
6651
  flex-shrink: 0;
6652
  align-items: center;
6653
  justify-content: space-between;
6654
  padding: var(--bs-modal-header-padding);
6655
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6656
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6657
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6658
}
16848 stevensc 6659
 
16825 efrain 6660
.modal-header .btn-close {
6661
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6662
  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;
6663
}
6664
 
6665
.modal-title {
6666
  margin-bottom: 0;
6667
  line-height: var(--bs-modal-title-line-height);
6668
}
6669
 
6670
.modal-body {
6671
  position: relative;
6672
  flex: 1 1 auto;
6673
  padding: var(--bs-modal-padding);
6674
}
6675
 
6676
.modal-footer {
6677
  display: flex;
6678
  flex-shrink: 0;
6679
  flex-wrap: wrap;
6680
  align-items: center;
6681
  justify-content: flex-end;
6682
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6683
  background-color: var(--bs-modal-footer-bg);
6684
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6685
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6686
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6687
}
16848 stevensc 6688
 
6689
.modal-footer>* {
16825 efrain 6690
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6691
}
6692
 
6693
@media (min-width: 576px) {
6694
  .modal {
6695
    --bs-modal-margin: 1.75rem;
6696
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6697
  }
16848 stevensc 6698
 
16825 efrain 6699
  .modal-dialog {
6700
    max-width: var(--bs-modal-width);
6701
    margin-right: auto;
6702
    margin-left: auto;
6703
  }
16848 stevensc 6704
 
16825 efrain 6705
  .modal-sm {
6706
    --bs-modal-width: 300px;
6707
  }
6708
}
16848 stevensc 6709
 
16825 efrain 6710
@media (min-width: 992px) {
16848 stevensc 6711
 
16825 efrain 6712
  .modal-lg,
6713
  .modal-xl {
6714
    --bs-modal-width: 800px;
6715
  }
6716
}
16848 stevensc 6717
 
16825 efrain 6718
@media (min-width: 1200px) {
6719
  .modal-xl {
6720
    --bs-modal-width: 1140px;
6721
  }
6722
}
16848 stevensc 6723
 
16825 efrain 6724
.modal-fullscreen {
6725
  width: 100vw;
6726
  max-width: none;
6727
  height: 100%;
6728
  margin: 0;
6729
}
16848 stevensc 6730
 
16825 efrain 6731
.modal-fullscreen .modal-content {
6732
  height: 100%;
6733
  border: 0;
6734
  border-radius: 0;
6735
}
16848 stevensc 6736
 
16825 efrain 6737
.modal-fullscreen .modal-header,
6738
.modal-fullscreen .modal-footer {
6739
  border-radius: 0;
6740
}
16848 stevensc 6741
 
16825 efrain 6742
.modal-fullscreen .modal-body {
6743
  overflow-y: auto;
6744
}
6745
 
6746
@media (max-width: 575.98px) {
6747
  .modal-fullscreen-sm-down {
6748
    width: 100vw;
6749
    max-width: none;
6750
    height: 100%;
6751
    margin: 0;
6752
  }
16848 stevensc 6753
 
16825 efrain 6754
  .modal-fullscreen-sm-down .modal-content {
6755
    height: 100%;
6756
    border: 0;
6757
    border-radius: 0;
6758
  }
16848 stevensc 6759
 
16825 efrain 6760
  .modal-fullscreen-sm-down .modal-header,
6761
  .modal-fullscreen-sm-down .modal-footer {
6762
    border-radius: 0;
6763
  }
16848 stevensc 6764
 
16825 efrain 6765
  .modal-fullscreen-sm-down .modal-body {
6766
    overflow-y: auto;
6767
  }
6768
}
16848 stevensc 6769
 
16825 efrain 6770
@media (max-width: 767.98px) {
6771
  .modal-fullscreen-md-down {
6772
    width: 100vw;
6773
    max-width: none;
6774
    height: 100%;
6775
    margin: 0;
6776
  }
16848 stevensc 6777
 
16825 efrain 6778
  .modal-fullscreen-md-down .modal-content {
6779
    height: 100%;
6780
    border: 0;
6781
    border-radius: 0;
6782
  }
16848 stevensc 6783
 
16825 efrain 6784
  .modal-fullscreen-md-down .modal-header,
6785
  .modal-fullscreen-md-down .modal-footer {
6786
    border-radius: 0;
6787
  }
16848 stevensc 6788
 
16825 efrain 6789
  .modal-fullscreen-md-down .modal-body {
6790
    overflow-y: auto;
6791
  }
6792
}
16848 stevensc 6793
 
16825 efrain 6794
@media (max-width: 991.98px) {
6795
  .modal-fullscreen-lg-down {
6796
    width: 100vw;
6797
    max-width: none;
6798
    height: 100%;
6799
    margin: 0;
6800
  }
16848 stevensc 6801
 
16825 efrain 6802
  .modal-fullscreen-lg-down .modal-content {
6803
    height: 100%;
6804
    border: 0;
6805
    border-radius: 0;
6806
  }
16848 stevensc 6807
 
16825 efrain 6808
  .modal-fullscreen-lg-down .modal-header,
6809
  .modal-fullscreen-lg-down .modal-footer {
6810
    border-radius: 0;
6811
  }
16848 stevensc 6812
 
16825 efrain 6813
  .modal-fullscreen-lg-down .modal-body {
6814
    overflow-y: auto;
6815
  }
6816
}
16848 stevensc 6817
 
16825 efrain 6818
@media (max-width: 1199.98px) {
6819
  .modal-fullscreen-xl-down {
6820
    width: 100vw;
6821
    max-width: none;
6822
    height: 100%;
6823
    margin: 0;
6824
  }
16848 stevensc 6825
 
16825 efrain 6826
  .modal-fullscreen-xl-down .modal-content {
6827
    height: 100%;
6828
    border: 0;
6829
    border-radius: 0;
6830
  }
16848 stevensc 6831
 
16825 efrain 6832
  .modal-fullscreen-xl-down .modal-header,
6833
  .modal-fullscreen-xl-down .modal-footer {
6834
    border-radius: 0;
6835
  }
16848 stevensc 6836
 
16825 efrain 6837
  .modal-fullscreen-xl-down .modal-body {
6838
    overflow-y: auto;
6839
  }
6840
}
16848 stevensc 6841
 
16825 efrain 6842
@media (max-width: 1399.98px) {
6843
  .modal-fullscreen-xxl-down {
6844
    width: 100vw;
6845
    max-width: none;
6846
    height: 100%;
6847
    margin: 0;
6848
  }
16848 stevensc 6849
 
16825 efrain 6850
  .modal-fullscreen-xxl-down .modal-content {
6851
    height: 100%;
6852
    border: 0;
6853
    border-radius: 0;
6854
  }
16848 stevensc 6855
 
16825 efrain 6856
  .modal-fullscreen-xxl-down .modal-header,
6857
  .modal-fullscreen-xxl-down .modal-footer {
6858
    border-radius: 0;
6859
  }
16848 stevensc 6860
 
16825 efrain 6861
  .modal-fullscreen-xxl-down .modal-body {
6862
    overflow-y: auto;
6863
  }
6864
}
16848 stevensc 6865
 
16825 efrain 6866
.tooltip {
6867
  --bs-tooltip-zindex: 1080;
6868
  --bs-tooltip-max-width: 200px;
6869
  --bs-tooltip-padding-x: 0.5rem;
6870
  --bs-tooltip-padding-y: 0.25rem;
6871
  --bs-tooltip-margin: ;
6872
  --bs-tooltip-font-size: 0.812rem;
6873
  --bs-tooltip-color: #fff;
6874
  --bs-tooltip-bg: #000;
6875
  --bs-tooltip-border-radius: 0.25rem;
6876
  --bs-tooltip-opacity: 0.9;
6877
  --bs-tooltip-arrow-width: 0.8rem;
6878
  --bs-tooltip-arrow-height: 0.4rem;
6879
  z-index: var(--bs-tooltip-zindex);
6880
  display: block;
6881
  padding: var(--bs-tooltip-arrow-height);
6882
  margin: var(--bs-tooltip-margin);
6883
  font-family: var(--bs-font-sans-serif);
6884
  font-style: normal;
6885
  font-weight: 400;
6886
  line-height: 1.5;
6887
  text-align: left;
6888
  text-align: start;
6889
  text-decoration: none;
6890
  text-shadow: none;
6891
  text-transform: none;
6892
  letter-spacing: normal;
6893
  word-break: normal;
6894
  white-space: normal;
6895
  word-spacing: normal;
6896
  line-break: auto;
6897
  font-size: var(--bs-tooltip-font-size);
6898
  word-wrap: break-word;
6899
  opacity: 0;
6900
}
16848 stevensc 6901
 
16825 efrain 6902
.tooltip.show {
6903
  opacity: var(--bs-tooltip-opacity);
6904
}
16848 stevensc 6905
 
16825 efrain 6906
.tooltip .tooltip-arrow {
6907
  display: block;
6908
  width: var(--bs-tooltip-arrow-width);
6909
  height: var(--bs-tooltip-arrow-height);
6910
}
16848 stevensc 6911
 
16825 efrain 6912
.tooltip .tooltip-arrow::before {
6913
  position: absolute;
6914
  content: "";
6915
  border-color: transparent;
6916
  border-style: solid;
6917
}
6918
 
16848 stevensc 6919
.bs-tooltip-top .tooltip-arrow,
6920
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6921
  bottom: 0;
6922
}
16848 stevensc 6923
 
6924
.bs-tooltip-top .tooltip-arrow::before,
6925
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6926
  top: -1px;
6927
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6928
  border-top-color: var(--bs-tooltip-bg);
6929
}
6930
 
6931
/* rtl:begin:ignore */
16848 stevensc 6932
.bs-tooltip-end .tooltip-arrow,
6933
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6934
  left: 0;
6935
  width: var(--bs-tooltip-arrow-height);
6936
  height: var(--bs-tooltip-arrow-width);
6937
}
16848 stevensc 6938
 
6939
.bs-tooltip-end .tooltip-arrow::before,
6940
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6941
  right: -1px;
6942
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6943
  border-right-color: var(--bs-tooltip-bg);
6944
}
6945
 
6946
/* rtl:end:ignore */
16848 stevensc 6947
.bs-tooltip-bottom .tooltip-arrow,
6948
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6949
  top: 0;
6950
}
16848 stevensc 6951
 
6952
.bs-tooltip-bottom .tooltip-arrow::before,
6953
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6954
  bottom: -1px;
6955
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6956
  border-bottom-color: var(--bs-tooltip-bg);
6957
}
6958
 
6959
/* rtl:begin:ignore */
16848 stevensc 6960
.bs-tooltip-start .tooltip-arrow,
6961
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6962
  right: 0;
6963
  width: var(--bs-tooltip-arrow-height);
6964
  height: var(--bs-tooltip-arrow-width);
6965
}
16848 stevensc 6966
 
6967
.bs-tooltip-start .tooltip-arrow::before,
6968
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6969
  left: -1px;
6970
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6971
  border-left-color: var(--bs-tooltip-bg);
6972
}
6973
 
6974
/* rtl:end:ignore */
6975
.tooltip-inner {
6976
  max-width: var(--bs-tooltip-max-width);
6977
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6978
  color: var(--bs-tooltip-color);
6979
  text-align: center;
6980
  background-color: var(--bs-tooltip-bg);
6981
  border-radius: var(--bs-tooltip-border-radius);
6982
}
6983
 
6984
.popover {
6985
  --bs-popover-zindex: 1070;
6986
  --bs-popover-max-width: 276px;
6987
  --bs-popover-font-size: 0.812rem;
6988
  --bs-popover-bg: #fff;
6989
  --bs-popover-border-width: 1px;
6990
  --bs-popover-border-color: #e9ecef;
6991
  --bs-popover-border-radius: 0.5rem;
6992
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6993
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6994
  --bs-popover-header-padding-x: 1rem;
6995
  --bs-popover-header-padding-y: 0.5rem;
6996
  --bs-popover-header-font-size: 0.875rem;
6997
  --bs-popover-header-color: ;
6998
  --bs-popover-header-bg: #e9ecef;
6999
  --bs-popover-body-padding-x: 1rem;
7000
  --bs-popover-body-padding-y: 1rem;
7001
  --bs-popover-body-color: #000;
7002
  --bs-popover-arrow-width: 1rem;
7003
  --bs-popover-arrow-height: 0.5rem;
7004
  --bs-popover-arrow-border: var(--bs-popover-border-color);
7005
  z-index: var(--bs-popover-zindex);
7006
  display: block;
7007
  max-width: var(--bs-popover-max-width);
7008
  font-family: var(--bs-font-sans-serif);
7009
  font-style: normal;
7010
  font-weight: 400;
7011
  line-height: 1.5;
7012
  text-align: left;
7013
  text-align: start;
7014
  text-decoration: none;
7015
  text-shadow: none;
7016
  text-transform: none;
7017
  letter-spacing: normal;
7018
  word-break: normal;
7019
  white-space: normal;
7020
  word-spacing: normal;
7021
  line-break: auto;
7022
  font-size: var(--bs-popover-font-size);
7023
  word-wrap: break-word;
7024
  background-color: var(--bs-popover-bg);
7025
  background-clip: padding-box;
7026
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7027
  border-radius: var(--bs-popover-border-radius);
7028
}
16848 stevensc 7029
 
16825 efrain 7030
.popover .popover-arrow {
7031
  display: block;
7032
  width: var(--bs-popover-arrow-width);
7033
  height: var(--bs-popover-arrow-height);
7034
}
16848 stevensc 7035
 
7036
.popover .popover-arrow::before,
7037
.popover .popover-arrow::after {
16825 efrain 7038
  position: absolute;
7039
  display: block;
7040
  content: "";
7041
  border-color: transparent;
7042
  border-style: solid;
7043
  border-width: 0;
7044
}
7045
 
16848 stevensc 7046
.bs-popover-top>.popover-arrow,
7047
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7048
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7049
}
16848 stevensc 7050
 
7051
.bs-popover-top>.popover-arrow::before,
7052
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7053
.bs-popover-top>.popover-arrow::after,
7054
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7055
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7056
}
16848 stevensc 7057
 
7058
.bs-popover-top>.popover-arrow::before,
7059
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7060
  bottom: 0;
7061
  border-top-color: var(--bs-popover-arrow-border);
7062
}
16848 stevensc 7063
 
7064
.bs-popover-top>.popover-arrow::after,
7065
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7066
  bottom: var(--bs-popover-border-width);
7067
  border-top-color: var(--bs-popover-bg);
7068
}
7069
 
7070
/* rtl:begin:ignore */
16848 stevensc 7071
.bs-popover-end>.popover-arrow,
7072
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7073
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7074
  width: var(--bs-popover-arrow-height);
7075
  height: var(--bs-popover-arrow-width);
7076
}
16848 stevensc 7077
 
7078
.bs-popover-end>.popover-arrow::before,
7079
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7080
.bs-popover-end>.popover-arrow::after,
7081
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7082
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7083
}
16848 stevensc 7084
 
7085
.bs-popover-end>.popover-arrow::before,
7086
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7087
  left: 0;
7088
  border-right-color: var(--bs-popover-arrow-border);
7089
}
16848 stevensc 7090
 
7091
.bs-popover-end>.popover-arrow::after,
7092
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7093
  left: var(--bs-popover-border-width);
7094
  border-right-color: var(--bs-popover-bg);
7095
}
7096
 
7097
/* rtl:end:ignore */
16848 stevensc 7098
.bs-popover-bottom>.popover-arrow,
7099
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7100
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7101
}
16848 stevensc 7102
 
7103
.bs-popover-bottom>.popover-arrow::before,
7104
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7105
.bs-popover-bottom>.popover-arrow::after,
7106
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7107
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7108
}
16848 stevensc 7109
 
7110
.bs-popover-bottom>.popover-arrow::before,
7111
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7112
  top: 0;
7113
  border-bottom-color: var(--bs-popover-arrow-border);
7114
}
16848 stevensc 7115
 
7116
.bs-popover-bottom>.popover-arrow::after,
7117
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7118
  top: var(--bs-popover-border-width);
7119
  border-bottom-color: var(--bs-popover-bg);
7120
}
16848 stevensc 7121
 
7122
.bs-popover-bottom .popover-header::before,
7123
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7124
  position: absolute;
7125
  top: 0;
7126
  left: 50%;
7127
  display: block;
7128
  width: var(--bs-popover-arrow-width);
7129
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7130
  content: "";
7131
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7132
}
7133
 
7134
/* rtl:begin:ignore */
16848 stevensc 7135
.bs-popover-start>.popover-arrow,
7136
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7137
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7138
  width: var(--bs-popover-arrow-height);
7139
  height: var(--bs-popover-arrow-width);
7140
}
16848 stevensc 7141
 
7142
.bs-popover-start>.popover-arrow::before,
7143
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7144
.bs-popover-start>.popover-arrow::after,
7145
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7146
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7147
}
16848 stevensc 7148
 
7149
.bs-popover-start>.popover-arrow::before,
7150
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7151
  right: 0;
7152
  border-left-color: var(--bs-popover-arrow-border);
7153
}
16848 stevensc 7154
 
7155
.bs-popover-start>.popover-arrow::after,
7156
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7157
  right: var(--bs-popover-border-width);
7158
  border-left-color: var(--bs-popover-bg);
7159
}
7160
 
7161
/* rtl:end:ignore */
7162
.popover-header {
7163
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7164
  margin-bottom: 0;
7165
  font-size: var(--bs-popover-header-font-size);
7166
  color: var(--bs-popover-header-color);
7167
  background-color: var(--bs-popover-header-bg);
7168
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7169
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7170
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7171
}
16848 stevensc 7172
 
16825 efrain 7173
.popover-header:empty {
7174
  display: none;
7175
}
7176
 
7177
.popover-body {
7178
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7179
  color: var(--bs-popover-body-color);
7180
}
7181
 
7182
.carousel {
7183
  position: relative;
7184
}
7185
 
7186
.carousel.pointer-event {
7187
  touch-action: pan-y;
7188
}
7189
 
7190
.carousel-inner {
7191
  position: relative;
7192
  width: 100%;
7193
  overflow: hidden;
7194
}
16848 stevensc 7195
 
16825 efrain 7196
.carousel-inner::after {
7197
  display: block;
7198
  clear: both;
7199
  content: "";
7200
}
7201
 
7202
.carousel-item {
7203
  position: relative;
7204
  display: none;
7205
  float: left;
7206
  width: 100%;
7207
  margin-right: -100%;
7208
  backface-visibility: hidden;
7209
  transition: transform 0.6s ease-in-out;
7210
}
16848 stevensc 7211
 
16825 efrain 7212
@media (prefers-reduced-motion: reduce) {
7213
  .carousel-item {
7214
    transition: none;
7215
  }
7216
}
7217
 
7218
.carousel-item.active,
7219
.carousel-item-next,
7220
.carousel-item-prev {
7221
  display: block;
7222
}
7223
 
7224
/* rtl:begin:ignore */
7225
.carousel-item-next:not(.carousel-item-start),
7226
.active.carousel-item-end {
7227
  transform: translateX(100%);
7228
}
7229
 
7230
.carousel-item-prev:not(.carousel-item-end),
7231
.active.carousel-item-start {
7232
  transform: translateX(-100%);
7233
}
7234
 
7235
/* rtl:end:ignore */
7236
.carousel-fade .carousel-item {
7237
  opacity: 0;
7238
  transition-property: opacity;
7239
  transform: none;
7240
}
16848 stevensc 7241
 
16825 efrain 7242
.carousel-fade .carousel-item.active,
7243
.carousel-fade .carousel-item-next.carousel-item-start,
7244
.carousel-fade .carousel-item-prev.carousel-item-end {
7245
  z-index: 1;
7246
  opacity: 1;
7247
}
16848 stevensc 7248
 
16825 efrain 7249
.carousel-fade .active.carousel-item-start,
7250
.carousel-fade .active.carousel-item-end {
7251
  z-index: 0;
7252
  opacity: 0;
7253
  transition: opacity 0s 0.6s;
7254
}
16848 stevensc 7255
 
16825 efrain 7256
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7257
 
16825 efrain 7258
  .carousel-fade .active.carousel-item-start,
7259
  .carousel-fade .active.carousel-item-end {
7260
    transition: none;
7261
  }
7262
}
7263
 
7264
.carousel-control-prev,
7265
.carousel-control-next {
7266
  position: absolute;
7267
  top: 0;
7268
  bottom: 0;
7269
  z-index: 1;
7270
  display: flex;
7271
  align-items: center;
7272
  justify-content: center;
7273
  width: 15%;
7274
  padding: 0;
7275
  color: #fff;
7276
  text-align: center;
7277
  background: none;
7278
  border: 0;
7279
  opacity: 0.5;
7280
  transition: opacity 0.15s ease;
7281
}
16848 stevensc 7282
 
16825 efrain 7283
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7284
 
16825 efrain 7285
  .carousel-control-prev,
7286
  .carousel-control-next {
7287
    transition: none;
7288
  }
7289
}
16848 stevensc 7290
 
7291
.carousel-control-prev:hover,
7292
.carousel-control-prev:focus,
16825 efrain 7293
.carousel-control-next:hover,
7294
.carousel-control-next:focus {
7295
  color: #fff;
7296
  text-decoration: none;
7297
  outline: 0;
7298
  opacity: 0.9;
7299
}
7300
 
7301
.carousel-control-prev {
7302
  left: 0;
7303
}
7304
 
7305
.carousel-control-next {
7306
  right: 0;
7307
}
7308
 
7309
.carousel-control-prev-icon,
7310
.carousel-control-next-icon {
7311
  display: inline-block;
7312
  width: 2rem;
7313
  height: 2rem;
7314
  background-repeat: no-repeat;
7315
  background-position: 50%;
7316
  background-size: 100% 100%;
7317
}
7318
 
7319
/* rtl:options: {
7320
  "autoRename": true,
7321
  "stringMap":[ {
7322
    "name"    : "prev-next",
7323
    "search"  : "prev",
7324
    "replace" : "next"
7325
  } ]
7326
} */
7327
.carousel-control-prev-icon {
7328
  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");
7329
}
7330
 
7331
.carousel-control-next-icon {
7332
  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");
7333
}
7334
 
7335
.carousel-indicators {
7336
  position: absolute;
7337
  right: 0;
7338
  bottom: 0;
7339
  left: 0;
7340
  z-index: 2;
7341
  display: flex;
7342
  justify-content: center;
7343
  padding: 0;
7344
  margin-right: 15%;
7345
  margin-bottom: 1rem;
7346
  margin-left: 15%;
7347
  list-style: none;
7348
}
16848 stevensc 7349
 
16825 efrain 7350
.carousel-indicators [data-bs-target] {
7351
  box-sizing: content-box;
7352
  flex: 0 1 auto;
7353
  width: 30px;
7354
  height: 3px;
7355
  padding: 0;
7356
  margin-right: 3px;
7357
  margin-left: 3px;
7358
  text-indent: -999px;
7359
  cursor: pointer;
7360
  background-color: #fff;
7361
  background-clip: padding-box;
7362
  border: 0;
7363
  border-top: 10px solid transparent;
7364
  border-bottom: 10px solid transparent;
7365
  opacity: 0.5;
7366
  transition: opacity 0.6s ease;
7367
}
16848 stevensc 7368
 
16825 efrain 7369
@media (prefers-reduced-motion: reduce) {
7370
  .carousel-indicators [data-bs-target] {
7371
    transition: none;
7372
  }
7373
}
16848 stevensc 7374
 
16825 efrain 7375
.carousel-indicators .active {
7376
  opacity: 1;
7377
}
7378
 
7379
.carousel-caption {
7380
  position: absolute;
7381
  right: 15%;
7382
  bottom: 1.25rem;
7383
  left: 15%;
7384
  padding-top: 1.25rem;
7385
  padding-bottom: 1.25rem;
7386
  color: #fff;
7387
  text-align: center;
7388
}
7389
 
7390
.carousel-dark .carousel-control-prev-icon,
7391
.carousel-dark .carousel-control-next-icon {
7392
  filter: invert(1) grayscale(100);
7393
}
16848 stevensc 7394
 
16825 efrain 7395
.carousel-dark .carousel-indicators [data-bs-target] {
7396
  background-color: #000;
7397
}
16848 stevensc 7398
 
16825 efrain 7399
.carousel-dark .carousel-caption {
7400
  color: #000;
7401
}
7402
 
7403
.spinner-grow,
7404
.spinner-border {
7405
  display: inline-block;
7406
  width: var(--bs-spinner-width);
7407
  height: var(--bs-spinner-height);
7408
  vertical-align: var(--bs-spinner-vertical-align);
7409
  border-radius: 50%;
7410
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7411
}
7412
 
7413
@keyframes spinner-border {
7414
  to {
16848 stevensc 7415
    transform: rotate(360deg)
7416
      /* rtl:ignore */
7417
    ;
16825 efrain 7418
  }
7419
}
16848 stevensc 7420
 
16825 efrain 7421
.spinner-border {
7422
  --bs-spinner-width: 2rem;
7423
  --bs-spinner-height: 2rem;
7424
  --bs-spinner-vertical-align: -0.125em;
7425
  --bs-spinner-border-width: 0.25em;
7426
  --bs-spinner-animation-speed: 0.75s;
7427
  --bs-spinner-animation-name: spinner-border;
7428
  border: var(--bs-spinner-border-width) solid currentcolor;
7429
  border-right-color: transparent;
7430
}
7431
 
7432
.spinner-border-sm {
7433
  --bs-spinner-width: 1rem;
7434
  --bs-spinner-height: 1rem;
7435
  --bs-spinner-border-width: 0.2em;
7436
}
7437
 
7438
@keyframes spinner-grow {
7439
  0% {
7440
    transform: scale(0);
7441
  }
16848 stevensc 7442
 
16825 efrain 7443
  50% {
7444
    opacity: 1;
7445
    transform: none;
7446
  }
7447
}
16848 stevensc 7448
 
16825 efrain 7449
.spinner-grow {
7450
  --bs-spinner-width: 2rem;
7451
  --bs-spinner-height: 2rem;
7452
  --bs-spinner-vertical-align: -0.125em;
7453
  --bs-spinner-animation-speed: 0.75s;
7454
  --bs-spinner-animation-name: spinner-grow;
7455
  background-color: currentcolor;
7456
  opacity: 0;
7457
}
7458
 
7459
.spinner-grow-sm {
7460
  --bs-spinner-width: 1rem;
7461
  --bs-spinner-height: 1rem;
7462
}
7463
 
7464
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7465
 
16825 efrain 7466
  .spinner-border,
7467
  .spinner-grow {
7468
    --bs-spinner-animation-speed: 1.5s;
7469
  }
7470
}
16848 stevensc 7471
 
16825 efrain 7472
.clearfix::after {
7473
  display: block;
7474
  clear: both;
7475
  content: "";
7476
}
7477
 
7478
.text-bg-primary {
7479
  color: #fff !important;
7480
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7481
}
7482
 
7483
.text-bg-secondary {
7484
  color: #fff !important;
7485
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7486
}
7487
 
7488
.text-bg-success {
7489
  color: #fff !important;
7490
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7491
}
7492
 
7493
.text-bg-info {
7494
  color: #000 !important;
7495
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7496
}
7497
 
7498
.text-bg-warning {
7499
  color: #000 !important;
7500
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7501
}
7502
 
7503
.text-bg-danger {
7504
  color: #fff !important;
7505
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7506
}
7507
 
7508
.text-bg-light {
7509
  color: #000 !important;
7510
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7511
}
7512
 
7513
.text-bg-dark {
7514
  color: #fff !important;
7515
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7516
}
7517
 
7518
.link-primary {
7519
  color: #6571ff !important;
7520
}
16848 stevensc 7521
 
7522
.link-primary:hover,
7523
.link-primary:focus {
16825 efrain 7524
  color: #515acc !important;
7525
}
7526
 
7527
.link-secondary {
7528
  color: #7987a1 !important;
7529
}
16848 stevensc 7530
 
7531
.link-secondary:hover,
7532
.link-secondary:focus {
16825 efrain 7533
  color: #616c81 !important;
7534
}
7535
 
7536
.link-success {
7537
  color: #05a34a !important;
7538
}
16848 stevensc 7539
 
7540
.link-success:hover,
7541
.link-success:focus {
16825 efrain 7542
  color: #04823b !important;
7543
}
7544
 
7545
.link-info {
7546
  color: #66d1d1 !important;
7547
}
16848 stevensc 7548
 
7549
.link-info:hover,
7550
.link-info:focus {
16825 efrain 7551
  color: #85dada !important;
7552
}
7553
 
7554
.link-warning {
7555
  color: #fbbc06 !important;
7556
}
16848 stevensc 7557
 
7558
.link-warning:hover,
7559
.link-warning:focus {
16825 efrain 7560
  color: #fcc938 !important;
7561
}
7562
 
7563
.link-danger {
7564
  color: #ff3366 !important;
7565
}
16848 stevensc 7566
 
7567
.link-danger:hover,
7568
.link-danger:focus {
16825 efrain 7569
  color: #cc2952 !important;
7570
}
7571
 
7572
.link-light {
7573
  color: #e9ecef !important;
7574
}
16848 stevensc 7575
 
7576
.link-light:hover,
7577
.link-light:focus {
16825 efrain 7578
  color: #edf0f2 !important;
7579
}
7580
 
7581
.link-dark {
7582
  color: #060c17 !important;
7583
}
16848 stevensc 7584
 
7585
.link-dark:hover,
7586
.link-dark:focus {
16825 efrain 7587
  color: #050a12 !important;
7588
}
7589
 
7590
.ratio {
7591
  position: relative;
7592
  width: 100%;
7593
}
16848 stevensc 7594
 
16825 efrain 7595
.ratio::before {
7596
  display: block;
7597
  padding-top: var(--bs-aspect-ratio);
7598
  content: "";
7599
}
16848 stevensc 7600
 
7601
.ratio>* {
16825 efrain 7602
  position: absolute;
7603
  top: 0;
7604
  left: 0;
7605
  width: 100%;
7606
  height: 100%;
7607
}
7608
 
7609
.ratio-1x1 {
7610
  --bs-aspect-ratio: 100%;
7611
}
7612
 
7613
.ratio-4x3 {
7614
  --bs-aspect-ratio: 75%;
7615
}
7616
 
7617
.ratio-16x9 {
7618
  --bs-aspect-ratio: 56.25%;
7619
}
7620
 
7621
.ratio-21x9 {
7622
  --bs-aspect-ratio: 42.8571428571%;
7623
}
7624
 
7625
.fixed-top {
7626
  position: fixed;
7627
  top: 0;
7628
  right: 0;
7629
  left: 0;
7630
  z-index: 1030;
7631
}
7632
 
7633
.fixed-bottom {
7634
  position: fixed;
7635
  right: 0;
7636
  bottom: 0;
7637
  left: 0;
7638
  z-index: 1030;
7639
}
7640
 
7641
.sticky-top {
7642
  position: sticky;
7643
  top: 0;
7644
  z-index: 1020;
7645
}
7646
 
7647
.sticky-bottom {
7648
  position: sticky;
7649
  bottom: 0;
7650
  z-index: 1020;
7651
}
7652
 
7653
@media (min-width: 576px) {
7654
  .sticky-sm-top {
7655
    position: sticky;
7656
    top: 0;
7657
    z-index: 1020;
7658
  }
16848 stevensc 7659
 
16825 efrain 7660
  .sticky-sm-bottom {
7661
    position: sticky;
7662
    bottom: 0;
7663
    z-index: 1020;
7664
  }
7665
}
16848 stevensc 7666
 
16825 efrain 7667
@media (min-width: 768px) {
7668
  .sticky-md-top {
7669
    position: sticky;
7670
    top: 0;
7671
    z-index: 1020;
7672
  }
16848 stevensc 7673
 
16825 efrain 7674
  .sticky-md-bottom {
7675
    position: sticky;
7676
    bottom: 0;
7677
    z-index: 1020;
7678
  }
7679
}
16848 stevensc 7680
 
16825 efrain 7681
@media (min-width: 992px) {
7682
  .sticky-lg-top {
7683
    position: sticky;
7684
    top: 0;
7685
    z-index: 1020;
7686
  }
16848 stevensc 7687
 
16825 efrain 7688
  .sticky-lg-bottom {
7689
    position: sticky;
7690
    bottom: 0;
7691
    z-index: 1020;
7692
  }
7693
}
16848 stevensc 7694
 
16825 efrain 7695
@media (min-width: 1200px) {
7696
  .sticky-xl-top {
7697
    position: sticky;
7698
    top: 0;
7699
    z-index: 1020;
7700
  }
16848 stevensc 7701
 
16825 efrain 7702
  .sticky-xl-bottom {
7703
    position: sticky;
7704
    bottom: 0;
7705
    z-index: 1020;
7706
  }
7707
}
16848 stevensc 7708
 
16825 efrain 7709
@media (min-width: 1400px) {
7710
  .sticky-xxl-top {
7711
    position: sticky;
7712
    top: 0;
7713
    z-index: 1020;
7714
  }
16848 stevensc 7715
 
16825 efrain 7716
  .sticky-xxl-bottom {
7717
    position: sticky;
7718
    bottom: 0;
7719
    z-index: 1020;
7720
  }
7721
}
16848 stevensc 7722
 
16825 efrain 7723
.hstack {
7724
  display: flex;
7725
  flex-direction: row;
7726
  align-items: center;
7727
  align-self: stretch;
7728
}
7729
 
7730
.vstack {
7731
  display: flex;
7732
  flex: 1 1 auto;
7733
  flex-direction: column;
7734
  align-self: stretch;
7735
}
7736
 
7737
.visually-hidden,
7738
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7739
  position: absolute !important;
7740
  width: 1px !important;
7741
  height: 1px !important;
7742
  padding: 0 !important;
7743
  margin: -1px !important;
7744
  overflow: hidden !important;
7745
  clip: rect(0, 0, 0, 0) !important;
7746
  white-space: nowrap !important;
7747
  border: 0 !important;
7748
}
7749
 
7750
.stretched-link::after {
7751
  position: absolute;
7752
  top: 0;
7753
  right: 0;
7754
  bottom: 0;
7755
  left: 0;
7756
  z-index: 1;
7757
  content: "";
7758
}
7759
 
7760
.text-truncate {
7761
  overflow: hidden;
7762
  text-overflow: ellipsis;
7763
  white-space: nowrap;
7764
}
7765
 
7766
.vr {
7767
  display: inline-block;
7768
  align-self: stretch;
7769
  width: 1px;
7770
  min-height: 1em;
7771
  background-color: currentcolor;
7772
  opacity: 0.1;
7773
}
7774
 
7775
.align-baseline {
7776
  vertical-align: baseline !important;
7777
}
7778
 
7779
.align-top {
7780
  vertical-align: top !important;
7781
}
7782
 
7783
.align-middle {
7784
  vertical-align: middle !important;
7785
}
7786
 
7787
.align-bottom {
7788
  vertical-align: bottom !important;
7789
}
7790
 
7791
.align-text-bottom {
7792
  vertical-align: text-bottom !important;
7793
}
7794
 
7795
.align-text-top {
7796
  vertical-align: text-top !important;
7797
}
7798
 
7799
.float-start {
7800
  float: left !important;
7801
}
7802
 
7803
.float-end {
7804
  float: right !important;
7805
}
7806
 
7807
.float-none {
7808
  float: none !important;
7809
}
7810
 
7811
.opacity-0 {
7812
  opacity: 0 !important;
7813
}
7814
 
7815
.opacity-25 {
7816
  opacity: 0.25 !important;
7817
}
7818
 
7819
.opacity-50 {
7820
  opacity: 0.5 !important;
7821
}
7822
 
7823
.opacity-75 {
7824
  opacity: 0.75 !important;
7825
}
7826
 
7827
.opacity-100 {
7828
  opacity: 1 !important;
7829
}
7830
 
7831
.overflow-auto {
7832
  overflow: auto !important;
7833
}
7834
 
7835
.overflow-hidden {
7836
  overflow: hidden !important;
7837
}
7838
 
7839
.overflow-visible {
7840
  overflow: visible !important;
7841
}
7842
 
7843
.overflow-scroll {
7844
  overflow: scroll !important;
7845
}
7846
 
7847
.d-inline {
7848
  display: inline !important;
7849
}
7850
 
7851
.d-inline-block {
7852
  display: inline-block !important;
7853
}
7854
 
7855
.d-block {
7856
  display: block !important;
7857
}
7858
 
7859
.d-grid {
7860
  display: grid !important;
7861
}
7862
 
7863
.d-table {
7864
  display: table !important;
7865
}
7866
 
7867
.d-table-row {
7868
  display: table-row !important;
7869
}
7870
 
7871
.d-table-cell {
7872
  display: table-cell !important;
7873
}
7874
 
7875
.d-flex {
7876
  display: flex !important;
7877
}
7878
 
7879
.d-inline-flex {
7880
  display: inline-flex !important;
7881
}
7882
 
16848 stevensc 7883
.d-none,
7884
.navbar .search-form {
16825 efrain 7885
  display: none !important;
7886
}
7887
 
7888
.shadow {
7889
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7890
}
7891
 
7892
.shadow-sm {
7893
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7894
}
7895
 
7896
.shadow-lg {
7897
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7898
}
7899
 
7900
.shadow-none {
7901
  box-shadow: none !important;
7902
}
7903
 
7904
.position-static {
7905
  position: static !important;
7906
}
7907
 
7908
.position-relative {
7909
  position: relative !important;
7910
}
7911
 
7912
.position-absolute {
7913
  position: absolute !important;
7914
}
7915
 
7916
.position-fixed {
7917
  position: fixed !important;
7918
}
7919
 
7920
.position-sticky {
7921
  position: sticky !important;
7922
}
7923
 
7924
.top-0 {
7925
  top: 0 !important;
7926
}
7927
 
7928
.top-10 {
7929
  top: 10% !important;
7930
}
7931
 
7932
.top-20 {
7933
  top: 20% !important;
7934
}
7935
 
7936
.top-25 {
7937
  top: 25% !important;
7938
}
7939
 
7940
.top-30 {
7941
  top: 30% !important;
7942
}
7943
 
7944
.top-40 {
7945
  top: 40% !important;
7946
}
7947
 
7948
.top-50 {
7949
  top: 50% !important;
7950
}
7951
 
7952
.top-60 {
7953
  top: 60% !important;
7954
}
7955
 
7956
.top-70 {
7957
  top: 70% !important;
7958
}
7959
 
7960
.top-75 {
7961
  top: 75% !important;
7962
}
7963
 
7964
.top-80 {
7965
  top: 80% !important;
7966
}
7967
 
7968
.top-90 {
7969
  top: 90% !important;
7970
}
7971
 
7972
.top-100 {
7973
  top: 100% !important;
7974
}
7975
 
7976
.bottom-0 {
7977
  bottom: 0 !important;
7978
}
7979
 
7980
.bottom-10 {
7981
  bottom: 10% !important;
7982
}
7983
 
7984
.bottom-20 {
7985
  bottom: 20% !important;
7986
}
7987
 
7988
.bottom-25 {
7989
  bottom: 25% !important;
7990
}
7991
 
7992
.bottom-30 {
7993
  bottom: 30% !important;
7994
}
7995
 
7996
.bottom-40 {
7997
  bottom: 40% !important;
7998
}
7999
 
8000
.bottom-50 {
8001
  bottom: 50% !important;
8002
}
8003
 
8004
.bottom-60 {
8005
  bottom: 60% !important;
8006
}
8007
 
8008
.bottom-70 {
8009
  bottom: 70% !important;
8010
}
8011
 
8012
.bottom-75 {
8013
  bottom: 75% !important;
8014
}
8015
 
8016
.bottom-80 {
8017
  bottom: 80% !important;
8018
}
8019
 
8020
.bottom-90 {
8021
  bottom: 90% !important;
8022
}
8023
 
8024
.bottom-100 {
8025
  bottom: 100% !important;
8026
}
8027
 
8028
.start-0 {
8029
  left: 0 !important;
8030
}
8031
 
8032
.start-10 {
8033
  left: 10% !important;
8034
}
8035
 
8036
.start-20 {
8037
  left: 20% !important;
8038
}
8039
 
8040
.start-25 {
8041
  left: 25% !important;
8042
}
8043
 
8044
.start-30 {
8045
  left: 30% !important;
8046
}
8047
 
8048
.start-40 {
8049
  left: 40% !important;
8050
}
8051
 
8052
.start-50 {
8053
  left: 50% !important;
8054
}
8055
 
8056
.start-60 {
8057
  left: 60% !important;
8058
}
8059
 
8060
.start-70 {
8061
  left: 70% !important;
8062
}
8063
 
8064
.start-75 {
8065
  left: 75% !important;
8066
}
8067
 
8068
.start-80 {
8069
  left: 80% !important;
8070
}
8071
 
8072
.start-90 {
8073
  left: 90% !important;
8074
}
8075
 
8076
.start-100 {
8077
  left: 100% !important;
8078
}
8079
 
8080
.end-0 {
8081
  right: 0 !important;
8082
}
8083
 
8084
.end-10 {
8085
  right: 10% !important;
8086
}
8087
 
8088
.end-20 {
8089
  right: 20% !important;
8090
}
8091
 
8092
.end-25 {
8093
  right: 25% !important;
8094
}
8095
 
8096
.end-30 {
8097
  right: 30% !important;
8098
}
8099
 
8100
.end-40 {
8101
  right: 40% !important;
8102
}
8103
 
8104
.end-50 {
8105
  right: 50% !important;
8106
}
8107
 
8108
.end-60 {
8109
  right: 60% !important;
8110
}
8111
 
8112
.end-70 {
8113
  right: 70% !important;
8114
}
8115
 
8116
.end-75 {
8117
  right: 75% !important;
8118
}
8119
 
8120
.end-80 {
8121
  right: 80% !important;
8122
}
8123
 
8124
.end-90 {
8125
  right: 90% !important;
8126
}
8127
 
8128
.end-100 {
8129
  right: 100% !important;
8130
}
8131
 
8132
.translate-middle {
8133
  transform: translate(-50%, -50%) !important;
8134
}
8135
 
8136
.translate-middle-x {
8137
  transform: translateX(-50%) !important;
8138
}
8139
 
8140
.translate-middle-y {
8141
  transform: translateY(-50%) !important;
8142
}
8143
 
8144
.border {
8145
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8146
}
8147
 
8148
.border-0 {
8149
  border: 0 !important;
8150
}
8151
 
8152
.border-top {
8153
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8154
}
8155
 
8156
.border-top-0 {
8157
  border-top: 0 !important;
8158
}
8159
 
8160
.border-end {
8161
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8162
}
8163
 
8164
.border-end-0 {
8165
  border-right: 0 !important;
8166
}
8167
 
8168
.border-bottom {
8169
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8170
}
8171
 
8172
.border-bottom-0 {
8173
  border-bottom: 0 !important;
8174
}
8175
 
8176
.border-start {
8177
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8178
}
8179
 
8180
.border-start-0 {
8181
  border-left: 0 !important;
8182
}
8183
 
8184
.border-primary {
8185
  --bs-border-opacity: 1;
8186
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8187
}
8188
 
8189
.border-secondary {
8190
  --bs-border-opacity: 1;
8191
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8192
}
8193
 
8194
.border-success {
8195
  --bs-border-opacity: 1;
8196
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8197
}
8198
 
8199
.border-info {
8200
  --bs-border-opacity: 1;
8201
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8202
}
8203
 
8204
.border-warning {
8205
  --bs-border-opacity: 1;
8206
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8207
}
8208
 
16848 stevensc 8209
.border-danger,
8210
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8211
  --bs-border-opacity: 1;
8212
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8213
}
8214
 
8215
.border-light {
8216
  --bs-border-opacity: 1;
8217
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8218
}
8219
 
8220
.border-dark {
8221
  --bs-border-opacity: 1;
8222
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8223
}
8224
 
8225
.border-white {
8226
  --bs-border-opacity: 1;
8227
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8228
}
8229
 
8230
.border-1 {
8231
  --bs-border-width: 1px;
8232
}
8233
 
8234
.border-2 {
8235
  --bs-border-width: 2px;
8236
}
8237
 
8238
.border-3 {
8239
  --bs-border-width: 3px;
8240
}
8241
 
8242
.border-4 {
8243
  --bs-border-width: 4px;
8244
}
8245
 
8246
.border-5 {
8247
  --bs-border-width: 5px;
8248
}
8249
 
8250
.border-opacity-10 {
8251
  --bs-border-opacity: 0.1;
8252
}
8253
 
8254
.border-opacity-25 {
8255
  --bs-border-opacity: 0.25;
8256
}
8257
 
8258
.border-opacity-50 {
8259
  --bs-border-opacity: 0.5;
8260
}
8261
 
8262
.border-opacity-75 {
8263
  --bs-border-opacity: 0.75;
8264
}
8265
 
8266
.border-opacity-100 {
8267
  --bs-border-opacity: 1;
8268
}
8269
 
16854 stevensc 8270
.w-fit {
8271
  width: fit-content !important;
8272
}
8273
 
16825 efrain 8274
.w-25 {
8275
  width: 25% !important;
8276
}
8277
 
8278
.w-50 {
8279
  width: 50% !important;
8280
}
8281
 
8282
.w-75 {
8283
  width: 75% !important;
8284
}
8285
 
8286
.w-100 {
8287
  width: 100% !important;
8288
}
8289
 
8290
.w-auto {
8291
  width: auto !important;
8292
}
8293
 
8294
.mw-100 {
8295
  max-width: 100% !important;
8296
}
8297
 
8298
.vw-100 {
8299
  width: 100vw !important;
8300
}
8301
 
8302
.min-vw-100 {
8303
  min-width: 100vw !important;
8304
}
8305
 
8306
.h-25 {
8307
  height: 25% !important;
8308
}
8309
 
8310
.h-50 {
8311
  height: 50% !important;
8312
}
8313
 
8314
.h-75 {
8315
  height: 75% !important;
8316
}
8317
 
8318
.h-100 {
8319
  height: 100% !important;
8320
}
8321
 
8322
.h-auto {
8323
  height: auto !important;
8324
}
8325
 
8326
.mh-100 {
8327
  max-height: 100% !important;
8328
}
8329
 
8330
.vh-100 {
8331
  height: 100vh !important;
8332
}
8333
 
8334
.min-vh-100 {
8335
  min-height: 100vh !important;
8336
}
8337
 
8338
.flex-fill {
8339
  flex: 1 1 auto !important;
8340
}
8341
 
8342
.flex-row {
8343
  flex-direction: row !important;
8344
}
8345
 
8346
.flex-column {
8347
  flex-direction: column !important;
8348
}
8349
 
8350
.flex-row-reverse {
8351
  flex-direction: row-reverse !important;
8352
}
8353
 
8354
.flex-column-reverse {
8355
  flex-direction: column-reverse !important;
8356
}
8357
 
8358
.flex-grow-0 {
8359
  flex-grow: 0 !important;
8360
}
8361
 
8362
.flex-grow-1 {
8363
  flex-grow: 1 !important;
8364
}
8365
 
8366
.flex-shrink-0 {
8367
  flex-shrink: 0 !important;
8368
}
8369
 
8370
.flex-shrink-1 {
8371
  flex-shrink: 1 !important;
8372
}
8373
 
8374
.flex-wrap {
8375
  flex-wrap: wrap !important;
8376
}
8377
 
8378
.flex-nowrap {
8379
  flex-wrap: nowrap !important;
8380
}
8381
 
8382
.flex-wrap-reverse {
8383
  flex-wrap: wrap-reverse !important;
8384
}
8385
 
8386
.justify-content-start {
8387
  justify-content: flex-start !important;
8388
}
8389
 
8390
.justify-content-end {
8391
  justify-content: flex-end !important;
8392
}
8393
 
16848 stevensc 8394
.justify-content-center,
8395
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8396
  justify-content: center !important;
8397
}
8398
 
8399
.justify-content-between {
8400
  justify-content: space-between !important;
8401
}
8402
 
8403
.justify-content-around {
8404
  justify-content: space-around !important;
8405
}
8406
 
8407
.justify-content-evenly {
8408
  justify-content: space-evenly !important;
8409
}
8410
 
8411
.align-items-start {
8412
  align-items: flex-start !important;
8413
}
8414
 
8415
.align-items-end {
8416
  align-items: flex-end !important;
8417
}
8418
 
16848 stevensc 8419
.align-items-center,
8420
.navbar .search-form {
16825 efrain 8421
  align-items: center !important;
8422
}
8423
 
8424
.align-items-baseline {
8425
  align-items: baseline !important;
8426
}
8427
 
8428
.align-items-stretch {
8429
  align-items: stretch !important;
8430
}
8431
 
8432
.align-content-start {
8433
  align-content: flex-start !important;
8434
}
8435
 
8436
.align-content-end {
8437
  align-content: flex-end !important;
8438
}
8439
 
8440
.align-content-center {
8441
  align-content: center !important;
8442
}
8443
 
8444
.align-content-between {
8445
  align-content: space-between !important;
8446
}
8447
 
8448
.align-content-around {
8449
  align-content: space-around !important;
8450
}
8451
 
8452
.align-content-stretch {
8453
  align-content: stretch !important;
8454
}
8455
 
8456
.align-self-auto {
8457
  align-self: auto !important;
8458
}
8459
 
8460
.align-self-start {
8461
  align-self: flex-start !important;
8462
}
8463
 
8464
.align-self-end {
8465
  align-self: flex-end !important;
8466
}
8467
 
8468
.align-self-center {
8469
  align-self: center !important;
8470
}
8471
 
8472
.align-self-baseline {
8473
  align-self: baseline !important;
8474
}
8475
 
8476
.align-self-stretch {
8477
  align-self: stretch !important;
8478
}
8479
 
8480
.order-first {
8481
  order: -1 !important;
8482
}
8483
 
8484
.order-0 {
8485
  order: 0 !important;
8486
}
8487
 
8488
.order-1 {
8489
  order: 1 !important;
8490
}
8491
 
8492
.order-2 {
8493
  order: 2 !important;
8494
}
8495
 
8496
.order-3 {
8497
  order: 3 !important;
8498
}
8499
 
8500
.order-4 {
8501
  order: 4 !important;
8502
}
8503
 
8504
.order-5 {
8505
  order: 5 !important;
8506
}
8507
 
8508
.order-last {
8509
  order: 6 !important;
8510
}
8511
 
8512
.m-0 {
8513
  margin: 0 !important;
8514
}
8515
 
8516
.m-1 {
8517
  margin: 0.25rem !important;
8518
}
8519
 
8520
.m-2 {
8521
  margin: 0.5rem !important;
8522
}
8523
 
8524
.m-3 {
8525
  margin: 1rem !important;
8526
}
8527
 
8528
.m-4 {
8529
  margin: 1.5rem !important;
8530
}
8531
 
8532
.m-5 {
8533
  margin: 3rem !important;
8534
}
8535
 
8536
.m-6 {
8537
  margin: 4.5rem !important;
8538
}
8539
 
8540
.m-7 {
8541
  margin: 6rem !important;
8542
}
8543
 
8544
.m-auto {
8545
  margin: auto !important;
8546
}
8547
 
8548
.mx-0 {
8549
  margin-right: 0 !important;
8550
  margin-left: 0 !important;
8551
}
8552
 
8553
.mx-1 {
8554
  margin-right: 0.25rem !important;
8555
  margin-left: 0.25rem !important;
8556
}
8557
 
8558
.mx-2 {
8559
  margin-right: 0.5rem !important;
8560
  margin-left: 0.5rem !important;
8561
}
8562
 
8563
.mx-3 {
8564
  margin-right: 1rem !important;
8565
  margin-left: 1rem !important;
8566
}
8567
 
8568
.mx-4 {
8569
  margin-right: 1.5rem !important;
8570
  margin-left: 1.5rem !important;
8571
}
8572
 
8573
.mx-5 {
8574
  margin-right: 3rem !important;
8575
  margin-left: 3rem !important;
8576
}
8577
 
8578
.mx-6 {
8579
  margin-right: 4.5rem !important;
8580
  margin-left: 4.5rem !important;
8581
}
8582
 
8583
.mx-7 {
8584
  margin-right: 6rem !important;
8585
  margin-left: 6rem !important;
8586
}
8587
 
8588
.mx-auto {
8589
  margin-right: auto !important;
8590
  margin-left: auto !important;
8591
}
8592
 
8593
.my-0 {
8594
  margin-top: 0 !important;
8595
  margin-bottom: 0 !important;
8596
}
8597
 
8598
.my-1 {
8599
  margin-top: 0.25rem !important;
8600
  margin-bottom: 0.25rem !important;
8601
}
8602
 
8603
.my-2 {
8604
  margin-top: 0.5rem !important;
8605
  margin-bottom: 0.5rem !important;
8606
}
8607
 
8608
.my-3 {
8609
  margin-top: 1rem !important;
8610
  margin-bottom: 1rem !important;
8611
}
8612
 
8613
.my-4 {
8614
  margin-top: 1.5rem !important;
8615
  margin-bottom: 1.5rem !important;
8616
}
8617
 
8618
.my-5 {
8619
  margin-top: 3rem !important;
8620
  margin-bottom: 3rem !important;
8621
}
8622
 
8623
.my-6 {
8624
  margin-top: 4.5rem !important;
8625
  margin-bottom: 4.5rem !important;
8626
}
8627
 
8628
.my-7 {
8629
  margin-top: 6rem !important;
8630
  margin-bottom: 6rem !important;
8631
}
8632
 
8633
.my-auto {
8634
  margin-top: auto !important;
8635
  margin-bottom: auto !important;
8636
}
8637
 
8638
.mt-0 {
8639
  margin-top: 0 !important;
8640
}
8641
 
8642
.mt-1 {
8643
  margin-top: 0.25rem !important;
8644
}
8645
 
8646
.mt-2 {
8647
  margin-top: 0.5rem !important;
8648
}
8649
 
16848 stevensc 8650
.mt-3,
8651
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8652
  margin-top: 1rem !important;
8653
}
8654
 
8655
.mt-4 {
8656
  margin-top: 1.5rem !important;
8657
}
8658
 
8659
.mt-5 {
8660
  margin-top: 3rem !important;
8661
}
8662
 
8663
.mt-6 {
8664
  margin-top: 4.5rem !important;
8665
}
8666
 
8667
.mt-7 {
8668
  margin-top: 6rem !important;
8669
}
8670
 
8671
.mt-auto {
8672
  margin-top: auto !important;
8673
}
8674
 
8675
.me-0 {
8676
  margin-right: 0 !important;
8677
}
8678
 
8679
.me-1 {
8680
  margin-right: 0.25rem !important;
8681
}
8682
 
8683
.me-2 {
8684
  margin-right: 0.5rem !important;
8685
}
8686
 
8687
.me-3 {
8688
  margin-right: 1rem !important;
8689
}
8690
 
8691
.me-4 {
8692
  margin-right: 1.5rem !important;
8693
}
8694
 
8695
.me-5 {
8696
  margin-right: 3rem !important;
8697
}
8698
 
8699
.me-6 {
8700
  margin-right: 4.5rem !important;
8701
}
8702
 
8703
.me-7 {
8704
  margin-right: 6rem !important;
8705
}
8706
 
8707
.me-auto {
8708
  margin-right: auto !important;
8709
}
8710
 
8711
.mb-0 {
8712
  margin-bottom: 0 !important;
8713
}
8714
 
16848 stevensc 8715
.mb-1,
8716
.example .btn-group {
16825 efrain 8717
  margin-bottom: 0.25rem !important;
8718
}
8719
 
8720
.mb-2 {
8721
  margin-bottom: 0.5rem !important;
8722
}
8723
 
8724
.mb-3 {
8725
  margin-bottom: 1rem !important;
8726
}
8727
 
8728
.mb-4 {
8729
  margin-bottom: 1.5rem !important;
8730
}
8731
 
8732
.mb-5 {
8733
  margin-bottom: 3rem !important;
8734
}
8735
 
8736
.mb-6 {
8737
  margin-bottom: 4.5rem !important;
8738
}
8739
 
8740
.mb-7 {
8741
  margin-bottom: 6rem !important;
8742
}
8743
 
8744
.mb-auto {
8745
  margin-bottom: auto !important;
8746
}
8747
 
8748
.ms-0 {
8749
  margin-left: 0 !important;
8750
}
8751
 
8752
.ms-1 {
8753
  margin-left: 0.25rem !important;
8754
}
8755
 
8756
.ms-2 {
8757
  margin-left: 0.5rem !important;
8758
}
8759
 
8760
.ms-3 {
8761
  margin-left: 1rem !important;
8762
}
8763
 
8764
.ms-4 {
8765
  margin-left: 1.5rem !important;
8766
}
8767
 
8768
.ms-5 {
8769
  margin-left: 3rem !important;
8770
}
8771
 
8772
.ms-6 {
8773
  margin-left: 4.5rem !important;
8774
}
8775
 
8776
.ms-7 {
8777
  margin-left: 6rem !important;
8778
}
8779
 
8780
.ms-auto {
8781
  margin-left: auto !important;
8782
}
8783
 
8784
.m-n1 {
8785
  margin: -0.25rem !important;
8786
}
8787
 
8788
.m-n2 {
8789
  margin: -0.5rem !important;
8790
}
8791
 
8792
.m-n3 {
8793
  margin: -1rem !important;
8794
}
8795
 
8796
.m-n4 {
8797
  margin: -1.5rem !important;
8798
}
8799
 
8800
.m-n5 {
8801
  margin: -3rem !important;
8802
}
8803
 
8804
.m-n6 {
8805
  margin: -4.5rem !important;
8806
}
8807
 
8808
.m-n7 {
8809
  margin: -6rem !important;
8810
}
8811
 
8812
.mx-n1 {
8813
  margin-right: -0.25rem !important;
8814
  margin-left: -0.25rem !important;
8815
}
8816
 
8817
.mx-n2 {
8818
  margin-right: -0.5rem !important;
8819
  margin-left: -0.5rem !important;
8820
}
8821
 
8822
.mx-n3 {
8823
  margin-right: -1rem !important;
8824
  margin-left: -1rem !important;
8825
}
8826
 
8827
.mx-n4 {
8828
  margin-right: -1.5rem !important;
8829
  margin-left: -1.5rem !important;
8830
}
8831
 
8832
.mx-n5 {
8833
  margin-right: -3rem !important;
8834
  margin-left: -3rem !important;
8835
}
8836
 
8837
.mx-n6 {
8838
  margin-right: -4.5rem !important;
8839
  margin-left: -4.5rem !important;
8840
}
8841
 
8842
.mx-n7 {
8843
  margin-right: -6rem !important;
8844
  margin-left: -6rem !important;
8845
}
8846
 
8847
.my-n1 {
8848
  margin-top: -0.25rem !important;
8849
  margin-bottom: -0.25rem !important;
8850
}
8851
 
8852
.my-n2 {
8853
  margin-top: -0.5rem !important;
8854
  margin-bottom: -0.5rem !important;
8855
}
8856
 
8857
.my-n3 {
8858
  margin-top: -1rem !important;
8859
  margin-bottom: -1rem !important;
8860
}
8861
 
8862
.my-n4 {
8863
  margin-top: -1.5rem !important;
8864
  margin-bottom: -1.5rem !important;
8865
}
8866
 
8867
.my-n5 {
8868
  margin-top: -3rem !important;
8869
  margin-bottom: -3rem !important;
8870
}
8871
 
8872
.my-n6 {
8873
  margin-top: -4.5rem !important;
8874
  margin-bottom: -4.5rem !important;
8875
}
8876
 
8877
.my-n7 {
8878
  margin-top: -6rem !important;
8879
  margin-bottom: -6rem !important;
8880
}
8881
 
8882
.mt-n1 {
8883
  margin-top: -0.25rem !important;
8884
}
8885
 
8886
.mt-n2 {
8887
  margin-top: -0.5rem !important;
8888
}
8889
 
8890
.mt-n3 {
8891
  margin-top: -1rem !important;
8892
}
8893
 
8894
.mt-n4 {
8895
  margin-top: -1.5rem !important;
8896
}
8897
 
8898
.mt-n5 {
8899
  margin-top: -3rem !important;
8900
}
8901
 
8902
.mt-n6 {
8903
  margin-top: -4.5rem !important;
8904
}
8905
 
8906
.mt-n7 {
8907
  margin-top: -6rem !important;
8908
}
8909
 
8910
.me-n1 {
8911
  margin-right: -0.25rem !important;
8912
}
8913
 
8914
.me-n2 {
8915
  margin-right: -0.5rem !important;
8916
}
8917
 
8918
.me-n3 {
8919
  margin-right: -1rem !important;
8920
}
8921
 
8922
.me-n4 {
8923
  margin-right: -1.5rem !important;
8924
}
8925
 
8926
.me-n5 {
8927
  margin-right: -3rem !important;
8928
}
8929
 
8930
.me-n6 {
8931
  margin-right: -4.5rem !important;
8932
}
8933
 
8934
.me-n7 {
8935
  margin-right: -6rem !important;
8936
}
8937
 
8938
.mb-n1 {
8939
  margin-bottom: -0.25rem !important;
8940
}
8941
 
8942
.mb-n2 {
8943
  margin-bottom: -0.5rem !important;
8944
}
8945
 
8946
.mb-n3 {
8947
  margin-bottom: -1rem !important;
8948
}
8949
 
8950
.mb-n4 {
8951
  margin-bottom: -1.5rem !important;
8952
}
8953
 
8954
.mb-n5 {
8955
  margin-bottom: -3rem !important;
8956
}
8957
 
8958
.mb-n6 {
8959
  margin-bottom: -4.5rem !important;
8960
}
8961
 
8962
.mb-n7 {
8963
  margin-bottom: -6rem !important;
8964
}
8965
 
8966
.ms-n1 {
8967
  margin-left: -0.25rem !important;
8968
}
8969
 
8970
.ms-n2 {
8971
  margin-left: -0.5rem !important;
8972
}
8973
 
8974
.ms-n3 {
8975
  margin-left: -1rem !important;
8976
}
8977
 
8978
.ms-n4 {
8979
  margin-left: -1.5rem !important;
8980
}
8981
 
8982
.ms-n5 {
8983
  margin-left: -3rem !important;
8984
}
8985
 
8986
.ms-n6 {
8987
  margin-left: -4.5rem !important;
8988
}
8989
 
8990
.ms-n7 {
8991
  margin-left: -6rem !important;
8992
}
8993
 
8994
.p-0 {
8995
  padding: 0 !important;
8996
}
8997
 
8998
.p-1 {
8999
  padding: 0.25rem !important;
9000
}
9001
 
9002
.p-2 {
9003
  padding: 0.5rem !important;
9004
}
9005
 
9006
.p-3 {
9007
  padding: 1rem !important;
9008
}
9009
 
9010
.p-4 {
9011
  padding: 1.5rem !important;
9012
}
9013
 
9014
.p-5 {
9015
  padding: 3rem !important;
9016
}
9017
 
9018
.p-6 {
9019
  padding: 4.5rem !important;
9020
}
9021
 
9022
.p-7 {
9023
  padding: 6rem !important;
9024
}
9025
 
9026
.px-0 {
9027
  padding-right: 0 !important;
9028
  padding-left: 0 !important;
9029
}
9030
 
9031
.px-1 {
9032
  padding-right: 0.25rem !important;
9033
  padding-left: 0.25rem !important;
9034
}
9035
 
9036
.px-2 {
9037
  padding-right: 0.5rem !important;
9038
  padding-left: 0.5rem !important;
9039
}
9040
 
9041
.px-3 {
9042
  padding-right: 1rem !important;
9043
  padding-left: 1rem !important;
9044
}
9045
 
9046
.px-4 {
9047
  padding-right: 1.5rem !important;
9048
  padding-left: 1.5rem !important;
9049
}
9050
 
9051
.px-5 {
9052
  padding-right: 3rem !important;
9053
  padding-left: 3rem !important;
9054
}
9055
 
9056
.px-6 {
9057
  padding-right: 4.5rem !important;
9058
  padding-left: 4.5rem !important;
9059
}
9060
 
9061
.px-7 {
9062
  padding-right: 6rem !important;
9063
  padding-left: 6rem !important;
9064
}
9065
 
9066
.py-0 {
9067
  padding-top: 0 !important;
9068
  padding-bottom: 0 !important;
9069
}
9070
 
9071
.py-1 {
9072
  padding-top: 0.25rem !important;
9073
  padding-bottom: 0.25rem !important;
9074
}
9075
 
9076
.py-2 {
9077
  padding-top: 0.5rem !important;
9078
  padding-bottom: 0.5rem !important;
9079
}
9080
 
9081
.py-3 {
9082
  padding-top: 1rem !important;
9083
  padding-bottom: 1rem !important;
9084
}
9085
 
9086
.py-4 {
9087
  padding-top: 1.5rem !important;
9088
  padding-bottom: 1.5rem !important;
9089
}
9090
 
9091
.py-5 {
9092
  padding-top: 3rem !important;
9093
  padding-bottom: 3rem !important;
9094
}
9095
 
9096
.py-6 {
9097
  padding-top: 4.5rem !important;
9098
  padding-bottom: 4.5rem !important;
9099
}
9100
 
9101
.py-7 {
9102
  padding-top: 6rem !important;
9103
  padding-bottom: 6rem !important;
9104
}
9105
 
9106
.pt-0 {
9107
  padding-top: 0 !important;
9108
}
9109
 
9110
.pt-1 {
9111
  padding-top: 0.25rem !important;
9112
}
9113
 
9114
.pt-2 {
9115
  padding-top: 0.5rem !important;
9116
}
9117
 
9118
.pt-3 {
9119
  padding-top: 1rem !important;
9120
}
9121
 
9122
.pt-4 {
9123
  padding-top: 1.5rem !important;
9124
}
9125
 
9126
.pt-5 {
9127
  padding-top: 3rem !important;
9128
}
9129
 
9130
.pt-6 {
9131
  padding-top: 4.5rem !important;
9132
}
9133
 
9134
.pt-7 {
9135
  padding-top: 6rem !important;
9136
}
9137
 
9138
.pe-0 {
9139
  padding-right: 0 !important;
9140
}
9141
 
9142
.pe-1 {
9143
  padding-right: 0.25rem !important;
9144
}
9145
 
9146
.pe-2 {
9147
  padding-right: 0.5rem !important;
9148
}
9149
 
9150
.pe-3 {
9151
  padding-right: 1rem !important;
9152
}
9153
 
9154
.pe-4 {
9155
  padding-right: 1.5rem !important;
9156
}
9157
 
9158
.pe-5 {
9159
  padding-right: 3rem !important;
9160
}
9161
 
9162
.pe-6 {
9163
  padding-right: 4.5rem !important;
9164
}
9165
 
9166
.pe-7 {
9167
  padding-right: 6rem !important;
9168
}
9169
 
9170
.pb-0 {
9171
  padding-bottom: 0 !important;
9172
}
9173
 
9174
.pb-1 {
9175
  padding-bottom: 0.25rem !important;
9176
}
9177
 
9178
.pb-2 {
9179
  padding-bottom: 0.5rem !important;
9180
}
9181
 
9182
.pb-3 {
9183
  padding-bottom: 1rem !important;
9184
}
9185
 
9186
.pb-4 {
9187
  padding-bottom: 1.5rem !important;
9188
}
9189
 
9190
.pb-5 {
9191
  padding-bottom: 3rem !important;
9192
}
9193
 
9194
.pb-6 {
9195
  padding-bottom: 4.5rem !important;
9196
}
9197
 
9198
.pb-7 {
9199
  padding-bottom: 6rem !important;
9200
}
9201
 
9202
.ps-0 {
9203
  padding-left: 0 !important;
9204
}
9205
 
9206
.ps-1 {
9207
  padding-left: 0.25rem !important;
9208
}
9209
 
9210
.ps-2 {
9211
  padding-left: 0.5rem !important;
9212
}
9213
 
9214
.ps-3 {
9215
  padding-left: 1rem !important;
9216
}
9217
 
9218
.ps-4 {
9219
  padding-left: 1.5rem !important;
9220
}
9221
 
9222
.ps-5 {
9223
  padding-left: 3rem !important;
9224
}
9225
 
9226
.ps-6 {
9227
  padding-left: 4.5rem !important;
9228
}
9229
 
9230
.ps-7 {
9231
  padding-left: 6rem !important;
9232
}
9233
 
9234
.gap-0 {
9235
  gap: 0 !important;
9236
}
9237
 
9238
.gap-1 {
9239
  gap: 0.25rem !important;
9240
}
9241
 
9242
.gap-2 {
9243
  gap: 0.5rem !important;
9244
}
9245
 
9246
.gap-3 {
9247
  gap: 1rem !important;
9248
}
9249
 
9250
.gap-4 {
9251
  gap: 1.5rem !important;
9252
}
9253
 
9254
.gap-5 {
9255
  gap: 3rem !important;
9256
}
9257
 
9258
.gap-6 {
9259
  gap: 4.5rem !important;
9260
}
9261
 
9262
.gap-7 {
9263
  gap: 6rem !important;
9264
}
9265
 
9266
.font-monospace {
9267
  font-family: var(--bs-font-monospace) !important;
9268
}
9269
 
9270
.fs-1 {
9271
  font-size: calc(1.375rem + 1.5vw) !important;
9272
}
9273
 
9274
.fs-2 {
9275
  font-size: calc(1.325rem + 0.9vw) !important;
9276
}
9277
 
9278
.fs-3 {
9279
  font-size: calc(1.275rem + 0.3vw) !important;
9280
}
9281
 
9282
.fs-4 {
9283
  font-size: 1.25rem !important;
9284
}
9285
 
9286
.fs-5 {
9287
  font-size: 1rem !important;
9288
}
9289
 
9290
.fs-6 {
9291
  font-size: 0.875rem !important;
9292
}
9293
 
9294
.fst-italic {
9295
  font-style: italic !important;
9296
}
9297
 
9298
.fst-normal {
9299
  font-style: normal !important;
9300
}
9301
 
9302
.fw-light {
9303
  font-weight: 300 !important;
9304
}
9305
 
9306
.fw-lighter {
9307
  font-weight: lighter !important;
9308
}
9309
 
9310
.fw-normal {
9311
  font-weight: 400 !important;
9312
}
9313
 
9314
.fw-bold {
9315
  font-weight: 500 !important;
9316
}
9317
 
9318
.fw-semibold {
9319
  font-weight: 600 !important;
9320
}
9321
 
9322
.fw-bolder {
9323
  font-weight: 700 !important;
9324
}
9325
 
9326
.lh-1 {
9327
  line-height: 1 !important;
9328
}
9329
 
9330
.lh-sm {
9331
  line-height: 1.25 !important;
9332
}
9333
 
9334
.lh-base {
9335
  line-height: 1.5 !important;
9336
}
9337
 
9338
.lh-lg {
9339
  line-height: 2 !important;
9340
}
9341
 
9342
.text-start {
9343
  text-align: left !important;
9344
}
9345
 
9346
.text-end {
9347
  text-align: right !important;
9348
}
9349
 
9350
.text-center {
9351
  text-align: center !important;
9352
}
9353
 
9354
.text-decoration-none {
9355
  text-decoration: none !important;
9356
}
9357
 
9358
.text-decoration-underline {
9359
  text-decoration: underline !important;
9360
}
9361
 
9362
.text-decoration-line-through {
9363
  text-decoration: line-through !important;
9364
}
9365
 
9366
.text-lowercase {
9367
  text-transform: lowercase !important;
9368
}
9369
 
9370
.text-uppercase {
9371
  text-transform: uppercase !important;
9372
}
9373
 
9374
.text-capitalize {
9375
  text-transform: capitalize !important;
9376
}
9377
 
9378
.text-wrap {
9379
  white-space: normal !important;
9380
}
9381
 
9382
.text-nowrap {
9383
  white-space: nowrap !important;
9384
}
9385
 
9386
/* rtl:begin:remove */
9387
.text-break {
9388
  word-wrap: break-word !important;
9389
  word-break: break-word !important;
9390
}
9391
 
9392
/* rtl:end:remove */
9393
.text-primary {
9394
  --bs-text-opacity: 1;
9395
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9396
}
9397
 
9398
.text-secondary {
9399
  --bs-text-opacity: 1;
9400
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9401
}
9402
 
9403
.text-success {
9404
  --bs-text-opacity: 1;
9405
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9406
}
9407
 
9408
.text-info {
9409
  --bs-text-opacity: 1;
9410
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9411
}
9412
 
9413
.text-warning {
9414
  --bs-text-opacity: 1;
9415
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9416
}
9417
 
9418
.text-danger {
9419
  --bs-text-opacity: 1;
9420
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9421
}
9422
 
9423
.text-light {
9424
  --bs-text-opacity: 1;
9425
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9426
}
9427
 
9428
.text-dark {
9429
  --bs-text-opacity: 1;
9430
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9431
}
9432
 
9433
.text-black {
9434
  --bs-text-opacity: 1;
9435
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9436
}
9437
 
9438
.text-white {
9439
  --bs-text-opacity: 1;
9440
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9441
}
9442
 
9443
.text-body {
9444
  --bs-text-opacity: 1;
9445
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9446
}
9447
 
16848 stevensc 9448
.text-muted,
9449
.dropzone.dz-clickable .dz-message * {
16825 efrain 9450
  --bs-text-opacity: 1;
9451
  color: #7987a1 !important;
9452
}
9453
 
9454
.text-black-50 {
9455
  --bs-text-opacity: 1;
9456
  color: rgba(0, 0, 0, 0.5) !important;
9457
}
9458
 
9459
.text-white-50 {
9460
  --bs-text-opacity: 1;
9461
  color: rgba(255, 255, 255, 0.5) !important;
9462
}
9463
 
9464
.text-reset {
9465
  --bs-text-opacity: 1;
9466
  color: inherit !important;
9467
}
9468
 
9469
.text-opacity-25 {
9470
  --bs-text-opacity: 0.25;
9471
}
9472
 
9473
.text-opacity-50 {
9474
  --bs-text-opacity: 0.5;
9475
}
9476
 
9477
.text-opacity-75 {
9478
  --bs-text-opacity: 0.75;
9479
}
9480
 
9481
.text-opacity-100 {
9482
  --bs-text-opacity: 1;
9483
}
9484
 
9485
.bg-primary {
9486
  --bs-bg-opacity: 1;
9487
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9488
}
9489
 
9490
.bg-secondary {
9491
  --bs-bg-opacity: 1;
9492
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9493
}
9494
 
9495
.bg-success {
9496
  --bs-bg-opacity: 1;
9497
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9498
}
9499
 
9500
.bg-info {
9501
  --bs-bg-opacity: 1;
9502
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9503
}
9504
 
9505
.bg-warning {
9506
  --bs-bg-opacity: 1;
9507
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9508
}
9509
 
9510
.bg-danger {
9511
  --bs-bg-opacity: 1;
9512
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9513
}
9514
 
9515
.bg-light {
9516
  --bs-bg-opacity: 1;
9517
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9518
}
9519
 
9520
.bg-dark {
9521
  --bs-bg-opacity: 1;
9522
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9523
}
9524
 
9525
.bg-black {
9526
  --bs-bg-opacity: 1;
9527
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9528
}
9529
 
9530
.bg-white {
9531
  --bs-bg-opacity: 1;
9532
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9533
}
9534
 
9535
.bg-body {
9536
  --bs-bg-opacity: 1;
9537
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9538
}
9539
 
9540
.bg-transparent {
9541
  --bs-bg-opacity: 1;
9542
  background-color: transparent !important;
9543
}
9544
 
9545
.bg-opacity-10 {
9546
  --bs-bg-opacity: 0.1;
9547
}
9548
 
9549
.bg-opacity-25 {
9550
  --bs-bg-opacity: 0.25;
9551
}
9552
 
9553
.bg-opacity-50 {
9554
  --bs-bg-opacity: 0.5;
9555
}
9556
 
9557
.bg-opacity-75 {
9558
  --bs-bg-opacity: 0.75;
9559
}
9560
 
9561
.bg-opacity-100 {
9562
  --bs-bg-opacity: 1;
9563
}
9564
 
9565
.bg-gradient {
9566
  background-image: var(--bs-gradient) !important;
9567
}
9568
 
9569
.user-select-all {
9570
  user-select: all !important;
9571
}
9572
 
9573
.user-select-auto {
9574
  user-select: auto !important;
9575
}
9576
 
9577
.user-select-none {
9578
  user-select: none !important;
9579
}
9580
 
9581
.pe-none {
9582
  pointer-events: none !important;
9583
}
9584
 
9585
.pe-auto {
9586
  pointer-events: auto !important;
9587
}
9588
 
9589
.rounded {
9590
  border-radius: var(--bs-border-radius) !important;
9591
}
9592
 
9593
.rounded-0 {
9594
  border-radius: 0 !important;
9595
}
9596
 
9597
.rounded-1 {
9598
  border-radius: var(--bs-border-radius-sm) !important;
9599
}
9600
 
9601
.rounded-2 {
9602
  border-radius: var(--bs-border-radius) !important;
9603
}
9604
 
9605
.rounded-3 {
9606
  border-radius: var(--bs-border-radius-lg) !important;
9607
}
9608
 
9609
.rounded-4 {
9610
  border-radius: var(--bs-border-radius-xl) !important;
9611
}
9612
 
9613
.rounded-5 {
9614
  border-radius: var(--bs-border-radius-2xl) !important;
9615
}
9616
 
9617
.rounded-circle {
9618
  border-radius: 50% !important;
9619
}
9620
 
9621
.rounded-pill {
9622
  border-radius: var(--bs-border-radius-pill) !important;
9623
}
9624
 
9625
.rounded-top {
9626
  border-top-left-radius: var(--bs-border-radius) !important;
9627
  border-top-right-radius: var(--bs-border-radius) !important;
9628
}
9629
 
9630
.rounded-end {
9631
  border-top-right-radius: var(--bs-border-radius) !important;
9632
  border-bottom-right-radius: var(--bs-border-radius) !important;
9633
}
9634
 
9635
.rounded-bottom {
9636
  border-bottom-right-radius: var(--bs-border-radius) !important;
9637
  border-bottom-left-radius: var(--bs-border-radius) !important;
9638
}
9639
 
9640
.rounded-start {
9641
  border-bottom-left-radius: var(--bs-border-radius) !important;
9642
  border-top-left-radius: var(--bs-border-radius) !important;
9643
}
9644
 
9645
.visible {
9646
  visibility: visible !important;
9647
}
9648
 
9649
.invisible {
9650
  visibility: hidden !important;
9651
}
9652
 
9653
.bg-gray-100 {
9654
  background-color: #f8f9fa !important;
9655
}
9656
 
9657
.bg-gray-200 {
9658
  background-color: #e9ecef !important;
9659
}
9660
 
9661
.bg-gray-300 {
9662
  background-color: #dee2e6 !important;
9663
}
9664
 
9665
.bg-gray-400 {
9666
  background-color: #cbd1db !important;
9667
}
9668
 
9669
.bg-gray-500 {
9670
  background-color: #aeb7c5 !important;
9671
}
9672
 
9673
.bg-gray-600 {
9674
  background-color: #7987a1 !important;
9675
}
9676
 
9677
.bg-gray-700 {
9678
  background-color: #41516c !important;
9679
}
9680
 
9681
.bg-gray-800 {
9682
  background-color: #212a3a !important;
9683
}
9684
 
9685
.bg-gray-900 {
9686
  background-color: #060c17 !important;
9687
}
9688
 
9689
@media (min-width: 576px) {
9690
  .float-sm-start {
9691
    float: left !important;
9692
  }
16848 stevensc 9693
 
16825 efrain 9694
  .float-sm-end {
9695
    float: right !important;
9696
  }
16848 stevensc 9697
 
16825 efrain 9698
  .float-sm-none {
9699
    float: none !important;
9700
  }
16848 stevensc 9701
 
16825 efrain 9702
  .d-sm-inline {
9703
    display: inline !important;
9704
  }
16848 stevensc 9705
 
16825 efrain 9706
  .d-sm-inline-block {
9707
    display: inline-block !important;
9708
  }
16848 stevensc 9709
 
16825 efrain 9710
  .d-sm-block {
9711
    display: block !important;
9712
  }
16848 stevensc 9713
 
16825 efrain 9714
  .d-sm-grid {
9715
    display: grid !important;
9716
  }
16848 stevensc 9717
 
16825 efrain 9718
  .d-sm-table {
9719
    display: table !important;
9720
  }
16848 stevensc 9721
 
16825 efrain 9722
  .d-sm-table-row {
9723
    display: table-row !important;
9724
  }
16848 stevensc 9725
 
16825 efrain 9726
  .d-sm-table-cell {
9727
    display: table-cell !important;
9728
  }
16848 stevensc 9729
 
16825 efrain 9730
  .d-sm-flex {
9731
    display: flex !important;
9732
  }
16848 stevensc 9733
 
16825 efrain 9734
  .d-sm-inline-flex {
9735
    display: inline-flex !important;
9736
  }
16848 stevensc 9737
 
16825 efrain 9738
  .d-sm-none {
9739
    display: none !important;
9740
  }
16848 stevensc 9741
 
16825 efrain 9742
  .border-sm {
9743
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9744
  }
16848 stevensc 9745
 
16825 efrain 9746
  .border-sm-0 {
9747
    border: 0 !important;
9748
  }
16848 stevensc 9749
 
16825 efrain 9750
  .border-top-sm {
9751
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9752
  }
16848 stevensc 9753
 
16825 efrain 9754
  .border-top-sm-0 {
9755
    border-top: 0 !important;
9756
  }
16848 stevensc 9757
 
16825 efrain 9758
  .border-end-sm {
9759
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9760
  }
16848 stevensc 9761
 
16825 efrain 9762
  .border-end-sm-0 {
9763
    border-right: 0 !important;
9764
  }
16848 stevensc 9765
 
16825 efrain 9766
  .border-bottom-sm {
9767
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9768
  }
16848 stevensc 9769
 
16825 efrain 9770
  .border-bottom-sm-0 {
9771
    border-bottom: 0 !important;
9772
  }
16848 stevensc 9773
 
16825 efrain 9774
  .border-start-sm {
9775
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9776
  }
16848 stevensc 9777
 
16825 efrain 9778
  .border-start-sm-0 {
9779
    border-left: 0 !important;
9780
  }
16848 stevensc 9781
 
16825 efrain 9782
  .flex-sm-fill {
9783
    flex: 1 1 auto !important;
9784
  }
16848 stevensc 9785
 
16825 efrain 9786
  .flex-sm-row {
9787
    flex-direction: row !important;
9788
  }
16848 stevensc 9789
 
16825 efrain 9790
  .flex-sm-column {
9791
    flex-direction: column !important;
9792
  }
16848 stevensc 9793
 
16825 efrain 9794
  .flex-sm-row-reverse {
9795
    flex-direction: row-reverse !important;
9796
  }
16848 stevensc 9797
 
16825 efrain 9798
  .flex-sm-column-reverse {
9799
    flex-direction: column-reverse !important;
9800
  }
16848 stevensc 9801
 
16825 efrain 9802
  .flex-sm-grow-0 {
9803
    flex-grow: 0 !important;
9804
  }
16848 stevensc 9805
 
16825 efrain 9806
  .flex-sm-grow-1 {
9807
    flex-grow: 1 !important;
9808
  }
16848 stevensc 9809
 
16825 efrain 9810
  .flex-sm-shrink-0 {
9811
    flex-shrink: 0 !important;
9812
  }
16848 stevensc 9813
 
16825 efrain 9814
  .flex-sm-shrink-1 {
9815
    flex-shrink: 1 !important;
9816
  }
16848 stevensc 9817
 
16825 efrain 9818
  .flex-sm-wrap {
9819
    flex-wrap: wrap !important;
9820
  }
16848 stevensc 9821
 
16825 efrain 9822
  .flex-sm-nowrap {
9823
    flex-wrap: nowrap !important;
9824
  }
16848 stevensc 9825
 
16825 efrain 9826
  .flex-sm-wrap-reverse {
9827
    flex-wrap: wrap-reverse !important;
9828
  }
16848 stevensc 9829
 
16825 efrain 9830
  .justify-content-sm-start {
9831
    justify-content: flex-start !important;
9832
  }
16848 stevensc 9833
 
16825 efrain 9834
  .justify-content-sm-end {
9835
    justify-content: flex-end !important;
9836
  }
16848 stevensc 9837
 
16825 efrain 9838
  .justify-content-sm-center {
9839
    justify-content: center !important;
9840
  }
16848 stevensc 9841
 
16825 efrain 9842
  .justify-content-sm-between {
9843
    justify-content: space-between !important;
9844
  }
16848 stevensc 9845
 
16825 efrain 9846
  .justify-content-sm-around {
9847
    justify-content: space-around !important;
9848
  }
16848 stevensc 9849
 
16825 efrain 9850
  .justify-content-sm-evenly {
9851
    justify-content: space-evenly !important;
9852
  }
16848 stevensc 9853
 
16825 efrain 9854
  .align-items-sm-start {
9855
    align-items: flex-start !important;
9856
  }
16848 stevensc 9857
 
16825 efrain 9858
  .align-items-sm-end {
9859
    align-items: flex-end !important;
9860
  }
16848 stevensc 9861
 
16825 efrain 9862
  .align-items-sm-center {
9863
    align-items: center !important;
9864
  }
16848 stevensc 9865
 
16825 efrain 9866
  .align-items-sm-baseline {
9867
    align-items: baseline !important;
9868
  }
16848 stevensc 9869
 
16825 efrain 9870
  .align-items-sm-stretch {
9871
    align-items: stretch !important;
9872
  }
16848 stevensc 9873
 
16825 efrain 9874
  .align-content-sm-start {
9875
    align-content: flex-start !important;
9876
  }
16848 stevensc 9877
 
16825 efrain 9878
  .align-content-sm-end {
9879
    align-content: flex-end !important;
9880
  }
16848 stevensc 9881
 
16825 efrain 9882
  .align-content-sm-center {
9883
    align-content: center !important;
9884
  }
16848 stevensc 9885
 
16825 efrain 9886
  .align-content-sm-between {
9887
    align-content: space-between !important;
9888
  }
16848 stevensc 9889
 
16825 efrain 9890
  .align-content-sm-around {
9891
    align-content: space-around !important;
9892
  }
16848 stevensc 9893
 
16825 efrain 9894
  .align-content-sm-stretch {
9895
    align-content: stretch !important;
9896
  }
16848 stevensc 9897
 
16825 efrain 9898
  .align-self-sm-auto {
9899
    align-self: auto !important;
9900
  }
16848 stevensc 9901
 
16825 efrain 9902
  .align-self-sm-start {
9903
    align-self: flex-start !important;
9904
  }
16848 stevensc 9905
 
16825 efrain 9906
  .align-self-sm-end {
9907
    align-self: flex-end !important;
9908
  }
16848 stevensc 9909
 
16825 efrain 9910
  .align-self-sm-center {
9911
    align-self: center !important;
9912
  }
16848 stevensc 9913
 
16825 efrain 9914
  .align-self-sm-baseline {
9915
    align-self: baseline !important;
9916
  }
16848 stevensc 9917
 
16825 efrain 9918
  .align-self-sm-stretch {
9919
    align-self: stretch !important;
9920
  }
16848 stevensc 9921
 
16825 efrain 9922
  .order-sm-first {
9923
    order: -1 !important;
9924
  }
16848 stevensc 9925
 
16825 efrain 9926
  .order-sm-0 {
9927
    order: 0 !important;
9928
  }
16848 stevensc 9929
 
16825 efrain 9930
  .order-sm-1 {
9931
    order: 1 !important;
9932
  }
16848 stevensc 9933
 
16825 efrain 9934
  .order-sm-2 {
9935
    order: 2 !important;
9936
  }
16848 stevensc 9937
 
16825 efrain 9938
  .order-sm-3 {
9939
    order: 3 !important;
9940
  }
16848 stevensc 9941
 
16825 efrain 9942
  .order-sm-4 {
9943
    order: 4 !important;
9944
  }
16848 stevensc 9945
 
16825 efrain 9946
  .order-sm-5 {
9947
    order: 5 !important;
9948
  }
16848 stevensc 9949
 
16825 efrain 9950
  .order-sm-last {
9951
    order: 6 !important;
9952
  }
16848 stevensc 9953
 
16825 efrain 9954
  .m-sm-0 {
9955
    margin: 0 !important;
9956
  }
16848 stevensc 9957
 
16825 efrain 9958
  .m-sm-1 {
9959
    margin: 0.25rem !important;
9960
  }
16848 stevensc 9961
 
16825 efrain 9962
  .m-sm-2 {
9963
    margin: 0.5rem !important;
9964
  }
16848 stevensc 9965
 
16825 efrain 9966
  .m-sm-3 {
9967
    margin: 1rem !important;
9968
  }
16848 stevensc 9969
 
16825 efrain 9970
  .m-sm-4 {
9971
    margin: 1.5rem !important;
9972
  }
16848 stevensc 9973
 
16825 efrain 9974
  .m-sm-5 {
9975
    margin: 3rem !important;
9976
  }
16848 stevensc 9977
 
16825 efrain 9978
  .m-sm-6 {
9979
    margin: 4.5rem !important;
9980
  }
16848 stevensc 9981
 
16825 efrain 9982
  .m-sm-7 {
9983
    margin: 6rem !important;
9984
  }
16848 stevensc 9985
 
16825 efrain 9986
  .m-sm-auto {
9987
    margin: auto !important;
9988
  }
16848 stevensc 9989
 
16825 efrain 9990
  .mx-sm-0 {
9991
    margin-right: 0 !important;
9992
    margin-left: 0 !important;
9993
  }
16848 stevensc 9994
 
16825 efrain 9995
  .mx-sm-1 {
9996
    margin-right: 0.25rem !important;
9997
    margin-left: 0.25rem !important;
9998
  }
16848 stevensc 9999
 
16825 efrain 10000
  .mx-sm-2 {
10001
    margin-right: 0.5rem !important;
10002
    margin-left: 0.5rem !important;
10003
  }
16848 stevensc 10004
 
16825 efrain 10005
  .mx-sm-3 {
10006
    margin-right: 1rem !important;
10007
    margin-left: 1rem !important;
10008
  }
16848 stevensc 10009
 
16825 efrain 10010
  .mx-sm-4 {
10011
    margin-right: 1.5rem !important;
10012
    margin-left: 1.5rem !important;
10013
  }
16848 stevensc 10014
 
16825 efrain 10015
  .mx-sm-5 {
10016
    margin-right: 3rem !important;
10017
    margin-left: 3rem !important;
10018
  }
16848 stevensc 10019
 
16825 efrain 10020
  .mx-sm-6 {
10021
    margin-right: 4.5rem !important;
10022
    margin-left: 4.5rem !important;
10023
  }
16848 stevensc 10024
 
16825 efrain 10025
  .mx-sm-7 {
10026
    margin-right: 6rem !important;
10027
    margin-left: 6rem !important;
10028
  }
16848 stevensc 10029
 
16825 efrain 10030
  .mx-sm-auto {
10031
    margin-right: auto !important;
10032
    margin-left: auto !important;
10033
  }
16848 stevensc 10034
 
16825 efrain 10035
  .my-sm-0 {
10036
    margin-top: 0 !important;
10037
    margin-bottom: 0 !important;
10038
  }
16848 stevensc 10039
 
16825 efrain 10040
  .my-sm-1 {
10041
    margin-top: 0.25rem !important;
10042
    margin-bottom: 0.25rem !important;
10043
  }
16848 stevensc 10044
 
16825 efrain 10045
  .my-sm-2 {
10046
    margin-top: 0.5rem !important;
10047
    margin-bottom: 0.5rem !important;
10048
  }
16848 stevensc 10049
 
16825 efrain 10050
  .my-sm-3 {
10051
    margin-top: 1rem !important;
10052
    margin-bottom: 1rem !important;
10053
  }
16848 stevensc 10054
 
16825 efrain 10055
  .my-sm-4 {
10056
    margin-top: 1.5rem !important;
10057
    margin-bottom: 1.5rem !important;
10058
  }
16848 stevensc 10059
 
16825 efrain 10060
  .my-sm-5 {
10061
    margin-top: 3rem !important;
10062
    margin-bottom: 3rem !important;
10063
  }
16848 stevensc 10064
 
16825 efrain 10065
  .my-sm-6 {
10066
    margin-top: 4.5rem !important;
10067
    margin-bottom: 4.5rem !important;
10068
  }
16848 stevensc 10069
 
16825 efrain 10070
  .my-sm-7 {
10071
    margin-top: 6rem !important;
10072
    margin-bottom: 6rem !important;
10073
  }
16848 stevensc 10074
 
16825 efrain 10075
  .my-sm-auto {
10076
    margin-top: auto !important;
10077
    margin-bottom: auto !important;
10078
  }
16848 stevensc 10079
 
16825 efrain 10080
  .mt-sm-0 {
10081
    margin-top: 0 !important;
10082
  }
16848 stevensc 10083
 
16825 efrain 10084
  .mt-sm-1 {
10085
    margin-top: 0.25rem !important;
10086
  }
16848 stevensc 10087
 
16825 efrain 10088
  .mt-sm-2 {
10089
    margin-top: 0.5rem !important;
10090
  }
16848 stevensc 10091
 
16825 efrain 10092
  .mt-sm-3 {
10093
    margin-top: 1rem !important;
10094
  }
16848 stevensc 10095
 
16825 efrain 10096
  .mt-sm-4 {
10097
    margin-top: 1.5rem !important;
10098
  }
16848 stevensc 10099
 
16825 efrain 10100
  .mt-sm-5 {
10101
    margin-top: 3rem !important;
10102
  }
16848 stevensc 10103
 
16825 efrain 10104
  .mt-sm-6 {
10105
    margin-top: 4.5rem !important;
10106
  }
16848 stevensc 10107
 
16825 efrain 10108
  .mt-sm-7 {
10109
    margin-top: 6rem !important;
10110
  }
16848 stevensc 10111
 
16825 efrain 10112
  .mt-sm-auto {
10113
    margin-top: auto !important;
10114
  }
16848 stevensc 10115
 
16825 efrain 10116
  .me-sm-0 {
10117
    margin-right: 0 !important;
10118
  }
16848 stevensc 10119
 
16825 efrain 10120
  .me-sm-1 {
10121
    margin-right: 0.25rem !important;
10122
  }
16848 stevensc 10123
 
16825 efrain 10124
  .me-sm-2 {
10125
    margin-right: 0.5rem !important;
10126
  }
16848 stevensc 10127
 
16825 efrain 10128
  .me-sm-3 {
10129
    margin-right: 1rem !important;
10130
  }
16848 stevensc 10131
 
16825 efrain 10132
  .me-sm-4 {
10133
    margin-right: 1.5rem !important;
10134
  }
16848 stevensc 10135
 
16825 efrain 10136
  .me-sm-5 {
10137
    margin-right: 3rem !important;
10138
  }
16848 stevensc 10139
 
16825 efrain 10140
  .me-sm-6 {
10141
    margin-right: 4.5rem !important;
10142
  }
16848 stevensc 10143
 
16825 efrain 10144
  .me-sm-7 {
10145
    margin-right: 6rem !important;
10146
  }
16848 stevensc 10147
 
16825 efrain 10148
  .me-sm-auto {
10149
    margin-right: auto !important;
10150
  }
16848 stevensc 10151
 
16825 efrain 10152
  .mb-sm-0 {
10153
    margin-bottom: 0 !important;
10154
  }
16848 stevensc 10155
 
16825 efrain 10156
  .mb-sm-1 {
10157
    margin-bottom: 0.25rem !important;
10158
  }
16848 stevensc 10159
 
16825 efrain 10160
  .mb-sm-2 {
10161
    margin-bottom: 0.5rem !important;
10162
  }
16848 stevensc 10163
 
16825 efrain 10164
  .mb-sm-3 {
10165
    margin-bottom: 1rem !important;
10166
  }
16848 stevensc 10167
 
16825 efrain 10168
  .mb-sm-4 {
10169
    margin-bottom: 1.5rem !important;
10170
  }
16848 stevensc 10171
 
16825 efrain 10172
  .mb-sm-5 {
10173
    margin-bottom: 3rem !important;
10174
  }
16848 stevensc 10175
 
16825 efrain 10176
  .mb-sm-6 {
10177
    margin-bottom: 4.5rem !important;
10178
  }
16848 stevensc 10179
 
16825 efrain 10180
  .mb-sm-7 {
10181
    margin-bottom: 6rem !important;
10182
  }
16848 stevensc 10183
 
16825 efrain 10184
  .mb-sm-auto {
10185
    margin-bottom: auto !important;
10186
  }
16848 stevensc 10187
 
16825 efrain 10188
  .ms-sm-0 {
10189
    margin-left: 0 !important;
10190
  }
16848 stevensc 10191
 
16825 efrain 10192
  .ms-sm-1 {
10193
    margin-left: 0.25rem !important;
10194
  }
16848 stevensc 10195
 
16825 efrain 10196
  .ms-sm-2 {
10197
    margin-left: 0.5rem !important;
10198
  }
16848 stevensc 10199
 
16825 efrain 10200
  .ms-sm-3 {
10201
    margin-left: 1rem !important;
10202
  }
16848 stevensc 10203
 
16825 efrain 10204
  .ms-sm-4 {
10205
    margin-left: 1.5rem !important;
10206
  }
16848 stevensc 10207
 
16825 efrain 10208
  .ms-sm-5 {
10209
    margin-left: 3rem !important;
10210
  }
16848 stevensc 10211
 
16825 efrain 10212
  .ms-sm-6 {
10213
    margin-left: 4.5rem !important;
10214
  }
16848 stevensc 10215
 
16825 efrain 10216
  .ms-sm-7 {
10217
    margin-left: 6rem !important;
10218
  }
16848 stevensc 10219
 
16825 efrain 10220
  .ms-sm-auto {
10221
    margin-left: auto !important;
10222
  }
16848 stevensc 10223
 
16825 efrain 10224
  .m-sm-n1 {
10225
    margin: -0.25rem !important;
10226
  }
16848 stevensc 10227
 
16825 efrain 10228
  .m-sm-n2 {
10229
    margin: -0.5rem !important;
10230
  }
16848 stevensc 10231
 
16825 efrain 10232
  .m-sm-n3 {
10233
    margin: -1rem !important;
10234
  }
16848 stevensc 10235
 
16825 efrain 10236
  .m-sm-n4 {
10237
    margin: -1.5rem !important;
10238
  }
16848 stevensc 10239
 
16825 efrain 10240
  .m-sm-n5 {
10241
    margin: -3rem !important;
10242
  }
16848 stevensc 10243
 
16825 efrain 10244
  .m-sm-n6 {
10245
    margin: -4.5rem !important;
10246
  }
16848 stevensc 10247
 
16825 efrain 10248
  .m-sm-n7 {
10249
    margin: -6rem !important;
10250
  }
16848 stevensc 10251
 
16825 efrain 10252
  .mx-sm-n1 {
10253
    margin-right: -0.25rem !important;
10254
    margin-left: -0.25rem !important;
10255
  }
16848 stevensc 10256
 
16825 efrain 10257
  .mx-sm-n2 {
10258
    margin-right: -0.5rem !important;
10259
    margin-left: -0.5rem !important;
10260
  }
16848 stevensc 10261
 
16825 efrain 10262
  .mx-sm-n3 {
10263
    margin-right: -1rem !important;
10264
    margin-left: -1rem !important;
10265
  }
16848 stevensc 10266
 
16825 efrain 10267
  .mx-sm-n4 {
10268
    margin-right: -1.5rem !important;
10269
    margin-left: -1.5rem !important;
10270
  }
16848 stevensc 10271
 
16825 efrain 10272
  .mx-sm-n5 {
10273
    margin-right: -3rem !important;
10274
    margin-left: -3rem !important;
10275
  }
16848 stevensc 10276
 
16825 efrain 10277
  .mx-sm-n6 {
10278
    margin-right: -4.5rem !important;
10279
    margin-left: -4.5rem !important;
10280
  }
16848 stevensc 10281
 
16825 efrain 10282
  .mx-sm-n7 {
10283
    margin-right: -6rem !important;
10284
    margin-left: -6rem !important;
10285
  }
16848 stevensc 10286
 
16825 efrain 10287
  .my-sm-n1 {
10288
    margin-top: -0.25rem !important;
10289
    margin-bottom: -0.25rem !important;
10290
  }
16848 stevensc 10291
 
16825 efrain 10292
  .my-sm-n2 {
10293
    margin-top: -0.5rem !important;
10294
    margin-bottom: -0.5rem !important;
10295
  }
16848 stevensc 10296
 
16825 efrain 10297
  .my-sm-n3 {
10298
    margin-top: -1rem !important;
10299
    margin-bottom: -1rem !important;
10300
  }
16848 stevensc 10301
 
16825 efrain 10302
  .my-sm-n4 {
10303
    margin-top: -1.5rem !important;
10304
    margin-bottom: -1.5rem !important;
10305
  }
16848 stevensc 10306
 
16825 efrain 10307
  .my-sm-n5 {
10308
    margin-top: -3rem !important;
10309
    margin-bottom: -3rem !important;
10310
  }
16848 stevensc 10311
 
16825 efrain 10312
  .my-sm-n6 {
10313
    margin-top: -4.5rem !important;
10314
    margin-bottom: -4.5rem !important;
10315
  }
16848 stevensc 10316
 
16825 efrain 10317
  .my-sm-n7 {
10318
    margin-top: -6rem !important;
10319
    margin-bottom: -6rem !important;
10320
  }
16848 stevensc 10321
 
16825 efrain 10322
  .mt-sm-n1 {
10323
    margin-top: -0.25rem !important;
10324
  }
16848 stevensc 10325
 
16825 efrain 10326
  .mt-sm-n2 {
10327
    margin-top: -0.5rem !important;
10328
  }
16848 stevensc 10329
 
16825 efrain 10330
  .mt-sm-n3 {
10331
    margin-top: -1rem !important;
10332
  }
16848 stevensc 10333
 
16825 efrain 10334
  .mt-sm-n4 {
10335
    margin-top: -1.5rem !important;
10336
  }
16848 stevensc 10337
 
16825 efrain 10338
  .mt-sm-n5 {
10339
    margin-top: -3rem !important;
10340
  }
16848 stevensc 10341
 
16825 efrain 10342
  .mt-sm-n6 {
10343
    margin-top: -4.5rem !important;
10344
  }
16848 stevensc 10345
 
16825 efrain 10346
  .mt-sm-n7 {
10347
    margin-top: -6rem !important;
10348
  }
16848 stevensc 10349
 
16825 efrain 10350
  .me-sm-n1 {
10351
    margin-right: -0.25rem !important;
10352
  }
16848 stevensc 10353
 
16825 efrain 10354
  .me-sm-n2 {
10355
    margin-right: -0.5rem !important;
10356
  }
16848 stevensc 10357
 
16825 efrain 10358
  .me-sm-n3 {
10359
    margin-right: -1rem !important;
10360
  }
16848 stevensc 10361
 
16825 efrain 10362
  .me-sm-n4 {
10363
    margin-right: -1.5rem !important;
10364
  }
16848 stevensc 10365
 
16825 efrain 10366
  .me-sm-n5 {
10367
    margin-right: -3rem !important;
10368
  }
16848 stevensc 10369
 
16825 efrain 10370
  .me-sm-n6 {
10371
    margin-right: -4.5rem !important;
10372
  }
16848 stevensc 10373
 
16825 efrain 10374
  .me-sm-n7 {
10375
    margin-right: -6rem !important;
10376
  }
16848 stevensc 10377
 
16825 efrain 10378
  .mb-sm-n1 {
10379
    margin-bottom: -0.25rem !important;
10380
  }
16848 stevensc 10381
 
16825 efrain 10382
  .mb-sm-n2 {
10383
    margin-bottom: -0.5rem !important;
10384
  }
16848 stevensc 10385
 
16825 efrain 10386
  .mb-sm-n3 {
10387
    margin-bottom: -1rem !important;
10388
  }
16848 stevensc 10389
 
16825 efrain 10390
  .mb-sm-n4 {
10391
    margin-bottom: -1.5rem !important;
10392
  }
16848 stevensc 10393
 
16825 efrain 10394
  .mb-sm-n5 {
10395
    margin-bottom: -3rem !important;
10396
  }
16848 stevensc 10397
 
16825 efrain 10398
  .mb-sm-n6 {
10399
    margin-bottom: -4.5rem !important;
10400
  }
16848 stevensc 10401
 
16825 efrain 10402
  .mb-sm-n7 {
10403
    margin-bottom: -6rem !important;
10404
  }
16848 stevensc 10405
 
16825 efrain 10406
  .ms-sm-n1 {
10407
    margin-left: -0.25rem !important;
10408
  }
16848 stevensc 10409
 
16825 efrain 10410
  .ms-sm-n2 {
10411
    margin-left: -0.5rem !important;
10412
  }
16848 stevensc 10413
 
16825 efrain 10414
  .ms-sm-n3 {
10415
    margin-left: -1rem !important;
10416
  }
16848 stevensc 10417
 
16825 efrain 10418
  .ms-sm-n4 {
10419
    margin-left: -1.5rem !important;
10420
  }
16848 stevensc 10421
 
16825 efrain 10422
  .ms-sm-n5 {
10423
    margin-left: -3rem !important;
10424
  }
16848 stevensc 10425
 
16825 efrain 10426
  .ms-sm-n6 {
10427
    margin-left: -4.5rem !important;
10428
  }
16848 stevensc 10429
 
16825 efrain 10430
  .ms-sm-n7 {
10431
    margin-left: -6rem !important;
10432
  }
16848 stevensc 10433
 
16825 efrain 10434
  .p-sm-0 {
10435
    padding: 0 !important;
10436
  }
16848 stevensc 10437
 
16825 efrain 10438
  .p-sm-1 {
10439
    padding: 0.25rem !important;
10440
  }
16848 stevensc 10441
 
16825 efrain 10442
  .p-sm-2 {
10443
    padding: 0.5rem !important;
10444
  }
16848 stevensc 10445
 
16825 efrain 10446
  .p-sm-3 {
10447
    padding: 1rem !important;
10448
  }
16848 stevensc 10449
 
16825 efrain 10450
  .p-sm-4 {
10451
    padding: 1.5rem !important;
10452
  }
16848 stevensc 10453
 
16825 efrain 10454
  .p-sm-5 {
10455
    padding: 3rem !important;
10456
  }
16848 stevensc 10457
 
16825 efrain 10458
  .p-sm-6 {
10459
    padding: 4.5rem !important;
10460
  }
16848 stevensc 10461
 
16825 efrain 10462
  .p-sm-7 {
10463
    padding: 6rem !important;
10464
  }
16848 stevensc 10465
 
16825 efrain 10466
  .px-sm-0 {
10467
    padding-right: 0 !important;
10468
    padding-left: 0 !important;
10469
  }
16848 stevensc 10470
 
16825 efrain 10471
  .px-sm-1 {
10472
    padding-right: 0.25rem !important;
10473
    padding-left: 0.25rem !important;
10474
  }
16848 stevensc 10475
 
16825 efrain 10476
  .px-sm-2 {
10477
    padding-right: 0.5rem !important;
10478
    padding-left: 0.5rem !important;
10479
  }
16848 stevensc 10480
 
16825 efrain 10481
  .px-sm-3 {
10482
    padding-right: 1rem !important;
10483
    padding-left: 1rem !important;
10484
  }
16848 stevensc 10485
 
16825 efrain 10486
  .px-sm-4 {
10487
    padding-right: 1.5rem !important;
10488
    padding-left: 1.5rem !important;
10489
  }
16848 stevensc 10490
 
16825 efrain 10491
  .px-sm-5 {
10492
    padding-right: 3rem !important;
10493
    padding-left: 3rem !important;
10494
  }
16848 stevensc 10495
 
16825 efrain 10496
  .px-sm-6 {
10497
    padding-right: 4.5rem !important;
10498
    padding-left: 4.5rem !important;
10499
  }
16848 stevensc 10500
 
16825 efrain 10501
  .px-sm-7 {
10502
    padding-right: 6rem !important;
10503
    padding-left: 6rem !important;
10504
  }
16848 stevensc 10505
 
16825 efrain 10506
  .py-sm-0 {
10507
    padding-top: 0 !important;
10508
    padding-bottom: 0 !important;
10509
  }
16848 stevensc 10510
 
16825 efrain 10511
  .py-sm-1 {
10512
    padding-top: 0.25rem !important;
10513
    padding-bottom: 0.25rem !important;
10514
  }
16848 stevensc 10515
 
16825 efrain 10516
  .py-sm-2 {
10517
    padding-top: 0.5rem !important;
10518
    padding-bottom: 0.5rem !important;
10519
  }
16848 stevensc 10520
 
16825 efrain 10521
  .py-sm-3 {
10522
    padding-top: 1rem !important;
10523
    padding-bottom: 1rem !important;
10524
  }
16848 stevensc 10525
 
16825 efrain 10526
  .py-sm-4 {
10527
    padding-top: 1.5rem !important;
10528
    padding-bottom: 1.5rem !important;
10529
  }
16848 stevensc 10530
 
16825 efrain 10531
  .py-sm-5 {
10532
    padding-top: 3rem !important;
10533
    padding-bottom: 3rem !important;
10534
  }
16848 stevensc 10535
 
16825 efrain 10536
  .py-sm-6 {
10537
    padding-top: 4.5rem !important;
10538
    padding-bottom: 4.5rem !important;
10539
  }
16848 stevensc 10540
 
16825 efrain 10541
  .py-sm-7 {
10542
    padding-top: 6rem !important;
10543
    padding-bottom: 6rem !important;
10544
  }
16848 stevensc 10545
 
16825 efrain 10546
  .pt-sm-0 {
10547
    padding-top: 0 !important;
10548
  }
16848 stevensc 10549
 
16825 efrain 10550
  .pt-sm-1 {
10551
    padding-top: 0.25rem !important;
10552
  }
16848 stevensc 10553
 
16825 efrain 10554
  .pt-sm-2 {
10555
    padding-top: 0.5rem !important;
10556
  }
16848 stevensc 10557
 
16825 efrain 10558
  .pt-sm-3 {
10559
    padding-top: 1rem !important;
10560
  }
16848 stevensc 10561
 
16825 efrain 10562
  .pt-sm-4 {
10563
    padding-top: 1.5rem !important;
10564
  }
16848 stevensc 10565
 
16825 efrain 10566
  .pt-sm-5 {
10567
    padding-top: 3rem !important;
10568
  }
16848 stevensc 10569
 
16825 efrain 10570
  .pt-sm-6 {
10571
    padding-top: 4.5rem !important;
10572
  }
16848 stevensc 10573
 
16825 efrain 10574
  .pt-sm-7 {
10575
    padding-top: 6rem !important;
10576
  }
16848 stevensc 10577
 
16825 efrain 10578
  .pe-sm-0 {
10579
    padding-right: 0 !important;
10580
  }
16848 stevensc 10581
 
16825 efrain 10582
  .pe-sm-1 {
10583
    padding-right: 0.25rem !important;
10584
  }
16848 stevensc 10585
 
16825 efrain 10586
  .pe-sm-2 {
10587
    padding-right: 0.5rem !important;
10588
  }
16848 stevensc 10589
 
16825 efrain 10590
  .pe-sm-3 {
10591
    padding-right: 1rem !important;
10592
  }
16848 stevensc 10593
 
16825 efrain 10594
  .pe-sm-4 {
10595
    padding-right: 1.5rem !important;
10596
  }
16848 stevensc 10597
 
16825 efrain 10598
  .pe-sm-5 {
10599
    padding-right: 3rem !important;
10600
  }
16848 stevensc 10601
 
16825 efrain 10602
  .pe-sm-6 {
10603
    padding-right: 4.5rem !important;
10604
  }
16848 stevensc 10605
 
16825 efrain 10606
  .pe-sm-7 {
10607
    padding-right: 6rem !important;
10608
  }
16848 stevensc 10609
 
16825 efrain 10610
  .pb-sm-0 {
10611
    padding-bottom: 0 !important;
10612
  }
16848 stevensc 10613
 
16825 efrain 10614
  .pb-sm-1 {
10615
    padding-bottom: 0.25rem !important;
10616
  }
16848 stevensc 10617
 
16825 efrain 10618
  .pb-sm-2 {
10619
    padding-bottom: 0.5rem !important;
10620
  }
16848 stevensc 10621
 
16825 efrain 10622
  .pb-sm-3 {
10623
    padding-bottom: 1rem !important;
10624
  }
16848 stevensc 10625
 
16825 efrain 10626
  .pb-sm-4 {
10627
    padding-bottom: 1.5rem !important;
10628
  }
16848 stevensc 10629
 
16825 efrain 10630
  .pb-sm-5 {
10631
    padding-bottom: 3rem !important;
10632
  }
16848 stevensc 10633
 
16825 efrain 10634
  .pb-sm-6 {
10635
    padding-bottom: 4.5rem !important;
10636
  }
16848 stevensc 10637
 
16825 efrain 10638
  .pb-sm-7 {
10639
    padding-bottom: 6rem !important;
10640
  }
16848 stevensc 10641
 
16825 efrain 10642
  .ps-sm-0 {
10643
    padding-left: 0 !important;
10644
  }
16848 stevensc 10645
 
16825 efrain 10646
  .ps-sm-1 {
10647
    padding-left: 0.25rem !important;
10648
  }
16848 stevensc 10649
 
16825 efrain 10650
  .ps-sm-2 {
10651
    padding-left: 0.5rem !important;
10652
  }
16848 stevensc 10653
 
16825 efrain 10654
  .ps-sm-3 {
10655
    padding-left: 1rem !important;
10656
  }
16848 stevensc 10657
 
16825 efrain 10658
  .ps-sm-4 {
10659
    padding-left: 1.5rem !important;
10660
  }
16848 stevensc 10661
 
16825 efrain 10662
  .ps-sm-5 {
10663
    padding-left: 3rem !important;
10664
  }
16848 stevensc 10665
 
16825 efrain 10666
  .ps-sm-6 {
10667
    padding-left: 4.5rem !important;
10668
  }
16848 stevensc 10669
 
16825 efrain 10670
  .ps-sm-7 {
10671
    padding-left: 6rem !important;
10672
  }
16848 stevensc 10673
 
16825 efrain 10674
  .gap-sm-0 {
10675
    gap: 0 !important;
10676
  }
16848 stevensc 10677
 
16825 efrain 10678
  .gap-sm-1 {
10679
    gap: 0.25rem !important;
10680
  }
16848 stevensc 10681
 
16825 efrain 10682
  .gap-sm-2 {
10683
    gap: 0.5rem !important;
10684
  }
16848 stevensc 10685
 
16825 efrain 10686
  .gap-sm-3 {
10687
    gap: 1rem !important;
10688
  }
16848 stevensc 10689
 
16825 efrain 10690
  .gap-sm-4 {
10691
    gap: 1.5rem !important;
10692
  }
16848 stevensc 10693
 
16825 efrain 10694
  .gap-sm-5 {
10695
    gap: 3rem !important;
10696
  }
16848 stevensc 10697
 
16825 efrain 10698
  .gap-sm-6 {
10699
    gap: 4.5rem !important;
10700
  }
16848 stevensc 10701
 
16825 efrain 10702
  .gap-sm-7 {
10703
    gap: 6rem !important;
10704
  }
16848 stevensc 10705
 
16825 efrain 10706
  .text-sm-start {
10707
    text-align: left !important;
10708
  }
16848 stevensc 10709
 
16825 efrain 10710
  .text-sm-end {
10711
    text-align: right !important;
10712
  }
16848 stevensc 10713
 
16825 efrain 10714
  .text-sm-center {
10715
    text-align: center !important;
10716
  }
10717
}
16848 stevensc 10718
 
16825 efrain 10719
@media (min-width: 768px) {
10720
  .float-md-start {
10721
    float: left !important;
10722
  }
16848 stevensc 10723
 
16825 efrain 10724
  .float-md-end {
10725
    float: right !important;
10726
  }
16848 stevensc 10727
 
16825 efrain 10728
  .float-md-none {
10729
    float: none !important;
10730
  }
16848 stevensc 10731
 
16825 efrain 10732
  .d-md-inline {
10733
    display: inline !important;
10734
  }
16848 stevensc 10735
 
16825 efrain 10736
  .d-md-inline-block {
10737
    display: inline-block !important;
10738
  }
16848 stevensc 10739
 
16825 efrain 10740
  .d-md-block {
10741
    display: block !important;
10742
  }
16848 stevensc 10743
 
16825 efrain 10744
  .d-md-grid {
10745
    display: grid !important;
10746
  }
16848 stevensc 10747
 
16825 efrain 10748
  .d-md-table {
10749
    display: table !important;
10750
  }
16848 stevensc 10751
 
16825 efrain 10752
  .d-md-table-row {
10753
    display: table-row !important;
10754
  }
16848 stevensc 10755
 
16825 efrain 10756
  .d-md-table-cell {
10757
    display: table-cell !important;
10758
  }
16848 stevensc 10759
 
10760
  .d-md-flex,
10761
  .navbar .search-form {
16825 efrain 10762
    display: flex !important;
10763
  }
16848 stevensc 10764
 
16825 efrain 10765
  .d-md-inline-flex {
10766
    display: inline-flex !important;
10767
  }
16848 stevensc 10768
 
16825 efrain 10769
  .d-md-none {
10770
    display: none !important;
10771
  }
16848 stevensc 10772
 
16825 efrain 10773
  .border-md {
10774
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10775
  }
16848 stevensc 10776
 
16825 efrain 10777
  .border-md-0 {
10778
    border: 0 !important;
10779
  }
16848 stevensc 10780
 
16825 efrain 10781
  .border-top-md {
10782
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10783
  }
16848 stevensc 10784
 
16825 efrain 10785
  .border-top-md-0 {
10786
    border-top: 0 !important;
10787
  }
16848 stevensc 10788
 
16825 efrain 10789
  .border-end-md {
10790
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10791
  }
16848 stevensc 10792
 
16825 efrain 10793
  .border-end-md-0 {
10794
    border-right: 0 !important;
10795
  }
16848 stevensc 10796
 
16825 efrain 10797
  .border-bottom-md {
10798
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10799
  }
16848 stevensc 10800
 
16825 efrain 10801
  .border-bottom-md-0 {
10802
    border-bottom: 0 !important;
10803
  }
16848 stevensc 10804
 
16825 efrain 10805
  .border-start-md {
10806
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10807
  }
16848 stevensc 10808
 
16825 efrain 10809
  .border-start-md-0 {
10810
    border-left: 0 !important;
10811
  }
16848 stevensc 10812
 
16825 efrain 10813
  .flex-md-fill {
10814
    flex: 1 1 auto !important;
10815
  }
16848 stevensc 10816
 
16825 efrain 10817
  .flex-md-row {
10818
    flex-direction: row !important;
10819
  }
16848 stevensc 10820
 
16825 efrain 10821
  .flex-md-column {
10822
    flex-direction: column !important;
10823
  }
16848 stevensc 10824
 
16825 efrain 10825
  .flex-md-row-reverse {
10826
    flex-direction: row-reverse !important;
10827
  }
16848 stevensc 10828
 
16825 efrain 10829
  .flex-md-column-reverse {
10830
    flex-direction: column-reverse !important;
10831
  }
16848 stevensc 10832
 
16825 efrain 10833
  .flex-md-grow-0 {
10834
    flex-grow: 0 !important;
10835
  }
16848 stevensc 10836
 
16825 efrain 10837
  .flex-md-grow-1 {
10838
    flex-grow: 1 !important;
10839
  }
16848 stevensc 10840
 
16825 efrain 10841
  .flex-md-shrink-0 {
10842
    flex-shrink: 0 !important;
10843
  }
16848 stevensc 10844
 
16825 efrain 10845
  .flex-md-shrink-1 {
10846
    flex-shrink: 1 !important;
10847
  }
16848 stevensc 10848
 
16825 efrain 10849
  .flex-md-wrap {
10850
    flex-wrap: wrap !important;
10851
  }
16848 stevensc 10852
 
16825 efrain 10853
  .flex-md-nowrap {
10854
    flex-wrap: nowrap !important;
10855
  }
16848 stevensc 10856
 
16825 efrain 10857
  .flex-md-wrap-reverse {
10858
    flex-wrap: wrap-reverse !important;
10859
  }
16848 stevensc 10860
 
16825 efrain 10861
  .justify-content-md-start {
10862
    justify-content: flex-start !important;
10863
  }
16848 stevensc 10864
 
10865
  .justify-content-md-end,
10866
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10867
    justify-content: flex-end !important;
10868
  }
16848 stevensc 10869
 
16825 efrain 10870
  .justify-content-md-center {
10871
    justify-content: center !important;
10872
  }
16848 stevensc 10873
 
16825 efrain 10874
  .justify-content-md-between {
10875
    justify-content: space-between !important;
10876
  }
16848 stevensc 10877
 
16825 efrain 10878
  .justify-content-md-around {
10879
    justify-content: space-around !important;
10880
  }
16848 stevensc 10881
 
16825 efrain 10882
  .justify-content-md-evenly {
10883
    justify-content: space-evenly !important;
10884
  }
16848 stevensc 10885
 
16825 efrain 10886
  .align-items-md-start {
10887
    align-items: flex-start !important;
10888
  }
16848 stevensc 10889
 
16825 efrain 10890
  .align-items-md-end {
10891
    align-items: flex-end !important;
10892
  }
16848 stevensc 10893
 
16825 efrain 10894
  .align-items-md-center {
10895
    align-items: center !important;
10896
  }
16848 stevensc 10897
 
16825 efrain 10898
  .align-items-md-baseline {
10899
    align-items: baseline !important;
10900
  }
16848 stevensc 10901
 
16825 efrain 10902
  .align-items-md-stretch {
10903
    align-items: stretch !important;
10904
  }
16848 stevensc 10905
 
16825 efrain 10906
  .align-content-md-start {
10907
    align-content: flex-start !important;
10908
  }
16848 stevensc 10909
 
16825 efrain 10910
  .align-content-md-end {
10911
    align-content: flex-end !important;
10912
  }
16848 stevensc 10913
 
16825 efrain 10914
  .align-content-md-center {
10915
    align-content: center !important;
10916
  }
16848 stevensc 10917
 
16825 efrain 10918
  .align-content-md-between {
10919
    align-content: space-between !important;
10920
  }
16848 stevensc 10921
 
16825 efrain 10922
  .align-content-md-around {
10923
    align-content: space-around !important;
10924
  }
16848 stevensc 10925
 
16825 efrain 10926
  .align-content-md-stretch {
10927
    align-content: stretch !important;
10928
  }
16848 stevensc 10929
 
16825 efrain 10930
  .align-self-md-auto {
10931
    align-self: auto !important;
10932
  }
16848 stevensc 10933
 
16825 efrain 10934
  .align-self-md-start {
10935
    align-self: flex-start !important;
10936
  }
16848 stevensc 10937
 
16825 efrain 10938
  .align-self-md-end {
10939
    align-self: flex-end !important;
10940
  }
16848 stevensc 10941
 
16825 efrain 10942
  .align-self-md-center {
10943
    align-self: center !important;
10944
  }
16848 stevensc 10945
 
16825 efrain 10946
  .align-self-md-baseline {
10947
    align-self: baseline !important;
10948
  }
16848 stevensc 10949
 
16825 efrain 10950
  .align-self-md-stretch {
10951
    align-self: stretch !important;
10952
  }
16848 stevensc 10953
 
16825 efrain 10954
  .order-md-first {
10955
    order: -1 !important;
10956
  }
16848 stevensc 10957
 
16825 efrain 10958
  .order-md-0 {
10959
    order: 0 !important;
10960
  }
16848 stevensc 10961
 
16825 efrain 10962
  .order-md-1 {
10963
    order: 1 !important;
10964
  }
16848 stevensc 10965
 
16825 efrain 10966
  .order-md-2 {
10967
    order: 2 !important;
10968
  }
16848 stevensc 10969
 
16825 efrain 10970
  .order-md-3 {
10971
    order: 3 !important;
10972
  }
16848 stevensc 10973
 
16825 efrain 10974
  .order-md-4 {
10975
    order: 4 !important;
10976
  }
16848 stevensc 10977
 
16825 efrain 10978
  .order-md-5 {
10979
    order: 5 !important;
10980
  }
16848 stevensc 10981
 
16825 efrain 10982
  .order-md-last {
10983
    order: 6 !important;
10984
  }
16848 stevensc 10985
 
16825 efrain 10986
  .m-md-0 {
10987
    margin: 0 !important;
10988
  }
16848 stevensc 10989
 
16825 efrain 10990
  .m-md-1 {
10991
    margin: 0.25rem !important;
10992
  }
16848 stevensc 10993
 
16825 efrain 10994
  .m-md-2 {
10995
    margin: 0.5rem !important;
10996
  }
16848 stevensc 10997
 
16825 efrain 10998
  .m-md-3 {
10999
    margin: 1rem !important;
11000
  }
16848 stevensc 11001
 
16825 efrain 11002
  .m-md-4 {
11003
    margin: 1.5rem !important;
11004
  }
16848 stevensc 11005
 
16825 efrain 11006
  .m-md-5 {
11007
    margin: 3rem !important;
11008
  }
16848 stevensc 11009
 
16825 efrain 11010
  .m-md-6 {
11011
    margin: 4.5rem !important;
11012
  }
16848 stevensc 11013
 
16825 efrain 11014
  .m-md-7 {
11015
    margin: 6rem !important;
11016
  }
16848 stevensc 11017
 
16825 efrain 11018
  .m-md-auto {
11019
    margin: auto !important;
11020
  }
16848 stevensc 11021
 
16825 efrain 11022
  .mx-md-0 {
11023
    margin-right: 0 !important;
11024
    margin-left: 0 !important;
11025
  }
16848 stevensc 11026
 
16825 efrain 11027
  .mx-md-1 {
11028
    margin-right: 0.25rem !important;
11029
    margin-left: 0.25rem !important;
11030
  }
16848 stevensc 11031
 
16825 efrain 11032
  .mx-md-2 {
11033
    margin-right: 0.5rem !important;
11034
    margin-left: 0.5rem !important;
11035
  }
16848 stevensc 11036
 
16825 efrain 11037
  .mx-md-3 {
11038
    margin-right: 1rem !important;
11039
    margin-left: 1rem !important;
11040
  }
16848 stevensc 11041
 
16825 efrain 11042
  .mx-md-4 {
11043
    margin-right: 1.5rem !important;
11044
    margin-left: 1.5rem !important;
11045
  }
16848 stevensc 11046
 
16825 efrain 11047
  .mx-md-5 {
11048
    margin-right: 3rem !important;
11049
    margin-left: 3rem !important;
11050
  }
16848 stevensc 11051
 
16825 efrain 11052
  .mx-md-6 {
11053
    margin-right: 4.5rem !important;
11054
    margin-left: 4.5rem !important;
11055
  }
16848 stevensc 11056
 
16825 efrain 11057
  .mx-md-7 {
11058
    margin-right: 6rem !important;
11059
    margin-left: 6rem !important;
11060
  }
16848 stevensc 11061
 
16825 efrain 11062
  .mx-md-auto {
11063
    margin-right: auto !important;
11064
    margin-left: auto !important;
11065
  }
16848 stevensc 11066
 
16825 efrain 11067
  .my-md-0 {
11068
    margin-top: 0 !important;
11069
    margin-bottom: 0 !important;
11070
  }
16848 stevensc 11071
 
16825 efrain 11072
  .my-md-1 {
11073
    margin-top: 0.25rem !important;
11074
    margin-bottom: 0.25rem !important;
11075
  }
16848 stevensc 11076
 
16825 efrain 11077
  .my-md-2 {
11078
    margin-top: 0.5rem !important;
11079
    margin-bottom: 0.5rem !important;
11080
  }
16848 stevensc 11081
 
16825 efrain 11082
  .my-md-3 {
11083
    margin-top: 1rem !important;
11084
    margin-bottom: 1rem !important;
11085
  }
16848 stevensc 11086
 
16825 efrain 11087
  .my-md-4 {
11088
    margin-top: 1.5rem !important;
11089
    margin-bottom: 1.5rem !important;
11090
  }
16848 stevensc 11091
 
16825 efrain 11092
  .my-md-5 {
11093
    margin-top: 3rem !important;
11094
    margin-bottom: 3rem !important;
11095
  }
16848 stevensc 11096
 
16825 efrain 11097
  .my-md-6 {
11098
    margin-top: 4.5rem !important;
11099
    margin-bottom: 4.5rem !important;
11100
  }
16848 stevensc 11101
 
16825 efrain 11102
  .my-md-7 {
11103
    margin-top: 6rem !important;
11104
    margin-bottom: 6rem !important;
11105
  }
16848 stevensc 11106
 
16825 efrain 11107
  .my-md-auto {
11108
    margin-top: auto !important;
11109
    margin-bottom: auto !important;
11110
  }
16848 stevensc 11111
 
11112
  .mt-md-0,
11113
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11114
    margin-top: 0 !important;
11115
  }
16848 stevensc 11116
 
16825 efrain 11117
  .mt-md-1 {
11118
    margin-top: 0.25rem !important;
11119
  }
16848 stevensc 11120
 
16825 efrain 11121
  .mt-md-2 {
11122
    margin-top: 0.5rem !important;
11123
  }
16848 stevensc 11124
 
16825 efrain 11125
  .mt-md-3 {
11126
    margin-top: 1rem !important;
11127
  }
16848 stevensc 11128
 
16825 efrain 11129
  .mt-md-4 {
11130
    margin-top: 1.5rem !important;
11131
  }
16848 stevensc 11132
 
16825 efrain 11133
  .mt-md-5 {
11134
    margin-top: 3rem !important;
11135
  }
16848 stevensc 11136
 
16825 efrain 11137
  .mt-md-6 {
11138
    margin-top: 4.5rem !important;
11139
  }
16848 stevensc 11140
 
16825 efrain 11141
  .mt-md-7 {
11142
    margin-top: 6rem !important;
11143
  }
16848 stevensc 11144
 
16825 efrain 11145
  .mt-md-auto {
11146
    margin-top: auto !important;
11147
  }
16848 stevensc 11148
 
16825 efrain 11149
  .me-md-0 {
11150
    margin-right: 0 !important;
11151
  }
16848 stevensc 11152
 
16825 efrain 11153
  .me-md-1 {
11154
    margin-right: 0.25rem !important;
11155
  }
16848 stevensc 11156
 
16825 efrain 11157
  .me-md-2 {
11158
    margin-right: 0.5rem !important;
11159
  }
16848 stevensc 11160
 
16825 efrain 11161
  .me-md-3 {
11162
    margin-right: 1rem !important;
11163
  }
16848 stevensc 11164
 
16825 efrain 11165
  .me-md-4 {
11166
    margin-right: 1.5rem !important;
11167
  }
16848 stevensc 11168
 
16825 efrain 11169
  .me-md-5 {
11170
    margin-right: 3rem !important;
11171
  }
16848 stevensc 11172
 
16825 efrain 11173
  .me-md-6 {
11174
    margin-right: 4.5rem !important;
11175
  }
16848 stevensc 11176
 
16825 efrain 11177
  .me-md-7 {
11178
    margin-right: 6rem !important;
11179
  }
16848 stevensc 11180
 
16825 efrain 11181
  .me-md-auto {
11182
    margin-right: auto !important;
11183
  }
16848 stevensc 11184
 
11185
  .mb-md-0,
11186
  .example .btn-group {
16825 efrain 11187
    margin-bottom: 0 !important;
11188
  }
16848 stevensc 11189
 
16825 efrain 11190
  .mb-md-1 {
11191
    margin-bottom: 0.25rem !important;
11192
  }
16848 stevensc 11193
 
16825 efrain 11194
  .mb-md-2 {
11195
    margin-bottom: 0.5rem !important;
11196
  }
16848 stevensc 11197
 
16825 efrain 11198
  .mb-md-3 {
11199
    margin-bottom: 1rem !important;
11200
  }
16848 stevensc 11201
 
16825 efrain 11202
  .mb-md-4 {
11203
    margin-bottom: 1.5rem !important;
11204
  }
16848 stevensc 11205
 
16825 efrain 11206
  .mb-md-5 {
11207
    margin-bottom: 3rem !important;
11208
  }
16848 stevensc 11209
 
16825 efrain 11210
  .mb-md-6 {
11211
    margin-bottom: 4.5rem !important;
11212
  }
16848 stevensc 11213
 
16825 efrain 11214
  .mb-md-7 {
11215
    margin-bottom: 6rem !important;
11216
  }
16848 stevensc 11217
 
16825 efrain 11218
  .mb-md-auto {
11219
    margin-bottom: auto !important;
11220
  }
16848 stevensc 11221
 
16825 efrain 11222
  .ms-md-0 {
11223
    margin-left: 0 !important;
11224
  }
16848 stevensc 11225
 
16825 efrain 11226
  .ms-md-1 {
11227
    margin-left: 0.25rem !important;
11228
  }
16848 stevensc 11229
 
16825 efrain 11230
  .ms-md-2 {
11231
    margin-left: 0.5rem !important;
11232
  }
16848 stevensc 11233
 
16825 efrain 11234
  .ms-md-3 {
11235
    margin-left: 1rem !important;
11236
  }
16848 stevensc 11237
 
16825 efrain 11238
  .ms-md-4 {
11239
    margin-left: 1.5rem !important;
11240
  }
16848 stevensc 11241
 
16825 efrain 11242
  .ms-md-5 {
11243
    margin-left: 3rem !important;
11244
  }
16848 stevensc 11245
 
16825 efrain 11246
  .ms-md-6 {
11247
    margin-left: 4.5rem !important;
11248
  }
16848 stevensc 11249
 
16825 efrain 11250
  .ms-md-7 {
11251
    margin-left: 6rem !important;
11252
  }
16848 stevensc 11253
 
16825 efrain 11254
  .ms-md-auto {
11255
    margin-left: auto !important;
11256
  }
16848 stevensc 11257
 
16825 efrain 11258
  .m-md-n1 {
11259
    margin: -0.25rem !important;
11260
  }
16848 stevensc 11261
 
16825 efrain 11262
  .m-md-n2 {
11263
    margin: -0.5rem !important;
11264
  }
16848 stevensc 11265
 
16825 efrain 11266
  .m-md-n3 {
11267
    margin: -1rem !important;
11268
  }
16848 stevensc 11269
 
16825 efrain 11270
  .m-md-n4 {
11271
    margin: -1.5rem !important;
11272
  }
16848 stevensc 11273
 
16825 efrain 11274
  .m-md-n5 {
11275
    margin: -3rem !important;
11276
  }
16848 stevensc 11277
 
16825 efrain 11278
  .m-md-n6 {
11279
    margin: -4.5rem !important;
11280
  }
16848 stevensc 11281
 
16825 efrain 11282
  .m-md-n7 {
11283
    margin: -6rem !important;
11284
  }
16848 stevensc 11285
 
16825 efrain 11286
  .mx-md-n1 {
11287
    margin-right: -0.25rem !important;
11288
    margin-left: -0.25rem !important;
11289
  }
16848 stevensc 11290
 
16825 efrain 11291
  .mx-md-n2 {
11292
    margin-right: -0.5rem !important;
11293
    margin-left: -0.5rem !important;
11294
  }
16848 stevensc 11295
 
16825 efrain 11296
  .mx-md-n3 {
11297
    margin-right: -1rem !important;
11298
    margin-left: -1rem !important;
11299
  }
16848 stevensc 11300
 
16825 efrain 11301
  .mx-md-n4 {
11302
    margin-right: -1.5rem !important;
11303
    margin-left: -1.5rem !important;
11304
  }
16848 stevensc 11305
 
16825 efrain 11306
  .mx-md-n5 {
11307
    margin-right: -3rem !important;
11308
    margin-left: -3rem !important;
11309
  }
16848 stevensc 11310
 
16825 efrain 11311
  .mx-md-n6 {
11312
    margin-right: -4.5rem !important;
11313
    margin-left: -4.5rem !important;
11314
  }
16848 stevensc 11315
 
16825 efrain 11316
  .mx-md-n7 {
11317
    margin-right: -6rem !important;
11318
    margin-left: -6rem !important;
11319
  }
16848 stevensc 11320
 
16825 efrain 11321
  .my-md-n1 {
11322
    margin-top: -0.25rem !important;
11323
    margin-bottom: -0.25rem !important;
11324
  }
16848 stevensc 11325
 
16825 efrain 11326
  .my-md-n2 {
11327
    margin-top: -0.5rem !important;
11328
    margin-bottom: -0.5rem !important;
11329
  }
16848 stevensc 11330
 
16825 efrain 11331
  .my-md-n3 {
11332
    margin-top: -1rem !important;
11333
    margin-bottom: -1rem !important;
11334
  }
16848 stevensc 11335
 
16825 efrain 11336
  .my-md-n4 {
11337
    margin-top: -1.5rem !important;
11338
    margin-bottom: -1.5rem !important;
11339
  }
16848 stevensc 11340
 
16825 efrain 11341
  .my-md-n5 {
11342
    margin-top: -3rem !important;
11343
    margin-bottom: -3rem !important;
11344
  }
16848 stevensc 11345
 
16825 efrain 11346
  .my-md-n6 {
11347
    margin-top: -4.5rem !important;
11348
    margin-bottom: -4.5rem !important;
11349
  }
16848 stevensc 11350
 
16825 efrain 11351
  .my-md-n7 {
11352
    margin-top: -6rem !important;
11353
    margin-bottom: -6rem !important;
11354
  }
16848 stevensc 11355
 
16825 efrain 11356
  .mt-md-n1 {
11357
    margin-top: -0.25rem !important;
11358
  }
16848 stevensc 11359
 
16825 efrain 11360
  .mt-md-n2 {
11361
    margin-top: -0.5rem !important;
11362
  }
16848 stevensc 11363
 
16825 efrain 11364
  .mt-md-n3 {
11365
    margin-top: -1rem !important;
11366
  }
16848 stevensc 11367
 
16825 efrain 11368
  .mt-md-n4 {
11369
    margin-top: -1.5rem !important;
11370
  }
16848 stevensc 11371
 
16825 efrain 11372
  .mt-md-n5 {
11373
    margin-top: -3rem !important;
11374
  }
16848 stevensc 11375
 
16825 efrain 11376
  .mt-md-n6 {
11377
    margin-top: -4.5rem !important;
11378
  }
16848 stevensc 11379
 
16825 efrain 11380
  .mt-md-n7 {
11381
    margin-top: -6rem !important;
11382
  }
16848 stevensc 11383
 
16825 efrain 11384
  .me-md-n1 {
11385
    margin-right: -0.25rem !important;
11386
  }
16848 stevensc 11387
 
16825 efrain 11388
  .me-md-n2 {
11389
    margin-right: -0.5rem !important;
11390
  }
16848 stevensc 11391
 
16825 efrain 11392
  .me-md-n3 {
11393
    margin-right: -1rem !important;
11394
  }
16848 stevensc 11395
 
16825 efrain 11396
  .me-md-n4 {
11397
    margin-right: -1.5rem !important;
11398
  }
16848 stevensc 11399
 
16825 efrain 11400
  .me-md-n5 {
11401
    margin-right: -3rem !important;
11402
  }
16848 stevensc 11403
 
16825 efrain 11404
  .me-md-n6 {
11405
    margin-right: -4.5rem !important;
11406
  }
16848 stevensc 11407
 
16825 efrain 11408
  .me-md-n7 {
11409
    margin-right: -6rem !important;
11410
  }
16848 stevensc 11411
 
16825 efrain 11412
  .mb-md-n1 {
11413
    margin-bottom: -0.25rem !important;
11414
  }
16848 stevensc 11415
 
16825 efrain 11416
  .mb-md-n2 {
11417
    margin-bottom: -0.5rem !important;
11418
  }
16848 stevensc 11419
 
16825 efrain 11420
  .mb-md-n3 {
11421
    margin-bottom: -1rem !important;
11422
  }
16848 stevensc 11423
 
16825 efrain 11424
  .mb-md-n4 {
11425
    margin-bottom: -1.5rem !important;
11426
  }
16848 stevensc 11427
 
16825 efrain 11428
  .mb-md-n5 {
11429
    margin-bottom: -3rem !important;
11430
  }
16848 stevensc 11431
 
16825 efrain 11432
  .mb-md-n6 {
11433
    margin-bottom: -4.5rem !important;
11434
  }
16848 stevensc 11435
 
16825 efrain 11436
  .mb-md-n7 {
11437
    margin-bottom: -6rem !important;
11438
  }
16848 stevensc 11439
 
16825 efrain 11440
  .ms-md-n1 {
11441
    margin-left: -0.25rem !important;
11442
  }
16848 stevensc 11443
 
16825 efrain 11444
  .ms-md-n2 {
11445
    margin-left: -0.5rem !important;
11446
  }
16848 stevensc 11447
 
16825 efrain 11448
  .ms-md-n3 {
11449
    margin-left: -1rem !important;
11450
  }
16848 stevensc 11451
 
16825 efrain 11452
  .ms-md-n4 {
11453
    margin-left: -1.5rem !important;
11454
  }
16848 stevensc 11455
 
16825 efrain 11456
  .ms-md-n5 {
11457
    margin-left: -3rem !important;
11458
  }
16848 stevensc 11459
 
16825 efrain 11460
  .ms-md-n6 {
11461
    margin-left: -4.5rem !important;
11462
  }
16848 stevensc 11463
 
16825 efrain 11464
  .ms-md-n7 {
11465
    margin-left: -6rem !important;
11466
  }
16848 stevensc 11467
 
16825 efrain 11468
  .p-md-0 {
11469
    padding: 0 !important;
11470
  }
16848 stevensc 11471
 
16825 efrain 11472
  .p-md-1 {
11473
    padding: 0.25rem !important;
11474
  }
16848 stevensc 11475
 
16825 efrain 11476
  .p-md-2 {
11477
    padding: 0.5rem !important;
11478
  }
16848 stevensc 11479
 
16825 efrain 11480
  .p-md-3 {
11481
    padding: 1rem !important;
11482
  }
16848 stevensc 11483
 
16825 efrain 11484
  .p-md-4 {
11485
    padding: 1.5rem !important;
11486
  }
16848 stevensc 11487
 
16825 efrain 11488
  .p-md-5 {
11489
    padding: 3rem !important;
11490
  }
16848 stevensc 11491
 
16825 efrain 11492
  .p-md-6 {
11493
    padding: 4.5rem !important;
11494
  }
16848 stevensc 11495
 
16825 efrain 11496
  .p-md-7 {
11497
    padding: 6rem !important;
11498
  }
16848 stevensc 11499
 
16825 efrain 11500
  .px-md-0 {
11501
    padding-right: 0 !important;
11502
    padding-left: 0 !important;
11503
  }
16848 stevensc 11504
 
16825 efrain 11505
  .px-md-1 {
11506
    padding-right: 0.25rem !important;
11507
    padding-left: 0.25rem !important;
11508
  }
16848 stevensc 11509
 
16825 efrain 11510
  .px-md-2 {
11511
    padding-right: 0.5rem !important;
11512
    padding-left: 0.5rem !important;
11513
  }
16848 stevensc 11514
 
16825 efrain 11515
  .px-md-3 {
11516
    padding-right: 1rem !important;
11517
    padding-left: 1rem !important;
11518
  }
16848 stevensc 11519
 
16825 efrain 11520
  .px-md-4 {
11521
    padding-right: 1.5rem !important;
11522
    padding-left: 1.5rem !important;
11523
  }
16848 stevensc 11524
 
16825 efrain 11525
  .px-md-5 {
11526
    padding-right: 3rem !important;
11527
    padding-left: 3rem !important;
11528
  }
16848 stevensc 11529
 
16825 efrain 11530
  .px-md-6 {
11531
    padding-right: 4.5rem !important;
11532
    padding-left: 4.5rem !important;
11533
  }
16848 stevensc 11534
 
16825 efrain 11535
  .px-md-7 {
11536
    padding-right: 6rem !important;
11537
    padding-left: 6rem !important;
11538
  }
16848 stevensc 11539
 
16825 efrain 11540
  .py-md-0 {
11541
    padding-top: 0 !important;
11542
    padding-bottom: 0 !important;
11543
  }
16848 stevensc 11544
 
16825 efrain 11545
  .py-md-1 {
11546
    padding-top: 0.25rem !important;
11547
    padding-bottom: 0.25rem !important;
11548
  }
16848 stevensc 11549
 
16825 efrain 11550
  .py-md-2 {
11551
    padding-top: 0.5rem !important;
11552
    padding-bottom: 0.5rem !important;
11553
  }
16848 stevensc 11554
 
16825 efrain 11555
  .py-md-3 {
11556
    padding-top: 1rem !important;
11557
    padding-bottom: 1rem !important;
11558
  }
16848 stevensc 11559
 
16825 efrain 11560
  .py-md-4 {
11561
    padding-top: 1.5rem !important;
11562
    padding-bottom: 1.5rem !important;
11563
  }
16848 stevensc 11564
 
16825 efrain 11565
  .py-md-5 {
11566
    padding-top: 3rem !important;
11567
    padding-bottom: 3rem !important;
11568
  }
16848 stevensc 11569
 
16825 efrain 11570
  .py-md-6 {
11571
    padding-top: 4.5rem !important;
11572
    padding-bottom: 4.5rem !important;
11573
  }
16848 stevensc 11574
 
16825 efrain 11575
  .py-md-7 {
11576
    padding-top: 6rem !important;
11577
    padding-bottom: 6rem !important;
11578
  }
16848 stevensc 11579
 
16825 efrain 11580
  .pt-md-0 {
11581
    padding-top: 0 !important;
11582
  }
16848 stevensc 11583
 
16825 efrain 11584
  .pt-md-1 {
11585
    padding-top: 0.25rem !important;
11586
  }
16848 stevensc 11587
 
16825 efrain 11588
  .pt-md-2 {
11589
    padding-top: 0.5rem !important;
11590
  }
16848 stevensc 11591
 
16825 efrain 11592
  .pt-md-3 {
11593
    padding-top: 1rem !important;
11594
  }
16848 stevensc 11595
 
16825 efrain 11596
  .pt-md-4 {
11597
    padding-top: 1.5rem !important;
11598
  }
16848 stevensc 11599
 
16825 efrain 11600
  .pt-md-5 {
11601
    padding-top: 3rem !important;
11602
  }
16848 stevensc 11603
 
16825 efrain 11604
  .pt-md-6 {
11605
    padding-top: 4.5rem !important;
11606
  }
16848 stevensc 11607
 
16825 efrain 11608
  .pt-md-7 {
11609
    padding-top: 6rem !important;
11610
  }
16848 stevensc 11611
 
16825 efrain 11612
  .pe-md-0 {
11613
    padding-right: 0 !important;
11614
  }
16848 stevensc 11615
 
16825 efrain 11616
  .pe-md-1 {
11617
    padding-right: 0.25rem !important;
11618
  }
16848 stevensc 11619
 
16825 efrain 11620
  .pe-md-2 {
11621
    padding-right: 0.5rem !important;
11622
  }
16848 stevensc 11623
 
16825 efrain 11624
  .pe-md-3 {
11625
    padding-right: 1rem !important;
11626
  }
16848 stevensc 11627
 
16825 efrain 11628
  .pe-md-4 {
11629
    padding-right: 1.5rem !important;
11630
  }
16848 stevensc 11631
 
16825 efrain 11632
  .pe-md-5 {
11633
    padding-right: 3rem !important;
11634
  }
16848 stevensc 11635
 
16825 efrain 11636
  .pe-md-6 {
11637
    padding-right: 4.5rem !important;
11638
  }
16848 stevensc 11639
 
16825 efrain 11640
  .pe-md-7 {
11641
    padding-right: 6rem !important;
11642
  }
16848 stevensc 11643
 
16825 efrain 11644
  .pb-md-0 {
11645
    padding-bottom: 0 !important;
11646
  }
16848 stevensc 11647
 
16825 efrain 11648
  .pb-md-1 {
11649
    padding-bottom: 0.25rem !important;
11650
  }
16848 stevensc 11651
 
16825 efrain 11652
  .pb-md-2 {
11653
    padding-bottom: 0.5rem !important;
11654
  }
16848 stevensc 11655
 
16825 efrain 11656
  .pb-md-3 {
11657
    padding-bottom: 1rem !important;
11658
  }
16848 stevensc 11659
 
16825 efrain 11660
  .pb-md-4 {
11661
    padding-bottom: 1.5rem !important;
11662
  }
16848 stevensc 11663
 
16825 efrain 11664
  .pb-md-5 {
11665
    padding-bottom: 3rem !important;
11666
  }
16848 stevensc 11667
 
16825 efrain 11668
  .pb-md-6 {
11669
    padding-bottom: 4.5rem !important;
11670
  }
16848 stevensc 11671
 
16825 efrain 11672
  .pb-md-7 {
11673
    padding-bottom: 6rem !important;
11674
  }
16848 stevensc 11675
 
16825 efrain 11676
  .ps-md-0 {
11677
    padding-left: 0 !important;
11678
  }
16848 stevensc 11679
 
16825 efrain 11680
  .ps-md-1 {
11681
    padding-left: 0.25rem !important;
11682
  }
16848 stevensc 11683
 
16825 efrain 11684
  .ps-md-2 {
11685
    padding-left: 0.5rem !important;
11686
  }
16848 stevensc 11687
 
16825 efrain 11688
  .ps-md-3 {
11689
    padding-left: 1rem !important;
11690
  }
16848 stevensc 11691
 
16825 efrain 11692
  .ps-md-4 {
11693
    padding-left: 1.5rem !important;
11694
  }
16848 stevensc 11695
 
16825 efrain 11696
  .ps-md-5 {
11697
    padding-left: 3rem !important;
11698
  }
16848 stevensc 11699
 
16825 efrain 11700
  .ps-md-6 {
11701
    padding-left: 4.5rem !important;
11702
  }
16848 stevensc 11703
 
16825 efrain 11704
  .ps-md-7 {
11705
    padding-left: 6rem !important;
11706
  }
16848 stevensc 11707
 
16825 efrain 11708
  .gap-md-0 {
11709
    gap: 0 !important;
11710
  }
16848 stevensc 11711
 
16825 efrain 11712
  .gap-md-1 {
11713
    gap: 0.25rem !important;
11714
  }
16848 stevensc 11715
 
16825 efrain 11716
  .gap-md-2 {
11717
    gap: 0.5rem !important;
11718
  }
16848 stevensc 11719
 
16825 efrain 11720
  .gap-md-3 {
11721
    gap: 1rem !important;
11722
  }
16848 stevensc 11723
 
16825 efrain 11724
  .gap-md-4 {
11725
    gap: 1.5rem !important;
11726
  }
16848 stevensc 11727
 
16825 efrain 11728
  .gap-md-5 {
11729
    gap: 3rem !important;
11730
  }
16848 stevensc 11731
 
16825 efrain 11732
  .gap-md-6 {
11733
    gap: 4.5rem !important;
11734
  }
16848 stevensc 11735
 
16825 efrain 11736
  .gap-md-7 {
11737
    gap: 6rem !important;
11738
  }
16848 stevensc 11739
 
16825 efrain 11740
  .text-md-start {
11741
    text-align: left !important;
11742
  }
16848 stevensc 11743
 
16825 efrain 11744
  .text-md-end {
11745
    text-align: right !important;
11746
  }
16848 stevensc 11747
 
16825 efrain 11748
  .text-md-center {
11749
    text-align: center !important;
11750
  }
11751
}
16848 stevensc 11752
 
16825 efrain 11753
@media (min-width: 992px) {
11754
  .float-lg-start {
11755
    float: left !important;
11756
  }
16848 stevensc 11757
 
16825 efrain 11758
  .float-lg-end {
11759
    float: right !important;
11760
  }
16848 stevensc 11761
 
16825 efrain 11762
  .float-lg-none {
11763
    float: none !important;
11764
  }
16848 stevensc 11765
 
16825 efrain 11766
  .d-lg-inline {
11767
    display: inline !important;
11768
  }
16848 stevensc 11769
 
16825 efrain 11770
  .d-lg-inline-block {
11771
    display: inline-block !important;
11772
  }
16848 stevensc 11773
 
16825 efrain 11774
  .d-lg-block {
11775
    display: block !important;
11776
  }
16848 stevensc 11777
 
16825 efrain 11778
  .d-lg-grid {
11779
    display: grid !important;
11780
  }
16848 stevensc 11781
 
16825 efrain 11782
  .d-lg-table {
11783
    display: table !important;
11784
  }
16848 stevensc 11785
 
16825 efrain 11786
  .d-lg-table-row {
11787
    display: table-row !important;
11788
  }
16848 stevensc 11789
 
16825 efrain 11790
  .d-lg-table-cell {
11791
    display: table-cell !important;
11792
  }
16848 stevensc 11793
 
16825 efrain 11794
  .d-lg-flex {
11795
    display: flex !important;
11796
  }
16848 stevensc 11797
 
16825 efrain 11798
  .d-lg-inline-flex {
11799
    display: inline-flex !important;
11800
  }
16848 stevensc 11801
 
16825 efrain 11802
  .d-lg-none {
11803
    display: none !important;
11804
  }
16848 stevensc 11805
 
16825 efrain 11806
  .border-lg {
11807
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11808
  }
16848 stevensc 11809
 
16825 efrain 11810
  .border-lg-0 {
11811
    border: 0 !important;
11812
  }
16848 stevensc 11813
 
16825 efrain 11814
  .border-top-lg {
11815
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11816
  }
16848 stevensc 11817
 
16825 efrain 11818
  .border-top-lg-0 {
11819
    border-top: 0 !important;
11820
  }
16848 stevensc 11821
 
16825 efrain 11822
  .border-end-lg {
11823
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11824
  }
16848 stevensc 11825
 
16825 efrain 11826
  .border-end-lg-0 {
11827
    border-right: 0 !important;
11828
  }
16848 stevensc 11829
 
16825 efrain 11830
  .border-bottom-lg {
11831
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11832
  }
16848 stevensc 11833
 
16825 efrain 11834
  .border-bottom-lg-0 {
11835
    border-bottom: 0 !important;
11836
  }
16848 stevensc 11837
 
16825 efrain 11838
  .border-start-lg {
11839
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11840
  }
16848 stevensc 11841
 
16825 efrain 11842
  .border-start-lg-0 {
11843
    border-left: 0 !important;
11844
  }
16848 stevensc 11845
 
16825 efrain 11846
  .flex-lg-fill {
11847
    flex: 1 1 auto !important;
11848
  }
16848 stevensc 11849
 
16825 efrain 11850
  .flex-lg-row {
11851
    flex-direction: row !important;
11852
  }
16848 stevensc 11853
 
16825 efrain 11854
  .flex-lg-column {
11855
    flex-direction: column !important;
11856
  }
16848 stevensc 11857
 
16825 efrain 11858
  .flex-lg-row-reverse {
11859
    flex-direction: row-reverse !important;
11860
  }
16848 stevensc 11861
 
16825 efrain 11862
  .flex-lg-column-reverse {
11863
    flex-direction: column-reverse !important;
11864
  }
16848 stevensc 11865
 
16825 efrain 11866
  .flex-lg-grow-0 {
11867
    flex-grow: 0 !important;
11868
  }
16848 stevensc 11869
 
16825 efrain 11870
  .flex-lg-grow-1 {
11871
    flex-grow: 1 !important;
11872
  }
16848 stevensc 11873
 
16825 efrain 11874
  .flex-lg-shrink-0 {
11875
    flex-shrink: 0 !important;
11876
  }
16848 stevensc 11877
 
16825 efrain 11878
  .flex-lg-shrink-1 {
11879
    flex-shrink: 1 !important;
11880
  }
16848 stevensc 11881
 
16825 efrain 11882
  .flex-lg-wrap {
11883
    flex-wrap: wrap !important;
11884
  }
16848 stevensc 11885
 
16825 efrain 11886
  .flex-lg-nowrap {
11887
    flex-wrap: nowrap !important;
11888
  }
16848 stevensc 11889
 
16825 efrain 11890
  .flex-lg-wrap-reverse {
11891
    flex-wrap: wrap-reverse !important;
11892
  }
16848 stevensc 11893
 
16825 efrain 11894
  .justify-content-lg-start {
11895
    justify-content: flex-start !important;
11896
  }
16848 stevensc 11897
 
16825 efrain 11898
  .justify-content-lg-end {
11899
    justify-content: flex-end !important;
11900
  }
16848 stevensc 11901
 
16825 efrain 11902
  .justify-content-lg-center {
11903
    justify-content: center !important;
11904
  }
16848 stevensc 11905
 
16825 efrain 11906
  .justify-content-lg-between {
11907
    justify-content: space-between !important;
11908
  }
16848 stevensc 11909
 
16825 efrain 11910
  .justify-content-lg-around {
11911
    justify-content: space-around !important;
11912
  }
16848 stevensc 11913
 
16825 efrain 11914
  .justify-content-lg-evenly {
11915
    justify-content: space-evenly !important;
11916
  }
16848 stevensc 11917
 
16825 efrain 11918
  .align-items-lg-start {
11919
    align-items: flex-start !important;
11920
  }
16848 stevensc 11921
 
16825 efrain 11922
  .align-items-lg-end {
11923
    align-items: flex-end !important;
11924
  }
16848 stevensc 11925
 
16825 efrain 11926
  .align-items-lg-center {
11927
    align-items: center !important;
11928
  }
16848 stevensc 11929
 
16825 efrain 11930
  .align-items-lg-baseline {
11931
    align-items: baseline !important;
11932
  }
16848 stevensc 11933
 
16825 efrain 11934
  .align-items-lg-stretch {
11935
    align-items: stretch !important;
11936
  }
16848 stevensc 11937
 
16825 efrain 11938
  .align-content-lg-start {
11939
    align-content: flex-start !important;
11940
  }
16848 stevensc 11941
 
16825 efrain 11942
  .align-content-lg-end {
11943
    align-content: flex-end !important;
11944
  }
16848 stevensc 11945
 
16825 efrain 11946
  .align-content-lg-center {
11947
    align-content: center !important;
11948
  }
16848 stevensc 11949
 
16825 efrain 11950
  .align-content-lg-between {
11951
    align-content: space-between !important;
11952
  }
16848 stevensc 11953
 
16825 efrain 11954
  .align-content-lg-around {
11955
    align-content: space-around !important;
11956
  }
16848 stevensc 11957
 
16825 efrain 11958
  .align-content-lg-stretch {
11959
    align-content: stretch !important;
11960
  }
16848 stevensc 11961
 
16825 efrain 11962
  .align-self-lg-auto {
11963
    align-self: auto !important;
11964
  }
16848 stevensc 11965
 
16825 efrain 11966
  .align-self-lg-start {
11967
    align-self: flex-start !important;
11968
  }
16848 stevensc 11969
 
16825 efrain 11970
  .align-self-lg-end {
11971
    align-self: flex-end !important;
11972
  }
16848 stevensc 11973
 
16825 efrain 11974
  .align-self-lg-center {
11975
    align-self: center !important;
11976
  }
16848 stevensc 11977
 
16825 efrain 11978
  .align-self-lg-baseline {
11979
    align-self: baseline !important;
11980
  }
16848 stevensc 11981
 
16825 efrain 11982
  .align-self-lg-stretch {
11983
    align-self: stretch !important;
11984
  }
16848 stevensc 11985
 
16825 efrain 11986
  .order-lg-first {
11987
    order: -1 !important;
11988
  }
16848 stevensc 11989
 
16825 efrain 11990
  .order-lg-0 {
11991
    order: 0 !important;
11992
  }
16848 stevensc 11993
 
16825 efrain 11994
  .order-lg-1 {
11995
    order: 1 !important;
11996
  }
16848 stevensc 11997
 
16825 efrain 11998
  .order-lg-2 {
11999
    order: 2 !important;
12000
  }
16848 stevensc 12001
 
16825 efrain 12002
  .order-lg-3 {
12003
    order: 3 !important;
12004
  }
16848 stevensc 12005
 
16825 efrain 12006
  .order-lg-4 {
12007
    order: 4 !important;
12008
  }
16848 stevensc 12009
 
16825 efrain 12010
  .order-lg-5 {
12011
    order: 5 !important;
12012
  }
16848 stevensc 12013
 
16825 efrain 12014
  .order-lg-last {
12015
    order: 6 !important;
12016
  }
16848 stevensc 12017
 
16825 efrain 12018
  .m-lg-0 {
12019
    margin: 0 !important;
12020
  }
16848 stevensc 12021
 
16825 efrain 12022
  .m-lg-1 {
12023
    margin: 0.25rem !important;
12024
  }
16848 stevensc 12025
 
16825 efrain 12026
  .m-lg-2 {
12027
    margin: 0.5rem !important;
12028
  }
16848 stevensc 12029
 
16825 efrain 12030
  .m-lg-3 {
12031
    margin: 1rem !important;
12032
  }
16848 stevensc 12033
 
16825 efrain 12034
  .m-lg-4 {
12035
    margin: 1.5rem !important;
12036
  }
16848 stevensc 12037
 
16825 efrain 12038
  .m-lg-5 {
12039
    margin: 3rem !important;
12040
  }
16848 stevensc 12041
 
16825 efrain 12042
  .m-lg-6 {
12043
    margin: 4.5rem !important;
12044
  }
16848 stevensc 12045
 
16825 efrain 12046
  .m-lg-7 {
12047
    margin: 6rem !important;
12048
  }
16848 stevensc 12049
 
16825 efrain 12050
  .m-lg-auto {
12051
    margin: auto !important;
12052
  }
16848 stevensc 12053
 
16825 efrain 12054
  .mx-lg-0 {
12055
    margin-right: 0 !important;
12056
    margin-left: 0 !important;
12057
  }
16848 stevensc 12058
 
16825 efrain 12059
  .mx-lg-1 {
12060
    margin-right: 0.25rem !important;
12061
    margin-left: 0.25rem !important;
12062
  }
16848 stevensc 12063
 
16825 efrain 12064
  .mx-lg-2 {
12065
    margin-right: 0.5rem !important;
12066
    margin-left: 0.5rem !important;
12067
  }
16848 stevensc 12068
 
16825 efrain 12069
  .mx-lg-3 {
12070
    margin-right: 1rem !important;
12071
    margin-left: 1rem !important;
12072
  }
16848 stevensc 12073
 
16825 efrain 12074
  .mx-lg-4 {
12075
    margin-right: 1.5rem !important;
12076
    margin-left: 1.5rem !important;
12077
  }
16848 stevensc 12078
 
16825 efrain 12079
  .mx-lg-5 {
12080
    margin-right: 3rem !important;
12081
    margin-left: 3rem !important;
12082
  }
16848 stevensc 12083
 
16825 efrain 12084
  .mx-lg-6 {
12085
    margin-right: 4.5rem !important;
12086
    margin-left: 4.5rem !important;
12087
  }
16848 stevensc 12088
 
16825 efrain 12089
  .mx-lg-7 {
12090
    margin-right: 6rem !important;
12091
    margin-left: 6rem !important;
12092
  }
16848 stevensc 12093
 
16825 efrain 12094
  .mx-lg-auto {
12095
    margin-right: auto !important;
12096
    margin-left: auto !important;
12097
  }
16848 stevensc 12098
 
16825 efrain 12099
  .my-lg-0 {
12100
    margin-top: 0 !important;
12101
    margin-bottom: 0 !important;
12102
  }
16848 stevensc 12103
 
16825 efrain 12104
  .my-lg-1 {
12105
    margin-top: 0.25rem !important;
12106
    margin-bottom: 0.25rem !important;
12107
  }
16848 stevensc 12108
 
16825 efrain 12109
  .my-lg-2 {
12110
    margin-top: 0.5rem !important;
12111
    margin-bottom: 0.5rem !important;
12112
  }
16848 stevensc 12113
 
16825 efrain 12114
  .my-lg-3 {
12115
    margin-top: 1rem !important;
12116
    margin-bottom: 1rem !important;
12117
  }
16848 stevensc 12118
 
16825 efrain 12119
  .my-lg-4 {
12120
    margin-top: 1.5rem !important;
12121
    margin-bottom: 1.5rem !important;
12122
  }
16848 stevensc 12123
 
16825 efrain 12124
  .my-lg-5 {
12125
    margin-top: 3rem !important;
12126
    margin-bottom: 3rem !important;
12127
  }
16848 stevensc 12128
 
16825 efrain 12129
  .my-lg-6 {
12130
    margin-top: 4.5rem !important;
12131
    margin-bottom: 4.5rem !important;
12132
  }
16848 stevensc 12133
 
16825 efrain 12134
  .my-lg-7 {
12135
    margin-top: 6rem !important;
12136
    margin-bottom: 6rem !important;
12137
  }
16848 stevensc 12138
 
16825 efrain 12139
  .my-lg-auto {
12140
    margin-top: auto !important;
12141
    margin-bottom: auto !important;
12142
  }
16848 stevensc 12143
 
16825 efrain 12144
  .mt-lg-0 {
12145
    margin-top: 0 !important;
12146
  }
16848 stevensc 12147
 
16825 efrain 12148
  .mt-lg-1 {
12149
    margin-top: 0.25rem !important;
12150
  }
16848 stevensc 12151
 
16825 efrain 12152
  .mt-lg-2 {
12153
    margin-top: 0.5rem !important;
12154
  }
16848 stevensc 12155
 
16825 efrain 12156
  .mt-lg-3 {
12157
    margin-top: 1rem !important;
12158
  }
16848 stevensc 12159
 
16825 efrain 12160
  .mt-lg-4 {
12161
    margin-top: 1.5rem !important;
12162
  }
16848 stevensc 12163
 
16825 efrain 12164
  .mt-lg-5 {
12165
    margin-top: 3rem !important;
12166
  }
16848 stevensc 12167
 
16825 efrain 12168
  .mt-lg-6 {
12169
    margin-top: 4.5rem !important;
12170
  }
16848 stevensc 12171
 
16825 efrain 12172
  .mt-lg-7 {
12173
    margin-top: 6rem !important;
12174
  }
16848 stevensc 12175
 
16825 efrain 12176
  .mt-lg-auto {
12177
    margin-top: auto !important;
12178
  }
16848 stevensc 12179
 
16825 efrain 12180
  .me-lg-0 {
12181
    margin-right: 0 !important;
12182
  }
16848 stevensc 12183
 
16825 efrain 12184
  .me-lg-1 {
12185
    margin-right: 0.25rem !important;
12186
  }
16848 stevensc 12187
 
16825 efrain 12188
  .me-lg-2 {
12189
    margin-right: 0.5rem !important;
12190
  }
16848 stevensc 12191
 
16825 efrain 12192
  .me-lg-3 {
12193
    margin-right: 1rem !important;
12194
  }
16848 stevensc 12195
 
16825 efrain 12196
  .me-lg-4 {
12197
    margin-right: 1.5rem !important;
12198
  }
16848 stevensc 12199
 
16825 efrain 12200
  .me-lg-5 {
12201
    margin-right: 3rem !important;
12202
  }
16848 stevensc 12203
 
16825 efrain 12204
  .me-lg-6 {
12205
    margin-right: 4.5rem !important;
12206
  }
16848 stevensc 12207
 
16825 efrain 12208
  .me-lg-7 {
12209
    margin-right: 6rem !important;
12210
  }
16848 stevensc 12211
 
16825 efrain 12212
  .me-lg-auto {
12213
    margin-right: auto !important;
12214
  }
16848 stevensc 12215
 
16825 efrain 12216
  .mb-lg-0 {
12217
    margin-bottom: 0 !important;
12218
  }
16848 stevensc 12219
 
16825 efrain 12220
  .mb-lg-1 {
12221
    margin-bottom: 0.25rem !important;
12222
  }
16848 stevensc 12223
 
16825 efrain 12224
  .mb-lg-2 {
12225
    margin-bottom: 0.5rem !important;
12226
  }
16848 stevensc 12227
 
16825 efrain 12228
  .mb-lg-3 {
12229
    margin-bottom: 1rem !important;
12230
  }
16848 stevensc 12231
 
16825 efrain 12232
  .mb-lg-4 {
12233
    margin-bottom: 1.5rem !important;
12234
  }
16848 stevensc 12235
 
16825 efrain 12236
  .mb-lg-5 {
12237
    margin-bottom: 3rem !important;
12238
  }
16848 stevensc 12239
 
16825 efrain 12240
  .mb-lg-6 {
12241
    margin-bottom: 4.5rem !important;
12242
  }
16848 stevensc 12243
 
16825 efrain 12244
  .mb-lg-7 {
12245
    margin-bottom: 6rem !important;
12246
  }
16848 stevensc 12247
 
16825 efrain 12248
  .mb-lg-auto {
12249
    margin-bottom: auto !important;
12250
  }
16848 stevensc 12251
 
16825 efrain 12252
  .ms-lg-0 {
12253
    margin-left: 0 !important;
12254
  }
16848 stevensc 12255
 
16825 efrain 12256
  .ms-lg-1 {
12257
    margin-left: 0.25rem !important;
12258
  }
16848 stevensc 12259
 
16825 efrain 12260
  .ms-lg-2 {
12261
    margin-left: 0.5rem !important;
12262
  }
16848 stevensc 12263
 
16825 efrain 12264
  .ms-lg-3 {
12265
    margin-left: 1rem !important;
12266
  }
16848 stevensc 12267
 
16825 efrain 12268
  .ms-lg-4 {
12269
    margin-left: 1.5rem !important;
12270
  }
16848 stevensc 12271
 
16825 efrain 12272
  .ms-lg-5 {
12273
    margin-left: 3rem !important;
12274
  }
16848 stevensc 12275
 
16825 efrain 12276
  .ms-lg-6 {
12277
    margin-left: 4.5rem !important;
12278
  }
16848 stevensc 12279
 
16825 efrain 12280
  .ms-lg-7 {
12281
    margin-left: 6rem !important;
12282
  }
16848 stevensc 12283
 
16825 efrain 12284
  .ms-lg-auto {
12285
    margin-left: auto !important;
12286
  }
16848 stevensc 12287
 
16825 efrain 12288
  .m-lg-n1 {
12289
    margin: -0.25rem !important;
12290
  }
16848 stevensc 12291
 
16825 efrain 12292
  .m-lg-n2 {
12293
    margin: -0.5rem !important;
12294
  }
16848 stevensc 12295
 
16825 efrain 12296
  .m-lg-n3 {
12297
    margin: -1rem !important;
12298
  }
16848 stevensc 12299
 
16825 efrain 12300
  .m-lg-n4 {
12301
    margin: -1.5rem !important;
12302
  }
16848 stevensc 12303
 
16825 efrain 12304
  .m-lg-n5 {
12305
    margin: -3rem !important;
12306
  }
16848 stevensc 12307
 
16825 efrain 12308
  .m-lg-n6 {
12309
    margin: -4.5rem !important;
12310
  }
16848 stevensc 12311
 
16825 efrain 12312
  .m-lg-n7 {
12313
    margin: -6rem !important;
12314
  }
16848 stevensc 12315
 
16825 efrain 12316
  .mx-lg-n1 {
12317
    margin-right: -0.25rem !important;
12318
    margin-left: -0.25rem !important;
12319
  }
16848 stevensc 12320
 
16825 efrain 12321
  .mx-lg-n2 {
12322
    margin-right: -0.5rem !important;
12323
    margin-left: -0.5rem !important;
12324
  }
16848 stevensc 12325
 
16825 efrain 12326
  .mx-lg-n3 {
12327
    margin-right: -1rem !important;
12328
    margin-left: -1rem !important;
12329
  }
16848 stevensc 12330
 
16825 efrain 12331
  .mx-lg-n4 {
12332
    margin-right: -1.5rem !important;
12333
    margin-left: -1.5rem !important;
12334
  }
16848 stevensc 12335
 
16825 efrain 12336
  .mx-lg-n5 {
12337
    margin-right: -3rem !important;
12338
    margin-left: -3rem !important;
12339
  }
16848 stevensc 12340
 
16825 efrain 12341
  .mx-lg-n6 {
12342
    margin-right: -4.5rem !important;
12343
    margin-left: -4.5rem !important;
12344
  }
16848 stevensc 12345
 
16825 efrain 12346
  .mx-lg-n7 {
12347
    margin-right: -6rem !important;
12348
    margin-left: -6rem !important;
12349
  }
16848 stevensc 12350
 
16825 efrain 12351
  .my-lg-n1 {
12352
    margin-top: -0.25rem !important;
12353
    margin-bottom: -0.25rem !important;
12354
  }
16848 stevensc 12355
 
16825 efrain 12356
  .my-lg-n2 {
12357
    margin-top: -0.5rem !important;
12358
    margin-bottom: -0.5rem !important;
12359
  }
16848 stevensc 12360
 
16825 efrain 12361
  .my-lg-n3 {
12362
    margin-top: -1rem !important;
12363
    margin-bottom: -1rem !important;
12364
  }
16848 stevensc 12365
 
16825 efrain 12366
  .my-lg-n4 {
12367
    margin-top: -1.5rem !important;
12368
    margin-bottom: -1.5rem !important;
12369
  }
16848 stevensc 12370
 
16825 efrain 12371
  .my-lg-n5 {
12372
    margin-top: -3rem !important;
12373
    margin-bottom: -3rem !important;
12374
  }
16848 stevensc 12375
 
16825 efrain 12376
  .my-lg-n6 {
12377
    margin-top: -4.5rem !important;
12378
    margin-bottom: -4.5rem !important;
12379
  }
16848 stevensc 12380
 
16825 efrain 12381
  .my-lg-n7 {
12382
    margin-top: -6rem !important;
12383
    margin-bottom: -6rem !important;
12384
  }
16848 stevensc 12385
 
16825 efrain 12386
  .mt-lg-n1 {
12387
    margin-top: -0.25rem !important;
12388
  }
16848 stevensc 12389
 
16825 efrain 12390
  .mt-lg-n2 {
12391
    margin-top: -0.5rem !important;
12392
  }
16848 stevensc 12393
 
16825 efrain 12394
  .mt-lg-n3 {
12395
    margin-top: -1rem !important;
12396
  }
16848 stevensc 12397
 
16825 efrain 12398
  .mt-lg-n4 {
12399
    margin-top: -1.5rem !important;
12400
  }
16848 stevensc 12401
 
16825 efrain 12402
  .mt-lg-n5 {
12403
    margin-top: -3rem !important;
12404
  }
16848 stevensc 12405
 
16825 efrain 12406
  .mt-lg-n6 {
12407
    margin-top: -4.5rem !important;
12408
  }
16848 stevensc 12409
 
16825 efrain 12410
  .mt-lg-n7 {
12411
    margin-top: -6rem !important;
12412
  }
16848 stevensc 12413
 
16825 efrain 12414
  .me-lg-n1 {
12415
    margin-right: -0.25rem !important;
12416
  }
16848 stevensc 12417
 
16825 efrain 12418
  .me-lg-n2 {
12419
    margin-right: -0.5rem !important;
12420
  }
16848 stevensc 12421
 
16825 efrain 12422
  .me-lg-n3 {
12423
    margin-right: -1rem !important;
12424
  }
16848 stevensc 12425
 
16825 efrain 12426
  .me-lg-n4 {
12427
    margin-right: -1.5rem !important;
12428
  }
16848 stevensc 12429
 
16825 efrain 12430
  .me-lg-n5 {
12431
    margin-right: -3rem !important;
12432
  }
16848 stevensc 12433
 
16825 efrain 12434
  .me-lg-n6 {
12435
    margin-right: -4.5rem !important;
12436
  }
16848 stevensc 12437
 
16825 efrain 12438
  .me-lg-n7 {
12439
    margin-right: -6rem !important;
12440
  }
16848 stevensc 12441
 
16825 efrain 12442
  .mb-lg-n1 {
12443
    margin-bottom: -0.25rem !important;
12444
  }
16848 stevensc 12445
 
16825 efrain 12446
  .mb-lg-n2 {
12447
    margin-bottom: -0.5rem !important;
12448
  }
16848 stevensc 12449
 
16825 efrain 12450
  .mb-lg-n3 {
12451
    margin-bottom: -1rem !important;
12452
  }
16848 stevensc 12453
 
16825 efrain 12454
  .mb-lg-n4 {
12455
    margin-bottom: -1.5rem !important;
12456
  }
16848 stevensc 12457
 
16825 efrain 12458
  .mb-lg-n5 {
12459
    margin-bottom: -3rem !important;
12460
  }
16848 stevensc 12461
 
16825 efrain 12462
  .mb-lg-n6 {
12463
    margin-bottom: -4.5rem !important;
12464
  }
16848 stevensc 12465
 
16825 efrain 12466
  .mb-lg-n7 {
12467
    margin-bottom: -6rem !important;
12468
  }
16848 stevensc 12469
 
16825 efrain 12470
  .ms-lg-n1 {
12471
    margin-left: -0.25rem !important;
12472
  }
16848 stevensc 12473
 
16825 efrain 12474
  .ms-lg-n2 {
12475
    margin-left: -0.5rem !important;
12476
  }
16848 stevensc 12477
 
16825 efrain 12478
  .ms-lg-n3 {
12479
    margin-left: -1rem !important;
12480
  }
16848 stevensc 12481
 
16825 efrain 12482
  .ms-lg-n4 {
12483
    margin-left: -1.5rem !important;
12484
  }
16848 stevensc 12485
 
16825 efrain 12486
  .ms-lg-n5 {
12487
    margin-left: -3rem !important;
12488
  }
16848 stevensc 12489
 
16825 efrain 12490
  .ms-lg-n6 {
12491
    margin-left: -4.5rem !important;
12492
  }
16848 stevensc 12493
 
16825 efrain 12494
  .ms-lg-n7 {
12495
    margin-left: -6rem !important;
12496
  }
16848 stevensc 12497
 
16825 efrain 12498
  .p-lg-0 {
12499
    padding: 0 !important;
12500
  }
16848 stevensc 12501
 
16825 efrain 12502
  .p-lg-1 {
12503
    padding: 0.25rem !important;
12504
  }
16848 stevensc 12505
 
16825 efrain 12506
  .p-lg-2 {
12507
    padding: 0.5rem !important;
12508
  }
16848 stevensc 12509
 
16825 efrain 12510
  .p-lg-3 {
12511
    padding: 1rem !important;
12512
  }
16848 stevensc 12513
 
16825 efrain 12514
  .p-lg-4 {
12515
    padding: 1.5rem !important;
12516
  }
16848 stevensc 12517
 
16825 efrain 12518
  .p-lg-5 {
12519
    padding: 3rem !important;
12520
  }
16848 stevensc 12521
 
16825 efrain 12522
  .p-lg-6 {
12523
    padding: 4.5rem !important;
12524
  }
16848 stevensc 12525
 
16825 efrain 12526
  .p-lg-7 {
12527
    padding: 6rem !important;
12528
  }
16848 stevensc 12529
 
16825 efrain 12530
  .px-lg-0 {
12531
    padding-right: 0 !important;
12532
    padding-left: 0 !important;
12533
  }
16848 stevensc 12534
 
16825 efrain 12535
  .px-lg-1 {
12536
    padding-right: 0.25rem !important;
12537
    padding-left: 0.25rem !important;
12538
  }
16848 stevensc 12539
 
16825 efrain 12540
  .px-lg-2 {
12541
    padding-right: 0.5rem !important;
12542
    padding-left: 0.5rem !important;
12543
  }
16848 stevensc 12544
 
16825 efrain 12545
  .px-lg-3 {
12546
    padding-right: 1rem !important;
12547
    padding-left: 1rem !important;
12548
  }
16848 stevensc 12549
 
16825 efrain 12550
  .px-lg-4 {
12551
    padding-right: 1.5rem !important;
12552
    padding-left: 1.5rem !important;
12553
  }
16848 stevensc 12554
 
16825 efrain 12555
  .px-lg-5 {
12556
    padding-right: 3rem !important;
12557
    padding-left: 3rem !important;
12558
  }
16848 stevensc 12559
 
16825 efrain 12560
  .px-lg-6 {
12561
    padding-right: 4.5rem !important;
12562
    padding-left: 4.5rem !important;
12563
  }
16848 stevensc 12564
 
16825 efrain 12565
  .px-lg-7 {
12566
    padding-right: 6rem !important;
12567
    padding-left: 6rem !important;
12568
  }
16848 stevensc 12569
 
16825 efrain 12570
  .py-lg-0 {
12571
    padding-top: 0 !important;
12572
    padding-bottom: 0 !important;
12573
  }
16848 stevensc 12574
 
16825 efrain 12575
  .py-lg-1 {
12576
    padding-top: 0.25rem !important;
12577
    padding-bottom: 0.25rem !important;
12578
  }
16848 stevensc 12579
 
16825 efrain 12580
  .py-lg-2 {
12581
    padding-top: 0.5rem !important;
12582
    padding-bottom: 0.5rem !important;
12583
  }
16848 stevensc 12584
 
16825 efrain 12585
  .py-lg-3 {
12586
    padding-top: 1rem !important;
12587
    padding-bottom: 1rem !important;
12588
  }
16848 stevensc 12589
 
16825 efrain 12590
  .py-lg-4 {
12591
    padding-top: 1.5rem !important;
12592
    padding-bottom: 1.5rem !important;
12593
  }
16848 stevensc 12594
 
16825 efrain 12595
  .py-lg-5 {
12596
    padding-top: 3rem !important;
12597
    padding-bottom: 3rem !important;
12598
  }
16848 stevensc 12599
 
16825 efrain 12600
  .py-lg-6 {
12601
    padding-top: 4.5rem !important;
12602
    padding-bottom: 4.5rem !important;
12603
  }
16848 stevensc 12604
 
16825 efrain 12605
  .py-lg-7 {
12606
    padding-top: 6rem !important;
12607
    padding-bottom: 6rem !important;
12608
  }
16848 stevensc 12609
 
16825 efrain 12610
  .pt-lg-0 {
12611
    padding-top: 0 !important;
12612
  }
16848 stevensc 12613
 
16825 efrain 12614
  .pt-lg-1 {
12615
    padding-top: 0.25rem !important;
12616
  }
16848 stevensc 12617
 
16825 efrain 12618
  .pt-lg-2 {
12619
    padding-top: 0.5rem !important;
12620
  }
16848 stevensc 12621
 
16825 efrain 12622
  .pt-lg-3 {
12623
    padding-top: 1rem !important;
12624
  }
16848 stevensc 12625
 
16825 efrain 12626
  .pt-lg-4 {
12627
    padding-top: 1.5rem !important;
12628
  }
16848 stevensc 12629
 
16825 efrain 12630
  .pt-lg-5 {
12631
    padding-top: 3rem !important;
12632
  }
16848 stevensc 12633
 
16825 efrain 12634
  .pt-lg-6 {
12635
    padding-top: 4.5rem !important;
12636
  }
16848 stevensc 12637
 
16825 efrain 12638
  .pt-lg-7 {
12639
    padding-top: 6rem !important;
12640
  }
16848 stevensc 12641
 
16825 efrain 12642
  .pe-lg-0 {
12643
    padding-right: 0 !important;
12644
  }
16848 stevensc 12645
 
16825 efrain 12646
  .pe-lg-1 {
12647
    padding-right: 0.25rem !important;
12648
  }
16848 stevensc 12649
 
16825 efrain 12650
  .pe-lg-2 {
12651
    padding-right: 0.5rem !important;
12652
  }
16848 stevensc 12653
 
16825 efrain 12654
  .pe-lg-3 {
12655
    padding-right: 1rem !important;
12656
  }
16848 stevensc 12657
 
16825 efrain 12658
  .pe-lg-4 {
12659
    padding-right: 1.5rem !important;
12660
  }
16848 stevensc 12661
 
16825 efrain 12662
  .pe-lg-5 {
12663
    padding-right: 3rem !important;
12664
  }
16848 stevensc 12665
 
16825 efrain 12666
  .pe-lg-6 {
12667
    padding-right: 4.5rem !important;
12668
  }
16848 stevensc 12669
 
16825 efrain 12670
  .pe-lg-7 {
12671
    padding-right: 6rem !important;
12672
  }
16848 stevensc 12673
 
16825 efrain 12674
  .pb-lg-0 {
12675
    padding-bottom: 0 !important;
12676
  }
16848 stevensc 12677
 
16825 efrain 12678
  .pb-lg-1 {
12679
    padding-bottom: 0.25rem !important;
12680
  }
16848 stevensc 12681
 
16825 efrain 12682
  .pb-lg-2 {
12683
    padding-bottom: 0.5rem !important;
12684
  }
16848 stevensc 12685
 
16825 efrain 12686
  .pb-lg-3 {
12687
    padding-bottom: 1rem !important;
12688
  }
16848 stevensc 12689
 
16825 efrain 12690
  .pb-lg-4 {
12691
    padding-bottom: 1.5rem !important;
12692
  }
16848 stevensc 12693
 
16825 efrain 12694
  .pb-lg-5 {
12695
    padding-bottom: 3rem !important;
12696
  }
16848 stevensc 12697
 
16825 efrain 12698
  .pb-lg-6 {
12699
    padding-bottom: 4.5rem !important;
12700
  }
16848 stevensc 12701
 
16825 efrain 12702
  .pb-lg-7 {
12703
    padding-bottom: 6rem !important;
12704
  }
16848 stevensc 12705
 
16825 efrain 12706
  .ps-lg-0 {
12707
    padding-left: 0 !important;
12708
  }
16848 stevensc 12709
 
16825 efrain 12710
  .ps-lg-1 {
12711
    padding-left: 0.25rem !important;
12712
  }
16848 stevensc 12713
 
16825 efrain 12714
  .ps-lg-2 {
12715
    padding-left: 0.5rem !important;
12716
  }
16848 stevensc 12717
 
16825 efrain 12718
  .ps-lg-3 {
12719
    padding-left: 1rem !important;
12720
  }
16848 stevensc 12721
 
16825 efrain 12722
  .ps-lg-4 {
12723
    padding-left: 1.5rem !important;
12724
  }
16848 stevensc 12725
 
16825 efrain 12726
  .ps-lg-5 {
12727
    padding-left: 3rem !important;
12728
  }
16848 stevensc 12729
 
16825 efrain 12730
  .ps-lg-6 {
12731
    padding-left: 4.5rem !important;
12732
  }
16848 stevensc 12733
 
16825 efrain 12734
  .ps-lg-7 {
12735
    padding-left: 6rem !important;
12736
  }
16848 stevensc 12737
 
16825 efrain 12738
  .gap-lg-0 {
12739
    gap: 0 !important;
12740
  }
16848 stevensc 12741
 
16825 efrain 12742
  .gap-lg-1 {
12743
    gap: 0.25rem !important;
12744
  }
16848 stevensc 12745
 
16825 efrain 12746
  .gap-lg-2 {
12747
    gap: 0.5rem !important;
12748
  }
16848 stevensc 12749
 
16825 efrain 12750
  .gap-lg-3 {
12751
    gap: 1rem !important;
12752
  }
16848 stevensc 12753
 
16825 efrain 12754
  .gap-lg-4 {
12755
    gap: 1.5rem !important;
12756
  }
16848 stevensc 12757
 
16825 efrain 12758
  .gap-lg-5 {
12759
    gap: 3rem !important;
12760
  }
16848 stevensc 12761
 
16825 efrain 12762
  .gap-lg-6 {
12763
    gap: 4.5rem !important;
12764
  }
16848 stevensc 12765
 
16825 efrain 12766
  .gap-lg-7 {
12767
    gap: 6rem !important;
12768
  }
16848 stevensc 12769
 
16825 efrain 12770
  .text-lg-start {
12771
    text-align: left !important;
12772
  }
16848 stevensc 12773
 
16825 efrain 12774
  .text-lg-end {
12775
    text-align: right !important;
12776
  }
16848 stevensc 12777
 
16825 efrain 12778
  .text-lg-center {
12779
    text-align: center !important;
12780
  }
12781
}
16848 stevensc 12782
 
16825 efrain 12783
@media (min-width: 1200px) {
12784
  .float-xl-start {
12785
    float: left !important;
12786
  }
16848 stevensc 12787
 
16825 efrain 12788
  .float-xl-end {
12789
    float: right !important;
12790
  }
16848 stevensc 12791
 
16825 efrain 12792
  .float-xl-none {
12793
    float: none !important;
12794
  }
16848 stevensc 12795
 
16825 efrain 12796
  .d-xl-inline {
12797
    display: inline !important;
12798
  }
16848 stevensc 12799
 
16825 efrain 12800
  .d-xl-inline-block {
12801
    display: inline-block !important;
12802
  }
16848 stevensc 12803
 
16825 efrain 12804
  .d-xl-block {
12805
    display: block !important;
12806
  }
16848 stevensc 12807
 
16825 efrain 12808
  .d-xl-grid {
12809
    display: grid !important;
12810
  }
16848 stevensc 12811
 
16825 efrain 12812
  .d-xl-table {
12813
    display: table !important;
12814
  }
16848 stevensc 12815
 
16825 efrain 12816
  .d-xl-table-row {
12817
    display: table-row !important;
12818
  }
16848 stevensc 12819
 
16825 efrain 12820
  .d-xl-table-cell {
12821
    display: table-cell !important;
12822
  }
16848 stevensc 12823
 
16825 efrain 12824
  .d-xl-flex {
12825
    display: flex !important;
12826
  }
16848 stevensc 12827
 
16825 efrain 12828
  .d-xl-inline-flex {
12829
    display: inline-flex !important;
12830
  }
16848 stevensc 12831
 
16825 efrain 12832
  .d-xl-none {
12833
    display: none !important;
12834
  }
16848 stevensc 12835
 
16825 efrain 12836
  .border-xl {
12837
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12838
  }
16848 stevensc 12839
 
16825 efrain 12840
  .border-xl-0 {
12841
    border: 0 !important;
12842
  }
16848 stevensc 12843
 
16825 efrain 12844
  .border-top-xl {
12845
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12846
  }
16848 stevensc 12847
 
16825 efrain 12848
  .border-top-xl-0 {
12849
    border-top: 0 !important;
12850
  }
16848 stevensc 12851
 
16825 efrain 12852
  .border-end-xl {
12853
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12854
  }
16848 stevensc 12855
 
16825 efrain 12856
  .border-end-xl-0 {
12857
    border-right: 0 !important;
12858
  }
16848 stevensc 12859
 
16825 efrain 12860
  .border-bottom-xl {
12861
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12862
  }
16848 stevensc 12863
 
16825 efrain 12864
  .border-bottom-xl-0 {
12865
    border-bottom: 0 !important;
12866
  }
16848 stevensc 12867
 
16825 efrain 12868
  .border-start-xl {
12869
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12870
  }
16848 stevensc 12871
 
16825 efrain 12872
  .border-start-xl-0 {
12873
    border-left: 0 !important;
12874
  }
16848 stevensc 12875
 
16825 efrain 12876
  .flex-xl-fill {
12877
    flex: 1 1 auto !important;
12878
  }
16848 stevensc 12879
 
16825 efrain 12880
  .flex-xl-row {
12881
    flex-direction: row !important;
12882
  }
16848 stevensc 12883
 
16825 efrain 12884
  .flex-xl-column {
12885
    flex-direction: column !important;
12886
  }
16848 stevensc 12887
 
16825 efrain 12888
  .flex-xl-row-reverse {
12889
    flex-direction: row-reverse !important;
12890
  }
16848 stevensc 12891
 
16825 efrain 12892
  .flex-xl-column-reverse {
12893
    flex-direction: column-reverse !important;
12894
  }
16848 stevensc 12895
 
16825 efrain 12896
  .flex-xl-grow-0 {
12897
    flex-grow: 0 !important;
12898
  }
16848 stevensc 12899
 
16825 efrain 12900
  .flex-xl-grow-1 {
12901
    flex-grow: 1 !important;
12902
  }
16848 stevensc 12903
 
16825 efrain 12904
  .flex-xl-shrink-0 {
12905
    flex-shrink: 0 !important;
12906
  }
16848 stevensc 12907
 
16825 efrain 12908
  .flex-xl-shrink-1 {
12909
    flex-shrink: 1 !important;
12910
  }
16848 stevensc 12911
 
16825 efrain 12912
  .flex-xl-wrap {
12913
    flex-wrap: wrap !important;
12914
  }
16848 stevensc 12915
 
16825 efrain 12916
  .flex-xl-nowrap {
12917
    flex-wrap: nowrap !important;
12918
  }
16848 stevensc 12919
 
16825 efrain 12920
  .flex-xl-wrap-reverse {
12921
    flex-wrap: wrap-reverse !important;
12922
  }
16848 stevensc 12923
 
16825 efrain 12924
  .justify-content-xl-start {
12925
    justify-content: flex-start !important;
12926
  }
16848 stevensc 12927
 
16825 efrain 12928
  .justify-content-xl-end {
12929
    justify-content: flex-end !important;
12930
  }
16848 stevensc 12931
 
16825 efrain 12932
  .justify-content-xl-center {
12933
    justify-content: center !important;
12934
  }
16848 stevensc 12935
 
16825 efrain 12936
  .justify-content-xl-between {
12937
    justify-content: space-between !important;
12938
  }
16848 stevensc 12939
 
16825 efrain 12940
  .justify-content-xl-around {
12941
    justify-content: space-around !important;
12942
  }
16848 stevensc 12943
 
16825 efrain 12944
  .justify-content-xl-evenly {
12945
    justify-content: space-evenly !important;
12946
  }
16848 stevensc 12947
 
16825 efrain 12948
  .align-items-xl-start {
12949
    align-items: flex-start !important;
12950
  }
16848 stevensc 12951
 
16825 efrain 12952
  .align-items-xl-end {
12953
    align-items: flex-end !important;
12954
  }
16848 stevensc 12955
 
16825 efrain 12956
  .align-items-xl-center {
12957
    align-items: center !important;
12958
  }
16848 stevensc 12959
 
16825 efrain 12960
  .align-items-xl-baseline {
12961
    align-items: baseline !important;
12962
  }
16848 stevensc 12963
 
16825 efrain 12964
  .align-items-xl-stretch {
12965
    align-items: stretch !important;
12966
  }
16848 stevensc 12967
 
16825 efrain 12968
  .align-content-xl-start {
12969
    align-content: flex-start !important;
12970
  }
16848 stevensc 12971
 
16825 efrain 12972
  .align-content-xl-end {
12973
    align-content: flex-end !important;
12974
  }
16848 stevensc 12975
 
16825 efrain 12976
  .align-content-xl-center {
12977
    align-content: center !important;
12978
  }
16848 stevensc 12979
 
16825 efrain 12980
  .align-content-xl-between {
12981
    align-content: space-between !important;
12982
  }
16848 stevensc 12983
 
16825 efrain 12984
  .align-content-xl-around {
12985
    align-content: space-around !important;
12986
  }
16848 stevensc 12987
 
16825 efrain 12988
  .align-content-xl-stretch {
12989
    align-content: stretch !important;
12990
  }
16848 stevensc 12991
 
16825 efrain 12992
  .align-self-xl-auto {
12993
    align-self: auto !important;
12994
  }
16848 stevensc 12995
 
16825 efrain 12996
  .align-self-xl-start {
12997
    align-self: flex-start !important;
12998
  }
16848 stevensc 12999
 
16825 efrain 13000
  .align-self-xl-end {
13001
    align-self: flex-end !important;
13002
  }
16848 stevensc 13003
 
16825 efrain 13004
  .align-self-xl-center {
13005
    align-self: center !important;
13006
  }
16848 stevensc 13007
 
16825 efrain 13008
  .align-self-xl-baseline {
13009
    align-self: baseline !important;
13010
  }
16848 stevensc 13011
 
16825 efrain 13012
  .align-self-xl-stretch {
13013
    align-self: stretch !important;
13014
  }
16848 stevensc 13015
 
16825 efrain 13016
  .order-xl-first {
13017
    order: -1 !important;
13018
  }
16848 stevensc 13019
 
16825 efrain 13020
  .order-xl-0 {
13021
    order: 0 !important;
13022
  }
16848 stevensc 13023
 
16825 efrain 13024
  .order-xl-1 {
13025
    order: 1 !important;
13026
  }
16848 stevensc 13027
 
16825 efrain 13028
  .order-xl-2 {
13029
    order: 2 !important;
13030
  }
16848 stevensc 13031
 
16825 efrain 13032
  .order-xl-3 {
13033
    order: 3 !important;
13034
  }
16848 stevensc 13035
 
16825 efrain 13036
  .order-xl-4 {
13037
    order: 4 !important;
13038
  }
16848 stevensc 13039
 
16825 efrain 13040
  .order-xl-5 {
13041
    order: 5 !important;
13042
  }
16848 stevensc 13043
 
16825 efrain 13044
  .order-xl-last {
13045
    order: 6 !important;
13046
  }
16848 stevensc 13047
 
16825 efrain 13048
  .m-xl-0 {
13049
    margin: 0 !important;
13050
  }
16848 stevensc 13051
 
16825 efrain 13052
  .m-xl-1 {
13053
    margin: 0.25rem !important;
13054
  }
16848 stevensc 13055
 
16825 efrain 13056
  .m-xl-2 {
13057
    margin: 0.5rem !important;
13058
  }
16848 stevensc 13059
 
16825 efrain 13060
  .m-xl-3 {
13061
    margin: 1rem !important;
13062
  }
16848 stevensc 13063
 
16825 efrain 13064
  .m-xl-4 {
13065
    margin: 1.5rem !important;
13066
  }
16848 stevensc 13067
 
16825 efrain 13068
  .m-xl-5 {
13069
    margin: 3rem !important;
13070
  }
16848 stevensc 13071
 
16825 efrain 13072
  .m-xl-6 {
13073
    margin: 4.5rem !important;
13074
  }
16848 stevensc 13075
 
16825 efrain 13076
  .m-xl-7 {
13077
    margin: 6rem !important;
13078
  }
16848 stevensc 13079
 
16825 efrain 13080
  .m-xl-auto {
13081
    margin: auto !important;
13082
  }
16848 stevensc 13083
 
16825 efrain 13084
  .mx-xl-0 {
13085
    margin-right: 0 !important;
13086
    margin-left: 0 !important;
13087
  }
16848 stevensc 13088
 
16825 efrain 13089
  .mx-xl-1 {
13090
    margin-right: 0.25rem !important;
13091
    margin-left: 0.25rem !important;
13092
  }
16848 stevensc 13093
 
16825 efrain 13094
  .mx-xl-2 {
13095
    margin-right: 0.5rem !important;
13096
    margin-left: 0.5rem !important;
13097
  }
16848 stevensc 13098
 
16825 efrain 13099
  .mx-xl-3 {
13100
    margin-right: 1rem !important;
13101
    margin-left: 1rem !important;
13102
  }
16848 stevensc 13103
 
16825 efrain 13104
  .mx-xl-4 {
13105
    margin-right: 1.5rem !important;
13106
    margin-left: 1.5rem !important;
13107
  }
16848 stevensc 13108
 
16825 efrain 13109
  .mx-xl-5 {
13110
    margin-right: 3rem !important;
13111
    margin-left: 3rem !important;
13112
  }
16848 stevensc 13113
 
16825 efrain 13114
  .mx-xl-6 {
13115
    margin-right: 4.5rem !important;
13116
    margin-left: 4.5rem !important;
13117
  }
16848 stevensc 13118
 
16825 efrain 13119
  .mx-xl-7 {
13120
    margin-right: 6rem !important;
13121
    margin-left: 6rem !important;
13122
  }
16848 stevensc 13123
 
16825 efrain 13124
  .mx-xl-auto {
13125
    margin-right: auto !important;
13126
    margin-left: auto !important;
13127
  }
16848 stevensc 13128
 
16825 efrain 13129
  .my-xl-0 {
13130
    margin-top: 0 !important;
13131
    margin-bottom: 0 !important;
13132
  }
16848 stevensc 13133
 
16825 efrain 13134
  .my-xl-1 {
13135
    margin-top: 0.25rem !important;
13136
    margin-bottom: 0.25rem !important;
13137
  }
16848 stevensc 13138
 
16825 efrain 13139
  .my-xl-2 {
13140
    margin-top: 0.5rem !important;
13141
    margin-bottom: 0.5rem !important;
13142
  }
16848 stevensc 13143
 
16825 efrain 13144
  .my-xl-3 {
13145
    margin-top: 1rem !important;
13146
    margin-bottom: 1rem !important;
13147
  }
16848 stevensc 13148
 
16825 efrain 13149
  .my-xl-4 {
13150
    margin-top: 1.5rem !important;
13151
    margin-bottom: 1.5rem !important;
13152
  }
16848 stevensc 13153
 
16825 efrain 13154
  .my-xl-5 {
13155
    margin-top: 3rem !important;
13156
    margin-bottom: 3rem !important;
13157
  }
16848 stevensc 13158
 
16825 efrain 13159
  .my-xl-6 {
13160
    margin-top: 4.5rem !important;
13161
    margin-bottom: 4.5rem !important;
13162
  }
16848 stevensc 13163
 
16825 efrain 13164
  .my-xl-7 {
13165
    margin-top: 6rem !important;
13166
    margin-bottom: 6rem !important;
13167
  }
16848 stevensc 13168
 
16825 efrain 13169
  .my-xl-auto {
13170
    margin-top: auto !important;
13171
    margin-bottom: auto !important;
13172
  }
16848 stevensc 13173
 
16825 efrain 13174
  .mt-xl-0 {
13175
    margin-top: 0 !important;
13176
  }
16848 stevensc 13177
 
16825 efrain 13178
  .mt-xl-1 {
13179
    margin-top: 0.25rem !important;
13180
  }
16848 stevensc 13181
 
16825 efrain 13182
  .mt-xl-2 {
13183
    margin-top: 0.5rem !important;
13184
  }
16848 stevensc 13185
 
16825 efrain 13186
  .mt-xl-3 {
13187
    margin-top: 1rem !important;
13188
  }
16848 stevensc 13189
 
16825 efrain 13190
  .mt-xl-4 {
13191
    margin-top: 1.5rem !important;
13192
  }
16848 stevensc 13193
 
16825 efrain 13194
  .mt-xl-5 {
13195
    margin-top: 3rem !important;
13196
  }
16848 stevensc 13197
 
16825 efrain 13198
  .mt-xl-6 {
13199
    margin-top: 4.5rem !important;
13200
  }
16848 stevensc 13201
 
16825 efrain 13202
  .mt-xl-7 {
13203
    margin-top: 6rem !important;
13204
  }
16848 stevensc 13205
 
16825 efrain 13206
  .mt-xl-auto {
13207
    margin-top: auto !important;
13208
  }
16848 stevensc 13209
 
16825 efrain 13210
  .me-xl-0 {
13211
    margin-right: 0 !important;
13212
  }
16848 stevensc 13213
 
16825 efrain 13214
  .me-xl-1 {
13215
    margin-right: 0.25rem !important;
13216
  }
16848 stevensc 13217
 
16825 efrain 13218
  .me-xl-2 {
13219
    margin-right: 0.5rem !important;
13220
  }
16848 stevensc 13221
 
16825 efrain 13222
  .me-xl-3 {
13223
    margin-right: 1rem !important;
13224
  }
16848 stevensc 13225
 
16825 efrain 13226
  .me-xl-4 {
13227
    margin-right: 1.5rem !important;
13228
  }
16848 stevensc 13229
 
16825 efrain 13230
  .me-xl-5 {
13231
    margin-right: 3rem !important;
13232
  }
16848 stevensc 13233
 
16825 efrain 13234
  .me-xl-6 {
13235
    margin-right: 4.5rem !important;
13236
  }
16848 stevensc 13237
 
16825 efrain 13238
  .me-xl-7 {
13239
    margin-right: 6rem !important;
13240
  }
16848 stevensc 13241
 
16825 efrain 13242
  .me-xl-auto {
13243
    margin-right: auto !important;
13244
  }
16848 stevensc 13245
 
16825 efrain 13246
  .mb-xl-0 {
13247
    margin-bottom: 0 !important;
13248
  }
16848 stevensc 13249
 
16825 efrain 13250
  .mb-xl-1 {
13251
    margin-bottom: 0.25rem !important;
13252
  }
16848 stevensc 13253
 
16825 efrain 13254
  .mb-xl-2 {
13255
    margin-bottom: 0.5rem !important;
13256
  }
16848 stevensc 13257
 
16825 efrain 13258
  .mb-xl-3 {
13259
    margin-bottom: 1rem !important;
13260
  }
16848 stevensc 13261
 
16825 efrain 13262
  .mb-xl-4 {
13263
    margin-bottom: 1.5rem !important;
13264
  }
16848 stevensc 13265
 
16825 efrain 13266
  .mb-xl-5 {
13267
    margin-bottom: 3rem !important;
13268
  }
16848 stevensc 13269
 
16825 efrain 13270
  .mb-xl-6 {
13271
    margin-bottom: 4.5rem !important;
13272
  }
16848 stevensc 13273
 
16825 efrain 13274
  .mb-xl-7 {
13275
    margin-bottom: 6rem !important;
13276
  }
16848 stevensc 13277
 
16825 efrain 13278
  .mb-xl-auto {
13279
    margin-bottom: auto !important;
13280
  }
16848 stevensc 13281
 
16825 efrain 13282
  .ms-xl-0 {
13283
    margin-left: 0 !important;
13284
  }
16848 stevensc 13285
 
16825 efrain 13286
  .ms-xl-1 {
13287
    margin-left: 0.25rem !important;
13288
  }
16848 stevensc 13289
 
16825 efrain 13290
  .ms-xl-2 {
13291
    margin-left: 0.5rem !important;
13292
  }
16848 stevensc 13293
 
16825 efrain 13294
  .ms-xl-3 {
13295
    margin-left: 1rem !important;
13296
  }
16848 stevensc 13297
 
16825 efrain 13298
  .ms-xl-4 {
13299
    margin-left: 1.5rem !important;
13300
  }
16848 stevensc 13301
 
16825 efrain 13302
  .ms-xl-5 {
13303
    margin-left: 3rem !important;
13304
  }
16848 stevensc 13305
 
16825 efrain 13306
  .ms-xl-6 {
13307
    margin-left: 4.5rem !important;
13308
  }
16848 stevensc 13309
 
16825 efrain 13310
  .ms-xl-7 {
13311
    margin-left: 6rem !important;
13312
  }
16848 stevensc 13313
 
16825 efrain 13314
  .ms-xl-auto {
13315
    margin-left: auto !important;
13316
  }
16848 stevensc 13317
 
16825 efrain 13318
  .m-xl-n1 {
13319
    margin: -0.25rem !important;
13320
  }
16848 stevensc 13321
 
16825 efrain 13322
  .m-xl-n2 {
13323
    margin: -0.5rem !important;
13324
  }
16848 stevensc 13325
 
16825 efrain 13326
  .m-xl-n3 {
13327
    margin: -1rem !important;
13328
  }
16848 stevensc 13329
 
16825 efrain 13330
  .m-xl-n4 {
13331
    margin: -1.5rem !important;
13332
  }
16848 stevensc 13333
 
16825 efrain 13334
  .m-xl-n5 {
13335
    margin: -3rem !important;
13336
  }
16848 stevensc 13337
 
16825 efrain 13338
  .m-xl-n6 {
13339
    margin: -4.5rem !important;
13340
  }
16848 stevensc 13341
 
16825 efrain 13342
  .m-xl-n7 {
13343
    margin: -6rem !important;
13344
  }
16848 stevensc 13345
 
16825 efrain 13346
  .mx-xl-n1 {
13347
    margin-right: -0.25rem !important;
13348
    margin-left: -0.25rem !important;
13349
  }
16848 stevensc 13350
 
16825 efrain 13351
  .mx-xl-n2 {
13352
    margin-right: -0.5rem !important;
13353
    margin-left: -0.5rem !important;
13354
  }
16848 stevensc 13355
 
16825 efrain 13356
  .mx-xl-n3 {
13357
    margin-right: -1rem !important;
13358
    margin-left: -1rem !important;
13359
  }
16848 stevensc 13360
 
16825 efrain 13361
  .mx-xl-n4 {
13362
    margin-right: -1.5rem !important;
13363
    margin-left: -1.5rem !important;
13364
  }
16848 stevensc 13365
 
16825 efrain 13366
  .mx-xl-n5 {
13367
    margin-right: -3rem !important;
13368
    margin-left: -3rem !important;
13369
  }
16848 stevensc 13370
 
16825 efrain 13371
  .mx-xl-n6 {
13372
    margin-right: -4.5rem !important;
13373
    margin-left: -4.5rem !important;
13374
  }
16848 stevensc 13375
 
16825 efrain 13376
  .mx-xl-n7 {
13377
    margin-right: -6rem !important;
13378
    margin-left: -6rem !important;
13379
  }
16848 stevensc 13380
 
16825 efrain 13381
  .my-xl-n1 {
13382
    margin-top: -0.25rem !important;
13383
    margin-bottom: -0.25rem !important;
13384
  }
16848 stevensc 13385
 
16825 efrain 13386
  .my-xl-n2 {
13387
    margin-top: -0.5rem !important;
13388
    margin-bottom: -0.5rem !important;
13389
  }
16848 stevensc 13390
 
16825 efrain 13391
  .my-xl-n3 {
13392
    margin-top: -1rem !important;
13393
    margin-bottom: -1rem !important;
13394
  }
16848 stevensc 13395
 
16825 efrain 13396
  .my-xl-n4 {
13397
    margin-top: -1.5rem !important;
13398
    margin-bottom: -1.5rem !important;
13399
  }
16848 stevensc 13400
 
16825 efrain 13401
  .my-xl-n5 {
13402
    margin-top: -3rem !important;
13403
    margin-bottom: -3rem !important;
13404
  }
16848 stevensc 13405
 
16825 efrain 13406
  .my-xl-n6 {
13407
    margin-top: -4.5rem !important;
13408
    margin-bottom: -4.5rem !important;
13409
  }
16848 stevensc 13410
 
16825 efrain 13411
  .my-xl-n7 {
13412
    margin-top: -6rem !important;
13413
    margin-bottom: -6rem !important;
13414
  }
16848 stevensc 13415
 
16825 efrain 13416
  .mt-xl-n1 {
13417
    margin-top: -0.25rem !important;
13418
  }
16848 stevensc 13419
 
16825 efrain 13420
  .mt-xl-n2 {
13421
    margin-top: -0.5rem !important;
13422
  }
16848 stevensc 13423
 
16825 efrain 13424
  .mt-xl-n3 {
13425
    margin-top: -1rem !important;
13426
  }
16848 stevensc 13427
 
16825 efrain 13428
  .mt-xl-n4 {
13429
    margin-top: -1.5rem !important;
13430
  }
16848 stevensc 13431
 
16825 efrain 13432
  .mt-xl-n5 {
13433
    margin-top: -3rem !important;
13434
  }
16848 stevensc 13435
 
16825 efrain 13436
  .mt-xl-n6 {
13437
    margin-top: -4.5rem !important;
13438
  }
16848 stevensc 13439
 
16825 efrain 13440
  .mt-xl-n7 {
13441
    margin-top: -6rem !important;
13442
  }
16848 stevensc 13443
 
16825 efrain 13444
  .me-xl-n1 {
13445
    margin-right: -0.25rem !important;
13446
  }
16848 stevensc 13447
 
16825 efrain 13448
  .me-xl-n2 {
13449
    margin-right: -0.5rem !important;
13450
  }
16848 stevensc 13451
 
16825 efrain 13452
  .me-xl-n3 {
13453
    margin-right: -1rem !important;
13454
  }
16848 stevensc 13455
 
16825 efrain 13456
  .me-xl-n4 {
13457
    margin-right: -1.5rem !important;
13458
  }
16848 stevensc 13459
 
16825 efrain 13460
  .me-xl-n5 {
13461
    margin-right: -3rem !important;
13462
  }
16848 stevensc 13463
 
16825 efrain 13464
  .me-xl-n6 {
13465
    margin-right: -4.5rem !important;
13466
  }
16848 stevensc 13467
 
16825 efrain 13468
  .me-xl-n7 {
13469
    margin-right: -6rem !important;
13470
  }
16848 stevensc 13471
 
16825 efrain 13472
  .mb-xl-n1 {
13473
    margin-bottom: -0.25rem !important;
13474
  }
16848 stevensc 13475
 
16825 efrain 13476
  .mb-xl-n2 {
13477
    margin-bottom: -0.5rem !important;
13478
  }
16848 stevensc 13479
 
16825 efrain 13480
  .mb-xl-n3 {
13481
    margin-bottom: -1rem !important;
13482
  }
16848 stevensc 13483
 
16825 efrain 13484
  .mb-xl-n4 {
13485
    margin-bottom: -1.5rem !important;
13486
  }
16848 stevensc 13487
 
16825 efrain 13488
  .mb-xl-n5 {
13489
    margin-bottom: -3rem !important;
13490
  }
16848 stevensc 13491
 
16825 efrain 13492
  .mb-xl-n6 {
13493
    margin-bottom: -4.5rem !important;
13494
  }
16848 stevensc 13495
 
16825 efrain 13496
  .mb-xl-n7 {
13497
    margin-bottom: -6rem !important;
13498
  }
16848 stevensc 13499
 
16825 efrain 13500
  .ms-xl-n1 {
13501
    margin-left: -0.25rem !important;
13502
  }
16848 stevensc 13503
 
16825 efrain 13504
  .ms-xl-n2 {
13505
    margin-left: -0.5rem !important;
13506
  }
16848 stevensc 13507
 
16825 efrain 13508
  .ms-xl-n3 {
13509
    margin-left: -1rem !important;
13510
  }
16848 stevensc 13511
 
16825 efrain 13512
  .ms-xl-n4 {
13513
    margin-left: -1.5rem !important;
13514
  }
16848 stevensc 13515
 
16825 efrain 13516
  .ms-xl-n5 {
13517
    margin-left: -3rem !important;
13518
  }
16848 stevensc 13519
 
16825 efrain 13520
  .ms-xl-n6 {
13521
    margin-left: -4.5rem !important;
13522
  }
16848 stevensc 13523
 
16825 efrain 13524
  .ms-xl-n7 {
13525
    margin-left: -6rem !important;
13526
  }
16848 stevensc 13527
 
16825 efrain 13528
  .p-xl-0 {
13529
    padding: 0 !important;
13530
  }
16848 stevensc 13531
 
16825 efrain 13532
  .p-xl-1 {
13533
    padding: 0.25rem !important;
13534
  }
16848 stevensc 13535
 
16825 efrain 13536
  .p-xl-2 {
13537
    padding: 0.5rem !important;
13538
  }
16848 stevensc 13539
 
16825 efrain 13540
  .p-xl-3 {
13541
    padding: 1rem !important;
13542
  }
16848 stevensc 13543
 
16825 efrain 13544
  .p-xl-4 {
13545
    padding: 1.5rem !important;
13546
  }
16848 stevensc 13547
 
16825 efrain 13548
  .p-xl-5 {
13549
    padding: 3rem !important;
13550
  }
16848 stevensc 13551
 
16825 efrain 13552
  .p-xl-6 {
13553
    padding: 4.5rem !important;
13554
  }
16848 stevensc 13555
 
16825 efrain 13556
  .p-xl-7 {
13557
    padding: 6rem !important;
13558
  }
16848 stevensc 13559
 
16825 efrain 13560
  .px-xl-0 {
13561
    padding-right: 0 !important;
13562
    padding-left: 0 !important;
13563
  }
16848 stevensc 13564
 
16825 efrain 13565
  .px-xl-1 {
13566
    padding-right: 0.25rem !important;
13567
    padding-left: 0.25rem !important;
13568
  }
16848 stevensc 13569
 
16825 efrain 13570
  .px-xl-2 {
13571
    padding-right: 0.5rem !important;
13572
    padding-left: 0.5rem !important;
13573
  }
16848 stevensc 13574
 
16825 efrain 13575
  .px-xl-3 {
13576
    padding-right: 1rem !important;
13577
    padding-left: 1rem !important;
13578
  }
16848 stevensc 13579
 
16825 efrain 13580
  .px-xl-4 {
13581
    padding-right: 1.5rem !important;
13582
    padding-left: 1.5rem !important;
13583
  }
16848 stevensc 13584
 
16825 efrain 13585
  .px-xl-5 {
13586
    padding-right: 3rem !important;
13587
    padding-left: 3rem !important;
13588
  }
16848 stevensc 13589
 
16825 efrain 13590
  .px-xl-6 {
13591
    padding-right: 4.5rem !important;
13592
    padding-left: 4.5rem !important;
13593
  }
16848 stevensc 13594
 
16825 efrain 13595
  .px-xl-7 {
13596
    padding-right: 6rem !important;
13597
    padding-left: 6rem !important;
13598
  }
16848 stevensc 13599
 
16825 efrain 13600
  .py-xl-0 {
13601
    padding-top: 0 !important;
13602
    padding-bottom: 0 !important;
13603
  }
16848 stevensc 13604
 
16825 efrain 13605
  .py-xl-1 {
13606
    padding-top: 0.25rem !important;
13607
    padding-bottom: 0.25rem !important;
13608
  }
16848 stevensc 13609
 
16825 efrain 13610
  .py-xl-2 {
13611
    padding-top: 0.5rem !important;
13612
    padding-bottom: 0.5rem !important;
13613
  }
16848 stevensc 13614
 
16825 efrain 13615
  .py-xl-3 {
13616
    padding-top: 1rem !important;
13617
    padding-bottom: 1rem !important;
13618
  }
16848 stevensc 13619
 
16825 efrain 13620
  .py-xl-4 {
13621
    padding-top: 1.5rem !important;
13622
    padding-bottom: 1.5rem !important;
13623
  }
16848 stevensc 13624
 
16825 efrain 13625
  .py-xl-5 {
13626
    padding-top: 3rem !important;
13627
    padding-bottom: 3rem !important;
13628
  }
16848 stevensc 13629
 
16825 efrain 13630
  .py-xl-6 {
13631
    padding-top: 4.5rem !important;
13632
    padding-bottom: 4.5rem !important;
13633
  }
16848 stevensc 13634
 
16825 efrain 13635
  .py-xl-7 {
13636
    padding-top: 6rem !important;
13637
    padding-bottom: 6rem !important;
13638
  }
16848 stevensc 13639
 
16825 efrain 13640
  .pt-xl-0 {
13641
    padding-top: 0 !important;
13642
  }
16848 stevensc 13643
 
16825 efrain 13644
  .pt-xl-1 {
13645
    padding-top: 0.25rem !important;
13646
  }
16848 stevensc 13647
 
16825 efrain 13648
  .pt-xl-2 {
13649
    padding-top: 0.5rem !important;
13650
  }
16848 stevensc 13651
 
16825 efrain 13652
  .pt-xl-3 {
13653
    padding-top: 1rem !important;
13654
  }
16848 stevensc 13655
 
16825 efrain 13656
  .pt-xl-4 {
13657
    padding-top: 1.5rem !important;
13658
  }
16848 stevensc 13659
 
16825 efrain 13660
  .pt-xl-5 {
13661
    padding-top: 3rem !important;
13662
  }
16848 stevensc 13663
 
16825 efrain 13664
  .pt-xl-6 {
13665
    padding-top: 4.5rem !important;
13666
  }
16848 stevensc 13667
 
16825 efrain 13668
  .pt-xl-7 {
13669
    padding-top: 6rem !important;
13670
  }
16848 stevensc 13671
 
16825 efrain 13672
  .pe-xl-0 {
13673
    padding-right: 0 !important;
13674
  }
16848 stevensc 13675
 
16825 efrain 13676
  .pe-xl-1 {
13677
    padding-right: 0.25rem !important;
13678
  }
16848 stevensc 13679
 
16825 efrain 13680
  .pe-xl-2 {
13681
    padding-right: 0.5rem !important;
13682
  }
16848 stevensc 13683
 
16825 efrain 13684
  .pe-xl-3 {
13685
    padding-right: 1rem !important;
13686
  }
16848 stevensc 13687
 
16825 efrain 13688
  .pe-xl-4 {
13689
    padding-right: 1.5rem !important;
13690
  }
16848 stevensc 13691
 
16825 efrain 13692
  .pe-xl-5 {
13693
    padding-right: 3rem !important;
13694
  }
16848 stevensc 13695
 
16825 efrain 13696
  .pe-xl-6 {
13697
    padding-right: 4.5rem !important;
13698
  }
16848 stevensc 13699
 
16825 efrain 13700
  .pe-xl-7 {
13701
    padding-right: 6rem !important;
13702
  }
16848 stevensc 13703
 
16825 efrain 13704
  .pb-xl-0 {
13705
    padding-bottom: 0 !important;
13706
  }
16848 stevensc 13707
 
16825 efrain 13708
  .pb-xl-1 {
13709
    padding-bottom: 0.25rem !important;
13710
  }
16848 stevensc 13711
 
16825 efrain 13712
  .pb-xl-2 {
13713
    padding-bottom: 0.5rem !important;
13714
  }
16848 stevensc 13715
 
16825 efrain 13716
  .pb-xl-3 {
13717
    padding-bottom: 1rem !important;
13718
  }
16848 stevensc 13719
 
16825 efrain 13720
  .pb-xl-4 {
13721
    padding-bottom: 1.5rem !important;
13722
  }
16848 stevensc 13723
 
16825 efrain 13724
  .pb-xl-5 {
13725
    padding-bottom: 3rem !important;
13726
  }
16848 stevensc 13727
 
16825 efrain 13728
  .pb-xl-6 {
13729
    padding-bottom: 4.5rem !important;
13730
  }
16848 stevensc 13731
 
16825 efrain 13732
  .pb-xl-7 {
13733
    padding-bottom: 6rem !important;
13734
  }
16848 stevensc 13735
 
16825 efrain 13736
  .ps-xl-0 {
13737
    padding-left: 0 !important;
13738
  }
16848 stevensc 13739
 
16825 efrain 13740
  .ps-xl-1 {
13741
    padding-left: 0.25rem !important;
13742
  }
16848 stevensc 13743
 
16825 efrain 13744
  .ps-xl-2 {
13745
    padding-left: 0.5rem !important;
13746
  }
16848 stevensc 13747
 
16825 efrain 13748
  .ps-xl-3 {
13749
    padding-left: 1rem !important;
13750
  }
16848 stevensc 13751
 
16825 efrain 13752
  .ps-xl-4 {
13753
    padding-left: 1.5rem !important;
13754
  }
16848 stevensc 13755
 
16825 efrain 13756
  .ps-xl-5 {
13757
    padding-left: 3rem !important;
13758
  }
16848 stevensc 13759
 
16825 efrain 13760
  .ps-xl-6 {
13761
    padding-left: 4.5rem !important;
13762
  }
16848 stevensc 13763
 
16825 efrain 13764
  .ps-xl-7 {
13765
    padding-left: 6rem !important;
13766
  }
16848 stevensc 13767
 
16825 efrain 13768
  .gap-xl-0 {
13769
    gap: 0 !important;
13770
  }
16848 stevensc 13771
 
16825 efrain 13772
  .gap-xl-1 {
13773
    gap: 0.25rem !important;
13774
  }
16848 stevensc 13775
 
16825 efrain 13776
  .gap-xl-2 {
13777
    gap: 0.5rem !important;
13778
  }
16848 stevensc 13779
 
16825 efrain 13780
  .gap-xl-3 {
13781
    gap: 1rem !important;
13782
  }
16848 stevensc 13783
 
16825 efrain 13784
  .gap-xl-4 {
13785
    gap: 1.5rem !important;
13786
  }
16848 stevensc 13787
 
16825 efrain 13788
  .gap-xl-5 {
13789
    gap: 3rem !important;
13790
  }
16848 stevensc 13791
 
16825 efrain 13792
  .gap-xl-6 {
13793
    gap: 4.5rem !important;
13794
  }
16848 stevensc 13795
 
16825 efrain 13796
  .gap-xl-7 {
13797
    gap: 6rem !important;
13798
  }
16848 stevensc 13799
 
16825 efrain 13800
  .text-xl-start {
13801
    text-align: left !important;
13802
  }
16848 stevensc 13803
 
16825 efrain 13804
  .text-xl-end {
13805
    text-align: right !important;
13806
  }
16848 stevensc 13807
 
16825 efrain 13808
  .text-xl-center {
13809
    text-align: center !important;
13810
  }
13811
}
16848 stevensc 13812
 
16825 efrain 13813
@media (min-width: 1400px) {
13814
  .float-xxl-start {
13815
    float: left !important;
13816
  }
16848 stevensc 13817
 
16825 efrain 13818
  .float-xxl-end {
13819
    float: right !important;
13820
  }
16848 stevensc 13821
 
16825 efrain 13822
  .float-xxl-none {
13823
    float: none !important;
13824
  }
16848 stevensc 13825
 
16825 efrain 13826
  .d-xxl-inline {
13827
    display: inline !important;
13828
  }
16848 stevensc 13829
 
16825 efrain 13830
  .d-xxl-inline-block {
13831
    display: inline-block !important;
13832
  }
16848 stevensc 13833
 
16825 efrain 13834
  .d-xxl-block {
13835
    display: block !important;
13836
  }
16848 stevensc 13837
 
16825 efrain 13838
  .d-xxl-grid {
13839
    display: grid !important;
13840
  }
16848 stevensc 13841
 
16825 efrain 13842
  .d-xxl-table {
13843
    display: table !important;
13844
  }
16848 stevensc 13845
 
16825 efrain 13846
  .d-xxl-table-row {
13847
    display: table-row !important;
13848
  }
16848 stevensc 13849
 
16825 efrain 13850
  .d-xxl-table-cell {
13851
    display: table-cell !important;
13852
  }
16848 stevensc 13853
 
16825 efrain 13854
  .d-xxl-flex {
13855
    display: flex !important;
13856
  }
16848 stevensc 13857
 
16825 efrain 13858
  .d-xxl-inline-flex {
13859
    display: inline-flex !important;
13860
  }
16848 stevensc 13861
 
16825 efrain 13862
  .d-xxl-none {
13863
    display: none !important;
13864
  }
16848 stevensc 13865
 
16825 efrain 13866
  .border-xxl {
13867
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13868
  }
16848 stevensc 13869
 
16825 efrain 13870
  .border-xxl-0 {
13871
    border: 0 !important;
13872
  }
16848 stevensc 13873
 
16825 efrain 13874
  .border-top-xxl {
13875
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13876
  }
16848 stevensc 13877
 
16825 efrain 13878
  .border-top-xxl-0 {
13879
    border-top: 0 !important;
13880
  }
16848 stevensc 13881
 
16825 efrain 13882
  .border-end-xxl {
13883
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13884
  }
16848 stevensc 13885
 
16825 efrain 13886
  .border-end-xxl-0 {
13887
    border-right: 0 !important;
13888
  }
16848 stevensc 13889
 
16825 efrain 13890
  .border-bottom-xxl {
13891
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13892
  }
16848 stevensc 13893
 
16825 efrain 13894
  .border-bottom-xxl-0 {
13895
    border-bottom: 0 !important;
13896
  }
16848 stevensc 13897
 
16825 efrain 13898
  .border-start-xxl {
13899
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13900
  }
16848 stevensc 13901
 
16825 efrain 13902
  .border-start-xxl-0 {
13903
    border-left: 0 !important;
13904
  }
16848 stevensc 13905
 
16825 efrain 13906
  .flex-xxl-fill {
13907
    flex: 1 1 auto !important;
13908
  }
16848 stevensc 13909
 
16825 efrain 13910
  .flex-xxl-row {
13911
    flex-direction: row !important;
13912
  }
16848 stevensc 13913
 
16825 efrain 13914
  .flex-xxl-column {
13915
    flex-direction: column !important;
13916
  }
16848 stevensc 13917
 
16825 efrain 13918
  .flex-xxl-row-reverse {
13919
    flex-direction: row-reverse !important;
13920
  }
16848 stevensc 13921
 
16825 efrain 13922
  .flex-xxl-column-reverse {
13923
    flex-direction: column-reverse !important;
13924
  }
16848 stevensc 13925
 
16825 efrain 13926
  .flex-xxl-grow-0 {
13927
    flex-grow: 0 !important;
13928
  }
16848 stevensc 13929
 
16825 efrain 13930
  .flex-xxl-grow-1 {
13931
    flex-grow: 1 !important;
13932
  }
16848 stevensc 13933
 
16825 efrain 13934
  .flex-xxl-shrink-0 {
13935
    flex-shrink: 0 !important;
13936
  }
16848 stevensc 13937
 
16825 efrain 13938
  .flex-xxl-shrink-1 {
13939
    flex-shrink: 1 !important;
13940
  }
16848 stevensc 13941
 
16825 efrain 13942
  .flex-xxl-wrap {
13943
    flex-wrap: wrap !important;
13944
  }
16848 stevensc 13945
 
16825 efrain 13946
  .flex-xxl-nowrap {
13947
    flex-wrap: nowrap !important;
13948
  }
16848 stevensc 13949
 
16825 efrain 13950
  .flex-xxl-wrap-reverse {
13951
    flex-wrap: wrap-reverse !important;
13952
  }
16848 stevensc 13953
 
16825 efrain 13954
  .justify-content-xxl-start {
13955
    justify-content: flex-start !important;
13956
  }
16848 stevensc 13957
 
16825 efrain 13958
  .justify-content-xxl-end {
13959
    justify-content: flex-end !important;
13960
  }
16848 stevensc 13961
 
16825 efrain 13962
  .justify-content-xxl-center {
13963
    justify-content: center !important;
13964
  }
16848 stevensc 13965
 
16825 efrain 13966
  .justify-content-xxl-between {
13967
    justify-content: space-between !important;
13968
  }
16848 stevensc 13969
 
16825 efrain 13970
  .justify-content-xxl-around {
13971
    justify-content: space-around !important;
13972
  }
16848 stevensc 13973
 
16825 efrain 13974
  .justify-content-xxl-evenly {
13975
    justify-content: space-evenly !important;
13976
  }
16848 stevensc 13977
 
16825 efrain 13978
  .align-items-xxl-start {
13979
    align-items: flex-start !important;
13980
  }
16848 stevensc 13981
 
16825 efrain 13982
  .align-items-xxl-end {
13983
    align-items: flex-end !important;
13984
  }
16848 stevensc 13985
 
16825 efrain 13986
  .align-items-xxl-center {
13987
    align-items: center !important;
13988
  }
16848 stevensc 13989
 
16825 efrain 13990
  .align-items-xxl-baseline {
13991
    align-items: baseline !important;
13992
  }
16848 stevensc 13993
 
16825 efrain 13994
  .align-items-xxl-stretch {
13995
    align-items: stretch !important;
13996
  }
16848 stevensc 13997
 
16825 efrain 13998
  .align-content-xxl-start {
13999
    align-content: flex-start !important;
14000
  }
16848 stevensc 14001
 
16825 efrain 14002
  .align-content-xxl-end {
14003
    align-content: flex-end !important;
14004
  }
16848 stevensc 14005
 
16825 efrain 14006
  .align-content-xxl-center {
14007
    align-content: center !important;
14008
  }
16848 stevensc 14009
 
16825 efrain 14010
  .align-content-xxl-between {
14011
    align-content: space-between !important;
14012
  }
16848 stevensc 14013
 
16825 efrain 14014
  .align-content-xxl-around {
14015
    align-content: space-around !important;
14016
  }
16848 stevensc 14017
 
16825 efrain 14018
  .align-content-xxl-stretch {
14019
    align-content: stretch !important;
14020
  }
16848 stevensc 14021
 
16825 efrain 14022
  .align-self-xxl-auto {
14023
    align-self: auto !important;
14024
  }
16848 stevensc 14025
 
16825 efrain 14026
  .align-self-xxl-start {
14027
    align-self: flex-start !important;
14028
  }
16848 stevensc 14029
 
16825 efrain 14030
  .align-self-xxl-end {
14031
    align-self: flex-end !important;
14032
  }
16848 stevensc 14033
 
16825 efrain 14034
  .align-self-xxl-center {
14035
    align-self: center !important;
14036
  }
16848 stevensc 14037
 
16825 efrain 14038
  .align-self-xxl-baseline {
14039
    align-self: baseline !important;
14040
  }
16848 stevensc 14041
 
16825 efrain 14042
  .align-self-xxl-stretch {
14043
    align-self: stretch !important;
14044
  }
16848 stevensc 14045
 
16825 efrain 14046
  .order-xxl-first {
14047
    order: -1 !important;
14048
  }
16848 stevensc 14049
 
16825 efrain 14050
  .order-xxl-0 {
14051
    order: 0 !important;
14052
  }
16848 stevensc 14053
 
16825 efrain 14054
  .order-xxl-1 {
14055
    order: 1 !important;
14056
  }
16848 stevensc 14057
 
16825 efrain 14058
  .order-xxl-2 {
14059
    order: 2 !important;
14060
  }
16848 stevensc 14061
 
16825 efrain 14062
  .order-xxl-3 {
14063
    order: 3 !important;
14064
  }
16848 stevensc 14065
 
16825 efrain 14066
  .order-xxl-4 {
14067
    order: 4 !important;
14068
  }
16848 stevensc 14069
 
16825 efrain 14070
  .order-xxl-5 {
14071
    order: 5 !important;
14072
  }
16848 stevensc 14073
 
16825 efrain 14074
  .order-xxl-last {
14075
    order: 6 !important;
14076
  }
16848 stevensc 14077
 
16825 efrain 14078
  .m-xxl-0 {
14079
    margin: 0 !important;
14080
  }
16848 stevensc 14081
 
16825 efrain 14082
  .m-xxl-1 {
14083
    margin: 0.25rem !important;
14084
  }
16848 stevensc 14085
 
16825 efrain 14086
  .m-xxl-2 {
14087
    margin: 0.5rem !important;
14088
  }
16848 stevensc 14089
 
16825 efrain 14090
  .m-xxl-3 {
14091
    margin: 1rem !important;
14092
  }
16848 stevensc 14093
 
16825 efrain 14094
  .m-xxl-4 {
14095
    margin: 1.5rem !important;
14096
  }
16848 stevensc 14097
 
16825 efrain 14098
  .m-xxl-5 {
14099
    margin: 3rem !important;
14100
  }
16848 stevensc 14101
 
16825 efrain 14102
  .m-xxl-6 {
14103
    margin: 4.5rem !important;
14104
  }
16848 stevensc 14105
 
16825 efrain 14106
  .m-xxl-7 {
14107
    margin: 6rem !important;
14108
  }
16848 stevensc 14109
 
16825 efrain 14110
  .m-xxl-auto {
14111
    margin: auto !important;
14112
  }
16848 stevensc 14113
 
16825 efrain 14114
  .mx-xxl-0 {
14115
    margin-right: 0 !important;
14116
    margin-left: 0 !important;
14117
  }
16848 stevensc 14118
 
16825 efrain 14119
  .mx-xxl-1 {
14120
    margin-right: 0.25rem !important;
14121
    margin-left: 0.25rem !important;
14122
  }
16848 stevensc 14123
 
16825 efrain 14124
  .mx-xxl-2 {
14125
    margin-right: 0.5rem !important;
14126
    margin-left: 0.5rem !important;
14127
  }
16848 stevensc 14128
 
16825 efrain 14129
  .mx-xxl-3 {
14130
    margin-right: 1rem !important;
14131
    margin-left: 1rem !important;
14132
  }
16848 stevensc 14133
 
16825 efrain 14134
  .mx-xxl-4 {
14135
    margin-right: 1.5rem !important;
14136
    margin-left: 1.5rem !important;
14137
  }
16848 stevensc 14138
 
16825 efrain 14139
  .mx-xxl-5 {
14140
    margin-right: 3rem !important;
14141
    margin-left: 3rem !important;
14142
  }
16848 stevensc 14143
 
16825 efrain 14144
  .mx-xxl-6 {
14145
    margin-right: 4.5rem !important;
14146
    margin-left: 4.5rem !important;
14147
  }
16848 stevensc 14148
 
16825 efrain 14149
  .mx-xxl-7 {
14150
    margin-right: 6rem !important;
14151
    margin-left: 6rem !important;
14152
  }
16848 stevensc 14153
 
16825 efrain 14154
  .mx-xxl-auto {
14155
    margin-right: auto !important;
14156
    margin-left: auto !important;
14157
  }
16848 stevensc 14158
 
16825 efrain 14159
  .my-xxl-0 {
14160
    margin-top: 0 !important;
14161
    margin-bottom: 0 !important;
14162
  }
16848 stevensc 14163
 
16825 efrain 14164
  .my-xxl-1 {
14165
    margin-top: 0.25rem !important;
14166
    margin-bottom: 0.25rem !important;
14167
  }
16848 stevensc 14168
 
16825 efrain 14169
  .my-xxl-2 {
14170
    margin-top: 0.5rem !important;
14171
    margin-bottom: 0.5rem !important;
14172
  }
16848 stevensc 14173
 
16825 efrain 14174
  .my-xxl-3 {
14175
    margin-top: 1rem !important;
14176
    margin-bottom: 1rem !important;
14177
  }
16848 stevensc 14178
 
16825 efrain 14179
  .my-xxl-4 {
14180
    margin-top: 1.5rem !important;
14181
    margin-bottom: 1.5rem !important;
14182
  }
16848 stevensc 14183
 
16825 efrain 14184
  .my-xxl-5 {
14185
    margin-top: 3rem !important;
14186
    margin-bottom: 3rem !important;
14187
  }
16848 stevensc 14188
 
16825 efrain 14189
  .my-xxl-6 {
14190
    margin-top: 4.5rem !important;
14191
    margin-bottom: 4.5rem !important;
14192
  }
16848 stevensc 14193
 
16825 efrain 14194
  .my-xxl-7 {
14195
    margin-top: 6rem !important;
14196
    margin-bottom: 6rem !important;
14197
  }
16848 stevensc 14198
 
16825 efrain 14199
  .my-xxl-auto {
14200
    margin-top: auto !important;
14201
    margin-bottom: auto !important;
14202
  }
16848 stevensc 14203
 
16825 efrain 14204
  .mt-xxl-0 {
14205
    margin-top: 0 !important;
14206
  }
16848 stevensc 14207
 
16825 efrain 14208
  .mt-xxl-1 {
14209
    margin-top: 0.25rem !important;
14210
  }
16848 stevensc 14211
 
16825 efrain 14212
  .mt-xxl-2 {
14213
    margin-top: 0.5rem !important;
14214
  }
16848 stevensc 14215
 
16825 efrain 14216
  .mt-xxl-3 {
14217
    margin-top: 1rem !important;
14218
  }
16848 stevensc 14219
 
16825 efrain 14220
  .mt-xxl-4 {
14221
    margin-top: 1.5rem !important;
14222
  }
16848 stevensc 14223
 
16825 efrain 14224
  .mt-xxl-5 {
14225
    margin-top: 3rem !important;
14226
  }
16848 stevensc 14227
 
16825 efrain 14228
  .mt-xxl-6 {
14229
    margin-top: 4.5rem !important;
14230
  }
16848 stevensc 14231
 
16825 efrain 14232
  .mt-xxl-7 {
14233
    margin-top: 6rem !important;
14234
  }
16848 stevensc 14235
 
16825 efrain 14236
  .mt-xxl-auto {
14237
    margin-top: auto !important;
14238
  }
16848 stevensc 14239
 
16825 efrain 14240
  .me-xxl-0 {
14241
    margin-right: 0 !important;
14242
  }
16848 stevensc 14243
 
16825 efrain 14244
  .me-xxl-1 {
14245
    margin-right: 0.25rem !important;
14246
  }
16848 stevensc 14247
 
16825 efrain 14248
  .me-xxl-2 {
14249
    margin-right: 0.5rem !important;
14250
  }
16848 stevensc 14251
 
16825 efrain 14252
  .me-xxl-3 {
14253
    margin-right: 1rem !important;
14254
  }
16848 stevensc 14255
 
16825 efrain 14256
  .me-xxl-4 {
14257
    margin-right: 1.5rem !important;
14258
  }
16848 stevensc 14259
 
16825 efrain 14260
  .me-xxl-5 {
14261
    margin-right: 3rem !important;
14262
  }
16848 stevensc 14263
 
16825 efrain 14264
  .me-xxl-6 {
14265
    margin-right: 4.5rem !important;
14266
  }
16848 stevensc 14267
 
16825 efrain 14268
  .me-xxl-7 {
14269
    margin-right: 6rem !important;
14270
  }
16848 stevensc 14271
 
16825 efrain 14272
  .me-xxl-auto {
14273
    margin-right: auto !important;
14274
  }
16848 stevensc 14275
 
16825 efrain 14276
  .mb-xxl-0 {
14277
    margin-bottom: 0 !important;
14278
  }
16848 stevensc 14279
 
16825 efrain 14280
  .mb-xxl-1 {
14281
    margin-bottom: 0.25rem !important;
14282
  }
16848 stevensc 14283
 
16825 efrain 14284
  .mb-xxl-2 {
14285
    margin-bottom: 0.5rem !important;
14286
  }
16848 stevensc 14287
 
16825 efrain 14288
  .mb-xxl-3 {
14289
    margin-bottom: 1rem !important;
14290
  }
16848 stevensc 14291
 
16825 efrain 14292
  .mb-xxl-4 {
14293
    margin-bottom: 1.5rem !important;
14294
  }
16848 stevensc 14295
 
16825 efrain 14296
  .mb-xxl-5 {
14297
    margin-bottom: 3rem !important;
14298
  }
16848 stevensc 14299
 
16825 efrain 14300
  .mb-xxl-6 {
14301
    margin-bottom: 4.5rem !important;
14302
  }
16848 stevensc 14303
 
16825 efrain 14304
  .mb-xxl-7 {
14305
    margin-bottom: 6rem !important;
14306
  }
16848 stevensc 14307
 
16825 efrain 14308
  .mb-xxl-auto {
14309
    margin-bottom: auto !important;
14310
  }
16848 stevensc 14311
 
16825 efrain 14312
  .ms-xxl-0 {
14313
    margin-left: 0 !important;
14314
  }
16848 stevensc 14315
 
16825 efrain 14316
  .ms-xxl-1 {
14317
    margin-left: 0.25rem !important;
14318
  }
16848 stevensc 14319
 
16825 efrain 14320
  .ms-xxl-2 {
14321
    margin-left: 0.5rem !important;
14322
  }
16848 stevensc 14323
 
16825 efrain 14324
  .ms-xxl-3 {
14325
    margin-left: 1rem !important;
14326
  }
16848 stevensc 14327
 
16825 efrain 14328
  .ms-xxl-4 {
14329
    margin-left: 1.5rem !important;
14330
  }
16848 stevensc 14331
 
16825 efrain 14332
  .ms-xxl-5 {
14333
    margin-left: 3rem !important;
14334
  }
16848 stevensc 14335
 
16825 efrain 14336
  .ms-xxl-6 {
14337
    margin-left: 4.5rem !important;
14338
  }
16848 stevensc 14339
 
16825 efrain 14340
  .ms-xxl-7 {
14341
    margin-left: 6rem !important;
14342
  }
16848 stevensc 14343
 
16825 efrain 14344
  .ms-xxl-auto {
14345
    margin-left: auto !important;
14346
  }
16848 stevensc 14347
 
16825 efrain 14348
  .m-xxl-n1 {
14349
    margin: -0.25rem !important;
14350
  }
16848 stevensc 14351
 
16825 efrain 14352
  .m-xxl-n2 {
14353
    margin: -0.5rem !important;
14354
  }
16848 stevensc 14355
 
16825 efrain 14356
  .m-xxl-n3 {
14357
    margin: -1rem !important;
14358
  }
16848 stevensc 14359
 
16825 efrain 14360
  .m-xxl-n4 {
14361
    margin: -1.5rem !important;
14362
  }
16848 stevensc 14363
 
16825 efrain 14364
  .m-xxl-n5 {
14365
    margin: -3rem !important;
14366
  }
16848 stevensc 14367
 
16825 efrain 14368
  .m-xxl-n6 {
14369
    margin: -4.5rem !important;
14370
  }
16848 stevensc 14371
 
16825 efrain 14372
  .m-xxl-n7 {
14373
    margin: -6rem !important;
14374
  }
16848 stevensc 14375
 
16825 efrain 14376
  .mx-xxl-n1 {
14377
    margin-right: -0.25rem !important;
14378
    margin-left: -0.25rem !important;
14379
  }
16848 stevensc 14380
 
16825 efrain 14381
  .mx-xxl-n2 {
14382
    margin-right: -0.5rem !important;
14383
    margin-left: -0.5rem !important;
14384
  }
16848 stevensc 14385
 
16825 efrain 14386
  .mx-xxl-n3 {
14387
    margin-right: -1rem !important;
14388
    margin-left: -1rem !important;
14389
  }
16848 stevensc 14390
 
16825 efrain 14391
  .mx-xxl-n4 {
14392
    margin-right: -1.5rem !important;
14393
    margin-left: -1.5rem !important;
14394
  }
16848 stevensc 14395
 
16825 efrain 14396
  .mx-xxl-n5 {
14397
    margin-right: -3rem !important;
14398
    margin-left: -3rem !important;
14399
  }
16848 stevensc 14400
 
16825 efrain 14401
  .mx-xxl-n6 {
14402
    margin-right: -4.5rem !important;
14403
    margin-left: -4.5rem !important;
14404
  }
16848 stevensc 14405
 
16825 efrain 14406
  .mx-xxl-n7 {
14407
    margin-right: -6rem !important;
14408
    margin-left: -6rem !important;
14409
  }
16848 stevensc 14410
 
16825 efrain 14411
  .my-xxl-n1 {
14412
    margin-top: -0.25rem !important;
14413
    margin-bottom: -0.25rem !important;
14414
  }
16848 stevensc 14415
 
16825 efrain 14416
  .my-xxl-n2 {
14417
    margin-top: -0.5rem !important;
14418
    margin-bottom: -0.5rem !important;
14419
  }
16848 stevensc 14420
 
16825 efrain 14421
  .my-xxl-n3 {
14422
    margin-top: -1rem !important;
14423
    margin-bottom: -1rem !important;
14424
  }
16848 stevensc 14425
 
16825 efrain 14426
  .my-xxl-n4 {
14427
    margin-top: -1.5rem !important;
14428
    margin-bottom: -1.5rem !important;
14429
  }
16848 stevensc 14430
 
16825 efrain 14431
  .my-xxl-n5 {
14432
    margin-top: -3rem !important;
14433
    margin-bottom: -3rem !important;
14434
  }
16848 stevensc 14435
 
16825 efrain 14436
  .my-xxl-n6 {
14437
    margin-top: -4.5rem !important;
14438
    margin-bottom: -4.5rem !important;
14439
  }
16848 stevensc 14440
 
16825 efrain 14441
  .my-xxl-n7 {
14442
    margin-top: -6rem !important;
14443
    margin-bottom: -6rem !important;
14444
  }
16848 stevensc 14445
 
16825 efrain 14446
  .mt-xxl-n1 {
14447
    margin-top: -0.25rem !important;
14448
  }
16848 stevensc 14449
 
16825 efrain 14450
  .mt-xxl-n2 {
14451
    margin-top: -0.5rem !important;
14452
  }
16848 stevensc 14453
 
16825 efrain 14454
  .mt-xxl-n3 {
14455
    margin-top: -1rem !important;
14456
  }
16848 stevensc 14457
 
16825 efrain 14458
  .mt-xxl-n4 {
14459
    margin-top: -1.5rem !important;
14460
  }
16848 stevensc 14461
 
16825 efrain 14462
  .mt-xxl-n5 {
14463
    margin-top: -3rem !important;
14464
  }
16848 stevensc 14465
 
16825 efrain 14466
  .mt-xxl-n6 {
14467
    margin-top: -4.5rem !important;
14468
  }
16848 stevensc 14469
 
16825 efrain 14470
  .mt-xxl-n7 {
14471
    margin-top: -6rem !important;
14472
  }
16848 stevensc 14473
 
16825 efrain 14474
  .me-xxl-n1 {
14475
    margin-right: -0.25rem !important;
14476
  }
16848 stevensc 14477
 
16825 efrain 14478
  .me-xxl-n2 {
14479
    margin-right: -0.5rem !important;
14480
  }
16848 stevensc 14481
 
16825 efrain 14482
  .me-xxl-n3 {
14483
    margin-right: -1rem !important;
14484
  }
16848 stevensc 14485
 
16825 efrain 14486
  .me-xxl-n4 {
14487
    margin-right: -1.5rem !important;
14488
  }
16848 stevensc 14489
 
16825 efrain 14490
  .me-xxl-n5 {
14491
    margin-right: -3rem !important;
14492
  }
16848 stevensc 14493
 
16825 efrain 14494
  .me-xxl-n6 {
14495
    margin-right: -4.5rem !important;
14496
  }
16848 stevensc 14497
 
16825 efrain 14498
  .me-xxl-n7 {
14499
    margin-right: -6rem !important;
14500
  }
16848 stevensc 14501
 
16825 efrain 14502
  .mb-xxl-n1 {
14503
    margin-bottom: -0.25rem !important;
14504
  }
16848 stevensc 14505
 
16825 efrain 14506
  .mb-xxl-n2 {
14507
    margin-bottom: -0.5rem !important;
14508
  }
16848 stevensc 14509
 
16825 efrain 14510
  .mb-xxl-n3 {
14511
    margin-bottom: -1rem !important;
14512
  }
16848 stevensc 14513
 
16825 efrain 14514
  .mb-xxl-n4 {
14515
    margin-bottom: -1.5rem !important;
14516
  }
16848 stevensc 14517
 
16825 efrain 14518
  .mb-xxl-n5 {
14519
    margin-bottom: -3rem !important;
14520
  }
16848 stevensc 14521
 
16825 efrain 14522
  .mb-xxl-n6 {
14523
    margin-bottom: -4.5rem !important;
14524
  }
16848 stevensc 14525
 
16825 efrain 14526
  .mb-xxl-n7 {
14527
    margin-bottom: -6rem !important;
14528
  }
16848 stevensc 14529
 
16825 efrain 14530
  .ms-xxl-n1 {
14531
    margin-left: -0.25rem !important;
14532
  }
16848 stevensc 14533
 
16825 efrain 14534
  .ms-xxl-n2 {
14535
    margin-left: -0.5rem !important;
14536
  }
16848 stevensc 14537
 
16825 efrain 14538
  .ms-xxl-n3 {
14539
    margin-left: -1rem !important;
14540
  }
16848 stevensc 14541
 
16825 efrain 14542
  .ms-xxl-n4 {
14543
    margin-left: -1.5rem !important;
14544
  }
16848 stevensc 14545
 
16825 efrain 14546
  .ms-xxl-n5 {
14547
    margin-left: -3rem !important;
14548
  }
16848 stevensc 14549
 
16825 efrain 14550
  .ms-xxl-n6 {
14551
    margin-left: -4.5rem !important;
14552
  }
16848 stevensc 14553
 
16825 efrain 14554
  .ms-xxl-n7 {
14555
    margin-left: -6rem !important;
14556
  }
16848 stevensc 14557
 
16825 efrain 14558
  .p-xxl-0 {
14559
    padding: 0 !important;
14560
  }
16848 stevensc 14561
 
16825 efrain 14562
  .p-xxl-1 {
14563
    padding: 0.25rem !important;
14564
  }
16848 stevensc 14565
 
16825 efrain 14566
  .p-xxl-2 {
14567
    padding: 0.5rem !important;
14568
  }
16848 stevensc 14569
 
16825 efrain 14570
  .p-xxl-3 {
14571
    padding: 1rem !important;
14572
  }
16848 stevensc 14573
 
16825 efrain 14574
  .p-xxl-4 {
14575
    padding: 1.5rem !important;
14576
  }
16848 stevensc 14577
 
16825 efrain 14578
  .p-xxl-5 {
14579
    padding: 3rem !important;
14580
  }
16848 stevensc 14581
 
16825 efrain 14582
  .p-xxl-6 {
14583
    padding: 4.5rem !important;
14584
  }
16848 stevensc 14585
 
16825 efrain 14586
  .p-xxl-7 {
14587
    padding: 6rem !important;
14588
  }
16848 stevensc 14589
 
16825 efrain 14590
  .px-xxl-0 {
14591
    padding-right: 0 !important;
14592
    padding-left: 0 !important;
14593
  }
16848 stevensc 14594
 
16825 efrain 14595
  .px-xxl-1 {
14596
    padding-right: 0.25rem !important;
14597
    padding-left: 0.25rem !important;
14598
  }
16848 stevensc 14599
 
16825 efrain 14600
  .px-xxl-2 {
14601
    padding-right: 0.5rem !important;
14602
    padding-left: 0.5rem !important;
14603
  }
16848 stevensc 14604
 
16825 efrain 14605
  .px-xxl-3 {
14606
    padding-right: 1rem !important;
14607
    padding-left: 1rem !important;
14608
  }
16848 stevensc 14609
 
16825 efrain 14610
  .px-xxl-4 {
14611
    padding-right: 1.5rem !important;
14612
    padding-left: 1.5rem !important;
14613
  }
16848 stevensc 14614
 
16825 efrain 14615
  .px-xxl-5 {
14616
    padding-right: 3rem !important;
14617
    padding-left: 3rem !important;
14618
  }
16848 stevensc 14619
 
16825 efrain 14620
  .px-xxl-6 {
14621
    padding-right: 4.5rem !important;
14622
    padding-left: 4.5rem !important;
14623
  }
16848 stevensc 14624
 
16825 efrain 14625
  .px-xxl-7 {
14626
    padding-right: 6rem !important;
14627
    padding-left: 6rem !important;
14628
  }
16848 stevensc 14629
 
16825 efrain 14630
  .py-xxl-0 {
14631
    padding-top: 0 !important;
14632
    padding-bottom: 0 !important;
14633
  }
16848 stevensc 14634
 
16825 efrain 14635
  .py-xxl-1 {
14636
    padding-top: 0.25rem !important;
14637
    padding-bottom: 0.25rem !important;
14638
  }
16848 stevensc 14639
 
16825 efrain 14640
  .py-xxl-2 {
14641
    padding-top: 0.5rem !important;
14642
    padding-bottom: 0.5rem !important;
14643
  }
16848 stevensc 14644
 
16825 efrain 14645
  .py-xxl-3 {
14646
    padding-top: 1rem !important;
14647
    padding-bottom: 1rem !important;
14648
  }
16848 stevensc 14649
 
16825 efrain 14650
  .py-xxl-4 {
14651
    padding-top: 1.5rem !important;
14652
    padding-bottom: 1.5rem !important;
14653
  }
16848 stevensc 14654
 
16825 efrain 14655
  .py-xxl-5 {
14656
    padding-top: 3rem !important;
14657
    padding-bottom: 3rem !important;
14658
  }
16848 stevensc 14659
 
16825 efrain 14660
  .py-xxl-6 {
14661
    padding-top: 4.5rem !important;
14662
    padding-bottom: 4.5rem !important;
14663
  }
16848 stevensc 14664
 
16825 efrain 14665
  .py-xxl-7 {
14666
    padding-top: 6rem !important;
14667
    padding-bottom: 6rem !important;
14668
  }
16848 stevensc 14669
 
16825 efrain 14670
  .pt-xxl-0 {
14671
    padding-top: 0 !important;
14672
  }
16848 stevensc 14673
 
16825 efrain 14674
  .pt-xxl-1 {
14675
    padding-top: 0.25rem !important;
14676
  }
16848 stevensc 14677
 
16825 efrain 14678
  .pt-xxl-2 {
14679
    padding-top: 0.5rem !important;
14680
  }
16848 stevensc 14681
 
16825 efrain 14682
  .pt-xxl-3 {
14683
    padding-top: 1rem !important;
14684
  }
16848 stevensc 14685
 
16825 efrain 14686
  .pt-xxl-4 {
14687
    padding-top: 1.5rem !important;
14688
  }
16848 stevensc 14689
 
16825 efrain 14690
  .pt-xxl-5 {
14691
    padding-top: 3rem !important;
14692
  }
16848 stevensc 14693
 
16825 efrain 14694
  .pt-xxl-6 {
14695
    padding-top: 4.5rem !important;
14696
  }
16848 stevensc 14697
 
16825 efrain 14698
  .pt-xxl-7 {
14699
    padding-top: 6rem !important;
14700
  }
16848 stevensc 14701
 
16825 efrain 14702
  .pe-xxl-0 {
14703
    padding-right: 0 !important;
14704
  }
16848 stevensc 14705
 
16825 efrain 14706
  .pe-xxl-1 {
14707
    padding-right: 0.25rem !important;
14708
  }
16848 stevensc 14709
 
16825 efrain 14710
  .pe-xxl-2 {
14711
    padding-right: 0.5rem !important;
14712
  }
16848 stevensc 14713
 
16825 efrain 14714
  .pe-xxl-3 {
14715
    padding-right: 1rem !important;
14716
  }
16848 stevensc 14717
 
16825 efrain 14718
  .pe-xxl-4 {
14719
    padding-right: 1.5rem !important;
14720
  }
16848 stevensc 14721
 
16825 efrain 14722
  .pe-xxl-5 {
14723
    padding-right: 3rem !important;
14724
  }
16848 stevensc 14725
 
16825 efrain 14726
  .pe-xxl-6 {
14727
    padding-right: 4.5rem !important;
14728
  }
16848 stevensc 14729
 
16825 efrain 14730
  .pe-xxl-7 {
14731
    padding-right: 6rem !important;
14732
  }
16848 stevensc 14733
 
16825 efrain 14734
  .pb-xxl-0 {
14735
    padding-bottom: 0 !important;
14736
  }
16848 stevensc 14737
 
16825 efrain 14738
  .pb-xxl-1 {
14739
    padding-bottom: 0.25rem !important;
14740
  }
16848 stevensc 14741
 
16825 efrain 14742
  .pb-xxl-2 {
14743
    padding-bottom: 0.5rem !important;
14744
  }
16848 stevensc 14745
 
16825 efrain 14746
  .pb-xxl-3 {
14747
    padding-bottom: 1rem !important;
14748
  }
16848 stevensc 14749
 
16825 efrain 14750
  .pb-xxl-4 {
14751
    padding-bottom: 1.5rem !important;
14752
  }
16848 stevensc 14753
 
16825 efrain 14754
  .pb-xxl-5 {
14755
    padding-bottom: 3rem !important;
14756
  }
16848 stevensc 14757
 
16825 efrain 14758
  .pb-xxl-6 {
14759
    padding-bottom: 4.5rem !important;
14760
  }
16848 stevensc 14761
 
16825 efrain 14762
  .pb-xxl-7 {
14763
    padding-bottom: 6rem !important;
14764
  }
16848 stevensc 14765
 
16825 efrain 14766
  .ps-xxl-0 {
14767
    padding-left: 0 !important;
14768
  }
16848 stevensc 14769
 
16825 efrain 14770
  .ps-xxl-1 {
14771
    padding-left: 0.25rem !important;
14772
  }
16848 stevensc 14773
 
16825 efrain 14774
  .ps-xxl-2 {
14775
    padding-left: 0.5rem !important;
14776
  }
16848 stevensc 14777
 
16825 efrain 14778
  .ps-xxl-3 {
14779
    padding-left: 1rem !important;
14780
  }
16848 stevensc 14781
 
16825 efrain 14782
  .ps-xxl-4 {
14783
    padding-left: 1.5rem !important;
14784
  }
16848 stevensc 14785
 
16825 efrain 14786
  .ps-xxl-5 {
14787
    padding-left: 3rem !important;
14788
  }
16848 stevensc 14789
 
16825 efrain 14790
  .ps-xxl-6 {
14791
    padding-left: 4.5rem !important;
14792
  }
16848 stevensc 14793
 
16825 efrain 14794
  .ps-xxl-7 {
14795
    padding-left: 6rem !important;
14796
  }
16848 stevensc 14797
 
16825 efrain 14798
  .gap-xxl-0 {
14799
    gap: 0 !important;
14800
  }
16848 stevensc 14801
 
16825 efrain 14802
  .gap-xxl-1 {
14803
    gap: 0.25rem !important;
14804
  }
16848 stevensc 14805
 
16825 efrain 14806
  .gap-xxl-2 {
14807
    gap: 0.5rem !important;
14808
  }
16848 stevensc 14809
 
16825 efrain 14810
  .gap-xxl-3 {
14811
    gap: 1rem !important;
14812
  }
16848 stevensc 14813
 
16825 efrain 14814
  .gap-xxl-4 {
14815
    gap: 1.5rem !important;
14816
  }
16848 stevensc 14817
 
16825 efrain 14818
  .gap-xxl-5 {
14819
    gap: 3rem !important;
14820
  }
16848 stevensc 14821
 
16825 efrain 14822
  .gap-xxl-6 {
14823
    gap: 4.5rem !important;
14824
  }
16848 stevensc 14825
 
16825 efrain 14826
  .gap-xxl-7 {
14827
    gap: 6rem !important;
14828
  }
16848 stevensc 14829
 
16825 efrain 14830
  .text-xxl-start {
14831
    text-align: left !important;
14832
  }
16848 stevensc 14833
 
16825 efrain 14834
  .text-xxl-end {
14835
    text-align: right !important;
14836
  }
16848 stevensc 14837
 
16825 efrain 14838
  .text-xxl-center {
14839
    text-align: center !important;
14840
  }
14841
}
16848 stevensc 14842
 
16825 efrain 14843
@media (min-width: 1200px) {
14844
  .fs-1 {
14845
    font-size: 2.5rem !important;
14846
  }
16848 stevensc 14847
 
16825 efrain 14848
  .fs-2 {
14849
    font-size: 2rem !important;
14850
  }
16848 stevensc 14851
 
16825 efrain 14852
  .fs-3 {
14853
    font-size: 1.5rem !important;
14854
  }
14855
}
16848 stevensc 14856
 
16825 efrain 14857
@media print {
14858
  .d-print-inline {
14859
    display: inline !important;
14860
  }
16848 stevensc 14861
 
16825 efrain 14862
  .d-print-inline-block {
14863
    display: inline-block !important;
14864
  }
16848 stevensc 14865
 
16825 efrain 14866
  .d-print-block {
14867
    display: block !important;
14868
  }
16848 stevensc 14869
 
16825 efrain 14870
  .d-print-grid {
14871
    display: grid !important;
14872
  }
16848 stevensc 14873
 
16825 efrain 14874
  .d-print-table {
14875
    display: table !important;
14876
  }
16848 stevensc 14877
 
16825 efrain 14878
  .d-print-table-row {
14879
    display: table-row !important;
14880
  }
16848 stevensc 14881
 
16825 efrain 14882
  .d-print-table-cell {
14883
    display: table-cell !important;
14884
  }
16848 stevensc 14885
 
16825 efrain 14886
  .d-print-flex {
14887
    display: flex !important;
14888
  }
16848 stevensc 14889
 
16825 efrain 14890
  .d-print-inline-flex {
14891
    display: inline-flex !important;
14892
  }
16848 stevensc 14893
 
16825 efrain 14894
  .d-print-none {
14895
    display: none !important;
14896
  }
14897
}
16848 stevensc 14898
 
16825 efrain 14899
@keyframes dropdownAnimation {
14900
  from {
14901
    opacity: 0;
14902
    transform: translate3d(0, 20px, 0);
14903
  }
16848 stevensc 14904
 
16825 efrain 14905
  to {
14906
    opacity: 1;
14907
    transform: none;
14908
    transform: translate3d(0, 0px, 0);
14909
  }
14910
}
16848 stevensc 14911
 
14912
.dropdownAnimation,
14913
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14914
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14915
  -webkit-animation-name: dropdownAnimation;
14916
  animation-name: dropdownAnimation;
14917
  -webkit-animation-duration: 0.2s;
14918
  animation-duration: 0.2s;
14919
  -webkit-animation-fill-mode: both;
14920
  animation-fill-mode: both;
14921
}
14922
 
14923
@keyframes fadeOut {
14924
  from {
14925
    opacity: 1;
14926
  }
16848 stevensc 14927
 
16825 efrain 14928
  to {
14929
    opacity: 0;
14930
  }
14931
}
16848 stevensc 14932
 
16825 efrain 14933
.fadeOut {
14934
  animation-name: fadeOUt;
14935
}
14936
 
14937
@keyframes fadeInUp {
14938
  from {
14939
    opacity: 0;
14940
    transform: translate3d(0, 100%, 0);
14941
  }
16848 stevensc 14942
 
16825 efrain 14943
  to {
14944
    opacity: 1;
14945
    transform: none;
14946
  }
14947
}
16848 stevensc 14948
 
16825 efrain 14949
.fadeInUp {
14950
  animation-name: fadeInUp;
14951
}
14952
 
16848 stevensc 14953
.infinite-spin,
14954
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14955
  animation-name: spin;
14956
  animation-duration: 3s;
14957
  animation-iteration-count: infinite;
14958
  animation-timing-function: linear;
14959
}
16848 stevensc 14960
 
16825 efrain 14961
@keyframes spin {
14962
  from {
14963
    transform: rotate(0deg);
14964
  }
16848 stevensc 14965
 
16825 efrain 14966
  to {
14967
    transform: rotate(360deg);
14968
  }
14969
}
14970
 
16848 stevensc 14971
.pulse,
14972
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14973
  animation-name: pulse;
14974
  animation-duration: 0.9s;
14975
  animation-iteration-count: infinite;
14976
  animation-timing-function: ease-out;
14977
}
16848 stevensc 14978
 
16825 efrain 14979
@keyframes pulse {
14980
  0% {
14981
    opacity: 1;
14982
    width: 7px;
14983
    height: 7px;
14984
    left: 0;
14985
    top: 0;
14986
  }
16848 stevensc 14987
 
16825 efrain 14988
  95% {
14989
    opacity: 0.1;
14990
    left: -10.5px;
14991
    top: -10.5px;
14992
    width: 28px;
14993
    height: 28px;
14994
  }
16848 stevensc 14995
 
16825 efrain 14996
  100% {
14997
    opacity: 0;
14998
    width: 7px;
14999
    height: 7px;
15000
    left: 0;
15001
    top: 0;
15002
  }
15003
}
15004
 
15005
.wd-5 {
15006
  width: 5px;
15007
}
15008
 
15009
.wd-5p {
15010
  width: 5%;
15011
}
15012
 
15013
.mx-wd-5p {
15014
  max-width: 5%;
15015
}
15016
 
15017
.mn-wd-5p {
15018
  min-width: 5%;
15019
}
15020
 
15021
.wd-5-f {
15022
  width: 5px !important;
15023
}
15024
 
15025
.wd-5p-f {
15026
  width: 5% !important;
15027
}
15028
 
15029
.mx-wd-5p-f {
15030
  max-width: 5% !important;
15031
}
15032
 
15033
.mn-wd-5p-f {
15034
  min-width: 5% !important;
15035
}
15036
 
15037
.wd-10 {
15038
  width: 10px;
15039
}
15040
 
15041
.wd-10p {
15042
  width: 10%;
15043
}
15044
 
15045
.mx-wd-10p {
15046
  max-width: 10%;
15047
}
15048
 
15049
.mn-wd-10p {
15050
  min-width: 10%;
15051
}
15052
 
15053
.wd-10-f {
15054
  width: 10px !important;
15055
}
15056
 
15057
.wd-10p-f {
15058
  width: 10% !important;
15059
}
15060
 
15061
.mx-wd-10p-f {
15062
  max-width: 10% !important;
15063
}
15064
 
15065
.mn-wd-10p-f {
15066
  min-width: 10% !important;
15067
}
15068
 
15069
.wd-15 {
15070
  width: 15px;
15071
}
15072
 
15073
.wd-15p {
15074
  width: 15%;
15075
}
15076
 
15077
.mx-wd-15p {
15078
  max-width: 15%;
15079
}
15080
 
15081
.mn-wd-15p {
15082
  min-width: 15%;
15083
}
15084
 
15085
.wd-15-f {
15086
  width: 15px !important;
15087
}
15088
 
15089
.wd-15p-f {
15090
  width: 15% !important;
15091
}
15092
 
15093
.mx-wd-15p-f {
15094
  max-width: 15% !important;
15095
}
15096
 
15097
.mn-wd-15p-f {
15098
  min-width: 15% !important;
15099
}
15100
 
15101
.wd-20 {
15102
  width: 20px;
15103
}
15104
 
15105
.wd-20p {
15106
  width: 20%;
15107
}
15108
 
15109
.mx-wd-20p {
15110
  max-width: 20%;
15111
}
15112
 
15113
.mn-wd-20p {
15114
  min-width: 20%;
15115
}
15116
 
15117
.wd-20-f {
15118
  width: 20px !important;
15119
}
15120
 
15121
.wd-20p-f {
15122
  width: 20% !important;
15123
}
15124
 
15125
.mx-wd-20p-f {
15126
  max-width: 20% !important;
15127
}
15128
 
15129
.mn-wd-20p-f {
15130
  min-width: 20% !important;
15131
}
15132
 
15133
.wd-25 {
15134
  width: 25px;
15135
}
15136
 
15137
.wd-25p {
15138
  width: 25%;
15139
}
15140
 
15141
.mx-wd-25p {
15142
  max-width: 25%;
15143
}
15144
 
15145
.mn-wd-25p {
15146
  min-width: 25%;
15147
}
15148
 
15149
.wd-25-f {
15150
  width: 25px !important;
15151
}
15152
 
15153
.wd-25p-f {
15154
  width: 25% !important;
15155
}
15156
 
15157
.mx-wd-25p-f {
15158
  max-width: 25% !important;
15159
}
15160
 
15161
.mn-wd-25p-f {
15162
  min-width: 25% !important;
15163
}
15164
 
15165
.wd-30 {
15166
  width: 30px;
15167
}
15168
 
15169
.wd-30p {
15170
  width: 30%;
15171
}
15172
 
15173
.mx-wd-30p {
15174
  max-width: 30%;
15175
}
15176
 
15177
.mn-wd-30p {
15178
  min-width: 30%;
15179
}
15180
 
15181
.wd-30-f {
15182
  width: 30px !important;
15183
}
15184
 
15185
.wd-30p-f {
15186
  width: 30% !important;
15187
}
15188
 
15189
.mx-wd-30p-f {
15190
  max-width: 30% !important;
15191
}
15192
 
15193
.mn-wd-30p-f {
15194
  min-width: 30% !important;
15195
}
15196
 
15197
.wd-35 {
15198
  width: 35px;
15199
}
15200
 
15201
.wd-35p {
15202
  width: 35%;
15203
}
15204
 
15205
.mx-wd-35p {
15206
  max-width: 35%;
15207
}
15208
 
15209
.mn-wd-35p {
15210
  min-width: 35%;
15211
}
15212
 
15213
.wd-35-f {
15214
  width: 35px !important;
15215
}
15216
 
15217
.wd-35p-f {
15218
  width: 35% !important;
15219
}
15220
 
15221
.mx-wd-35p-f {
15222
  max-width: 35% !important;
15223
}
15224
 
15225
.mn-wd-35p-f {
15226
  min-width: 35% !important;
15227
}
15228
 
15229
.wd-40 {
15230
  width: 40px;
15231
}
15232
 
15233
.wd-40p {
15234
  width: 40%;
15235
}
15236
 
15237
.mx-wd-40p {
15238
  max-width: 40%;
15239
}
15240
 
15241
.mn-wd-40p {
15242
  min-width: 40%;
15243
}
15244
 
15245
.wd-40-f {
15246
  width: 40px !important;
15247
}
15248
 
15249
.wd-40p-f {
15250
  width: 40% !important;
15251
}
15252
 
15253
.mx-wd-40p-f {
15254
  max-width: 40% !important;
15255
}
15256
 
15257
.mn-wd-40p-f {
15258
  min-width: 40% !important;
15259
}
15260
 
15261
.wd-45 {
15262
  width: 45px;
15263
}
15264
 
15265
.wd-45p {
15266
  width: 45%;
15267
}
15268
 
15269
.mx-wd-45p {
15270
  max-width: 45%;
15271
}
15272
 
15273
.mn-wd-45p {
15274
  min-width: 45%;
15275
}
15276
 
15277
.wd-45-f {
15278
  width: 45px !important;
15279
}
15280
 
15281
.wd-45p-f {
15282
  width: 45% !important;
15283
}
15284
 
15285
.mx-wd-45p-f {
15286
  max-width: 45% !important;
15287
}
15288
 
15289
.mn-wd-45p-f {
15290
  min-width: 45% !important;
15291
}
15292
 
15293
.wd-50 {
15294
  width: 50px;
15295
}
15296
 
15297
.wd-50p {
15298
  width: 50%;
15299
}
15300
 
15301
.mx-wd-50p {
15302
  max-width: 50%;
15303
}
15304
 
15305
.mn-wd-50p {
15306
  min-width: 50%;
15307
}
15308
 
15309
.wd-50-f {
15310
  width: 50px !important;
15311
}
15312
 
15313
.wd-50p-f {
15314
  width: 50% !important;
15315
}
15316
 
15317
.mx-wd-50p-f {
15318
  max-width: 50% !important;
15319
}
15320
 
15321
.mn-wd-50p-f {
15322
  min-width: 50% !important;
15323
}
15324
 
15325
.wd-55 {
15326
  width: 55px;
15327
}
15328
 
15329
.wd-55p {
15330
  width: 55%;
15331
}
15332
 
15333
.mx-wd-55p {
15334
  max-width: 55%;
15335
}
15336
 
15337
.mn-wd-55p {
15338
  min-width: 55%;
15339
}
15340
 
15341
.wd-55-f {
15342
  width: 55px !important;
15343
}
15344
 
15345
.wd-55p-f {
15346
  width: 55% !important;
15347
}
15348
 
15349
.mx-wd-55p-f {
15350
  max-width: 55% !important;
15351
}
15352
 
15353
.mn-wd-55p-f {
15354
  min-width: 55% !important;
15355
}
15356
 
15357
.wd-60 {
15358
  width: 60px;
15359
}
15360
 
15361
.wd-60p {
15362
  width: 60%;
15363
}
15364
 
15365
.mx-wd-60p {
15366
  max-width: 60%;
15367
}
15368
 
15369
.mn-wd-60p {
15370
  min-width: 60%;
15371
}
15372
 
15373
.wd-60-f {
15374
  width: 60px !important;
15375
}
15376
 
15377
.wd-60p-f {
15378
  width: 60% !important;
15379
}
15380
 
15381
.mx-wd-60p-f {
15382
  max-width: 60% !important;
15383
}
15384
 
15385
.mn-wd-60p-f {
15386
  min-width: 60% !important;
15387
}
15388
 
15389
.wd-65 {
15390
  width: 65px;
15391
}
15392
 
15393
.wd-65p {
15394
  width: 65%;
15395
}
15396
 
15397
.mx-wd-65p {
15398
  max-width: 65%;
15399
}
15400
 
15401
.mn-wd-65p {
15402
  min-width: 65%;
15403
}
15404
 
15405
.wd-65-f {
15406
  width: 65px !important;
15407
}
15408
 
15409
.wd-65p-f {
15410
  width: 65% !important;
15411
}
15412
 
15413
.mx-wd-65p-f {
15414
  max-width: 65% !important;
15415
}
15416
 
15417
.mn-wd-65p-f {
15418
  min-width: 65% !important;
15419
}
15420
 
15421
.wd-70 {
15422
  width: 70px;
15423
}
15424
 
15425
.wd-70p {
15426
  width: 70%;
15427
}
15428
 
15429
.mx-wd-70p {
15430
  max-width: 70%;
15431
}
15432
 
15433
.mn-wd-70p {
15434
  min-width: 70%;
15435
}
15436
 
15437
.wd-70-f {
15438
  width: 70px !important;
15439
}
15440
 
15441
.wd-70p-f {
15442
  width: 70% !important;
15443
}
15444
 
15445
.mx-wd-70p-f {
15446
  max-width: 70% !important;
15447
}
15448
 
15449
.mn-wd-70p-f {
15450
  min-width: 70% !important;
15451
}
15452
 
15453
.wd-75 {
15454
  width: 75px;
15455
}
15456
 
15457
.wd-75p {
15458
  width: 75%;
15459
}
15460
 
15461
.mx-wd-75p {
15462
  max-width: 75%;
15463
}
15464
 
15465
.mn-wd-75p {
15466
  min-width: 75%;
15467
}
15468
 
15469
.wd-75-f {
15470
  width: 75px !important;
15471
}
15472
 
15473
.wd-75p-f {
15474
  width: 75% !important;
15475
}
15476
 
15477
.mx-wd-75p-f {
15478
  max-width: 75% !important;
15479
}
15480
 
15481
.mn-wd-75p-f {
15482
  min-width: 75% !important;
15483
}
15484
 
15485
.wd-80 {
15486
  width: 80px;
15487
}
15488
 
15489
.wd-80p {
15490
  width: 80%;
15491
}
15492
 
15493
.mx-wd-80p {
15494
  max-width: 80%;
15495
}
15496
 
15497
.mn-wd-80p {
15498
  min-width: 80%;
15499
}
15500
 
15501
.wd-80-f {
15502
  width: 80px !important;
15503
}
15504
 
15505
.wd-80p-f {
15506
  width: 80% !important;
15507
}
15508
 
15509
.mx-wd-80p-f {
15510
  max-width: 80% !important;
15511
}
15512
 
15513
.mn-wd-80p-f {
15514
  min-width: 80% !important;
15515
}
15516
 
15517
.wd-85 {
15518
  width: 85px;
15519
}
15520
 
15521
.wd-85p {
15522
  width: 85%;
15523
}
15524
 
15525
.mx-wd-85p {
15526
  max-width: 85%;
15527
}
15528
 
15529
.mn-wd-85p {
15530
  min-width: 85%;
15531
}
15532
 
15533
.wd-85-f {
15534
  width: 85px !important;
15535
}
15536
 
15537
.wd-85p-f {
15538
  width: 85% !important;
15539
}
15540
 
15541
.mx-wd-85p-f {
15542
  max-width: 85% !important;
15543
}
15544
 
15545
.mn-wd-85p-f {
15546
  min-width: 85% !important;
15547
}
15548
 
15549
.wd-90 {
15550
  width: 90px;
15551
}
15552
 
15553
.wd-90p {
15554
  width: 90%;
15555
}
15556
 
15557
.mx-wd-90p {
15558
  max-width: 90%;
15559
}
15560
 
15561
.mn-wd-90p {
15562
  min-width: 90%;
15563
}
15564
 
15565
.wd-90-f {
15566
  width: 90px !important;
15567
}
15568
 
15569
.wd-90p-f {
15570
  width: 90% !important;
15571
}
15572
 
15573
.mx-wd-90p-f {
15574
  max-width: 90% !important;
15575
}
15576
 
15577
.mn-wd-90p-f {
15578
  min-width: 90% !important;
15579
}
15580
 
15581
.wd-95 {
15582
  width: 95px;
15583
}
15584
 
15585
.wd-95p {
15586
  width: 95%;
15587
}
15588
 
15589
.mx-wd-95p {
15590
  max-width: 95%;
15591
}
15592
 
15593
.mn-wd-95p {
15594
  min-width: 95%;
15595
}
15596
 
15597
.wd-95-f {
15598
  width: 95px !important;
15599
}
15600
 
15601
.wd-95p-f {
15602
  width: 95% !important;
15603
}
15604
 
15605
.mx-wd-95p-f {
15606
  max-width: 95% !important;
15607
}
15608
 
15609
.mn-wd-95p-f {
15610
  min-width: 95% !important;
15611
}
15612
 
15613
.wd-100 {
15614
  width: 100px;
15615
}
15616
 
15617
.wd-100p {
15618
  width: 100%;
15619
}
15620
 
15621
.mx-wd-100p {
15622
  max-width: 100%;
15623
}
15624
 
15625
.mn-wd-100p {
15626
  min-width: 100%;
15627
}
15628
 
15629
.wd-100-f {
15630
  width: 100px !important;
15631
}
15632
 
15633
.wd-100p-f {
15634
  width: 100% !important;
15635
}
15636
 
15637
.mx-wd-100p-f {
15638
  max-width: 100% !important;
15639
}
15640
 
15641
.mn-wd-100p-f {
15642
  min-width: 100% !important;
15643
}
15644
 
15645
.wd-150 {
15646
  width: 150px;
15647
}
15648
 
15649
.wd-150-f {
15650
  width: 150px !important;
15651
}
15652
 
15653
.wd-200 {
15654
  width: 200px;
15655
}
15656
 
15657
.wd-200-f {
15658
  width: 200px !important;
15659
}
15660
 
15661
.wd-250 {
15662
  width: 250px;
15663
}
15664
 
15665
.wd-250-f {
15666
  width: 250px !important;
15667
}
15668
 
15669
.wd-300 {
15670
  width: 300px;
15671
}
15672
 
15673
.wd-300-f {
15674
  width: 300px !important;
15675
}
15676
 
15677
.wd-350 {
15678
  width: 350px;
15679
}
15680
 
15681
.wd-350-f {
15682
  width: 350px !important;
15683
}
15684
 
15685
.wd-400 {
15686
  width: 400px;
15687
}
15688
 
15689
.wd-400-f {
15690
  width: 400px !important;
15691
}
15692
 
15693
.wd-450 {
15694
  width: 450px;
15695
}
15696
 
15697
.wd-450-f {
15698
  width: 450px !important;
15699
}
15700
 
15701
.wd-500 {
15702
  width: 500px;
15703
}
15704
 
15705
.wd-500-f {
15706
  width: 500px !important;
15707
}
15708
 
15709
.wd-550 {
15710
  width: 550px;
15711
}
15712
 
15713
.wd-550-f {
15714
  width: 550px !important;
15715
}
15716
 
15717
.wd-600 {
15718
  width: 600px;
15719
}
15720
 
15721
.wd-600-f {
15722
  width: 600px !important;
15723
}
15724
 
15725
.wd-650 {
15726
  width: 650px;
15727
}
15728
 
15729
.wd-650-f {
15730
  width: 650px !important;
15731
}
15732
 
15733
.wd-700 {
15734
  width: 700px;
15735
}
15736
 
15737
.wd-700-f {
15738
  width: 700px !important;
15739
}
15740
 
15741
.wd-750 {
15742
  width: 750px;
15743
}
15744
 
15745
.wd-750-f {
15746
  width: 750px !important;
15747
}
15748
 
15749
.wd-800 {
15750
  width: 800px;
15751
}
15752
 
15753
.wd-800-f {
15754
  width: 800px !important;
15755
}
15756
 
15757
.wd-850 {
15758
  width: 850px;
15759
}
15760
 
15761
.wd-850-f {
15762
  width: 850px !important;
15763
}
15764
 
15765
.wd-900 {
15766
  width: 900px;
15767
}
15768
 
15769
.wd-900-f {
15770
  width: 900px !important;
15771
}
15772
 
15773
.wd-950 {
15774
  width: 950px;
15775
}
15776
 
15777
.wd-950-f {
15778
  width: 950px !important;
15779
}
15780
 
15781
.wd-1000 {
15782
  width: 1000px;
15783
}
15784
 
15785
.wd-1000-f {
15786
  width: 1000px !important;
15787
}
15788
 
15789
@media (min-width: 480px) {
15790
  .wd-xs-5 {
15791
    width: 5px;
15792
  }
16848 stevensc 15793
 
16825 efrain 15794
  .wd-xs-5p {
15795
    width: 5%;
15796
  }
16848 stevensc 15797
 
16825 efrain 15798
  .mx-wd-xs-5p {
15799
    max-width: 5%;
15800
  }
16848 stevensc 15801
 
16825 efrain 15802
  .mn-wd-xs-5p {
15803
    min-width: 5%;
15804
  }
16848 stevensc 15805
 
16825 efrain 15806
  .wd-xs-5-f {
15807
    width: 5px !important;
15808
  }
16848 stevensc 15809
 
16825 efrain 15810
  .wd-xs-5p-f {
15811
    width: 5% !important;
15812
  }
16848 stevensc 15813
 
16825 efrain 15814
  .mx-wd-xs-5p-f {
15815
    max-width: 5% !important;
15816
  }
16848 stevensc 15817
 
16825 efrain 15818
  .mn-wd-xs-5p-f {
15819
    min-width: 5% !important;
15820
  }
16848 stevensc 15821
 
16825 efrain 15822
  .wd-xs-10 {
15823
    width: 10px;
15824
  }
16848 stevensc 15825
 
16825 efrain 15826
  .wd-xs-10p {
15827
    width: 10%;
15828
  }
16848 stevensc 15829
 
16825 efrain 15830
  .mx-wd-xs-10p {
15831
    max-width: 10%;
15832
  }
16848 stevensc 15833
 
16825 efrain 15834
  .mn-wd-xs-10p {
15835
    min-width: 10%;
15836
  }
16848 stevensc 15837
 
16825 efrain 15838
  .wd-xs-10-f {
15839
    width: 10px !important;
15840
  }
16848 stevensc 15841
 
16825 efrain 15842
  .wd-xs-10p-f {
15843
    width: 10% !important;
15844
  }
16848 stevensc 15845
 
16825 efrain 15846
  .mx-wd-xs-10p-f {
15847
    max-width: 10% !important;
15848
  }
16848 stevensc 15849
 
16825 efrain 15850
  .mn-wd-xs-10p-f {
15851
    min-width: 10% !important;
15852
  }
16848 stevensc 15853
 
16825 efrain 15854
  .wd-xs-15 {
15855
    width: 15px;
15856
  }
16848 stevensc 15857
 
16825 efrain 15858
  .wd-xs-15p {
15859
    width: 15%;
15860
  }
16848 stevensc 15861
 
16825 efrain 15862
  .mx-wd-xs-15p {
15863
    max-width: 15%;
15864
  }
16848 stevensc 15865
 
16825 efrain 15866
  .mn-wd-xs-15p {
15867
    min-width: 15%;
15868
  }
16848 stevensc 15869
 
16825 efrain 15870
  .wd-xs-15-f {
15871
    width: 15px !important;
15872
  }
16848 stevensc 15873
 
16825 efrain 15874
  .wd-xs-15p-f {
15875
    width: 15% !important;
15876
  }
16848 stevensc 15877
 
16825 efrain 15878
  .mx-wd-xs-15p-f {
15879
    max-width: 15% !important;
15880
  }
16848 stevensc 15881
 
16825 efrain 15882
  .mn-wd-xs-15p-f {
15883
    min-width: 15% !important;
15884
  }
16848 stevensc 15885
 
16825 efrain 15886
  .wd-xs-20 {
15887
    width: 20px;
15888
  }
16848 stevensc 15889
 
16825 efrain 15890
  .wd-xs-20p {
15891
    width: 20%;
15892
  }
16848 stevensc 15893
 
16825 efrain 15894
  .mx-wd-xs-20p {
15895
    max-width: 20%;
15896
  }
16848 stevensc 15897
 
16825 efrain 15898
  .mn-wd-xs-20p {
15899
    min-width: 20%;
15900
  }
16848 stevensc 15901
 
16825 efrain 15902
  .wd-xs-20-f {
15903
    width: 20px !important;
15904
  }
16848 stevensc 15905
 
16825 efrain 15906
  .wd-xs-20p-f {
15907
    width: 20% !important;
15908
  }
16848 stevensc 15909
 
16825 efrain 15910
  .mx-wd-xs-20p-f {
15911
    max-width: 20% !important;
15912
  }
16848 stevensc 15913
 
16825 efrain 15914
  .mn-wd-xs-20p-f {
15915
    min-width: 20% !important;
15916
  }
16848 stevensc 15917
 
16825 efrain 15918
  .wd-xs-25 {
15919
    width: 25px;
15920
  }
16848 stevensc 15921
 
16825 efrain 15922
  .wd-xs-25p {
15923
    width: 25%;
15924
  }
16848 stevensc 15925
 
16825 efrain 15926
  .mx-wd-xs-25p {
15927
    max-width: 25%;
15928
  }
16848 stevensc 15929
 
16825 efrain 15930
  .mn-wd-xs-25p {
15931
    min-width: 25%;
15932
  }
16848 stevensc 15933
 
16825 efrain 15934
  .wd-xs-25-f {
15935
    width: 25px !important;
15936
  }
16848 stevensc 15937
 
16825 efrain 15938
  .wd-xs-25p-f {
15939
    width: 25% !important;
15940
  }
16848 stevensc 15941
 
16825 efrain 15942
  .mx-wd-xs-25p-f {
15943
    max-width: 25% !important;
15944
  }
16848 stevensc 15945
 
16825 efrain 15946
  .mn-wd-xs-25p-f {
15947
    min-width: 25% !important;
15948
  }
16848 stevensc 15949
 
16825 efrain 15950
  .wd-xs-30 {
15951
    width: 30px;
15952
  }
16848 stevensc 15953
 
16825 efrain 15954
  .wd-xs-30p {
15955
    width: 30%;
15956
  }
16848 stevensc 15957
 
16825 efrain 15958
  .mx-wd-xs-30p {
15959
    max-width: 30%;
15960
  }
16848 stevensc 15961
 
16825 efrain 15962
  .mn-wd-xs-30p {
15963
    min-width: 30%;
15964
  }
16848 stevensc 15965
 
16825 efrain 15966
  .wd-xs-30-f {
15967
    width: 30px !important;
15968
  }
16848 stevensc 15969
 
16825 efrain 15970
  .wd-xs-30p-f {
15971
    width: 30% !important;
15972
  }
16848 stevensc 15973
 
16825 efrain 15974
  .mx-wd-xs-30p-f {
15975
    max-width: 30% !important;
15976
  }
16848 stevensc 15977
 
16825 efrain 15978
  .mn-wd-xs-30p-f {
15979
    min-width: 30% !important;
15980
  }
16848 stevensc 15981
 
16825 efrain 15982
  .wd-xs-35 {
15983
    width: 35px;
15984
  }
16848 stevensc 15985
 
16825 efrain 15986
  .wd-xs-35p {
15987
    width: 35%;
15988
  }
16848 stevensc 15989
 
16825 efrain 15990
  .mx-wd-xs-35p {
15991
    max-width: 35%;
15992
  }
16848 stevensc 15993
 
16825 efrain 15994
  .mn-wd-xs-35p {
15995
    min-width: 35%;
15996
  }
16848 stevensc 15997
 
16825 efrain 15998
  .wd-xs-35-f {
15999
    width: 35px !important;
16000
  }
16848 stevensc 16001
 
16825 efrain 16002
  .wd-xs-35p-f {
16003
    width: 35% !important;
16004
  }
16848 stevensc 16005
 
16825 efrain 16006
  .mx-wd-xs-35p-f {
16007
    max-width: 35% !important;
16008
  }
16848 stevensc 16009
 
16825 efrain 16010
  .mn-wd-xs-35p-f {
16011
    min-width: 35% !important;
16012
  }
16848 stevensc 16013
 
16825 efrain 16014
  .wd-xs-40 {
16015
    width: 40px;
16016
  }
16848 stevensc 16017
 
16825 efrain 16018
  .wd-xs-40p {
16019
    width: 40%;
16020
  }
16848 stevensc 16021
 
16825 efrain 16022
  .mx-wd-xs-40p {
16023
    max-width: 40%;
16024
  }
16848 stevensc 16025
 
16825 efrain 16026
  .mn-wd-xs-40p {
16027
    min-width: 40%;
16028
  }
16848 stevensc 16029
 
16825 efrain 16030
  .wd-xs-40-f {
16031
    width: 40px !important;
16032
  }
16848 stevensc 16033
 
16825 efrain 16034
  .wd-xs-40p-f {
16035
    width: 40% !important;
16036
  }
16848 stevensc 16037
 
16825 efrain 16038
  .mx-wd-xs-40p-f {
16039
    max-width: 40% !important;
16040
  }
16848 stevensc 16041
 
16825 efrain 16042
  .mn-wd-xs-40p-f {
16043
    min-width: 40% !important;
16044
  }
16848 stevensc 16045
 
16825 efrain 16046
  .wd-xs-45 {
16047
    width: 45px;
16048
  }
16848 stevensc 16049
 
16825 efrain 16050
  .wd-xs-45p {
16051
    width: 45%;
16052
  }
16848 stevensc 16053
 
16825 efrain 16054
  .mx-wd-xs-45p {
16055
    max-width: 45%;
16056
  }
16848 stevensc 16057
 
16825 efrain 16058
  .mn-wd-xs-45p {
16059
    min-width: 45%;
16060
  }
16848 stevensc 16061
 
16825 efrain 16062
  .wd-xs-45-f {
16063
    width: 45px !important;
16064
  }
16848 stevensc 16065
 
16825 efrain 16066
  .wd-xs-45p-f {
16067
    width: 45% !important;
16068
  }
16848 stevensc 16069
 
16825 efrain 16070
  .mx-wd-xs-45p-f {
16071
    max-width: 45% !important;
16072
  }
16848 stevensc 16073
 
16825 efrain 16074
  .mn-wd-xs-45p-f {
16075
    min-width: 45% !important;
16076
  }
16848 stevensc 16077
 
16825 efrain 16078
  .wd-xs-50 {
16079
    width: 50px;
16080
  }
16848 stevensc 16081
 
16825 efrain 16082
  .wd-xs-50p {
16083
    width: 50%;
16084
  }
16848 stevensc 16085
 
16825 efrain 16086
  .mx-wd-xs-50p {
16087
    max-width: 50%;
16088
  }
16848 stevensc 16089
 
16825 efrain 16090
  .mn-wd-xs-50p {
16091
    min-width: 50%;
16092
  }
16848 stevensc 16093
 
16825 efrain 16094
  .wd-xs-50-f {
16095
    width: 50px !important;
16096
  }
16848 stevensc 16097
 
16825 efrain 16098
  .wd-xs-50p-f {
16099
    width: 50% !important;
16100
  }
16848 stevensc 16101
 
16825 efrain 16102
  .mx-wd-xs-50p-f {
16103
    max-width: 50% !important;
16104
  }
16848 stevensc 16105
 
16825 efrain 16106
  .mn-wd-xs-50p-f {
16107
    min-width: 50% !important;
16108
  }
16848 stevensc 16109
 
16825 efrain 16110
  .wd-xs-55 {
16111
    width: 55px;
16112
  }
16848 stevensc 16113
 
16825 efrain 16114
  .wd-xs-55p {
16115
    width: 55%;
16116
  }
16848 stevensc 16117
 
16825 efrain 16118
  .mx-wd-xs-55p {
16119
    max-width: 55%;
16120
  }
16848 stevensc 16121
 
16825 efrain 16122
  .mn-wd-xs-55p {
16123
    min-width: 55%;
16124
  }
16848 stevensc 16125
 
16825 efrain 16126
  .wd-xs-55-f {
16127
    width: 55px !important;
16128
  }
16848 stevensc 16129
 
16825 efrain 16130
  .wd-xs-55p-f {
16131
    width: 55% !important;
16132
  }
16848 stevensc 16133
 
16825 efrain 16134
  .mx-wd-xs-55p-f {
16135
    max-width: 55% !important;
16136
  }
16848 stevensc 16137
 
16825 efrain 16138
  .mn-wd-xs-55p-f {
16139
    min-width: 55% !important;
16140
  }
16848 stevensc 16141
 
16825 efrain 16142
  .wd-xs-60 {
16143
    width: 60px;
16144
  }
16848 stevensc 16145
 
16825 efrain 16146
  .wd-xs-60p {
16147
    width: 60%;
16148
  }
16848 stevensc 16149
 
16825 efrain 16150
  .mx-wd-xs-60p {
16151
    max-width: 60%;
16152
  }
16848 stevensc 16153
 
16825 efrain 16154
  .mn-wd-xs-60p {
16155
    min-width: 60%;
16156
  }
16848 stevensc 16157
 
16825 efrain 16158
  .wd-xs-60-f {
16159
    width: 60px !important;
16160
  }
16848 stevensc 16161
 
16825 efrain 16162
  .wd-xs-60p-f {
16163
    width: 60% !important;
16164
  }
16848 stevensc 16165
 
16825 efrain 16166
  .mx-wd-xs-60p-f {
16167
    max-width: 60% !important;
16168
  }
16848 stevensc 16169
 
16825 efrain 16170
  .mn-wd-xs-60p-f {
16171
    min-width: 60% !important;
16172
  }
16848 stevensc 16173
 
16825 efrain 16174
  .wd-xs-65 {
16175
    width: 65px;
16176
  }
16848 stevensc 16177
 
16825 efrain 16178
  .wd-xs-65p {
16179
    width: 65%;
16180
  }
16848 stevensc 16181
 
16825 efrain 16182
  .mx-wd-xs-65p {
16183
    max-width: 65%;
16184
  }
16848 stevensc 16185
 
16825 efrain 16186
  .mn-wd-xs-65p {
16187
    min-width: 65%;
16188
  }
16848 stevensc 16189
 
16825 efrain 16190
  .wd-xs-65-f {
16191
    width: 65px !important;
16192
  }
16848 stevensc 16193
 
16825 efrain 16194
  .wd-xs-65p-f {
16195
    width: 65% !important;
16196
  }
16848 stevensc 16197
 
16825 efrain 16198
  .mx-wd-xs-65p-f {
16199
    max-width: 65% !important;
16200
  }
16848 stevensc 16201
 
16825 efrain 16202
  .mn-wd-xs-65p-f {
16203
    min-width: 65% !important;
16204
  }
16848 stevensc 16205
 
16825 efrain 16206
  .wd-xs-70 {
16207
    width: 70px;
16208
  }
16848 stevensc 16209
 
16825 efrain 16210
  .wd-xs-70p {
16211
    width: 70%;
16212
  }
16848 stevensc 16213
 
16825 efrain 16214
  .mx-wd-xs-70p {
16215
    max-width: 70%;
16216
  }
16848 stevensc 16217
 
16825 efrain 16218
  .mn-wd-xs-70p {
16219
    min-width: 70%;
16220
  }
16848 stevensc 16221
 
16825 efrain 16222
  .wd-xs-70-f {
16223
    width: 70px !important;
16224
  }
16848 stevensc 16225
 
16825 efrain 16226
  .wd-xs-70p-f {
16227
    width: 70% !important;
16228
  }
16848 stevensc 16229
 
16825 efrain 16230
  .mx-wd-xs-70p-f {
16231
    max-width: 70% !important;
16232
  }
16848 stevensc 16233
 
16825 efrain 16234
  .mn-wd-xs-70p-f {
16235
    min-width: 70% !important;
16236
  }
16848 stevensc 16237
 
16825 efrain 16238
  .wd-xs-75 {
16239
    width: 75px;
16240
  }
16848 stevensc 16241
 
16825 efrain 16242
  .wd-xs-75p {
16243
    width: 75%;
16244
  }
16848 stevensc 16245
 
16825 efrain 16246
  .mx-wd-xs-75p {
16247
    max-width: 75%;
16248
  }
16848 stevensc 16249
 
16825 efrain 16250
  .mn-wd-xs-75p {
16251
    min-width: 75%;
16252
  }
16848 stevensc 16253
 
16825 efrain 16254
  .wd-xs-75-f {
16255
    width: 75px !important;
16256
  }
16848 stevensc 16257
 
16825 efrain 16258
  .wd-xs-75p-f {
16259
    width: 75% !important;
16260
  }
16848 stevensc 16261
 
16825 efrain 16262
  .mx-wd-xs-75p-f {
16263
    max-width: 75% !important;
16264
  }
16848 stevensc 16265
 
16825 efrain 16266
  .mn-wd-xs-75p-f {
16267
    min-width: 75% !important;
16268
  }
16848 stevensc 16269
 
16825 efrain 16270
  .wd-xs-80 {
16271
    width: 80px;
16272
  }
16848 stevensc 16273
 
16825 efrain 16274
  .wd-xs-80p {
16275
    width: 80%;
16276
  }
16848 stevensc 16277
 
16825 efrain 16278
  .mx-wd-xs-80p {
16279
    max-width: 80%;
16280
  }
16848 stevensc 16281
 
16825 efrain 16282
  .mn-wd-xs-80p {
16283
    min-width: 80%;
16284
  }
16848 stevensc 16285
 
16825 efrain 16286
  .wd-xs-80-f {
16287
    width: 80px !important;
16288
  }
16848 stevensc 16289
 
16825 efrain 16290
  .wd-xs-80p-f {
16291
    width: 80% !important;
16292
  }
16848 stevensc 16293
 
16825 efrain 16294
  .mx-wd-xs-80p-f {
16295
    max-width: 80% !important;
16296
  }
16848 stevensc 16297
 
16825 efrain 16298
  .mn-wd-xs-80p-f {
16299
    min-width: 80% !important;
16300
  }
16848 stevensc 16301
 
16825 efrain 16302
  .wd-xs-85 {
16303
    width: 85px;
16304
  }
16848 stevensc 16305
 
16825 efrain 16306
  .wd-xs-85p {
16307
    width: 85%;
16308
  }
16848 stevensc 16309
 
16825 efrain 16310
  .mx-wd-xs-85p {
16311
    max-width: 85%;
16312
  }
16848 stevensc 16313
 
16825 efrain 16314
  .mn-wd-xs-85p {
16315
    min-width: 85%;
16316
  }
16848 stevensc 16317
 
16825 efrain 16318
  .wd-xs-85-f {
16319
    width: 85px !important;
16320
  }
16848 stevensc 16321
 
16825 efrain 16322
  .wd-xs-85p-f {
16323
    width: 85% !important;
16324
  }
16848 stevensc 16325
 
16825 efrain 16326
  .mx-wd-xs-85p-f {
16327
    max-width: 85% !important;
16328
  }
16848 stevensc 16329
 
16825 efrain 16330
  .mn-wd-xs-85p-f {
16331
    min-width: 85% !important;
16332
  }
16848 stevensc 16333
 
16825 efrain 16334
  .wd-xs-90 {
16335
    width: 90px;
16336
  }
16848 stevensc 16337
 
16825 efrain 16338
  .wd-xs-90p {
16339
    width: 90%;
16340
  }
16848 stevensc 16341
 
16825 efrain 16342
  .mx-wd-xs-90p {
16343
    max-width: 90%;
16344
  }
16848 stevensc 16345
 
16825 efrain 16346
  .mn-wd-xs-90p {
16347
    min-width: 90%;
16348
  }
16848 stevensc 16349
 
16825 efrain 16350
  .wd-xs-90-f {
16351
    width: 90px !important;
16352
  }
16848 stevensc 16353
 
16825 efrain 16354
  .wd-xs-90p-f {
16355
    width: 90% !important;
16356
  }
16848 stevensc 16357
 
16825 efrain 16358
  .mx-wd-xs-90p-f {
16359
    max-width: 90% !important;
16360
  }
16848 stevensc 16361
 
16825 efrain 16362
  .mn-wd-xs-90p-f {
16363
    min-width: 90% !important;
16364
  }
16848 stevensc 16365
 
16825 efrain 16366
  .wd-xs-95 {
16367
    width: 95px;
16368
  }
16848 stevensc 16369
 
16825 efrain 16370
  .wd-xs-95p {
16371
    width: 95%;
16372
  }
16848 stevensc 16373
 
16825 efrain 16374
  .mx-wd-xs-95p {
16375
    max-width: 95%;
16376
  }
16848 stevensc 16377
 
16825 efrain 16378
  .mn-wd-xs-95p {
16379
    min-width: 95%;
16380
  }
16848 stevensc 16381
 
16825 efrain 16382
  .wd-xs-95-f {
16383
    width: 95px !important;
16384
  }
16848 stevensc 16385
 
16825 efrain 16386
  .wd-xs-95p-f {
16387
    width: 95% !important;
16388
  }
16848 stevensc 16389
 
16825 efrain 16390
  .mx-wd-xs-95p-f {
16391
    max-width: 95% !important;
16392
  }
16848 stevensc 16393
 
16825 efrain 16394
  .mn-wd-xs-95p-f {
16395
    min-width: 95% !important;
16396
  }
16848 stevensc 16397
 
16825 efrain 16398
  .wd-xs-100 {
16399
    width: 100px;
16400
  }
16848 stevensc 16401
 
16825 efrain 16402
  .wd-xs-100p {
16403
    width: 100%;
16404
  }
16848 stevensc 16405
 
16825 efrain 16406
  .mx-wd-xs-100p {
16407
    max-width: 100%;
16408
  }
16848 stevensc 16409
 
16825 efrain 16410
  .mn-wd-xs-100p {
16411
    min-width: 100%;
16412
  }
16848 stevensc 16413
 
16825 efrain 16414
  .wd-xs-100-f {
16415
    width: 100px !important;
16416
  }
16848 stevensc 16417
 
16825 efrain 16418
  .wd-xs-100p-f {
16419
    width: 100% !important;
16420
  }
16848 stevensc 16421
 
16825 efrain 16422
  .mx-wd-xs-100p-f {
16423
    max-width: 100% !important;
16424
  }
16848 stevensc 16425
 
16825 efrain 16426
  .mn-wd-xs-100p-f {
16427
    min-width: 100% !important;
16428
  }
16848 stevensc 16429
 
16825 efrain 16430
  .wd-xs-150 {
16431
    width: 150px;
16432
  }
16848 stevensc 16433
 
16825 efrain 16434
  .wd-xs-150p {
16435
    width: 150%;
16436
  }
16848 stevensc 16437
 
16825 efrain 16438
  .mx-wd-xs-150p {
16439
    max-width: 150%;
16440
  }
16848 stevensc 16441
 
16825 efrain 16442
  .mn-wd-xs-150p {
16443
    min-width: 150%;
16444
  }
16848 stevensc 16445
 
16825 efrain 16446
  .wd-xs-150-f {
16447
    width: 150px !important;
16448
  }
16848 stevensc 16449
 
16825 efrain 16450
  .wd-xs-150p-f {
16451
    width: 150% !important;
16452
  }
16848 stevensc 16453
 
16825 efrain 16454
  .mx-wd-xs-150p-f {
16455
    max-width: 150% !important;
16456
  }
16848 stevensc 16457
 
16825 efrain 16458
  .mn-wd-xs-150p-f {
16459
    min-width: 150% !important;
16460
  }
16848 stevensc 16461
 
16825 efrain 16462
  .wd-xs-200 {
16463
    width: 200px;
16464
  }
16848 stevensc 16465
 
16825 efrain 16466
  .wd-xs-200p {
16467
    width: 200%;
16468
  }
16848 stevensc 16469
 
16825 efrain 16470
  .mx-wd-xs-200p {
16471
    max-width: 200%;
16472
  }
16848 stevensc 16473
 
16825 efrain 16474
  .mn-wd-xs-200p {
16475
    min-width: 200%;
16476
  }
16848 stevensc 16477
 
16825 efrain 16478
  .wd-xs-200-f {
16479
    width: 200px !important;
16480
  }
16848 stevensc 16481
 
16825 efrain 16482
  .wd-xs-200p-f {
16483
    width: 200% !important;
16484
  }
16848 stevensc 16485
 
16825 efrain 16486
  .mx-wd-xs-200p-f {
16487
    max-width: 200% !important;
16488
  }
16848 stevensc 16489
 
16825 efrain 16490
  .mn-wd-xs-200p-f {
16491
    min-width: 200% !important;
16492
  }
16848 stevensc 16493
 
16825 efrain 16494
  .wd-xs-250 {
16495
    width: 250px;
16496
  }
16848 stevensc 16497
 
16825 efrain 16498
  .wd-xs-250p {
16499
    width: 250%;
16500
  }
16848 stevensc 16501
 
16825 efrain 16502
  .mx-wd-xs-250p {
16503
    max-width: 250%;
16504
  }
16848 stevensc 16505
 
16825 efrain 16506
  .mn-wd-xs-250p {
16507
    min-width: 250%;
16508
  }
16848 stevensc 16509
 
16825 efrain 16510
  .wd-xs-250-f {
16511
    width: 250px !important;
16512
  }
16848 stevensc 16513
 
16825 efrain 16514
  .wd-xs-250p-f {
16515
    width: 250% !important;
16516
  }
16848 stevensc 16517
 
16825 efrain 16518
  .mx-wd-xs-250p-f {
16519
    max-width: 250% !important;
16520
  }
16848 stevensc 16521
 
16825 efrain 16522
  .mn-wd-xs-250p-f {
16523
    min-width: 250% !important;
16524
  }
16848 stevensc 16525
 
16825 efrain 16526
  .wd-xs-300 {
16527
    width: 300px;
16528
  }
16848 stevensc 16529
 
16825 efrain 16530
  .wd-xs-300p {
16531
    width: 300%;
16532
  }
16848 stevensc 16533
 
16825 efrain 16534
  .mx-wd-xs-300p {
16535
    max-width: 300%;
16536
  }
16848 stevensc 16537
 
16825 efrain 16538
  .mn-wd-xs-300p {
16539
    min-width: 300%;
16540
  }
16848 stevensc 16541
 
16825 efrain 16542
  .wd-xs-300-f {
16543
    width: 300px !important;
16544
  }
16848 stevensc 16545
 
16825 efrain 16546
  .wd-xs-300p-f {
16547
    width: 300% !important;
16548
  }
16848 stevensc 16549
 
16825 efrain 16550
  .mx-wd-xs-300p-f {
16551
    max-width: 300% !important;
16552
  }
16848 stevensc 16553
 
16825 efrain 16554
  .mn-wd-xs-300p-f {
16555
    min-width: 300% !important;
16556
  }
16848 stevensc 16557
 
16825 efrain 16558
  .wd-xs-350 {
16559
    width: 350px;
16560
  }
16848 stevensc 16561
 
16825 efrain 16562
  .wd-xs-350p {
16563
    width: 350%;
16564
  }
16848 stevensc 16565
 
16825 efrain 16566
  .mx-wd-xs-350p {
16567
    max-width: 350%;
16568
  }
16848 stevensc 16569
 
16825 efrain 16570
  .mn-wd-xs-350p {
16571
    min-width: 350%;
16572
  }
16848 stevensc 16573
 
16825 efrain 16574
  .wd-xs-350-f {
16575
    width: 350px !important;
16576
  }
16848 stevensc 16577
 
16825 efrain 16578
  .wd-xs-350p-f {
16579
    width: 350% !important;
16580
  }
16848 stevensc 16581
 
16825 efrain 16582
  .mx-wd-xs-350p-f {
16583
    max-width: 350% !important;
16584
  }
16848 stevensc 16585
 
16825 efrain 16586
  .mn-wd-xs-350p-f {
16587
    min-width: 350% !important;
16588
  }
16848 stevensc 16589
 
16825 efrain 16590
  .wd-xs-400 {
16591
    width: 400px;
16592
  }
16848 stevensc 16593
 
16825 efrain 16594
  .wd-xs-400p {
16595
    width: 400%;
16596
  }
16848 stevensc 16597
 
16825 efrain 16598
  .mx-wd-xs-400p {
16599
    max-width: 400%;
16600
  }
16848 stevensc 16601
 
16825 efrain 16602
  .mn-wd-xs-400p {
16603
    min-width: 400%;
16604
  }
16848 stevensc 16605
 
16825 efrain 16606
  .wd-xs-400-f {
16607
    width: 400px !important;
16608
  }
16848 stevensc 16609
 
16825 efrain 16610
  .wd-xs-400p-f {
16611
    width: 400% !important;
16612
  }
16848 stevensc 16613
 
16825 efrain 16614
  .mx-wd-xs-400p-f {
16615
    max-width: 400% !important;
16616
  }
16848 stevensc 16617
 
16825 efrain 16618
  .mn-wd-xs-400p-f {
16619
    min-width: 400% !important;
16620
  }
16848 stevensc 16621
 
16825 efrain 16622
  .wd-xs-450 {
16623
    width: 450px;
16624
  }
16848 stevensc 16625
 
16825 efrain 16626
  .wd-xs-450p {
16627
    width: 450%;
16628
  }
16848 stevensc 16629
 
16825 efrain 16630
  .mx-wd-xs-450p {
16631
    max-width: 450%;
16632
  }
16848 stevensc 16633
 
16825 efrain 16634
  .mn-wd-xs-450p {
16635
    min-width: 450%;
16636
  }
16848 stevensc 16637
 
16825 efrain 16638
  .wd-xs-450-f {
16639
    width: 450px !important;
16640
  }
16848 stevensc 16641
 
16825 efrain 16642
  .wd-xs-450p-f {
16643
    width: 450% !important;
16644
  }
16848 stevensc 16645
 
16825 efrain 16646
  .mx-wd-xs-450p-f {
16647
    max-width: 450% !important;
16648
  }
16848 stevensc 16649
 
16825 efrain 16650
  .mn-wd-xs-450p-f {
16651
    min-width: 450% !important;
16652
  }
16848 stevensc 16653
 
16825 efrain 16654
  .wd-xs-500 {
16655
    width: 500px;
16656
  }
16848 stevensc 16657
 
16825 efrain 16658
  .wd-xs-500p {
16659
    width: 500%;
16660
  }
16848 stevensc 16661
 
16825 efrain 16662
  .mx-wd-xs-500p {
16663
    max-width: 500%;
16664
  }
16848 stevensc 16665
 
16825 efrain 16666
  .mn-wd-xs-500p {
16667
    min-width: 500%;
16668
  }
16848 stevensc 16669
 
16825 efrain 16670
  .wd-xs-500-f {
16671
    width: 500px !important;
16672
  }
16848 stevensc 16673
 
16825 efrain 16674
  .wd-xs-500p-f {
16675
    width: 500% !important;
16676
  }
16848 stevensc 16677
 
16825 efrain 16678
  .mx-wd-xs-500p-f {
16679
    max-width: 500% !important;
16680
  }
16848 stevensc 16681
 
16825 efrain 16682
  .mn-wd-xs-500p-f {
16683
    min-width: 500% !important;
16684
  }
16848 stevensc 16685
 
16825 efrain 16686
  .wd-xs-550 {
16687
    width: 550px;
16688
  }
16848 stevensc 16689
 
16825 efrain 16690
  .wd-xs-550p {
16691
    width: 550%;
16692
  }
16848 stevensc 16693
 
16825 efrain 16694
  .mx-wd-xs-550p {
16695
    max-width: 550%;
16696
  }
16848 stevensc 16697
 
16825 efrain 16698
  .mn-wd-xs-550p {
16699
    min-width: 550%;
16700
  }
16848 stevensc 16701
 
16825 efrain 16702
  .wd-xs-550-f {
16703
    width: 550px !important;
16704
  }
16848 stevensc 16705
 
16825 efrain 16706
  .wd-xs-550p-f {
16707
    width: 550% !important;
16708
  }
16848 stevensc 16709
 
16825 efrain 16710
  .mx-wd-xs-550p-f {
16711
    max-width: 550% !important;
16712
  }
16848 stevensc 16713
 
16825 efrain 16714
  .mn-wd-xs-550p-f {
16715
    min-width: 550% !important;
16716
  }
16848 stevensc 16717
 
16825 efrain 16718
  .wd-xs-600 {
16719
    width: 600px;
16720
  }
16848 stevensc 16721
 
16825 efrain 16722
  .wd-xs-600p {
16723
    width: 600%;
16724
  }
16848 stevensc 16725
 
16825 efrain 16726
  .mx-wd-xs-600p {
16727
    max-width: 600%;
16728
  }
16848 stevensc 16729
 
16825 efrain 16730
  .mn-wd-xs-600p {
16731
    min-width: 600%;
16732
  }
16848 stevensc 16733
 
16825 efrain 16734
  .wd-xs-600-f {
16735
    width: 600px !important;
16736
  }
16848 stevensc 16737
 
16825 efrain 16738
  .wd-xs-600p-f {
16739
    width: 600% !important;
16740
  }
16848 stevensc 16741
 
16825 efrain 16742
  .mx-wd-xs-600p-f {
16743
    max-width: 600% !important;
16744
  }
16848 stevensc 16745
 
16825 efrain 16746
  .mn-wd-xs-600p-f {
16747
    min-width: 600% !important;
16748
  }
16848 stevensc 16749
 
16825 efrain 16750
  .wd-xs-650 {
16751
    width: 650px;
16752
  }
16848 stevensc 16753
 
16825 efrain 16754
  .wd-xs-650p {
16755
    width: 650%;
16756
  }
16848 stevensc 16757
 
16825 efrain 16758
  .mx-wd-xs-650p {
16759
    max-width: 650%;
16760
  }
16848 stevensc 16761
 
16825 efrain 16762
  .mn-wd-xs-650p {
16763
    min-width: 650%;
16764
  }
16848 stevensc 16765
 
16825 efrain 16766
  .wd-xs-650-f {
16767
    width: 650px !important;
16768
  }
16848 stevensc 16769
 
16825 efrain 16770
  .wd-xs-650p-f {
16771
    width: 650% !important;
16772
  }
16848 stevensc 16773
 
16825 efrain 16774
  .mx-wd-xs-650p-f {
16775
    max-width: 650% !important;
16776
  }
16848 stevensc 16777
 
16825 efrain 16778
  .mn-wd-xs-650p-f {
16779
    min-width: 650% !important;
16780
  }
16848 stevensc 16781
 
16825 efrain 16782
  .wd-xs-700 {
16783
    width: 700px;
16784
  }
16848 stevensc 16785
 
16825 efrain 16786
  .wd-xs-700p {
16787
    width: 700%;
16788
  }
16848 stevensc 16789
 
16825 efrain 16790
  .mx-wd-xs-700p {
16791
    max-width: 700%;
16792
  }
16848 stevensc 16793
 
16825 efrain 16794
  .mn-wd-xs-700p {
16795
    min-width: 700%;
16796
  }
16848 stevensc 16797
 
16825 efrain 16798
  .wd-xs-700-f {
16799
    width: 700px !important;
16800
  }
16848 stevensc 16801
 
16825 efrain 16802
  .wd-xs-700p-f {
16803
    width: 700% !important;
16804
  }
16848 stevensc 16805
 
16825 efrain 16806
  .mx-wd-xs-700p-f {
16807
    max-width: 700% !important;
16808
  }
16848 stevensc 16809
 
16825 efrain 16810
  .mn-wd-xs-700p-f {
16811
    min-width: 700% !important;
16812
  }
16848 stevensc 16813
 
16825 efrain 16814
  .wd-xs-750 {
16815
    width: 750px;
16816
  }
16848 stevensc 16817
 
16825 efrain 16818
  .wd-xs-750p {
16819
    width: 750%;
16820
  }
16848 stevensc 16821
 
16825 efrain 16822
  .mx-wd-xs-750p {
16823
    max-width: 750%;
16824
  }
16848 stevensc 16825
 
16825 efrain 16826
  .mn-wd-xs-750p {
16827
    min-width: 750%;
16828
  }
16848 stevensc 16829
 
16825 efrain 16830
  .wd-xs-750-f {
16831
    width: 750px !important;
16832
  }
16848 stevensc 16833
 
16825 efrain 16834
  .wd-xs-750p-f {
16835
    width: 750% !important;
16836
  }
16848 stevensc 16837
 
16825 efrain 16838
  .mx-wd-xs-750p-f {
16839
    max-width: 750% !important;
16840
  }
16848 stevensc 16841
 
16825 efrain 16842
  .mn-wd-xs-750p-f {
16843
    min-width: 750% !important;
16844
  }
16848 stevensc 16845
 
16825 efrain 16846
  .wd-xs-800 {
16847
    width: 800px;
16848
  }
16848 stevensc 16849
 
16825 efrain 16850
  .wd-xs-800p {
16851
    width: 800%;
16852
  }
16848 stevensc 16853
 
16825 efrain 16854
  .mx-wd-xs-800p {
16855
    max-width: 800%;
16856
  }
16848 stevensc 16857
 
16825 efrain 16858
  .mn-wd-xs-800p {
16859
    min-width: 800%;
16860
  }
16848 stevensc 16861
 
16825 efrain 16862
  .wd-xs-800-f {
16863
    width: 800px !important;
16864
  }
16848 stevensc 16865
 
16825 efrain 16866
  .wd-xs-800p-f {
16867
    width: 800% !important;
16868
  }
16848 stevensc 16869
 
16825 efrain 16870
  .mx-wd-xs-800p-f {
16871
    max-width: 800% !important;
16872
  }
16848 stevensc 16873
 
16825 efrain 16874
  .mn-wd-xs-800p-f {
16875
    min-width: 800% !important;
16876
  }
16848 stevensc 16877
 
16825 efrain 16878
  .wd-xs-850 {
16879
    width: 850px;
16880
  }
16848 stevensc 16881
 
16825 efrain 16882
  .wd-xs-850p {
16883
    width: 850%;
16884
  }
16848 stevensc 16885
 
16825 efrain 16886
  .mx-wd-xs-850p {
16887
    max-width: 850%;
16888
  }
16848 stevensc 16889
 
16825 efrain 16890
  .mn-wd-xs-850p {
16891
    min-width: 850%;
16892
  }
16848 stevensc 16893
 
16825 efrain 16894
  .wd-xs-850-f {
16895
    width: 850px !important;
16896
  }
16848 stevensc 16897
 
16825 efrain 16898
  .wd-xs-850p-f {
16899
    width: 850% !important;
16900
  }
16848 stevensc 16901
 
16825 efrain 16902
  .mx-wd-xs-850p-f {
16903
    max-width: 850% !important;
16904
  }
16848 stevensc 16905
 
16825 efrain 16906
  .mn-wd-xs-850p-f {
16907
    min-width: 850% !important;
16908
  }
16848 stevensc 16909
 
16825 efrain 16910
  .wd-xs-900 {
16911
    width: 900px;
16912
  }
16848 stevensc 16913
 
16825 efrain 16914
  .wd-xs-900p {
16915
    width: 900%;
16916
  }
16848 stevensc 16917
 
16825 efrain 16918
  .mx-wd-xs-900p {
16919
    max-width: 900%;
16920
  }
16848 stevensc 16921
 
16825 efrain 16922
  .mn-wd-xs-900p {
16923
    min-width: 900%;
16924
  }
16848 stevensc 16925
 
16825 efrain 16926
  .wd-xs-900-f {
16927
    width: 900px !important;
16928
  }
16848 stevensc 16929
 
16825 efrain 16930
  .wd-xs-900p-f {
16931
    width: 900% !important;
16932
  }
16848 stevensc 16933
 
16825 efrain 16934
  .mx-wd-xs-900p-f {
16935
    max-width: 900% !important;
16936
  }
16848 stevensc 16937
 
16825 efrain 16938
  .mn-wd-xs-900p-f {
16939
    min-width: 900% !important;
16940
  }
16848 stevensc 16941
 
16825 efrain 16942
  .wd-xs-950 {
16943
    width: 950px;
16944
  }
16848 stevensc 16945
 
16825 efrain 16946
  .wd-xs-950p {
16947
    width: 950%;
16948
  }
16848 stevensc 16949
 
16825 efrain 16950
  .mx-wd-xs-950p {
16951
    max-width: 950%;
16952
  }
16848 stevensc 16953
 
16825 efrain 16954
  .mn-wd-xs-950p {
16955
    min-width: 950%;
16956
  }
16848 stevensc 16957
 
16825 efrain 16958
  .wd-xs-950-f {
16959
    width: 950px !important;
16960
  }
16848 stevensc 16961
 
16825 efrain 16962
  .wd-xs-950p-f {
16963
    width: 950% !important;
16964
  }
16848 stevensc 16965
 
16825 efrain 16966
  .mx-wd-xs-950p-f {
16967
    max-width: 950% !important;
16968
  }
16848 stevensc 16969
 
16825 efrain 16970
  .mn-wd-xs-950p-f {
16971
    min-width: 950% !important;
16972
  }
16848 stevensc 16973
 
16825 efrain 16974
  .wd-xs-1000 {
16975
    width: 1000px;
16976
  }
16848 stevensc 16977
 
16825 efrain 16978
  .wd-xs-1000p {
16979
    width: 1000%;
16980
  }
16848 stevensc 16981
 
16825 efrain 16982
  .mx-wd-xs-1000p {
16983
    max-width: 1000%;
16984
  }
16848 stevensc 16985
 
16825 efrain 16986
  .mn-wd-xs-1000p {
16987
    min-width: 1000%;
16988
  }
16848 stevensc 16989
 
16825 efrain 16990
  .wd-xs-1000-f {
16991
    width: 1000px !important;
16992
  }
16848 stevensc 16993
 
16825 efrain 16994
  .wd-xs-1000p-f {
16995
    width: 1000% !important;
16996
  }
16848 stevensc 16997
 
16825 efrain 16998
  .mx-wd-xs-1000p-f {
16999
    max-width: 1000% !important;
17000
  }
16848 stevensc 17001
 
16825 efrain 17002
  .mn-wd-xs-1000p-f {
17003
    min-width: 1000% !important;
17004
  }
16848 stevensc 17005
 
16825 efrain 17006
  .wd-xs-auto {
17007
    width: auto;
17008
  }
16848 stevensc 17009
 
16825 efrain 17010
  .wd-xs-auto-f {
17011
    width: auto !important;
17012
  }
17013
}
16848 stevensc 17014
 
16825 efrain 17015
@media (min-width: 576px) {
17016
  .wd-sm-5 {
17017
    width: 5px;
17018
  }
16848 stevensc 17019
 
16825 efrain 17020
  .wd-sm-5p {
17021
    width: 5%;
17022
  }
16848 stevensc 17023
 
16825 efrain 17024
  .mx-wd-sm-5p {
17025
    max-width: 5%;
17026
  }
16848 stevensc 17027
 
16825 efrain 17028
  .mn-wd-sm-5p {
17029
    min-width: 5%;
17030
  }
16848 stevensc 17031
 
16825 efrain 17032
  .wd-sm-5-f {
17033
    width: 5px !important;
17034
  }
16848 stevensc 17035
 
16825 efrain 17036
  .wd-sm-5p-f {
17037
    width: 5% !important;
17038
  }
16848 stevensc 17039
 
16825 efrain 17040
  .mx-wd-sm-5p-f {
17041
    max-width: 5% !important;
17042
  }
16848 stevensc 17043
 
16825 efrain 17044
  .mn-wd-sm-5p-f {
17045
    min-width: 5% !important;
17046
  }
16848 stevensc 17047
 
16825 efrain 17048
  .wd-sm-10 {
17049
    width: 10px;
17050
  }
16848 stevensc 17051
 
16825 efrain 17052
  .wd-sm-10p {
17053
    width: 10%;
17054
  }
16848 stevensc 17055
 
16825 efrain 17056
  .mx-wd-sm-10p {
17057
    max-width: 10%;
17058
  }
16848 stevensc 17059
 
16825 efrain 17060
  .mn-wd-sm-10p {
17061
    min-width: 10%;
17062
  }
16848 stevensc 17063
 
16825 efrain 17064
  .wd-sm-10-f {
17065
    width: 10px !important;
17066
  }
16848 stevensc 17067
 
16825 efrain 17068
  .wd-sm-10p-f {
17069
    width: 10% !important;
17070
  }
16848 stevensc 17071
 
16825 efrain 17072
  .mx-wd-sm-10p-f {
17073
    max-width: 10% !important;
17074
  }
16848 stevensc 17075
 
16825 efrain 17076
  .mn-wd-sm-10p-f {
17077
    min-width: 10% !important;
17078
  }
16848 stevensc 17079
 
16825 efrain 17080
  .wd-sm-15 {
17081
    width: 15px;
17082
  }
16848 stevensc 17083
 
16825 efrain 17084
  .wd-sm-15p {
17085
    width: 15%;
17086
  }
16848 stevensc 17087
 
16825 efrain 17088
  .mx-wd-sm-15p {
17089
    max-width: 15%;
17090
  }
16848 stevensc 17091
 
16825 efrain 17092
  .mn-wd-sm-15p {
17093
    min-width: 15%;
17094
  }
16848 stevensc 17095
 
16825 efrain 17096
  .wd-sm-15-f {
17097
    width: 15px !important;
17098
  }
16848 stevensc 17099
 
16825 efrain 17100
  .wd-sm-15p-f {
17101
    width: 15% !important;
17102
  }
16848 stevensc 17103
 
16825 efrain 17104
  .mx-wd-sm-15p-f {
17105
    max-width: 15% !important;
17106
  }
16848 stevensc 17107
 
16825 efrain 17108
  .mn-wd-sm-15p-f {
17109
    min-width: 15% !important;
17110
  }
16848 stevensc 17111
 
16825 efrain 17112
  .wd-sm-20 {
17113
    width: 20px;
17114
  }
16848 stevensc 17115
 
16825 efrain 17116
  .wd-sm-20p {
17117
    width: 20%;
17118
  }
16848 stevensc 17119
 
16825 efrain 17120
  .mx-wd-sm-20p {
17121
    max-width: 20%;
17122
  }
16848 stevensc 17123
 
16825 efrain 17124
  .mn-wd-sm-20p {
17125
    min-width: 20%;
17126
  }
16848 stevensc 17127
 
16825 efrain 17128
  .wd-sm-20-f {
17129
    width: 20px !important;
17130
  }
16848 stevensc 17131
 
16825 efrain 17132
  .wd-sm-20p-f {
17133
    width: 20% !important;
17134
  }
16848 stevensc 17135
 
16825 efrain 17136
  .mx-wd-sm-20p-f {
17137
    max-width: 20% !important;
17138
  }
16848 stevensc 17139
 
16825 efrain 17140
  .mn-wd-sm-20p-f {
17141
    min-width: 20% !important;
17142
  }
16848 stevensc 17143
 
16825 efrain 17144
  .wd-sm-25 {
17145
    width: 25px;
17146
  }
16848 stevensc 17147
 
16825 efrain 17148
  .wd-sm-25p {
17149
    width: 25%;
17150
  }
16848 stevensc 17151
 
16825 efrain 17152
  .mx-wd-sm-25p {
17153
    max-width: 25%;
17154
  }
16848 stevensc 17155
 
16825 efrain 17156
  .mn-wd-sm-25p {
17157
    min-width: 25%;
17158
  }
16848 stevensc 17159
 
16825 efrain 17160
  .wd-sm-25-f {
17161
    width: 25px !important;
17162
  }
16848 stevensc 17163
 
16825 efrain 17164
  .wd-sm-25p-f {
17165
    width: 25% !important;
17166
  }
16848 stevensc 17167
 
16825 efrain 17168
  .mx-wd-sm-25p-f {
17169
    max-width: 25% !important;
17170
  }
16848 stevensc 17171
 
16825 efrain 17172
  .mn-wd-sm-25p-f {
17173
    min-width: 25% !important;
17174
  }
16848 stevensc 17175
 
16825 efrain 17176
  .wd-sm-30 {
17177
    width: 30px;
17178
  }
16848 stevensc 17179
 
16825 efrain 17180
  .wd-sm-30p {
17181
    width: 30%;
17182
  }
16848 stevensc 17183
 
16825 efrain 17184
  .mx-wd-sm-30p {
17185
    max-width: 30%;
17186
  }
16848 stevensc 17187
 
16825 efrain 17188
  .mn-wd-sm-30p {
17189
    min-width: 30%;
17190
  }
16848 stevensc 17191
 
16825 efrain 17192
  .wd-sm-30-f {
17193
    width: 30px !important;
17194
  }
16848 stevensc 17195
 
16825 efrain 17196
  .wd-sm-30p-f {
17197
    width: 30% !important;
17198
  }
16848 stevensc 17199
 
16825 efrain 17200
  .mx-wd-sm-30p-f {
17201
    max-width: 30% !important;
17202
  }
16848 stevensc 17203
 
16825 efrain 17204
  .mn-wd-sm-30p-f {
17205
    min-width: 30% !important;
17206
  }
16848 stevensc 17207
 
16825 efrain 17208
  .wd-sm-35 {
17209
    width: 35px;
17210
  }
16848 stevensc 17211
 
16825 efrain 17212
  .wd-sm-35p {
17213
    width: 35%;
17214
  }
16848 stevensc 17215
 
16825 efrain 17216
  .mx-wd-sm-35p {
17217
    max-width: 35%;
17218
  }
16848 stevensc 17219
 
16825 efrain 17220
  .mn-wd-sm-35p {
17221
    min-width: 35%;
17222
  }
16848 stevensc 17223
 
16825 efrain 17224
  .wd-sm-35-f {
17225
    width: 35px !important;
17226
  }
16848 stevensc 17227
 
16825 efrain 17228
  .wd-sm-35p-f {
17229
    width: 35% !important;
17230
  }
16848 stevensc 17231
 
16825 efrain 17232
  .mx-wd-sm-35p-f {
17233
    max-width: 35% !important;
17234
  }
16848 stevensc 17235
 
16825 efrain 17236
  .mn-wd-sm-35p-f {
17237
    min-width: 35% !important;
17238
  }
16848 stevensc 17239
 
16825 efrain 17240
  .wd-sm-40 {
17241
    width: 40px;
17242
  }
16848 stevensc 17243
 
16825 efrain 17244
  .wd-sm-40p {
17245
    width: 40%;
17246
  }
16848 stevensc 17247
 
16825 efrain 17248
  .mx-wd-sm-40p {
17249
    max-width: 40%;
17250
  }
16848 stevensc 17251
 
16825 efrain 17252
  .mn-wd-sm-40p {
17253
    min-width: 40%;
17254
  }
16848 stevensc 17255
 
16825 efrain 17256
  .wd-sm-40-f {
17257
    width: 40px !important;
17258
  }
16848 stevensc 17259
 
16825 efrain 17260
  .wd-sm-40p-f {
17261
    width: 40% !important;
17262
  }
16848 stevensc 17263
 
16825 efrain 17264
  .mx-wd-sm-40p-f {
17265
    max-width: 40% !important;
17266
  }
16848 stevensc 17267
 
16825 efrain 17268
  .mn-wd-sm-40p-f {
17269
    min-width: 40% !important;
17270
  }
16848 stevensc 17271
 
16825 efrain 17272
  .wd-sm-45 {
17273
    width: 45px;
17274
  }
16848 stevensc 17275
 
16825 efrain 17276
  .wd-sm-45p {
17277
    width: 45%;
17278
  }
16848 stevensc 17279
 
16825 efrain 17280
  .mx-wd-sm-45p {
17281
    max-width: 45%;
17282
  }
16848 stevensc 17283
 
16825 efrain 17284
  .mn-wd-sm-45p {
17285
    min-width: 45%;
17286
  }
16848 stevensc 17287
 
16825 efrain 17288
  .wd-sm-45-f {
17289
    width: 45px !important;
17290
  }
16848 stevensc 17291
 
16825 efrain 17292
  .wd-sm-45p-f {
17293
    width: 45% !important;
17294
  }
16848 stevensc 17295
 
16825 efrain 17296
  .mx-wd-sm-45p-f {
17297
    max-width: 45% !important;
17298
  }
16848 stevensc 17299
 
16825 efrain 17300
  .mn-wd-sm-45p-f {
17301
    min-width: 45% !important;
17302
  }
16848 stevensc 17303
 
16825 efrain 17304
  .wd-sm-50 {
17305
    width: 50px;
17306
  }
16848 stevensc 17307
 
16825 efrain 17308
  .wd-sm-50p {
17309
    width: 50%;
17310
  }
16848 stevensc 17311
 
16825 efrain 17312
  .mx-wd-sm-50p {
17313
    max-width: 50%;
17314
  }
16848 stevensc 17315
 
16825 efrain 17316
  .mn-wd-sm-50p {
17317
    min-width: 50%;
17318
  }
16848 stevensc 17319
 
16825 efrain 17320
  .wd-sm-50-f {
17321
    width: 50px !important;
17322
  }
16848 stevensc 17323
 
16825 efrain 17324
  .wd-sm-50p-f {
17325
    width: 50% !important;
17326
  }
16848 stevensc 17327
 
16825 efrain 17328
  .mx-wd-sm-50p-f {
17329
    max-width: 50% !important;
17330
  }
16848 stevensc 17331
 
16825 efrain 17332
  .mn-wd-sm-50p-f {
17333
    min-width: 50% !important;
17334
  }
16848 stevensc 17335
 
16825 efrain 17336
  .wd-sm-55 {
17337
    width: 55px;
17338
  }
16848 stevensc 17339
 
16825 efrain 17340
  .wd-sm-55p {
17341
    width: 55%;
17342
  }
16848 stevensc 17343
 
16825 efrain 17344
  .mx-wd-sm-55p {
17345
    max-width: 55%;
17346
  }
16848 stevensc 17347
 
16825 efrain 17348
  .mn-wd-sm-55p {
17349
    min-width: 55%;
17350
  }
16848 stevensc 17351
 
16825 efrain 17352
  .wd-sm-55-f {
17353
    width: 55px !important;
17354
  }
16848 stevensc 17355
 
16825 efrain 17356
  .wd-sm-55p-f {
17357
    width: 55% !important;
17358
  }
16848 stevensc 17359
 
16825 efrain 17360
  .mx-wd-sm-55p-f {
17361
    max-width: 55% !important;
17362
  }
16848 stevensc 17363
 
16825 efrain 17364
  .mn-wd-sm-55p-f {
17365
    min-width: 55% !important;
17366
  }
16848 stevensc 17367
 
16825 efrain 17368
  .wd-sm-60 {
17369
    width: 60px;
17370
  }
16848 stevensc 17371
 
16825 efrain 17372
  .wd-sm-60p {
17373
    width: 60%;
17374
  }
16848 stevensc 17375
 
16825 efrain 17376
  .mx-wd-sm-60p {
17377
    max-width: 60%;
17378
  }
16848 stevensc 17379
 
16825 efrain 17380
  .mn-wd-sm-60p {
17381
    min-width: 60%;
17382
  }
16848 stevensc 17383
 
16825 efrain 17384
  .wd-sm-60-f {
17385
    width: 60px !important;
17386
  }
16848 stevensc 17387
 
16825 efrain 17388
  .wd-sm-60p-f {
17389
    width: 60% !important;
17390
  }
16848 stevensc 17391
 
16825 efrain 17392
  .mx-wd-sm-60p-f {
17393
    max-width: 60% !important;
17394
  }
16848 stevensc 17395
 
16825 efrain 17396
  .mn-wd-sm-60p-f {
17397
    min-width: 60% !important;
17398
  }
16848 stevensc 17399
 
16825 efrain 17400
  .wd-sm-65 {
17401
    width: 65px;
17402
  }
16848 stevensc 17403
 
16825 efrain 17404
  .wd-sm-65p {
17405
    width: 65%;
17406
  }
16848 stevensc 17407
 
16825 efrain 17408
  .mx-wd-sm-65p {
17409
    max-width: 65%;
17410
  }
16848 stevensc 17411
 
16825 efrain 17412
  .mn-wd-sm-65p {
17413
    min-width: 65%;
17414
  }
16848 stevensc 17415
 
16825 efrain 17416
  .wd-sm-65-f {
17417
    width: 65px !important;
17418
  }
16848 stevensc 17419
 
16825 efrain 17420
  .wd-sm-65p-f {
17421
    width: 65% !important;
17422
  }
16848 stevensc 17423
 
16825 efrain 17424
  .mx-wd-sm-65p-f {
17425
    max-width: 65% !important;
17426
  }
16848 stevensc 17427
 
16825 efrain 17428
  .mn-wd-sm-65p-f {
17429
    min-width: 65% !important;
17430
  }
16848 stevensc 17431
 
16825 efrain 17432
  .wd-sm-70 {
17433
    width: 70px;
17434
  }
16848 stevensc 17435
 
16825 efrain 17436
  .wd-sm-70p {
17437
    width: 70%;
17438
  }
16848 stevensc 17439
 
16825 efrain 17440
  .mx-wd-sm-70p {
17441
    max-width: 70%;
17442
  }
16848 stevensc 17443
 
16825 efrain 17444
  .mn-wd-sm-70p {
17445
    min-width: 70%;
17446
  }
16848 stevensc 17447
 
16825 efrain 17448
  .wd-sm-70-f {
17449
    width: 70px !important;
17450
  }
16848 stevensc 17451
 
16825 efrain 17452
  .wd-sm-70p-f {
17453
    width: 70% !important;
17454
  }
16848 stevensc 17455
 
16825 efrain 17456
  .mx-wd-sm-70p-f {
17457
    max-width: 70% !important;
17458
  }
16848 stevensc 17459
 
16825 efrain 17460
  .mn-wd-sm-70p-f {
17461
    min-width: 70% !important;
17462
  }
16848 stevensc 17463
 
16825 efrain 17464
  .wd-sm-75 {
17465
    width: 75px;
17466
  }
16848 stevensc 17467
 
16825 efrain 17468
  .wd-sm-75p {
17469
    width: 75%;
17470
  }
16848 stevensc 17471
 
16825 efrain 17472
  .mx-wd-sm-75p {
17473
    max-width: 75%;
17474
  }
16848 stevensc 17475
 
16825 efrain 17476
  .mn-wd-sm-75p {
17477
    min-width: 75%;
17478
  }
16848 stevensc 17479
 
16825 efrain 17480
  .wd-sm-75-f {
17481
    width: 75px !important;
17482
  }
16848 stevensc 17483
 
16825 efrain 17484
  .wd-sm-75p-f {
17485
    width: 75% !important;
17486
  }
16848 stevensc 17487
 
16825 efrain 17488
  .mx-wd-sm-75p-f {
17489
    max-width: 75% !important;
17490
  }
16848 stevensc 17491
 
16825 efrain 17492
  .mn-wd-sm-75p-f {
17493
    min-width: 75% !important;
17494
  }
16848 stevensc 17495
 
16825 efrain 17496
  .wd-sm-80 {
17497
    width: 80px;
17498
  }
16848 stevensc 17499
 
16825 efrain 17500
  .wd-sm-80p {
17501
    width: 80%;
17502
  }
16848 stevensc 17503
 
16825 efrain 17504
  .mx-wd-sm-80p {
17505
    max-width: 80%;
17506
  }
16848 stevensc 17507
 
16825 efrain 17508
  .mn-wd-sm-80p {
17509
    min-width: 80%;
17510
  }
16848 stevensc 17511
 
16825 efrain 17512
  .wd-sm-80-f {
17513
    width: 80px !important;
17514
  }
16848 stevensc 17515
 
16825 efrain 17516
  .wd-sm-80p-f {
17517
    width: 80% !important;
17518
  }
16848 stevensc 17519
 
16825 efrain 17520
  .mx-wd-sm-80p-f {
17521
    max-width: 80% !important;
17522
  }
16848 stevensc 17523
 
16825 efrain 17524
  .mn-wd-sm-80p-f {
17525
    min-width: 80% !important;
17526
  }
16848 stevensc 17527
 
16825 efrain 17528
  .wd-sm-85 {
17529
    width: 85px;
17530
  }
16848 stevensc 17531
 
16825 efrain 17532
  .wd-sm-85p {
17533
    width: 85%;
17534
  }
16848 stevensc 17535
 
16825 efrain 17536
  .mx-wd-sm-85p {
17537
    max-width: 85%;
17538
  }
16848 stevensc 17539
 
16825 efrain 17540
  .mn-wd-sm-85p {
17541
    min-width: 85%;
17542
  }
16848 stevensc 17543
 
16825 efrain 17544
  .wd-sm-85-f {
17545
    width: 85px !important;
17546
  }
16848 stevensc 17547
 
16825 efrain 17548
  .wd-sm-85p-f {
17549
    width: 85% !important;
17550
  }
16848 stevensc 17551
 
16825 efrain 17552
  .mx-wd-sm-85p-f {
17553
    max-width: 85% !important;
17554
  }
16848 stevensc 17555
 
16825 efrain 17556
  .mn-wd-sm-85p-f {
17557
    min-width: 85% !important;
17558
  }
16848 stevensc 17559
 
16825 efrain 17560
  .wd-sm-90 {
17561
    width: 90px;
17562
  }
16848 stevensc 17563
 
16825 efrain 17564
  .wd-sm-90p {
17565
    width: 90%;
17566
  }
16848 stevensc 17567
 
16825 efrain 17568
  .mx-wd-sm-90p {
17569
    max-width: 90%;
17570
  }
16848 stevensc 17571
 
16825 efrain 17572
  .mn-wd-sm-90p {
17573
    min-width: 90%;
17574
  }
16848 stevensc 17575
 
16825 efrain 17576
  .wd-sm-90-f {
17577
    width: 90px !important;
17578
  }
16848 stevensc 17579
 
16825 efrain 17580
  .wd-sm-90p-f {
17581
    width: 90% !important;
17582
  }
16848 stevensc 17583
 
16825 efrain 17584
  .mx-wd-sm-90p-f {
17585
    max-width: 90% !important;
17586
  }
16848 stevensc 17587
 
16825 efrain 17588
  .mn-wd-sm-90p-f {
17589
    min-width: 90% !important;
17590
  }
16848 stevensc 17591
 
16825 efrain 17592
  .wd-sm-95 {
17593
    width: 95px;
17594
  }
16848 stevensc 17595
 
16825 efrain 17596
  .wd-sm-95p {
17597
    width: 95%;
17598
  }
16848 stevensc 17599
 
16825 efrain 17600
  .mx-wd-sm-95p {
17601
    max-width: 95%;
17602
  }
16848 stevensc 17603
 
16825 efrain 17604
  .mn-wd-sm-95p {
17605
    min-width: 95%;
17606
  }
16848 stevensc 17607
 
16825 efrain 17608
  .wd-sm-95-f {
17609
    width: 95px !important;
17610
  }
16848 stevensc 17611
 
16825 efrain 17612
  .wd-sm-95p-f {
17613
    width: 95% !important;
17614
  }
16848 stevensc 17615
 
16825 efrain 17616
  .mx-wd-sm-95p-f {
17617
    max-width: 95% !important;
17618
  }
16848 stevensc 17619
 
16825 efrain 17620
  .mn-wd-sm-95p-f {
17621
    min-width: 95% !important;
17622
  }
16848 stevensc 17623
 
16825 efrain 17624
  .wd-sm-100 {
17625
    width: 100px;
17626
  }
16848 stevensc 17627
 
16825 efrain 17628
  .wd-sm-100p {
17629
    width: 100%;
17630
  }
16848 stevensc 17631
 
16825 efrain 17632
  .mx-wd-sm-100p {
17633
    max-width: 100%;
17634
  }
16848 stevensc 17635
 
16825 efrain 17636
  .mn-wd-sm-100p {
17637
    min-width: 100%;
17638
  }
16848 stevensc 17639
 
16825 efrain 17640
  .wd-sm-100-f {
17641
    width: 100px !important;
17642
  }
16848 stevensc 17643
 
16825 efrain 17644
  .wd-sm-100p-f {
17645
    width: 100% !important;
17646
  }
16848 stevensc 17647
 
16825 efrain 17648
  .mx-wd-sm-100p-f {
17649
    max-width: 100% !important;
17650
  }
16848 stevensc 17651
 
16825 efrain 17652
  .mn-wd-sm-100p-f {
17653
    min-width: 100% !important;
17654
  }
16848 stevensc 17655
 
16825 efrain 17656
  .wd-sm-150 {
17657
    width: 150px;
17658
  }
16848 stevensc 17659
 
16825 efrain 17660
  .wd-sm-150p {
17661
    width: 150%;
17662
  }
16848 stevensc 17663
 
16825 efrain 17664
  .mx-wd-sm-150p {
17665
    max-width: 150%;
17666
  }
16848 stevensc 17667
 
16825 efrain 17668
  .mn-wd-sm-150p {
17669
    min-width: 150%;
17670
  }
16848 stevensc 17671
 
16825 efrain 17672
  .wd-sm-150-f {
17673
    width: 150px !important;
17674
  }
16848 stevensc 17675
 
16825 efrain 17676
  .wd-sm-150p-f {
17677
    width: 150% !important;
17678
  }
16848 stevensc 17679
 
16825 efrain 17680
  .mx-wd-sm-150p-f {
17681
    max-width: 150% !important;
17682
  }
16848 stevensc 17683
 
16825 efrain 17684
  .mn-wd-sm-150p-f {
17685
    min-width: 150% !important;
17686
  }
16848 stevensc 17687
 
16825 efrain 17688
  .wd-sm-200 {
17689
    width: 200px;
17690
  }
16848 stevensc 17691
 
16825 efrain 17692
  .wd-sm-200p {
17693
    width: 200%;
17694
  }
16848 stevensc 17695
 
16825 efrain 17696
  .mx-wd-sm-200p {
17697
    max-width: 200%;
17698
  }
16848 stevensc 17699
 
16825 efrain 17700
  .mn-wd-sm-200p {
17701
    min-width: 200%;
17702
  }
16848 stevensc 17703
 
16825 efrain 17704
  .wd-sm-200-f {
17705
    width: 200px !important;
17706
  }
16848 stevensc 17707
 
16825 efrain 17708
  .wd-sm-200p-f {
17709
    width: 200% !important;
17710
  }
16848 stevensc 17711
 
16825 efrain 17712
  .mx-wd-sm-200p-f {
17713
    max-width: 200% !important;
17714
  }
16848 stevensc 17715
 
16825 efrain 17716
  .mn-wd-sm-200p-f {
17717
    min-width: 200% !important;
17718
  }
16848 stevensc 17719
 
16825 efrain 17720
  .wd-sm-250 {
17721
    width: 250px;
17722
  }
16848 stevensc 17723
 
16825 efrain 17724
  .wd-sm-250p {
17725
    width: 250%;
17726
  }
16848 stevensc 17727
 
16825 efrain 17728
  .mx-wd-sm-250p {
17729
    max-width: 250%;
17730
  }
16848 stevensc 17731
 
16825 efrain 17732
  .mn-wd-sm-250p {
17733
    min-width: 250%;
17734
  }
16848 stevensc 17735
 
16825 efrain 17736
  .wd-sm-250-f {
17737
    width: 250px !important;
17738
  }
16848 stevensc 17739
 
16825 efrain 17740
  .wd-sm-250p-f {
17741
    width: 250% !important;
17742
  }
16848 stevensc 17743
 
16825 efrain 17744
  .mx-wd-sm-250p-f {
17745
    max-width: 250% !important;
17746
  }
16848 stevensc 17747
 
16825 efrain 17748
  .mn-wd-sm-250p-f {
17749
    min-width: 250% !important;
17750
  }
16848 stevensc 17751
 
16825 efrain 17752
  .wd-sm-300 {
17753
    width: 300px;
17754
  }
16848 stevensc 17755
 
16825 efrain 17756
  .wd-sm-300p {
17757
    width: 300%;
17758
  }
16848 stevensc 17759
 
16825 efrain 17760
  .mx-wd-sm-300p {
17761
    max-width: 300%;
17762
  }
16848 stevensc 17763
 
16825 efrain 17764
  .mn-wd-sm-300p {
17765
    min-width: 300%;
17766
  }
16848 stevensc 17767
 
16825 efrain 17768
  .wd-sm-300-f {
17769
    width: 300px !important;
17770
  }
16848 stevensc 17771
 
16825 efrain 17772
  .wd-sm-300p-f {
17773
    width: 300% !important;
17774
  }
16848 stevensc 17775
 
16825 efrain 17776
  .mx-wd-sm-300p-f {
17777
    max-width: 300% !important;
17778
  }
16848 stevensc 17779
 
16825 efrain 17780
  .mn-wd-sm-300p-f {
17781
    min-width: 300% !important;
17782
  }
16848 stevensc 17783
 
16825 efrain 17784
  .wd-sm-350 {
17785
    width: 350px;
17786
  }
16848 stevensc 17787
 
16825 efrain 17788
  .wd-sm-350p {
17789
    width: 350%;
17790
  }
16848 stevensc 17791
 
16825 efrain 17792
  .mx-wd-sm-350p {
17793
    max-width: 350%;
17794
  }
16848 stevensc 17795
 
16825 efrain 17796
  .mn-wd-sm-350p {
17797
    min-width: 350%;
17798
  }
16848 stevensc 17799
 
16825 efrain 17800
  .wd-sm-350-f {
17801
    width: 350px !important;
17802
  }
16848 stevensc 17803
 
16825 efrain 17804
  .wd-sm-350p-f {
17805
    width: 350% !important;
17806
  }
16848 stevensc 17807
 
16825 efrain 17808
  .mx-wd-sm-350p-f {
17809
    max-width: 350% !important;
17810
  }
16848 stevensc 17811
 
16825 efrain 17812
  .mn-wd-sm-350p-f {
17813
    min-width: 350% !important;
17814
  }
16848 stevensc 17815
 
16825 efrain 17816
  .wd-sm-400 {
17817
    width: 400px;
17818
  }
16848 stevensc 17819
 
16825 efrain 17820
  .wd-sm-400p {
17821
    width: 400%;
17822
  }
16848 stevensc 17823
 
16825 efrain 17824
  .mx-wd-sm-400p {
17825
    max-width: 400%;
17826
  }
16848 stevensc 17827
 
16825 efrain 17828
  .mn-wd-sm-400p {
17829
    min-width: 400%;
17830
  }
16848 stevensc 17831
 
16825 efrain 17832
  .wd-sm-400-f {
17833
    width: 400px !important;
17834
  }
16848 stevensc 17835
 
16825 efrain 17836
  .wd-sm-400p-f {
17837
    width: 400% !important;
17838
  }
16848 stevensc 17839
 
16825 efrain 17840
  .mx-wd-sm-400p-f {
17841
    max-width: 400% !important;
17842
  }
16848 stevensc 17843
 
16825 efrain 17844
  .mn-wd-sm-400p-f {
17845
    min-width: 400% !important;
17846
  }
16848 stevensc 17847
 
16825 efrain 17848
  .wd-sm-450 {
17849
    width: 450px;
17850
  }
16848 stevensc 17851
 
16825 efrain 17852
  .wd-sm-450p {
17853
    width: 450%;
17854
  }
16848 stevensc 17855
 
16825 efrain 17856
  .mx-wd-sm-450p {
17857
    max-width: 450%;
17858
  }
16848 stevensc 17859
 
16825 efrain 17860
  .mn-wd-sm-450p {
17861
    min-width: 450%;
17862
  }
16848 stevensc 17863
 
16825 efrain 17864
  .wd-sm-450-f {
17865
    width: 450px !important;
17866
  }
16848 stevensc 17867
 
16825 efrain 17868
  .wd-sm-450p-f {
17869
    width: 450% !important;
17870
  }
16848 stevensc 17871
 
16825 efrain 17872
  .mx-wd-sm-450p-f {
17873
    max-width: 450% !important;
17874
  }
16848 stevensc 17875
 
16825 efrain 17876
  .mn-wd-sm-450p-f {
17877
    min-width: 450% !important;
17878
  }
16848 stevensc 17879
 
16825 efrain 17880
  .wd-sm-500 {
17881
    width: 500px;
17882
  }
16848 stevensc 17883
 
16825 efrain 17884
  .wd-sm-500p {
17885
    width: 500%;
17886
  }
16848 stevensc 17887
 
16825 efrain 17888
  .mx-wd-sm-500p {
17889
    max-width: 500%;
17890
  }
16848 stevensc 17891
 
16825 efrain 17892
  .mn-wd-sm-500p {
17893
    min-width: 500%;
17894
  }
16848 stevensc 17895
 
16825 efrain 17896
  .wd-sm-500-f {
17897
    width: 500px !important;
17898
  }
16848 stevensc 17899
 
16825 efrain 17900
  .wd-sm-500p-f {
17901
    width: 500% !important;
17902
  }
16848 stevensc 17903
 
16825 efrain 17904
  .mx-wd-sm-500p-f {
17905
    max-width: 500% !important;
17906
  }
16848 stevensc 17907
 
16825 efrain 17908
  .mn-wd-sm-500p-f {
17909
    min-width: 500% !important;
17910
  }
16848 stevensc 17911
 
16825 efrain 17912
  .wd-sm-550 {
17913
    width: 550px;
17914
  }
16848 stevensc 17915
 
16825 efrain 17916
  .wd-sm-550p {
17917
    width: 550%;
17918
  }
16848 stevensc 17919
 
16825 efrain 17920
  .mx-wd-sm-550p {
17921
    max-width: 550%;
17922
  }
16848 stevensc 17923
 
16825 efrain 17924
  .mn-wd-sm-550p {
17925
    min-width: 550%;
17926
  }
16848 stevensc 17927
 
16825 efrain 17928
  .wd-sm-550-f {
17929
    width: 550px !important;
17930
  }
16848 stevensc 17931
 
16825 efrain 17932
  .wd-sm-550p-f {
17933
    width: 550% !important;
17934
  }
16848 stevensc 17935
 
16825 efrain 17936
  .mx-wd-sm-550p-f {
17937
    max-width: 550% !important;
17938
  }
16848 stevensc 17939
 
16825 efrain 17940
  .mn-wd-sm-550p-f {
17941
    min-width: 550% !important;
17942
  }
16848 stevensc 17943
 
16825 efrain 17944
  .wd-sm-600 {
17945
    width: 600px;
17946
  }
16848 stevensc 17947
 
16825 efrain 17948
  .wd-sm-600p {
17949
    width: 600%;
17950
  }
16848 stevensc 17951
 
16825 efrain 17952
  .mx-wd-sm-600p {
17953
    max-width: 600%;
17954
  }
16848 stevensc 17955
 
16825 efrain 17956
  .mn-wd-sm-600p {
17957
    min-width: 600%;
17958
  }
16848 stevensc 17959
 
16825 efrain 17960
  .wd-sm-600-f {
17961
    width: 600px !important;
17962
  }
16848 stevensc 17963
 
16825 efrain 17964
  .wd-sm-600p-f {
17965
    width: 600% !important;
17966
  }
16848 stevensc 17967
 
16825 efrain 17968
  .mx-wd-sm-600p-f {
17969
    max-width: 600% !important;
17970
  }
16848 stevensc 17971
 
16825 efrain 17972
  .mn-wd-sm-600p-f {
17973
    min-width: 600% !important;
17974
  }
16848 stevensc 17975
 
16825 efrain 17976
  .wd-sm-650 {
17977
    width: 650px;
17978
  }
16848 stevensc 17979
 
16825 efrain 17980
  .wd-sm-650p {
17981
    width: 650%;
17982
  }
16848 stevensc 17983
 
16825 efrain 17984
  .mx-wd-sm-650p {
17985
    max-width: 650%;
17986
  }
16848 stevensc 17987
 
16825 efrain 17988
  .mn-wd-sm-650p {
17989
    min-width: 650%;
17990
  }
16848 stevensc 17991
 
16825 efrain 17992
  .wd-sm-650-f {
17993
    width: 650px !important;
17994
  }
16848 stevensc 17995
 
16825 efrain 17996
  .wd-sm-650p-f {
17997
    width: 650% !important;
17998
  }
16848 stevensc 17999
 
16825 efrain 18000
  .mx-wd-sm-650p-f {
18001
    max-width: 650% !important;
18002
  }
16848 stevensc 18003
 
16825 efrain 18004
  .mn-wd-sm-650p-f {
18005
    min-width: 650% !important;
18006
  }
16848 stevensc 18007
 
16825 efrain 18008
  .wd-sm-700 {
18009
    width: 700px;
18010
  }
16848 stevensc 18011
 
16825 efrain 18012
  .wd-sm-700p {
18013
    width: 700%;
18014
  }
16848 stevensc 18015
 
16825 efrain 18016
  .mx-wd-sm-700p {
18017
    max-width: 700%;
18018
  }
16848 stevensc 18019
 
16825 efrain 18020
  .mn-wd-sm-700p {
18021
    min-width: 700%;
18022
  }
16848 stevensc 18023
 
16825 efrain 18024
  .wd-sm-700-f {
18025
    width: 700px !important;
18026
  }
16848 stevensc 18027
 
16825 efrain 18028
  .wd-sm-700p-f {
18029
    width: 700% !important;
18030
  }
16848 stevensc 18031
 
16825 efrain 18032
  .mx-wd-sm-700p-f {
18033
    max-width: 700% !important;
18034
  }
16848 stevensc 18035
 
16825 efrain 18036
  .mn-wd-sm-700p-f {
18037
    min-width: 700% !important;
18038
  }
16848 stevensc 18039
 
16825 efrain 18040
  .wd-sm-750 {
18041
    width: 750px;
18042
  }
16848 stevensc 18043
 
16825 efrain 18044
  .wd-sm-750p {
18045
    width: 750%;
18046
  }
16848 stevensc 18047
 
16825 efrain 18048
  .mx-wd-sm-750p {
18049
    max-width: 750%;
18050
  }
16848 stevensc 18051
 
16825 efrain 18052
  .mn-wd-sm-750p {
18053
    min-width: 750%;
18054
  }
16848 stevensc 18055
 
16825 efrain 18056
  .wd-sm-750-f {
18057
    width: 750px !important;
18058
  }
16848 stevensc 18059
 
16825 efrain 18060
  .wd-sm-750p-f {
18061
    width: 750% !important;
18062
  }
16848 stevensc 18063
 
16825 efrain 18064
  .mx-wd-sm-750p-f {
18065
    max-width: 750% !important;
18066
  }
16848 stevensc 18067
 
16825 efrain 18068
  .mn-wd-sm-750p-f {
18069
    min-width: 750% !important;
18070
  }
16848 stevensc 18071
 
16825 efrain 18072
  .wd-sm-800 {
18073
    width: 800px;
18074
  }
16848 stevensc 18075
 
16825 efrain 18076
  .wd-sm-800p {
18077
    width: 800%;
18078
  }
16848 stevensc 18079
 
16825 efrain 18080
  .mx-wd-sm-800p {
18081
    max-width: 800%;
18082
  }
16848 stevensc 18083
 
16825 efrain 18084
  .mn-wd-sm-800p {
18085
    min-width: 800%;
18086
  }
16848 stevensc 18087
 
16825 efrain 18088
  .wd-sm-800-f {
18089
    width: 800px !important;
18090
  }
16848 stevensc 18091
 
16825 efrain 18092
  .wd-sm-800p-f {
18093
    width: 800% !important;
18094
  }
16848 stevensc 18095
 
16825 efrain 18096
  .mx-wd-sm-800p-f {
18097
    max-width: 800% !important;
18098
  }
16848 stevensc 18099
 
16825 efrain 18100
  .mn-wd-sm-800p-f {
18101
    min-width: 800% !important;
18102
  }
16848 stevensc 18103
 
16825 efrain 18104
  .wd-sm-850 {
18105
    width: 850px;
18106
  }
16848 stevensc 18107
 
16825 efrain 18108
  .wd-sm-850p {
18109
    width: 850%;
18110
  }
16848 stevensc 18111
 
16825 efrain 18112
  .mx-wd-sm-850p {
18113
    max-width: 850%;
18114
  }
16848 stevensc 18115
 
16825 efrain 18116
  .mn-wd-sm-850p {
18117
    min-width: 850%;
18118
  }
16848 stevensc 18119
 
16825 efrain 18120
  .wd-sm-850-f {
18121
    width: 850px !important;
18122
  }
16848 stevensc 18123
 
16825 efrain 18124
  .wd-sm-850p-f {
18125
    width: 850% !important;
18126
  }
16848 stevensc 18127
 
16825 efrain 18128
  .mx-wd-sm-850p-f {
18129
    max-width: 850% !important;
18130
  }
16848 stevensc 18131
 
16825 efrain 18132
  .mn-wd-sm-850p-f {
18133
    min-width: 850% !important;
18134
  }
16848 stevensc 18135
 
16825 efrain 18136
  .wd-sm-900 {
18137
    width: 900px;
18138
  }
16848 stevensc 18139
 
16825 efrain 18140
  .wd-sm-900p {
18141
    width: 900%;
18142
  }
16848 stevensc 18143
 
16825 efrain 18144
  .mx-wd-sm-900p {
18145
    max-width: 900%;
18146
  }
16848 stevensc 18147
 
16825 efrain 18148
  .mn-wd-sm-900p {
18149
    min-width: 900%;
18150
  }
16848 stevensc 18151
 
16825 efrain 18152
  .wd-sm-900-f {
18153
    width: 900px !important;
18154
  }
16848 stevensc 18155
 
16825 efrain 18156
  .wd-sm-900p-f {
18157
    width: 900% !important;
18158
  }
16848 stevensc 18159
 
16825 efrain 18160
  .mx-wd-sm-900p-f {
18161
    max-width: 900% !important;
18162
  }
16848 stevensc 18163
 
16825 efrain 18164
  .mn-wd-sm-900p-f {
18165
    min-width: 900% !important;
18166
  }
16848 stevensc 18167
 
16825 efrain 18168
  .wd-sm-950 {
18169
    width: 950px;
18170
  }
16848 stevensc 18171
 
16825 efrain 18172
  .wd-sm-950p {
18173
    width: 950%;
18174
  }
16848 stevensc 18175
 
16825 efrain 18176
  .mx-wd-sm-950p {
18177
    max-width: 950%;
18178
  }
16848 stevensc 18179
 
16825 efrain 18180
  .mn-wd-sm-950p {
18181
    min-width: 950%;
18182
  }
16848 stevensc 18183
 
16825 efrain 18184
  .wd-sm-950-f {
18185
    width: 950px !important;
18186
  }
16848 stevensc 18187
 
16825 efrain 18188
  .wd-sm-950p-f {
18189
    width: 950% !important;
18190
  }
16848 stevensc 18191
 
16825 efrain 18192
  .mx-wd-sm-950p-f {
18193
    max-width: 950% !important;
18194
  }
16848 stevensc 18195
 
16825 efrain 18196
  .mn-wd-sm-950p-f {
18197
    min-width: 950% !important;
18198
  }
16848 stevensc 18199
 
16825 efrain 18200
  .wd-sm-1000 {
18201
    width: 1000px;
18202
  }
16848 stevensc 18203
 
16825 efrain 18204
  .wd-sm-1000p {
18205
    width: 1000%;
18206
  }
16848 stevensc 18207
 
16825 efrain 18208
  .mx-wd-sm-1000p {
18209
    max-width: 1000%;
18210
  }
16848 stevensc 18211
 
16825 efrain 18212
  .mn-wd-sm-1000p {
18213
    min-width: 1000%;
18214
  }
16848 stevensc 18215
 
16825 efrain 18216
  .wd-sm-1000-f {
18217
    width: 1000px !important;
18218
  }
16848 stevensc 18219
 
16825 efrain 18220
  .wd-sm-1000p-f {
18221
    width: 1000% !important;
18222
  }
16848 stevensc 18223
 
16825 efrain 18224
  .mx-wd-sm-1000p-f {
18225
    max-width: 1000% !important;
18226
  }
16848 stevensc 18227
 
16825 efrain 18228
  .mn-wd-sm-1000p-f {
18229
    min-width: 1000% !important;
18230
  }
16848 stevensc 18231
 
16825 efrain 18232
  .wd-sm-auto {
18233
    width: auto;
18234
  }
16848 stevensc 18235
 
16825 efrain 18236
  .wd-sm-auto-f {
18237
    width: auto !important;
18238
  }
18239
}
16848 stevensc 18240
 
16825 efrain 18241
@media (min-width: 768px) {
18242
  .wd-md-5 {
18243
    width: 5px;
18244
  }
16848 stevensc 18245
 
16825 efrain 18246
  .wd-md-5p {
18247
    width: 5%;
18248
  }
16848 stevensc 18249
 
16825 efrain 18250
  .mx-wd-md-5p {
18251
    max-width: 5%;
18252
  }
16848 stevensc 18253
 
16825 efrain 18254
  .mn-wd-md-5p {
18255
    min-width: 5%;
18256
  }
16848 stevensc 18257
 
16825 efrain 18258
  .wd-md-5-f {
18259
    width: 5px !important;
18260
  }
16848 stevensc 18261
 
16825 efrain 18262
  .wd-md-5p-f {
18263
    width: 5% !important;
18264
  }
16848 stevensc 18265
 
16825 efrain 18266
  .mx-wd-md-5p-f {
18267
    max-width: 5% !important;
18268
  }
16848 stevensc 18269
 
16825 efrain 18270
  .mn-wd-md-5p-f {
18271
    min-width: 5% !important;
18272
  }
16848 stevensc 18273
 
16825 efrain 18274
  .wd-md-10 {
18275
    width: 10px;
18276
  }
16848 stevensc 18277
 
16825 efrain 18278
  .wd-md-10p {
18279
    width: 10%;
18280
  }
16848 stevensc 18281
 
16825 efrain 18282
  .mx-wd-md-10p {
18283
    max-width: 10%;
18284
  }
16848 stevensc 18285
 
16825 efrain 18286
  .mn-wd-md-10p {
18287
    min-width: 10%;
18288
  }
16848 stevensc 18289
 
16825 efrain 18290
  .wd-md-10-f {
18291
    width: 10px !important;
18292
  }
16848 stevensc 18293
 
16825 efrain 18294
  .wd-md-10p-f {
18295
    width: 10% !important;
18296
  }
16848 stevensc 18297
 
16825 efrain 18298
  .mx-wd-md-10p-f {
18299
    max-width: 10% !important;
18300
  }
16848 stevensc 18301
 
16825 efrain 18302
  .mn-wd-md-10p-f {
18303
    min-width: 10% !important;
18304
  }
16848 stevensc 18305
 
16825 efrain 18306
  .wd-md-15 {
18307
    width: 15px;
18308
  }
16848 stevensc 18309
 
16825 efrain 18310
  .wd-md-15p {
18311
    width: 15%;
18312
  }
16848 stevensc 18313
 
16825 efrain 18314
  .mx-wd-md-15p {
18315
    max-width: 15%;
18316
  }
16848 stevensc 18317
 
16825 efrain 18318
  .mn-wd-md-15p {
18319
    min-width: 15%;
18320
  }
16848 stevensc 18321
 
16825 efrain 18322
  .wd-md-15-f {
18323
    width: 15px !important;
18324
  }
16848 stevensc 18325
 
16825 efrain 18326
  .wd-md-15p-f {
18327
    width: 15% !important;
18328
  }
16848 stevensc 18329
 
16825 efrain 18330
  .mx-wd-md-15p-f {
18331
    max-width: 15% !important;
18332
  }
16848 stevensc 18333
 
16825 efrain 18334
  .mn-wd-md-15p-f {
18335
    min-width: 15% !important;
18336
  }
16848 stevensc 18337
 
16825 efrain 18338
  .wd-md-20 {
18339
    width: 20px;
18340
  }
16848 stevensc 18341
 
16825 efrain 18342
  .wd-md-20p {
18343
    width: 20%;
18344
  }
16848 stevensc 18345
 
16825 efrain 18346
  .mx-wd-md-20p {
18347
    max-width: 20%;
18348
  }
16848 stevensc 18349
 
16825 efrain 18350
  .mn-wd-md-20p {
18351
    min-width: 20%;
18352
  }
16848 stevensc 18353
 
16825 efrain 18354
  .wd-md-20-f {
18355
    width: 20px !important;
18356
  }
16848 stevensc 18357
 
16825 efrain 18358
  .wd-md-20p-f {
18359
    width: 20% !important;
18360
  }
16848 stevensc 18361
 
16825 efrain 18362
  .mx-wd-md-20p-f {
18363
    max-width: 20% !important;
18364
  }
16848 stevensc 18365
 
16825 efrain 18366
  .mn-wd-md-20p-f {
18367
    min-width: 20% !important;
18368
  }
16848 stevensc 18369
 
16825 efrain 18370
  .wd-md-25 {
18371
    width: 25px;
18372
  }
16848 stevensc 18373
 
16825 efrain 18374
  .wd-md-25p {
18375
    width: 25%;
18376
  }
16848 stevensc 18377
 
16825 efrain 18378
  .mx-wd-md-25p {
18379
    max-width: 25%;
18380
  }
16848 stevensc 18381
 
16825 efrain 18382
  .mn-wd-md-25p {
18383
    min-width: 25%;
18384
  }
16848 stevensc 18385
 
16825 efrain 18386
  .wd-md-25-f {
18387
    width: 25px !important;
18388
  }
16848 stevensc 18389
 
16825 efrain 18390
  .wd-md-25p-f {
18391
    width: 25% !important;
18392
  }
16848 stevensc 18393
 
16825 efrain 18394
  .mx-wd-md-25p-f {
18395
    max-width: 25% !important;
18396
  }
16848 stevensc 18397
 
16825 efrain 18398
  .mn-wd-md-25p-f {
18399
    min-width: 25% !important;
18400
  }
16848 stevensc 18401
 
16825 efrain 18402
  .wd-md-30 {
18403
    width: 30px;
18404
  }
16848 stevensc 18405
 
16825 efrain 18406
  .wd-md-30p {
18407
    width: 30%;
18408
  }
16848 stevensc 18409
 
16825 efrain 18410
  .mx-wd-md-30p {
18411
    max-width: 30%;
18412
  }
16848 stevensc 18413
 
16825 efrain 18414
  .mn-wd-md-30p {
18415
    min-width: 30%;
18416
  }
16848 stevensc 18417
 
16825 efrain 18418
  .wd-md-30-f {
18419
    width: 30px !important;
18420
  }
16848 stevensc 18421
 
16825 efrain 18422
  .wd-md-30p-f {
18423
    width: 30% !important;
18424
  }
16848 stevensc 18425
 
16825 efrain 18426
  .mx-wd-md-30p-f {
18427
    max-width: 30% !important;
18428
  }
16848 stevensc 18429
 
16825 efrain 18430
  .mn-wd-md-30p-f {
18431
    min-width: 30% !important;
18432
  }
16848 stevensc 18433
 
16825 efrain 18434
  .wd-md-35 {
18435
    width: 35px;
18436
  }
16848 stevensc 18437
 
16825 efrain 18438
  .wd-md-35p {
18439
    width: 35%;
18440
  }
16848 stevensc 18441
 
16825 efrain 18442
  .mx-wd-md-35p {
18443
    max-width: 35%;
18444
  }
16848 stevensc 18445
 
16825 efrain 18446
  .mn-wd-md-35p {
18447
    min-width: 35%;
18448
  }
16848 stevensc 18449
 
16825 efrain 18450
  .wd-md-35-f {
18451
    width: 35px !important;
18452
  }
16848 stevensc 18453
 
16825 efrain 18454
  .wd-md-35p-f {
18455
    width: 35% !important;
18456
  }
16848 stevensc 18457
 
16825 efrain 18458
  .mx-wd-md-35p-f {
18459
    max-width: 35% !important;
18460
  }
16848 stevensc 18461
 
16825 efrain 18462
  .mn-wd-md-35p-f {
18463
    min-width: 35% !important;
18464
  }
16848 stevensc 18465
 
16825 efrain 18466
  .wd-md-40 {
18467
    width: 40px;
18468
  }
16848 stevensc 18469
 
16825 efrain 18470
  .wd-md-40p {
18471
    width: 40%;
18472
  }
16848 stevensc 18473
 
16825 efrain 18474
  .mx-wd-md-40p {
18475
    max-width: 40%;
18476
  }
16848 stevensc 18477
 
16825 efrain 18478
  .mn-wd-md-40p {
18479
    min-width: 40%;
18480
  }
16848 stevensc 18481
 
16825 efrain 18482
  .wd-md-40-f {
18483
    width: 40px !important;
18484
  }
16848 stevensc 18485
 
16825 efrain 18486
  .wd-md-40p-f {
18487
    width: 40% !important;
18488
  }
16848 stevensc 18489
 
16825 efrain 18490
  .mx-wd-md-40p-f {
18491
    max-width: 40% !important;
18492
  }
16848 stevensc 18493
 
16825 efrain 18494
  .mn-wd-md-40p-f {
18495
    min-width: 40% !important;
18496
  }
16848 stevensc 18497
 
16825 efrain 18498
  .wd-md-45 {
18499
    width: 45px;
18500
  }
16848 stevensc 18501
 
16825 efrain 18502
  .wd-md-45p {
18503
    width: 45%;
18504
  }
16848 stevensc 18505
 
16825 efrain 18506
  .mx-wd-md-45p {
18507
    max-width: 45%;
18508
  }
16848 stevensc 18509
 
16825 efrain 18510
  .mn-wd-md-45p {
18511
    min-width: 45%;
18512
  }
16848 stevensc 18513
 
16825 efrain 18514
  .wd-md-45-f {
18515
    width: 45px !important;
18516
  }
16848 stevensc 18517
 
16825 efrain 18518
  .wd-md-45p-f {
18519
    width: 45% !important;
18520
  }
16848 stevensc 18521
 
16825 efrain 18522
  .mx-wd-md-45p-f {
18523
    max-width: 45% !important;
18524
  }
16848 stevensc 18525
 
16825 efrain 18526
  .mn-wd-md-45p-f {
18527
    min-width: 45% !important;
18528
  }
16848 stevensc 18529
 
16825 efrain 18530
  .wd-md-50 {
18531
    width: 50px;
18532
  }
16848 stevensc 18533
 
16825 efrain 18534
  .wd-md-50p {
18535
    width: 50%;
18536
  }
16848 stevensc 18537
 
16825 efrain 18538
  .mx-wd-md-50p {
18539
    max-width: 50%;
18540
  }
16848 stevensc 18541
 
16825 efrain 18542
  .mn-wd-md-50p {
18543
    min-width: 50%;
18544
  }
16848 stevensc 18545
 
16825 efrain 18546
  .wd-md-50-f {
18547
    width: 50px !important;
18548
  }
16848 stevensc 18549
 
16825 efrain 18550
  .wd-md-50p-f {
18551
    width: 50% !important;
18552
  }
16848 stevensc 18553
 
16825 efrain 18554
  .mx-wd-md-50p-f {
18555
    max-width: 50% !important;
18556
  }
16848 stevensc 18557
 
16825 efrain 18558
  .mn-wd-md-50p-f {
18559
    min-width: 50% !important;
18560
  }
16848 stevensc 18561
 
16825 efrain 18562
  .wd-md-55 {
18563
    width: 55px;
18564
  }
16848 stevensc 18565
 
16825 efrain 18566
  .wd-md-55p {
18567
    width: 55%;
18568
  }
16848 stevensc 18569
 
16825 efrain 18570
  .mx-wd-md-55p {
18571
    max-width: 55%;
18572
  }
16848 stevensc 18573
 
16825 efrain 18574
  .mn-wd-md-55p {
18575
    min-width: 55%;
18576
  }
16848 stevensc 18577
 
16825 efrain 18578
  .wd-md-55-f {
18579
    width: 55px !important;
18580
  }
16848 stevensc 18581
 
16825 efrain 18582
  .wd-md-55p-f {
18583
    width: 55% !important;
18584
  }
16848 stevensc 18585
 
16825 efrain 18586
  .mx-wd-md-55p-f {
18587
    max-width: 55% !important;
18588
  }
16848 stevensc 18589
 
16825 efrain 18590
  .mn-wd-md-55p-f {
18591
    min-width: 55% !important;
18592
  }
16848 stevensc 18593
 
16825 efrain 18594
  .wd-md-60 {
18595
    width: 60px;
18596
  }
16848 stevensc 18597
 
16825 efrain 18598
  .wd-md-60p {
18599
    width: 60%;
18600
  }
16848 stevensc 18601
 
16825 efrain 18602
  .mx-wd-md-60p {
18603
    max-width: 60%;
18604
  }
16848 stevensc 18605
 
16825 efrain 18606
  .mn-wd-md-60p {
18607
    min-width: 60%;
18608
  }
16848 stevensc 18609
 
16825 efrain 18610
  .wd-md-60-f {
18611
    width: 60px !important;
18612
  }
16848 stevensc 18613
 
16825 efrain 18614
  .wd-md-60p-f {
18615
    width: 60% !important;
18616
  }
16848 stevensc 18617
 
16825 efrain 18618
  .mx-wd-md-60p-f {
18619
    max-width: 60% !important;
18620
  }
16848 stevensc 18621
 
16825 efrain 18622
  .mn-wd-md-60p-f {
18623
    min-width: 60% !important;
18624
  }
16848 stevensc 18625
 
16825 efrain 18626
  .wd-md-65 {
18627
    width: 65px;
18628
  }
16848 stevensc 18629
 
16825 efrain 18630
  .wd-md-65p {
18631
    width: 65%;
18632
  }
16848 stevensc 18633
 
16825 efrain 18634
  .mx-wd-md-65p {
18635
    max-width: 65%;
18636
  }
16848 stevensc 18637
 
16825 efrain 18638
  .mn-wd-md-65p {
18639
    min-width: 65%;
18640
  }
16848 stevensc 18641
 
16825 efrain 18642
  .wd-md-65-f {
18643
    width: 65px !important;
18644
  }
16848 stevensc 18645
 
16825 efrain 18646
  .wd-md-65p-f {
18647
    width: 65% !important;
18648
  }
16848 stevensc 18649
 
16825 efrain 18650
  .mx-wd-md-65p-f {
18651
    max-width: 65% !important;
18652
  }
16848 stevensc 18653
 
16825 efrain 18654
  .mn-wd-md-65p-f {
18655
    min-width: 65% !important;
18656
  }
16848 stevensc 18657
 
16825 efrain 18658
  .wd-md-70 {
18659
    width: 70px;
18660
  }
16848 stevensc 18661
 
16825 efrain 18662
  .wd-md-70p {
18663
    width: 70%;
18664
  }
16848 stevensc 18665
 
16825 efrain 18666
  .mx-wd-md-70p {
18667
    max-width: 70%;
18668
  }
16848 stevensc 18669
 
16825 efrain 18670
  .mn-wd-md-70p {
18671
    min-width: 70%;
18672
  }
16848 stevensc 18673
 
16825 efrain 18674
  .wd-md-70-f {
18675
    width: 70px !important;
18676
  }
16848 stevensc 18677
 
16825 efrain 18678
  .wd-md-70p-f {
18679
    width: 70% !important;
18680
  }
16848 stevensc 18681
 
16825 efrain 18682
  .mx-wd-md-70p-f {
18683
    max-width: 70% !important;
18684
  }
16848 stevensc 18685
 
16825 efrain 18686
  .mn-wd-md-70p-f {
18687
    min-width: 70% !important;
18688
  }
16848 stevensc 18689
 
16825 efrain 18690
  .wd-md-75 {
18691
    width: 75px;
18692
  }
16848 stevensc 18693
 
16825 efrain 18694
  .wd-md-75p {
18695
    width: 75%;
18696
  }
16848 stevensc 18697
 
16825 efrain 18698
  .mx-wd-md-75p {
18699
    max-width: 75%;
18700
  }
16848 stevensc 18701
 
16825 efrain 18702
  .mn-wd-md-75p {
18703
    min-width: 75%;
18704
  }
16848 stevensc 18705
 
16825 efrain 18706
  .wd-md-75-f {
18707
    width: 75px !important;
18708
  }
16848 stevensc 18709
 
16825 efrain 18710
  .wd-md-75p-f {
18711
    width: 75% !important;
18712
  }
16848 stevensc 18713
 
16825 efrain 18714
  .mx-wd-md-75p-f {
18715
    max-width: 75% !important;
18716
  }
16848 stevensc 18717
 
16825 efrain 18718
  .mn-wd-md-75p-f {
18719
    min-width: 75% !important;
18720
  }
16848 stevensc 18721
 
16825 efrain 18722
  .wd-md-80 {
18723
    width: 80px;
18724
  }
16848 stevensc 18725
 
16825 efrain 18726
  .wd-md-80p {
18727
    width: 80%;
18728
  }
16848 stevensc 18729
 
16825 efrain 18730
  .mx-wd-md-80p {
18731
    max-width: 80%;
18732
  }
16848 stevensc 18733
 
16825 efrain 18734
  .mn-wd-md-80p {
18735
    min-width: 80%;
18736
  }
16848 stevensc 18737
 
16825 efrain 18738
  .wd-md-80-f {
18739
    width: 80px !important;
18740
  }
16848 stevensc 18741
 
16825 efrain 18742
  .wd-md-80p-f {
18743
    width: 80% !important;
18744
  }
16848 stevensc 18745
 
16825 efrain 18746
  .mx-wd-md-80p-f {
18747
    max-width: 80% !important;
18748
  }
16848 stevensc 18749
 
16825 efrain 18750
  .mn-wd-md-80p-f {
18751
    min-width: 80% !important;
18752
  }
16848 stevensc 18753
 
16825 efrain 18754
  .wd-md-85 {
18755
    width: 85px;
18756
  }
16848 stevensc 18757
 
16825 efrain 18758
  .wd-md-85p {
18759
    width: 85%;
18760
  }
16848 stevensc 18761
 
16825 efrain 18762
  .mx-wd-md-85p {
18763
    max-width: 85%;
18764
  }
16848 stevensc 18765
 
16825 efrain 18766
  .mn-wd-md-85p {
18767
    min-width: 85%;
18768
  }
16848 stevensc 18769
 
16825 efrain 18770
  .wd-md-85-f {
18771
    width: 85px !important;
18772
  }
16848 stevensc 18773
 
16825 efrain 18774
  .wd-md-85p-f {
18775
    width: 85% !important;
18776
  }
16848 stevensc 18777
 
16825 efrain 18778
  .mx-wd-md-85p-f {
18779
    max-width: 85% !important;
18780
  }
16848 stevensc 18781
 
16825 efrain 18782
  .mn-wd-md-85p-f {
18783
    min-width: 85% !important;
18784
  }
16848 stevensc 18785
 
16825 efrain 18786
  .wd-md-90 {
18787
    width: 90px;
18788
  }
16848 stevensc 18789
 
16825 efrain 18790
  .wd-md-90p {
18791
    width: 90%;
18792
  }
16848 stevensc 18793
 
16825 efrain 18794
  .mx-wd-md-90p {
18795
    max-width: 90%;
18796
  }
16848 stevensc 18797
 
16825 efrain 18798
  .mn-wd-md-90p {
18799
    min-width: 90%;
18800
  }
16848 stevensc 18801
 
16825 efrain 18802
  .wd-md-90-f {
18803
    width: 90px !important;
18804
  }
16848 stevensc 18805
 
16825 efrain 18806
  .wd-md-90p-f {
18807
    width: 90% !important;
18808
  }
16848 stevensc 18809
 
16825 efrain 18810
  .mx-wd-md-90p-f {
18811
    max-width: 90% !important;
18812
  }
16848 stevensc 18813
 
16825 efrain 18814
  .mn-wd-md-90p-f {
18815
    min-width: 90% !important;
18816
  }
16848 stevensc 18817
 
16825 efrain 18818
  .wd-md-95 {
18819
    width: 95px;
18820
  }
16848 stevensc 18821
 
16825 efrain 18822
  .wd-md-95p {
18823
    width: 95%;
18824
  }
16848 stevensc 18825
 
16825 efrain 18826
  .mx-wd-md-95p {
18827
    max-width: 95%;
18828
  }
16848 stevensc 18829
 
16825 efrain 18830
  .mn-wd-md-95p {
18831
    min-width: 95%;
18832
  }
16848 stevensc 18833
 
16825 efrain 18834
  .wd-md-95-f {
18835
    width: 95px !important;
18836
  }
16848 stevensc 18837
 
16825 efrain 18838
  .wd-md-95p-f {
18839
    width: 95% !important;
18840
  }
16848 stevensc 18841
 
16825 efrain 18842
  .mx-wd-md-95p-f {
18843
    max-width: 95% !important;
18844
  }
16848 stevensc 18845
 
16825 efrain 18846
  .mn-wd-md-95p-f {
18847
    min-width: 95% !important;
18848
  }
16848 stevensc 18849
 
16825 efrain 18850
  .wd-md-100 {
18851
    width: 100px;
18852
  }
16848 stevensc 18853
 
16825 efrain 18854
  .wd-md-100p {
18855
    width: 100%;
18856
  }
16848 stevensc 18857
 
16825 efrain 18858
  .mx-wd-md-100p {
18859
    max-width: 100%;
18860
  }
16848 stevensc 18861
 
16825 efrain 18862
  .mn-wd-md-100p {
18863
    min-width: 100%;
18864
  }
16848 stevensc 18865
 
16825 efrain 18866
  .wd-md-100-f {
18867
    width: 100px !important;
18868
  }
16848 stevensc 18869
 
16825 efrain 18870
  .wd-md-100p-f {
18871
    width: 100% !important;
18872
  }
16848 stevensc 18873
 
16825 efrain 18874
  .mx-wd-md-100p-f {
18875
    max-width: 100% !important;
18876
  }
16848 stevensc 18877
 
16825 efrain 18878
  .mn-wd-md-100p-f {
18879
    min-width: 100% !important;
18880
  }
16848 stevensc 18881
 
16825 efrain 18882
  .wd-md-150 {
18883
    width: 150px;
18884
  }
16848 stevensc 18885
 
16825 efrain 18886
  .wd-md-150p {
18887
    width: 150%;
18888
  }
16848 stevensc 18889
 
16825 efrain 18890
  .mx-wd-md-150p {
18891
    max-width: 150%;
18892
  }
16848 stevensc 18893
 
16825 efrain 18894
  .mn-wd-md-150p {
18895
    min-width: 150%;
18896
  }
16848 stevensc 18897
 
16825 efrain 18898
  .wd-md-150-f {
18899
    width: 150px !important;
18900
  }
16848 stevensc 18901
 
16825 efrain 18902
  .wd-md-150p-f {
18903
    width: 150% !important;
18904
  }
16848 stevensc 18905
 
16825 efrain 18906
  .mx-wd-md-150p-f {
18907
    max-width: 150% !important;
18908
  }
16848 stevensc 18909
 
16825 efrain 18910
  .mn-wd-md-150p-f {
18911
    min-width: 150% !important;
18912
  }
16848 stevensc 18913
 
16825 efrain 18914
  .wd-md-200 {
18915
    width: 200px;
18916
  }
16848 stevensc 18917
 
16825 efrain 18918
  .wd-md-200p {
18919
    width: 200%;
18920
  }
16848 stevensc 18921
 
16825 efrain 18922
  .mx-wd-md-200p {
18923
    max-width: 200%;
18924
  }
16848 stevensc 18925
 
16825 efrain 18926
  .mn-wd-md-200p {
18927
    min-width: 200%;
18928
  }
16848 stevensc 18929
 
16825 efrain 18930
  .wd-md-200-f {
18931
    width: 200px !important;
18932
  }
16848 stevensc 18933
 
16825 efrain 18934
  .wd-md-200p-f {
18935
    width: 200% !important;
18936
  }
16848 stevensc 18937
 
16825 efrain 18938
  .mx-wd-md-200p-f {
18939
    max-width: 200% !important;
18940
  }
16848 stevensc 18941
 
16825 efrain 18942
  .mn-wd-md-200p-f {
18943
    min-width: 200% !important;
18944
  }
16848 stevensc 18945
 
16825 efrain 18946
  .wd-md-250 {
18947
    width: 250px;
18948
  }
16848 stevensc 18949
 
16825 efrain 18950
  .wd-md-250p {
18951
    width: 250%;
18952
  }
16848 stevensc 18953
 
16825 efrain 18954
  .mx-wd-md-250p {
18955
    max-width: 250%;
18956
  }
16848 stevensc 18957
 
16825 efrain 18958
  .mn-wd-md-250p {
18959
    min-width: 250%;
18960
  }
16848 stevensc 18961
 
16825 efrain 18962
  .wd-md-250-f {
18963
    width: 250px !important;
18964
  }
16848 stevensc 18965
 
16825 efrain 18966
  .wd-md-250p-f {
18967
    width: 250% !important;
18968
  }
16848 stevensc 18969
 
16825 efrain 18970
  .mx-wd-md-250p-f {
18971
    max-width: 250% !important;
18972
  }
16848 stevensc 18973
 
16825 efrain 18974
  .mn-wd-md-250p-f {
18975
    min-width: 250% !important;
18976
  }
16848 stevensc 18977
 
16825 efrain 18978
  .wd-md-300 {
18979
    width: 300px;
18980
  }
16848 stevensc 18981
 
16825 efrain 18982
  .wd-md-300p {
18983
    width: 300%;
18984
  }
16848 stevensc 18985
 
16825 efrain 18986
  .mx-wd-md-300p {
18987
    max-width: 300%;
18988
  }
16848 stevensc 18989
 
16825 efrain 18990
  .mn-wd-md-300p {
18991
    min-width: 300%;
18992
  }
16848 stevensc 18993
 
16825 efrain 18994
  .wd-md-300-f {
18995
    width: 300px !important;
18996
  }
16848 stevensc 18997
 
16825 efrain 18998
  .wd-md-300p-f {
18999
    width: 300% !important;
19000
  }
16848 stevensc 19001
 
16825 efrain 19002
  .mx-wd-md-300p-f {
19003
    max-width: 300% !important;
19004
  }
16848 stevensc 19005
 
16825 efrain 19006
  .mn-wd-md-300p-f {
19007
    min-width: 300% !important;
19008
  }
16848 stevensc 19009
 
16825 efrain 19010
  .wd-md-350 {
19011
    width: 350px;
19012
  }
16848 stevensc 19013
 
16825 efrain 19014
  .wd-md-350p {
19015
    width: 350%;
19016
  }
16848 stevensc 19017
 
16825 efrain 19018
  .mx-wd-md-350p {
19019
    max-width: 350%;
19020
  }
16848 stevensc 19021
 
16825 efrain 19022
  .mn-wd-md-350p {
19023
    min-width: 350%;
19024
  }
16848 stevensc 19025
 
16825 efrain 19026
  .wd-md-350-f {
19027
    width: 350px !important;
19028
  }
16848 stevensc 19029
 
16825 efrain 19030
  .wd-md-350p-f {
19031
    width: 350% !important;
19032
  }
16848 stevensc 19033
 
16825 efrain 19034
  .mx-wd-md-350p-f {
19035
    max-width: 350% !important;
19036
  }
16848 stevensc 19037
 
16825 efrain 19038
  .mn-wd-md-350p-f {
19039
    min-width: 350% !important;
19040
  }
16848 stevensc 19041
 
16825 efrain 19042
  .wd-md-400 {
19043
    width: 400px;
19044
  }
16848 stevensc 19045
 
16825 efrain 19046
  .wd-md-400p {
19047
    width: 400%;
19048
  }
16848 stevensc 19049
 
16825 efrain 19050
  .mx-wd-md-400p {
19051
    max-width: 400%;
19052
  }
16848 stevensc 19053
 
16825 efrain 19054
  .mn-wd-md-400p {
19055
    min-width: 400%;
19056
  }
16848 stevensc 19057
 
16825 efrain 19058
  .wd-md-400-f {
19059
    width: 400px !important;
19060
  }
16848 stevensc 19061
 
16825 efrain 19062
  .wd-md-400p-f {
19063
    width: 400% !important;
19064
  }
16848 stevensc 19065
 
16825 efrain 19066
  .mx-wd-md-400p-f {
19067
    max-width: 400% !important;
19068
  }
16848 stevensc 19069
 
16825 efrain 19070
  .mn-wd-md-400p-f {
19071
    min-width: 400% !important;
19072
  }
16848 stevensc 19073
 
16825 efrain 19074
  .wd-md-450 {
19075
    width: 450px;
19076
  }
16848 stevensc 19077
 
16825 efrain 19078
  .wd-md-450p {
19079
    width: 450%;
19080
  }
16848 stevensc 19081
 
16825 efrain 19082
  .mx-wd-md-450p {
19083
    max-width: 450%;
19084
  }
16848 stevensc 19085
 
16825 efrain 19086
  .mn-wd-md-450p {
19087
    min-width: 450%;
19088
  }
16848 stevensc 19089
 
16825 efrain 19090
  .wd-md-450-f {
19091
    width: 450px !important;
19092
  }
16848 stevensc 19093
 
16825 efrain 19094
  .wd-md-450p-f {
19095
    width: 450% !important;
19096
  }
16848 stevensc 19097
 
16825 efrain 19098
  .mx-wd-md-450p-f {
19099
    max-width: 450% !important;
19100
  }
16848 stevensc 19101
 
16825 efrain 19102
  .mn-wd-md-450p-f {
19103
    min-width: 450% !important;
19104
  }
16848 stevensc 19105
 
16825 efrain 19106
  .wd-md-500 {
19107
    width: 500px;
19108
  }
16848 stevensc 19109
 
16825 efrain 19110
  .wd-md-500p {
19111
    width: 500%;
19112
  }
16848 stevensc 19113
 
16825 efrain 19114
  .mx-wd-md-500p {
19115
    max-width: 500%;
19116
  }
16848 stevensc 19117
 
16825 efrain 19118
  .mn-wd-md-500p {
19119
    min-width: 500%;
19120
  }
16848 stevensc 19121
 
16825 efrain 19122
  .wd-md-500-f {
19123
    width: 500px !important;
19124
  }
16848 stevensc 19125
 
16825 efrain 19126
  .wd-md-500p-f {
19127
    width: 500% !important;
19128
  }
16848 stevensc 19129
 
16825 efrain 19130
  .mx-wd-md-500p-f {
19131
    max-width: 500% !important;
19132
  }
16848 stevensc 19133
 
16825 efrain 19134
  .mn-wd-md-500p-f {
19135
    min-width: 500% !important;
19136
  }
16848 stevensc 19137
 
16825 efrain 19138
  .wd-md-550 {
19139
    width: 550px;
19140
  }
16848 stevensc 19141
 
16825 efrain 19142
  .wd-md-550p {
19143
    width: 550%;
19144
  }
16848 stevensc 19145
 
16825 efrain 19146
  .mx-wd-md-550p {
19147
    max-width: 550%;
19148
  }
16848 stevensc 19149
 
16825 efrain 19150
  .mn-wd-md-550p {
19151
    min-width: 550%;
19152
  }
16848 stevensc 19153
 
16825 efrain 19154
  .wd-md-550-f {
19155
    width: 550px !important;
19156
  }
16848 stevensc 19157
 
16825 efrain 19158
  .wd-md-550p-f {
19159
    width: 550% !important;
19160
  }
16848 stevensc 19161
 
16825 efrain 19162
  .mx-wd-md-550p-f {
19163
    max-width: 550% !important;
19164
  }
16848 stevensc 19165
 
16825 efrain 19166
  .mn-wd-md-550p-f {
19167
    min-width: 550% !important;
19168
  }
16848 stevensc 19169
 
16825 efrain 19170
  .wd-md-600 {
19171
    width: 600px;
19172
  }
16848 stevensc 19173
 
16825 efrain 19174
  .wd-md-600p {
19175
    width: 600%;
19176
  }
16848 stevensc 19177
 
16825 efrain 19178
  .mx-wd-md-600p {
19179
    max-width: 600%;
19180
  }
16848 stevensc 19181
 
16825 efrain 19182
  .mn-wd-md-600p {
19183
    min-width: 600%;
19184
  }
16848 stevensc 19185
 
16825 efrain 19186
  .wd-md-600-f {
19187
    width: 600px !important;
19188
  }
16848 stevensc 19189
 
16825 efrain 19190
  .wd-md-600p-f {
19191
    width: 600% !important;
19192
  }
16848 stevensc 19193
 
16825 efrain 19194
  .mx-wd-md-600p-f {
19195
    max-width: 600% !important;
19196
  }
16848 stevensc 19197
 
16825 efrain 19198
  .mn-wd-md-600p-f {
19199
    min-width: 600% !important;
19200
  }
16848 stevensc 19201
 
16825 efrain 19202
  .wd-md-650 {
19203
    width: 650px;
19204
  }
16848 stevensc 19205
 
16825 efrain 19206
  .wd-md-650p {
19207
    width: 650%;
19208
  }
16848 stevensc 19209
 
16825 efrain 19210
  .mx-wd-md-650p {
19211
    max-width: 650%;
19212
  }
16848 stevensc 19213
 
16825 efrain 19214
  .mn-wd-md-650p {
19215
    min-width: 650%;
19216
  }
16848 stevensc 19217
 
16825 efrain 19218
  .wd-md-650-f {
19219
    width: 650px !important;
19220
  }
16848 stevensc 19221
 
16825 efrain 19222
  .wd-md-650p-f {
19223
    width: 650% !important;
19224
  }
16848 stevensc 19225
 
16825 efrain 19226
  .mx-wd-md-650p-f {
19227
    max-width: 650% !important;
19228
  }
16848 stevensc 19229
 
16825 efrain 19230
  .mn-wd-md-650p-f {
19231
    min-width: 650% !important;
19232
  }
16848 stevensc 19233
 
16825 efrain 19234
  .wd-md-700 {
19235
    width: 700px;
19236
  }
16848 stevensc 19237
 
16825 efrain 19238
  .wd-md-700p {
19239
    width: 700%;
19240
  }
16848 stevensc 19241
 
16825 efrain 19242
  .mx-wd-md-700p {
19243
    max-width: 700%;
19244
  }
16848 stevensc 19245
 
16825 efrain 19246
  .mn-wd-md-700p {
19247
    min-width: 700%;
19248
  }
16848 stevensc 19249
 
16825 efrain 19250
  .wd-md-700-f {
19251
    width: 700px !important;
19252
  }
16848 stevensc 19253
 
16825 efrain 19254
  .wd-md-700p-f {
19255
    width: 700% !important;
19256
  }
16848 stevensc 19257
 
16825 efrain 19258
  .mx-wd-md-700p-f {
19259
    max-width: 700% !important;
19260
  }
16848 stevensc 19261
 
16825 efrain 19262
  .mn-wd-md-700p-f {
19263
    min-width: 700% !important;
19264
  }
16848 stevensc 19265
 
16825 efrain 19266
  .wd-md-750 {
19267
    width: 750px;
19268
  }
16848 stevensc 19269
 
16825 efrain 19270
  .wd-md-750p {
19271
    width: 750%;
19272
  }
16848 stevensc 19273
 
16825 efrain 19274
  .mx-wd-md-750p {
19275
    max-width: 750%;
19276
  }
16848 stevensc 19277
 
16825 efrain 19278
  .mn-wd-md-750p {
19279
    min-width: 750%;
19280
  }
16848 stevensc 19281
 
16825 efrain 19282
  .wd-md-750-f {
19283
    width: 750px !important;
19284
  }
16848 stevensc 19285
 
16825 efrain 19286
  .wd-md-750p-f {
19287
    width: 750% !important;
19288
  }
16848 stevensc 19289
 
16825 efrain 19290
  .mx-wd-md-750p-f {
19291
    max-width: 750% !important;
19292
  }
16848 stevensc 19293
 
16825 efrain 19294
  .mn-wd-md-750p-f {
19295
    min-width: 750% !important;
19296
  }
16848 stevensc 19297
 
16825 efrain 19298
  .wd-md-800 {
19299
    width: 800px;
19300
  }
16848 stevensc 19301
 
16825 efrain 19302
  .wd-md-800p {
19303
    width: 800%;
19304
  }
16848 stevensc 19305
 
16825 efrain 19306
  .mx-wd-md-800p {
19307
    max-width: 800%;
19308
  }
16848 stevensc 19309
 
16825 efrain 19310
  .mn-wd-md-800p {
19311
    min-width: 800%;
19312
  }
16848 stevensc 19313
 
16825 efrain 19314
  .wd-md-800-f {
19315
    width: 800px !important;
19316
  }
16848 stevensc 19317
 
16825 efrain 19318
  .wd-md-800p-f {
19319
    width: 800% !important;
19320
  }
16848 stevensc 19321
 
16825 efrain 19322
  .mx-wd-md-800p-f {
19323
    max-width: 800% !important;
19324
  }
16848 stevensc 19325
 
16825 efrain 19326
  .mn-wd-md-800p-f {
19327
    min-width: 800% !important;
19328
  }
16848 stevensc 19329
 
16825 efrain 19330
  .wd-md-850 {
19331
    width: 850px;
19332
  }
16848 stevensc 19333
 
16825 efrain 19334
  .wd-md-850p {
19335
    width: 850%;
19336
  }
16848 stevensc 19337
 
16825 efrain 19338
  .mx-wd-md-850p {
19339
    max-width: 850%;
19340
  }
16848 stevensc 19341
 
16825 efrain 19342
  .mn-wd-md-850p {
19343
    min-width: 850%;
19344
  }
16848 stevensc 19345
 
16825 efrain 19346
  .wd-md-850-f {
19347
    width: 850px !important;
19348
  }
16848 stevensc 19349
 
16825 efrain 19350
  .wd-md-850p-f {
19351
    width: 850% !important;
19352
  }
16848 stevensc 19353
 
16825 efrain 19354
  .mx-wd-md-850p-f {
19355
    max-width: 850% !important;
19356
  }
16848 stevensc 19357
 
16825 efrain 19358
  .mn-wd-md-850p-f {
19359
    min-width: 850% !important;
19360
  }
16848 stevensc 19361
 
16825 efrain 19362
  .wd-md-900 {
19363
    width: 900px;
19364
  }
16848 stevensc 19365
 
16825 efrain 19366
  .wd-md-900p {
19367
    width: 900%;
19368
  }
16848 stevensc 19369
 
16825 efrain 19370
  .mx-wd-md-900p {
19371
    max-width: 900%;
19372
  }
16848 stevensc 19373
 
16825 efrain 19374
  .mn-wd-md-900p {
19375
    min-width: 900%;
19376
  }
16848 stevensc 19377
 
16825 efrain 19378
  .wd-md-900-f {
19379
    width: 900px !important;
19380
  }
16848 stevensc 19381
 
16825 efrain 19382
  .wd-md-900p-f {
19383
    width: 900% !important;
19384
  }
16848 stevensc 19385
 
16825 efrain 19386
  .mx-wd-md-900p-f {
19387
    max-width: 900% !important;
19388
  }
16848 stevensc 19389
 
16825 efrain 19390
  .mn-wd-md-900p-f {
19391
    min-width: 900% !important;
19392
  }
16848 stevensc 19393
 
16825 efrain 19394
  .wd-md-950 {
19395
    width: 950px;
19396
  }
16848 stevensc 19397
 
16825 efrain 19398
  .wd-md-950p {
19399
    width: 950%;
19400
  }
16848 stevensc 19401
 
16825 efrain 19402
  .mx-wd-md-950p {
19403
    max-width: 950%;
19404
  }
16848 stevensc 19405
 
16825 efrain 19406
  .mn-wd-md-950p {
19407
    min-width: 950%;
19408
  }
16848 stevensc 19409
 
16825 efrain 19410
  .wd-md-950-f {
19411
    width: 950px !important;
19412
  }
16848 stevensc 19413
 
16825 efrain 19414
  .wd-md-950p-f {
19415
    width: 950% !important;
19416
  }
16848 stevensc 19417
 
16825 efrain 19418
  .mx-wd-md-950p-f {
19419
    max-width: 950% !important;
19420
  }
16848 stevensc 19421
 
16825 efrain 19422
  .mn-wd-md-950p-f {
19423
    min-width: 950% !important;
19424
  }
16848 stevensc 19425
 
16825 efrain 19426
  .wd-md-1000 {
19427
    width: 1000px;
19428
  }
16848 stevensc 19429
 
16825 efrain 19430
  .wd-md-1000p {
19431
    width: 1000%;
19432
  }
16848 stevensc 19433
 
16825 efrain 19434
  .mx-wd-md-1000p {
19435
    max-width: 1000%;
19436
  }
16848 stevensc 19437
 
16825 efrain 19438
  .mn-wd-md-1000p {
19439
    min-width: 1000%;
19440
  }
16848 stevensc 19441
 
16825 efrain 19442
  .wd-md-1000-f {
19443
    width: 1000px !important;
19444
  }
16848 stevensc 19445
 
16825 efrain 19446
  .wd-md-1000p-f {
19447
    width: 1000% !important;
19448
  }
16848 stevensc 19449
 
16825 efrain 19450
  .mx-wd-md-1000p-f {
19451
    max-width: 1000% !important;
19452
  }
16848 stevensc 19453
 
16825 efrain 19454
  .mn-wd-md-1000p-f {
19455
    min-width: 1000% !important;
19456
  }
16848 stevensc 19457
 
16825 efrain 19458
  .wd-md-auto {
19459
    width: auto;
19460
  }
16848 stevensc 19461
 
16825 efrain 19462
  .wd-md-auto-f {
19463
    width: auto !important;
19464
  }
16848 stevensc 19465
 
16825 efrain 19466
  .wd-md-120 {
19467
    width: 120px;
19468
  }
19469
}
16848 stevensc 19470
 
16825 efrain 19471
@media (min-width: 992px) {
19472
  .wd-lg-5 {
19473
    width: 5px;
19474
  }
16848 stevensc 19475
 
16825 efrain 19476
  .wd-lg-5p {
19477
    width: 5%;
19478
  }
16848 stevensc 19479
 
16825 efrain 19480
  .mx-wd-lg-5p {
19481
    max-width: 5%;
19482
  }
16848 stevensc 19483
 
16825 efrain 19484
  .mn-wd-lg-5p {
19485
    min-width: 5%;
19486
  }
16848 stevensc 19487
 
16825 efrain 19488
  .wd-lg-5-f {
19489
    width: 5px !important;
19490
  }
16848 stevensc 19491
 
16825 efrain 19492
  .wd-lg-5p-f {
19493
    width: 5% !important;
19494
  }
16848 stevensc 19495
 
16825 efrain 19496
  .mx-wd-lg-5p-f {
19497
    max-width: 5% !important;
19498
  }
16848 stevensc 19499
 
16825 efrain 19500
  .mn-wd-lg-5p-f {
19501
    min-width: 5% !important;
19502
  }
16848 stevensc 19503
 
16825 efrain 19504
  .wd-lg-10 {
19505
    width: 10px;
19506
  }
16848 stevensc 19507
 
16825 efrain 19508
  .wd-lg-10p {
19509
    width: 10%;
19510
  }
16848 stevensc 19511
 
16825 efrain 19512
  .mx-wd-lg-10p {
19513
    max-width: 10%;
19514
  }
16848 stevensc 19515
 
16825 efrain 19516
  .mn-wd-lg-10p {
19517
    min-width: 10%;
19518
  }
16848 stevensc 19519
 
16825 efrain 19520
  .wd-lg-10-f {
19521
    width: 10px !important;
19522
  }
16848 stevensc 19523
 
16825 efrain 19524
  .wd-lg-10p-f {
19525
    width: 10% !important;
19526
  }
16848 stevensc 19527
 
16825 efrain 19528
  .mx-wd-lg-10p-f {
19529
    max-width: 10% !important;
19530
  }
16848 stevensc 19531
 
16825 efrain 19532
  .mn-wd-lg-10p-f {
19533
    min-width: 10% !important;
19534
  }
16848 stevensc 19535
 
16825 efrain 19536
  .wd-lg-15 {
19537
    width: 15px;
19538
  }
16848 stevensc 19539
 
16825 efrain 19540
  .wd-lg-15p {
19541
    width: 15%;
19542
  }
16848 stevensc 19543
 
16825 efrain 19544
  .mx-wd-lg-15p {
19545
    max-width: 15%;
19546
  }
16848 stevensc 19547
 
16825 efrain 19548
  .mn-wd-lg-15p {
19549
    min-width: 15%;
19550
  }
16848 stevensc 19551
 
16825 efrain 19552
  .wd-lg-15-f {
19553
    width: 15px !important;
19554
  }
16848 stevensc 19555
 
16825 efrain 19556
  .wd-lg-15p-f {
19557
    width: 15% !important;
19558
  }
16848 stevensc 19559
 
16825 efrain 19560
  .mx-wd-lg-15p-f {
19561
    max-width: 15% !important;
19562
  }
16848 stevensc 19563
 
16825 efrain 19564
  .mn-wd-lg-15p-f {
19565
    min-width: 15% !important;
19566
  }
16848 stevensc 19567
 
16825 efrain 19568
  .wd-lg-20 {
19569
    width: 20px;
19570
  }
16848 stevensc 19571
 
16825 efrain 19572
  .wd-lg-20p {
19573
    width: 20%;
19574
  }
16848 stevensc 19575
 
16825 efrain 19576
  .mx-wd-lg-20p {
19577
    max-width: 20%;
19578
  }
16848 stevensc 19579
 
16825 efrain 19580
  .mn-wd-lg-20p {
19581
    min-width: 20%;
19582
  }
16848 stevensc 19583
 
16825 efrain 19584
  .wd-lg-20-f {
19585
    width: 20px !important;
19586
  }
16848 stevensc 19587
 
16825 efrain 19588
  .wd-lg-20p-f {
19589
    width: 20% !important;
19590
  }
16848 stevensc 19591
 
16825 efrain 19592
  .mx-wd-lg-20p-f {
19593
    max-width: 20% !important;
19594
  }
16848 stevensc 19595
 
16825 efrain 19596
  .mn-wd-lg-20p-f {
19597
    min-width: 20% !important;
19598
  }
16848 stevensc 19599
 
16825 efrain 19600
  .wd-lg-25 {
19601
    width: 25px;
19602
  }
16848 stevensc 19603
 
16825 efrain 19604
  .wd-lg-25p {
19605
    width: 25%;
19606
  }
16848 stevensc 19607
 
16825 efrain 19608
  .mx-wd-lg-25p {
19609
    max-width: 25%;
19610
  }
16848 stevensc 19611
 
16825 efrain 19612
  .mn-wd-lg-25p {
19613
    min-width: 25%;
19614
  }
16848 stevensc 19615
 
16825 efrain 19616
  .wd-lg-25-f {
19617
    width: 25px !important;
19618
  }
16848 stevensc 19619
 
16825 efrain 19620
  .wd-lg-25p-f {
19621
    width: 25% !important;
19622
  }
16848 stevensc 19623
 
16825 efrain 19624
  .mx-wd-lg-25p-f {
19625
    max-width: 25% !important;
19626
  }
16848 stevensc 19627
 
16825 efrain 19628
  .mn-wd-lg-25p-f {
19629
    min-width: 25% !important;
19630
  }
16848 stevensc 19631
 
16825 efrain 19632
  .wd-lg-30 {
19633
    width: 30px;
19634
  }
16848 stevensc 19635
 
16825 efrain 19636
  .wd-lg-30p {
19637
    width: 30%;
19638
  }
16848 stevensc 19639
 
16825 efrain 19640
  .mx-wd-lg-30p {
19641
    max-width: 30%;
19642
  }
16848 stevensc 19643
 
16825 efrain 19644
  .mn-wd-lg-30p {
19645
    min-width: 30%;
19646
  }
16848 stevensc 19647
 
16825 efrain 19648
  .wd-lg-30-f {
19649
    width: 30px !important;
19650
  }
16848 stevensc 19651
 
16825 efrain 19652
  .wd-lg-30p-f {
19653
    width: 30% !important;
19654
  }
16848 stevensc 19655
 
16825 efrain 19656
  .mx-wd-lg-30p-f {
19657
    max-width: 30% !important;
19658
  }
16848 stevensc 19659
 
16825 efrain 19660
  .mn-wd-lg-30p-f {
19661
    min-width: 30% !important;
19662
  }
16848 stevensc 19663
 
16825 efrain 19664
  .wd-lg-35 {
19665
    width: 35px;
19666
  }
16848 stevensc 19667
 
16825 efrain 19668
  .wd-lg-35p {
19669
    width: 35%;
19670
  }
16848 stevensc 19671
 
16825 efrain 19672
  .mx-wd-lg-35p {
19673
    max-width: 35%;
19674
  }
16848 stevensc 19675
 
16825 efrain 19676
  .mn-wd-lg-35p {
19677
    min-width: 35%;
19678
  }
16848 stevensc 19679
 
16825 efrain 19680
  .wd-lg-35-f {
19681
    width: 35px !important;
19682
  }
16848 stevensc 19683
 
16825 efrain 19684
  .wd-lg-35p-f {
19685
    width: 35% !important;
19686
  }
16848 stevensc 19687
 
16825 efrain 19688
  .mx-wd-lg-35p-f {
19689
    max-width: 35% !important;
19690
  }
16848 stevensc 19691
 
16825 efrain 19692
  .mn-wd-lg-35p-f {
19693
    min-width: 35% !important;
19694
  }
16848 stevensc 19695
 
16825 efrain 19696
  .wd-lg-40 {
19697
    width: 40px;
19698
  }
16848 stevensc 19699
 
16825 efrain 19700
  .wd-lg-40p {
19701
    width: 40%;
19702
  }
16848 stevensc 19703
 
16825 efrain 19704
  .mx-wd-lg-40p {
19705
    max-width: 40%;
19706
  }
16848 stevensc 19707
 
16825 efrain 19708
  .mn-wd-lg-40p {
19709
    min-width: 40%;
19710
  }
16848 stevensc 19711
 
16825 efrain 19712
  .wd-lg-40-f {
19713
    width: 40px !important;
19714
  }
16848 stevensc 19715
 
16825 efrain 19716
  .wd-lg-40p-f {
19717
    width: 40% !important;
19718
  }
16848 stevensc 19719
 
16825 efrain 19720
  .mx-wd-lg-40p-f {
19721
    max-width: 40% !important;
19722
  }
16848 stevensc 19723
 
16825 efrain 19724
  .mn-wd-lg-40p-f {
19725
    min-width: 40% !important;
19726
  }
16848 stevensc 19727
 
16825 efrain 19728
  .wd-lg-45 {
19729
    width: 45px;
19730
  }
16848 stevensc 19731
 
16825 efrain 19732
  .wd-lg-45p {
19733
    width: 45%;
19734
  }
16848 stevensc 19735
 
16825 efrain 19736
  .mx-wd-lg-45p {
19737
    max-width: 45%;
19738
  }
16848 stevensc 19739
 
16825 efrain 19740
  .mn-wd-lg-45p {
19741
    min-width: 45%;
19742
  }
16848 stevensc 19743
 
16825 efrain 19744
  .wd-lg-45-f {
19745
    width: 45px !important;
19746
  }
16848 stevensc 19747
 
16825 efrain 19748
  .wd-lg-45p-f {
19749
    width: 45% !important;
19750
  }
16848 stevensc 19751
 
16825 efrain 19752
  .mx-wd-lg-45p-f {
19753
    max-width: 45% !important;
19754
  }
16848 stevensc 19755
 
16825 efrain 19756
  .mn-wd-lg-45p-f {
19757
    min-width: 45% !important;
19758
  }
16848 stevensc 19759
 
16825 efrain 19760
  .wd-lg-50 {
19761
    width: 50px;
19762
  }
16848 stevensc 19763
 
16825 efrain 19764
  .wd-lg-50p {
19765
    width: 50%;
19766
  }
16848 stevensc 19767
 
16825 efrain 19768
  .mx-wd-lg-50p {
19769
    max-width: 50%;
19770
  }
16848 stevensc 19771
 
16825 efrain 19772
  .mn-wd-lg-50p {
19773
    min-width: 50%;
19774
  }
16848 stevensc 19775
 
16825 efrain 19776
  .wd-lg-50-f {
19777
    width: 50px !important;
19778
  }
16848 stevensc 19779
 
16825 efrain 19780
  .wd-lg-50p-f {
19781
    width: 50% !important;
19782
  }
16848 stevensc 19783
 
16825 efrain 19784
  .mx-wd-lg-50p-f {
19785
    max-width: 50% !important;
19786
  }
16848 stevensc 19787
 
16825 efrain 19788
  .mn-wd-lg-50p-f {
19789
    min-width: 50% !important;
19790
  }
16848 stevensc 19791
 
16825 efrain 19792
  .wd-lg-55 {
19793
    width: 55px;
19794
  }
16848 stevensc 19795
 
16825 efrain 19796
  .wd-lg-55p {
19797
    width: 55%;
19798
  }
16848 stevensc 19799
 
16825 efrain 19800
  .mx-wd-lg-55p {
19801
    max-width: 55%;
19802
  }
16848 stevensc 19803
 
16825 efrain 19804
  .mn-wd-lg-55p {
19805
    min-width: 55%;
19806
  }
16848 stevensc 19807
 
16825 efrain 19808
  .wd-lg-55-f {
19809
    width: 55px !important;
19810
  }
16848 stevensc 19811
 
16825 efrain 19812
  .wd-lg-55p-f {
19813
    width: 55% !important;
19814
  }
16848 stevensc 19815
 
16825 efrain 19816
  .mx-wd-lg-55p-f {
19817
    max-width: 55% !important;
19818
  }
16848 stevensc 19819
 
16825 efrain 19820
  .mn-wd-lg-55p-f {
19821
    min-width: 55% !important;
19822
  }
16848 stevensc 19823
 
16825 efrain 19824
  .wd-lg-60 {
19825
    width: 60px;
19826
  }
16848 stevensc 19827
 
16825 efrain 19828
  .wd-lg-60p {
19829
    width: 60%;
19830
  }
16848 stevensc 19831
 
16825 efrain 19832
  .mx-wd-lg-60p {
19833
    max-width: 60%;
19834
  }
16848 stevensc 19835
 
16825 efrain 19836
  .mn-wd-lg-60p {
19837
    min-width: 60%;
19838
  }
16848 stevensc 19839
 
16825 efrain 19840
  .wd-lg-60-f {
19841
    width: 60px !important;
19842
  }
16848 stevensc 19843
 
16825 efrain 19844
  .wd-lg-60p-f {
19845
    width: 60% !important;
19846
  }
16848 stevensc 19847
 
16825 efrain 19848
  .mx-wd-lg-60p-f {
19849
    max-width: 60% !important;
19850
  }
16848 stevensc 19851
 
16825 efrain 19852
  .mn-wd-lg-60p-f {
19853
    min-width: 60% !important;
19854
  }
16848 stevensc 19855
 
16825 efrain 19856
  .wd-lg-65 {
19857
    width: 65px;
19858
  }
16848 stevensc 19859
 
16825 efrain 19860
  .wd-lg-65p {
19861
    width: 65%;
19862
  }
16848 stevensc 19863
 
16825 efrain 19864
  .mx-wd-lg-65p {
19865
    max-width: 65%;
19866
  }
16848 stevensc 19867
 
16825 efrain 19868
  .mn-wd-lg-65p {
19869
    min-width: 65%;
19870
  }
16848 stevensc 19871
 
16825 efrain 19872
  .wd-lg-65-f {
19873
    width: 65px !important;
19874
  }
16848 stevensc 19875
 
16825 efrain 19876
  .wd-lg-65p-f {
19877
    width: 65% !important;
19878
  }
16848 stevensc 19879
 
16825 efrain 19880
  .mx-wd-lg-65p-f {
19881
    max-width: 65% !important;
19882
  }
16848 stevensc 19883
 
16825 efrain 19884
  .mn-wd-lg-65p-f {
19885
    min-width: 65% !important;
19886
  }
16848 stevensc 19887
 
16825 efrain 19888
  .wd-lg-70 {
19889
    width: 70px;
19890
  }
16848 stevensc 19891
 
16825 efrain 19892
  .wd-lg-70p {
19893
    width: 70%;
19894
  }
16848 stevensc 19895
 
16825 efrain 19896
  .mx-wd-lg-70p {
19897
    max-width: 70%;
19898
  }
16848 stevensc 19899
 
16825 efrain 19900
  .mn-wd-lg-70p {
19901
    min-width: 70%;
19902
  }
16848 stevensc 19903
 
16825 efrain 19904
  .wd-lg-70-f {
19905
    width: 70px !important;
19906
  }
16848 stevensc 19907
 
16825 efrain 19908
  .wd-lg-70p-f {
19909
    width: 70% !important;
19910
  }
16848 stevensc 19911
 
16825 efrain 19912
  .mx-wd-lg-70p-f {
19913
    max-width: 70% !important;
19914
  }
16848 stevensc 19915
 
16825 efrain 19916
  .mn-wd-lg-70p-f {
19917
    min-width: 70% !important;
19918
  }
16848 stevensc 19919
 
16825 efrain 19920
  .wd-lg-75 {
19921
    width: 75px;
19922
  }
16848 stevensc 19923
 
16825 efrain 19924
  .wd-lg-75p {
19925
    width: 75%;
19926
  }
16848 stevensc 19927
 
16825 efrain 19928
  .mx-wd-lg-75p {
19929
    max-width: 75%;
19930
  }
16848 stevensc 19931
 
16825 efrain 19932
  .mn-wd-lg-75p {
19933
    min-width: 75%;
19934
  }
16848 stevensc 19935
 
16825 efrain 19936
  .wd-lg-75-f {
19937
    width: 75px !important;
19938
  }
16848 stevensc 19939
 
16825 efrain 19940
  .wd-lg-75p-f {
19941
    width: 75% !important;
19942
  }
16848 stevensc 19943
 
16825 efrain 19944
  .mx-wd-lg-75p-f {
19945
    max-width: 75% !important;
19946
  }
16848 stevensc 19947
 
16825 efrain 19948
  .mn-wd-lg-75p-f {
19949
    min-width: 75% !important;
19950
  }
16848 stevensc 19951
 
16825 efrain 19952
  .wd-lg-80 {
19953
    width: 80px;
19954
  }
16848 stevensc 19955
 
16825 efrain 19956
  .wd-lg-80p {
19957
    width: 80%;
19958
  }
16848 stevensc 19959
 
16825 efrain 19960
  .mx-wd-lg-80p {
19961
    max-width: 80%;
19962
  }
16848 stevensc 19963
 
16825 efrain 19964
  .mn-wd-lg-80p {
19965
    min-width: 80%;
19966
  }
16848 stevensc 19967
 
16825 efrain 19968
  .wd-lg-80-f {
19969
    width: 80px !important;
19970
  }
16848 stevensc 19971
 
16825 efrain 19972
  .wd-lg-80p-f {
19973
    width: 80% !important;
19974
  }
16848 stevensc 19975
 
16825 efrain 19976
  .mx-wd-lg-80p-f {
19977
    max-width: 80% !important;
19978
  }
16848 stevensc 19979
 
16825 efrain 19980
  .mn-wd-lg-80p-f {
19981
    min-width: 80% !important;
19982
  }
16848 stevensc 19983
 
16825 efrain 19984
  .wd-lg-85 {
19985
    width: 85px;
19986
  }
16848 stevensc 19987
 
16825 efrain 19988
  .wd-lg-85p {
19989
    width: 85%;
19990
  }
16848 stevensc 19991
 
16825 efrain 19992
  .mx-wd-lg-85p {
19993
    max-width: 85%;
19994
  }
16848 stevensc 19995
 
16825 efrain 19996
  .mn-wd-lg-85p {
19997
    min-width: 85%;
19998
  }
16848 stevensc 19999
 
16825 efrain 20000
  .wd-lg-85-f {
20001
    width: 85px !important;
20002
  }
16848 stevensc 20003
 
16825 efrain 20004
  .wd-lg-85p-f {
20005
    width: 85% !important;
20006
  }
16848 stevensc 20007
 
16825 efrain 20008
  .mx-wd-lg-85p-f {
20009
    max-width: 85% !important;
20010
  }
16848 stevensc 20011
 
16825 efrain 20012
  .mn-wd-lg-85p-f {
20013
    min-width: 85% !important;
20014
  }
16848 stevensc 20015
 
16825 efrain 20016
  .wd-lg-90 {
20017
    width: 90px;
20018
  }
16848 stevensc 20019
 
16825 efrain 20020
  .wd-lg-90p {
20021
    width: 90%;
20022
  }
16848 stevensc 20023
 
16825 efrain 20024
  .mx-wd-lg-90p {
20025
    max-width: 90%;
20026
  }
16848 stevensc 20027
 
16825 efrain 20028
  .mn-wd-lg-90p {
20029
    min-width: 90%;
20030
  }
16848 stevensc 20031
 
16825 efrain 20032
  .wd-lg-90-f {
20033
    width: 90px !important;
20034
  }
16848 stevensc 20035
 
16825 efrain 20036
  .wd-lg-90p-f {
20037
    width: 90% !important;
20038
  }
16848 stevensc 20039
 
16825 efrain 20040
  .mx-wd-lg-90p-f {
20041
    max-width: 90% !important;
20042
  }
16848 stevensc 20043
 
16825 efrain 20044
  .mn-wd-lg-90p-f {
20045
    min-width: 90% !important;
20046
  }
16848 stevensc 20047
 
16825 efrain 20048
  .wd-lg-95 {
20049
    width: 95px;
20050
  }
16848 stevensc 20051
 
16825 efrain 20052
  .wd-lg-95p {
20053
    width: 95%;
20054
  }
16848 stevensc 20055
 
16825 efrain 20056
  .mx-wd-lg-95p {
20057
    max-width: 95%;
20058
  }
16848 stevensc 20059
 
16825 efrain 20060
  .mn-wd-lg-95p {
20061
    min-width: 95%;
20062
  }
16848 stevensc 20063
 
16825 efrain 20064
  .wd-lg-95-f {
20065
    width: 95px !important;
20066
  }
16848 stevensc 20067
 
16825 efrain 20068
  .wd-lg-95p-f {
20069
    width: 95% !important;
20070
  }
16848 stevensc 20071
 
16825 efrain 20072
  .mx-wd-lg-95p-f {
20073
    max-width: 95% !important;
20074
  }
16848 stevensc 20075
 
16825 efrain 20076
  .mn-wd-lg-95p-f {
20077
    min-width: 95% !important;
20078
  }
16848 stevensc 20079
 
16825 efrain 20080
  .wd-lg-100 {
20081
    width: 100px;
20082
  }
16848 stevensc 20083
 
16825 efrain 20084
  .wd-lg-100p {
20085
    width: 100%;
20086
  }
16848 stevensc 20087
 
16825 efrain 20088
  .mx-wd-lg-100p {
20089
    max-width: 100%;
20090
  }
16848 stevensc 20091
 
16825 efrain 20092
  .mn-wd-lg-100p {
20093
    min-width: 100%;
20094
  }
16848 stevensc 20095
 
16825 efrain 20096
  .wd-lg-100-f {
20097
    width: 100px !important;
20098
  }
16848 stevensc 20099
 
16825 efrain 20100
  .wd-lg-100p-f {
20101
    width: 100% !important;
20102
  }
16848 stevensc 20103
 
16825 efrain 20104
  .mx-wd-lg-100p-f {
20105
    max-width: 100% !important;
20106
  }
16848 stevensc 20107
 
16825 efrain 20108
  .mn-wd-lg-100p-f {
20109
    min-width: 100% !important;
20110
  }
16848 stevensc 20111
 
16825 efrain 20112
  .wd-lg-150 {
20113
    width: 150px;
20114
  }
16848 stevensc 20115
 
16825 efrain 20116
  .wd-lg-150p {
20117
    width: 150%;
20118
  }
16848 stevensc 20119
 
16825 efrain 20120
  .mx-wd-lg-150p {
20121
    max-width: 150%;
20122
  }
16848 stevensc 20123
 
16825 efrain 20124
  .mn-wd-lg-150p {
20125
    min-width: 150%;
20126
  }
16848 stevensc 20127
 
16825 efrain 20128
  .wd-lg-150-f {
20129
    width: 150px !important;
20130
  }
16848 stevensc 20131
 
16825 efrain 20132
  .wd-lg-150p-f {
20133
    width: 150% !important;
20134
  }
16848 stevensc 20135
 
16825 efrain 20136
  .mx-wd-lg-150p-f {
20137
    max-width: 150% !important;
20138
  }
16848 stevensc 20139
 
16825 efrain 20140
  .mn-wd-lg-150p-f {
20141
    min-width: 150% !important;
20142
  }
16848 stevensc 20143
 
16825 efrain 20144
  .wd-lg-200 {
20145
    width: 200px;
20146
  }
16848 stevensc 20147
 
16825 efrain 20148
  .wd-lg-200p {
20149
    width: 200%;
20150
  }
16848 stevensc 20151
 
16825 efrain 20152
  .mx-wd-lg-200p {
20153
    max-width: 200%;
20154
  }
16848 stevensc 20155
 
16825 efrain 20156
  .mn-wd-lg-200p {
20157
    min-width: 200%;
20158
  }
16848 stevensc 20159
 
16825 efrain 20160
  .wd-lg-200-f {
20161
    width: 200px !important;
20162
  }
16848 stevensc 20163
 
16825 efrain 20164
  .wd-lg-200p-f {
20165
    width: 200% !important;
20166
  }
16848 stevensc 20167
 
16825 efrain 20168
  .mx-wd-lg-200p-f {
20169
    max-width: 200% !important;
20170
  }
16848 stevensc 20171
 
16825 efrain 20172
  .mn-wd-lg-200p-f {
20173
    min-width: 200% !important;
20174
  }
16848 stevensc 20175
 
16825 efrain 20176
  .wd-lg-250 {
20177
    width: 250px;
20178
  }
16848 stevensc 20179
 
16825 efrain 20180
  .wd-lg-250p {
20181
    width: 250%;
20182
  }
16848 stevensc 20183
 
16825 efrain 20184
  .mx-wd-lg-250p {
20185
    max-width: 250%;
20186
  }
16848 stevensc 20187
 
16825 efrain 20188
  .mn-wd-lg-250p {
20189
    min-width: 250%;
20190
  }
16848 stevensc 20191
 
16825 efrain 20192
  .wd-lg-250-f {
20193
    width: 250px !important;
20194
  }
16848 stevensc 20195
 
16825 efrain 20196
  .wd-lg-250p-f {
20197
    width: 250% !important;
20198
  }
16848 stevensc 20199
 
16825 efrain 20200
  .mx-wd-lg-250p-f {
20201
    max-width: 250% !important;
20202
  }
16848 stevensc 20203
 
16825 efrain 20204
  .mn-wd-lg-250p-f {
20205
    min-width: 250% !important;
20206
  }
16848 stevensc 20207
 
16825 efrain 20208
  .wd-lg-300 {
20209
    width: 300px;
20210
  }
16848 stevensc 20211
 
16825 efrain 20212
  .wd-lg-300p {
20213
    width: 300%;
20214
  }
16848 stevensc 20215
 
16825 efrain 20216
  .mx-wd-lg-300p {
20217
    max-width: 300%;
20218
  }
16848 stevensc 20219
 
16825 efrain 20220
  .mn-wd-lg-300p {
20221
    min-width: 300%;
20222
  }
16848 stevensc 20223
 
16825 efrain 20224
  .wd-lg-300-f {
20225
    width: 300px !important;
20226
  }
16848 stevensc 20227
 
16825 efrain 20228
  .wd-lg-300p-f {
20229
    width: 300% !important;
20230
  }
16848 stevensc 20231
 
16825 efrain 20232
  .mx-wd-lg-300p-f {
20233
    max-width: 300% !important;
20234
  }
16848 stevensc 20235
 
16825 efrain 20236
  .mn-wd-lg-300p-f {
20237
    min-width: 300% !important;
20238
  }
16848 stevensc 20239
 
16825 efrain 20240
  .wd-lg-350 {
20241
    width: 350px;
20242
  }
16848 stevensc 20243
 
16825 efrain 20244
  .wd-lg-350p {
20245
    width: 350%;
20246
  }
16848 stevensc 20247
 
16825 efrain 20248
  .mx-wd-lg-350p {
20249
    max-width: 350%;
20250
  }
16848 stevensc 20251
 
16825 efrain 20252
  .mn-wd-lg-350p {
20253
    min-width: 350%;
20254
  }
16848 stevensc 20255
 
16825 efrain 20256
  .wd-lg-350-f {
20257
    width: 350px !important;
20258
  }
16848 stevensc 20259
 
16825 efrain 20260
  .wd-lg-350p-f {
20261
    width: 350% !important;
20262
  }
16848 stevensc 20263
 
16825 efrain 20264
  .mx-wd-lg-350p-f {
20265
    max-width: 350% !important;
20266
  }
16848 stevensc 20267
 
16825 efrain 20268
  .mn-wd-lg-350p-f {
20269
    min-width: 350% !important;
20270
  }
16848 stevensc 20271
 
16825 efrain 20272
  .wd-lg-400 {
20273
    width: 400px;
20274
  }
16848 stevensc 20275
 
16825 efrain 20276
  .wd-lg-400p {
20277
    width: 400%;
20278
  }
16848 stevensc 20279
 
16825 efrain 20280
  .mx-wd-lg-400p {
20281
    max-width: 400%;
20282
  }
16848 stevensc 20283
 
16825 efrain 20284
  .mn-wd-lg-400p {
20285
    min-width: 400%;
20286
  }
16848 stevensc 20287
 
16825 efrain 20288
  .wd-lg-400-f {
20289
    width: 400px !important;
20290
  }
16848 stevensc 20291
 
16825 efrain 20292
  .wd-lg-400p-f {
20293
    width: 400% !important;
20294
  }
16848 stevensc 20295
 
16825 efrain 20296
  .mx-wd-lg-400p-f {
20297
    max-width: 400% !important;
20298
  }
16848 stevensc 20299
 
16825 efrain 20300
  .mn-wd-lg-400p-f {
20301
    min-width: 400% !important;
20302
  }
16848 stevensc 20303
 
16825 efrain 20304
  .wd-lg-450 {
20305
    width: 450px;
20306
  }
16848 stevensc 20307
 
16825 efrain 20308
  .wd-lg-450p {
20309
    width: 450%;
20310
  }
16848 stevensc 20311
 
16825 efrain 20312
  .mx-wd-lg-450p {
20313
    max-width: 450%;
20314
  }
16848 stevensc 20315
 
16825 efrain 20316
  .mn-wd-lg-450p {
20317
    min-width: 450%;
20318
  }
16848 stevensc 20319
 
16825 efrain 20320
  .wd-lg-450-f {
20321
    width: 450px !important;
20322
  }
16848 stevensc 20323
 
16825 efrain 20324
  .wd-lg-450p-f {
20325
    width: 450% !important;
20326
  }
16848 stevensc 20327
 
16825 efrain 20328
  .mx-wd-lg-450p-f {
20329
    max-width: 450% !important;
20330
  }
16848 stevensc 20331
 
16825 efrain 20332
  .mn-wd-lg-450p-f {
20333
    min-width: 450% !important;
20334
  }
16848 stevensc 20335
 
16825 efrain 20336
  .wd-lg-500 {
20337
    width: 500px;
20338
  }
16848 stevensc 20339
 
16825 efrain 20340
  .wd-lg-500p {
20341
    width: 500%;
20342
  }
16848 stevensc 20343
 
16825 efrain 20344
  .mx-wd-lg-500p {
20345
    max-width: 500%;
20346
  }
16848 stevensc 20347
 
16825 efrain 20348
  .mn-wd-lg-500p {
20349
    min-width: 500%;
20350
  }
16848 stevensc 20351
 
16825 efrain 20352
  .wd-lg-500-f {
20353
    width: 500px !important;
20354
  }
16848 stevensc 20355
 
16825 efrain 20356
  .wd-lg-500p-f {
20357
    width: 500% !important;
20358
  }
16848 stevensc 20359
 
16825 efrain 20360
  .mx-wd-lg-500p-f {
20361
    max-width: 500% !important;
20362
  }
16848 stevensc 20363
 
16825 efrain 20364
  .mn-wd-lg-500p-f {
20365
    min-width: 500% !important;
20366
  }
16848 stevensc 20367
 
16825 efrain 20368
  .wd-lg-550 {
20369
    width: 550px;
20370
  }
16848 stevensc 20371
 
16825 efrain 20372
  .wd-lg-550p {
20373
    width: 550%;
20374
  }
16848 stevensc 20375
 
16825 efrain 20376
  .mx-wd-lg-550p {
20377
    max-width: 550%;
20378
  }
16848 stevensc 20379
 
16825 efrain 20380
  .mn-wd-lg-550p {
20381
    min-width: 550%;
20382
  }
16848 stevensc 20383
 
16825 efrain 20384
  .wd-lg-550-f {
20385
    width: 550px !important;
20386
  }
16848 stevensc 20387
 
16825 efrain 20388
  .wd-lg-550p-f {
20389
    width: 550% !important;
20390
  }
16848 stevensc 20391
 
16825 efrain 20392
  .mx-wd-lg-550p-f {
20393
    max-width: 550% !important;
20394
  }
16848 stevensc 20395
 
16825 efrain 20396
  .mn-wd-lg-550p-f {
20397
    min-width: 550% !important;
20398
  }
16848 stevensc 20399
 
16825 efrain 20400
  .wd-lg-600 {
20401
    width: 600px;
20402
  }
16848 stevensc 20403
 
16825 efrain 20404
  .wd-lg-600p {
20405
    width: 600%;
20406
  }
16848 stevensc 20407
 
16825 efrain 20408
  .mx-wd-lg-600p {
20409
    max-width: 600%;
20410
  }
16848 stevensc 20411
 
16825 efrain 20412
  .mn-wd-lg-600p {
20413
    min-width: 600%;
20414
  }
16848 stevensc 20415
 
16825 efrain 20416
  .wd-lg-600-f {
20417
    width: 600px !important;
20418
  }
16848 stevensc 20419
 
16825 efrain 20420
  .wd-lg-600p-f {
20421
    width: 600% !important;
20422
  }
16848 stevensc 20423
 
16825 efrain 20424
  .mx-wd-lg-600p-f {
20425
    max-width: 600% !important;
20426
  }
16848 stevensc 20427
 
16825 efrain 20428
  .mn-wd-lg-600p-f {
20429
    min-width: 600% !important;
20430
  }
16848 stevensc 20431
 
16825 efrain 20432
  .wd-lg-650 {
20433
    width: 650px;
20434
  }
16848 stevensc 20435
 
16825 efrain 20436
  .wd-lg-650p {
20437
    width: 650%;
20438
  }
16848 stevensc 20439
 
16825 efrain 20440
  .mx-wd-lg-650p {
20441
    max-width: 650%;
20442
  }
16848 stevensc 20443
 
16825 efrain 20444
  .mn-wd-lg-650p {
20445
    min-width: 650%;
20446
  }
16848 stevensc 20447
 
16825 efrain 20448
  .wd-lg-650-f {
20449
    width: 650px !important;
20450
  }
16848 stevensc 20451
 
16825 efrain 20452
  .wd-lg-650p-f {
20453
    width: 650% !important;
20454
  }
16848 stevensc 20455
 
16825 efrain 20456
  .mx-wd-lg-650p-f {
20457
    max-width: 650% !important;
20458
  }
16848 stevensc 20459
 
16825 efrain 20460
  .mn-wd-lg-650p-f {
20461
    min-width: 650% !important;
20462
  }
16848 stevensc 20463
 
16825 efrain 20464
  .wd-lg-700 {
20465
    width: 700px;
20466
  }
16848 stevensc 20467
 
16825 efrain 20468
  .wd-lg-700p {
20469
    width: 700%;
20470
  }
16848 stevensc 20471
 
16825 efrain 20472
  .mx-wd-lg-700p {
20473
    max-width: 700%;
20474
  }
16848 stevensc 20475
 
16825 efrain 20476
  .mn-wd-lg-700p {
20477
    min-width: 700%;
20478
  }
16848 stevensc 20479
 
16825 efrain 20480
  .wd-lg-700-f {
20481
    width: 700px !important;
20482
  }
16848 stevensc 20483
 
16825 efrain 20484
  .wd-lg-700p-f {
20485
    width: 700% !important;
20486
  }
16848 stevensc 20487
 
16825 efrain 20488
  .mx-wd-lg-700p-f {
20489
    max-width: 700% !important;
20490
  }
16848 stevensc 20491
 
16825 efrain 20492
  .mn-wd-lg-700p-f {
20493
    min-width: 700% !important;
20494
  }
16848 stevensc 20495
 
16825 efrain 20496
  .wd-lg-750 {
20497
    width: 750px;
20498
  }
16848 stevensc 20499
 
16825 efrain 20500
  .wd-lg-750p {
20501
    width: 750%;
20502
  }
16848 stevensc 20503
 
16825 efrain 20504
  .mx-wd-lg-750p {
20505
    max-width: 750%;
20506
  }
16848 stevensc 20507
 
16825 efrain 20508
  .mn-wd-lg-750p {
20509
    min-width: 750%;
20510
  }
16848 stevensc 20511
 
16825 efrain 20512
  .wd-lg-750-f {
20513
    width: 750px !important;
20514
  }
16848 stevensc 20515
 
16825 efrain 20516
  .wd-lg-750p-f {
20517
    width: 750% !important;
20518
  }
16848 stevensc 20519
 
16825 efrain 20520
  .mx-wd-lg-750p-f {
20521
    max-width: 750% !important;
20522
  }
16848 stevensc 20523
 
16825 efrain 20524
  .mn-wd-lg-750p-f {
20525
    min-width: 750% !important;
20526
  }
16848 stevensc 20527
 
16825 efrain 20528
  .wd-lg-800 {
20529
    width: 800px;
20530
  }
16848 stevensc 20531
 
16825 efrain 20532
  .wd-lg-800p {
20533
    width: 800%;
20534
  }
16848 stevensc 20535
 
16825 efrain 20536
  .mx-wd-lg-800p {
20537
    max-width: 800%;
20538
  }
16848 stevensc 20539
 
16825 efrain 20540
  .mn-wd-lg-800p {
20541
    min-width: 800%;
20542
  }
16848 stevensc 20543
 
16825 efrain 20544
  .wd-lg-800-f {
20545
    width: 800px !important;
20546
  }
16848 stevensc 20547
 
16825 efrain 20548
  .wd-lg-800p-f {
20549
    width: 800% !important;
20550
  }
16848 stevensc 20551
 
16825 efrain 20552
  .mx-wd-lg-800p-f {
20553
    max-width: 800% !important;
20554
  }
16848 stevensc 20555
 
16825 efrain 20556
  .mn-wd-lg-800p-f {
20557
    min-width: 800% !important;
20558
  }
16848 stevensc 20559
 
16825 efrain 20560
  .wd-lg-850 {
20561
    width: 850px;
20562
  }
16848 stevensc 20563
 
16825 efrain 20564
  .wd-lg-850p {
20565
    width: 850%;
20566
  }
16848 stevensc 20567
 
16825 efrain 20568
  .mx-wd-lg-850p {
20569
    max-width: 850%;
20570
  }
16848 stevensc 20571
 
16825 efrain 20572
  .mn-wd-lg-850p {
20573
    min-width: 850%;
20574
  }
16848 stevensc 20575
 
16825 efrain 20576
  .wd-lg-850-f {
20577
    width: 850px !important;
20578
  }
16848 stevensc 20579
 
16825 efrain 20580
  .wd-lg-850p-f {
20581
    width: 850% !important;
20582
  }
16848 stevensc 20583
 
16825 efrain 20584
  .mx-wd-lg-850p-f {
20585
    max-width: 850% !important;
20586
  }
16848 stevensc 20587
 
16825 efrain 20588
  .mn-wd-lg-850p-f {
20589
    min-width: 850% !important;
20590
  }
16848 stevensc 20591
 
16825 efrain 20592
  .wd-lg-900 {
20593
    width: 900px;
20594
  }
16848 stevensc 20595
 
16825 efrain 20596
  .wd-lg-900p {
20597
    width: 900%;
20598
  }
16848 stevensc 20599
 
16825 efrain 20600
  .mx-wd-lg-900p {
20601
    max-width: 900%;
20602
  }
16848 stevensc 20603
 
16825 efrain 20604
  .mn-wd-lg-900p {
20605
    min-width: 900%;
20606
  }
16848 stevensc 20607
 
16825 efrain 20608
  .wd-lg-900-f {
20609
    width: 900px !important;
20610
  }
16848 stevensc 20611
 
16825 efrain 20612
  .wd-lg-900p-f {
20613
    width: 900% !important;
20614
  }
16848 stevensc 20615
 
16825 efrain 20616
  .mx-wd-lg-900p-f {
20617
    max-width: 900% !important;
20618
  }
16848 stevensc 20619
 
16825 efrain 20620
  .mn-wd-lg-900p-f {
20621
    min-width: 900% !important;
20622
  }
16848 stevensc 20623
 
16825 efrain 20624
  .wd-lg-950 {
20625
    width: 950px;
20626
  }
16848 stevensc 20627
 
16825 efrain 20628
  .wd-lg-950p {
20629
    width: 950%;
20630
  }
16848 stevensc 20631
 
16825 efrain 20632
  .mx-wd-lg-950p {
20633
    max-width: 950%;
20634
  }
16848 stevensc 20635
 
16825 efrain 20636
  .mn-wd-lg-950p {
20637
    min-width: 950%;
20638
  }
16848 stevensc 20639
 
16825 efrain 20640
  .wd-lg-950-f {
20641
    width: 950px !important;
20642
  }
16848 stevensc 20643
 
16825 efrain 20644
  .wd-lg-950p-f {
20645
    width: 950% !important;
20646
  }
16848 stevensc 20647
 
16825 efrain 20648
  .mx-wd-lg-950p-f {
20649
    max-width: 950% !important;
20650
  }
16848 stevensc 20651
 
16825 efrain 20652
  .mn-wd-lg-950p-f {
20653
    min-width: 950% !important;
20654
  }
16848 stevensc 20655
 
16825 efrain 20656
  .wd-lg-1000 {
20657
    width: 1000px;
20658
  }
16848 stevensc 20659
 
16825 efrain 20660
  .wd-lg-1000p {
20661
    width: 1000%;
20662
  }
16848 stevensc 20663
 
16825 efrain 20664
  .mx-wd-lg-1000p {
20665
    max-width: 1000%;
20666
  }
16848 stevensc 20667
 
16825 efrain 20668
  .mn-wd-lg-1000p {
20669
    min-width: 1000%;
20670
  }
16848 stevensc 20671
 
16825 efrain 20672
  .wd-lg-1000-f {
20673
    width: 1000px !important;
20674
  }
16848 stevensc 20675
 
16825 efrain 20676
  .wd-lg-1000p-f {
20677
    width: 1000% !important;
20678
  }
16848 stevensc 20679
 
16825 efrain 20680
  .mx-wd-lg-1000p-f {
20681
    max-width: 1000% !important;
20682
  }
16848 stevensc 20683
 
16825 efrain 20684
  .mn-wd-lg-1000p-f {
20685
    min-width: 1000% !important;
20686
  }
16848 stevensc 20687
 
16825 efrain 20688
  .wd-lg-auto {
20689
    width: auto;
20690
  }
16848 stevensc 20691
 
16825 efrain 20692
  .wd-lg-auto-f {
20693
    width: auto !important;
20694
  }
20695
}
16848 stevensc 20696
 
16825 efrain 20697
@media (min-width: 1200px) {
20698
  .wd-xl-5 {
20699
    width: 5px;
20700
  }
16848 stevensc 20701
 
16825 efrain 20702
  .wd-xl-5p {
20703
    width: 5%;
20704
  }
16848 stevensc 20705
 
16825 efrain 20706
  .mx-wd-xl-5p {
20707
    max-width: 5%;
20708
  }
16848 stevensc 20709
 
16825 efrain 20710
  .mn-wd-xl-5p {
20711
    min-width: 5%;
20712
  }
16848 stevensc 20713
 
16825 efrain 20714
  .wd-xl-5-f {
20715
    width: 5px !important;
20716
  }
16848 stevensc 20717
 
16825 efrain 20718
  .wd-xl-5p-f {
20719
    width: 5% !important;
20720
  }
16848 stevensc 20721
 
16825 efrain 20722
  .mx-wd-xl-5p-f {
20723
    max-width: 5% !important;
20724
  }
16848 stevensc 20725
 
16825 efrain 20726
  .mn-wd-xl-5p-f {
20727
    min-width: 5% !important;
20728
  }
16848 stevensc 20729
 
16825 efrain 20730
  .wd-xl-10 {
20731
    width: 10px;
20732
  }
16848 stevensc 20733
 
16825 efrain 20734
  .wd-xl-10p {
20735
    width: 10%;
20736
  }
16848 stevensc 20737
 
16825 efrain 20738
  .mx-wd-xl-10p {
20739
    max-width: 10%;
20740
  }
16848 stevensc 20741
 
16825 efrain 20742
  .mn-wd-xl-10p {
20743
    min-width: 10%;
20744
  }
16848 stevensc 20745
 
16825 efrain 20746
  .wd-xl-10-f {
20747
    width: 10px !important;
20748
  }
16848 stevensc 20749
 
16825 efrain 20750
  .wd-xl-10p-f {
20751
    width: 10% !important;
20752
  }
16848 stevensc 20753
 
16825 efrain 20754
  .mx-wd-xl-10p-f {
20755
    max-width: 10% !important;
20756
  }
16848 stevensc 20757
 
16825 efrain 20758
  .mn-wd-xl-10p-f {
20759
    min-width: 10% !important;
20760
  }
16848 stevensc 20761
 
16825 efrain 20762
  .wd-xl-15 {
20763
    width: 15px;
20764
  }
16848 stevensc 20765
 
16825 efrain 20766
  .wd-xl-15p {
20767
    width: 15%;
20768
  }
16848 stevensc 20769
 
16825 efrain 20770
  .mx-wd-xl-15p {
20771
    max-width: 15%;
20772
  }
16848 stevensc 20773
 
16825 efrain 20774
  .mn-wd-xl-15p {
20775
    min-width: 15%;
20776
  }
16848 stevensc 20777
 
16825 efrain 20778
  .wd-xl-15-f {
20779
    width: 15px !important;
20780
  }
16848 stevensc 20781
 
16825 efrain 20782
  .wd-xl-15p-f {
20783
    width: 15% !important;
20784
  }
16848 stevensc 20785
 
16825 efrain 20786
  .mx-wd-xl-15p-f {
20787
    max-width: 15% !important;
20788
  }
16848 stevensc 20789
 
16825 efrain 20790
  .mn-wd-xl-15p-f {
20791
    min-width: 15% !important;
20792
  }
16848 stevensc 20793
 
16825 efrain 20794
  .wd-xl-20 {
20795
    width: 20px;
20796
  }
16848 stevensc 20797
 
16825 efrain 20798
  .wd-xl-20p {
20799
    width: 20%;
20800
  }
16848 stevensc 20801
 
16825 efrain 20802
  .mx-wd-xl-20p {
20803
    max-width: 20%;
20804
  }
16848 stevensc 20805
 
16825 efrain 20806
  .mn-wd-xl-20p {
20807
    min-width: 20%;
20808
  }
16848 stevensc 20809
 
16825 efrain 20810
  .wd-xl-20-f {
20811
    width: 20px !important;
20812
  }
16848 stevensc 20813
 
16825 efrain 20814
  .wd-xl-20p-f {
20815
    width: 20% !important;
20816
  }
16848 stevensc 20817
 
16825 efrain 20818
  .mx-wd-xl-20p-f {
20819
    max-width: 20% !important;
20820
  }
16848 stevensc 20821
 
16825 efrain 20822
  .mn-wd-xl-20p-f {
20823
    min-width: 20% !important;
20824
  }
16848 stevensc 20825
 
16825 efrain 20826
  .wd-xl-25 {
20827
    width: 25px;
20828
  }
16848 stevensc 20829
 
16825 efrain 20830
  .wd-xl-25p {
20831
    width: 25%;
20832
  }
16848 stevensc 20833
 
16825 efrain 20834
  .mx-wd-xl-25p {
20835
    max-width: 25%;
20836
  }
16848 stevensc 20837
 
16825 efrain 20838
  .mn-wd-xl-25p {
20839
    min-width: 25%;
20840
  }
16848 stevensc 20841
 
16825 efrain 20842
  .wd-xl-25-f {
20843
    width: 25px !important;
20844
  }
16848 stevensc 20845
 
16825 efrain 20846
  .wd-xl-25p-f {
20847
    width: 25% !important;
20848
  }
16848 stevensc 20849
 
16825 efrain 20850
  .mx-wd-xl-25p-f {
20851
    max-width: 25% !important;
20852
  }
16848 stevensc 20853
 
16825 efrain 20854
  .mn-wd-xl-25p-f {
20855
    min-width: 25% !important;
20856
  }
16848 stevensc 20857
 
16825 efrain 20858
  .wd-xl-30 {
20859
    width: 30px;
20860
  }
16848 stevensc 20861
 
16825 efrain 20862
  .wd-xl-30p {
20863
    width: 30%;
20864
  }
16848 stevensc 20865
 
16825 efrain 20866
  .mx-wd-xl-30p {
20867
    max-width: 30%;
20868
  }
16848 stevensc 20869
 
16825 efrain 20870
  .mn-wd-xl-30p {
20871
    min-width: 30%;
20872
  }
16848 stevensc 20873
 
16825 efrain 20874
  .wd-xl-30-f {
20875
    width: 30px !important;
20876
  }
16848 stevensc 20877
 
16825 efrain 20878
  .wd-xl-30p-f {
20879
    width: 30% !important;
20880
  }
16848 stevensc 20881
 
16825 efrain 20882
  .mx-wd-xl-30p-f {
20883
    max-width: 30% !important;
20884
  }
16848 stevensc 20885
 
16825 efrain 20886
  .mn-wd-xl-30p-f {
20887
    min-width: 30% !important;
20888
  }
16848 stevensc 20889
 
16825 efrain 20890
  .wd-xl-35 {
20891
    width: 35px;
20892
  }
16848 stevensc 20893
 
16825 efrain 20894
  .wd-xl-35p {
20895
    width: 35%;
20896
  }
16848 stevensc 20897
 
16825 efrain 20898
  .mx-wd-xl-35p {
20899
    max-width: 35%;
20900
  }
16848 stevensc 20901
 
16825 efrain 20902
  .mn-wd-xl-35p {
20903
    min-width: 35%;
20904
  }
16848 stevensc 20905
 
16825 efrain 20906
  .wd-xl-35-f {
20907
    width: 35px !important;
20908
  }
16848 stevensc 20909
 
16825 efrain 20910
  .wd-xl-35p-f {
20911
    width: 35% !important;
20912
  }
16848 stevensc 20913
 
16825 efrain 20914
  .mx-wd-xl-35p-f {
20915
    max-width: 35% !important;
20916
  }
16848 stevensc 20917
 
16825 efrain 20918
  .mn-wd-xl-35p-f {
20919
    min-width: 35% !important;
20920
  }
16848 stevensc 20921
 
16825 efrain 20922
  .wd-xl-40 {
20923
    width: 40px;
20924
  }
16848 stevensc 20925
 
16825 efrain 20926
  .wd-xl-40p {
20927
    width: 40%;
20928
  }
16848 stevensc 20929
 
16825 efrain 20930
  .mx-wd-xl-40p {
20931
    max-width: 40%;
20932
  }
16848 stevensc 20933
 
16825 efrain 20934
  .mn-wd-xl-40p {
20935
    min-width: 40%;
20936
  }
16848 stevensc 20937
 
16825 efrain 20938
  .wd-xl-40-f {
20939
    width: 40px !important;
20940
  }
16848 stevensc 20941
 
16825 efrain 20942
  .wd-xl-40p-f {
20943
    width: 40% !important;
20944
  }
16848 stevensc 20945
 
16825 efrain 20946
  .mx-wd-xl-40p-f {
20947
    max-width: 40% !important;
20948
  }
16848 stevensc 20949
 
16825 efrain 20950
  .mn-wd-xl-40p-f {
20951
    min-width: 40% !important;
20952
  }
16848 stevensc 20953
 
16825 efrain 20954
  .wd-xl-45 {
20955
    width: 45px;
20956
  }
16848 stevensc 20957
 
16825 efrain 20958
  .wd-xl-45p {
20959
    width: 45%;
20960
  }
16848 stevensc 20961
 
16825 efrain 20962
  .mx-wd-xl-45p {
20963
    max-width: 45%;
20964
  }
16848 stevensc 20965
 
16825 efrain 20966
  .mn-wd-xl-45p {
20967
    min-width: 45%;
20968
  }
16848 stevensc 20969
 
16825 efrain 20970
  .wd-xl-45-f {
20971
    width: 45px !important;
20972
  }
16848 stevensc 20973
 
16825 efrain 20974
  .wd-xl-45p-f {
20975
    width: 45% !important;
20976
  }
16848 stevensc 20977
 
16825 efrain 20978
  .mx-wd-xl-45p-f {
20979
    max-width: 45% !important;
20980
  }
16848 stevensc 20981
 
16825 efrain 20982
  .mn-wd-xl-45p-f {
20983
    min-width: 45% !important;
20984
  }
16848 stevensc 20985
 
16825 efrain 20986
  .wd-xl-50 {
20987
    width: 50px;
20988
  }
16848 stevensc 20989
 
16825 efrain 20990
  .wd-xl-50p {
20991
    width: 50%;
20992
  }
16848 stevensc 20993
 
16825 efrain 20994
  .mx-wd-xl-50p {
20995
    max-width: 50%;
20996
  }
16848 stevensc 20997
 
16825 efrain 20998
  .mn-wd-xl-50p {
20999
    min-width: 50%;
21000
  }
16848 stevensc 21001
 
16825 efrain 21002
  .wd-xl-50-f {
21003
    width: 50px !important;
21004
  }
16848 stevensc 21005
 
16825 efrain 21006
  .wd-xl-50p-f {
21007
    width: 50% !important;
21008
  }
16848 stevensc 21009
 
16825 efrain 21010
  .mx-wd-xl-50p-f {
21011
    max-width: 50% !important;
21012
  }
16848 stevensc 21013
 
16825 efrain 21014
  .mn-wd-xl-50p-f {
21015
    min-width: 50% !important;
21016
  }
16848 stevensc 21017
 
16825 efrain 21018
  .wd-xl-55 {
21019
    width: 55px;
21020
  }
16848 stevensc 21021
 
16825 efrain 21022
  .wd-xl-55p {
21023
    width: 55%;
21024
  }
16848 stevensc 21025
 
16825 efrain 21026
  .mx-wd-xl-55p {
21027
    max-width: 55%;
21028
  }
16848 stevensc 21029
 
16825 efrain 21030
  .mn-wd-xl-55p {
21031
    min-width: 55%;
21032
  }
16848 stevensc 21033
 
16825 efrain 21034
  .wd-xl-55-f {
21035
    width: 55px !important;
21036
  }
16848 stevensc 21037
 
16825 efrain 21038
  .wd-xl-55p-f {
21039
    width: 55% !important;
21040
  }
16848 stevensc 21041
 
16825 efrain 21042
  .mx-wd-xl-55p-f {
21043
    max-width: 55% !important;
21044
  }
16848 stevensc 21045
 
16825 efrain 21046
  .mn-wd-xl-55p-f {
21047
    min-width: 55% !important;
21048
  }
16848 stevensc 21049
 
16825 efrain 21050
  .wd-xl-60 {
21051
    width: 60px;
21052
  }
16848 stevensc 21053
 
16825 efrain 21054
  .wd-xl-60p {
21055
    width: 60%;
21056
  }
16848 stevensc 21057
 
16825 efrain 21058
  .mx-wd-xl-60p {
21059
    max-width: 60%;
21060
  }
16848 stevensc 21061
 
16825 efrain 21062
  .mn-wd-xl-60p {
21063
    min-width: 60%;
21064
  }
16848 stevensc 21065
 
16825 efrain 21066
  .wd-xl-60-f {
21067
    width: 60px !important;
21068
  }
16848 stevensc 21069
 
16825 efrain 21070
  .wd-xl-60p-f {
21071
    width: 60% !important;
21072
  }
16848 stevensc 21073
 
16825 efrain 21074
  .mx-wd-xl-60p-f {
21075
    max-width: 60% !important;
21076
  }
16848 stevensc 21077
 
16825 efrain 21078
  .mn-wd-xl-60p-f {
21079
    min-width: 60% !important;
21080
  }
16848 stevensc 21081
 
16825 efrain 21082
  .wd-xl-65 {
21083
    width: 65px;
21084
  }
16848 stevensc 21085
 
16825 efrain 21086
  .wd-xl-65p {
21087
    width: 65%;
21088
  }
16848 stevensc 21089
 
16825 efrain 21090
  .mx-wd-xl-65p {
21091
    max-width: 65%;
21092
  }
16848 stevensc 21093
 
16825 efrain 21094
  .mn-wd-xl-65p {
21095
    min-width: 65%;
21096
  }
16848 stevensc 21097
 
16825 efrain 21098
  .wd-xl-65-f {
21099
    width: 65px !important;
21100
  }
16848 stevensc 21101
 
16825 efrain 21102
  .wd-xl-65p-f {
21103
    width: 65% !important;
21104
  }
16848 stevensc 21105
 
16825 efrain 21106
  .mx-wd-xl-65p-f {
21107
    max-width: 65% !important;
21108
  }
16848 stevensc 21109
 
16825 efrain 21110
  .mn-wd-xl-65p-f {
21111
    min-width: 65% !important;
21112
  }
16848 stevensc 21113
 
16825 efrain 21114
  .wd-xl-70 {
21115
    width: 70px;
21116
  }
16848 stevensc 21117
 
16825 efrain 21118
  .wd-xl-70p {
21119
    width: 70%;
21120
  }
16848 stevensc 21121
 
16825 efrain 21122
  .mx-wd-xl-70p {
21123
    max-width: 70%;
21124
  }
16848 stevensc 21125
 
16825 efrain 21126
  .mn-wd-xl-70p {
21127
    min-width: 70%;
21128
  }
16848 stevensc 21129
 
16825 efrain 21130
  .wd-xl-70-f {
21131
    width: 70px !important;
21132
  }
16848 stevensc 21133
 
16825 efrain 21134
  .wd-xl-70p-f {
21135
    width: 70% !important;
21136
  }
16848 stevensc 21137
 
16825 efrain 21138
  .mx-wd-xl-70p-f {
21139
    max-width: 70% !important;
21140
  }
16848 stevensc 21141
 
16825 efrain 21142
  .mn-wd-xl-70p-f {
21143
    min-width: 70% !important;
21144
  }
16848 stevensc 21145
 
16825 efrain 21146
  .wd-xl-75 {
21147
    width: 75px;
21148
  }
16848 stevensc 21149
 
16825 efrain 21150
  .wd-xl-75p {
21151
    width: 75%;
21152
  }
16848 stevensc 21153
 
16825 efrain 21154
  .mx-wd-xl-75p {
21155
    max-width: 75%;
21156
  }
16848 stevensc 21157
 
16825 efrain 21158
  .mn-wd-xl-75p {
21159
    min-width: 75%;
21160
  }
16848 stevensc 21161
 
16825 efrain 21162
  .wd-xl-75-f {
21163
    width: 75px !important;
21164
  }
16848 stevensc 21165
 
16825 efrain 21166
  .wd-xl-75p-f {
21167
    width: 75% !important;
21168
  }
16848 stevensc 21169
 
16825 efrain 21170
  .mx-wd-xl-75p-f {
21171
    max-width: 75% !important;
21172
  }
16848 stevensc 21173
 
16825 efrain 21174
  .mn-wd-xl-75p-f {
21175
    min-width: 75% !important;
21176
  }
16848 stevensc 21177
 
16825 efrain 21178
  .wd-xl-80 {
21179
    width: 80px;
21180
  }
16848 stevensc 21181
 
16825 efrain 21182
  .wd-xl-80p {
21183
    width: 80%;
21184
  }
16848 stevensc 21185
 
16825 efrain 21186
  .mx-wd-xl-80p {
21187
    max-width: 80%;
21188
  }
16848 stevensc 21189
 
16825 efrain 21190
  .mn-wd-xl-80p {
21191
    min-width: 80%;
21192
  }
16848 stevensc 21193
 
16825 efrain 21194
  .wd-xl-80-f {
21195
    width: 80px !important;
21196
  }
16848 stevensc 21197
 
16825 efrain 21198
  .wd-xl-80p-f {
21199
    width: 80% !important;
21200
  }
16848 stevensc 21201
 
16825 efrain 21202
  .mx-wd-xl-80p-f {
21203
    max-width: 80% !important;
21204
  }
16848 stevensc 21205
 
16825 efrain 21206
  .mn-wd-xl-80p-f {
21207
    min-width: 80% !important;
21208
  }
16848 stevensc 21209
 
16825 efrain 21210
  .wd-xl-85 {
21211
    width: 85px;
21212
  }
16848 stevensc 21213
 
16825 efrain 21214
  .wd-xl-85p {
21215
    width: 85%;
21216
  }
16848 stevensc 21217
 
16825 efrain 21218
  .mx-wd-xl-85p {
21219
    max-width: 85%;
21220
  }
16848 stevensc 21221
 
16825 efrain 21222
  .mn-wd-xl-85p {
21223
    min-width: 85%;
21224
  }
16848 stevensc 21225
 
16825 efrain 21226
  .wd-xl-85-f {
21227
    width: 85px !important;
21228
  }
16848 stevensc 21229
 
16825 efrain 21230
  .wd-xl-85p-f {
21231
    width: 85% !important;
21232
  }
16848 stevensc 21233
 
16825 efrain 21234
  .mx-wd-xl-85p-f {
21235
    max-width: 85% !important;
21236
  }
16848 stevensc 21237
 
16825 efrain 21238
  .mn-wd-xl-85p-f {
21239
    min-width: 85% !important;
21240
  }
16848 stevensc 21241
 
16825 efrain 21242
  .wd-xl-90 {
21243
    width: 90px;
21244
  }
16848 stevensc 21245
 
16825 efrain 21246
  .wd-xl-90p {
21247
    width: 90%;
21248
  }
16848 stevensc 21249
 
16825 efrain 21250
  .mx-wd-xl-90p {
21251
    max-width: 90%;
21252
  }
16848 stevensc 21253
 
16825 efrain 21254
  .mn-wd-xl-90p {
21255
    min-width: 90%;
21256
  }
16848 stevensc 21257
 
16825 efrain 21258
  .wd-xl-90-f {
21259
    width: 90px !important;
21260
  }
16848 stevensc 21261
 
16825 efrain 21262
  .wd-xl-90p-f {
21263
    width: 90% !important;
21264
  }
16848 stevensc 21265
 
16825 efrain 21266
  .mx-wd-xl-90p-f {
21267
    max-width: 90% !important;
21268
  }
16848 stevensc 21269
 
16825 efrain 21270
  .mn-wd-xl-90p-f {
21271
    min-width: 90% !important;
21272
  }
16848 stevensc 21273
 
16825 efrain 21274
  .wd-xl-95 {
21275
    width: 95px;
21276
  }
16848 stevensc 21277
 
16825 efrain 21278
  .wd-xl-95p {
21279
    width: 95%;
21280
  }
16848 stevensc 21281
 
16825 efrain 21282
  .mx-wd-xl-95p {
21283
    max-width: 95%;
21284
  }
16848 stevensc 21285
 
16825 efrain 21286
  .mn-wd-xl-95p {
21287
    min-width: 95%;
21288
  }
16848 stevensc 21289
 
16825 efrain 21290
  .wd-xl-95-f {
21291
    width: 95px !important;
21292
  }
16848 stevensc 21293
 
16825 efrain 21294
  .wd-xl-95p-f {
21295
    width: 95% !important;
21296
  }
16848 stevensc 21297
 
16825 efrain 21298
  .mx-wd-xl-95p-f {
21299
    max-width: 95% !important;
21300
  }
16848 stevensc 21301
 
16825 efrain 21302
  .mn-wd-xl-95p-f {
21303
    min-width: 95% !important;
21304
  }
16848 stevensc 21305
 
16825 efrain 21306
  .wd-xl-100 {
21307
    width: 100px;
21308
  }
16848 stevensc 21309
 
16825 efrain 21310
  .wd-xl-100p {
21311
    width: 100%;
21312
  }
16848 stevensc 21313
 
16825 efrain 21314
  .mx-wd-xl-100p {
21315
    max-width: 100%;
21316
  }
16848 stevensc 21317
 
16825 efrain 21318
  .mn-wd-xl-100p {
21319
    min-width: 100%;
21320
  }
16848 stevensc 21321
 
16825 efrain 21322
  .wd-xl-100-f {
21323
    width: 100px !important;
21324
  }
16848 stevensc 21325
 
16825 efrain 21326
  .wd-xl-100p-f {
21327
    width: 100% !important;
21328
  }
16848 stevensc 21329
 
16825 efrain 21330
  .mx-wd-xl-100p-f {
21331
    max-width: 100% !important;
21332
  }
16848 stevensc 21333
 
16825 efrain 21334
  .mn-wd-xl-100p-f {
21335
    min-width: 100% !important;
21336
  }
16848 stevensc 21337
 
16825 efrain 21338
  .wd-xl-150 {
21339
    width: 150px;
21340
  }
16848 stevensc 21341
 
16825 efrain 21342
  .wd-xl-150p {
21343
    width: 150%;
21344
  }
16848 stevensc 21345
 
16825 efrain 21346
  .mx-wd-xl-150p {
21347
    max-width: 150%;
21348
  }
16848 stevensc 21349
 
16825 efrain 21350
  .mn-wd-xl-150p {
21351
    min-width: 150%;
21352
  }
16848 stevensc 21353
 
16825 efrain 21354
  .wd-xl-150-f {
21355
    width: 150px !important;
21356
  }
16848 stevensc 21357
 
16825 efrain 21358
  .wd-xl-150p-f {
21359
    width: 150% !important;
21360
  }
16848 stevensc 21361
 
16825 efrain 21362
  .mx-wd-xl-150p-f {
21363
    max-width: 150% !important;
21364
  }
16848 stevensc 21365
 
16825 efrain 21366
  .mn-wd-xl-150p-f {
21367
    min-width: 150% !important;
21368
  }
16848 stevensc 21369
 
16825 efrain 21370
  .wd-xl-200 {
21371
    width: 200px;
21372
  }
16848 stevensc 21373
 
16825 efrain 21374
  .wd-xl-200p {
21375
    width: 200%;
21376
  }
16848 stevensc 21377
 
16825 efrain 21378
  .mx-wd-xl-200p {
21379
    max-width: 200%;
21380
  }
16848 stevensc 21381
 
16825 efrain 21382
  .mn-wd-xl-200p {
21383
    min-width: 200%;
21384
  }
16848 stevensc 21385
 
16825 efrain 21386
  .wd-xl-200-f {
21387
    width: 200px !important;
21388
  }
16848 stevensc 21389
 
16825 efrain 21390
  .wd-xl-200p-f {
21391
    width: 200% !important;
21392
  }
16848 stevensc 21393
 
16825 efrain 21394
  .mx-wd-xl-200p-f {
21395
    max-width: 200% !important;
21396
  }
16848 stevensc 21397
 
16825 efrain 21398
  .mn-wd-xl-200p-f {
21399
    min-width: 200% !important;
21400
  }
16848 stevensc 21401
 
16825 efrain 21402
  .wd-xl-250 {
21403
    width: 250px;
21404
  }
16848 stevensc 21405
 
16825 efrain 21406
  .wd-xl-250p {
21407
    width: 250%;
21408
  }
16848 stevensc 21409
 
16825 efrain 21410
  .mx-wd-xl-250p {
21411
    max-width: 250%;
21412
  }
16848 stevensc 21413
 
16825 efrain 21414
  .mn-wd-xl-250p {
21415
    min-width: 250%;
21416
  }
16848 stevensc 21417
 
16825 efrain 21418
  .wd-xl-250-f {
21419
    width: 250px !important;
21420
  }
16848 stevensc 21421
 
16825 efrain 21422
  .wd-xl-250p-f {
21423
    width: 250% !important;
21424
  }
16848 stevensc 21425
 
16825 efrain 21426
  .mx-wd-xl-250p-f {
21427
    max-width: 250% !important;
21428
  }
16848 stevensc 21429
 
16825 efrain 21430
  .mn-wd-xl-250p-f {
21431
    min-width: 250% !important;
21432
  }
16848 stevensc 21433
 
16825 efrain 21434
  .wd-xl-300 {
21435
    width: 300px;
21436
  }
16848 stevensc 21437
 
16825 efrain 21438
  .wd-xl-300p {
21439
    width: 300%;
21440
  }
16848 stevensc 21441
 
16825 efrain 21442
  .mx-wd-xl-300p {
21443
    max-width: 300%;
21444
  }
16848 stevensc 21445
 
16825 efrain 21446
  .mn-wd-xl-300p {
21447
    min-width: 300%;
21448
  }
16848 stevensc 21449
 
16825 efrain 21450
  .wd-xl-300-f {
21451
    width: 300px !important;
21452
  }
16848 stevensc 21453
 
16825 efrain 21454
  .wd-xl-300p-f {
21455
    width: 300% !important;
21456
  }
16848 stevensc 21457
 
16825 efrain 21458
  .mx-wd-xl-300p-f {
21459
    max-width: 300% !important;
21460
  }
16848 stevensc 21461
 
16825 efrain 21462
  .mn-wd-xl-300p-f {
21463
    min-width: 300% !important;
21464
  }
16848 stevensc 21465
 
16825 efrain 21466
  .wd-xl-350 {
21467
    width: 350px;
21468
  }
16848 stevensc 21469
 
16825 efrain 21470
  .wd-xl-350p {
21471
    width: 350%;
21472
  }
16848 stevensc 21473
 
16825 efrain 21474
  .mx-wd-xl-350p {
21475
    max-width: 350%;
21476
  }
16848 stevensc 21477
 
16825 efrain 21478
  .mn-wd-xl-350p {
21479
    min-width: 350%;
21480
  }
16848 stevensc 21481
 
16825 efrain 21482
  .wd-xl-350-f {
21483
    width: 350px !important;
21484
  }
16848 stevensc 21485
 
16825 efrain 21486
  .wd-xl-350p-f {
21487
    width: 350% !important;
21488
  }
16848 stevensc 21489
 
16825 efrain 21490
  .mx-wd-xl-350p-f {
21491
    max-width: 350% !important;
21492
  }
16848 stevensc 21493
 
16825 efrain 21494
  .mn-wd-xl-350p-f {
21495
    min-width: 350% !important;
21496
  }
16848 stevensc 21497
 
16825 efrain 21498
  .wd-xl-400 {
21499
    width: 400px;
21500
  }
16848 stevensc 21501
 
16825 efrain 21502
  .wd-xl-400p {
21503
    width: 400%;
21504
  }
16848 stevensc 21505
 
16825 efrain 21506
  .mx-wd-xl-400p {
21507
    max-width: 400%;
21508
  }
16848 stevensc 21509
 
16825 efrain 21510
  .mn-wd-xl-400p {
21511
    min-width: 400%;
21512
  }
16848 stevensc 21513
 
16825 efrain 21514
  .wd-xl-400-f {
21515
    width: 400px !important;
21516
  }
16848 stevensc 21517
 
16825 efrain 21518
  .wd-xl-400p-f {
21519
    width: 400% !important;
21520
  }
16848 stevensc 21521
 
16825 efrain 21522
  .mx-wd-xl-400p-f {
21523
    max-width: 400% !important;
21524
  }
16848 stevensc 21525
 
16825 efrain 21526
  .mn-wd-xl-400p-f {
21527
    min-width: 400% !important;
21528
  }
16848 stevensc 21529
 
16825 efrain 21530
  .wd-xl-450 {
21531
    width: 450px;
21532
  }
16848 stevensc 21533
 
16825 efrain 21534
  .wd-xl-450p {
21535
    width: 450%;
21536
  }
16848 stevensc 21537
 
16825 efrain 21538
  .mx-wd-xl-450p {
21539
    max-width: 450%;
21540
  }
16848 stevensc 21541
 
16825 efrain 21542
  .mn-wd-xl-450p {
21543
    min-width: 450%;
21544
  }
16848 stevensc 21545
 
16825 efrain 21546
  .wd-xl-450-f {
21547
    width: 450px !important;
21548
  }
16848 stevensc 21549
 
16825 efrain 21550
  .wd-xl-450p-f {
21551
    width: 450% !important;
21552
  }
16848 stevensc 21553
 
16825 efrain 21554
  .mx-wd-xl-450p-f {
21555
    max-width: 450% !important;
21556
  }
16848 stevensc 21557
 
16825 efrain 21558
  .mn-wd-xl-450p-f {
21559
    min-width: 450% !important;
21560
  }
16848 stevensc 21561
 
16825 efrain 21562
  .wd-xl-500 {
21563
    width: 500px;
21564
  }
16848 stevensc 21565
 
16825 efrain 21566
  .wd-xl-500p {
21567
    width: 500%;
21568
  }
16848 stevensc 21569
 
16825 efrain 21570
  .mx-wd-xl-500p {
21571
    max-width: 500%;
21572
  }
16848 stevensc 21573
 
16825 efrain 21574
  .mn-wd-xl-500p {
21575
    min-width: 500%;
21576
  }
16848 stevensc 21577
 
16825 efrain 21578
  .wd-xl-500-f {
21579
    width: 500px !important;
21580
  }
16848 stevensc 21581
 
16825 efrain 21582
  .wd-xl-500p-f {
21583
    width: 500% !important;
21584
  }
16848 stevensc 21585
 
16825 efrain 21586
  .mx-wd-xl-500p-f {
21587
    max-width: 500% !important;
21588
  }
16848 stevensc 21589
 
16825 efrain 21590
  .mn-wd-xl-500p-f {
21591
    min-width: 500% !important;
21592
  }
16848 stevensc 21593
 
16825 efrain 21594
  .wd-xl-550 {
21595
    width: 550px;
21596
  }
16848 stevensc 21597
 
16825 efrain 21598
  .wd-xl-550p {
21599
    width: 550%;
21600
  }
16848 stevensc 21601
 
16825 efrain 21602
  .mx-wd-xl-550p {
21603
    max-width: 550%;
21604
  }
16848 stevensc 21605
 
16825 efrain 21606
  .mn-wd-xl-550p {
21607
    min-width: 550%;
21608
  }
16848 stevensc 21609
 
16825 efrain 21610
  .wd-xl-550-f {
21611
    width: 550px !important;
21612
  }
16848 stevensc 21613
 
16825 efrain 21614
  .wd-xl-550p-f {
21615
    width: 550% !important;
21616
  }
16848 stevensc 21617
 
16825 efrain 21618
  .mx-wd-xl-550p-f {
21619
    max-width: 550% !important;
21620
  }
16848 stevensc 21621
 
16825 efrain 21622
  .mn-wd-xl-550p-f {
21623
    min-width: 550% !important;
21624
  }
16848 stevensc 21625
 
16825 efrain 21626
  .wd-xl-600 {
21627
    width: 600px;
21628
  }
16848 stevensc 21629
 
16825 efrain 21630
  .wd-xl-600p {
21631
    width: 600%;
21632
  }
16848 stevensc 21633
 
16825 efrain 21634
  .mx-wd-xl-600p {
21635
    max-width: 600%;
21636
  }
16848 stevensc 21637
 
16825 efrain 21638
  .mn-wd-xl-600p {
21639
    min-width: 600%;
21640
  }
16848 stevensc 21641
 
16825 efrain 21642
  .wd-xl-600-f {
21643
    width: 600px !important;
21644
  }
16848 stevensc 21645
 
16825 efrain 21646
  .wd-xl-600p-f {
21647
    width: 600% !important;
21648
  }
16848 stevensc 21649
 
16825 efrain 21650
  .mx-wd-xl-600p-f {
21651
    max-width: 600% !important;
21652
  }
16848 stevensc 21653
 
16825 efrain 21654
  .mn-wd-xl-600p-f {
21655
    min-width: 600% !important;
21656
  }
16848 stevensc 21657
 
16825 efrain 21658
  .wd-xl-650 {
21659
    width: 650px;
21660
  }
16848 stevensc 21661
 
16825 efrain 21662
  .wd-xl-650p {
21663
    width: 650%;
21664
  }
16848 stevensc 21665
 
16825 efrain 21666
  .mx-wd-xl-650p {
21667
    max-width: 650%;
21668
  }
16848 stevensc 21669
 
16825 efrain 21670
  .mn-wd-xl-650p {
21671
    min-width: 650%;
21672
  }
16848 stevensc 21673
 
16825 efrain 21674
  .wd-xl-650-f {
21675
    width: 650px !important;
21676
  }
16848 stevensc 21677
 
16825 efrain 21678
  .wd-xl-650p-f {
21679
    width: 650% !important;
21680
  }
16848 stevensc 21681
 
16825 efrain 21682
  .mx-wd-xl-650p-f {
21683
    max-width: 650% !important;
21684
  }
16848 stevensc 21685
 
16825 efrain 21686
  .mn-wd-xl-650p-f {
21687
    min-width: 650% !important;
21688
  }
16848 stevensc 21689
 
16825 efrain 21690
  .wd-xl-700 {
21691
    width: 700px;
21692
  }
16848 stevensc 21693
 
16825 efrain 21694
  .wd-xl-700p {
21695
    width: 700%;
21696
  }
16848 stevensc 21697
 
16825 efrain 21698
  .mx-wd-xl-700p {
21699
    max-width: 700%;
21700
  }
16848 stevensc 21701
 
16825 efrain 21702
  .mn-wd-xl-700p {
21703
    min-width: 700%;
21704
  }
16848 stevensc 21705
 
16825 efrain 21706
  .wd-xl-700-f {
21707
    width: 700px !important;
21708
  }
16848 stevensc 21709
 
16825 efrain 21710
  .wd-xl-700p-f {
21711
    width: 700% !important;
21712
  }
16848 stevensc 21713
 
16825 efrain 21714
  .mx-wd-xl-700p-f {
21715
    max-width: 700% !important;
21716
  }
16848 stevensc 21717
 
16825 efrain 21718
  .mn-wd-xl-700p-f {
21719
    min-width: 700% !important;
21720
  }
16848 stevensc 21721
 
16825 efrain 21722
  .wd-xl-750 {
21723
    width: 750px;
21724
  }
16848 stevensc 21725
 
16825 efrain 21726
  .wd-xl-750p {
21727
    width: 750%;
21728
  }
16848 stevensc 21729
 
16825 efrain 21730
  .mx-wd-xl-750p {
21731
    max-width: 750%;
21732
  }
16848 stevensc 21733
 
16825 efrain 21734
  .mn-wd-xl-750p {
21735
    min-width: 750%;
21736
  }
16848 stevensc 21737
 
16825 efrain 21738
  .wd-xl-750-f {
21739
    width: 750px !important;
21740
  }
16848 stevensc 21741
 
16825 efrain 21742
  .wd-xl-750p-f {
21743
    width: 750% !important;
21744
  }
16848 stevensc 21745
 
16825 efrain 21746
  .mx-wd-xl-750p-f {
21747
    max-width: 750% !important;
21748
  }
16848 stevensc 21749
 
16825 efrain 21750
  .mn-wd-xl-750p-f {
21751
    min-width: 750% !important;
21752
  }
16848 stevensc 21753
 
16825 efrain 21754
  .wd-xl-800 {
21755
    width: 800px;
21756
  }
16848 stevensc 21757
 
16825 efrain 21758
  .wd-xl-800p {
21759
    width: 800%;
21760
  }
16848 stevensc 21761
 
16825 efrain 21762
  .mx-wd-xl-800p {
21763
    max-width: 800%;
21764
  }
16848 stevensc 21765
 
16825 efrain 21766
  .mn-wd-xl-800p {
21767
    min-width: 800%;
21768
  }
16848 stevensc 21769
 
16825 efrain 21770
  .wd-xl-800-f {
21771
    width: 800px !important;
21772
  }
16848 stevensc 21773
 
16825 efrain 21774
  .wd-xl-800p-f {
21775
    width: 800% !important;
21776
  }
16848 stevensc 21777
 
16825 efrain 21778
  .mx-wd-xl-800p-f {
21779
    max-width: 800% !important;
21780
  }
16848 stevensc 21781
 
16825 efrain 21782
  .mn-wd-xl-800p-f {
21783
    min-width: 800% !important;
21784
  }
16848 stevensc 21785
 
16825 efrain 21786
  .wd-xl-850 {
21787
    width: 850px;
21788
  }
16848 stevensc 21789
 
16825 efrain 21790
  .wd-xl-850p {
21791
    width: 850%;
21792
  }
16848 stevensc 21793
 
16825 efrain 21794
  .mx-wd-xl-850p {
21795
    max-width: 850%;
21796
  }
16848 stevensc 21797
 
16825 efrain 21798
  .mn-wd-xl-850p {
21799
    min-width: 850%;
21800
  }
16848 stevensc 21801
 
16825 efrain 21802
  .wd-xl-850-f {
21803
    width: 850px !important;
21804
  }
16848 stevensc 21805
 
16825 efrain 21806
  .wd-xl-850p-f {
21807
    width: 850% !important;
21808
  }
16848 stevensc 21809
 
16825 efrain 21810
  .mx-wd-xl-850p-f {
21811
    max-width: 850% !important;
21812
  }
16848 stevensc 21813
 
16825 efrain 21814
  .mn-wd-xl-850p-f {
21815
    min-width: 850% !important;
21816
  }
16848 stevensc 21817
 
16825 efrain 21818
  .wd-xl-900 {
21819
    width: 900px;
21820
  }
16848 stevensc 21821
 
16825 efrain 21822
  .wd-xl-900p {
21823
    width: 900%;
21824
  }
16848 stevensc 21825
 
16825 efrain 21826
  .mx-wd-xl-900p {
21827
    max-width: 900%;
21828
  }
16848 stevensc 21829
 
16825 efrain 21830
  .mn-wd-xl-900p {
21831
    min-width: 900%;
21832
  }
16848 stevensc 21833
 
16825 efrain 21834
  .wd-xl-900-f {
21835
    width: 900px !important;
21836
  }
16848 stevensc 21837
 
16825 efrain 21838
  .wd-xl-900p-f {
21839
    width: 900% !important;
21840
  }
16848 stevensc 21841
 
16825 efrain 21842
  .mx-wd-xl-900p-f {
21843
    max-width: 900% !important;
21844
  }
16848 stevensc 21845
 
16825 efrain 21846
  .mn-wd-xl-900p-f {
21847
    min-width: 900% !important;
21848
  }
16848 stevensc 21849
 
16825 efrain 21850
  .wd-xl-950 {
21851
    width: 950px;
21852
  }
16848 stevensc 21853
 
16825 efrain 21854
  .wd-xl-950p {
21855
    width: 950%;
21856
  }
16848 stevensc 21857
 
16825 efrain 21858
  .mx-wd-xl-950p {
21859
    max-width: 950%;
21860
  }
16848 stevensc 21861
 
16825 efrain 21862
  .mn-wd-xl-950p {
21863
    min-width: 950%;
21864
  }
16848 stevensc 21865
 
16825 efrain 21866
  .wd-xl-950-f {
21867
    width: 950px !important;
21868
  }
16848 stevensc 21869
 
16825 efrain 21870
  .wd-xl-950p-f {
21871
    width: 950% !important;
21872
  }
16848 stevensc 21873
 
16825 efrain 21874
  .mx-wd-xl-950p-f {
21875
    max-width: 950% !important;
21876
  }
16848 stevensc 21877
 
16825 efrain 21878
  .mn-wd-xl-950p-f {
21879
    min-width: 950% !important;
21880
  }
16848 stevensc 21881
 
16825 efrain 21882
  .wd-xl-1000 {
21883
    width: 1000px;
21884
  }
16848 stevensc 21885
 
16825 efrain 21886
  .wd-xl-1000p {
21887
    width: 1000%;
21888
  }
16848 stevensc 21889
 
16825 efrain 21890
  .mx-wd-xl-1000p {
21891
    max-width: 1000%;
21892
  }
16848 stevensc 21893
 
16825 efrain 21894
  .mn-wd-xl-1000p {
21895
    min-width: 1000%;
21896
  }
16848 stevensc 21897
 
16825 efrain 21898
  .wd-xl-1000-f {
21899
    width: 1000px !important;
21900
  }
16848 stevensc 21901
 
16825 efrain 21902
  .wd-xl-1000p-f {
21903
    width: 1000% !important;
21904
  }
16848 stevensc 21905
 
16825 efrain 21906
  .mx-wd-xl-1000p-f {
21907
    max-width: 1000% !important;
21908
  }
16848 stevensc 21909
 
16825 efrain 21910
  .mn-wd-xl-1000p-f {
21911
    min-width: 1000% !important;
21912
  }
16848 stevensc 21913
 
16825 efrain 21914
  .wd-xl-auto {
21915
    width: auto;
21916
  }
16848 stevensc 21917
 
16825 efrain 21918
  .wd-xl-auto {
21919
    width: auto !important;
21920
  }
21921
}
16848 stevensc 21922
 
16825 efrain 21923
@media (min-width: 1400px) {
21924
  .wd-xxl-5 {
21925
    width: 5px;
21926
  }
16848 stevensc 21927
 
16825 efrain 21928
  .wd-xxl-5p {
21929
    width: 5%;
21930
  }
16848 stevensc 21931
 
16825 efrain 21932
  .mx-wd-xxl-5p {
21933
    max-width: 5%;
21934
  }
16848 stevensc 21935
 
16825 efrain 21936
  .mn-wd-xxl-5p {
21937
    min-width: 5%;
21938
  }
16848 stevensc 21939
 
16825 efrain 21940
  .wd-xxl-5-f {
21941
    width: 5px !important;
21942
  }
16848 stevensc 21943
 
16825 efrain 21944
  .wd-xxl-5p-f {
21945
    width: 5% !important;
21946
  }
16848 stevensc 21947
 
16825 efrain 21948
  .mx-wd-xxl-5p-f {
21949
    max-width: 5% !important;
21950
  }
16848 stevensc 21951
 
16825 efrain 21952
  .mn-wd-xxl-5p-f {
21953
    min-width: 5% !important;
21954
  }
16848 stevensc 21955
 
16825 efrain 21956
  .wd-xxl-10 {
21957
    width: 10px;
21958
  }
16848 stevensc 21959
 
16825 efrain 21960
  .wd-xxl-10p {
21961
    width: 10%;
21962
  }
16848 stevensc 21963
 
16825 efrain 21964
  .mx-wd-xxl-10p {
21965
    max-width: 10%;
21966
  }
16848 stevensc 21967
 
16825 efrain 21968
  .mn-wd-xxl-10p {
21969
    min-width: 10%;
21970
  }
16848 stevensc 21971
 
16825 efrain 21972
  .wd-xxl-10-f {
21973
    width: 10px !important;
21974
  }
16848 stevensc 21975
 
16825 efrain 21976
  .wd-xxl-10p-f {
21977
    width: 10% !important;
21978
  }
16848 stevensc 21979
 
16825 efrain 21980
  .mx-wd-xxl-10p-f {
21981
    max-width: 10% !important;
21982
  }
16848 stevensc 21983
 
16825 efrain 21984
  .mn-wd-xxl-10p-f {
21985
    min-width: 10% !important;
21986
  }
16848 stevensc 21987
 
16825 efrain 21988
  .wd-xxl-15 {
21989
    width: 15px;
21990
  }
16848 stevensc 21991
 
16825 efrain 21992
  .wd-xxl-15p {
21993
    width: 15%;
21994
  }
16848 stevensc 21995
 
16825 efrain 21996
  .mx-wd-xxl-15p {
21997
    max-width: 15%;
21998
  }
16848 stevensc 21999
 
16825 efrain 22000
  .mn-wd-xxl-15p {
22001
    min-width: 15%;
22002
  }
16848 stevensc 22003
 
16825 efrain 22004
  .wd-xxl-15-f {
22005
    width: 15px !important;
22006
  }
16848 stevensc 22007
 
16825 efrain 22008
  .wd-xxl-15p-f {
22009
    width: 15% !important;
22010
  }
16848 stevensc 22011
 
16825 efrain 22012
  .mx-wd-xxl-15p-f {
22013
    max-width: 15% !important;
22014
  }
16848 stevensc 22015
 
16825 efrain 22016
  .mn-wd-xxl-15p-f {
22017
    min-width: 15% !important;
22018
  }
16848 stevensc 22019
 
16825 efrain 22020
  .wd-xxl-20 {
22021
    width: 20px;
22022
  }
16848 stevensc 22023
 
16825 efrain 22024
  .wd-xxl-20p {
22025
    width: 20%;
22026
  }
16848 stevensc 22027
 
16825 efrain 22028
  .mx-wd-xxl-20p {
22029
    max-width: 20%;
22030
  }
16848 stevensc 22031
 
16825 efrain 22032
  .mn-wd-xxl-20p {
22033
    min-width: 20%;
22034
  }
16848 stevensc 22035
 
16825 efrain 22036
  .wd-xxl-20-f {
22037
    width: 20px !important;
22038
  }
16848 stevensc 22039
 
16825 efrain 22040
  .wd-xxl-20p-f {
22041
    width: 20% !important;
22042
  }
16848 stevensc 22043
 
16825 efrain 22044
  .mx-wd-xxl-20p-f {
22045
    max-width: 20% !important;
22046
  }
16848 stevensc 22047
 
16825 efrain 22048
  .mn-wd-xxl-20p-f {
22049
    min-width: 20% !important;
22050
  }
16848 stevensc 22051
 
16825 efrain 22052
  .wd-xxl-25 {
22053
    width: 25px;
22054
  }
16848 stevensc 22055
 
16825 efrain 22056
  .wd-xxl-25p {
22057
    width: 25%;
22058
  }
16848 stevensc 22059
 
16825 efrain 22060
  .mx-wd-xxl-25p {
22061
    max-width: 25%;
22062
  }
16848 stevensc 22063
 
16825 efrain 22064
  .mn-wd-xxl-25p {
22065
    min-width: 25%;
22066
  }
16848 stevensc 22067
 
16825 efrain 22068
  .wd-xxl-25-f {
22069
    width: 25px !important;
22070
  }
16848 stevensc 22071
 
16825 efrain 22072
  .wd-xxl-25p-f {
22073
    width: 25% !important;
22074
  }
16848 stevensc 22075
 
16825 efrain 22076
  .mx-wd-xxl-25p-f {
22077
    max-width: 25% !important;
22078
  }
16848 stevensc 22079
 
16825 efrain 22080
  .mn-wd-xxl-25p-f {
22081
    min-width: 25% !important;
22082
  }
16848 stevensc 22083
 
16825 efrain 22084
  .wd-xxl-30 {
22085
    width: 30px;
22086
  }
16848 stevensc 22087
 
16825 efrain 22088
  .wd-xxl-30p {
22089
    width: 30%;
22090
  }
16848 stevensc 22091
 
16825 efrain 22092
  .mx-wd-xxl-30p {
22093
    max-width: 30%;
22094
  }
16848 stevensc 22095
 
16825 efrain 22096
  .mn-wd-xxl-30p {
22097
    min-width: 30%;
22098
  }
16848 stevensc 22099
 
16825 efrain 22100
  .wd-xxl-30-f {
22101
    width: 30px !important;
22102
  }
16848 stevensc 22103
 
16825 efrain 22104
  .wd-xxl-30p-f {
22105
    width: 30% !important;
22106
  }
16848 stevensc 22107
 
16825 efrain 22108
  .mx-wd-xxl-30p-f {
22109
    max-width: 30% !important;
22110
  }
16848 stevensc 22111
 
16825 efrain 22112
  .mn-wd-xxl-30p-f {
22113
    min-width: 30% !important;
22114
  }
16848 stevensc 22115
 
16825 efrain 22116
  .wd-xxl-35 {
22117
    width: 35px;
22118
  }
16848 stevensc 22119
 
16825 efrain 22120
  .wd-xxl-35p {
22121
    width: 35%;
22122
  }
16848 stevensc 22123
 
16825 efrain 22124
  .mx-wd-xxl-35p {
22125
    max-width: 35%;
22126
  }
16848 stevensc 22127
 
16825 efrain 22128
  .mn-wd-xxl-35p {
22129
    min-width: 35%;
22130
  }
16848 stevensc 22131
 
16825 efrain 22132
  .wd-xxl-35-f {
22133
    width: 35px !important;
22134
  }
16848 stevensc 22135
 
16825 efrain 22136
  .wd-xxl-35p-f {
22137
    width: 35% !important;
22138
  }
16848 stevensc 22139
 
16825 efrain 22140
  .mx-wd-xxl-35p-f {
22141
    max-width: 35% !important;
22142
  }
16848 stevensc 22143
 
16825 efrain 22144
  .mn-wd-xxl-35p-f {
22145
    min-width: 35% !important;
22146
  }
16848 stevensc 22147
 
16825 efrain 22148
  .wd-xxl-40 {
22149
    width: 40px;
22150
  }
16848 stevensc 22151
 
16825 efrain 22152
  .wd-xxl-40p {
22153
    width: 40%;
22154
  }
16848 stevensc 22155
 
16825 efrain 22156
  .mx-wd-xxl-40p {
22157
    max-width: 40%;
22158
  }
16848 stevensc 22159
 
16825 efrain 22160
  .mn-wd-xxl-40p {
22161
    min-width: 40%;
22162
  }
16848 stevensc 22163
 
16825 efrain 22164
  .wd-xxl-40-f {
22165
    width: 40px !important;
22166
  }
16848 stevensc 22167
 
16825 efrain 22168
  .wd-xxl-40p-f {
22169
    width: 40% !important;
22170
  }
16848 stevensc 22171
 
16825 efrain 22172
  .mx-wd-xxl-40p-f {
22173
    max-width: 40% !important;
22174
  }
16848 stevensc 22175
 
16825 efrain 22176
  .mn-wd-xxl-40p-f {
22177
    min-width: 40% !important;
22178
  }
16848 stevensc 22179
 
16825 efrain 22180
  .wd-xxl-45 {
22181
    width: 45px;
22182
  }
16848 stevensc 22183
 
16825 efrain 22184
  .wd-xxl-45p {
22185
    width: 45%;
22186
  }
16848 stevensc 22187
 
16825 efrain 22188
  .mx-wd-xxl-45p {
22189
    max-width: 45%;
22190
  }
16848 stevensc 22191
 
16825 efrain 22192
  .mn-wd-xxl-45p {
22193
    min-width: 45%;
22194
  }
16848 stevensc 22195
 
16825 efrain 22196
  .wd-xxl-45-f {
22197
    width: 45px !important;
22198
  }
16848 stevensc 22199
 
16825 efrain 22200
  .wd-xxl-45p-f {
22201
    width: 45% !important;
22202
  }
16848 stevensc 22203
 
16825 efrain 22204
  .mx-wd-xxl-45p-f {
22205
    max-width: 45% !important;
22206
  }
16848 stevensc 22207
 
16825 efrain 22208
  .mn-wd-xxl-45p-f {
22209
    min-width: 45% !important;
22210
  }
16848 stevensc 22211
 
16825 efrain 22212
  .wd-xxl-50 {
22213
    width: 50px;
22214
  }
16848 stevensc 22215
 
16825 efrain 22216
  .wd-xxl-50p {
22217
    width: 50%;
22218
  }
16848 stevensc 22219
 
16825 efrain 22220
  .mx-wd-xxl-50p {
22221
    max-width: 50%;
22222
  }
16848 stevensc 22223
 
16825 efrain 22224
  .mn-wd-xxl-50p {
22225
    min-width: 50%;
22226
  }
16848 stevensc 22227
 
16825 efrain 22228
  .wd-xxl-50-f {
22229
    width: 50px !important;
22230
  }
16848 stevensc 22231
 
16825 efrain 22232
  .wd-xxl-50p-f {
22233
    width: 50% !important;
22234
  }
16848 stevensc 22235
 
16825 efrain 22236
  .mx-wd-xxl-50p-f {
22237
    max-width: 50% !important;
22238
  }
16848 stevensc 22239
 
16825 efrain 22240
  .mn-wd-xxl-50p-f {
22241
    min-width: 50% !important;
22242
  }
16848 stevensc 22243
 
16825 efrain 22244
  .wd-xxl-55 {
22245
    width: 55px;
22246
  }
16848 stevensc 22247
 
16825 efrain 22248
  .wd-xxl-55p {
22249
    width: 55%;
22250
  }
16848 stevensc 22251
 
16825 efrain 22252
  .mx-wd-xxl-55p {
22253
    max-width: 55%;
22254
  }
16848 stevensc 22255
 
16825 efrain 22256
  .mn-wd-xxl-55p {
22257
    min-width: 55%;
22258
  }
16848 stevensc 22259
 
16825 efrain 22260
  .wd-xxl-55-f {
22261
    width: 55px !important;
22262
  }
16848 stevensc 22263
 
16825 efrain 22264
  .wd-xxl-55p-f {
22265
    width: 55% !important;
22266
  }
16848 stevensc 22267
 
16825 efrain 22268
  .mx-wd-xxl-55p-f {
22269
    max-width: 55% !important;
22270
  }
16848 stevensc 22271
 
16825 efrain 22272
  .mn-wd-xxl-55p-f {
22273
    min-width: 55% !important;
22274
  }
16848 stevensc 22275
 
16825 efrain 22276
  .wd-xxl-60 {
22277
    width: 60px;
22278
  }
16848 stevensc 22279
 
16825 efrain 22280
  .wd-xxl-60p {
22281
    width: 60%;
22282
  }
16848 stevensc 22283
 
16825 efrain 22284
  .mx-wd-xxl-60p {
22285
    max-width: 60%;
22286
  }
16848 stevensc 22287
 
16825 efrain 22288
  .mn-wd-xxl-60p {
22289
    min-width: 60%;
22290
  }
16848 stevensc 22291
 
16825 efrain 22292
  .wd-xxl-60-f {
22293
    width: 60px !important;
22294
  }
16848 stevensc 22295
 
16825 efrain 22296
  .wd-xxl-60p-f {
22297
    width: 60% !important;
22298
  }
16848 stevensc 22299
 
16825 efrain 22300
  .mx-wd-xxl-60p-f {
22301
    max-width: 60% !important;
22302
  }
16848 stevensc 22303
 
16825 efrain 22304
  .mn-wd-xxl-60p-f {
22305
    min-width: 60% !important;
22306
  }
16848 stevensc 22307
 
16825 efrain 22308
  .wd-xxl-65 {
22309
    width: 65px;
22310
  }
16848 stevensc 22311
 
16825 efrain 22312
  .wd-xxl-65p {
22313
    width: 65%;
22314
  }
16848 stevensc 22315
 
16825 efrain 22316
  .mx-wd-xxl-65p {
22317
    max-width: 65%;
22318
  }
16848 stevensc 22319
 
16825 efrain 22320
  .mn-wd-xxl-65p {
22321
    min-width: 65%;
22322
  }
16848 stevensc 22323
 
16825 efrain 22324
  .wd-xxl-65-f {
22325
    width: 65px !important;
22326
  }
16848 stevensc 22327
 
16825 efrain 22328
  .wd-xxl-65p-f {
22329
    width: 65% !important;
22330
  }
16848 stevensc 22331
 
16825 efrain 22332
  .mx-wd-xxl-65p-f {
22333
    max-width: 65% !important;
22334
  }
16848 stevensc 22335
 
16825 efrain 22336
  .mn-wd-xxl-65p-f {
22337
    min-width: 65% !important;
22338
  }
16848 stevensc 22339
 
16825 efrain 22340
  .wd-xxl-70 {
22341
    width: 70px;
22342
  }
16848 stevensc 22343
 
16825 efrain 22344
  .wd-xxl-70p {
22345
    width: 70%;
22346
  }
16848 stevensc 22347
 
16825 efrain 22348
  .mx-wd-xxl-70p {
22349
    max-width: 70%;
22350
  }
16848 stevensc 22351
 
16825 efrain 22352
  .mn-wd-xxl-70p {
22353
    min-width: 70%;
22354
  }
16848 stevensc 22355
 
16825 efrain 22356
  .wd-xxl-70-f {
22357
    width: 70px !important;
22358
  }
16848 stevensc 22359
 
16825 efrain 22360
  .wd-xxl-70p-f {
22361
    width: 70% !important;
22362
  }
16848 stevensc 22363
 
16825 efrain 22364
  .mx-wd-xxl-70p-f {
22365
    max-width: 70% !important;
22366
  }
16848 stevensc 22367
 
16825 efrain 22368
  .mn-wd-xxl-70p-f {
22369
    min-width: 70% !important;
22370
  }
16848 stevensc 22371
 
16825 efrain 22372
  .wd-xxl-75 {
22373
    width: 75px;
22374
  }
16848 stevensc 22375
 
16825 efrain 22376
  .wd-xxl-75p {
22377
    width: 75%;
22378
  }
16848 stevensc 22379
 
16825 efrain 22380
  .mx-wd-xxl-75p {
22381
    max-width: 75%;
22382
  }
16848 stevensc 22383
 
16825 efrain 22384
  .mn-wd-xxl-75p {
22385
    min-width: 75%;
22386
  }
16848 stevensc 22387
 
16825 efrain 22388
  .wd-xxl-75-f {
22389
    width: 75px !important;
22390
  }
16848 stevensc 22391
 
16825 efrain 22392
  .wd-xxl-75p-f {
22393
    width: 75% !important;
22394
  }
16848 stevensc 22395
 
16825 efrain 22396
  .mx-wd-xxl-75p-f {
22397
    max-width: 75% !important;
22398
  }
16848 stevensc 22399
 
16825 efrain 22400
  .mn-wd-xxl-75p-f {
22401
    min-width: 75% !important;
22402
  }
16848 stevensc 22403
 
16825 efrain 22404
  .wd-xxl-80 {
22405
    width: 80px;
22406
  }
16848 stevensc 22407
 
16825 efrain 22408
  .wd-xxl-80p {
22409
    width: 80%;
22410
  }
16848 stevensc 22411
 
16825 efrain 22412
  .mx-wd-xxl-80p {
22413
    max-width: 80%;
22414
  }
16848 stevensc 22415
 
16825 efrain 22416
  .mn-wd-xxl-80p {
22417
    min-width: 80%;
22418
  }
16848 stevensc 22419
 
16825 efrain 22420
  .wd-xxl-80-f {
22421
    width: 80px !important;
22422
  }
16848 stevensc 22423
 
16825 efrain 22424
  .wd-xxl-80p-f {
22425
    width: 80% !important;
22426
  }
16848 stevensc 22427
 
16825 efrain 22428
  .mx-wd-xxl-80p-f {
22429
    max-width: 80% !important;
22430
  }
16848 stevensc 22431
 
16825 efrain 22432
  .mn-wd-xxl-80p-f {
22433
    min-width: 80% !important;
22434
  }
16848 stevensc 22435
 
16825 efrain 22436
  .wd-xxl-85 {
22437
    width: 85px;
22438
  }
16848 stevensc 22439
 
16825 efrain 22440
  .wd-xxl-85p {
22441
    width: 85%;
22442
  }
16848 stevensc 22443
 
16825 efrain 22444
  .mx-wd-xxl-85p {
22445
    max-width: 85%;
22446
  }
16848 stevensc 22447
 
16825 efrain 22448
  .mn-wd-xxl-85p {
22449
    min-width: 85%;
22450
  }
16848 stevensc 22451
 
16825 efrain 22452
  .wd-xxl-85-f {
22453
    width: 85px !important;
22454
  }
16848 stevensc 22455
 
16825 efrain 22456
  .wd-xxl-85p-f {
22457
    width: 85% !important;
22458
  }
16848 stevensc 22459
 
16825 efrain 22460
  .mx-wd-xxl-85p-f {
22461
    max-width: 85% !important;
22462
  }
16848 stevensc 22463
 
16825 efrain 22464
  .mn-wd-xxl-85p-f {
22465
    min-width: 85% !important;
22466
  }
16848 stevensc 22467
 
16825 efrain 22468
  .wd-xxl-90 {
22469
    width: 90px;
22470
  }
16848 stevensc 22471
 
16825 efrain 22472
  .wd-xxl-90p {
22473
    width: 90%;
22474
  }
16848 stevensc 22475
 
16825 efrain 22476
  .mx-wd-xxl-90p {
22477
    max-width: 90%;
22478
  }
16848 stevensc 22479
 
16825 efrain 22480
  .mn-wd-xxl-90p {
22481
    min-width: 90%;
22482
  }
16848 stevensc 22483
 
16825 efrain 22484
  .wd-xxl-90-f {
22485
    width: 90px !important;
22486
  }
16848 stevensc 22487
 
16825 efrain 22488
  .wd-xxl-90p-f {
22489
    width: 90% !important;
22490
  }
16848 stevensc 22491
 
16825 efrain 22492
  .mx-wd-xxl-90p-f {
22493
    max-width: 90% !important;
22494
  }
16848 stevensc 22495
 
16825 efrain 22496
  .mn-wd-xxl-90p-f {
22497
    min-width: 90% !important;
22498
  }
16848 stevensc 22499
 
16825 efrain 22500
  .wd-xxl-95 {
22501
    width: 95px;
22502
  }
16848 stevensc 22503
 
16825 efrain 22504
  .wd-xxl-95p {
22505
    width: 95%;
22506
  }
16848 stevensc 22507
 
16825 efrain 22508
  .mx-wd-xxl-95p {
22509
    max-width: 95%;
22510
  }
16848 stevensc 22511
 
16825 efrain 22512
  .mn-wd-xxl-95p {
22513
    min-width: 95%;
22514
  }
16848 stevensc 22515
 
16825 efrain 22516
  .wd-xxl-95-f {
22517
    width: 95px !important;
22518
  }
16848 stevensc 22519
 
16825 efrain 22520
  .wd-xxl-95p-f {
22521
    width: 95% !important;
22522
  }
16848 stevensc 22523
 
16825 efrain 22524
  .mx-wd-xxl-95p-f {
22525
    max-width: 95% !important;
22526
  }
16848 stevensc 22527
 
16825 efrain 22528
  .mn-wd-xxl-95p-f {
22529
    min-width: 95% !important;
22530
  }
16848 stevensc 22531
 
16825 efrain 22532
  .wd-xxl-100 {
22533
    width: 100px;
22534
  }
16848 stevensc 22535
 
16825 efrain 22536
  .wd-xxl-100p {
22537
    width: 100%;
22538
  }
16848 stevensc 22539
 
16825 efrain 22540
  .mx-wd-xxl-100p {
22541
    max-width: 100%;
22542
  }
16848 stevensc 22543
 
16825 efrain 22544
  .mn-wd-xxl-100p {
22545
    min-width: 100%;
22546
  }
16848 stevensc 22547
 
16825 efrain 22548
  .wd-xxl-100-f {
22549
    width: 100px !important;
22550
  }
16848 stevensc 22551
 
16825 efrain 22552
  .wd-xxl-100p-f {
22553
    width: 100% !important;
22554
  }
16848 stevensc 22555
 
16825 efrain 22556
  .mx-wd-xxl-100p-f {
22557
    max-width: 100% !important;
22558
  }
16848 stevensc 22559
 
16825 efrain 22560
  .mn-wd-xxl-100p-f {
22561
    min-width: 100% !important;
22562
  }
16848 stevensc 22563
 
16825 efrain 22564
  .wd-xxl-150 {
22565
    width: 150px;
22566
  }
16848 stevensc 22567
 
16825 efrain 22568
  .wd-xxl-150p {
22569
    width: 150%;
22570
  }
16848 stevensc 22571
 
16825 efrain 22572
  .mx-wd-xxl-150p {
22573
    max-width: 150%;
22574
  }
16848 stevensc 22575
 
16825 efrain 22576
  .mn-wd-xxl-150p {
22577
    min-width: 150%;
22578
  }
16848 stevensc 22579
 
16825 efrain 22580
  .wd-xxl-150-f {
22581
    width: 150px !important;
22582
  }
16848 stevensc 22583
 
16825 efrain 22584
  .wd-xxl-150p-f {
22585
    width: 150% !important;
22586
  }
16848 stevensc 22587
 
16825 efrain 22588
  .mx-wd-xxl-150p-f {
22589
    max-width: 150% !important;
22590
  }
16848 stevensc 22591
 
16825 efrain 22592
  .mn-wd-xxl-150p-f {
22593
    min-width: 150% !important;
22594
  }
16848 stevensc 22595
 
16825 efrain 22596
  .wd-xxl-200 {
22597
    width: 200px;
22598
  }
16848 stevensc 22599
 
16825 efrain 22600
  .wd-xxl-200p {
22601
    width: 200%;
22602
  }
16848 stevensc 22603
 
16825 efrain 22604
  .mx-wd-xxl-200p {
22605
    max-width: 200%;
22606
  }
16848 stevensc 22607
 
16825 efrain 22608
  .mn-wd-xxl-200p {
22609
    min-width: 200%;
22610
  }
16848 stevensc 22611
 
16825 efrain 22612
  .wd-xxl-200-f {
22613
    width: 200px !important;
22614
  }
16848 stevensc 22615
 
16825 efrain 22616
  .wd-xxl-200p-f {
22617
    width: 200% !important;
22618
  }
16848 stevensc 22619
 
16825 efrain 22620
  .mx-wd-xxl-200p-f {
22621
    max-width: 200% !important;
22622
  }
16848 stevensc 22623
 
16825 efrain 22624
  .mn-wd-xxl-200p-f {
22625
    min-width: 200% !important;
22626
  }
16848 stevensc 22627
 
16825 efrain 22628
  .wd-xxl-250 {
22629
    width: 250px;
22630
  }
16848 stevensc 22631
 
16825 efrain 22632
  .wd-xxl-250p {
22633
    width: 250%;
22634
  }
16848 stevensc 22635
 
16825 efrain 22636
  .mx-wd-xxl-250p {
22637
    max-width: 250%;
22638
  }
16848 stevensc 22639
 
16825 efrain 22640
  .mn-wd-xxl-250p {
22641
    min-width: 250%;
22642
  }
16848 stevensc 22643
 
16825 efrain 22644
  .wd-xxl-250-f {
22645
    width: 250px !important;
22646
  }
16848 stevensc 22647
 
16825 efrain 22648
  .wd-xxl-250p-f {
22649
    width: 250% !important;
22650
  }
16848 stevensc 22651
 
16825 efrain 22652
  .mx-wd-xxl-250p-f {
22653
    max-width: 250% !important;
22654
  }
16848 stevensc 22655
 
16825 efrain 22656
  .mn-wd-xxl-250p-f {
22657
    min-width: 250% !important;
22658
  }
16848 stevensc 22659
 
16825 efrain 22660
  .wd-xxl-300 {
22661
    width: 300px;
22662
  }
16848 stevensc 22663
 
16825 efrain 22664
  .wd-xxl-300p {
22665
    width: 300%;
22666
  }
16848 stevensc 22667
 
16825 efrain 22668
  .mx-wd-xxl-300p {
22669
    max-width: 300%;
22670
  }
16848 stevensc 22671
 
16825 efrain 22672
  .mn-wd-xxl-300p {
22673
    min-width: 300%;
22674
  }
16848 stevensc 22675
 
16825 efrain 22676
  .wd-xxl-300-f {
22677
    width: 300px !important;
22678
  }
16848 stevensc 22679
 
16825 efrain 22680
  .wd-xxl-300p-f {
22681
    width: 300% !important;
22682
  }
16848 stevensc 22683
 
16825 efrain 22684
  .mx-wd-xxl-300p-f {
22685
    max-width: 300% !important;
22686
  }
16848 stevensc 22687
 
16825 efrain 22688
  .mn-wd-xxl-300p-f {
22689
    min-width: 300% !important;
22690
  }
16848 stevensc 22691
 
16825 efrain 22692
  .wd-xxl-350 {
22693
    width: 350px;
22694
  }
16848 stevensc 22695
 
16825 efrain 22696
  .wd-xxl-350p {
22697
    width: 350%;
22698
  }
16848 stevensc 22699
 
16825 efrain 22700
  .mx-wd-xxl-350p {
22701
    max-width: 350%;
22702
  }
16848 stevensc 22703
 
16825 efrain 22704
  .mn-wd-xxl-350p {
22705
    min-width: 350%;
22706
  }
16848 stevensc 22707
 
16825 efrain 22708
  .wd-xxl-350-f {
22709
    width: 350px !important;
22710
  }
16848 stevensc 22711
 
16825 efrain 22712
  .wd-xxl-350p-f {
22713
    width: 350% !important;
22714
  }
16848 stevensc 22715
 
16825 efrain 22716
  .mx-wd-xxl-350p-f {
22717
    max-width: 350% !important;
22718
  }
16848 stevensc 22719
 
16825 efrain 22720
  .mn-wd-xxl-350p-f {
22721
    min-width: 350% !important;
22722
  }
16848 stevensc 22723
 
16825 efrain 22724
  .wd-xxl-400 {
22725
    width: 400px;
22726
  }
16848 stevensc 22727
 
16825 efrain 22728
  .wd-xxl-400p {
22729
    width: 400%;
22730
  }
16848 stevensc 22731
 
16825 efrain 22732
  .mx-wd-xxl-400p {
22733
    max-width: 400%;
22734
  }
16848 stevensc 22735
 
16825 efrain 22736
  .mn-wd-xxl-400p {
22737
    min-width: 400%;
22738
  }
16848 stevensc 22739
 
16825 efrain 22740
  .wd-xxl-400-f {
22741
    width: 400px !important;
22742
  }
16848 stevensc 22743
 
16825 efrain 22744
  .wd-xxl-400p-f {
22745
    width: 400% !important;
22746
  }
16848 stevensc 22747
 
16825 efrain 22748
  .mx-wd-xxl-400p-f {
22749
    max-width: 400% !important;
22750
  }
16848 stevensc 22751
 
16825 efrain 22752
  .mn-wd-xxl-400p-f {
22753
    min-width: 400% !important;
22754
  }
16848 stevensc 22755
 
16825 efrain 22756
  .wd-xxl-450 {
22757
    width: 450px;
22758
  }
16848 stevensc 22759
 
16825 efrain 22760
  .wd-xxl-450p {
22761
    width: 450%;
22762
  }
16848 stevensc 22763
 
16825 efrain 22764
  .mx-wd-xxl-450p {
22765
    max-width: 450%;
22766
  }
16848 stevensc 22767
 
16825 efrain 22768
  .mn-wd-xxl-450p {
22769
    min-width: 450%;
22770
  }
16848 stevensc 22771
 
16825 efrain 22772
  .wd-xxl-450-f {
22773
    width: 450px !important;
22774
  }
16848 stevensc 22775
 
16825 efrain 22776
  .wd-xxl-450p-f {
22777
    width: 450% !important;
22778
  }
16848 stevensc 22779
 
16825 efrain 22780
  .mx-wd-xxl-450p-f {
22781
    max-width: 450% !important;
22782
  }
16848 stevensc 22783
 
16825 efrain 22784
  .mn-wd-xxl-450p-f {
22785
    min-width: 450% !important;
22786
  }
16848 stevensc 22787
 
16825 efrain 22788
  .wd-xxl-500 {
22789
    width: 500px;
22790
  }
16848 stevensc 22791
 
16825 efrain 22792
  .wd-xxl-500p {
22793
    width: 500%;
22794
  }
16848 stevensc 22795
 
16825 efrain 22796
  .mx-wd-xxl-500p {
22797
    max-width: 500%;
22798
  }
16848 stevensc 22799
 
16825 efrain 22800
  .mn-wd-xxl-500p {
22801
    min-width: 500%;
22802
  }
16848 stevensc 22803
 
16825 efrain 22804
  .wd-xxl-500-f {
22805
    width: 500px !important;
22806
  }
16848 stevensc 22807
 
16825 efrain 22808
  .wd-xxl-500p-f {
22809
    width: 500% !important;
22810
  }
16848 stevensc 22811
 
16825 efrain 22812
  .mx-wd-xxl-500p-f {
22813
    max-width: 500% !important;
22814
  }
16848 stevensc 22815
 
16825 efrain 22816
  .mn-wd-xxl-500p-f {
22817
    min-width: 500% !important;
22818
  }
16848 stevensc 22819
 
16825 efrain 22820
  .wd-xxl-550 {
22821
    width: 550px;
22822
  }
16848 stevensc 22823
 
16825 efrain 22824
  .wd-xxl-550p {
22825
    width: 550%;
22826
  }
16848 stevensc 22827
 
16825 efrain 22828
  .mx-wd-xxl-550p {
22829
    max-width: 550%;
22830
  }
16848 stevensc 22831
 
16825 efrain 22832
  .mn-wd-xxl-550p {
22833
    min-width: 550%;
22834
  }
16848 stevensc 22835
 
16825 efrain 22836
  .wd-xxl-550-f {
22837
    width: 550px !important;
22838
  }
16848 stevensc 22839
 
16825 efrain 22840
  .wd-xxl-550p-f {
22841
    width: 550% !important;
22842
  }
16848 stevensc 22843
 
16825 efrain 22844
  .mx-wd-xxl-550p-f {
22845
    max-width: 550% !important;
22846
  }
16848 stevensc 22847
 
16825 efrain 22848
  .mn-wd-xxl-550p-f {
22849
    min-width: 550% !important;
22850
  }
16848 stevensc 22851
 
16825 efrain 22852
  .wd-xxl-600 {
22853
    width: 600px;
22854
  }
16848 stevensc 22855
 
16825 efrain 22856
  .wd-xxl-600p {
22857
    width: 600%;
22858
  }
16848 stevensc 22859
 
16825 efrain 22860
  .mx-wd-xxl-600p {
22861
    max-width: 600%;
22862
  }
16848 stevensc 22863
 
16825 efrain 22864
  .mn-wd-xxl-600p {
22865
    min-width: 600%;
22866
  }
16848 stevensc 22867
 
16825 efrain 22868
  .wd-xxl-600-f {
22869
    width: 600px !important;
22870
  }
16848 stevensc 22871
 
16825 efrain 22872
  .wd-xxl-600p-f {
22873
    width: 600% !important;
22874
  }
16848 stevensc 22875
 
16825 efrain 22876
  .mx-wd-xxl-600p-f {
22877
    max-width: 600% !important;
22878
  }
16848 stevensc 22879
 
16825 efrain 22880
  .mn-wd-xxl-600p-f {
22881
    min-width: 600% !important;
22882
  }
16848 stevensc 22883
 
16825 efrain 22884
  .wd-xxl-650 {
22885
    width: 650px;
22886
  }
16848 stevensc 22887
 
16825 efrain 22888
  .wd-xxl-650p {
22889
    width: 650%;
22890
  }
16848 stevensc 22891
 
16825 efrain 22892
  .mx-wd-xxl-650p {
22893
    max-width: 650%;
22894
  }
16848 stevensc 22895
 
16825 efrain 22896
  .mn-wd-xxl-650p {
22897
    min-width: 650%;
22898
  }
16848 stevensc 22899
 
16825 efrain 22900
  .wd-xxl-650-f {
22901
    width: 650px !important;
22902
  }
16848 stevensc 22903
 
16825 efrain 22904
  .wd-xxl-650p-f {
22905
    width: 650% !important;
22906
  }
16848 stevensc 22907
 
16825 efrain 22908
  .mx-wd-xxl-650p-f {
22909
    max-width: 650% !important;
22910
  }
16848 stevensc 22911
 
16825 efrain 22912
  .mn-wd-xxl-650p-f {
22913
    min-width: 650% !important;
22914
  }
16848 stevensc 22915
 
16825 efrain 22916
  .wd-xxl-700 {
22917
    width: 700px;
22918
  }
16848 stevensc 22919
 
16825 efrain 22920
  .wd-xxl-700p {
22921
    width: 700%;
22922
  }
16848 stevensc 22923
 
16825 efrain 22924
  .mx-wd-xxl-700p {
22925
    max-width: 700%;
22926
  }
16848 stevensc 22927
 
16825 efrain 22928
  .mn-wd-xxl-700p {
22929
    min-width: 700%;
22930
  }
16848 stevensc 22931
 
16825 efrain 22932
  .wd-xxl-700-f {
22933
    width: 700px !important;
22934
  }
16848 stevensc 22935
 
16825 efrain 22936
  .wd-xxl-700p-f {
22937
    width: 700% !important;
22938
  }
16848 stevensc 22939
 
16825 efrain 22940
  .mx-wd-xxl-700p-f {
22941
    max-width: 700% !important;
22942
  }
16848 stevensc 22943
 
16825 efrain 22944
  .mn-wd-xxl-700p-f {
22945
    min-width: 700% !important;
22946
  }
16848 stevensc 22947
 
16825 efrain 22948
  .wd-xxl-750 {
22949
    width: 750px;
22950
  }
16848 stevensc 22951
 
16825 efrain 22952
  .wd-xxl-750p {
22953
    width: 750%;
22954
  }
16848 stevensc 22955
 
16825 efrain 22956
  .mx-wd-xxl-750p {
22957
    max-width: 750%;
22958
  }
16848 stevensc 22959
 
16825 efrain 22960
  .mn-wd-xxl-750p {
22961
    min-width: 750%;
22962
  }
16848 stevensc 22963
 
16825 efrain 22964
  .wd-xxl-750-f {
22965
    width: 750px !important;
22966
  }
16848 stevensc 22967
 
16825 efrain 22968
  .wd-xxl-750p-f {
22969
    width: 750% !important;
22970
  }
16848 stevensc 22971
 
16825 efrain 22972
  .mx-wd-xxl-750p-f {
22973
    max-width: 750% !important;
22974
  }
16848 stevensc 22975
 
16825 efrain 22976
  .mn-wd-xxl-750p-f {
22977
    min-width: 750% !important;
22978
  }
16848 stevensc 22979
 
16825 efrain 22980
  .wd-xxl-800 {
22981
    width: 800px;
22982
  }
16848 stevensc 22983
 
16825 efrain 22984
  .wd-xxl-800p {
22985
    width: 800%;
22986
  }
16848 stevensc 22987
 
16825 efrain 22988
  .mx-wd-xxl-800p {
22989
    max-width: 800%;
22990
  }
16848 stevensc 22991
 
16825 efrain 22992
  .mn-wd-xxl-800p {
22993
    min-width: 800%;
22994
  }
16848 stevensc 22995
 
16825 efrain 22996
  .wd-xxl-800-f {
22997
    width: 800px !important;
22998
  }
16848 stevensc 22999
 
16825 efrain 23000
  .wd-xxl-800p-f {
23001
    width: 800% !important;
23002
  }
16848 stevensc 23003
 
16825 efrain 23004
  .mx-wd-xxl-800p-f {
23005
    max-width: 800% !important;
23006
  }
16848 stevensc 23007
 
16825 efrain 23008
  .mn-wd-xxl-800p-f {
23009
    min-width: 800% !important;
23010
  }
16848 stevensc 23011
 
16825 efrain 23012
  .wd-xxl-850 {
23013
    width: 850px;
23014
  }
16848 stevensc 23015
 
16825 efrain 23016
  .wd-xxl-850p {
23017
    width: 850%;
23018
  }
16848 stevensc 23019
 
16825 efrain 23020
  .mx-wd-xxl-850p {
23021
    max-width: 850%;
23022
  }
16848 stevensc 23023
 
16825 efrain 23024
  .mn-wd-xxl-850p {
23025
    min-width: 850%;
23026
  }
16848 stevensc 23027
 
16825 efrain 23028
  .wd-xxl-850-f {
23029
    width: 850px !important;
23030
  }
16848 stevensc 23031
 
16825 efrain 23032
  .wd-xxl-850p-f {
23033
    width: 850% !important;
23034
  }
16848 stevensc 23035
 
16825 efrain 23036
  .mx-wd-xxl-850p-f {
23037
    max-width: 850% !important;
23038
  }
16848 stevensc 23039
 
16825 efrain 23040
  .mn-wd-xxl-850p-f {
23041
    min-width: 850% !important;
23042
  }
16848 stevensc 23043
 
16825 efrain 23044
  .wd-xxl-900 {
23045
    width: 900px;
23046
  }
16848 stevensc 23047
 
16825 efrain 23048
  .wd-xxl-900p {
23049
    width: 900%;
23050
  }
16848 stevensc 23051
 
16825 efrain 23052
  .mx-wd-xxl-900p {
23053
    max-width: 900%;
23054
  }
16848 stevensc 23055
 
16825 efrain 23056
  .mn-wd-xxl-900p {
23057
    min-width: 900%;
23058
  }
16848 stevensc 23059
 
16825 efrain 23060
  .wd-xxl-900-f {
23061
    width: 900px !important;
23062
  }
16848 stevensc 23063
 
16825 efrain 23064
  .wd-xxl-900p-f {
23065
    width: 900% !important;
23066
  }
16848 stevensc 23067
 
16825 efrain 23068
  .mx-wd-xxl-900p-f {
23069
    max-width: 900% !important;
23070
  }
16848 stevensc 23071
 
16825 efrain 23072
  .mn-wd-xxl-900p-f {
23073
    min-width: 900% !important;
23074
  }
16848 stevensc 23075
 
16825 efrain 23076
  .wd-xxl-950 {
23077
    width: 950px;
23078
  }
16848 stevensc 23079
 
16825 efrain 23080
  .wd-xxl-950p {
23081
    width: 950%;
23082
  }
16848 stevensc 23083
 
16825 efrain 23084
  .mx-wd-xxl-950p {
23085
    max-width: 950%;
23086
  }
16848 stevensc 23087
 
16825 efrain 23088
  .mn-wd-xxl-950p {
23089
    min-width: 950%;
23090
  }
16848 stevensc 23091
 
16825 efrain 23092
  .wd-xxl-950-f {
23093
    width: 950px !important;
23094
  }
16848 stevensc 23095
 
16825 efrain 23096
  .wd-xxl-950p-f {
23097
    width: 950% !important;
23098
  }
16848 stevensc 23099
 
16825 efrain 23100
  .mx-wd-xxl-950p-f {
23101
    max-width: 950% !important;
23102
  }
16848 stevensc 23103
 
16825 efrain 23104
  .mn-wd-xxl-950p-f {
23105
    min-width: 950% !important;
23106
  }
16848 stevensc 23107
 
16825 efrain 23108
  .wd-xxl-1000 {
23109
    width: 1000px;
23110
  }
16848 stevensc 23111
 
16825 efrain 23112
  .wd-xxl-1000p {
23113
    width: 1000%;
23114
  }
16848 stevensc 23115
 
16825 efrain 23116
  .mx-wd-xxl-1000p {
23117
    max-width: 1000%;
23118
  }
16848 stevensc 23119
 
16825 efrain 23120
  .mn-wd-xxl-1000p {
23121
    min-width: 1000%;
23122
  }
16848 stevensc 23123
 
16825 efrain 23124
  .wd-xxl-1000-f {
23125
    width: 1000px !important;
23126
  }
16848 stevensc 23127
 
16825 efrain 23128
  .wd-xxl-1000p-f {
23129
    width: 1000% !important;
23130
  }
16848 stevensc 23131
 
16825 efrain 23132
  .mx-wd-xxl-1000p-f {
23133
    max-width: 1000% !important;
23134
  }
16848 stevensc 23135
 
16825 efrain 23136
  .mn-wd-xxl-1000p-f {
23137
    min-width: 1000% !important;
23138
  }
16848 stevensc 23139
 
16825 efrain 23140
  .wd-xxl-auto {
23141
    width: auto;
23142
  }
16848 stevensc 23143
 
16825 efrain 23144
  .wd-xxl-auto {
23145
    width: auto !important;
23146
  }
23147
}
16848 stevensc 23148
 
16825 efrain 23149
.bg-facebook {
23150
  background: social-color("facebook");
23151
}
23152
 
23153
.bg-twitter {
23154
  background: social-color("twitter");
23155
}
23156
 
23157
.bg-google {
23158
  background: social-color("google");
23159
}
23160
 
23161
.bg-youtube {
23162
  background: social-color("youtube");
23163
}
23164
 
23165
.bg-vimeo {
23166
  background: social-color("vimeo");
23167
}
23168
 
23169
.bg-dribbble {
23170
  background: social-color("dribbble");
23171
}
23172
 
23173
.bg-github {
23174
  background: social-color("github");
23175
}
23176
 
23177
.bg-instagram {
23178
  background: social-color("instagram");
23179
}
23180
 
23181
.bg-pinterest {
23182
  background: social-color("pinterest");
23183
}
23184
 
23185
.bg-flickr {
23186
  background: social-color("flickr");
23187
}
23188
 
23189
.bg-bitbucket {
23190
  background: social-color("bitbucket");
23191
}
23192
 
23193
.bg-linkedin {
23194
  background: social-color("linkedin");
23195
}
23196
 
23197
body {
23198
  margin: 0;
23199
  padding: 0;
23200
}
23201
 
16848 stevensc 23202
.btn,
23203
.wizard>.actions a,
23204
.wizard>.actions a:active,
23205
.wizard>.actions a:hover,
23206
div.tox .tox-button,
23207
.swal2-popup .swal2-actions button,
23208
.fc .fc-button-primary,
16825 efrain 23209
.btn-group.open .dropdown-toggle,
23210
.btn:active,
23211
.btn:focus,
23212
.btn:hover,
23213
.btn:visited,
23214
a,
23215
a:active,
23216
a:checked,
23217
a:focus,
23218
a:hover,
23219
a:visited,
23220
body,
23221
button,
23222
button:active,
23223
button:hover,
23224
button:visited,
23225
div,
23226
input,
23227
input:active,
23228
input:hover,
23229
input:focus,
23230
input:visited,
23231
select,
23232
select:active,
23233
select:focus,
23234
select:visited,
23235
textarea,
23236
textarea:active,
23237
textarea:focus,
23238
textarea:visited {
23239
  -webkit-box-shadow: none;
23240
  -moz-box-shadow: none;
23241
  box-shadow: none;
23242
}
23243
 
23244
select,
23245
.form-check-input {
16848 stevensc 23246
  appearance: none;
16825 efrain 23247
  -moz-appearance: none;
23248
}
23249
 
23250
input:-webkit-autofill,
23251
input:-webkit-autofill:hover,
23252
input:-webkit-autofill:focus,
23253
input:-webkit-autofill:active {
23254
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23255
  -webkit-text-fill-color: #000;
23256
}
23257
 
23258
*:-moz-full-screen,
23259
*:-webkit-full-screen,
23260
*:fullscreen *:-ms-full-screen {
23261
  overflow: auto;
23262
}
23263
 
23264
pre {
23265
  background-color: color(gray-lighter);
23266
  padding: 15px;
23267
  font-size: 14px;
23268
}
23269
 
23270
code {
23271
  padding: 5px;
23272
  font-family: "Roboto", Helvetica, sans-serif;
23273
  font-weight: 400;
23274
  font-size: 0.875rem;
23275
  border-radius: 4px;
23276
}
23277
 
23278
.grid-margin {
23279
  margin-bottom: 1.5rem;
23280
}
23281
 
23282
@media (min-width: 576px) {
23283
  .grid-margin-sm-0 {
23284
    margin-bottom: 0;
23285
  }
23286
}
23287
 
23288
@media (min-width: 768px) {
23289
  .grid-margin-md-0 {
23290
    margin-bottom: 0;
23291
  }
23292
}
23293
 
23294
@media (min-width: 992px) {
23295
  .grid-margin-lg-0 {
23296
    margin-bottom: 0;
23297
  }
23298
}
23299
 
23300
@media (min-width: 1200px) {
23301
  .grid-margin-xl-0 {
23302
    margin-bottom: 0;
23303
  }
23304
}
23305
 
23306
.stretch-card {
23307
  display: flex;
23308
  align-items: stretch;
23309
  justify-content: stretch;
23310
}
16848 stevensc 23311
 
23312
.stretch-card>.card {
16825 efrain 23313
  width: 100%;
23314
  min-width: 100%;
23315
}
23316
 
23317
.img-lg {
23318
  width: 92px;
23319
  height: 92px;
23320
}
23321
 
23322
.img-md {
23323
  width: 75px;
23324
  height: 92px;
23325
}
23326
 
23327
.img-sm {
23328
  width: 43px;
23329
  height: 43px;
23330
}
23331
 
23332
.img-xs {
23333
  width: 36px;
23334
  height: 36px;
23335
}
23336
 
23337
.img-ss {
23338
  width: 26px;
23339
  height: 26px;
23340
}
23341
 
23342
.fw-boldest {
23343
  font-weight: 900;
23344
}
23345
 
23346
.tx-10 {
23347
  font-size: 10px;
23348
}
23349
 
23350
.tx-11 {
23351
  font-size: 11px;
23352
}
23353
 
23354
.tx-12 {
23355
  font-size: 12px;
23356
}
23357
 
23358
.tx-13 {
23359
  font-size: 13px;
23360
}
23361
 
23362
.tx-14 {
23363
  font-size: 14px;
23364
}
23365
 
23366
.tx-16 {
23367
  font-size: 16px;
23368
}
23369
 
23370
.tx-80 {
23371
  font-size: 80px;
23372
}
23373
 
23374
svg.icon-xs {
23375
  width: 12px;
23376
  height: 12px;
23377
}
23378
 
23379
svg.icon-sm {
23380
  width: 14px;
23381
  height: 14px;
23382
}
23383
 
23384
svg.icon-md {
23385
  width: 16px;
23386
  height: 16px;
23387
}
23388
 
23389
svg.icon-lg {
23390
  width: 20px;
23391
  height: 20px;
23392
}
23393
 
23394
svg.icon-xl {
23395
  width: 26px;
23396
  height: 26px;
23397
}
23398
 
23399
svg.icon-xxl {
23400
  width: 40px;
23401
  height: 40px;
23402
}
23403
 
23404
.icon-xs {
23405
  font-size: 14px;
23406
}
23407
 
23408
.icon-sm {
23409
  font-size: 16px;
23410
}
23411
 
23412
.icon-md {
23413
  font-size: 18px;
23414
}
23415
 
23416
.icon-lg {
23417
  font-size: 20px;
23418
}
23419
 
23420
.icon-xl {
23421
  font-size: 24px;
23422
}
23423
 
23424
.icon-xxl {
23425
  font-size: 30px;
23426
}
23427
 
23428
.cursor-pointer {
23429
  cursor: pointer;
23430
}
23431
 
23432
.cursor-default {
23433
  cursor: default;
23434
}
23435
 
23436
.pt-1px {
23437
  padding-top: 1px;
23438
}
23439
 
23440
.pt-2px {
23441
  padding-top: 2px;
23442
}
23443
 
23444
.pt-3px {
23445
  padding-top: 3px;
23446
}
23447
 
23448
.pb-1px {
23449
  padding-bottom: 1px;
23450
}
23451
 
23452
.pb-2px {
23453
  padding-bottom: 2px;
23454
}
23455
 
23456
.pb-3px {
23457
  padding-bottom: 3px;
23458
}
23459
 
23460
.mt-1px {
23461
  margin-top: 1px;
23462
}
23463
 
23464
.mt-2px {
23465
  margin-top: 2px;
23466
}
23467
 
23468
.mt-3px {
23469
  margin-top: 3px;
23470
}
23471
 
23472
.mb-1px {
23473
  margin-bottom: 1px;
23474
}
23475
 
23476
.mb-2px {
23477
  margin-bottom: 2px;
23478
}
23479
 
23480
.mb-3px {
23481
  margin-bottom: 3px;
23482
}
23483
 
23484
.ht-5 {
23485
  height: 5px;
23486
}
23487
 
23488
.ht-10 {
23489
  height: 10px;
23490
}
23491
 
23492
.ht-15 {
23493
  height: 15px;
23494
}
23495
 
23496
.ht-20 {
23497
  height: 20px;
23498
}
23499
 
23500
.ht-30 {
23501
  height: 30px;
23502
}
23503
 
23504
.ht-40 {
23505
  height: 40px;
23506
}
23507
 
23508
.ht-50 {
23509
  height: 50px;
23510
}
23511
 
23512
.ht-60 {
23513
  height: 60px;
23514
}
23515
 
23516
.ht-70 {
23517
  height: 70px;
23518
}
23519
 
23520
.ht-80 {
23521
  height: 80px;
23522
}
23523
 
23524
.ht-90 {
23525
  height: 90px;
23526
}
23527
 
23528
.ht-100 {
23529
  height: 100px;
23530
}
23531
 
23532
body {
23533
  -webkit-font-smoothing: antialiased;
23534
  -moz-osx-font-smoothing: grayscale;
23535
}
23536
 
23537
.text-facebook {
23538
  color: #3b5998;
23539
}
23540
 
23541
.text-twitter {
23542
  color: #1da1f2;
23543
}
23544
 
23545
.text-google {
23546
  color: #dc4e41;
23547
}
23548
 
23549
.text-youtube {
23550
  color: #f00;
23551
}
23552
 
23553
.text-vimeo {
23554
  color: #1ab7ea;
23555
}
23556
 
23557
.text-dribbble {
23558
  color: #ea4c89;
23559
}
23560
 
23561
.text-github {
23562
  color: #181717;
23563
}
23564
 
23565
.text-instagram {
23566
  color: #e4405f;
23567
}
23568
 
23569
.text-pinterest {
23570
  color: #bd081c;
23571
}
23572
 
23573
.text-flickr {
23574
  color: #0063dc;
23575
}
23576
 
23577
.text-bitbucket {
23578
  color: #0052cc;
23579
}
23580
 
23581
.text-linkedin {
23582
  color: #0077b5;
23583
}
23584
 
23585
.main-content {
23586
  color: #000;
23587
  font-size: 16px;
23588
}
16848 stevensc 23589
 
23590
.main-content>.page-title {
16825 efrain 23591
  margin-bottom: 1rem;
23592
  font-weight: 400;
23593
}
16848 stevensc 23594
 
23595
.main-content>h4,
23596
.main-content>.h4 {
16825 efrain 23597
  margin-top: 1.5rem;
23598
  margin-bottom: 0.875rem;
23599
}
16848 stevensc 23600
 
23601
.main-content>h4::before,
23602
.main-content>.h4::before {
16825 efrain 23603
  display: block;
23604
  height: 5.4rem;
23605
  margin-top: -6rem;
23606
  content: "";
23607
}
16848 stevensc 23608
 
23609
.main-content>hr {
16825 efrain 23610
  margin-top: 40px;
23611
  margin-bottom: 40px;
23612
}
16848 stevensc 23613
 
16825 efrain 23614
.main-content .example {
23615
  font-size: 0.875rem;
23616
  letter-spacing: normal;
23617
  padding: 10px;
23618
  background-color: #fff;
23619
  border: 4px solid #e9ecef;
23620
  position: relative;
23621
}
16848 stevensc 23622
 
16825 efrain 23623
@media (min-width: 576px) {
23624
  .main-content .example {
23625
    padding: 25px;
23626
  }
23627
}
16848 stevensc 23628
 
16825 efrain 23629
.main-content .highlight {
23630
  position: relative;
23631
  background-color: #fff;
23632
  padding: 15px;
23633
}
16848 stevensc 23634
 
16825 efrain 23635
.main-content .highlight pre {
23636
  padding: 15px;
23637
  font-size: 0.875rem;
23638
  font-family: "Roboto", Helvetica, sans-serif;
23639
  background: transparent;
23640
  line-height: 1.4;
23641
  margin: 0;
23642
}
16848 stevensc 23643
 
16825 efrain 23644
.main-content .highlight pre code {
23645
  font-family: "Roboto", Helvetica, sans-serif;
23646
  padding: 0;
23647
  tab-size: 8;
23648
  color: #000;
23649
  text-shadow: none;
23650
}
16848 stevensc 23651
 
23652
.main-content .highlight pre code .token.url,
23653
.main-content .highlight pre code .token.string,
23654
.main-content .highlight pre code .token.entity,
23655
.main-content .highlight pre code .token.operator {
16825 efrain 23656
  background: none;
23657
}
16848 stevensc 23658
 
16825 efrain 23659
.main-content .highlight .btn-clipboard {
23660
  position: absolute;
23661
  top: 6px;
23662
  right: 6px;
23663
  font-size: 12px;
23664
  padding: 1px 6px;
23665
  background: rgba(101, 113, 255, 0.2);
23666
}
16848 stevensc 23667
 
23668
.main-content .highlight .btn-clipboard:hover,
23669
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23670
  background: rgba(101, 113, 255, 0.3);
23671
  border-color: transparent;
23672
  transition: background 0.3s ease-in-out;
23673
}
23674
 
16848 stevensc 23675
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23676
  margin-top: 0.5rem;
23677
}
16848 stevensc 23678
 
16825 efrain 23679
.example .modal.static {
23680
  position: static;
23681
  display: block;
23682
}
16848 stevensc 23683
 
16825 efrain 23684
.example .navbar {
23685
  position: relative;
23686
  padding: 0.5rem 1rem;
23687
  left: auto;
23688
  width: 100%;
23689
  height: auto;
23690
  z-index: 9;
23691
  border-bottom: 0;
23692
  box-shadow: none;
23693
}
16848 stevensc 23694
 
16825 efrain 23695
.example .navbar .navbar-brand {
23696
  font-size: 1.25rem;
23697
}
16848 stevensc 23698
 
23699
.example .progress+.progress {
16825 efrain 23700
  margin-top: 10px;
23701
}
16848 stevensc 23702
 
16825 efrain 23703
.example .perfect-scrollbar-example {
23704
  position: relative;
23705
  max-height: 250px;
23706
  background: #fff;
23707
}
16848 stevensc 23708
 
16825 efrain 23709
.example .scrollspy-example {
23710
  position: relative;
23711
  height: 200px;
23712
  margin-top: 0.5rem;
23713
  overflow: auto;
23714
}
16848 stevensc 23715
 
16825 efrain 23716
.example .scrollspy-example-2 {
23717
  position: relative;
23718
  height: 350px;
23719
  overflow: auto;
23720
}
16848 stevensc 23721
 
16825 efrain 23722
.example nav .breadcrumb {
23723
  margin-bottom: 0.75rem;
23724
}
16848 stevensc 23725
 
16825 efrain 23726
.example nav:last-child .breadcrumb {
23727
  margin-bottom: 0;
23728
}
23729
 
23730
.page-breadcrumb {
23731
  margin-bottom: 15px;
23732
}
16848 stevensc 23733
 
16825 efrain 23734
.page-breadcrumb .breadcrumb {
23735
  padding: 0;
23736
  background: #f9fafb;
23737
}
23738
 
23739
.noble-ui-logo {
23740
  font-weight: 700;
23741
  font-size: 25px;
23742
  color: #000865;
23743
}
16848 stevensc 23744
 
16825 efrain 23745
.noble-ui-logo span {
23746
  color: #6571ff;
23747
  font-weight: 300;
23748
}
16848 stevensc 23749
 
16825 efrain 23750
.noble-ui-logo:hover {
23751
  color: #000865;
23752
}
16848 stevensc 23753
 
16825 efrain 23754
.noble-ui-logo.logo-light {
23755
  color: #000;
23756
}
23757
 
23758
.buy-now-wrapper {
23759
  position: fixed;
23760
  bottom: 30px;
23761
  right: 35px;
23762
  z-index: 99999;
23763
}
16848 stevensc 23764
 
16825 efrain 23765
.rtl .buy-now-wrapper {
23766
  right: auto;
23767
  left: 35px;
23768
}
16848 stevensc 23769
 
23770
.buy-now-wrapper .btn svg,
23771
.buy-now-wrapper .wizard>.actions a svg,
23772
.wizard>.actions .buy-now-wrapper a svg,
23773
.buy-now-wrapper div.tox .tox-button svg,
23774
div.tox .buy-now-wrapper .tox-button svg,
23775
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23776
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23777
.buy-now-wrapper .fc .fc-button-primary svg,
23778
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23779
  width: 19px !important;
23780
  height: 19px !important;
23781
}
23782
 
23783
.main-wrapper .page-wrapper {
23784
  min-height: 100vh;
23785
  background: #f9fafb;
23786
  width: calc(100% - 240px);
23787
  margin-left: 240px;
23788
  display: flex;
23789
  flex-direction: column;
23790
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23791
  transition: margin 0.1s ease, width 0.1s ease;
23792
}
16848 stevensc 23793
 
16825 efrain 23794
.main-wrapper .page-wrapper .page-content {
23795
  flex-grow: 1;
23796
  padding: 25px;
23797
  margin-top: 60px;
23798
}
16848 stevensc 23799
 
16825 efrain 23800
@media (max-width: 767px) {
23801
  .main-wrapper .page-wrapper .page-content {
23802
    padding: 25px 15px;
23803
  }
23804
}
16848 stevensc 23805
 
16825 efrain 23806
.main-wrapper .page-wrapper.full-page {
23807
  width: 100%;
23808
  margin-left: 0;
23809
}
16848 stevensc 23810
 
16825 efrain 23811
.main-wrapper .page-wrapper.full-page .page-content {
23812
  margin-top: 0;
23813
}
16848 stevensc 23814
 
16825 efrain 23815
@media (max-width: 991px) {
23816
  .main-wrapper .page-wrapper {
23817
    margin-left: 0;
23818
    width: 100%;
23819
  }
23820
}
23821
 
23822
.page-content .content-nav-wrapper {
23823
  padding: 0;
23824
  position: sticky;
23825
  top: 80px;
23826
  height: calc(100vh - 6rem);
23827
  overflow-y: auto;
23828
  border-left: 1px solid #e9ecef;
23829
  display: none;
23830
}
16848 stevensc 23831
 
16825 efrain 23832
@media (min-width: 1200px) {
23833
  .page-content .content-nav-wrapper {
23834
    display: block;
23835
  }
23836
}
16848 stevensc 23837
 
16825 efrain 23838
.page-content .content-nav-wrapper .content-nav {
23839
  padding: 0px 25px;
23840
}
16848 stevensc 23841
 
16825 efrain 23842
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23843
  padding: 0;
23844
  height: 30px;
23845
  white-space: nowrap;
23846
  color: #7987a1;
23847
  display: flex;
23848
  align-items: center;
23849
}
23850
 
23851
.navbar {
23852
  width: calc(100% - 240px);
23853
  height: 60px;
23854
  background: #fff;
23855
  border-bottom: 1px solid #e9ecef;
23856
  display: flex;
23857
  align-items: center;
23858
  padding: 0;
23859
  position: fixed;
23860
  right: 0;
23861
  left: 240px;
23862
  z-index: 978;
23863
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23864
  transition: width 0.1s ease, left 0.1s ease;
23865
}
16848 stevensc 23866
 
16825 efrain 23867
@media (max-width: 991px) {
23868
  .navbar {
23869
    width: 100%;
23870
    left: 0;
23871
  }
16848 stevensc 23872
 
16825 efrain 23873
  .navbar .navbar-content {
23874
    width: calc(100% - 70px - 1px);
23875
  }
23876
}
16848 stevensc 23877
 
16825 efrain 23878
.navbar .sidebar-toggler {
23879
  height: 100%;
23880
  border-right: 1px solid #e9ecef;
23881
  align-items: center;
23882
  padding: 0 25px;
23883
  display: none;
23884
}
16848 stevensc 23885
 
16825 efrain 23886
.navbar .sidebar-toggler svg {
23887
  width: 20px;
23888
  height: 20px;
23889
  color: #7987a1;
23890
}
16848 stevensc 23891
 
16825 efrain 23892
@media (max-width: 991px) {
23893
  .navbar .sidebar-toggler {
23894
    display: flex;
23895
  }
23896
}
16848 stevensc 23897
 
16825 efrain 23898
.navbar .search-form {
23899
  width: 100%;
23900
  margin-right: 60px;
23901
}
16848 stevensc 23902
 
16825 efrain 23903
.navbar .search-form .input-group .input-group-text {
23904
  padding: 0;
23905
  border: 0;
23906
  color: #7987a1;
23907
  background: #fff;
23908
}
16848 stevensc 23909
 
16825 efrain 23910
.navbar .search-form .input-group .input-group-text svg {
23911
  width: 20px;
23912
  height: 20px;
23913
  cursor: pointer;
23914
}
16848 stevensc 23915
 
23916
.navbar .search-form .input-group .form-control,
23917
.navbar .search-form .input-group .typeahead.tt-input,
23918
.navbar .search-form .input-group .typeahead.tt-hint,
23919
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23920
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23921
  border: 0;
23922
  margin-top: 3px;
23923
}
16848 stevensc 23924
 
16825 efrain 23925
.navbar .navbar-content {
23926
  display: flex;
23927
  width: 100%;
23928
  height: 100%;
23929
  padding-left: 25px;
23930
  padding-right: 25px;
23931
}
16848 stevensc 23932
 
16825 efrain 23933
@media (max-width: 991px) {
23934
  .navbar .navbar-content {
23935
    width: calc(100% - 70px - 1px);
23936
  }
23937
}
16848 stevensc 23938
 
16825 efrain 23939
.navbar .navbar-content .navbar-nav {
23940
  display: flex;
23941
  flex-direction: row;
23942
  margin-left: auto;
23943
}
16848 stevensc 23944
 
16825 efrain 23945
.navbar .navbar-content .navbar-nav .nav-item {
23946
  position: relative;
23947
  margin-left: 5px;
23948
  margin-right: 5px;
23949
  min-width: 30px;
23950
  display: flex;
23951
  align-items: center;
23952
}
16848 stevensc 23953
 
16825 efrain 23954
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23955
  color: #000;
23956
  padding: 0;
23957
  position: relative;
23958
  margin-left: auto;
23959
  margin-right: auto;
23960
}
16848 stevensc 23961
 
23962
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23963
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23964
  color: #6571ff;
23965
}
16848 stevensc 23966
 
16825 efrain 23967
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23968
  display: none;
23969
}
16848 stevensc 23970
 
16825 efrain 23971
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23972
  width: 20px;
23973
  height: 20px;
23974
}
16848 stevensc 23975
 
16825 efrain 23976
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23977
  position: absolute;
23978
  top: 0px;
23979
  right: 2px;
23980
}
16848 stevensc 23981
 
16825 efrain 23982
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23983
  background: #6571ff;
23984
  width: 7px;
23985
  height: 7px;
23986
  border-radius: 50%;
23987
}
16848 stevensc 23988
 
16825 efrain 23989
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23990
  background-color: #6571ff;
23991
  content: "";
23992
  display: table;
23993
  border-radius: 50%;
23994
  position: absolute;
23995
}
16848 stevensc 23996
 
16825 efrain 23997
@media (max-width: 767px) {
23998
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23999
    position: static;
24000
  }
24001
}
16848 stevensc 24002
 
24003
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24004
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24005
  width: max-content;
24006
  position: absolute;
24007
  right: -20px;
24008
  left: auto;
24009
}
16848 stevensc 24010
 
24011
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24012
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24013
  content: "";
24014
  width: 13px;
24015
  height: 13px;
24016
  background: #fff;
24017
  position: absolute;
24018
  top: -7px;
24019
  right: 28px;
24020
  transform: rotate(45deg);
24021
  border-top: 1px solid #f2f4f9;
24022
  border-left: 1px solid #f2f4f9;
24023
}
16848 stevensc 24024
 
16825 efrain 24025
@media (max-width: 767px) {
16848 stevensc 24026
 
24027
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24028
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24029
    right: 20px;
24030
    width: calc(100% - 40px);
24031
  }
16848 stevensc 24032
 
24033
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24034
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24035
    display: none;
24036
  }
24037
}
24038
 
24039
.sidebar {
24040
  width: 240px;
24041
  height: 100%;
24042
  position: fixed;
24043
  left: 0;
24044
  top: 0;
24045
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24046
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24047
  z-index: 999;
24048
}
16848 stevensc 24049
 
16825 efrain 24050
.sidebar .sidebar-header {
24051
  background: #fff;
24052
  height: 60px;
24053
  border-bottom: 1px solid #e9ecef;
24054
  display: flex;
24055
  justify-content: space-between;
24056
  align-items: center;
24057
  padding: 0 25px;
24058
  border-right: 1px solid #e9ecef;
24059
  z-index: 999;
24060
  width: 240px;
24061
  -webkit-transition: width 0.1s ease;
24062
  transition: width 0.1s ease;
24063
}
16848 stevensc 24064
 
16825 efrain 24065
.sidebar-open .sidebar .sidebar-header {
24066
  border-bottom: 1px solid #e9ecef;
24067
}
16848 stevensc 24068
 
16825 efrain 24069
.sidebar .sidebar-header .sidebar-brand {
24070
  opacity: 1;
24071
  visibility: visible;
24072
  -webkit-transition: opacity 0.5s ease;
24073
  transition: opacity 0.5s ease;
24074
  font-weight: 700;
24075
  font-size: 25px;
24076
  color: #000865;
16848 stevensc 24077
  direction: ltr
24078
    /*rtl:ignore*/
24079
  ;
16825 efrain 24080
}
16848 stevensc 24081
 
16825 efrain 24082
.sidebar .sidebar-header .sidebar-brand span {
24083
  color: #6571ff;
24084
  font-weight: 300;
24085
}
16848 stevensc 24086
 
16825 efrain 24087
.sidebar .sidebar-header .sidebar-toggler {
24088
  cursor: pointer;
24089
  width: 18px;
24090
}
16848 stevensc 24091
 
16825 efrain 24092
.sidebar .sidebar-header .sidebar-toggler span {
24093
  display: block;
24094
  width: 100%;
24095
  border-radius: 3px;
24096
  height: 2px;
24097
  background: #7987a1;
24098
  -webkit-transition: all 0.3s;
24099
  transition: all 0.3s;
24100
  position: relative;
24101
}
16848 stevensc 24102
 
24103
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24104
  margin-top: 4px;
24105
}
16848 stevensc 24106
 
16825 efrain 24107
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24108
  -webkit-animation: ease 0.6s top forwards;
24109
  animation: ease 0.6s top forwards;
24110
}
16848 stevensc 24111
 
16825 efrain 24112
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24113
  -webkit-animation: ease 0.6s top-2 forwards;
24114
  animation: ease 0.6s top-2 forwards;
24115
}
16848 stevensc 24116
 
16825 efrain 24117
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24118
  -webkit-animation: ease 0.6s scaled forwards;
24119
  animation: ease 0.6s scaled forwards;
24120
}
16848 stevensc 24121
 
16825 efrain 24122
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24123
  -webkit-animation: ease 0.6s scaled-2 forwards;
24124
  animation: ease 0.6s scaled-2 forwards;
24125
}
16848 stevensc 24126
 
16825 efrain 24127
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24128
  -webkit-animation: ease 0.6s bottom forwards;
24129
  animation: ease 0.6s bottom forwards;
24130
}
16848 stevensc 24131
 
16825 efrain 24132
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24133
  -webkit-animation: ease 0.6s bottom-2 forwards;
24134
  animation: ease 0.6s bottom-2 forwards;
24135
}
16848 stevensc 24136
 
16825 efrain 24137
@-webkit-keyframes top {
24138
  0% {
24139
    top: 0;
24140
    -webkit-transform: rotate(0);
24141
    transform: rotate(0);
24142
  }
16848 stevensc 24143
 
16825 efrain 24144
  50% {
24145
    top: 6px;
24146
    -webkit-transform: rotate(0);
24147
    transform: rotate(0);
24148
  }
16848 stevensc 24149
 
16825 efrain 24150
  100% {
24151
    top: 6px;
24152
    -webkit-transform: rotate(45deg);
24153
    transform: rotate(45deg);
24154
  }
24155
}
16848 stevensc 24156
 
16825 efrain 24157
@keyframes top {
24158
  0% {
24159
    top: 0;
24160
    -webkit-transform: rotate(0);
24161
    transform: rotate(0);
24162
  }
16848 stevensc 24163
 
16825 efrain 24164
  50% {
24165
    top: 6px;
24166
    -webkit-transform: rotate(0);
24167
    transform: rotate(0);
24168
  }
16848 stevensc 24169
 
16825 efrain 24170
  100% {
24171
    top: 6px;
24172
    -webkit-transform: rotate(45deg);
24173
    transform: rotate(45deg);
24174
  }
24175
}
16848 stevensc 24176
 
16825 efrain 24177
@-webkit-keyframes top-2 {
24178
  0% {
24179
    top: 6px;
24180
    -webkit-transform: rotate(45deg);
24181
    transform: rotate(45deg);
24182
  }
16848 stevensc 24183
 
16825 efrain 24184
  50% {
24185
    top: 6px;
24186
    -webkit-transform: rotate(0deg);
24187
    transform: rotate(0deg);
24188
  }
16848 stevensc 24189
 
16825 efrain 24190
  100% {
24191
    top: 0;
24192
    -webkit-transform: rotate(0deg);
24193
    transform: rotate(0deg);
24194
  }
24195
}
16848 stevensc 24196
 
16825 efrain 24197
@keyframes top-2 {
24198
  0% {
24199
    top: 6px;
24200
    -webkit-transform: rotate(45deg);
24201
    transform: rotate(45deg);
24202
  }
16848 stevensc 24203
 
16825 efrain 24204
  50% {
24205
    top: 6px;
24206
    -webkit-transform: rotate(0deg);
24207
    transform: rotate(0deg);
24208
  }
16848 stevensc 24209
 
16825 efrain 24210
  100% {
24211
    top: 0;
24212
    -webkit-transform: rotate(0deg);
24213
    transform: rotate(0deg);
24214
  }
24215
}
16848 stevensc 24216
 
16825 efrain 24217
@-webkit-keyframes bottom {
24218
  0% {
24219
    bottom: 0;
24220
    -webkit-transform: rotate(0);
24221
    transform: rotate(0);
24222
  }
16848 stevensc 24223
 
16825 efrain 24224
  50% {
24225
    bottom: 6px;
24226
    -webkit-transform: rotate(0);
24227
    transform: rotate(0);
24228
  }
16848 stevensc 24229
 
16825 efrain 24230
  100% {
24231
    bottom: 6px;
24232
    -webkit-transform: rotate(135deg);
24233
    transform: rotate(135deg);
24234
  }
24235
}
16848 stevensc 24236
 
16825 efrain 24237
@keyframes bottom {
24238
  0% {
24239
    bottom: 0;
24240
    -webkit-transform: rotate(0);
24241
    transform: rotate(0);
24242
  }
16848 stevensc 24243
 
16825 efrain 24244
  50% {
24245
    bottom: 6px;
24246
    -webkit-transform: rotate(0);
24247
    transform: rotate(0);
24248
  }
16848 stevensc 24249
 
16825 efrain 24250
  100% {
24251
    bottom: 6px;
24252
    -webkit-transform: rotate(135deg);
24253
    transform: rotate(135deg);
24254
  }
24255
}
16848 stevensc 24256
 
16825 efrain 24257
@-webkit-keyframes bottom-2 {
24258
  0% {
24259
    bottom: 6px;
24260
    -webkit-transform: rotate(135deg);
24261
    transform: rotate(135deg);
24262
  }
16848 stevensc 24263
 
16825 efrain 24264
  50% {
24265
    bottom: 6px;
24266
    -webkit-transform: rotate(0);
24267
    transform: rotate(0);
24268
  }
16848 stevensc 24269
 
16825 efrain 24270
  100% {
24271
    bottom: 0;
24272
    -webkit-transform: rotate(0);
24273
    transform: rotate(0);
24274
  }
24275
}
16848 stevensc 24276
 
16825 efrain 24277
@keyframes bottom-2 {
24278
  0% {
24279
    bottom: 6px;
24280
    -webkit-transform: rotate(135deg);
24281
    transform: rotate(135deg);
24282
  }
16848 stevensc 24283
 
16825 efrain 24284
  50% {
24285
    bottom: 6px;
24286
    -webkit-transform: rotate(0);
24287
    transform: rotate(0);
24288
  }
16848 stevensc 24289
 
16825 efrain 24290
  100% {
24291
    bottom: 0;
24292
    -webkit-transform: rotate(0);
24293
    transform: rotate(0);
24294
  }
24295
}
16848 stevensc 24296
 
16825 efrain 24297
@-webkit-keyframes scaled {
24298
  50% {
24299
    -webkit-transform: scale(0);
24300
    transform: scale(0);
24301
  }
16848 stevensc 24302
 
16825 efrain 24303
  100% {
24304
    -webkit-transform: scale(0);
24305
    transform: scale(0);
24306
  }
24307
}
16848 stevensc 24308
 
16825 efrain 24309
@keyframes scaled {
24310
  50% {
24311
    -webkit-transform: scale(0);
24312
    transform: scale(0);
24313
  }
16848 stevensc 24314
 
16825 efrain 24315
  100% {
24316
    -webkit-transform: scale(0);
24317
    transform: scale(0);
24318
  }
24319
}
16848 stevensc 24320
 
16825 efrain 24321
@-webkit-keyframes scaled-2 {
24322
  0% {
24323
    -webkit-transform: scale(0);
24324
    transform: scale(0);
24325
  }
16848 stevensc 24326
 
16825 efrain 24327
  50% {
24328
    -webkit-transform: scale(0);
24329
    transform: scale(0);
24330
  }
16848 stevensc 24331
 
16825 efrain 24332
  100% {
24333
    -webkit-transform: scale(1);
24334
    transform: scale(1);
24335
  }
24336
}
16848 stevensc 24337
 
16825 efrain 24338
@keyframes scaled-2 {
24339
  0% {
24340
    -webkit-transform: scale(0);
24341
    transform: scale(0);
24342
  }
16848 stevensc 24343
 
16825 efrain 24344
  50% {
24345
    -webkit-transform: scale(0);
24346
    transform: scale(0);
24347
  }
16848 stevensc 24348
 
16825 efrain 24349
  100% {
24350
    -webkit-transform: scale(1);
24351
    transform: scale(1);
24352
  }
24353
}
16848 stevensc 24354
 
16825 efrain 24355
.sidebar .sidebar-body {
24356
  max-height: calc(100% - 60px);
24357
  position: relative;
24358
  border-right: 1px solid #e9ecef;
24359
  height: 100%;
24360
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24361
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24362
  background: #fff;
24363
}
16848 stevensc 24364
 
16825 efrain 24365
.sidebar .sidebar-body .nav {
24366
  display: flex;
24367
  flex-direction: column;
24368
  padding: 25px 25px 50px 25px;
24369
}
16848 stevensc 24370
 
16825 efrain 24371
.sidebar .sidebar-body .nav .nav-item {
24372
  position: relative;
24373
}
16848 stevensc 24374
 
16825 efrain 24375
.sidebar .sidebar-body .nav .nav-item .nav-link {
24376
  display: flex;
24377
  align-items: center;
24378
  padding: 0;
24379
  height: 32px;
24380
  white-space: nowrap;
24381
  color: #000;
24382
}
16848 stevensc 24383
 
16825 efrain 24384
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24385
  width: 16px;
24386
  height: 16px;
24387
  fill: rgba(233, 236, 239, 0.21);
24388
  position: absolute;
24389
  color: inherit;
24390
}
16848 stevensc 24391
 
16825 efrain 24392
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24393
  margin-left: 30px;
24394
  font-size: 14px;
24395
  -webkit-transition: all 0.2s ease-in-out;
24396
  transition: all 0.2s ease-in-out;
24397
}
16848 stevensc 24398
 
16825 efrain 24399
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24400
  width: 14px;
24401
  height: 14px;
24402
  margin-left: auto;
24403
  -webkit-transition: all 0.3s ease;
24404
  -webkit-transition: all 0.3s ease-in-out;
24405
  transition: all 0.3s ease-in-out;
24406
  color: inherit;
24407
}
16848 stevensc 24408
 
16825 efrain 24409
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24410
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24411
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24412
  -webkit-transition: all 0.3s ease;
24413
  transition: all 0.3s ease;
24414
}
16848 stevensc 24415
 
16825 efrain 24416
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24417
  color: #6571ff;
24418
}
16848 stevensc 24419
 
16825 efrain 24420
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24421
  -webkit-transform: rotate(90deg);
24422
  transform: rotate(180deg);
24423
}
16848 stevensc 24424
 
16825 efrain 24425
.sidebar .sidebar-body .nav .nav-item.nav-category {
24426
  color: #7987a1;
24427
  font-size: 11px;
24428
  text-transform: uppercase;
24429
  font-weight: 500;
24430
  letter-spacing: 0.5px;
24431
  margin-bottom: 5px;
24432
  height: 15px;
24433
}
16848 stevensc 24434
 
16825 efrain 24435
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24436
  margin-top: 20px;
24437
}
16848 stevensc 24438
 
16825 efrain 24439
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24440
  color: #6571ff;
24441
}
16848 stevensc 24442
 
16825 efrain 24443
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24444
  margin-left: 31px;
24445
}
16848 stevensc 24446
 
16825 efrain 24447
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24448
  color: #6571ff;
24449
  fill: rgba(239, 243, 255, 0.5);
24450
}
16848 stevensc 24451
 
16825 efrain 24452
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24453
  color: #6571ff;
24454
}
16848 stevensc 24455
 
16825 efrain 24456
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24457
  content: "";
24458
  width: 3px;
24459
  height: 26px;
24460
  background: #6571ff;
24461
  position: absolute;
24462
  left: -25px;
24463
}
16848 stevensc 24464
 
16825 efrain 24465
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24466
  fill: rgba(239, 243, 255, 0.5);
24467
  color: #6571ff;
24468
}
16848 stevensc 24469
 
16825 efrain 24470
.sidebar .sidebar-body .nav.sub-menu {
24471
  padding: 0 0 15px 33px;
24472
}
16848 stevensc 24473
 
16825 efrain 24474
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24475
  position: relative;
24476
}
16848 stevensc 24477
 
16825 efrain 24478
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24479
  height: 25px;
24480
  color: #000;
24481
  font-size: 13px;
24482
  -webkit-transition: all 0.3s ease-in-out;
24483
  transition: all 0.3s ease-in-out;
24484
}
16848 stevensc 24485
 
16825 efrain 24486
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24487
  content: "";
24488
  width: 6px;
24489
  height: 6px;
24490
  border-radius: 50%;
24491
  background: transparent;
24492
  border: 1px solid #aeb9c4;
24493
  position: absolute;
24494
  left: -29px;
24495
  top: 10px;
24496
  -webkit-transition: all 0.7s ease-in-out;
24497
  -webkit-transition: all 0.4s ease-in-out;
24498
  transition: all 0.4s ease-in-out;
24499
}
16848 stevensc 24500
 
16825 efrain 24501
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24502
  color: #6571ff;
24503
}
16848 stevensc 24504
 
16825 efrain 24505
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24506
  border: 1px solid #6571ff;
24507
  background: #6571ff;
24508
}
16848 stevensc 24509
 
16825 efrain 24510
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24511
  color: #6571ff;
24512
  margin-left: 3px;
24513
}
16848 stevensc 24514
 
16825 efrain 24515
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24516
  border: 1px solid #6571ff;
24517
  background: #6571ff;
24518
}
16848 stevensc 24519
 
16825 efrain 24520
@media (max-width: 991px) {
24521
  .sidebar {
24522
    z-index: 999;
24523
    margin-left: -240px;
24524
    visibility: hidden;
24525
  }
16848 stevensc 24526
 
16825 efrain 24527
  .sidebar-open .sidebar {
24528
    margin-left: 0;
24529
    visibility: visible;
24530
  }
16848 stevensc 24531
 
16825 efrain 24532
  .sidebar .sidebar-body .nav .nav-item {
24533
    width: auto;
24534
  }
16848 stevensc 24535
 
16825 efrain 24536
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24537
    -webkit-transition: none;
24538
    transition: none;
24539
    margin: 0;
24540
  }
24541
}
24542
 
24543
.sidebar-dark .sidebar .sidebar-header {
24544
  background: #0c1427;
24545
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24546
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24547
}
16848 stevensc 24548
 
16825 efrain 24549
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24550
  color: #e9ecef;
24551
}
16848 stevensc 24552
 
16825 efrain 24553
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24554
  background: #7987a1;
24555
}
16848 stevensc 24556
 
16825 efrain 24557
.sidebar-dark .sidebar .sidebar-body {
24558
  background: #0c1427;
24559
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24560
}
16848 stevensc 24561
 
16825 efrain 24562
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24563
  color: #fff;
24564
}
16848 stevensc 24565
 
16825 efrain 24566
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24567
  color: #7987a1;
24568
}
16848 stevensc 24569
 
16825 efrain 24570
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24571
  fill: none;
24572
}
16848 stevensc 24573
 
16825 efrain 24574
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24575
  color: #6571ff;
24576
}
16848 stevensc 24577
 
24578
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24579
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24580
  fill: rgba(101, 113, 255, 0.2);
24581
}
16848 stevensc 24582
 
24583
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24584
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24585
  color: #6571ff;
24586
}
24587
 
24588
.settings-sidebar {
24589
  position: fixed;
24590
  right: -232px;
24591
  top: 130px;
24592
  width: 232px;
24593
  background: #fff;
24594
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24595
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24596
  z-index: 999;
24597
  border-radius: 0 0 0 4px;
24598
  -webkit-transition: all 0.2s ease-in-out;
24599
  transition: all 0.2s ease-in-out;
24600
}
16848 stevensc 24601
 
16825 efrain 24602
.settings-open .settings-sidebar {
24603
  right: 0;
24604
}
16848 stevensc 24605
 
16825 efrain 24606
.settings-sidebar .sidebar-body {
24607
  position: relative;
24608
  padding: 18px;
24609
}
16848 stevensc 24610
 
16825 efrain 24611
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24612
  position: absolute;
24613
  left: -44px;
24614
  top: 0;
24615
  padding: 12px;
24616
  border-radius: 4px 0 0 4px;
24617
  background: #fff;
24618
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24619
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24620
}
16848 stevensc 24621
 
16825 efrain 24622
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24623
  width: 20px;
24624
  height: 20px;
24625
  color: #7987a1;
24626
}
16848 stevensc 24627
 
16825 efrain 24628
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24629
  position: relative;
24630
  display: block;
24631
  margin-bottom: 19px;
24632
  border-radius: 6px;
24633
  border: 3px solid #e9ecef;
24634
}
16848 stevensc 24635
 
16825 efrain 24636
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24637
  content: "";
24638
  position: absolute;
24639
  top: 0;
24640
  left: 0;
24641
  width: 100%;
24642
  height: 100%;
24643
  background: rgba(101, 113, 255, 0);
24644
}
16848 stevensc 24645
 
16825 efrain 24646
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24647
  margin-bottom: 0;
24648
}
16848 stevensc 24649
 
16825 efrain 24650
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24651
  border: 3px solid #b2b8ff;
24652
}
16848 stevensc 24653
 
16825 efrain 24654
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24655
  width: 100%;
24656
  border-radius: 3px;
24657
}
16848 stevensc 24658
 
16825 efrain 24659
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24660
  background: rgba(101, 113, 255, 0.2);
24661
  -webkit-transition: all 0.3s ease-in-out;
24662
  transition: all 0.3s ease-in-out;
24663
}
24664
 
24665
.sidebar-folded .sidebar .sidebar-header {
24666
  width: 70px;
24667
}
16848 stevensc 24668
 
16825 efrain 24669
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24670
  display: none;
24671
}
16848 stevensc 24672
 
16825 efrain 24673
.sidebar-folded .page-wrapper {
24674
  width: calc(100% - 70px);
24675
  margin-left: 70px;
24676
}
16848 stevensc 24677
 
16825 efrain 24678
.sidebar-folded .page-wrapper .navbar {
24679
  width: calc(100% - 70px);
24680
  left: 70px;
24681
  right: 0;
24682
}
16848 stevensc 24683
 
16825 efrain 24684
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24685
  width: 70px;
24686
}
16848 stevensc 24687
 
16825 efrain 24688
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24689
  width: 70px;
24690
}
16848 stevensc 24691
 
16825 efrain 24692
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24693
  opacity: 0;
24694
  visibility: hidden;
24695
  width: 0;
24696
}
16848 stevensc 24697
 
16825 efrain 24698
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24699
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24700
  visibility: hidden;
24701
  opacity: 0;
24702
}
16848 stevensc 24703
 
16825 efrain 24704
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24705
  visibility: hidden;
24706
}
16848 stevensc 24707
 
16825 efrain 24708
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24709
  content: "";
24710
  width: 5px;
24711
  height: 5px;
24712
  border-radius: 50%;
24713
  background: #7987a1;
24714
  position: absolute;
24715
  top: 5px;
24716
  left: 6px;
24717
  visibility: visible;
24718
}
16848 stevensc 24719
 
16825 efrain 24720
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24721
  display: none;
24722
}
24723
 
24724
@media (max-width: 991px) {
16848 stevensc 24725
 
24726
  .sidebar-open .main-wrapper::before,
24727
  .settings-open .main-wrapper::before {
16825 efrain 24728
    content: "";
24729
    width: 100vw;
24730
    background: rgba(0, 0, 0, 0.3);
24731
    position: fixed;
24732
    top: 0;
24733
    bottom: 0;
24734
    right: 0;
24735
    z-index: 99;
24736
    -webkit-transition: all 3s ease;
24737
    transition: all 3s ease;
24738
    z-index: 980;
24739
  }
24740
}
24741
 
24742
a.badge:hover {
24743
  color: #fff;
24744
}
24745
 
24746
.alert-primary {
24747
  background-color: rgba(101, 113, 255, 0.1);
24748
  color: #4c59ff;
24749
  border-color: rgba(101, 113, 255, 0.2);
24750
}
16848 stevensc 24751
 
16825 efrain 24752
.alert-primary .alert-link {
24753
  color: #4c59ff;
24754
}
16848 stevensc 24755
 
16825 efrain 24756
.alert-primary svg {
24757
  width: 19px;
24758
  height: 19px;
24759
  margin-right: 0.5rem;
24760
}
16848 stevensc 24761
 
16825 efrain 24762
.alert-primary i {
24763
  font-size: 19px;
24764
  margin-right: 0.5rem;
24765
}
24766
 
24767
.alert-fill-primary {
24768
  --bs-alert-color: #fff;
24769
  --bs-alert-bg: #6571ff;
24770
  --bs-alert-border-color: #6571ff;
24771
}
16848 stevensc 24772
 
16825 efrain 24773
.alert-fill-primary .alert-link {
24774
  color: #cccccc;
24775
}
16848 stevensc 24776
 
16825 efrain 24777
.alert-fill-primary.alert-fill-light {
24778
  color: #7987a1;
24779
}
24780
 
24781
.alert-secondary {
24782
  background-color: rgba(121, 135, 161, 0.1);
24783
  color: #6a7a96;
24784
  border-color: rgba(121, 135, 161, 0.2);
24785
}
16848 stevensc 24786
 
16825 efrain 24787
.alert-secondary .alert-link {
24788
  color: #6a7a96;
24789
}
16848 stevensc 24790
 
16825 efrain 24791
.alert-secondary svg {
24792
  width: 19px;
24793
  height: 19px;
24794
  margin-right: 0.5rem;
24795
}
16848 stevensc 24796
 
16825 efrain 24797
.alert-secondary i {
24798
  font-size: 19px;
24799
  margin-right: 0.5rem;
24800
}
24801
 
24802
.alert-fill-secondary {
24803
  --bs-alert-color: #fff;
24804
  --bs-alert-bg: #7987a1;
24805
  --bs-alert-border-color: #7987a1;
24806
}
16848 stevensc 24807
 
16825 efrain 24808
.alert-fill-secondary .alert-link {
24809
  color: #cccccc;
24810
}
16848 stevensc 24811
 
16825 efrain 24812
.alert-fill-secondary.alert-fill-light {
24813
  color: #7987a1;
24814
}
24815
 
24816
.alert-success {
24817
  background-color: rgba(5, 163, 74, 0.1);
24818
  color: #048a3f;
24819
  border-color: rgba(5, 163, 74, 0.2);
24820
}
16848 stevensc 24821
 
16825 efrain 24822
.alert-success .alert-link {
24823
  color: #048a3f;
24824
}
16848 stevensc 24825
 
16825 efrain 24826
.alert-success svg {
24827
  width: 19px;
24828
  height: 19px;
24829
  margin-right: 0.5rem;
24830
}
16848 stevensc 24831
 
16825 efrain 24832
.alert-success i {
24833
  font-size: 19px;
24834
  margin-right: 0.5rem;
24835
}
24836
 
24837
.alert-fill-success {
24838
  --bs-alert-color: #fff;
24839
  --bs-alert-bg: #05a34a;
24840
  --bs-alert-border-color: #05a34a;
24841
}
16848 stevensc 24842
 
16825 efrain 24843
.alert-fill-success .alert-link {
24844
  color: #cccccc;
24845
}
16848 stevensc 24846
 
16825 efrain 24847
.alert-fill-success.alert-fill-light {
24848
  color: #7987a1;
24849
}
24850
 
24851
.alert-info {
24852
  background-color: rgba(102, 209, 209, 0.1);
24853
  color: #52cbcb;
24854
  border-color: rgba(102, 209, 209, 0.2);
24855
}
16848 stevensc 24856
 
16825 efrain 24857
.alert-info .alert-link {
24858
  color: #52cbcb;
24859
}
16848 stevensc 24860
 
16825 efrain 24861
.alert-info svg {
24862
  width: 19px;
24863
  height: 19px;
24864
  margin-right: 0.5rem;
24865
}
16848 stevensc 24866
 
16825 efrain 24867
.alert-info i {
24868
  font-size: 19px;
24869
  margin-right: 0.5rem;
24870
}
24871
 
24872
.alert-fill-info {
24873
  --bs-alert-color: #fff;
24874
  --bs-alert-bg: #66d1d1;
24875
  --bs-alert-border-color: #66d1d1;
24876
}
16848 stevensc 24877
 
16825 efrain 24878
.alert-fill-info .alert-link {
24879
  color: #cccccc;
24880
}
16848 stevensc 24881
 
16825 efrain 24882
.alert-fill-info.alert-fill-light {
24883
  color: #7987a1;
24884
}
24885
 
24886
.alert-warning {
24887
  background-color: rgba(251, 188, 6, 0.1);
24888
  color: #e4aa04;
24889
  border-color: rgba(251, 188, 6, 0.2);
24890
}
16848 stevensc 24891
 
16825 efrain 24892
.alert-warning .alert-link {
24893
  color: #e4aa04;
24894
}
16848 stevensc 24895
 
16825 efrain 24896
.alert-warning svg {
24897
  width: 19px;
24898
  height: 19px;
24899
  margin-right: 0.5rem;
24900
}
16848 stevensc 24901
 
16825 efrain 24902
.alert-warning i {
24903
  font-size: 19px;
24904
  margin-right: 0.5rem;
24905
}
24906
 
24907
.alert-fill-warning {
24908
  --bs-alert-color: #fff;
24909
  --bs-alert-bg: #fbbc06;
24910
  --bs-alert-border-color: #fbbc06;
24911
}
16848 stevensc 24912
 
16825 efrain 24913
.alert-fill-warning .alert-link {
24914
  color: #cccccc;
24915
}
16848 stevensc 24916
 
16825 efrain 24917
.alert-fill-warning.alert-fill-light {
24918
  color: #7987a1;
24919
}
24920
 
24921
.alert-danger {
24922
  background-color: rgba(255, 51, 102, 0.1);
24923
  color: #ff1a53;
24924
  border-color: rgba(255, 51, 102, 0.2);
24925
}
16848 stevensc 24926
 
16825 efrain 24927
.alert-danger .alert-link {
24928
  color: #ff1a53;
24929
}
16848 stevensc 24930
 
16825 efrain 24931
.alert-danger svg {
24932
  width: 19px;
24933
  height: 19px;
24934
  margin-right: 0.5rem;
24935
}
16848 stevensc 24936
 
16825 efrain 24937
.alert-danger i {
24938
  font-size: 19px;
24939
  margin-right: 0.5rem;
24940
}
24941
 
24942
.alert-fill-danger {
24943
  --bs-alert-color: #fff;
24944
  --bs-alert-bg: #ff3366;
24945
  --bs-alert-border-color: #ff3366;
24946
}
16848 stevensc 24947
 
16825 efrain 24948
.alert-fill-danger .alert-link {
24949
  color: #cccccc;
24950
}
16848 stevensc 24951
 
16825 efrain 24952
.alert-fill-danger.alert-fill-light {
24953
  color: #7987a1;
24954
}
24955
 
24956
.alert-light {
24957
  background-color: rgba(233, 236, 239, 0.1);
24958
  color: #dadfe4;
24959
  border-color: rgba(233, 236, 239, 0.2);
24960
}
16848 stevensc 24961
 
16825 efrain 24962
.alert-light .alert-link {
24963
  color: #dadfe4;
24964
}
16848 stevensc 24965
 
16825 efrain 24966
.alert-light svg {
24967
  width: 19px;
24968
  height: 19px;
24969
  margin-right: 0.5rem;
24970
}
16848 stevensc 24971
 
16825 efrain 24972
.alert-light i {
24973
  font-size: 19px;
24974
  margin-right: 0.5rem;
24975
}
24976
 
24977
.alert-fill-light {
24978
  --bs-alert-color: #fff;
24979
  --bs-alert-bg: #e9ecef;
24980
  --bs-alert-border-color: #e9ecef;
24981
}
16848 stevensc 24982
 
16825 efrain 24983
.alert-fill-light .alert-link {
24984
  color: #cccccc;
24985
}
16848 stevensc 24986
 
16825 efrain 24987
.alert-fill-light.alert-fill-light {
24988
  color: #7987a1;
24989
}
24990
 
24991
.alert-dark {
24992
  background-color: rgba(6, 12, 23, 0.1);
24993
  color: #010103;
24994
  border-color: rgba(6, 12, 23, 0.2);
24995
}
16848 stevensc 24996
 
16825 efrain 24997
.alert-dark .alert-link {
24998
  color: #010103;
24999
}
16848 stevensc 25000
 
16825 efrain 25001
.alert-dark svg {
25002
  width: 19px;
25003
  height: 19px;
25004
  margin-right: 0.5rem;
25005
}
16848 stevensc 25006
 
16825 efrain 25007
.alert-dark i {
25008
  font-size: 19px;
25009
  margin-right: 0.5rem;
25010
}
25011
 
25012
.alert-fill-dark {
25013
  --bs-alert-color: #fff;
25014
  --bs-alert-bg: #060c17;
25015
  --bs-alert-border-color: #060c17;
25016
}
16848 stevensc 25017
 
16825 efrain 25018
.alert-fill-dark .alert-link {
25019
  color: #cccccc;
25020
}
16848 stevensc 25021
 
16825 efrain 25022
.alert-fill-dark.alert-fill-light {
25023
  color: #7987a1;
25024
}
25025
 
16848 stevensc 25026
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25027
  content: "-" !important;
25028
}
16848 stevensc 25029
 
25030
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25031
  content: "•" !important;
25032
}
16848 stevensc 25033
 
25034
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25035
  content: ">" !important;
25036
}
25037
 
25038
/* Buttons */
16848 stevensc 25039
.btn i,
25040
.wizard>.actions a i,
25041
.wizard>.actions a:active i,
25042
.wizard>.actions a:hover i,
25043
div.tox .tox-button i,
25044
.swal2-popup .swal2-actions button i,
25045
.fc .fc-button-primary i {
16825 efrain 25046
  font-size: 1rem;
25047
}
16848 stevensc 25048
 
25049
.btn.btn-rounded,
25050
.wizard>.actions a.btn-rounded,
25051
div.tox .btn-rounded.tox-button,
25052
.swal2-popup .swal2-actions button.btn-rounded,
25053
.fc .btn-rounded.fc-button-primary {
16825 efrain 25054
  border-radius: 50px;
25055
}
16848 stevensc 25056
 
25057
.btn.btn-xs,
25058
.wizard>.actions a.btn-xs,
25059
div.tox .btn-xs.tox-button,
25060
.swal2-popup .swal2-actions button.btn-xs,
25061
.fc .btn-xs.fc-button-primary {
16825 efrain 25062
  padding: 0.313rem 0.8rem;
25063
  font-size: 0.75rem;
25064
}
16848 stevensc 25065
 
25066
.btn.btn-icon,
25067
.wizard>.actions a.btn-icon,
25068
div.tox .btn-icon.tox-button,
25069
.swal2-popup .swal2-actions button.btn-icon,
25070
.fc .btn-icon.fc-button-primary {
16825 efrain 25071
  width: 38px;
25072
  height: 38px;
25073
  padding: 0;
25074
  display: inline-flex;
25075
  align-items: center;
25076
  justify-content: center;
25077
}
16848 stevensc 25078
 
25079
.btn.btn-icon svg,
25080
.wizard>.actions a.btn-icon svg,
25081
div.tox .btn-icon.tox-button svg,
25082
.swal2-popup .swal2-actions button.btn-icon svg,
25083
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25084
  height: 18px;
25085
}
16848 stevensc 25086
 
25087
.btn.btn-icon.btn-xs,
25088
.wizard>.actions a.btn-icon.btn-xs,
25089
div.tox .btn-icon.btn-xs.tox-button,
25090
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25091
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25092
  width: 30px;
25093
  height: 30px;
25094
}
16848 stevensc 25095
 
25096
.btn.btn-icon.btn-xs svg,
25097
.wizard>.actions a.btn-icon.btn-xs svg,
25098
div.tox .btn-icon.btn-xs.tox-button svg,
25099
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25100
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25101
  height: 14px;
25102
}
16848 stevensc 25103
 
25104
.btn.btn-icon.btn-sm,
25105
.wizard>.actions a.btn-icon.btn-sm,
25106
div.tox .btn-icon.btn-sm.tox-button,
25107
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25108
.fc .btn-icon.fc-button-primary,
25109
.btn-group-sm>.btn.btn-icon,
25110
.wizard>.actions .btn-group-sm>a.btn-icon,
25111
div.tox .btn-group-sm>.btn-icon.tox-button,
25112
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25113
  width: 36px;
25114
  height: 36px;
25115
}
16848 stevensc 25116
 
25117
.btn.btn-icon.btn-sm svg,
25118
.wizard>.actions a.btn-icon.btn-sm svg,
25119
div.tox .btn-icon.btn-sm.tox-button svg,
25120
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25121
.fc .btn-icon.fc-button-primary svg,
25122
.btn-group-sm>.btn.btn-icon svg,
25123
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25124
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25125
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25126
  height: 15px;
25127
}
16848 stevensc 25128
 
25129
.btn.btn-icon.btn-lg,
25130
.wizard>.actions a.btn-icon.btn-lg,
25131
div.tox .btn-icon.btn-lg.tox-button,
25132
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25133
.fc .btn-icon.btn-lg.fc-button-primary,
25134
.btn-group-lg>.btn.btn-icon,
25135
.wizard>.actions .btn-group-lg>a.btn-icon,
25136
div.tox .btn-group-lg>.btn-icon.tox-button,
25137
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25138
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25139
  width: 42px;
25140
  height: 42px;
25141
}
16848 stevensc 25142
 
25143
.btn.btn-icon.btn-lg svg,
25144
.wizard>.actions a.btn-icon.btn-lg svg,
25145
div.tox .btn-icon.btn-lg.tox-button svg,
25146
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25147
.fc .btn-icon.btn-lg.fc-button-primary svg,
25148
.btn-group-lg>.btn.btn-icon svg,
25149
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25150
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25151
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25152
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25153
  height: 18px;
25154
}
16848 stevensc 25155
 
25156
.btn.btn-icon-text .btn-icon-prepend,
25157
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25158
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25159
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25160
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25161
  margin-right: 0.5rem;
25162
}
16848 stevensc 25163
 
25164
.btn.btn-icon-text .btn-icon-append,
25165
.wizard>.actions a.btn-icon-text .btn-icon-append,
25166
div.tox .btn-icon-text.tox-button .btn-icon-append,
25167
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25168
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25169
  margin-left: 0.5rem;
25170
}
16848 stevensc 25171
 
25172
.btn.btn-icon-text .btn-icon-prepend,
25173
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25174
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25175
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25176
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25177
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25178
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25179
div.tox .btn-icon-text.tox-button .btn-icon-append,
25180
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25181
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25182
  width: 18px;
25183
  height: 18px;
25184
}
16848 stevensc 25185
 
25186
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25187
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25188
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25189
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25190
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25191
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25192
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25193
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25194
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25195
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25196
  width: 14px;
25197
  height: 14px;
25198
}
16848 stevensc 25199
 
25200
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25201
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25202
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25203
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25204
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25205
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25206
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25207
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25208
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25209
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25210
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25211
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25212
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25213
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25214
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25215
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25216
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25217
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25218
  width: 15px;
25219
  height: 15px;
25220
}
16848 stevensc 25221
 
25222
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25223
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25224
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25225
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25226
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25227
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25228
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25229
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25230
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25231
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25232
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25233
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25234
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25235
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25236
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25237
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25238
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25239
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25240
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25241
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25242
  width: 18px;
25243
  height: 18px;
25244
}
25245
 
25246
.btn-facebook {
25247
  background: #3b5998;
25248
  color: #fff;
25249
}
16848 stevensc 25250
 
25251
.btn-facebook:hover,
25252
.btn-facebook:focus {
16825 efrain 25253
  background: #2d4373;
25254
  color: #fff;
25255
}
16848 stevensc 25256
 
16825 efrain 25257
.btn-facebook.btn-social-icon-text {
25258
  padding: 0 1.5rem 0 0;
25259
  background: #4c70ba;
25260
}
16848 stevensc 25261
 
16825 efrain 25262
.btn-facebook.btn-social-icon-text i {
25263
  background: #3b5998;
25264
  padding: 0.75rem;
25265
  display: inline-block;
25266
  margin-right: 1.5rem;
25267
}
25268
 
25269
.btn-outline-facebook {
25270
  border: 1px solid #3b5998;
25271
  color: #3b5998;
25272
}
16848 stevensc 25273
 
16825 efrain 25274
.btn-outline-facebook:hover {
25275
  background: #3b5998;
25276
  color: #fff;
25277
}
25278
 
25279
.btn-twitter {
25280
  background: #1da1f2;
25281
  color: #fff;
25282
}
16848 stevensc 25283
 
25284
.btn-twitter:hover,
25285
.btn-twitter:focus {
16825 efrain 25286
  background: #0c85d0;
25287
  color: #fff;
25288
}
16848 stevensc 25289
 
16825 efrain 25290
.btn-twitter.btn-social-icon-text {
25291
  padding: 0 1.5rem 0 0;
25292
  background: #4db5f5;
25293
}
16848 stevensc 25294
 
16825 efrain 25295
.btn-twitter.btn-social-icon-text i {
25296
  background: #1da1f2;
25297
  padding: 0.75rem;
25298
  display: inline-block;
25299
  margin-right: 1.5rem;
25300
}
25301
 
25302
.btn-outline-twitter {
25303
  border: 1px solid #1da1f2;
25304
  color: #1da1f2;
25305
}
16848 stevensc 25306
 
16825 efrain 25307
.btn-outline-twitter:hover {
25308
  background: #1da1f2;
25309
  color: #fff;
25310
}
25311
 
25312
.btn-google {
25313
  background: #dc4e41;
25314
  color: #fff;
25315
}
16848 stevensc 25316
 
25317
.btn-google:hover,
25318
.btn-google:focus {
16825 efrain 25319
  background: #c63224;
25320
  color: #fff;
25321
}
16848 stevensc 25322
 
16825 efrain 25323
.btn-google.btn-social-icon-text {
25324
  padding: 0 1.5rem 0 0;
25325
  background: #e4766c;
25326
}
16848 stevensc 25327
 
16825 efrain 25328
.btn-google.btn-social-icon-text i {
25329
  background: #dc4e41;
25330
  padding: 0.75rem;
25331
  display: inline-block;
25332
  margin-right: 1.5rem;
25333
}
25334
 
25335
.btn-outline-google {
25336
  border: 1px solid #dc4e41;
25337
  color: #dc4e41;
25338
}
16848 stevensc 25339
 
16825 efrain 25340
.btn-outline-google:hover {
25341
  background: #dc4e41;
25342
  color: #fff;
25343
}
25344
 
25345
.btn-youtube {
25346
  background: #f00;
25347
  color: #fff;
25348
}
16848 stevensc 25349
 
25350
.btn-youtube:hover,
25351
.btn-youtube:focus {
16825 efrain 25352
  background: #cc0000;
25353
  color: #fff;
25354
}
16848 stevensc 25355
 
16825 efrain 25356
.btn-youtube.btn-social-icon-text {
25357
  padding: 0 1.5rem 0 0;
25358
  background: #ff3333;
25359
}
16848 stevensc 25360
 
16825 efrain 25361
.btn-youtube.btn-social-icon-text i {
25362
  background: #f00;
25363
  padding: 0.75rem;
25364
  display: inline-block;
25365
  margin-right: 1.5rem;
25366
}
25367
 
25368
.btn-outline-youtube {
25369
  border: 1px solid #f00;
25370
  color: #f00;
25371
}
16848 stevensc 25372
 
16825 efrain 25373
.btn-outline-youtube:hover {
25374
  background: #f00;
25375
  color: #fff;
25376
}
25377
 
25378
.btn-vimeo {
25379
  background: #1ab7ea;
25380
  color: #fff;
25381
}
16848 stevensc 25382
 
25383
.btn-vimeo:hover,
25384
.btn-vimeo:focus {
16825 efrain 25385
  background: #1295bf;
25386
  color: #fff;
25387
}
16848 stevensc 25388
 
16825 efrain 25389
.btn-vimeo.btn-social-icon-text {
25390
  padding: 0 1.5rem 0 0;
25391
  background: #49c6ee;
25392
}
16848 stevensc 25393
 
16825 efrain 25394
.btn-vimeo.btn-social-icon-text i {
25395
  background: #1ab7ea;
25396
  padding: 0.75rem;
25397
  display: inline-block;
25398
  margin-right: 1.5rem;
25399
}
25400
 
25401
.btn-outline-vimeo {
25402
  border: 1px solid #1ab7ea;
25403
  color: #1ab7ea;
25404
}
16848 stevensc 25405
 
16825 efrain 25406
.btn-outline-vimeo:hover {
25407
  background: #1ab7ea;
25408
  color: #fff;
25409
}
25410
 
25411
.btn-dribbble {
25412
  background: #ea4c89;
25413
  color: #fff;
25414
}
16848 stevensc 25415
 
25416
.btn-dribbble:hover,
25417
.btn-dribbble:focus {
16825 efrain 25418
  background: #e51e6b;
25419
  color: #fff;
25420
}
16848 stevensc 25421
 
16825 efrain 25422
.btn-dribbble.btn-social-icon-text {
25423
  padding: 0 1.5rem 0 0;
25424
  background: #ef7aa7;
25425
}
16848 stevensc 25426
 
16825 efrain 25427
.btn-dribbble.btn-social-icon-text i {
25428
  background: #ea4c89;
25429
  padding: 0.75rem;
25430
  display: inline-block;
25431
  margin-right: 1.5rem;
25432
}
25433
 
25434
.btn-outline-dribbble {
25435
  border: 1px solid #ea4c89;
25436
  color: #ea4c89;
25437
}
16848 stevensc 25438
 
16825 efrain 25439
.btn-outline-dribbble:hover {
25440
  background: #ea4c89;
25441
  color: #fff;
25442
}
25443
 
25444
.btn-github {
25445
  background: #181717;
25446
  color: #fff;
25447
}
16848 stevensc 25448
 
25449
.btn-github:hover,
25450
.btn-github:focus {
16825 efrain 25451
  background: black;
25452
  color: #fff;
25453
}
16848 stevensc 25454
 
16825 efrain 25455
.btn-github.btn-social-icon-text {
25456
  padding: 0 1.5rem 0 0;
25457
  background: #323030;
25458
}
16848 stevensc 25459
 
16825 efrain 25460
.btn-github.btn-social-icon-text i {
25461
  background: #181717;
25462
  padding: 0.75rem;
25463
  display: inline-block;
25464
  margin-right: 1.5rem;
25465
}
25466
 
25467
.btn-outline-github {
25468
  border: 1px solid #181717;
25469
  color: #181717;
25470
}
16848 stevensc 25471
 
16825 efrain 25472
.btn-outline-github:hover {
25473
  background: #181717;
25474
  color: #fff;
25475
}
25476
 
25477
.btn-instagram {
25478
  background: #e4405f;
25479
  color: #fff;
25480
}
16848 stevensc 25481
 
25482
.btn-instagram:hover,
25483
.btn-instagram:focus {
16825 efrain 25484
  background: #d31e40;
25485
  color: #fff;
25486
}
16848 stevensc 25487
 
16825 efrain 25488
.btn-instagram.btn-social-icon-text {
25489
  padding: 0 1.5rem 0 0;
25490
  background: #ea6d84;
25491
}
16848 stevensc 25492
 
16825 efrain 25493
.btn-instagram.btn-social-icon-text i {
25494
  background: #e4405f;
25495
  padding: 0.75rem;
25496
  display: inline-block;
25497
  margin-right: 1.5rem;
25498
}
25499
 
25500
.btn-outline-instagram {
25501
  border: 1px solid #e4405f;
25502
  color: #e4405f;
25503
}
16848 stevensc 25504
 
16825 efrain 25505
.btn-outline-instagram:hover {
25506
  background: #e4405f;
25507
  color: #fff;
25508
}
25509
 
25510
.btn-pinterest {
25511
  background: #bd081c;
25512
  color: #fff;
25513
}
16848 stevensc 25514
 
25515
.btn-pinterest:hover,
25516
.btn-pinterest:focus {
16825 efrain 25517
  background: #8c0615;
25518
  color: #fff;
25519
}
16848 stevensc 25520
 
16825 efrain 25521
.btn-pinterest.btn-social-icon-text {
25522
  padding: 0 1.5rem 0 0;
25523
  background: #ee0a23;
25524
}
16848 stevensc 25525
 
16825 efrain 25526
.btn-pinterest.btn-social-icon-text i {
25527
  background: #bd081c;
25528
  padding: 0.75rem;
25529
  display: inline-block;
25530
  margin-right: 1.5rem;
25531
}
25532
 
25533
.btn-outline-pinterest {
25534
  border: 1px solid #bd081c;
25535
  color: #bd081c;
25536
}
16848 stevensc 25537
 
16825 efrain 25538
.btn-outline-pinterest:hover {
25539
  background: #bd081c;
25540
  color: #fff;
25541
}
25542
 
25543
.btn-flickr {
25544
  background: #0063dc;
25545
  color: #fff;
25546
}
16848 stevensc 25547
 
25548
.btn-flickr:hover,
25549
.btn-flickr:focus {
16825 efrain 25550
  background: #004ca9;
25551
  color: #fff;
25552
}
16848 stevensc 25553
 
16825 efrain 25554
.btn-flickr.btn-social-icon-text {
25555
  padding: 0 1.5rem 0 0;
25556
  background: #107cff;
25557
}
16848 stevensc 25558
 
16825 efrain 25559
.btn-flickr.btn-social-icon-text i {
25560
  background: #0063dc;
25561
  padding: 0.75rem;
25562
  display: inline-block;
25563
  margin-right: 1.5rem;
25564
}
25565
 
25566
.btn-outline-flickr {
25567
  border: 1px solid #0063dc;
25568
  color: #0063dc;
25569
}
16848 stevensc 25570
 
16825 efrain 25571
.btn-outline-flickr:hover {
25572
  background: #0063dc;
25573
  color: #fff;
25574
}
25575
 
25576
.btn-bitbucket {
25577
  background: #0052cc;
25578
  color: #fff;
25579
}
16848 stevensc 25580
 
25581
.btn-bitbucket:hover,
25582
.btn-bitbucket:focus {
16825 efrain 25583
  background: #003e99;
25584
  color: #fff;
25585
}
16848 stevensc 25586
 
16825 efrain 25587
.btn-bitbucket.btn-social-icon-text {
25588
  padding: 0 1.5rem 0 0;
25589
  background: #0067ff;
25590
}
16848 stevensc 25591
 
16825 efrain 25592
.btn-bitbucket.btn-social-icon-text i {
25593
  background: #0052cc;
25594
  padding: 0.75rem;
25595
  display: inline-block;
25596
  margin-right: 1.5rem;
25597
}
25598
 
25599
.btn-outline-bitbucket {
25600
  border: 1px solid #0052cc;
25601
  color: #0052cc;
25602
}
16848 stevensc 25603
 
16825 efrain 25604
.btn-outline-bitbucket:hover {
25605
  background: #0052cc;
25606
  color: #fff;
25607
}
25608
 
25609
.btn-linkedin {
25610
  background: #0077b5;
25611
  color: #fff;
25612
}
16848 stevensc 25613
 
25614
.btn-linkedin:hover,
25615
.btn-linkedin:focus {
16825 efrain 25616
  background: #005582;
25617
  color: #fff;
25618
}
16848 stevensc 25619
 
16825 efrain 25620
.btn-linkedin.btn-social-icon-text {
25621
  padding: 0 1.5rem 0 0;
25622
  background: #0099e8;
25623
}
16848 stevensc 25624
 
16825 efrain 25625
.btn-linkedin.btn-social-icon-text i {
25626
  background: #0077b5;
25627
  padding: 0.75rem;
25628
  display: inline-block;
25629
  margin-right: 1.5rem;
25630
}
25631
 
25632
.btn-outline-linkedin {
25633
  border: 1px solid #0077b5;
25634
  color: #0077b5;
25635
}
16848 stevensc 25636
 
16825 efrain 25637
.btn-outline-linkedin:hover {
25638
  background: #0077b5;
25639
  color: #fff;
25640
}
25641
 
25642
.btn-inverse-primary {
25643
  background-color: rgba(101, 113, 255, 0.2);
25644
  background-image: none;
25645
  border-color: rgba(101, 113, 255, 0);
25646
}
16848 stevensc 25647
 
16825 efrain 25648
.btn-inverse-primary:not(.btn-inverse-light) {
25649
  color: #6571ff;
25650
}
16848 stevensc 25651
 
25652
.btn-inverse-primary:hover,
25653
.btn-inverse-primary.active,
25654
.btn-inverse-primary:active,
25655
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25656
  background-color: rgba(101, 113, 255, 0.3);
25657
  border-color: rgba(101, 113, 255, 0);
25658
}
16848 stevensc 25659
 
25660
.btn-inverse-primary.focus,
25661
.btn-inverse-primary:focus {
16825 efrain 25662
  background-color: rgba(101, 113, 255, 0.3);
25663
  border-color: transparent;
25664
}
16848 stevensc 25665
 
25666
.btn-inverse-primary.disabled,
25667
.btn-inverse-primary:disabled {
16825 efrain 25668
  color: #6571ff;
25669
  background-color: transparent;
25670
}
25671
 
25672
.btn-inverse-secondary {
25673
  background-color: rgba(121, 135, 161, 0.2);
25674
  background-image: none;
25675
  border-color: rgba(121, 135, 161, 0);
25676
}
16848 stevensc 25677
 
16825 efrain 25678
.btn-inverse-secondary:not(.btn-inverse-light) {
25679
  color: #7987a1;
25680
}
16848 stevensc 25681
 
25682
.btn-inverse-secondary:hover,
25683
.btn-inverse-secondary.active,
25684
.btn-inverse-secondary:active,
25685
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25686
  background-color: rgba(121, 135, 161, 0.3);
25687
  border-color: rgba(121, 135, 161, 0);
25688
}
16848 stevensc 25689
 
25690
.btn-inverse-secondary.focus,
25691
.btn-inverse-secondary:focus {
16825 efrain 25692
  background-color: rgba(121, 135, 161, 0.3);
25693
  border-color: transparent;
25694
}
16848 stevensc 25695
 
25696
.btn-inverse-secondary.disabled,
25697
.btn-inverse-secondary:disabled {
16825 efrain 25698
  color: #7987a1;
25699
  background-color: transparent;
25700
}
25701
 
25702
.btn-inverse-success {
25703
  background-color: rgba(5, 163, 74, 0.2);
25704
  background-image: none;
25705
  border-color: rgba(5, 163, 74, 0);
25706
}
16848 stevensc 25707
 
16825 efrain 25708
.btn-inverse-success:not(.btn-inverse-light) {
25709
  color: #05a34a;
25710
}
16848 stevensc 25711
 
25712
.btn-inverse-success:hover,
25713
.btn-inverse-success.active,
25714
.btn-inverse-success:active,
25715
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25716
  background-color: rgba(5, 163, 74, 0.3);
25717
  border-color: rgba(5, 163, 74, 0);
25718
}
16848 stevensc 25719
 
25720
.btn-inverse-success.focus,
25721
.btn-inverse-success:focus {
16825 efrain 25722
  background-color: rgba(5, 163, 74, 0.3);
25723
  border-color: transparent;
25724
}
16848 stevensc 25725
 
25726
.btn-inverse-success.disabled,
25727
.btn-inverse-success:disabled {
16825 efrain 25728
  color: #05a34a;
25729
  background-color: transparent;
25730
}
25731
 
25732
.btn-inverse-info {
25733
  background-color: rgba(102, 209, 209, 0.2);
25734
  background-image: none;
25735
  border-color: rgba(102, 209, 209, 0);
25736
}
16848 stevensc 25737
 
16825 efrain 25738
.btn-inverse-info:not(.btn-inverse-light) {
25739
  color: #66d1d1;
25740
}
16848 stevensc 25741
 
25742
.btn-inverse-info:hover,
25743
.btn-inverse-info.active,
25744
.btn-inverse-info:active,
25745
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25746
  background-color: rgba(102, 209, 209, 0.3);
25747
  border-color: rgba(102, 209, 209, 0);
25748
}
16848 stevensc 25749
 
25750
.btn-inverse-info.focus,
25751
.btn-inverse-info:focus {
16825 efrain 25752
  background-color: rgba(102, 209, 209, 0.3);
25753
  border-color: transparent;
25754
}
16848 stevensc 25755
 
25756
.btn-inverse-info.disabled,
25757
.btn-inverse-info:disabled {
16825 efrain 25758
  color: #66d1d1;
25759
  background-color: transparent;
25760
}
25761
 
25762
.btn-inverse-warning {
25763
  background-color: rgba(251, 188, 6, 0.2);
25764
  background-image: none;
25765
  border-color: rgba(251, 188, 6, 0);
25766
}
16848 stevensc 25767
 
16825 efrain 25768
.btn-inverse-warning:not(.btn-inverse-light) {
25769
  color: #fbbc06;
25770
}
16848 stevensc 25771
 
25772
.btn-inverse-warning:hover,
25773
.btn-inverse-warning.active,
25774
.btn-inverse-warning:active,
25775
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25776
  background-color: rgba(251, 188, 6, 0.3);
25777
  border-color: rgba(251, 188, 6, 0);
25778
}
16848 stevensc 25779
 
25780
.btn-inverse-warning.focus,
25781
.btn-inverse-warning:focus {
16825 efrain 25782
  background-color: rgba(251, 188, 6, 0.3);
25783
  border-color: transparent;
25784
}
16848 stevensc 25785
 
25786
.btn-inverse-warning.disabled,
25787
.btn-inverse-warning:disabled {
16825 efrain 25788
  color: #fbbc06;
25789
  background-color: transparent;
25790
}
25791
 
25792
.btn-inverse-danger {
25793
  background-color: rgba(255, 51, 102, 0.2);
25794
  background-image: none;
25795
  border-color: rgba(255, 51, 102, 0);
25796
}
16848 stevensc 25797
 
16825 efrain 25798
.btn-inverse-danger:not(.btn-inverse-light) {
25799
  color: #ff3366;
25800
}
16848 stevensc 25801
 
25802
.btn-inverse-danger:hover,
25803
.btn-inverse-danger.active,
25804
.btn-inverse-danger:active,
25805
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25806
  background-color: rgba(255, 51, 102, 0.3);
25807
  border-color: rgba(255, 51, 102, 0);
25808
}
16848 stevensc 25809
 
25810
.btn-inverse-danger.focus,
25811
.btn-inverse-danger:focus {
16825 efrain 25812
  background-color: rgba(255, 51, 102, 0.3);
25813
  border-color: transparent;
25814
}
16848 stevensc 25815
 
25816
.btn-inverse-danger.disabled,
25817
.btn-inverse-danger:disabled {
16825 efrain 25818
  color: #ff3366;
25819
  background-color: transparent;
25820
}
25821
 
25822
.btn-inverse-light {
25823
  background-color: rgba(233, 236, 239, 0.2);
25824
  background-image: none;
25825
  border-color: rgba(233, 236, 239, 0);
25826
}
16848 stevensc 25827
 
16825 efrain 25828
.btn-inverse-light:not(.btn-inverse-light) {
25829
  color: #e9ecef;
25830
}
16848 stevensc 25831
 
25832
.btn-inverse-light:hover,
25833
.btn-inverse-light.active,
25834
.btn-inverse-light:active,
25835
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25836
  background-color: rgba(233, 236, 239, 0.3);
25837
  border-color: rgba(233, 236, 239, 0);
25838
}
16848 stevensc 25839
 
25840
.btn-inverse-light.focus,
25841
.btn-inverse-light:focus {
16825 efrain 25842
  background-color: rgba(233, 236, 239, 0.3);
25843
  border-color: transparent;
25844
}
16848 stevensc 25845
 
25846
.btn-inverse-light.disabled,
25847
.btn-inverse-light:disabled {
16825 efrain 25848
  color: #e9ecef;
25849
  background-color: transparent;
25850
}
25851
 
25852
.btn-inverse-dark {
25853
  background-color: rgba(6, 12, 23, 0.2);
25854
  background-image: none;
25855
  border-color: rgba(6, 12, 23, 0);
25856
}
16848 stevensc 25857
 
16825 efrain 25858
.btn-inverse-dark:not(.btn-inverse-light) {
25859
  color: #060c17;
25860
}
16848 stevensc 25861
 
25862
.btn-inverse-dark:hover,
25863
.btn-inverse-dark.active,
25864
.btn-inverse-dark:active,
25865
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25866
  background-color: rgba(6, 12, 23, 0.3);
25867
  border-color: rgba(6, 12, 23, 0);
25868
}
16848 stevensc 25869
 
25870
.btn-inverse-dark.focus,
25871
.btn-inverse-dark:focus {
16825 efrain 25872
  background-color: rgba(6, 12, 23, 0.3);
25873
  border-color: transparent;
25874
}
16848 stevensc 25875
 
25876
.btn-inverse-dark.disabled,
25877
.btn-inverse-dark:disabled {
16825 efrain 25878
  color: #060c17;
25879
  background-color: transparent;
25880
}
25881
 
25882
.card {
25883
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25884
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25885
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25886
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25887
}
16848 stevensc 25888
 
25889
.card .card-body+.card-body {
16825 efrain 25890
  padding-top: 1rem;
25891
}
16848 stevensc 25892
 
16825 efrain 25893
.card .card-title {
25894
  text-transform: uppercase;
25895
  font-size: 0.875rem;
25896
  font-weight: 500;
25897
}
25898
 
25899
.card-group {
25900
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25901
}
16848 stevensc 25902
 
16825 efrain 25903
.card-group .card {
25904
  box-shadow: none;
25905
}
25906
 
25907
.dropdown .dropdown-toggle:after,
25908
.btn-group .dropdown-toggle:after {
25909
  border-top: 0;
25910
  border-right: 0;
25911
  border-left: 0;
25912
  border-bottom: 0;
25913
  font: normal normal normal 24px/1 "feather";
25914
  content: "\e842";
25915
  width: auto;
25916
  height: auto;
25917
  vertical-align: middle;
25918
  line-height: 0.625rem;
25919
  font-size: 0.875rem;
25920
}
16848 stevensc 25921
 
16825 efrain 25922
.dropdown.dropup .dropdown-toggle::after,
25923
.btn-group.dropup .dropdown-toggle::after {
25924
  content: "\e845";
25925
}
16848 stevensc 25926
 
16825 efrain 25927
.dropdown.dropstart .dropdown-toggle::before,
25928
.btn-group.dropstart .dropdown-toggle::before {
25929
  border: 0;
25930
  font: normal normal normal 24px/1 "feather";
25931
  content: "\e843";
25932
  width: auto;
25933
  height: auto;
25934
  vertical-align: middle;
25935
  line-height: 0.625rem;
25936
  font-size: 0.875rem;
25937
}
16848 stevensc 25938
 
16825 efrain 25939
.dropdown.dropend .dropdown-toggle::after,
25940
.btn-group.dropend .dropdown-toggle::after {
25941
  content: "\e844";
25942
}
25943
 
16848 stevensc 25944
.dropdown-menu,
25945
.tt-menu {
16825 efrain 25946
  padding: 0.35rem;
25947
  margin-top: 0;
25948
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25949
}
25950
 
16848 stevensc 25951
.dropdown-item,
25952
.tt-menu .tt-suggestion {
16825 efrain 25953
  font-size: 0.812rem;
25954
  padding: 0.25rem 0.875rem;
25955
  border-radius: 2px;
25956
}
16848 stevensc 25957
 
25958
.dropdown-item i,
25959
.tt-menu .tt-suggestion i,
25960
.dropdown-item svg,
25961
.tt-menu .tt-suggestion svg {
16825 efrain 25962
  color: #7987a1;
25963
}
16848 stevensc 25964
 
25965
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25966
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25967
  background-color: rgba(101, 113, 255, 0.1);
25968
}
16848 stevensc 25969
 
25970
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25971
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25972
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25973
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25974
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25975
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25976
  color: #6571ff;
25977
}
16848 stevensc 25978
 
25979
.dropdown-item:active i,
25980
.tt-menu .tt-suggestion:active i,
25981
.dropdown-item:active svg,
25982
.tt-menu .tt-suggestion:active svg,
25983
.dropdown-item.active i,
25984
.tt-menu .active.tt-suggestion i,
25985
.dropdown-item.active svg,
25986
.tt-menu .active.tt-suggestion svg {
16825 efrain 25987
  color: #fff;
25988
}
25989
 
25990
.form-control-xs,
25991
.form-select-xs {
25992
  padding: 0.313rem 0.8rem;
25993
  font-size: 0.75rem;
25994
}
25995
 
16848 stevensc 25996
.form-control-xs+.input-group-text {
16825 efrain 25997
  padding-top: 0.313rem;
25998
  padding-bottom: 0.313rem;
25999
}
26000
 
26001
.form-check-input {
26002
  margin-top: 0.13em;
26003
}
26004
 
26005
.input-group-text svg {
26006
  width: 18px;
26007
  height: 18px;
26008
}
26009
 
26010
[type=tel],
26011
[type=url],
26012
[type=email],
26013
[type=number] {
26014
  direction: ltr;
26015
}
26016
 
26017
.icons-list {
26018
  border-left: 1px solid #e9ecef;
26019
  border-top: 1px solid #e9ecef;
26020
}
16848 stevensc 26021
 
26022
.icons-list>div {
16825 efrain 26023
  border-bottom: 1px solid #e9ecef;
26024
  border-right: 1px solid #e9ecef;
26025
  background: #f9fafb;
26026
  display: flex;
26027
  align-items: center;
26028
  padding: 15px 20px;
26029
  font-weight: 400;
26030
  transition: all 0.3s ease-in-out;
26031
}
16848 stevensc 26032
 
26033
.icons-list>div i {
16825 efrain 26034
  display: inline-block;
26035
  font-size: 20px;
26036
  text-align: left;
26037
  margin-right: 12px;
26038
  color: #7987a1;
26039
  transition: all 0.3s ease-in-out;
26040
}
16848 stevensc 26041
 
26042
.icons-list>div svg {
16825 efrain 26043
  width: 20px;
26044
  margin-right: 12px;
26045
  color: #7987a1;
26046
  transition: all 0.3s ease-in-out;
26047
}
16848 stevensc 26048
 
26049
.icons-list>div:hover {
16825 efrain 26050
  cursor: text;
26051
}
16848 stevensc 26052
 
26053
.icons-list>div:hover i,
26054
.icons-list>div:hover svg {
16825 efrain 26055
  transform: scale(1.3);
26056
  color: #6571ff;
26057
}
26058
 
26059
.nav.nav-tabs .nav-item .nav-link {
26060
  border-color: #e9ecef #e9ecef #dee2e6;
26061
  color: #000;
26062
  background-color: #f8f9fa;
26063
  cursor: pointer;
26064
}
16848 stevensc 26065
 
16825 efrain 26066
.nav.nav-tabs .nav-item .nav-link.active {
26067
  border-color: #dee2e6 #dee2e6 #fff;
26068
  color: #6571ff;
26069
  background: #fff;
26070
}
16848 stevensc 26071
 
16825 efrain 26072
.nav.nav-tabs .nav-item .nav-link.disabled {
26073
  background-color: transparent;
26074
  color: #7987a1;
26075
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26076
}
16848 stevensc 26077
 
16825 efrain 26078
.nav.nav-tabs.nav-tabs-vertical {
26079
  border-bottom: 0;
26080
}
16848 stevensc 26081
 
16825 efrain 26082
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26083
  width: 100%;
26084
  border: 1px solid transparent;
26085
  border-radius: 0;
26086
  border-color: #e9ecef #e9ecef #dee2e6;
26087
  color: #000;
26088
  background-color: #f8f9fa;
26089
}
16848 stevensc 26090
 
16825 efrain 26091
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26092
  border-radius: 0.25rem 0 0 0;
26093
}
16848 stevensc 26094
 
16825 efrain 26095
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26096
  border-radius: 0 0 0 0.25rem;
26097
}
16848 stevensc 26098
 
16825 efrain 26099
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26100
  background-color: #fff;
26101
  color: #6571ff;
26102
  border-right-color: transparent;
26103
}
16848 stevensc 26104
 
16825 efrain 26105
.nav.nav-tabs.nav-tabs-line .nav-link {
26106
  border: 0;
26107
  background-color: transparent;
26108
}
16848 stevensc 26109
 
16825 efrain 26110
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26111
  border-bottom: 2px solid #6571ff;
26112
}
26113
 
26114
.tab-content.tab-content-vertical {
26115
  height: 100%;
26116
}
26117
 
26118
.pagination .page-item .page-link svg {
26119
  width: 18px;
26120
  height: 18px;
26121
}
16848 stevensc 26122
 
16825 efrain 26123
.pagination.pagination-separated .page-item {
26124
  margin-left: 2px;
26125
  margin-right: 2px;
26126
}
16848 stevensc 26127
 
16825 efrain 26128
.pagination.pagination-separated .page-item:first-child {
26129
  margin-left: 0;
26130
}
16848 stevensc 26131
 
16825 efrain 26132
.pagination.pagination-separated .page-item:last-child {
26133
  margin-right: 0;
26134
}
16848 stevensc 26135
 
16825 efrain 26136
.pagination.pagination-rounded .page-item {
26137
  margin-right: 2px;
26138
  margin-left: 2px;
26139
}
16848 stevensc 26140
 
16825 efrain 26141
.pagination.pagination-rounded .page-item .page-link {
26142
  border-radius: 50px;
26143
}
26144
 
26145
.table {
26146
  margin-bottom: 0;
26147
}
16848 stevensc 26148
 
26149
.table> :not(:last-child)> :last-child>* {
16825 efrain 26150
  border-bottom-color: inherit;
26151
}
16848 stevensc 26152
 
16825 efrain 26153
.table thead th {
26154
  border-top: 0;
26155
  font-weight: 500;
26156
  font-size: 12px;
26157
  text-transform: uppercase;
26158
  color: #7987a1;
26159
}
16848 stevensc 26160
 
16825 efrain 26161
.table thead th i {
26162
  margin-left: 0.325rem;
26163
}
16848 stevensc 26164
 
16825 efrain 26165
.table th,
26166
.table td {
26167
  white-space: nowrap;
26168
}
16848 stevensc 26169
 
16825 efrain 26170
.table td img {
26171
  width: 36px;
26172
  height: 36px;
26173
  border-radius: 100%;
26174
}
26175
 
26176
.timeline {
26177
  border-left: 3px solid #6571ff;
26178
  border-bottom-right-radius: 0.25rem;
26179
  border-top-right-radius: 0.25rem;
26180
  background: rgba(101, 113, 255, 0.2);
26181
  margin: 0 auto;
26182
  position: relative;
26183
  padding: 50px;
26184
  list-style: none;
26185
  max-width: 40%;
26186
}
16848 stevensc 26187
 
16825 efrain 26188
@media (max-width: 767px) {
26189
  .timeline {
26190
    max-width: 98%;
26191
    padding: 25px;
26192
  }
26193
}
16848 stevensc 26194
 
16825 efrain 26195
.timeline .event {
26196
  border-bottom: 1px dashed #e9ecef;
26197
  padding-bottom: 25px;
26198
  margin-bottom: 25px;
26199
  position: relative;
26200
}
16848 stevensc 26201
 
16825 efrain 26202
@media (max-width: 767px) {
26203
  .timeline .event {
26204
    padding-top: 30px;
26205
  }
26206
}
16848 stevensc 26207
 
16825 efrain 26208
.timeline .event .title {
26209
  font-weight: 500;
26210
  font-size: 1rem;
26211
  margin-bottom: 10px;
26212
}
16848 stevensc 26213
 
16825 efrain 26214
.timeline .event:last-of-type {
26215
  padding-bottom: 0;
26216
  margin-bottom: 0;
26217
  border: none;
26218
}
16848 stevensc 26219
 
26220
.timeline .event:before,
26221
.timeline .event:after {
16825 efrain 26222
  position: absolute;
26223
  display: block;
26224
  top: 0;
26225
}
16848 stevensc 26226
 
16825 efrain 26227
.timeline .event:before {
26228
  left: -207px;
26229
  content: attr(data-date);
26230
  text-align: right;
26231
  font-weight: 500;
26232
  font-size: 0.9em;
26233
  min-width: 120px;
26234
}
16848 stevensc 26235
 
16825 efrain 26236
@media (max-width: 767px) {
26237
  .timeline .event:before {
26238
    left: 0px;
26239
    text-align: left;
26240
  }
26241
}
16848 stevensc 26242
 
16825 efrain 26243
.timeline .event:after {
26244
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26245
  box-shadow: 0 0 0 3px #6571ff;
26246
  left: -55.8px;
26247
  background: #fff;
26248
  border-radius: 50%;
26249
  height: 9px;
26250
  width: 9px;
26251
  content: "";
26252
  top: 5px;
26253
}
16848 stevensc 26254
 
16825 efrain 26255
@media (max-width: 767px) {
26256
  .timeline .event:after {
26257
    left: -31.8px;
26258
  }
26259
}
26260
 
26261
.chat-wrapper {
26262
  height: calc(100vh - 60px - 102px);
26263
}
16848 stevensc 26264
 
16825 efrain 26265
@media (max-width: 991px) {
26266
  .chat-wrapper {
26267
    min-height: 100%;
26268
  }
26269
}
16848 stevensc 26270
 
16825 efrain 26271
@media (max-width: 991px) {
26272
  .chat-wrapper {
26273
    height: 100%;
26274
  }
26275
}
16848 stevensc 26276
 
16825 efrain 26277
@media (min-width: 992px) {
26278
  .chat-wrapper .chat-aside {
26279
    padding-right: 23px;
26280
  }
26281
}
16848 stevensc 26282
 
16825 efrain 26283
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26284
  position: relative;
26285
  max-height: calc(100vh - 385px);
26286
}
16848 stevensc 26287
 
26288
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26289
  padding-top: 11px;
26290
  padding-bottom: 11px;
26291
}
16848 stevensc 26292
 
16825 efrain 26293
@media (max-width: 991px) {
26294
  .chat-wrapper .chat-content {
26295
    position: absolute;
26296
    background: #fff;
26297
    left: 0;
26298
    bottom: -1px;
26299
    top: 0;
26300
    right: 0;
26301
    display: none;
26302
  }
16848 stevensc 26303
 
16825 efrain 26304
  .chat-wrapper .chat-content.show {
26305
    display: block;
26306
  }
26307
}
16848 stevensc 26308
 
16825 efrain 26309
.chat-wrapper .chat-content .chat-header {
26310
  padding: 0 10px;
26311
}
16848 stevensc 26312
 
16825 efrain 26313
.chat-wrapper .chat-content .chat-body {
26314
  position: relative;
26315
  max-height: calc(100vh - 340px);
26316
  margin-top: 20px;
26317
  margin-bottom: 20px;
26318
}
16848 stevensc 26319
 
16825 efrain 26320
@media (max-width: 767px) {
26321
  .chat-wrapper .chat-content .chat-body {
26322
    max-height: calc(100vh - 315px);
26323
  }
26324
}
16848 stevensc 26325
 
16825 efrain 26326
@media (max-width: 991px) {
26327
  .chat-wrapper .chat-content .chat-body {
26328
    max-height: calc(100vh - 342px);
26329
  }
26330
}
16848 stevensc 26331
 
16825 efrain 26332
.chat-wrapper .chat-content .chat-body .messages {
26333
  padding: 0 10px;
26334
  list-style-type: none;
26335
}
16848 stevensc 26336
 
16825 efrain 26337
.chat-wrapper .chat-content .chat-body .messages .message-item {
26338
  display: flex;
26339
  max-width: 80%;
26340
  margin-bottom: 20px;
26341
}
16848 stevensc 26342
 
16825 efrain 26343
@media (max-width: 767px) {
26344
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26345
    max-width: 95%;
26346
  }
26347
}
16848 stevensc 26348
 
16825 efrain 26349
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26350
  position: relative;
26351
  padding: 7px 15px;
26352
  margin-bottom: 4px;
26353
  width: -webkit-fit-content;
26354
  width: -moz-fit-content;
26355
  width: fit-content;
26356
}
16848 stevensc 26357
 
16825 efrain 26358
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26359
  font-size: 12px;
26360
  color: #7987a1;
26361
}
16848 stevensc 26362
 
16825 efrain 26363
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26364
  order: 1;
26365
  margin-right: 15px;
26366
}
16848 stevensc 26367
 
16825 efrain 26368
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26369
  order: 2;
26370
}
16848 stevensc 26371
 
16825 efrain 26372
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26373
  background: rgba(101, 113, 255, 0.1);
26374
  border-radius: 0 5px 5px;
26375
}
16848 stevensc 26376
 
16825 efrain 26377
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26378
  content: "";
26379
  width: 0;
26380
  height: 0;
26381
  position: absolute;
26382
  left: -10px;
26383
  top: 0;
26384
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26385
  border-bottom: 5px solid transparent;
26386
  border-left: 5px solid transparent;
26387
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26388
}
16848 stevensc 26389
 
16825 efrain 26390
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26391
  margin-left: auto;
26392
}
16848 stevensc 26393
 
16825 efrain 26394
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26395
  order: 2;
26396
  margin-left: 15px;
26397
}
16848 stevensc 26398
 
16825 efrain 26399
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26400
  order: 1;
26401
  margin-left: auto;
26402
}
16848 stevensc 26403
 
16825 efrain 26404
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26405
  background: rgba(102, 209, 209, 0.1);
26406
  border-radius: 5px 0 5px 5px;
26407
  margin-left: auto;
26408
}
16848 stevensc 26409
 
16825 efrain 26410
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26411
  content: "";
26412
  width: 0;
26413
  height: 0;
26414
  position: absolute;
26415
  right: -10px;
26416
  top: 0;
26417
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26418
  border-bottom: 5px solid transparent;
26419
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26420
  border-right: 5px solid transparent;
26421
}
16848 stevensc 26422
 
16825 efrain 26423
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26424
  text-align: right;
26425
  display: block;
26426
}
16848 stevensc 26427
 
16825 efrain 26428
.chat-wrapper figure {
26429
  position: relative;
26430
}
16848 stevensc 26431
 
16825 efrain 26432
.chat-wrapper figure .status {
26433
  width: 11px;
26434
  height: 11px;
26435
  background: #7987a1;
26436
  position: absolute;
26437
  bottom: 0px;
26438
  right: -2px;
26439
  border-radius: 50%;
26440
  border: 2px solid #fff;
26441
}
16848 stevensc 26442
 
16825 efrain 26443
.chat-wrapper figure .status.online {
26444
  background: #05a34a;
26445
}
16848 stevensc 26446
 
16825 efrain 26447
.chat-wrapper figure .status.offline {
26448
  background: #7987a1;
26449
}
26450
 
26451
.auth-page .auth-side-wrapper {
26452
  width: 100%;
26453
  height: 100%;
26454
  background-image: url(https://via.placeholder.com/219x452);
26455
  background-size: cover;
26456
}
26457
 
26458
.email-aside-nav.collapse {
26459
  display: block;
26460
}
16848 stevensc 26461
 
16825 efrain 26462
@media (max-width: 991px) {
26463
  .email-aside-nav.collapse {
26464
    display: none;
26465
  }
26466
}
16848 stevensc 26467
 
16825 efrain 26468
@media (max-width: 991px) {
26469
  .email-aside-nav.collapse.show {
26470
    display: block;
26471
  }
26472
}
16848 stevensc 26473
 
16825 efrain 26474
.email-aside-nav .nav-item {
26475
  border-radius: 0.2rem;
26476
}
16848 stevensc 26477
 
16825 efrain 26478
.email-aside-nav .nav-item .nav-link {
26479
  color: #000;
26480
}
16848 stevensc 26481
 
16825 efrain 26482
.email-aside-nav .nav-item .nav-link svg {
26483
  color: #7987a1;
26484
}
16848 stevensc 26485
 
26486
.email-aside-nav .nav-item.active,
26487
.email-aside-nav .nav-item:hover {
16825 efrain 26488
  background: rgba(101, 113, 255, 0.1);
26489
}
16848 stevensc 26490
 
26491
.email-aside-nav .nav-item.active .nav-link,
26492
.email-aside-nav .nav-item.active .nav-link svg,
26493
.email-aside-nav .nav-item:hover .nav-link,
26494
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26495
  color: #6571ff;
26496
}
26497
 
26498
.email-list-item {
26499
  display: flex;
26500
  align-items: center;
26501
  border-bottom: 1px solid #e9ecef;
26502
  padding: 10px 20px;
26503
  cursor: pointer;
26504
}
16848 stevensc 26505
 
16825 efrain 26506
.email-list-item:hover {
26507
  background: rgba(101, 113, 255, 0.08);
26508
}
16848 stevensc 26509
 
16825 efrain 26510
.email-list-item:last-child {
26511
  margin-bottom: 5px;
26512
}
16848 stevensc 26513
 
16825 efrain 26514
.email-list-item .email-list-actions {
26515
  width: 40px;
26516
  vertical-align: top;
26517
  display: table-cell;
26518
}
16848 stevensc 26519
 
16825 efrain 26520
.email-list-item .email-list-actions .form-check {
26521
  margin-bottom: 0;
26522
}
16848 stevensc 26523
 
16825 efrain 26524
.email-list-item .email-list-actions .favorite {
26525
  display: block;
26526
  padding-left: 1px;
26527
  line-height: 15px;
26528
}
16848 stevensc 26529
 
16825 efrain 26530
.email-list-item .email-list-actions .favorite span svg {
26531
  width: 14px;
26532
  color: #7987a1;
26533
}
16848 stevensc 26534
 
16825 efrain 26535
.email-list-item .email-list-actions .favorite:hover span {
26536
  color: #8d8d8d;
26537
}
16848 stevensc 26538
 
16825 efrain 26539
.email-list-item .email-list-actions .favorite.active span svg {
26540
  color: #fbbc06;
26541
}
16848 stevensc 26542
 
16825 efrain 26543
.email-list-item .email-list-detail {
26544
  width: calc(100% - 40px);
26545
  display: flex;
26546
  justify-content: space-between;
26547
  align-items: center;
26548
  flex-grow: 1;
26549
}
16848 stevensc 26550
 
16825 efrain 26551
.email-list-item .email-list-detail .content {
26552
  overflow: hidden;
26553
}
16848 stevensc 26554
 
16825 efrain 26555
.email-list-item .email-list-detail .content .from {
26556
  display: block;
26557
  margin: 0 0 1px 0;
26558
  color: #000;
26559
}
16848 stevensc 26560
 
16825 efrain 26561
.email-list-item .email-list-detail .content .msg {
26562
  width: 97%;
26563
  color: #7987a1;
26564
  font-size: 0.8rem;
26565
  overflow: hidden;
26566
  text-overflow: ellipsis;
26567
  white-space: nowrap;
26568
}
16848 stevensc 26569
 
16825 efrain 26570
.email-list-item .email-list-detail .date {
26571
  color: #000;
26572
  white-space: nowrap;
26573
}
16848 stevensc 26574
 
16825 efrain 26575
.email-list-item .email-list-detail .date .icon svg {
26576
  width: 14px;
26577
  margin-right: 7px;
26578
  color: #3d405c;
26579
}
16848 stevensc 26580
 
16825 efrain 26581
.email-list-item.email-list-item--unread {
26582
  background-color: rgba(101, 113, 255, 0.09);
26583
}
16848 stevensc 26584
 
16825 efrain 26585
.email-list-item.email-list-item--unread .content .from {
26586
  font-weight: 500;
26587
}
16848 stevensc 26588
 
16825 efrain 26589
.email-list-item.email-list-item--unread .content .msg {
26590
  font-weight: 700;
26591
}
26592
 
26593
.ace_editor {
26594
  border-radius: 0.25rem;
26595
  margin: auto;
26596
  height: 300px;
26597
  width: 100%;
26598
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26599
}
16848 stevensc 26600
 
16825 efrain 26601
.ace_editor .ace_content {
26602
  font-size: 0.875rem;
26603
}
26604
 
26605
div.apexcharts-canvas .apexcharts-menu {
26606
  background: #fff !important;
26607
  color: #000;
26608
  border-color: #e9ecef;
26609
}
16848 stevensc 26610
 
16825 efrain 26611
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26612
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26613
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26614
div.apexcharts-canvas .apexcharts-reset-icon svg,
26615
div.apexcharts-canvas .apexcharts-pan-icon svg,
26616
div.apexcharts-canvas .apexcharts-selection-icon svg,
26617
div.apexcharts-canvas .apexcharts-menu-icon svg,
26618
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26619
  fill: #7987a1;
26620
}
16848 stevensc 26621
 
16825 efrain 26622
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26623
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26624
  display: flex;
26625
  align-items: center;
26626
}
16848 stevensc 26627
 
16825 efrain 26628
div.apexcharts-canvas .apexcharts-legend-marker {
26629
  margin-right: 3px;
26630
}
16848 stevensc 26631
 
16825 efrain 26632
div.apexcharts-canvas .apexcharts-tooltip {
26633
  background: rgba(255, 255, 255, 0.8);
26634
  color: #000;
26635
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26636
  border-radius: 0.25rem;
26637
  border: 1px solid #f2f4f9;
26638
}
16848 stevensc 26639
 
16825 efrain 26640
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26641
  border-color: #e9ecef;
26642
  background-color: #fff;
26643
}
16848 stevensc 26644
 
16825 efrain 26645
div.apexcharts-canvas .apexcharts-tooltip * {
26646
  font-family: "Roboto", Helvetica, sans-serif !important;
26647
}
16848 stevensc 26648
 
16825 efrain 26649
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26650
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26651
  padding: 0 10px;
26652
}
16848 stevensc 26653
 
16825 efrain 26654
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26655
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26656
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26657
  margin-left: 0;
26658
}
16848 stevensc 26659
 
16825 efrain 26660
div.apexcharts-canvas .apexcharts-tooltip-title {
26661
  margin-bottom: 0;
26662
}
16848 stevensc 26663
 
16825 efrain 26664
div.apexcharts-canvas .apexcharts-xaxistooltip,
26665
div.apexcharts-canvas .apexcharts-yaxistooltip {
26666
  background: #fff;
26667
  color: #000;
26668
  border-color: #f2f4f9;
26669
}
16848 stevensc 26670
 
16825 efrain 26671
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26672
  border-bottom-color: #f2f4f9;
26673
}
16848 stevensc 26674
 
16825 efrain 26675
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26676
  border-bottom-color: rgba(255, 255, 255, 0.8);
26677
}
16848 stevensc 26678
 
16825 efrain 26679
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26680
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26681
  border-left-color: #f2f4f9;
26682
}
16848 stevensc 26683
 
16825 efrain 26684
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26685
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26686
  border-left-color: rgba(255, 255, 255, 0.8);
26687
}
26688
 
26689
@media (max-width: 767px) {
26690
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26691
    text-align: left;
26692
  }
26693
}
16848 stevensc 26694
 
16825 efrain 26695
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26696
  margin-left: 10px;
26697
  margin-right: 10px;
26698
}
16848 stevensc 26699
 
16825 efrain 26700
@media (max-width: 767px) {
26701
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26702
    text-align: left;
26703
    margin-left: -19px;
26704
  }
26705
}
26706
 
26707
.dropify-wrapper {
26708
  border: 1px solid #e9ecef;
26709
  border-radius: 0.25rem;
26710
}
16848 stevensc 26711
 
16825 efrain 26712
.dropify-wrapper .dropify-message span.file-icon {
26713
  font-size: 0.875rem;
26714
  color: #7987a1;
26715
}
16848 stevensc 26716
 
16825 efrain 26717
.dropify-wrapper .dropify-message span.file-icon::before {
26718
  font-family: feather;
26719
  content: "\e8e3";
26720
  font-size: 24px;
26721
}
26722
 
26723
.dropzone {
26724
  overflow: auto;
26725
  border: 1px solid #e9ecef;
26726
  border-radius: 0.25rem;
26727
  max-height: 200px;
26728
  padding: 0;
26729
}
16848 stevensc 26730
 
16825 efrain 26731
@media (min-width: 1400px) {
26732
  .dropzone {
26733
    min-height: 200px;
26734
  }
26735
}
16848 stevensc 26736
 
16825 efrain 26737
.dropzone.dz-clickable .dz-message {
26738
  margin-top: 65px;
26739
}
16848 stevensc 26740
 
26741
.dropzone .dz-preview.dz-image-preview .dz-image,
26742
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26743
  border-radius: 0.25rem;
26744
}
26745
 
16848 stevensc 26746
.form-control.flatpickr-input,
26747
.flatpickr-input.typeahead.tt-input,
26748
.flatpickr-input.typeahead.tt-hint,
26749
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26750
  background-color: #fff;
26751
}
26752
 
26753
.flatpickr-day.selected,
26754
.flatpickr-day.startRange,
26755
.flatpickr-day.endRange,
26756
.flatpickr-day.selected.inRange,
26757
.flatpickr-day.startRange.inRange,
26758
.flatpickr-day.endRange.inRange,
26759
.flatpickr-day.selected:focus,
26760
.flatpickr-day.startRange:focus,
26761
.flatpickr-day.endRange:focus,
26762
.flatpickr-day.selected:hover,
26763
.flatpickr-day.startRange:hover,
26764
.flatpickr-day.endRange:hover,
26765
.flatpickr-day.selected.prevMonthDay,
26766
.flatpickr-day.startRange.prevMonthDay,
26767
.flatpickr-day.endRange.prevMonthDay,
26768
.flatpickr-day.selected.nextMonthDay,
26769
.flatpickr-day.startRange.nextMonthDay,
26770
.flatpickr-day.endRange.nextMonthDay {
26771
  background: #6571ff;
26772
  border-color: #6571ff;
26773
}
26774
 
26775
.flatpickr-months {
26776
  padding: 0 1rem;
26777
  padding-top: 0.5rem;
26778
}
26779
 
26780
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26781
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26782
  left: 11px;
26783
  right: auto !important;
26784
  top: 8px;
26785
}
26786
 
26787
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26788
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26789
  right: 11px;
26790
  left: auto !important;
26791
  top: 8px;
26792
}
26793
 
26794
.flatpickr-months .flatpickr-prev-month:hover svg,
26795
.flatpickr-months .flatpickr-next-month:hover svg {
26796
  fill: #6571ff;
26797
}
26798
 
26799
.flatpickr-months .flatpickr-month {
26800
  height: 42px;
26801
}
26802
 
26803
.flatpickr-current-month .flatpickr-monthDropdown-months {
26804
  font-size: 1rem;
26805
  border-radius: 0.25rem;
26806
  padding: 0.3rem 0.5rem;
26807
}
26808
 
26809
.flatpickr-weekdays {
26810
  padding: 0 10px;
26811
}
26812
 
26813
.dayContainer {
26814
  padding: 0 10px 10px;
26815
}
26816
 
26817
.fc {
26818
  --fc-button-active-bg-color: #6571ff;
26819
  --fc-button-active-border-color: #6571ff;
26820
}
16848 stevensc 26821
 
16825 efrain 26822
.fc .fc-button .fc-icon {
26823
  font-size: 1.2 em;
26824
}
16848 stevensc 26825
 
16825 efrain 26826
.fc .fc-button-primary:focus,
26827
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26828
.fc .fc-button-primary:not(:disabled):active:focus {
26829
  box-shadow: none;
26830
}
16848 stevensc 26831
 
16825 efrain 26832
.fc .fc-button-primary:disabled {
26833
  border-color: #6571ff;
26834
}
16848 stevensc 26835
 
16825 efrain 26836
@media (max-width: 767px) {
26837
  .fc .fc-toolbar {
26838
    flex-direction: column;
26839
  }
16848 stevensc 26840
 
16825 efrain 26841
  .fc .fc-toolbar .fc-toolbar-chunk {
26842
    margin-bottom: 12px;
26843
  }
26844
}
16848 stevensc 26845
 
16825 efrain 26846
.fc .fc-daygrid-day-number,
26847
.fc .fc-col-header-cell-cushion {
26848
  color: #000;
26849
}
16848 stevensc 26850
 
16825 efrain 26851
.fc .fc-daygrid-event {
26852
  padding: 4px;
26853
}
16848 stevensc 26854
 
16825 efrain 26855
.fc .fc-daygrid-day.fc-day-today {
26856
  background-color: rgba(101, 113, 255, 0.2);
26857
}
16848 stevensc 26858
 
16825 efrain 26859
.fc .fc-list-event:hover td {
26860
  background-color: rgba(101, 113, 255, 0.2);
26861
}
16848 stevensc 26862
 
16825 efrain 26863
.fc .fc-list-day-text,
26864
.fc .fc-list-day-side-text {
26865
  color: #000;
26866
}
26867
 
26868
.fc-theme-standard td,
26869
.fc-theme-standard th,
26870
.fc-theme-standard .fc-scrollgrid {
26871
  border-color: #e9ecef;
26872
}
26873
 
26874
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26875
.fc-timegrid-event.fc-event-mirror,
26876
.fc-timegrid-more-link {
26877
  box-shadow: none;
26878
}
26879
 
26880
.fc-theme-standard .fc-popover {
26881
  background-color: #fff;
26882
  border-color: #f2f4f9;
26883
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26884
}
16848 stevensc 26885
 
16825 efrain 26886
.fc-theme-standard .fc-popover .fc-popover-header {
26887
  background-color: #7987a1;
26888
}
26889
 
26890
.fc-theme-standard .fc-list-day-cushion {
26891
  background-color: #fff;
26892
}
26893
 
26894
.fc-theme-standard .fc-list {
26895
  border-color: #e9ecef;
26896
}
26897
 
26898
.fc-event {
26899
  margin-bottom: 10px;
26900
  padding: 8px;
26901
  border-radius: 2px;
26902
  background: rgba(101, 113, 255, 0.2);
26903
  border: 0;
26904
  border-left: 3px solid #6571ff;
26905
  color: #000;
26906
  font-weight: 500;
26907
}
26908
 
26909
.fc-h-event .fc-event-main {
26910
  color: #000;
26911
}
26912
 
26913
.flot-chart-wrapper .flot-chart {
26914
  width: 100%;
26915
  position: relative;
26916
  max-width: none;
26917
  height: 400px;
26918
}
16848 stevensc 26919
 
16825 efrain 26920
@media (max-width: 767px) {
26921
  .flot-chart-wrapper {
26922
    height: 200px;
26923
    min-height: 200px;
26924
  }
16848 stevensc 26925
 
16825 efrain 26926
  .flot-chart-wrapper .flot-chart {
26927
    height: 100%;
26928
  }
26929
}
26930
 
16848 stevensc 26931
.flot-text .flot-x-axis>div,
16825 efrain 26932
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26933
.flot-text .flot-y-axis>div,
16825 efrain 26934
.flot-text .flot-y-axis .flot-tick-label {
26935
  color: #000;
26936
}
26937
 
26938
.peity-custom svg {
26939
  margin-right: 10px;
26940
}
26941
 
26942
.ps__thumb-x {
26943
  background-color: #d9d9d9;
26944
  height: 4px;
26945
}
26946
 
26947
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26948
.ps__rail-x:focus>.ps__thumb-x,
26949
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26950
  background-color: #b3b3b3;
26951
  height: 6px;
26952
}
26953
 
26954
.ps__rail-x {
26955
  height: 10px;
26956
}
26957
 
26958
.ps__thumb-y {
26959
  background-color: #d9d9d9;
26960
  width: 4px;
26961
  /*rtl:raw:
26962
   left: 2px !important;
26963
  right: auto !important;
26964
   */
26965
}
26966
 
26967
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26968
.ps__rail-y:focus>.ps__thumb-y,
26969
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26970
  background-color: #b3b3b3;
26971
  width: 6px;
26972
}
26973
 
26974
.ps__rail-y {
26975
  width: 10px;
26976
  /*rtl:raw:
26977
   left: 0 !important;
26978
  right: auto !important;
26979
   */
26980
}
26981
 
26982
.ps .ps__rail-x.ps--clicking,
26983
.ps .ps__rail-x:focus,
26984
.ps .ps__rail-x:hover,
26985
.ps .ps__rail-y.ps--clicking,
26986
.ps .ps__rail-y:focus,
26987
.ps .ps__rail-y:hover {
26988
  background-color: #e9ecef;
26989
}
26990
 
26991
.swal2-popup {
26992
  font-size: 0.875rem;
26993
}
16848 stevensc 26994
 
16825 efrain 26995
.swal2-popup .swal2-title {
26996
  font-size: 25px;
26997
  line-height: 1;
26998
  font-weight: 500;
26999
  color: #000;
27000
  margin-bottom: 0;
27001
}
16848 stevensc 27002
 
16825 efrain 27003
.swal2-popup .swal2-html-container {
27004
  font-size: 0.875rem;
27005
  color: #7987a1;
27006
  font-weight: initial;
27007
  margin-top: 11px;
27008
  text-decoration: none;
27009
}
16848 stevensc 27010
 
16825 efrain 27011
.swal2-popup .swal2-actions button svg {
27012
  width: 16px;
27013
  height: 16px;
27014
}
16848 stevensc 27015
 
16825 efrain 27016
.swal2-popup .swal2-close {
27017
  font-size: 22px;
27018
}
16848 stevensc 27019
 
16825 efrain 27020
.swal2-popup .swal2-close:focus {
27021
  box-shadow: none;
27022
}
16848 stevensc 27023
 
16825 efrain 27024
.swal2-popup .swal2-timer-progress-bar {
27025
  background: #7987a1;
27026
}
27027
 
27028
.select2-container--default .select2-selection--single,
27029
.select2-container--default .select2-selection--multiple {
27030
  border: 1px solid #e9ecef;
27031
  border-radius: 0.25rem;
27032
}
16848 stevensc 27033
 
27034
.select2-container--focus.select2-container--default .select2-selection--single,
27035
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27036
  border: 1px solid #cbd1db;
27037
}
27038
 
27039
.select2-dropdown {
27040
  border: 1px solid #cbd1db;
27041
  border-radius: 0.25rem;
27042
}
27043
 
27044
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27045
  background-color: #6571ff;
27046
}
27047
 
27048
.select2-container .select2-selection--single,
27049
.select2-container .select2-selection--multiple {
27050
  height: auto;
27051
}
27052
 
27053
.select2-container--default .select2-selection--single .select2-selection__rendered {
27054
  line-height: 1.5;
27055
  padding: 0.469rem 0.8rem;
27056
}
16848 stevensc 27057
 
16825 efrain 27058
.select2-container--default .select2-selection--single .select2-selection__arrow {
27059
  height: 100%;
27060
}
16848 stevensc 27061
 
16825 efrain 27062
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27063
  left: 0;
27064
}
27065
 
27066
.select2-container--default .select2-selection--multiple {
27067
  min-height: 38px;
27068
}
16848 stevensc 27069
 
16825 efrain 27070
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27071
  padding: 0 6px;
27072
}
16848 stevensc 27073
 
16825 efrain 27074
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27075
  background-color: #6571ff;
27076
  color: #fff;
27077
  border-color: #6571ff;
27078
  padding: 1px 8px;
27079
  border-radius: 0.15rem;
27080
  margin-top: 5px;
27081
}
16848 stevensc 27082
 
16825 efrain 27083
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27084
  color: #fff;
27085
  opacity: 0.5;
27086
}
27087
 
27088
.select2-container .select2-search--inline {
27089
  margin-top: 3px;
27090
}
27091
 
27092
.EasyMDEContainer .CodeMirror {
27093
  background: #fff;
27094
  border: 1px solid #e9ecef;
27095
  color: #000;
27096
  border-bottom-left-radius: 0;
27097
  border-bottom-right-radius: 0;
27098
}
27099
 
27100
.editor-toolbar {
27101
  border: 1px solid #e9ecef;
27102
  border-bottom: 0;
27103
  border-radius: 0.25rem 0.25rem 0 0;
27104
}
16848 stevensc 27105
 
27106
.editor-toolbar,
27107
.editor-toolbar:hover {
16825 efrain 27108
  opacity: 1;
27109
}
16848 stevensc 27110
 
16825 efrain 27111
.editor-toolbar button {
27112
  color: rgba(0, 0, 0, 0.7) !important;
27113
}
16848 stevensc 27114
 
16825 efrain 27115
.editor-toolbar button:hover {
27116
  background: #e9ecef;
27117
  border: none;
27118
}
16848 stevensc 27119
 
16825 efrain 27120
.editor-toolbar i.separator {
27121
  border-left: 1px solid #e9ecef;
27122
  border-right: 1px solid #e9ecef;
27123
}
27124
 
27125
.CodeMirror-fullscreen,
27126
.editor-toolbar.fullscreen,
27127
.editor-preview-side {
27128
  z-index: 999;
27129
}
27130
 
27131
.editor-preview-side {
27132
  border-color: #e9ecef;
27133
}
27134
 
16848 stevensc 27135
.editor-toolbar button.active,
27136
.editor-toolbar button:hover {
16825 efrain 27137
  background: #e9ecef;
27138
  border-color: transparent;
27139
}
27140
 
27141
.editor-statusbar {
27142
  padding: 0 10px;
27143
  border: 1px solid #e9ecef;
27144
  border-top-color: transparent;
27145
  border-bottom-left-radius: 0.25rem;
27146
  border-bottom-right-radius: 0.25rem;
27147
}
27148
 
27149
div.tagsinput {
27150
  padding: 6px 6px 1px;
27151
  border-color: #e9ecef;
27152
  border-radius: 0.25rem;
27153
}
16848 stevensc 27154
 
16825 efrain 27155
div.tagsinput span.tag {
27156
  background: #6571ff;
27157
  color: #fff;
27158
  border: 0;
27159
  padding: 3px 7px;
27160
  font-family: inherit;
27161
  border-radius: 0.15rem;
27162
  margin-bottom: 4px;
27163
  float: left;
27164
  /*rtl:raw:
27165
  margin-left: 0;
27166
  margin-right: 5px;
27167
  */
27168
}
16848 stevensc 27169
 
16825 efrain 27170
div.tagsinput span.tag a {
27171
  font-size: 13px;
27172
  font-weight: 500;
27173
  color: #fff;
27174
  opacity: 0.5;
27175
}
16848 stevensc 27176
 
16825 efrain 27177
div.tagsinput #tags_addTag {
27178
  float: left;
27179
  /*rtl:raw:
27180
  margin-right: 5px;
27181
  */
27182
}
16848 stevensc 27183
 
16825 efrain 27184
div.tagsinput input {
27185
  margin: 0;
27186
  padding: 1px;
27187
  border-radius: 0.25rem;
27188
}
27189
 
27190
.tox.tox-tinymce {
27191
  border: 1px solid #e9ecef;
27192
  border-radius: 0.25rem;
27193
}
16848 stevensc 27194
 
16825 efrain 27195
.tox.tox-tinymce .tox-menubar,
27196
.tox.tox-tinymce .tox-toolbar-overlord,
27197
.tox.tox-tinymce .tox-toolbar,
27198
.tox.tox-tinymce .tox-toolbar__overflow,
27199
.tox.tox-tinymce .tox-toolbar__primary {
27200
  background-color: #fff;
27201
  background-image: none;
27202
  border-bottom: 1px solid #e9ecef;
27203
}
16848 stevensc 27204
 
16825 efrain 27205
.tox.tox-tinymce .tox-toolbar-overlord {
27206
  border-bottom: none;
27207
}
16848 stevensc 27208
 
16825 efrain 27209
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27210
  padding: 0;
27211
  box-shadow: none;
27212
}
16848 stevensc 27213
 
16825 efrain 27214
.tox.tox-tinymce .tox-edit-area__iframe {
27215
  background-color: #fff;
27216
}
16848 stevensc 27217
 
16825 efrain 27218
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27219
  border-right-color: #e9ecef;
27220
  border-left-color: #e9ecef;
27221
}
16848 stevensc 27222
 
16825 efrain 27223
.tox.tox-tinymce .tox-statusbar {
27224
  background-color: #fff;
27225
  border-color: #e9ecef;
27226
  color: #7987a1;
27227
}
16848 stevensc 27228
 
16825 efrain 27229
.tox.tox-tinymce .tox-statusbar a,
27230
.tox.tox-tinymce .tox-statusbar__path-item,
27231
.tox.tox-tinymce .tox-statusbar__wordcount {
27232
  color: #7987a1;
27233
}
16848 stevensc 27234
 
16825 efrain 27235
.tox.tox-tinymce .tox-mbtn {
27236
  color: #000;
27237
}
16848 stevensc 27238
 
16825 efrain 27239
.tox.tox-tinymce .tox-tbtn {
27240
  color: rgba(0, 0, 0, 0.7);
27241
}
16848 stevensc 27242
 
16825 efrain 27243
.tox.tox-tinymce .tox-tbtn:hover {
27244
  background: #e9ecef;
27245
  color: #000;
27246
}
16848 stevensc 27247
 
16825 efrain 27248
.tox.tox-tinymce .tox-tbtn:hover svg {
27249
  fill: #000;
27250
}
16848 stevensc 27251
 
16825 efrain 27252
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27253
  color: #000;
27254
}
16848 stevensc 27255
 
16825 efrain 27256
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27257
  background: #e9ecef;
27258
  color: #000;
27259
}
16848 stevensc 27260
 
16825 efrain 27261
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27262
.tox.tox-tinymce .tox-mbtn--active {
27263
  background: #e9ecef;
27264
  color: #000;
27265
}
16848 stevensc 27266
 
16825 efrain 27267
.tox.tox-tinymce .tox-tbtn svg {
27268
  fill: rgba(0, 0, 0, 0.7);
27269
}
16848 stevensc 27270
 
16825 efrain 27271
.tox.tox-tinymce .tox-tbtn--disabled svg,
27272
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27273
.tox.tox-tinymce .tox-tbtn:disabled svg,
27274
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27275
  fill: #e9ecef;
27276
}
16848 stevensc 27277
 
16825 efrain 27278
.tox.tox-tinymce .tox-split-button:hover {
27279
  box-shadow: 0 0 0 1px #e9ecef inset;
27280
}
16848 stevensc 27281
 
16825 efrain 27282
.tox.tox-tinymce .tox-split-button:focus {
27283
  background: #e9ecef;
27284
}
16848 stevensc 27285
 
16825 efrain 27286
.tox.tox-tinymce .tox-tbtn--enabled,
27287
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27288
.tox.tox-tinymce .tox-tbtn:focus {
27289
  background: #e9ecef;
27290
}
27291
 
27292
div.tox .tox-menu {
27293
  background-color: #fff;
27294
  border-color: #f2f4f9;
27295
}
16848 stevensc 27296
 
16825 efrain 27297
div.tox .tox-collection__item {
27298
  color: #000;
27299
}
16848 stevensc 27300
 
16825 efrain 27301
div.tox .tox-collection--list .tox-collection__item--enabled {
27302
  background-color: #6571ff;
27303
  color: #fff;
27304
}
16848 stevensc 27305
 
16825 efrain 27306
div.tox .tox-collection--list .tox-collection__group {
27307
  border-color: #e9ecef;
27308
}
16848 stevensc 27309
 
16825 efrain 27310
div.tox .tox-collection--toolbar .tox-collection__item--active {
27311
  background-color: #e9ecef;
27312
}
16848 stevensc 27313
 
16825 efrain 27314
div.tox .tox-collection--list .tox-collection__item--active {
27315
  background-color: #e9ecef;
27316
}
16848 stevensc 27317
 
16825 efrain 27318
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27319
  color: #000;
27320
}
16848 stevensc 27321
 
16825 efrain 27322
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27323
  color: #000;
27324
}
16848 stevensc 27325
 
16825 efrain 27326
div.tox .tox-dialog-wrap__backdrop {
27327
  background-color: rgba(0, 0, 0, 0.75);
27328
}
16848 stevensc 27329
 
16825 efrain 27330
div.tox .tox-dialog,
27331
div.tox .tox-dialog__header,
27332
div.tox .tox-dialog__footer {
27333
  background-color: #fff;
27334
  border-color: #e9ecef;
27335
  color: #000;
27336
}
16848 stevensc 27337
 
16825 efrain 27338
div.tox .tox-button--secondary:hover:not(:disabled) {
27339
  background-color: #7987a1;
27340
  border-color: #7987a1;
27341
  color: #fff;
27342
}
16848 stevensc 27343
 
16825 efrain 27344
div.tox .tox-button--naked:hover:not(:disabled) {
27345
  background-color: transparent;
27346
  border-color: transparent;
27347
}
16848 stevensc 27348
 
16825 efrain 27349
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27350
  color: #333333;
27351
}
16848 stevensc 27352
 
16825 efrain 27353
div.tox .tox-listboxfield .tox-listbox--select,
27354
div.tox .tox-textarea,
27355
div.tox .tox-textfield,
27356
div.tox .tox-toolbar-textfield {
27357
  background-color: #fff;
27358
  border-color: #e9ecef;
27359
  color: #000;
27360
}
16848 stevensc 27361
 
16825 efrain 27362
div.tox .tox-listboxfield .tox-listbox--select:focus,
27363
div.tox .tox-textarea:focus,
27364
div.tox .tox-textfield:focus {
27365
  background-color: #fff;
27366
  border-color: #cbd1db;
27367
}
16848 stevensc 27368
 
16825 efrain 27369
div.tox .tox-dialog__table tbody tr {
27370
  border-color: #e9ecef;
27371
}
16848 stevensc 27372
 
16825 efrain 27373
div.tox .tox-dialog__body {
27374
  color: #000;
27375
}
27376
 
27377
.typeahead.tt-input,
27378
.typeahead.tt-hint {
27379
  background-color: #fff !important;
27380
  /*rtl:raw:
27381
  direction: rtl;
27382
  */
27383
}
27384
 
27385
.tt-menu .tt-suggestion {
27386
  cursor: pointer;
27387
}
27388
 
16848 stevensc 27389
.tabcontrol ul,
27390
.wizard ul {
16825 efrain 27391
  display: flex;
27392
}
16848 stevensc 27393
 
16825 efrain 27394
@media (max-width: 676px) {
16848 stevensc 27395
 
27396
  .tabcontrol ul,
27397
  .wizard ul {
16825 efrain 27398
    flex-wrap: wrap;
27399
  }
27400
}
27401
 
16848 stevensc 27402
.wizard>.steps>ul>li {
16825 efrain 27403
  width: auto;
27404
  display: flex;
27405
  flex-grow: 1;
27406
}
27407
 
16848 stevensc 27408
.wizard>.steps .disabled a,
27409
.wizard>.steps .disabled a:active,
27410
.wizard>.steps .disabled a:hover {
16825 efrain 27411
  background-color: #e9ecef;
27412
  color: #000;
27413
  border: 1px solid transparent;
27414
}
27415
 
16848 stevensc 27416
.wizard>.steps .current a,
27417
.wizard>.steps .current a:active,
27418
.wizard>.steps .current a:hover {
16825 efrain 27419
  background-color: #6571ff;
27420
  border: 1px solid transparent;
27421
}
27422
 
16848 stevensc 27423
.wizard>.steps a,
27424
.wizard>.steps a:active,
27425
.wizard>.steps a:hover {
16825 efrain 27426
  padding: 0.469rem 0.8rem;
27427
  border-radius: 0.25rem;
27428
  width: 100%;
27429
}
27430
 
16848 stevensc 27431
.wizard>.steps .done a,
27432
.wizard>.steps .done a:active,
27433
.wizard>.steps .done a:hover {
16825 efrain 27434
  background-color: rgba(101, 113, 255, 0.2);
27435
  color: #6571ff;
27436
  border: 1px solid #6571ff;
27437
}
27438
 
16848 stevensc 27439
.wizard>.steps ul li a,
27440
.wizard>.steps ul li a:active,
27441
.wizard>.steps ul li a:hover {
16825 efrain 27442
  margin: 0 0.5em 0.5em 0;
27443
}
16848 stevensc 27444
 
27445
.wizard>.steps ul li:last-child a,
27446
.wizard>.steps ul li:last-child a:active,
27447
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27448
  margin: 0 0 0.5em 0;
27449
}
27450
 
16848 stevensc 27451
.wizard>.steps .number {
16825 efrain 27452
  font-size: inherit;
27453
}
27454
 
16848 stevensc 27455
.wizard>.content {
16825 efrain 27456
  background: #fff;
27457
  border: 1px solid #e9ecef;
27458
  min-height: 23em;
27459
  overflow: auto;
27460
  margin: 0.5em 0;
27461
}
27462
 
27463
@media (max-width: 767px) {
16848 stevensc 27464
  .wizard>.content>.body {
16825 efrain 27465
    width: 90%;
27466
    height: 90%;
27467
    padding: 5%;
27468
  }
27469
}
27470
 
16848 stevensc 27471
.wizard>.actions .disabled a,
27472
.wizard>.actions .disabled a:active,
27473
.wizard>.actions .disabled a:hover {
16825 efrain 27474
  background: #e9ecef;
27475
  border-color: #e9ecef;
27476
  cursor: not-allowed;
27477
  color: #aeb7c5;
27478
}
27479
 
16848 stevensc 27480
.wizard>.actions .disabled a:focus {
16825 efrain 27481
  box-shadow: none;
27482
  color: #aeb7c5;
27483
}
27484
 
16848 stevensc 27485
.wizard>.actions>ul li {
16825 efrain 27486
  margin-right: 0;
27487
  margin-left: 0.7em;
27488
}
27489
 
16848 stevensc 27490
.wizard.vertical>.steps ul {
16825 efrain 27491
  flex-direction: column;
27492
}
27493
 
16848 stevensc 27494
.wizard.vertical>.content {
16825 efrain 27495
  margin: 0 0 0.5em 2%;
27496
  width: 68%;
27497
}
27498
 
16848 stevensc 27499
.wizard.vertical>.steps a,
27500
.wizard.vertical>.steps a:active,
27501
.wizard.vertical>.steps a:hover {
16825 efrain 27502
  margin: 0 0 0.5em 0;
27503
}
27504
 
16848 stevensc 27505
.wizard.vertical>.actions {
16825 efrain 27506
  margin: 0;
27507
  width: 100%;
27508
}
27509
 
16848 stevensc 27510
.wizard.vertical>.actions>ul>li {
16825 efrain 27511
  margin: 0 0 0 0.7em;
27512
}
16848 stevensc 27513
 
27514
.pac-container {
27515
  z-index: 1200;
27516
}
27517
 
16857 stevensc 27518
.feed-section {
27519
  display: flex;
27520
  flex-direction: column;
27521
  gap: .5rem;
16858 stevensc 27522
  width: 50%;
27523
  margin: 0 auto;
16857 stevensc 27524
  box-sizing: border-box;
16865 stevensc 27525
  align-items: center;
16857 stevensc 27526
}
27527
 
16867 stevensc 27528
.theme-container {
16849 stevensc 27529
  background-color: var(--bg-color);
27530
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27531
  height: fit-content;
27532
  width: -moz-available;
27533
  width: -webkit-fill-available;
27534
  width: fill-available;
27535
  overflow: hidden;
27536
  position: relative;
16853 stevensc 27537
  border-radius: var(--border-radius);
16849 stevensc 27538
}
27539
 
16867 stevensc 27540
.theme-container span {
16849 stevensc 27541
  font-size: 0.9rem;
16853 stevensc 27542
  line-height: 1;
27543
  color: var(--subtitle-color);
27544
  font-weight: 600;
16849 stevensc 27545
}
27546
 
16867 stevensc 27547
.theme-container p {
16849 stevensc 27548
  color: var(--font-color);
27549
  font-size: 14px;
27550
  text-align: justify;
27551
  margin-bottom: 0.5rem;
27552
}
27553
 
16867 stevensc 27554
.theme-container h2 {
16849 stevensc 27555
  font-size: 1rem;
16853 stevensc 27556
  font-weight: 600;
16849 stevensc 27557
}
27558
 
16867 stevensc 27559
.theme-container input,
27560
.theme-container input:focus {
16859 stevensc 27561
  align-items: center;
27562
  color: gray;
27563
  display: flex;
27564
  min-height: 1.5rem;
27565
  gap: 5px;
27566
  width: 100%;
27567
  border: 1px solid lightgray;
27568
  background-color: rgb(255, 255, 255);
27569
  border-radius: 30px;
27570
  padding: 5px 5px 5px 1rem;
27571
}
27572
 
16849 stevensc 27573
.feed-header {
27574
  display: flex;
27575
  gap: 0.5rem;
27576
  padding: 10px 1rem;
27577
  align-items: center;
27578
  position: relative;
27579
}
27580
 
16858 stevensc 27581
.feed-header a>img {
27582
  width: 50px;
27583
  height: 50px;
27584
  border-radius: 50%;
27585
  object-fit: cover;
27586
}
27587
 
16851 stevensc 27588
.feed-info {
27589
  display: inline-flex;
16852 stevensc 27590
  flex-direction: column;
16851 stevensc 27591
  width: fit-content;
27592
}
27593
 
16852 stevensc 27594
.feed-body {
16849 stevensc 27595
  padding: 10px 1rem;
27596
  display: flex;
27597
  flex-direction: column;
27598
}
27599
 
16856 stevensc 27600
.feed-body>img,
27601
.feed-body>video {
27602
  width: 100%;
27603
  object-fit: cover;
27604
  max-height: 60vh;
27605
}
27606
 
16849 stevensc 27607
.feed-actions {
27608
  display: flex;
16851 stevensc 27609
  justify-content: flex-end;
16849 stevensc 27610
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27611
  gap: .5rem;
16849 stevensc 27612
  padding: 5px;
27613
}
27614
 
27615
.feed-actions>button {
27616
  align-items: center;
27617
  border-radius: var(--border-radius);
27618
  cursor: pointer;
27619
  display: inline-flex;
16851 stevensc 27620
  flex-direction: row;
27621
  gap: 0.5rem;
27622
  font-size: 1rem;
16849 stevensc 27623
  padding: 5px;
27624
  position: relative;
27625
}
27626
 
27627
.feed-actions>button:hover {
27628
  background-color: whitesmoke;
27629
}
27630
 
16851 stevensc 27631
.feed-actions>span,
27632
.feed-actions>svg {
27633
  color: var(--subtitle-color);
27634
  font-weight: 600;
27635
  font-size: .9rem;
27636
}
27637
 
16860 stevensc 27638
.comment-form {
27639
  display: flex;
27640
  align-items: center;
27641
  gap: 0.5rem;
27642
  width: 100%;
27643
}
27644
 
27645
.comment-list {
27646
  display: flex;
27647
  flex-direction: column;
27648
  gap: 0.5rem;
16863 stevensc 27649
  margin: 0;
16861 stevensc 27650
  list-style: none;
16863 stevensc 27651
  padding: 0.5rem;
16860 stevensc 27652
  max-height: 300px;
27653
  overflow-y: auto;
27654
  width: 100%;
27655
}
27656
 
27657
.comment-container {
27658
  background-color: var(--chat-send);
27659
  border-radius: var(--border-radius);
27660
  display: flex;
27661
  flex-direction: column;
27662
  flex-grow: 1;
27663
  gap: 0.5rem;
27664
  max-width: 100%;
27665
  overflow: hidden;
27666
  padding: 0.5rem;
27667
  position: relative;
27668
}
27669
 
16849 stevensc 27670
@media (max-width: 768px) {
16857 stevensc 27671
  .feed-section {
16858 stevensc 27672
    width: 100%;
16857 stevensc 27673
  }
27674
 
16867 stevensc 27675
  .theme-container {
16853 stevensc 27676
    border-radius: 0;
16849 stevensc 27677
  }
27678
 
16851 stevensc 27679
  .feed-actions>button {
27680
    font-size: 0.9rem;
27681
    flex-direction: column;
27682
    gap: 0;
16849 stevensc 27683
  }
27684
}
27685
 
16866 stevensc 27686
/* ============= user_profile ============= */
27687
.user_profile {
16873 stevensc 27688
  display: flex;
27689
  flex-direction: column;
16874 stevensc 27690
  gap: 0.5rem;
16878 stevensc 27691
  text-align: center;
16866 stevensc 27692
}
27693
 
16878 stevensc 27694
.social-links {
27695
  display: flex;
27696
  flex-direction: column;
16880 stevensc 27697
}
27698
 
27699
.social-links a {
27700
  display: inline-block;
16878 stevensc 27701
  white-space: nowrap;
27702
  text-overflow: ellipsis;
16880 stevensc 27703
  overflow: hidden;
16881 stevensc 27704
  text-align: start;
16878 stevensc 27705
  width: 100%;
27706
}
27707
 
16866 stevensc 27708
.user-pro-img {
16871 stevensc 27709
  height: 100px;
27710
  width: 100px;
16866 stevensc 27711
  position: relative;
16873 stevensc 27712
  border: 2px solid var(--button-bg);
27713
  margin: -50px auto 0;
16883 stevensc 27714
  border-radius: 50%;
16873 stevensc 27715
  background-color: #f5f5f5;
16866 stevensc 27716
}
27717
 
16871 stevensc 27718
.user-pro-img img {
27719
  width: 100%;
27720
  height: 100%;
27721
  object-fit: cover;
16882 stevensc 27722
  border-radius: 50%;
16871 stevensc 27723
}
27724
 
16882 stevensc 27725
.add-dp {
16866 stevensc 27726
  position: absolute;
16882 stevensc 27727
  top: -6px;
16866 stevensc 27728
  left: 60%;
16883 stevensc 27729
  width: 40px;
27730
  height: 40px;
16882 stevensc 27731
  display: grid;
16883 stevensc 27732
  cursor: pointer;
16882 stevensc 27733
  place-items: center;
27734
  border-radius: 50%;
16883 stevensc 27735
  background-color: var(--button-bg);
16882 stevensc 27736
  transition: all .2s ease-in-out;
16866 stevensc 27737
}
27738
 
27739
.add-dp i {
16882 stevensc 27740
  color: #fff;
16866 stevensc 27741
  font-size: 14px;
27742
}
27743
 
16882 stevensc 27744
.add-dp:hover {
16883 stevensc 27745
  opacity: 0.90;
16882 stevensc 27746
  transform: scale(0.9);
16866 stevensc 27747
}
27748
 
27749
#go-back {
27750
  font-size: 2rem;
27751
}
27752
 
27753
.user_pro_status {
27754
  width: 100%;
27755
  border-bottom: 1px solid #e5e5e5;
27756
}
27757
 
16867 stevensc 27758
.add-pic-box {
16869 stevensc 27759
  width: 50px;
27760
  height: 50px;
27761
  background-color: var(--button-bg);
27762
  border-radius: 50%;
27763
  color: var(--button-text-color) !important;
16867 stevensc 27764
  position: absolute;
16871 stevensc 27765
  top: 1rem;
27766
  right: 1rem;
16869 stevensc 27767
  display: grid;
27768
  place-items: center;
16871 stevensc 27769
  cursor: pointer;
27770
  transition: all .2s ease-in-out;
16867 stevensc 27771
}
27772
 
16871 stevensc 27773
.add-pic-box:hover {
27774
  opacity: 0.80;
27775
}
27776
 
16869 stevensc 27777
.add-pic-box svg,
27778
.add-pic-box i {
16867 stevensc 27779
  font-weight: 600;
16869 stevensc 27780
  color: var(--button-text-color) !important;
16867 stevensc 27781
}
27782
 
16869 stevensc 27783
.cover-sec {
27784
  position: relative;
16871 stevensc 27785
  background: #0008;
27786
  max-height: 400px;
16868 stevensc 27787
}
27788
 
16871 stevensc 27789
.cover-sec img {
27790
  width: 100%;
27791
  height: 100%;
27792
  object-fit: cover;
27793
}
27794
 
16866 stevensc 27795
/* ============= end user_profile ============= */
27796
 
16874 stevensc 27797
/* ============= buttons ============= */
27798
.btn {
27799
  font-size: 0.95rem;
27800
  height: fit-content;
27801
  line-height: 1;
16886 stevensc 27802
  display: inline-flex;
27803
  gap: 5px;
16874 stevensc 27804
}
27805
 
16886 stevensc 27806
.btn i,
27807
.btn svg {
27808
  font-size: 0.95rem;
27809
}
27810
 
16874 stevensc 27811
.btn-primary {
27812
  background-color: var(--button-bg);
27813
  border-radius: var(--border-radius);
27814
  color: var(--button-text-color) !important;
27815
  border: none !important;
27816
}
27817
 
27818
.btn-primary:hover {
27819
  background-color: var(--button-bg-hover);
27820
}
27821
 
16886 stevensc 27822
.btn-secondary,
27823
.btn-edit {
27824
  background: var(--button-bg-secondary) !important;
27825
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27826
  border-radius: var(--border-radius);
27827
  color: var(--button-text-color-secondary) !important;
27828
}
27829
 
16886 stevensc 27830
.btn-secondary:hover,
27831
.btn-edit:hover {
27832
  background-color: var(--button-bg-secondary-hover) !important;
27833
  border-color: var(--border-trasnparent) !important;
16874 stevensc 27834
}
27835
 
16886 stevensc 27836
.btn-tertiary,
27837
.btn-danger {
27838
  background-color: var(--button-bg-tertiary) !important;
27839
  border-radius: var(--border-radius) !important;
27840
  border-color: #f4f4f4 !important;
16874 stevensc 27841
  color: var(--button-text-color-tertiary) !important;
27842
}
27843
 
16886 stevensc 27844
.btn-tertiary:hover,
27845
.btn-danger:hover {
27846
  background: #d4d4d4 !important;
27847
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27848
  color: var(--border-primary) !important;
27849
}
27850
 
27851
.btn-secondary:disabled,
27852
.btn-primary:disabled,
27853
.btn-tertiary:disabled {
27854
  cursor: no-drop;
27855
}
27856
 
27857
/* ============= end buttons ============= */
27858
 
16875 stevensc 27859
/* ============= profile extended ============= */
16876 stevensc 27860
.main-ws-sec {
27861
  display: flex;
27862
  flex-direction: column;
27863
  gap: 0.5rem;
27864
  width: 100%;
27865
}
27866
 
16877 stevensc 27867
.user-profile-ov {
16875 stevensc 27868
  width: 100%;
27869
  background-color: var(--bg-color);
16878 stevensc 27870
  padding: 10px;
16875 stevensc 27871
  border: 1px solid var(--border-primary);
16879 stevensc 27872
  border-radius: var(--border-radius);
16875 stevensc 27873
}
27874
 
16877 stevensc 27875
.user-profile-ov h3 {
16875 stevensc 27876
  color: var(--title-color);
27877
  font-weight: 600;
27878
}
27879
 
16877 stevensc 27880
.user-profile-ov i,
27881
user-profile-ov svg {
16875 stevensc 27882
  color: var(--icons-color);
27883
  font-size: 13px;
27884
}
27885
 
16877 stevensc 27886
.user-profile-ov strong {
16875 stevensc 27887
  font-weight: bold;
27888
}
27889
 
27890
/* ============= end profile extended ============= */
27891
 
16848 stevensc 27892
/*# sourceMappingURL=../maps/demo1/style.css.map */