Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16931 | | 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
  background: transparent;
16874 stevensc 115
  outline: none;
16869 stevensc 116
  border: 0;
117
}
118
 
16868 stevensc 119
img {
120
  max-width: 100%;
121
}
122
 
16887 stevensc 123
*::-webkit-scrollbar {
124
  width: 6px !important;
125
  height: 6px !important;
126
}
127
 
128
*::-webkit-scrollbar-thumb {
129
  background-color: rgba(0, 0, 0, 0.2);
130
}
131
 
132
*::-webkit-scrollbar-track {
133
  background: rgba(255, 255, 255, 0.08);
134
}
135
 
136
*::-webkit-input-placeholder {
137
  color: #ccc;
138
  font-size: 15px;
139
}
140
 
141
h1,
142
h2,
143
h3,
144
h4,
145
h5,
146
h6 {
147
  color: var(--title-color);
148
}
149
 
150
i,
151
svg {
152
  color: var(--icons-color)
153
}
154
 
16888 stevensc 155
button i,
156
button svg {
157
  color: currentColor;
158
}
159
 
16848 stevensc 160
h6,
161
.h6,
162
h5,
163
.h5,
164
h4,
165
.h4,
166
h3,
167
.h3,
168
h2,
169
.h2,
170
h1,
171
.h1 {
16825 efrain 172
  margin-top: 0;
173
  margin-bottom: 0;
174
  font-weight: 500;
175
  line-height: 1.2;
176
}
177
 
16848 stevensc 178
h1,
179
.h1 {
16825 efrain 180
  font-size: calc(1.375rem + 1.5vw);
181
}
16848 stevensc 182
 
16825 efrain 183
@media (min-width: 1200px) {
16848 stevensc 184
 
185
  h1,
186
  .h1 {
16825 efrain 187
    font-size: 2.5rem;
188
  }
189
}
190
 
16848 stevensc 191
h2,
192
.h2 {
16825 efrain 193
  font-size: calc(1.325rem + 0.9vw);
194
}
16848 stevensc 195
 
16825 efrain 196
@media (min-width: 1200px) {
16848 stevensc 197
 
198
  h2,
199
  .h2 {
16825 efrain 200
    font-size: 2rem;
201
  }
202
}
203
 
16848 stevensc 204
h3,
205
.h3 {
16825 efrain 206
  font-size: calc(1.275rem + 0.3vw);
207
}
16848 stevensc 208
 
16825 efrain 209
@media (min-width: 1200px) {
16848 stevensc 210
 
211
  h3,
212
  .h3 {
16825 efrain 213
    font-size: 1.5rem;
214
  }
215
}
216
 
16848 stevensc 217
h4,
218
.h4 {
16825 efrain 219
  font-size: 1.25rem;
220
}
221
 
16848 stevensc 222
h5,
223
.h5 {
16825 efrain 224
  font-size: 1rem;
225
}
226
 
16848 stevensc 227
h6,
228
.h6 {
16825 efrain 229
  font-size: 0.875rem;
230
}
231
 
232
p {
233
  margin-top: 0;
234
  margin-bottom: 0;
235
}
236
 
237
abbr[title] {
238
  text-decoration: underline dotted;
239
  cursor: help;
240
  text-decoration-skip-ink: none;
241
}
242
 
243
address {
244
  margin-bottom: 1rem;
245
  font-style: normal;
246
  line-height: inherit;
247
}
248
 
249
ol,
250
ul {
16874 stevensc 251
  list-style: none;
16875 stevensc 252
  padding: 0;
16825 efrain 253
}
254
 
255
ol,
256
ul,
257
dl {
258
  margin-top: 0;
16874 stevensc 259
  margin-bottom: 0;
16825 efrain 260
}
261
 
262
ol ol,
263
ul ul,
264
ol ul,
265
ul ol {
266
  margin-bottom: 0;
267
}
268
 
269
dt {
270
  font-weight: 500;
271
}
272
 
273
dd {
274
  margin-bottom: 0.5rem;
275
  margin-left: 0;
276
}
277
 
278
blockquote {
279
  margin: 0 0 1rem;
280
}
281
 
282
b,
283
strong {
284
  font-weight: 700;
285
}
286
 
16848 stevensc 287
small,
288
.small {
16825 efrain 289
  font-size: 0.875em;
290
}
291
 
16848 stevensc 292
mark,
293
.mark {
16825 efrain 294
  padding: 0.1875em;
295
  background-color: var(--bs-highlight-bg);
296
}
297
 
298
sub,
299
sup {
300
  position: relative;
301
  font-size: 0.75em;
302
  line-height: 0;
303
  vertical-align: baseline;
304
}
305
 
306
sub {
307
  bottom: -0.25em;
308
}
309
 
310
sup {
311
  top: -0.5em;
312
}
313
 
314
a {
315
  color: var(--bs-link-color);
316
  text-decoration: none;
317
}
16848 stevensc 318
 
16825 efrain 319
a:hover {
320
  color: var(--bs-link-hover-color);
321
}
322
 
16848 stevensc 323
a:not([href]):not([class]),
324
a:not([href]):not([class]):hover {
16825 efrain 325
  color: inherit;
326
  text-decoration: none;
327
}
328
 
329
pre,
330
code,
331
kbd,
332
samp {
333
  font-family: var(--bs-font-monospace);
334
  font-size: 1em;
335
}
336
 
337
pre {
338
  display: block;
339
  margin-top: 0;
340
  margin-bottom: 1rem;
341
  overflow: auto;
342
  font-size: 0.875em;
343
}
16848 stevensc 344
 
16825 efrain 345
pre code {
346
  font-size: inherit;
347
  color: inherit;
348
  word-break: normal;
349
}
350
 
351
code {
352
  font-size: 0.875em;
353
  color: var(--bs-code-color);
354
  word-wrap: break-word;
355
}
16848 stevensc 356
 
357
a>code {
16825 efrain 358
  color: inherit;
359
}
360
 
361
kbd {
362
  padding: 0.1875rem 0.375rem;
363
  font-size: 0.875em;
364
  color: var(--bs-body-bg);
365
  background-color: var(--bs-body-color);
366
  border-radius: 0.25rem;
367
}
16848 stevensc 368
 
16825 efrain 369
kbd kbd {
370
  padding: 0;
371
  font-size: 1em;
372
}
373
 
374
figure {
375
  margin: 0 0 1rem;
376
}
377
 
378
img,
379
svg {
380
  vertical-align: middle;
381
}
382
 
383
table {
384
  caption-side: bottom;
385
  border-collapse: collapse;
386
}
387
 
388
caption {
389
  padding-top: 0.85rem;
390
  padding-bottom: 0.85rem;
391
  color: #7987a1;
392
  text-align: left;
393
}
394
 
395
th {
396
  text-align: inherit;
397
  text-align: -webkit-match-parent;
398
}
399
 
400
thead,
401
tbody,
402
tfoot,
403
tr,
404
td,
405
th {
406
  border-color: inherit;
407
  border-style: solid;
408
  border-width: 0;
409
}
410
 
411
label {
412
  display: inline-block;
413
}
414
 
415
button {
416
  border-radius: 0;
417
}
418
 
419
button:focus:not(:focus-visible) {
420
  outline: 0;
421
}
422
 
423
input,
424
button,
425
select,
426
optgroup,
427
textarea {
428
  margin: 0;
429
  font-family: inherit;
430
  font-size: inherit;
431
  line-height: inherit;
432
}
433
 
434
button,
435
select {
436
  text-transform: none;
437
}
438
 
439
[role=button] {
440
  cursor: pointer;
441
}
442
 
443
select {
444
  word-wrap: normal;
445
}
16848 stevensc 446
 
16825 efrain 447
select:disabled {
448
  opacity: 1;
449
}
450
 
451
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
452
  display: none !important;
453
}
454
 
455
button,
456
[type=button],
457
[type=reset],
458
[type=submit] {
16848 stevensc 459
  appearance: button;
16825 efrain 460
}
16848 stevensc 461
 
16825 efrain 462
button:not(:disabled),
463
[type=button]:not(:disabled),
464
[type=reset]:not(:disabled),
465
[type=submit]:not(:disabled) {
466
  cursor: pointer;
467
}
468
 
469
::-moz-focus-inner {
470
  padding: 0;
471
  border-style: none;
472
}
473
 
474
textarea {
475
  resize: vertical;
476
}
477
 
478
fieldset {
479
  min-width: 0;
480
  padding: 0;
481
  margin: 0;
482
  border: 0;
483
}
484
 
485
legend {
486
  float: left;
487
  width: 100%;
488
  padding: 0;
489
  margin-bottom: 0.5rem;
490
  font-size: calc(1.275rem + 0.3vw);
491
  line-height: inherit;
492
}
16848 stevensc 493
 
16825 efrain 494
@media (min-width: 1200px) {
495
  legend {
496
    font-size: 1.5rem;
497
  }
498
}
16848 stevensc 499
 
500
legend+* {
16825 efrain 501
  clear: left;
502
}
503
 
504
::-webkit-datetime-edit-fields-wrapper,
505
::-webkit-datetime-edit-text,
506
::-webkit-datetime-edit-minute,
507
::-webkit-datetime-edit-hour-field,
508
::-webkit-datetime-edit-day-field,
509
::-webkit-datetime-edit-month-field,
510
::-webkit-datetime-edit-year-field {
511
  padding: 0;
512
}
513
 
514
::-webkit-inner-spin-button {
515
  height: auto;
516
}
517
 
518
[type=search] {
519
  outline-offset: -2px;
16848 stevensc 520
  appearance: textfield;
16825 efrain 521
}
522
 
523
/* rtl:raw:
524
[type="tel"],
525
[type="url"],
526
[type="email"],
527
[type="number"] {
528
  direction: ltr;
529
}
530
*/
531
::-webkit-search-decoration {
532
  -webkit-appearance: none;
533
}
534
 
535
::-webkit-color-swatch-wrapper {
536
  padding: 0;
537
}
538
 
539
::file-selector-button {
540
  font: inherit;
16848 stevensc 541
  appearance: button;
16825 efrain 542
}
543
 
544
output {
545
  display: inline-block;
546
}
547
 
548
iframe {
549
  border: 0;
550
}
551
 
552
summary {
553
  display: list-item;
554
  cursor: pointer;
555
}
556
 
557
progress {
558
  vertical-align: baseline;
559
}
560
 
561
[hidden] {
562
  display: none !important;
563
}
564
 
565
.lead {
566
  font-size: 1.09375rem;
567
  font-weight: 300;
568
}
569
 
570
.display-1 {
571
  font-size: calc(1.625rem + 4.5vw);
572
  font-weight: 300;
573
  line-height: 1.2;
574
}
16848 stevensc 575
 
16825 efrain 576
@media (min-width: 1200px) {
577
  .display-1 {
578
    font-size: 5rem;
579
  }
580
}
581
 
582
.display-2 {
583
  font-size: calc(1.575rem + 3.9vw);
584
  font-weight: 300;
585
  line-height: 1.2;
586
}
16848 stevensc 587
 
16825 efrain 588
@media (min-width: 1200px) {
589
  .display-2 {
590
    font-size: 4.5rem;
591
  }
592
}
593
 
594
.display-3 {
595
  font-size: calc(1.525rem + 3.3vw);
596
  font-weight: 300;
597
  line-height: 1.2;
598
}
16848 stevensc 599
 
16825 efrain 600
@media (min-width: 1200px) {
601
  .display-3 {
602
    font-size: 4rem;
603
  }
604
}
605
 
606
.display-4 {
607
  font-size: calc(1.475rem + 2.7vw);
608
  font-weight: 300;
609
  line-height: 1.2;
610
}
16848 stevensc 611
 
16825 efrain 612
@media (min-width: 1200px) {
613
  .display-4 {
614
    font-size: 3.5rem;
615
  }
616
}
617
 
618
.display-5 {
619
  font-size: calc(1.425rem + 2.1vw);
620
  font-weight: 300;
621
  line-height: 1.2;
622
}
16848 stevensc 623
 
16825 efrain 624
@media (min-width: 1200px) {
625
  .display-5 {
626
    font-size: 3rem;
627
  }
628
}
629
 
630
.display-6 {
631
  font-size: calc(1.375rem + 1.5vw);
632
  font-weight: 300;
633
  line-height: 1.2;
634
}
16848 stevensc 635
 
16825 efrain 636
@media (min-width: 1200px) {
637
  .display-6 {
638
    font-size: 2.5rem;
639
  }
640
}
641
 
642
.list-unstyled {
643
  padding-left: 0;
644
  list-style: none;
645
}
646
 
647
.list-inline {
648
  padding-left: 0;
649
  list-style: none;
650
}
651
 
652
.list-inline-item {
653
  display: inline-block;
654
}
16848 stevensc 655
 
16825 efrain 656
.list-inline-item:not(:last-child) {
657
  margin-right: 0.5rem;
658
}
659
 
660
.initialism {
661
  font-size: 0.875em;
662
  text-transform: uppercase;
663
}
664
 
665
.blockquote {
666
  margin-bottom: 1rem;
667
  font-size: 1.09375rem;
668
}
16848 stevensc 669
 
670
.blockquote> :last-child {
16825 efrain 671
  margin-bottom: 0;
672
}
673
 
674
.blockquote-footer {
675
  margin-top: -1rem;
676
  margin-bottom: 1rem;
677
  font-size: 0.875em;
678
  color: #7987a1;
679
}
16848 stevensc 680
 
16825 efrain 681
.blockquote-footer::before {
682
  content: "— ";
683
}
684
 
685
.img-fluid {
686
  max-width: 100%;
687
  height: auto;
688
}
689
 
690
.img-thumbnail {
691
  padding: 0.25rem;
692
  background-color: #f9fafb;
693
  border: 1px solid var(--bs-border-color);
694
  border-radius: 0.25rem;
695
  max-width: 100%;
696
  height: auto;
697
}
698
 
699
.figure {
700
  display: inline-block;
701
}
702
 
703
.figure-img {
704
  margin-bottom: 0.5rem;
705
  line-height: 1;
706
}
707
 
708
.figure-caption {
709
  font-size: 0.875em;
710
  color: #7987a1;
711
}
712
 
713
.container,
714
.container-fluid,
715
.container-xxl,
716
.container-xl,
717
.container-lg,
718
.container-md,
719
.container-sm {
720
  --bs-gutter-x: 1.5rem;
721
  --bs-gutter-y: 0;
722
  width: 100%;
723
  padding-right: calc(var(--bs-gutter-x) * 0.5);
724
  padding-left: calc(var(--bs-gutter-x) * 0.5);
725
  margin-right: auto;
726
  margin-left: auto;
727
}
728
 
729
@media (min-width: 576px) {
16848 stevensc 730
 
731
  .container-sm,
732
  .container {
16825 efrain 733
    max-width: 540px;
734
  }
735
}
16848 stevensc 736
 
16825 efrain 737
@media (min-width: 768px) {
16848 stevensc 738
 
739
  .container-md,
740
  .container-sm,
741
  .container {
16825 efrain 742
    max-width: 720px;
743
  }
744
}
16848 stevensc 745
 
16825 efrain 746
@media (min-width: 992px) {
16848 stevensc 747
 
748
  .container-lg,
749
  .container-md,
750
  .container-sm,
751
  .container {
16825 efrain 752
    max-width: 960px;
753
  }
754
}
16848 stevensc 755
 
16825 efrain 756
@media (min-width: 1200px) {
16848 stevensc 757
 
758
  .container-xl,
759
  .container-lg,
760
  .container-md,
761
  .container-sm,
762
  .container {
16825 efrain 763
    max-width: 1140px;
764
  }
765
}
16848 stevensc 766
 
16825 efrain 767
@media (min-width: 1400px) {
16848 stevensc 768
 
769
  .container-xxl,
770
  .container-xl,
771
  .container-lg,
772
  .container-md,
773
  .container-sm,
774
  .container {
16825 efrain 775
    max-width: 1320px;
776
  }
777
}
16848 stevensc 778
 
16825 efrain 779
.row {
780
  --bs-gutter-x: 1.5rem;
781
  --bs-gutter-y: 0;
782
  display: flex;
783
  flex-wrap: wrap;
784
  margin-top: calc(-1 * var(--bs-gutter-y));
785
  margin-right: calc(-0.5 * var(--bs-gutter-x));
786
  margin-left: calc(-0.5 * var(--bs-gutter-x));
787
}
16848 stevensc 788
 
789
.row>* {
16825 efrain 790
  flex-shrink: 0;
791
  width: 100%;
792
  max-width: 100%;
793
  padding-right: calc(var(--bs-gutter-x) * 0.5);
794
  padding-left: calc(var(--bs-gutter-x) * 0.5);
795
  margin-top: var(--bs-gutter-y);
796
}
797
 
798
.col {
799
  flex: 1 0 0%;
800
}
801
 
16848 stevensc 802
.row-cols-auto>* {
16825 efrain 803
  flex: 0 0 auto;
804
  width: auto;
805
}
806
 
16848 stevensc 807
.row-cols-1>* {
16825 efrain 808
  flex: 0 0 auto;
809
  width: 100%;
810
}
811
 
16848 stevensc 812
.row-cols-2>* {
16825 efrain 813
  flex: 0 0 auto;
814
  width: 50%;
815
}
816
 
16848 stevensc 817
.row-cols-3>* {
16825 efrain 818
  flex: 0 0 auto;
819
  width: 33.3333333333%;
820
}
821
 
16848 stevensc 822
.row-cols-4>* {
16825 efrain 823
  flex: 0 0 auto;
824
  width: 25%;
825
}
826
 
16848 stevensc 827
.row-cols-5>* {
16825 efrain 828
  flex: 0 0 auto;
829
  width: 20%;
830
}
831
 
16848 stevensc 832
.row-cols-6>* {
16825 efrain 833
  flex: 0 0 auto;
834
  width: 16.6666666667%;
835
}
836
 
837
.col-auto {
838
  flex: 0 0 auto;
839
  width: auto;
840
}
841
 
842
.col-1 {
843
  flex: 0 0 auto;
844
  width: 8.33333333%;
845
}
846
 
847
.col-2 {
848
  flex: 0 0 auto;
849
  width: 16.66666667%;
850
}
851
 
852
.col-3 {
853
  flex: 0 0 auto;
854
  width: 25%;
855
}
856
 
857
.col-4 {
858
  flex: 0 0 auto;
859
  width: 33.33333333%;
860
}
861
 
862
.col-5 {
863
  flex: 0 0 auto;
864
  width: 41.66666667%;
865
}
866
 
867
.col-6 {
868
  flex: 0 0 auto;
869
  width: 50%;
870
}
871
 
872
.col-7 {
873
  flex: 0 0 auto;
874
  width: 58.33333333%;
875
}
876
 
877
.col-8 {
878
  flex: 0 0 auto;
879
  width: 66.66666667%;
880
}
881
 
882
.col-9 {
883
  flex: 0 0 auto;
884
  width: 75%;
885
}
886
 
887
.col-10 {
888
  flex: 0 0 auto;
889
  width: 83.33333333%;
890
}
891
 
892
.col-11 {
893
  flex: 0 0 auto;
894
  width: 91.66666667%;
895
}
896
 
897
.col-12 {
898
  flex: 0 0 auto;
899
  width: 100%;
900
}
901
 
902
.offset-1 {
903
  margin-left: 8.33333333%;
904
}
905
 
906
.offset-2 {
907
  margin-left: 16.66666667%;
908
}
909
 
910
.offset-3 {
911
  margin-left: 25%;
912
}
913
 
914
.offset-4 {
915
  margin-left: 33.33333333%;
916
}
917
 
918
.offset-5 {
919
  margin-left: 41.66666667%;
920
}
921
 
922
.offset-6 {
923
  margin-left: 50%;
924
}
925
 
926
.offset-7 {
927
  margin-left: 58.33333333%;
928
}
929
 
930
.offset-8 {
931
  margin-left: 66.66666667%;
932
}
933
 
934
.offset-9 {
935
  margin-left: 75%;
936
}
937
 
938
.offset-10 {
939
  margin-left: 83.33333333%;
940
}
941
 
942
.offset-11 {
943
  margin-left: 91.66666667%;
944
}
945
 
946
.g-0,
947
.gx-0 {
948
  --bs-gutter-x: 0;
949
}
950
 
951
.g-0,
952
.gy-0 {
953
  --bs-gutter-y: 0;
954
}
955
 
956
.g-1,
957
.gx-1 {
958
  --bs-gutter-x: 0.25rem;
959
}
960
 
961
.g-1,
962
.gy-1 {
963
  --bs-gutter-y: 0.25rem;
964
}
965
 
966
.g-2,
967
.gx-2 {
968
  --bs-gutter-x: 0.5rem;
969
}
970
 
971
.g-2,
972
.gy-2 {
973
  --bs-gutter-y: 0.5rem;
974
}
975
 
976
.g-3,
977
.gx-3 {
978
  --bs-gutter-x: 1rem;
979
}
980
 
981
.g-3,
982
.gy-3 {
983
  --bs-gutter-y: 1rem;
984
}
985
 
986
.g-4,
987
.gx-4 {
988
  --bs-gutter-x: 1.5rem;
989
}
990
 
991
.g-4,
992
.gy-4 {
993
  --bs-gutter-y: 1.5rem;
994
}
995
 
996
.g-5,
997
.gx-5 {
998
  --bs-gutter-x: 3rem;
999
}
1000
 
1001
.g-5,
1002
.gy-5 {
1003
  --bs-gutter-y: 3rem;
1004
}
1005
 
1006
.g-6,
1007
.gx-6 {
1008
  --bs-gutter-x: 4.5rem;
1009
}
1010
 
1011
.g-6,
1012
.gy-6 {
1013
  --bs-gutter-y: 4.5rem;
1014
}
1015
 
1016
.g-7,
1017
.gx-7 {
1018
  --bs-gutter-x: 6rem;
1019
}
1020
 
1021
.g-7,
1022
.gy-7 {
1023
  --bs-gutter-y: 6rem;
1024
}
1025
 
1026
@media (min-width: 576px) {
1027
  .col-sm {
1028
    flex: 1 0 0%;
1029
  }
16848 stevensc 1030
 
1031
  .row-cols-sm-auto>* {
16825 efrain 1032
    flex: 0 0 auto;
1033
    width: auto;
1034
  }
16848 stevensc 1035
 
1036
  .row-cols-sm-1>* {
16825 efrain 1037
    flex: 0 0 auto;
1038
    width: 100%;
1039
  }
16848 stevensc 1040
 
1041
  .row-cols-sm-2>* {
16825 efrain 1042
    flex: 0 0 auto;
1043
    width: 50%;
1044
  }
16848 stevensc 1045
 
1046
  .row-cols-sm-3>* {
16825 efrain 1047
    flex: 0 0 auto;
1048
    width: 33.3333333333%;
1049
  }
16848 stevensc 1050
 
1051
  .row-cols-sm-4>* {
16825 efrain 1052
    flex: 0 0 auto;
1053
    width: 25%;
1054
  }
16848 stevensc 1055
 
1056
  .row-cols-sm-5>* {
16825 efrain 1057
    flex: 0 0 auto;
1058
    width: 20%;
1059
  }
16848 stevensc 1060
 
1061
  .row-cols-sm-6>* {
16825 efrain 1062
    flex: 0 0 auto;
1063
    width: 16.6666666667%;
1064
  }
16848 stevensc 1065
 
16825 efrain 1066
  .col-sm-auto {
1067
    flex: 0 0 auto;
1068
    width: auto;
1069
  }
16848 stevensc 1070
 
16825 efrain 1071
  .col-sm-1 {
1072
    flex: 0 0 auto;
1073
    width: 8.33333333%;
1074
  }
16848 stevensc 1075
 
16825 efrain 1076
  .col-sm-2 {
1077
    flex: 0 0 auto;
1078
    width: 16.66666667%;
1079
  }
16848 stevensc 1080
 
16825 efrain 1081
  .col-sm-3 {
1082
    flex: 0 0 auto;
1083
    width: 25%;
1084
  }
16848 stevensc 1085
 
16825 efrain 1086
  .col-sm-4 {
1087
    flex: 0 0 auto;
1088
    width: 33.33333333%;
1089
  }
16848 stevensc 1090
 
16825 efrain 1091
  .col-sm-5 {
1092
    flex: 0 0 auto;
1093
    width: 41.66666667%;
1094
  }
16848 stevensc 1095
 
16825 efrain 1096
  .col-sm-6 {
1097
    flex: 0 0 auto;
1098
    width: 50%;
1099
  }
16848 stevensc 1100
 
16825 efrain 1101
  .col-sm-7 {
1102
    flex: 0 0 auto;
1103
    width: 58.33333333%;
1104
  }
16848 stevensc 1105
 
16825 efrain 1106
  .col-sm-8 {
1107
    flex: 0 0 auto;
1108
    width: 66.66666667%;
1109
  }
16848 stevensc 1110
 
16825 efrain 1111
  .col-sm-9 {
1112
    flex: 0 0 auto;
1113
    width: 75%;
1114
  }
16848 stevensc 1115
 
16825 efrain 1116
  .col-sm-10 {
1117
    flex: 0 0 auto;
1118
    width: 83.33333333%;
1119
  }
16848 stevensc 1120
 
16825 efrain 1121
  .col-sm-11 {
1122
    flex: 0 0 auto;
1123
    width: 91.66666667%;
1124
  }
16848 stevensc 1125
 
16825 efrain 1126
  .col-sm-12 {
1127
    flex: 0 0 auto;
1128
    width: 100%;
1129
  }
16848 stevensc 1130
 
16825 efrain 1131
  .offset-sm-0 {
1132
    margin-left: 0;
1133
  }
16848 stevensc 1134
 
16825 efrain 1135
  .offset-sm-1 {
1136
    margin-left: 8.33333333%;
1137
  }
16848 stevensc 1138
 
16825 efrain 1139
  .offset-sm-2 {
1140
    margin-left: 16.66666667%;
1141
  }
16848 stevensc 1142
 
16825 efrain 1143
  .offset-sm-3 {
1144
    margin-left: 25%;
1145
  }
16848 stevensc 1146
 
16825 efrain 1147
  .offset-sm-4 {
1148
    margin-left: 33.33333333%;
1149
  }
16848 stevensc 1150
 
16825 efrain 1151
  .offset-sm-5 {
1152
    margin-left: 41.66666667%;
1153
  }
16848 stevensc 1154
 
16825 efrain 1155
  .offset-sm-6 {
1156
    margin-left: 50%;
1157
  }
16848 stevensc 1158
 
16825 efrain 1159
  .offset-sm-7 {
1160
    margin-left: 58.33333333%;
1161
  }
16848 stevensc 1162
 
16825 efrain 1163
  .offset-sm-8 {
1164
    margin-left: 66.66666667%;
1165
  }
16848 stevensc 1166
 
16825 efrain 1167
  .offset-sm-9 {
1168
    margin-left: 75%;
1169
  }
16848 stevensc 1170
 
16825 efrain 1171
  .offset-sm-10 {
1172
    margin-left: 83.33333333%;
1173
  }
16848 stevensc 1174
 
16825 efrain 1175
  .offset-sm-11 {
1176
    margin-left: 91.66666667%;
1177
  }
16848 stevensc 1178
 
16825 efrain 1179
  .g-sm-0,
1180
  .gx-sm-0 {
1181
    --bs-gutter-x: 0;
1182
  }
16848 stevensc 1183
 
16825 efrain 1184
  .g-sm-0,
1185
  .gy-sm-0 {
1186
    --bs-gutter-y: 0;
1187
  }
16848 stevensc 1188
 
16825 efrain 1189
  .g-sm-1,
1190
  .gx-sm-1 {
1191
    --bs-gutter-x: 0.25rem;
1192
  }
16848 stevensc 1193
 
16825 efrain 1194
  .g-sm-1,
1195
  .gy-sm-1 {
1196
    --bs-gutter-y: 0.25rem;
1197
  }
16848 stevensc 1198
 
16825 efrain 1199
  .g-sm-2,
1200
  .gx-sm-2 {
1201
    --bs-gutter-x: 0.5rem;
1202
  }
16848 stevensc 1203
 
16825 efrain 1204
  .g-sm-2,
1205
  .gy-sm-2 {
1206
    --bs-gutter-y: 0.5rem;
1207
  }
16848 stevensc 1208
 
16825 efrain 1209
  .g-sm-3,
1210
  .gx-sm-3 {
1211
    --bs-gutter-x: 1rem;
1212
  }
16848 stevensc 1213
 
16825 efrain 1214
  .g-sm-3,
1215
  .gy-sm-3 {
1216
    --bs-gutter-y: 1rem;
1217
  }
16848 stevensc 1218
 
16825 efrain 1219
  .g-sm-4,
1220
  .gx-sm-4 {
1221
    --bs-gutter-x: 1.5rem;
1222
  }
16848 stevensc 1223
 
16825 efrain 1224
  .g-sm-4,
1225
  .gy-sm-4 {
1226
    --bs-gutter-y: 1.5rem;
1227
  }
16848 stevensc 1228
 
16825 efrain 1229
  .g-sm-5,
1230
  .gx-sm-5 {
1231
    --bs-gutter-x: 3rem;
1232
  }
16848 stevensc 1233
 
16825 efrain 1234
  .g-sm-5,
1235
  .gy-sm-5 {
1236
    --bs-gutter-y: 3rem;
1237
  }
16848 stevensc 1238
 
16825 efrain 1239
  .g-sm-6,
1240
  .gx-sm-6 {
1241
    --bs-gutter-x: 4.5rem;
1242
  }
16848 stevensc 1243
 
16825 efrain 1244
  .g-sm-6,
1245
  .gy-sm-6 {
1246
    --bs-gutter-y: 4.5rem;
1247
  }
16848 stevensc 1248
 
16825 efrain 1249
  .g-sm-7,
1250
  .gx-sm-7 {
1251
    --bs-gutter-x: 6rem;
1252
  }
16848 stevensc 1253
 
16825 efrain 1254
  .g-sm-7,
1255
  .gy-sm-7 {
1256
    --bs-gutter-y: 6rem;
1257
  }
1258
}
16848 stevensc 1259
 
16825 efrain 1260
@media (min-width: 768px) {
1261
  .col-md {
1262
    flex: 1 0 0%;
1263
  }
16848 stevensc 1264
 
1265
  .row-cols-md-auto>* {
16825 efrain 1266
    flex: 0 0 auto;
1267
    width: auto;
1268
  }
16848 stevensc 1269
 
1270
  .row-cols-md-1>* {
16825 efrain 1271
    flex: 0 0 auto;
1272
    width: 100%;
1273
  }
16848 stevensc 1274
 
1275
  .row-cols-md-2>* {
16825 efrain 1276
    flex: 0 0 auto;
1277
    width: 50%;
1278
  }
16848 stevensc 1279
 
1280
  .row-cols-md-3>* {
16825 efrain 1281
    flex: 0 0 auto;
1282
    width: 33.3333333333%;
1283
  }
16848 stevensc 1284
 
1285
  .row-cols-md-4>* {
16825 efrain 1286
    flex: 0 0 auto;
1287
    width: 25%;
1288
  }
16848 stevensc 1289
 
1290
  .row-cols-md-5>* {
16825 efrain 1291
    flex: 0 0 auto;
1292
    width: 20%;
1293
  }
16848 stevensc 1294
 
1295
  .row-cols-md-6>* {
16825 efrain 1296
    flex: 0 0 auto;
1297
    width: 16.6666666667%;
1298
  }
16848 stevensc 1299
 
16825 efrain 1300
  .col-md-auto {
1301
    flex: 0 0 auto;
1302
    width: auto;
1303
  }
16848 stevensc 1304
 
16825 efrain 1305
  .col-md-1 {
1306
    flex: 0 0 auto;
1307
    width: 8.33333333%;
1308
  }
16848 stevensc 1309
 
16825 efrain 1310
  .col-md-2 {
1311
    flex: 0 0 auto;
1312
    width: 16.66666667%;
1313
  }
16848 stevensc 1314
 
16825 efrain 1315
  .col-md-3 {
1316
    flex: 0 0 auto;
1317
    width: 25%;
1318
  }
16848 stevensc 1319
 
16825 efrain 1320
  .col-md-4 {
1321
    flex: 0 0 auto;
1322
    width: 33.33333333%;
1323
  }
16848 stevensc 1324
 
16825 efrain 1325
  .col-md-5 {
1326
    flex: 0 0 auto;
1327
    width: 41.66666667%;
1328
  }
16848 stevensc 1329
 
16825 efrain 1330
  .col-md-6 {
1331
    flex: 0 0 auto;
1332
    width: 50%;
1333
  }
16848 stevensc 1334
 
16825 efrain 1335
  .col-md-7 {
1336
    flex: 0 0 auto;
1337
    width: 58.33333333%;
1338
  }
16848 stevensc 1339
 
16825 efrain 1340
  .col-md-8 {
1341
    flex: 0 0 auto;
1342
    width: 66.66666667%;
1343
  }
16848 stevensc 1344
 
16825 efrain 1345
  .col-md-9 {
1346
    flex: 0 0 auto;
1347
    width: 75%;
1348
  }
16848 stevensc 1349
 
16825 efrain 1350
  .col-md-10 {
1351
    flex: 0 0 auto;
1352
    width: 83.33333333%;
1353
  }
16848 stevensc 1354
 
16825 efrain 1355
  .col-md-11 {
1356
    flex: 0 0 auto;
1357
    width: 91.66666667%;
1358
  }
16848 stevensc 1359
 
16825 efrain 1360
  .col-md-12 {
1361
    flex: 0 0 auto;
1362
    width: 100%;
1363
  }
16848 stevensc 1364
 
16825 efrain 1365
  .offset-md-0 {
1366
    margin-left: 0;
1367
  }
16848 stevensc 1368
 
16825 efrain 1369
  .offset-md-1 {
1370
    margin-left: 8.33333333%;
1371
  }
16848 stevensc 1372
 
16825 efrain 1373
  .offset-md-2 {
1374
    margin-left: 16.66666667%;
1375
  }
16848 stevensc 1376
 
16825 efrain 1377
  .offset-md-3 {
1378
    margin-left: 25%;
1379
  }
16848 stevensc 1380
 
16825 efrain 1381
  .offset-md-4 {
1382
    margin-left: 33.33333333%;
1383
  }
16848 stevensc 1384
 
16825 efrain 1385
  .offset-md-5 {
1386
    margin-left: 41.66666667%;
1387
  }
16848 stevensc 1388
 
16825 efrain 1389
  .offset-md-6 {
1390
    margin-left: 50%;
1391
  }
16848 stevensc 1392
 
16825 efrain 1393
  .offset-md-7 {
1394
    margin-left: 58.33333333%;
1395
  }
16848 stevensc 1396
 
16825 efrain 1397
  .offset-md-8 {
1398
    margin-left: 66.66666667%;
1399
  }
16848 stevensc 1400
 
16825 efrain 1401
  .offset-md-9 {
1402
    margin-left: 75%;
1403
  }
16848 stevensc 1404
 
16825 efrain 1405
  .offset-md-10 {
1406
    margin-left: 83.33333333%;
1407
  }
16848 stevensc 1408
 
16825 efrain 1409
  .offset-md-11 {
1410
    margin-left: 91.66666667%;
1411
  }
16848 stevensc 1412
 
16825 efrain 1413
  .g-md-0,
1414
  .gx-md-0 {
1415
    --bs-gutter-x: 0;
1416
  }
16848 stevensc 1417
 
16825 efrain 1418
  .g-md-0,
1419
  .gy-md-0 {
1420
    --bs-gutter-y: 0;
1421
  }
16848 stevensc 1422
 
16825 efrain 1423
  .g-md-1,
1424
  .gx-md-1 {
1425
    --bs-gutter-x: 0.25rem;
1426
  }
16848 stevensc 1427
 
16825 efrain 1428
  .g-md-1,
1429
  .gy-md-1 {
1430
    --bs-gutter-y: 0.25rem;
1431
  }
16848 stevensc 1432
 
16825 efrain 1433
  .g-md-2,
1434
  .gx-md-2 {
1435
    --bs-gutter-x: 0.5rem;
1436
  }
16848 stevensc 1437
 
16825 efrain 1438
  .g-md-2,
1439
  .gy-md-2 {
1440
    --bs-gutter-y: 0.5rem;
1441
  }
16848 stevensc 1442
 
16825 efrain 1443
  .g-md-3,
1444
  .gx-md-3 {
1445
    --bs-gutter-x: 1rem;
1446
  }
16848 stevensc 1447
 
16825 efrain 1448
  .g-md-3,
1449
  .gy-md-3 {
1450
    --bs-gutter-y: 1rem;
1451
  }
16848 stevensc 1452
 
16825 efrain 1453
  .g-md-4,
1454
  .gx-md-4 {
1455
    --bs-gutter-x: 1.5rem;
1456
  }
16848 stevensc 1457
 
16825 efrain 1458
  .g-md-4,
1459
  .gy-md-4 {
1460
    --bs-gutter-y: 1.5rem;
1461
  }
16848 stevensc 1462
 
16825 efrain 1463
  .g-md-5,
1464
  .gx-md-5 {
1465
    --bs-gutter-x: 3rem;
1466
  }
16848 stevensc 1467
 
16825 efrain 1468
  .g-md-5,
1469
  .gy-md-5 {
1470
    --bs-gutter-y: 3rem;
1471
  }
16848 stevensc 1472
 
16825 efrain 1473
  .g-md-6,
1474
  .gx-md-6 {
1475
    --bs-gutter-x: 4.5rem;
1476
  }
16848 stevensc 1477
 
16825 efrain 1478
  .g-md-6,
1479
  .gy-md-6 {
1480
    --bs-gutter-y: 4.5rem;
1481
  }
16848 stevensc 1482
 
16825 efrain 1483
  .g-md-7,
1484
  .gx-md-7 {
1485
    --bs-gutter-x: 6rem;
1486
  }
16848 stevensc 1487
 
16825 efrain 1488
  .g-md-7,
1489
  .gy-md-7 {
1490
    --bs-gutter-y: 6rem;
1491
  }
1492
}
16848 stevensc 1493
 
16825 efrain 1494
@media (min-width: 992px) {
1495
  .col-lg {
1496
    flex: 1 0 0%;
1497
  }
16848 stevensc 1498
 
1499
  .row-cols-lg-auto>* {
16825 efrain 1500
    flex: 0 0 auto;
1501
    width: auto;
1502
  }
16848 stevensc 1503
 
1504
  .row-cols-lg-1>* {
16825 efrain 1505
    flex: 0 0 auto;
1506
    width: 100%;
1507
  }
16848 stevensc 1508
 
1509
  .row-cols-lg-2>* {
16825 efrain 1510
    flex: 0 0 auto;
1511
    width: 50%;
1512
  }
16848 stevensc 1513
 
1514
  .row-cols-lg-3>* {
16825 efrain 1515
    flex: 0 0 auto;
1516
    width: 33.3333333333%;
1517
  }
16848 stevensc 1518
 
1519
  .row-cols-lg-4>* {
16825 efrain 1520
    flex: 0 0 auto;
1521
    width: 25%;
1522
  }
16848 stevensc 1523
 
1524
  .row-cols-lg-5>* {
16825 efrain 1525
    flex: 0 0 auto;
1526
    width: 20%;
1527
  }
16848 stevensc 1528
 
1529
  .row-cols-lg-6>* {
16825 efrain 1530
    flex: 0 0 auto;
1531
    width: 16.6666666667%;
1532
  }
16848 stevensc 1533
 
16825 efrain 1534
  .col-lg-auto {
1535
    flex: 0 0 auto;
1536
    width: auto;
1537
  }
16848 stevensc 1538
 
16825 efrain 1539
  .col-lg-1 {
1540
    flex: 0 0 auto;
1541
    width: 8.33333333%;
1542
  }
16848 stevensc 1543
 
16825 efrain 1544
  .col-lg-2 {
1545
    flex: 0 0 auto;
1546
    width: 16.66666667%;
1547
  }
16848 stevensc 1548
 
16825 efrain 1549
  .col-lg-3 {
1550
    flex: 0 0 auto;
1551
    width: 25%;
1552
  }
16848 stevensc 1553
 
16825 efrain 1554
  .col-lg-4 {
1555
    flex: 0 0 auto;
1556
    width: 33.33333333%;
1557
  }
16848 stevensc 1558
 
16825 efrain 1559
  .col-lg-5 {
1560
    flex: 0 0 auto;
1561
    width: 41.66666667%;
1562
  }
16848 stevensc 1563
 
16825 efrain 1564
  .col-lg-6 {
1565
    flex: 0 0 auto;
1566
    width: 50%;
1567
  }
16848 stevensc 1568
 
16825 efrain 1569
  .col-lg-7 {
1570
    flex: 0 0 auto;
1571
    width: 58.33333333%;
1572
  }
16848 stevensc 1573
 
16825 efrain 1574
  .col-lg-8 {
1575
    flex: 0 0 auto;
1576
    width: 66.66666667%;
1577
  }
16848 stevensc 1578
 
16825 efrain 1579
  .col-lg-9 {
1580
    flex: 0 0 auto;
1581
    width: 75%;
1582
  }
16848 stevensc 1583
 
16825 efrain 1584
  .col-lg-10 {
1585
    flex: 0 0 auto;
1586
    width: 83.33333333%;
1587
  }
16848 stevensc 1588
 
16825 efrain 1589
  .col-lg-11 {
1590
    flex: 0 0 auto;
1591
    width: 91.66666667%;
1592
  }
16848 stevensc 1593
 
16825 efrain 1594
  .col-lg-12 {
1595
    flex: 0 0 auto;
1596
    width: 100%;
1597
  }
16848 stevensc 1598
 
16825 efrain 1599
  .offset-lg-0 {
1600
    margin-left: 0;
1601
  }
16848 stevensc 1602
 
16825 efrain 1603
  .offset-lg-1 {
1604
    margin-left: 8.33333333%;
1605
  }
16848 stevensc 1606
 
16825 efrain 1607
  .offset-lg-2 {
1608
    margin-left: 16.66666667%;
1609
  }
16848 stevensc 1610
 
16825 efrain 1611
  .offset-lg-3 {
1612
    margin-left: 25%;
1613
  }
16848 stevensc 1614
 
16825 efrain 1615
  .offset-lg-4 {
1616
    margin-left: 33.33333333%;
1617
  }
16848 stevensc 1618
 
16825 efrain 1619
  .offset-lg-5 {
1620
    margin-left: 41.66666667%;
1621
  }
16848 stevensc 1622
 
16825 efrain 1623
  .offset-lg-6 {
1624
    margin-left: 50%;
1625
  }
16848 stevensc 1626
 
16825 efrain 1627
  .offset-lg-7 {
1628
    margin-left: 58.33333333%;
1629
  }
16848 stevensc 1630
 
16825 efrain 1631
  .offset-lg-8 {
1632
    margin-left: 66.66666667%;
1633
  }
16848 stevensc 1634
 
16825 efrain 1635
  .offset-lg-9 {
1636
    margin-left: 75%;
1637
  }
16848 stevensc 1638
 
16825 efrain 1639
  .offset-lg-10 {
1640
    margin-left: 83.33333333%;
1641
  }
16848 stevensc 1642
 
16825 efrain 1643
  .offset-lg-11 {
1644
    margin-left: 91.66666667%;
1645
  }
16848 stevensc 1646
 
16825 efrain 1647
  .g-lg-0,
1648
  .gx-lg-0 {
1649
    --bs-gutter-x: 0;
1650
  }
16848 stevensc 1651
 
16825 efrain 1652
  .g-lg-0,
1653
  .gy-lg-0 {
1654
    --bs-gutter-y: 0;
1655
  }
16848 stevensc 1656
 
16825 efrain 1657
  .g-lg-1,
1658
  .gx-lg-1 {
1659
    --bs-gutter-x: 0.25rem;
1660
  }
16848 stevensc 1661
 
16825 efrain 1662
  .g-lg-1,
1663
  .gy-lg-1 {
1664
    --bs-gutter-y: 0.25rem;
1665
  }
16848 stevensc 1666
 
16825 efrain 1667
  .g-lg-2,
1668
  .gx-lg-2 {
1669
    --bs-gutter-x: 0.5rem;
1670
  }
16848 stevensc 1671
 
16825 efrain 1672
  .g-lg-2,
1673
  .gy-lg-2 {
1674
    --bs-gutter-y: 0.5rem;
1675
  }
16848 stevensc 1676
 
16825 efrain 1677
  .g-lg-3,
1678
  .gx-lg-3 {
1679
    --bs-gutter-x: 1rem;
1680
  }
16848 stevensc 1681
 
16825 efrain 1682
  .g-lg-3,
1683
  .gy-lg-3 {
1684
    --bs-gutter-y: 1rem;
1685
  }
16848 stevensc 1686
 
16825 efrain 1687
  .g-lg-4,
1688
  .gx-lg-4 {
1689
    --bs-gutter-x: 1.5rem;
1690
  }
16848 stevensc 1691
 
16825 efrain 1692
  .g-lg-4,
1693
  .gy-lg-4 {
1694
    --bs-gutter-y: 1.5rem;
1695
  }
16848 stevensc 1696
 
16825 efrain 1697
  .g-lg-5,
1698
  .gx-lg-5 {
1699
    --bs-gutter-x: 3rem;
1700
  }
16848 stevensc 1701
 
16825 efrain 1702
  .g-lg-5,
1703
  .gy-lg-5 {
1704
    --bs-gutter-y: 3rem;
1705
  }
16848 stevensc 1706
 
16825 efrain 1707
  .g-lg-6,
1708
  .gx-lg-6 {
1709
    --bs-gutter-x: 4.5rem;
1710
  }
16848 stevensc 1711
 
16825 efrain 1712
  .g-lg-6,
1713
  .gy-lg-6 {
1714
    --bs-gutter-y: 4.5rem;
1715
  }
16848 stevensc 1716
 
16825 efrain 1717
  .g-lg-7,
1718
  .gx-lg-7 {
1719
    --bs-gutter-x: 6rem;
1720
  }
16848 stevensc 1721
 
16825 efrain 1722
  .g-lg-7,
1723
  .gy-lg-7 {
1724
    --bs-gutter-y: 6rem;
1725
  }
1726
}
16848 stevensc 1727
 
16825 efrain 1728
@media (min-width: 1200px) {
1729
  .col-xl {
1730
    flex: 1 0 0%;
1731
  }
16848 stevensc 1732
 
1733
  .row-cols-xl-auto>* {
16825 efrain 1734
    flex: 0 0 auto;
1735
    width: auto;
1736
  }
16848 stevensc 1737
 
1738
  .row-cols-xl-1>* {
16825 efrain 1739
    flex: 0 0 auto;
1740
    width: 100%;
1741
  }
16848 stevensc 1742
 
1743
  .row-cols-xl-2>* {
16825 efrain 1744
    flex: 0 0 auto;
1745
    width: 50%;
1746
  }
16848 stevensc 1747
 
1748
  .row-cols-xl-3>* {
16825 efrain 1749
    flex: 0 0 auto;
1750
    width: 33.3333333333%;
1751
  }
16848 stevensc 1752
 
1753
  .row-cols-xl-4>* {
16825 efrain 1754
    flex: 0 0 auto;
1755
    width: 25%;
1756
  }
16848 stevensc 1757
 
1758
  .row-cols-xl-5>* {
16825 efrain 1759
    flex: 0 0 auto;
1760
    width: 20%;
1761
  }
16848 stevensc 1762
 
1763
  .row-cols-xl-6>* {
16825 efrain 1764
    flex: 0 0 auto;
1765
    width: 16.6666666667%;
1766
  }
16848 stevensc 1767
 
16825 efrain 1768
  .col-xl-auto {
1769
    flex: 0 0 auto;
1770
    width: auto;
1771
  }
16848 stevensc 1772
 
16825 efrain 1773
  .col-xl-1 {
1774
    flex: 0 0 auto;
1775
    width: 8.33333333%;
1776
  }
16848 stevensc 1777
 
16825 efrain 1778
  .col-xl-2 {
1779
    flex: 0 0 auto;
1780
    width: 16.66666667%;
1781
  }
16848 stevensc 1782
 
16825 efrain 1783
  .col-xl-3 {
1784
    flex: 0 0 auto;
1785
    width: 25%;
1786
  }
16848 stevensc 1787
 
16825 efrain 1788
  .col-xl-4 {
1789
    flex: 0 0 auto;
1790
    width: 33.33333333%;
1791
  }
16848 stevensc 1792
 
16825 efrain 1793
  .col-xl-5 {
1794
    flex: 0 0 auto;
1795
    width: 41.66666667%;
1796
  }
16848 stevensc 1797
 
16825 efrain 1798
  .col-xl-6 {
1799
    flex: 0 0 auto;
1800
    width: 50%;
1801
  }
16848 stevensc 1802
 
16825 efrain 1803
  .col-xl-7 {
1804
    flex: 0 0 auto;
1805
    width: 58.33333333%;
1806
  }
16848 stevensc 1807
 
16825 efrain 1808
  .col-xl-8 {
1809
    flex: 0 0 auto;
1810
    width: 66.66666667%;
1811
  }
16848 stevensc 1812
 
16825 efrain 1813
  .col-xl-9 {
1814
    flex: 0 0 auto;
1815
    width: 75%;
1816
  }
16848 stevensc 1817
 
16825 efrain 1818
  .col-xl-10 {
1819
    flex: 0 0 auto;
1820
    width: 83.33333333%;
1821
  }
16848 stevensc 1822
 
16825 efrain 1823
  .col-xl-11 {
1824
    flex: 0 0 auto;
1825
    width: 91.66666667%;
1826
  }
16848 stevensc 1827
 
16825 efrain 1828
  .col-xl-12 {
1829
    flex: 0 0 auto;
1830
    width: 100%;
1831
  }
16848 stevensc 1832
 
16825 efrain 1833
  .offset-xl-0 {
1834
    margin-left: 0;
1835
  }
16848 stevensc 1836
 
16825 efrain 1837
  .offset-xl-1 {
1838
    margin-left: 8.33333333%;
1839
  }
16848 stevensc 1840
 
16825 efrain 1841
  .offset-xl-2 {
1842
    margin-left: 16.66666667%;
1843
  }
16848 stevensc 1844
 
16825 efrain 1845
  .offset-xl-3 {
1846
    margin-left: 25%;
1847
  }
16848 stevensc 1848
 
16825 efrain 1849
  .offset-xl-4 {
1850
    margin-left: 33.33333333%;
1851
  }
16848 stevensc 1852
 
16825 efrain 1853
  .offset-xl-5 {
1854
    margin-left: 41.66666667%;
1855
  }
16848 stevensc 1856
 
16825 efrain 1857
  .offset-xl-6 {
1858
    margin-left: 50%;
1859
  }
16848 stevensc 1860
 
16825 efrain 1861
  .offset-xl-7 {
1862
    margin-left: 58.33333333%;
1863
  }
16848 stevensc 1864
 
16825 efrain 1865
  .offset-xl-8 {
1866
    margin-left: 66.66666667%;
1867
  }
16848 stevensc 1868
 
16825 efrain 1869
  .offset-xl-9 {
1870
    margin-left: 75%;
1871
  }
16848 stevensc 1872
 
16825 efrain 1873
  .offset-xl-10 {
1874
    margin-left: 83.33333333%;
1875
  }
16848 stevensc 1876
 
16825 efrain 1877
  .offset-xl-11 {
1878
    margin-left: 91.66666667%;
1879
  }
16848 stevensc 1880
 
16825 efrain 1881
  .g-xl-0,
1882
  .gx-xl-0 {
1883
    --bs-gutter-x: 0;
1884
  }
16848 stevensc 1885
 
16825 efrain 1886
  .g-xl-0,
1887
  .gy-xl-0 {
1888
    --bs-gutter-y: 0;
1889
  }
16848 stevensc 1890
 
16825 efrain 1891
  .g-xl-1,
1892
  .gx-xl-1 {
1893
    --bs-gutter-x: 0.25rem;
1894
  }
16848 stevensc 1895
 
16825 efrain 1896
  .g-xl-1,
1897
  .gy-xl-1 {
1898
    --bs-gutter-y: 0.25rem;
1899
  }
16848 stevensc 1900
 
16825 efrain 1901
  .g-xl-2,
1902
  .gx-xl-2 {
1903
    --bs-gutter-x: 0.5rem;
1904
  }
16848 stevensc 1905
 
16825 efrain 1906
  .g-xl-2,
1907
  .gy-xl-2 {
1908
    --bs-gutter-y: 0.5rem;
1909
  }
16848 stevensc 1910
 
16825 efrain 1911
  .g-xl-3,
1912
  .gx-xl-3 {
1913
    --bs-gutter-x: 1rem;
1914
  }
16848 stevensc 1915
 
16825 efrain 1916
  .g-xl-3,
1917
  .gy-xl-3 {
1918
    --bs-gutter-y: 1rem;
1919
  }
16848 stevensc 1920
 
16825 efrain 1921
  .g-xl-4,
1922
  .gx-xl-4 {
1923
    --bs-gutter-x: 1.5rem;
1924
  }
16848 stevensc 1925
 
16825 efrain 1926
  .g-xl-4,
1927
  .gy-xl-4 {
1928
    --bs-gutter-y: 1.5rem;
1929
  }
16848 stevensc 1930
 
16825 efrain 1931
  .g-xl-5,
1932
  .gx-xl-5 {
1933
    --bs-gutter-x: 3rem;
1934
  }
16848 stevensc 1935
 
16825 efrain 1936
  .g-xl-5,
1937
  .gy-xl-5 {
1938
    --bs-gutter-y: 3rem;
1939
  }
16848 stevensc 1940
 
16825 efrain 1941
  .g-xl-6,
1942
  .gx-xl-6 {
1943
    --bs-gutter-x: 4.5rem;
1944
  }
16848 stevensc 1945
 
16825 efrain 1946
  .g-xl-6,
1947
  .gy-xl-6 {
1948
    --bs-gutter-y: 4.5rem;
1949
  }
16848 stevensc 1950
 
16825 efrain 1951
  .g-xl-7,
1952
  .gx-xl-7 {
1953
    --bs-gutter-x: 6rem;
1954
  }
16848 stevensc 1955
 
16825 efrain 1956
  .g-xl-7,
1957
  .gy-xl-7 {
1958
    --bs-gutter-y: 6rem;
1959
  }
1960
}
16848 stevensc 1961
 
16825 efrain 1962
@media (min-width: 1400px) {
1963
  .col-xxl {
1964
    flex: 1 0 0%;
1965
  }
16848 stevensc 1966
 
1967
  .row-cols-xxl-auto>* {
16825 efrain 1968
    flex: 0 0 auto;
1969
    width: auto;
1970
  }
16848 stevensc 1971
 
1972
  .row-cols-xxl-1>* {
16825 efrain 1973
    flex: 0 0 auto;
1974
    width: 100%;
1975
  }
16848 stevensc 1976
 
1977
  .row-cols-xxl-2>* {
16825 efrain 1978
    flex: 0 0 auto;
1979
    width: 50%;
1980
  }
16848 stevensc 1981
 
1982
  .row-cols-xxl-3>* {
16825 efrain 1983
    flex: 0 0 auto;
1984
    width: 33.3333333333%;
1985
  }
16848 stevensc 1986
 
1987
  .row-cols-xxl-4>* {
16825 efrain 1988
    flex: 0 0 auto;
1989
    width: 25%;
1990
  }
16848 stevensc 1991
 
1992
  .row-cols-xxl-5>* {
16825 efrain 1993
    flex: 0 0 auto;
1994
    width: 20%;
1995
  }
16848 stevensc 1996
 
1997
  .row-cols-xxl-6>* {
16825 efrain 1998
    flex: 0 0 auto;
1999
    width: 16.6666666667%;
2000
  }
16848 stevensc 2001
 
16825 efrain 2002
  .col-xxl-auto {
2003
    flex: 0 0 auto;
2004
    width: auto;
2005
  }
16848 stevensc 2006
 
16825 efrain 2007
  .col-xxl-1 {
2008
    flex: 0 0 auto;
2009
    width: 8.33333333%;
2010
  }
16848 stevensc 2011
 
16825 efrain 2012
  .col-xxl-2 {
2013
    flex: 0 0 auto;
2014
    width: 16.66666667%;
2015
  }
16848 stevensc 2016
 
16825 efrain 2017
  .col-xxl-3 {
2018
    flex: 0 0 auto;
2019
    width: 25%;
2020
  }
16848 stevensc 2021
 
16825 efrain 2022
  .col-xxl-4 {
2023
    flex: 0 0 auto;
2024
    width: 33.33333333%;
2025
  }
16848 stevensc 2026
 
16825 efrain 2027
  .col-xxl-5 {
2028
    flex: 0 0 auto;
2029
    width: 41.66666667%;
2030
  }
16848 stevensc 2031
 
16825 efrain 2032
  .col-xxl-6 {
2033
    flex: 0 0 auto;
2034
    width: 50%;
2035
  }
16848 stevensc 2036
 
16825 efrain 2037
  .col-xxl-7 {
2038
    flex: 0 0 auto;
2039
    width: 58.33333333%;
2040
  }
16848 stevensc 2041
 
16825 efrain 2042
  .col-xxl-8 {
2043
    flex: 0 0 auto;
2044
    width: 66.66666667%;
2045
  }
16848 stevensc 2046
 
16825 efrain 2047
  .col-xxl-9 {
2048
    flex: 0 0 auto;
2049
    width: 75%;
2050
  }
16848 stevensc 2051
 
16825 efrain 2052
  .col-xxl-10 {
2053
    flex: 0 0 auto;
2054
    width: 83.33333333%;
2055
  }
16848 stevensc 2056
 
16825 efrain 2057
  .col-xxl-11 {
2058
    flex: 0 0 auto;
2059
    width: 91.66666667%;
2060
  }
16848 stevensc 2061
 
16825 efrain 2062
  .col-xxl-12 {
2063
    flex: 0 0 auto;
2064
    width: 100%;
2065
  }
16848 stevensc 2066
 
16825 efrain 2067
  .offset-xxl-0 {
2068
    margin-left: 0;
2069
  }
16848 stevensc 2070
 
16825 efrain 2071
  .offset-xxl-1 {
2072
    margin-left: 8.33333333%;
2073
  }
16848 stevensc 2074
 
16825 efrain 2075
  .offset-xxl-2 {
2076
    margin-left: 16.66666667%;
2077
  }
16848 stevensc 2078
 
16825 efrain 2079
  .offset-xxl-3 {
2080
    margin-left: 25%;
2081
  }
16848 stevensc 2082
 
16825 efrain 2083
  .offset-xxl-4 {
2084
    margin-left: 33.33333333%;
2085
  }
16848 stevensc 2086
 
16825 efrain 2087
  .offset-xxl-5 {
2088
    margin-left: 41.66666667%;
2089
  }
16848 stevensc 2090
 
16825 efrain 2091
  .offset-xxl-6 {
2092
    margin-left: 50%;
2093
  }
16848 stevensc 2094
 
16825 efrain 2095
  .offset-xxl-7 {
2096
    margin-left: 58.33333333%;
2097
  }
16848 stevensc 2098
 
16825 efrain 2099
  .offset-xxl-8 {
2100
    margin-left: 66.66666667%;
2101
  }
16848 stevensc 2102
 
16825 efrain 2103
  .offset-xxl-9 {
2104
    margin-left: 75%;
2105
  }
16848 stevensc 2106
 
16825 efrain 2107
  .offset-xxl-10 {
2108
    margin-left: 83.33333333%;
2109
  }
16848 stevensc 2110
 
16825 efrain 2111
  .offset-xxl-11 {
2112
    margin-left: 91.66666667%;
2113
  }
16848 stevensc 2114
 
16825 efrain 2115
  .g-xxl-0,
2116
  .gx-xxl-0 {
2117
    --bs-gutter-x: 0;
2118
  }
16848 stevensc 2119
 
16825 efrain 2120
  .g-xxl-0,
2121
  .gy-xxl-0 {
2122
    --bs-gutter-y: 0;
2123
  }
16848 stevensc 2124
 
16825 efrain 2125
  .g-xxl-1,
2126
  .gx-xxl-1 {
2127
    --bs-gutter-x: 0.25rem;
2128
  }
16848 stevensc 2129
 
16825 efrain 2130
  .g-xxl-1,
2131
  .gy-xxl-1 {
2132
    --bs-gutter-y: 0.25rem;
2133
  }
16848 stevensc 2134
 
16825 efrain 2135
  .g-xxl-2,
2136
  .gx-xxl-2 {
2137
    --bs-gutter-x: 0.5rem;
2138
  }
16848 stevensc 2139
 
16825 efrain 2140
  .g-xxl-2,
2141
  .gy-xxl-2 {
2142
    --bs-gutter-y: 0.5rem;
2143
  }
16848 stevensc 2144
 
16825 efrain 2145
  .g-xxl-3,
2146
  .gx-xxl-3 {
2147
    --bs-gutter-x: 1rem;
2148
  }
16848 stevensc 2149
 
16825 efrain 2150
  .g-xxl-3,
2151
  .gy-xxl-3 {
2152
    --bs-gutter-y: 1rem;
2153
  }
16848 stevensc 2154
 
16825 efrain 2155
  .g-xxl-4,
2156
  .gx-xxl-4 {
2157
    --bs-gutter-x: 1.5rem;
2158
  }
16848 stevensc 2159
 
16825 efrain 2160
  .g-xxl-4,
2161
  .gy-xxl-4 {
2162
    --bs-gutter-y: 1.5rem;
2163
  }
16848 stevensc 2164
 
16825 efrain 2165
  .g-xxl-5,
2166
  .gx-xxl-5 {
2167
    --bs-gutter-x: 3rem;
2168
  }
16848 stevensc 2169
 
16825 efrain 2170
  .g-xxl-5,
2171
  .gy-xxl-5 {
2172
    --bs-gutter-y: 3rem;
2173
  }
16848 stevensc 2174
 
16825 efrain 2175
  .g-xxl-6,
2176
  .gx-xxl-6 {
2177
    --bs-gutter-x: 4.5rem;
2178
  }
16848 stevensc 2179
 
16825 efrain 2180
  .g-xxl-6,
2181
  .gy-xxl-6 {
2182
    --bs-gutter-y: 4.5rem;
2183
  }
16848 stevensc 2184
 
16825 efrain 2185
  .g-xxl-7,
2186
  .gx-xxl-7 {
2187
    --bs-gutter-x: 6rem;
2188
  }
16848 stevensc 2189
 
16825 efrain 2190
  .g-xxl-7,
2191
  .gy-xxl-7 {
2192
    --bs-gutter-y: 6rem;
2193
  }
2194
}
16848 stevensc 2195
 
16825 efrain 2196
.table {
2197
  --bs-table-color: var(--bs-body-color);
2198
  --bs-table-bg: transparent;
2199
  --bs-table-border-color: var(--bs-border-color);
2200
  --bs-table-accent-bg: transparent;
2201
  --bs-table-striped-color: var(--bs-body-color);
2202
  --bs-table-striped-bg: #e9ecef;
2203
  --bs-table-active-color: var(--bs-body-color);
2204
  --bs-table-active-bg: #dee2e6;
2205
  --bs-table-hover-color: var(--bs-body-color);
2206
  --bs-table-hover-bg: #e9ecef;
2207
  width: 100%;
2208
  margin-bottom: 1rem;
2209
  color: var(--bs-table-color);
2210
  vertical-align: top;
2211
  border-color: var(--bs-table-border-color);
2212
}
16848 stevensc 2213
 
2214
.table> :not(caption)>*>* {
16825 efrain 2215
  padding: 0.85rem 0.85rem;
2216
  background-color: var(--bs-table-bg);
2217
  border-bottom-width: 1px;
2218
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2219
}
16848 stevensc 2220
 
2221
.table>tbody {
16825 efrain 2222
  vertical-align: inherit;
2223
}
16848 stevensc 2224
 
2225
.table>thead {
16825 efrain 2226
  vertical-align: bottom;
2227
}
2228
 
2229
.table-group-divider {
2230
  border-top: 2px solid #e9ecef;
2231
}
2232
 
2233
.caption-top {
2234
  caption-side: top;
2235
}
2236
 
16848 stevensc 2237
.table-sm> :not(caption)>*>* {
16825 efrain 2238
  padding: 0.55rem 0.55rem;
2239
}
2240
 
16848 stevensc 2241
.table-bordered> :not(caption)>* {
16825 efrain 2242
  border-width: 1px 0;
2243
}
16848 stevensc 2244
 
2245
.table-bordered> :not(caption)>*>* {
16825 efrain 2246
  border-width: 0 1px;
2247
}
2248
 
16848 stevensc 2249
.table-borderless> :not(caption)>*>* {
16825 efrain 2250
  border-bottom-width: 0;
2251
}
16848 stevensc 2252
 
2253
.table-borderless> :not(:first-child) {
16825 efrain 2254
  border-top-width: 0;
2255
}
2256
 
16848 stevensc 2257
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2258
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2259
  color: var(--bs-table-striped-color);
2260
}
2261
 
16848 stevensc 2262
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2263
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2264
  color: var(--bs-table-striped-color);
2265
}
2266
 
2267
.table-active {
2268
  --bs-table-accent-bg: var(--bs-table-active-bg);
2269
  color: var(--bs-table-active-color);
2270
}
2271
 
16848 stevensc 2272
.table-hover>tbody>tr:hover>* {
16825 efrain 2273
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2274
  color: var(--bs-table-hover-color);
2275
}
2276
 
2277
.table-primary {
2278
  --bs-table-color: #000;
2279
  --bs-table-bg: #e0e3ff;
2280
  --bs-table-border-color: #cacce6;
2281
  --bs-table-striped-bg: #d5d8f2;
2282
  --bs-table-striped-color: #000;
2283
  --bs-table-active-bg: #cacce6;
2284
  --bs-table-active-color: #000;
2285
  --bs-table-hover-bg: #cfd2ec;
2286
  --bs-table-hover-color: #000;
2287
  color: var(--bs-table-color);
2288
  border-color: var(--bs-table-border-color);
2289
}
2290
 
2291
.table-secondary {
2292
  --bs-table-color: #000;
2293
  --bs-table-bg: #e4e7ec;
2294
  --bs-table-border-color: #cdd0d4;
2295
  --bs-table-striped-bg: #d9dbe0;
2296
  --bs-table-striped-color: #000;
2297
  --bs-table-active-bg: #cdd0d4;
2298
  --bs-table-active-color: #000;
2299
  --bs-table-hover-bg: #d3d6da;
2300
  --bs-table-hover-color: #000;
2301
  color: var(--bs-table-color);
2302
  border-color: var(--bs-table-border-color);
2303
}
2304
 
2305
.table-success {
2306
  --bs-table-color: #000;
2307
  --bs-table-bg: #cdeddb;
2308
  --bs-table-border-color: #b9d5c5;
2309
  --bs-table-striped-bg: #c3e1d0;
2310
  --bs-table-striped-color: #000;
2311
  --bs-table-active-bg: #b9d5c5;
2312
  --bs-table-active-color: #000;
2313
  --bs-table-hover-bg: #bedbcb;
2314
  --bs-table-hover-color: #000;
2315
  color: var(--bs-table-color);
2316
  border-color: var(--bs-table-border-color);
2317
}
2318
 
2319
.table-info {
2320
  --bs-table-color: #000;
2321
  --bs-table-bg: #e0f6f6;
2322
  --bs-table-border-color: #cadddd;
2323
  --bs-table-striped-bg: #d5eaea;
2324
  --bs-table-striped-color: #000;
2325
  --bs-table-active-bg: #cadddd;
2326
  --bs-table-active-color: #000;
2327
  --bs-table-hover-bg: #cfe4e4;
2328
  --bs-table-hover-color: #000;
2329
  color: var(--bs-table-color);
2330
  border-color: var(--bs-table-border-color);
2331
}
2332
 
2333
.table-warning {
2334
  --bs-table-color: #000;
2335
  --bs-table-bg: #fef2cd;
2336
  --bs-table-border-color: #e5dab9;
2337
  --bs-table-striped-bg: #f1e6c3;
2338
  --bs-table-striped-color: #000;
2339
  --bs-table-active-bg: #e5dab9;
2340
  --bs-table-active-color: #000;
2341
  --bs-table-hover-bg: #ebe0be;
2342
  --bs-table-hover-color: #000;
2343
  color: var(--bs-table-color);
2344
  border-color: var(--bs-table-border-color);
2345
}
2346
 
2347
.table-danger {
2348
  --bs-table-color: #000;
2349
  --bs-table-bg: #ffd6e0;
2350
  --bs-table-border-color: #e6c1ca;
2351
  --bs-table-striped-bg: #f2cbd5;
2352
  --bs-table-striped-color: #000;
2353
  --bs-table-active-bg: #e6c1ca;
2354
  --bs-table-active-color: #000;
2355
  --bs-table-hover-bg: #ecc6cf;
2356
  --bs-table-hover-color: #000;
2357
  color: var(--bs-table-color);
2358
  border-color: var(--bs-table-border-color);
2359
}
2360
 
2361
.table-light {
2362
  --bs-table-color: #000;
2363
  --bs-table-bg: #e9ecef;
2364
  --bs-table-border-color: #d2d4d7;
2365
  --bs-table-striped-bg: #dde0e3;
2366
  --bs-table-striped-color: #000;
2367
  --bs-table-active-bg: #d2d4d7;
2368
  --bs-table-active-color: #000;
2369
  --bs-table-hover-bg: #d8dadd;
2370
  --bs-table-hover-color: #000;
2371
  color: var(--bs-table-color);
2372
  border-color: var(--bs-table-border-color);
2373
}
2374
 
2375
.table-dark {
2376
  --bs-table-color: #fff;
2377
  --bs-table-bg: #060c17;
2378
  --bs-table-border-color: #1f242e;
2379
  --bs-table-striped-bg: #121823;
2380
  --bs-table-striped-color: #fff;
2381
  --bs-table-active-bg: #1f242e;
2382
  --bs-table-active-color: #fff;
2383
  --bs-table-hover-bg: #191e28;
2384
  --bs-table-hover-color: #fff;
2385
  color: var(--bs-table-color);
2386
  border-color: var(--bs-table-border-color);
2387
}
2388
 
2389
.table-responsive {
2390
  overflow-x: auto;
2391
  -webkit-overflow-scrolling: touch;
2392
}
2393
 
2394
@media (max-width: 575.98px) {
2395
  .table-responsive-sm {
2396
    overflow-x: auto;
2397
    -webkit-overflow-scrolling: touch;
2398
  }
2399
}
16848 stevensc 2400
 
16825 efrain 2401
@media (max-width: 767.98px) {
2402
  .table-responsive-md {
2403
    overflow-x: auto;
2404
    -webkit-overflow-scrolling: touch;
2405
  }
2406
}
16848 stevensc 2407
 
16825 efrain 2408
@media (max-width: 991.98px) {
2409
  .table-responsive-lg {
2410
    overflow-x: auto;
2411
    -webkit-overflow-scrolling: touch;
2412
  }
2413
}
16848 stevensc 2414
 
16825 efrain 2415
@media (max-width: 1199.98px) {
2416
  .table-responsive-xl {
2417
    overflow-x: auto;
2418
    -webkit-overflow-scrolling: touch;
2419
  }
2420
}
16848 stevensc 2421
 
16825 efrain 2422
@media (max-width: 1399.98px) {
2423
  .table-responsive-xxl {
2424
    overflow-x: auto;
2425
    -webkit-overflow-scrolling: touch;
2426
  }
2427
}
16848 stevensc 2428
 
16825 efrain 2429
.form-label {
2430
  margin-bottom: 0.5rem;
2431
}
2432
 
2433
.col-form-label {
2434
  padding-top: calc(0.469rem + 1px);
2435
  padding-bottom: calc(0.469rem + 1px);
2436
  margin-bottom: 0;
2437
  font-size: inherit;
2438
  line-height: 1.5;
2439
}
2440
 
2441
.col-form-label-lg {
2442
  padding-top: calc(0.5rem + 1px);
2443
  padding-bottom: calc(0.5rem + 1px);
2444
  font-size: 1rem;
2445
}
2446
 
2447
.col-form-label-sm {
2448
  padding-top: calc(0.391rem + 1px);
2449
  padding-bottom: calc(0.391rem + 1px);
2450
  font-size: 0.812rem;
2451
}
2452
 
2453
.form-text {
2454
  margin-top: 0.25rem;
2455
  font-size: 0.875em;
2456
  color: #7987a1;
2457
}
2458
 
16848 stevensc 2459
.form-control,
2460
.typeahead.tt-input,
2461
.typeahead.tt-hint,
2462
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2463
  display: block;
2464
  width: 100%;
2465
  padding: 0.469rem 0.8rem;
2466
  font-size: 0.875rem;
2467
  font-weight: 400;
2468
  line-height: 1.5;
2469
  color: #000;
2470
  background-color: #fff;
2471
  background-clip: padding-box;
2472
  border: 1px solid #e9ecef;
2473
  appearance: none;
2474
  border-radius: 0.25rem;
2475
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2476
}
16848 stevensc 2477
 
16825 efrain 2478
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2479
 
2480
  .form-control,
2481
  .typeahead.tt-input,
2482
  .typeahead.tt-hint,
2483
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2484
    transition: none;
2485
  }
2486
}
16848 stevensc 2487
 
2488
.form-control[type=file],
2489
[type=file].typeahead.tt-input,
2490
[type=file].typeahead.tt-hint,
2491
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2492
  overflow: hidden;
2493
}
16848 stevensc 2494
 
2495
.form-control[type=file]:not(:disabled):not([readonly]),
2496
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2497
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2498
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2499
  cursor: pointer;
2500
}
16848 stevensc 2501
 
2502
.form-control:focus,
2503
.typeahead.tt-input:focus,
2504
.typeahead.tt-hint:focus,
2505
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2506
  color: #000;
2507
  background-color: #fff;
2508
  border-color: #cbd1db;
2509
  outline: 0;
2510
  box-shadow: none;
2511
}
16848 stevensc 2512
 
2513
.form-control::-webkit-date-and-time-value,
2514
.typeahead.tt-input::-webkit-date-and-time-value,
2515
.typeahead.tt-hint::-webkit-date-and-time-value,
2516
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2517
  height: 1.5em;
2518
}
16848 stevensc 2519
 
2520
.form-control::placeholder,
2521
.typeahead.tt-input::placeholder,
2522
.typeahead.tt-hint::placeholder,
2523
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2524
  color: #aeb7c5;
2525
  opacity: 1;
2526
}
16848 stevensc 2527
 
2528
.form-control:disabled,
2529
.typeahead.tt-input:disabled,
2530
.typeahead.tt-hint:disabled,
2531
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2532
  background-color: #e9ecef;
2533
  opacity: 1;
2534
}
16848 stevensc 2535
 
2536
.form-control::file-selector-button,
2537
.typeahead.tt-input::file-selector-button,
2538
.typeahead.tt-hint::file-selector-button,
2539
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2540
  padding: 0.469rem 0.8rem;
2541
  margin: -0.469rem -0.8rem;
2542
  margin-inline-end: 0.8rem;
2543
  color: #000;
2544
  background-color: #f8f9fa;
2545
  pointer-events: none;
2546
  border-color: inherit;
2547
  border-style: solid;
2548
  border-width: 0;
2549
  border-inline-end-width: 1px;
2550
  border-radius: 0;
2551
  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;
2552
}
16848 stevensc 2553
 
16825 efrain 2554
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2555
 
2556
  .form-control::file-selector-button,
2557
  .typeahead.tt-input::file-selector-button,
2558
  .typeahead.tt-hint::file-selector-button,
2559
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2560
    transition: none;
2561
  }
2562
}
16848 stevensc 2563
 
2564
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2565
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2566
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2567
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2568
  background-color: #ecedee;
2569
}
2570
 
2571
.form-control-plaintext {
2572
  display: block;
2573
  width: 100%;
2574
  padding: 0.469rem 0;
2575
  margin-bottom: 0;
2576
  line-height: 1.5;
2577
  color: #000;
2578
  background-color: transparent;
2579
  border: solid transparent;
2580
  border-width: 1px 0;
2581
}
16848 stevensc 2582
 
16825 efrain 2583
.form-control-plaintext:focus {
2584
  outline: 0;
2585
}
16848 stevensc 2586
 
2587
.form-control-plaintext.form-control-sm,
2588
.form-control-plaintext.form-control-lg {
16825 efrain 2589
  padding-right: 0;
2590
  padding-left: 0;
2591
}
2592
 
2593
.form-control-sm {
2594
  min-height: calc(1.5em + 0.782rem + 2px);
2595
  padding: 0.391rem 0.8rem;
2596
  font-size: 0.812rem;
2597
  border-radius: 0.25rem;
2598
}
16848 stevensc 2599
 
16825 efrain 2600
.form-control-sm::file-selector-button {
2601
  padding: 0.391rem 0.8rem;
2602
  margin: -0.391rem -0.8rem;
2603
  margin-inline-end: 0.8rem;
2604
}
2605
 
2606
.form-control-lg {
2607
  min-height: calc(1.5em + 1rem + 2px);
2608
  padding: 0.5rem 0.8rem;
2609
  font-size: 1rem;
2610
  border-radius: 0.25rem;
2611
}
16848 stevensc 2612
 
16825 efrain 2613
.form-control-lg::file-selector-button {
2614
  padding: 0.5rem 0.8rem;
2615
  margin: -0.5rem -0.8rem;
2616
  margin-inline-end: 0.8rem;
2617
}
2618
 
16848 stevensc 2619
textarea.form-control,
2620
textarea.typeahead.tt-input,
2621
textarea.typeahead.tt-hint,
2622
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2623
  min-height: calc(1.5em + 0.938rem + 2px);
2624
}
16848 stevensc 2625
 
16825 efrain 2626
textarea.form-control-sm {
2627
  min-height: calc(1.5em + 0.782rem + 2px);
2628
}
16848 stevensc 2629
 
16825 efrain 2630
textarea.form-control-lg {
2631
  min-height: calc(1.5em + 1rem + 2px);
2632
}
2633
 
2634
.form-control-color {
2635
  width: 3rem;
2636
  height: calc(1.5em + 0.938rem + 2px);
2637
  padding: 0.469rem;
2638
}
16848 stevensc 2639
 
16825 efrain 2640
.form-control-color:not(:disabled):not([readonly]) {
2641
  cursor: pointer;
2642
}
16848 stevensc 2643
 
16825 efrain 2644
.form-control-color::-moz-color-swatch {
2645
  border: 0 !important;
2646
  border-radius: 0.25rem;
2647
}
16848 stevensc 2648
 
16825 efrain 2649
.form-control-color::-webkit-color-swatch {
2650
  border-radius: 0.25rem;
2651
}
16848 stevensc 2652
 
16825 efrain 2653
.form-control-color.form-control-sm {
2654
  height: calc(1.5em + 0.782rem + 2px);
2655
}
16848 stevensc 2656
 
16825 efrain 2657
.form-control-color.form-control-lg {
2658
  height: calc(1.5em + 1rem + 2px);
2659
}
2660
 
2661
.form-select {
2662
  display: block;
2663
  width: 100%;
2664
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2665
  -moz-padding-start: calc(0.8rem - 3px);
2666
  font-size: 0.875rem;
2667
  font-weight: 400;
2668
  line-height: 1.5;
2669
  color: #000;
2670
  background-color: #fff;
2671
  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");
2672
  background-repeat: no-repeat;
2673
  background-position: right 0.8rem center;
2674
  background-size: 16px 12px;
2675
  border: 1px solid #e9ecef;
2676
  border-radius: 0.25rem;
2677
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2678
  appearance: none;
2679
}
16848 stevensc 2680
 
16825 efrain 2681
@media (prefers-reduced-motion: reduce) {
2682
  .form-select {
2683
    transition: none;
2684
  }
2685
}
16848 stevensc 2686
 
16825 efrain 2687
.form-select:focus {
2688
  border-color: #cbd1db;
2689
  outline: 0;
2690
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2691
}
16848 stevensc 2692
 
2693
.form-select[multiple],
2694
.form-select[size]:not([size="1"]) {
16825 efrain 2695
  padding-right: 0.8rem;
2696
  background-image: none;
2697
}
16848 stevensc 2698
 
16825 efrain 2699
.form-select:disabled {
2700
  background-color: #e9ecef;
2701
}
16848 stevensc 2702
 
16825 efrain 2703
.form-select:-moz-focusring {
2704
  color: transparent;
2705
  text-shadow: 0 0 0 #000;
2706
}
2707
 
2708
.form-select-sm {
2709
  padding-top: 0.391rem;
2710
  padding-bottom: 0.391rem;
2711
  padding-left: 0.8rem;
2712
  font-size: 0.812rem;
2713
  border-radius: 0.25rem;
2714
}
2715
 
2716
.form-select-lg {
2717
  padding-top: 0.5rem;
2718
  padding-bottom: 0.5rem;
2719
  padding-left: 0.8rem;
2720
  font-size: 1rem;
2721
  border-radius: 0.25rem;
2722
}
2723
 
2724
.form-check {
2725
  display: block;
2726
  min-height: 1.3125rem;
2727
  padding-left: 1.8em;
2728
  margin-bottom: 0.125rem;
2729
}
16848 stevensc 2730
 
16825 efrain 2731
.form-check .form-check-input {
2732
  float: left;
2733
  margin-left: -1.8em;
2734
}
2735
 
2736
.form-check-reverse {
2737
  padding-right: 1.8em;
2738
  padding-left: 0;
2739
  text-align: right;
2740
}
16848 stevensc 2741
 
16825 efrain 2742
.form-check-reverse .form-check-input {
2743
  float: right;
2744
  margin-right: -1.8em;
2745
  margin-left: 0;
2746
}
2747
 
2748
.form-check-input {
2749
  width: 1.3em;
2750
  height: 1.3em;
2751
  margin-top: 0.1em;
2752
  vertical-align: top;
2753
  background-color: #fff;
2754
  background-repeat: no-repeat;
2755
  background-position: center;
2756
  background-size: contain;
2757
  border: 1px solid rgba(0, 0, 0, 0.25);
2758
  appearance: none;
2759
  print-color-adjust: exact;
2760
}
16848 stevensc 2761
 
16825 efrain 2762
.form-check-input[type=checkbox] {
2763
  border-radius: 0.15em;
2764
}
16848 stevensc 2765
 
16825 efrain 2766
.form-check-input[type=radio] {
2767
  border-radius: 50%;
2768
}
16848 stevensc 2769
 
16825 efrain 2770
.form-check-input:active {
2771
  filter: brightness(90%);
2772
}
16848 stevensc 2773
 
16825 efrain 2774
.form-check-input:focus {
2775
  border-color: #cbd1db;
2776
  outline: 0;
2777
  box-shadow: none;
2778
}
16848 stevensc 2779
 
16825 efrain 2780
.form-check-input:checked {
2781
  background-color: #6571ff;
2782
  border-color: #6571ff;
2783
}
16848 stevensc 2784
 
16825 efrain 2785
.form-check-input:checked[type=checkbox] {
2786
  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");
2787
}
16848 stevensc 2788
 
16825 efrain 2789
.form-check-input:checked[type=radio] {
2790
  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");
2791
}
16848 stevensc 2792
 
16825 efrain 2793
.form-check-input[type=checkbox]:indeterminate {
2794
  background-color: #6571ff;
2795
  border-color: #6571ff;
2796
  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");
2797
}
16848 stevensc 2798
 
16825 efrain 2799
.form-check-input:disabled {
2800
  pointer-events: none;
2801
  filter: none;
2802
  opacity: 0.5;
2803
}
16848 stevensc 2804
 
2805
.form-check-input[disabled]~.form-check-label,
2806
.form-check-input:disabled~.form-check-label {
16825 efrain 2807
  cursor: default;
2808
  opacity: 0.5;
2809
}
2810
 
2811
.form-switch {
2812
  padding-left: 2.5em;
2813
}
16848 stevensc 2814
 
16825 efrain 2815
.form-switch .form-check-input {
2816
  width: 2em;
2817
  margin-left: -2.5em;
2818
  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");
2819
  background-position: left center;
2820
  border-radius: 2em;
2821
  transition: background-position 0.15s ease-in-out;
2822
}
16848 stevensc 2823
 
16825 efrain 2824
@media (prefers-reduced-motion: reduce) {
2825
  .form-switch .form-check-input {
2826
    transition: none;
2827
  }
2828
}
16848 stevensc 2829
 
16825 efrain 2830
.form-switch .form-check-input:focus {
2831
  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");
2832
}
16848 stevensc 2833
 
16825 efrain 2834
.form-switch .form-check-input:checked {
2835
  background-position: right center;
2836
  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");
2837
}
16848 stevensc 2838
 
16825 efrain 2839
.form-switch.form-check-reverse {
2840
  padding-right: 2.5em;
2841
  padding-left: 0;
2842
}
16848 stevensc 2843
 
16825 efrain 2844
.form-switch.form-check-reverse .form-check-input {
2845
  margin-right: -2.5em;
2846
  margin-left: 0;
2847
}
2848
 
2849
.form-check-inline {
2850
  display: inline-block;
2851
  margin-right: 1rem;
2852
}
2853
 
2854
.btn-check {
2855
  position: absolute;
2856
  clip: rect(0, 0, 0, 0);
2857
  pointer-events: none;
2858
}
16848 stevensc 2859
 
2860
.btn-check[disabled]+.btn,
2861
.wizard>.actions .btn-check[disabled]+a,
2862
div.tox .btn-check[disabled]+.tox-button,
2863
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2864
.fc .btn-check[disabled]+.fc-button-primary,
2865
.btn-check:disabled+.btn,
2866
.wizard>.actions .btn-check:disabled+a,
2867
div.tox .btn-check:disabled+.tox-button,
2868
.swal2-popup .swal2-actions .btn-check:disabled+button,
2869
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2870
  pointer-events: none;
2871
  filter: none;
2872
  opacity: 0.65;
2873
}
2874
 
2875
.form-range {
2876
  width: 100%;
2877
  height: 1rem;
2878
  padding: 0;
2879
  background-color: transparent;
2880
  appearance: none;
2881
}
16848 stevensc 2882
 
16825 efrain 2883
.form-range:focus {
2884
  outline: 0;
2885
}
16848 stevensc 2886
 
16825 efrain 2887
.form-range:focus::-webkit-slider-thumb {
2888
  box-shadow: 0 0 0 1px #f9fafb, none;
2889
}
16848 stevensc 2890
 
16825 efrain 2891
.form-range:focus::-moz-range-thumb {
2892
  box-shadow: 0 0 0 1px #f9fafb, none;
2893
}
16848 stevensc 2894
 
16825 efrain 2895
.form-range::-moz-focus-outer {
2896
  border: 0;
2897
}
16848 stevensc 2898
 
16825 efrain 2899
.form-range::-webkit-slider-thumb {
2900
  width: 1rem;
2901
  height: 1rem;
2902
  margin-top: -0.25rem;
2903
  background-color: #6571ff;
2904
  border: 0;
2905
  border-radius: 1rem;
2906
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2907
  appearance: none;
2908
}
16848 stevensc 2909
 
16825 efrain 2910
@media (prefers-reduced-motion: reduce) {
2911
  .form-range::-webkit-slider-thumb {
2912
    transition: none;
2913
  }
2914
}
16848 stevensc 2915
 
16825 efrain 2916
.form-range::-webkit-slider-thumb:active {
2917
  background-color: #d1d4ff;
2918
}
16848 stevensc 2919
 
16825 efrain 2920
.form-range::-webkit-slider-runnable-track {
2921
  width: 100%;
2922
  height: 0.5rem;
2923
  color: transparent;
2924
  cursor: pointer;
2925
  background-color: #dee2e6;
2926
  border-color: transparent;
2927
  border-radius: 1rem;
2928
}
16848 stevensc 2929
 
16825 efrain 2930
.form-range::-moz-range-thumb {
2931
  width: 1rem;
2932
  height: 1rem;
2933
  background-color: #6571ff;
2934
  border: 0;
2935
  border-radius: 1rem;
2936
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2937
  appearance: none;
2938
}
16848 stevensc 2939
 
16825 efrain 2940
@media (prefers-reduced-motion: reduce) {
2941
  .form-range::-moz-range-thumb {
2942
    transition: none;
2943
  }
2944
}
16848 stevensc 2945
 
16825 efrain 2946
.form-range::-moz-range-thumb:active {
2947
  background-color: #d1d4ff;
2948
}
16848 stevensc 2949
 
16825 efrain 2950
.form-range::-moz-range-track {
2951
  width: 100%;
2952
  height: 0.5rem;
2953
  color: transparent;
2954
  cursor: pointer;
2955
  background-color: #dee2e6;
2956
  border-color: transparent;
2957
  border-radius: 1rem;
2958
}
16848 stevensc 2959
 
16825 efrain 2960
.form-range:disabled {
2961
  pointer-events: none;
2962
}
16848 stevensc 2963
 
16825 efrain 2964
.form-range:disabled::-webkit-slider-thumb {
2965
  background-color: #aeb7c5;
2966
}
16848 stevensc 2967
 
16825 efrain 2968
.form-range:disabled::-moz-range-thumb {
2969
  background-color: #aeb7c5;
2970
}
2971
 
2972
.form-floating {
2973
  position: relative;
2974
}
16848 stevensc 2975
 
2976
.form-floating>.form-control,
2977
.form-floating>.typeahead.tt-input,
2978
.form-floating>.typeahead.tt-hint,
2979
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2980
.form-floating>.form-control-plaintext,
2981
.form-floating>.form-select {
16825 efrain 2982
  height: calc(3.5rem + 2px);
2983
  line-height: 1.25;
2984
}
16848 stevensc 2985
 
2986
.form-floating>label {
16825 efrain 2987
  position: absolute;
2988
  top: 0;
2989
  left: 0;
2990
  width: 100%;
2991
  height: 100%;
2992
  padding: 1rem 0.8rem;
2993
  overflow: hidden;
2994
  text-align: start;
2995
  text-overflow: ellipsis;
2996
  white-space: nowrap;
2997
  pointer-events: none;
2998
  border: 1px solid transparent;
2999
  transform-origin: 0 0;
3000
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
3001
}
16848 stevensc 3002
 
16825 efrain 3003
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3004
  .form-floating>label {
16825 efrain 3005
    transition: none;
3006
  }
3007
}
16848 stevensc 3008
 
3009
.form-floating>.form-control,
3010
.form-floating>.typeahead.tt-input,
3011
.form-floating>.typeahead.tt-hint,
3012
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
3013
.form-floating>.form-control-plaintext {
16825 efrain 3014
  padding: 1rem 0.8rem;
3015
}
16848 stevensc 3016
 
3017
.form-floating>.form-control::placeholder,
3018
.form-floating>.typeahead.tt-input::placeholder,
3019
.form-floating>.typeahead.tt-hint::placeholder,
3020
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
3021
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 3022
  color: transparent;
3023
}
16848 stevensc 3024
 
3025
.form-floating>.form-control:focus,
3026
.form-floating>.typeahead.tt-input:focus,
3027
.form-floating>.typeahead.tt-hint:focus,
3028
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
3029
.form-floating>.form-control:not(:placeholder-shown),
3030
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
3031
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
3032
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3033
.form-floating>.form-control-plaintext:focus,
3034
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3035
  padding-top: 1.625rem;
3036
  padding-bottom: 0.625rem;
3037
}
16848 stevensc 3038
 
3039
.form-floating>.form-control:-webkit-autofill,
3040
.form-floating>.typeahead.tt-input:-webkit-autofill,
3041
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3042
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3043
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3044
  padding-top: 1.625rem;
3045
  padding-bottom: 0.625rem;
3046
}
16848 stevensc 3047
 
3048
.form-floating>.form-select {
16825 efrain 3049
  padding-top: 1.625rem;
3050
  padding-bottom: 0.625rem;
3051
}
16848 stevensc 3052
 
3053
.form-floating>.form-control:focus~label,
3054
.form-floating>.typeahead.tt-input:focus~label,
3055
.form-floating>.typeahead.tt-hint:focus~label,
3056
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3057
.form-floating>.form-control:not(:placeholder-shown)~label,
3058
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3059
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3060
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3061
.form-floating>.form-control-plaintext~label,
3062
.form-floating>.form-select~label {
16825 efrain 3063
  opacity: 0.65;
3064
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3065
}
16848 stevensc 3066
 
3067
.form-floating>.form-control:-webkit-autofill~label,
3068
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3069
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3070
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3071
  opacity: 0.65;
3072
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3073
}
16848 stevensc 3074
 
3075
.form-floating>.form-control-plaintext~label {
16825 efrain 3076
  border-width: 1px 0;
3077
}
3078
 
3079
.input-group {
3080
  position: relative;
3081
  display: flex;
3082
  flex-wrap: wrap;
3083
  align-items: stretch;
3084
  width: 100%;
3085
}
16848 stevensc 3086
 
3087
.input-group>.form-control,
3088
.input-group>.typeahead.tt-input,
3089
.input-group>.typeahead.tt-hint,
3090
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3091
.input-group>.form-select,
3092
.input-group>.form-floating {
16825 efrain 3093
  position: relative;
3094
  flex: 1 1 auto;
3095
  width: 1%;
3096
  min-width: 0;
3097
}
16848 stevensc 3098
 
3099
.input-group>.form-control:focus,
3100
.input-group>.typeahead.tt-input:focus,
3101
.input-group>.typeahead.tt-hint:focus,
3102
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3103
.input-group>.form-select:focus,
3104
.input-group>.form-floating:focus-within {
16825 efrain 3105
  z-index: 5;
3106
}
16848 stevensc 3107
 
3108
.input-group .btn,
3109
.input-group .wizard>.actions a,
3110
.wizard>.actions .input-group a,
3111
.input-group div.tox .tox-button,
3112
div.tox .input-group .tox-button,
3113
.input-group .swal2-popup .swal2-actions button,
3114
.swal2-popup .swal2-actions .input-group button,
3115
.input-group .fc .fc-button-primary,
3116
.fc .input-group .fc-button-primary {
16825 efrain 3117
  position: relative;
3118
  z-index: 2;
3119
}
16848 stevensc 3120
 
3121
.input-group .btn:focus,
3122
.input-group .wizard>.actions a:focus,
3123
.wizard>.actions .input-group a:focus,
3124
.input-group div.tox .tox-button:focus,
3125
div.tox .input-group .tox-button:focus,
3126
.input-group .swal2-popup .swal2-actions button:focus,
3127
.swal2-popup .swal2-actions .input-group button:focus,
3128
.input-group .fc .fc-button-primary:focus,
3129
.fc .input-group .fc-button-primary:focus {
16825 efrain 3130
  z-index: 5;
3131
}
3132
 
3133
.input-group-text {
3134
  display: flex;
3135
  align-items: center;
3136
  padding: 0.469rem 0.563rem;
3137
  font-size: 0.875rem;
3138
  font-weight: 400;
3139
  line-height: 1.5;
3140
  color: #000;
3141
  text-align: center;
3142
  white-space: nowrap;
3143
  background-color: #f8f9fa;
3144
  border: 1px solid #e9ecef;
3145
  border-radius: 0.25rem;
3146
}
3147
 
16848 stevensc 3148
.input-group-lg>.form-control,
3149
.input-group-lg>.typeahead.tt-input,
3150
.input-group-lg>.typeahead.tt-hint,
3151
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3152
.input-group-lg>.form-select,
3153
.input-group-lg>.input-group-text,
3154
.input-group-lg>.btn,
3155
.wizard>.actions .input-group-lg>a,
3156
div.tox .input-group-lg>.tox-button,
3157
.swal2-popup .swal2-actions .input-group-lg>button,
3158
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3159
  padding: 0.5rem 0.8rem;
3160
  font-size: 1rem;
3161
  border-radius: 0.25rem;
3162
}
3163
 
16848 stevensc 3164
.input-group-sm>.form-control,
3165
.input-group-sm>.typeahead.tt-input,
3166
.input-group-sm>.typeahead.tt-hint,
3167
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3168
.input-group-sm>.form-select,
3169
.input-group-sm>.input-group-text,
3170
.input-group-sm>.btn,
3171
.wizard>.actions .input-group-sm>a,
3172
div.tox .input-group-sm>.tox-button,
3173
.swal2-popup .swal2-actions .input-group-sm>button,
3174
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3175
  padding: 0.391rem 0.8rem;
3176
  font-size: 0.812rem;
3177
  border-radius: 0.25rem;
3178
}
3179
 
16848 stevensc 3180
.input-group-lg>.form-select,
3181
.input-group-sm>.form-select {
16825 efrain 3182
  padding-right: 3.2rem;
3183
}
3184
 
16848 stevensc 3185
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3186
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3187
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3188
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3189
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3190
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3191
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3192
  border-top-right-radius: 0;
3193
  border-bottom-right-radius: 0;
3194
}
16848 stevensc 3195
 
3196
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3197
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3198
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3199
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3200
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3201
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3202
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3203
  border-top-right-radius: 0;
3204
  border-bottom-right-radius: 0;
3205
}
16848 stevensc 3206
 
3207
.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 3208
  margin-left: -1px;
3209
  border-top-left-radius: 0;
3210
  border-bottom-left-radius: 0;
3211
}
16848 stevensc 3212
 
3213
.input-group>.form-floating:not(:first-child)>.form-control,
3214
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3215
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3216
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3217
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3218
  border-top-left-radius: 0;
3219
  border-bottom-left-radius: 0;
3220
}
3221
 
3222
.valid-feedback {
3223
  display: none;
3224
  width: 100%;
3225
  margin-top: 0.25rem;
3226
  font-size: 0.875em;
3227
  color: #05a34a;
3228
}
3229
 
3230
.valid-tooltip {
3231
  position: absolute;
3232
  top: 100%;
3233
  z-index: 5;
3234
  display: none;
3235
  max-width: 100%;
3236
  padding: 0.25rem 0.5rem;
3237
  margin-top: 0.1rem;
3238
  font-size: 0.812rem;
3239
  color: #fff;
3240
  background-color: rgba(5, 163, 74, 0.9);
3241
  border-radius: 0.25rem;
3242
}
3243
 
16848 stevensc 3244
.was-validated :valid~.valid-feedback,
3245
.was-validated :valid~.valid-tooltip,
3246
.is-valid~.valid-feedback,
3247
.is-valid~.valid-tooltip {
16825 efrain 3248
  display: block;
3249
}
3250
 
16848 stevensc 3251
.was-validated .form-control:valid,
3252
.was-validated .typeahead.tt-input:valid,
3253
.was-validated .typeahead.tt-hint:valid,
3254
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3255
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3256
.form-control.is-valid,
3257
.is-valid.typeahead.tt-input,
3258
.is-valid.typeahead.tt-hint,
3259
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3260
  border-color: #05a34a;
3261
  padding-right: calc(1.5em + 0.938rem);
3262
  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");
3263
  background-repeat: no-repeat;
3264
  background-position: right calc(0.375em + 0.2345rem) center;
3265
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3266
}
16848 stevensc 3267
 
3268
.was-validated .form-control:valid:focus,
3269
.was-validated .typeahead.tt-input:valid:focus,
3270
.was-validated .typeahead.tt-hint:valid:focus,
3271
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3272
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3273
.form-control.is-valid:focus,
3274
.is-valid.typeahead.tt-input:focus,
3275
.is-valid.typeahead.tt-hint:focus,
3276
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3277
  border-color: #05a34a;
3278
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3279
}
3280
 
16848 stevensc 3281
.was-validated textarea.form-control:valid,
3282
.was-validated textarea.typeahead.tt-input:valid,
3283
.was-validated textarea.typeahead.tt-hint:valid,
3284
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3285
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3286
textarea.form-control.is-valid,
3287
textarea.is-valid.typeahead.tt-input,
3288
textarea.is-valid.typeahead.tt-hint,
3289
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3290
  padding-right: calc(1.5em + 0.938rem);
3291
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3292
}
3293
 
16848 stevensc 3294
.was-validated .form-select:valid,
3295
.form-select.is-valid {
16825 efrain 3296
  border-color: #05a34a;
3297
}
16848 stevensc 3298
 
3299
.was-validated .form-select:valid:not([multiple]):not([size]),
3300
.was-validated .form-select:valid:not([multiple])[size="1"],
3301
.form-select.is-valid:not([multiple]):not([size]),
3302
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3303
  padding-right: 4.4rem;
3304
  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");
3305
  background-position: right 0.8rem center, center right 2.4rem;
3306
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3307
}
16848 stevensc 3308
 
3309
.was-validated .form-select:valid:focus,
3310
.form-select.is-valid:focus {
16825 efrain 3311
  border-color: #05a34a;
3312
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3313
}
3314
 
16848 stevensc 3315
.was-validated .form-control-color:valid,
3316
.form-control-color.is-valid {
16825 efrain 3317
  width: calc(3rem + calc(1.5em + 0.938rem));
3318
}
3319
 
16848 stevensc 3320
.was-validated .form-check-input:valid,
3321
.form-check-input.is-valid {
16825 efrain 3322
  border-color: #05a34a;
3323
}
16848 stevensc 3324
 
3325
.was-validated .form-check-input:valid:checked,
3326
.form-check-input.is-valid:checked {
16825 efrain 3327
  background-color: #05a34a;
3328
}
16848 stevensc 3329
 
3330
.was-validated .form-check-input:valid:focus,
3331
.form-check-input.is-valid:focus {
16825 efrain 3332
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3333
}
16848 stevensc 3334
 
3335
.was-validated .form-check-input:valid~.form-check-label,
3336
.form-check-input.is-valid~.form-check-label {
16825 efrain 3337
  color: #05a34a;
3338
}
3339
 
16848 stevensc 3340
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3341
  margin-left: 0.5em;
3342
}
3343
 
16848 stevensc 3344
.was-validated .input-group>.form-control:not(:focus):valid,
3345
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3346
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3347
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3348
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3349
.input-group>.form-control:not(:focus).is-valid,
3350
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3351
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3352
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3353
.was-validated .input-group>.form-select:not(:focus):valid,
3354
.input-group>.form-select:not(:focus).is-valid,
3355
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3356
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3357
  z-index: 3;
3358
}
3359
 
3360
.invalid-feedback {
3361
  display: none;
3362
  width: 100%;
3363
  margin-top: 0.25rem;
3364
  font-size: 0.875em;
3365
  color: #ff3366;
3366
}
3367
 
3368
.invalid-tooltip {
3369
  position: absolute;
3370
  top: 100%;
3371
  z-index: 5;
3372
  display: none;
3373
  max-width: 100%;
3374
  padding: 0.25rem 0.5rem;
3375
  margin-top: 0.1rem;
3376
  font-size: 0.812rem;
3377
  color: #fff;
3378
  background-color: rgba(255, 51, 102, 0.9);
3379
  border-radius: 0.25rem;
3380
}
3381
 
16848 stevensc 3382
.was-validated :invalid~.invalid-feedback,
3383
.was-validated :invalid~.invalid-tooltip,
3384
.is-invalid~.invalid-feedback,
3385
.is-invalid~.invalid-tooltip {
16825 efrain 3386
  display: block;
3387
}
3388
 
16848 stevensc 3389
.was-validated .form-control:invalid,
3390
.was-validated .typeahead.tt-input:invalid,
3391
.was-validated .typeahead.tt-hint:invalid,
3392
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3393
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3394
.form-control.is-invalid,
3395
.is-invalid.typeahead.tt-input,
3396
.is-invalid.typeahead.tt-hint,
3397
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3398
  border-color: #ff3366;
3399
  padding-right: calc(1.5em + 0.938rem);
3400
  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");
3401
  background-repeat: no-repeat;
3402
  background-position: right calc(0.375em + 0.2345rem) center;
3403
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3404
}
16848 stevensc 3405
 
3406
.was-validated .form-control:invalid:focus,
3407
.was-validated .typeahead.tt-input:invalid:focus,
3408
.was-validated .typeahead.tt-hint:invalid:focus,
3409
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3410
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3411
.form-control.is-invalid:focus,
3412
.is-invalid.typeahead.tt-input:focus,
3413
.is-invalid.typeahead.tt-hint:focus,
3414
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3415
  border-color: #ff3366;
3416
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3417
}
3418
 
16848 stevensc 3419
.was-validated textarea.form-control:invalid,
3420
.was-validated textarea.typeahead.tt-input:invalid,
3421
.was-validated textarea.typeahead.tt-hint:invalid,
3422
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3423
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3424
textarea.form-control.is-invalid,
3425
textarea.is-invalid.typeahead.tt-input,
3426
textarea.is-invalid.typeahead.tt-hint,
3427
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3428
  padding-right: calc(1.5em + 0.938rem);
3429
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3430
}
3431
 
16848 stevensc 3432
.was-validated .form-select:invalid,
3433
.form-select.is-invalid {
16825 efrain 3434
  border-color: #ff3366;
3435
}
16848 stevensc 3436
 
3437
.was-validated .form-select:invalid:not([multiple]):not([size]),
3438
.was-validated .form-select:invalid:not([multiple])[size="1"],
3439
.form-select.is-invalid:not([multiple]):not([size]),
3440
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3441
  padding-right: 4.4rem;
3442
  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");
3443
  background-position: right 0.8rem center, center right 2.4rem;
3444
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3445
}
16848 stevensc 3446
 
3447
.was-validated .form-select:invalid:focus,
3448
.form-select.is-invalid:focus {
16825 efrain 3449
  border-color: #ff3366;
3450
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3451
}
3452
 
16848 stevensc 3453
.was-validated .form-control-color:invalid,
3454
.form-control-color.is-invalid {
16825 efrain 3455
  width: calc(3rem + calc(1.5em + 0.938rem));
3456
}
3457
 
16848 stevensc 3458
.was-validated .form-check-input:invalid,
3459
.form-check-input.is-invalid {
16825 efrain 3460
  border-color: #ff3366;
3461
}
16848 stevensc 3462
 
3463
.was-validated .form-check-input:invalid:checked,
3464
.form-check-input.is-invalid:checked {
16825 efrain 3465
  background-color: #ff3366;
3466
}
16848 stevensc 3467
 
3468
.was-validated .form-check-input:invalid:focus,
3469
.form-check-input.is-invalid:focus {
16825 efrain 3470
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3471
}
16848 stevensc 3472
 
3473
.was-validated .form-check-input:invalid~.form-check-label,
3474
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3475
  color: #ff3366;
3476
}
3477
 
16848 stevensc 3478
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3479
  margin-left: 0.5em;
3480
}
3481
 
16848 stevensc 3482
.was-validated .input-group>.form-control:not(:focus):invalid,
3483
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3484
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3485
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3486
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3487
.input-group>.form-control:not(:focus).is-invalid,
3488
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3489
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3490
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3491
.was-validated .input-group>.form-select:not(:focus):invalid,
3492
.input-group>.form-select:not(:focus).is-invalid,
3493
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3494
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3495
  z-index: 4;
3496
}
3497
 
16848 stevensc 3498
.btn,
3499
.wizard>.actions a,
3500
.wizard>.actions a:active,
3501
.wizard>.actions a:hover,
3502
div.tox .tox-button,
3503
.swal2-popup .swal2-actions button,
3504
.fc .fc-button-primary {
16825 efrain 3505
  --bs-btn-padding-x: 0.8rem;
3506
  --bs-btn-padding-y: 0.469rem;
3507
  --bs-btn-font-family: ;
3508
  --bs-btn-font-size: 0.875rem;
3509
  --bs-btn-font-weight: 400;
3510
  --bs-btn-line-height: 1.5;
3511
  --bs-btn-color: #000;
3512
  --bs-btn-bg: transparent;
3513
  --bs-btn-border-width: 1px;
3514
  --bs-btn-border-color: transparent;
3515
  --bs-btn-border-radius: 0.25rem;
3516
  --bs-btn-hover-border-color: transparent;
3517
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3518
  --bs-btn-disabled-opacity: 0.65;
3519
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3520
  display: inline-block;
3521
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3522
  font-family: var(--bs-btn-font-family);
3523
  font-size: var(--bs-btn-font-size);
3524
  font-weight: var(--bs-btn-font-weight);
3525
  line-height: var(--bs-btn-line-height);
3526
  color: var(--bs-btn-color);
3527
  text-align: center;
3528
  vertical-align: middle;
3529
  cursor: pointer;
3530
  user-select: none;
3531
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3532
  border-radius: var(--bs-btn-border-radius);
3533
  background-color: var(--bs-btn-bg);
3534
  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;
3535
}
16848 stevensc 3536
 
16825 efrain 3537
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3538
 
3539
  .btn,
3540
  .wizard>.actions a,
3541
  .wizard>.actions a:active,
3542
  .wizard>.actions a:hover,
3543
  div.tox .tox-button,
3544
  .swal2-popup .swal2-actions button,
3545
  .fc .fc-button-primary {
16825 efrain 3546
    transition: none;
3547
  }
3548
}
16848 stevensc 3549
 
3550
.btn:hover,
3551
.wizard>.actions a:hover,
3552
div.tox .tox-button:hover,
3553
.swal2-popup .swal2-actions button:hover,
3554
.fc .fc-button-primary:hover {
16825 efrain 3555
  color: var(--bs-btn-hover-color);
3556
  background-color: var(--bs-btn-hover-bg);
3557
  border-color: var(--bs-btn-hover-border-color);
3558
}
16848 stevensc 3559
 
3560
.btn-check+.btn:hover,
3561
.wizard>.actions .btn-check+a:hover,
3562
div.tox .btn-check+.tox-button:hover,
3563
.swal2-popup .swal2-actions .btn-check+button:hover,
3564
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3565
  color: var(--bs-btn-color);
3566
  background-color: var(--bs-btn-bg);
3567
  border-color: var(--bs-btn-border-color);
3568
}
16848 stevensc 3569
 
3570
.btn:focus-visible,
3571
.wizard>.actions a:focus-visible,
3572
div.tox .tox-button:focus-visible,
3573
.swal2-popup .swal2-actions button:focus-visible,
3574
.fc .fc-button-primary:focus-visible {
16825 efrain 3575
  color: var(--bs-btn-hover-color);
3576
  background-color: var(--bs-btn-hover-bg);
3577
  border-color: var(--bs-btn-hover-border-color);
3578
  outline: 0;
3579
  box-shadow: var(--bs-btn-focus-box-shadow);
3580
}
16848 stevensc 3581
 
3582
.btn-check:focus-visible+.btn,
3583
.wizard>.actions .btn-check:focus-visible+a,
3584
div.tox .btn-check:focus-visible+.tox-button,
3585
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3586
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3587
  border-color: var(--bs-btn-hover-border-color);
3588
  outline: 0;
3589
  box-shadow: var(--bs-btn-focus-box-shadow);
3590
}
16848 stevensc 3591
 
3592
.btn-check:checked+.btn,
3593
.wizard>.actions .btn-check:checked+a,
3594
div.tox .btn-check:checked+.tox-button,
3595
.swal2-popup .swal2-actions .btn-check:checked+button,
3596
.fc .btn-check:checked+.fc-button-primary,
3597
:not(.btn-check)+.btn:active,
3598
.wizard>.actions :not(.btn-check)+a:active,
3599
div.tox :not(.btn-check)+.tox-button:active,
3600
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3601
.fc :not(.btn-check)+.fc-button-primary:active,
3602
.btn:first-child:active,
3603
.wizard>.actions a:first-child:active,
3604
div.tox .tox-button:first-child:active,
3605
.swal2-popup .swal2-actions button:first-child:active,
3606
.fc .fc-button-primary:first-child:active,
3607
.btn.active,
3608
.wizard>.actions a.active,
3609
div.tox .active.tox-button,
3610
.swal2-popup .swal2-actions button.active,
3611
.fc .active.fc-button-primary,
3612
.btn.show,
3613
.wizard>.actions a.show,
3614
div.tox .show.tox-button,
3615
.swal2-popup .swal2-actions button.show,
3616
.fc .show.fc-button-primary {
16825 efrain 3617
  color: var(--bs-btn-active-color);
3618
  background-color: var(--bs-btn-active-bg);
3619
  border-color: var(--bs-btn-active-border-color);
3620
}
16848 stevensc 3621
 
3622
.btn-check:checked+.btn:focus-visible,
3623
.wizard>.actions .btn-check:checked+a:focus-visible,
3624
div.tox .btn-check:checked+.tox-button:focus-visible,
3625
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3626
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3627
:not(.btn-check)+.btn:active:focus-visible,
3628
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3629
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3630
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3631
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3632
.btn:first-child:active:focus-visible,
3633
.wizard>.actions a:first-child:active:focus-visible,
3634
div.tox .tox-button:first-child:active:focus-visible,
3635
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3636
.fc .fc-button-primary:first-child:active:focus-visible,
3637
.btn.active:focus-visible,
3638
.wizard>.actions a.active:focus-visible,
3639
div.tox .active.tox-button:focus-visible,
3640
.swal2-popup .swal2-actions button.active:focus-visible,
3641
.fc .active.fc-button-primary:focus-visible,
3642
.btn.show:focus-visible,
3643
.wizard>.actions a.show:focus-visible,
3644
div.tox .show.tox-button:focus-visible,
3645
.swal2-popup .swal2-actions button.show:focus-visible,
3646
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3647
  box-shadow: var(--bs-btn-focus-box-shadow);
3648
}
16848 stevensc 3649
 
3650
.btn:disabled,
3651
.wizard>.actions a:disabled,
3652
div.tox .tox-button:disabled,
3653
.swal2-popup .swal2-actions button:disabled,
3654
.fc .fc-button-primary:disabled,
3655
.btn.disabled,
3656
.wizard>.actions a.disabled,
3657
div.tox .disabled.tox-button,
3658
.swal2-popup .swal2-actions button.disabled,
3659
.fc .disabled.fc-button-primary,
3660
fieldset:disabled .btn,
3661
fieldset:disabled .wizard>.actions a,
3662
.wizard>.actions fieldset:disabled a,
3663
fieldset:disabled div.tox .tox-button,
3664
div.tox fieldset:disabled .tox-button,
3665
fieldset:disabled .swal2-popup .swal2-actions button,
3666
.swal2-popup .swal2-actions fieldset:disabled button,
3667
fieldset:disabled .fc .fc-button-primary,
3668
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3669
  color: var(--bs-btn-disabled-color);
3670
  pointer-events: none;
3671
  background-color: var(--bs-btn-disabled-bg);
3672
  border-color: var(--bs-btn-disabled-border-color);
3673
  opacity: var(--bs-btn-disabled-opacity);
3674
}
3675
 
16848 stevensc 3676
.btn-primary,
3677
.wizard>.actions a,
3678
.wizard>.actions a:active,
3679
.wizard>.actions a:hover,
3680
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3681
.swal2-popup .swal2-actions button.swal2-confirm,
3682
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3683
.fc .fc-button-primary:not(:disabled):active {
3684
  --bs-btn-color: #fff;
3685
  --bs-btn-bg: #6571ff;
3686
  --bs-btn-border-color: #6571ff;
3687
  --bs-btn-hover-color: #fff;
3688
  --bs-btn-hover-bg: #5660d9;
3689
  --bs-btn-hover-border-color: #515acc;
3690
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3691
  --bs-btn-active-color: #fff;
3692
  --bs-btn-active-bg: #515acc;
3693
  --bs-btn-active-border-color: #4c55bf;
3694
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3695
  --bs-btn-disabled-color: #fff;
3696
  --bs-btn-disabled-bg: #6571ff;
3697
  --bs-btn-disabled-border-color: #6571ff;
3698
}
3699
 
16848 stevensc 3700
.btn-secondary,
3701
div.tox .tox-button--secondary {
16825 efrain 3702
  --bs-btn-color: #fff;
3703
  --bs-btn-bg: #7987a1;
3704
  --bs-btn-border-color: #7987a1;
3705
  --bs-btn-hover-color: #fff;
3706
  --bs-btn-hover-bg: #677389;
3707
  --bs-btn-hover-border-color: #616c81;
3708
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3709
  --bs-btn-active-color: #fff;
3710
  --bs-btn-active-bg: #616c81;
3711
  --bs-btn-active-border-color: #5b6579;
3712
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3713
  --bs-btn-disabled-color: #fff;
3714
  --bs-btn-disabled-bg: #7987a1;
3715
  --bs-btn-disabled-border-color: #7987a1;
3716
}
3717
 
3718
.btn-success {
3719
  --bs-btn-color: #fff;
3720
  --bs-btn-bg: #05a34a;
3721
  --bs-btn-border-color: #05a34a;
3722
  --bs-btn-hover-color: #fff;
3723
  --bs-btn-hover-bg: #048b3f;
3724
  --bs-btn-hover-border-color: #04823b;
3725
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3726
  --bs-btn-active-color: #fff;
3727
  --bs-btn-active-bg: #04823b;
3728
  --bs-btn-active-border-color: #047a38;
3729
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3730
  --bs-btn-disabled-color: #fff;
3731
  --bs-btn-disabled-bg: #05a34a;
3732
  --bs-btn-disabled-border-color: #05a34a;
3733
}
3734
 
3735
.btn-info {
3736
  --bs-btn-color: #000;
3737
  --bs-btn-bg: #66d1d1;
3738
  --bs-btn-border-color: #66d1d1;
3739
  --bs-btn-hover-color: #000;
3740
  --bs-btn-hover-bg: #7dd8d8;
3741
  --bs-btn-hover-border-color: #75d6d6;
3742
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3743
  --bs-btn-active-color: #000;
3744
  --bs-btn-active-bg: #85dada;
3745
  --bs-btn-active-border-color: #75d6d6;
3746
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3747
  --bs-btn-disabled-color: #000;
3748
  --bs-btn-disabled-bg: #66d1d1;
3749
  --bs-btn-disabled-border-color: #66d1d1;
3750
}
3751
 
3752
.btn-warning {
3753
  --bs-btn-color: #000;
3754
  --bs-btn-bg: #fbbc06;
3755
  --bs-btn-border-color: #fbbc06;
3756
  --bs-btn-hover-color: #000;
3757
  --bs-btn-hover-bg: #fcc62b;
3758
  --bs-btn-hover-border-color: #fbc31f;
3759
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3760
  --bs-btn-active-color: #000;
3761
  --bs-btn-active-bg: #fcc938;
3762
  --bs-btn-active-border-color: #fbc31f;
3763
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3764
  --bs-btn-disabled-color: #000;
3765
  --bs-btn-disabled-bg: #fbbc06;
3766
  --bs-btn-disabled-border-color: #fbbc06;
3767
}
3768
 
16848 stevensc 3769
.btn-danger,
3770
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3771
  --bs-btn-color: #fff;
3772
  --bs-btn-bg: #ff3366;
3773
  --bs-btn-border-color: #ff3366;
3774
  --bs-btn-hover-color: #fff;
3775
  --bs-btn-hover-bg: #d92b57;
3776
  --bs-btn-hover-border-color: #cc2952;
3777
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3778
  --bs-btn-active-color: #fff;
3779
  --bs-btn-active-bg: #cc2952;
3780
  --bs-btn-active-border-color: #bf264d;
3781
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3782
  --bs-btn-disabled-color: #fff;
3783
  --bs-btn-disabled-bg: #ff3366;
3784
  --bs-btn-disabled-border-color: #ff3366;
3785
}
3786
 
3787
.btn-light {
3788
  --bs-btn-color: #000;
3789
  --bs-btn-bg: #e9ecef;
3790
  --bs-btn-border-color: #e9ecef;
3791
  --bs-btn-hover-color: #000;
3792
  --bs-btn-hover-bg: #c6c9cb;
3793
  --bs-btn-hover-border-color: #babdbf;
3794
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3795
  --bs-btn-active-color: #000;
3796
  --bs-btn-active-bg: #babdbf;
3797
  --bs-btn-active-border-color: #afb1b3;
3798
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3799
  --bs-btn-disabled-color: #000;
3800
  --bs-btn-disabled-bg: #e9ecef;
3801
  --bs-btn-disabled-border-color: #e9ecef;
3802
}
3803
 
3804
.btn-dark {
3805
  --bs-btn-color: #fff;
3806
  --bs-btn-bg: #060c17;
3807
  --bs-btn-border-color: #060c17;
3808
  --bs-btn-hover-color: #fff;
3809
  --bs-btn-hover-bg: #2b303a;
3810
  --bs-btn-hover-border-color: #1f242e;
3811
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3812
  --bs-btn-active-color: #fff;
3813
  --bs-btn-active-bg: #383d45;
3814
  --bs-btn-active-border-color: #1f242e;
3815
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3816
  --bs-btn-disabled-color: #fff;
3817
  --bs-btn-disabled-bg: #060c17;
3818
  --bs-btn-disabled-border-color: #060c17;
3819
}
3820
 
16848 stevensc 3821
.btn-outline-primary,
3822
.fc .fc-button-primary {
16825 efrain 3823
  --bs-btn-color: #6571ff;
3824
  --bs-btn-border-color: #6571ff;
3825
  --bs-btn-hover-color: #fff;
3826
  --bs-btn-hover-bg: #6571ff;
3827
  --bs-btn-hover-border-color: #6571ff;
3828
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3829
  --bs-btn-active-color: #fff;
3830
  --bs-btn-active-bg: #6571ff;
3831
  --bs-btn-active-border-color: #6571ff;
3832
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3833
  --bs-btn-disabled-color: #6571ff;
3834
  --bs-btn-disabled-bg: transparent;
3835
  --bs-btn-disabled-border-color: #6571ff;
3836
  --bs-gradient: none;
3837
}
3838
 
3839
.btn-outline-secondary {
3840
  --bs-btn-color: #7987a1;
3841
  --bs-btn-border-color: #7987a1;
3842
  --bs-btn-hover-color: #fff;
3843
  --bs-btn-hover-bg: #7987a1;
3844
  --bs-btn-hover-border-color: #7987a1;
3845
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3846
  --bs-btn-active-color: #fff;
3847
  --bs-btn-active-bg: #7987a1;
3848
  --bs-btn-active-border-color: #7987a1;
3849
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3850
  --bs-btn-disabled-color: #7987a1;
3851
  --bs-btn-disabled-bg: transparent;
3852
  --bs-btn-disabled-border-color: #7987a1;
3853
  --bs-gradient: none;
3854
}
3855
 
3856
.btn-outline-success {
3857
  --bs-btn-color: #05a34a;
3858
  --bs-btn-border-color: #05a34a;
3859
  --bs-btn-hover-color: #fff;
3860
  --bs-btn-hover-bg: #05a34a;
3861
  --bs-btn-hover-border-color: #05a34a;
3862
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3863
  --bs-btn-active-color: #fff;
3864
  --bs-btn-active-bg: #05a34a;
3865
  --bs-btn-active-border-color: #05a34a;
3866
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3867
  --bs-btn-disabled-color: #05a34a;
3868
  --bs-btn-disabled-bg: transparent;
3869
  --bs-btn-disabled-border-color: #05a34a;
3870
  --bs-gradient: none;
3871
}
3872
 
3873
.btn-outline-info {
3874
  --bs-btn-color: #66d1d1;
3875
  --bs-btn-border-color: #66d1d1;
3876
  --bs-btn-hover-color: #000;
3877
  --bs-btn-hover-bg: #66d1d1;
3878
  --bs-btn-hover-border-color: #66d1d1;
3879
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3880
  --bs-btn-active-color: #000;
3881
  --bs-btn-active-bg: #66d1d1;
3882
  --bs-btn-active-border-color: #66d1d1;
3883
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3884
  --bs-btn-disabled-color: #66d1d1;
3885
  --bs-btn-disabled-bg: transparent;
3886
  --bs-btn-disabled-border-color: #66d1d1;
3887
  --bs-gradient: none;
3888
}
3889
 
3890
.btn-outline-warning {
3891
  --bs-btn-color: #fbbc06;
3892
  --bs-btn-border-color: #fbbc06;
3893
  --bs-btn-hover-color: #000;
3894
  --bs-btn-hover-bg: #fbbc06;
3895
  --bs-btn-hover-border-color: #fbbc06;
3896
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3897
  --bs-btn-active-color: #000;
3898
  --bs-btn-active-bg: #fbbc06;
3899
  --bs-btn-active-border-color: #fbbc06;
3900
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3901
  --bs-btn-disabled-color: #fbbc06;
3902
  --bs-btn-disabled-bg: transparent;
3903
  --bs-btn-disabled-border-color: #fbbc06;
3904
  --bs-gradient: none;
3905
}
3906
 
3907
.btn-outline-danger {
3908
  --bs-btn-color: #ff3366;
3909
  --bs-btn-border-color: #ff3366;
3910
  --bs-btn-hover-color: #fff;
3911
  --bs-btn-hover-bg: #ff3366;
3912
  --bs-btn-hover-border-color: #ff3366;
3913
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3914
  --bs-btn-active-color: #fff;
3915
  --bs-btn-active-bg: #ff3366;
3916
  --bs-btn-active-border-color: #ff3366;
3917
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3918
  --bs-btn-disabled-color: #ff3366;
3919
  --bs-btn-disabled-bg: transparent;
3920
  --bs-btn-disabled-border-color: #ff3366;
3921
  --bs-gradient: none;
3922
}
3923
 
3924
.btn-outline-light {
3925
  --bs-btn-color: #e9ecef;
3926
  --bs-btn-border-color: #e9ecef;
3927
  --bs-btn-hover-color: #000;
3928
  --bs-btn-hover-bg: #e9ecef;
3929
  --bs-btn-hover-border-color: #e9ecef;
3930
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3931
  --bs-btn-active-color: #000;
3932
  --bs-btn-active-bg: #e9ecef;
3933
  --bs-btn-active-border-color: #e9ecef;
3934
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3935
  --bs-btn-disabled-color: #e9ecef;
3936
  --bs-btn-disabled-bg: transparent;
3937
  --bs-btn-disabled-border-color: #e9ecef;
3938
  --bs-gradient: none;
3939
}
3940
 
3941
.btn-outline-dark {
3942
  --bs-btn-color: #060c17;
3943
  --bs-btn-border-color: #060c17;
3944
  --bs-btn-hover-color: #fff;
3945
  --bs-btn-hover-bg: #060c17;
3946
  --bs-btn-hover-border-color: #060c17;
3947
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3948
  --bs-btn-active-color: #fff;
3949
  --bs-btn-active-bg: #060c17;
3950
  --bs-btn-active-border-color: #060c17;
3951
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3952
  --bs-btn-disabled-color: #060c17;
3953
  --bs-btn-disabled-bg: transparent;
3954
  --bs-btn-disabled-border-color: #060c17;
3955
  --bs-gradient: none;
3956
}
3957
 
3958
.btn-link {
3959
  --bs-btn-font-weight: 400;
3960
  --bs-btn-color: var(--bs-link-color);
3961
  --bs-btn-bg: transparent;
3962
  --bs-btn-border-color: transparent;
3963
  --bs-btn-hover-color: var(--bs-link-hover-color);
3964
  --bs-btn-hover-border-color: transparent;
3965
  --bs-btn-active-color: var(--bs-link-hover-color);
3966
  --bs-btn-active-border-color: transparent;
3967
  --bs-btn-disabled-color: #7987a1;
3968
  --bs-btn-disabled-border-color: transparent;
3969
  --bs-btn-box-shadow: none;
3970
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3971
  text-decoration: none;
3972
}
16848 stevensc 3973
 
16825 efrain 3974
.btn-link:focus-visible {
3975
  color: var(--bs-btn-color);
3976
}
16848 stevensc 3977
 
16825 efrain 3978
.btn-link:hover {
3979
  color: var(--bs-btn-hover-color);
3980
}
3981
 
16848 stevensc 3982
.btn-lg,
3983
.btn-group-lg>.btn,
3984
.wizard>.actions .btn-group-lg>a,
3985
div.tox .btn-group-lg>.tox-button,
3986
.swal2-popup .swal2-actions .btn-group-lg>button,
3987
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3988
  --bs-btn-padding-y: 0.5rem;
3989
  --bs-btn-padding-x: 0.8rem;
3990
  --bs-btn-font-size: 1rem;
3991
  --bs-btn-border-radius: 0.25rem;
3992
}
3993
 
16848 stevensc 3994
.btn-sm,
3995
.fc .fc-button-primary,
3996
.btn-group-sm>.btn,
3997
.wizard>.actions .btn-group-sm>a,
3998
div.tox .btn-group-sm>.tox-button,
3999
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 4000
  --bs-btn-padding-y: 0.391rem;
4001
  --bs-btn-padding-x: 0.8rem;
4002
  --bs-btn-font-size: 0.812rem;
4003
  --bs-btn-border-radius: 0.25rem;
4004
}
4005
 
4006
.fade {
4007
  transition: opacity 0.15s linear;
4008
}
16848 stevensc 4009
 
16825 efrain 4010
@media (prefers-reduced-motion: reduce) {
4011
  .fade {
4012
    transition: none;
4013
  }
4014
}
16848 stevensc 4015
 
16825 efrain 4016
.fade:not(.show) {
4017
  opacity: 0;
4018
}
4019
 
4020
.collapse:not(.show) {
4021
  display: none;
4022
}
4023
 
4024
.collapsing {
4025
  height: 0;
4026
  overflow: hidden;
4027
  transition: height 0.35s ease;
4028
}
16848 stevensc 4029
 
16825 efrain 4030
@media (prefers-reduced-motion: reduce) {
4031
  .collapsing {
4032
    transition: none;
4033
  }
4034
}
16848 stevensc 4035
 
16825 efrain 4036
.collapsing.collapse-horizontal {
4037
  width: 0;
4038
  height: auto;
4039
  transition: width 0.35s ease;
4040
}
16848 stevensc 4041
 
16825 efrain 4042
@media (prefers-reduced-motion: reduce) {
4043
  .collapsing.collapse-horizontal {
4044
    transition: none;
4045
  }
4046
}
4047
 
4048
.dropup,
4049
.dropend,
4050
.dropdown,
4051
.dropstart,
4052
.dropup-center,
4053
.dropdown-center {
4054
  position: relative;
4055
}
4056
 
4057
.dropdown-toggle {
4058
  white-space: nowrap;
4059
}
16848 stevensc 4060
 
16825 efrain 4061
.dropdown-toggle::after {
4062
  display: inline-block;
4063
  margin-left: 0.255em;
4064
  vertical-align: 0.255em;
4065
  content: "";
4066
  border-top: 0.3em solid;
4067
  border-right: 0.3em solid transparent;
4068
  border-bottom: 0;
4069
  border-left: 0.3em solid transparent;
4070
}
16848 stevensc 4071
 
16825 efrain 4072
.dropdown-toggle:empty::after {
4073
  margin-left: 0;
4074
}
4075
 
16848 stevensc 4076
.dropdown-menu,
4077
.tt-menu {
16825 efrain 4078
  --bs-dropdown-zindex: 1000;
4079
  --bs-dropdown-min-width: 10rem;
4080
  --bs-dropdown-padding-x: 0;
4081
  --bs-dropdown-padding-y: 0.5rem;
4082
  --bs-dropdown-spacer: 0.125rem;
4083
  --bs-dropdown-font-size: 0.875rem;
4084
  --bs-dropdown-color: #000;
4085
  --bs-dropdown-bg: #fff;
4086
  --bs-dropdown-border-color: #f2f4f9;
4087
  --bs-dropdown-border-radius: 0.25rem;
4088
  --bs-dropdown-border-width: 1px;
4089
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4090
  --bs-dropdown-divider-bg: #f2f4f9;
4091
  --bs-dropdown-divider-margin-y: 0.5rem;
4092
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4093
  --bs-dropdown-link-color: #060c17;
4094
  --bs-dropdown-link-hover-color: #050b15;
4095
  --bs-dropdown-link-hover-bg: #e9ecef;
4096
  --bs-dropdown-link-active-color: #fff;
4097
  --bs-dropdown-link-active-bg: #6571ff;
4098
  --bs-dropdown-link-disabled-color: #aeb7c5;
4099
  --bs-dropdown-item-padding-x: 1rem;
4100
  --bs-dropdown-item-padding-y: 0.25rem;
4101
  --bs-dropdown-header-color: #7987a1;
4102
  --bs-dropdown-header-padding-x: 1rem;
4103
  --bs-dropdown-header-padding-y: 0.5rem;
4104
  position: absolute;
4105
  z-index: var(--bs-dropdown-zindex);
4106
  display: none;
4107
  min-width: var(--bs-dropdown-min-width);
4108
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4109
  margin: 0;
4110
  font-size: var(--bs-dropdown-font-size);
4111
  color: var(--bs-dropdown-color);
4112
  text-align: left;
4113
  list-style: none;
4114
  background-color: var(--bs-dropdown-bg);
4115
  background-clip: padding-box;
4116
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4117
  border-radius: var(--bs-dropdown-border-radius);
4118
}
16848 stevensc 4119
 
4120
.dropdown-menu[data-bs-popper],
4121
[data-bs-popper].tt-menu {
16825 efrain 4122
  top: 100%;
4123
  left: 0;
4124
  margin-top: var(--bs-dropdown-spacer);
4125
}
4126
 
4127
.dropdown-menu-start {
4128
  --bs-position: start;
4129
}
16848 stevensc 4130
 
16825 efrain 4131
.dropdown-menu-start[data-bs-popper] {
4132
  right: auto;
4133
  left: 0;
4134
}
4135
 
4136
.dropdown-menu-end {
4137
  --bs-position: end;
4138
}
16848 stevensc 4139
 
16825 efrain 4140
.dropdown-menu-end[data-bs-popper] {
4141
  right: 0;
4142
  left: auto;
4143
}
4144
 
4145
@media (min-width: 576px) {
4146
  .dropdown-menu-sm-start {
4147
    --bs-position: start;
4148
  }
16848 stevensc 4149
 
16825 efrain 4150
  .dropdown-menu-sm-start[data-bs-popper] {
4151
    right: auto;
4152
    left: 0;
4153
  }
16848 stevensc 4154
 
16825 efrain 4155
  .dropdown-menu-sm-end {
4156
    --bs-position: end;
4157
  }
16848 stevensc 4158
 
16825 efrain 4159
  .dropdown-menu-sm-end[data-bs-popper] {
4160
    right: 0;
4161
    left: auto;
4162
  }
4163
}
16848 stevensc 4164
 
16825 efrain 4165
@media (min-width: 768px) {
4166
  .dropdown-menu-md-start {
4167
    --bs-position: start;
4168
  }
16848 stevensc 4169
 
16825 efrain 4170
  .dropdown-menu-md-start[data-bs-popper] {
4171
    right: auto;
4172
    left: 0;
4173
  }
16848 stevensc 4174
 
16825 efrain 4175
  .dropdown-menu-md-end {
4176
    --bs-position: end;
4177
  }
16848 stevensc 4178
 
16825 efrain 4179
  .dropdown-menu-md-end[data-bs-popper] {
4180
    right: 0;
4181
    left: auto;
4182
  }
4183
}
16848 stevensc 4184
 
16825 efrain 4185
@media (min-width: 992px) {
4186
  .dropdown-menu-lg-start {
4187
    --bs-position: start;
4188
  }
16848 stevensc 4189
 
16825 efrain 4190
  .dropdown-menu-lg-start[data-bs-popper] {
4191
    right: auto;
4192
    left: 0;
4193
  }
16848 stevensc 4194
 
16825 efrain 4195
  .dropdown-menu-lg-end {
4196
    --bs-position: end;
4197
  }
16848 stevensc 4198
 
16825 efrain 4199
  .dropdown-menu-lg-end[data-bs-popper] {
4200
    right: 0;
4201
    left: auto;
4202
  }
4203
}
16848 stevensc 4204
 
16825 efrain 4205
@media (min-width: 1200px) {
4206
  .dropdown-menu-xl-start {
4207
    --bs-position: start;
4208
  }
16848 stevensc 4209
 
16825 efrain 4210
  .dropdown-menu-xl-start[data-bs-popper] {
4211
    right: auto;
4212
    left: 0;
4213
  }
16848 stevensc 4214
 
16825 efrain 4215
  .dropdown-menu-xl-end {
4216
    --bs-position: end;
4217
  }
16848 stevensc 4218
 
16825 efrain 4219
  .dropdown-menu-xl-end[data-bs-popper] {
4220
    right: 0;
4221
    left: auto;
4222
  }
4223
}
16848 stevensc 4224
 
16825 efrain 4225
@media (min-width: 1400px) {
4226
  .dropdown-menu-xxl-start {
4227
    --bs-position: start;
4228
  }
16848 stevensc 4229
 
16825 efrain 4230
  .dropdown-menu-xxl-start[data-bs-popper] {
4231
    right: auto;
4232
    left: 0;
4233
  }
16848 stevensc 4234
 
16825 efrain 4235
  .dropdown-menu-xxl-end {
4236
    --bs-position: end;
4237
  }
16848 stevensc 4238
 
16825 efrain 4239
  .dropdown-menu-xxl-end[data-bs-popper] {
4240
    right: 0;
4241
    left: auto;
4242
  }
4243
}
16848 stevensc 4244
 
4245
.dropup .dropdown-menu[data-bs-popper],
4246
.dropup [data-bs-popper].tt-menu {
16825 efrain 4247
  top: auto;
4248
  bottom: 100%;
4249
  margin-top: 0;
4250
  margin-bottom: var(--bs-dropdown-spacer);
4251
}
16848 stevensc 4252
 
16825 efrain 4253
.dropup .dropdown-toggle::after {
4254
  display: inline-block;
4255
  margin-left: 0.255em;
4256
  vertical-align: 0.255em;
4257
  content: "";
4258
  border-top: 0;
4259
  border-right: 0.3em solid transparent;
4260
  border-bottom: 0.3em solid;
4261
  border-left: 0.3em solid transparent;
4262
}
16848 stevensc 4263
 
16825 efrain 4264
.dropup .dropdown-toggle:empty::after {
4265
  margin-left: 0;
4266
}
4267
 
16848 stevensc 4268
.dropend .dropdown-menu[data-bs-popper],
4269
.dropend [data-bs-popper].tt-menu {
16825 efrain 4270
  top: 0;
4271
  right: auto;
4272
  left: 100%;
4273
  margin-top: 0;
4274
  margin-left: var(--bs-dropdown-spacer);
4275
}
16848 stevensc 4276
 
16825 efrain 4277
.dropend .dropdown-toggle::after {
4278
  display: inline-block;
4279
  margin-left: 0.255em;
4280
  vertical-align: 0.255em;
4281
  content: "";
4282
  border-top: 0.3em solid transparent;
4283
  border-right: 0;
4284
  border-bottom: 0.3em solid transparent;
4285
  border-left: 0.3em solid;
4286
}
16848 stevensc 4287
 
16825 efrain 4288
.dropend .dropdown-toggle:empty::after {
4289
  margin-left: 0;
4290
}
16848 stevensc 4291
 
16825 efrain 4292
.dropend .dropdown-toggle::after {
4293
  vertical-align: 0;
4294
}
4295
 
16848 stevensc 4296
.dropstart .dropdown-menu[data-bs-popper],
4297
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4298
  top: 0;
4299
  right: 100%;
4300
  left: auto;
4301
  margin-top: 0;
4302
  margin-right: var(--bs-dropdown-spacer);
4303
}
16848 stevensc 4304
 
16825 efrain 4305
.dropstart .dropdown-toggle::after {
4306
  display: inline-block;
4307
  margin-left: 0.255em;
4308
  vertical-align: 0.255em;
4309
  content: "";
4310
}
16848 stevensc 4311
 
16825 efrain 4312
.dropstart .dropdown-toggle::after {
4313
  display: none;
4314
}
16848 stevensc 4315
 
16825 efrain 4316
.dropstart .dropdown-toggle::before {
4317
  display: inline-block;
4318
  margin-right: 0.255em;
4319
  vertical-align: 0.255em;
4320
  content: "";
4321
  border-top: 0.3em solid transparent;
4322
  border-right: 0.3em solid;
4323
  border-bottom: 0.3em solid transparent;
4324
}
16848 stevensc 4325
 
16825 efrain 4326
.dropstart .dropdown-toggle:empty::after {
4327
  margin-left: 0;
4328
}
16848 stevensc 4329
 
16825 efrain 4330
.dropstart .dropdown-toggle::before {
4331
  vertical-align: 0;
4332
}
4333
 
4334
.dropdown-divider {
4335
  height: 0;
4336
  margin: var(--bs-dropdown-divider-margin-y) 0;
4337
  overflow: hidden;
4338
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4339
  opacity: 1;
4340
}
4341
 
16848 stevensc 4342
.dropdown-item,
4343
.tt-menu .tt-suggestion {
16825 efrain 4344
  display: block;
4345
  width: 100%;
4346
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4347
  clear: both;
4348
  font-weight: 400;
4349
  color: var(--bs-dropdown-link-color);
4350
  text-align: inherit;
4351
  white-space: nowrap;
4352
  background-color: transparent;
4353
  border: 0;
4354
}
16848 stevensc 4355
 
4356
.dropdown-item:hover,
4357
.tt-menu .tt-suggestion:hover,
4358
.dropdown-item:focus,
4359
.tt-menu .tt-suggestion:focus {
16825 efrain 4360
  color: var(--bs-dropdown-link-hover-color);
4361
  background-color: var(--bs-dropdown-link-hover-bg);
4362
}
16848 stevensc 4363
 
4364
.dropdown-item.active,
4365
.tt-menu .active.tt-suggestion,
4366
.dropdown-item:active,
4367
.tt-menu .tt-suggestion:active {
16825 efrain 4368
  color: var(--bs-dropdown-link-active-color);
4369
  text-decoration: none;
4370
  background-color: var(--bs-dropdown-link-active-bg);
4371
}
16848 stevensc 4372
 
4373
.dropdown-item.disabled,
4374
.tt-menu .disabled.tt-suggestion,
4375
.dropdown-item:disabled,
4376
.tt-menu .tt-suggestion:disabled {
16825 efrain 4377
  color: var(--bs-dropdown-link-disabled-color);
4378
  pointer-events: none;
4379
  background-color: transparent;
4380
}
4381
 
16848 stevensc 4382
.dropdown-menu.show,
4383
.show.tt-menu {
16825 efrain 4384
  display: block;
4385
}
4386
 
4387
.dropdown-header {
4388
  display: block;
4389
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4390
  margin-bottom: 0;
4391
  font-size: 0.812rem;
4392
  color: var(--bs-dropdown-header-color);
4393
  white-space: nowrap;
4394
}
4395
 
4396
.dropdown-item-text {
4397
  display: block;
4398
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4399
  color: var(--bs-dropdown-link-color);
4400
}
4401
 
4402
.dropdown-menu-dark {
4403
  --bs-dropdown-color: #dee2e6;
4404
  --bs-dropdown-bg: #212a3a;
4405
  --bs-dropdown-border-color: #f2f4f9;
4406
  --bs-dropdown-box-shadow: ;
4407
  --bs-dropdown-link-color: #dee2e6;
4408
  --bs-dropdown-link-hover-color: #fff;
4409
  --bs-dropdown-divider-bg: #f2f4f9;
4410
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4411
  --bs-dropdown-link-active-color: #fff;
4412
  --bs-dropdown-link-active-bg: #6571ff;
4413
  --bs-dropdown-link-disabled-color: #aeb7c5;
4414
  --bs-dropdown-header-color: #aeb7c5;
4415
}
4416
 
4417
.btn-group,
4418
.btn-group-vertical {
4419
  position: relative;
4420
  display: inline-flex;
4421
  vertical-align: middle;
4422
}
16848 stevensc 4423
 
4424
.btn-group>.btn,
4425
.wizard>.actions .btn-group>a,
4426
div.tox .btn-group>.tox-button,
4427
.swal2-popup .swal2-actions .btn-group>button,
4428
.fc .btn-group>.fc-button-primary,
4429
.btn-group-vertical>.btn,
4430
.wizard>.actions .btn-group-vertical>a,
4431
div.tox .btn-group-vertical>.tox-button,
4432
.swal2-popup .swal2-actions .btn-group-vertical>button,
4433
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4434
  position: relative;
4435
  flex: 1 1 auto;
4436
}
16848 stevensc 4437
 
4438
.btn-group>.btn-check:checked+.btn,
4439
.wizard>.actions .btn-group>.btn-check:checked+a,
4440
div.tox .btn-group>.btn-check:checked+.tox-button,
4441
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4442
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4443
.btn-group>.btn-check:focus+.btn,
4444
.wizard>.actions .btn-group>.btn-check:focus+a,
4445
div.tox .btn-group>.btn-check:focus+.tox-button,
4446
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4447
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4448
.btn-group>.btn:hover,
4449
.wizard>.actions .btn-group>a:hover,
4450
div.tox .btn-group>.tox-button:hover,
4451
.swal2-popup .swal2-actions .btn-group>button:hover,
4452
.fc .btn-group>.fc-button-primary:hover,
4453
.btn-group>.btn:focus,
4454
.wizard>.actions .btn-group>a:focus,
4455
div.tox .btn-group>.tox-button:focus,
4456
.swal2-popup .swal2-actions .btn-group>button:focus,
4457
.fc .btn-group>.fc-button-primary:focus,
4458
.btn-group>.btn:active,
4459
.wizard>.actions .btn-group>a:active,
4460
div.tox .btn-group>.tox-button:active,
4461
.swal2-popup .swal2-actions .btn-group>button:active,
4462
.fc .btn-group>.fc-button-primary:active,
4463
.btn-group>.btn.active,
4464
.wizard>.actions .btn-group>a.active,
4465
div.tox .btn-group>.active.tox-button,
4466
.swal2-popup .swal2-actions .btn-group>button.active,
4467
.fc .btn-group>.active.fc-button-primary,
4468
.btn-group-vertical>.btn-check:checked+.btn,
4469
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4470
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4471
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4472
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4473
.btn-group-vertical>.btn-check:focus+.btn,
4474
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4475
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4476
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4477
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4478
.btn-group-vertical>.btn:hover,
4479
.wizard>.actions .btn-group-vertical>a:hover,
4480
div.tox .btn-group-vertical>.tox-button:hover,
4481
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4482
.fc .btn-group-vertical>.fc-button-primary:hover,
4483
.btn-group-vertical>.btn:focus,
4484
.wizard>.actions .btn-group-vertical>a:focus,
4485
div.tox .btn-group-vertical>.tox-button:focus,
4486
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4487
.fc .btn-group-vertical>.fc-button-primary:focus,
4488
.btn-group-vertical>.btn:active,
4489
.wizard>.actions .btn-group-vertical>a:active,
4490
div.tox .btn-group-vertical>.tox-button:active,
4491
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4492
.fc .btn-group-vertical>.fc-button-primary:active,
4493
.btn-group-vertical>.btn.active,
4494
.wizard>.actions .btn-group-vertical>a.active,
4495
div.tox .btn-group-vertical>.active.tox-button,
4496
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4497
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4498
  z-index: 1;
4499
}
4500
 
4501
.btn-toolbar {
4502
  display: flex;
4503
  flex-wrap: wrap;
4504
  justify-content: flex-start;
4505
}
16848 stevensc 4506
 
16825 efrain 4507
.btn-toolbar .input-group {
4508
  width: auto;
4509
}
4510
 
4511
.btn-group {
4512
  border-radius: 0.25rem;
4513
}
16848 stevensc 4514
 
4515
.btn-group> :not(.btn-check:first-child)+.btn,
4516
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4517
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4518
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4519
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4520
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4521
  margin-left: -1px;
4522
}
16848 stevensc 4523
 
4524
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4525
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4526
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4527
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4528
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4529
.btn-group>.btn.dropdown-toggle-split:first-child,
4530
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4531
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4532
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4533
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4534
.btn-group>.btn-group:not(:last-child)>.btn,
4535
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4536
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4537
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4538
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4539
  border-top-right-radius: 0;
4540
  border-bottom-right-radius: 0;
4541
}
16848 stevensc 4542
 
4543
.btn-group>.btn:nth-child(n+3),
4544
.wizard>.actions .btn-group>a:nth-child(n+3),
4545
div.tox .btn-group>.tox-button:nth-child(n+3),
4546
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4547
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4548
.btn-group> :not(.btn-check)+.btn,
4549
.wizard>.actions .btn-group> :not(.btn-check)+a,
4550
div.tox .btn-group> :not(.btn-check)+.tox-button,
4551
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4552
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4553
.btn-group>.btn-group:not(:first-child)>.btn,
4554
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4555
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4556
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4557
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4558
  border-top-left-radius: 0;
4559
  border-bottom-left-radius: 0;
4560
}
4561
 
4562
.dropdown-toggle-split {
4563
  padding-right: 0.6rem;
4564
  padding-left: 0.6rem;
4565
}
16848 stevensc 4566
 
4567
.dropdown-toggle-split::after,
4568
.dropup .dropdown-toggle-split::after,
4569
.dropend .dropdown-toggle-split::after {
16825 efrain 4570
  margin-left: 0;
4571
}
16848 stevensc 4572
 
16825 efrain 4573
.dropstart .dropdown-toggle-split::before {
4574
  margin-right: 0;
4575
}
4576
 
16848 stevensc 4577
.btn-sm+.dropdown-toggle-split,
4578
.fc .fc-button-primary+.dropdown-toggle-split,
4579
.btn-group-sm>.btn+.dropdown-toggle-split,
4580
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4581
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4582
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4583
  padding-right: 0.6rem;
4584
  padding-left: 0.6rem;
4585
}
4586
 
16848 stevensc 4587
.btn-lg+.dropdown-toggle-split,
4588
.btn-group-lg>.btn+.dropdown-toggle-split,
4589
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4590
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4591
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4592
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4593
  padding-right: 0.6rem;
4594
  padding-left: 0.6rem;
4595
}
4596
 
4597
.btn-group-vertical {
4598
  flex-direction: column;
4599
  align-items: flex-start;
4600
  justify-content: center;
4601
}
16848 stevensc 4602
 
4603
.btn-group-vertical>.btn,
4604
.wizard>.actions .btn-group-vertical>a,
4605
div.tox .btn-group-vertical>.tox-button,
4606
.swal2-popup .swal2-actions .btn-group-vertical>button,
4607
.fc .btn-group-vertical>.fc-button-primary,
4608
.btn-group-vertical>.btn-group {
16825 efrain 4609
  width: 100%;
4610
}
16848 stevensc 4611
 
4612
.btn-group-vertical>.btn:not(:first-child),
4613
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4614
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4615
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4616
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4617
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4618
  margin-top: -1px;
4619
}
16848 stevensc 4620
 
4621
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4622
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4623
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4624
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4625
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4626
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4627
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4628
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4629
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4630
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4631
  border-bottom-right-radius: 0;
4632
  border-bottom-left-radius: 0;
4633
}
16848 stevensc 4634
 
4635
.btn-group-vertical>.btn~.btn,
4636
.wizard>.actions .btn-group-vertical>a~.btn,
4637
.wizard>.actions .btn-group-vertical>.btn~a,
4638
.wizard>.actions .btn-group-vertical>a~a,
4639
div.tox .btn-group-vertical>.tox-button~.btn,
4640
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4641
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4642
div.tox .btn-group-vertical>.btn~.tox-button,
4643
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4644
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4645
div.tox .btn-group-vertical>.tox-button~.tox-button,
4646
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4647
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4648
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4649
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4650
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4651
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4652
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4653
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4654
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4655
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4656
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4657
.fc .btn-group-vertical>.fc-button-primary~.btn,
4658
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4659
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4660
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4661
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4662
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4663
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4664
.fc .btn-group-vertical>.btn~.fc-button-primary,
4665
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4666
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4667
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4668
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4669
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4670
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4671
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4672
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4673
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4674
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4675
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4676
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4677
  border-top-left-radius: 0;
4678
  border-top-right-radius: 0;
4679
}
4680
 
4681
.nav {
4682
  --bs-nav-link-padding-x: 1rem;
4683
  --bs-nav-link-padding-y: 0.5rem;
4684
  --bs-nav-link-font-weight: ;
4685
  --bs-nav-link-color: var(--bs-link-color);
4686
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4687
  --bs-nav-link-disabled-color: #7987a1;
4688
  display: flex;
4689
  flex-wrap: wrap;
4690
  padding-left: 0;
4691
  margin-bottom: 0;
4692
  list-style: none;
4693
}
4694
 
4695
.nav-link {
4696
  display: block;
4697
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4698
  font-size: var(--bs-nav-link-font-size);
4699
  font-weight: var(--bs-nav-link-font-weight);
4700
  color: var(--bs-nav-link-color);
4701
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4702
}
16848 stevensc 4703
 
16825 efrain 4704
@media (prefers-reduced-motion: reduce) {
4705
  .nav-link {
4706
    transition: none;
4707
  }
4708
}
16848 stevensc 4709
 
4710
.nav-link:hover,
4711
.nav-link:focus {
16825 efrain 4712
  color: var(--bs-nav-link-hover-color);
4713
}
16848 stevensc 4714
 
16825 efrain 4715
.nav-link.disabled {
4716
  color: var(--bs-nav-link-disabled-color);
4717
  pointer-events: none;
4718
  cursor: default;
4719
}
4720
 
4721
.nav-tabs {
4722
  --bs-nav-tabs-border-width: 1px;
4723
  --bs-nav-tabs-border-color: #dee2e6;
4724
  --bs-nav-tabs-border-radius: 0.25rem;
4725
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4726
  --bs-nav-tabs-link-active-color: #41516c;
4727
  --bs-nav-tabs-link-active-bg: #fff;
4728
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4729
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4730
}
16848 stevensc 4731
 
16825 efrain 4732
.nav-tabs .nav-link {
4733
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4734
  background: none;
4735
  border: var(--bs-nav-tabs-border-width) solid transparent;
4736
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4737
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4738
}
16848 stevensc 4739
 
4740
.nav-tabs .nav-link:hover,
4741
.nav-tabs .nav-link:focus {
16825 efrain 4742
  isolation: isolate;
4743
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4744
}
16848 stevensc 4745
 
4746
.nav-tabs .nav-link.disabled,
4747
.nav-tabs .nav-link:disabled {
16825 efrain 4748
  color: var(--bs-nav-link-disabled-color);
4749
  background-color: transparent;
4750
  border-color: transparent;
4751
}
16848 stevensc 4752
 
16825 efrain 4753
.nav-tabs .nav-link.active,
4754
.nav-tabs .nav-item.show .nav-link {
4755
  color: var(--bs-nav-tabs-link-active-color);
4756
  background-color: var(--bs-nav-tabs-link-active-bg);
4757
  border-color: var(--bs-nav-tabs-link-active-border-color);
4758
}
16848 stevensc 4759
 
4760
.nav-tabs .dropdown-menu,
4761
.nav-tabs .tt-menu {
16825 efrain 4762
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4763
  border-top-left-radius: 0;
4764
  border-top-right-radius: 0;
4765
}
4766
 
4767
.nav-pills {
4768
  --bs-nav-pills-border-radius: 0.25rem;
4769
  --bs-nav-pills-link-active-color: #fff;
4770
  --bs-nav-pills-link-active-bg: #6571ff;
4771
}
16848 stevensc 4772
 
16825 efrain 4773
.nav-pills .nav-link {
4774
  background: none;
4775
  border: 0;
4776
  border-radius: var(--bs-nav-pills-border-radius);
4777
}
16848 stevensc 4778
 
16825 efrain 4779
.nav-pills .nav-link:disabled {
4780
  color: var(--bs-nav-link-disabled-color);
4781
  background-color: transparent;
4782
  border-color: transparent;
4783
}
16848 stevensc 4784
 
16825 efrain 4785
.nav-pills .nav-link.active,
16848 stevensc 4786
.nav-pills .show>.nav-link {
16825 efrain 4787
  color: var(--bs-nav-pills-link-active-color);
4788
  background-color: var(--bs-nav-pills-link-active-bg);
4789
}
4790
 
16848 stevensc 4791
.nav-fill>.nav-link,
16825 efrain 4792
.nav-fill .nav-item {
4793
  flex: 1 1 auto;
4794
  text-align: center;
4795
}
4796
 
16848 stevensc 4797
.nav-justified>.nav-link,
16825 efrain 4798
.nav-justified .nav-item {
4799
  flex-basis: 0;
4800
  flex-grow: 1;
4801
  text-align: center;
4802
}
4803
 
4804
.nav-fill .nav-item .nav-link,
4805
.nav-justified .nav-item .nav-link {
4806
  width: 100%;
4807
}
4808
 
16848 stevensc 4809
.tab-content>.tab-pane {
16825 efrain 4810
  display: none;
4811
}
16848 stevensc 4812
 
4813
.tab-content>.active {
16825 efrain 4814
  display: block;
4815
}
4816
 
4817
.navbar {
4818
  --bs-navbar-padding-x: 0;
4819
  --bs-navbar-padding-y: 0.5rem;
4820
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4821
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4822
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4823
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4824
  --bs-navbar-brand-padding-y: 0.40625rem;
4825
  --bs-navbar-brand-margin-end: 1rem;
4826
  --bs-navbar-brand-font-size: 1rem;
4827
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4828
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4829
  --bs-navbar-nav-link-padding-x: 0.5rem;
4830
  --bs-navbar-toggler-padding-y: 0.25rem;
4831
  --bs-navbar-toggler-padding-x: 0.75rem;
4832
  --bs-navbar-toggler-font-size: 1rem;
4833
  --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");
4834
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4835
  --bs-navbar-toggler-border-radius: 0.25rem;
4836
  --bs-navbar-toggler-focus-width: 0;
4837
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4838
  position: relative;
4839
  display: flex;
4840
  flex-wrap: wrap;
4841
  align-items: center;
4842
  justify-content: space-between;
4843
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4844
}
16848 stevensc 4845
 
4846
.navbar>.container,
4847
.navbar>.container-fluid,
4848
.navbar>.container-sm,
4849
.navbar>.container-md,
4850
.navbar>.container-lg,
4851
.navbar>.container-xl,
4852
.navbar>.container-xxl {
16825 efrain 4853
  display: flex;
4854
  flex-wrap: inherit;
4855
  align-items: center;
4856
  justify-content: space-between;
4857
}
16848 stevensc 4858
 
16825 efrain 4859
.navbar-brand {
4860
  padding-top: var(--bs-navbar-brand-padding-y);
4861
  padding-bottom: var(--bs-navbar-brand-padding-y);
4862
  margin-right: var(--bs-navbar-brand-margin-end);
4863
  font-size: var(--bs-navbar-brand-font-size);
4864
  color: var(--bs-navbar-brand-color);
4865
  white-space: nowrap;
4866
}
16848 stevensc 4867
 
4868
.navbar-brand:hover,
4869
.navbar-brand:focus {
16825 efrain 4870
  color: var(--bs-navbar-brand-hover-color);
4871
}
4872
 
4873
.navbar-nav {
4874
  --bs-nav-link-padding-x: 0;
4875
  --bs-nav-link-padding-y: 0.5rem;
4876
  --bs-nav-link-font-weight: ;
4877
  --bs-nav-link-color: var(--bs-navbar-color);
4878
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4879
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4880
  display: flex;
4881
  flex-direction: column;
4882
  padding-left: 0;
4883
  margin-bottom: 0;
4884
  list-style: none;
4885
}
16848 stevensc 4886
 
4887
.navbar-nav .show>.nav-link,
16825 efrain 4888
.navbar-nav .nav-link.active {
4889
  color: var(--bs-navbar-active-color);
4890
}
16848 stevensc 4891
 
4892
.navbar-nav .dropdown-menu,
4893
.navbar-nav .tt-menu {
16825 efrain 4894
  position: static;
4895
}
4896
 
4897
.navbar-text {
4898
  padding-top: 0.5rem;
4899
  padding-bottom: 0.5rem;
4900
  color: var(--bs-navbar-color);
4901
}
16848 stevensc 4902
 
16825 efrain 4903
.navbar-text a,
4904
.navbar-text a:hover,
4905
.navbar-text a:focus {
4906
  color: var(--bs-navbar-active-color);
4907
}
4908
 
4909
.navbar-collapse {
4910
  flex-basis: 100%;
4911
  flex-grow: 1;
4912
  align-items: center;
4913
}
4914
 
4915
.navbar-toggler {
4916
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4917
  font-size: var(--bs-navbar-toggler-font-size);
4918
  line-height: 1;
4919
  color: var(--bs-navbar-color);
4920
  background-color: transparent;
4921
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4922
  border-radius: var(--bs-navbar-toggler-border-radius);
4923
  transition: var(--bs-navbar-toggler-transition);
4924
}
16848 stevensc 4925
 
16825 efrain 4926
@media (prefers-reduced-motion: reduce) {
4927
  .navbar-toggler {
4928
    transition: none;
4929
  }
4930
}
16848 stevensc 4931
 
16825 efrain 4932
.navbar-toggler:hover {
4933
  text-decoration: none;
4934
}
16848 stevensc 4935
 
16825 efrain 4936
.navbar-toggler:focus {
4937
  text-decoration: none;
4938
  outline: 0;
4939
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4940
}
4941
 
4942
.navbar-toggler-icon {
4943
  display: inline-block;
4944
  width: 1.5em;
4945
  height: 1.5em;
4946
  vertical-align: middle;
4947
  background-image: var(--bs-navbar-toggler-icon-bg);
4948
  background-repeat: no-repeat;
4949
  background-position: center;
4950
  background-size: 100%;
4951
}
4952
 
4953
.navbar-nav-scroll {
4954
  max-height: var(--bs-scroll-height, 75vh);
4955
  overflow-y: auto;
4956
}
4957
 
4958
@media (min-width: 576px) {
4959
  .navbar-expand-sm {
4960
    flex-wrap: nowrap;
4961
    justify-content: flex-start;
4962
  }
16848 stevensc 4963
 
16825 efrain 4964
  .navbar-expand-sm .navbar-nav {
4965
    flex-direction: row;
4966
  }
16848 stevensc 4967
 
4968
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4969
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4970
    position: absolute;
4971
  }
16848 stevensc 4972
 
16825 efrain 4973
  .navbar-expand-sm .navbar-nav .nav-link {
4974
    padding-right: var(--bs-navbar-nav-link-padding-x);
4975
    padding-left: var(--bs-navbar-nav-link-padding-x);
4976
  }
16848 stevensc 4977
 
16825 efrain 4978
  .navbar-expand-sm .navbar-nav-scroll {
4979
    overflow: visible;
4980
  }
16848 stevensc 4981
 
16825 efrain 4982
  .navbar-expand-sm .navbar-collapse {
4983
    display: flex !important;
4984
    flex-basis: auto;
4985
  }
16848 stevensc 4986
 
16825 efrain 4987
  .navbar-expand-sm .navbar-toggler {
4988
    display: none;
4989
  }
16848 stevensc 4990
 
16825 efrain 4991
  .navbar-expand-sm .offcanvas {
4992
    position: static;
4993
    z-index: auto;
4994
    flex-grow: 1;
4995
    width: auto !important;
4996
    height: auto !important;
4997
    visibility: visible !important;
4998
    background-color: transparent !important;
4999
    border: 0 !important;
5000
    transform: none !important;
5001
    transition: none;
5002
  }
16848 stevensc 5003
 
16825 efrain 5004
  .navbar-expand-sm .offcanvas .offcanvas-header {
5005
    display: none;
5006
  }
16848 stevensc 5007
 
16825 efrain 5008
  .navbar-expand-sm .offcanvas .offcanvas-body {
5009
    display: flex;
5010
    flex-grow: 0;
5011
    padding: 0;
5012
    overflow-y: visible;
5013
  }
5014
}
16848 stevensc 5015
 
16825 efrain 5016
@media (min-width: 768px) {
5017
  .navbar-expand-md {
5018
    flex-wrap: nowrap;
5019
    justify-content: flex-start;
5020
  }
16848 stevensc 5021
 
16825 efrain 5022
  .navbar-expand-md .navbar-nav {
5023
    flex-direction: row;
5024
  }
16848 stevensc 5025
 
5026
  .navbar-expand-md .navbar-nav .dropdown-menu,
5027
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 5028
    position: absolute;
5029
  }
16848 stevensc 5030
 
16825 efrain 5031
  .navbar-expand-md .navbar-nav .nav-link {
5032
    padding-right: var(--bs-navbar-nav-link-padding-x);
5033
    padding-left: var(--bs-navbar-nav-link-padding-x);
5034
  }
16848 stevensc 5035
 
16825 efrain 5036
  .navbar-expand-md .navbar-nav-scroll {
5037
    overflow: visible;
5038
  }
16848 stevensc 5039
 
16825 efrain 5040
  .navbar-expand-md .navbar-collapse {
5041
    display: flex !important;
5042
    flex-basis: auto;
5043
  }
16848 stevensc 5044
 
16825 efrain 5045
  .navbar-expand-md .navbar-toggler {
5046
    display: none;
5047
  }
16848 stevensc 5048
 
16825 efrain 5049
  .navbar-expand-md .offcanvas {
5050
    position: static;
5051
    z-index: auto;
5052
    flex-grow: 1;
5053
    width: auto !important;
5054
    height: auto !important;
5055
    visibility: visible !important;
5056
    background-color: transparent !important;
5057
    border: 0 !important;
5058
    transform: none !important;
5059
    transition: none;
5060
  }
16848 stevensc 5061
 
16825 efrain 5062
  .navbar-expand-md .offcanvas .offcanvas-header {
5063
    display: none;
5064
  }
16848 stevensc 5065
 
16825 efrain 5066
  .navbar-expand-md .offcanvas .offcanvas-body {
5067
    display: flex;
5068
    flex-grow: 0;
5069
    padding: 0;
5070
    overflow-y: visible;
5071
  }
5072
}
16848 stevensc 5073
 
16825 efrain 5074
@media (min-width: 992px) {
5075
  .navbar-expand-lg {
5076
    flex-wrap: nowrap;
5077
    justify-content: flex-start;
5078
  }
16848 stevensc 5079
 
16825 efrain 5080
  .navbar-expand-lg .navbar-nav {
5081
    flex-direction: row;
5082
  }
16848 stevensc 5083
 
5084
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5085
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5086
    position: absolute;
5087
  }
16848 stevensc 5088
 
16825 efrain 5089
  .navbar-expand-lg .navbar-nav .nav-link {
5090
    padding-right: var(--bs-navbar-nav-link-padding-x);
5091
    padding-left: var(--bs-navbar-nav-link-padding-x);
5092
  }
16848 stevensc 5093
 
16825 efrain 5094
  .navbar-expand-lg .navbar-nav-scroll {
5095
    overflow: visible;
5096
  }
16848 stevensc 5097
 
16825 efrain 5098
  .navbar-expand-lg .navbar-collapse {
5099
    display: flex !important;
5100
    flex-basis: auto;
5101
  }
16848 stevensc 5102
 
16825 efrain 5103
  .navbar-expand-lg .navbar-toggler {
5104
    display: none;
5105
  }
16848 stevensc 5106
 
16825 efrain 5107
  .navbar-expand-lg .offcanvas {
5108
    position: static;
5109
    z-index: auto;
5110
    flex-grow: 1;
5111
    width: auto !important;
5112
    height: auto !important;
5113
    visibility: visible !important;
5114
    background-color: transparent !important;
5115
    border: 0 !important;
5116
    transform: none !important;
5117
    transition: none;
5118
  }
16848 stevensc 5119
 
16825 efrain 5120
  .navbar-expand-lg .offcanvas .offcanvas-header {
5121
    display: none;
5122
  }
16848 stevensc 5123
 
16825 efrain 5124
  .navbar-expand-lg .offcanvas .offcanvas-body {
5125
    display: flex;
5126
    flex-grow: 0;
5127
    padding: 0;
5128
    overflow-y: visible;
5129
  }
5130
}
16848 stevensc 5131
 
16825 efrain 5132
@media (min-width: 1200px) {
5133
  .navbar-expand-xl {
5134
    flex-wrap: nowrap;
5135
    justify-content: flex-start;
5136
  }
16848 stevensc 5137
 
16825 efrain 5138
  .navbar-expand-xl .navbar-nav {
5139
    flex-direction: row;
5140
  }
16848 stevensc 5141
 
5142
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5143
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5144
    position: absolute;
5145
  }
16848 stevensc 5146
 
16825 efrain 5147
  .navbar-expand-xl .navbar-nav .nav-link {
5148
    padding-right: var(--bs-navbar-nav-link-padding-x);
5149
    padding-left: var(--bs-navbar-nav-link-padding-x);
5150
  }
16848 stevensc 5151
 
16825 efrain 5152
  .navbar-expand-xl .navbar-nav-scroll {
5153
    overflow: visible;
5154
  }
16848 stevensc 5155
 
16825 efrain 5156
  .navbar-expand-xl .navbar-collapse {
5157
    display: flex !important;
5158
    flex-basis: auto;
5159
  }
16848 stevensc 5160
 
16825 efrain 5161
  .navbar-expand-xl .navbar-toggler {
5162
    display: none;
5163
  }
16848 stevensc 5164
 
16825 efrain 5165
  .navbar-expand-xl .offcanvas {
5166
    position: static;
5167
    z-index: auto;
5168
    flex-grow: 1;
5169
    width: auto !important;
5170
    height: auto !important;
5171
    visibility: visible !important;
5172
    background-color: transparent !important;
5173
    border: 0 !important;
5174
    transform: none !important;
5175
    transition: none;
5176
  }
16848 stevensc 5177
 
16825 efrain 5178
  .navbar-expand-xl .offcanvas .offcanvas-header {
5179
    display: none;
5180
  }
16848 stevensc 5181
 
16825 efrain 5182
  .navbar-expand-xl .offcanvas .offcanvas-body {
5183
    display: flex;
5184
    flex-grow: 0;
5185
    padding: 0;
5186
    overflow-y: visible;
5187
  }
5188
}
16848 stevensc 5189
 
16825 efrain 5190
@media (min-width: 1400px) {
5191
  .navbar-expand-xxl {
5192
    flex-wrap: nowrap;
5193
    justify-content: flex-start;
5194
  }
16848 stevensc 5195
 
16825 efrain 5196
  .navbar-expand-xxl .navbar-nav {
5197
    flex-direction: row;
5198
  }
16848 stevensc 5199
 
5200
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5201
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5202
    position: absolute;
5203
  }
16848 stevensc 5204
 
16825 efrain 5205
  .navbar-expand-xxl .navbar-nav .nav-link {
5206
    padding-right: var(--bs-navbar-nav-link-padding-x);
5207
    padding-left: var(--bs-navbar-nav-link-padding-x);
5208
  }
16848 stevensc 5209
 
16825 efrain 5210
  .navbar-expand-xxl .navbar-nav-scroll {
5211
    overflow: visible;
5212
  }
16848 stevensc 5213
 
16825 efrain 5214
  .navbar-expand-xxl .navbar-collapse {
5215
    display: flex !important;
5216
    flex-basis: auto;
5217
  }
16848 stevensc 5218
 
16825 efrain 5219
  .navbar-expand-xxl .navbar-toggler {
5220
    display: none;
5221
  }
16848 stevensc 5222
 
16825 efrain 5223
  .navbar-expand-xxl .offcanvas {
5224
    position: static;
5225
    z-index: auto;
5226
    flex-grow: 1;
5227
    width: auto !important;
5228
    height: auto !important;
5229
    visibility: visible !important;
5230
    background-color: transparent !important;
5231
    border: 0 !important;
5232
    transform: none !important;
5233
    transition: none;
5234
  }
16848 stevensc 5235
 
16825 efrain 5236
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5237
    display: none;
5238
  }
16848 stevensc 5239
 
16825 efrain 5240
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5241
    display: flex;
5242
    flex-grow: 0;
5243
    padding: 0;
5244
    overflow-y: visible;
5245
  }
5246
}
16848 stevensc 5247
 
16825 efrain 5248
.navbar-expand {
5249
  flex-wrap: nowrap;
5250
  justify-content: flex-start;
5251
}
16848 stevensc 5252
 
16825 efrain 5253
.navbar-expand .navbar-nav {
5254
  flex-direction: row;
5255
}
16848 stevensc 5256
 
5257
.navbar-expand .navbar-nav .dropdown-menu,
5258
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5259
  position: absolute;
5260
}
16848 stevensc 5261
 
16825 efrain 5262
.navbar-expand .navbar-nav .nav-link {
5263
  padding-right: var(--bs-navbar-nav-link-padding-x);
5264
  padding-left: var(--bs-navbar-nav-link-padding-x);
5265
}
16848 stevensc 5266
 
16825 efrain 5267
.navbar-expand .navbar-nav-scroll {
5268
  overflow: visible;
5269
}
16848 stevensc 5270
 
16825 efrain 5271
.navbar-expand .navbar-collapse {
5272
  display: flex !important;
5273
  flex-basis: auto;
5274
}
16848 stevensc 5275
 
16825 efrain 5276
.navbar-expand .navbar-toggler {
5277
  display: none;
5278
}
16848 stevensc 5279
 
16825 efrain 5280
.navbar-expand .offcanvas {
5281
  position: static;
5282
  z-index: auto;
5283
  flex-grow: 1;
5284
  width: auto !important;
5285
  height: auto !important;
5286
  visibility: visible !important;
5287
  background-color: transparent !important;
5288
  border: 0 !important;
5289
  transform: none !important;
5290
  transition: none;
5291
}
16848 stevensc 5292
 
16825 efrain 5293
.navbar-expand .offcanvas .offcanvas-header {
5294
  display: none;
5295
}
16848 stevensc 5296
 
16825 efrain 5297
.navbar-expand .offcanvas .offcanvas-body {
5298
  display: flex;
5299
  flex-grow: 0;
5300
  padding: 0;
5301
  overflow-y: visible;
5302
}
5303
 
5304
.navbar-dark {
5305
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5306
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5307
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5308
  --bs-navbar-active-color: #fff;
5309
  --bs-navbar-brand-color: #fff;
5310
  --bs-navbar-brand-hover-color: #fff;
5311
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5312
  --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");
5313
}
5314
 
5315
.card {
5316
  --bs-card-spacer-y: 1.5rem;
5317
  --bs-card-spacer-x: 1.5rem;
5318
  --bs-card-title-spacer-y: 0.875rem;
5319
  --bs-card-border-width: 1px;
5320
  --bs-card-border-color: #f2f4f9;
5321
  --bs-card-border-radius: 0.25rem;
5322
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5323
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5324
  --bs-card-cap-padding-y: 0.875rem;
5325
  --bs-card-cap-padding-x: 1.5rem;
5326
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5327
  --bs-card-cap-color: ;
5328
  --bs-card-height: ;
5329
  --bs-card-color: ;
5330
  --bs-card-bg: #fff;
5331
  --bs-card-img-overlay-padding: 1rem;
5332
  --bs-card-group-margin: 0.75rem;
5333
  position: relative;
5334
  display: flex;
5335
  flex-direction: column;
5336
  min-width: 0;
5337
  height: var(--bs-card-height);
5338
  word-wrap: break-word;
5339
  background-color: var(--bs-card-bg);
5340
  background-clip: border-box;
5341
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5342
  border-radius: var(--bs-card-border-radius);
5343
}
16848 stevensc 5344
 
5345
.card>hr {
16825 efrain 5346
  margin-right: 0;
5347
  margin-left: 0;
5348
}
16848 stevensc 5349
 
5350
.card>.list-group {
16825 efrain 5351
  border-top: inherit;
5352
  border-bottom: inherit;
5353
}
16848 stevensc 5354
 
5355
.card>.list-group:first-child {
16825 efrain 5356
  border-top-width: 0;
5357
  border-top-left-radius: var(--bs-card-inner-border-radius);
5358
  border-top-right-radius: var(--bs-card-inner-border-radius);
5359
}
16848 stevensc 5360
 
5361
.card>.list-group:last-child {
16825 efrain 5362
  border-bottom-width: 0;
5363
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5364
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5365
}
16848 stevensc 5366
 
5367
.card>.card-header+.list-group,
5368
.card>.list-group+.card-footer {
16825 efrain 5369
  border-top: 0;
5370
}
5371
 
5372
.card-body {
5373
  flex: 1 1 auto;
5374
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5375
  color: var(--bs-card-color);
5376
}
5377
 
5378
.card-title {
5379
  margin-bottom: var(--bs-card-title-spacer-y);
5380
}
5381
 
5382
.card-subtitle {
5383
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5384
  margin-bottom: 0;
5385
}
5386
 
5387
.card-text:last-child {
5388
  margin-bottom: 0;
5389
}
5390
 
16848 stevensc 5391
.card-link+.card-link {
16825 efrain 5392
  margin-left: var(--bs-card-spacer-x);
5393
}
5394
 
5395
.card-header {
5396
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5397
  margin-bottom: 0;
5398
  color: var(--bs-card-cap-color);
5399
  background-color: var(--bs-card-cap-bg);
5400
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5401
}
16848 stevensc 5402
 
16825 efrain 5403
.card-header:first-child {
5404
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5405
}
5406
 
5407
.card-footer {
5408
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5409
  color: var(--bs-card-cap-color);
5410
  background-color: var(--bs-card-cap-bg);
5411
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5412
}
16848 stevensc 5413
 
16825 efrain 5414
.card-footer:last-child {
5415
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5416
}
5417
 
5418
.card-header-tabs {
5419
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5420
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5421
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5422
  border-bottom: 0;
5423
}
16848 stevensc 5424
 
16825 efrain 5425
.card-header-tabs .nav-link.active {
5426
  background-color: var(--bs-card-bg);
5427
  border-bottom-color: var(--bs-card-bg);
5428
}
5429
 
5430
.card-header-pills {
5431
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5432
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5433
}
5434
 
5435
.card-img-overlay {
5436
  position: absolute;
5437
  top: 0;
5438
  right: 0;
5439
  bottom: 0;
5440
  left: 0;
5441
  padding: var(--bs-card-img-overlay-padding);
5442
  border-radius: var(--bs-card-inner-border-radius);
5443
}
5444
 
5445
.card-img,
5446
.card-img-top,
5447
.card-img-bottom {
5448
  width: 100%;
5449
}
5450
 
5451
.card-img,
5452
.card-img-top {
5453
  border-top-left-radius: var(--bs-card-inner-border-radius);
5454
  border-top-right-radius: var(--bs-card-inner-border-radius);
5455
}
5456
 
5457
.card-img,
5458
.card-img-bottom {
5459
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5460
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5461
}
5462
 
16848 stevensc 5463
.card-group>.card {
16825 efrain 5464
  margin-bottom: var(--bs-card-group-margin);
5465
}
16848 stevensc 5466
 
16825 efrain 5467
@media (min-width: 576px) {
5468
  .card-group {
5469
    display: flex;
5470
    flex-flow: row wrap;
5471
  }
16848 stevensc 5472
 
5473
  .card-group>.card {
16825 efrain 5474
    flex: 1 0 0%;
5475
    margin-bottom: 0;
5476
  }
16848 stevensc 5477
 
5478
  .card-group>.card+.card {
16825 efrain 5479
    margin-left: 0;
5480
    border-left: 0;
5481
  }
16848 stevensc 5482
 
5483
  .card-group>.card:not(:last-child) {
16825 efrain 5484
    border-top-right-radius: 0;
5485
    border-bottom-right-radius: 0;
5486
  }
16848 stevensc 5487
 
5488
  .card-group>.card:not(:last-child) .card-img-top,
5489
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5490
    border-top-right-radius: 0;
5491
  }
16848 stevensc 5492
 
5493
  .card-group>.card:not(:last-child) .card-img-bottom,
5494
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5495
    border-bottom-right-radius: 0;
5496
  }
16848 stevensc 5497
 
5498
  .card-group>.card:not(:first-child) {
16825 efrain 5499
    border-top-left-radius: 0;
5500
    border-bottom-left-radius: 0;
5501
  }
16848 stevensc 5502
 
5503
  .card-group>.card:not(:first-child) .card-img-top,
5504
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5505
    border-top-left-radius: 0;
5506
  }
16848 stevensc 5507
 
5508
  .card-group>.card:not(:first-child) .card-img-bottom,
5509
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5510
    border-bottom-left-radius: 0;
5511
  }
5512
}
5513
 
5514
.accordion {
5515
  --bs-accordion-color: #000;
5516
  --bs-accordion-bg: #fff;
5517
  --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;
5518
  --bs-accordion-border-color: #e9ecef;
5519
  --bs-accordion-border-width: 1px;
5520
  --bs-accordion-border-radius: 0.25rem;
5521
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5522
  --bs-accordion-btn-padding-x: 1.25rem;
5523
  --bs-accordion-btn-padding-y: 1rem;
5524
  --bs-accordion-btn-color: #000;
5525
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5526
  --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");
5527
  --bs-accordion-btn-icon-width: 0.875rem;
5528
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5529
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5530
  --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");
5531
  --bs-accordion-btn-focus-border-color: #cbd1db;
5532
  --bs-accordion-btn-focus-box-shadow: none;
5533
  --bs-accordion-body-padding-x: 1.25rem;
5534
  --bs-accordion-body-padding-y: 1rem;
5535
  --bs-accordion-active-color: #5b66e6;
5536
  --bs-accordion-active-bg: #f0f1ff;
5537
}
5538
 
5539
.accordion-button {
5540
  position: relative;
5541
  display: flex;
5542
  align-items: center;
5543
  width: 100%;
5544
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5545
  font-size: 0.875rem;
5546
  color: var(--bs-accordion-btn-color);
5547
  text-align: left;
5548
  background-color: var(--bs-accordion-btn-bg);
5549
  border: 0;
5550
  border-radius: 0;
5551
  overflow-anchor: none;
5552
  transition: var(--bs-accordion-transition);
5553
}
16848 stevensc 5554
 
16825 efrain 5555
@media (prefers-reduced-motion: reduce) {
5556
  .accordion-button {
5557
    transition: none;
5558
  }
5559
}
16848 stevensc 5560
 
16825 efrain 5561
.accordion-button:not(.collapsed) {
5562
  color: var(--bs-accordion-active-color);
5563
  background-color: var(--bs-accordion-active-bg);
5564
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5565
}
16848 stevensc 5566
 
16825 efrain 5567
.accordion-button:not(.collapsed)::after {
5568
  background-image: var(--bs-accordion-btn-active-icon);
5569
  transform: var(--bs-accordion-btn-icon-transform);
5570
}
16848 stevensc 5571
 
16825 efrain 5572
.accordion-button::after {
5573
  flex-shrink: 0;
5574
  width: var(--bs-accordion-btn-icon-width);
5575
  height: var(--bs-accordion-btn-icon-width);
5576
  margin-left: auto;
5577
  content: "";
5578
  background-image: var(--bs-accordion-btn-icon);
5579
  background-repeat: no-repeat;
5580
  background-size: var(--bs-accordion-btn-icon-width);
5581
  transition: var(--bs-accordion-btn-icon-transition);
5582
}
16848 stevensc 5583
 
16825 efrain 5584
@media (prefers-reduced-motion: reduce) {
5585
  .accordion-button::after {
5586
    transition: none;
5587
  }
5588
}
16848 stevensc 5589
 
16825 efrain 5590
.accordion-button:hover {
5591
  z-index: 2;
5592
}
16848 stevensc 5593
 
16825 efrain 5594
.accordion-button:focus {
5595
  z-index: 3;
5596
  border-color: var(--bs-accordion-btn-focus-border-color);
5597
  outline: 0;
5598
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5599
}
5600
 
5601
.accordion-header {
5602
  margin-bottom: 0;
5603
}
5604
 
5605
.accordion-item {
5606
  color: var(--bs-accordion-color);
5607
  background-color: var(--bs-accordion-bg);
5608
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5609
}
16848 stevensc 5610
 
16825 efrain 5611
.accordion-item:first-of-type {
5612
  border-top-left-radius: var(--bs-accordion-border-radius);
5613
  border-top-right-radius: var(--bs-accordion-border-radius);
5614
}
16848 stevensc 5615
 
16825 efrain 5616
.accordion-item:first-of-type .accordion-button {
5617
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5618
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5619
}
16848 stevensc 5620
 
16825 efrain 5621
.accordion-item:not(:first-of-type) {
5622
  border-top: 0;
5623
}
16848 stevensc 5624
 
16825 efrain 5625
.accordion-item:last-of-type {
5626
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5627
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5628
}
16848 stevensc 5629
 
16825 efrain 5630
.accordion-item:last-of-type .accordion-button.collapsed {
5631
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5632
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5633
}
16848 stevensc 5634
 
16825 efrain 5635
.accordion-item:last-of-type .accordion-collapse {
5636
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5637
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5638
}
5639
 
5640
.accordion-body {
5641
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5642
}
5643
 
5644
.accordion-flush .accordion-collapse {
5645
  border-width: 0;
5646
}
16848 stevensc 5647
 
16825 efrain 5648
.accordion-flush .accordion-item {
5649
  border-right: 0;
5650
  border-left: 0;
5651
  border-radius: 0;
5652
}
16848 stevensc 5653
 
16825 efrain 5654
.accordion-flush .accordion-item:first-child {
5655
  border-top: 0;
5656
}
16848 stevensc 5657
 
16825 efrain 5658
.accordion-flush .accordion-item:last-child {
5659
  border-bottom: 0;
5660
}
16848 stevensc 5661
 
5662
.accordion-flush .accordion-item .accordion-button,
5663
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5664
  border-radius: 0;
5665
}
5666
 
5667
.breadcrumb {
5668
  --bs-breadcrumb-padding-x: 0;
5669
  --bs-breadcrumb-padding-y: 0;
5670
  --bs-breadcrumb-margin-bottom: 1rem;
5671
  --bs-breadcrumb-bg: ;
5672
  --bs-breadcrumb-border-radius: ;
5673
  --bs-breadcrumb-divider-color: #7987a1;
5674
  --bs-breadcrumb-item-padding-x: 0.5rem;
5675
  --bs-breadcrumb-item-active-color: #7987a1;
5676
  display: flex;
5677
  flex-wrap: wrap;
5678
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5679
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5680
  font-size: var(--bs-breadcrumb-font-size);
5681
  list-style: none;
5682
  background-color: var(--bs-breadcrumb-bg);
5683
  border-radius: var(--bs-breadcrumb-border-radius);
5684
}
5685
 
16848 stevensc 5686
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5687
  padding-left: var(--bs-breadcrumb-item-padding-x);
5688
}
16848 stevensc 5689
 
5690
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5691
  float: left;
5692
  padding-right: var(--bs-breadcrumb-item-padding-x);
5693
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5694
  content: var(--bs-breadcrumb-divider, "/")
5695
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5696
  ;
16825 efrain 5697
}
16848 stevensc 5698
 
16825 efrain 5699
.breadcrumb-item.active {
5700
  color: var(--bs-breadcrumb-item-active-color);
5701
}
5702
 
5703
.pagination {
5704
  --bs-pagination-padding-x: 1rem;
5705
  --bs-pagination-padding-y: 0.469rem;
5706
  --bs-pagination-font-size: 0.875rem;
5707
  --bs-pagination-color: #6571ff;
5708
  --bs-pagination-bg: #fff;
5709
  --bs-pagination-border-width: 1px;
5710
  --bs-pagination-border-color: #dee2e6;
5711
  --bs-pagination-border-radius: 0.25rem;
5712
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5713
  --bs-pagination-hover-bg: #e9ecef;
5714
  --bs-pagination-hover-border-color: #dee2e6;
5715
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5716
  --bs-pagination-focus-bg: #e9ecef;
5717
  --bs-pagination-focus-box-shadow: none;
5718
  --bs-pagination-active-color: #fff;
5719
  --bs-pagination-active-bg: #6571ff;
5720
  --bs-pagination-active-border-color: #6571ff;
5721
  --bs-pagination-disabled-color: #7987a1;
5722
  --bs-pagination-disabled-bg: #fff;
5723
  --bs-pagination-disabled-border-color: #dee2e6;
5724
  display: flex;
5725
  padding-left: 0;
5726
  list-style: none;
5727
}
5728
 
5729
.page-link {
5730
  position: relative;
5731
  display: block;
5732
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5733
  font-size: var(--bs-pagination-font-size);
5734
  color: var(--bs-pagination-color);
5735
  background-color: var(--bs-pagination-bg);
5736
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5737
  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;
5738
}
16848 stevensc 5739
 
16825 efrain 5740
@media (prefers-reduced-motion: reduce) {
5741
  .page-link {
5742
    transition: none;
5743
  }
5744
}
16848 stevensc 5745
 
16825 efrain 5746
.page-link:hover {
5747
  z-index: 2;
5748
  color: var(--bs-pagination-hover-color);
5749
  background-color: var(--bs-pagination-hover-bg);
5750
  border-color: var(--bs-pagination-hover-border-color);
5751
}
16848 stevensc 5752
 
16825 efrain 5753
.page-link:focus {
5754
  z-index: 3;
5755
  color: var(--bs-pagination-focus-color);
5756
  background-color: var(--bs-pagination-focus-bg);
5757
  outline: 0;
5758
  box-shadow: var(--bs-pagination-focus-box-shadow);
5759
}
16848 stevensc 5760
 
5761
.page-link.active,
5762
.active>.page-link {
16825 efrain 5763
  z-index: 3;
5764
  color: var(--bs-pagination-active-color);
5765
  background-color: var(--bs-pagination-active-bg);
5766
  border-color: var(--bs-pagination-active-border-color);
5767
}
16848 stevensc 5768
 
5769
.page-link.disabled,
5770
.disabled>.page-link {
16825 efrain 5771
  color: var(--bs-pagination-disabled-color);
5772
  pointer-events: none;
5773
  background-color: var(--bs-pagination-disabled-bg);
5774
  border-color: var(--bs-pagination-disabled-border-color);
5775
}
5776
 
5777
.page-item:not(:first-child) .page-link {
5778
  margin-left: -1px;
5779
}
16848 stevensc 5780
 
16825 efrain 5781
.page-item:first-child .page-link {
5782
  border-top-left-radius: var(--bs-pagination-border-radius);
5783
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5784
}
16848 stevensc 5785
 
16825 efrain 5786
.page-item:last-child .page-link {
5787
  border-top-right-radius: var(--bs-pagination-border-radius);
5788
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5789
}
5790
 
5791
.pagination-lg {
5792
  --bs-pagination-padding-x: 1.1rem;
5793
  --bs-pagination-padding-y: 0.5rem;
5794
  --bs-pagination-font-size: 1rem;
5795
  --bs-pagination-border-radius: 0.5rem;
5796
}
5797
 
5798
.pagination-sm {
5799
  --bs-pagination-padding-x: 0.75rem;
5800
  --bs-pagination-padding-y: 0.391rem;
5801
  --bs-pagination-font-size: 0.812rem;
5802
  --bs-pagination-border-radius: 0.25rem;
5803
}
5804
 
5805
.badge {
5806
  --bs-badge-padding-x: 0.65em;
5807
  --bs-badge-padding-y: 0.35em;
5808
  --bs-badge-font-size: 0.8em;
5809
  --bs-badge-font-weight: 500;
5810
  --bs-badge-color: #fff;
5811
  --bs-badge-border-radius: 0.25rem;
5812
  display: inline-block;
5813
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5814
  font-size: var(--bs-badge-font-size);
5815
  font-weight: var(--bs-badge-font-weight);
5816
  line-height: 1;
5817
  color: var(--bs-badge-color);
5818
  text-align: center;
5819
  white-space: nowrap;
5820
  vertical-align: baseline;
5821
  border-radius: var(--bs-badge-border-radius);
5822
}
16848 stevensc 5823
 
16825 efrain 5824
.badge:empty {
5825
  display: none;
5826
}
5827
 
16848 stevensc 5828
.btn .badge,
5829
.wizard>.actions a .badge,
5830
div.tox .tox-button .badge,
5831
.swal2-popup .swal2-actions button .badge,
5832
.fc .fc-button-primary .badge {
16825 efrain 5833
  position: relative;
5834
  top: -1px;
5835
}
5836
 
5837
.alert {
5838
  --bs-alert-bg: transparent;
5839
  --bs-alert-padding-x: 1rem;
5840
  --bs-alert-padding-y: 1rem;
5841
  --bs-alert-margin-bottom: 1rem;
5842
  --bs-alert-color: inherit;
5843
  --bs-alert-border-color: transparent;
5844
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5845
  --bs-alert-border-radius: 0.25rem;
5846
  position: relative;
5847
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5848
  margin-bottom: var(--bs-alert-margin-bottom);
5849
  color: var(--bs-alert-color);
5850
  background-color: var(--bs-alert-bg);
5851
  border: var(--bs-alert-border);
5852
  border-radius: var(--bs-alert-border-radius);
5853
}
5854
 
5855
.alert-heading {
5856
  color: inherit;
5857
}
5858
 
5859
.alert-link {
5860
  font-weight: 500;
5861
}
5862
 
5863
.alert-dismissible {
5864
  padding-right: 3rem;
5865
}
16848 stevensc 5866
 
16825 efrain 5867
.alert-dismissible .btn-close {
5868
  position: absolute;
5869
  top: 0;
5870
  right: 0;
5871
  z-index: 2;
5872
  padding: 1.25rem 1rem;
5873
}
5874
 
5875
.alert-primary {
5876
  --bs-alert-color: #3d4499;
5877
  --bs-alert-bg: #e0e3ff;
5878
  --bs-alert-border-color: #d1d4ff;
5879
}
16848 stevensc 5880
 
16825 efrain 5881
.alert-primary .alert-link {
5882
  color: #31367a;
5883
}
5884
 
5885
.alert-secondary {
5886
  --bs-alert-color: #495161;
5887
  --bs-alert-bg: #e4e7ec;
5888
  --bs-alert-border-color: #d7dbe3;
5889
}
16848 stevensc 5890
 
16825 efrain 5891
.alert-secondary .alert-link {
5892
  color: #3a414e;
5893
}
5894
 
5895
.alert-success {
5896
  --bs-alert-color: #03622c;
5897
  --bs-alert-bg: #cdeddb;
5898
  --bs-alert-border-color: #b4e3c9;
5899
}
16848 stevensc 5900
 
16825 efrain 5901
.alert-success .alert-link {
5902
  color: #024e23;
5903
}
5904
 
5905
.alert-info {
5906
  --bs-alert-color: #3d7d7d;
5907
  --bs-alert-bg: #e0f6f6;
5908
  --bs-alert-border-color: #d1f1f1;
5909
}
16848 stevensc 5910
 
16825 efrain 5911
.alert-info .alert-link {
5912
  color: #316464;
5913
}
5914
 
5915
.alert-warning {
5916
  --bs-alert-color: #977104;
5917
  --bs-alert-bg: #fef2cd;
5918
  --bs-alert-border-color: #feebb4;
5919
}
16848 stevensc 5920
 
16825 efrain 5921
.alert-warning .alert-link {
5922
  color: #795a03;
5923
}
5924
 
5925
.alert-danger {
5926
  --bs-alert-color: #991f3d;
5927
  --bs-alert-bg: #ffd6e0;
5928
  --bs-alert-border-color: #ffc2d1;
5929
}
16848 stevensc 5930
 
16825 efrain 5931
.alert-danger .alert-link {
5932
  color: #7a1931;
5933
}
5934
 
5935
.alert-light {
5936
  --bs-alert-color: #8c8e8f;
5937
  --bs-alert-bg: #fbfbfc;
5938
  --bs-alert-border-color: #f8f9fa;
5939
}
16848 stevensc 5940
 
16825 efrain 5941
.alert-light .alert-link {
5942
  color: #707272;
5943
}
5944
 
5945
.alert-dark {
5946
  --bs-alert-color: #04070e;
5947
  --bs-alert-bg: #cdced1;
5948
  --bs-alert-border-color: #b4b6b9;
5949
}
16848 stevensc 5950
 
16825 efrain 5951
.alert-dark .alert-link {
5952
  color: #03060b;
5953
}
5954
 
5955
@keyframes progress-bar-stripes {
5956
  0% {
5957
    background-position-x: 1rem;
5958
  }
5959
}
16848 stevensc 5960
 
16825 efrain 5961
.progress {
5962
  --bs-progress-height: 1rem;
5963
  --bs-progress-font-size: 0.65625rem;
5964
  --bs-progress-bg: #e9ecef;
5965
  --bs-progress-border-radius: 0.25rem;
5966
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5967
  --bs-progress-bar-color: #fff;
5968
  --bs-progress-bar-bg: #6571ff;
5969
  --bs-progress-bar-transition: width 0.6s ease;
5970
  display: flex;
5971
  height: var(--bs-progress-height);
5972
  overflow: hidden;
5973
  font-size: var(--bs-progress-font-size);
5974
  background-color: var(--bs-progress-bg);
5975
  border-radius: var(--bs-progress-border-radius);
5976
}
5977
 
5978
.progress-bar {
5979
  display: flex;
5980
  flex-direction: column;
5981
  justify-content: center;
5982
  overflow: hidden;
5983
  color: var(--bs-progress-bar-color);
5984
  text-align: center;
5985
  white-space: nowrap;
5986
  background-color: var(--bs-progress-bar-bg);
5987
  transition: var(--bs-progress-bar-transition);
5988
}
16848 stevensc 5989
 
16825 efrain 5990
@media (prefers-reduced-motion: reduce) {
5991
  .progress-bar {
5992
    transition: none;
5993
  }
5994
}
5995
 
5996
.progress-bar-striped {
5997
  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);
5998
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5999
}
6000
 
6001
.progress-bar-animated {
6002
  animation: 1s linear infinite progress-bar-stripes;
6003
}
16848 stevensc 6004
 
16825 efrain 6005
@media (prefers-reduced-motion: reduce) {
6006
  .progress-bar-animated {
6007
    animation: none;
6008
  }
6009
}
6010
 
6011
.list-group {
6012
  --bs-list-group-color: #060c17;
6013
  --bs-list-group-bg: #fff;
6014
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
6015
  --bs-list-group-border-width: 1px;
6016
  --bs-list-group-border-radius: 0.25rem;
6017
  --bs-list-group-item-padding-x: 1.25rem;
6018
  --bs-list-group-item-padding-y: 0.75rem;
6019
  --bs-list-group-action-color: #41516c;
6020
  --bs-list-group-action-hover-color: #41516c;
6021
  --bs-list-group-action-hover-bg: #f8f9fa;
6022
  --bs-list-group-action-active-color: #000;
6023
  --bs-list-group-action-active-bg: #e9ecef;
6024
  --bs-list-group-disabled-color: #7987a1;
6025
  --bs-list-group-disabled-bg: #fff;
6026
  --bs-list-group-active-color: #fff;
6027
  --bs-list-group-active-bg: #6571ff;
6028
  --bs-list-group-active-border-color: #6571ff;
6029
  display: flex;
6030
  flex-direction: column;
6031
  padding-left: 0;
6032
  margin-bottom: 0;
6033
  border-radius: var(--bs-list-group-border-radius);
6034
}
6035
 
6036
.list-group-numbered {
6037
  list-style-type: none;
6038
  counter-reset: section;
6039
}
16848 stevensc 6040
 
6041
.list-group-numbered>.list-group-item::before {
16825 efrain 6042
  content: counters(section, ".") ". ";
6043
  counter-increment: section;
6044
}
6045
 
6046
.list-group-item-action {
6047
  width: 100%;
6048
  color: var(--bs-list-group-action-color);
6049
  text-align: inherit;
6050
}
16848 stevensc 6051
 
6052
.list-group-item-action:hover,
6053
.list-group-item-action:focus {
16825 efrain 6054
  z-index: 1;
6055
  color: var(--bs-list-group-action-hover-color);
6056
  text-decoration: none;
6057
  background-color: var(--bs-list-group-action-hover-bg);
6058
}
16848 stevensc 6059
 
16825 efrain 6060
.list-group-item-action:active {
6061
  color: var(--bs-list-group-action-active-color);
6062
  background-color: var(--bs-list-group-action-active-bg);
6063
}
6064
 
6065
.list-group-item {
6066
  position: relative;
6067
  display: block;
6068
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6069
  color: var(--bs-list-group-color);
6070
  background-color: var(--bs-list-group-bg);
6071
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6072
}
16848 stevensc 6073
 
16825 efrain 6074
.list-group-item:first-child {
6075
  border-top-left-radius: inherit;
6076
  border-top-right-radius: inherit;
6077
}
16848 stevensc 6078
 
16825 efrain 6079
.list-group-item:last-child {
6080
  border-bottom-right-radius: inherit;
6081
  border-bottom-left-radius: inherit;
6082
}
16848 stevensc 6083
 
6084
.list-group-item.disabled,
6085
.list-group-item:disabled {
16825 efrain 6086
  color: var(--bs-list-group-disabled-color);
6087
  pointer-events: none;
6088
  background-color: var(--bs-list-group-disabled-bg);
6089
}
16848 stevensc 6090
 
16825 efrain 6091
.list-group-item.active {
6092
  z-index: 2;
6093
  color: var(--bs-list-group-active-color);
6094
  background-color: var(--bs-list-group-active-bg);
6095
  border-color: var(--bs-list-group-active-border-color);
6096
}
16848 stevensc 6097
 
6098
.list-group-item+.list-group-item {
16825 efrain 6099
  border-top-width: 0;
6100
}
16848 stevensc 6101
 
6102
.list-group-item+.list-group-item.active {
16825 efrain 6103
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6104
  border-top-width: var(--bs-list-group-border-width);
6105
}
6106
 
6107
.list-group-horizontal {
6108
  flex-direction: row;
6109
}
16848 stevensc 6110
 
6111
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6112
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6113
  border-top-right-radius: 0;
6114
}
16848 stevensc 6115
 
6116
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6117
  border-top-right-radius: var(--bs-list-group-border-radius);
6118
  border-bottom-left-radius: 0;
6119
}
16848 stevensc 6120
 
6121
.list-group-horizontal>.list-group-item.active {
16825 efrain 6122
  margin-top: 0;
6123
}
16848 stevensc 6124
 
6125
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6126
  border-top-width: var(--bs-list-group-border-width);
6127
  border-left-width: 0;
6128
}
16848 stevensc 6129
 
6130
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6131
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6132
  border-left-width: var(--bs-list-group-border-width);
6133
}
6134
 
6135
@media (min-width: 576px) {
6136
  .list-group-horizontal-sm {
6137
    flex-direction: row;
6138
  }
16848 stevensc 6139
 
6140
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6141
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6142
    border-top-right-radius: 0;
6143
  }
16848 stevensc 6144
 
6145
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6146
    border-top-right-radius: var(--bs-list-group-border-radius);
6147
    border-bottom-left-radius: 0;
6148
  }
16848 stevensc 6149
 
6150
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6151
    margin-top: 0;
6152
  }
16848 stevensc 6153
 
6154
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6155
    border-top-width: var(--bs-list-group-border-width);
6156
    border-left-width: 0;
6157
  }
16848 stevensc 6158
 
6159
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6160
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6161
    border-left-width: var(--bs-list-group-border-width);
6162
  }
6163
}
16848 stevensc 6164
 
16825 efrain 6165
@media (min-width: 768px) {
6166
  .list-group-horizontal-md {
6167
    flex-direction: row;
6168
  }
16848 stevensc 6169
 
6170
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6171
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6172
    border-top-right-radius: 0;
6173
  }
16848 stevensc 6174
 
6175
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6176
    border-top-right-radius: var(--bs-list-group-border-radius);
6177
    border-bottom-left-radius: 0;
6178
  }
16848 stevensc 6179
 
6180
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6181
    margin-top: 0;
6182
  }
16848 stevensc 6183
 
6184
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6185
    border-top-width: var(--bs-list-group-border-width);
6186
    border-left-width: 0;
6187
  }
16848 stevensc 6188
 
6189
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6190
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6191
    border-left-width: var(--bs-list-group-border-width);
6192
  }
6193
}
16848 stevensc 6194
 
16825 efrain 6195
@media (min-width: 992px) {
6196
  .list-group-horizontal-lg {
6197
    flex-direction: row;
6198
  }
16848 stevensc 6199
 
6200
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6201
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6202
    border-top-right-radius: 0;
6203
  }
16848 stevensc 6204
 
6205
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6206
    border-top-right-radius: var(--bs-list-group-border-radius);
6207
    border-bottom-left-radius: 0;
6208
  }
16848 stevensc 6209
 
6210
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6211
    margin-top: 0;
6212
  }
16848 stevensc 6213
 
6214
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6215
    border-top-width: var(--bs-list-group-border-width);
6216
    border-left-width: 0;
6217
  }
16848 stevensc 6218
 
6219
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6220
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6221
    border-left-width: var(--bs-list-group-border-width);
6222
  }
6223
}
16848 stevensc 6224
 
16825 efrain 6225
@media (min-width: 1200px) {
6226
  .list-group-horizontal-xl {
6227
    flex-direction: row;
6228
  }
16848 stevensc 6229
 
6230
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6231
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6232
    border-top-right-radius: 0;
6233
  }
16848 stevensc 6234
 
6235
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6236
    border-top-right-radius: var(--bs-list-group-border-radius);
6237
    border-bottom-left-radius: 0;
6238
  }
16848 stevensc 6239
 
6240
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6241
    margin-top: 0;
6242
  }
16848 stevensc 6243
 
6244
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6245
    border-top-width: var(--bs-list-group-border-width);
6246
    border-left-width: 0;
6247
  }
16848 stevensc 6248
 
6249
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6250
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6251
    border-left-width: var(--bs-list-group-border-width);
6252
  }
6253
}
16848 stevensc 6254
 
16825 efrain 6255
@media (min-width: 1400px) {
6256
  .list-group-horizontal-xxl {
6257
    flex-direction: row;
6258
  }
16848 stevensc 6259
 
6260
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6261
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6262
    border-top-right-radius: 0;
6263
  }
16848 stevensc 6264
 
6265
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6266
    border-top-right-radius: var(--bs-list-group-border-radius);
6267
    border-bottom-left-radius: 0;
6268
  }
16848 stevensc 6269
 
6270
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6271
    margin-top: 0;
6272
  }
16848 stevensc 6273
 
6274
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6275
    border-top-width: var(--bs-list-group-border-width);
6276
    border-left-width: 0;
6277
  }
16848 stevensc 6278
 
6279
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6280
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6281
    border-left-width: var(--bs-list-group-border-width);
6282
  }
6283
}
16848 stevensc 6284
 
16825 efrain 6285
.list-group-flush {
6286
  border-radius: 0;
6287
}
16848 stevensc 6288
 
6289
.list-group-flush>.list-group-item {
16825 efrain 6290
  border-width: 0 0 var(--bs-list-group-border-width);
6291
}
16848 stevensc 6292
 
6293
.list-group-flush>.list-group-item:last-child {
16825 efrain 6294
  border-bottom-width: 0;
6295
}
6296
 
6297
.list-group-item-primary {
6298
  color: #3d4499;
6299
  background-color: #e0e3ff;
6300
}
16848 stevensc 6301
 
6302
.list-group-item-primary.list-group-item-action:hover,
6303
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6304
  color: #3d4499;
6305
  background-color: #cacce6;
6306
}
16848 stevensc 6307
 
16825 efrain 6308
.list-group-item-primary.list-group-item-action.active {
6309
  color: #fff;
6310
  background-color: #3d4499;
6311
  border-color: #3d4499;
6312
}
6313
 
6314
.list-group-item-secondary {
6315
  color: #495161;
6316
  background-color: #e4e7ec;
6317
}
16848 stevensc 6318
 
6319
.list-group-item-secondary.list-group-item-action:hover,
6320
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6321
  color: #495161;
6322
  background-color: #cdd0d4;
6323
}
16848 stevensc 6324
 
16825 efrain 6325
.list-group-item-secondary.list-group-item-action.active {
6326
  color: #fff;
6327
  background-color: #495161;
6328
  border-color: #495161;
6329
}
6330
 
6331
.list-group-item-success {
6332
  color: #03622c;
6333
  background-color: #cdeddb;
6334
}
16848 stevensc 6335
 
6336
.list-group-item-success.list-group-item-action:hover,
6337
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6338
  color: #03622c;
6339
  background-color: #b9d5c5;
6340
}
16848 stevensc 6341
 
16825 efrain 6342
.list-group-item-success.list-group-item-action.active {
6343
  color: #fff;
6344
  background-color: #03622c;
6345
  border-color: #03622c;
6346
}
6347
 
6348
.list-group-item-info {
6349
  color: #3d7d7d;
6350
  background-color: #e0f6f6;
6351
}
16848 stevensc 6352
 
6353
.list-group-item-info.list-group-item-action:hover,
6354
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6355
  color: #3d7d7d;
6356
  background-color: #cadddd;
6357
}
16848 stevensc 6358
 
16825 efrain 6359
.list-group-item-info.list-group-item-action.active {
6360
  color: #fff;
6361
  background-color: #3d7d7d;
6362
  border-color: #3d7d7d;
6363
}
6364
 
6365
.list-group-item-warning {
6366
  color: #977104;
6367
  background-color: #fef2cd;
6368
}
16848 stevensc 6369
 
6370
.list-group-item-warning.list-group-item-action:hover,
6371
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6372
  color: #977104;
6373
  background-color: #e5dab9;
6374
}
16848 stevensc 6375
 
16825 efrain 6376
.list-group-item-warning.list-group-item-action.active {
6377
  color: #fff;
6378
  background-color: #977104;
6379
  border-color: #977104;
6380
}
6381
 
6382
.list-group-item-danger {
6383
  color: #991f3d;
6384
  background-color: #ffd6e0;
6385
}
16848 stevensc 6386
 
6387
.list-group-item-danger.list-group-item-action:hover,
6388
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6389
  color: #991f3d;
6390
  background-color: #e6c1ca;
6391
}
16848 stevensc 6392
 
16825 efrain 6393
.list-group-item-danger.list-group-item-action.active {
6394
  color: #fff;
6395
  background-color: #991f3d;
6396
  border-color: #991f3d;
6397
}
6398
 
6399
.list-group-item-light {
6400
  color: #8c8e8f;
6401
  background-color: #fbfbfc;
6402
}
16848 stevensc 6403
 
6404
.list-group-item-light.list-group-item-action:hover,
6405
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6406
  color: #8c8e8f;
6407
  background-color: #e2e2e3;
6408
}
16848 stevensc 6409
 
16825 efrain 6410
.list-group-item-light.list-group-item-action.active {
6411
  color: #fff;
6412
  background-color: #8c8e8f;
6413
  border-color: #8c8e8f;
6414
}
6415
 
6416
.list-group-item-dark {
6417
  color: #04070e;
6418
  background-color: #cdced1;
6419
}
16848 stevensc 6420
 
6421
.list-group-item-dark.list-group-item-action:hover,
6422
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6423
  color: #04070e;
6424
  background-color: #b9b9bc;
6425
}
16848 stevensc 6426
 
16825 efrain 6427
.list-group-item-dark.list-group-item-action.active {
6428
  color: #fff;
6429
  background-color: #04070e;
6430
  border-color: #04070e;
6431
}
6432
 
6433
.btn-close {
6434
  box-sizing: content-box;
6435
  width: 0.8em;
6436
  height: 0.8em;
6437
  padding: 0.25em 0.25em;
6438
  color: #000;
6439
  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;
6440
  border: 0;
6441
  border-radius: 0.25rem;
6442
  opacity: 0.5;
6443
}
16848 stevensc 6444
 
16825 efrain 6445
.btn-close:hover {
6446
  color: #000;
6447
  text-decoration: none;
6448
  opacity: 0.75;
6449
}
16848 stevensc 6450
 
16825 efrain 6451
.btn-close:focus {
6452
  outline: 0;
6453
  box-shadow: none;
6454
  opacity: 1;
6455
}
16848 stevensc 6456
 
6457
.btn-close:disabled,
6458
.btn-close.disabled {
16825 efrain 6459
  pointer-events: none;
6460
  user-select: none;
6461
  opacity: 0.25;
6462
}
6463
 
6464
.btn-close-white {
6465
  filter: invert(1) grayscale(100%) brightness(200%);
6466
}
6467
 
6468
.toast {
6469
  --bs-toast-zindex: 1090;
6470
  --bs-toast-padding-x: 0.75rem;
6471
  --bs-toast-padding-y: 0.5rem;
6472
  --bs-toast-spacing: 1.5rem;
6473
  --bs-toast-max-width: 350px;
6474
  --bs-toast-font-size: 0.875rem;
6475
  --bs-toast-color: ;
6476
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6477
  --bs-toast-border-width: 1px;
6478
  --bs-toast-border-color: var(--bs-border-color-translucent);
6479
  --bs-toast-border-radius: 0.25rem;
6480
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6481
  --bs-toast-header-color: #7987a1;
6482
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6483
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6484
  width: var(--bs-toast-max-width);
6485
  max-width: 100%;
6486
  font-size: var(--bs-toast-font-size);
6487
  color: var(--bs-toast-color);
6488
  pointer-events: auto;
6489
  background-color: var(--bs-toast-bg);
6490
  background-clip: padding-box;
6491
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6492
  box-shadow: var(--bs-toast-box-shadow);
6493
  border-radius: var(--bs-toast-border-radius);
6494
}
16848 stevensc 6495
 
16825 efrain 6496
.toast.showing {
6497
  opacity: 0;
6498
}
16848 stevensc 6499
 
16825 efrain 6500
.toast:not(.show) {
6501
  display: none;
6502
}
6503
 
6504
.toast-container {
6505
  --bs-toast-zindex: 1090;
6506
  position: absolute;
6507
  z-index: var(--bs-toast-zindex);
6508
  width: max-content;
6509
  max-width: 100%;
6510
  pointer-events: none;
6511
}
16848 stevensc 6512
 
6513
.toast-container> :not(:last-child) {
16825 efrain 6514
  margin-bottom: var(--bs-toast-spacing);
6515
}
6516
 
6517
.toast-header {
6518
  display: flex;
6519
  align-items: center;
6520
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6521
  color: var(--bs-toast-header-color);
6522
  background-color: var(--bs-toast-header-bg);
6523
  background-clip: padding-box;
6524
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6525
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6526
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6527
}
16848 stevensc 6528
 
16825 efrain 6529
.toast-header .btn-close {
6530
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6531
  margin-left: var(--bs-toast-padding-x);
6532
}
6533
 
6534
.toast-body {
6535
  padding: var(--bs-toast-padding-x);
6536
  word-wrap: break-word;
6537
}
6538
 
6539
.modal {
6540
  --bs-modal-zindex: 1055;
6541
  --bs-modal-width: 500px;
6542
  --bs-modal-padding: 1rem;
6543
  --bs-modal-margin: 0.5rem;
6544
  --bs-modal-color: ;
6545
  --bs-modal-bg: #fff;
6546
  --bs-modal-border-color: #e9ecef;
6547
  --bs-modal-border-width: 1px;
6548
  --bs-modal-border-radius: 0.5rem;
6549
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6550
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6551
  --bs-modal-header-padding-x: 1rem;
6552
  --bs-modal-header-padding-y: 1rem;
6553
  --bs-modal-header-padding: 1rem 1rem;
6554
  --bs-modal-header-border-color: var(--bs-border-color);
6555
  --bs-modal-header-border-width: 1px;
6556
  --bs-modal-title-line-height: 1.5;
6557
  --bs-modal-footer-gap: 0.5rem;
6558
  --bs-modal-footer-bg: ;
6559
  --bs-modal-footer-border-color: var(--bs-border-color);
6560
  --bs-modal-footer-border-width: 1px;
6561
  position: fixed;
6562
  top: 0;
6563
  left: 0;
6564
  z-index: var(--bs-modal-zindex);
6565
  display: none;
6566
  width: 100%;
6567
  height: 100%;
6568
  overflow-x: hidden;
6569
  overflow-y: auto;
6570
  outline: 0;
6571
}
6572
 
6573
.modal-dialog {
6574
  position: relative;
6575
  width: auto;
6576
  margin: var(--bs-modal-margin);
6577
  pointer-events: none;
6578
}
16848 stevensc 6579
 
16825 efrain 6580
.modal.fade .modal-dialog {
6581
  transition: transform 0.4s ease;
6582
  transform: scale(0.8);
6583
}
16848 stevensc 6584
 
16825 efrain 6585
@media (prefers-reduced-motion: reduce) {
6586
  .modal.fade .modal-dialog {
6587
    transition: none;
6588
  }
6589
}
16848 stevensc 6590
 
16825 efrain 6591
.modal.show .modal-dialog {
6592
  transform: none;
6593
}
16848 stevensc 6594
 
16825 efrain 6595
.modal.modal-static .modal-dialog {
6596
  transform: scale(1.02);
6597
}
6598
 
6599
.modal-dialog-scrollable {
6600
  height: calc(100% - var(--bs-modal-margin) * 2);
6601
}
16848 stevensc 6602
 
16825 efrain 6603
.modal-dialog-scrollable .modal-content {
6604
  max-height: 100%;
6605
  overflow: hidden;
6606
}
16848 stevensc 6607
 
16825 efrain 6608
.modal-dialog-scrollable .modal-body {
6609
  overflow-y: auto;
6610
}
6611
 
6612
.modal-dialog-centered {
6613
  display: flex;
6614
  align-items: center;
6615
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6616
}
6617
 
6618
.modal-content {
6619
  position: relative;
6620
  display: flex;
6621
  flex-direction: column;
6622
  width: 100%;
6623
  color: var(--bs-modal-color);
6624
  pointer-events: auto;
6625
  background-color: var(--bs-modal-bg);
6626
  background-clip: padding-box;
6627
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6628
  border-radius: var(--bs-modal-border-radius);
6629
  outline: 0;
6630
}
6631
 
6632
.modal-backdrop {
6633
  --bs-backdrop-zindex: 1050;
6634
  --bs-backdrop-bg: #000;
6635
  --bs-backdrop-opacity: 0.5;
6636
  position: fixed;
6637
  top: 0;
6638
  left: 0;
6639
  z-index: var(--bs-backdrop-zindex);
6640
  width: 100vw;
6641
  height: 100vh;
6642
  background-color: var(--bs-backdrop-bg);
6643
}
16848 stevensc 6644
 
16825 efrain 6645
.modal-backdrop.fade {
6646
  opacity: 0;
6647
}
16848 stevensc 6648
 
16825 efrain 6649
.modal-backdrop.show {
6650
  opacity: var(--bs-backdrop-opacity);
6651
}
6652
 
6653
.modal-header {
6654
  display: flex;
6655
  flex-shrink: 0;
6656
  align-items: center;
6657
  justify-content: space-between;
6658
  padding: var(--bs-modal-header-padding);
6659
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6660
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6661
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6662
}
16848 stevensc 6663
 
16825 efrain 6664
.modal-header .btn-close {
6665
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6666
  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;
6667
}
6668
 
6669
.modal-title {
6670
  margin-bottom: 0;
6671
  line-height: var(--bs-modal-title-line-height);
6672
}
6673
 
6674
.modal-body {
6675
  position: relative;
6676
  flex: 1 1 auto;
6677
  padding: var(--bs-modal-padding);
6678
}
6679
 
6680
.modal-footer {
6681
  display: flex;
6682
  flex-shrink: 0;
6683
  flex-wrap: wrap;
6684
  align-items: center;
6685
  justify-content: flex-end;
6686
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6687
  background-color: var(--bs-modal-footer-bg);
6688
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6689
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6690
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6691
}
16848 stevensc 6692
 
6693
.modal-footer>* {
16825 efrain 6694
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6695
}
6696
 
6697
@media (min-width: 576px) {
6698
  .modal {
6699
    --bs-modal-margin: 1.75rem;
6700
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6701
  }
16848 stevensc 6702
 
16825 efrain 6703
  .modal-dialog {
6704
    max-width: var(--bs-modal-width);
6705
    margin-right: auto;
6706
    margin-left: auto;
6707
  }
16848 stevensc 6708
 
16825 efrain 6709
  .modal-sm {
6710
    --bs-modal-width: 300px;
6711
  }
6712
}
16848 stevensc 6713
 
16825 efrain 6714
@media (min-width: 992px) {
16848 stevensc 6715
 
16825 efrain 6716
  .modal-lg,
6717
  .modal-xl {
6718
    --bs-modal-width: 800px;
6719
  }
6720
}
16848 stevensc 6721
 
16825 efrain 6722
@media (min-width: 1200px) {
6723
  .modal-xl {
6724
    --bs-modal-width: 1140px;
6725
  }
6726
}
16848 stevensc 6727
 
16825 efrain 6728
.modal-fullscreen {
6729
  width: 100vw;
6730
  max-width: none;
6731
  height: 100%;
6732
  margin: 0;
6733
}
16848 stevensc 6734
 
16825 efrain 6735
.modal-fullscreen .modal-content {
6736
  height: 100%;
6737
  border: 0;
6738
  border-radius: 0;
6739
}
16848 stevensc 6740
 
16825 efrain 6741
.modal-fullscreen .modal-header,
6742
.modal-fullscreen .modal-footer {
6743
  border-radius: 0;
6744
}
16848 stevensc 6745
 
16825 efrain 6746
.modal-fullscreen .modal-body {
6747
  overflow-y: auto;
6748
}
6749
 
6750
@media (max-width: 575.98px) {
6751
  .modal-fullscreen-sm-down {
6752
    width: 100vw;
6753
    max-width: none;
6754
    height: 100%;
6755
    margin: 0;
6756
  }
16848 stevensc 6757
 
16825 efrain 6758
  .modal-fullscreen-sm-down .modal-content {
6759
    height: 100%;
6760
    border: 0;
6761
    border-radius: 0;
6762
  }
16848 stevensc 6763
 
16825 efrain 6764
  .modal-fullscreen-sm-down .modal-header,
6765
  .modal-fullscreen-sm-down .modal-footer {
6766
    border-radius: 0;
6767
  }
16848 stevensc 6768
 
16825 efrain 6769
  .modal-fullscreen-sm-down .modal-body {
6770
    overflow-y: auto;
6771
  }
6772
}
16848 stevensc 6773
 
16825 efrain 6774
@media (max-width: 767.98px) {
6775
  .modal-fullscreen-md-down {
6776
    width: 100vw;
6777
    max-width: none;
6778
    height: 100%;
6779
    margin: 0;
6780
  }
16848 stevensc 6781
 
16825 efrain 6782
  .modal-fullscreen-md-down .modal-content {
6783
    height: 100%;
6784
    border: 0;
6785
    border-radius: 0;
6786
  }
16848 stevensc 6787
 
16825 efrain 6788
  .modal-fullscreen-md-down .modal-header,
6789
  .modal-fullscreen-md-down .modal-footer {
6790
    border-radius: 0;
6791
  }
16848 stevensc 6792
 
16825 efrain 6793
  .modal-fullscreen-md-down .modal-body {
6794
    overflow-y: auto;
6795
  }
6796
}
16848 stevensc 6797
 
16825 efrain 6798
@media (max-width: 991.98px) {
6799
  .modal-fullscreen-lg-down {
6800
    width: 100vw;
6801
    max-width: none;
6802
    height: 100%;
6803
    margin: 0;
6804
  }
16848 stevensc 6805
 
16825 efrain 6806
  .modal-fullscreen-lg-down .modal-content {
6807
    height: 100%;
6808
    border: 0;
6809
    border-radius: 0;
6810
  }
16848 stevensc 6811
 
16825 efrain 6812
  .modal-fullscreen-lg-down .modal-header,
6813
  .modal-fullscreen-lg-down .modal-footer {
6814
    border-radius: 0;
6815
  }
16848 stevensc 6816
 
16825 efrain 6817
  .modal-fullscreen-lg-down .modal-body {
6818
    overflow-y: auto;
6819
  }
6820
}
16848 stevensc 6821
 
16825 efrain 6822
@media (max-width: 1199.98px) {
6823
  .modal-fullscreen-xl-down {
6824
    width: 100vw;
6825
    max-width: none;
6826
    height: 100%;
6827
    margin: 0;
6828
  }
16848 stevensc 6829
 
16825 efrain 6830
  .modal-fullscreen-xl-down .modal-content {
6831
    height: 100%;
6832
    border: 0;
6833
    border-radius: 0;
6834
  }
16848 stevensc 6835
 
16825 efrain 6836
  .modal-fullscreen-xl-down .modal-header,
6837
  .modal-fullscreen-xl-down .modal-footer {
6838
    border-radius: 0;
6839
  }
16848 stevensc 6840
 
16825 efrain 6841
  .modal-fullscreen-xl-down .modal-body {
6842
    overflow-y: auto;
6843
  }
6844
}
16848 stevensc 6845
 
16825 efrain 6846
@media (max-width: 1399.98px) {
6847
  .modal-fullscreen-xxl-down {
6848
    width: 100vw;
6849
    max-width: none;
6850
    height: 100%;
6851
    margin: 0;
6852
  }
16848 stevensc 6853
 
16825 efrain 6854
  .modal-fullscreen-xxl-down .modal-content {
6855
    height: 100%;
6856
    border: 0;
6857
    border-radius: 0;
6858
  }
16848 stevensc 6859
 
16825 efrain 6860
  .modal-fullscreen-xxl-down .modal-header,
6861
  .modal-fullscreen-xxl-down .modal-footer {
6862
    border-radius: 0;
6863
  }
16848 stevensc 6864
 
16825 efrain 6865
  .modal-fullscreen-xxl-down .modal-body {
6866
    overflow-y: auto;
6867
  }
6868
}
16848 stevensc 6869
 
16825 efrain 6870
.tooltip {
6871
  --bs-tooltip-zindex: 1080;
6872
  --bs-tooltip-max-width: 200px;
6873
  --bs-tooltip-padding-x: 0.5rem;
6874
  --bs-tooltip-padding-y: 0.25rem;
6875
  --bs-tooltip-margin: ;
6876
  --bs-tooltip-font-size: 0.812rem;
6877
  --bs-tooltip-color: #fff;
6878
  --bs-tooltip-bg: #000;
6879
  --bs-tooltip-border-radius: 0.25rem;
6880
  --bs-tooltip-opacity: 0.9;
6881
  --bs-tooltip-arrow-width: 0.8rem;
6882
  --bs-tooltip-arrow-height: 0.4rem;
6883
  z-index: var(--bs-tooltip-zindex);
6884
  display: block;
6885
  padding: var(--bs-tooltip-arrow-height);
6886
  margin: var(--bs-tooltip-margin);
6887
  font-family: var(--bs-font-sans-serif);
6888
  font-style: normal;
6889
  font-weight: 400;
6890
  line-height: 1.5;
6891
  text-align: left;
6892
  text-align: start;
6893
  text-decoration: none;
6894
  text-shadow: none;
6895
  text-transform: none;
6896
  letter-spacing: normal;
6897
  word-break: normal;
6898
  white-space: normal;
6899
  word-spacing: normal;
6900
  line-break: auto;
6901
  font-size: var(--bs-tooltip-font-size);
6902
  word-wrap: break-word;
6903
  opacity: 0;
6904
}
16848 stevensc 6905
 
16825 efrain 6906
.tooltip.show {
6907
  opacity: var(--bs-tooltip-opacity);
6908
}
16848 stevensc 6909
 
16825 efrain 6910
.tooltip .tooltip-arrow {
6911
  display: block;
6912
  width: var(--bs-tooltip-arrow-width);
6913
  height: var(--bs-tooltip-arrow-height);
6914
}
16848 stevensc 6915
 
16825 efrain 6916
.tooltip .tooltip-arrow::before {
6917
  position: absolute;
6918
  content: "";
6919
  border-color: transparent;
6920
  border-style: solid;
6921
}
6922
 
16848 stevensc 6923
.bs-tooltip-top .tooltip-arrow,
6924
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6925
  bottom: 0;
6926
}
16848 stevensc 6927
 
6928
.bs-tooltip-top .tooltip-arrow::before,
6929
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6930
  top: -1px;
6931
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6932
  border-top-color: var(--bs-tooltip-bg);
6933
}
6934
 
6935
/* rtl:begin:ignore */
16848 stevensc 6936
.bs-tooltip-end .tooltip-arrow,
6937
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6938
  left: 0;
6939
  width: var(--bs-tooltip-arrow-height);
6940
  height: var(--bs-tooltip-arrow-width);
6941
}
16848 stevensc 6942
 
6943
.bs-tooltip-end .tooltip-arrow::before,
6944
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6945
  right: -1px;
6946
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6947
  border-right-color: var(--bs-tooltip-bg);
6948
}
6949
 
6950
/* rtl:end:ignore */
16848 stevensc 6951
.bs-tooltip-bottom .tooltip-arrow,
6952
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6953
  top: 0;
6954
}
16848 stevensc 6955
 
6956
.bs-tooltip-bottom .tooltip-arrow::before,
6957
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6958
  bottom: -1px;
6959
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6960
  border-bottom-color: var(--bs-tooltip-bg);
6961
}
6962
 
6963
/* rtl:begin:ignore */
16848 stevensc 6964
.bs-tooltip-start .tooltip-arrow,
6965
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6966
  right: 0;
6967
  width: var(--bs-tooltip-arrow-height);
6968
  height: var(--bs-tooltip-arrow-width);
6969
}
16848 stevensc 6970
 
6971
.bs-tooltip-start .tooltip-arrow::before,
6972
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6973
  left: -1px;
6974
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6975
  border-left-color: var(--bs-tooltip-bg);
6976
}
6977
 
6978
/* rtl:end:ignore */
6979
.tooltip-inner {
6980
  max-width: var(--bs-tooltip-max-width);
6981
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6982
  color: var(--bs-tooltip-color);
6983
  text-align: center;
6984
  background-color: var(--bs-tooltip-bg);
6985
  border-radius: var(--bs-tooltip-border-radius);
6986
}
6987
 
6988
.popover {
6989
  --bs-popover-zindex: 1070;
6990
  --bs-popover-max-width: 276px;
6991
  --bs-popover-font-size: 0.812rem;
6992
  --bs-popover-bg: #fff;
6993
  --bs-popover-border-width: 1px;
6994
  --bs-popover-border-color: #e9ecef;
6995
  --bs-popover-border-radius: 0.5rem;
6996
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6997
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6998
  --bs-popover-header-padding-x: 1rem;
6999
  --bs-popover-header-padding-y: 0.5rem;
7000
  --bs-popover-header-font-size: 0.875rem;
7001
  --bs-popover-header-color: ;
7002
  --bs-popover-header-bg: #e9ecef;
7003
  --bs-popover-body-padding-x: 1rem;
7004
  --bs-popover-body-padding-y: 1rem;
7005
  --bs-popover-body-color: #000;
7006
  --bs-popover-arrow-width: 1rem;
7007
  --bs-popover-arrow-height: 0.5rem;
7008
  --bs-popover-arrow-border: var(--bs-popover-border-color);
7009
  z-index: var(--bs-popover-zindex);
7010
  display: block;
7011
  max-width: var(--bs-popover-max-width);
7012
  font-family: var(--bs-font-sans-serif);
7013
  font-style: normal;
7014
  font-weight: 400;
7015
  line-height: 1.5;
7016
  text-align: left;
7017
  text-align: start;
7018
  text-decoration: none;
7019
  text-shadow: none;
7020
  text-transform: none;
7021
  letter-spacing: normal;
7022
  word-break: normal;
7023
  white-space: normal;
7024
  word-spacing: normal;
7025
  line-break: auto;
7026
  font-size: var(--bs-popover-font-size);
7027
  word-wrap: break-word;
7028
  background-color: var(--bs-popover-bg);
7029
  background-clip: padding-box;
7030
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7031
  border-radius: var(--bs-popover-border-radius);
7032
}
16848 stevensc 7033
 
16825 efrain 7034
.popover .popover-arrow {
7035
  display: block;
7036
  width: var(--bs-popover-arrow-width);
7037
  height: var(--bs-popover-arrow-height);
7038
}
16848 stevensc 7039
 
7040
.popover .popover-arrow::before,
7041
.popover .popover-arrow::after {
16825 efrain 7042
  position: absolute;
7043
  display: block;
7044
  content: "";
7045
  border-color: transparent;
7046
  border-style: solid;
7047
  border-width: 0;
7048
}
7049
 
16848 stevensc 7050
.bs-popover-top>.popover-arrow,
7051
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7052
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7053
}
16848 stevensc 7054
 
7055
.bs-popover-top>.popover-arrow::before,
7056
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7057
.bs-popover-top>.popover-arrow::after,
7058
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7059
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7060
}
16848 stevensc 7061
 
7062
.bs-popover-top>.popover-arrow::before,
7063
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7064
  bottom: 0;
7065
  border-top-color: var(--bs-popover-arrow-border);
7066
}
16848 stevensc 7067
 
7068
.bs-popover-top>.popover-arrow::after,
7069
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7070
  bottom: var(--bs-popover-border-width);
7071
  border-top-color: var(--bs-popover-bg);
7072
}
7073
 
7074
/* rtl:begin:ignore */
16848 stevensc 7075
.bs-popover-end>.popover-arrow,
7076
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7077
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7078
  width: var(--bs-popover-arrow-height);
7079
  height: var(--bs-popover-arrow-width);
7080
}
16848 stevensc 7081
 
7082
.bs-popover-end>.popover-arrow::before,
7083
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7084
.bs-popover-end>.popover-arrow::after,
7085
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7086
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7087
}
16848 stevensc 7088
 
7089
.bs-popover-end>.popover-arrow::before,
7090
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7091
  left: 0;
7092
  border-right-color: var(--bs-popover-arrow-border);
7093
}
16848 stevensc 7094
 
7095
.bs-popover-end>.popover-arrow::after,
7096
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7097
  left: var(--bs-popover-border-width);
7098
  border-right-color: var(--bs-popover-bg);
7099
}
7100
 
7101
/* rtl:end:ignore */
16848 stevensc 7102
.bs-popover-bottom>.popover-arrow,
7103
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7104
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7105
}
16848 stevensc 7106
 
7107
.bs-popover-bottom>.popover-arrow::before,
7108
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7109
.bs-popover-bottom>.popover-arrow::after,
7110
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7111
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7112
}
16848 stevensc 7113
 
7114
.bs-popover-bottom>.popover-arrow::before,
7115
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7116
  top: 0;
7117
  border-bottom-color: var(--bs-popover-arrow-border);
7118
}
16848 stevensc 7119
 
7120
.bs-popover-bottom>.popover-arrow::after,
7121
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7122
  top: var(--bs-popover-border-width);
7123
  border-bottom-color: var(--bs-popover-bg);
7124
}
16848 stevensc 7125
 
7126
.bs-popover-bottom .popover-header::before,
7127
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7128
  position: absolute;
7129
  top: 0;
7130
  left: 50%;
7131
  display: block;
7132
  width: var(--bs-popover-arrow-width);
7133
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7134
  content: "";
7135
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7136
}
7137
 
7138
/* rtl:begin:ignore */
16848 stevensc 7139
.bs-popover-start>.popover-arrow,
7140
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7141
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7142
  width: var(--bs-popover-arrow-height);
7143
  height: var(--bs-popover-arrow-width);
7144
}
16848 stevensc 7145
 
7146
.bs-popover-start>.popover-arrow::before,
7147
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7148
.bs-popover-start>.popover-arrow::after,
7149
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7150
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7151
}
16848 stevensc 7152
 
7153
.bs-popover-start>.popover-arrow::before,
7154
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7155
  right: 0;
7156
  border-left-color: var(--bs-popover-arrow-border);
7157
}
16848 stevensc 7158
 
7159
.bs-popover-start>.popover-arrow::after,
7160
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7161
  right: var(--bs-popover-border-width);
7162
  border-left-color: var(--bs-popover-bg);
7163
}
7164
 
7165
/* rtl:end:ignore */
7166
.popover-header {
7167
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7168
  margin-bottom: 0;
7169
  font-size: var(--bs-popover-header-font-size);
7170
  color: var(--bs-popover-header-color);
7171
  background-color: var(--bs-popover-header-bg);
7172
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7173
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7174
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7175
}
16848 stevensc 7176
 
16825 efrain 7177
.popover-header:empty {
7178
  display: none;
7179
}
7180
 
7181
.popover-body {
7182
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7183
  color: var(--bs-popover-body-color);
7184
}
7185
 
7186
.carousel {
7187
  position: relative;
7188
}
7189
 
7190
.carousel.pointer-event {
7191
  touch-action: pan-y;
7192
}
7193
 
7194
.carousel-inner {
7195
  position: relative;
7196
  width: 100%;
7197
  overflow: hidden;
7198
}
16848 stevensc 7199
 
16825 efrain 7200
.carousel-inner::after {
7201
  display: block;
7202
  clear: both;
7203
  content: "";
7204
}
7205
 
7206
.carousel-item {
7207
  position: relative;
7208
  display: none;
7209
  float: left;
7210
  width: 100%;
7211
  margin-right: -100%;
7212
  backface-visibility: hidden;
7213
  transition: transform 0.6s ease-in-out;
7214
}
16848 stevensc 7215
 
16825 efrain 7216
@media (prefers-reduced-motion: reduce) {
7217
  .carousel-item {
7218
    transition: none;
7219
  }
7220
}
7221
 
7222
.carousel-item.active,
7223
.carousel-item-next,
7224
.carousel-item-prev {
7225
  display: block;
7226
}
7227
 
7228
/* rtl:begin:ignore */
7229
.carousel-item-next:not(.carousel-item-start),
7230
.active.carousel-item-end {
7231
  transform: translateX(100%);
7232
}
7233
 
7234
.carousel-item-prev:not(.carousel-item-end),
7235
.active.carousel-item-start {
7236
  transform: translateX(-100%);
7237
}
7238
 
7239
/* rtl:end:ignore */
7240
.carousel-fade .carousel-item {
7241
  opacity: 0;
7242
  transition-property: opacity;
7243
  transform: none;
7244
}
16848 stevensc 7245
 
16825 efrain 7246
.carousel-fade .carousel-item.active,
7247
.carousel-fade .carousel-item-next.carousel-item-start,
7248
.carousel-fade .carousel-item-prev.carousel-item-end {
7249
  z-index: 1;
7250
  opacity: 1;
7251
}
16848 stevensc 7252
 
16825 efrain 7253
.carousel-fade .active.carousel-item-start,
7254
.carousel-fade .active.carousel-item-end {
7255
  z-index: 0;
7256
  opacity: 0;
7257
  transition: opacity 0s 0.6s;
7258
}
16848 stevensc 7259
 
16825 efrain 7260
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7261
 
16825 efrain 7262
  .carousel-fade .active.carousel-item-start,
7263
  .carousel-fade .active.carousel-item-end {
7264
    transition: none;
7265
  }
7266
}
7267
 
7268
.carousel-control-prev,
7269
.carousel-control-next {
7270
  position: absolute;
7271
  top: 0;
7272
  bottom: 0;
7273
  z-index: 1;
7274
  display: flex;
7275
  align-items: center;
7276
  justify-content: center;
7277
  width: 15%;
7278
  padding: 0;
7279
  color: #fff;
7280
  text-align: center;
7281
  background: none;
7282
  border: 0;
7283
  opacity: 0.5;
7284
  transition: opacity 0.15s ease;
7285
}
16848 stevensc 7286
 
16825 efrain 7287
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7288
 
16825 efrain 7289
  .carousel-control-prev,
7290
  .carousel-control-next {
7291
    transition: none;
7292
  }
7293
}
16848 stevensc 7294
 
7295
.carousel-control-prev:hover,
7296
.carousel-control-prev:focus,
16825 efrain 7297
.carousel-control-next:hover,
7298
.carousel-control-next:focus {
7299
  color: #fff;
7300
  text-decoration: none;
7301
  outline: 0;
7302
  opacity: 0.9;
7303
}
7304
 
7305
.carousel-control-prev {
7306
  left: 0;
7307
}
7308
 
7309
.carousel-control-next {
7310
  right: 0;
7311
}
7312
 
7313
.carousel-control-prev-icon,
7314
.carousel-control-next-icon {
7315
  display: inline-block;
7316
  width: 2rem;
7317
  height: 2rem;
7318
  background-repeat: no-repeat;
7319
  background-position: 50%;
7320
  background-size: 100% 100%;
7321
}
7322
 
7323
/* rtl:options: {
7324
  "autoRename": true,
7325
  "stringMap":[ {
7326
    "name"    : "prev-next",
7327
    "search"  : "prev",
7328
    "replace" : "next"
7329
  } ]
7330
} */
7331
.carousel-control-prev-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='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");
7333
}
7334
 
7335
.carousel-control-next-icon {
7336
  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");
7337
}
7338
 
7339
.carousel-indicators {
7340
  position: absolute;
7341
  right: 0;
7342
  bottom: 0;
7343
  left: 0;
7344
  z-index: 2;
7345
  display: flex;
7346
  justify-content: center;
7347
  padding: 0;
7348
  margin-right: 15%;
7349
  margin-bottom: 1rem;
7350
  margin-left: 15%;
7351
  list-style: none;
7352
}
16848 stevensc 7353
 
16825 efrain 7354
.carousel-indicators [data-bs-target] {
7355
  box-sizing: content-box;
7356
  flex: 0 1 auto;
7357
  width: 30px;
7358
  height: 3px;
7359
  padding: 0;
7360
  margin-right: 3px;
7361
  margin-left: 3px;
7362
  text-indent: -999px;
7363
  cursor: pointer;
7364
  background-color: #fff;
7365
  background-clip: padding-box;
7366
  border: 0;
7367
  border-top: 10px solid transparent;
7368
  border-bottom: 10px solid transparent;
7369
  opacity: 0.5;
7370
  transition: opacity 0.6s ease;
7371
}
16848 stevensc 7372
 
16825 efrain 7373
@media (prefers-reduced-motion: reduce) {
7374
  .carousel-indicators [data-bs-target] {
7375
    transition: none;
7376
  }
7377
}
16848 stevensc 7378
 
16825 efrain 7379
.carousel-indicators .active {
7380
  opacity: 1;
7381
}
7382
 
7383
.carousel-caption {
7384
  position: absolute;
7385
  right: 15%;
7386
  bottom: 1.25rem;
7387
  left: 15%;
7388
  padding-top: 1.25rem;
7389
  padding-bottom: 1.25rem;
7390
  color: #fff;
7391
  text-align: center;
7392
}
7393
 
7394
.carousel-dark .carousel-control-prev-icon,
7395
.carousel-dark .carousel-control-next-icon {
7396
  filter: invert(1) grayscale(100);
7397
}
16848 stevensc 7398
 
16825 efrain 7399
.carousel-dark .carousel-indicators [data-bs-target] {
7400
  background-color: #000;
7401
}
16848 stevensc 7402
 
16825 efrain 7403
.carousel-dark .carousel-caption {
7404
  color: #000;
7405
}
7406
 
7407
.spinner-grow,
7408
.spinner-border {
7409
  display: inline-block;
7410
  width: var(--bs-spinner-width);
7411
  height: var(--bs-spinner-height);
7412
  vertical-align: var(--bs-spinner-vertical-align);
7413
  border-radius: 50%;
7414
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7415
}
7416
 
7417
@keyframes spinner-border {
7418
  to {
16848 stevensc 7419
    transform: rotate(360deg)
7420
      /* rtl:ignore */
7421
    ;
16825 efrain 7422
  }
7423
}
16848 stevensc 7424
 
16825 efrain 7425
.spinner-border {
7426
  --bs-spinner-width: 2rem;
7427
  --bs-spinner-height: 2rem;
7428
  --bs-spinner-vertical-align: -0.125em;
7429
  --bs-spinner-border-width: 0.25em;
7430
  --bs-spinner-animation-speed: 0.75s;
7431
  --bs-spinner-animation-name: spinner-border;
7432
  border: var(--bs-spinner-border-width) solid currentcolor;
7433
  border-right-color: transparent;
7434
}
7435
 
7436
.spinner-border-sm {
7437
  --bs-spinner-width: 1rem;
7438
  --bs-spinner-height: 1rem;
7439
  --bs-spinner-border-width: 0.2em;
7440
}
7441
 
7442
@keyframes spinner-grow {
7443
  0% {
7444
    transform: scale(0);
7445
  }
16848 stevensc 7446
 
16825 efrain 7447
  50% {
7448
    opacity: 1;
7449
    transform: none;
7450
  }
7451
}
16848 stevensc 7452
 
16825 efrain 7453
.spinner-grow {
7454
  --bs-spinner-width: 2rem;
7455
  --bs-spinner-height: 2rem;
7456
  --bs-spinner-vertical-align: -0.125em;
7457
  --bs-spinner-animation-speed: 0.75s;
7458
  --bs-spinner-animation-name: spinner-grow;
7459
  background-color: currentcolor;
7460
  opacity: 0;
7461
}
7462
 
7463
.spinner-grow-sm {
7464
  --bs-spinner-width: 1rem;
7465
  --bs-spinner-height: 1rem;
7466
}
7467
 
7468
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7469
 
16825 efrain 7470
  .spinner-border,
7471
  .spinner-grow {
7472
    --bs-spinner-animation-speed: 1.5s;
7473
  }
7474
}
16848 stevensc 7475
 
16825 efrain 7476
.clearfix::after {
7477
  display: block;
7478
  clear: both;
7479
  content: "";
7480
}
7481
 
7482
.text-bg-primary {
7483
  color: #fff !important;
7484
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7485
}
7486
 
7487
.text-bg-secondary {
7488
  color: #fff !important;
7489
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7490
}
7491
 
7492
.text-bg-success {
7493
  color: #fff !important;
7494
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7495
}
7496
 
7497
.text-bg-info {
7498
  color: #000 !important;
7499
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7500
}
7501
 
7502
.text-bg-warning {
7503
  color: #000 !important;
7504
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7505
}
7506
 
7507
.text-bg-danger {
7508
  color: #fff !important;
7509
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7510
}
7511
 
7512
.text-bg-light {
7513
  color: #000 !important;
7514
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7515
}
7516
 
7517
.text-bg-dark {
7518
  color: #fff !important;
7519
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7520
}
7521
 
7522
.link-primary {
7523
  color: #6571ff !important;
7524
}
16848 stevensc 7525
 
7526
.link-primary:hover,
7527
.link-primary:focus {
16825 efrain 7528
  color: #515acc !important;
7529
}
7530
 
7531
.link-secondary {
7532
  color: #7987a1 !important;
7533
}
16848 stevensc 7534
 
7535
.link-secondary:hover,
7536
.link-secondary:focus {
16825 efrain 7537
  color: #616c81 !important;
7538
}
7539
 
7540
.link-success {
7541
  color: #05a34a !important;
7542
}
16848 stevensc 7543
 
7544
.link-success:hover,
7545
.link-success:focus {
16825 efrain 7546
  color: #04823b !important;
7547
}
7548
 
7549
.link-info {
7550
  color: #66d1d1 !important;
7551
}
16848 stevensc 7552
 
7553
.link-info:hover,
7554
.link-info:focus {
16825 efrain 7555
  color: #85dada !important;
7556
}
7557
 
7558
.link-warning {
7559
  color: #fbbc06 !important;
7560
}
16848 stevensc 7561
 
7562
.link-warning:hover,
7563
.link-warning:focus {
16825 efrain 7564
  color: #fcc938 !important;
7565
}
7566
 
7567
.link-danger {
7568
  color: #ff3366 !important;
7569
}
16848 stevensc 7570
 
7571
.link-danger:hover,
7572
.link-danger:focus {
16825 efrain 7573
  color: #cc2952 !important;
7574
}
7575
 
7576
.link-light {
7577
  color: #e9ecef !important;
7578
}
16848 stevensc 7579
 
7580
.link-light:hover,
7581
.link-light:focus {
16825 efrain 7582
  color: #edf0f2 !important;
7583
}
7584
 
7585
.link-dark {
7586
  color: #060c17 !important;
7587
}
16848 stevensc 7588
 
7589
.link-dark:hover,
7590
.link-dark:focus {
16825 efrain 7591
  color: #050a12 !important;
7592
}
7593
 
7594
.ratio {
7595
  position: relative;
7596
  width: 100%;
7597
}
16848 stevensc 7598
 
16825 efrain 7599
.ratio::before {
7600
  display: block;
7601
  padding-top: var(--bs-aspect-ratio);
7602
  content: "";
7603
}
16848 stevensc 7604
 
7605
.ratio>* {
16825 efrain 7606
  position: absolute;
7607
  top: 0;
7608
  left: 0;
7609
  width: 100%;
7610
  height: 100%;
7611
}
7612
 
7613
.ratio-1x1 {
7614
  --bs-aspect-ratio: 100%;
7615
}
7616
 
7617
.ratio-4x3 {
7618
  --bs-aspect-ratio: 75%;
7619
}
7620
 
7621
.ratio-16x9 {
7622
  --bs-aspect-ratio: 56.25%;
7623
}
7624
 
7625
.ratio-21x9 {
7626
  --bs-aspect-ratio: 42.8571428571%;
7627
}
7628
 
7629
.fixed-top {
7630
  position: fixed;
7631
  top: 0;
7632
  right: 0;
7633
  left: 0;
7634
  z-index: 1030;
7635
}
7636
 
7637
.fixed-bottom {
7638
  position: fixed;
7639
  right: 0;
7640
  bottom: 0;
7641
  left: 0;
7642
  z-index: 1030;
7643
}
7644
 
7645
.sticky-top {
7646
  position: sticky;
7647
  top: 0;
7648
  z-index: 1020;
7649
}
7650
 
7651
.sticky-bottom {
7652
  position: sticky;
7653
  bottom: 0;
7654
  z-index: 1020;
7655
}
7656
 
7657
@media (min-width: 576px) {
7658
  .sticky-sm-top {
7659
    position: sticky;
7660
    top: 0;
7661
    z-index: 1020;
7662
  }
16848 stevensc 7663
 
16825 efrain 7664
  .sticky-sm-bottom {
7665
    position: sticky;
7666
    bottom: 0;
7667
    z-index: 1020;
7668
  }
7669
}
16848 stevensc 7670
 
16825 efrain 7671
@media (min-width: 768px) {
7672
  .sticky-md-top {
7673
    position: sticky;
7674
    top: 0;
7675
    z-index: 1020;
7676
  }
16848 stevensc 7677
 
16825 efrain 7678
  .sticky-md-bottom {
7679
    position: sticky;
7680
    bottom: 0;
7681
    z-index: 1020;
7682
  }
7683
}
16848 stevensc 7684
 
16825 efrain 7685
@media (min-width: 992px) {
7686
  .sticky-lg-top {
7687
    position: sticky;
7688
    top: 0;
7689
    z-index: 1020;
7690
  }
16848 stevensc 7691
 
16825 efrain 7692
  .sticky-lg-bottom {
7693
    position: sticky;
7694
    bottom: 0;
7695
    z-index: 1020;
7696
  }
7697
}
16848 stevensc 7698
 
16825 efrain 7699
@media (min-width: 1200px) {
7700
  .sticky-xl-top {
7701
    position: sticky;
7702
    top: 0;
7703
    z-index: 1020;
7704
  }
16848 stevensc 7705
 
16825 efrain 7706
  .sticky-xl-bottom {
7707
    position: sticky;
7708
    bottom: 0;
7709
    z-index: 1020;
7710
  }
7711
}
16848 stevensc 7712
 
16825 efrain 7713
@media (min-width: 1400px) {
7714
  .sticky-xxl-top {
7715
    position: sticky;
7716
    top: 0;
7717
    z-index: 1020;
7718
  }
16848 stevensc 7719
 
16825 efrain 7720
  .sticky-xxl-bottom {
7721
    position: sticky;
7722
    bottom: 0;
7723
    z-index: 1020;
7724
  }
7725
}
16848 stevensc 7726
 
16825 efrain 7727
.hstack {
7728
  display: flex;
7729
  flex-direction: row;
7730
  align-items: center;
7731
  align-self: stretch;
7732
}
7733
 
7734
.vstack {
7735
  display: flex;
7736
  flex: 1 1 auto;
7737
  flex-direction: column;
7738
  align-self: stretch;
7739
}
7740
 
7741
.visually-hidden,
7742
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7743
  position: absolute !important;
7744
  width: 1px !important;
7745
  height: 1px !important;
7746
  padding: 0 !important;
7747
  margin: -1px !important;
7748
  overflow: hidden !important;
7749
  clip: rect(0, 0, 0, 0) !important;
7750
  white-space: nowrap !important;
7751
  border: 0 !important;
7752
}
7753
 
7754
.stretched-link::after {
7755
  position: absolute;
7756
  top: 0;
7757
  right: 0;
7758
  bottom: 0;
7759
  left: 0;
7760
  z-index: 1;
7761
  content: "";
7762
}
7763
 
7764
.text-truncate {
7765
  overflow: hidden;
7766
  text-overflow: ellipsis;
7767
  white-space: nowrap;
7768
}
7769
 
7770
.vr {
7771
  display: inline-block;
7772
  align-self: stretch;
7773
  width: 1px;
7774
  min-height: 1em;
7775
  background-color: currentcolor;
7776
  opacity: 0.1;
7777
}
7778
 
7779
.align-baseline {
7780
  vertical-align: baseline !important;
7781
}
7782
 
7783
.align-top {
7784
  vertical-align: top !important;
7785
}
7786
 
7787
.align-middle {
7788
  vertical-align: middle !important;
7789
}
7790
 
7791
.align-bottom {
7792
  vertical-align: bottom !important;
7793
}
7794
 
7795
.align-text-bottom {
7796
  vertical-align: text-bottom !important;
7797
}
7798
 
7799
.align-text-top {
7800
  vertical-align: text-top !important;
7801
}
7802
 
7803
.float-start {
7804
  float: left !important;
7805
}
7806
 
7807
.float-end {
7808
  float: right !important;
7809
}
7810
 
7811
.float-none {
7812
  float: none !important;
7813
}
7814
 
7815
.opacity-0 {
7816
  opacity: 0 !important;
7817
}
7818
 
7819
.opacity-25 {
7820
  opacity: 0.25 !important;
7821
}
7822
 
7823
.opacity-50 {
7824
  opacity: 0.5 !important;
7825
}
7826
 
7827
.opacity-75 {
7828
  opacity: 0.75 !important;
7829
}
7830
 
7831
.opacity-100 {
7832
  opacity: 1 !important;
7833
}
7834
 
7835
.overflow-auto {
7836
  overflow: auto !important;
7837
}
7838
 
7839
.overflow-hidden {
7840
  overflow: hidden !important;
7841
}
7842
 
7843
.overflow-visible {
7844
  overflow: visible !important;
7845
}
7846
 
7847
.overflow-scroll {
7848
  overflow: scroll !important;
7849
}
7850
 
7851
.d-inline {
7852
  display: inline !important;
7853
}
7854
 
7855
.d-inline-block {
7856
  display: inline-block !important;
7857
}
7858
 
7859
.d-block {
7860
  display: block !important;
7861
}
7862
 
7863
.d-grid {
7864
  display: grid !important;
7865
}
7866
 
7867
.d-table {
7868
  display: table !important;
7869
}
7870
 
7871
.d-table-row {
7872
  display: table-row !important;
7873
}
7874
 
7875
.d-table-cell {
7876
  display: table-cell !important;
7877
}
7878
 
7879
.d-flex {
7880
  display: flex !important;
7881
}
7882
 
7883
.d-inline-flex {
7884
  display: inline-flex !important;
7885
}
7886
 
16848 stevensc 7887
.d-none,
7888
.navbar .search-form {
16825 efrain 7889
  display: none !important;
7890
}
7891
 
7892
.shadow {
7893
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7894
}
7895
 
7896
.shadow-sm {
7897
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7898
}
7899
 
7900
.shadow-lg {
7901
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7902
}
7903
 
7904
.shadow-none {
7905
  box-shadow: none !important;
7906
}
7907
 
7908
.position-static {
7909
  position: static !important;
7910
}
7911
 
7912
.position-relative {
7913
  position: relative !important;
7914
}
7915
 
7916
.position-absolute {
7917
  position: absolute !important;
7918
}
7919
 
7920
.position-fixed {
7921
  position: fixed !important;
7922
}
7923
 
7924
.position-sticky {
7925
  position: sticky !important;
7926
}
7927
 
7928
.top-0 {
7929
  top: 0 !important;
7930
}
7931
 
7932
.top-10 {
7933
  top: 10% !important;
7934
}
7935
 
7936
.top-20 {
7937
  top: 20% !important;
7938
}
7939
 
7940
.top-25 {
7941
  top: 25% !important;
7942
}
7943
 
7944
.top-30 {
7945
  top: 30% !important;
7946
}
7947
 
7948
.top-40 {
7949
  top: 40% !important;
7950
}
7951
 
7952
.top-50 {
7953
  top: 50% !important;
7954
}
7955
 
7956
.top-60 {
7957
  top: 60% !important;
7958
}
7959
 
7960
.top-70 {
7961
  top: 70% !important;
7962
}
7963
 
7964
.top-75 {
7965
  top: 75% !important;
7966
}
7967
 
7968
.top-80 {
7969
  top: 80% !important;
7970
}
7971
 
7972
.top-90 {
7973
  top: 90% !important;
7974
}
7975
 
7976
.top-100 {
7977
  top: 100% !important;
7978
}
7979
 
7980
.bottom-0 {
7981
  bottom: 0 !important;
7982
}
7983
 
7984
.bottom-10 {
7985
  bottom: 10% !important;
7986
}
7987
 
7988
.bottom-20 {
7989
  bottom: 20% !important;
7990
}
7991
 
7992
.bottom-25 {
7993
  bottom: 25% !important;
7994
}
7995
 
7996
.bottom-30 {
7997
  bottom: 30% !important;
7998
}
7999
 
8000
.bottom-40 {
8001
  bottom: 40% !important;
8002
}
8003
 
8004
.bottom-50 {
8005
  bottom: 50% !important;
8006
}
8007
 
8008
.bottom-60 {
8009
  bottom: 60% !important;
8010
}
8011
 
8012
.bottom-70 {
8013
  bottom: 70% !important;
8014
}
8015
 
8016
.bottom-75 {
8017
  bottom: 75% !important;
8018
}
8019
 
8020
.bottom-80 {
8021
  bottom: 80% !important;
8022
}
8023
 
8024
.bottom-90 {
8025
  bottom: 90% !important;
8026
}
8027
 
8028
.bottom-100 {
8029
  bottom: 100% !important;
8030
}
8031
 
8032
.start-0 {
8033
  left: 0 !important;
8034
}
8035
 
8036
.start-10 {
8037
  left: 10% !important;
8038
}
8039
 
8040
.start-20 {
8041
  left: 20% !important;
8042
}
8043
 
8044
.start-25 {
8045
  left: 25% !important;
8046
}
8047
 
8048
.start-30 {
8049
  left: 30% !important;
8050
}
8051
 
8052
.start-40 {
8053
  left: 40% !important;
8054
}
8055
 
8056
.start-50 {
8057
  left: 50% !important;
8058
}
8059
 
8060
.start-60 {
8061
  left: 60% !important;
8062
}
8063
 
8064
.start-70 {
8065
  left: 70% !important;
8066
}
8067
 
8068
.start-75 {
8069
  left: 75% !important;
8070
}
8071
 
8072
.start-80 {
8073
  left: 80% !important;
8074
}
8075
 
8076
.start-90 {
8077
  left: 90% !important;
8078
}
8079
 
8080
.start-100 {
8081
  left: 100% !important;
8082
}
8083
 
8084
.end-0 {
8085
  right: 0 !important;
8086
}
8087
 
8088
.end-10 {
8089
  right: 10% !important;
8090
}
8091
 
8092
.end-20 {
8093
  right: 20% !important;
8094
}
8095
 
8096
.end-25 {
8097
  right: 25% !important;
8098
}
8099
 
8100
.end-30 {
8101
  right: 30% !important;
8102
}
8103
 
8104
.end-40 {
8105
  right: 40% !important;
8106
}
8107
 
8108
.end-50 {
8109
  right: 50% !important;
8110
}
8111
 
8112
.end-60 {
8113
  right: 60% !important;
8114
}
8115
 
8116
.end-70 {
8117
  right: 70% !important;
8118
}
8119
 
8120
.end-75 {
8121
  right: 75% !important;
8122
}
8123
 
8124
.end-80 {
8125
  right: 80% !important;
8126
}
8127
 
8128
.end-90 {
8129
  right: 90% !important;
8130
}
8131
 
8132
.end-100 {
8133
  right: 100% !important;
8134
}
8135
 
8136
.translate-middle {
8137
  transform: translate(-50%, -50%) !important;
8138
}
8139
 
8140
.translate-middle-x {
8141
  transform: translateX(-50%) !important;
8142
}
8143
 
8144
.translate-middle-y {
8145
  transform: translateY(-50%) !important;
8146
}
8147
 
8148
.border {
8149
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8150
}
8151
 
8152
.border-0 {
8153
  border: 0 !important;
8154
}
8155
 
8156
.border-top {
8157
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8158
}
8159
 
8160
.border-top-0 {
8161
  border-top: 0 !important;
8162
}
8163
 
8164
.border-end {
8165
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8166
}
8167
 
8168
.border-end-0 {
8169
  border-right: 0 !important;
8170
}
8171
 
8172
.border-bottom {
8173
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8174
}
8175
 
8176
.border-bottom-0 {
8177
  border-bottom: 0 !important;
8178
}
8179
 
8180
.border-start {
8181
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8182
}
8183
 
8184
.border-start-0 {
8185
  border-left: 0 !important;
8186
}
8187
 
8188
.border-primary {
8189
  --bs-border-opacity: 1;
8190
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8191
}
8192
 
8193
.border-secondary {
8194
  --bs-border-opacity: 1;
8195
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8196
}
8197
 
8198
.border-success {
8199
  --bs-border-opacity: 1;
8200
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8201
}
8202
 
8203
.border-info {
8204
  --bs-border-opacity: 1;
8205
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8206
}
8207
 
8208
.border-warning {
8209
  --bs-border-opacity: 1;
8210
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8211
}
8212
 
16848 stevensc 8213
.border-danger,
8214
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8215
  --bs-border-opacity: 1;
8216
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8217
}
8218
 
8219
.border-light {
8220
  --bs-border-opacity: 1;
8221
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8222
}
8223
 
8224
.border-dark {
8225
  --bs-border-opacity: 1;
8226
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8227
}
8228
 
8229
.border-white {
8230
  --bs-border-opacity: 1;
8231
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8232
}
8233
 
8234
.border-1 {
8235
  --bs-border-width: 1px;
8236
}
8237
 
8238
.border-2 {
8239
  --bs-border-width: 2px;
8240
}
8241
 
8242
.border-3 {
8243
  --bs-border-width: 3px;
8244
}
8245
 
8246
.border-4 {
8247
  --bs-border-width: 4px;
8248
}
8249
 
8250
.border-5 {
8251
  --bs-border-width: 5px;
8252
}
8253
 
8254
.border-opacity-10 {
8255
  --bs-border-opacity: 0.1;
8256
}
8257
 
8258
.border-opacity-25 {
8259
  --bs-border-opacity: 0.25;
8260
}
8261
 
8262
.border-opacity-50 {
8263
  --bs-border-opacity: 0.5;
8264
}
8265
 
8266
.border-opacity-75 {
8267
  --bs-border-opacity: 0.75;
8268
}
8269
 
8270
.border-opacity-100 {
8271
  --bs-border-opacity: 1;
8272
}
8273
 
16854 stevensc 8274
.w-fit {
8275
  width: fit-content !important;
8276
}
8277
 
16825 efrain 8278
.w-25 {
8279
  width: 25% !important;
8280
}
8281
 
8282
.w-50 {
8283
  width: 50% !important;
8284
}
8285
 
8286
.w-75 {
8287
  width: 75% !important;
8288
}
8289
 
8290
.w-100 {
8291
  width: 100% !important;
8292
}
8293
 
8294
.w-auto {
8295
  width: auto !important;
8296
}
8297
 
8298
.mw-100 {
8299
  max-width: 100% !important;
8300
}
8301
 
8302
.vw-100 {
8303
  width: 100vw !important;
8304
}
8305
 
8306
.min-vw-100 {
8307
  min-width: 100vw !important;
8308
}
8309
 
8310
.h-25 {
8311
  height: 25% !important;
8312
}
8313
 
8314
.h-50 {
8315
  height: 50% !important;
8316
}
8317
 
8318
.h-75 {
8319
  height: 75% !important;
8320
}
8321
 
8322
.h-100 {
8323
  height: 100% !important;
8324
}
8325
 
8326
.h-auto {
8327
  height: auto !important;
8328
}
8329
 
8330
.mh-100 {
8331
  max-height: 100% !important;
8332
}
8333
 
8334
.vh-100 {
8335
  height: 100vh !important;
8336
}
8337
 
8338
.min-vh-100 {
8339
  min-height: 100vh !important;
8340
}
8341
 
8342
.flex-fill {
8343
  flex: 1 1 auto !important;
8344
}
8345
 
8346
.flex-row {
8347
  flex-direction: row !important;
8348
}
8349
 
8350
.flex-column {
8351
  flex-direction: column !important;
8352
}
8353
 
8354
.flex-row-reverse {
8355
  flex-direction: row-reverse !important;
8356
}
8357
 
8358
.flex-column-reverse {
8359
  flex-direction: column-reverse !important;
8360
}
8361
 
8362
.flex-grow-0 {
8363
  flex-grow: 0 !important;
8364
}
8365
 
8366
.flex-grow-1 {
8367
  flex-grow: 1 !important;
8368
}
8369
 
8370
.flex-shrink-0 {
8371
  flex-shrink: 0 !important;
8372
}
8373
 
8374
.flex-shrink-1 {
8375
  flex-shrink: 1 !important;
8376
}
8377
 
8378
.flex-wrap {
8379
  flex-wrap: wrap !important;
8380
}
8381
 
8382
.flex-nowrap {
8383
  flex-wrap: nowrap !important;
8384
}
8385
 
8386
.flex-wrap-reverse {
8387
  flex-wrap: wrap-reverse !important;
8388
}
8389
 
8390
.justify-content-start {
8391
  justify-content: flex-start !important;
8392
}
8393
 
8394
.justify-content-end {
8395
  justify-content: flex-end !important;
8396
}
8397
 
16848 stevensc 8398
.justify-content-center,
8399
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8400
  justify-content: center !important;
8401
}
8402
 
8403
.justify-content-between {
8404
  justify-content: space-between !important;
8405
}
8406
 
8407
.justify-content-around {
8408
  justify-content: space-around !important;
8409
}
8410
 
8411
.justify-content-evenly {
8412
  justify-content: space-evenly !important;
8413
}
8414
 
8415
.align-items-start {
8416
  align-items: flex-start !important;
8417
}
8418
 
8419
.align-items-end {
8420
  align-items: flex-end !important;
8421
}
8422
 
16848 stevensc 8423
.align-items-center,
8424
.navbar .search-form {
16825 efrain 8425
  align-items: center !important;
8426
}
8427
 
8428
.align-items-baseline {
8429
  align-items: baseline !important;
8430
}
8431
 
8432
.align-items-stretch {
8433
  align-items: stretch !important;
8434
}
8435
 
8436
.align-content-start {
8437
  align-content: flex-start !important;
8438
}
8439
 
8440
.align-content-end {
8441
  align-content: flex-end !important;
8442
}
8443
 
8444
.align-content-center {
8445
  align-content: center !important;
8446
}
8447
 
8448
.align-content-between {
8449
  align-content: space-between !important;
8450
}
8451
 
8452
.align-content-around {
8453
  align-content: space-around !important;
8454
}
8455
 
8456
.align-content-stretch {
8457
  align-content: stretch !important;
8458
}
8459
 
8460
.align-self-auto {
8461
  align-self: auto !important;
8462
}
8463
 
8464
.align-self-start {
8465
  align-self: flex-start !important;
8466
}
8467
 
8468
.align-self-end {
8469
  align-self: flex-end !important;
8470
}
8471
 
8472
.align-self-center {
8473
  align-self: center !important;
8474
}
8475
 
8476
.align-self-baseline {
8477
  align-self: baseline !important;
8478
}
8479
 
8480
.align-self-stretch {
8481
  align-self: stretch !important;
8482
}
8483
 
8484
.order-first {
8485
  order: -1 !important;
8486
}
8487
 
8488
.order-0 {
8489
  order: 0 !important;
8490
}
8491
 
8492
.order-1 {
8493
  order: 1 !important;
8494
}
8495
 
8496
.order-2 {
8497
  order: 2 !important;
8498
}
8499
 
8500
.order-3 {
8501
  order: 3 !important;
8502
}
8503
 
8504
.order-4 {
8505
  order: 4 !important;
8506
}
8507
 
8508
.order-5 {
8509
  order: 5 !important;
8510
}
8511
 
8512
.order-last {
8513
  order: 6 !important;
8514
}
8515
 
8516
.m-0 {
8517
  margin: 0 !important;
8518
}
8519
 
8520
.m-1 {
8521
  margin: 0.25rem !important;
8522
}
8523
 
8524
.m-2 {
8525
  margin: 0.5rem !important;
8526
}
8527
 
8528
.m-3 {
8529
  margin: 1rem !important;
8530
}
8531
 
8532
.m-4 {
8533
  margin: 1.5rem !important;
8534
}
8535
 
8536
.m-5 {
8537
  margin: 3rem !important;
8538
}
8539
 
8540
.m-6 {
8541
  margin: 4.5rem !important;
8542
}
8543
 
8544
.m-7 {
8545
  margin: 6rem !important;
8546
}
8547
 
8548
.m-auto {
8549
  margin: auto !important;
8550
}
8551
 
8552
.mx-0 {
8553
  margin-right: 0 !important;
8554
  margin-left: 0 !important;
8555
}
8556
 
8557
.mx-1 {
8558
  margin-right: 0.25rem !important;
8559
  margin-left: 0.25rem !important;
8560
}
8561
 
8562
.mx-2 {
8563
  margin-right: 0.5rem !important;
8564
  margin-left: 0.5rem !important;
8565
}
8566
 
8567
.mx-3 {
8568
  margin-right: 1rem !important;
8569
  margin-left: 1rem !important;
8570
}
8571
 
8572
.mx-4 {
8573
  margin-right: 1.5rem !important;
8574
  margin-left: 1.5rem !important;
8575
}
8576
 
8577
.mx-5 {
8578
  margin-right: 3rem !important;
8579
  margin-left: 3rem !important;
8580
}
8581
 
8582
.mx-6 {
8583
  margin-right: 4.5rem !important;
8584
  margin-left: 4.5rem !important;
8585
}
8586
 
8587
.mx-7 {
8588
  margin-right: 6rem !important;
8589
  margin-left: 6rem !important;
8590
}
8591
 
8592
.mx-auto {
8593
  margin-right: auto !important;
8594
  margin-left: auto !important;
8595
}
8596
 
8597
.my-0 {
8598
  margin-top: 0 !important;
8599
  margin-bottom: 0 !important;
8600
}
8601
 
8602
.my-1 {
8603
  margin-top: 0.25rem !important;
8604
  margin-bottom: 0.25rem !important;
8605
}
8606
 
8607
.my-2 {
8608
  margin-top: 0.5rem !important;
8609
  margin-bottom: 0.5rem !important;
8610
}
8611
 
8612
.my-3 {
8613
  margin-top: 1rem !important;
8614
  margin-bottom: 1rem !important;
8615
}
8616
 
8617
.my-4 {
8618
  margin-top: 1.5rem !important;
8619
  margin-bottom: 1.5rem !important;
8620
}
8621
 
8622
.my-5 {
8623
  margin-top: 3rem !important;
8624
  margin-bottom: 3rem !important;
8625
}
8626
 
8627
.my-6 {
8628
  margin-top: 4.5rem !important;
8629
  margin-bottom: 4.5rem !important;
8630
}
8631
 
8632
.my-7 {
8633
  margin-top: 6rem !important;
8634
  margin-bottom: 6rem !important;
8635
}
8636
 
8637
.my-auto {
8638
  margin-top: auto !important;
8639
  margin-bottom: auto !important;
8640
}
8641
 
8642
.mt-0 {
8643
  margin-top: 0 !important;
8644
}
8645
 
8646
.mt-1 {
8647
  margin-top: 0.25rem !important;
8648
}
8649
 
8650
.mt-2 {
8651
  margin-top: 0.5rem !important;
8652
}
8653
 
16848 stevensc 8654
.mt-3,
8655
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8656
  margin-top: 1rem !important;
8657
}
8658
 
8659
.mt-4 {
8660
  margin-top: 1.5rem !important;
8661
}
8662
 
8663
.mt-5 {
8664
  margin-top: 3rem !important;
8665
}
8666
 
8667
.mt-6 {
8668
  margin-top: 4.5rem !important;
8669
}
8670
 
8671
.mt-7 {
8672
  margin-top: 6rem !important;
8673
}
8674
 
8675
.mt-auto {
8676
  margin-top: auto !important;
8677
}
8678
 
8679
.me-0 {
8680
  margin-right: 0 !important;
8681
}
8682
 
8683
.me-1 {
8684
  margin-right: 0.25rem !important;
8685
}
8686
 
8687
.me-2 {
8688
  margin-right: 0.5rem !important;
8689
}
8690
 
8691
.me-3 {
8692
  margin-right: 1rem !important;
8693
}
8694
 
8695
.me-4 {
8696
  margin-right: 1.5rem !important;
8697
}
8698
 
8699
.me-5 {
8700
  margin-right: 3rem !important;
8701
}
8702
 
8703
.me-6 {
8704
  margin-right: 4.5rem !important;
8705
}
8706
 
8707
.me-7 {
8708
  margin-right: 6rem !important;
8709
}
8710
 
8711
.me-auto {
8712
  margin-right: auto !important;
8713
}
8714
 
8715
.mb-0 {
8716
  margin-bottom: 0 !important;
8717
}
8718
 
16848 stevensc 8719
.mb-1,
8720
.example .btn-group {
16825 efrain 8721
  margin-bottom: 0.25rem !important;
8722
}
8723
 
8724
.mb-2 {
8725
  margin-bottom: 0.5rem !important;
8726
}
8727
 
8728
.mb-3 {
8729
  margin-bottom: 1rem !important;
8730
}
8731
 
8732
.mb-4 {
8733
  margin-bottom: 1.5rem !important;
8734
}
8735
 
8736
.mb-5 {
8737
  margin-bottom: 3rem !important;
8738
}
8739
 
8740
.mb-6 {
8741
  margin-bottom: 4.5rem !important;
8742
}
8743
 
8744
.mb-7 {
8745
  margin-bottom: 6rem !important;
8746
}
8747
 
8748
.mb-auto {
8749
  margin-bottom: auto !important;
8750
}
8751
 
8752
.ms-0 {
8753
  margin-left: 0 !important;
8754
}
8755
 
8756
.ms-1 {
8757
  margin-left: 0.25rem !important;
8758
}
8759
 
8760
.ms-2 {
8761
  margin-left: 0.5rem !important;
8762
}
8763
 
8764
.ms-3 {
8765
  margin-left: 1rem !important;
8766
}
8767
 
8768
.ms-4 {
8769
  margin-left: 1.5rem !important;
8770
}
8771
 
8772
.ms-5 {
8773
  margin-left: 3rem !important;
8774
}
8775
 
8776
.ms-6 {
8777
  margin-left: 4.5rem !important;
8778
}
8779
 
8780
.ms-7 {
8781
  margin-left: 6rem !important;
8782
}
8783
 
8784
.ms-auto {
8785
  margin-left: auto !important;
8786
}
8787
 
8788
.m-n1 {
8789
  margin: -0.25rem !important;
8790
}
8791
 
8792
.m-n2 {
8793
  margin: -0.5rem !important;
8794
}
8795
 
8796
.m-n3 {
8797
  margin: -1rem !important;
8798
}
8799
 
8800
.m-n4 {
8801
  margin: -1.5rem !important;
8802
}
8803
 
8804
.m-n5 {
8805
  margin: -3rem !important;
8806
}
8807
 
8808
.m-n6 {
8809
  margin: -4.5rem !important;
8810
}
8811
 
8812
.m-n7 {
8813
  margin: -6rem !important;
8814
}
8815
 
8816
.mx-n1 {
8817
  margin-right: -0.25rem !important;
8818
  margin-left: -0.25rem !important;
8819
}
8820
 
8821
.mx-n2 {
8822
  margin-right: -0.5rem !important;
8823
  margin-left: -0.5rem !important;
8824
}
8825
 
8826
.mx-n3 {
8827
  margin-right: -1rem !important;
8828
  margin-left: -1rem !important;
8829
}
8830
 
8831
.mx-n4 {
8832
  margin-right: -1.5rem !important;
8833
  margin-left: -1.5rem !important;
8834
}
8835
 
8836
.mx-n5 {
8837
  margin-right: -3rem !important;
8838
  margin-left: -3rem !important;
8839
}
8840
 
8841
.mx-n6 {
8842
  margin-right: -4.5rem !important;
8843
  margin-left: -4.5rem !important;
8844
}
8845
 
8846
.mx-n7 {
8847
  margin-right: -6rem !important;
8848
  margin-left: -6rem !important;
8849
}
8850
 
8851
.my-n1 {
8852
  margin-top: -0.25rem !important;
8853
  margin-bottom: -0.25rem !important;
8854
}
8855
 
8856
.my-n2 {
8857
  margin-top: -0.5rem !important;
8858
  margin-bottom: -0.5rem !important;
8859
}
8860
 
8861
.my-n3 {
8862
  margin-top: -1rem !important;
8863
  margin-bottom: -1rem !important;
8864
}
8865
 
8866
.my-n4 {
8867
  margin-top: -1.5rem !important;
8868
  margin-bottom: -1.5rem !important;
8869
}
8870
 
8871
.my-n5 {
8872
  margin-top: -3rem !important;
8873
  margin-bottom: -3rem !important;
8874
}
8875
 
8876
.my-n6 {
8877
  margin-top: -4.5rem !important;
8878
  margin-bottom: -4.5rem !important;
8879
}
8880
 
8881
.my-n7 {
8882
  margin-top: -6rem !important;
8883
  margin-bottom: -6rem !important;
8884
}
8885
 
8886
.mt-n1 {
8887
  margin-top: -0.25rem !important;
8888
}
8889
 
8890
.mt-n2 {
8891
  margin-top: -0.5rem !important;
8892
}
8893
 
8894
.mt-n3 {
8895
  margin-top: -1rem !important;
8896
}
8897
 
8898
.mt-n4 {
8899
  margin-top: -1.5rem !important;
8900
}
8901
 
8902
.mt-n5 {
8903
  margin-top: -3rem !important;
8904
}
8905
 
8906
.mt-n6 {
8907
  margin-top: -4.5rem !important;
8908
}
8909
 
8910
.mt-n7 {
8911
  margin-top: -6rem !important;
8912
}
8913
 
8914
.me-n1 {
8915
  margin-right: -0.25rem !important;
8916
}
8917
 
8918
.me-n2 {
8919
  margin-right: -0.5rem !important;
8920
}
8921
 
8922
.me-n3 {
8923
  margin-right: -1rem !important;
8924
}
8925
 
8926
.me-n4 {
8927
  margin-right: -1.5rem !important;
8928
}
8929
 
8930
.me-n5 {
8931
  margin-right: -3rem !important;
8932
}
8933
 
8934
.me-n6 {
8935
  margin-right: -4.5rem !important;
8936
}
8937
 
8938
.me-n7 {
8939
  margin-right: -6rem !important;
8940
}
8941
 
8942
.mb-n1 {
8943
  margin-bottom: -0.25rem !important;
8944
}
8945
 
8946
.mb-n2 {
8947
  margin-bottom: -0.5rem !important;
8948
}
8949
 
8950
.mb-n3 {
8951
  margin-bottom: -1rem !important;
8952
}
8953
 
8954
.mb-n4 {
8955
  margin-bottom: -1.5rem !important;
8956
}
8957
 
8958
.mb-n5 {
8959
  margin-bottom: -3rem !important;
8960
}
8961
 
8962
.mb-n6 {
8963
  margin-bottom: -4.5rem !important;
8964
}
8965
 
8966
.mb-n7 {
8967
  margin-bottom: -6rem !important;
8968
}
8969
 
8970
.ms-n1 {
8971
  margin-left: -0.25rem !important;
8972
}
8973
 
8974
.ms-n2 {
8975
  margin-left: -0.5rem !important;
8976
}
8977
 
8978
.ms-n3 {
8979
  margin-left: -1rem !important;
8980
}
8981
 
8982
.ms-n4 {
8983
  margin-left: -1.5rem !important;
8984
}
8985
 
8986
.ms-n5 {
8987
  margin-left: -3rem !important;
8988
}
8989
 
8990
.ms-n6 {
8991
  margin-left: -4.5rem !important;
8992
}
8993
 
8994
.ms-n7 {
8995
  margin-left: -6rem !important;
8996
}
8997
 
8998
.p-0 {
8999
  padding: 0 !important;
9000
}
9001
 
9002
.p-1 {
9003
  padding: 0.25rem !important;
9004
}
9005
 
9006
.p-2 {
9007
  padding: 0.5rem !important;
9008
}
9009
 
9010
.p-3 {
9011
  padding: 1rem !important;
9012
}
9013
 
9014
.p-4 {
9015
  padding: 1.5rem !important;
9016
}
9017
 
9018
.p-5 {
9019
  padding: 3rem !important;
9020
}
9021
 
9022
.p-6 {
9023
  padding: 4.5rem !important;
9024
}
9025
 
9026
.p-7 {
9027
  padding: 6rem !important;
9028
}
9029
 
9030
.px-0 {
9031
  padding-right: 0 !important;
9032
  padding-left: 0 !important;
9033
}
9034
 
9035
.px-1 {
9036
  padding-right: 0.25rem !important;
9037
  padding-left: 0.25rem !important;
9038
}
9039
 
9040
.px-2 {
9041
  padding-right: 0.5rem !important;
9042
  padding-left: 0.5rem !important;
9043
}
9044
 
9045
.px-3 {
9046
  padding-right: 1rem !important;
9047
  padding-left: 1rem !important;
9048
}
9049
 
9050
.px-4 {
9051
  padding-right: 1.5rem !important;
9052
  padding-left: 1.5rem !important;
9053
}
9054
 
9055
.px-5 {
9056
  padding-right: 3rem !important;
9057
  padding-left: 3rem !important;
9058
}
9059
 
9060
.px-6 {
9061
  padding-right: 4.5rem !important;
9062
  padding-left: 4.5rem !important;
9063
}
9064
 
9065
.px-7 {
9066
  padding-right: 6rem !important;
9067
  padding-left: 6rem !important;
9068
}
9069
 
9070
.py-0 {
9071
  padding-top: 0 !important;
9072
  padding-bottom: 0 !important;
9073
}
9074
 
9075
.py-1 {
9076
  padding-top: 0.25rem !important;
9077
  padding-bottom: 0.25rem !important;
9078
}
9079
 
9080
.py-2 {
9081
  padding-top: 0.5rem !important;
9082
  padding-bottom: 0.5rem !important;
9083
}
9084
 
9085
.py-3 {
9086
  padding-top: 1rem !important;
9087
  padding-bottom: 1rem !important;
9088
}
9089
 
9090
.py-4 {
9091
  padding-top: 1.5rem !important;
9092
  padding-bottom: 1.5rem !important;
9093
}
9094
 
9095
.py-5 {
9096
  padding-top: 3rem !important;
9097
  padding-bottom: 3rem !important;
9098
}
9099
 
9100
.py-6 {
9101
  padding-top: 4.5rem !important;
9102
  padding-bottom: 4.5rem !important;
9103
}
9104
 
9105
.py-7 {
9106
  padding-top: 6rem !important;
9107
  padding-bottom: 6rem !important;
9108
}
9109
 
9110
.pt-0 {
9111
  padding-top: 0 !important;
9112
}
9113
 
9114
.pt-1 {
9115
  padding-top: 0.25rem !important;
9116
}
9117
 
9118
.pt-2 {
9119
  padding-top: 0.5rem !important;
9120
}
9121
 
9122
.pt-3 {
9123
  padding-top: 1rem !important;
9124
}
9125
 
9126
.pt-4 {
9127
  padding-top: 1.5rem !important;
9128
}
9129
 
9130
.pt-5 {
9131
  padding-top: 3rem !important;
9132
}
9133
 
9134
.pt-6 {
9135
  padding-top: 4.5rem !important;
9136
}
9137
 
9138
.pt-7 {
9139
  padding-top: 6rem !important;
9140
}
9141
 
9142
.pe-0 {
9143
  padding-right: 0 !important;
9144
}
9145
 
9146
.pe-1 {
9147
  padding-right: 0.25rem !important;
9148
}
9149
 
9150
.pe-2 {
9151
  padding-right: 0.5rem !important;
9152
}
9153
 
9154
.pe-3 {
9155
  padding-right: 1rem !important;
9156
}
9157
 
9158
.pe-4 {
9159
  padding-right: 1.5rem !important;
9160
}
9161
 
9162
.pe-5 {
9163
  padding-right: 3rem !important;
9164
}
9165
 
9166
.pe-6 {
9167
  padding-right: 4.5rem !important;
9168
}
9169
 
9170
.pe-7 {
9171
  padding-right: 6rem !important;
9172
}
9173
 
9174
.pb-0 {
9175
  padding-bottom: 0 !important;
9176
}
9177
 
9178
.pb-1 {
9179
  padding-bottom: 0.25rem !important;
9180
}
9181
 
9182
.pb-2 {
9183
  padding-bottom: 0.5rem !important;
9184
}
9185
 
9186
.pb-3 {
9187
  padding-bottom: 1rem !important;
9188
}
9189
 
9190
.pb-4 {
9191
  padding-bottom: 1.5rem !important;
9192
}
9193
 
9194
.pb-5 {
9195
  padding-bottom: 3rem !important;
9196
}
9197
 
9198
.pb-6 {
9199
  padding-bottom: 4.5rem !important;
9200
}
9201
 
9202
.pb-7 {
9203
  padding-bottom: 6rem !important;
9204
}
9205
 
9206
.ps-0 {
9207
  padding-left: 0 !important;
9208
}
9209
 
9210
.ps-1 {
9211
  padding-left: 0.25rem !important;
9212
}
9213
 
9214
.ps-2 {
9215
  padding-left: 0.5rem !important;
9216
}
9217
 
9218
.ps-3 {
9219
  padding-left: 1rem !important;
9220
}
9221
 
9222
.ps-4 {
9223
  padding-left: 1.5rem !important;
9224
}
9225
 
9226
.ps-5 {
9227
  padding-left: 3rem !important;
9228
}
9229
 
9230
.ps-6 {
9231
  padding-left: 4.5rem !important;
9232
}
9233
 
9234
.ps-7 {
9235
  padding-left: 6rem !important;
9236
}
9237
 
9238
.gap-0 {
9239
  gap: 0 !important;
9240
}
9241
 
9242
.gap-1 {
9243
  gap: 0.25rem !important;
9244
}
9245
 
9246
.gap-2 {
9247
  gap: 0.5rem !important;
9248
}
9249
 
9250
.gap-3 {
9251
  gap: 1rem !important;
9252
}
9253
 
9254
.gap-4 {
9255
  gap: 1.5rem !important;
9256
}
9257
 
9258
.gap-5 {
9259
  gap: 3rem !important;
9260
}
9261
 
9262
.gap-6 {
9263
  gap: 4.5rem !important;
9264
}
9265
 
9266
.gap-7 {
9267
  gap: 6rem !important;
9268
}
9269
 
9270
.font-monospace {
9271
  font-family: var(--bs-font-monospace) !important;
9272
}
9273
 
9274
.fs-1 {
9275
  font-size: calc(1.375rem + 1.5vw) !important;
9276
}
9277
 
9278
.fs-2 {
9279
  font-size: calc(1.325rem + 0.9vw) !important;
9280
}
9281
 
9282
.fs-3 {
9283
  font-size: calc(1.275rem + 0.3vw) !important;
9284
}
9285
 
9286
.fs-4 {
9287
  font-size: 1.25rem !important;
9288
}
9289
 
9290
.fs-5 {
9291
  font-size: 1rem !important;
9292
}
9293
 
9294
.fs-6 {
9295
  font-size: 0.875rem !important;
9296
}
9297
 
9298
.fst-italic {
9299
  font-style: italic !important;
9300
}
9301
 
9302
.fst-normal {
9303
  font-style: normal !important;
9304
}
9305
 
9306
.fw-light {
9307
  font-weight: 300 !important;
9308
}
9309
 
9310
.fw-lighter {
9311
  font-weight: lighter !important;
9312
}
9313
 
9314
.fw-normal {
9315
  font-weight: 400 !important;
9316
}
9317
 
9318
.fw-bold {
9319
  font-weight: 500 !important;
9320
}
9321
 
9322
.fw-semibold {
9323
  font-weight: 600 !important;
9324
}
9325
 
9326
.fw-bolder {
9327
  font-weight: 700 !important;
9328
}
9329
 
9330
.lh-1 {
9331
  line-height: 1 !important;
9332
}
9333
 
9334
.lh-sm {
9335
  line-height: 1.25 !important;
9336
}
9337
 
9338
.lh-base {
9339
  line-height: 1.5 !important;
9340
}
9341
 
9342
.lh-lg {
9343
  line-height: 2 !important;
9344
}
9345
 
9346
.text-start {
9347
  text-align: left !important;
9348
}
9349
 
9350
.text-end {
9351
  text-align: right !important;
9352
}
9353
 
9354
.text-center {
9355
  text-align: center !important;
9356
}
9357
 
9358
.text-decoration-none {
9359
  text-decoration: none !important;
9360
}
9361
 
9362
.text-decoration-underline {
9363
  text-decoration: underline !important;
9364
}
9365
 
9366
.text-decoration-line-through {
9367
  text-decoration: line-through !important;
9368
}
9369
 
9370
.text-lowercase {
9371
  text-transform: lowercase !important;
9372
}
9373
 
9374
.text-uppercase {
9375
  text-transform: uppercase !important;
9376
}
9377
 
9378
.text-capitalize {
9379
  text-transform: capitalize !important;
9380
}
9381
 
9382
.text-wrap {
9383
  white-space: normal !important;
9384
}
9385
 
9386
.text-nowrap {
9387
  white-space: nowrap !important;
9388
}
9389
 
9390
/* rtl:begin:remove */
9391
.text-break {
9392
  word-wrap: break-word !important;
9393
  word-break: break-word !important;
9394
}
9395
 
9396
/* rtl:end:remove */
9397
.text-primary {
9398
  --bs-text-opacity: 1;
9399
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9400
}
9401
 
9402
.text-secondary {
9403
  --bs-text-opacity: 1;
9404
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9405
}
9406
 
9407
.text-success {
9408
  --bs-text-opacity: 1;
9409
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9410
}
9411
 
9412
.text-info {
9413
  --bs-text-opacity: 1;
9414
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9415
}
9416
 
9417
.text-warning {
9418
  --bs-text-opacity: 1;
9419
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9420
}
9421
 
9422
.text-danger {
9423
  --bs-text-opacity: 1;
9424
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9425
}
9426
 
9427
.text-light {
9428
  --bs-text-opacity: 1;
9429
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9430
}
9431
 
9432
.text-dark {
9433
  --bs-text-opacity: 1;
9434
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9435
}
9436
 
9437
.text-black {
9438
  --bs-text-opacity: 1;
9439
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9440
}
9441
 
9442
.text-white {
9443
  --bs-text-opacity: 1;
9444
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9445
}
9446
 
9447
.text-body {
9448
  --bs-text-opacity: 1;
9449
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9450
}
9451
 
16848 stevensc 9452
.text-muted,
9453
.dropzone.dz-clickable .dz-message * {
16825 efrain 9454
  --bs-text-opacity: 1;
9455
  color: #7987a1 !important;
9456
}
9457
 
9458
.text-black-50 {
9459
  --bs-text-opacity: 1;
9460
  color: rgba(0, 0, 0, 0.5) !important;
9461
}
9462
 
9463
.text-white-50 {
9464
  --bs-text-opacity: 1;
9465
  color: rgba(255, 255, 255, 0.5) !important;
9466
}
9467
 
9468
.text-reset {
9469
  --bs-text-opacity: 1;
9470
  color: inherit !important;
9471
}
9472
 
9473
.text-opacity-25 {
9474
  --bs-text-opacity: 0.25;
9475
}
9476
 
9477
.text-opacity-50 {
9478
  --bs-text-opacity: 0.5;
9479
}
9480
 
9481
.text-opacity-75 {
9482
  --bs-text-opacity: 0.75;
9483
}
9484
 
9485
.text-opacity-100 {
9486
  --bs-text-opacity: 1;
9487
}
9488
 
9489
.bg-primary {
9490
  --bs-bg-opacity: 1;
9491
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9492
}
9493
 
9494
.bg-secondary {
9495
  --bs-bg-opacity: 1;
9496
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9497
}
9498
 
9499
.bg-success {
9500
  --bs-bg-opacity: 1;
9501
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9502
}
9503
 
9504
.bg-info {
9505
  --bs-bg-opacity: 1;
9506
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9507
}
9508
 
9509
.bg-warning {
9510
  --bs-bg-opacity: 1;
9511
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9512
}
9513
 
9514
.bg-danger {
9515
  --bs-bg-opacity: 1;
9516
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9517
}
9518
 
9519
.bg-light {
9520
  --bs-bg-opacity: 1;
9521
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9522
}
9523
 
9524
.bg-dark {
9525
  --bs-bg-opacity: 1;
9526
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9527
}
9528
 
9529
.bg-black {
9530
  --bs-bg-opacity: 1;
9531
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9532
}
9533
 
9534
.bg-white {
9535
  --bs-bg-opacity: 1;
9536
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9537
}
9538
 
9539
.bg-body {
9540
  --bs-bg-opacity: 1;
9541
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9542
}
9543
 
9544
.bg-transparent {
9545
  --bs-bg-opacity: 1;
9546
  background-color: transparent !important;
9547
}
9548
 
9549
.bg-opacity-10 {
9550
  --bs-bg-opacity: 0.1;
9551
}
9552
 
9553
.bg-opacity-25 {
9554
  --bs-bg-opacity: 0.25;
9555
}
9556
 
9557
.bg-opacity-50 {
9558
  --bs-bg-opacity: 0.5;
9559
}
9560
 
9561
.bg-opacity-75 {
9562
  --bs-bg-opacity: 0.75;
9563
}
9564
 
9565
.bg-opacity-100 {
9566
  --bs-bg-opacity: 1;
9567
}
9568
 
9569
.bg-gradient {
9570
  background-image: var(--bs-gradient) !important;
9571
}
9572
 
9573
.user-select-all {
9574
  user-select: all !important;
9575
}
9576
 
9577
.user-select-auto {
9578
  user-select: auto !important;
9579
}
9580
 
9581
.user-select-none {
9582
  user-select: none !important;
9583
}
9584
 
9585
.pe-none {
9586
  pointer-events: none !important;
9587
}
9588
 
9589
.pe-auto {
9590
  pointer-events: auto !important;
9591
}
9592
 
9593
.rounded {
9594
  border-radius: var(--bs-border-radius) !important;
9595
}
9596
 
9597
.rounded-0 {
9598
  border-radius: 0 !important;
9599
}
9600
 
9601
.rounded-1 {
9602
  border-radius: var(--bs-border-radius-sm) !important;
9603
}
9604
 
9605
.rounded-2 {
9606
  border-radius: var(--bs-border-radius) !important;
9607
}
9608
 
9609
.rounded-3 {
9610
  border-radius: var(--bs-border-radius-lg) !important;
9611
}
9612
 
9613
.rounded-4 {
9614
  border-radius: var(--bs-border-radius-xl) !important;
9615
}
9616
 
9617
.rounded-5 {
9618
  border-radius: var(--bs-border-radius-2xl) !important;
9619
}
9620
 
9621
.rounded-circle {
9622
  border-radius: 50% !important;
9623
}
9624
 
9625
.rounded-pill {
9626
  border-radius: var(--bs-border-radius-pill) !important;
9627
}
9628
 
9629
.rounded-top {
9630
  border-top-left-radius: var(--bs-border-radius) !important;
9631
  border-top-right-radius: var(--bs-border-radius) !important;
9632
}
9633
 
9634
.rounded-end {
9635
  border-top-right-radius: var(--bs-border-radius) !important;
9636
  border-bottom-right-radius: var(--bs-border-radius) !important;
9637
}
9638
 
9639
.rounded-bottom {
9640
  border-bottom-right-radius: var(--bs-border-radius) !important;
9641
  border-bottom-left-radius: var(--bs-border-radius) !important;
9642
}
9643
 
9644
.rounded-start {
9645
  border-bottom-left-radius: var(--bs-border-radius) !important;
9646
  border-top-left-radius: var(--bs-border-radius) !important;
9647
}
9648
 
9649
.visible {
9650
  visibility: visible !important;
9651
}
9652
 
9653
.invisible {
9654
  visibility: hidden !important;
9655
}
9656
 
9657
.bg-gray-100 {
9658
  background-color: #f8f9fa !important;
9659
}
9660
 
9661
.bg-gray-200 {
9662
  background-color: #e9ecef !important;
9663
}
9664
 
9665
.bg-gray-300 {
9666
  background-color: #dee2e6 !important;
9667
}
9668
 
9669
.bg-gray-400 {
9670
  background-color: #cbd1db !important;
9671
}
9672
 
9673
.bg-gray-500 {
9674
  background-color: #aeb7c5 !important;
9675
}
9676
 
9677
.bg-gray-600 {
9678
  background-color: #7987a1 !important;
9679
}
9680
 
9681
.bg-gray-700 {
9682
  background-color: #41516c !important;
9683
}
9684
 
9685
.bg-gray-800 {
9686
  background-color: #212a3a !important;
9687
}
9688
 
9689
.bg-gray-900 {
9690
  background-color: #060c17 !important;
9691
}
9692
 
9693
@media (min-width: 576px) {
9694
  .float-sm-start {
9695
    float: left !important;
9696
  }
16848 stevensc 9697
 
16825 efrain 9698
  .float-sm-end {
9699
    float: right !important;
9700
  }
16848 stevensc 9701
 
16825 efrain 9702
  .float-sm-none {
9703
    float: none !important;
9704
  }
16848 stevensc 9705
 
16825 efrain 9706
  .d-sm-inline {
9707
    display: inline !important;
9708
  }
16848 stevensc 9709
 
16825 efrain 9710
  .d-sm-inline-block {
9711
    display: inline-block !important;
9712
  }
16848 stevensc 9713
 
16825 efrain 9714
  .d-sm-block {
9715
    display: block !important;
9716
  }
16848 stevensc 9717
 
16825 efrain 9718
  .d-sm-grid {
9719
    display: grid !important;
9720
  }
16848 stevensc 9721
 
16825 efrain 9722
  .d-sm-table {
9723
    display: table !important;
9724
  }
16848 stevensc 9725
 
16825 efrain 9726
  .d-sm-table-row {
9727
    display: table-row !important;
9728
  }
16848 stevensc 9729
 
16825 efrain 9730
  .d-sm-table-cell {
9731
    display: table-cell !important;
9732
  }
16848 stevensc 9733
 
16825 efrain 9734
  .d-sm-flex {
9735
    display: flex !important;
9736
  }
16848 stevensc 9737
 
16825 efrain 9738
  .d-sm-inline-flex {
9739
    display: inline-flex !important;
9740
  }
16848 stevensc 9741
 
16825 efrain 9742
  .d-sm-none {
9743
    display: none !important;
9744
  }
16848 stevensc 9745
 
16825 efrain 9746
  .border-sm {
9747
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9748
  }
16848 stevensc 9749
 
16825 efrain 9750
  .border-sm-0 {
9751
    border: 0 !important;
9752
  }
16848 stevensc 9753
 
16825 efrain 9754
  .border-top-sm {
9755
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9756
  }
16848 stevensc 9757
 
16825 efrain 9758
  .border-top-sm-0 {
9759
    border-top: 0 !important;
9760
  }
16848 stevensc 9761
 
16825 efrain 9762
  .border-end-sm {
9763
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9764
  }
16848 stevensc 9765
 
16825 efrain 9766
  .border-end-sm-0 {
9767
    border-right: 0 !important;
9768
  }
16848 stevensc 9769
 
16825 efrain 9770
  .border-bottom-sm {
9771
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9772
  }
16848 stevensc 9773
 
16825 efrain 9774
  .border-bottom-sm-0 {
9775
    border-bottom: 0 !important;
9776
  }
16848 stevensc 9777
 
16825 efrain 9778
  .border-start-sm {
9779
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9780
  }
16848 stevensc 9781
 
16825 efrain 9782
  .border-start-sm-0 {
9783
    border-left: 0 !important;
9784
  }
16848 stevensc 9785
 
16825 efrain 9786
  .flex-sm-fill {
9787
    flex: 1 1 auto !important;
9788
  }
16848 stevensc 9789
 
16825 efrain 9790
  .flex-sm-row {
9791
    flex-direction: row !important;
9792
  }
16848 stevensc 9793
 
16825 efrain 9794
  .flex-sm-column {
9795
    flex-direction: column !important;
9796
  }
16848 stevensc 9797
 
16825 efrain 9798
  .flex-sm-row-reverse {
9799
    flex-direction: row-reverse !important;
9800
  }
16848 stevensc 9801
 
16825 efrain 9802
  .flex-sm-column-reverse {
9803
    flex-direction: column-reverse !important;
9804
  }
16848 stevensc 9805
 
16825 efrain 9806
  .flex-sm-grow-0 {
9807
    flex-grow: 0 !important;
9808
  }
16848 stevensc 9809
 
16825 efrain 9810
  .flex-sm-grow-1 {
9811
    flex-grow: 1 !important;
9812
  }
16848 stevensc 9813
 
16825 efrain 9814
  .flex-sm-shrink-0 {
9815
    flex-shrink: 0 !important;
9816
  }
16848 stevensc 9817
 
16825 efrain 9818
  .flex-sm-shrink-1 {
9819
    flex-shrink: 1 !important;
9820
  }
16848 stevensc 9821
 
16825 efrain 9822
  .flex-sm-wrap {
9823
    flex-wrap: wrap !important;
9824
  }
16848 stevensc 9825
 
16825 efrain 9826
  .flex-sm-nowrap {
9827
    flex-wrap: nowrap !important;
9828
  }
16848 stevensc 9829
 
16825 efrain 9830
  .flex-sm-wrap-reverse {
9831
    flex-wrap: wrap-reverse !important;
9832
  }
16848 stevensc 9833
 
16825 efrain 9834
  .justify-content-sm-start {
9835
    justify-content: flex-start !important;
9836
  }
16848 stevensc 9837
 
16825 efrain 9838
  .justify-content-sm-end {
9839
    justify-content: flex-end !important;
9840
  }
16848 stevensc 9841
 
16825 efrain 9842
  .justify-content-sm-center {
9843
    justify-content: center !important;
9844
  }
16848 stevensc 9845
 
16825 efrain 9846
  .justify-content-sm-between {
9847
    justify-content: space-between !important;
9848
  }
16848 stevensc 9849
 
16825 efrain 9850
  .justify-content-sm-around {
9851
    justify-content: space-around !important;
9852
  }
16848 stevensc 9853
 
16825 efrain 9854
  .justify-content-sm-evenly {
9855
    justify-content: space-evenly !important;
9856
  }
16848 stevensc 9857
 
16825 efrain 9858
  .align-items-sm-start {
9859
    align-items: flex-start !important;
9860
  }
16848 stevensc 9861
 
16825 efrain 9862
  .align-items-sm-end {
9863
    align-items: flex-end !important;
9864
  }
16848 stevensc 9865
 
16825 efrain 9866
  .align-items-sm-center {
9867
    align-items: center !important;
9868
  }
16848 stevensc 9869
 
16825 efrain 9870
  .align-items-sm-baseline {
9871
    align-items: baseline !important;
9872
  }
16848 stevensc 9873
 
16825 efrain 9874
  .align-items-sm-stretch {
9875
    align-items: stretch !important;
9876
  }
16848 stevensc 9877
 
16825 efrain 9878
  .align-content-sm-start {
9879
    align-content: flex-start !important;
9880
  }
16848 stevensc 9881
 
16825 efrain 9882
  .align-content-sm-end {
9883
    align-content: flex-end !important;
9884
  }
16848 stevensc 9885
 
16825 efrain 9886
  .align-content-sm-center {
9887
    align-content: center !important;
9888
  }
16848 stevensc 9889
 
16825 efrain 9890
  .align-content-sm-between {
9891
    align-content: space-between !important;
9892
  }
16848 stevensc 9893
 
16825 efrain 9894
  .align-content-sm-around {
9895
    align-content: space-around !important;
9896
  }
16848 stevensc 9897
 
16825 efrain 9898
  .align-content-sm-stretch {
9899
    align-content: stretch !important;
9900
  }
16848 stevensc 9901
 
16825 efrain 9902
  .align-self-sm-auto {
9903
    align-self: auto !important;
9904
  }
16848 stevensc 9905
 
16825 efrain 9906
  .align-self-sm-start {
9907
    align-self: flex-start !important;
9908
  }
16848 stevensc 9909
 
16825 efrain 9910
  .align-self-sm-end {
9911
    align-self: flex-end !important;
9912
  }
16848 stevensc 9913
 
16825 efrain 9914
  .align-self-sm-center {
9915
    align-self: center !important;
9916
  }
16848 stevensc 9917
 
16825 efrain 9918
  .align-self-sm-baseline {
9919
    align-self: baseline !important;
9920
  }
16848 stevensc 9921
 
16825 efrain 9922
  .align-self-sm-stretch {
9923
    align-self: stretch !important;
9924
  }
16848 stevensc 9925
 
16825 efrain 9926
  .order-sm-first {
9927
    order: -1 !important;
9928
  }
16848 stevensc 9929
 
16825 efrain 9930
  .order-sm-0 {
9931
    order: 0 !important;
9932
  }
16848 stevensc 9933
 
16825 efrain 9934
  .order-sm-1 {
9935
    order: 1 !important;
9936
  }
16848 stevensc 9937
 
16825 efrain 9938
  .order-sm-2 {
9939
    order: 2 !important;
9940
  }
16848 stevensc 9941
 
16825 efrain 9942
  .order-sm-3 {
9943
    order: 3 !important;
9944
  }
16848 stevensc 9945
 
16825 efrain 9946
  .order-sm-4 {
9947
    order: 4 !important;
9948
  }
16848 stevensc 9949
 
16825 efrain 9950
  .order-sm-5 {
9951
    order: 5 !important;
9952
  }
16848 stevensc 9953
 
16825 efrain 9954
  .order-sm-last {
9955
    order: 6 !important;
9956
  }
16848 stevensc 9957
 
16825 efrain 9958
  .m-sm-0 {
9959
    margin: 0 !important;
9960
  }
16848 stevensc 9961
 
16825 efrain 9962
  .m-sm-1 {
9963
    margin: 0.25rem !important;
9964
  }
16848 stevensc 9965
 
16825 efrain 9966
  .m-sm-2 {
9967
    margin: 0.5rem !important;
9968
  }
16848 stevensc 9969
 
16825 efrain 9970
  .m-sm-3 {
9971
    margin: 1rem !important;
9972
  }
16848 stevensc 9973
 
16825 efrain 9974
  .m-sm-4 {
9975
    margin: 1.5rem !important;
9976
  }
16848 stevensc 9977
 
16825 efrain 9978
  .m-sm-5 {
9979
    margin: 3rem !important;
9980
  }
16848 stevensc 9981
 
16825 efrain 9982
  .m-sm-6 {
9983
    margin: 4.5rem !important;
9984
  }
16848 stevensc 9985
 
16825 efrain 9986
  .m-sm-7 {
9987
    margin: 6rem !important;
9988
  }
16848 stevensc 9989
 
16825 efrain 9990
  .m-sm-auto {
9991
    margin: auto !important;
9992
  }
16848 stevensc 9993
 
16825 efrain 9994
  .mx-sm-0 {
9995
    margin-right: 0 !important;
9996
    margin-left: 0 !important;
9997
  }
16848 stevensc 9998
 
16825 efrain 9999
  .mx-sm-1 {
10000
    margin-right: 0.25rem !important;
10001
    margin-left: 0.25rem !important;
10002
  }
16848 stevensc 10003
 
16825 efrain 10004
  .mx-sm-2 {
10005
    margin-right: 0.5rem !important;
10006
    margin-left: 0.5rem !important;
10007
  }
16848 stevensc 10008
 
16825 efrain 10009
  .mx-sm-3 {
10010
    margin-right: 1rem !important;
10011
    margin-left: 1rem !important;
10012
  }
16848 stevensc 10013
 
16825 efrain 10014
  .mx-sm-4 {
10015
    margin-right: 1.5rem !important;
10016
    margin-left: 1.5rem !important;
10017
  }
16848 stevensc 10018
 
16825 efrain 10019
  .mx-sm-5 {
10020
    margin-right: 3rem !important;
10021
    margin-left: 3rem !important;
10022
  }
16848 stevensc 10023
 
16825 efrain 10024
  .mx-sm-6 {
10025
    margin-right: 4.5rem !important;
10026
    margin-left: 4.5rem !important;
10027
  }
16848 stevensc 10028
 
16825 efrain 10029
  .mx-sm-7 {
10030
    margin-right: 6rem !important;
10031
    margin-left: 6rem !important;
10032
  }
16848 stevensc 10033
 
16825 efrain 10034
  .mx-sm-auto {
10035
    margin-right: auto !important;
10036
    margin-left: auto !important;
10037
  }
16848 stevensc 10038
 
16825 efrain 10039
  .my-sm-0 {
10040
    margin-top: 0 !important;
10041
    margin-bottom: 0 !important;
10042
  }
16848 stevensc 10043
 
16825 efrain 10044
  .my-sm-1 {
10045
    margin-top: 0.25rem !important;
10046
    margin-bottom: 0.25rem !important;
10047
  }
16848 stevensc 10048
 
16825 efrain 10049
  .my-sm-2 {
10050
    margin-top: 0.5rem !important;
10051
    margin-bottom: 0.5rem !important;
10052
  }
16848 stevensc 10053
 
16825 efrain 10054
  .my-sm-3 {
10055
    margin-top: 1rem !important;
10056
    margin-bottom: 1rem !important;
10057
  }
16848 stevensc 10058
 
16825 efrain 10059
  .my-sm-4 {
10060
    margin-top: 1.5rem !important;
10061
    margin-bottom: 1.5rem !important;
10062
  }
16848 stevensc 10063
 
16825 efrain 10064
  .my-sm-5 {
10065
    margin-top: 3rem !important;
10066
    margin-bottom: 3rem !important;
10067
  }
16848 stevensc 10068
 
16825 efrain 10069
  .my-sm-6 {
10070
    margin-top: 4.5rem !important;
10071
    margin-bottom: 4.5rem !important;
10072
  }
16848 stevensc 10073
 
16825 efrain 10074
  .my-sm-7 {
10075
    margin-top: 6rem !important;
10076
    margin-bottom: 6rem !important;
10077
  }
16848 stevensc 10078
 
16825 efrain 10079
  .my-sm-auto {
10080
    margin-top: auto !important;
10081
    margin-bottom: auto !important;
10082
  }
16848 stevensc 10083
 
16825 efrain 10084
  .mt-sm-0 {
10085
    margin-top: 0 !important;
10086
  }
16848 stevensc 10087
 
16825 efrain 10088
  .mt-sm-1 {
10089
    margin-top: 0.25rem !important;
10090
  }
16848 stevensc 10091
 
16825 efrain 10092
  .mt-sm-2 {
10093
    margin-top: 0.5rem !important;
10094
  }
16848 stevensc 10095
 
16825 efrain 10096
  .mt-sm-3 {
10097
    margin-top: 1rem !important;
10098
  }
16848 stevensc 10099
 
16825 efrain 10100
  .mt-sm-4 {
10101
    margin-top: 1.5rem !important;
10102
  }
16848 stevensc 10103
 
16825 efrain 10104
  .mt-sm-5 {
10105
    margin-top: 3rem !important;
10106
  }
16848 stevensc 10107
 
16825 efrain 10108
  .mt-sm-6 {
10109
    margin-top: 4.5rem !important;
10110
  }
16848 stevensc 10111
 
16825 efrain 10112
  .mt-sm-7 {
10113
    margin-top: 6rem !important;
10114
  }
16848 stevensc 10115
 
16825 efrain 10116
  .mt-sm-auto {
10117
    margin-top: auto !important;
10118
  }
16848 stevensc 10119
 
16825 efrain 10120
  .me-sm-0 {
10121
    margin-right: 0 !important;
10122
  }
16848 stevensc 10123
 
16825 efrain 10124
  .me-sm-1 {
10125
    margin-right: 0.25rem !important;
10126
  }
16848 stevensc 10127
 
16825 efrain 10128
  .me-sm-2 {
10129
    margin-right: 0.5rem !important;
10130
  }
16848 stevensc 10131
 
16825 efrain 10132
  .me-sm-3 {
10133
    margin-right: 1rem !important;
10134
  }
16848 stevensc 10135
 
16825 efrain 10136
  .me-sm-4 {
10137
    margin-right: 1.5rem !important;
10138
  }
16848 stevensc 10139
 
16825 efrain 10140
  .me-sm-5 {
10141
    margin-right: 3rem !important;
10142
  }
16848 stevensc 10143
 
16825 efrain 10144
  .me-sm-6 {
10145
    margin-right: 4.5rem !important;
10146
  }
16848 stevensc 10147
 
16825 efrain 10148
  .me-sm-7 {
10149
    margin-right: 6rem !important;
10150
  }
16848 stevensc 10151
 
16825 efrain 10152
  .me-sm-auto {
10153
    margin-right: auto !important;
10154
  }
16848 stevensc 10155
 
16825 efrain 10156
  .mb-sm-0 {
10157
    margin-bottom: 0 !important;
10158
  }
16848 stevensc 10159
 
16825 efrain 10160
  .mb-sm-1 {
10161
    margin-bottom: 0.25rem !important;
10162
  }
16848 stevensc 10163
 
16825 efrain 10164
  .mb-sm-2 {
10165
    margin-bottom: 0.5rem !important;
10166
  }
16848 stevensc 10167
 
16825 efrain 10168
  .mb-sm-3 {
10169
    margin-bottom: 1rem !important;
10170
  }
16848 stevensc 10171
 
16825 efrain 10172
  .mb-sm-4 {
10173
    margin-bottom: 1.5rem !important;
10174
  }
16848 stevensc 10175
 
16825 efrain 10176
  .mb-sm-5 {
10177
    margin-bottom: 3rem !important;
10178
  }
16848 stevensc 10179
 
16825 efrain 10180
  .mb-sm-6 {
10181
    margin-bottom: 4.5rem !important;
10182
  }
16848 stevensc 10183
 
16825 efrain 10184
  .mb-sm-7 {
10185
    margin-bottom: 6rem !important;
10186
  }
16848 stevensc 10187
 
16825 efrain 10188
  .mb-sm-auto {
10189
    margin-bottom: auto !important;
10190
  }
16848 stevensc 10191
 
16825 efrain 10192
  .ms-sm-0 {
10193
    margin-left: 0 !important;
10194
  }
16848 stevensc 10195
 
16825 efrain 10196
  .ms-sm-1 {
10197
    margin-left: 0.25rem !important;
10198
  }
16848 stevensc 10199
 
16825 efrain 10200
  .ms-sm-2 {
10201
    margin-left: 0.5rem !important;
10202
  }
16848 stevensc 10203
 
16825 efrain 10204
  .ms-sm-3 {
10205
    margin-left: 1rem !important;
10206
  }
16848 stevensc 10207
 
16825 efrain 10208
  .ms-sm-4 {
10209
    margin-left: 1.5rem !important;
10210
  }
16848 stevensc 10211
 
16825 efrain 10212
  .ms-sm-5 {
10213
    margin-left: 3rem !important;
10214
  }
16848 stevensc 10215
 
16825 efrain 10216
  .ms-sm-6 {
10217
    margin-left: 4.5rem !important;
10218
  }
16848 stevensc 10219
 
16825 efrain 10220
  .ms-sm-7 {
10221
    margin-left: 6rem !important;
10222
  }
16848 stevensc 10223
 
16825 efrain 10224
  .ms-sm-auto {
10225
    margin-left: auto !important;
10226
  }
16848 stevensc 10227
 
16825 efrain 10228
  .m-sm-n1 {
10229
    margin: -0.25rem !important;
10230
  }
16848 stevensc 10231
 
16825 efrain 10232
  .m-sm-n2 {
10233
    margin: -0.5rem !important;
10234
  }
16848 stevensc 10235
 
16825 efrain 10236
  .m-sm-n3 {
10237
    margin: -1rem !important;
10238
  }
16848 stevensc 10239
 
16825 efrain 10240
  .m-sm-n4 {
10241
    margin: -1.5rem !important;
10242
  }
16848 stevensc 10243
 
16825 efrain 10244
  .m-sm-n5 {
10245
    margin: -3rem !important;
10246
  }
16848 stevensc 10247
 
16825 efrain 10248
  .m-sm-n6 {
10249
    margin: -4.5rem !important;
10250
  }
16848 stevensc 10251
 
16825 efrain 10252
  .m-sm-n7 {
10253
    margin: -6rem !important;
10254
  }
16848 stevensc 10255
 
16825 efrain 10256
  .mx-sm-n1 {
10257
    margin-right: -0.25rem !important;
10258
    margin-left: -0.25rem !important;
10259
  }
16848 stevensc 10260
 
16825 efrain 10261
  .mx-sm-n2 {
10262
    margin-right: -0.5rem !important;
10263
    margin-left: -0.5rem !important;
10264
  }
16848 stevensc 10265
 
16825 efrain 10266
  .mx-sm-n3 {
10267
    margin-right: -1rem !important;
10268
    margin-left: -1rem !important;
10269
  }
16848 stevensc 10270
 
16825 efrain 10271
  .mx-sm-n4 {
10272
    margin-right: -1.5rem !important;
10273
    margin-left: -1.5rem !important;
10274
  }
16848 stevensc 10275
 
16825 efrain 10276
  .mx-sm-n5 {
10277
    margin-right: -3rem !important;
10278
    margin-left: -3rem !important;
10279
  }
16848 stevensc 10280
 
16825 efrain 10281
  .mx-sm-n6 {
10282
    margin-right: -4.5rem !important;
10283
    margin-left: -4.5rem !important;
10284
  }
16848 stevensc 10285
 
16825 efrain 10286
  .mx-sm-n7 {
10287
    margin-right: -6rem !important;
10288
    margin-left: -6rem !important;
10289
  }
16848 stevensc 10290
 
16825 efrain 10291
  .my-sm-n1 {
10292
    margin-top: -0.25rem !important;
10293
    margin-bottom: -0.25rem !important;
10294
  }
16848 stevensc 10295
 
16825 efrain 10296
  .my-sm-n2 {
10297
    margin-top: -0.5rem !important;
10298
    margin-bottom: -0.5rem !important;
10299
  }
16848 stevensc 10300
 
16825 efrain 10301
  .my-sm-n3 {
10302
    margin-top: -1rem !important;
10303
    margin-bottom: -1rem !important;
10304
  }
16848 stevensc 10305
 
16825 efrain 10306
  .my-sm-n4 {
10307
    margin-top: -1.5rem !important;
10308
    margin-bottom: -1.5rem !important;
10309
  }
16848 stevensc 10310
 
16825 efrain 10311
  .my-sm-n5 {
10312
    margin-top: -3rem !important;
10313
    margin-bottom: -3rem !important;
10314
  }
16848 stevensc 10315
 
16825 efrain 10316
  .my-sm-n6 {
10317
    margin-top: -4.5rem !important;
10318
    margin-bottom: -4.5rem !important;
10319
  }
16848 stevensc 10320
 
16825 efrain 10321
  .my-sm-n7 {
10322
    margin-top: -6rem !important;
10323
    margin-bottom: -6rem !important;
10324
  }
16848 stevensc 10325
 
16825 efrain 10326
  .mt-sm-n1 {
10327
    margin-top: -0.25rem !important;
10328
  }
16848 stevensc 10329
 
16825 efrain 10330
  .mt-sm-n2 {
10331
    margin-top: -0.5rem !important;
10332
  }
16848 stevensc 10333
 
16825 efrain 10334
  .mt-sm-n3 {
10335
    margin-top: -1rem !important;
10336
  }
16848 stevensc 10337
 
16825 efrain 10338
  .mt-sm-n4 {
10339
    margin-top: -1.5rem !important;
10340
  }
16848 stevensc 10341
 
16825 efrain 10342
  .mt-sm-n5 {
10343
    margin-top: -3rem !important;
10344
  }
16848 stevensc 10345
 
16825 efrain 10346
  .mt-sm-n6 {
10347
    margin-top: -4.5rem !important;
10348
  }
16848 stevensc 10349
 
16825 efrain 10350
  .mt-sm-n7 {
10351
    margin-top: -6rem !important;
10352
  }
16848 stevensc 10353
 
16825 efrain 10354
  .me-sm-n1 {
10355
    margin-right: -0.25rem !important;
10356
  }
16848 stevensc 10357
 
16825 efrain 10358
  .me-sm-n2 {
10359
    margin-right: -0.5rem !important;
10360
  }
16848 stevensc 10361
 
16825 efrain 10362
  .me-sm-n3 {
10363
    margin-right: -1rem !important;
10364
  }
16848 stevensc 10365
 
16825 efrain 10366
  .me-sm-n4 {
10367
    margin-right: -1.5rem !important;
10368
  }
16848 stevensc 10369
 
16825 efrain 10370
  .me-sm-n5 {
10371
    margin-right: -3rem !important;
10372
  }
16848 stevensc 10373
 
16825 efrain 10374
  .me-sm-n6 {
10375
    margin-right: -4.5rem !important;
10376
  }
16848 stevensc 10377
 
16825 efrain 10378
  .me-sm-n7 {
10379
    margin-right: -6rem !important;
10380
  }
16848 stevensc 10381
 
16825 efrain 10382
  .mb-sm-n1 {
10383
    margin-bottom: -0.25rem !important;
10384
  }
16848 stevensc 10385
 
16825 efrain 10386
  .mb-sm-n2 {
10387
    margin-bottom: -0.5rem !important;
10388
  }
16848 stevensc 10389
 
16825 efrain 10390
  .mb-sm-n3 {
10391
    margin-bottom: -1rem !important;
10392
  }
16848 stevensc 10393
 
16825 efrain 10394
  .mb-sm-n4 {
10395
    margin-bottom: -1.5rem !important;
10396
  }
16848 stevensc 10397
 
16825 efrain 10398
  .mb-sm-n5 {
10399
    margin-bottom: -3rem !important;
10400
  }
16848 stevensc 10401
 
16825 efrain 10402
  .mb-sm-n6 {
10403
    margin-bottom: -4.5rem !important;
10404
  }
16848 stevensc 10405
 
16825 efrain 10406
  .mb-sm-n7 {
10407
    margin-bottom: -6rem !important;
10408
  }
16848 stevensc 10409
 
16825 efrain 10410
  .ms-sm-n1 {
10411
    margin-left: -0.25rem !important;
10412
  }
16848 stevensc 10413
 
16825 efrain 10414
  .ms-sm-n2 {
10415
    margin-left: -0.5rem !important;
10416
  }
16848 stevensc 10417
 
16825 efrain 10418
  .ms-sm-n3 {
10419
    margin-left: -1rem !important;
10420
  }
16848 stevensc 10421
 
16825 efrain 10422
  .ms-sm-n4 {
10423
    margin-left: -1.5rem !important;
10424
  }
16848 stevensc 10425
 
16825 efrain 10426
  .ms-sm-n5 {
10427
    margin-left: -3rem !important;
10428
  }
16848 stevensc 10429
 
16825 efrain 10430
  .ms-sm-n6 {
10431
    margin-left: -4.5rem !important;
10432
  }
16848 stevensc 10433
 
16825 efrain 10434
  .ms-sm-n7 {
10435
    margin-left: -6rem !important;
10436
  }
16848 stevensc 10437
 
16825 efrain 10438
  .p-sm-0 {
10439
    padding: 0 !important;
10440
  }
16848 stevensc 10441
 
16825 efrain 10442
  .p-sm-1 {
10443
    padding: 0.25rem !important;
10444
  }
16848 stevensc 10445
 
16825 efrain 10446
  .p-sm-2 {
10447
    padding: 0.5rem !important;
10448
  }
16848 stevensc 10449
 
16825 efrain 10450
  .p-sm-3 {
10451
    padding: 1rem !important;
10452
  }
16848 stevensc 10453
 
16825 efrain 10454
  .p-sm-4 {
10455
    padding: 1.5rem !important;
10456
  }
16848 stevensc 10457
 
16825 efrain 10458
  .p-sm-5 {
10459
    padding: 3rem !important;
10460
  }
16848 stevensc 10461
 
16825 efrain 10462
  .p-sm-6 {
10463
    padding: 4.5rem !important;
10464
  }
16848 stevensc 10465
 
16825 efrain 10466
  .p-sm-7 {
10467
    padding: 6rem !important;
10468
  }
16848 stevensc 10469
 
16825 efrain 10470
  .px-sm-0 {
10471
    padding-right: 0 !important;
10472
    padding-left: 0 !important;
10473
  }
16848 stevensc 10474
 
16825 efrain 10475
  .px-sm-1 {
10476
    padding-right: 0.25rem !important;
10477
    padding-left: 0.25rem !important;
10478
  }
16848 stevensc 10479
 
16825 efrain 10480
  .px-sm-2 {
10481
    padding-right: 0.5rem !important;
10482
    padding-left: 0.5rem !important;
10483
  }
16848 stevensc 10484
 
16825 efrain 10485
  .px-sm-3 {
10486
    padding-right: 1rem !important;
10487
    padding-left: 1rem !important;
10488
  }
16848 stevensc 10489
 
16825 efrain 10490
  .px-sm-4 {
10491
    padding-right: 1.5rem !important;
10492
    padding-left: 1.5rem !important;
10493
  }
16848 stevensc 10494
 
16825 efrain 10495
  .px-sm-5 {
10496
    padding-right: 3rem !important;
10497
    padding-left: 3rem !important;
10498
  }
16848 stevensc 10499
 
16825 efrain 10500
  .px-sm-6 {
10501
    padding-right: 4.5rem !important;
10502
    padding-left: 4.5rem !important;
10503
  }
16848 stevensc 10504
 
16825 efrain 10505
  .px-sm-7 {
10506
    padding-right: 6rem !important;
10507
    padding-left: 6rem !important;
10508
  }
16848 stevensc 10509
 
16825 efrain 10510
  .py-sm-0 {
10511
    padding-top: 0 !important;
10512
    padding-bottom: 0 !important;
10513
  }
16848 stevensc 10514
 
16825 efrain 10515
  .py-sm-1 {
10516
    padding-top: 0.25rem !important;
10517
    padding-bottom: 0.25rem !important;
10518
  }
16848 stevensc 10519
 
16825 efrain 10520
  .py-sm-2 {
10521
    padding-top: 0.5rem !important;
10522
    padding-bottom: 0.5rem !important;
10523
  }
16848 stevensc 10524
 
16825 efrain 10525
  .py-sm-3 {
10526
    padding-top: 1rem !important;
10527
    padding-bottom: 1rem !important;
10528
  }
16848 stevensc 10529
 
16825 efrain 10530
  .py-sm-4 {
10531
    padding-top: 1.5rem !important;
10532
    padding-bottom: 1.5rem !important;
10533
  }
16848 stevensc 10534
 
16825 efrain 10535
  .py-sm-5 {
10536
    padding-top: 3rem !important;
10537
    padding-bottom: 3rem !important;
10538
  }
16848 stevensc 10539
 
16825 efrain 10540
  .py-sm-6 {
10541
    padding-top: 4.5rem !important;
10542
    padding-bottom: 4.5rem !important;
10543
  }
16848 stevensc 10544
 
16825 efrain 10545
  .py-sm-7 {
10546
    padding-top: 6rem !important;
10547
    padding-bottom: 6rem !important;
10548
  }
16848 stevensc 10549
 
16825 efrain 10550
  .pt-sm-0 {
10551
    padding-top: 0 !important;
10552
  }
16848 stevensc 10553
 
16825 efrain 10554
  .pt-sm-1 {
10555
    padding-top: 0.25rem !important;
10556
  }
16848 stevensc 10557
 
16825 efrain 10558
  .pt-sm-2 {
10559
    padding-top: 0.5rem !important;
10560
  }
16848 stevensc 10561
 
16825 efrain 10562
  .pt-sm-3 {
10563
    padding-top: 1rem !important;
10564
  }
16848 stevensc 10565
 
16825 efrain 10566
  .pt-sm-4 {
10567
    padding-top: 1.5rem !important;
10568
  }
16848 stevensc 10569
 
16825 efrain 10570
  .pt-sm-5 {
10571
    padding-top: 3rem !important;
10572
  }
16848 stevensc 10573
 
16825 efrain 10574
  .pt-sm-6 {
10575
    padding-top: 4.5rem !important;
10576
  }
16848 stevensc 10577
 
16825 efrain 10578
  .pt-sm-7 {
10579
    padding-top: 6rem !important;
10580
  }
16848 stevensc 10581
 
16825 efrain 10582
  .pe-sm-0 {
10583
    padding-right: 0 !important;
10584
  }
16848 stevensc 10585
 
16825 efrain 10586
  .pe-sm-1 {
10587
    padding-right: 0.25rem !important;
10588
  }
16848 stevensc 10589
 
16825 efrain 10590
  .pe-sm-2 {
10591
    padding-right: 0.5rem !important;
10592
  }
16848 stevensc 10593
 
16825 efrain 10594
  .pe-sm-3 {
10595
    padding-right: 1rem !important;
10596
  }
16848 stevensc 10597
 
16825 efrain 10598
  .pe-sm-4 {
10599
    padding-right: 1.5rem !important;
10600
  }
16848 stevensc 10601
 
16825 efrain 10602
  .pe-sm-5 {
10603
    padding-right: 3rem !important;
10604
  }
16848 stevensc 10605
 
16825 efrain 10606
  .pe-sm-6 {
10607
    padding-right: 4.5rem !important;
10608
  }
16848 stevensc 10609
 
16825 efrain 10610
  .pe-sm-7 {
10611
    padding-right: 6rem !important;
10612
  }
16848 stevensc 10613
 
16825 efrain 10614
  .pb-sm-0 {
10615
    padding-bottom: 0 !important;
10616
  }
16848 stevensc 10617
 
16825 efrain 10618
  .pb-sm-1 {
10619
    padding-bottom: 0.25rem !important;
10620
  }
16848 stevensc 10621
 
16825 efrain 10622
  .pb-sm-2 {
10623
    padding-bottom: 0.5rem !important;
10624
  }
16848 stevensc 10625
 
16825 efrain 10626
  .pb-sm-3 {
10627
    padding-bottom: 1rem !important;
10628
  }
16848 stevensc 10629
 
16825 efrain 10630
  .pb-sm-4 {
10631
    padding-bottom: 1.5rem !important;
10632
  }
16848 stevensc 10633
 
16825 efrain 10634
  .pb-sm-5 {
10635
    padding-bottom: 3rem !important;
10636
  }
16848 stevensc 10637
 
16825 efrain 10638
  .pb-sm-6 {
10639
    padding-bottom: 4.5rem !important;
10640
  }
16848 stevensc 10641
 
16825 efrain 10642
  .pb-sm-7 {
10643
    padding-bottom: 6rem !important;
10644
  }
16848 stevensc 10645
 
16825 efrain 10646
  .ps-sm-0 {
10647
    padding-left: 0 !important;
10648
  }
16848 stevensc 10649
 
16825 efrain 10650
  .ps-sm-1 {
10651
    padding-left: 0.25rem !important;
10652
  }
16848 stevensc 10653
 
16825 efrain 10654
  .ps-sm-2 {
10655
    padding-left: 0.5rem !important;
10656
  }
16848 stevensc 10657
 
16825 efrain 10658
  .ps-sm-3 {
10659
    padding-left: 1rem !important;
10660
  }
16848 stevensc 10661
 
16825 efrain 10662
  .ps-sm-4 {
10663
    padding-left: 1.5rem !important;
10664
  }
16848 stevensc 10665
 
16825 efrain 10666
  .ps-sm-5 {
10667
    padding-left: 3rem !important;
10668
  }
16848 stevensc 10669
 
16825 efrain 10670
  .ps-sm-6 {
10671
    padding-left: 4.5rem !important;
10672
  }
16848 stevensc 10673
 
16825 efrain 10674
  .ps-sm-7 {
10675
    padding-left: 6rem !important;
10676
  }
16848 stevensc 10677
 
16825 efrain 10678
  .gap-sm-0 {
10679
    gap: 0 !important;
10680
  }
16848 stevensc 10681
 
16825 efrain 10682
  .gap-sm-1 {
10683
    gap: 0.25rem !important;
10684
  }
16848 stevensc 10685
 
16825 efrain 10686
  .gap-sm-2 {
10687
    gap: 0.5rem !important;
10688
  }
16848 stevensc 10689
 
16825 efrain 10690
  .gap-sm-3 {
10691
    gap: 1rem !important;
10692
  }
16848 stevensc 10693
 
16825 efrain 10694
  .gap-sm-4 {
10695
    gap: 1.5rem !important;
10696
  }
16848 stevensc 10697
 
16825 efrain 10698
  .gap-sm-5 {
10699
    gap: 3rem !important;
10700
  }
16848 stevensc 10701
 
16825 efrain 10702
  .gap-sm-6 {
10703
    gap: 4.5rem !important;
10704
  }
16848 stevensc 10705
 
16825 efrain 10706
  .gap-sm-7 {
10707
    gap: 6rem !important;
10708
  }
16848 stevensc 10709
 
16825 efrain 10710
  .text-sm-start {
10711
    text-align: left !important;
10712
  }
16848 stevensc 10713
 
16825 efrain 10714
  .text-sm-end {
10715
    text-align: right !important;
10716
  }
16848 stevensc 10717
 
16825 efrain 10718
  .text-sm-center {
10719
    text-align: center !important;
10720
  }
10721
}
16848 stevensc 10722
 
16825 efrain 10723
@media (min-width: 768px) {
10724
  .float-md-start {
10725
    float: left !important;
10726
  }
16848 stevensc 10727
 
16825 efrain 10728
  .float-md-end {
10729
    float: right !important;
10730
  }
16848 stevensc 10731
 
16825 efrain 10732
  .float-md-none {
10733
    float: none !important;
10734
  }
16848 stevensc 10735
 
16825 efrain 10736
  .d-md-inline {
10737
    display: inline !important;
10738
  }
16848 stevensc 10739
 
16825 efrain 10740
  .d-md-inline-block {
10741
    display: inline-block !important;
10742
  }
16848 stevensc 10743
 
16825 efrain 10744
  .d-md-block {
10745
    display: block !important;
10746
  }
16848 stevensc 10747
 
16825 efrain 10748
  .d-md-grid {
10749
    display: grid !important;
10750
  }
16848 stevensc 10751
 
16825 efrain 10752
  .d-md-table {
10753
    display: table !important;
10754
  }
16848 stevensc 10755
 
16825 efrain 10756
  .d-md-table-row {
10757
    display: table-row !important;
10758
  }
16848 stevensc 10759
 
16825 efrain 10760
  .d-md-table-cell {
10761
    display: table-cell !important;
10762
  }
16848 stevensc 10763
 
10764
  .d-md-flex,
10765
  .navbar .search-form {
16825 efrain 10766
    display: flex !important;
10767
  }
16848 stevensc 10768
 
16825 efrain 10769
  .d-md-inline-flex {
10770
    display: inline-flex !important;
10771
  }
16848 stevensc 10772
 
16825 efrain 10773
  .d-md-none {
10774
    display: none !important;
10775
  }
16848 stevensc 10776
 
16825 efrain 10777
  .border-md {
10778
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10779
  }
16848 stevensc 10780
 
16825 efrain 10781
  .border-md-0 {
10782
    border: 0 !important;
10783
  }
16848 stevensc 10784
 
16825 efrain 10785
  .border-top-md {
10786
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10787
  }
16848 stevensc 10788
 
16825 efrain 10789
  .border-top-md-0 {
10790
    border-top: 0 !important;
10791
  }
16848 stevensc 10792
 
16825 efrain 10793
  .border-end-md {
10794
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10795
  }
16848 stevensc 10796
 
16825 efrain 10797
  .border-end-md-0 {
10798
    border-right: 0 !important;
10799
  }
16848 stevensc 10800
 
16825 efrain 10801
  .border-bottom-md {
10802
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10803
  }
16848 stevensc 10804
 
16825 efrain 10805
  .border-bottom-md-0 {
10806
    border-bottom: 0 !important;
10807
  }
16848 stevensc 10808
 
16825 efrain 10809
  .border-start-md {
10810
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10811
  }
16848 stevensc 10812
 
16825 efrain 10813
  .border-start-md-0 {
10814
    border-left: 0 !important;
10815
  }
16848 stevensc 10816
 
16825 efrain 10817
  .flex-md-fill {
10818
    flex: 1 1 auto !important;
10819
  }
16848 stevensc 10820
 
16825 efrain 10821
  .flex-md-row {
10822
    flex-direction: row !important;
10823
  }
16848 stevensc 10824
 
16825 efrain 10825
  .flex-md-column {
10826
    flex-direction: column !important;
10827
  }
16848 stevensc 10828
 
16825 efrain 10829
  .flex-md-row-reverse {
10830
    flex-direction: row-reverse !important;
10831
  }
16848 stevensc 10832
 
16825 efrain 10833
  .flex-md-column-reverse {
10834
    flex-direction: column-reverse !important;
10835
  }
16848 stevensc 10836
 
16825 efrain 10837
  .flex-md-grow-0 {
10838
    flex-grow: 0 !important;
10839
  }
16848 stevensc 10840
 
16825 efrain 10841
  .flex-md-grow-1 {
10842
    flex-grow: 1 !important;
10843
  }
16848 stevensc 10844
 
16825 efrain 10845
  .flex-md-shrink-0 {
10846
    flex-shrink: 0 !important;
10847
  }
16848 stevensc 10848
 
16825 efrain 10849
  .flex-md-shrink-1 {
10850
    flex-shrink: 1 !important;
10851
  }
16848 stevensc 10852
 
16825 efrain 10853
  .flex-md-wrap {
10854
    flex-wrap: wrap !important;
10855
  }
16848 stevensc 10856
 
16825 efrain 10857
  .flex-md-nowrap {
10858
    flex-wrap: nowrap !important;
10859
  }
16848 stevensc 10860
 
16825 efrain 10861
  .flex-md-wrap-reverse {
10862
    flex-wrap: wrap-reverse !important;
10863
  }
16848 stevensc 10864
 
16825 efrain 10865
  .justify-content-md-start {
10866
    justify-content: flex-start !important;
10867
  }
16848 stevensc 10868
 
10869
  .justify-content-md-end,
10870
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10871
    justify-content: flex-end !important;
10872
  }
16848 stevensc 10873
 
16825 efrain 10874
  .justify-content-md-center {
10875
    justify-content: center !important;
10876
  }
16848 stevensc 10877
 
16825 efrain 10878
  .justify-content-md-between {
10879
    justify-content: space-between !important;
10880
  }
16848 stevensc 10881
 
16825 efrain 10882
  .justify-content-md-around {
10883
    justify-content: space-around !important;
10884
  }
16848 stevensc 10885
 
16825 efrain 10886
  .justify-content-md-evenly {
10887
    justify-content: space-evenly !important;
10888
  }
16848 stevensc 10889
 
16825 efrain 10890
  .align-items-md-start {
10891
    align-items: flex-start !important;
10892
  }
16848 stevensc 10893
 
16825 efrain 10894
  .align-items-md-end {
10895
    align-items: flex-end !important;
10896
  }
16848 stevensc 10897
 
16825 efrain 10898
  .align-items-md-center {
10899
    align-items: center !important;
10900
  }
16848 stevensc 10901
 
16825 efrain 10902
  .align-items-md-baseline {
10903
    align-items: baseline !important;
10904
  }
16848 stevensc 10905
 
16825 efrain 10906
  .align-items-md-stretch {
10907
    align-items: stretch !important;
10908
  }
16848 stevensc 10909
 
16825 efrain 10910
  .align-content-md-start {
10911
    align-content: flex-start !important;
10912
  }
16848 stevensc 10913
 
16825 efrain 10914
  .align-content-md-end {
10915
    align-content: flex-end !important;
10916
  }
16848 stevensc 10917
 
16825 efrain 10918
  .align-content-md-center {
10919
    align-content: center !important;
10920
  }
16848 stevensc 10921
 
16825 efrain 10922
  .align-content-md-between {
10923
    align-content: space-between !important;
10924
  }
16848 stevensc 10925
 
16825 efrain 10926
  .align-content-md-around {
10927
    align-content: space-around !important;
10928
  }
16848 stevensc 10929
 
16825 efrain 10930
  .align-content-md-stretch {
10931
    align-content: stretch !important;
10932
  }
16848 stevensc 10933
 
16825 efrain 10934
  .align-self-md-auto {
10935
    align-self: auto !important;
10936
  }
16848 stevensc 10937
 
16825 efrain 10938
  .align-self-md-start {
10939
    align-self: flex-start !important;
10940
  }
16848 stevensc 10941
 
16825 efrain 10942
  .align-self-md-end {
10943
    align-self: flex-end !important;
10944
  }
16848 stevensc 10945
 
16825 efrain 10946
  .align-self-md-center {
10947
    align-self: center !important;
10948
  }
16848 stevensc 10949
 
16825 efrain 10950
  .align-self-md-baseline {
10951
    align-self: baseline !important;
10952
  }
16848 stevensc 10953
 
16825 efrain 10954
  .align-self-md-stretch {
10955
    align-self: stretch !important;
10956
  }
16848 stevensc 10957
 
16825 efrain 10958
  .order-md-first {
10959
    order: -1 !important;
10960
  }
16848 stevensc 10961
 
16825 efrain 10962
  .order-md-0 {
10963
    order: 0 !important;
10964
  }
16848 stevensc 10965
 
16825 efrain 10966
  .order-md-1 {
10967
    order: 1 !important;
10968
  }
16848 stevensc 10969
 
16825 efrain 10970
  .order-md-2 {
10971
    order: 2 !important;
10972
  }
16848 stevensc 10973
 
16825 efrain 10974
  .order-md-3 {
10975
    order: 3 !important;
10976
  }
16848 stevensc 10977
 
16825 efrain 10978
  .order-md-4 {
10979
    order: 4 !important;
10980
  }
16848 stevensc 10981
 
16825 efrain 10982
  .order-md-5 {
10983
    order: 5 !important;
10984
  }
16848 stevensc 10985
 
16825 efrain 10986
  .order-md-last {
10987
    order: 6 !important;
10988
  }
16848 stevensc 10989
 
16825 efrain 10990
  .m-md-0 {
10991
    margin: 0 !important;
10992
  }
16848 stevensc 10993
 
16825 efrain 10994
  .m-md-1 {
10995
    margin: 0.25rem !important;
10996
  }
16848 stevensc 10997
 
16825 efrain 10998
  .m-md-2 {
10999
    margin: 0.5rem !important;
11000
  }
16848 stevensc 11001
 
16825 efrain 11002
  .m-md-3 {
11003
    margin: 1rem !important;
11004
  }
16848 stevensc 11005
 
16825 efrain 11006
  .m-md-4 {
11007
    margin: 1.5rem !important;
11008
  }
16848 stevensc 11009
 
16825 efrain 11010
  .m-md-5 {
11011
    margin: 3rem !important;
11012
  }
16848 stevensc 11013
 
16825 efrain 11014
  .m-md-6 {
11015
    margin: 4.5rem !important;
11016
  }
16848 stevensc 11017
 
16825 efrain 11018
  .m-md-7 {
11019
    margin: 6rem !important;
11020
  }
16848 stevensc 11021
 
16825 efrain 11022
  .m-md-auto {
11023
    margin: auto !important;
11024
  }
16848 stevensc 11025
 
16825 efrain 11026
  .mx-md-0 {
11027
    margin-right: 0 !important;
11028
    margin-left: 0 !important;
11029
  }
16848 stevensc 11030
 
16825 efrain 11031
  .mx-md-1 {
11032
    margin-right: 0.25rem !important;
11033
    margin-left: 0.25rem !important;
11034
  }
16848 stevensc 11035
 
16825 efrain 11036
  .mx-md-2 {
11037
    margin-right: 0.5rem !important;
11038
    margin-left: 0.5rem !important;
11039
  }
16848 stevensc 11040
 
16825 efrain 11041
  .mx-md-3 {
11042
    margin-right: 1rem !important;
11043
    margin-left: 1rem !important;
11044
  }
16848 stevensc 11045
 
16825 efrain 11046
  .mx-md-4 {
11047
    margin-right: 1.5rem !important;
11048
    margin-left: 1.5rem !important;
11049
  }
16848 stevensc 11050
 
16825 efrain 11051
  .mx-md-5 {
11052
    margin-right: 3rem !important;
11053
    margin-left: 3rem !important;
11054
  }
16848 stevensc 11055
 
16825 efrain 11056
  .mx-md-6 {
11057
    margin-right: 4.5rem !important;
11058
    margin-left: 4.5rem !important;
11059
  }
16848 stevensc 11060
 
16825 efrain 11061
  .mx-md-7 {
11062
    margin-right: 6rem !important;
11063
    margin-left: 6rem !important;
11064
  }
16848 stevensc 11065
 
16825 efrain 11066
  .mx-md-auto {
11067
    margin-right: auto !important;
11068
    margin-left: auto !important;
11069
  }
16848 stevensc 11070
 
16825 efrain 11071
  .my-md-0 {
11072
    margin-top: 0 !important;
11073
    margin-bottom: 0 !important;
11074
  }
16848 stevensc 11075
 
16825 efrain 11076
  .my-md-1 {
11077
    margin-top: 0.25rem !important;
11078
    margin-bottom: 0.25rem !important;
11079
  }
16848 stevensc 11080
 
16825 efrain 11081
  .my-md-2 {
11082
    margin-top: 0.5rem !important;
11083
    margin-bottom: 0.5rem !important;
11084
  }
16848 stevensc 11085
 
16825 efrain 11086
  .my-md-3 {
11087
    margin-top: 1rem !important;
11088
    margin-bottom: 1rem !important;
11089
  }
16848 stevensc 11090
 
16825 efrain 11091
  .my-md-4 {
11092
    margin-top: 1.5rem !important;
11093
    margin-bottom: 1.5rem !important;
11094
  }
16848 stevensc 11095
 
16825 efrain 11096
  .my-md-5 {
11097
    margin-top: 3rem !important;
11098
    margin-bottom: 3rem !important;
11099
  }
16848 stevensc 11100
 
16825 efrain 11101
  .my-md-6 {
11102
    margin-top: 4.5rem !important;
11103
    margin-bottom: 4.5rem !important;
11104
  }
16848 stevensc 11105
 
16825 efrain 11106
  .my-md-7 {
11107
    margin-top: 6rem !important;
11108
    margin-bottom: 6rem !important;
11109
  }
16848 stevensc 11110
 
16825 efrain 11111
  .my-md-auto {
11112
    margin-top: auto !important;
11113
    margin-bottom: auto !important;
11114
  }
16848 stevensc 11115
 
11116
  .mt-md-0,
11117
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11118
    margin-top: 0 !important;
11119
  }
16848 stevensc 11120
 
16825 efrain 11121
  .mt-md-1 {
11122
    margin-top: 0.25rem !important;
11123
  }
16848 stevensc 11124
 
16825 efrain 11125
  .mt-md-2 {
11126
    margin-top: 0.5rem !important;
11127
  }
16848 stevensc 11128
 
16825 efrain 11129
  .mt-md-3 {
11130
    margin-top: 1rem !important;
11131
  }
16848 stevensc 11132
 
16825 efrain 11133
  .mt-md-4 {
11134
    margin-top: 1.5rem !important;
11135
  }
16848 stevensc 11136
 
16825 efrain 11137
  .mt-md-5 {
11138
    margin-top: 3rem !important;
11139
  }
16848 stevensc 11140
 
16825 efrain 11141
  .mt-md-6 {
11142
    margin-top: 4.5rem !important;
11143
  }
16848 stevensc 11144
 
16825 efrain 11145
  .mt-md-7 {
11146
    margin-top: 6rem !important;
11147
  }
16848 stevensc 11148
 
16825 efrain 11149
  .mt-md-auto {
11150
    margin-top: auto !important;
11151
  }
16848 stevensc 11152
 
16825 efrain 11153
  .me-md-0 {
11154
    margin-right: 0 !important;
11155
  }
16848 stevensc 11156
 
16825 efrain 11157
  .me-md-1 {
11158
    margin-right: 0.25rem !important;
11159
  }
16848 stevensc 11160
 
16825 efrain 11161
  .me-md-2 {
11162
    margin-right: 0.5rem !important;
11163
  }
16848 stevensc 11164
 
16825 efrain 11165
  .me-md-3 {
11166
    margin-right: 1rem !important;
11167
  }
16848 stevensc 11168
 
16825 efrain 11169
  .me-md-4 {
11170
    margin-right: 1.5rem !important;
11171
  }
16848 stevensc 11172
 
16825 efrain 11173
  .me-md-5 {
11174
    margin-right: 3rem !important;
11175
  }
16848 stevensc 11176
 
16825 efrain 11177
  .me-md-6 {
11178
    margin-right: 4.5rem !important;
11179
  }
16848 stevensc 11180
 
16825 efrain 11181
  .me-md-7 {
11182
    margin-right: 6rem !important;
11183
  }
16848 stevensc 11184
 
16825 efrain 11185
  .me-md-auto {
11186
    margin-right: auto !important;
11187
  }
16848 stevensc 11188
 
11189
  .mb-md-0,
11190
  .example .btn-group {
16825 efrain 11191
    margin-bottom: 0 !important;
11192
  }
16848 stevensc 11193
 
16825 efrain 11194
  .mb-md-1 {
11195
    margin-bottom: 0.25rem !important;
11196
  }
16848 stevensc 11197
 
16825 efrain 11198
  .mb-md-2 {
11199
    margin-bottom: 0.5rem !important;
11200
  }
16848 stevensc 11201
 
16825 efrain 11202
  .mb-md-3 {
11203
    margin-bottom: 1rem !important;
11204
  }
16848 stevensc 11205
 
16825 efrain 11206
  .mb-md-4 {
11207
    margin-bottom: 1.5rem !important;
11208
  }
16848 stevensc 11209
 
16825 efrain 11210
  .mb-md-5 {
11211
    margin-bottom: 3rem !important;
11212
  }
16848 stevensc 11213
 
16825 efrain 11214
  .mb-md-6 {
11215
    margin-bottom: 4.5rem !important;
11216
  }
16848 stevensc 11217
 
16825 efrain 11218
  .mb-md-7 {
11219
    margin-bottom: 6rem !important;
11220
  }
16848 stevensc 11221
 
16825 efrain 11222
  .mb-md-auto {
11223
    margin-bottom: auto !important;
11224
  }
16848 stevensc 11225
 
16825 efrain 11226
  .ms-md-0 {
11227
    margin-left: 0 !important;
11228
  }
16848 stevensc 11229
 
16825 efrain 11230
  .ms-md-1 {
11231
    margin-left: 0.25rem !important;
11232
  }
16848 stevensc 11233
 
16825 efrain 11234
  .ms-md-2 {
11235
    margin-left: 0.5rem !important;
11236
  }
16848 stevensc 11237
 
16825 efrain 11238
  .ms-md-3 {
11239
    margin-left: 1rem !important;
11240
  }
16848 stevensc 11241
 
16825 efrain 11242
  .ms-md-4 {
11243
    margin-left: 1.5rem !important;
11244
  }
16848 stevensc 11245
 
16825 efrain 11246
  .ms-md-5 {
11247
    margin-left: 3rem !important;
11248
  }
16848 stevensc 11249
 
16825 efrain 11250
  .ms-md-6 {
11251
    margin-left: 4.5rem !important;
11252
  }
16848 stevensc 11253
 
16825 efrain 11254
  .ms-md-7 {
11255
    margin-left: 6rem !important;
11256
  }
16848 stevensc 11257
 
16825 efrain 11258
  .ms-md-auto {
11259
    margin-left: auto !important;
11260
  }
16848 stevensc 11261
 
16825 efrain 11262
  .m-md-n1 {
11263
    margin: -0.25rem !important;
11264
  }
16848 stevensc 11265
 
16825 efrain 11266
  .m-md-n2 {
11267
    margin: -0.5rem !important;
11268
  }
16848 stevensc 11269
 
16825 efrain 11270
  .m-md-n3 {
11271
    margin: -1rem !important;
11272
  }
16848 stevensc 11273
 
16825 efrain 11274
  .m-md-n4 {
11275
    margin: -1.5rem !important;
11276
  }
16848 stevensc 11277
 
16825 efrain 11278
  .m-md-n5 {
11279
    margin: -3rem !important;
11280
  }
16848 stevensc 11281
 
16825 efrain 11282
  .m-md-n6 {
11283
    margin: -4.5rem !important;
11284
  }
16848 stevensc 11285
 
16825 efrain 11286
  .m-md-n7 {
11287
    margin: -6rem !important;
11288
  }
16848 stevensc 11289
 
16825 efrain 11290
  .mx-md-n1 {
11291
    margin-right: -0.25rem !important;
11292
    margin-left: -0.25rem !important;
11293
  }
16848 stevensc 11294
 
16825 efrain 11295
  .mx-md-n2 {
11296
    margin-right: -0.5rem !important;
11297
    margin-left: -0.5rem !important;
11298
  }
16848 stevensc 11299
 
16825 efrain 11300
  .mx-md-n3 {
11301
    margin-right: -1rem !important;
11302
    margin-left: -1rem !important;
11303
  }
16848 stevensc 11304
 
16825 efrain 11305
  .mx-md-n4 {
11306
    margin-right: -1.5rem !important;
11307
    margin-left: -1.5rem !important;
11308
  }
16848 stevensc 11309
 
16825 efrain 11310
  .mx-md-n5 {
11311
    margin-right: -3rem !important;
11312
    margin-left: -3rem !important;
11313
  }
16848 stevensc 11314
 
16825 efrain 11315
  .mx-md-n6 {
11316
    margin-right: -4.5rem !important;
11317
    margin-left: -4.5rem !important;
11318
  }
16848 stevensc 11319
 
16825 efrain 11320
  .mx-md-n7 {
11321
    margin-right: -6rem !important;
11322
    margin-left: -6rem !important;
11323
  }
16848 stevensc 11324
 
16825 efrain 11325
  .my-md-n1 {
11326
    margin-top: -0.25rem !important;
11327
    margin-bottom: -0.25rem !important;
11328
  }
16848 stevensc 11329
 
16825 efrain 11330
  .my-md-n2 {
11331
    margin-top: -0.5rem !important;
11332
    margin-bottom: -0.5rem !important;
11333
  }
16848 stevensc 11334
 
16825 efrain 11335
  .my-md-n3 {
11336
    margin-top: -1rem !important;
11337
    margin-bottom: -1rem !important;
11338
  }
16848 stevensc 11339
 
16825 efrain 11340
  .my-md-n4 {
11341
    margin-top: -1.5rem !important;
11342
    margin-bottom: -1.5rem !important;
11343
  }
16848 stevensc 11344
 
16825 efrain 11345
  .my-md-n5 {
11346
    margin-top: -3rem !important;
11347
    margin-bottom: -3rem !important;
11348
  }
16848 stevensc 11349
 
16825 efrain 11350
  .my-md-n6 {
11351
    margin-top: -4.5rem !important;
11352
    margin-bottom: -4.5rem !important;
11353
  }
16848 stevensc 11354
 
16825 efrain 11355
  .my-md-n7 {
11356
    margin-top: -6rem !important;
11357
    margin-bottom: -6rem !important;
11358
  }
16848 stevensc 11359
 
16825 efrain 11360
  .mt-md-n1 {
11361
    margin-top: -0.25rem !important;
11362
  }
16848 stevensc 11363
 
16825 efrain 11364
  .mt-md-n2 {
11365
    margin-top: -0.5rem !important;
11366
  }
16848 stevensc 11367
 
16825 efrain 11368
  .mt-md-n3 {
11369
    margin-top: -1rem !important;
11370
  }
16848 stevensc 11371
 
16825 efrain 11372
  .mt-md-n4 {
11373
    margin-top: -1.5rem !important;
11374
  }
16848 stevensc 11375
 
16825 efrain 11376
  .mt-md-n5 {
11377
    margin-top: -3rem !important;
11378
  }
16848 stevensc 11379
 
16825 efrain 11380
  .mt-md-n6 {
11381
    margin-top: -4.5rem !important;
11382
  }
16848 stevensc 11383
 
16825 efrain 11384
  .mt-md-n7 {
11385
    margin-top: -6rem !important;
11386
  }
16848 stevensc 11387
 
16825 efrain 11388
  .me-md-n1 {
11389
    margin-right: -0.25rem !important;
11390
  }
16848 stevensc 11391
 
16825 efrain 11392
  .me-md-n2 {
11393
    margin-right: -0.5rem !important;
11394
  }
16848 stevensc 11395
 
16825 efrain 11396
  .me-md-n3 {
11397
    margin-right: -1rem !important;
11398
  }
16848 stevensc 11399
 
16825 efrain 11400
  .me-md-n4 {
11401
    margin-right: -1.5rem !important;
11402
  }
16848 stevensc 11403
 
16825 efrain 11404
  .me-md-n5 {
11405
    margin-right: -3rem !important;
11406
  }
16848 stevensc 11407
 
16825 efrain 11408
  .me-md-n6 {
11409
    margin-right: -4.5rem !important;
11410
  }
16848 stevensc 11411
 
16825 efrain 11412
  .me-md-n7 {
11413
    margin-right: -6rem !important;
11414
  }
16848 stevensc 11415
 
16825 efrain 11416
  .mb-md-n1 {
11417
    margin-bottom: -0.25rem !important;
11418
  }
16848 stevensc 11419
 
16825 efrain 11420
  .mb-md-n2 {
11421
    margin-bottom: -0.5rem !important;
11422
  }
16848 stevensc 11423
 
16825 efrain 11424
  .mb-md-n3 {
11425
    margin-bottom: -1rem !important;
11426
  }
16848 stevensc 11427
 
16825 efrain 11428
  .mb-md-n4 {
11429
    margin-bottom: -1.5rem !important;
11430
  }
16848 stevensc 11431
 
16825 efrain 11432
  .mb-md-n5 {
11433
    margin-bottom: -3rem !important;
11434
  }
16848 stevensc 11435
 
16825 efrain 11436
  .mb-md-n6 {
11437
    margin-bottom: -4.5rem !important;
11438
  }
16848 stevensc 11439
 
16825 efrain 11440
  .mb-md-n7 {
11441
    margin-bottom: -6rem !important;
11442
  }
16848 stevensc 11443
 
16825 efrain 11444
  .ms-md-n1 {
11445
    margin-left: -0.25rem !important;
11446
  }
16848 stevensc 11447
 
16825 efrain 11448
  .ms-md-n2 {
11449
    margin-left: -0.5rem !important;
11450
  }
16848 stevensc 11451
 
16825 efrain 11452
  .ms-md-n3 {
11453
    margin-left: -1rem !important;
11454
  }
16848 stevensc 11455
 
16825 efrain 11456
  .ms-md-n4 {
11457
    margin-left: -1.5rem !important;
11458
  }
16848 stevensc 11459
 
16825 efrain 11460
  .ms-md-n5 {
11461
    margin-left: -3rem !important;
11462
  }
16848 stevensc 11463
 
16825 efrain 11464
  .ms-md-n6 {
11465
    margin-left: -4.5rem !important;
11466
  }
16848 stevensc 11467
 
16825 efrain 11468
  .ms-md-n7 {
11469
    margin-left: -6rem !important;
11470
  }
16848 stevensc 11471
 
16825 efrain 11472
  .p-md-0 {
11473
    padding: 0 !important;
11474
  }
16848 stevensc 11475
 
16825 efrain 11476
  .p-md-1 {
11477
    padding: 0.25rem !important;
11478
  }
16848 stevensc 11479
 
16825 efrain 11480
  .p-md-2 {
11481
    padding: 0.5rem !important;
11482
  }
16848 stevensc 11483
 
16825 efrain 11484
  .p-md-3 {
11485
    padding: 1rem !important;
11486
  }
16848 stevensc 11487
 
16825 efrain 11488
  .p-md-4 {
11489
    padding: 1.5rem !important;
11490
  }
16848 stevensc 11491
 
16825 efrain 11492
  .p-md-5 {
11493
    padding: 3rem !important;
11494
  }
16848 stevensc 11495
 
16825 efrain 11496
  .p-md-6 {
11497
    padding: 4.5rem !important;
11498
  }
16848 stevensc 11499
 
16825 efrain 11500
  .p-md-7 {
11501
    padding: 6rem !important;
11502
  }
16848 stevensc 11503
 
16825 efrain 11504
  .px-md-0 {
11505
    padding-right: 0 !important;
11506
    padding-left: 0 !important;
11507
  }
16848 stevensc 11508
 
16825 efrain 11509
  .px-md-1 {
11510
    padding-right: 0.25rem !important;
11511
    padding-left: 0.25rem !important;
11512
  }
16848 stevensc 11513
 
16825 efrain 11514
  .px-md-2 {
11515
    padding-right: 0.5rem !important;
11516
    padding-left: 0.5rem !important;
11517
  }
16848 stevensc 11518
 
16825 efrain 11519
  .px-md-3 {
11520
    padding-right: 1rem !important;
11521
    padding-left: 1rem !important;
11522
  }
16848 stevensc 11523
 
16825 efrain 11524
  .px-md-4 {
11525
    padding-right: 1.5rem !important;
11526
    padding-left: 1.5rem !important;
11527
  }
16848 stevensc 11528
 
16825 efrain 11529
  .px-md-5 {
11530
    padding-right: 3rem !important;
11531
    padding-left: 3rem !important;
11532
  }
16848 stevensc 11533
 
16825 efrain 11534
  .px-md-6 {
11535
    padding-right: 4.5rem !important;
11536
    padding-left: 4.5rem !important;
11537
  }
16848 stevensc 11538
 
16825 efrain 11539
  .px-md-7 {
11540
    padding-right: 6rem !important;
11541
    padding-left: 6rem !important;
11542
  }
16848 stevensc 11543
 
16825 efrain 11544
  .py-md-0 {
11545
    padding-top: 0 !important;
11546
    padding-bottom: 0 !important;
11547
  }
16848 stevensc 11548
 
16825 efrain 11549
  .py-md-1 {
11550
    padding-top: 0.25rem !important;
11551
    padding-bottom: 0.25rem !important;
11552
  }
16848 stevensc 11553
 
16825 efrain 11554
  .py-md-2 {
11555
    padding-top: 0.5rem !important;
11556
    padding-bottom: 0.5rem !important;
11557
  }
16848 stevensc 11558
 
16825 efrain 11559
  .py-md-3 {
11560
    padding-top: 1rem !important;
11561
    padding-bottom: 1rem !important;
11562
  }
16848 stevensc 11563
 
16825 efrain 11564
  .py-md-4 {
11565
    padding-top: 1.5rem !important;
11566
    padding-bottom: 1.5rem !important;
11567
  }
16848 stevensc 11568
 
16825 efrain 11569
  .py-md-5 {
11570
    padding-top: 3rem !important;
11571
    padding-bottom: 3rem !important;
11572
  }
16848 stevensc 11573
 
16825 efrain 11574
  .py-md-6 {
11575
    padding-top: 4.5rem !important;
11576
    padding-bottom: 4.5rem !important;
11577
  }
16848 stevensc 11578
 
16825 efrain 11579
  .py-md-7 {
11580
    padding-top: 6rem !important;
11581
    padding-bottom: 6rem !important;
11582
  }
16848 stevensc 11583
 
16825 efrain 11584
  .pt-md-0 {
11585
    padding-top: 0 !important;
11586
  }
16848 stevensc 11587
 
16825 efrain 11588
  .pt-md-1 {
11589
    padding-top: 0.25rem !important;
11590
  }
16848 stevensc 11591
 
16825 efrain 11592
  .pt-md-2 {
11593
    padding-top: 0.5rem !important;
11594
  }
16848 stevensc 11595
 
16825 efrain 11596
  .pt-md-3 {
11597
    padding-top: 1rem !important;
11598
  }
16848 stevensc 11599
 
16825 efrain 11600
  .pt-md-4 {
11601
    padding-top: 1.5rem !important;
11602
  }
16848 stevensc 11603
 
16825 efrain 11604
  .pt-md-5 {
11605
    padding-top: 3rem !important;
11606
  }
16848 stevensc 11607
 
16825 efrain 11608
  .pt-md-6 {
11609
    padding-top: 4.5rem !important;
11610
  }
16848 stevensc 11611
 
16825 efrain 11612
  .pt-md-7 {
11613
    padding-top: 6rem !important;
11614
  }
16848 stevensc 11615
 
16825 efrain 11616
  .pe-md-0 {
11617
    padding-right: 0 !important;
11618
  }
16848 stevensc 11619
 
16825 efrain 11620
  .pe-md-1 {
11621
    padding-right: 0.25rem !important;
11622
  }
16848 stevensc 11623
 
16825 efrain 11624
  .pe-md-2 {
11625
    padding-right: 0.5rem !important;
11626
  }
16848 stevensc 11627
 
16825 efrain 11628
  .pe-md-3 {
11629
    padding-right: 1rem !important;
11630
  }
16848 stevensc 11631
 
16825 efrain 11632
  .pe-md-4 {
11633
    padding-right: 1.5rem !important;
11634
  }
16848 stevensc 11635
 
16825 efrain 11636
  .pe-md-5 {
11637
    padding-right: 3rem !important;
11638
  }
16848 stevensc 11639
 
16825 efrain 11640
  .pe-md-6 {
11641
    padding-right: 4.5rem !important;
11642
  }
16848 stevensc 11643
 
16825 efrain 11644
  .pe-md-7 {
11645
    padding-right: 6rem !important;
11646
  }
16848 stevensc 11647
 
16825 efrain 11648
  .pb-md-0 {
11649
    padding-bottom: 0 !important;
11650
  }
16848 stevensc 11651
 
16825 efrain 11652
  .pb-md-1 {
11653
    padding-bottom: 0.25rem !important;
11654
  }
16848 stevensc 11655
 
16825 efrain 11656
  .pb-md-2 {
11657
    padding-bottom: 0.5rem !important;
11658
  }
16848 stevensc 11659
 
16825 efrain 11660
  .pb-md-3 {
11661
    padding-bottom: 1rem !important;
11662
  }
16848 stevensc 11663
 
16825 efrain 11664
  .pb-md-4 {
11665
    padding-bottom: 1.5rem !important;
11666
  }
16848 stevensc 11667
 
16825 efrain 11668
  .pb-md-5 {
11669
    padding-bottom: 3rem !important;
11670
  }
16848 stevensc 11671
 
16825 efrain 11672
  .pb-md-6 {
11673
    padding-bottom: 4.5rem !important;
11674
  }
16848 stevensc 11675
 
16825 efrain 11676
  .pb-md-7 {
11677
    padding-bottom: 6rem !important;
11678
  }
16848 stevensc 11679
 
16825 efrain 11680
  .ps-md-0 {
11681
    padding-left: 0 !important;
11682
  }
16848 stevensc 11683
 
16825 efrain 11684
  .ps-md-1 {
11685
    padding-left: 0.25rem !important;
11686
  }
16848 stevensc 11687
 
16825 efrain 11688
  .ps-md-2 {
11689
    padding-left: 0.5rem !important;
11690
  }
16848 stevensc 11691
 
16825 efrain 11692
  .ps-md-3 {
11693
    padding-left: 1rem !important;
11694
  }
16848 stevensc 11695
 
16825 efrain 11696
  .ps-md-4 {
11697
    padding-left: 1.5rem !important;
11698
  }
16848 stevensc 11699
 
16825 efrain 11700
  .ps-md-5 {
11701
    padding-left: 3rem !important;
11702
  }
16848 stevensc 11703
 
16825 efrain 11704
  .ps-md-6 {
11705
    padding-left: 4.5rem !important;
11706
  }
16848 stevensc 11707
 
16825 efrain 11708
  .ps-md-7 {
11709
    padding-left: 6rem !important;
11710
  }
16848 stevensc 11711
 
16825 efrain 11712
  .gap-md-0 {
11713
    gap: 0 !important;
11714
  }
16848 stevensc 11715
 
16825 efrain 11716
  .gap-md-1 {
11717
    gap: 0.25rem !important;
11718
  }
16848 stevensc 11719
 
16825 efrain 11720
  .gap-md-2 {
11721
    gap: 0.5rem !important;
11722
  }
16848 stevensc 11723
 
16825 efrain 11724
  .gap-md-3 {
11725
    gap: 1rem !important;
11726
  }
16848 stevensc 11727
 
16825 efrain 11728
  .gap-md-4 {
11729
    gap: 1.5rem !important;
11730
  }
16848 stevensc 11731
 
16825 efrain 11732
  .gap-md-5 {
11733
    gap: 3rem !important;
11734
  }
16848 stevensc 11735
 
16825 efrain 11736
  .gap-md-6 {
11737
    gap: 4.5rem !important;
11738
  }
16848 stevensc 11739
 
16825 efrain 11740
  .gap-md-7 {
11741
    gap: 6rem !important;
11742
  }
16848 stevensc 11743
 
16825 efrain 11744
  .text-md-start {
11745
    text-align: left !important;
11746
  }
16848 stevensc 11747
 
16825 efrain 11748
  .text-md-end {
11749
    text-align: right !important;
11750
  }
16848 stevensc 11751
 
16825 efrain 11752
  .text-md-center {
11753
    text-align: center !important;
11754
  }
11755
}
16848 stevensc 11756
 
16825 efrain 11757
@media (min-width: 992px) {
11758
  .float-lg-start {
11759
    float: left !important;
11760
  }
16848 stevensc 11761
 
16825 efrain 11762
  .float-lg-end {
11763
    float: right !important;
11764
  }
16848 stevensc 11765
 
16825 efrain 11766
  .float-lg-none {
11767
    float: none !important;
11768
  }
16848 stevensc 11769
 
16825 efrain 11770
  .d-lg-inline {
11771
    display: inline !important;
11772
  }
16848 stevensc 11773
 
16825 efrain 11774
  .d-lg-inline-block {
11775
    display: inline-block !important;
11776
  }
16848 stevensc 11777
 
16825 efrain 11778
  .d-lg-block {
11779
    display: block !important;
11780
  }
16848 stevensc 11781
 
16825 efrain 11782
  .d-lg-grid {
11783
    display: grid !important;
11784
  }
16848 stevensc 11785
 
16825 efrain 11786
  .d-lg-table {
11787
    display: table !important;
11788
  }
16848 stevensc 11789
 
16825 efrain 11790
  .d-lg-table-row {
11791
    display: table-row !important;
11792
  }
16848 stevensc 11793
 
16825 efrain 11794
  .d-lg-table-cell {
11795
    display: table-cell !important;
11796
  }
16848 stevensc 11797
 
16825 efrain 11798
  .d-lg-flex {
11799
    display: flex !important;
11800
  }
16848 stevensc 11801
 
16825 efrain 11802
  .d-lg-inline-flex {
11803
    display: inline-flex !important;
11804
  }
16848 stevensc 11805
 
16825 efrain 11806
  .d-lg-none {
11807
    display: none !important;
11808
  }
16848 stevensc 11809
 
16825 efrain 11810
  .border-lg {
11811
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11812
  }
16848 stevensc 11813
 
16825 efrain 11814
  .border-lg-0 {
11815
    border: 0 !important;
11816
  }
16848 stevensc 11817
 
16825 efrain 11818
  .border-top-lg {
11819
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11820
  }
16848 stevensc 11821
 
16825 efrain 11822
  .border-top-lg-0 {
11823
    border-top: 0 !important;
11824
  }
16848 stevensc 11825
 
16825 efrain 11826
  .border-end-lg {
11827
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11828
  }
16848 stevensc 11829
 
16825 efrain 11830
  .border-end-lg-0 {
11831
    border-right: 0 !important;
11832
  }
16848 stevensc 11833
 
16825 efrain 11834
  .border-bottom-lg {
11835
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11836
  }
16848 stevensc 11837
 
16825 efrain 11838
  .border-bottom-lg-0 {
11839
    border-bottom: 0 !important;
11840
  }
16848 stevensc 11841
 
16825 efrain 11842
  .border-start-lg {
11843
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11844
  }
16848 stevensc 11845
 
16825 efrain 11846
  .border-start-lg-0 {
11847
    border-left: 0 !important;
11848
  }
16848 stevensc 11849
 
16825 efrain 11850
  .flex-lg-fill {
11851
    flex: 1 1 auto !important;
11852
  }
16848 stevensc 11853
 
16825 efrain 11854
  .flex-lg-row {
11855
    flex-direction: row !important;
11856
  }
16848 stevensc 11857
 
16825 efrain 11858
  .flex-lg-column {
11859
    flex-direction: column !important;
11860
  }
16848 stevensc 11861
 
16825 efrain 11862
  .flex-lg-row-reverse {
11863
    flex-direction: row-reverse !important;
11864
  }
16848 stevensc 11865
 
16825 efrain 11866
  .flex-lg-column-reverse {
11867
    flex-direction: column-reverse !important;
11868
  }
16848 stevensc 11869
 
16825 efrain 11870
  .flex-lg-grow-0 {
11871
    flex-grow: 0 !important;
11872
  }
16848 stevensc 11873
 
16825 efrain 11874
  .flex-lg-grow-1 {
11875
    flex-grow: 1 !important;
11876
  }
16848 stevensc 11877
 
16825 efrain 11878
  .flex-lg-shrink-0 {
11879
    flex-shrink: 0 !important;
11880
  }
16848 stevensc 11881
 
16825 efrain 11882
  .flex-lg-shrink-1 {
11883
    flex-shrink: 1 !important;
11884
  }
16848 stevensc 11885
 
16825 efrain 11886
  .flex-lg-wrap {
11887
    flex-wrap: wrap !important;
11888
  }
16848 stevensc 11889
 
16825 efrain 11890
  .flex-lg-nowrap {
11891
    flex-wrap: nowrap !important;
11892
  }
16848 stevensc 11893
 
16825 efrain 11894
  .flex-lg-wrap-reverse {
11895
    flex-wrap: wrap-reverse !important;
11896
  }
16848 stevensc 11897
 
16825 efrain 11898
  .justify-content-lg-start {
11899
    justify-content: flex-start !important;
11900
  }
16848 stevensc 11901
 
16825 efrain 11902
  .justify-content-lg-end {
11903
    justify-content: flex-end !important;
11904
  }
16848 stevensc 11905
 
16825 efrain 11906
  .justify-content-lg-center {
11907
    justify-content: center !important;
11908
  }
16848 stevensc 11909
 
16825 efrain 11910
  .justify-content-lg-between {
11911
    justify-content: space-between !important;
11912
  }
16848 stevensc 11913
 
16825 efrain 11914
  .justify-content-lg-around {
11915
    justify-content: space-around !important;
11916
  }
16848 stevensc 11917
 
16825 efrain 11918
  .justify-content-lg-evenly {
11919
    justify-content: space-evenly !important;
11920
  }
16848 stevensc 11921
 
16825 efrain 11922
  .align-items-lg-start {
11923
    align-items: flex-start !important;
11924
  }
16848 stevensc 11925
 
16825 efrain 11926
  .align-items-lg-end {
11927
    align-items: flex-end !important;
11928
  }
16848 stevensc 11929
 
16825 efrain 11930
  .align-items-lg-center {
11931
    align-items: center !important;
11932
  }
16848 stevensc 11933
 
16825 efrain 11934
  .align-items-lg-baseline {
11935
    align-items: baseline !important;
11936
  }
16848 stevensc 11937
 
16825 efrain 11938
  .align-items-lg-stretch {
11939
    align-items: stretch !important;
11940
  }
16848 stevensc 11941
 
16825 efrain 11942
  .align-content-lg-start {
11943
    align-content: flex-start !important;
11944
  }
16848 stevensc 11945
 
16825 efrain 11946
  .align-content-lg-end {
11947
    align-content: flex-end !important;
11948
  }
16848 stevensc 11949
 
16825 efrain 11950
  .align-content-lg-center {
11951
    align-content: center !important;
11952
  }
16848 stevensc 11953
 
16825 efrain 11954
  .align-content-lg-between {
11955
    align-content: space-between !important;
11956
  }
16848 stevensc 11957
 
16825 efrain 11958
  .align-content-lg-around {
11959
    align-content: space-around !important;
11960
  }
16848 stevensc 11961
 
16825 efrain 11962
  .align-content-lg-stretch {
11963
    align-content: stretch !important;
11964
  }
16848 stevensc 11965
 
16825 efrain 11966
  .align-self-lg-auto {
11967
    align-self: auto !important;
11968
  }
16848 stevensc 11969
 
16825 efrain 11970
  .align-self-lg-start {
11971
    align-self: flex-start !important;
11972
  }
16848 stevensc 11973
 
16825 efrain 11974
  .align-self-lg-end {
11975
    align-self: flex-end !important;
11976
  }
16848 stevensc 11977
 
16825 efrain 11978
  .align-self-lg-center {
11979
    align-self: center !important;
11980
  }
16848 stevensc 11981
 
16825 efrain 11982
  .align-self-lg-baseline {
11983
    align-self: baseline !important;
11984
  }
16848 stevensc 11985
 
16825 efrain 11986
  .align-self-lg-stretch {
11987
    align-self: stretch !important;
11988
  }
16848 stevensc 11989
 
16825 efrain 11990
  .order-lg-first {
11991
    order: -1 !important;
11992
  }
16848 stevensc 11993
 
16825 efrain 11994
  .order-lg-0 {
11995
    order: 0 !important;
11996
  }
16848 stevensc 11997
 
16825 efrain 11998
  .order-lg-1 {
11999
    order: 1 !important;
12000
  }
16848 stevensc 12001
 
16825 efrain 12002
  .order-lg-2 {
12003
    order: 2 !important;
12004
  }
16848 stevensc 12005
 
16825 efrain 12006
  .order-lg-3 {
12007
    order: 3 !important;
12008
  }
16848 stevensc 12009
 
16825 efrain 12010
  .order-lg-4 {
12011
    order: 4 !important;
12012
  }
16848 stevensc 12013
 
16825 efrain 12014
  .order-lg-5 {
12015
    order: 5 !important;
12016
  }
16848 stevensc 12017
 
16825 efrain 12018
  .order-lg-last {
12019
    order: 6 !important;
12020
  }
16848 stevensc 12021
 
16825 efrain 12022
  .m-lg-0 {
12023
    margin: 0 !important;
12024
  }
16848 stevensc 12025
 
16825 efrain 12026
  .m-lg-1 {
12027
    margin: 0.25rem !important;
12028
  }
16848 stevensc 12029
 
16825 efrain 12030
  .m-lg-2 {
12031
    margin: 0.5rem !important;
12032
  }
16848 stevensc 12033
 
16825 efrain 12034
  .m-lg-3 {
12035
    margin: 1rem !important;
12036
  }
16848 stevensc 12037
 
16825 efrain 12038
  .m-lg-4 {
12039
    margin: 1.5rem !important;
12040
  }
16848 stevensc 12041
 
16825 efrain 12042
  .m-lg-5 {
12043
    margin: 3rem !important;
12044
  }
16848 stevensc 12045
 
16825 efrain 12046
  .m-lg-6 {
12047
    margin: 4.5rem !important;
12048
  }
16848 stevensc 12049
 
16825 efrain 12050
  .m-lg-7 {
12051
    margin: 6rem !important;
12052
  }
16848 stevensc 12053
 
16825 efrain 12054
  .m-lg-auto {
12055
    margin: auto !important;
12056
  }
16848 stevensc 12057
 
16825 efrain 12058
  .mx-lg-0 {
12059
    margin-right: 0 !important;
12060
    margin-left: 0 !important;
12061
  }
16848 stevensc 12062
 
16825 efrain 12063
  .mx-lg-1 {
12064
    margin-right: 0.25rem !important;
12065
    margin-left: 0.25rem !important;
12066
  }
16848 stevensc 12067
 
16825 efrain 12068
  .mx-lg-2 {
12069
    margin-right: 0.5rem !important;
12070
    margin-left: 0.5rem !important;
12071
  }
16848 stevensc 12072
 
16825 efrain 12073
  .mx-lg-3 {
12074
    margin-right: 1rem !important;
12075
    margin-left: 1rem !important;
12076
  }
16848 stevensc 12077
 
16825 efrain 12078
  .mx-lg-4 {
12079
    margin-right: 1.5rem !important;
12080
    margin-left: 1.5rem !important;
12081
  }
16848 stevensc 12082
 
16825 efrain 12083
  .mx-lg-5 {
12084
    margin-right: 3rem !important;
12085
    margin-left: 3rem !important;
12086
  }
16848 stevensc 12087
 
16825 efrain 12088
  .mx-lg-6 {
12089
    margin-right: 4.5rem !important;
12090
    margin-left: 4.5rem !important;
12091
  }
16848 stevensc 12092
 
16825 efrain 12093
  .mx-lg-7 {
12094
    margin-right: 6rem !important;
12095
    margin-left: 6rem !important;
12096
  }
16848 stevensc 12097
 
16825 efrain 12098
  .mx-lg-auto {
12099
    margin-right: auto !important;
12100
    margin-left: auto !important;
12101
  }
16848 stevensc 12102
 
16825 efrain 12103
  .my-lg-0 {
12104
    margin-top: 0 !important;
12105
    margin-bottom: 0 !important;
12106
  }
16848 stevensc 12107
 
16825 efrain 12108
  .my-lg-1 {
12109
    margin-top: 0.25rem !important;
12110
    margin-bottom: 0.25rem !important;
12111
  }
16848 stevensc 12112
 
16825 efrain 12113
  .my-lg-2 {
12114
    margin-top: 0.5rem !important;
12115
    margin-bottom: 0.5rem !important;
12116
  }
16848 stevensc 12117
 
16825 efrain 12118
  .my-lg-3 {
12119
    margin-top: 1rem !important;
12120
    margin-bottom: 1rem !important;
12121
  }
16848 stevensc 12122
 
16825 efrain 12123
  .my-lg-4 {
12124
    margin-top: 1.5rem !important;
12125
    margin-bottom: 1.5rem !important;
12126
  }
16848 stevensc 12127
 
16825 efrain 12128
  .my-lg-5 {
12129
    margin-top: 3rem !important;
12130
    margin-bottom: 3rem !important;
12131
  }
16848 stevensc 12132
 
16825 efrain 12133
  .my-lg-6 {
12134
    margin-top: 4.5rem !important;
12135
    margin-bottom: 4.5rem !important;
12136
  }
16848 stevensc 12137
 
16825 efrain 12138
  .my-lg-7 {
12139
    margin-top: 6rem !important;
12140
    margin-bottom: 6rem !important;
12141
  }
16848 stevensc 12142
 
16825 efrain 12143
  .my-lg-auto {
12144
    margin-top: auto !important;
12145
    margin-bottom: auto !important;
12146
  }
16848 stevensc 12147
 
16825 efrain 12148
  .mt-lg-0 {
12149
    margin-top: 0 !important;
12150
  }
16848 stevensc 12151
 
16825 efrain 12152
  .mt-lg-1 {
12153
    margin-top: 0.25rem !important;
12154
  }
16848 stevensc 12155
 
16825 efrain 12156
  .mt-lg-2 {
12157
    margin-top: 0.5rem !important;
12158
  }
16848 stevensc 12159
 
16825 efrain 12160
  .mt-lg-3 {
12161
    margin-top: 1rem !important;
12162
  }
16848 stevensc 12163
 
16825 efrain 12164
  .mt-lg-4 {
12165
    margin-top: 1.5rem !important;
12166
  }
16848 stevensc 12167
 
16825 efrain 12168
  .mt-lg-5 {
12169
    margin-top: 3rem !important;
12170
  }
16848 stevensc 12171
 
16825 efrain 12172
  .mt-lg-6 {
12173
    margin-top: 4.5rem !important;
12174
  }
16848 stevensc 12175
 
16825 efrain 12176
  .mt-lg-7 {
12177
    margin-top: 6rem !important;
12178
  }
16848 stevensc 12179
 
16825 efrain 12180
  .mt-lg-auto {
12181
    margin-top: auto !important;
12182
  }
16848 stevensc 12183
 
16825 efrain 12184
  .me-lg-0 {
12185
    margin-right: 0 !important;
12186
  }
16848 stevensc 12187
 
16825 efrain 12188
  .me-lg-1 {
12189
    margin-right: 0.25rem !important;
12190
  }
16848 stevensc 12191
 
16825 efrain 12192
  .me-lg-2 {
12193
    margin-right: 0.5rem !important;
12194
  }
16848 stevensc 12195
 
16825 efrain 12196
  .me-lg-3 {
12197
    margin-right: 1rem !important;
12198
  }
16848 stevensc 12199
 
16825 efrain 12200
  .me-lg-4 {
12201
    margin-right: 1.5rem !important;
12202
  }
16848 stevensc 12203
 
16825 efrain 12204
  .me-lg-5 {
12205
    margin-right: 3rem !important;
12206
  }
16848 stevensc 12207
 
16825 efrain 12208
  .me-lg-6 {
12209
    margin-right: 4.5rem !important;
12210
  }
16848 stevensc 12211
 
16825 efrain 12212
  .me-lg-7 {
12213
    margin-right: 6rem !important;
12214
  }
16848 stevensc 12215
 
16825 efrain 12216
  .me-lg-auto {
12217
    margin-right: auto !important;
12218
  }
16848 stevensc 12219
 
16825 efrain 12220
  .mb-lg-0 {
12221
    margin-bottom: 0 !important;
12222
  }
16848 stevensc 12223
 
16825 efrain 12224
  .mb-lg-1 {
12225
    margin-bottom: 0.25rem !important;
12226
  }
16848 stevensc 12227
 
16825 efrain 12228
  .mb-lg-2 {
12229
    margin-bottom: 0.5rem !important;
12230
  }
16848 stevensc 12231
 
16825 efrain 12232
  .mb-lg-3 {
12233
    margin-bottom: 1rem !important;
12234
  }
16848 stevensc 12235
 
16825 efrain 12236
  .mb-lg-4 {
12237
    margin-bottom: 1.5rem !important;
12238
  }
16848 stevensc 12239
 
16825 efrain 12240
  .mb-lg-5 {
12241
    margin-bottom: 3rem !important;
12242
  }
16848 stevensc 12243
 
16825 efrain 12244
  .mb-lg-6 {
12245
    margin-bottom: 4.5rem !important;
12246
  }
16848 stevensc 12247
 
16825 efrain 12248
  .mb-lg-7 {
12249
    margin-bottom: 6rem !important;
12250
  }
16848 stevensc 12251
 
16825 efrain 12252
  .mb-lg-auto {
12253
    margin-bottom: auto !important;
12254
  }
16848 stevensc 12255
 
16825 efrain 12256
  .ms-lg-0 {
12257
    margin-left: 0 !important;
12258
  }
16848 stevensc 12259
 
16825 efrain 12260
  .ms-lg-1 {
12261
    margin-left: 0.25rem !important;
12262
  }
16848 stevensc 12263
 
16825 efrain 12264
  .ms-lg-2 {
12265
    margin-left: 0.5rem !important;
12266
  }
16848 stevensc 12267
 
16825 efrain 12268
  .ms-lg-3 {
12269
    margin-left: 1rem !important;
12270
  }
16848 stevensc 12271
 
16825 efrain 12272
  .ms-lg-4 {
12273
    margin-left: 1.5rem !important;
12274
  }
16848 stevensc 12275
 
16825 efrain 12276
  .ms-lg-5 {
12277
    margin-left: 3rem !important;
12278
  }
16848 stevensc 12279
 
16825 efrain 12280
  .ms-lg-6 {
12281
    margin-left: 4.5rem !important;
12282
  }
16848 stevensc 12283
 
16825 efrain 12284
  .ms-lg-7 {
12285
    margin-left: 6rem !important;
12286
  }
16848 stevensc 12287
 
16825 efrain 12288
  .ms-lg-auto {
12289
    margin-left: auto !important;
12290
  }
16848 stevensc 12291
 
16825 efrain 12292
  .m-lg-n1 {
12293
    margin: -0.25rem !important;
12294
  }
16848 stevensc 12295
 
16825 efrain 12296
  .m-lg-n2 {
12297
    margin: -0.5rem !important;
12298
  }
16848 stevensc 12299
 
16825 efrain 12300
  .m-lg-n3 {
12301
    margin: -1rem !important;
12302
  }
16848 stevensc 12303
 
16825 efrain 12304
  .m-lg-n4 {
12305
    margin: -1.5rem !important;
12306
  }
16848 stevensc 12307
 
16825 efrain 12308
  .m-lg-n5 {
12309
    margin: -3rem !important;
12310
  }
16848 stevensc 12311
 
16825 efrain 12312
  .m-lg-n6 {
12313
    margin: -4.5rem !important;
12314
  }
16848 stevensc 12315
 
16825 efrain 12316
  .m-lg-n7 {
12317
    margin: -6rem !important;
12318
  }
16848 stevensc 12319
 
16825 efrain 12320
  .mx-lg-n1 {
12321
    margin-right: -0.25rem !important;
12322
    margin-left: -0.25rem !important;
12323
  }
16848 stevensc 12324
 
16825 efrain 12325
  .mx-lg-n2 {
12326
    margin-right: -0.5rem !important;
12327
    margin-left: -0.5rem !important;
12328
  }
16848 stevensc 12329
 
16825 efrain 12330
  .mx-lg-n3 {
12331
    margin-right: -1rem !important;
12332
    margin-left: -1rem !important;
12333
  }
16848 stevensc 12334
 
16825 efrain 12335
  .mx-lg-n4 {
12336
    margin-right: -1.5rem !important;
12337
    margin-left: -1.5rem !important;
12338
  }
16848 stevensc 12339
 
16825 efrain 12340
  .mx-lg-n5 {
12341
    margin-right: -3rem !important;
12342
    margin-left: -3rem !important;
12343
  }
16848 stevensc 12344
 
16825 efrain 12345
  .mx-lg-n6 {
12346
    margin-right: -4.5rem !important;
12347
    margin-left: -4.5rem !important;
12348
  }
16848 stevensc 12349
 
16825 efrain 12350
  .mx-lg-n7 {
12351
    margin-right: -6rem !important;
12352
    margin-left: -6rem !important;
12353
  }
16848 stevensc 12354
 
16825 efrain 12355
  .my-lg-n1 {
12356
    margin-top: -0.25rem !important;
12357
    margin-bottom: -0.25rem !important;
12358
  }
16848 stevensc 12359
 
16825 efrain 12360
  .my-lg-n2 {
12361
    margin-top: -0.5rem !important;
12362
    margin-bottom: -0.5rem !important;
12363
  }
16848 stevensc 12364
 
16825 efrain 12365
  .my-lg-n3 {
12366
    margin-top: -1rem !important;
12367
    margin-bottom: -1rem !important;
12368
  }
16848 stevensc 12369
 
16825 efrain 12370
  .my-lg-n4 {
12371
    margin-top: -1.5rem !important;
12372
    margin-bottom: -1.5rem !important;
12373
  }
16848 stevensc 12374
 
16825 efrain 12375
  .my-lg-n5 {
12376
    margin-top: -3rem !important;
12377
    margin-bottom: -3rem !important;
12378
  }
16848 stevensc 12379
 
16825 efrain 12380
  .my-lg-n6 {
12381
    margin-top: -4.5rem !important;
12382
    margin-bottom: -4.5rem !important;
12383
  }
16848 stevensc 12384
 
16825 efrain 12385
  .my-lg-n7 {
12386
    margin-top: -6rem !important;
12387
    margin-bottom: -6rem !important;
12388
  }
16848 stevensc 12389
 
16825 efrain 12390
  .mt-lg-n1 {
12391
    margin-top: -0.25rem !important;
12392
  }
16848 stevensc 12393
 
16825 efrain 12394
  .mt-lg-n2 {
12395
    margin-top: -0.5rem !important;
12396
  }
16848 stevensc 12397
 
16825 efrain 12398
  .mt-lg-n3 {
12399
    margin-top: -1rem !important;
12400
  }
16848 stevensc 12401
 
16825 efrain 12402
  .mt-lg-n4 {
12403
    margin-top: -1.5rem !important;
12404
  }
16848 stevensc 12405
 
16825 efrain 12406
  .mt-lg-n5 {
12407
    margin-top: -3rem !important;
12408
  }
16848 stevensc 12409
 
16825 efrain 12410
  .mt-lg-n6 {
12411
    margin-top: -4.5rem !important;
12412
  }
16848 stevensc 12413
 
16825 efrain 12414
  .mt-lg-n7 {
12415
    margin-top: -6rem !important;
12416
  }
16848 stevensc 12417
 
16825 efrain 12418
  .me-lg-n1 {
12419
    margin-right: -0.25rem !important;
12420
  }
16848 stevensc 12421
 
16825 efrain 12422
  .me-lg-n2 {
12423
    margin-right: -0.5rem !important;
12424
  }
16848 stevensc 12425
 
16825 efrain 12426
  .me-lg-n3 {
12427
    margin-right: -1rem !important;
12428
  }
16848 stevensc 12429
 
16825 efrain 12430
  .me-lg-n4 {
12431
    margin-right: -1.5rem !important;
12432
  }
16848 stevensc 12433
 
16825 efrain 12434
  .me-lg-n5 {
12435
    margin-right: -3rem !important;
12436
  }
16848 stevensc 12437
 
16825 efrain 12438
  .me-lg-n6 {
12439
    margin-right: -4.5rem !important;
12440
  }
16848 stevensc 12441
 
16825 efrain 12442
  .me-lg-n7 {
12443
    margin-right: -6rem !important;
12444
  }
16848 stevensc 12445
 
16825 efrain 12446
  .mb-lg-n1 {
12447
    margin-bottom: -0.25rem !important;
12448
  }
16848 stevensc 12449
 
16825 efrain 12450
  .mb-lg-n2 {
12451
    margin-bottom: -0.5rem !important;
12452
  }
16848 stevensc 12453
 
16825 efrain 12454
  .mb-lg-n3 {
12455
    margin-bottom: -1rem !important;
12456
  }
16848 stevensc 12457
 
16825 efrain 12458
  .mb-lg-n4 {
12459
    margin-bottom: -1.5rem !important;
12460
  }
16848 stevensc 12461
 
16825 efrain 12462
  .mb-lg-n5 {
12463
    margin-bottom: -3rem !important;
12464
  }
16848 stevensc 12465
 
16825 efrain 12466
  .mb-lg-n6 {
12467
    margin-bottom: -4.5rem !important;
12468
  }
16848 stevensc 12469
 
16825 efrain 12470
  .mb-lg-n7 {
12471
    margin-bottom: -6rem !important;
12472
  }
16848 stevensc 12473
 
16825 efrain 12474
  .ms-lg-n1 {
12475
    margin-left: -0.25rem !important;
12476
  }
16848 stevensc 12477
 
16825 efrain 12478
  .ms-lg-n2 {
12479
    margin-left: -0.5rem !important;
12480
  }
16848 stevensc 12481
 
16825 efrain 12482
  .ms-lg-n3 {
12483
    margin-left: -1rem !important;
12484
  }
16848 stevensc 12485
 
16825 efrain 12486
  .ms-lg-n4 {
12487
    margin-left: -1.5rem !important;
12488
  }
16848 stevensc 12489
 
16825 efrain 12490
  .ms-lg-n5 {
12491
    margin-left: -3rem !important;
12492
  }
16848 stevensc 12493
 
16825 efrain 12494
  .ms-lg-n6 {
12495
    margin-left: -4.5rem !important;
12496
  }
16848 stevensc 12497
 
16825 efrain 12498
  .ms-lg-n7 {
12499
    margin-left: -6rem !important;
12500
  }
16848 stevensc 12501
 
16825 efrain 12502
  .p-lg-0 {
12503
    padding: 0 !important;
12504
  }
16848 stevensc 12505
 
16825 efrain 12506
  .p-lg-1 {
12507
    padding: 0.25rem !important;
12508
  }
16848 stevensc 12509
 
16825 efrain 12510
  .p-lg-2 {
12511
    padding: 0.5rem !important;
12512
  }
16848 stevensc 12513
 
16825 efrain 12514
  .p-lg-3 {
12515
    padding: 1rem !important;
12516
  }
16848 stevensc 12517
 
16825 efrain 12518
  .p-lg-4 {
12519
    padding: 1.5rem !important;
12520
  }
16848 stevensc 12521
 
16825 efrain 12522
  .p-lg-5 {
12523
    padding: 3rem !important;
12524
  }
16848 stevensc 12525
 
16825 efrain 12526
  .p-lg-6 {
12527
    padding: 4.5rem !important;
12528
  }
16848 stevensc 12529
 
16825 efrain 12530
  .p-lg-7 {
12531
    padding: 6rem !important;
12532
  }
16848 stevensc 12533
 
16825 efrain 12534
  .px-lg-0 {
12535
    padding-right: 0 !important;
12536
    padding-left: 0 !important;
12537
  }
16848 stevensc 12538
 
16825 efrain 12539
  .px-lg-1 {
12540
    padding-right: 0.25rem !important;
12541
    padding-left: 0.25rem !important;
12542
  }
16848 stevensc 12543
 
16825 efrain 12544
  .px-lg-2 {
12545
    padding-right: 0.5rem !important;
12546
    padding-left: 0.5rem !important;
12547
  }
16848 stevensc 12548
 
16825 efrain 12549
  .px-lg-3 {
12550
    padding-right: 1rem !important;
12551
    padding-left: 1rem !important;
12552
  }
16848 stevensc 12553
 
16825 efrain 12554
  .px-lg-4 {
12555
    padding-right: 1.5rem !important;
12556
    padding-left: 1.5rem !important;
12557
  }
16848 stevensc 12558
 
16825 efrain 12559
  .px-lg-5 {
12560
    padding-right: 3rem !important;
12561
    padding-left: 3rem !important;
12562
  }
16848 stevensc 12563
 
16825 efrain 12564
  .px-lg-6 {
12565
    padding-right: 4.5rem !important;
12566
    padding-left: 4.5rem !important;
12567
  }
16848 stevensc 12568
 
16825 efrain 12569
  .px-lg-7 {
12570
    padding-right: 6rem !important;
12571
    padding-left: 6rem !important;
12572
  }
16848 stevensc 12573
 
16825 efrain 12574
  .py-lg-0 {
12575
    padding-top: 0 !important;
12576
    padding-bottom: 0 !important;
12577
  }
16848 stevensc 12578
 
16825 efrain 12579
  .py-lg-1 {
12580
    padding-top: 0.25rem !important;
12581
    padding-bottom: 0.25rem !important;
12582
  }
16848 stevensc 12583
 
16825 efrain 12584
  .py-lg-2 {
12585
    padding-top: 0.5rem !important;
12586
    padding-bottom: 0.5rem !important;
12587
  }
16848 stevensc 12588
 
16825 efrain 12589
  .py-lg-3 {
12590
    padding-top: 1rem !important;
12591
    padding-bottom: 1rem !important;
12592
  }
16848 stevensc 12593
 
16825 efrain 12594
  .py-lg-4 {
12595
    padding-top: 1.5rem !important;
12596
    padding-bottom: 1.5rem !important;
12597
  }
16848 stevensc 12598
 
16825 efrain 12599
  .py-lg-5 {
12600
    padding-top: 3rem !important;
12601
    padding-bottom: 3rem !important;
12602
  }
16848 stevensc 12603
 
16825 efrain 12604
  .py-lg-6 {
12605
    padding-top: 4.5rem !important;
12606
    padding-bottom: 4.5rem !important;
12607
  }
16848 stevensc 12608
 
16825 efrain 12609
  .py-lg-7 {
12610
    padding-top: 6rem !important;
12611
    padding-bottom: 6rem !important;
12612
  }
16848 stevensc 12613
 
16825 efrain 12614
  .pt-lg-0 {
12615
    padding-top: 0 !important;
12616
  }
16848 stevensc 12617
 
16825 efrain 12618
  .pt-lg-1 {
12619
    padding-top: 0.25rem !important;
12620
  }
16848 stevensc 12621
 
16825 efrain 12622
  .pt-lg-2 {
12623
    padding-top: 0.5rem !important;
12624
  }
16848 stevensc 12625
 
16825 efrain 12626
  .pt-lg-3 {
12627
    padding-top: 1rem !important;
12628
  }
16848 stevensc 12629
 
16825 efrain 12630
  .pt-lg-4 {
12631
    padding-top: 1.5rem !important;
12632
  }
16848 stevensc 12633
 
16825 efrain 12634
  .pt-lg-5 {
12635
    padding-top: 3rem !important;
12636
  }
16848 stevensc 12637
 
16825 efrain 12638
  .pt-lg-6 {
12639
    padding-top: 4.5rem !important;
12640
  }
16848 stevensc 12641
 
16825 efrain 12642
  .pt-lg-7 {
12643
    padding-top: 6rem !important;
12644
  }
16848 stevensc 12645
 
16825 efrain 12646
  .pe-lg-0 {
12647
    padding-right: 0 !important;
12648
  }
16848 stevensc 12649
 
16825 efrain 12650
  .pe-lg-1 {
12651
    padding-right: 0.25rem !important;
12652
  }
16848 stevensc 12653
 
16825 efrain 12654
  .pe-lg-2 {
12655
    padding-right: 0.5rem !important;
12656
  }
16848 stevensc 12657
 
16825 efrain 12658
  .pe-lg-3 {
12659
    padding-right: 1rem !important;
12660
  }
16848 stevensc 12661
 
16825 efrain 12662
  .pe-lg-4 {
12663
    padding-right: 1.5rem !important;
12664
  }
16848 stevensc 12665
 
16825 efrain 12666
  .pe-lg-5 {
12667
    padding-right: 3rem !important;
12668
  }
16848 stevensc 12669
 
16825 efrain 12670
  .pe-lg-6 {
12671
    padding-right: 4.5rem !important;
12672
  }
16848 stevensc 12673
 
16825 efrain 12674
  .pe-lg-7 {
12675
    padding-right: 6rem !important;
12676
  }
16848 stevensc 12677
 
16825 efrain 12678
  .pb-lg-0 {
12679
    padding-bottom: 0 !important;
12680
  }
16848 stevensc 12681
 
16825 efrain 12682
  .pb-lg-1 {
12683
    padding-bottom: 0.25rem !important;
12684
  }
16848 stevensc 12685
 
16825 efrain 12686
  .pb-lg-2 {
12687
    padding-bottom: 0.5rem !important;
12688
  }
16848 stevensc 12689
 
16825 efrain 12690
  .pb-lg-3 {
12691
    padding-bottom: 1rem !important;
12692
  }
16848 stevensc 12693
 
16825 efrain 12694
  .pb-lg-4 {
12695
    padding-bottom: 1.5rem !important;
12696
  }
16848 stevensc 12697
 
16825 efrain 12698
  .pb-lg-5 {
12699
    padding-bottom: 3rem !important;
12700
  }
16848 stevensc 12701
 
16825 efrain 12702
  .pb-lg-6 {
12703
    padding-bottom: 4.5rem !important;
12704
  }
16848 stevensc 12705
 
16825 efrain 12706
  .pb-lg-7 {
12707
    padding-bottom: 6rem !important;
12708
  }
16848 stevensc 12709
 
16825 efrain 12710
  .ps-lg-0 {
12711
    padding-left: 0 !important;
12712
  }
16848 stevensc 12713
 
16825 efrain 12714
  .ps-lg-1 {
12715
    padding-left: 0.25rem !important;
12716
  }
16848 stevensc 12717
 
16825 efrain 12718
  .ps-lg-2 {
12719
    padding-left: 0.5rem !important;
12720
  }
16848 stevensc 12721
 
16825 efrain 12722
  .ps-lg-3 {
12723
    padding-left: 1rem !important;
12724
  }
16848 stevensc 12725
 
16825 efrain 12726
  .ps-lg-4 {
12727
    padding-left: 1.5rem !important;
12728
  }
16848 stevensc 12729
 
16825 efrain 12730
  .ps-lg-5 {
12731
    padding-left: 3rem !important;
12732
  }
16848 stevensc 12733
 
16825 efrain 12734
  .ps-lg-6 {
12735
    padding-left: 4.5rem !important;
12736
  }
16848 stevensc 12737
 
16825 efrain 12738
  .ps-lg-7 {
12739
    padding-left: 6rem !important;
12740
  }
16848 stevensc 12741
 
16825 efrain 12742
  .gap-lg-0 {
12743
    gap: 0 !important;
12744
  }
16848 stevensc 12745
 
16825 efrain 12746
  .gap-lg-1 {
12747
    gap: 0.25rem !important;
12748
  }
16848 stevensc 12749
 
16825 efrain 12750
  .gap-lg-2 {
12751
    gap: 0.5rem !important;
12752
  }
16848 stevensc 12753
 
16825 efrain 12754
  .gap-lg-3 {
12755
    gap: 1rem !important;
12756
  }
16848 stevensc 12757
 
16825 efrain 12758
  .gap-lg-4 {
12759
    gap: 1.5rem !important;
12760
  }
16848 stevensc 12761
 
16825 efrain 12762
  .gap-lg-5 {
12763
    gap: 3rem !important;
12764
  }
16848 stevensc 12765
 
16825 efrain 12766
  .gap-lg-6 {
12767
    gap: 4.5rem !important;
12768
  }
16848 stevensc 12769
 
16825 efrain 12770
  .gap-lg-7 {
12771
    gap: 6rem !important;
12772
  }
16848 stevensc 12773
 
16825 efrain 12774
  .text-lg-start {
12775
    text-align: left !important;
12776
  }
16848 stevensc 12777
 
16825 efrain 12778
  .text-lg-end {
12779
    text-align: right !important;
12780
  }
16848 stevensc 12781
 
16825 efrain 12782
  .text-lg-center {
12783
    text-align: center !important;
12784
  }
12785
}
16848 stevensc 12786
 
16825 efrain 12787
@media (min-width: 1200px) {
12788
  .float-xl-start {
12789
    float: left !important;
12790
  }
16848 stevensc 12791
 
16825 efrain 12792
  .float-xl-end {
12793
    float: right !important;
12794
  }
16848 stevensc 12795
 
16825 efrain 12796
  .float-xl-none {
12797
    float: none !important;
12798
  }
16848 stevensc 12799
 
16825 efrain 12800
  .d-xl-inline {
12801
    display: inline !important;
12802
  }
16848 stevensc 12803
 
16825 efrain 12804
  .d-xl-inline-block {
12805
    display: inline-block !important;
12806
  }
16848 stevensc 12807
 
16825 efrain 12808
  .d-xl-block {
12809
    display: block !important;
12810
  }
16848 stevensc 12811
 
16825 efrain 12812
  .d-xl-grid {
12813
    display: grid !important;
12814
  }
16848 stevensc 12815
 
16825 efrain 12816
  .d-xl-table {
12817
    display: table !important;
12818
  }
16848 stevensc 12819
 
16825 efrain 12820
  .d-xl-table-row {
12821
    display: table-row !important;
12822
  }
16848 stevensc 12823
 
16825 efrain 12824
  .d-xl-table-cell {
12825
    display: table-cell !important;
12826
  }
16848 stevensc 12827
 
16825 efrain 12828
  .d-xl-flex {
12829
    display: flex !important;
12830
  }
16848 stevensc 12831
 
16825 efrain 12832
  .d-xl-inline-flex {
12833
    display: inline-flex !important;
12834
  }
16848 stevensc 12835
 
16825 efrain 12836
  .d-xl-none {
12837
    display: none !important;
12838
  }
16848 stevensc 12839
 
16825 efrain 12840
  .border-xl {
12841
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12842
  }
16848 stevensc 12843
 
16825 efrain 12844
  .border-xl-0 {
12845
    border: 0 !important;
12846
  }
16848 stevensc 12847
 
16825 efrain 12848
  .border-top-xl {
12849
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12850
  }
16848 stevensc 12851
 
16825 efrain 12852
  .border-top-xl-0 {
12853
    border-top: 0 !important;
12854
  }
16848 stevensc 12855
 
16825 efrain 12856
  .border-end-xl {
12857
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12858
  }
16848 stevensc 12859
 
16825 efrain 12860
  .border-end-xl-0 {
12861
    border-right: 0 !important;
12862
  }
16848 stevensc 12863
 
16825 efrain 12864
  .border-bottom-xl {
12865
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12866
  }
16848 stevensc 12867
 
16825 efrain 12868
  .border-bottom-xl-0 {
12869
    border-bottom: 0 !important;
12870
  }
16848 stevensc 12871
 
16825 efrain 12872
  .border-start-xl {
12873
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12874
  }
16848 stevensc 12875
 
16825 efrain 12876
  .border-start-xl-0 {
12877
    border-left: 0 !important;
12878
  }
16848 stevensc 12879
 
16825 efrain 12880
  .flex-xl-fill {
12881
    flex: 1 1 auto !important;
12882
  }
16848 stevensc 12883
 
16825 efrain 12884
  .flex-xl-row {
12885
    flex-direction: row !important;
12886
  }
16848 stevensc 12887
 
16825 efrain 12888
  .flex-xl-column {
12889
    flex-direction: column !important;
12890
  }
16848 stevensc 12891
 
16825 efrain 12892
  .flex-xl-row-reverse {
12893
    flex-direction: row-reverse !important;
12894
  }
16848 stevensc 12895
 
16825 efrain 12896
  .flex-xl-column-reverse {
12897
    flex-direction: column-reverse !important;
12898
  }
16848 stevensc 12899
 
16825 efrain 12900
  .flex-xl-grow-0 {
12901
    flex-grow: 0 !important;
12902
  }
16848 stevensc 12903
 
16825 efrain 12904
  .flex-xl-grow-1 {
12905
    flex-grow: 1 !important;
12906
  }
16848 stevensc 12907
 
16825 efrain 12908
  .flex-xl-shrink-0 {
12909
    flex-shrink: 0 !important;
12910
  }
16848 stevensc 12911
 
16825 efrain 12912
  .flex-xl-shrink-1 {
12913
    flex-shrink: 1 !important;
12914
  }
16848 stevensc 12915
 
16825 efrain 12916
  .flex-xl-wrap {
12917
    flex-wrap: wrap !important;
12918
  }
16848 stevensc 12919
 
16825 efrain 12920
  .flex-xl-nowrap {
12921
    flex-wrap: nowrap !important;
12922
  }
16848 stevensc 12923
 
16825 efrain 12924
  .flex-xl-wrap-reverse {
12925
    flex-wrap: wrap-reverse !important;
12926
  }
16848 stevensc 12927
 
16825 efrain 12928
  .justify-content-xl-start {
12929
    justify-content: flex-start !important;
12930
  }
16848 stevensc 12931
 
16825 efrain 12932
  .justify-content-xl-end {
12933
    justify-content: flex-end !important;
12934
  }
16848 stevensc 12935
 
16825 efrain 12936
  .justify-content-xl-center {
12937
    justify-content: center !important;
12938
  }
16848 stevensc 12939
 
16825 efrain 12940
  .justify-content-xl-between {
12941
    justify-content: space-between !important;
12942
  }
16848 stevensc 12943
 
16825 efrain 12944
  .justify-content-xl-around {
12945
    justify-content: space-around !important;
12946
  }
16848 stevensc 12947
 
16825 efrain 12948
  .justify-content-xl-evenly {
12949
    justify-content: space-evenly !important;
12950
  }
16848 stevensc 12951
 
16825 efrain 12952
  .align-items-xl-start {
12953
    align-items: flex-start !important;
12954
  }
16848 stevensc 12955
 
16825 efrain 12956
  .align-items-xl-end {
12957
    align-items: flex-end !important;
12958
  }
16848 stevensc 12959
 
16825 efrain 12960
  .align-items-xl-center {
12961
    align-items: center !important;
12962
  }
16848 stevensc 12963
 
16825 efrain 12964
  .align-items-xl-baseline {
12965
    align-items: baseline !important;
12966
  }
16848 stevensc 12967
 
16825 efrain 12968
  .align-items-xl-stretch {
12969
    align-items: stretch !important;
12970
  }
16848 stevensc 12971
 
16825 efrain 12972
  .align-content-xl-start {
12973
    align-content: flex-start !important;
12974
  }
16848 stevensc 12975
 
16825 efrain 12976
  .align-content-xl-end {
12977
    align-content: flex-end !important;
12978
  }
16848 stevensc 12979
 
16825 efrain 12980
  .align-content-xl-center {
12981
    align-content: center !important;
12982
  }
16848 stevensc 12983
 
16825 efrain 12984
  .align-content-xl-between {
12985
    align-content: space-between !important;
12986
  }
16848 stevensc 12987
 
16825 efrain 12988
  .align-content-xl-around {
12989
    align-content: space-around !important;
12990
  }
16848 stevensc 12991
 
16825 efrain 12992
  .align-content-xl-stretch {
12993
    align-content: stretch !important;
12994
  }
16848 stevensc 12995
 
16825 efrain 12996
  .align-self-xl-auto {
12997
    align-self: auto !important;
12998
  }
16848 stevensc 12999
 
16825 efrain 13000
  .align-self-xl-start {
13001
    align-self: flex-start !important;
13002
  }
16848 stevensc 13003
 
16825 efrain 13004
  .align-self-xl-end {
13005
    align-self: flex-end !important;
13006
  }
16848 stevensc 13007
 
16825 efrain 13008
  .align-self-xl-center {
13009
    align-self: center !important;
13010
  }
16848 stevensc 13011
 
16825 efrain 13012
  .align-self-xl-baseline {
13013
    align-self: baseline !important;
13014
  }
16848 stevensc 13015
 
16825 efrain 13016
  .align-self-xl-stretch {
13017
    align-self: stretch !important;
13018
  }
16848 stevensc 13019
 
16825 efrain 13020
  .order-xl-first {
13021
    order: -1 !important;
13022
  }
16848 stevensc 13023
 
16825 efrain 13024
  .order-xl-0 {
13025
    order: 0 !important;
13026
  }
16848 stevensc 13027
 
16825 efrain 13028
  .order-xl-1 {
13029
    order: 1 !important;
13030
  }
16848 stevensc 13031
 
16825 efrain 13032
  .order-xl-2 {
13033
    order: 2 !important;
13034
  }
16848 stevensc 13035
 
16825 efrain 13036
  .order-xl-3 {
13037
    order: 3 !important;
13038
  }
16848 stevensc 13039
 
16825 efrain 13040
  .order-xl-4 {
13041
    order: 4 !important;
13042
  }
16848 stevensc 13043
 
16825 efrain 13044
  .order-xl-5 {
13045
    order: 5 !important;
13046
  }
16848 stevensc 13047
 
16825 efrain 13048
  .order-xl-last {
13049
    order: 6 !important;
13050
  }
16848 stevensc 13051
 
16825 efrain 13052
  .m-xl-0 {
13053
    margin: 0 !important;
13054
  }
16848 stevensc 13055
 
16825 efrain 13056
  .m-xl-1 {
13057
    margin: 0.25rem !important;
13058
  }
16848 stevensc 13059
 
16825 efrain 13060
  .m-xl-2 {
13061
    margin: 0.5rem !important;
13062
  }
16848 stevensc 13063
 
16825 efrain 13064
  .m-xl-3 {
13065
    margin: 1rem !important;
13066
  }
16848 stevensc 13067
 
16825 efrain 13068
  .m-xl-4 {
13069
    margin: 1.5rem !important;
13070
  }
16848 stevensc 13071
 
16825 efrain 13072
  .m-xl-5 {
13073
    margin: 3rem !important;
13074
  }
16848 stevensc 13075
 
16825 efrain 13076
  .m-xl-6 {
13077
    margin: 4.5rem !important;
13078
  }
16848 stevensc 13079
 
16825 efrain 13080
  .m-xl-7 {
13081
    margin: 6rem !important;
13082
  }
16848 stevensc 13083
 
16825 efrain 13084
  .m-xl-auto {
13085
    margin: auto !important;
13086
  }
16848 stevensc 13087
 
16825 efrain 13088
  .mx-xl-0 {
13089
    margin-right: 0 !important;
13090
    margin-left: 0 !important;
13091
  }
16848 stevensc 13092
 
16825 efrain 13093
  .mx-xl-1 {
13094
    margin-right: 0.25rem !important;
13095
    margin-left: 0.25rem !important;
13096
  }
16848 stevensc 13097
 
16825 efrain 13098
  .mx-xl-2 {
13099
    margin-right: 0.5rem !important;
13100
    margin-left: 0.5rem !important;
13101
  }
16848 stevensc 13102
 
16825 efrain 13103
  .mx-xl-3 {
13104
    margin-right: 1rem !important;
13105
    margin-left: 1rem !important;
13106
  }
16848 stevensc 13107
 
16825 efrain 13108
  .mx-xl-4 {
13109
    margin-right: 1.5rem !important;
13110
    margin-left: 1.5rem !important;
13111
  }
16848 stevensc 13112
 
16825 efrain 13113
  .mx-xl-5 {
13114
    margin-right: 3rem !important;
13115
    margin-left: 3rem !important;
13116
  }
16848 stevensc 13117
 
16825 efrain 13118
  .mx-xl-6 {
13119
    margin-right: 4.5rem !important;
13120
    margin-left: 4.5rem !important;
13121
  }
16848 stevensc 13122
 
16825 efrain 13123
  .mx-xl-7 {
13124
    margin-right: 6rem !important;
13125
    margin-left: 6rem !important;
13126
  }
16848 stevensc 13127
 
16825 efrain 13128
  .mx-xl-auto {
13129
    margin-right: auto !important;
13130
    margin-left: auto !important;
13131
  }
16848 stevensc 13132
 
16825 efrain 13133
  .my-xl-0 {
13134
    margin-top: 0 !important;
13135
    margin-bottom: 0 !important;
13136
  }
16848 stevensc 13137
 
16825 efrain 13138
  .my-xl-1 {
13139
    margin-top: 0.25rem !important;
13140
    margin-bottom: 0.25rem !important;
13141
  }
16848 stevensc 13142
 
16825 efrain 13143
  .my-xl-2 {
13144
    margin-top: 0.5rem !important;
13145
    margin-bottom: 0.5rem !important;
13146
  }
16848 stevensc 13147
 
16825 efrain 13148
  .my-xl-3 {
13149
    margin-top: 1rem !important;
13150
    margin-bottom: 1rem !important;
13151
  }
16848 stevensc 13152
 
16825 efrain 13153
  .my-xl-4 {
13154
    margin-top: 1.5rem !important;
13155
    margin-bottom: 1.5rem !important;
13156
  }
16848 stevensc 13157
 
16825 efrain 13158
  .my-xl-5 {
13159
    margin-top: 3rem !important;
13160
    margin-bottom: 3rem !important;
13161
  }
16848 stevensc 13162
 
16825 efrain 13163
  .my-xl-6 {
13164
    margin-top: 4.5rem !important;
13165
    margin-bottom: 4.5rem !important;
13166
  }
16848 stevensc 13167
 
16825 efrain 13168
  .my-xl-7 {
13169
    margin-top: 6rem !important;
13170
    margin-bottom: 6rem !important;
13171
  }
16848 stevensc 13172
 
16825 efrain 13173
  .my-xl-auto {
13174
    margin-top: auto !important;
13175
    margin-bottom: auto !important;
13176
  }
16848 stevensc 13177
 
16825 efrain 13178
  .mt-xl-0 {
13179
    margin-top: 0 !important;
13180
  }
16848 stevensc 13181
 
16825 efrain 13182
  .mt-xl-1 {
13183
    margin-top: 0.25rem !important;
13184
  }
16848 stevensc 13185
 
16825 efrain 13186
  .mt-xl-2 {
13187
    margin-top: 0.5rem !important;
13188
  }
16848 stevensc 13189
 
16825 efrain 13190
  .mt-xl-3 {
13191
    margin-top: 1rem !important;
13192
  }
16848 stevensc 13193
 
16825 efrain 13194
  .mt-xl-4 {
13195
    margin-top: 1.5rem !important;
13196
  }
16848 stevensc 13197
 
16825 efrain 13198
  .mt-xl-5 {
13199
    margin-top: 3rem !important;
13200
  }
16848 stevensc 13201
 
16825 efrain 13202
  .mt-xl-6 {
13203
    margin-top: 4.5rem !important;
13204
  }
16848 stevensc 13205
 
16825 efrain 13206
  .mt-xl-7 {
13207
    margin-top: 6rem !important;
13208
  }
16848 stevensc 13209
 
16825 efrain 13210
  .mt-xl-auto {
13211
    margin-top: auto !important;
13212
  }
16848 stevensc 13213
 
16825 efrain 13214
  .me-xl-0 {
13215
    margin-right: 0 !important;
13216
  }
16848 stevensc 13217
 
16825 efrain 13218
  .me-xl-1 {
13219
    margin-right: 0.25rem !important;
13220
  }
16848 stevensc 13221
 
16825 efrain 13222
  .me-xl-2 {
13223
    margin-right: 0.5rem !important;
13224
  }
16848 stevensc 13225
 
16825 efrain 13226
  .me-xl-3 {
13227
    margin-right: 1rem !important;
13228
  }
16848 stevensc 13229
 
16825 efrain 13230
  .me-xl-4 {
13231
    margin-right: 1.5rem !important;
13232
  }
16848 stevensc 13233
 
16825 efrain 13234
  .me-xl-5 {
13235
    margin-right: 3rem !important;
13236
  }
16848 stevensc 13237
 
16825 efrain 13238
  .me-xl-6 {
13239
    margin-right: 4.5rem !important;
13240
  }
16848 stevensc 13241
 
16825 efrain 13242
  .me-xl-7 {
13243
    margin-right: 6rem !important;
13244
  }
16848 stevensc 13245
 
16825 efrain 13246
  .me-xl-auto {
13247
    margin-right: auto !important;
13248
  }
16848 stevensc 13249
 
16825 efrain 13250
  .mb-xl-0 {
13251
    margin-bottom: 0 !important;
13252
  }
16848 stevensc 13253
 
16825 efrain 13254
  .mb-xl-1 {
13255
    margin-bottom: 0.25rem !important;
13256
  }
16848 stevensc 13257
 
16825 efrain 13258
  .mb-xl-2 {
13259
    margin-bottom: 0.5rem !important;
13260
  }
16848 stevensc 13261
 
16825 efrain 13262
  .mb-xl-3 {
13263
    margin-bottom: 1rem !important;
13264
  }
16848 stevensc 13265
 
16825 efrain 13266
  .mb-xl-4 {
13267
    margin-bottom: 1.5rem !important;
13268
  }
16848 stevensc 13269
 
16825 efrain 13270
  .mb-xl-5 {
13271
    margin-bottom: 3rem !important;
13272
  }
16848 stevensc 13273
 
16825 efrain 13274
  .mb-xl-6 {
13275
    margin-bottom: 4.5rem !important;
13276
  }
16848 stevensc 13277
 
16825 efrain 13278
  .mb-xl-7 {
13279
    margin-bottom: 6rem !important;
13280
  }
16848 stevensc 13281
 
16825 efrain 13282
  .mb-xl-auto {
13283
    margin-bottom: auto !important;
13284
  }
16848 stevensc 13285
 
16825 efrain 13286
  .ms-xl-0 {
13287
    margin-left: 0 !important;
13288
  }
16848 stevensc 13289
 
16825 efrain 13290
  .ms-xl-1 {
13291
    margin-left: 0.25rem !important;
13292
  }
16848 stevensc 13293
 
16825 efrain 13294
  .ms-xl-2 {
13295
    margin-left: 0.5rem !important;
13296
  }
16848 stevensc 13297
 
16825 efrain 13298
  .ms-xl-3 {
13299
    margin-left: 1rem !important;
13300
  }
16848 stevensc 13301
 
16825 efrain 13302
  .ms-xl-4 {
13303
    margin-left: 1.5rem !important;
13304
  }
16848 stevensc 13305
 
16825 efrain 13306
  .ms-xl-5 {
13307
    margin-left: 3rem !important;
13308
  }
16848 stevensc 13309
 
16825 efrain 13310
  .ms-xl-6 {
13311
    margin-left: 4.5rem !important;
13312
  }
16848 stevensc 13313
 
16825 efrain 13314
  .ms-xl-7 {
13315
    margin-left: 6rem !important;
13316
  }
16848 stevensc 13317
 
16825 efrain 13318
  .ms-xl-auto {
13319
    margin-left: auto !important;
13320
  }
16848 stevensc 13321
 
16825 efrain 13322
  .m-xl-n1 {
13323
    margin: -0.25rem !important;
13324
  }
16848 stevensc 13325
 
16825 efrain 13326
  .m-xl-n2 {
13327
    margin: -0.5rem !important;
13328
  }
16848 stevensc 13329
 
16825 efrain 13330
  .m-xl-n3 {
13331
    margin: -1rem !important;
13332
  }
16848 stevensc 13333
 
16825 efrain 13334
  .m-xl-n4 {
13335
    margin: -1.5rem !important;
13336
  }
16848 stevensc 13337
 
16825 efrain 13338
  .m-xl-n5 {
13339
    margin: -3rem !important;
13340
  }
16848 stevensc 13341
 
16825 efrain 13342
  .m-xl-n6 {
13343
    margin: -4.5rem !important;
13344
  }
16848 stevensc 13345
 
16825 efrain 13346
  .m-xl-n7 {
13347
    margin: -6rem !important;
13348
  }
16848 stevensc 13349
 
16825 efrain 13350
  .mx-xl-n1 {
13351
    margin-right: -0.25rem !important;
13352
    margin-left: -0.25rem !important;
13353
  }
16848 stevensc 13354
 
16825 efrain 13355
  .mx-xl-n2 {
13356
    margin-right: -0.5rem !important;
13357
    margin-left: -0.5rem !important;
13358
  }
16848 stevensc 13359
 
16825 efrain 13360
  .mx-xl-n3 {
13361
    margin-right: -1rem !important;
13362
    margin-left: -1rem !important;
13363
  }
16848 stevensc 13364
 
16825 efrain 13365
  .mx-xl-n4 {
13366
    margin-right: -1.5rem !important;
13367
    margin-left: -1.5rem !important;
13368
  }
16848 stevensc 13369
 
16825 efrain 13370
  .mx-xl-n5 {
13371
    margin-right: -3rem !important;
13372
    margin-left: -3rem !important;
13373
  }
16848 stevensc 13374
 
16825 efrain 13375
  .mx-xl-n6 {
13376
    margin-right: -4.5rem !important;
13377
    margin-left: -4.5rem !important;
13378
  }
16848 stevensc 13379
 
16825 efrain 13380
  .mx-xl-n7 {
13381
    margin-right: -6rem !important;
13382
    margin-left: -6rem !important;
13383
  }
16848 stevensc 13384
 
16825 efrain 13385
  .my-xl-n1 {
13386
    margin-top: -0.25rem !important;
13387
    margin-bottom: -0.25rem !important;
13388
  }
16848 stevensc 13389
 
16825 efrain 13390
  .my-xl-n2 {
13391
    margin-top: -0.5rem !important;
13392
    margin-bottom: -0.5rem !important;
13393
  }
16848 stevensc 13394
 
16825 efrain 13395
  .my-xl-n3 {
13396
    margin-top: -1rem !important;
13397
    margin-bottom: -1rem !important;
13398
  }
16848 stevensc 13399
 
16825 efrain 13400
  .my-xl-n4 {
13401
    margin-top: -1.5rem !important;
13402
    margin-bottom: -1.5rem !important;
13403
  }
16848 stevensc 13404
 
16825 efrain 13405
  .my-xl-n5 {
13406
    margin-top: -3rem !important;
13407
    margin-bottom: -3rem !important;
13408
  }
16848 stevensc 13409
 
16825 efrain 13410
  .my-xl-n6 {
13411
    margin-top: -4.5rem !important;
13412
    margin-bottom: -4.5rem !important;
13413
  }
16848 stevensc 13414
 
16825 efrain 13415
  .my-xl-n7 {
13416
    margin-top: -6rem !important;
13417
    margin-bottom: -6rem !important;
13418
  }
16848 stevensc 13419
 
16825 efrain 13420
  .mt-xl-n1 {
13421
    margin-top: -0.25rem !important;
13422
  }
16848 stevensc 13423
 
16825 efrain 13424
  .mt-xl-n2 {
13425
    margin-top: -0.5rem !important;
13426
  }
16848 stevensc 13427
 
16825 efrain 13428
  .mt-xl-n3 {
13429
    margin-top: -1rem !important;
13430
  }
16848 stevensc 13431
 
16825 efrain 13432
  .mt-xl-n4 {
13433
    margin-top: -1.5rem !important;
13434
  }
16848 stevensc 13435
 
16825 efrain 13436
  .mt-xl-n5 {
13437
    margin-top: -3rem !important;
13438
  }
16848 stevensc 13439
 
16825 efrain 13440
  .mt-xl-n6 {
13441
    margin-top: -4.5rem !important;
13442
  }
16848 stevensc 13443
 
16825 efrain 13444
  .mt-xl-n7 {
13445
    margin-top: -6rem !important;
13446
  }
16848 stevensc 13447
 
16825 efrain 13448
  .me-xl-n1 {
13449
    margin-right: -0.25rem !important;
13450
  }
16848 stevensc 13451
 
16825 efrain 13452
  .me-xl-n2 {
13453
    margin-right: -0.5rem !important;
13454
  }
16848 stevensc 13455
 
16825 efrain 13456
  .me-xl-n3 {
13457
    margin-right: -1rem !important;
13458
  }
16848 stevensc 13459
 
16825 efrain 13460
  .me-xl-n4 {
13461
    margin-right: -1.5rem !important;
13462
  }
16848 stevensc 13463
 
16825 efrain 13464
  .me-xl-n5 {
13465
    margin-right: -3rem !important;
13466
  }
16848 stevensc 13467
 
16825 efrain 13468
  .me-xl-n6 {
13469
    margin-right: -4.5rem !important;
13470
  }
16848 stevensc 13471
 
16825 efrain 13472
  .me-xl-n7 {
13473
    margin-right: -6rem !important;
13474
  }
16848 stevensc 13475
 
16825 efrain 13476
  .mb-xl-n1 {
13477
    margin-bottom: -0.25rem !important;
13478
  }
16848 stevensc 13479
 
16825 efrain 13480
  .mb-xl-n2 {
13481
    margin-bottom: -0.5rem !important;
13482
  }
16848 stevensc 13483
 
16825 efrain 13484
  .mb-xl-n3 {
13485
    margin-bottom: -1rem !important;
13486
  }
16848 stevensc 13487
 
16825 efrain 13488
  .mb-xl-n4 {
13489
    margin-bottom: -1.5rem !important;
13490
  }
16848 stevensc 13491
 
16825 efrain 13492
  .mb-xl-n5 {
13493
    margin-bottom: -3rem !important;
13494
  }
16848 stevensc 13495
 
16825 efrain 13496
  .mb-xl-n6 {
13497
    margin-bottom: -4.5rem !important;
13498
  }
16848 stevensc 13499
 
16825 efrain 13500
  .mb-xl-n7 {
13501
    margin-bottom: -6rem !important;
13502
  }
16848 stevensc 13503
 
16825 efrain 13504
  .ms-xl-n1 {
13505
    margin-left: -0.25rem !important;
13506
  }
16848 stevensc 13507
 
16825 efrain 13508
  .ms-xl-n2 {
13509
    margin-left: -0.5rem !important;
13510
  }
16848 stevensc 13511
 
16825 efrain 13512
  .ms-xl-n3 {
13513
    margin-left: -1rem !important;
13514
  }
16848 stevensc 13515
 
16825 efrain 13516
  .ms-xl-n4 {
13517
    margin-left: -1.5rem !important;
13518
  }
16848 stevensc 13519
 
16825 efrain 13520
  .ms-xl-n5 {
13521
    margin-left: -3rem !important;
13522
  }
16848 stevensc 13523
 
16825 efrain 13524
  .ms-xl-n6 {
13525
    margin-left: -4.5rem !important;
13526
  }
16848 stevensc 13527
 
16825 efrain 13528
  .ms-xl-n7 {
13529
    margin-left: -6rem !important;
13530
  }
16848 stevensc 13531
 
16825 efrain 13532
  .p-xl-0 {
13533
    padding: 0 !important;
13534
  }
16848 stevensc 13535
 
16825 efrain 13536
  .p-xl-1 {
13537
    padding: 0.25rem !important;
13538
  }
16848 stevensc 13539
 
16825 efrain 13540
  .p-xl-2 {
13541
    padding: 0.5rem !important;
13542
  }
16848 stevensc 13543
 
16825 efrain 13544
  .p-xl-3 {
13545
    padding: 1rem !important;
13546
  }
16848 stevensc 13547
 
16825 efrain 13548
  .p-xl-4 {
13549
    padding: 1.5rem !important;
13550
  }
16848 stevensc 13551
 
16825 efrain 13552
  .p-xl-5 {
13553
    padding: 3rem !important;
13554
  }
16848 stevensc 13555
 
16825 efrain 13556
  .p-xl-6 {
13557
    padding: 4.5rem !important;
13558
  }
16848 stevensc 13559
 
16825 efrain 13560
  .p-xl-7 {
13561
    padding: 6rem !important;
13562
  }
16848 stevensc 13563
 
16825 efrain 13564
  .px-xl-0 {
13565
    padding-right: 0 !important;
13566
    padding-left: 0 !important;
13567
  }
16848 stevensc 13568
 
16825 efrain 13569
  .px-xl-1 {
13570
    padding-right: 0.25rem !important;
13571
    padding-left: 0.25rem !important;
13572
  }
16848 stevensc 13573
 
16825 efrain 13574
  .px-xl-2 {
13575
    padding-right: 0.5rem !important;
13576
    padding-left: 0.5rem !important;
13577
  }
16848 stevensc 13578
 
16825 efrain 13579
  .px-xl-3 {
13580
    padding-right: 1rem !important;
13581
    padding-left: 1rem !important;
13582
  }
16848 stevensc 13583
 
16825 efrain 13584
  .px-xl-4 {
13585
    padding-right: 1.5rem !important;
13586
    padding-left: 1.5rem !important;
13587
  }
16848 stevensc 13588
 
16825 efrain 13589
  .px-xl-5 {
13590
    padding-right: 3rem !important;
13591
    padding-left: 3rem !important;
13592
  }
16848 stevensc 13593
 
16825 efrain 13594
  .px-xl-6 {
13595
    padding-right: 4.5rem !important;
13596
    padding-left: 4.5rem !important;
13597
  }
16848 stevensc 13598
 
16825 efrain 13599
  .px-xl-7 {
13600
    padding-right: 6rem !important;
13601
    padding-left: 6rem !important;
13602
  }
16848 stevensc 13603
 
16825 efrain 13604
  .py-xl-0 {
13605
    padding-top: 0 !important;
13606
    padding-bottom: 0 !important;
13607
  }
16848 stevensc 13608
 
16825 efrain 13609
  .py-xl-1 {
13610
    padding-top: 0.25rem !important;
13611
    padding-bottom: 0.25rem !important;
13612
  }
16848 stevensc 13613
 
16825 efrain 13614
  .py-xl-2 {
13615
    padding-top: 0.5rem !important;
13616
    padding-bottom: 0.5rem !important;
13617
  }
16848 stevensc 13618
 
16825 efrain 13619
  .py-xl-3 {
13620
    padding-top: 1rem !important;
13621
    padding-bottom: 1rem !important;
13622
  }
16848 stevensc 13623
 
16825 efrain 13624
  .py-xl-4 {
13625
    padding-top: 1.5rem !important;
13626
    padding-bottom: 1.5rem !important;
13627
  }
16848 stevensc 13628
 
16825 efrain 13629
  .py-xl-5 {
13630
    padding-top: 3rem !important;
13631
    padding-bottom: 3rem !important;
13632
  }
16848 stevensc 13633
 
16825 efrain 13634
  .py-xl-6 {
13635
    padding-top: 4.5rem !important;
13636
    padding-bottom: 4.5rem !important;
13637
  }
16848 stevensc 13638
 
16825 efrain 13639
  .py-xl-7 {
13640
    padding-top: 6rem !important;
13641
    padding-bottom: 6rem !important;
13642
  }
16848 stevensc 13643
 
16825 efrain 13644
  .pt-xl-0 {
13645
    padding-top: 0 !important;
13646
  }
16848 stevensc 13647
 
16825 efrain 13648
  .pt-xl-1 {
13649
    padding-top: 0.25rem !important;
13650
  }
16848 stevensc 13651
 
16825 efrain 13652
  .pt-xl-2 {
13653
    padding-top: 0.5rem !important;
13654
  }
16848 stevensc 13655
 
16825 efrain 13656
  .pt-xl-3 {
13657
    padding-top: 1rem !important;
13658
  }
16848 stevensc 13659
 
16825 efrain 13660
  .pt-xl-4 {
13661
    padding-top: 1.5rem !important;
13662
  }
16848 stevensc 13663
 
16825 efrain 13664
  .pt-xl-5 {
13665
    padding-top: 3rem !important;
13666
  }
16848 stevensc 13667
 
16825 efrain 13668
  .pt-xl-6 {
13669
    padding-top: 4.5rem !important;
13670
  }
16848 stevensc 13671
 
16825 efrain 13672
  .pt-xl-7 {
13673
    padding-top: 6rem !important;
13674
  }
16848 stevensc 13675
 
16825 efrain 13676
  .pe-xl-0 {
13677
    padding-right: 0 !important;
13678
  }
16848 stevensc 13679
 
16825 efrain 13680
  .pe-xl-1 {
13681
    padding-right: 0.25rem !important;
13682
  }
16848 stevensc 13683
 
16825 efrain 13684
  .pe-xl-2 {
13685
    padding-right: 0.5rem !important;
13686
  }
16848 stevensc 13687
 
16825 efrain 13688
  .pe-xl-3 {
13689
    padding-right: 1rem !important;
13690
  }
16848 stevensc 13691
 
16825 efrain 13692
  .pe-xl-4 {
13693
    padding-right: 1.5rem !important;
13694
  }
16848 stevensc 13695
 
16825 efrain 13696
  .pe-xl-5 {
13697
    padding-right: 3rem !important;
13698
  }
16848 stevensc 13699
 
16825 efrain 13700
  .pe-xl-6 {
13701
    padding-right: 4.5rem !important;
13702
  }
16848 stevensc 13703
 
16825 efrain 13704
  .pe-xl-7 {
13705
    padding-right: 6rem !important;
13706
  }
16848 stevensc 13707
 
16825 efrain 13708
  .pb-xl-0 {
13709
    padding-bottom: 0 !important;
13710
  }
16848 stevensc 13711
 
16825 efrain 13712
  .pb-xl-1 {
13713
    padding-bottom: 0.25rem !important;
13714
  }
16848 stevensc 13715
 
16825 efrain 13716
  .pb-xl-2 {
13717
    padding-bottom: 0.5rem !important;
13718
  }
16848 stevensc 13719
 
16825 efrain 13720
  .pb-xl-3 {
13721
    padding-bottom: 1rem !important;
13722
  }
16848 stevensc 13723
 
16825 efrain 13724
  .pb-xl-4 {
13725
    padding-bottom: 1.5rem !important;
13726
  }
16848 stevensc 13727
 
16825 efrain 13728
  .pb-xl-5 {
13729
    padding-bottom: 3rem !important;
13730
  }
16848 stevensc 13731
 
16825 efrain 13732
  .pb-xl-6 {
13733
    padding-bottom: 4.5rem !important;
13734
  }
16848 stevensc 13735
 
16825 efrain 13736
  .pb-xl-7 {
13737
    padding-bottom: 6rem !important;
13738
  }
16848 stevensc 13739
 
16825 efrain 13740
  .ps-xl-0 {
13741
    padding-left: 0 !important;
13742
  }
16848 stevensc 13743
 
16825 efrain 13744
  .ps-xl-1 {
13745
    padding-left: 0.25rem !important;
13746
  }
16848 stevensc 13747
 
16825 efrain 13748
  .ps-xl-2 {
13749
    padding-left: 0.5rem !important;
13750
  }
16848 stevensc 13751
 
16825 efrain 13752
  .ps-xl-3 {
13753
    padding-left: 1rem !important;
13754
  }
16848 stevensc 13755
 
16825 efrain 13756
  .ps-xl-4 {
13757
    padding-left: 1.5rem !important;
13758
  }
16848 stevensc 13759
 
16825 efrain 13760
  .ps-xl-5 {
13761
    padding-left: 3rem !important;
13762
  }
16848 stevensc 13763
 
16825 efrain 13764
  .ps-xl-6 {
13765
    padding-left: 4.5rem !important;
13766
  }
16848 stevensc 13767
 
16825 efrain 13768
  .ps-xl-7 {
13769
    padding-left: 6rem !important;
13770
  }
16848 stevensc 13771
 
16825 efrain 13772
  .gap-xl-0 {
13773
    gap: 0 !important;
13774
  }
16848 stevensc 13775
 
16825 efrain 13776
  .gap-xl-1 {
13777
    gap: 0.25rem !important;
13778
  }
16848 stevensc 13779
 
16825 efrain 13780
  .gap-xl-2 {
13781
    gap: 0.5rem !important;
13782
  }
16848 stevensc 13783
 
16825 efrain 13784
  .gap-xl-3 {
13785
    gap: 1rem !important;
13786
  }
16848 stevensc 13787
 
16825 efrain 13788
  .gap-xl-4 {
13789
    gap: 1.5rem !important;
13790
  }
16848 stevensc 13791
 
16825 efrain 13792
  .gap-xl-5 {
13793
    gap: 3rem !important;
13794
  }
16848 stevensc 13795
 
16825 efrain 13796
  .gap-xl-6 {
13797
    gap: 4.5rem !important;
13798
  }
16848 stevensc 13799
 
16825 efrain 13800
  .gap-xl-7 {
13801
    gap: 6rem !important;
13802
  }
16848 stevensc 13803
 
16825 efrain 13804
  .text-xl-start {
13805
    text-align: left !important;
13806
  }
16848 stevensc 13807
 
16825 efrain 13808
  .text-xl-end {
13809
    text-align: right !important;
13810
  }
16848 stevensc 13811
 
16825 efrain 13812
  .text-xl-center {
13813
    text-align: center !important;
13814
  }
13815
}
16848 stevensc 13816
 
16825 efrain 13817
@media (min-width: 1400px) {
13818
  .float-xxl-start {
13819
    float: left !important;
13820
  }
16848 stevensc 13821
 
16825 efrain 13822
  .float-xxl-end {
13823
    float: right !important;
13824
  }
16848 stevensc 13825
 
16825 efrain 13826
  .float-xxl-none {
13827
    float: none !important;
13828
  }
16848 stevensc 13829
 
16825 efrain 13830
  .d-xxl-inline {
13831
    display: inline !important;
13832
  }
16848 stevensc 13833
 
16825 efrain 13834
  .d-xxl-inline-block {
13835
    display: inline-block !important;
13836
  }
16848 stevensc 13837
 
16825 efrain 13838
  .d-xxl-block {
13839
    display: block !important;
13840
  }
16848 stevensc 13841
 
16825 efrain 13842
  .d-xxl-grid {
13843
    display: grid !important;
13844
  }
16848 stevensc 13845
 
16825 efrain 13846
  .d-xxl-table {
13847
    display: table !important;
13848
  }
16848 stevensc 13849
 
16825 efrain 13850
  .d-xxl-table-row {
13851
    display: table-row !important;
13852
  }
16848 stevensc 13853
 
16825 efrain 13854
  .d-xxl-table-cell {
13855
    display: table-cell !important;
13856
  }
16848 stevensc 13857
 
16825 efrain 13858
  .d-xxl-flex {
13859
    display: flex !important;
13860
  }
16848 stevensc 13861
 
16825 efrain 13862
  .d-xxl-inline-flex {
13863
    display: inline-flex !important;
13864
  }
16848 stevensc 13865
 
16825 efrain 13866
  .d-xxl-none {
13867
    display: none !important;
13868
  }
16848 stevensc 13869
 
16825 efrain 13870
  .border-xxl {
13871
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13872
  }
16848 stevensc 13873
 
16825 efrain 13874
  .border-xxl-0 {
13875
    border: 0 !important;
13876
  }
16848 stevensc 13877
 
16825 efrain 13878
  .border-top-xxl {
13879
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13880
  }
16848 stevensc 13881
 
16825 efrain 13882
  .border-top-xxl-0 {
13883
    border-top: 0 !important;
13884
  }
16848 stevensc 13885
 
16825 efrain 13886
  .border-end-xxl {
13887
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13888
  }
16848 stevensc 13889
 
16825 efrain 13890
  .border-end-xxl-0 {
13891
    border-right: 0 !important;
13892
  }
16848 stevensc 13893
 
16825 efrain 13894
  .border-bottom-xxl {
13895
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13896
  }
16848 stevensc 13897
 
16825 efrain 13898
  .border-bottom-xxl-0 {
13899
    border-bottom: 0 !important;
13900
  }
16848 stevensc 13901
 
16825 efrain 13902
  .border-start-xxl {
13903
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13904
  }
16848 stevensc 13905
 
16825 efrain 13906
  .border-start-xxl-0 {
13907
    border-left: 0 !important;
13908
  }
16848 stevensc 13909
 
16825 efrain 13910
  .flex-xxl-fill {
13911
    flex: 1 1 auto !important;
13912
  }
16848 stevensc 13913
 
16825 efrain 13914
  .flex-xxl-row {
13915
    flex-direction: row !important;
13916
  }
16848 stevensc 13917
 
16825 efrain 13918
  .flex-xxl-column {
13919
    flex-direction: column !important;
13920
  }
16848 stevensc 13921
 
16825 efrain 13922
  .flex-xxl-row-reverse {
13923
    flex-direction: row-reverse !important;
13924
  }
16848 stevensc 13925
 
16825 efrain 13926
  .flex-xxl-column-reverse {
13927
    flex-direction: column-reverse !important;
13928
  }
16848 stevensc 13929
 
16825 efrain 13930
  .flex-xxl-grow-0 {
13931
    flex-grow: 0 !important;
13932
  }
16848 stevensc 13933
 
16825 efrain 13934
  .flex-xxl-grow-1 {
13935
    flex-grow: 1 !important;
13936
  }
16848 stevensc 13937
 
16825 efrain 13938
  .flex-xxl-shrink-0 {
13939
    flex-shrink: 0 !important;
13940
  }
16848 stevensc 13941
 
16825 efrain 13942
  .flex-xxl-shrink-1 {
13943
    flex-shrink: 1 !important;
13944
  }
16848 stevensc 13945
 
16825 efrain 13946
  .flex-xxl-wrap {
13947
    flex-wrap: wrap !important;
13948
  }
16848 stevensc 13949
 
16825 efrain 13950
  .flex-xxl-nowrap {
13951
    flex-wrap: nowrap !important;
13952
  }
16848 stevensc 13953
 
16825 efrain 13954
  .flex-xxl-wrap-reverse {
13955
    flex-wrap: wrap-reverse !important;
13956
  }
16848 stevensc 13957
 
16825 efrain 13958
  .justify-content-xxl-start {
13959
    justify-content: flex-start !important;
13960
  }
16848 stevensc 13961
 
16825 efrain 13962
  .justify-content-xxl-end {
13963
    justify-content: flex-end !important;
13964
  }
16848 stevensc 13965
 
16825 efrain 13966
  .justify-content-xxl-center {
13967
    justify-content: center !important;
13968
  }
16848 stevensc 13969
 
16825 efrain 13970
  .justify-content-xxl-between {
13971
    justify-content: space-between !important;
13972
  }
16848 stevensc 13973
 
16825 efrain 13974
  .justify-content-xxl-around {
13975
    justify-content: space-around !important;
13976
  }
16848 stevensc 13977
 
16825 efrain 13978
  .justify-content-xxl-evenly {
13979
    justify-content: space-evenly !important;
13980
  }
16848 stevensc 13981
 
16825 efrain 13982
  .align-items-xxl-start {
13983
    align-items: flex-start !important;
13984
  }
16848 stevensc 13985
 
16825 efrain 13986
  .align-items-xxl-end {
13987
    align-items: flex-end !important;
13988
  }
16848 stevensc 13989
 
16825 efrain 13990
  .align-items-xxl-center {
13991
    align-items: center !important;
13992
  }
16848 stevensc 13993
 
16825 efrain 13994
  .align-items-xxl-baseline {
13995
    align-items: baseline !important;
13996
  }
16848 stevensc 13997
 
16825 efrain 13998
  .align-items-xxl-stretch {
13999
    align-items: stretch !important;
14000
  }
16848 stevensc 14001
 
16825 efrain 14002
  .align-content-xxl-start {
14003
    align-content: flex-start !important;
14004
  }
16848 stevensc 14005
 
16825 efrain 14006
  .align-content-xxl-end {
14007
    align-content: flex-end !important;
14008
  }
16848 stevensc 14009
 
16825 efrain 14010
  .align-content-xxl-center {
14011
    align-content: center !important;
14012
  }
16848 stevensc 14013
 
16825 efrain 14014
  .align-content-xxl-between {
14015
    align-content: space-between !important;
14016
  }
16848 stevensc 14017
 
16825 efrain 14018
  .align-content-xxl-around {
14019
    align-content: space-around !important;
14020
  }
16848 stevensc 14021
 
16825 efrain 14022
  .align-content-xxl-stretch {
14023
    align-content: stretch !important;
14024
  }
16848 stevensc 14025
 
16825 efrain 14026
  .align-self-xxl-auto {
14027
    align-self: auto !important;
14028
  }
16848 stevensc 14029
 
16825 efrain 14030
  .align-self-xxl-start {
14031
    align-self: flex-start !important;
14032
  }
16848 stevensc 14033
 
16825 efrain 14034
  .align-self-xxl-end {
14035
    align-self: flex-end !important;
14036
  }
16848 stevensc 14037
 
16825 efrain 14038
  .align-self-xxl-center {
14039
    align-self: center !important;
14040
  }
16848 stevensc 14041
 
16825 efrain 14042
  .align-self-xxl-baseline {
14043
    align-self: baseline !important;
14044
  }
16848 stevensc 14045
 
16825 efrain 14046
  .align-self-xxl-stretch {
14047
    align-self: stretch !important;
14048
  }
16848 stevensc 14049
 
16825 efrain 14050
  .order-xxl-first {
14051
    order: -1 !important;
14052
  }
16848 stevensc 14053
 
16825 efrain 14054
  .order-xxl-0 {
14055
    order: 0 !important;
14056
  }
16848 stevensc 14057
 
16825 efrain 14058
  .order-xxl-1 {
14059
    order: 1 !important;
14060
  }
16848 stevensc 14061
 
16825 efrain 14062
  .order-xxl-2 {
14063
    order: 2 !important;
14064
  }
16848 stevensc 14065
 
16825 efrain 14066
  .order-xxl-3 {
14067
    order: 3 !important;
14068
  }
16848 stevensc 14069
 
16825 efrain 14070
  .order-xxl-4 {
14071
    order: 4 !important;
14072
  }
16848 stevensc 14073
 
16825 efrain 14074
  .order-xxl-5 {
14075
    order: 5 !important;
14076
  }
16848 stevensc 14077
 
16825 efrain 14078
  .order-xxl-last {
14079
    order: 6 !important;
14080
  }
16848 stevensc 14081
 
16825 efrain 14082
  .m-xxl-0 {
14083
    margin: 0 !important;
14084
  }
16848 stevensc 14085
 
16825 efrain 14086
  .m-xxl-1 {
14087
    margin: 0.25rem !important;
14088
  }
16848 stevensc 14089
 
16825 efrain 14090
  .m-xxl-2 {
14091
    margin: 0.5rem !important;
14092
  }
16848 stevensc 14093
 
16825 efrain 14094
  .m-xxl-3 {
14095
    margin: 1rem !important;
14096
  }
16848 stevensc 14097
 
16825 efrain 14098
  .m-xxl-4 {
14099
    margin: 1.5rem !important;
14100
  }
16848 stevensc 14101
 
16825 efrain 14102
  .m-xxl-5 {
14103
    margin: 3rem !important;
14104
  }
16848 stevensc 14105
 
16825 efrain 14106
  .m-xxl-6 {
14107
    margin: 4.5rem !important;
14108
  }
16848 stevensc 14109
 
16825 efrain 14110
  .m-xxl-7 {
14111
    margin: 6rem !important;
14112
  }
16848 stevensc 14113
 
16825 efrain 14114
  .m-xxl-auto {
14115
    margin: auto !important;
14116
  }
16848 stevensc 14117
 
16825 efrain 14118
  .mx-xxl-0 {
14119
    margin-right: 0 !important;
14120
    margin-left: 0 !important;
14121
  }
16848 stevensc 14122
 
16825 efrain 14123
  .mx-xxl-1 {
14124
    margin-right: 0.25rem !important;
14125
    margin-left: 0.25rem !important;
14126
  }
16848 stevensc 14127
 
16825 efrain 14128
  .mx-xxl-2 {
14129
    margin-right: 0.5rem !important;
14130
    margin-left: 0.5rem !important;
14131
  }
16848 stevensc 14132
 
16825 efrain 14133
  .mx-xxl-3 {
14134
    margin-right: 1rem !important;
14135
    margin-left: 1rem !important;
14136
  }
16848 stevensc 14137
 
16825 efrain 14138
  .mx-xxl-4 {
14139
    margin-right: 1.5rem !important;
14140
    margin-left: 1.5rem !important;
14141
  }
16848 stevensc 14142
 
16825 efrain 14143
  .mx-xxl-5 {
14144
    margin-right: 3rem !important;
14145
    margin-left: 3rem !important;
14146
  }
16848 stevensc 14147
 
16825 efrain 14148
  .mx-xxl-6 {
14149
    margin-right: 4.5rem !important;
14150
    margin-left: 4.5rem !important;
14151
  }
16848 stevensc 14152
 
16825 efrain 14153
  .mx-xxl-7 {
14154
    margin-right: 6rem !important;
14155
    margin-left: 6rem !important;
14156
  }
16848 stevensc 14157
 
16825 efrain 14158
  .mx-xxl-auto {
14159
    margin-right: auto !important;
14160
    margin-left: auto !important;
14161
  }
16848 stevensc 14162
 
16825 efrain 14163
  .my-xxl-0 {
14164
    margin-top: 0 !important;
14165
    margin-bottom: 0 !important;
14166
  }
16848 stevensc 14167
 
16825 efrain 14168
  .my-xxl-1 {
14169
    margin-top: 0.25rem !important;
14170
    margin-bottom: 0.25rem !important;
14171
  }
16848 stevensc 14172
 
16825 efrain 14173
  .my-xxl-2 {
14174
    margin-top: 0.5rem !important;
14175
    margin-bottom: 0.5rem !important;
14176
  }
16848 stevensc 14177
 
16825 efrain 14178
  .my-xxl-3 {
14179
    margin-top: 1rem !important;
14180
    margin-bottom: 1rem !important;
14181
  }
16848 stevensc 14182
 
16825 efrain 14183
  .my-xxl-4 {
14184
    margin-top: 1.5rem !important;
14185
    margin-bottom: 1.5rem !important;
14186
  }
16848 stevensc 14187
 
16825 efrain 14188
  .my-xxl-5 {
14189
    margin-top: 3rem !important;
14190
    margin-bottom: 3rem !important;
14191
  }
16848 stevensc 14192
 
16825 efrain 14193
  .my-xxl-6 {
14194
    margin-top: 4.5rem !important;
14195
    margin-bottom: 4.5rem !important;
14196
  }
16848 stevensc 14197
 
16825 efrain 14198
  .my-xxl-7 {
14199
    margin-top: 6rem !important;
14200
    margin-bottom: 6rem !important;
14201
  }
16848 stevensc 14202
 
16825 efrain 14203
  .my-xxl-auto {
14204
    margin-top: auto !important;
14205
    margin-bottom: auto !important;
14206
  }
16848 stevensc 14207
 
16825 efrain 14208
  .mt-xxl-0 {
14209
    margin-top: 0 !important;
14210
  }
16848 stevensc 14211
 
16825 efrain 14212
  .mt-xxl-1 {
14213
    margin-top: 0.25rem !important;
14214
  }
16848 stevensc 14215
 
16825 efrain 14216
  .mt-xxl-2 {
14217
    margin-top: 0.5rem !important;
14218
  }
16848 stevensc 14219
 
16825 efrain 14220
  .mt-xxl-3 {
14221
    margin-top: 1rem !important;
14222
  }
16848 stevensc 14223
 
16825 efrain 14224
  .mt-xxl-4 {
14225
    margin-top: 1.5rem !important;
14226
  }
16848 stevensc 14227
 
16825 efrain 14228
  .mt-xxl-5 {
14229
    margin-top: 3rem !important;
14230
  }
16848 stevensc 14231
 
16825 efrain 14232
  .mt-xxl-6 {
14233
    margin-top: 4.5rem !important;
14234
  }
16848 stevensc 14235
 
16825 efrain 14236
  .mt-xxl-7 {
14237
    margin-top: 6rem !important;
14238
  }
16848 stevensc 14239
 
16825 efrain 14240
  .mt-xxl-auto {
14241
    margin-top: auto !important;
14242
  }
16848 stevensc 14243
 
16825 efrain 14244
  .me-xxl-0 {
14245
    margin-right: 0 !important;
14246
  }
16848 stevensc 14247
 
16825 efrain 14248
  .me-xxl-1 {
14249
    margin-right: 0.25rem !important;
14250
  }
16848 stevensc 14251
 
16825 efrain 14252
  .me-xxl-2 {
14253
    margin-right: 0.5rem !important;
14254
  }
16848 stevensc 14255
 
16825 efrain 14256
  .me-xxl-3 {
14257
    margin-right: 1rem !important;
14258
  }
16848 stevensc 14259
 
16825 efrain 14260
  .me-xxl-4 {
14261
    margin-right: 1.5rem !important;
14262
  }
16848 stevensc 14263
 
16825 efrain 14264
  .me-xxl-5 {
14265
    margin-right: 3rem !important;
14266
  }
16848 stevensc 14267
 
16825 efrain 14268
  .me-xxl-6 {
14269
    margin-right: 4.5rem !important;
14270
  }
16848 stevensc 14271
 
16825 efrain 14272
  .me-xxl-7 {
14273
    margin-right: 6rem !important;
14274
  }
16848 stevensc 14275
 
16825 efrain 14276
  .me-xxl-auto {
14277
    margin-right: auto !important;
14278
  }
16848 stevensc 14279
 
16825 efrain 14280
  .mb-xxl-0 {
14281
    margin-bottom: 0 !important;
14282
  }
16848 stevensc 14283
 
16825 efrain 14284
  .mb-xxl-1 {
14285
    margin-bottom: 0.25rem !important;
14286
  }
16848 stevensc 14287
 
16825 efrain 14288
  .mb-xxl-2 {
14289
    margin-bottom: 0.5rem !important;
14290
  }
16848 stevensc 14291
 
16825 efrain 14292
  .mb-xxl-3 {
14293
    margin-bottom: 1rem !important;
14294
  }
16848 stevensc 14295
 
16825 efrain 14296
  .mb-xxl-4 {
14297
    margin-bottom: 1.5rem !important;
14298
  }
16848 stevensc 14299
 
16825 efrain 14300
  .mb-xxl-5 {
14301
    margin-bottom: 3rem !important;
14302
  }
16848 stevensc 14303
 
16825 efrain 14304
  .mb-xxl-6 {
14305
    margin-bottom: 4.5rem !important;
14306
  }
16848 stevensc 14307
 
16825 efrain 14308
  .mb-xxl-7 {
14309
    margin-bottom: 6rem !important;
14310
  }
16848 stevensc 14311
 
16825 efrain 14312
  .mb-xxl-auto {
14313
    margin-bottom: auto !important;
14314
  }
16848 stevensc 14315
 
16825 efrain 14316
  .ms-xxl-0 {
14317
    margin-left: 0 !important;
14318
  }
16848 stevensc 14319
 
16825 efrain 14320
  .ms-xxl-1 {
14321
    margin-left: 0.25rem !important;
14322
  }
16848 stevensc 14323
 
16825 efrain 14324
  .ms-xxl-2 {
14325
    margin-left: 0.5rem !important;
14326
  }
16848 stevensc 14327
 
16825 efrain 14328
  .ms-xxl-3 {
14329
    margin-left: 1rem !important;
14330
  }
16848 stevensc 14331
 
16825 efrain 14332
  .ms-xxl-4 {
14333
    margin-left: 1.5rem !important;
14334
  }
16848 stevensc 14335
 
16825 efrain 14336
  .ms-xxl-5 {
14337
    margin-left: 3rem !important;
14338
  }
16848 stevensc 14339
 
16825 efrain 14340
  .ms-xxl-6 {
14341
    margin-left: 4.5rem !important;
14342
  }
16848 stevensc 14343
 
16825 efrain 14344
  .ms-xxl-7 {
14345
    margin-left: 6rem !important;
14346
  }
16848 stevensc 14347
 
16825 efrain 14348
  .ms-xxl-auto {
14349
    margin-left: auto !important;
14350
  }
16848 stevensc 14351
 
16825 efrain 14352
  .m-xxl-n1 {
14353
    margin: -0.25rem !important;
14354
  }
16848 stevensc 14355
 
16825 efrain 14356
  .m-xxl-n2 {
14357
    margin: -0.5rem !important;
14358
  }
16848 stevensc 14359
 
16825 efrain 14360
  .m-xxl-n3 {
14361
    margin: -1rem !important;
14362
  }
16848 stevensc 14363
 
16825 efrain 14364
  .m-xxl-n4 {
14365
    margin: -1.5rem !important;
14366
  }
16848 stevensc 14367
 
16825 efrain 14368
  .m-xxl-n5 {
14369
    margin: -3rem !important;
14370
  }
16848 stevensc 14371
 
16825 efrain 14372
  .m-xxl-n6 {
14373
    margin: -4.5rem !important;
14374
  }
16848 stevensc 14375
 
16825 efrain 14376
  .m-xxl-n7 {
14377
    margin: -6rem !important;
14378
  }
16848 stevensc 14379
 
16825 efrain 14380
  .mx-xxl-n1 {
14381
    margin-right: -0.25rem !important;
14382
    margin-left: -0.25rem !important;
14383
  }
16848 stevensc 14384
 
16825 efrain 14385
  .mx-xxl-n2 {
14386
    margin-right: -0.5rem !important;
14387
    margin-left: -0.5rem !important;
14388
  }
16848 stevensc 14389
 
16825 efrain 14390
  .mx-xxl-n3 {
14391
    margin-right: -1rem !important;
14392
    margin-left: -1rem !important;
14393
  }
16848 stevensc 14394
 
16825 efrain 14395
  .mx-xxl-n4 {
14396
    margin-right: -1.5rem !important;
14397
    margin-left: -1.5rem !important;
14398
  }
16848 stevensc 14399
 
16825 efrain 14400
  .mx-xxl-n5 {
14401
    margin-right: -3rem !important;
14402
    margin-left: -3rem !important;
14403
  }
16848 stevensc 14404
 
16825 efrain 14405
  .mx-xxl-n6 {
14406
    margin-right: -4.5rem !important;
14407
    margin-left: -4.5rem !important;
14408
  }
16848 stevensc 14409
 
16825 efrain 14410
  .mx-xxl-n7 {
14411
    margin-right: -6rem !important;
14412
    margin-left: -6rem !important;
14413
  }
16848 stevensc 14414
 
16825 efrain 14415
  .my-xxl-n1 {
14416
    margin-top: -0.25rem !important;
14417
    margin-bottom: -0.25rem !important;
14418
  }
16848 stevensc 14419
 
16825 efrain 14420
  .my-xxl-n2 {
14421
    margin-top: -0.5rem !important;
14422
    margin-bottom: -0.5rem !important;
14423
  }
16848 stevensc 14424
 
16825 efrain 14425
  .my-xxl-n3 {
14426
    margin-top: -1rem !important;
14427
    margin-bottom: -1rem !important;
14428
  }
16848 stevensc 14429
 
16825 efrain 14430
  .my-xxl-n4 {
14431
    margin-top: -1.5rem !important;
14432
    margin-bottom: -1.5rem !important;
14433
  }
16848 stevensc 14434
 
16825 efrain 14435
  .my-xxl-n5 {
14436
    margin-top: -3rem !important;
14437
    margin-bottom: -3rem !important;
14438
  }
16848 stevensc 14439
 
16825 efrain 14440
  .my-xxl-n6 {
14441
    margin-top: -4.5rem !important;
14442
    margin-bottom: -4.5rem !important;
14443
  }
16848 stevensc 14444
 
16825 efrain 14445
  .my-xxl-n7 {
14446
    margin-top: -6rem !important;
14447
    margin-bottom: -6rem !important;
14448
  }
16848 stevensc 14449
 
16825 efrain 14450
  .mt-xxl-n1 {
14451
    margin-top: -0.25rem !important;
14452
  }
16848 stevensc 14453
 
16825 efrain 14454
  .mt-xxl-n2 {
14455
    margin-top: -0.5rem !important;
14456
  }
16848 stevensc 14457
 
16825 efrain 14458
  .mt-xxl-n3 {
14459
    margin-top: -1rem !important;
14460
  }
16848 stevensc 14461
 
16825 efrain 14462
  .mt-xxl-n4 {
14463
    margin-top: -1.5rem !important;
14464
  }
16848 stevensc 14465
 
16825 efrain 14466
  .mt-xxl-n5 {
14467
    margin-top: -3rem !important;
14468
  }
16848 stevensc 14469
 
16825 efrain 14470
  .mt-xxl-n6 {
14471
    margin-top: -4.5rem !important;
14472
  }
16848 stevensc 14473
 
16825 efrain 14474
  .mt-xxl-n7 {
14475
    margin-top: -6rem !important;
14476
  }
16848 stevensc 14477
 
16825 efrain 14478
  .me-xxl-n1 {
14479
    margin-right: -0.25rem !important;
14480
  }
16848 stevensc 14481
 
16825 efrain 14482
  .me-xxl-n2 {
14483
    margin-right: -0.5rem !important;
14484
  }
16848 stevensc 14485
 
16825 efrain 14486
  .me-xxl-n3 {
14487
    margin-right: -1rem !important;
14488
  }
16848 stevensc 14489
 
16825 efrain 14490
  .me-xxl-n4 {
14491
    margin-right: -1.5rem !important;
14492
  }
16848 stevensc 14493
 
16825 efrain 14494
  .me-xxl-n5 {
14495
    margin-right: -3rem !important;
14496
  }
16848 stevensc 14497
 
16825 efrain 14498
  .me-xxl-n6 {
14499
    margin-right: -4.5rem !important;
14500
  }
16848 stevensc 14501
 
16825 efrain 14502
  .me-xxl-n7 {
14503
    margin-right: -6rem !important;
14504
  }
16848 stevensc 14505
 
16825 efrain 14506
  .mb-xxl-n1 {
14507
    margin-bottom: -0.25rem !important;
14508
  }
16848 stevensc 14509
 
16825 efrain 14510
  .mb-xxl-n2 {
14511
    margin-bottom: -0.5rem !important;
14512
  }
16848 stevensc 14513
 
16825 efrain 14514
  .mb-xxl-n3 {
14515
    margin-bottom: -1rem !important;
14516
  }
16848 stevensc 14517
 
16825 efrain 14518
  .mb-xxl-n4 {
14519
    margin-bottom: -1.5rem !important;
14520
  }
16848 stevensc 14521
 
16825 efrain 14522
  .mb-xxl-n5 {
14523
    margin-bottom: -3rem !important;
14524
  }
16848 stevensc 14525
 
16825 efrain 14526
  .mb-xxl-n6 {
14527
    margin-bottom: -4.5rem !important;
14528
  }
16848 stevensc 14529
 
16825 efrain 14530
  .mb-xxl-n7 {
14531
    margin-bottom: -6rem !important;
14532
  }
16848 stevensc 14533
 
16825 efrain 14534
  .ms-xxl-n1 {
14535
    margin-left: -0.25rem !important;
14536
  }
16848 stevensc 14537
 
16825 efrain 14538
  .ms-xxl-n2 {
14539
    margin-left: -0.5rem !important;
14540
  }
16848 stevensc 14541
 
16825 efrain 14542
  .ms-xxl-n3 {
14543
    margin-left: -1rem !important;
14544
  }
16848 stevensc 14545
 
16825 efrain 14546
  .ms-xxl-n4 {
14547
    margin-left: -1.5rem !important;
14548
  }
16848 stevensc 14549
 
16825 efrain 14550
  .ms-xxl-n5 {
14551
    margin-left: -3rem !important;
14552
  }
16848 stevensc 14553
 
16825 efrain 14554
  .ms-xxl-n6 {
14555
    margin-left: -4.5rem !important;
14556
  }
16848 stevensc 14557
 
16825 efrain 14558
  .ms-xxl-n7 {
14559
    margin-left: -6rem !important;
14560
  }
16848 stevensc 14561
 
16825 efrain 14562
  .p-xxl-0 {
14563
    padding: 0 !important;
14564
  }
16848 stevensc 14565
 
16825 efrain 14566
  .p-xxl-1 {
14567
    padding: 0.25rem !important;
14568
  }
16848 stevensc 14569
 
16825 efrain 14570
  .p-xxl-2 {
14571
    padding: 0.5rem !important;
14572
  }
16848 stevensc 14573
 
16825 efrain 14574
  .p-xxl-3 {
14575
    padding: 1rem !important;
14576
  }
16848 stevensc 14577
 
16825 efrain 14578
  .p-xxl-4 {
14579
    padding: 1.5rem !important;
14580
  }
16848 stevensc 14581
 
16825 efrain 14582
  .p-xxl-5 {
14583
    padding: 3rem !important;
14584
  }
16848 stevensc 14585
 
16825 efrain 14586
  .p-xxl-6 {
14587
    padding: 4.5rem !important;
14588
  }
16848 stevensc 14589
 
16825 efrain 14590
  .p-xxl-7 {
14591
    padding: 6rem !important;
14592
  }
16848 stevensc 14593
 
16825 efrain 14594
  .px-xxl-0 {
14595
    padding-right: 0 !important;
14596
    padding-left: 0 !important;
14597
  }
16848 stevensc 14598
 
16825 efrain 14599
  .px-xxl-1 {
14600
    padding-right: 0.25rem !important;
14601
    padding-left: 0.25rem !important;
14602
  }
16848 stevensc 14603
 
16825 efrain 14604
  .px-xxl-2 {
14605
    padding-right: 0.5rem !important;
14606
    padding-left: 0.5rem !important;
14607
  }
16848 stevensc 14608
 
16825 efrain 14609
  .px-xxl-3 {
14610
    padding-right: 1rem !important;
14611
    padding-left: 1rem !important;
14612
  }
16848 stevensc 14613
 
16825 efrain 14614
  .px-xxl-4 {
14615
    padding-right: 1.5rem !important;
14616
    padding-left: 1.5rem !important;
14617
  }
16848 stevensc 14618
 
16825 efrain 14619
  .px-xxl-5 {
14620
    padding-right: 3rem !important;
14621
    padding-left: 3rem !important;
14622
  }
16848 stevensc 14623
 
16825 efrain 14624
  .px-xxl-6 {
14625
    padding-right: 4.5rem !important;
14626
    padding-left: 4.5rem !important;
14627
  }
16848 stevensc 14628
 
16825 efrain 14629
  .px-xxl-7 {
14630
    padding-right: 6rem !important;
14631
    padding-left: 6rem !important;
14632
  }
16848 stevensc 14633
 
16825 efrain 14634
  .py-xxl-0 {
14635
    padding-top: 0 !important;
14636
    padding-bottom: 0 !important;
14637
  }
16848 stevensc 14638
 
16825 efrain 14639
  .py-xxl-1 {
14640
    padding-top: 0.25rem !important;
14641
    padding-bottom: 0.25rem !important;
14642
  }
16848 stevensc 14643
 
16825 efrain 14644
  .py-xxl-2 {
14645
    padding-top: 0.5rem !important;
14646
    padding-bottom: 0.5rem !important;
14647
  }
16848 stevensc 14648
 
16825 efrain 14649
  .py-xxl-3 {
14650
    padding-top: 1rem !important;
14651
    padding-bottom: 1rem !important;
14652
  }
16848 stevensc 14653
 
16825 efrain 14654
  .py-xxl-4 {
14655
    padding-top: 1.5rem !important;
14656
    padding-bottom: 1.5rem !important;
14657
  }
16848 stevensc 14658
 
16825 efrain 14659
  .py-xxl-5 {
14660
    padding-top: 3rem !important;
14661
    padding-bottom: 3rem !important;
14662
  }
16848 stevensc 14663
 
16825 efrain 14664
  .py-xxl-6 {
14665
    padding-top: 4.5rem !important;
14666
    padding-bottom: 4.5rem !important;
14667
  }
16848 stevensc 14668
 
16825 efrain 14669
  .py-xxl-7 {
14670
    padding-top: 6rem !important;
14671
    padding-bottom: 6rem !important;
14672
  }
16848 stevensc 14673
 
16825 efrain 14674
  .pt-xxl-0 {
14675
    padding-top: 0 !important;
14676
  }
16848 stevensc 14677
 
16825 efrain 14678
  .pt-xxl-1 {
14679
    padding-top: 0.25rem !important;
14680
  }
16848 stevensc 14681
 
16825 efrain 14682
  .pt-xxl-2 {
14683
    padding-top: 0.5rem !important;
14684
  }
16848 stevensc 14685
 
16825 efrain 14686
  .pt-xxl-3 {
14687
    padding-top: 1rem !important;
14688
  }
16848 stevensc 14689
 
16825 efrain 14690
  .pt-xxl-4 {
14691
    padding-top: 1.5rem !important;
14692
  }
16848 stevensc 14693
 
16825 efrain 14694
  .pt-xxl-5 {
14695
    padding-top: 3rem !important;
14696
  }
16848 stevensc 14697
 
16825 efrain 14698
  .pt-xxl-6 {
14699
    padding-top: 4.5rem !important;
14700
  }
16848 stevensc 14701
 
16825 efrain 14702
  .pt-xxl-7 {
14703
    padding-top: 6rem !important;
14704
  }
16848 stevensc 14705
 
16825 efrain 14706
  .pe-xxl-0 {
14707
    padding-right: 0 !important;
14708
  }
16848 stevensc 14709
 
16825 efrain 14710
  .pe-xxl-1 {
14711
    padding-right: 0.25rem !important;
14712
  }
16848 stevensc 14713
 
16825 efrain 14714
  .pe-xxl-2 {
14715
    padding-right: 0.5rem !important;
14716
  }
16848 stevensc 14717
 
16825 efrain 14718
  .pe-xxl-3 {
14719
    padding-right: 1rem !important;
14720
  }
16848 stevensc 14721
 
16825 efrain 14722
  .pe-xxl-4 {
14723
    padding-right: 1.5rem !important;
14724
  }
16848 stevensc 14725
 
16825 efrain 14726
  .pe-xxl-5 {
14727
    padding-right: 3rem !important;
14728
  }
16848 stevensc 14729
 
16825 efrain 14730
  .pe-xxl-6 {
14731
    padding-right: 4.5rem !important;
14732
  }
16848 stevensc 14733
 
16825 efrain 14734
  .pe-xxl-7 {
14735
    padding-right: 6rem !important;
14736
  }
16848 stevensc 14737
 
16825 efrain 14738
  .pb-xxl-0 {
14739
    padding-bottom: 0 !important;
14740
  }
16848 stevensc 14741
 
16825 efrain 14742
  .pb-xxl-1 {
14743
    padding-bottom: 0.25rem !important;
14744
  }
16848 stevensc 14745
 
16825 efrain 14746
  .pb-xxl-2 {
14747
    padding-bottom: 0.5rem !important;
14748
  }
16848 stevensc 14749
 
16825 efrain 14750
  .pb-xxl-3 {
14751
    padding-bottom: 1rem !important;
14752
  }
16848 stevensc 14753
 
16825 efrain 14754
  .pb-xxl-4 {
14755
    padding-bottom: 1.5rem !important;
14756
  }
16848 stevensc 14757
 
16825 efrain 14758
  .pb-xxl-5 {
14759
    padding-bottom: 3rem !important;
14760
  }
16848 stevensc 14761
 
16825 efrain 14762
  .pb-xxl-6 {
14763
    padding-bottom: 4.5rem !important;
14764
  }
16848 stevensc 14765
 
16825 efrain 14766
  .pb-xxl-7 {
14767
    padding-bottom: 6rem !important;
14768
  }
16848 stevensc 14769
 
16825 efrain 14770
  .ps-xxl-0 {
14771
    padding-left: 0 !important;
14772
  }
16848 stevensc 14773
 
16825 efrain 14774
  .ps-xxl-1 {
14775
    padding-left: 0.25rem !important;
14776
  }
16848 stevensc 14777
 
16825 efrain 14778
  .ps-xxl-2 {
14779
    padding-left: 0.5rem !important;
14780
  }
16848 stevensc 14781
 
16825 efrain 14782
  .ps-xxl-3 {
14783
    padding-left: 1rem !important;
14784
  }
16848 stevensc 14785
 
16825 efrain 14786
  .ps-xxl-4 {
14787
    padding-left: 1.5rem !important;
14788
  }
16848 stevensc 14789
 
16825 efrain 14790
  .ps-xxl-5 {
14791
    padding-left: 3rem !important;
14792
  }
16848 stevensc 14793
 
16825 efrain 14794
  .ps-xxl-6 {
14795
    padding-left: 4.5rem !important;
14796
  }
16848 stevensc 14797
 
16825 efrain 14798
  .ps-xxl-7 {
14799
    padding-left: 6rem !important;
14800
  }
16848 stevensc 14801
 
16825 efrain 14802
  .gap-xxl-0 {
14803
    gap: 0 !important;
14804
  }
16848 stevensc 14805
 
16825 efrain 14806
  .gap-xxl-1 {
14807
    gap: 0.25rem !important;
14808
  }
16848 stevensc 14809
 
16825 efrain 14810
  .gap-xxl-2 {
14811
    gap: 0.5rem !important;
14812
  }
16848 stevensc 14813
 
16825 efrain 14814
  .gap-xxl-3 {
14815
    gap: 1rem !important;
14816
  }
16848 stevensc 14817
 
16825 efrain 14818
  .gap-xxl-4 {
14819
    gap: 1.5rem !important;
14820
  }
16848 stevensc 14821
 
16825 efrain 14822
  .gap-xxl-5 {
14823
    gap: 3rem !important;
14824
  }
16848 stevensc 14825
 
16825 efrain 14826
  .gap-xxl-6 {
14827
    gap: 4.5rem !important;
14828
  }
16848 stevensc 14829
 
16825 efrain 14830
  .gap-xxl-7 {
14831
    gap: 6rem !important;
14832
  }
16848 stevensc 14833
 
16825 efrain 14834
  .text-xxl-start {
14835
    text-align: left !important;
14836
  }
16848 stevensc 14837
 
16825 efrain 14838
  .text-xxl-end {
14839
    text-align: right !important;
14840
  }
16848 stevensc 14841
 
16825 efrain 14842
  .text-xxl-center {
14843
    text-align: center !important;
14844
  }
14845
}
16848 stevensc 14846
 
16825 efrain 14847
@media (min-width: 1200px) {
14848
  .fs-1 {
14849
    font-size: 2.5rem !important;
14850
  }
16848 stevensc 14851
 
16825 efrain 14852
  .fs-2 {
14853
    font-size: 2rem !important;
14854
  }
16848 stevensc 14855
 
16825 efrain 14856
  .fs-3 {
14857
    font-size: 1.5rem !important;
14858
  }
14859
}
16848 stevensc 14860
 
16825 efrain 14861
@media print {
14862
  .d-print-inline {
14863
    display: inline !important;
14864
  }
16848 stevensc 14865
 
16825 efrain 14866
  .d-print-inline-block {
14867
    display: inline-block !important;
14868
  }
16848 stevensc 14869
 
16825 efrain 14870
  .d-print-block {
14871
    display: block !important;
14872
  }
16848 stevensc 14873
 
16825 efrain 14874
  .d-print-grid {
14875
    display: grid !important;
14876
  }
16848 stevensc 14877
 
16825 efrain 14878
  .d-print-table {
14879
    display: table !important;
14880
  }
16848 stevensc 14881
 
16825 efrain 14882
  .d-print-table-row {
14883
    display: table-row !important;
14884
  }
16848 stevensc 14885
 
16825 efrain 14886
  .d-print-table-cell {
14887
    display: table-cell !important;
14888
  }
16848 stevensc 14889
 
16825 efrain 14890
  .d-print-flex {
14891
    display: flex !important;
14892
  }
16848 stevensc 14893
 
16825 efrain 14894
  .d-print-inline-flex {
14895
    display: inline-flex !important;
14896
  }
16848 stevensc 14897
 
16825 efrain 14898
  .d-print-none {
14899
    display: none !important;
14900
  }
14901
}
16848 stevensc 14902
 
16825 efrain 14903
@keyframes dropdownAnimation {
14904
  from {
14905
    opacity: 0;
14906
    transform: translate3d(0, 20px, 0);
14907
  }
16848 stevensc 14908
 
16825 efrain 14909
  to {
14910
    opacity: 1;
14911
    transform: none;
14912
    transform: translate3d(0, 0px, 0);
14913
  }
14914
}
16848 stevensc 14915
 
14916
.dropdownAnimation,
14917
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14918
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14919
  -webkit-animation-name: dropdownAnimation;
14920
  animation-name: dropdownAnimation;
14921
  -webkit-animation-duration: 0.2s;
14922
  animation-duration: 0.2s;
14923
  -webkit-animation-fill-mode: both;
14924
  animation-fill-mode: both;
14925
}
14926
 
14927
@keyframes fadeOut {
14928
  from {
14929
    opacity: 1;
14930
  }
16848 stevensc 14931
 
16825 efrain 14932
  to {
14933
    opacity: 0;
14934
  }
14935
}
16848 stevensc 14936
 
16825 efrain 14937
.fadeOut {
14938
  animation-name: fadeOUt;
14939
}
14940
 
14941
@keyframes fadeInUp {
14942
  from {
14943
    opacity: 0;
14944
    transform: translate3d(0, 100%, 0);
14945
  }
16848 stevensc 14946
 
16825 efrain 14947
  to {
14948
    opacity: 1;
14949
    transform: none;
14950
  }
14951
}
16848 stevensc 14952
 
16825 efrain 14953
.fadeInUp {
14954
  animation-name: fadeInUp;
14955
}
14956
 
16848 stevensc 14957
.infinite-spin,
14958
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14959
  animation-name: spin;
14960
  animation-duration: 3s;
14961
  animation-iteration-count: infinite;
14962
  animation-timing-function: linear;
14963
}
16848 stevensc 14964
 
16825 efrain 14965
@keyframes spin {
14966
  from {
14967
    transform: rotate(0deg);
14968
  }
16848 stevensc 14969
 
16825 efrain 14970
  to {
14971
    transform: rotate(360deg);
14972
  }
14973
}
14974
 
16848 stevensc 14975
.pulse,
14976
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14977
  animation-name: pulse;
14978
  animation-duration: 0.9s;
14979
  animation-iteration-count: infinite;
14980
  animation-timing-function: ease-out;
14981
}
16848 stevensc 14982
 
16825 efrain 14983
@keyframes pulse {
14984
  0% {
14985
    opacity: 1;
14986
    width: 7px;
14987
    height: 7px;
14988
    left: 0;
14989
    top: 0;
14990
  }
16848 stevensc 14991
 
16825 efrain 14992
  95% {
14993
    opacity: 0.1;
14994
    left: -10.5px;
14995
    top: -10.5px;
14996
    width: 28px;
14997
    height: 28px;
14998
  }
16848 stevensc 14999
 
16825 efrain 15000
  100% {
15001
    opacity: 0;
15002
    width: 7px;
15003
    height: 7px;
15004
    left: 0;
15005
    top: 0;
15006
  }
15007
}
15008
 
15009
.wd-5 {
15010
  width: 5px;
15011
}
15012
 
15013
.wd-5p {
15014
  width: 5%;
15015
}
15016
 
15017
.mx-wd-5p {
15018
  max-width: 5%;
15019
}
15020
 
15021
.mn-wd-5p {
15022
  min-width: 5%;
15023
}
15024
 
15025
.wd-5-f {
15026
  width: 5px !important;
15027
}
15028
 
15029
.wd-5p-f {
15030
  width: 5% !important;
15031
}
15032
 
15033
.mx-wd-5p-f {
15034
  max-width: 5% !important;
15035
}
15036
 
15037
.mn-wd-5p-f {
15038
  min-width: 5% !important;
15039
}
15040
 
15041
.wd-10 {
15042
  width: 10px;
15043
}
15044
 
15045
.wd-10p {
15046
  width: 10%;
15047
}
15048
 
15049
.mx-wd-10p {
15050
  max-width: 10%;
15051
}
15052
 
15053
.mn-wd-10p {
15054
  min-width: 10%;
15055
}
15056
 
15057
.wd-10-f {
15058
  width: 10px !important;
15059
}
15060
 
15061
.wd-10p-f {
15062
  width: 10% !important;
15063
}
15064
 
15065
.mx-wd-10p-f {
15066
  max-width: 10% !important;
15067
}
15068
 
15069
.mn-wd-10p-f {
15070
  min-width: 10% !important;
15071
}
15072
 
15073
.wd-15 {
15074
  width: 15px;
15075
}
15076
 
15077
.wd-15p {
15078
  width: 15%;
15079
}
15080
 
15081
.mx-wd-15p {
15082
  max-width: 15%;
15083
}
15084
 
15085
.mn-wd-15p {
15086
  min-width: 15%;
15087
}
15088
 
15089
.wd-15-f {
15090
  width: 15px !important;
15091
}
15092
 
15093
.wd-15p-f {
15094
  width: 15% !important;
15095
}
15096
 
15097
.mx-wd-15p-f {
15098
  max-width: 15% !important;
15099
}
15100
 
15101
.mn-wd-15p-f {
15102
  min-width: 15% !important;
15103
}
15104
 
15105
.wd-20 {
15106
  width: 20px;
15107
}
15108
 
15109
.wd-20p {
15110
  width: 20%;
15111
}
15112
 
15113
.mx-wd-20p {
15114
  max-width: 20%;
15115
}
15116
 
15117
.mn-wd-20p {
15118
  min-width: 20%;
15119
}
15120
 
15121
.wd-20-f {
15122
  width: 20px !important;
15123
}
15124
 
15125
.wd-20p-f {
15126
  width: 20% !important;
15127
}
15128
 
15129
.mx-wd-20p-f {
15130
  max-width: 20% !important;
15131
}
15132
 
15133
.mn-wd-20p-f {
15134
  min-width: 20% !important;
15135
}
15136
 
15137
.wd-25 {
15138
  width: 25px;
15139
}
15140
 
15141
.wd-25p {
15142
  width: 25%;
15143
}
15144
 
15145
.mx-wd-25p {
15146
  max-width: 25%;
15147
}
15148
 
15149
.mn-wd-25p {
15150
  min-width: 25%;
15151
}
15152
 
15153
.wd-25-f {
15154
  width: 25px !important;
15155
}
15156
 
15157
.wd-25p-f {
15158
  width: 25% !important;
15159
}
15160
 
15161
.mx-wd-25p-f {
15162
  max-width: 25% !important;
15163
}
15164
 
15165
.mn-wd-25p-f {
15166
  min-width: 25% !important;
15167
}
15168
 
15169
.wd-30 {
15170
  width: 30px;
15171
}
15172
 
15173
.wd-30p {
15174
  width: 30%;
15175
}
15176
 
15177
.mx-wd-30p {
15178
  max-width: 30%;
15179
}
15180
 
15181
.mn-wd-30p {
15182
  min-width: 30%;
15183
}
15184
 
15185
.wd-30-f {
15186
  width: 30px !important;
15187
}
15188
 
15189
.wd-30p-f {
15190
  width: 30% !important;
15191
}
15192
 
15193
.mx-wd-30p-f {
15194
  max-width: 30% !important;
15195
}
15196
 
15197
.mn-wd-30p-f {
15198
  min-width: 30% !important;
15199
}
15200
 
15201
.wd-35 {
15202
  width: 35px;
15203
}
15204
 
15205
.wd-35p {
15206
  width: 35%;
15207
}
15208
 
15209
.mx-wd-35p {
15210
  max-width: 35%;
15211
}
15212
 
15213
.mn-wd-35p {
15214
  min-width: 35%;
15215
}
15216
 
15217
.wd-35-f {
15218
  width: 35px !important;
15219
}
15220
 
15221
.wd-35p-f {
15222
  width: 35% !important;
15223
}
15224
 
15225
.mx-wd-35p-f {
15226
  max-width: 35% !important;
15227
}
15228
 
15229
.mn-wd-35p-f {
15230
  min-width: 35% !important;
15231
}
15232
 
15233
.wd-40 {
15234
  width: 40px;
15235
}
15236
 
15237
.wd-40p {
15238
  width: 40%;
15239
}
15240
 
15241
.mx-wd-40p {
15242
  max-width: 40%;
15243
}
15244
 
15245
.mn-wd-40p {
15246
  min-width: 40%;
15247
}
15248
 
15249
.wd-40-f {
15250
  width: 40px !important;
15251
}
15252
 
15253
.wd-40p-f {
15254
  width: 40% !important;
15255
}
15256
 
15257
.mx-wd-40p-f {
15258
  max-width: 40% !important;
15259
}
15260
 
15261
.mn-wd-40p-f {
15262
  min-width: 40% !important;
15263
}
15264
 
15265
.wd-45 {
15266
  width: 45px;
15267
}
15268
 
15269
.wd-45p {
15270
  width: 45%;
15271
}
15272
 
15273
.mx-wd-45p {
15274
  max-width: 45%;
15275
}
15276
 
15277
.mn-wd-45p {
15278
  min-width: 45%;
15279
}
15280
 
15281
.wd-45-f {
15282
  width: 45px !important;
15283
}
15284
 
15285
.wd-45p-f {
15286
  width: 45% !important;
15287
}
15288
 
15289
.mx-wd-45p-f {
15290
  max-width: 45% !important;
15291
}
15292
 
15293
.mn-wd-45p-f {
15294
  min-width: 45% !important;
15295
}
15296
 
15297
.wd-50 {
15298
  width: 50px;
15299
}
15300
 
15301
.wd-50p {
15302
  width: 50%;
15303
}
15304
 
15305
.mx-wd-50p {
15306
  max-width: 50%;
15307
}
15308
 
15309
.mn-wd-50p {
15310
  min-width: 50%;
15311
}
15312
 
15313
.wd-50-f {
15314
  width: 50px !important;
15315
}
15316
 
15317
.wd-50p-f {
15318
  width: 50% !important;
15319
}
15320
 
15321
.mx-wd-50p-f {
15322
  max-width: 50% !important;
15323
}
15324
 
15325
.mn-wd-50p-f {
15326
  min-width: 50% !important;
15327
}
15328
 
15329
.wd-55 {
15330
  width: 55px;
15331
}
15332
 
15333
.wd-55p {
15334
  width: 55%;
15335
}
15336
 
15337
.mx-wd-55p {
15338
  max-width: 55%;
15339
}
15340
 
15341
.mn-wd-55p {
15342
  min-width: 55%;
15343
}
15344
 
15345
.wd-55-f {
15346
  width: 55px !important;
15347
}
15348
 
15349
.wd-55p-f {
15350
  width: 55% !important;
15351
}
15352
 
15353
.mx-wd-55p-f {
15354
  max-width: 55% !important;
15355
}
15356
 
15357
.mn-wd-55p-f {
15358
  min-width: 55% !important;
15359
}
15360
 
15361
.wd-60 {
15362
  width: 60px;
15363
}
15364
 
15365
.wd-60p {
15366
  width: 60%;
15367
}
15368
 
15369
.mx-wd-60p {
15370
  max-width: 60%;
15371
}
15372
 
15373
.mn-wd-60p {
15374
  min-width: 60%;
15375
}
15376
 
15377
.wd-60-f {
15378
  width: 60px !important;
15379
}
15380
 
15381
.wd-60p-f {
15382
  width: 60% !important;
15383
}
15384
 
15385
.mx-wd-60p-f {
15386
  max-width: 60% !important;
15387
}
15388
 
15389
.mn-wd-60p-f {
15390
  min-width: 60% !important;
15391
}
15392
 
15393
.wd-65 {
15394
  width: 65px;
15395
}
15396
 
15397
.wd-65p {
15398
  width: 65%;
15399
}
15400
 
15401
.mx-wd-65p {
15402
  max-width: 65%;
15403
}
15404
 
15405
.mn-wd-65p {
15406
  min-width: 65%;
15407
}
15408
 
15409
.wd-65-f {
15410
  width: 65px !important;
15411
}
15412
 
15413
.wd-65p-f {
15414
  width: 65% !important;
15415
}
15416
 
15417
.mx-wd-65p-f {
15418
  max-width: 65% !important;
15419
}
15420
 
15421
.mn-wd-65p-f {
15422
  min-width: 65% !important;
15423
}
15424
 
15425
.wd-70 {
15426
  width: 70px;
15427
}
15428
 
15429
.wd-70p {
15430
  width: 70%;
15431
}
15432
 
15433
.mx-wd-70p {
15434
  max-width: 70%;
15435
}
15436
 
15437
.mn-wd-70p {
15438
  min-width: 70%;
15439
}
15440
 
15441
.wd-70-f {
15442
  width: 70px !important;
15443
}
15444
 
15445
.wd-70p-f {
15446
  width: 70% !important;
15447
}
15448
 
15449
.mx-wd-70p-f {
15450
  max-width: 70% !important;
15451
}
15452
 
15453
.mn-wd-70p-f {
15454
  min-width: 70% !important;
15455
}
15456
 
15457
.wd-75 {
15458
  width: 75px;
15459
}
15460
 
15461
.wd-75p {
15462
  width: 75%;
15463
}
15464
 
15465
.mx-wd-75p {
15466
  max-width: 75%;
15467
}
15468
 
15469
.mn-wd-75p {
15470
  min-width: 75%;
15471
}
15472
 
15473
.wd-75-f {
15474
  width: 75px !important;
15475
}
15476
 
15477
.wd-75p-f {
15478
  width: 75% !important;
15479
}
15480
 
15481
.mx-wd-75p-f {
15482
  max-width: 75% !important;
15483
}
15484
 
15485
.mn-wd-75p-f {
15486
  min-width: 75% !important;
15487
}
15488
 
15489
.wd-80 {
15490
  width: 80px;
15491
}
15492
 
15493
.wd-80p {
15494
  width: 80%;
15495
}
15496
 
15497
.mx-wd-80p {
15498
  max-width: 80%;
15499
}
15500
 
15501
.mn-wd-80p {
15502
  min-width: 80%;
15503
}
15504
 
15505
.wd-80-f {
15506
  width: 80px !important;
15507
}
15508
 
15509
.wd-80p-f {
15510
  width: 80% !important;
15511
}
15512
 
15513
.mx-wd-80p-f {
15514
  max-width: 80% !important;
15515
}
15516
 
15517
.mn-wd-80p-f {
15518
  min-width: 80% !important;
15519
}
15520
 
15521
.wd-85 {
15522
  width: 85px;
15523
}
15524
 
15525
.wd-85p {
15526
  width: 85%;
15527
}
15528
 
15529
.mx-wd-85p {
15530
  max-width: 85%;
15531
}
15532
 
15533
.mn-wd-85p {
15534
  min-width: 85%;
15535
}
15536
 
15537
.wd-85-f {
15538
  width: 85px !important;
15539
}
15540
 
15541
.wd-85p-f {
15542
  width: 85% !important;
15543
}
15544
 
15545
.mx-wd-85p-f {
15546
  max-width: 85% !important;
15547
}
15548
 
15549
.mn-wd-85p-f {
15550
  min-width: 85% !important;
15551
}
15552
 
15553
.wd-90 {
15554
  width: 90px;
15555
}
15556
 
15557
.wd-90p {
15558
  width: 90%;
15559
}
15560
 
15561
.mx-wd-90p {
15562
  max-width: 90%;
15563
}
15564
 
15565
.mn-wd-90p {
15566
  min-width: 90%;
15567
}
15568
 
15569
.wd-90-f {
15570
  width: 90px !important;
15571
}
15572
 
15573
.wd-90p-f {
15574
  width: 90% !important;
15575
}
15576
 
15577
.mx-wd-90p-f {
15578
  max-width: 90% !important;
15579
}
15580
 
15581
.mn-wd-90p-f {
15582
  min-width: 90% !important;
15583
}
15584
 
15585
.wd-95 {
15586
  width: 95px;
15587
}
15588
 
15589
.wd-95p {
15590
  width: 95%;
15591
}
15592
 
15593
.mx-wd-95p {
15594
  max-width: 95%;
15595
}
15596
 
15597
.mn-wd-95p {
15598
  min-width: 95%;
15599
}
15600
 
15601
.wd-95-f {
15602
  width: 95px !important;
15603
}
15604
 
15605
.wd-95p-f {
15606
  width: 95% !important;
15607
}
15608
 
15609
.mx-wd-95p-f {
15610
  max-width: 95% !important;
15611
}
15612
 
15613
.mn-wd-95p-f {
15614
  min-width: 95% !important;
15615
}
15616
 
15617
.wd-100 {
15618
  width: 100px;
15619
}
15620
 
15621
.wd-100p {
15622
  width: 100%;
15623
}
15624
 
15625
.mx-wd-100p {
15626
  max-width: 100%;
15627
}
15628
 
15629
.mn-wd-100p {
15630
  min-width: 100%;
15631
}
15632
 
15633
.wd-100-f {
15634
  width: 100px !important;
15635
}
15636
 
15637
.wd-100p-f {
15638
  width: 100% !important;
15639
}
15640
 
15641
.mx-wd-100p-f {
15642
  max-width: 100% !important;
15643
}
15644
 
15645
.mn-wd-100p-f {
15646
  min-width: 100% !important;
15647
}
15648
 
15649
.wd-150 {
15650
  width: 150px;
15651
}
15652
 
15653
.wd-150-f {
15654
  width: 150px !important;
15655
}
15656
 
15657
.wd-200 {
15658
  width: 200px;
15659
}
15660
 
15661
.wd-200-f {
15662
  width: 200px !important;
15663
}
15664
 
15665
.wd-250 {
15666
  width: 250px;
15667
}
15668
 
15669
.wd-250-f {
15670
  width: 250px !important;
15671
}
15672
 
15673
.wd-300 {
15674
  width: 300px;
15675
}
15676
 
15677
.wd-300-f {
15678
  width: 300px !important;
15679
}
15680
 
15681
.wd-350 {
15682
  width: 350px;
15683
}
15684
 
15685
.wd-350-f {
15686
  width: 350px !important;
15687
}
15688
 
15689
.wd-400 {
15690
  width: 400px;
15691
}
15692
 
15693
.wd-400-f {
15694
  width: 400px !important;
15695
}
15696
 
15697
.wd-450 {
15698
  width: 450px;
15699
}
15700
 
15701
.wd-450-f {
15702
  width: 450px !important;
15703
}
15704
 
15705
.wd-500 {
15706
  width: 500px;
15707
}
15708
 
15709
.wd-500-f {
15710
  width: 500px !important;
15711
}
15712
 
15713
.wd-550 {
15714
  width: 550px;
15715
}
15716
 
15717
.wd-550-f {
15718
  width: 550px !important;
15719
}
15720
 
15721
.wd-600 {
15722
  width: 600px;
15723
}
15724
 
15725
.wd-600-f {
15726
  width: 600px !important;
15727
}
15728
 
15729
.wd-650 {
15730
  width: 650px;
15731
}
15732
 
15733
.wd-650-f {
15734
  width: 650px !important;
15735
}
15736
 
15737
.wd-700 {
15738
  width: 700px;
15739
}
15740
 
15741
.wd-700-f {
15742
  width: 700px !important;
15743
}
15744
 
15745
.wd-750 {
15746
  width: 750px;
15747
}
15748
 
15749
.wd-750-f {
15750
  width: 750px !important;
15751
}
15752
 
15753
.wd-800 {
15754
  width: 800px;
15755
}
15756
 
15757
.wd-800-f {
15758
  width: 800px !important;
15759
}
15760
 
15761
.wd-850 {
15762
  width: 850px;
15763
}
15764
 
15765
.wd-850-f {
15766
  width: 850px !important;
15767
}
15768
 
15769
.wd-900 {
15770
  width: 900px;
15771
}
15772
 
15773
.wd-900-f {
15774
  width: 900px !important;
15775
}
15776
 
15777
.wd-950 {
15778
  width: 950px;
15779
}
15780
 
15781
.wd-950-f {
15782
  width: 950px !important;
15783
}
15784
 
15785
.wd-1000 {
15786
  width: 1000px;
15787
}
15788
 
15789
.wd-1000-f {
15790
  width: 1000px !important;
15791
}
15792
 
15793
@media (min-width: 480px) {
15794
  .wd-xs-5 {
15795
    width: 5px;
15796
  }
16848 stevensc 15797
 
16825 efrain 15798
  .wd-xs-5p {
15799
    width: 5%;
15800
  }
16848 stevensc 15801
 
16825 efrain 15802
  .mx-wd-xs-5p {
15803
    max-width: 5%;
15804
  }
16848 stevensc 15805
 
16825 efrain 15806
  .mn-wd-xs-5p {
15807
    min-width: 5%;
15808
  }
16848 stevensc 15809
 
16825 efrain 15810
  .wd-xs-5-f {
15811
    width: 5px !important;
15812
  }
16848 stevensc 15813
 
16825 efrain 15814
  .wd-xs-5p-f {
15815
    width: 5% !important;
15816
  }
16848 stevensc 15817
 
16825 efrain 15818
  .mx-wd-xs-5p-f {
15819
    max-width: 5% !important;
15820
  }
16848 stevensc 15821
 
16825 efrain 15822
  .mn-wd-xs-5p-f {
15823
    min-width: 5% !important;
15824
  }
16848 stevensc 15825
 
16825 efrain 15826
  .wd-xs-10 {
15827
    width: 10px;
15828
  }
16848 stevensc 15829
 
16825 efrain 15830
  .wd-xs-10p {
15831
    width: 10%;
15832
  }
16848 stevensc 15833
 
16825 efrain 15834
  .mx-wd-xs-10p {
15835
    max-width: 10%;
15836
  }
16848 stevensc 15837
 
16825 efrain 15838
  .mn-wd-xs-10p {
15839
    min-width: 10%;
15840
  }
16848 stevensc 15841
 
16825 efrain 15842
  .wd-xs-10-f {
15843
    width: 10px !important;
15844
  }
16848 stevensc 15845
 
16825 efrain 15846
  .wd-xs-10p-f {
15847
    width: 10% !important;
15848
  }
16848 stevensc 15849
 
16825 efrain 15850
  .mx-wd-xs-10p-f {
15851
    max-width: 10% !important;
15852
  }
16848 stevensc 15853
 
16825 efrain 15854
  .mn-wd-xs-10p-f {
15855
    min-width: 10% !important;
15856
  }
16848 stevensc 15857
 
16825 efrain 15858
  .wd-xs-15 {
15859
    width: 15px;
15860
  }
16848 stevensc 15861
 
16825 efrain 15862
  .wd-xs-15p {
15863
    width: 15%;
15864
  }
16848 stevensc 15865
 
16825 efrain 15866
  .mx-wd-xs-15p {
15867
    max-width: 15%;
15868
  }
16848 stevensc 15869
 
16825 efrain 15870
  .mn-wd-xs-15p {
15871
    min-width: 15%;
15872
  }
16848 stevensc 15873
 
16825 efrain 15874
  .wd-xs-15-f {
15875
    width: 15px !important;
15876
  }
16848 stevensc 15877
 
16825 efrain 15878
  .wd-xs-15p-f {
15879
    width: 15% !important;
15880
  }
16848 stevensc 15881
 
16825 efrain 15882
  .mx-wd-xs-15p-f {
15883
    max-width: 15% !important;
15884
  }
16848 stevensc 15885
 
16825 efrain 15886
  .mn-wd-xs-15p-f {
15887
    min-width: 15% !important;
15888
  }
16848 stevensc 15889
 
16825 efrain 15890
  .wd-xs-20 {
15891
    width: 20px;
15892
  }
16848 stevensc 15893
 
16825 efrain 15894
  .wd-xs-20p {
15895
    width: 20%;
15896
  }
16848 stevensc 15897
 
16825 efrain 15898
  .mx-wd-xs-20p {
15899
    max-width: 20%;
15900
  }
16848 stevensc 15901
 
16825 efrain 15902
  .mn-wd-xs-20p {
15903
    min-width: 20%;
15904
  }
16848 stevensc 15905
 
16825 efrain 15906
  .wd-xs-20-f {
15907
    width: 20px !important;
15908
  }
16848 stevensc 15909
 
16825 efrain 15910
  .wd-xs-20p-f {
15911
    width: 20% !important;
15912
  }
16848 stevensc 15913
 
16825 efrain 15914
  .mx-wd-xs-20p-f {
15915
    max-width: 20% !important;
15916
  }
16848 stevensc 15917
 
16825 efrain 15918
  .mn-wd-xs-20p-f {
15919
    min-width: 20% !important;
15920
  }
16848 stevensc 15921
 
16825 efrain 15922
  .wd-xs-25 {
15923
    width: 25px;
15924
  }
16848 stevensc 15925
 
16825 efrain 15926
  .wd-xs-25p {
15927
    width: 25%;
15928
  }
16848 stevensc 15929
 
16825 efrain 15930
  .mx-wd-xs-25p {
15931
    max-width: 25%;
15932
  }
16848 stevensc 15933
 
16825 efrain 15934
  .mn-wd-xs-25p {
15935
    min-width: 25%;
15936
  }
16848 stevensc 15937
 
16825 efrain 15938
  .wd-xs-25-f {
15939
    width: 25px !important;
15940
  }
16848 stevensc 15941
 
16825 efrain 15942
  .wd-xs-25p-f {
15943
    width: 25% !important;
15944
  }
16848 stevensc 15945
 
16825 efrain 15946
  .mx-wd-xs-25p-f {
15947
    max-width: 25% !important;
15948
  }
16848 stevensc 15949
 
16825 efrain 15950
  .mn-wd-xs-25p-f {
15951
    min-width: 25% !important;
15952
  }
16848 stevensc 15953
 
16825 efrain 15954
  .wd-xs-30 {
15955
    width: 30px;
15956
  }
16848 stevensc 15957
 
16825 efrain 15958
  .wd-xs-30p {
15959
    width: 30%;
15960
  }
16848 stevensc 15961
 
16825 efrain 15962
  .mx-wd-xs-30p {
15963
    max-width: 30%;
15964
  }
16848 stevensc 15965
 
16825 efrain 15966
  .mn-wd-xs-30p {
15967
    min-width: 30%;
15968
  }
16848 stevensc 15969
 
16825 efrain 15970
  .wd-xs-30-f {
15971
    width: 30px !important;
15972
  }
16848 stevensc 15973
 
16825 efrain 15974
  .wd-xs-30p-f {
15975
    width: 30% !important;
15976
  }
16848 stevensc 15977
 
16825 efrain 15978
  .mx-wd-xs-30p-f {
15979
    max-width: 30% !important;
15980
  }
16848 stevensc 15981
 
16825 efrain 15982
  .mn-wd-xs-30p-f {
15983
    min-width: 30% !important;
15984
  }
16848 stevensc 15985
 
16825 efrain 15986
  .wd-xs-35 {
15987
    width: 35px;
15988
  }
16848 stevensc 15989
 
16825 efrain 15990
  .wd-xs-35p {
15991
    width: 35%;
15992
  }
16848 stevensc 15993
 
16825 efrain 15994
  .mx-wd-xs-35p {
15995
    max-width: 35%;
15996
  }
16848 stevensc 15997
 
16825 efrain 15998
  .mn-wd-xs-35p {
15999
    min-width: 35%;
16000
  }
16848 stevensc 16001
 
16825 efrain 16002
  .wd-xs-35-f {
16003
    width: 35px !important;
16004
  }
16848 stevensc 16005
 
16825 efrain 16006
  .wd-xs-35p-f {
16007
    width: 35% !important;
16008
  }
16848 stevensc 16009
 
16825 efrain 16010
  .mx-wd-xs-35p-f {
16011
    max-width: 35% !important;
16012
  }
16848 stevensc 16013
 
16825 efrain 16014
  .mn-wd-xs-35p-f {
16015
    min-width: 35% !important;
16016
  }
16848 stevensc 16017
 
16825 efrain 16018
  .wd-xs-40 {
16019
    width: 40px;
16020
  }
16848 stevensc 16021
 
16825 efrain 16022
  .wd-xs-40p {
16023
    width: 40%;
16024
  }
16848 stevensc 16025
 
16825 efrain 16026
  .mx-wd-xs-40p {
16027
    max-width: 40%;
16028
  }
16848 stevensc 16029
 
16825 efrain 16030
  .mn-wd-xs-40p {
16031
    min-width: 40%;
16032
  }
16848 stevensc 16033
 
16825 efrain 16034
  .wd-xs-40-f {
16035
    width: 40px !important;
16036
  }
16848 stevensc 16037
 
16825 efrain 16038
  .wd-xs-40p-f {
16039
    width: 40% !important;
16040
  }
16848 stevensc 16041
 
16825 efrain 16042
  .mx-wd-xs-40p-f {
16043
    max-width: 40% !important;
16044
  }
16848 stevensc 16045
 
16825 efrain 16046
  .mn-wd-xs-40p-f {
16047
    min-width: 40% !important;
16048
  }
16848 stevensc 16049
 
16825 efrain 16050
  .wd-xs-45 {
16051
    width: 45px;
16052
  }
16848 stevensc 16053
 
16825 efrain 16054
  .wd-xs-45p {
16055
    width: 45%;
16056
  }
16848 stevensc 16057
 
16825 efrain 16058
  .mx-wd-xs-45p {
16059
    max-width: 45%;
16060
  }
16848 stevensc 16061
 
16825 efrain 16062
  .mn-wd-xs-45p {
16063
    min-width: 45%;
16064
  }
16848 stevensc 16065
 
16825 efrain 16066
  .wd-xs-45-f {
16067
    width: 45px !important;
16068
  }
16848 stevensc 16069
 
16825 efrain 16070
  .wd-xs-45p-f {
16071
    width: 45% !important;
16072
  }
16848 stevensc 16073
 
16825 efrain 16074
  .mx-wd-xs-45p-f {
16075
    max-width: 45% !important;
16076
  }
16848 stevensc 16077
 
16825 efrain 16078
  .mn-wd-xs-45p-f {
16079
    min-width: 45% !important;
16080
  }
16848 stevensc 16081
 
16825 efrain 16082
  .wd-xs-50 {
16083
    width: 50px;
16084
  }
16848 stevensc 16085
 
16825 efrain 16086
  .wd-xs-50p {
16087
    width: 50%;
16088
  }
16848 stevensc 16089
 
16825 efrain 16090
  .mx-wd-xs-50p {
16091
    max-width: 50%;
16092
  }
16848 stevensc 16093
 
16825 efrain 16094
  .mn-wd-xs-50p {
16095
    min-width: 50%;
16096
  }
16848 stevensc 16097
 
16825 efrain 16098
  .wd-xs-50-f {
16099
    width: 50px !important;
16100
  }
16848 stevensc 16101
 
16825 efrain 16102
  .wd-xs-50p-f {
16103
    width: 50% !important;
16104
  }
16848 stevensc 16105
 
16825 efrain 16106
  .mx-wd-xs-50p-f {
16107
    max-width: 50% !important;
16108
  }
16848 stevensc 16109
 
16825 efrain 16110
  .mn-wd-xs-50p-f {
16111
    min-width: 50% !important;
16112
  }
16848 stevensc 16113
 
16825 efrain 16114
  .wd-xs-55 {
16115
    width: 55px;
16116
  }
16848 stevensc 16117
 
16825 efrain 16118
  .wd-xs-55p {
16119
    width: 55%;
16120
  }
16848 stevensc 16121
 
16825 efrain 16122
  .mx-wd-xs-55p {
16123
    max-width: 55%;
16124
  }
16848 stevensc 16125
 
16825 efrain 16126
  .mn-wd-xs-55p {
16127
    min-width: 55%;
16128
  }
16848 stevensc 16129
 
16825 efrain 16130
  .wd-xs-55-f {
16131
    width: 55px !important;
16132
  }
16848 stevensc 16133
 
16825 efrain 16134
  .wd-xs-55p-f {
16135
    width: 55% !important;
16136
  }
16848 stevensc 16137
 
16825 efrain 16138
  .mx-wd-xs-55p-f {
16139
    max-width: 55% !important;
16140
  }
16848 stevensc 16141
 
16825 efrain 16142
  .mn-wd-xs-55p-f {
16143
    min-width: 55% !important;
16144
  }
16848 stevensc 16145
 
16825 efrain 16146
  .wd-xs-60 {
16147
    width: 60px;
16148
  }
16848 stevensc 16149
 
16825 efrain 16150
  .wd-xs-60p {
16151
    width: 60%;
16152
  }
16848 stevensc 16153
 
16825 efrain 16154
  .mx-wd-xs-60p {
16155
    max-width: 60%;
16156
  }
16848 stevensc 16157
 
16825 efrain 16158
  .mn-wd-xs-60p {
16159
    min-width: 60%;
16160
  }
16848 stevensc 16161
 
16825 efrain 16162
  .wd-xs-60-f {
16163
    width: 60px !important;
16164
  }
16848 stevensc 16165
 
16825 efrain 16166
  .wd-xs-60p-f {
16167
    width: 60% !important;
16168
  }
16848 stevensc 16169
 
16825 efrain 16170
  .mx-wd-xs-60p-f {
16171
    max-width: 60% !important;
16172
  }
16848 stevensc 16173
 
16825 efrain 16174
  .mn-wd-xs-60p-f {
16175
    min-width: 60% !important;
16176
  }
16848 stevensc 16177
 
16825 efrain 16178
  .wd-xs-65 {
16179
    width: 65px;
16180
  }
16848 stevensc 16181
 
16825 efrain 16182
  .wd-xs-65p {
16183
    width: 65%;
16184
  }
16848 stevensc 16185
 
16825 efrain 16186
  .mx-wd-xs-65p {
16187
    max-width: 65%;
16188
  }
16848 stevensc 16189
 
16825 efrain 16190
  .mn-wd-xs-65p {
16191
    min-width: 65%;
16192
  }
16848 stevensc 16193
 
16825 efrain 16194
  .wd-xs-65-f {
16195
    width: 65px !important;
16196
  }
16848 stevensc 16197
 
16825 efrain 16198
  .wd-xs-65p-f {
16199
    width: 65% !important;
16200
  }
16848 stevensc 16201
 
16825 efrain 16202
  .mx-wd-xs-65p-f {
16203
    max-width: 65% !important;
16204
  }
16848 stevensc 16205
 
16825 efrain 16206
  .mn-wd-xs-65p-f {
16207
    min-width: 65% !important;
16208
  }
16848 stevensc 16209
 
16825 efrain 16210
  .wd-xs-70 {
16211
    width: 70px;
16212
  }
16848 stevensc 16213
 
16825 efrain 16214
  .wd-xs-70p {
16215
    width: 70%;
16216
  }
16848 stevensc 16217
 
16825 efrain 16218
  .mx-wd-xs-70p {
16219
    max-width: 70%;
16220
  }
16848 stevensc 16221
 
16825 efrain 16222
  .mn-wd-xs-70p {
16223
    min-width: 70%;
16224
  }
16848 stevensc 16225
 
16825 efrain 16226
  .wd-xs-70-f {
16227
    width: 70px !important;
16228
  }
16848 stevensc 16229
 
16825 efrain 16230
  .wd-xs-70p-f {
16231
    width: 70% !important;
16232
  }
16848 stevensc 16233
 
16825 efrain 16234
  .mx-wd-xs-70p-f {
16235
    max-width: 70% !important;
16236
  }
16848 stevensc 16237
 
16825 efrain 16238
  .mn-wd-xs-70p-f {
16239
    min-width: 70% !important;
16240
  }
16848 stevensc 16241
 
16825 efrain 16242
  .wd-xs-75 {
16243
    width: 75px;
16244
  }
16848 stevensc 16245
 
16825 efrain 16246
  .wd-xs-75p {
16247
    width: 75%;
16248
  }
16848 stevensc 16249
 
16825 efrain 16250
  .mx-wd-xs-75p {
16251
    max-width: 75%;
16252
  }
16848 stevensc 16253
 
16825 efrain 16254
  .mn-wd-xs-75p {
16255
    min-width: 75%;
16256
  }
16848 stevensc 16257
 
16825 efrain 16258
  .wd-xs-75-f {
16259
    width: 75px !important;
16260
  }
16848 stevensc 16261
 
16825 efrain 16262
  .wd-xs-75p-f {
16263
    width: 75% !important;
16264
  }
16848 stevensc 16265
 
16825 efrain 16266
  .mx-wd-xs-75p-f {
16267
    max-width: 75% !important;
16268
  }
16848 stevensc 16269
 
16825 efrain 16270
  .mn-wd-xs-75p-f {
16271
    min-width: 75% !important;
16272
  }
16848 stevensc 16273
 
16825 efrain 16274
  .wd-xs-80 {
16275
    width: 80px;
16276
  }
16848 stevensc 16277
 
16825 efrain 16278
  .wd-xs-80p {
16279
    width: 80%;
16280
  }
16848 stevensc 16281
 
16825 efrain 16282
  .mx-wd-xs-80p {
16283
    max-width: 80%;
16284
  }
16848 stevensc 16285
 
16825 efrain 16286
  .mn-wd-xs-80p {
16287
    min-width: 80%;
16288
  }
16848 stevensc 16289
 
16825 efrain 16290
  .wd-xs-80-f {
16291
    width: 80px !important;
16292
  }
16848 stevensc 16293
 
16825 efrain 16294
  .wd-xs-80p-f {
16295
    width: 80% !important;
16296
  }
16848 stevensc 16297
 
16825 efrain 16298
  .mx-wd-xs-80p-f {
16299
    max-width: 80% !important;
16300
  }
16848 stevensc 16301
 
16825 efrain 16302
  .mn-wd-xs-80p-f {
16303
    min-width: 80% !important;
16304
  }
16848 stevensc 16305
 
16825 efrain 16306
  .wd-xs-85 {
16307
    width: 85px;
16308
  }
16848 stevensc 16309
 
16825 efrain 16310
  .wd-xs-85p {
16311
    width: 85%;
16312
  }
16848 stevensc 16313
 
16825 efrain 16314
  .mx-wd-xs-85p {
16315
    max-width: 85%;
16316
  }
16848 stevensc 16317
 
16825 efrain 16318
  .mn-wd-xs-85p {
16319
    min-width: 85%;
16320
  }
16848 stevensc 16321
 
16825 efrain 16322
  .wd-xs-85-f {
16323
    width: 85px !important;
16324
  }
16848 stevensc 16325
 
16825 efrain 16326
  .wd-xs-85p-f {
16327
    width: 85% !important;
16328
  }
16848 stevensc 16329
 
16825 efrain 16330
  .mx-wd-xs-85p-f {
16331
    max-width: 85% !important;
16332
  }
16848 stevensc 16333
 
16825 efrain 16334
  .mn-wd-xs-85p-f {
16335
    min-width: 85% !important;
16336
  }
16848 stevensc 16337
 
16825 efrain 16338
  .wd-xs-90 {
16339
    width: 90px;
16340
  }
16848 stevensc 16341
 
16825 efrain 16342
  .wd-xs-90p {
16343
    width: 90%;
16344
  }
16848 stevensc 16345
 
16825 efrain 16346
  .mx-wd-xs-90p {
16347
    max-width: 90%;
16348
  }
16848 stevensc 16349
 
16825 efrain 16350
  .mn-wd-xs-90p {
16351
    min-width: 90%;
16352
  }
16848 stevensc 16353
 
16825 efrain 16354
  .wd-xs-90-f {
16355
    width: 90px !important;
16356
  }
16848 stevensc 16357
 
16825 efrain 16358
  .wd-xs-90p-f {
16359
    width: 90% !important;
16360
  }
16848 stevensc 16361
 
16825 efrain 16362
  .mx-wd-xs-90p-f {
16363
    max-width: 90% !important;
16364
  }
16848 stevensc 16365
 
16825 efrain 16366
  .mn-wd-xs-90p-f {
16367
    min-width: 90% !important;
16368
  }
16848 stevensc 16369
 
16825 efrain 16370
  .wd-xs-95 {
16371
    width: 95px;
16372
  }
16848 stevensc 16373
 
16825 efrain 16374
  .wd-xs-95p {
16375
    width: 95%;
16376
  }
16848 stevensc 16377
 
16825 efrain 16378
  .mx-wd-xs-95p {
16379
    max-width: 95%;
16380
  }
16848 stevensc 16381
 
16825 efrain 16382
  .mn-wd-xs-95p {
16383
    min-width: 95%;
16384
  }
16848 stevensc 16385
 
16825 efrain 16386
  .wd-xs-95-f {
16387
    width: 95px !important;
16388
  }
16848 stevensc 16389
 
16825 efrain 16390
  .wd-xs-95p-f {
16391
    width: 95% !important;
16392
  }
16848 stevensc 16393
 
16825 efrain 16394
  .mx-wd-xs-95p-f {
16395
    max-width: 95% !important;
16396
  }
16848 stevensc 16397
 
16825 efrain 16398
  .mn-wd-xs-95p-f {
16399
    min-width: 95% !important;
16400
  }
16848 stevensc 16401
 
16825 efrain 16402
  .wd-xs-100 {
16403
    width: 100px;
16404
  }
16848 stevensc 16405
 
16825 efrain 16406
  .wd-xs-100p {
16407
    width: 100%;
16408
  }
16848 stevensc 16409
 
16825 efrain 16410
  .mx-wd-xs-100p {
16411
    max-width: 100%;
16412
  }
16848 stevensc 16413
 
16825 efrain 16414
  .mn-wd-xs-100p {
16415
    min-width: 100%;
16416
  }
16848 stevensc 16417
 
16825 efrain 16418
  .wd-xs-100-f {
16419
    width: 100px !important;
16420
  }
16848 stevensc 16421
 
16825 efrain 16422
  .wd-xs-100p-f {
16423
    width: 100% !important;
16424
  }
16848 stevensc 16425
 
16825 efrain 16426
  .mx-wd-xs-100p-f {
16427
    max-width: 100% !important;
16428
  }
16848 stevensc 16429
 
16825 efrain 16430
  .mn-wd-xs-100p-f {
16431
    min-width: 100% !important;
16432
  }
16848 stevensc 16433
 
16825 efrain 16434
  .wd-xs-150 {
16435
    width: 150px;
16436
  }
16848 stevensc 16437
 
16825 efrain 16438
  .wd-xs-150p {
16439
    width: 150%;
16440
  }
16848 stevensc 16441
 
16825 efrain 16442
  .mx-wd-xs-150p {
16443
    max-width: 150%;
16444
  }
16848 stevensc 16445
 
16825 efrain 16446
  .mn-wd-xs-150p {
16447
    min-width: 150%;
16448
  }
16848 stevensc 16449
 
16825 efrain 16450
  .wd-xs-150-f {
16451
    width: 150px !important;
16452
  }
16848 stevensc 16453
 
16825 efrain 16454
  .wd-xs-150p-f {
16455
    width: 150% !important;
16456
  }
16848 stevensc 16457
 
16825 efrain 16458
  .mx-wd-xs-150p-f {
16459
    max-width: 150% !important;
16460
  }
16848 stevensc 16461
 
16825 efrain 16462
  .mn-wd-xs-150p-f {
16463
    min-width: 150% !important;
16464
  }
16848 stevensc 16465
 
16825 efrain 16466
  .wd-xs-200 {
16467
    width: 200px;
16468
  }
16848 stevensc 16469
 
16825 efrain 16470
  .wd-xs-200p {
16471
    width: 200%;
16472
  }
16848 stevensc 16473
 
16825 efrain 16474
  .mx-wd-xs-200p {
16475
    max-width: 200%;
16476
  }
16848 stevensc 16477
 
16825 efrain 16478
  .mn-wd-xs-200p {
16479
    min-width: 200%;
16480
  }
16848 stevensc 16481
 
16825 efrain 16482
  .wd-xs-200-f {
16483
    width: 200px !important;
16484
  }
16848 stevensc 16485
 
16825 efrain 16486
  .wd-xs-200p-f {
16487
    width: 200% !important;
16488
  }
16848 stevensc 16489
 
16825 efrain 16490
  .mx-wd-xs-200p-f {
16491
    max-width: 200% !important;
16492
  }
16848 stevensc 16493
 
16825 efrain 16494
  .mn-wd-xs-200p-f {
16495
    min-width: 200% !important;
16496
  }
16848 stevensc 16497
 
16825 efrain 16498
  .wd-xs-250 {
16499
    width: 250px;
16500
  }
16848 stevensc 16501
 
16825 efrain 16502
  .wd-xs-250p {
16503
    width: 250%;
16504
  }
16848 stevensc 16505
 
16825 efrain 16506
  .mx-wd-xs-250p {
16507
    max-width: 250%;
16508
  }
16848 stevensc 16509
 
16825 efrain 16510
  .mn-wd-xs-250p {
16511
    min-width: 250%;
16512
  }
16848 stevensc 16513
 
16825 efrain 16514
  .wd-xs-250-f {
16515
    width: 250px !important;
16516
  }
16848 stevensc 16517
 
16825 efrain 16518
  .wd-xs-250p-f {
16519
    width: 250% !important;
16520
  }
16848 stevensc 16521
 
16825 efrain 16522
  .mx-wd-xs-250p-f {
16523
    max-width: 250% !important;
16524
  }
16848 stevensc 16525
 
16825 efrain 16526
  .mn-wd-xs-250p-f {
16527
    min-width: 250% !important;
16528
  }
16848 stevensc 16529
 
16825 efrain 16530
  .wd-xs-300 {
16531
    width: 300px;
16532
  }
16848 stevensc 16533
 
16825 efrain 16534
  .wd-xs-300p {
16535
    width: 300%;
16536
  }
16848 stevensc 16537
 
16825 efrain 16538
  .mx-wd-xs-300p {
16539
    max-width: 300%;
16540
  }
16848 stevensc 16541
 
16825 efrain 16542
  .mn-wd-xs-300p {
16543
    min-width: 300%;
16544
  }
16848 stevensc 16545
 
16825 efrain 16546
  .wd-xs-300-f {
16547
    width: 300px !important;
16548
  }
16848 stevensc 16549
 
16825 efrain 16550
  .wd-xs-300p-f {
16551
    width: 300% !important;
16552
  }
16848 stevensc 16553
 
16825 efrain 16554
  .mx-wd-xs-300p-f {
16555
    max-width: 300% !important;
16556
  }
16848 stevensc 16557
 
16825 efrain 16558
  .mn-wd-xs-300p-f {
16559
    min-width: 300% !important;
16560
  }
16848 stevensc 16561
 
16825 efrain 16562
  .wd-xs-350 {
16563
    width: 350px;
16564
  }
16848 stevensc 16565
 
16825 efrain 16566
  .wd-xs-350p {
16567
    width: 350%;
16568
  }
16848 stevensc 16569
 
16825 efrain 16570
  .mx-wd-xs-350p {
16571
    max-width: 350%;
16572
  }
16848 stevensc 16573
 
16825 efrain 16574
  .mn-wd-xs-350p {
16575
    min-width: 350%;
16576
  }
16848 stevensc 16577
 
16825 efrain 16578
  .wd-xs-350-f {
16579
    width: 350px !important;
16580
  }
16848 stevensc 16581
 
16825 efrain 16582
  .wd-xs-350p-f {
16583
    width: 350% !important;
16584
  }
16848 stevensc 16585
 
16825 efrain 16586
  .mx-wd-xs-350p-f {
16587
    max-width: 350% !important;
16588
  }
16848 stevensc 16589
 
16825 efrain 16590
  .mn-wd-xs-350p-f {
16591
    min-width: 350% !important;
16592
  }
16848 stevensc 16593
 
16825 efrain 16594
  .wd-xs-400 {
16595
    width: 400px;
16596
  }
16848 stevensc 16597
 
16825 efrain 16598
  .wd-xs-400p {
16599
    width: 400%;
16600
  }
16848 stevensc 16601
 
16825 efrain 16602
  .mx-wd-xs-400p {
16603
    max-width: 400%;
16604
  }
16848 stevensc 16605
 
16825 efrain 16606
  .mn-wd-xs-400p {
16607
    min-width: 400%;
16608
  }
16848 stevensc 16609
 
16825 efrain 16610
  .wd-xs-400-f {
16611
    width: 400px !important;
16612
  }
16848 stevensc 16613
 
16825 efrain 16614
  .wd-xs-400p-f {
16615
    width: 400% !important;
16616
  }
16848 stevensc 16617
 
16825 efrain 16618
  .mx-wd-xs-400p-f {
16619
    max-width: 400% !important;
16620
  }
16848 stevensc 16621
 
16825 efrain 16622
  .mn-wd-xs-400p-f {
16623
    min-width: 400% !important;
16624
  }
16848 stevensc 16625
 
16825 efrain 16626
  .wd-xs-450 {
16627
    width: 450px;
16628
  }
16848 stevensc 16629
 
16825 efrain 16630
  .wd-xs-450p {
16631
    width: 450%;
16632
  }
16848 stevensc 16633
 
16825 efrain 16634
  .mx-wd-xs-450p {
16635
    max-width: 450%;
16636
  }
16848 stevensc 16637
 
16825 efrain 16638
  .mn-wd-xs-450p {
16639
    min-width: 450%;
16640
  }
16848 stevensc 16641
 
16825 efrain 16642
  .wd-xs-450-f {
16643
    width: 450px !important;
16644
  }
16848 stevensc 16645
 
16825 efrain 16646
  .wd-xs-450p-f {
16647
    width: 450% !important;
16648
  }
16848 stevensc 16649
 
16825 efrain 16650
  .mx-wd-xs-450p-f {
16651
    max-width: 450% !important;
16652
  }
16848 stevensc 16653
 
16825 efrain 16654
  .mn-wd-xs-450p-f {
16655
    min-width: 450% !important;
16656
  }
16848 stevensc 16657
 
16825 efrain 16658
  .wd-xs-500 {
16659
    width: 500px;
16660
  }
16848 stevensc 16661
 
16825 efrain 16662
  .wd-xs-500p {
16663
    width: 500%;
16664
  }
16848 stevensc 16665
 
16825 efrain 16666
  .mx-wd-xs-500p {
16667
    max-width: 500%;
16668
  }
16848 stevensc 16669
 
16825 efrain 16670
  .mn-wd-xs-500p {
16671
    min-width: 500%;
16672
  }
16848 stevensc 16673
 
16825 efrain 16674
  .wd-xs-500-f {
16675
    width: 500px !important;
16676
  }
16848 stevensc 16677
 
16825 efrain 16678
  .wd-xs-500p-f {
16679
    width: 500% !important;
16680
  }
16848 stevensc 16681
 
16825 efrain 16682
  .mx-wd-xs-500p-f {
16683
    max-width: 500% !important;
16684
  }
16848 stevensc 16685
 
16825 efrain 16686
  .mn-wd-xs-500p-f {
16687
    min-width: 500% !important;
16688
  }
16848 stevensc 16689
 
16825 efrain 16690
  .wd-xs-550 {
16691
    width: 550px;
16692
  }
16848 stevensc 16693
 
16825 efrain 16694
  .wd-xs-550p {
16695
    width: 550%;
16696
  }
16848 stevensc 16697
 
16825 efrain 16698
  .mx-wd-xs-550p {
16699
    max-width: 550%;
16700
  }
16848 stevensc 16701
 
16825 efrain 16702
  .mn-wd-xs-550p {
16703
    min-width: 550%;
16704
  }
16848 stevensc 16705
 
16825 efrain 16706
  .wd-xs-550-f {
16707
    width: 550px !important;
16708
  }
16848 stevensc 16709
 
16825 efrain 16710
  .wd-xs-550p-f {
16711
    width: 550% !important;
16712
  }
16848 stevensc 16713
 
16825 efrain 16714
  .mx-wd-xs-550p-f {
16715
    max-width: 550% !important;
16716
  }
16848 stevensc 16717
 
16825 efrain 16718
  .mn-wd-xs-550p-f {
16719
    min-width: 550% !important;
16720
  }
16848 stevensc 16721
 
16825 efrain 16722
  .wd-xs-600 {
16723
    width: 600px;
16724
  }
16848 stevensc 16725
 
16825 efrain 16726
  .wd-xs-600p {
16727
    width: 600%;
16728
  }
16848 stevensc 16729
 
16825 efrain 16730
  .mx-wd-xs-600p {
16731
    max-width: 600%;
16732
  }
16848 stevensc 16733
 
16825 efrain 16734
  .mn-wd-xs-600p {
16735
    min-width: 600%;
16736
  }
16848 stevensc 16737
 
16825 efrain 16738
  .wd-xs-600-f {
16739
    width: 600px !important;
16740
  }
16848 stevensc 16741
 
16825 efrain 16742
  .wd-xs-600p-f {
16743
    width: 600% !important;
16744
  }
16848 stevensc 16745
 
16825 efrain 16746
  .mx-wd-xs-600p-f {
16747
    max-width: 600% !important;
16748
  }
16848 stevensc 16749
 
16825 efrain 16750
  .mn-wd-xs-600p-f {
16751
    min-width: 600% !important;
16752
  }
16848 stevensc 16753
 
16825 efrain 16754
  .wd-xs-650 {
16755
    width: 650px;
16756
  }
16848 stevensc 16757
 
16825 efrain 16758
  .wd-xs-650p {
16759
    width: 650%;
16760
  }
16848 stevensc 16761
 
16825 efrain 16762
  .mx-wd-xs-650p {
16763
    max-width: 650%;
16764
  }
16848 stevensc 16765
 
16825 efrain 16766
  .mn-wd-xs-650p {
16767
    min-width: 650%;
16768
  }
16848 stevensc 16769
 
16825 efrain 16770
  .wd-xs-650-f {
16771
    width: 650px !important;
16772
  }
16848 stevensc 16773
 
16825 efrain 16774
  .wd-xs-650p-f {
16775
    width: 650% !important;
16776
  }
16848 stevensc 16777
 
16825 efrain 16778
  .mx-wd-xs-650p-f {
16779
    max-width: 650% !important;
16780
  }
16848 stevensc 16781
 
16825 efrain 16782
  .mn-wd-xs-650p-f {
16783
    min-width: 650% !important;
16784
  }
16848 stevensc 16785
 
16825 efrain 16786
  .wd-xs-700 {
16787
    width: 700px;
16788
  }
16848 stevensc 16789
 
16825 efrain 16790
  .wd-xs-700p {
16791
    width: 700%;
16792
  }
16848 stevensc 16793
 
16825 efrain 16794
  .mx-wd-xs-700p {
16795
    max-width: 700%;
16796
  }
16848 stevensc 16797
 
16825 efrain 16798
  .mn-wd-xs-700p {
16799
    min-width: 700%;
16800
  }
16848 stevensc 16801
 
16825 efrain 16802
  .wd-xs-700-f {
16803
    width: 700px !important;
16804
  }
16848 stevensc 16805
 
16825 efrain 16806
  .wd-xs-700p-f {
16807
    width: 700% !important;
16808
  }
16848 stevensc 16809
 
16825 efrain 16810
  .mx-wd-xs-700p-f {
16811
    max-width: 700% !important;
16812
  }
16848 stevensc 16813
 
16825 efrain 16814
  .mn-wd-xs-700p-f {
16815
    min-width: 700% !important;
16816
  }
16848 stevensc 16817
 
16825 efrain 16818
  .wd-xs-750 {
16819
    width: 750px;
16820
  }
16848 stevensc 16821
 
16825 efrain 16822
  .wd-xs-750p {
16823
    width: 750%;
16824
  }
16848 stevensc 16825
 
16825 efrain 16826
  .mx-wd-xs-750p {
16827
    max-width: 750%;
16828
  }
16848 stevensc 16829
 
16825 efrain 16830
  .mn-wd-xs-750p {
16831
    min-width: 750%;
16832
  }
16848 stevensc 16833
 
16825 efrain 16834
  .wd-xs-750-f {
16835
    width: 750px !important;
16836
  }
16848 stevensc 16837
 
16825 efrain 16838
  .wd-xs-750p-f {
16839
    width: 750% !important;
16840
  }
16848 stevensc 16841
 
16825 efrain 16842
  .mx-wd-xs-750p-f {
16843
    max-width: 750% !important;
16844
  }
16848 stevensc 16845
 
16825 efrain 16846
  .mn-wd-xs-750p-f {
16847
    min-width: 750% !important;
16848
  }
16848 stevensc 16849
 
16825 efrain 16850
  .wd-xs-800 {
16851
    width: 800px;
16852
  }
16848 stevensc 16853
 
16825 efrain 16854
  .wd-xs-800p {
16855
    width: 800%;
16856
  }
16848 stevensc 16857
 
16825 efrain 16858
  .mx-wd-xs-800p {
16859
    max-width: 800%;
16860
  }
16848 stevensc 16861
 
16825 efrain 16862
  .mn-wd-xs-800p {
16863
    min-width: 800%;
16864
  }
16848 stevensc 16865
 
16825 efrain 16866
  .wd-xs-800-f {
16867
    width: 800px !important;
16868
  }
16848 stevensc 16869
 
16825 efrain 16870
  .wd-xs-800p-f {
16871
    width: 800% !important;
16872
  }
16848 stevensc 16873
 
16825 efrain 16874
  .mx-wd-xs-800p-f {
16875
    max-width: 800% !important;
16876
  }
16848 stevensc 16877
 
16825 efrain 16878
  .mn-wd-xs-800p-f {
16879
    min-width: 800% !important;
16880
  }
16848 stevensc 16881
 
16825 efrain 16882
  .wd-xs-850 {
16883
    width: 850px;
16884
  }
16848 stevensc 16885
 
16825 efrain 16886
  .wd-xs-850p {
16887
    width: 850%;
16888
  }
16848 stevensc 16889
 
16825 efrain 16890
  .mx-wd-xs-850p {
16891
    max-width: 850%;
16892
  }
16848 stevensc 16893
 
16825 efrain 16894
  .mn-wd-xs-850p {
16895
    min-width: 850%;
16896
  }
16848 stevensc 16897
 
16825 efrain 16898
  .wd-xs-850-f {
16899
    width: 850px !important;
16900
  }
16848 stevensc 16901
 
16825 efrain 16902
  .wd-xs-850p-f {
16903
    width: 850% !important;
16904
  }
16848 stevensc 16905
 
16825 efrain 16906
  .mx-wd-xs-850p-f {
16907
    max-width: 850% !important;
16908
  }
16848 stevensc 16909
 
16825 efrain 16910
  .mn-wd-xs-850p-f {
16911
    min-width: 850% !important;
16912
  }
16848 stevensc 16913
 
16825 efrain 16914
  .wd-xs-900 {
16915
    width: 900px;
16916
  }
16848 stevensc 16917
 
16825 efrain 16918
  .wd-xs-900p {
16919
    width: 900%;
16920
  }
16848 stevensc 16921
 
16825 efrain 16922
  .mx-wd-xs-900p {
16923
    max-width: 900%;
16924
  }
16848 stevensc 16925
 
16825 efrain 16926
  .mn-wd-xs-900p {
16927
    min-width: 900%;
16928
  }
16848 stevensc 16929
 
16825 efrain 16930
  .wd-xs-900-f {
16931
    width: 900px !important;
16932
  }
16848 stevensc 16933
 
16825 efrain 16934
  .wd-xs-900p-f {
16935
    width: 900% !important;
16936
  }
16848 stevensc 16937
 
16825 efrain 16938
  .mx-wd-xs-900p-f {
16939
    max-width: 900% !important;
16940
  }
16848 stevensc 16941
 
16825 efrain 16942
  .mn-wd-xs-900p-f {
16943
    min-width: 900% !important;
16944
  }
16848 stevensc 16945
 
16825 efrain 16946
  .wd-xs-950 {
16947
    width: 950px;
16948
  }
16848 stevensc 16949
 
16825 efrain 16950
  .wd-xs-950p {
16951
    width: 950%;
16952
  }
16848 stevensc 16953
 
16825 efrain 16954
  .mx-wd-xs-950p {
16955
    max-width: 950%;
16956
  }
16848 stevensc 16957
 
16825 efrain 16958
  .mn-wd-xs-950p {
16959
    min-width: 950%;
16960
  }
16848 stevensc 16961
 
16825 efrain 16962
  .wd-xs-950-f {
16963
    width: 950px !important;
16964
  }
16848 stevensc 16965
 
16825 efrain 16966
  .wd-xs-950p-f {
16967
    width: 950% !important;
16968
  }
16848 stevensc 16969
 
16825 efrain 16970
  .mx-wd-xs-950p-f {
16971
    max-width: 950% !important;
16972
  }
16848 stevensc 16973
 
16825 efrain 16974
  .mn-wd-xs-950p-f {
16975
    min-width: 950% !important;
16976
  }
16848 stevensc 16977
 
16825 efrain 16978
  .wd-xs-1000 {
16979
    width: 1000px;
16980
  }
16848 stevensc 16981
 
16825 efrain 16982
  .wd-xs-1000p {
16983
    width: 1000%;
16984
  }
16848 stevensc 16985
 
16825 efrain 16986
  .mx-wd-xs-1000p {
16987
    max-width: 1000%;
16988
  }
16848 stevensc 16989
 
16825 efrain 16990
  .mn-wd-xs-1000p {
16991
    min-width: 1000%;
16992
  }
16848 stevensc 16993
 
16825 efrain 16994
  .wd-xs-1000-f {
16995
    width: 1000px !important;
16996
  }
16848 stevensc 16997
 
16825 efrain 16998
  .wd-xs-1000p-f {
16999
    width: 1000% !important;
17000
  }
16848 stevensc 17001
 
16825 efrain 17002
  .mx-wd-xs-1000p-f {
17003
    max-width: 1000% !important;
17004
  }
16848 stevensc 17005
 
16825 efrain 17006
  .mn-wd-xs-1000p-f {
17007
    min-width: 1000% !important;
17008
  }
16848 stevensc 17009
 
16825 efrain 17010
  .wd-xs-auto {
17011
    width: auto;
17012
  }
16848 stevensc 17013
 
16825 efrain 17014
  .wd-xs-auto-f {
17015
    width: auto !important;
17016
  }
17017
}
16848 stevensc 17018
 
16825 efrain 17019
@media (min-width: 576px) {
17020
  .wd-sm-5 {
17021
    width: 5px;
17022
  }
16848 stevensc 17023
 
16825 efrain 17024
  .wd-sm-5p {
17025
    width: 5%;
17026
  }
16848 stevensc 17027
 
16825 efrain 17028
  .mx-wd-sm-5p {
17029
    max-width: 5%;
17030
  }
16848 stevensc 17031
 
16825 efrain 17032
  .mn-wd-sm-5p {
17033
    min-width: 5%;
17034
  }
16848 stevensc 17035
 
16825 efrain 17036
  .wd-sm-5-f {
17037
    width: 5px !important;
17038
  }
16848 stevensc 17039
 
16825 efrain 17040
  .wd-sm-5p-f {
17041
    width: 5% !important;
17042
  }
16848 stevensc 17043
 
16825 efrain 17044
  .mx-wd-sm-5p-f {
17045
    max-width: 5% !important;
17046
  }
16848 stevensc 17047
 
16825 efrain 17048
  .mn-wd-sm-5p-f {
17049
    min-width: 5% !important;
17050
  }
16848 stevensc 17051
 
16825 efrain 17052
  .wd-sm-10 {
17053
    width: 10px;
17054
  }
16848 stevensc 17055
 
16825 efrain 17056
  .wd-sm-10p {
17057
    width: 10%;
17058
  }
16848 stevensc 17059
 
16825 efrain 17060
  .mx-wd-sm-10p {
17061
    max-width: 10%;
17062
  }
16848 stevensc 17063
 
16825 efrain 17064
  .mn-wd-sm-10p {
17065
    min-width: 10%;
17066
  }
16848 stevensc 17067
 
16825 efrain 17068
  .wd-sm-10-f {
17069
    width: 10px !important;
17070
  }
16848 stevensc 17071
 
16825 efrain 17072
  .wd-sm-10p-f {
17073
    width: 10% !important;
17074
  }
16848 stevensc 17075
 
16825 efrain 17076
  .mx-wd-sm-10p-f {
17077
    max-width: 10% !important;
17078
  }
16848 stevensc 17079
 
16825 efrain 17080
  .mn-wd-sm-10p-f {
17081
    min-width: 10% !important;
17082
  }
16848 stevensc 17083
 
16825 efrain 17084
  .wd-sm-15 {
17085
    width: 15px;
17086
  }
16848 stevensc 17087
 
16825 efrain 17088
  .wd-sm-15p {
17089
    width: 15%;
17090
  }
16848 stevensc 17091
 
16825 efrain 17092
  .mx-wd-sm-15p {
17093
    max-width: 15%;
17094
  }
16848 stevensc 17095
 
16825 efrain 17096
  .mn-wd-sm-15p {
17097
    min-width: 15%;
17098
  }
16848 stevensc 17099
 
16825 efrain 17100
  .wd-sm-15-f {
17101
    width: 15px !important;
17102
  }
16848 stevensc 17103
 
16825 efrain 17104
  .wd-sm-15p-f {
17105
    width: 15% !important;
17106
  }
16848 stevensc 17107
 
16825 efrain 17108
  .mx-wd-sm-15p-f {
17109
    max-width: 15% !important;
17110
  }
16848 stevensc 17111
 
16825 efrain 17112
  .mn-wd-sm-15p-f {
17113
    min-width: 15% !important;
17114
  }
16848 stevensc 17115
 
16825 efrain 17116
  .wd-sm-20 {
17117
    width: 20px;
17118
  }
16848 stevensc 17119
 
16825 efrain 17120
  .wd-sm-20p {
17121
    width: 20%;
17122
  }
16848 stevensc 17123
 
16825 efrain 17124
  .mx-wd-sm-20p {
17125
    max-width: 20%;
17126
  }
16848 stevensc 17127
 
16825 efrain 17128
  .mn-wd-sm-20p {
17129
    min-width: 20%;
17130
  }
16848 stevensc 17131
 
16825 efrain 17132
  .wd-sm-20-f {
17133
    width: 20px !important;
17134
  }
16848 stevensc 17135
 
16825 efrain 17136
  .wd-sm-20p-f {
17137
    width: 20% !important;
17138
  }
16848 stevensc 17139
 
16825 efrain 17140
  .mx-wd-sm-20p-f {
17141
    max-width: 20% !important;
17142
  }
16848 stevensc 17143
 
16825 efrain 17144
  .mn-wd-sm-20p-f {
17145
    min-width: 20% !important;
17146
  }
16848 stevensc 17147
 
16825 efrain 17148
  .wd-sm-25 {
17149
    width: 25px;
17150
  }
16848 stevensc 17151
 
16825 efrain 17152
  .wd-sm-25p {
17153
    width: 25%;
17154
  }
16848 stevensc 17155
 
16825 efrain 17156
  .mx-wd-sm-25p {
17157
    max-width: 25%;
17158
  }
16848 stevensc 17159
 
16825 efrain 17160
  .mn-wd-sm-25p {
17161
    min-width: 25%;
17162
  }
16848 stevensc 17163
 
16825 efrain 17164
  .wd-sm-25-f {
17165
    width: 25px !important;
17166
  }
16848 stevensc 17167
 
16825 efrain 17168
  .wd-sm-25p-f {
17169
    width: 25% !important;
17170
  }
16848 stevensc 17171
 
16825 efrain 17172
  .mx-wd-sm-25p-f {
17173
    max-width: 25% !important;
17174
  }
16848 stevensc 17175
 
16825 efrain 17176
  .mn-wd-sm-25p-f {
17177
    min-width: 25% !important;
17178
  }
16848 stevensc 17179
 
16825 efrain 17180
  .wd-sm-30 {
17181
    width: 30px;
17182
  }
16848 stevensc 17183
 
16825 efrain 17184
  .wd-sm-30p {
17185
    width: 30%;
17186
  }
16848 stevensc 17187
 
16825 efrain 17188
  .mx-wd-sm-30p {
17189
    max-width: 30%;
17190
  }
16848 stevensc 17191
 
16825 efrain 17192
  .mn-wd-sm-30p {
17193
    min-width: 30%;
17194
  }
16848 stevensc 17195
 
16825 efrain 17196
  .wd-sm-30-f {
17197
    width: 30px !important;
17198
  }
16848 stevensc 17199
 
16825 efrain 17200
  .wd-sm-30p-f {
17201
    width: 30% !important;
17202
  }
16848 stevensc 17203
 
16825 efrain 17204
  .mx-wd-sm-30p-f {
17205
    max-width: 30% !important;
17206
  }
16848 stevensc 17207
 
16825 efrain 17208
  .mn-wd-sm-30p-f {
17209
    min-width: 30% !important;
17210
  }
16848 stevensc 17211
 
16825 efrain 17212
  .wd-sm-35 {
17213
    width: 35px;
17214
  }
16848 stevensc 17215
 
16825 efrain 17216
  .wd-sm-35p {
17217
    width: 35%;
17218
  }
16848 stevensc 17219
 
16825 efrain 17220
  .mx-wd-sm-35p {
17221
    max-width: 35%;
17222
  }
16848 stevensc 17223
 
16825 efrain 17224
  .mn-wd-sm-35p {
17225
    min-width: 35%;
17226
  }
16848 stevensc 17227
 
16825 efrain 17228
  .wd-sm-35-f {
17229
    width: 35px !important;
17230
  }
16848 stevensc 17231
 
16825 efrain 17232
  .wd-sm-35p-f {
17233
    width: 35% !important;
17234
  }
16848 stevensc 17235
 
16825 efrain 17236
  .mx-wd-sm-35p-f {
17237
    max-width: 35% !important;
17238
  }
16848 stevensc 17239
 
16825 efrain 17240
  .mn-wd-sm-35p-f {
17241
    min-width: 35% !important;
17242
  }
16848 stevensc 17243
 
16825 efrain 17244
  .wd-sm-40 {
17245
    width: 40px;
17246
  }
16848 stevensc 17247
 
16825 efrain 17248
  .wd-sm-40p {
17249
    width: 40%;
17250
  }
16848 stevensc 17251
 
16825 efrain 17252
  .mx-wd-sm-40p {
17253
    max-width: 40%;
17254
  }
16848 stevensc 17255
 
16825 efrain 17256
  .mn-wd-sm-40p {
17257
    min-width: 40%;
17258
  }
16848 stevensc 17259
 
16825 efrain 17260
  .wd-sm-40-f {
17261
    width: 40px !important;
17262
  }
16848 stevensc 17263
 
16825 efrain 17264
  .wd-sm-40p-f {
17265
    width: 40% !important;
17266
  }
16848 stevensc 17267
 
16825 efrain 17268
  .mx-wd-sm-40p-f {
17269
    max-width: 40% !important;
17270
  }
16848 stevensc 17271
 
16825 efrain 17272
  .mn-wd-sm-40p-f {
17273
    min-width: 40% !important;
17274
  }
16848 stevensc 17275
 
16825 efrain 17276
  .wd-sm-45 {
17277
    width: 45px;
17278
  }
16848 stevensc 17279
 
16825 efrain 17280
  .wd-sm-45p {
17281
    width: 45%;
17282
  }
16848 stevensc 17283
 
16825 efrain 17284
  .mx-wd-sm-45p {
17285
    max-width: 45%;
17286
  }
16848 stevensc 17287
 
16825 efrain 17288
  .mn-wd-sm-45p {
17289
    min-width: 45%;
17290
  }
16848 stevensc 17291
 
16825 efrain 17292
  .wd-sm-45-f {
17293
    width: 45px !important;
17294
  }
16848 stevensc 17295
 
16825 efrain 17296
  .wd-sm-45p-f {
17297
    width: 45% !important;
17298
  }
16848 stevensc 17299
 
16825 efrain 17300
  .mx-wd-sm-45p-f {
17301
    max-width: 45% !important;
17302
  }
16848 stevensc 17303
 
16825 efrain 17304
  .mn-wd-sm-45p-f {
17305
    min-width: 45% !important;
17306
  }
16848 stevensc 17307
 
16825 efrain 17308
  .wd-sm-50 {
17309
    width: 50px;
17310
  }
16848 stevensc 17311
 
16825 efrain 17312
  .wd-sm-50p {
17313
    width: 50%;
17314
  }
16848 stevensc 17315
 
16825 efrain 17316
  .mx-wd-sm-50p {
17317
    max-width: 50%;
17318
  }
16848 stevensc 17319
 
16825 efrain 17320
  .mn-wd-sm-50p {
17321
    min-width: 50%;
17322
  }
16848 stevensc 17323
 
16825 efrain 17324
  .wd-sm-50-f {
17325
    width: 50px !important;
17326
  }
16848 stevensc 17327
 
16825 efrain 17328
  .wd-sm-50p-f {
17329
    width: 50% !important;
17330
  }
16848 stevensc 17331
 
16825 efrain 17332
  .mx-wd-sm-50p-f {
17333
    max-width: 50% !important;
17334
  }
16848 stevensc 17335
 
16825 efrain 17336
  .mn-wd-sm-50p-f {
17337
    min-width: 50% !important;
17338
  }
16848 stevensc 17339
 
16825 efrain 17340
  .wd-sm-55 {
17341
    width: 55px;
17342
  }
16848 stevensc 17343
 
16825 efrain 17344
  .wd-sm-55p {
17345
    width: 55%;
17346
  }
16848 stevensc 17347
 
16825 efrain 17348
  .mx-wd-sm-55p {
17349
    max-width: 55%;
17350
  }
16848 stevensc 17351
 
16825 efrain 17352
  .mn-wd-sm-55p {
17353
    min-width: 55%;
17354
  }
16848 stevensc 17355
 
16825 efrain 17356
  .wd-sm-55-f {
17357
    width: 55px !important;
17358
  }
16848 stevensc 17359
 
16825 efrain 17360
  .wd-sm-55p-f {
17361
    width: 55% !important;
17362
  }
16848 stevensc 17363
 
16825 efrain 17364
  .mx-wd-sm-55p-f {
17365
    max-width: 55% !important;
17366
  }
16848 stevensc 17367
 
16825 efrain 17368
  .mn-wd-sm-55p-f {
17369
    min-width: 55% !important;
17370
  }
16848 stevensc 17371
 
16825 efrain 17372
  .wd-sm-60 {
17373
    width: 60px;
17374
  }
16848 stevensc 17375
 
16825 efrain 17376
  .wd-sm-60p {
17377
    width: 60%;
17378
  }
16848 stevensc 17379
 
16825 efrain 17380
  .mx-wd-sm-60p {
17381
    max-width: 60%;
17382
  }
16848 stevensc 17383
 
16825 efrain 17384
  .mn-wd-sm-60p {
17385
    min-width: 60%;
17386
  }
16848 stevensc 17387
 
16825 efrain 17388
  .wd-sm-60-f {
17389
    width: 60px !important;
17390
  }
16848 stevensc 17391
 
16825 efrain 17392
  .wd-sm-60p-f {
17393
    width: 60% !important;
17394
  }
16848 stevensc 17395
 
16825 efrain 17396
  .mx-wd-sm-60p-f {
17397
    max-width: 60% !important;
17398
  }
16848 stevensc 17399
 
16825 efrain 17400
  .mn-wd-sm-60p-f {
17401
    min-width: 60% !important;
17402
  }
16848 stevensc 17403
 
16825 efrain 17404
  .wd-sm-65 {
17405
    width: 65px;
17406
  }
16848 stevensc 17407
 
16825 efrain 17408
  .wd-sm-65p {
17409
    width: 65%;
17410
  }
16848 stevensc 17411
 
16825 efrain 17412
  .mx-wd-sm-65p {
17413
    max-width: 65%;
17414
  }
16848 stevensc 17415
 
16825 efrain 17416
  .mn-wd-sm-65p {
17417
    min-width: 65%;
17418
  }
16848 stevensc 17419
 
16825 efrain 17420
  .wd-sm-65-f {
17421
    width: 65px !important;
17422
  }
16848 stevensc 17423
 
16825 efrain 17424
  .wd-sm-65p-f {
17425
    width: 65% !important;
17426
  }
16848 stevensc 17427
 
16825 efrain 17428
  .mx-wd-sm-65p-f {
17429
    max-width: 65% !important;
17430
  }
16848 stevensc 17431
 
16825 efrain 17432
  .mn-wd-sm-65p-f {
17433
    min-width: 65% !important;
17434
  }
16848 stevensc 17435
 
16825 efrain 17436
  .wd-sm-70 {
17437
    width: 70px;
17438
  }
16848 stevensc 17439
 
16825 efrain 17440
  .wd-sm-70p {
17441
    width: 70%;
17442
  }
16848 stevensc 17443
 
16825 efrain 17444
  .mx-wd-sm-70p {
17445
    max-width: 70%;
17446
  }
16848 stevensc 17447
 
16825 efrain 17448
  .mn-wd-sm-70p {
17449
    min-width: 70%;
17450
  }
16848 stevensc 17451
 
16825 efrain 17452
  .wd-sm-70-f {
17453
    width: 70px !important;
17454
  }
16848 stevensc 17455
 
16825 efrain 17456
  .wd-sm-70p-f {
17457
    width: 70% !important;
17458
  }
16848 stevensc 17459
 
16825 efrain 17460
  .mx-wd-sm-70p-f {
17461
    max-width: 70% !important;
17462
  }
16848 stevensc 17463
 
16825 efrain 17464
  .mn-wd-sm-70p-f {
17465
    min-width: 70% !important;
17466
  }
16848 stevensc 17467
 
16825 efrain 17468
  .wd-sm-75 {
17469
    width: 75px;
17470
  }
16848 stevensc 17471
 
16825 efrain 17472
  .wd-sm-75p {
17473
    width: 75%;
17474
  }
16848 stevensc 17475
 
16825 efrain 17476
  .mx-wd-sm-75p {
17477
    max-width: 75%;
17478
  }
16848 stevensc 17479
 
16825 efrain 17480
  .mn-wd-sm-75p {
17481
    min-width: 75%;
17482
  }
16848 stevensc 17483
 
16825 efrain 17484
  .wd-sm-75-f {
17485
    width: 75px !important;
17486
  }
16848 stevensc 17487
 
16825 efrain 17488
  .wd-sm-75p-f {
17489
    width: 75% !important;
17490
  }
16848 stevensc 17491
 
16825 efrain 17492
  .mx-wd-sm-75p-f {
17493
    max-width: 75% !important;
17494
  }
16848 stevensc 17495
 
16825 efrain 17496
  .mn-wd-sm-75p-f {
17497
    min-width: 75% !important;
17498
  }
16848 stevensc 17499
 
16825 efrain 17500
  .wd-sm-80 {
17501
    width: 80px;
17502
  }
16848 stevensc 17503
 
16825 efrain 17504
  .wd-sm-80p {
17505
    width: 80%;
17506
  }
16848 stevensc 17507
 
16825 efrain 17508
  .mx-wd-sm-80p {
17509
    max-width: 80%;
17510
  }
16848 stevensc 17511
 
16825 efrain 17512
  .mn-wd-sm-80p {
17513
    min-width: 80%;
17514
  }
16848 stevensc 17515
 
16825 efrain 17516
  .wd-sm-80-f {
17517
    width: 80px !important;
17518
  }
16848 stevensc 17519
 
16825 efrain 17520
  .wd-sm-80p-f {
17521
    width: 80% !important;
17522
  }
16848 stevensc 17523
 
16825 efrain 17524
  .mx-wd-sm-80p-f {
17525
    max-width: 80% !important;
17526
  }
16848 stevensc 17527
 
16825 efrain 17528
  .mn-wd-sm-80p-f {
17529
    min-width: 80% !important;
17530
  }
16848 stevensc 17531
 
16825 efrain 17532
  .wd-sm-85 {
17533
    width: 85px;
17534
  }
16848 stevensc 17535
 
16825 efrain 17536
  .wd-sm-85p {
17537
    width: 85%;
17538
  }
16848 stevensc 17539
 
16825 efrain 17540
  .mx-wd-sm-85p {
17541
    max-width: 85%;
17542
  }
16848 stevensc 17543
 
16825 efrain 17544
  .mn-wd-sm-85p {
17545
    min-width: 85%;
17546
  }
16848 stevensc 17547
 
16825 efrain 17548
  .wd-sm-85-f {
17549
    width: 85px !important;
17550
  }
16848 stevensc 17551
 
16825 efrain 17552
  .wd-sm-85p-f {
17553
    width: 85% !important;
17554
  }
16848 stevensc 17555
 
16825 efrain 17556
  .mx-wd-sm-85p-f {
17557
    max-width: 85% !important;
17558
  }
16848 stevensc 17559
 
16825 efrain 17560
  .mn-wd-sm-85p-f {
17561
    min-width: 85% !important;
17562
  }
16848 stevensc 17563
 
16825 efrain 17564
  .wd-sm-90 {
17565
    width: 90px;
17566
  }
16848 stevensc 17567
 
16825 efrain 17568
  .wd-sm-90p {
17569
    width: 90%;
17570
  }
16848 stevensc 17571
 
16825 efrain 17572
  .mx-wd-sm-90p {
17573
    max-width: 90%;
17574
  }
16848 stevensc 17575
 
16825 efrain 17576
  .mn-wd-sm-90p {
17577
    min-width: 90%;
17578
  }
16848 stevensc 17579
 
16825 efrain 17580
  .wd-sm-90-f {
17581
    width: 90px !important;
17582
  }
16848 stevensc 17583
 
16825 efrain 17584
  .wd-sm-90p-f {
17585
    width: 90% !important;
17586
  }
16848 stevensc 17587
 
16825 efrain 17588
  .mx-wd-sm-90p-f {
17589
    max-width: 90% !important;
17590
  }
16848 stevensc 17591
 
16825 efrain 17592
  .mn-wd-sm-90p-f {
17593
    min-width: 90% !important;
17594
  }
16848 stevensc 17595
 
16825 efrain 17596
  .wd-sm-95 {
17597
    width: 95px;
17598
  }
16848 stevensc 17599
 
16825 efrain 17600
  .wd-sm-95p {
17601
    width: 95%;
17602
  }
16848 stevensc 17603
 
16825 efrain 17604
  .mx-wd-sm-95p {
17605
    max-width: 95%;
17606
  }
16848 stevensc 17607
 
16825 efrain 17608
  .mn-wd-sm-95p {
17609
    min-width: 95%;
17610
  }
16848 stevensc 17611
 
16825 efrain 17612
  .wd-sm-95-f {
17613
    width: 95px !important;
17614
  }
16848 stevensc 17615
 
16825 efrain 17616
  .wd-sm-95p-f {
17617
    width: 95% !important;
17618
  }
16848 stevensc 17619
 
16825 efrain 17620
  .mx-wd-sm-95p-f {
17621
    max-width: 95% !important;
17622
  }
16848 stevensc 17623
 
16825 efrain 17624
  .mn-wd-sm-95p-f {
17625
    min-width: 95% !important;
17626
  }
16848 stevensc 17627
 
16825 efrain 17628
  .wd-sm-100 {
17629
    width: 100px;
17630
  }
16848 stevensc 17631
 
16825 efrain 17632
  .wd-sm-100p {
17633
    width: 100%;
17634
  }
16848 stevensc 17635
 
16825 efrain 17636
  .mx-wd-sm-100p {
17637
    max-width: 100%;
17638
  }
16848 stevensc 17639
 
16825 efrain 17640
  .mn-wd-sm-100p {
17641
    min-width: 100%;
17642
  }
16848 stevensc 17643
 
16825 efrain 17644
  .wd-sm-100-f {
17645
    width: 100px !important;
17646
  }
16848 stevensc 17647
 
16825 efrain 17648
  .wd-sm-100p-f {
17649
    width: 100% !important;
17650
  }
16848 stevensc 17651
 
16825 efrain 17652
  .mx-wd-sm-100p-f {
17653
    max-width: 100% !important;
17654
  }
16848 stevensc 17655
 
16825 efrain 17656
  .mn-wd-sm-100p-f {
17657
    min-width: 100% !important;
17658
  }
16848 stevensc 17659
 
16825 efrain 17660
  .wd-sm-150 {
17661
    width: 150px;
17662
  }
16848 stevensc 17663
 
16825 efrain 17664
  .wd-sm-150p {
17665
    width: 150%;
17666
  }
16848 stevensc 17667
 
16825 efrain 17668
  .mx-wd-sm-150p {
17669
    max-width: 150%;
17670
  }
16848 stevensc 17671
 
16825 efrain 17672
  .mn-wd-sm-150p {
17673
    min-width: 150%;
17674
  }
16848 stevensc 17675
 
16825 efrain 17676
  .wd-sm-150-f {
17677
    width: 150px !important;
17678
  }
16848 stevensc 17679
 
16825 efrain 17680
  .wd-sm-150p-f {
17681
    width: 150% !important;
17682
  }
16848 stevensc 17683
 
16825 efrain 17684
  .mx-wd-sm-150p-f {
17685
    max-width: 150% !important;
17686
  }
16848 stevensc 17687
 
16825 efrain 17688
  .mn-wd-sm-150p-f {
17689
    min-width: 150% !important;
17690
  }
16848 stevensc 17691
 
16825 efrain 17692
  .wd-sm-200 {
17693
    width: 200px;
17694
  }
16848 stevensc 17695
 
16825 efrain 17696
  .wd-sm-200p {
17697
    width: 200%;
17698
  }
16848 stevensc 17699
 
16825 efrain 17700
  .mx-wd-sm-200p {
17701
    max-width: 200%;
17702
  }
16848 stevensc 17703
 
16825 efrain 17704
  .mn-wd-sm-200p {
17705
    min-width: 200%;
17706
  }
16848 stevensc 17707
 
16825 efrain 17708
  .wd-sm-200-f {
17709
    width: 200px !important;
17710
  }
16848 stevensc 17711
 
16825 efrain 17712
  .wd-sm-200p-f {
17713
    width: 200% !important;
17714
  }
16848 stevensc 17715
 
16825 efrain 17716
  .mx-wd-sm-200p-f {
17717
    max-width: 200% !important;
17718
  }
16848 stevensc 17719
 
16825 efrain 17720
  .mn-wd-sm-200p-f {
17721
    min-width: 200% !important;
17722
  }
16848 stevensc 17723
 
16825 efrain 17724
  .wd-sm-250 {
17725
    width: 250px;
17726
  }
16848 stevensc 17727
 
16825 efrain 17728
  .wd-sm-250p {
17729
    width: 250%;
17730
  }
16848 stevensc 17731
 
16825 efrain 17732
  .mx-wd-sm-250p {
17733
    max-width: 250%;
17734
  }
16848 stevensc 17735
 
16825 efrain 17736
  .mn-wd-sm-250p {
17737
    min-width: 250%;
17738
  }
16848 stevensc 17739
 
16825 efrain 17740
  .wd-sm-250-f {
17741
    width: 250px !important;
17742
  }
16848 stevensc 17743
 
16825 efrain 17744
  .wd-sm-250p-f {
17745
    width: 250% !important;
17746
  }
16848 stevensc 17747
 
16825 efrain 17748
  .mx-wd-sm-250p-f {
17749
    max-width: 250% !important;
17750
  }
16848 stevensc 17751
 
16825 efrain 17752
  .mn-wd-sm-250p-f {
17753
    min-width: 250% !important;
17754
  }
16848 stevensc 17755
 
16825 efrain 17756
  .wd-sm-300 {
17757
    width: 300px;
17758
  }
16848 stevensc 17759
 
16825 efrain 17760
  .wd-sm-300p {
17761
    width: 300%;
17762
  }
16848 stevensc 17763
 
16825 efrain 17764
  .mx-wd-sm-300p {
17765
    max-width: 300%;
17766
  }
16848 stevensc 17767
 
16825 efrain 17768
  .mn-wd-sm-300p {
17769
    min-width: 300%;
17770
  }
16848 stevensc 17771
 
16825 efrain 17772
  .wd-sm-300-f {
17773
    width: 300px !important;
17774
  }
16848 stevensc 17775
 
16825 efrain 17776
  .wd-sm-300p-f {
17777
    width: 300% !important;
17778
  }
16848 stevensc 17779
 
16825 efrain 17780
  .mx-wd-sm-300p-f {
17781
    max-width: 300% !important;
17782
  }
16848 stevensc 17783
 
16825 efrain 17784
  .mn-wd-sm-300p-f {
17785
    min-width: 300% !important;
17786
  }
16848 stevensc 17787
 
16825 efrain 17788
  .wd-sm-350 {
17789
    width: 350px;
17790
  }
16848 stevensc 17791
 
16825 efrain 17792
  .wd-sm-350p {
17793
    width: 350%;
17794
  }
16848 stevensc 17795
 
16825 efrain 17796
  .mx-wd-sm-350p {
17797
    max-width: 350%;
17798
  }
16848 stevensc 17799
 
16825 efrain 17800
  .mn-wd-sm-350p {
17801
    min-width: 350%;
17802
  }
16848 stevensc 17803
 
16825 efrain 17804
  .wd-sm-350-f {
17805
    width: 350px !important;
17806
  }
16848 stevensc 17807
 
16825 efrain 17808
  .wd-sm-350p-f {
17809
    width: 350% !important;
17810
  }
16848 stevensc 17811
 
16825 efrain 17812
  .mx-wd-sm-350p-f {
17813
    max-width: 350% !important;
17814
  }
16848 stevensc 17815
 
16825 efrain 17816
  .mn-wd-sm-350p-f {
17817
    min-width: 350% !important;
17818
  }
16848 stevensc 17819
 
16825 efrain 17820
  .wd-sm-400 {
17821
    width: 400px;
17822
  }
16848 stevensc 17823
 
16825 efrain 17824
  .wd-sm-400p {
17825
    width: 400%;
17826
  }
16848 stevensc 17827
 
16825 efrain 17828
  .mx-wd-sm-400p {
17829
    max-width: 400%;
17830
  }
16848 stevensc 17831
 
16825 efrain 17832
  .mn-wd-sm-400p {
17833
    min-width: 400%;
17834
  }
16848 stevensc 17835
 
16825 efrain 17836
  .wd-sm-400-f {
17837
    width: 400px !important;
17838
  }
16848 stevensc 17839
 
16825 efrain 17840
  .wd-sm-400p-f {
17841
    width: 400% !important;
17842
  }
16848 stevensc 17843
 
16825 efrain 17844
  .mx-wd-sm-400p-f {
17845
    max-width: 400% !important;
17846
  }
16848 stevensc 17847
 
16825 efrain 17848
  .mn-wd-sm-400p-f {
17849
    min-width: 400% !important;
17850
  }
16848 stevensc 17851
 
16825 efrain 17852
  .wd-sm-450 {
17853
    width: 450px;
17854
  }
16848 stevensc 17855
 
16825 efrain 17856
  .wd-sm-450p {
17857
    width: 450%;
17858
  }
16848 stevensc 17859
 
16825 efrain 17860
  .mx-wd-sm-450p {
17861
    max-width: 450%;
17862
  }
16848 stevensc 17863
 
16825 efrain 17864
  .mn-wd-sm-450p {
17865
    min-width: 450%;
17866
  }
16848 stevensc 17867
 
16825 efrain 17868
  .wd-sm-450-f {
17869
    width: 450px !important;
17870
  }
16848 stevensc 17871
 
16825 efrain 17872
  .wd-sm-450p-f {
17873
    width: 450% !important;
17874
  }
16848 stevensc 17875
 
16825 efrain 17876
  .mx-wd-sm-450p-f {
17877
    max-width: 450% !important;
17878
  }
16848 stevensc 17879
 
16825 efrain 17880
  .mn-wd-sm-450p-f {
17881
    min-width: 450% !important;
17882
  }
16848 stevensc 17883
 
16825 efrain 17884
  .wd-sm-500 {
17885
    width: 500px;
17886
  }
16848 stevensc 17887
 
16825 efrain 17888
  .wd-sm-500p {
17889
    width: 500%;
17890
  }
16848 stevensc 17891
 
16825 efrain 17892
  .mx-wd-sm-500p {
17893
    max-width: 500%;
17894
  }
16848 stevensc 17895
 
16825 efrain 17896
  .mn-wd-sm-500p {
17897
    min-width: 500%;
17898
  }
16848 stevensc 17899
 
16825 efrain 17900
  .wd-sm-500-f {
17901
    width: 500px !important;
17902
  }
16848 stevensc 17903
 
16825 efrain 17904
  .wd-sm-500p-f {
17905
    width: 500% !important;
17906
  }
16848 stevensc 17907
 
16825 efrain 17908
  .mx-wd-sm-500p-f {
17909
    max-width: 500% !important;
17910
  }
16848 stevensc 17911
 
16825 efrain 17912
  .mn-wd-sm-500p-f {
17913
    min-width: 500% !important;
17914
  }
16848 stevensc 17915
 
16825 efrain 17916
  .wd-sm-550 {
17917
    width: 550px;
17918
  }
16848 stevensc 17919
 
16825 efrain 17920
  .wd-sm-550p {
17921
    width: 550%;
17922
  }
16848 stevensc 17923
 
16825 efrain 17924
  .mx-wd-sm-550p {
17925
    max-width: 550%;
17926
  }
16848 stevensc 17927
 
16825 efrain 17928
  .mn-wd-sm-550p {
17929
    min-width: 550%;
17930
  }
16848 stevensc 17931
 
16825 efrain 17932
  .wd-sm-550-f {
17933
    width: 550px !important;
17934
  }
16848 stevensc 17935
 
16825 efrain 17936
  .wd-sm-550p-f {
17937
    width: 550% !important;
17938
  }
16848 stevensc 17939
 
16825 efrain 17940
  .mx-wd-sm-550p-f {
17941
    max-width: 550% !important;
17942
  }
16848 stevensc 17943
 
16825 efrain 17944
  .mn-wd-sm-550p-f {
17945
    min-width: 550% !important;
17946
  }
16848 stevensc 17947
 
16825 efrain 17948
  .wd-sm-600 {
17949
    width: 600px;
17950
  }
16848 stevensc 17951
 
16825 efrain 17952
  .wd-sm-600p {
17953
    width: 600%;
17954
  }
16848 stevensc 17955
 
16825 efrain 17956
  .mx-wd-sm-600p {
17957
    max-width: 600%;
17958
  }
16848 stevensc 17959
 
16825 efrain 17960
  .mn-wd-sm-600p {
17961
    min-width: 600%;
17962
  }
16848 stevensc 17963
 
16825 efrain 17964
  .wd-sm-600-f {
17965
    width: 600px !important;
17966
  }
16848 stevensc 17967
 
16825 efrain 17968
  .wd-sm-600p-f {
17969
    width: 600% !important;
17970
  }
16848 stevensc 17971
 
16825 efrain 17972
  .mx-wd-sm-600p-f {
17973
    max-width: 600% !important;
17974
  }
16848 stevensc 17975
 
16825 efrain 17976
  .mn-wd-sm-600p-f {
17977
    min-width: 600% !important;
17978
  }
16848 stevensc 17979
 
16825 efrain 17980
  .wd-sm-650 {
17981
    width: 650px;
17982
  }
16848 stevensc 17983
 
16825 efrain 17984
  .wd-sm-650p {
17985
    width: 650%;
17986
  }
16848 stevensc 17987
 
16825 efrain 17988
  .mx-wd-sm-650p {
17989
    max-width: 650%;
17990
  }
16848 stevensc 17991
 
16825 efrain 17992
  .mn-wd-sm-650p {
17993
    min-width: 650%;
17994
  }
16848 stevensc 17995
 
16825 efrain 17996
  .wd-sm-650-f {
17997
    width: 650px !important;
17998
  }
16848 stevensc 17999
 
16825 efrain 18000
  .wd-sm-650p-f {
18001
    width: 650% !important;
18002
  }
16848 stevensc 18003
 
16825 efrain 18004
  .mx-wd-sm-650p-f {
18005
    max-width: 650% !important;
18006
  }
16848 stevensc 18007
 
16825 efrain 18008
  .mn-wd-sm-650p-f {
18009
    min-width: 650% !important;
18010
  }
16848 stevensc 18011
 
16825 efrain 18012
  .wd-sm-700 {
18013
    width: 700px;
18014
  }
16848 stevensc 18015
 
16825 efrain 18016
  .wd-sm-700p {
18017
    width: 700%;
18018
  }
16848 stevensc 18019
 
16825 efrain 18020
  .mx-wd-sm-700p {
18021
    max-width: 700%;
18022
  }
16848 stevensc 18023
 
16825 efrain 18024
  .mn-wd-sm-700p {
18025
    min-width: 700%;
18026
  }
16848 stevensc 18027
 
16825 efrain 18028
  .wd-sm-700-f {
18029
    width: 700px !important;
18030
  }
16848 stevensc 18031
 
16825 efrain 18032
  .wd-sm-700p-f {
18033
    width: 700% !important;
18034
  }
16848 stevensc 18035
 
16825 efrain 18036
  .mx-wd-sm-700p-f {
18037
    max-width: 700% !important;
18038
  }
16848 stevensc 18039
 
16825 efrain 18040
  .mn-wd-sm-700p-f {
18041
    min-width: 700% !important;
18042
  }
16848 stevensc 18043
 
16825 efrain 18044
  .wd-sm-750 {
18045
    width: 750px;
18046
  }
16848 stevensc 18047
 
16825 efrain 18048
  .wd-sm-750p {
18049
    width: 750%;
18050
  }
16848 stevensc 18051
 
16825 efrain 18052
  .mx-wd-sm-750p {
18053
    max-width: 750%;
18054
  }
16848 stevensc 18055
 
16825 efrain 18056
  .mn-wd-sm-750p {
18057
    min-width: 750%;
18058
  }
16848 stevensc 18059
 
16825 efrain 18060
  .wd-sm-750-f {
18061
    width: 750px !important;
18062
  }
16848 stevensc 18063
 
16825 efrain 18064
  .wd-sm-750p-f {
18065
    width: 750% !important;
18066
  }
16848 stevensc 18067
 
16825 efrain 18068
  .mx-wd-sm-750p-f {
18069
    max-width: 750% !important;
18070
  }
16848 stevensc 18071
 
16825 efrain 18072
  .mn-wd-sm-750p-f {
18073
    min-width: 750% !important;
18074
  }
16848 stevensc 18075
 
16825 efrain 18076
  .wd-sm-800 {
18077
    width: 800px;
18078
  }
16848 stevensc 18079
 
16825 efrain 18080
  .wd-sm-800p {
18081
    width: 800%;
18082
  }
16848 stevensc 18083
 
16825 efrain 18084
  .mx-wd-sm-800p {
18085
    max-width: 800%;
18086
  }
16848 stevensc 18087
 
16825 efrain 18088
  .mn-wd-sm-800p {
18089
    min-width: 800%;
18090
  }
16848 stevensc 18091
 
16825 efrain 18092
  .wd-sm-800-f {
18093
    width: 800px !important;
18094
  }
16848 stevensc 18095
 
16825 efrain 18096
  .wd-sm-800p-f {
18097
    width: 800% !important;
18098
  }
16848 stevensc 18099
 
16825 efrain 18100
  .mx-wd-sm-800p-f {
18101
    max-width: 800% !important;
18102
  }
16848 stevensc 18103
 
16825 efrain 18104
  .mn-wd-sm-800p-f {
18105
    min-width: 800% !important;
18106
  }
16848 stevensc 18107
 
16825 efrain 18108
  .wd-sm-850 {
18109
    width: 850px;
18110
  }
16848 stevensc 18111
 
16825 efrain 18112
  .wd-sm-850p {
18113
    width: 850%;
18114
  }
16848 stevensc 18115
 
16825 efrain 18116
  .mx-wd-sm-850p {
18117
    max-width: 850%;
18118
  }
16848 stevensc 18119
 
16825 efrain 18120
  .mn-wd-sm-850p {
18121
    min-width: 850%;
18122
  }
16848 stevensc 18123
 
16825 efrain 18124
  .wd-sm-850-f {
18125
    width: 850px !important;
18126
  }
16848 stevensc 18127
 
16825 efrain 18128
  .wd-sm-850p-f {
18129
    width: 850% !important;
18130
  }
16848 stevensc 18131
 
16825 efrain 18132
  .mx-wd-sm-850p-f {
18133
    max-width: 850% !important;
18134
  }
16848 stevensc 18135
 
16825 efrain 18136
  .mn-wd-sm-850p-f {
18137
    min-width: 850% !important;
18138
  }
16848 stevensc 18139
 
16825 efrain 18140
  .wd-sm-900 {
18141
    width: 900px;
18142
  }
16848 stevensc 18143
 
16825 efrain 18144
  .wd-sm-900p {
18145
    width: 900%;
18146
  }
16848 stevensc 18147
 
16825 efrain 18148
  .mx-wd-sm-900p {
18149
    max-width: 900%;
18150
  }
16848 stevensc 18151
 
16825 efrain 18152
  .mn-wd-sm-900p {
18153
    min-width: 900%;
18154
  }
16848 stevensc 18155
 
16825 efrain 18156
  .wd-sm-900-f {
18157
    width: 900px !important;
18158
  }
16848 stevensc 18159
 
16825 efrain 18160
  .wd-sm-900p-f {
18161
    width: 900% !important;
18162
  }
16848 stevensc 18163
 
16825 efrain 18164
  .mx-wd-sm-900p-f {
18165
    max-width: 900% !important;
18166
  }
16848 stevensc 18167
 
16825 efrain 18168
  .mn-wd-sm-900p-f {
18169
    min-width: 900% !important;
18170
  }
16848 stevensc 18171
 
16825 efrain 18172
  .wd-sm-950 {
18173
    width: 950px;
18174
  }
16848 stevensc 18175
 
16825 efrain 18176
  .wd-sm-950p {
18177
    width: 950%;
18178
  }
16848 stevensc 18179
 
16825 efrain 18180
  .mx-wd-sm-950p {
18181
    max-width: 950%;
18182
  }
16848 stevensc 18183
 
16825 efrain 18184
  .mn-wd-sm-950p {
18185
    min-width: 950%;
18186
  }
16848 stevensc 18187
 
16825 efrain 18188
  .wd-sm-950-f {
18189
    width: 950px !important;
18190
  }
16848 stevensc 18191
 
16825 efrain 18192
  .wd-sm-950p-f {
18193
    width: 950% !important;
18194
  }
16848 stevensc 18195
 
16825 efrain 18196
  .mx-wd-sm-950p-f {
18197
    max-width: 950% !important;
18198
  }
16848 stevensc 18199
 
16825 efrain 18200
  .mn-wd-sm-950p-f {
18201
    min-width: 950% !important;
18202
  }
16848 stevensc 18203
 
16825 efrain 18204
  .wd-sm-1000 {
18205
    width: 1000px;
18206
  }
16848 stevensc 18207
 
16825 efrain 18208
  .wd-sm-1000p {
18209
    width: 1000%;
18210
  }
16848 stevensc 18211
 
16825 efrain 18212
  .mx-wd-sm-1000p {
18213
    max-width: 1000%;
18214
  }
16848 stevensc 18215
 
16825 efrain 18216
  .mn-wd-sm-1000p {
18217
    min-width: 1000%;
18218
  }
16848 stevensc 18219
 
16825 efrain 18220
  .wd-sm-1000-f {
18221
    width: 1000px !important;
18222
  }
16848 stevensc 18223
 
16825 efrain 18224
  .wd-sm-1000p-f {
18225
    width: 1000% !important;
18226
  }
16848 stevensc 18227
 
16825 efrain 18228
  .mx-wd-sm-1000p-f {
18229
    max-width: 1000% !important;
18230
  }
16848 stevensc 18231
 
16825 efrain 18232
  .mn-wd-sm-1000p-f {
18233
    min-width: 1000% !important;
18234
  }
16848 stevensc 18235
 
16825 efrain 18236
  .wd-sm-auto {
18237
    width: auto;
18238
  }
16848 stevensc 18239
 
16825 efrain 18240
  .wd-sm-auto-f {
18241
    width: auto !important;
18242
  }
18243
}
16848 stevensc 18244
 
16825 efrain 18245
@media (min-width: 768px) {
18246
  .wd-md-5 {
18247
    width: 5px;
18248
  }
16848 stevensc 18249
 
16825 efrain 18250
  .wd-md-5p {
18251
    width: 5%;
18252
  }
16848 stevensc 18253
 
16825 efrain 18254
  .mx-wd-md-5p {
18255
    max-width: 5%;
18256
  }
16848 stevensc 18257
 
16825 efrain 18258
  .mn-wd-md-5p {
18259
    min-width: 5%;
18260
  }
16848 stevensc 18261
 
16825 efrain 18262
  .wd-md-5-f {
18263
    width: 5px !important;
18264
  }
16848 stevensc 18265
 
16825 efrain 18266
  .wd-md-5p-f {
18267
    width: 5% !important;
18268
  }
16848 stevensc 18269
 
16825 efrain 18270
  .mx-wd-md-5p-f {
18271
    max-width: 5% !important;
18272
  }
16848 stevensc 18273
 
16825 efrain 18274
  .mn-wd-md-5p-f {
18275
    min-width: 5% !important;
18276
  }
16848 stevensc 18277
 
16825 efrain 18278
  .wd-md-10 {
18279
    width: 10px;
18280
  }
16848 stevensc 18281
 
16825 efrain 18282
  .wd-md-10p {
18283
    width: 10%;
18284
  }
16848 stevensc 18285
 
16825 efrain 18286
  .mx-wd-md-10p {
18287
    max-width: 10%;
18288
  }
16848 stevensc 18289
 
16825 efrain 18290
  .mn-wd-md-10p {
18291
    min-width: 10%;
18292
  }
16848 stevensc 18293
 
16825 efrain 18294
  .wd-md-10-f {
18295
    width: 10px !important;
18296
  }
16848 stevensc 18297
 
16825 efrain 18298
  .wd-md-10p-f {
18299
    width: 10% !important;
18300
  }
16848 stevensc 18301
 
16825 efrain 18302
  .mx-wd-md-10p-f {
18303
    max-width: 10% !important;
18304
  }
16848 stevensc 18305
 
16825 efrain 18306
  .mn-wd-md-10p-f {
18307
    min-width: 10% !important;
18308
  }
16848 stevensc 18309
 
16825 efrain 18310
  .wd-md-15 {
18311
    width: 15px;
18312
  }
16848 stevensc 18313
 
16825 efrain 18314
  .wd-md-15p {
18315
    width: 15%;
18316
  }
16848 stevensc 18317
 
16825 efrain 18318
  .mx-wd-md-15p {
18319
    max-width: 15%;
18320
  }
16848 stevensc 18321
 
16825 efrain 18322
  .mn-wd-md-15p {
18323
    min-width: 15%;
18324
  }
16848 stevensc 18325
 
16825 efrain 18326
  .wd-md-15-f {
18327
    width: 15px !important;
18328
  }
16848 stevensc 18329
 
16825 efrain 18330
  .wd-md-15p-f {
18331
    width: 15% !important;
18332
  }
16848 stevensc 18333
 
16825 efrain 18334
  .mx-wd-md-15p-f {
18335
    max-width: 15% !important;
18336
  }
16848 stevensc 18337
 
16825 efrain 18338
  .mn-wd-md-15p-f {
18339
    min-width: 15% !important;
18340
  }
16848 stevensc 18341
 
16825 efrain 18342
  .wd-md-20 {
18343
    width: 20px;
18344
  }
16848 stevensc 18345
 
16825 efrain 18346
  .wd-md-20p {
18347
    width: 20%;
18348
  }
16848 stevensc 18349
 
16825 efrain 18350
  .mx-wd-md-20p {
18351
    max-width: 20%;
18352
  }
16848 stevensc 18353
 
16825 efrain 18354
  .mn-wd-md-20p {
18355
    min-width: 20%;
18356
  }
16848 stevensc 18357
 
16825 efrain 18358
  .wd-md-20-f {
18359
    width: 20px !important;
18360
  }
16848 stevensc 18361
 
16825 efrain 18362
  .wd-md-20p-f {
18363
    width: 20% !important;
18364
  }
16848 stevensc 18365
 
16825 efrain 18366
  .mx-wd-md-20p-f {
18367
    max-width: 20% !important;
18368
  }
16848 stevensc 18369
 
16825 efrain 18370
  .mn-wd-md-20p-f {
18371
    min-width: 20% !important;
18372
  }
16848 stevensc 18373
 
16825 efrain 18374
  .wd-md-25 {
18375
    width: 25px;
18376
  }
16848 stevensc 18377
 
16825 efrain 18378
  .wd-md-25p {
18379
    width: 25%;
18380
  }
16848 stevensc 18381
 
16825 efrain 18382
  .mx-wd-md-25p {
18383
    max-width: 25%;
18384
  }
16848 stevensc 18385
 
16825 efrain 18386
  .mn-wd-md-25p {
18387
    min-width: 25%;
18388
  }
16848 stevensc 18389
 
16825 efrain 18390
  .wd-md-25-f {
18391
    width: 25px !important;
18392
  }
16848 stevensc 18393
 
16825 efrain 18394
  .wd-md-25p-f {
18395
    width: 25% !important;
18396
  }
16848 stevensc 18397
 
16825 efrain 18398
  .mx-wd-md-25p-f {
18399
    max-width: 25% !important;
18400
  }
16848 stevensc 18401
 
16825 efrain 18402
  .mn-wd-md-25p-f {
18403
    min-width: 25% !important;
18404
  }
16848 stevensc 18405
 
16825 efrain 18406
  .wd-md-30 {
18407
    width: 30px;
18408
  }
16848 stevensc 18409
 
16825 efrain 18410
  .wd-md-30p {
18411
    width: 30%;
18412
  }
16848 stevensc 18413
 
16825 efrain 18414
  .mx-wd-md-30p {
18415
    max-width: 30%;
18416
  }
16848 stevensc 18417
 
16825 efrain 18418
  .mn-wd-md-30p {
18419
    min-width: 30%;
18420
  }
16848 stevensc 18421
 
16825 efrain 18422
  .wd-md-30-f {
18423
    width: 30px !important;
18424
  }
16848 stevensc 18425
 
16825 efrain 18426
  .wd-md-30p-f {
18427
    width: 30% !important;
18428
  }
16848 stevensc 18429
 
16825 efrain 18430
  .mx-wd-md-30p-f {
18431
    max-width: 30% !important;
18432
  }
16848 stevensc 18433
 
16825 efrain 18434
  .mn-wd-md-30p-f {
18435
    min-width: 30% !important;
18436
  }
16848 stevensc 18437
 
16825 efrain 18438
  .wd-md-35 {
18439
    width: 35px;
18440
  }
16848 stevensc 18441
 
16825 efrain 18442
  .wd-md-35p {
18443
    width: 35%;
18444
  }
16848 stevensc 18445
 
16825 efrain 18446
  .mx-wd-md-35p {
18447
    max-width: 35%;
18448
  }
16848 stevensc 18449
 
16825 efrain 18450
  .mn-wd-md-35p {
18451
    min-width: 35%;
18452
  }
16848 stevensc 18453
 
16825 efrain 18454
  .wd-md-35-f {
18455
    width: 35px !important;
18456
  }
16848 stevensc 18457
 
16825 efrain 18458
  .wd-md-35p-f {
18459
    width: 35% !important;
18460
  }
16848 stevensc 18461
 
16825 efrain 18462
  .mx-wd-md-35p-f {
18463
    max-width: 35% !important;
18464
  }
16848 stevensc 18465
 
16825 efrain 18466
  .mn-wd-md-35p-f {
18467
    min-width: 35% !important;
18468
  }
16848 stevensc 18469
 
16825 efrain 18470
  .wd-md-40 {
18471
    width: 40px;
18472
  }
16848 stevensc 18473
 
16825 efrain 18474
  .wd-md-40p {
18475
    width: 40%;
18476
  }
16848 stevensc 18477
 
16825 efrain 18478
  .mx-wd-md-40p {
18479
    max-width: 40%;
18480
  }
16848 stevensc 18481
 
16825 efrain 18482
  .mn-wd-md-40p {
18483
    min-width: 40%;
18484
  }
16848 stevensc 18485
 
16825 efrain 18486
  .wd-md-40-f {
18487
    width: 40px !important;
18488
  }
16848 stevensc 18489
 
16825 efrain 18490
  .wd-md-40p-f {
18491
    width: 40% !important;
18492
  }
16848 stevensc 18493
 
16825 efrain 18494
  .mx-wd-md-40p-f {
18495
    max-width: 40% !important;
18496
  }
16848 stevensc 18497
 
16825 efrain 18498
  .mn-wd-md-40p-f {
18499
    min-width: 40% !important;
18500
  }
16848 stevensc 18501
 
16825 efrain 18502
  .wd-md-45 {
18503
    width: 45px;
18504
  }
16848 stevensc 18505
 
16825 efrain 18506
  .wd-md-45p {
18507
    width: 45%;
18508
  }
16848 stevensc 18509
 
16825 efrain 18510
  .mx-wd-md-45p {
18511
    max-width: 45%;
18512
  }
16848 stevensc 18513
 
16825 efrain 18514
  .mn-wd-md-45p {
18515
    min-width: 45%;
18516
  }
16848 stevensc 18517
 
16825 efrain 18518
  .wd-md-45-f {
18519
    width: 45px !important;
18520
  }
16848 stevensc 18521
 
16825 efrain 18522
  .wd-md-45p-f {
18523
    width: 45% !important;
18524
  }
16848 stevensc 18525
 
16825 efrain 18526
  .mx-wd-md-45p-f {
18527
    max-width: 45% !important;
18528
  }
16848 stevensc 18529
 
16825 efrain 18530
  .mn-wd-md-45p-f {
18531
    min-width: 45% !important;
18532
  }
16848 stevensc 18533
 
16825 efrain 18534
  .wd-md-50 {
18535
    width: 50px;
18536
  }
16848 stevensc 18537
 
16825 efrain 18538
  .wd-md-50p {
18539
    width: 50%;
18540
  }
16848 stevensc 18541
 
16825 efrain 18542
  .mx-wd-md-50p {
18543
    max-width: 50%;
18544
  }
16848 stevensc 18545
 
16825 efrain 18546
  .mn-wd-md-50p {
18547
    min-width: 50%;
18548
  }
16848 stevensc 18549
 
16825 efrain 18550
  .wd-md-50-f {
18551
    width: 50px !important;
18552
  }
16848 stevensc 18553
 
16825 efrain 18554
  .wd-md-50p-f {
18555
    width: 50% !important;
18556
  }
16848 stevensc 18557
 
16825 efrain 18558
  .mx-wd-md-50p-f {
18559
    max-width: 50% !important;
18560
  }
16848 stevensc 18561
 
16825 efrain 18562
  .mn-wd-md-50p-f {
18563
    min-width: 50% !important;
18564
  }
16848 stevensc 18565
 
16825 efrain 18566
  .wd-md-55 {
18567
    width: 55px;
18568
  }
16848 stevensc 18569
 
16825 efrain 18570
  .wd-md-55p {
18571
    width: 55%;
18572
  }
16848 stevensc 18573
 
16825 efrain 18574
  .mx-wd-md-55p {
18575
    max-width: 55%;
18576
  }
16848 stevensc 18577
 
16825 efrain 18578
  .mn-wd-md-55p {
18579
    min-width: 55%;
18580
  }
16848 stevensc 18581
 
16825 efrain 18582
  .wd-md-55-f {
18583
    width: 55px !important;
18584
  }
16848 stevensc 18585
 
16825 efrain 18586
  .wd-md-55p-f {
18587
    width: 55% !important;
18588
  }
16848 stevensc 18589
 
16825 efrain 18590
  .mx-wd-md-55p-f {
18591
    max-width: 55% !important;
18592
  }
16848 stevensc 18593
 
16825 efrain 18594
  .mn-wd-md-55p-f {
18595
    min-width: 55% !important;
18596
  }
16848 stevensc 18597
 
16825 efrain 18598
  .wd-md-60 {
18599
    width: 60px;
18600
  }
16848 stevensc 18601
 
16825 efrain 18602
  .wd-md-60p {
18603
    width: 60%;
18604
  }
16848 stevensc 18605
 
16825 efrain 18606
  .mx-wd-md-60p {
18607
    max-width: 60%;
18608
  }
16848 stevensc 18609
 
16825 efrain 18610
  .mn-wd-md-60p {
18611
    min-width: 60%;
18612
  }
16848 stevensc 18613
 
16825 efrain 18614
  .wd-md-60-f {
18615
    width: 60px !important;
18616
  }
16848 stevensc 18617
 
16825 efrain 18618
  .wd-md-60p-f {
18619
    width: 60% !important;
18620
  }
16848 stevensc 18621
 
16825 efrain 18622
  .mx-wd-md-60p-f {
18623
    max-width: 60% !important;
18624
  }
16848 stevensc 18625
 
16825 efrain 18626
  .mn-wd-md-60p-f {
18627
    min-width: 60% !important;
18628
  }
16848 stevensc 18629
 
16825 efrain 18630
  .wd-md-65 {
18631
    width: 65px;
18632
  }
16848 stevensc 18633
 
16825 efrain 18634
  .wd-md-65p {
18635
    width: 65%;
18636
  }
16848 stevensc 18637
 
16825 efrain 18638
  .mx-wd-md-65p {
18639
    max-width: 65%;
18640
  }
16848 stevensc 18641
 
16825 efrain 18642
  .mn-wd-md-65p {
18643
    min-width: 65%;
18644
  }
16848 stevensc 18645
 
16825 efrain 18646
  .wd-md-65-f {
18647
    width: 65px !important;
18648
  }
16848 stevensc 18649
 
16825 efrain 18650
  .wd-md-65p-f {
18651
    width: 65% !important;
18652
  }
16848 stevensc 18653
 
16825 efrain 18654
  .mx-wd-md-65p-f {
18655
    max-width: 65% !important;
18656
  }
16848 stevensc 18657
 
16825 efrain 18658
  .mn-wd-md-65p-f {
18659
    min-width: 65% !important;
18660
  }
16848 stevensc 18661
 
16825 efrain 18662
  .wd-md-70 {
18663
    width: 70px;
18664
  }
16848 stevensc 18665
 
16825 efrain 18666
  .wd-md-70p {
18667
    width: 70%;
18668
  }
16848 stevensc 18669
 
16825 efrain 18670
  .mx-wd-md-70p {
18671
    max-width: 70%;
18672
  }
16848 stevensc 18673
 
16825 efrain 18674
  .mn-wd-md-70p {
18675
    min-width: 70%;
18676
  }
16848 stevensc 18677
 
16825 efrain 18678
  .wd-md-70-f {
18679
    width: 70px !important;
18680
  }
16848 stevensc 18681
 
16825 efrain 18682
  .wd-md-70p-f {
18683
    width: 70% !important;
18684
  }
16848 stevensc 18685
 
16825 efrain 18686
  .mx-wd-md-70p-f {
18687
    max-width: 70% !important;
18688
  }
16848 stevensc 18689
 
16825 efrain 18690
  .mn-wd-md-70p-f {
18691
    min-width: 70% !important;
18692
  }
16848 stevensc 18693
 
16825 efrain 18694
  .wd-md-75 {
18695
    width: 75px;
18696
  }
16848 stevensc 18697
 
16825 efrain 18698
  .wd-md-75p {
18699
    width: 75%;
18700
  }
16848 stevensc 18701
 
16825 efrain 18702
  .mx-wd-md-75p {
18703
    max-width: 75%;
18704
  }
16848 stevensc 18705
 
16825 efrain 18706
  .mn-wd-md-75p {
18707
    min-width: 75%;
18708
  }
16848 stevensc 18709
 
16825 efrain 18710
  .wd-md-75-f {
18711
    width: 75px !important;
18712
  }
16848 stevensc 18713
 
16825 efrain 18714
  .wd-md-75p-f {
18715
    width: 75% !important;
18716
  }
16848 stevensc 18717
 
16825 efrain 18718
  .mx-wd-md-75p-f {
18719
    max-width: 75% !important;
18720
  }
16848 stevensc 18721
 
16825 efrain 18722
  .mn-wd-md-75p-f {
18723
    min-width: 75% !important;
18724
  }
16848 stevensc 18725
 
16825 efrain 18726
  .wd-md-80 {
18727
    width: 80px;
18728
  }
16848 stevensc 18729
 
16825 efrain 18730
  .wd-md-80p {
18731
    width: 80%;
18732
  }
16848 stevensc 18733
 
16825 efrain 18734
  .mx-wd-md-80p {
18735
    max-width: 80%;
18736
  }
16848 stevensc 18737
 
16825 efrain 18738
  .mn-wd-md-80p {
18739
    min-width: 80%;
18740
  }
16848 stevensc 18741
 
16825 efrain 18742
  .wd-md-80-f {
18743
    width: 80px !important;
18744
  }
16848 stevensc 18745
 
16825 efrain 18746
  .wd-md-80p-f {
18747
    width: 80% !important;
18748
  }
16848 stevensc 18749
 
16825 efrain 18750
  .mx-wd-md-80p-f {
18751
    max-width: 80% !important;
18752
  }
16848 stevensc 18753
 
16825 efrain 18754
  .mn-wd-md-80p-f {
18755
    min-width: 80% !important;
18756
  }
16848 stevensc 18757
 
16825 efrain 18758
  .wd-md-85 {
18759
    width: 85px;
18760
  }
16848 stevensc 18761
 
16825 efrain 18762
  .wd-md-85p {
18763
    width: 85%;
18764
  }
16848 stevensc 18765
 
16825 efrain 18766
  .mx-wd-md-85p {
18767
    max-width: 85%;
18768
  }
16848 stevensc 18769
 
16825 efrain 18770
  .mn-wd-md-85p {
18771
    min-width: 85%;
18772
  }
16848 stevensc 18773
 
16825 efrain 18774
  .wd-md-85-f {
18775
    width: 85px !important;
18776
  }
16848 stevensc 18777
 
16825 efrain 18778
  .wd-md-85p-f {
18779
    width: 85% !important;
18780
  }
16848 stevensc 18781
 
16825 efrain 18782
  .mx-wd-md-85p-f {
18783
    max-width: 85% !important;
18784
  }
16848 stevensc 18785
 
16825 efrain 18786
  .mn-wd-md-85p-f {
18787
    min-width: 85% !important;
18788
  }
16848 stevensc 18789
 
16825 efrain 18790
  .wd-md-90 {
18791
    width: 90px;
18792
  }
16848 stevensc 18793
 
16825 efrain 18794
  .wd-md-90p {
18795
    width: 90%;
18796
  }
16848 stevensc 18797
 
16825 efrain 18798
  .mx-wd-md-90p {
18799
    max-width: 90%;
18800
  }
16848 stevensc 18801
 
16825 efrain 18802
  .mn-wd-md-90p {
18803
    min-width: 90%;
18804
  }
16848 stevensc 18805
 
16825 efrain 18806
  .wd-md-90-f {
18807
    width: 90px !important;
18808
  }
16848 stevensc 18809
 
16825 efrain 18810
  .wd-md-90p-f {
18811
    width: 90% !important;
18812
  }
16848 stevensc 18813
 
16825 efrain 18814
  .mx-wd-md-90p-f {
18815
    max-width: 90% !important;
18816
  }
16848 stevensc 18817
 
16825 efrain 18818
  .mn-wd-md-90p-f {
18819
    min-width: 90% !important;
18820
  }
16848 stevensc 18821
 
16825 efrain 18822
  .wd-md-95 {
18823
    width: 95px;
18824
  }
16848 stevensc 18825
 
16825 efrain 18826
  .wd-md-95p {
18827
    width: 95%;
18828
  }
16848 stevensc 18829
 
16825 efrain 18830
  .mx-wd-md-95p {
18831
    max-width: 95%;
18832
  }
16848 stevensc 18833
 
16825 efrain 18834
  .mn-wd-md-95p {
18835
    min-width: 95%;
18836
  }
16848 stevensc 18837
 
16825 efrain 18838
  .wd-md-95-f {
18839
    width: 95px !important;
18840
  }
16848 stevensc 18841
 
16825 efrain 18842
  .wd-md-95p-f {
18843
    width: 95% !important;
18844
  }
16848 stevensc 18845
 
16825 efrain 18846
  .mx-wd-md-95p-f {
18847
    max-width: 95% !important;
18848
  }
16848 stevensc 18849
 
16825 efrain 18850
  .mn-wd-md-95p-f {
18851
    min-width: 95% !important;
18852
  }
16848 stevensc 18853
 
16825 efrain 18854
  .wd-md-100 {
18855
    width: 100px;
18856
  }
16848 stevensc 18857
 
16825 efrain 18858
  .wd-md-100p {
18859
    width: 100%;
18860
  }
16848 stevensc 18861
 
16825 efrain 18862
  .mx-wd-md-100p {
18863
    max-width: 100%;
18864
  }
16848 stevensc 18865
 
16825 efrain 18866
  .mn-wd-md-100p {
18867
    min-width: 100%;
18868
  }
16848 stevensc 18869
 
16825 efrain 18870
  .wd-md-100-f {
18871
    width: 100px !important;
18872
  }
16848 stevensc 18873
 
16825 efrain 18874
  .wd-md-100p-f {
18875
    width: 100% !important;
18876
  }
16848 stevensc 18877
 
16825 efrain 18878
  .mx-wd-md-100p-f {
18879
    max-width: 100% !important;
18880
  }
16848 stevensc 18881
 
16825 efrain 18882
  .mn-wd-md-100p-f {
18883
    min-width: 100% !important;
18884
  }
16848 stevensc 18885
 
16825 efrain 18886
  .wd-md-150 {
18887
    width: 150px;
18888
  }
16848 stevensc 18889
 
16825 efrain 18890
  .wd-md-150p {
18891
    width: 150%;
18892
  }
16848 stevensc 18893
 
16825 efrain 18894
  .mx-wd-md-150p {
18895
    max-width: 150%;
18896
  }
16848 stevensc 18897
 
16825 efrain 18898
  .mn-wd-md-150p {
18899
    min-width: 150%;
18900
  }
16848 stevensc 18901
 
16825 efrain 18902
  .wd-md-150-f {
18903
    width: 150px !important;
18904
  }
16848 stevensc 18905
 
16825 efrain 18906
  .wd-md-150p-f {
18907
    width: 150% !important;
18908
  }
16848 stevensc 18909
 
16825 efrain 18910
  .mx-wd-md-150p-f {
18911
    max-width: 150% !important;
18912
  }
16848 stevensc 18913
 
16825 efrain 18914
  .mn-wd-md-150p-f {
18915
    min-width: 150% !important;
18916
  }
16848 stevensc 18917
 
16825 efrain 18918
  .wd-md-200 {
18919
    width: 200px;
18920
  }
16848 stevensc 18921
 
16825 efrain 18922
  .wd-md-200p {
18923
    width: 200%;
18924
  }
16848 stevensc 18925
 
16825 efrain 18926
  .mx-wd-md-200p {
18927
    max-width: 200%;
18928
  }
16848 stevensc 18929
 
16825 efrain 18930
  .mn-wd-md-200p {
18931
    min-width: 200%;
18932
  }
16848 stevensc 18933
 
16825 efrain 18934
  .wd-md-200-f {
18935
    width: 200px !important;
18936
  }
16848 stevensc 18937
 
16825 efrain 18938
  .wd-md-200p-f {
18939
    width: 200% !important;
18940
  }
16848 stevensc 18941
 
16825 efrain 18942
  .mx-wd-md-200p-f {
18943
    max-width: 200% !important;
18944
  }
16848 stevensc 18945
 
16825 efrain 18946
  .mn-wd-md-200p-f {
18947
    min-width: 200% !important;
18948
  }
16848 stevensc 18949
 
16825 efrain 18950
  .wd-md-250 {
18951
    width: 250px;
18952
  }
16848 stevensc 18953
 
16825 efrain 18954
  .wd-md-250p {
18955
    width: 250%;
18956
  }
16848 stevensc 18957
 
16825 efrain 18958
  .mx-wd-md-250p {
18959
    max-width: 250%;
18960
  }
16848 stevensc 18961
 
16825 efrain 18962
  .mn-wd-md-250p {
18963
    min-width: 250%;
18964
  }
16848 stevensc 18965
 
16825 efrain 18966
  .wd-md-250-f {
18967
    width: 250px !important;
18968
  }
16848 stevensc 18969
 
16825 efrain 18970
  .wd-md-250p-f {
18971
    width: 250% !important;
18972
  }
16848 stevensc 18973
 
16825 efrain 18974
  .mx-wd-md-250p-f {
18975
    max-width: 250% !important;
18976
  }
16848 stevensc 18977
 
16825 efrain 18978
  .mn-wd-md-250p-f {
18979
    min-width: 250% !important;
18980
  }
16848 stevensc 18981
 
16825 efrain 18982
  .wd-md-300 {
18983
    width: 300px;
18984
  }
16848 stevensc 18985
 
16825 efrain 18986
  .wd-md-300p {
18987
    width: 300%;
18988
  }
16848 stevensc 18989
 
16825 efrain 18990
  .mx-wd-md-300p {
18991
    max-width: 300%;
18992
  }
16848 stevensc 18993
 
16825 efrain 18994
  .mn-wd-md-300p {
18995
    min-width: 300%;
18996
  }
16848 stevensc 18997
 
16825 efrain 18998
  .wd-md-300-f {
18999
    width: 300px !important;
19000
  }
16848 stevensc 19001
 
16825 efrain 19002
  .wd-md-300p-f {
19003
    width: 300% !important;
19004
  }
16848 stevensc 19005
 
16825 efrain 19006
  .mx-wd-md-300p-f {
19007
    max-width: 300% !important;
19008
  }
16848 stevensc 19009
 
16825 efrain 19010
  .mn-wd-md-300p-f {
19011
    min-width: 300% !important;
19012
  }
16848 stevensc 19013
 
16825 efrain 19014
  .wd-md-350 {
19015
    width: 350px;
19016
  }
16848 stevensc 19017
 
16825 efrain 19018
  .wd-md-350p {
19019
    width: 350%;
19020
  }
16848 stevensc 19021
 
16825 efrain 19022
  .mx-wd-md-350p {
19023
    max-width: 350%;
19024
  }
16848 stevensc 19025
 
16825 efrain 19026
  .mn-wd-md-350p {
19027
    min-width: 350%;
19028
  }
16848 stevensc 19029
 
16825 efrain 19030
  .wd-md-350-f {
19031
    width: 350px !important;
19032
  }
16848 stevensc 19033
 
16825 efrain 19034
  .wd-md-350p-f {
19035
    width: 350% !important;
19036
  }
16848 stevensc 19037
 
16825 efrain 19038
  .mx-wd-md-350p-f {
19039
    max-width: 350% !important;
19040
  }
16848 stevensc 19041
 
16825 efrain 19042
  .mn-wd-md-350p-f {
19043
    min-width: 350% !important;
19044
  }
16848 stevensc 19045
 
16825 efrain 19046
  .wd-md-400 {
19047
    width: 400px;
19048
  }
16848 stevensc 19049
 
16825 efrain 19050
  .wd-md-400p {
19051
    width: 400%;
19052
  }
16848 stevensc 19053
 
16825 efrain 19054
  .mx-wd-md-400p {
19055
    max-width: 400%;
19056
  }
16848 stevensc 19057
 
16825 efrain 19058
  .mn-wd-md-400p {
19059
    min-width: 400%;
19060
  }
16848 stevensc 19061
 
16825 efrain 19062
  .wd-md-400-f {
19063
    width: 400px !important;
19064
  }
16848 stevensc 19065
 
16825 efrain 19066
  .wd-md-400p-f {
19067
    width: 400% !important;
19068
  }
16848 stevensc 19069
 
16825 efrain 19070
  .mx-wd-md-400p-f {
19071
    max-width: 400% !important;
19072
  }
16848 stevensc 19073
 
16825 efrain 19074
  .mn-wd-md-400p-f {
19075
    min-width: 400% !important;
19076
  }
16848 stevensc 19077
 
16825 efrain 19078
  .wd-md-450 {
19079
    width: 450px;
19080
  }
16848 stevensc 19081
 
16825 efrain 19082
  .wd-md-450p {
19083
    width: 450%;
19084
  }
16848 stevensc 19085
 
16825 efrain 19086
  .mx-wd-md-450p {
19087
    max-width: 450%;
19088
  }
16848 stevensc 19089
 
16825 efrain 19090
  .mn-wd-md-450p {
19091
    min-width: 450%;
19092
  }
16848 stevensc 19093
 
16825 efrain 19094
  .wd-md-450-f {
19095
    width: 450px !important;
19096
  }
16848 stevensc 19097
 
16825 efrain 19098
  .wd-md-450p-f {
19099
    width: 450% !important;
19100
  }
16848 stevensc 19101
 
16825 efrain 19102
  .mx-wd-md-450p-f {
19103
    max-width: 450% !important;
19104
  }
16848 stevensc 19105
 
16825 efrain 19106
  .mn-wd-md-450p-f {
19107
    min-width: 450% !important;
19108
  }
16848 stevensc 19109
 
16825 efrain 19110
  .wd-md-500 {
19111
    width: 500px;
19112
  }
16848 stevensc 19113
 
16825 efrain 19114
  .wd-md-500p {
19115
    width: 500%;
19116
  }
16848 stevensc 19117
 
16825 efrain 19118
  .mx-wd-md-500p {
19119
    max-width: 500%;
19120
  }
16848 stevensc 19121
 
16825 efrain 19122
  .mn-wd-md-500p {
19123
    min-width: 500%;
19124
  }
16848 stevensc 19125
 
16825 efrain 19126
  .wd-md-500-f {
19127
    width: 500px !important;
19128
  }
16848 stevensc 19129
 
16825 efrain 19130
  .wd-md-500p-f {
19131
    width: 500% !important;
19132
  }
16848 stevensc 19133
 
16825 efrain 19134
  .mx-wd-md-500p-f {
19135
    max-width: 500% !important;
19136
  }
16848 stevensc 19137
 
16825 efrain 19138
  .mn-wd-md-500p-f {
19139
    min-width: 500% !important;
19140
  }
16848 stevensc 19141
 
16825 efrain 19142
  .wd-md-550 {
19143
    width: 550px;
19144
  }
16848 stevensc 19145
 
16825 efrain 19146
  .wd-md-550p {
19147
    width: 550%;
19148
  }
16848 stevensc 19149
 
16825 efrain 19150
  .mx-wd-md-550p {
19151
    max-width: 550%;
19152
  }
16848 stevensc 19153
 
16825 efrain 19154
  .mn-wd-md-550p {
19155
    min-width: 550%;
19156
  }
16848 stevensc 19157
 
16825 efrain 19158
  .wd-md-550-f {
19159
    width: 550px !important;
19160
  }
16848 stevensc 19161
 
16825 efrain 19162
  .wd-md-550p-f {
19163
    width: 550% !important;
19164
  }
16848 stevensc 19165
 
16825 efrain 19166
  .mx-wd-md-550p-f {
19167
    max-width: 550% !important;
19168
  }
16848 stevensc 19169
 
16825 efrain 19170
  .mn-wd-md-550p-f {
19171
    min-width: 550% !important;
19172
  }
16848 stevensc 19173
 
16825 efrain 19174
  .wd-md-600 {
19175
    width: 600px;
19176
  }
16848 stevensc 19177
 
16825 efrain 19178
  .wd-md-600p {
19179
    width: 600%;
19180
  }
16848 stevensc 19181
 
16825 efrain 19182
  .mx-wd-md-600p {
19183
    max-width: 600%;
19184
  }
16848 stevensc 19185
 
16825 efrain 19186
  .mn-wd-md-600p {
19187
    min-width: 600%;
19188
  }
16848 stevensc 19189
 
16825 efrain 19190
  .wd-md-600-f {
19191
    width: 600px !important;
19192
  }
16848 stevensc 19193
 
16825 efrain 19194
  .wd-md-600p-f {
19195
    width: 600% !important;
19196
  }
16848 stevensc 19197
 
16825 efrain 19198
  .mx-wd-md-600p-f {
19199
    max-width: 600% !important;
19200
  }
16848 stevensc 19201
 
16825 efrain 19202
  .mn-wd-md-600p-f {
19203
    min-width: 600% !important;
19204
  }
16848 stevensc 19205
 
16825 efrain 19206
  .wd-md-650 {
19207
    width: 650px;
19208
  }
16848 stevensc 19209
 
16825 efrain 19210
  .wd-md-650p {
19211
    width: 650%;
19212
  }
16848 stevensc 19213
 
16825 efrain 19214
  .mx-wd-md-650p {
19215
    max-width: 650%;
19216
  }
16848 stevensc 19217
 
16825 efrain 19218
  .mn-wd-md-650p {
19219
    min-width: 650%;
19220
  }
16848 stevensc 19221
 
16825 efrain 19222
  .wd-md-650-f {
19223
    width: 650px !important;
19224
  }
16848 stevensc 19225
 
16825 efrain 19226
  .wd-md-650p-f {
19227
    width: 650% !important;
19228
  }
16848 stevensc 19229
 
16825 efrain 19230
  .mx-wd-md-650p-f {
19231
    max-width: 650% !important;
19232
  }
16848 stevensc 19233
 
16825 efrain 19234
  .mn-wd-md-650p-f {
19235
    min-width: 650% !important;
19236
  }
16848 stevensc 19237
 
16825 efrain 19238
  .wd-md-700 {
19239
    width: 700px;
19240
  }
16848 stevensc 19241
 
16825 efrain 19242
  .wd-md-700p {
19243
    width: 700%;
19244
  }
16848 stevensc 19245
 
16825 efrain 19246
  .mx-wd-md-700p {
19247
    max-width: 700%;
19248
  }
16848 stevensc 19249
 
16825 efrain 19250
  .mn-wd-md-700p {
19251
    min-width: 700%;
19252
  }
16848 stevensc 19253
 
16825 efrain 19254
  .wd-md-700-f {
19255
    width: 700px !important;
19256
  }
16848 stevensc 19257
 
16825 efrain 19258
  .wd-md-700p-f {
19259
    width: 700% !important;
19260
  }
16848 stevensc 19261
 
16825 efrain 19262
  .mx-wd-md-700p-f {
19263
    max-width: 700% !important;
19264
  }
16848 stevensc 19265
 
16825 efrain 19266
  .mn-wd-md-700p-f {
19267
    min-width: 700% !important;
19268
  }
16848 stevensc 19269
 
16825 efrain 19270
  .wd-md-750 {
19271
    width: 750px;
19272
  }
16848 stevensc 19273
 
16825 efrain 19274
  .wd-md-750p {
19275
    width: 750%;
19276
  }
16848 stevensc 19277
 
16825 efrain 19278
  .mx-wd-md-750p {
19279
    max-width: 750%;
19280
  }
16848 stevensc 19281
 
16825 efrain 19282
  .mn-wd-md-750p {
19283
    min-width: 750%;
19284
  }
16848 stevensc 19285
 
16825 efrain 19286
  .wd-md-750-f {
19287
    width: 750px !important;
19288
  }
16848 stevensc 19289
 
16825 efrain 19290
  .wd-md-750p-f {
19291
    width: 750% !important;
19292
  }
16848 stevensc 19293
 
16825 efrain 19294
  .mx-wd-md-750p-f {
19295
    max-width: 750% !important;
19296
  }
16848 stevensc 19297
 
16825 efrain 19298
  .mn-wd-md-750p-f {
19299
    min-width: 750% !important;
19300
  }
16848 stevensc 19301
 
16825 efrain 19302
  .wd-md-800 {
19303
    width: 800px;
19304
  }
16848 stevensc 19305
 
16825 efrain 19306
  .wd-md-800p {
19307
    width: 800%;
19308
  }
16848 stevensc 19309
 
16825 efrain 19310
  .mx-wd-md-800p {
19311
    max-width: 800%;
19312
  }
16848 stevensc 19313
 
16825 efrain 19314
  .mn-wd-md-800p {
19315
    min-width: 800%;
19316
  }
16848 stevensc 19317
 
16825 efrain 19318
  .wd-md-800-f {
19319
    width: 800px !important;
19320
  }
16848 stevensc 19321
 
16825 efrain 19322
  .wd-md-800p-f {
19323
    width: 800% !important;
19324
  }
16848 stevensc 19325
 
16825 efrain 19326
  .mx-wd-md-800p-f {
19327
    max-width: 800% !important;
19328
  }
16848 stevensc 19329
 
16825 efrain 19330
  .mn-wd-md-800p-f {
19331
    min-width: 800% !important;
19332
  }
16848 stevensc 19333
 
16825 efrain 19334
  .wd-md-850 {
19335
    width: 850px;
19336
  }
16848 stevensc 19337
 
16825 efrain 19338
  .wd-md-850p {
19339
    width: 850%;
19340
  }
16848 stevensc 19341
 
16825 efrain 19342
  .mx-wd-md-850p {
19343
    max-width: 850%;
19344
  }
16848 stevensc 19345
 
16825 efrain 19346
  .mn-wd-md-850p {
19347
    min-width: 850%;
19348
  }
16848 stevensc 19349
 
16825 efrain 19350
  .wd-md-850-f {
19351
    width: 850px !important;
19352
  }
16848 stevensc 19353
 
16825 efrain 19354
  .wd-md-850p-f {
19355
    width: 850% !important;
19356
  }
16848 stevensc 19357
 
16825 efrain 19358
  .mx-wd-md-850p-f {
19359
    max-width: 850% !important;
19360
  }
16848 stevensc 19361
 
16825 efrain 19362
  .mn-wd-md-850p-f {
19363
    min-width: 850% !important;
19364
  }
16848 stevensc 19365
 
16825 efrain 19366
  .wd-md-900 {
19367
    width: 900px;
19368
  }
16848 stevensc 19369
 
16825 efrain 19370
  .wd-md-900p {
19371
    width: 900%;
19372
  }
16848 stevensc 19373
 
16825 efrain 19374
  .mx-wd-md-900p {
19375
    max-width: 900%;
19376
  }
16848 stevensc 19377
 
16825 efrain 19378
  .mn-wd-md-900p {
19379
    min-width: 900%;
19380
  }
16848 stevensc 19381
 
16825 efrain 19382
  .wd-md-900-f {
19383
    width: 900px !important;
19384
  }
16848 stevensc 19385
 
16825 efrain 19386
  .wd-md-900p-f {
19387
    width: 900% !important;
19388
  }
16848 stevensc 19389
 
16825 efrain 19390
  .mx-wd-md-900p-f {
19391
    max-width: 900% !important;
19392
  }
16848 stevensc 19393
 
16825 efrain 19394
  .mn-wd-md-900p-f {
19395
    min-width: 900% !important;
19396
  }
16848 stevensc 19397
 
16825 efrain 19398
  .wd-md-950 {
19399
    width: 950px;
19400
  }
16848 stevensc 19401
 
16825 efrain 19402
  .wd-md-950p {
19403
    width: 950%;
19404
  }
16848 stevensc 19405
 
16825 efrain 19406
  .mx-wd-md-950p {
19407
    max-width: 950%;
19408
  }
16848 stevensc 19409
 
16825 efrain 19410
  .mn-wd-md-950p {
19411
    min-width: 950%;
19412
  }
16848 stevensc 19413
 
16825 efrain 19414
  .wd-md-950-f {
19415
    width: 950px !important;
19416
  }
16848 stevensc 19417
 
16825 efrain 19418
  .wd-md-950p-f {
19419
    width: 950% !important;
19420
  }
16848 stevensc 19421
 
16825 efrain 19422
  .mx-wd-md-950p-f {
19423
    max-width: 950% !important;
19424
  }
16848 stevensc 19425
 
16825 efrain 19426
  .mn-wd-md-950p-f {
19427
    min-width: 950% !important;
19428
  }
16848 stevensc 19429
 
16825 efrain 19430
  .wd-md-1000 {
19431
    width: 1000px;
19432
  }
16848 stevensc 19433
 
16825 efrain 19434
  .wd-md-1000p {
19435
    width: 1000%;
19436
  }
16848 stevensc 19437
 
16825 efrain 19438
  .mx-wd-md-1000p {
19439
    max-width: 1000%;
19440
  }
16848 stevensc 19441
 
16825 efrain 19442
  .mn-wd-md-1000p {
19443
    min-width: 1000%;
19444
  }
16848 stevensc 19445
 
16825 efrain 19446
  .wd-md-1000-f {
19447
    width: 1000px !important;
19448
  }
16848 stevensc 19449
 
16825 efrain 19450
  .wd-md-1000p-f {
19451
    width: 1000% !important;
19452
  }
16848 stevensc 19453
 
16825 efrain 19454
  .mx-wd-md-1000p-f {
19455
    max-width: 1000% !important;
19456
  }
16848 stevensc 19457
 
16825 efrain 19458
  .mn-wd-md-1000p-f {
19459
    min-width: 1000% !important;
19460
  }
16848 stevensc 19461
 
16825 efrain 19462
  .wd-md-auto {
19463
    width: auto;
19464
  }
16848 stevensc 19465
 
16825 efrain 19466
  .wd-md-auto-f {
19467
    width: auto !important;
19468
  }
16848 stevensc 19469
 
16825 efrain 19470
  .wd-md-120 {
19471
    width: 120px;
19472
  }
19473
}
16848 stevensc 19474
 
16825 efrain 19475
@media (min-width: 992px) {
19476
  .wd-lg-5 {
19477
    width: 5px;
19478
  }
16848 stevensc 19479
 
16825 efrain 19480
  .wd-lg-5p {
19481
    width: 5%;
19482
  }
16848 stevensc 19483
 
16825 efrain 19484
  .mx-wd-lg-5p {
19485
    max-width: 5%;
19486
  }
16848 stevensc 19487
 
16825 efrain 19488
  .mn-wd-lg-5p {
19489
    min-width: 5%;
19490
  }
16848 stevensc 19491
 
16825 efrain 19492
  .wd-lg-5-f {
19493
    width: 5px !important;
19494
  }
16848 stevensc 19495
 
16825 efrain 19496
  .wd-lg-5p-f {
19497
    width: 5% !important;
19498
  }
16848 stevensc 19499
 
16825 efrain 19500
  .mx-wd-lg-5p-f {
19501
    max-width: 5% !important;
19502
  }
16848 stevensc 19503
 
16825 efrain 19504
  .mn-wd-lg-5p-f {
19505
    min-width: 5% !important;
19506
  }
16848 stevensc 19507
 
16825 efrain 19508
  .wd-lg-10 {
19509
    width: 10px;
19510
  }
16848 stevensc 19511
 
16825 efrain 19512
  .wd-lg-10p {
19513
    width: 10%;
19514
  }
16848 stevensc 19515
 
16825 efrain 19516
  .mx-wd-lg-10p {
19517
    max-width: 10%;
19518
  }
16848 stevensc 19519
 
16825 efrain 19520
  .mn-wd-lg-10p {
19521
    min-width: 10%;
19522
  }
16848 stevensc 19523
 
16825 efrain 19524
  .wd-lg-10-f {
19525
    width: 10px !important;
19526
  }
16848 stevensc 19527
 
16825 efrain 19528
  .wd-lg-10p-f {
19529
    width: 10% !important;
19530
  }
16848 stevensc 19531
 
16825 efrain 19532
  .mx-wd-lg-10p-f {
19533
    max-width: 10% !important;
19534
  }
16848 stevensc 19535
 
16825 efrain 19536
  .mn-wd-lg-10p-f {
19537
    min-width: 10% !important;
19538
  }
16848 stevensc 19539
 
16825 efrain 19540
  .wd-lg-15 {
19541
    width: 15px;
19542
  }
16848 stevensc 19543
 
16825 efrain 19544
  .wd-lg-15p {
19545
    width: 15%;
19546
  }
16848 stevensc 19547
 
16825 efrain 19548
  .mx-wd-lg-15p {
19549
    max-width: 15%;
19550
  }
16848 stevensc 19551
 
16825 efrain 19552
  .mn-wd-lg-15p {
19553
    min-width: 15%;
19554
  }
16848 stevensc 19555
 
16825 efrain 19556
  .wd-lg-15-f {
19557
    width: 15px !important;
19558
  }
16848 stevensc 19559
 
16825 efrain 19560
  .wd-lg-15p-f {
19561
    width: 15% !important;
19562
  }
16848 stevensc 19563
 
16825 efrain 19564
  .mx-wd-lg-15p-f {
19565
    max-width: 15% !important;
19566
  }
16848 stevensc 19567
 
16825 efrain 19568
  .mn-wd-lg-15p-f {
19569
    min-width: 15% !important;
19570
  }
16848 stevensc 19571
 
16825 efrain 19572
  .wd-lg-20 {
19573
    width: 20px;
19574
  }
16848 stevensc 19575
 
16825 efrain 19576
  .wd-lg-20p {
19577
    width: 20%;
19578
  }
16848 stevensc 19579
 
16825 efrain 19580
  .mx-wd-lg-20p {
19581
    max-width: 20%;
19582
  }
16848 stevensc 19583
 
16825 efrain 19584
  .mn-wd-lg-20p {
19585
    min-width: 20%;
19586
  }
16848 stevensc 19587
 
16825 efrain 19588
  .wd-lg-20-f {
19589
    width: 20px !important;
19590
  }
16848 stevensc 19591
 
16825 efrain 19592
  .wd-lg-20p-f {
19593
    width: 20% !important;
19594
  }
16848 stevensc 19595
 
16825 efrain 19596
  .mx-wd-lg-20p-f {
19597
    max-width: 20% !important;
19598
  }
16848 stevensc 19599
 
16825 efrain 19600
  .mn-wd-lg-20p-f {
19601
    min-width: 20% !important;
19602
  }
16848 stevensc 19603
 
16825 efrain 19604
  .wd-lg-25 {
19605
    width: 25px;
19606
  }
16848 stevensc 19607
 
16825 efrain 19608
  .wd-lg-25p {
19609
    width: 25%;
19610
  }
16848 stevensc 19611
 
16825 efrain 19612
  .mx-wd-lg-25p {
19613
    max-width: 25%;
19614
  }
16848 stevensc 19615
 
16825 efrain 19616
  .mn-wd-lg-25p {
19617
    min-width: 25%;
19618
  }
16848 stevensc 19619
 
16825 efrain 19620
  .wd-lg-25-f {
19621
    width: 25px !important;
19622
  }
16848 stevensc 19623
 
16825 efrain 19624
  .wd-lg-25p-f {
19625
    width: 25% !important;
19626
  }
16848 stevensc 19627
 
16825 efrain 19628
  .mx-wd-lg-25p-f {
19629
    max-width: 25% !important;
19630
  }
16848 stevensc 19631
 
16825 efrain 19632
  .mn-wd-lg-25p-f {
19633
    min-width: 25% !important;
19634
  }
16848 stevensc 19635
 
16825 efrain 19636
  .wd-lg-30 {
19637
    width: 30px;
19638
  }
16848 stevensc 19639
 
16825 efrain 19640
  .wd-lg-30p {
19641
    width: 30%;
19642
  }
16848 stevensc 19643
 
16825 efrain 19644
  .mx-wd-lg-30p {
19645
    max-width: 30%;
19646
  }
16848 stevensc 19647
 
16825 efrain 19648
  .mn-wd-lg-30p {
19649
    min-width: 30%;
19650
  }
16848 stevensc 19651
 
16825 efrain 19652
  .wd-lg-30-f {
19653
    width: 30px !important;
19654
  }
16848 stevensc 19655
 
16825 efrain 19656
  .wd-lg-30p-f {
19657
    width: 30% !important;
19658
  }
16848 stevensc 19659
 
16825 efrain 19660
  .mx-wd-lg-30p-f {
19661
    max-width: 30% !important;
19662
  }
16848 stevensc 19663
 
16825 efrain 19664
  .mn-wd-lg-30p-f {
19665
    min-width: 30% !important;
19666
  }
16848 stevensc 19667
 
16825 efrain 19668
  .wd-lg-35 {
19669
    width: 35px;
19670
  }
16848 stevensc 19671
 
16825 efrain 19672
  .wd-lg-35p {
19673
    width: 35%;
19674
  }
16848 stevensc 19675
 
16825 efrain 19676
  .mx-wd-lg-35p {
19677
    max-width: 35%;
19678
  }
16848 stevensc 19679
 
16825 efrain 19680
  .mn-wd-lg-35p {
19681
    min-width: 35%;
19682
  }
16848 stevensc 19683
 
16825 efrain 19684
  .wd-lg-35-f {
19685
    width: 35px !important;
19686
  }
16848 stevensc 19687
 
16825 efrain 19688
  .wd-lg-35p-f {
19689
    width: 35% !important;
19690
  }
16848 stevensc 19691
 
16825 efrain 19692
  .mx-wd-lg-35p-f {
19693
    max-width: 35% !important;
19694
  }
16848 stevensc 19695
 
16825 efrain 19696
  .mn-wd-lg-35p-f {
19697
    min-width: 35% !important;
19698
  }
16848 stevensc 19699
 
16825 efrain 19700
  .wd-lg-40 {
19701
    width: 40px;
19702
  }
16848 stevensc 19703
 
16825 efrain 19704
  .wd-lg-40p {
19705
    width: 40%;
19706
  }
16848 stevensc 19707
 
16825 efrain 19708
  .mx-wd-lg-40p {
19709
    max-width: 40%;
19710
  }
16848 stevensc 19711
 
16825 efrain 19712
  .mn-wd-lg-40p {
19713
    min-width: 40%;
19714
  }
16848 stevensc 19715
 
16825 efrain 19716
  .wd-lg-40-f {
19717
    width: 40px !important;
19718
  }
16848 stevensc 19719
 
16825 efrain 19720
  .wd-lg-40p-f {
19721
    width: 40% !important;
19722
  }
16848 stevensc 19723
 
16825 efrain 19724
  .mx-wd-lg-40p-f {
19725
    max-width: 40% !important;
19726
  }
16848 stevensc 19727
 
16825 efrain 19728
  .mn-wd-lg-40p-f {
19729
    min-width: 40% !important;
19730
  }
16848 stevensc 19731
 
16825 efrain 19732
  .wd-lg-45 {
19733
    width: 45px;
19734
  }
16848 stevensc 19735
 
16825 efrain 19736
  .wd-lg-45p {
19737
    width: 45%;
19738
  }
16848 stevensc 19739
 
16825 efrain 19740
  .mx-wd-lg-45p {
19741
    max-width: 45%;
19742
  }
16848 stevensc 19743
 
16825 efrain 19744
  .mn-wd-lg-45p {
19745
    min-width: 45%;
19746
  }
16848 stevensc 19747
 
16825 efrain 19748
  .wd-lg-45-f {
19749
    width: 45px !important;
19750
  }
16848 stevensc 19751
 
16825 efrain 19752
  .wd-lg-45p-f {
19753
    width: 45% !important;
19754
  }
16848 stevensc 19755
 
16825 efrain 19756
  .mx-wd-lg-45p-f {
19757
    max-width: 45% !important;
19758
  }
16848 stevensc 19759
 
16825 efrain 19760
  .mn-wd-lg-45p-f {
19761
    min-width: 45% !important;
19762
  }
16848 stevensc 19763
 
16825 efrain 19764
  .wd-lg-50 {
19765
    width: 50px;
19766
  }
16848 stevensc 19767
 
16825 efrain 19768
  .wd-lg-50p {
19769
    width: 50%;
19770
  }
16848 stevensc 19771
 
16825 efrain 19772
  .mx-wd-lg-50p {
19773
    max-width: 50%;
19774
  }
16848 stevensc 19775
 
16825 efrain 19776
  .mn-wd-lg-50p {
19777
    min-width: 50%;
19778
  }
16848 stevensc 19779
 
16825 efrain 19780
  .wd-lg-50-f {
19781
    width: 50px !important;
19782
  }
16848 stevensc 19783
 
16825 efrain 19784
  .wd-lg-50p-f {
19785
    width: 50% !important;
19786
  }
16848 stevensc 19787
 
16825 efrain 19788
  .mx-wd-lg-50p-f {
19789
    max-width: 50% !important;
19790
  }
16848 stevensc 19791
 
16825 efrain 19792
  .mn-wd-lg-50p-f {
19793
    min-width: 50% !important;
19794
  }
16848 stevensc 19795
 
16825 efrain 19796
  .wd-lg-55 {
19797
    width: 55px;
19798
  }
16848 stevensc 19799
 
16825 efrain 19800
  .wd-lg-55p {
19801
    width: 55%;
19802
  }
16848 stevensc 19803
 
16825 efrain 19804
  .mx-wd-lg-55p {
19805
    max-width: 55%;
19806
  }
16848 stevensc 19807
 
16825 efrain 19808
  .mn-wd-lg-55p {
19809
    min-width: 55%;
19810
  }
16848 stevensc 19811
 
16825 efrain 19812
  .wd-lg-55-f {
19813
    width: 55px !important;
19814
  }
16848 stevensc 19815
 
16825 efrain 19816
  .wd-lg-55p-f {
19817
    width: 55% !important;
19818
  }
16848 stevensc 19819
 
16825 efrain 19820
  .mx-wd-lg-55p-f {
19821
    max-width: 55% !important;
19822
  }
16848 stevensc 19823
 
16825 efrain 19824
  .mn-wd-lg-55p-f {
19825
    min-width: 55% !important;
19826
  }
16848 stevensc 19827
 
16825 efrain 19828
  .wd-lg-60 {
19829
    width: 60px;
19830
  }
16848 stevensc 19831
 
16825 efrain 19832
  .wd-lg-60p {
19833
    width: 60%;
19834
  }
16848 stevensc 19835
 
16825 efrain 19836
  .mx-wd-lg-60p {
19837
    max-width: 60%;
19838
  }
16848 stevensc 19839
 
16825 efrain 19840
  .mn-wd-lg-60p {
19841
    min-width: 60%;
19842
  }
16848 stevensc 19843
 
16825 efrain 19844
  .wd-lg-60-f {
19845
    width: 60px !important;
19846
  }
16848 stevensc 19847
 
16825 efrain 19848
  .wd-lg-60p-f {
19849
    width: 60% !important;
19850
  }
16848 stevensc 19851
 
16825 efrain 19852
  .mx-wd-lg-60p-f {
19853
    max-width: 60% !important;
19854
  }
16848 stevensc 19855
 
16825 efrain 19856
  .mn-wd-lg-60p-f {
19857
    min-width: 60% !important;
19858
  }
16848 stevensc 19859
 
16825 efrain 19860
  .wd-lg-65 {
19861
    width: 65px;
19862
  }
16848 stevensc 19863
 
16825 efrain 19864
  .wd-lg-65p {
19865
    width: 65%;
19866
  }
16848 stevensc 19867
 
16825 efrain 19868
  .mx-wd-lg-65p {
19869
    max-width: 65%;
19870
  }
16848 stevensc 19871
 
16825 efrain 19872
  .mn-wd-lg-65p {
19873
    min-width: 65%;
19874
  }
16848 stevensc 19875
 
16825 efrain 19876
  .wd-lg-65-f {
19877
    width: 65px !important;
19878
  }
16848 stevensc 19879
 
16825 efrain 19880
  .wd-lg-65p-f {
19881
    width: 65% !important;
19882
  }
16848 stevensc 19883
 
16825 efrain 19884
  .mx-wd-lg-65p-f {
19885
    max-width: 65% !important;
19886
  }
16848 stevensc 19887
 
16825 efrain 19888
  .mn-wd-lg-65p-f {
19889
    min-width: 65% !important;
19890
  }
16848 stevensc 19891
 
16825 efrain 19892
  .wd-lg-70 {
19893
    width: 70px;
19894
  }
16848 stevensc 19895
 
16825 efrain 19896
  .wd-lg-70p {
19897
    width: 70%;
19898
  }
16848 stevensc 19899
 
16825 efrain 19900
  .mx-wd-lg-70p {
19901
    max-width: 70%;
19902
  }
16848 stevensc 19903
 
16825 efrain 19904
  .mn-wd-lg-70p {
19905
    min-width: 70%;
19906
  }
16848 stevensc 19907
 
16825 efrain 19908
  .wd-lg-70-f {
19909
    width: 70px !important;
19910
  }
16848 stevensc 19911
 
16825 efrain 19912
  .wd-lg-70p-f {
19913
    width: 70% !important;
19914
  }
16848 stevensc 19915
 
16825 efrain 19916
  .mx-wd-lg-70p-f {
19917
    max-width: 70% !important;
19918
  }
16848 stevensc 19919
 
16825 efrain 19920
  .mn-wd-lg-70p-f {
19921
    min-width: 70% !important;
19922
  }
16848 stevensc 19923
 
16825 efrain 19924
  .wd-lg-75 {
19925
    width: 75px;
19926
  }
16848 stevensc 19927
 
16825 efrain 19928
  .wd-lg-75p {
19929
    width: 75%;
19930
  }
16848 stevensc 19931
 
16825 efrain 19932
  .mx-wd-lg-75p {
19933
    max-width: 75%;
19934
  }
16848 stevensc 19935
 
16825 efrain 19936
  .mn-wd-lg-75p {
19937
    min-width: 75%;
19938
  }
16848 stevensc 19939
 
16825 efrain 19940
  .wd-lg-75-f {
19941
    width: 75px !important;
19942
  }
16848 stevensc 19943
 
16825 efrain 19944
  .wd-lg-75p-f {
19945
    width: 75% !important;
19946
  }
16848 stevensc 19947
 
16825 efrain 19948
  .mx-wd-lg-75p-f {
19949
    max-width: 75% !important;
19950
  }
16848 stevensc 19951
 
16825 efrain 19952
  .mn-wd-lg-75p-f {
19953
    min-width: 75% !important;
19954
  }
16848 stevensc 19955
 
16825 efrain 19956
  .wd-lg-80 {
19957
    width: 80px;
19958
  }
16848 stevensc 19959
 
16825 efrain 19960
  .wd-lg-80p {
19961
    width: 80%;
19962
  }
16848 stevensc 19963
 
16825 efrain 19964
  .mx-wd-lg-80p {
19965
    max-width: 80%;
19966
  }
16848 stevensc 19967
 
16825 efrain 19968
  .mn-wd-lg-80p {
19969
    min-width: 80%;
19970
  }
16848 stevensc 19971
 
16825 efrain 19972
  .wd-lg-80-f {
19973
    width: 80px !important;
19974
  }
16848 stevensc 19975
 
16825 efrain 19976
  .wd-lg-80p-f {
19977
    width: 80% !important;
19978
  }
16848 stevensc 19979
 
16825 efrain 19980
  .mx-wd-lg-80p-f {
19981
    max-width: 80% !important;
19982
  }
16848 stevensc 19983
 
16825 efrain 19984
  .mn-wd-lg-80p-f {
19985
    min-width: 80% !important;
19986
  }
16848 stevensc 19987
 
16825 efrain 19988
  .wd-lg-85 {
19989
    width: 85px;
19990
  }
16848 stevensc 19991
 
16825 efrain 19992
  .wd-lg-85p {
19993
    width: 85%;
19994
  }
16848 stevensc 19995
 
16825 efrain 19996
  .mx-wd-lg-85p {
19997
    max-width: 85%;
19998
  }
16848 stevensc 19999
 
16825 efrain 20000
  .mn-wd-lg-85p {
20001
    min-width: 85%;
20002
  }
16848 stevensc 20003
 
16825 efrain 20004
  .wd-lg-85-f {
20005
    width: 85px !important;
20006
  }
16848 stevensc 20007
 
16825 efrain 20008
  .wd-lg-85p-f {
20009
    width: 85% !important;
20010
  }
16848 stevensc 20011
 
16825 efrain 20012
  .mx-wd-lg-85p-f {
20013
    max-width: 85% !important;
20014
  }
16848 stevensc 20015
 
16825 efrain 20016
  .mn-wd-lg-85p-f {
20017
    min-width: 85% !important;
20018
  }
16848 stevensc 20019
 
16825 efrain 20020
  .wd-lg-90 {
20021
    width: 90px;
20022
  }
16848 stevensc 20023
 
16825 efrain 20024
  .wd-lg-90p {
20025
    width: 90%;
20026
  }
16848 stevensc 20027
 
16825 efrain 20028
  .mx-wd-lg-90p {
20029
    max-width: 90%;
20030
  }
16848 stevensc 20031
 
16825 efrain 20032
  .mn-wd-lg-90p {
20033
    min-width: 90%;
20034
  }
16848 stevensc 20035
 
16825 efrain 20036
  .wd-lg-90-f {
20037
    width: 90px !important;
20038
  }
16848 stevensc 20039
 
16825 efrain 20040
  .wd-lg-90p-f {
20041
    width: 90% !important;
20042
  }
16848 stevensc 20043
 
16825 efrain 20044
  .mx-wd-lg-90p-f {
20045
    max-width: 90% !important;
20046
  }
16848 stevensc 20047
 
16825 efrain 20048
  .mn-wd-lg-90p-f {
20049
    min-width: 90% !important;
20050
  }
16848 stevensc 20051
 
16825 efrain 20052
  .wd-lg-95 {
20053
    width: 95px;
20054
  }
16848 stevensc 20055
 
16825 efrain 20056
  .wd-lg-95p {
20057
    width: 95%;
20058
  }
16848 stevensc 20059
 
16825 efrain 20060
  .mx-wd-lg-95p {
20061
    max-width: 95%;
20062
  }
16848 stevensc 20063
 
16825 efrain 20064
  .mn-wd-lg-95p {
20065
    min-width: 95%;
20066
  }
16848 stevensc 20067
 
16825 efrain 20068
  .wd-lg-95-f {
20069
    width: 95px !important;
20070
  }
16848 stevensc 20071
 
16825 efrain 20072
  .wd-lg-95p-f {
20073
    width: 95% !important;
20074
  }
16848 stevensc 20075
 
16825 efrain 20076
  .mx-wd-lg-95p-f {
20077
    max-width: 95% !important;
20078
  }
16848 stevensc 20079
 
16825 efrain 20080
  .mn-wd-lg-95p-f {
20081
    min-width: 95% !important;
20082
  }
16848 stevensc 20083
 
16825 efrain 20084
  .wd-lg-100 {
20085
    width: 100px;
20086
  }
16848 stevensc 20087
 
16825 efrain 20088
  .wd-lg-100p {
20089
    width: 100%;
20090
  }
16848 stevensc 20091
 
16825 efrain 20092
  .mx-wd-lg-100p {
20093
    max-width: 100%;
20094
  }
16848 stevensc 20095
 
16825 efrain 20096
  .mn-wd-lg-100p {
20097
    min-width: 100%;
20098
  }
16848 stevensc 20099
 
16825 efrain 20100
  .wd-lg-100-f {
20101
    width: 100px !important;
20102
  }
16848 stevensc 20103
 
16825 efrain 20104
  .wd-lg-100p-f {
20105
    width: 100% !important;
20106
  }
16848 stevensc 20107
 
16825 efrain 20108
  .mx-wd-lg-100p-f {
20109
    max-width: 100% !important;
20110
  }
16848 stevensc 20111
 
16825 efrain 20112
  .mn-wd-lg-100p-f {
20113
    min-width: 100% !important;
20114
  }
16848 stevensc 20115
 
16825 efrain 20116
  .wd-lg-150 {
20117
    width: 150px;
20118
  }
16848 stevensc 20119
 
16825 efrain 20120
  .wd-lg-150p {
20121
    width: 150%;
20122
  }
16848 stevensc 20123
 
16825 efrain 20124
  .mx-wd-lg-150p {
20125
    max-width: 150%;
20126
  }
16848 stevensc 20127
 
16825 efrain 20128
  .mn-wd-lg-150p {
20129
    min-width: 150%;
20130
  }
16848 stevensc 20131
 
16825 efrain 20132
  .wd-lg-150-f {
20133
    width: 150px !important;
20134
  }
16848 stevensc 20135
 
16825 efrain 20136
  .wd-lg-150p-f {
20137
    width: 150% !important;
20138
  }
16848 stevensc 20139
 
16825 efrain 20140
  .mx-wd-lg-150p-f {
20141
    max-width: 150% !important;
20142
  }
16848 stevensc 20143
 
16825 efrain 20144
  .mn-wd-lg-150p-f {
20145
    min-width: 150% !important;
20146
  }
16848 stevensc 20147
 
16825 efrain 20148
  .wd-lg-200 {
20149
    width: 200px;
20150
  }
16848 stevensc 20151
 
16825 efrain 20152
  .wd-lg-200p {
20153
    width: 200%;
20154
  }
16848 stevensc 20155
 
16825 efrain 20156
  .mx-wd-lg-200p {
20157
    max-width: 200%;
20158
  }
16848 stevensc 20159
 
16825 efrain 20160
  .mn-wd-lg-200p {
20161
    min-width: 200%;
20162
  }
16848 stevensc 20163
 
16825 efrain 20164
  .wd-lg-200-f {
20165
    width: 200px !important;
20166
  }
16848 stevensc 20167
 
16825 efrain 20168
  .wd-lg-200p-f {
20169
    width: 200% !important;
20170
  }
16848 stevensc 20171
 
16825 efrain 20172
  .mx-wd-lg-200p-f {
20173
    max-width: 200% !important;
20174
  }
16848 stevensc 20175
 
16825 efrain 20176
  .mn-wd-lg-200p-f {
20177
    min-width: 200% !important;
20178
  }
16848 stevensc 20179
 
16825 efrain 20180
  .wd-lg-250 {
20181
    width: 250px;
20182
  }
16848 stevensc 20183
 
16825 efrain 20184
  .wd-lg-250p {
20185
    width: 250%;
20186
  }
16848 stevensc 20187
 
16825 efrain 20188
  .mx-wd-lg-250p {
20189
    max-width: 250%;
20190
  }
16848 stevensc 20191
 
16825 efrain 20192
  .mn-wd-lg-250p {
20193
    min-width: 250%;
20194
  }
16848 stevensc 20195
 
16825 efrain 20196
  .wd-lg-250-f {
20197
    width: 250px !important;
20198
  }
16848 stevensc 20199
 
16825 efrain 20200
  .wd-lg-250p-f {
20201
    width: 250% !important;
20202
  }
16848 stevensc 20203
 
16825 efrain 20204
  .mx-wd-lg-250p-f {
20205
    max-width: 250% !important;
20206
  }
16848 stevensc 20207
 
16825 efrain 20208
  .mn-wd-lg-250p-f {
20209
    min-width: 250% !important;
20210
  }
16848 stevensc 20211
 
16825 efrain 20212
  .wd-lg-300 {
20213
    width: 300px;
20214
  }
16848 stevensc 20215
 
16825 efrain 20216
  .wd-lg-300p {
20217
    width: 300%;
20218
  }
16848 stevensc 20219
 
16825 efrain 20220
  .mx-wd-lg-300p {
20221
    max-width: 300%;
20222
  }
16848 stevensc 20223
 
16825 efrain 20224
  .mn-wd-lg-300p {
20225
    min-width: 300%;
20226
  }
16848 stevensc 20227
 
16825 efrain 20228
  .wd-lg-300-f {
20229
    width: 300px !important;
20230
  }
16848 stevensc 20231
 
16825 efrain 20232
  .wd-lg-300p-f {
20233
    width: 300% !important;
20234
  }
16848 stevensc 20235
 
16825 efrain 20236
  .mx-wd-lg-300p-f {
20237
    max-width: 300% !important;
20238
  }
16848 stevensc 20239
 
16825 efrain 20240
  .mn-wd-lg-300p-f {
20241
    min-width: 300% !important;
20242
  }
16848 stevensc 20243
 
16825 efrain 20244
  .wd-lg-350 {
20245
    width: 350px;
20246
  }
16848 stevensc 20247
 
16825 efrain 20248
  .wd-lg-350p {
20249
    width: 350%;
20250
  }
16848 stevensc 20251
 
16825 efrain 20252
  .mx-wd-lg-350p {
20253
    max-width: 350%;
20254
  }
16848 stevensc 20255
 
16825 efrain 20256
  .mn-wd-lg-350p {
20257
    min-width: 350%;
20258
  }
16848 stevensc 20259
 
16825 efrain 20260
  .wd-lg-350-f {
20261
    width: 350px !important;
20262
  }
16848 stevensc 20263
 
16825 efrain 20264
  .wd-lg-350p-f {
20265
    width: 350% !important;
20266
  }
16848 stevensc 20267
 
16825 efrain 20268
  .mx-wd-lg-350p-f {
20269
    max-width: 350% !important;
20270
  }
16848 stevensc 20271
 
16825 efrain 20272
  .mn-wd-lg-350p-f {
20273
    min-width: 350% !important;
20274
  }
16848 stevensc 20275
 
16825 efrain 20276
  .wd-lg-400 {
20277
    width: 400px;
20278
  }
16848 stevensc 20279
 
16825 efrain 20280
  .wd-lg-400p {
20281
    width: 400%;
20282
  }
16848 stevensc 20283
 
16825 efrain 20284
  .mx-wd-lg-400p {
20285
    max-width: 400%;
20286
  }
16848 stevensc 20287
 
16825 efrain 20288
  .mn-wd-lg-400p {
20289
    min-width: 400%;
20290
  }
16848 stevensc 20291
 
16825 efrain 20292
  .wd-lg-400-f {
20293
    width: 400px !important;
20294
  }
16848 stevensc 20295
 
16825 efrain 20296
  .wd-lg-400p-f {
20297
    width: 400% !important;
20298
  }
16848 stevensc 20299
 
16825 efrain 20300
  .mx-wd-lg-400p-f {
20301
    max-width: 400% !important;
20302
  }
16848 stevensc 20303
 
16825 efrain 20304
  .mn-wd-lg-400p-f {
20305
    min-width: 400% !important;
20306
  }
16848 stevensc 20307
 
16825 efrain 20308
  .wd-lg-450 {
20309
    width: 450px;
20310
  }
16848 stevensc 20311
 
16825 efrain 20312
  .wd-lg-450p {
20313
    width: 450%;
20314
  }
16848 stevensc 20315
 
16825 efrain 20316
  .mx-wd-lg-450p {
20317
    max-width: 450%;
20318
  }
16848 stevensc 20319
 
16825 efrain 20320
  .mn-wd-lg-450p {
20321
    min-width: 450%;
20322
  }
16848 stevensc 20323
 
16825 efrain 20324
  .wd-lg-450-f {
20325
    width: 450px !important;
20326
  }
16848 stevensc 20327
 
16825 efrain 20328
  .wd-lg-450p-f {
20329
    width: 450% !important;
20330
  }
16848 stevensc 20331
 
16825 efrain 20332
  .mx-wd-lg-450p-f {
20333
    max-width: 450% !important;
20334
  }
16848 stevensc 20335
 
16825 efrain 20336
  .mn-wd-lg-450p-f {
20337
    min-width: 450% !important;
20338
  }
16848 stevensc 20339
 
16825 efrain 20340
  .wd-lg-500 {
20341
    width: 500px;
20342
  }
16848 stevensc 20343
 
16825 efrain 20344
  .wd-lg-500p {
20345
    width: 500%;
20346
  }
16848 stevensc 20347
 
16825 efrain 20348
  .mx-wd-lg-500p {
20349
    max-width: 500%;
20350
  }
16848 stevensc 20351
 
16825 efrain 20352
  .mn-wd-lg-500p {
20353
    min-width: 500%;
20354
  }
16848 stevensc 20355
 
16825 efrain 20356
  .wd-lg-500-f {
20357
    width: 500px !important;
20358
  }
16848 stevensc 20359
 
16825 efrain 20360
  .wd-lg-500p-f {
20361
    width: 500% !important;
20362
  }
16848 stevensc 20363
 
16825 efrain 20364
  .mx-wd-lg-500p-f {
20365
    max-width: 500% !important;
20366
  }
16848 stevensc 20367
 
16825 efrain 20368
  .mn-wd-lg-500p-f {
20369
    min-width: 500% !important;
20370
  }
16848 stevensc 20371
 
16825 efrain 20372
  .wd-lg-550 {
20373
    width: 550px;
20374
  }
16848 stevensc 20375
 
16825 efrain 20376
  .wd-lg-550p {
20377
    width: 550%;
20378
  }
16848 stevensc 20379
 
16825 efrain 20380
  .mx-wd-lg-550p {
20381
    max-width: 550%;
20382
  }
16848 stevensc 20383
 
16825 efrain 20384
  .mn-wd-lg-550p {
20385
    min-width: 550%;
20386
  }
16848 stevensc 20387
 
16825 efrain 20388
  .wd-lg-550-f {
20389
    width: 550px !important;
20390
  }
16848 stevensc 20391
 
16825 efrain 20392
  .wd-lg-550p-f {
20393
    width: 550% !important;
20394
  }
16848 stevensc 20395
 
16825 efrain 20396
  .mx-wd-lg-550p-f {
20397
    max-width: 550% !important;
20398
  }
16848 stevensc 20399
 
16825 efrain 20400
  .mn-wd-lg-550p-f {
20401
    min-width: 550% !important;
20402
  }
16848 stevensc 20403
 
16825 efrain 20404
  .wd-lg-600 {
20405
    width: 600px;
20406
  }
16848 stevensc 20407
 
16825 efrain 20408
  .wd-lg-600p {
20409
    width: 600%;
20410
  }
16848 stevensc 20411
 
16825 efrain 20412
  .mx-wd-lg-600p {
20413
    max-width: 600%;
20414
  }
16848 stevensc 20415
 
16825 efrain 20416
  .mn-wd-lg-600p {
20417
    min-width: 600%;
20418
  }
16848 stevensc 20419
 
16825 efrain 20420
  .wd-lg-600-f {
20421
    width: 600px !important;
20422
  }
16848 stevensc 20423
 
16825 efrain 20424
  .wd-lg-600p-f {
20425
    width: 600% !important;
20426
  }
16848 stevensc 20427
 
16825 efrain 20428
  .mx-wd-lg-600p-f {
20429
    max-width: 600% !important;
20430
  }
16848 stevensc 20431
 
16825 efrain 20432
  .mn-wd-lg-600p-f {
20433
    min-width: 600% !important;
20434
  }
16848 stevensc 20435
 
16825 efrain 20436
  .wd-lg-650 {
20437
    width: 650px;
20438
  }
16848 stevensc 20439
 
16825 efrain 20440
  .wd-lg-650p {
20441
    width: 650%;
20442
  }
16848 stevensc 20443
 
16825 efrain 20444
  .mx-wd-lg-650p {
20445
    max-width: 650%;
20446
  }
16848 stevensc 20447
 
16825 efrain 20448
  .mn-wd-lg-650p {
20449
    min-width: 650%;
20450
  }
16848 stevensc 20451
 
16825 efrain 20452
  .wd-lg-650-f {
20453
    width: 650px !important;
20454
  }
16848 stevensc 20455
 
16825 efrain 20456
  .wd-lg-650p-f {
20457
    width: 650% !important;
20458
  }
16848 stevensc 20459
 
16825 efrain 20460
  .mx-wd-lg-650p-f {
20461
    max-width: 650% !important;
20462
  }
16848 stevensc 20463
 
16825 efrain 20464
  .mn-wd-lg-650p-f {
20465
    min-width: 650% !important;
20466
  }
16848 stevensc 20467
 
16825 efrain 20468
  .wd-lg-700 {
20469
    width: 700px;
20470
  }
16848 stevensc 20471
 
16825 efrain 20472
  .wd-lg-700p {
20473
    width: 700%;
20474
  }
16848 stevensc 20475
 
16825 efrain 20476
  .mx-wd-lg-700p {
20477
    max-width: 700%;
20478
  }
16848 stevensc 20479
 
16825 efrain 20480
  .mn-wd-lg-700p {
20481
    min-width: 700%;
20482
  }
16848 stevensc 20483
 
16825 efrain 20484
  .wd-lg-700-f {
20485
    width: 700px !important;
20486
  }
16848 stevensc 20487
 
16825 efrain 20488
  .wd-lg-700p-f {
20489
    width: 700% !important;
20490
  }
16848 stevensc 20491
 
16825 efrain 20492
  .mx-wd-lg-700p-f {
20493
    max-width: 700% !important;
20494
  }
16848 stevensc 20495
 
16825 efrain 20496
  .mn-wd-lg-700p-f {
20497
    min-width: 700% !important;
20498
  }
16848 stevensc 20499
 
16825 efrain 20500
  .wd-lg-750 {
20501
    width: 750px;
20502
  }
16848 stevensc 20503
 
16825 efrain 20504
  .wd-lg-750p {
20505
    width: 750%;
20506
  }
16848 stevensc 20507
 
16825 efrain 20508
  .mx-wd-lg-750p {
20509
    max-width: 750%;
20510
  }
16848 stevensc 20511
 
16825 efrain 20512
  .mn-wd-lg-750p {
20513
    min-width: 750%;
20514
  }
16848 stevensc 20515
 
16825 efrain 20516
  .wd-lg-750-f {
20517
    width: 750px !important;
20518
  }
16848 stevensc 20519
 
16825 efrain 20520
  .wd-lg-750p-f {
20521
    width: 750% !important;
20522
  }
16848 stevensc 20523
 
16825 efrain 20524
  .mx-wd-lg-750p-f {
20525
    max-width: 750% !important;
20526
  }
16848 stevensc 20527
 
16825 efrain 20528
  .mn-wd-lg-750p-f {
20529
    min-width: 750% !important;
20530
  }
16848 stevensc 20531
 
16825 efrain 20532
  .wd-lg-800 {
20533
    width: 800px;
20534
  }
16848 stevensc 20535
 
16825 efrain 20536
  .wd-lg-800p {
20537
    width: 800%;
20538
  }
16848 stevensc 20539
 
16825 efrain 20540
  .mx-wd-lg-800p {
20541
    max-width: 800%;
20542
  }
16848 stevensc 20543
 
16825 efrain 20544
  .mn-wd-lg-800p {
20545
    min-width: 800%;
20546
  }
16848 stevensc 20547
 
16825 efrain 20548
  .wd-lg-800-f {
20549
    width: 800px !important;
20550
  }
16848 stevensc 20551
 
16825 efrain 20552
  .wd-lg-800p-f {
20553
    width: 800% !important;
20554
  }
16848 stevensc 20555
 
16825 efrain 20556
  .mx-wd-lg-800p-f {
20557
    max-width: 800% !important;
20558
  }
16848 stevensc 20559
 
16825 efrain 20560
  .mn-wd-lg-800p-f {
20561
    min-width: 800% !important;
20562
  }
16848 stevensc 20563
 
16825 efrain 20564
  .wd-lg-850 {
20565
    width: 850px;
20566
  }
16848 stevensc 20567
 
16825 efrain 20568
  .wd-lg-850p {
20569
    width: 850%;
20570
  }
16848 stevensc 20571
 
16825 efrain 20572
  .mx-wd-lg-850p {
20573
    max-width: 850%;
20574
  }
16848 stevensc 20575
 
16825 efrain 20576
  .mn-wd-lg-850p {
20577
    min-width: 850%;
20578
  }
16848 stevensc 20579
 
16825 efrain 20580
  .wd-lg-850-f {
20581
    width: 850px !important;
20582
  }
16848 stevensc 20583
 
16825 efrain 20584
  .wd-lg-850p-f {
20585
    width: 850% !important;
20586
  }
16848 stevensc 20587
 
16825 efrain 20588
  .mx-wd-lg-850p-f {
20589
    max-width: 850% !important;
20590
  }
16848 stevensc 20591
 
16825 efrain 20592
  .mn-wd-lg-850p-f {
20593
    min-width: 850% !important;
20594
  }
16848 stevensc 20595
 
16825 efrain 20596
  .wd-lg-900 {
20597
    width: 900px;
20598
  }
16848 stevensc 20599
 
16825 efrain 20600
  .wd-lg-900p {
20601
    width: 900%;
20602
  }
16848 stevensc 20603
 
16825 efrain 20604
  .mx-wd-lg-900p {
20605
    max-width: 900%;
20606
  }
16848 stevensc 20607
 
16825 efrain 20608
  .mn-wd-lg-900p {
20609
    min-width: 900%;
20610
  }
16848 stevensc 20611
 
16825 efrain 20612
  .wd-lg-900-f {
20613
    width: 900px !important;
20614
  }
16848 stevensc 20615
 
16825 efrain 20616
  .wd-lg-900p-f {
20617
    width: 900% !important;
20618
  }
16848 stevensc 20619
 
16825 efrain 20620
  .mx-wd-lg-900p-f {
20621
    max-width: 900% !important;
20622
  }
16848 stevensc 20623
 
16825 efrain 20624
  .mn-wd-lg-900p-f {
20625
    min-width: 900% !important;
20626
  }
16848 stevensc 20627
 
16825 efrain 20628
  .wd-lg-950 {
20629
    width: 950px;
20630
  }
16848 stevensc 20631
 
16825 efrain 20632
  .wd-lg-950p {
20633
    width: 950%;
20634
  }
16848 stevensc 20635
 
16825 efrain 20636
  .mx-wd-lg-950p {
20637
    max-width: 950%;
20638
  }
16848 stevensc 20639
 
16825 efrain 20640
  .mn-wd-lg-950p {
20641
    min-width: 950%;
20642
  }
16848 stevensc 20643
 
16825 efrain 20644
  .wd-lg-950-f {
20645
    width: 950px !important;
20646
  }
16848 stevensc 20647
 
16825 efrain 20648
  .wd-lg-950p-f {
20649
    width: 950% !important;
20650
  }
16848 stevensc 20651
 
16825 efrain 20652
  .mx-wd-lg-950p-f {
20653
    max-width: 950% !important;
20654
  }
16848 stevensc 20655
 
16825 efrain 20656
  .mn-wd-lg-950p-f {
20657
    min-width: 950% !important;
20658
  }
16848 stevensc 20659
 
16825 efrain 20660
  .wd-lg-1000 {
20661
    width: 1000px;
20662
  }
16848 stevensc 20663
 
16825 efrain 20664
  .wd-lg-1000p {
20665
    width: 1000%;
20666
  }
16848 stevensc 20667
 
16825 efrain 20668
  .mx-wd-lg-1000p {
20669
    max-width: 1000%;
20670
  }
16848 stevensc 20671
 
16825 efrain 20672
  .mn-wd-lg-1000p {
20673
    min-width: 1000%;
20674
  }
16848 stevensc 20675
 
16825 efrain 20676
  .wd-lg-1000-f {
20677
    width: 1000px !important;
20678
  }
16848 stevensc 20679
 
16825 efrain 20680
  .wd-lg-1000p-f {
20681
    width: 1000% !important;
20682
  }
16848 stevensc 20683
 
16825 efrain 20684
  .mx-wd-lg-1000p-f {
20685
    max-width: 1000% !important;
20686
  }
16848 stevensc 20687
 
16825 efrain 20688
  .mn-wd-lg-1000p-f {
20689
    min-width: 1000% !important;
20690
  }
16848 stevensc 20691
 
16825 efrain 20692
  .wd-lg-auto {
20693
    width: auto;
20694
  }
16848 stevensc 20695
 
16825 efrain 20696
  .wd-lg-auto-f {
20697
    width: auto !important;
20698
  }
20699
}
16848 stevensc 20700
 
16825 efrain 20701
@media (min-width: 1200px) {
20702
  .wd-xl-5 {
20703
    width: 5px;
20704
  }
16848 stevensc 20705
 
16825 efrain 20706
  .wd-xl-5p {
20707
    width: 5%;
20708
  }
16848 stevensc 20709
 
16825 efrain 20710
  .mx-wd-xl-5p {
20711
    max-width: 5%;
20712
  }
16848 stevensc 20713
 
16825 efrain 20714
  .mn-wd-xl-5p {
20715
    min-width: 5%;
20716
  }
16848 stevensc 20717
 
16825 efrain 20718
  .wd-xl-5-f {
20719
    width: 5px !important;
20720
  }
16848 stevensc 20721
 
16825 efrain 20722
  .wd-xl-5p-f {
20723
    width: 5% !important;
20724
  }
16848 stevensc 20725
 
16825 efrain 20726
  .mx-wd-xl-5p-f {
20727
    max-width: 5% !important;
20728
  }
16848 stevensc 20729
 
16825 efrain 20730
  .mn-wd-xl-5p-f {
20731
    min-width: 5% !important;
20732
  }
16848 stevensc 20733
 
16825 efrain 20734
  .wd-xl-10 {
20735
    width: 10px;
20736
  }
16848 stevensc 20737
 
16825 efrain 20738
  .wd-xl-10p {
20739
    width: 10%;
20740
  }
16848 stevensc 20741
 
16825 efrain 20742
  .mx-wd-xl-10p {
20743
    max-width: 10%;
20744
  }
16848 stevensc 20745
 
16825 efrain 20746
  .mn-wd-xl-10p {
20747
    min-width: 10%;
20748
  }
16848 stevensc 20749
 
16825 efrain 20750
  .wd-xl-10-f {
20751
    width: 10px !important;
20752
  }
16848 stevensc 20753
 
16825 efrain 20754
  .wd-xl-10p-f {
20755
    width: 10% !important;
20756
  }
16848 stevensc 20757
 
16825 efrain 20758
  .mx-wd-xl-10p-f {
20759
    max-width: 10% !important;
20760
  }
16848 stevensc 20761
 
16825 efrain 20762
  .mn-wd-xl-10p-f {
20763
    min-width: 10% !important;
20764
  }
16848 stevensc 20765
 
16825 efrain 20766
  .wd-xl-15 {
20767
    width: 15px;
20768
  }
16848 stevensc 20769
 
16825 efrain 20770
  .wd-xl-15p {
20771
    width: 15%;
20772
  }
16848 stevensc 20773
 
16825 efrain 20774
  .mx-wd-xl-15p {
20775
    max-width: 15%;
20776
  }
16848 stevensc 20777
 
16825 efrain 20778
  .mn-wd-xl-15p {
20779
    min-width: 15%;
20780
  }
16848 stevensc 20781
 
16825 efrain 20782
  .wd-xl-15-f {
20783
    width: 15px !important;
20784
  }
16848 stevensc 20785
 
16825 efrain 20786
  .wd-xl-15p-f {
20787
    width: 15% !important;
20788
  }
16848 stevensc 20789
 
16825 efrain 20790
  .mx-wd-xl-15p-f {
20791
    max-width: 15% !important;
20792
  }
16848 stevensc 20793
 
16825 efrain 20794
  .mn-wd-xl-15p-f {
20795
    min-width: 15% !important;
20796
  }
16848 stevensc 20797
 
16825 efrain 20798
  .wd-xl-20 {
20799
    width: 20px;
20800
  }
16848 stevensc 20801
 
16825 efrain 20802
  .wd-xl-20p {
20803
    width: 20%;
20804
  }
16848 stevensc 20805
 
16825 efrain 20806
  .mx-wd-xl-20p {
20807
    max-width: 20%;
20808
  }
16848 stevensc 20809
 
16825 efrain 20810
  .mn-wd-xl-20p {
20811
    min-width: 20%;
20812
  }
16848 stevensc 20813
 
16825 efrain 20814
  .wd-xl-20-f {
20815
    width: 20px !important;
20816
  }
16848 stevensc 20817
 
16825 efrain 20818
  .wd-xl-20p-f {
20819
    width: 20% !important;
20820
  }
16848 stevensc 20821
 
16825 efrain 20822
  .mx-wd-xl-20p-f {
20823
    max-width: 20% !important;
20824
  }
16848 stevensc 20825
 
16825 efrain 20826
  .mn-wd-xl-20p-f {
20827
    min-width: 20% !important;
20828
  }
16848 stevensc 20829
 
16825 efrain 20830
  .wd-xl-25 {
20831
    width: 25px;
20832
  }
16848 stevensc 20833
 
16825 efrain 20834
  .wd-xl-25p {
20835
    width: 25%;
20836
  }
16848 stevensc 20837
 
16825 efrain 20838
  .mx-wd-xl-25p {
20839
    max-width: 25%;
20840
  }
16848 stevensc 20841
 
16825 efrain 20842
  .mn-wd-xl-25p {
20843
    min-width: 25%;
20844
  }
16848 stevensc 20845
 
16825 efrain 20846
  .wd-xl-25-f {
20847
    width: 25px !important;
20848
  }
16848 stevensc 20849
 
16825 efrain 20850
  .wd-xl-25p-f {
20851
    width: 25% !important;
20852
  }
16848 stevensc 20853
 
16825 efrain 20854
  .mx-wd-xl-25p-f {
20855
    max-width: 25% !important;
20856
  }
16848 stevensc 20857
 
16825 efrain 20858
  .mn-wd-xl-25p-f {
20859
    min-width: 25% !important;
20860
  }
16848 stevensc 20861
 
16825 efrain 20862
  .wd-xl-30 {
20863
    width: 30px;
20864
  }
16848 stevensc 20865
 
16825 efrain 20866
  .wd-xl-30p {
20867
    width: 30%;
20868
  }
16848 stevensc 20869
 
16825 efrain 20870
  .mx-wd-xl-30p {
20871
    max-width: 30%;
20872
  }
16848 stevensc 20873
 
16825 efrain 20874
  .mn-wd-xl-30p {
20875
    min-width: 30%;
20876
  }
16848 stevensc 20877
 
16825 efrain 20878
  .wd-xl-30-f {
20879
    width: 30px !important;
20880
  }
16848 stevensc 20881
 
16825 efrain 20882
  .wd-xl-30p-f {
20883
    width: 30% !important;
20884
  }
16848 stevensc 20885
 
16825 efrain 20886
  .mx-wd-xl-30p-f {
20887
    max-width: 30% !important;
20888
  }
16848 stevensc 20889
 
16825 efrain 20890
  .mn-wd-xl-30p-f {
20891
    min-width: 30% !important;
20892
  }
16848 stevensc 20893
 
16825 efrain 20894
  .wd-xl-35 {
20895
    width: 35px;
20896
  }
16848 stevensc 20897
 
16825 efrain 20898
  .wd-xl-35p {
20899
    width: 35%;
20900
  }
16848 stevensc 20901
 
16825 efrain 20902
  .mx-wd-xl-35p {
20903
    max-width: 35%;
20904
  }
16848 stevensc 20905
 
16825 efrain 20906
  .mn-wd-xl-35p {
20907
    min-width: 35%;
20908
  }
16848 stevensc 20909
 
16825 efrain 20910
  .wd-xl-35-f {
20911
    width: 35px !important;
20912
  }
16848 stevensc 20913
 
16825 efrain 20914
  .wd-xl-35p-f {
20915
    width: 35% !important;
20916
  }
16848 stevensc 20917
 
16825 efrain 20918
  .mx-wd-xl-35p-f {
20919
    max-width: 35% !important;
20920
  }
16848 stevensc 20921
 
16825 efrain 20922
  .mn-wd-xl-35p-f {
20923
    min-width: 35% !important;
20924
  }
16848 stevensc 20925
 
16825 efrain 20926
  .wd-xl-40 {
20927
    width: 40px;
20928
  }
16848 stevensc 20929
 
16825 efrain 20930
  .wd-xl-40p {
20931
    width: 40%;
20932
  }
16848 stevensc 20933
 
16825 efrain 20934
  .mx-wd-xl-40p {
20935
    max-width: 40%;
20936
  }
16848 stevensc 20937
 
16825 efrain 20938
  .mn-wd-xl-40p {
20939
    min-width: 40%;
20940
  }
16848 stevensc 20941
 
16825 efrain 20942
  .wd-xl-40-f {
20943
    width: 40px !important;
20944
  }
16848 stevensc 20945
 
16825 efrain 20946
  .wd-xl-40p-f {
20947
    width: 40% !important;
20948
  }
16848 stevensc 20949
 
16825 efrain 20950
  .mx-wd-xl-40p-f {
20951
    max-width: 40% !important;
20952
  }
16848 stevensc 20953
 
16825 efrain 20954
  .mn-wd-xl-40p-f {
20955
    min-width: 40% !important;
20956
  }
16848 stevensc 20957
 
16825 efrain 20958
  .wd-xl-45 {
20959
    width: 45px;
20960
  }
16848 stevensc 20961
 
16825 efrain 20962
  .wd-xl-45p {
20963
    width: 45%;
20964
  }
16848 stevensc 20965
 
16825 efrain 20966
  .mx-wd-xl-45p {
20967
    max-width: 45%;
20968
  }
16848 stevensc 20969
 
16825 efrain 20970
  .mn-wd-xl-45p {
20971
    min-width: 45%;
20972
  }
16848 stevensc 20973
 
16825 efrain 20974
  .wd-xl-45-f {
20975
    width: 45px !important;
20976
  }
16848 stevensc 20977
 
16825 efrain 20978
  .wd-xl-45p-f {
20979
    width: 45% !important;
20980
  }
16848 stevensc 20981
 
16825 efrain 20982
  .mx-wd-xl-45p-f {
20983
    max-width: 45% !important;
20984
  }
16848 stevensc 20985
 
16825 efrain 20986
  .mn-wd-xl-45p-f {
20987
    min-width: 45% !important;
20988
  }
16848 stevensc 20989
 
16825 efrain 20990
  .wd-xl-50 {
20991
    width: 50px;
20992
  }
16848 stevensc 20993
 
16825 efrain 20994
  .wd-xl-50p {
20995
    width: 50%;
20996
  }
16848 stevensc 20997
 
16825 efrain 20998
  .mx-wd-xl-50p {
20999
    max-width: 50%;
21000
  }
16848 stevensc 21001
 
16825 efrain 21002
  .mn-wd-xl-50p {
21003
    min-width: 50%;
21004
  }
16848 stevensc 21005
 
16825 efrain 21006
  .wd-xl-50-f {
21007
    width: 50px !important;
21008
  }
16848 stevensc 21009
 
16825 efrain 21010
  .wd-xl-50p-f {
21011
    width: 50% !important;
21012
  }
16848 stevensc 21013
 
16825 efrain 21014
  .mx-wd-xl-50p-f {
21015
    max-width: 50% !important;
21016
  }
16848 stevensc 21017
 
16825 efrain 21018
  .mn-wd-xl-50p-f {
21019
    min-width: 50% !important;
21020
  }
16848 stevensc 21021
 
16825 efrain 21022
  .wd-xl-55 {
21023
    width: 55px;
21024
  }
16848 stevensc 21025
 
16825 efrain 21026
  .wd-xl-55p {
21027
    width: 55%;
21028
  }
16848 stevensc 21029
 
16825 efrain 21030
  .mx-wd-xl-55p {
21031
    max-width: 55%;
21032
  }
16848 stevensc 21033
 
16825 efrain 21034
  .mn-wd-xl-55p {
21035
    min-width: 55%;
21036
  }
16848 stevensc 21037
 
16825 efrain 21038
  .wd-xl-55-f {
21039
    width: 55px !important;
21040
  }
16848 stevensc 21041
 
16825 efrain 21042
  .wd-xl-55p-f {
21043
    width: 55% !important;
21044
  }
16848 stevensc 21045
 
16825 efrain 21046
  .mx-wd-xl-55p-f {
21047
    max-width: 55% !important;
21048
  }
16848 stevensc 21049
 
16825 efrain 21050
  .mn-wd-xl-55p-f {
21051
    min-width: 55% !important;
21052
  }
16848 stevensc 21053
 
16825 efrain 21054
  .wd-xl-60 {
21055
    width: 60px;
21056
  }
16848 stevensc 21057
 
16825 efrain 21058
  .wd-xl-60p {
21059
    width: 60%;
21060
  }
16848 stevensc 21061
 
16825 efrain 21062
  .mx-wd-xl-60p {
21063
    max-width: 60%;
21064
  }
16848 stevensc 21065
 
16825 efrain 21066
  .mn-wd-xl-60p {
21067
    min-width: 60%;
21068
  }
16848 stevensc 21069
 
16825 efrain 21070
  .wd-xl-60-f {
21071
    width: 60px !important;
21072
  }
16848 stevensc 21073
 
16825 efrain 21074
  .wd-xl-60p-f {
21075
    width: 60% !important;
21076
  }
16848 stevensc 21077
 
16825 efrain 21078
  .mx-wd-xl-60p-f {
21079
    max-width: 60% !important;
21080
  }
16848 stevensc 21081
 
16825 efrain 21082
  .mn-wd-xl-60p-f {
21083
    min-width: 60% !important;
21084
  }
16848 stevensc 21085
 
16825 efrain 21086
  .wd-xl-65 {
21087
    width: 65px;
21088
  }
16848 stevensc 21089
 
16825 efrain 21090
  .wd-xl-65p {
21091
    width: 65%;
21092
  }
16848 stevensc 21093
 
16825 efrain 21094
  .mx-wd-xl-65p {
21095
    max-width: 65%;
21096
  }
16848 stevensc 21097
 
16825 efrain 21098
  .mn-wd-xl-65p {
21099
    min-width: 65%;
21100
  }
16848 stevensc 21101
 
16825 efrain 21102
  .wd-xl-65-f {
21103
    width: 65px !important;
21104
  }
16848 stevensc 21105
 
16825 efrain 21106
  .wd-xl-65p-f {
21107
    width: 65% !important;
21108
  }
16848 stevensc 21109
 
16825 efrain 21110
  .mx-wd-xl-65p-f {
21111
    max-width: 65% !important;
21112
  }
16848 stevensc 21113
 
16825 efrain 21114
  .mn-wd-xl-65p-f {
21115
    min-width: 65% !important;
21116
  }
16848 stevensc 21117
 
16825 efrain 21118
  .wd-xl-70 {
21119
    width: 70px;
21120
  }
16848 stevensc 21121
 
16825 efrain 21122
  .wd-xl-70p {
21123
    width: 70%;
21124
  }
16848 stevensc 21125
 
16825 efrain 21126
  .mx-wd-xl-70p {
21127
    max-width: 70%;
21128
  }
16848 stevensc 21129
 
16825 efrain 21130
  .mn-wd-xl-70p {
21131
    min-width: 70%;
21132
  }
16848 stevensc 21133
 
16825 efrain 21134
  .wd-xl-70-f {
21135
    width: 70px !important;
21136
  }
16848 stevensc 21137
 
16825 efrain 21138
  .wd-xl-70p-f {
21139
    width: 70% !important;
21140
  }
16848 stevensc 21141
 
16825 efrain 21142
  .mx-wd-xl-70p-f {
21143
    max-width: 70% !important;
21144
  }
16848 stevensc 21145
 
16825 efrain 21146
  .mn-wd-xl-70p-f {
21147
    min-width: 70% !important;
21148
  }
16848 stevensc 21149
 
16825 efrain 21150
  .wd-xl-75 {
21151
    width: 75px;
21152
  }
16848 stevensc 21153
 
16825 efrain 21154
  .wd-xl-75p {
21155
    width: 75%;
21156
  }
16848 stevensc 21157
 
16825 efrain 21158
  .mx-wd-xl-75p {
21159
    max-width: 75%;
21160
  }
16848 stevensc 21161
 
16825 efrain 21162
  .mn-wd-xl-75p {
21163
    min-width: 75%;
21164
  }
16848 stevensc 21165
 
16825 efrain 21166
  .wd-xl-75-f {
21167
    width: 75px !important;
21168
  }
16848 stevensc 21169
 
16825 efrain 21170
  .wd-xl-75p-f {
21171
    width: 75% !important;
21172
  }
16848 stevensc 21173
 
16825 efrain 21174
  .mx-wd-xl-75p-f {
21175
    max-width: 75% !important;
21176
  }
16848 stevensc 21177
 
16825 efrain 21178
  .mn-wd-xl-75p-f {
21179
    min-width: 75% !important;
21180
  }
16848 stevensc 21181
 
16825 efrain 21182
  .wd-xl-80 {
21183
    width: 80px;
21184
  }
16848 stevensc 21185
 
16825 efrain 21186
  .wd-xl-80p {
21187
    width: 80%;
21188
  }
16848 stevensc 21189
 
16825 efrain 21190
  .mx-wd-xl-80p {
21191
    max-width: 80%;
21192
  }
16848 stevensc 21193
 
16825 efrain 21194
  .mn-wd-xl-80p {
21195
    min-width: 80%;
21196
  }
16848 stevensc 21197
 
16825 efrain 21198
  .wd-xl-80-f {
21199
    width: 80px !important;
21200
  }
16848 stevensc 21201
 
16825 efrain 21202
  .wd-xl-80p-f {
21203
    width: 80% !important;
21204
  }
16848 stevensc 21205
 
16825 efrain 21206
  .mx-wd-xl-80p-f {
21207
    max-width: 80% !important;
21208
  }
16848 stevensc 21209
 
16825 efrain 21210
  .mn-wd-xl-80p-f {
21211
    min-width: 80% !important;
21212
  }
16848 stevensc 21213
 
16825 efrain 21214
  .wd-xl-85 {
21215
    width: 85px;
21216
  }
16848 stevensc 21217
 
16825 efrain 21218
  .wd-xl-85p {
21219
    width: 85%;
21220
  }
16848 stevensc 21221
 
16825 efrain 21222
  .mx-wd-xl-85p {
21223
    max-width: 85%;
21224
  }
16848 stevensc 21225
 
16825 efrain 21226
  .mn-wd-xl-85p {
21227
    min-width: 85%;
21228
  }
16848 stevensc 21229
 
16825 efrain 21230
  .wd-xl-85-f {
21231
    width: 85px !important;
21232
  }
16848 stevensc 21233
 
16825 efrain 21234
  .wd-xl-85p-f {
21235
    width: 85% !important;
21236
  }
16848 stevensc 21237
 
16825 efrain 21238
  .mx-wd-xl-85p-f {
21239
    max-width: 85% !important;
21240
  }
16848 stevensc 21241
 
16825 efrain 21242
  .mn-wd-xl-85p-f {
21243
    min-width: 85% !important;
21244
  }
16848 stevensc 21245
 
16825 efrain 21246
  .wd-xl-90 {
21247
    width: 90px;
21248
  }
16848 stevensc 21249
 
16825 efrain 21250
  .wd-xl-90p {
21251
    width: 90%;
21252
  }
16848 stevensc 21253
 
16825 efrain 21254
  .mx-wd-xl-90p {
21255
    max-width: 90%;
21256
  }
16848 stevensc 21257
 
16825 efrain 21258
  .mn-wd-xl-90p {
21259
    min-width: 90%;
21260
  }
16848 stevensc 21261
 
16825 efrain 21262
  .wd-xl-90-f {
21263
    width: 90px !important;
21264
  }
16848 stevensc 21265
 
16825 efrain 21266
  .wd-xl-90p-f {
21267
    width: 90% !important;
21268
  }
16848 stevensc 21269
 
16825 efrain 21270
  .mx-wd-xl-90p-f {
21271
    max-width: 90% !important;
21272
  }
16848 stevensc 21273
 
16825 efrain 21274
  .mn-wd-xl-90p-f {
21275
    min-width: 90% !important;
21276
  }
16848 stevensc 21277
 
16825 efrain 21278
  .wd-xl-95 {
21279
    width: 95px;
21280
  }
16848 stevensc 21281
 
16825 efrain 21282
  .wd-xl-95p {
21283
    width: 95%;
21284
  }
16848 stevensc 21285
 
16825 efrain 21286
  .mx-wd-xl-95p {
21287
    max-width: 95%;
21288
  }
16848 stevensc 21289
 
16825 efrain 21290
  .mn-wd-xl-95p {
21291
    min-width: 95%;
21292
  }
16848 stevensc 21293
 
16825 efrain 21294
  .wd-xl-95-f {
21295
    width: 95px !important;
21296
  }
16848 stevensc 21297
 
16825 efrain 21298
  .wd-xl-95p-f {
21299
    width: 95% !important;
21300
  }
16848 stevensc 21301
 
16825 efrain 21302
  .mx-wd-xl-95p-f {
21303
    max-width: 95% !important;
21304
  }
16848 stevensc 21305
 
16825 efrain 21306
  .mn-wd-xl-95p-f {
21307
    min-width: 95% !important;
21308
  }
16848 stevensc 21309
 
16825 efrain 21310
  .wd-xl-100 {
21311
    width: 100px;
21312
  }
16848 stevensc 21313
 
16825 efrain 21314
  .wd-xl-100p {
21315
    width: 100%;
21316
  }
16848 stevensc 21317
 
16825 efrain 21318
  .mx-wd-xl-100p {
21319
    max-width: 100%;
21320
  }
16848 stevensc 21321
 
16825 efrain 21322
  .mn-wd-xl-100p {
21323
    min-width: 100%;
21324
  }
16848 stevensc 21325
 
16825 efrain 21326
  .wd-xl-100-f {
21327
    width: 100px !important;
21328
  }
16848 stevensc 21329
 
16825 efrain 21330
  .wd-xl-100p-f {
21331
    width: 100% !important;
21332
  }
16848 stevensc 21333
 
16825 efrain 21334
  .mx-wd-xl-100p-f {
21335
    max-width: 100% !important;
21336
  }
16848 stevensc 21337
 
16825 efrain 21338
  .mn-wd-xl-100p-f {
21339
    min-width: 100% !important;
21340
  }
16848 stevensc 21341
 
16825 efrain 21342
  .wd-xl-150 {
21343
    width: 150px;
21344
  }
16848 stevensc 21345
 
16825 efrain 21346
  .wd-xl-150p {
21347
    width: 150%;
21348
  }
16848 stevensc 21349
 
16825 efrain 21350
  .mx-wd-xl-150p {
21351
    max-width: 150%;
21352
  }
16848 stevensc 21353
 
16825 efrain 21354
  .mn-wd-xl-150p {
21355
    min-width: 150%;
21356
  }
16848 stevensc 21357
 
16825 efrain 21358
  .wd-xl-150-f {
21359
    width: 150px !important;
21360
  }
16848 stevensc 21361
 
16825 efrain 21362
  .wd-xl-150p-f {
21363
    width: 150% !important;
21364
  }
16848 stevensc 21365
 
16825 efrain 21366
  .mx-wd-xl-150p-f {
21367
    max-width: 150% !important;
21368
  }
16848 stevensc 21369
 
16825 efrain 21370
  .mn-wd-xl-150p-f {
21371
    min-width: 150% !important;
21372
  }
16848 stevensc 21373
 
16825 efrain 21374
  .wd-xl-200 {
21375
    width: 200px;
21376
  }
16848 stevensc 21377
 
16825 efrain 21378
  .wd-xl-200p {
21379
    width: 200%;
21380
  }
16848 stevensc 21381
 
16825 efrain 21382
  .mx-wd-xl-200p {
21383
    max-width: 200%;
21384
  }
16848 stevensc 21385
 
16825 efrain 21386
  .mn-wd-xl-200p {
21387
    min-width: 200%;
21388
  }
16848 stevensc 21389
 
16825 efrain 21390
  .wd-xl-200-f {
21391
    width: 200px !important;
21392
  }
16848 stevensc 21393
 
16825 efrain 21394
  .wd-xl-200p-f {
21395
    width: 200% !important;
21396
  }
16848 stevensc 21397
 
16825 efrain 21398
  .mx-wd-xl-200p-f {
21399
    max-width: 200% !important;
21400
  }
16848 stevensc 21401
 
16825 efrain 21402
  .mn-wd-xl-200p-f {
21403
    min-width: 200% !important;
21404
  }
16848 stevensc 21405
 
16825 efrain 21406
  .wd-xl-250 {
21407
    width: 250px;
21408
  }
16848 stevensc 21409
 
16825 efrain 21410
  .wd-xl-250p {
21411
    width: 250%;
21412
  }
16848 stevensc 21413
 
16825 efrain 21414
  .mx-wd-xl-250p {
21415
    max-width: 250%;
21416
  }
16848 stevensc 21417
 
16825 efrain 21418
  .mn-wd-xl-250p {
21419
    min-width: 250%;
21420
  }
16848 stevensc 21421
 
16825 efrain 21422
  .wd-xl-250-f {
21423
    width: 250px !important;
21424
  }
16848 stevensc 21425
 
16825 efrain 21426
  .wd-xl-250p-f {
21427
    width: 250% !important;
21428
  }
16848 stevensc 21429
 
16825 efrain 21430
  .mx-wd-xl-250p-f {
21431
    max-width: 250% !important;
21432
  }
16848 stevensc 21433
 
16825 efrain 21434
  .mn-wd-xl-250p-f {
21435
    min-width: 250% !important;
21436
  }
16848 stevensc 21437
 
16825 efrain 21438
  .wd-xl-300 {
21439
    width: 300px;
21440
  }
16848 stevensc 21441
 
16825 efrain 21442
  .wd-xl-300p {
21443
    width: 300%;
21444
  }
16848 stevensc 21445
 
16825 efrain 21446
  .mx-wd-xl-300p {
21447
    max-width: 300%;
21448
  }
16848 stevensc 21449
 
16825 efrain 21450
  .mn-wd-xl-300p {
21451
    min-width: 300%;
21452
  }
16848 stevensc 21453
 
16825 efrain 21454
  .wd-xl-300-f {
21455
    width: 300px !important;
21456
  }
16848 stevensc 21457
 
16825 efrain 21458
  .wd-xl-300p-f {
21459
    width: 300% !important;
21460
  }
16848 stevensc 21461
 
16825 efrain 21462
  .mx-wd-xl-300p-f {
21463
    max-width: 300% !important;
21464
  }
16848 stevensc 21465
 
16825 efrain 21466
  .mn-wd-xl-300p-f {
21467
    min-width: 300% !important;
21468
  }
16848 stevensc 21469
 
16825 efrain 21470
  .wd-xl-350 {
21471
    width: 350px;
21472
  }
16848 stevensc 21473
 
16825 efrain 21474
  .wd-xl-350p {
21475
    width: 350%;
21476
  }
16848 stevensc 21477
 
16825 efrain 21478
  .mx-wd-xl-350p {
21479
    max-width: 350%;
21480
  }
16848 stevensc 21481
 
16825 efrain 21482
  .mn-wd-xl-350p {
21483
    min-width: 350%;
21484
  }
16848 stevensc 21485
 
16825 efrain 21486
  .wd-xl-350-f {
21487
    width: 350px !important;
21488
  }
16848 stevensc 21489
 
16825 efrain 21490
  .wd-xl-350p-f {
21491
    width: 350% !important;
21492
  }
16848 stevensc 21493
 
16825 efrain 21494
  .mx-wd-xl-350p-f {
21495
    max-width: 350% !important;
21496
  }
16848 stevensc 21497
 
16825 efrain 21498
  .mn-wd-xl-350p-f {
21499
    min-width: 350% !important;
21500
  }
16848 stevensc 21501
 
16825 efrain 21502
  .wd-xl-400 {
21503
    width: 400px;
21504
  }
16848 stevensc 21505
 
16825 efrain 21506
  .wd-xl-400p {
21507
    width: 400%;
21508
  }
16848 stevensc 21509
 
16825 efrain 21510
  .mx-wd-xl-400p {
21511
    max-width: 400%;
21512
  }
16848 stevensc 21513
 
16825 efrain 21514
  .mn-wd-xl-400p {
21515
    min-width: 400%;
21516
  }
16848 stevensc 21517
 
16825 efrain 21518
  .wd-xl-400-f {
21519
    width: 400px !important;
21520
  }
16848 stevensc 21521
 
16825 efrain 21522
  .wd-xl-400p-f {
21523
    width: 400% !important;
21524
  }
16848 stevensc 21525
 
16825 efrain 21526
  .mx-wd-xl-400p-f {
21527
    max-width: 400% !important;
21528
  }
16848 stevensc 21529
 
16825 efrain 21530
  .mn-wd-xl-400p-f {
21531
    min-width: 400% !important;
21532
  }
16848 stevensc 21533
 
16825 efrain 21534
  .wd-xl-450 {
21535
    width: 450px;
21536
  }
16848 stevensc 21537
 
16825 efrain 21538
  .wd-xl-450p {
21539
    width: 450%;
21540
  }
16848 stevensc 21541
 
16825 efrain 21542
  .mx-wd-xl-450p {
21543
    max-width: 450%;
21544
  }
16848 stevensc 21545
 
16825 efrain 21546
  .mn-wd-xl-450p {
21547
    min-width: 450%;
21548
  }
16848 stevensc 21549
 
16825 efrain 21550
  .wd-xl-450-f {
21551
    width: 450px !important;
21552
  }
16848 stevensc 21553
 
16825 efrain 21554
  .wd-xl-450p-f {
21555
    width: 450% !important;
21556
  }
16848 stevensc 21557
 
16825 efrain 21558
  .mx-wd-xl-450p-f {
21559
    max-width: 450% !important;
21560
  }
16848 stevensc 21561
 
16825 efrain 21562
  .mn-wd-xl-450p-f {
21563
    min-width: 450% !important;
21564
  }
16848 stevensc 21565
 
16825 efrain 21566
  .wd-xl-500 {
21567
    width: 500px;
21568
  }
16848 stevensc 21569
 
16825 efrain 21570
  .wd-xl-500p {
21571
    width: 500%;
21572
  }
16848 stevensc 21573
 
16825 efrain 21574
  .mx-wd-xl-500p {
21575
    max-width: 500%;
21576
  }
16848 stevensc 21577
 
16825 efrain 21578
  .mn-wd-xl-500p {
21579
    min-width: 500%;
21580
  }
16848 stevensc 21581
 
16825 efrain 21582
  .wd-xl-500-f {
21583
    width: 500px !important;
21584
  }
16848 stevensc 21585
 
16825 efrain 21586
  .wd-xl-500p-f {
21587
    width: 500% !important;
21588
  }
16848 stevensc 21589
 
16825 efrain 21590
  .mx-wd-xl-500p-f {
21591
    max-width: 500% !important;
21592
  }
16848 stevensc 21593
 
16825 efrain 21594
  .mn-wd-xl-500p-f {
21595
    min-width: 500% !important;
21596
  }
16848 stevensc 21597
 
16825 efrain 21598
  .wd-xl-550 {
21599
    width: 550px;
21600
  }
16848 stevensc 21601
 
16825 efrain 21602
  .wd-xl-550p {
21603
    width: 550%;
21604
  }
16848 stevensc 21605
 
16825 efrain 21606
  .mx-wd-xl-550p {
21607
    max-width: 550%;
21608
  }
16848 stevensc 21609
 
16825 efrain 21610
  .mn-wd-xl-550p {
21611
    min-width: 550%;
21612
  }
16848 stevensc 21613
 
16825 efrain 21614
  .wd-xl-550-f {
21615
    width: 550px !important;
21616
  }
16848 stevensc 21617
 
16825 efrain 21618
  .wd-xl-550p-f {
21619
    width: 550% !important;
21620
  }
16848 stevensc 21621
 
16825 efrain 21622
  .mx-wd-xl-550p-f {
21623
    max-width: 550% !important;
21624
  }
16848 stevensc 21625
 
16825 efrain 21626
  .mn-wd-xl-550p-f {
21627
    min-width: 550% !important;
21628
  }
16848 stevensc 21629
 
16825 efrain 21630
  .wd-xl-600 {
21631
    width: 600px;
21632
  }
16848 stevensc 21633
 
16825 efrain 21634
  .wd-xl-600p {
21635
    width: 600%;
21636
  }
16848 stevensc 21637
 
16825 efrain 21638
  .mx-wd-xl-600p {
21639
    max-width: 600%;
21640
  }
16848 stevensc 21641
 
16825 efrain 21642
  .mn-wd-xl-600p {
21643
    min-width: 600%;
21644
  }
16848 stevensc 21645
 
16825 efrain 21646
  .wd-xl-600-f {
21647
    width: 600px !important;
21648
  }
16848 stevensc 21649
 
16825 efrain 21650
  .wd-xl-600p-f {
21651
    width: 600% !important;
21652
  }
16848 stevensc 21653
 
16825 efrain 21654
  .mx-wd-xl-600p-f {
21655
    max-width: 600% !important;
21656
  }
16848 stevensc 21657
 
16825 efrain 21658
  .mn-wd-xl-600p-f {
21659
    min-width: 600% !important;
21660
  }
16848 stevensc 21661
 
16825 efrain 21662
  .wd-xl-650 {
21663
    width: 650px;
21664
  }
16848 stevensc 21665
 
16825 efrain 21666
  .wd-xl-650p {
21667
    width: 650%;
21668
  }
16848 stevensc 21669
 
16825 efrain 21670
  .mx-wd-xl-650p {
21671
    max-width: 650%;
21672
  }
16848 stevensc 21673
 
16825 efrain 21674
  .mn-wd-xl-650p {
21675
    min-width: 650%;
21676
  }
16848 stevensc 21677
 
16825 efrain 21678
  .wd-xl-650-f {
21679
    width: 650px !important;
21680
  }
16848 stevensc 21681
 
16825 efrain 21682
  .wd-xl-650p-f {
21683
    width: 650% !important;
21684
  }
16848 stevensc 21685
 
16825 efrain 21686
  .mx-wd-xl-650p-f {
21687
    max-width: 650% !important;
21688
  }
16848 stevensc 21689
 
16825 efrain 21690
  .mn-wd-xl-650p-f {
21691
    min-width: 650% !important;
21692
  }
16848 stevensc 21693
 
16825 efrain 21694
  .wd-xl-700 {
21695
    width: 700px;
21696
  }
16848 stevensc 21697
 
16825 efrain 21698
  .wd-xl-700p {
21699
    width: 700%;
21700
  }
16848 stevensc 21701
 
16825 efrain 21702
  .mx-wd-xl-700p {
21703
    max-width: 700%;
21704
  }
16848 stevensc 21705
 
16825 efrain 21706
  .mn-wd-xl-700p {
21707
    min-width: 700%;
21708
  }
16848 stevensc 21709
 
16825 efrain 21710
  .wd-xl-700-f {
21711
    width: 700px !important;
21712
  }
16848 stevensc 21713
 
16825 efrain 21714
  .wd-xl-700p-f {
21715
    width: 700% !important;
21716
  }
16848 stevensc 21717
 
16825 efrain 21718
  .mx-wd-xl-700p-f {
21719
    max-width: 700% !important;
21720
  }
16848 stevensc 21721
 
16825 efrain 21722
  .mn-wd-xl-700p-f {
21723
    min-width: 700% !important;
21724
  }
16848 stevensc 21725
 
16825 efrain 21726
  .wd-xl-750 {
21727
    width: 750px;
21728
  }
16848 stevensc 21729
 
16825 efrain 21730
  .wd-xl-750p {
21731
    width: 750%;
21732
  }
16848 stevensc 21733
 
16825 efrain 21734
  .mx-wd-xl-750p {
21735
    max-width: 750%;
21736
  }
16848 stevensc 21737
 
16825 efrain 21738
  .mn-wd-xl-750p {
21739
    min-width: 750%;
21740
  }
16848 stevensc 21741
 
16825 efrain 21742
  .wd-xl-750-f {
21743
    width: 750px !important;
21744
  }
16848 stevensc 21745
 
16825 efrain 21746
  .wd-xl-750p-f {
21747
    width: 750% !important;
21748
  }
16848 stevensc 21749
 
16825 efrain 21750
  .mx-wd-xl-750p-f {
21751
    max-width: 750% !important;
21752
  }
16848 stevensc 21753
 
16825 efrain 21754
  .mn-wd-xl-750p-f {
21755
    min-width: 750% !important;
21756
  }
16848 stevensc 21757
 
16825 efrain 21758
  .wd-xl-800 {
21759
    width: 800px;
21760
  }
16848 stevensc 21761
 
16825 efrain 21762
  .wd-xl-800p {
21763
    width: 800%;
21764
  }
16848 stevensc 21765
 
16825 efrain 21766
  .mx-wd-xl-800p {
21767
    max-width: 800%;
21768
  }
16848 stevensc 21769
 
16825 efrain 21770
  .mn-wd-xl-800p {
21771
    min-width: 800%;
21772
  }
16848 stevensc 21773
 
16825 efrain 21774
  .wd-xl-800-f {
21775
    width: 800px !important;
21776
  }
16848 stevensc 21777
 
16825 efrain 21778
  .wd-xl-800p-f {
21779
    width: 800% !important;
21780
  }
16848 stevensc 21781
 
16825 efrain 21782
  .mx-wd-xl-800p-f {
21783
    max-width: 800% !important;
21784
  }
16848 stevensc 21785
 
16825 efrain 21786
  .mn-wd-xl-800p-f {
21787
    min-width: 800% !important;
21788
  }
16848 stevensc 21789
 
16825 efrain 21790
  .wd-xl-850 {
21791
    width: 850px;
21792
  }
16848 stevensc 21793
 
16825 efrain 21794
  .wd-xl-850p {
21795
    width: 850%;
21796
  }
16848 stevensc 21797
 
16825 efrain 21798
  .mx-wd-xl-850p {
21799
    max-width: 850%;
21800
  }
16848 stevensc 21801
 
16825 efrain 21802
  .mn-wd-xl-850p {
21803
    min-width: 850%;
21804
  }
16848 stevensc 21805
 
16825 efrain 21806
  .wd-xl-850-f {
21807
    width: 850px !important;
21808
  }
16848 stevensc 21809
 
16825 efrain 21810
  .wd-xl-850p-f {
21811
    width: 850% !important;
21812
  }
16848 stevensc 21813
 
16825 efrain 21814
  .mx-wd-xl-850p-f {
21815
    max-width: 850% !important;
21816
  }
16848 stevensc 21817
 
16825 efrain 21818
  .mn-wd-xl-850p-f {
21819
    min-width: 850% !important;
21820
  }
16848 stevensc 21821
 
16825 efrain 21822
  .wd-xl-900 {
21823
    width: 900px;
21824
  }
16848 stevensc 21825
 
16825 efrain 21826
  .wd-xl-900p {
21827
    width: 900%;
21828
  }
16848 stevensc 21829
 
16825 efrain 21830
  .mx-wd-xl-900p {
21831
    max-width: 900%;
21832
  }
16848 stevensc 21833
 
16825 efrain 21834
  .mn-wd-xl-900p {
21835
    min-width: 900%;
21836
  }
16848 stevensc 21837
 
16825 efrain 21838
  .wd-xl-900-f {
21839
    width: 900px !important;
21840
  }
16848 stevensc 21841
 
16825 efrain 21842
  .wd-xl-900p-f {
21843
    width: 900% !important;
21844
  }
16848 stevensc 21845
 
16825 efrain 21846
  .mx-wd-xl-900p-f {
21847
    max-width: 900% !important;
21848
  }
16848 stevensc 21849
 
16825 efrain 21850
  .mn-wd-xl-900p-f {
21851
    min-width: 900% !important;
21852
  }
16848 stevensc 21853
 
16825 efrain 21854
  .wd-xl-950 {
21855
    width: 950px;
21856
  }
16848 stevensc 21857
 
16825 efrain 21858
  .wd-xl-950p {
21859
    width: 950%;
21860
  }
16848 stevensc 21861
 
16825 efrain 21862
  .mx-wd-xl-950p {
21863
    max-width: 950%;
21864
  }
16848 stevensc 21865
 
16825 efrain 21866
  .mn-wd-xl-950p {
21867
    min-width: 950%;
21868
  }
16848 stevensc 21869
 
16825 efrain 21870
  .wd-xl-950-f {
21871
    width: 950px !important;
21872
  }
16848 stevensc 21873
 
16825 efrain 21874
  .wd-xl-950p-f {
21875
    width: 950% !important;
21876
  }
16848 stevensc 21877
 
16825 efrain 21878
  .mx-wd-xl-950p-f {
21879
    max-width: 950% !important;
21880
  }
16848 stevensc 21881
 
16825 efrain 21882
  .mn-wd-xl-950p-f {
21883
    min-width: 950% !important;
21884
  }
16848 stevensc 21885
 
16825 efrain 21886
  .wd-xl-1000 {
21887
    width: 1000px;
21888
  }
16848 stevensc 21889
 
16825 efrain 21890
  .wd-xl-1000p {
21891
    width: 1000%;
21892
  }
16848 stevensc 21893
 
16825 efrain 21894
  .mx-wd-xl-1000p {
21895
    max-width: 1000%;
21896
  }
16848 stevensc 21897
 
16825 efrain 21898
  .mn-wd-xl-1000p {
21899
    min-width: 1000%;
21900
  }
16848 stevensc 21901
 
16825 efrain 21902
  .wd-xl-1000-f {
21903
    width: 1000px !important;
21904
  }
16848 stevensc 21905
 
16825 efrain 21906
  .wd-xl-1000p-f {
21907
    width: 1000% !important;
21908
  }
16848 stevensc 21909
 
16825 efrain 21910
  .mx-wd-xl-1000p-f {
21911
    max-width: 1000% !important;
21912
  }
16848 stevensc 21913
 
16825 efrain 21914
  .mn-wd-xl-1000p-f {
21915
    min-width: 1000% !important;
21916
  }
16848 stevensc 21917
 
16825 efrain 21918
  .wd-xl-auto {
21919
    width: auto;
21920
  }
16848 stevensc 21921
 
16825 efrain 21922
  .wd-xl-auto {
21923
    width: auto !important;
21924
  }
21925
}
16848 stevensc 21926
 
16825 efrain 21927
@media (min-width: 1400px) {
21928
  .wd-xxl-5 {
21929
    width: 5px;
21930
  }
16848 stevensc 21931
 
16825 efrain 21932
  .wd-xxl-5p {
21933
    width: 5%;
21934
  }
16848 stevensc 21935
 
16825 efrain 21936
  .mx-wd-xxl-5p {
21937
    max-width: 5%;
21938
  }
16848 stevensc 21939
 
16825 efrain 21940
  .mn-wd-xxl-5p {
21941
    min-width: 5%;
21942
  }
16848 stevensc 21943
 
16825 efrain 21944
  .wd-xxl-5-f {
21945
    width: 5px !important;
21946
  }
16848 stevensc 21947
 
16825 efrain 21948
  .wd-xxl-5p-f {
21949
    width: 5% !important;
21950
  }
16848 stevensc 21951
 
16825 efrain 21952
  .mx-wd-xxl-5p-f {
21953
    max-width: 5% !important;
21954
  }
16848 stevensc 21955
 
16825 efrain 21956
  .mn-wd-xxl-5p-f {
21957
    min-width: 5% !important;
21958
  }
16848 stevensc 21959
 
16825 efrain 21960
  .wd-xxl-10 {
21961
    width: 10px;
21962
  }
16848 stevensc 21963
 
16825 efrain 21964
  .wd-xxl-10p {
21965
    width: 10%;
21966
  }
16848 stevensc 21967
 
16825 efrain 21968
  .mx-wd-xxl-10p {
21969
    max-width: 10%;
21970
  }
16848 stevensc 21971
 
16825 efrain 21972
  .mn-wd-xxl-10p {
21973
    min-width: 10%;
21974
  }
16848 stevensc 21975
 
16825 efrain 21976
  .wd-xxl-10-f {
21977
    width: 10px !important;
21978
  }
16848 stevensc 21979
 
16825 efrain 21980
  .wd-xxl-10p-f {
21981
    width: 10% !important;
21982
  }
16848 stevensc 21983
 
16825 efrain 21984
  .mx-wd-xxl-10p-f {
21985
    max-width: 10% !important;
21986
  }
16848 stevensc 21987
 
16825 efrain 21988
  .mn-wd-xxl-10p-f {
21989
    min-width: 10% !important;
21990
  }
16848 stevensc 21991
 
16825 efrain 21992
  .wd-xxl-15 {
21993
    width: 15px;
21994
  }
16848 stevensc 21995
 
16825 efrain 21996
  .wd-xxl-15p {
21997
    width: 15%;
21998
  }
16848 stevensc 21999
 
16825 efrain 22000
  .mx-wd-xxl-15p {
22001
    max-width: 15%;
22002
  }
16848 stevensc 22003
 
16825 efrain 22004
  .mn-wd-xxl-15p {
22005
    min-width: 15%;
22006
  }
16848 stevensc 22007
 
16825 efrain 22008
  .wd-xxl-15-f {
22009
    width: 15px !important;
22010
  }
16848 stevensc 22011
 
16825 efrain 22012
  .wd-xxl-15p-f {
22013
    width: 15% !important;
22014
  }
16848 stevensc 22015
 
16825 efrain 22016
  .mx-wd-xxl-15p-f {
22017
    max-width: 15% !important;
22018
  }
16848 stevensc 22019
 
16825 efrain 22020
  .mn-wd-xxl-15p-f {
22021
    min-width: 15% !important;
22022
  }
16848 stevensc 22023
 
16825 efrain 22024
  .wd-xxl-20 {
22025
    width: 20px;
22026
  }
16848 stevensc 22027
 
16825 efrain 22028
  .wd-xxl-20p {
22029
    width: 20%;
22030
  }
16848 stevensc 22031
 
16825 efrain 22032
  .mx-wd-xxl-20p {
22033
    max-width: 20%;
22034
  }
16848 stevensc 22035
 
16825 efrain 22036
  .mn-wd-xxl-20p {
22037
    min-width: 20%;
22038
  }
16848 stevensc 22039
 
16825 efrain 22040
  .wd-xxl-20-f {
22041
    width: 20px !important;
22042
  }
16848 stevensc 22043
 
16825 efrain 22044
  .wd-xxl-20p-f {
22045
    width: 20% !important;
22046
  }
16848 stevensc 22047
 
16825 efrain 22048
  .mx-wd-xxl-20p-f {
22049
    max-width: 20% !important;
22050
  }
16848 stevensc 22051
 
16825 efrain 22052
  .mn-wd-xxl-20p-f {
22053
    min-width: 20% !important;
22054
  }
16848 stevensc 22055
 
16825 efrain 22056
  .wd-xxl-25 {
22057
    width: 25px;
22058
  }
16848 stevensc 22059
 
16825 efrain 22060
  .wd-xxl-25p {
22061
    width: 25%;
22062
  }
16848 stevensc 22063
 
16825 efrain 22064
  .mx-wd-xxl-25p {
22065
    max-width: 25%;
22066
  }
16848 stevensc 22067
 
16825 efrain 22068
  .mn-wd-xxl-25p {
22069
    min-width: 25%;
22070
  }
16848 stevensc 22071
 
16825 efrain 22072
  .wd-xxl-25-f {
22073
    width: 25px !important;
22074
  }
16848 stevensc 22075
 
16825 efrain 22076
  .wd-xxl-25p-f {
22077
    width: 25% !important;
22078
  }
16848 stevensc 22079
 
16825 efrain 22080
  .mx-wd-xxl-25p-f {
22081
    max-width: 25% !important;
22082
  }
16848 stevensc 22083
 
16825 efrain 22084
  .mn-wd-xxl-25p-f {
22085
    min-width: 25% !important;
22086
  }
16848 stevensc 22087
 
16825 efrain 22088
  .wd-xxl-30 {
22089
    width: 30px;
22090
  }
16848 stevensc 22091
 
16825 efrain 22092
  .wd-xxl-30p {
22093
    width: 30%;
22094
  }
16848 stevensc 22095
 
16825 efrain 22096
  .mx-wd-xxl-30p {
22097
    max-width: 30%;
22098
  }
16848 stevensc 22099
 
16825 efrain 22100
  .mn-wd-xxl-30p {
22101
    min-width: 30%;
22102
  }
16848 stevensc 22103
 
16825 efrain 22104
  .wd-xxl-30-f {
22105
    width: 30px !important;
22106
  }
16848 stevensc 22107
 
16825 efrain 22108
  .wd-xxl-30p-f {
22109
    width: 30% !important;
22110
  }
16848 stevensc 22111
 
16825 efrain 22112
  .mx-wd-xxl-30p-f {
22113
    max-width: 30% !important;
22114
  }
16848 stevensc 22115
 
16825 efrain 22116
  .mn-wd-xxl-30p-f {
22117
    min-width: 30% !important;
22118
  }
16848 stevensc 22119
 
16825 efrain 22120
  .wd-xxl-35 {
22121
    width: 35px;
22122
  }
16848 stevensc 22123
 
16825 efrain 22124
  .wd-xxl-35p {
22125
    width: 35%;
22126
  }
16848 stevensc 22127
 
16825 efrain 22128
  .mx-wd-xxl-35p {
22129
    max-width: 35%;
22130
  }
16848 stevensc 22131
 
16825 efrain 22132
  .mn-wd-xxl-35p {
22133
    min-width: 35%;
22134
  }
16848 stevensc 22135
 
16825 efrain 22136
  .wd-xxl-35-f {
22137
    width: 35px !important;
22138
  }
16848 stevensc 22139
 
16825 efrain 22140
  .wd-xxl-35p-f {
22141
    width: 35% !important;
22142
  }
16848 stevensc 22143
 
16825 efrain 22144
  .mx-wd-xxl-35p-f {
22145
    max-width: 35% !important;
22146
  }
16848 stevensc 22147
 
16825 efrain 22148
  .mn-wd-xxl-35p-f {
22149
    min-width: 35% !important;
22150
  }
16848 stevensc 22151
 
16825 efrain 22152
  .wd-xxl-40 {
22153
    width: 40px;
22154
  }
16848 stevensc 22155
 
16825 efrain 22156
  .wd-xxl-40p {
22157
    width: 40%;
22158
  }
16848 stevensc 22159
 
16825 efrain 22160
  .mx-wd-xxl-40p {
22161
    max-width: 40%;
22162
  }
16848 stevensc 22163
 
16825 efrain 22164
  .mn-wd-xxl-40p {
22165
    min-width: 40%;
22166
  }
16848 stevensc 22167
 
16825 efrain 22168
  .wd-xxl-40-f {
22169
    width: 40px !important;
22170
  }
16848 stevensc 22171
 
16825 efrain 22172
  .wd-xxl-40p-f {
22173
    width: 40% !important;
22174
  }
16848 stevensc 22175
 
16825 efrain 22176
  .mx-wd-xxl-40p-f {
22177
    max-width: 40% !important;
22178
  }
16848 stevensc 22179
 
16825 efrain 22180
  .mn-wd-xxl-40p-f {
22181
    min-width: 40% !important;
22182
  }
16848 stevensc 22183
 
16825 efrain 22184
  .wd-xxl-45 {
22185
    width: 45px;
22186
  }
16848 stevensc 22187
 
16825 efrain 22188
  .wd-xxl-45p {
22189
    width: 45%;
22190
  }
16848 stevensc 22191
 
16825 efrain 22192
  .mx-wd-xxl-45p {
22193
    max-width: 45%;
22194
  }
16848 stevensc 22195
 
16825 efrain 22196
  .mn-wd-xxl-45p {
22197
    min-width: 45%;
22198
  }
16848 stevensc 22199
 
16825 efrain 22200
  .wd-xxl-45-f {
22201
    width: 45px !important;
22202
  }
16848 stevensc 22203
 
16825 efrain 22204
  .wd-xxl-45p-f {
22205
    width: 45% !important;
22206
  }
16848 stevensc 22207
 
16825 efrain 22208
  .mx-wd-xxl-45p-f {
22209
    max-width: 45% !important;
22210
  }
16848 stevensc 22211
 
16825 efrain 22212
  .mn-wd-xxl-45p-f {
22213
    min-width: 45% !important;
22214
  }
16848 stevensc 22215
 
16825 efrain 22216
  .wd-xxl-50 {
22217
    width: 50px;
22218
  }
16848 stevensc 22219
 
16825 efrain 22220
  .wd-xxl-50p {
22221
    width: 50%;
22222
  }
16848 stevensc 22223
 
16825 efrain 22224
  .mx-wd-xxl-50p {
22225
    max-width: 50%;
22226
  }
16848 stevensc 22227
 
16825 efrain 22228
  .mn-wd-xxl-50p {
22229
    min-width: 50%;
22230
  }
16848 stevensc 22231
 
16825 efrain 22232
  .wd-xxl-50-f {
22233
    width: 50px !important;
22234
  }
16848 stevensc 22235
 
16825 efrain 22236
  .wd-xxl-50p-f {
22237
    width: 50% !important;
22238
  }
16848 stevensc 22239
 
16825 efrain 22240
  .mx-wd-xxl-50p-f {
22241
    max-width: 50% !important;
22242
  }
16848 stevensc 22243
 
16825 efrain 22244
  .mn-wd-xxl-50p-f {
22245
    min-width: 50% !important;
22246
  }
16848 stevensc 22247
 
16825 efrain 22248
  .wd-xxl-55 {
22249
    width: 55px;
22250
  }
16848 stevensc 22251
 
16825 efrain 22252
  .wd-xxl-55p {
22253
    width: 55%;
22254
  }
16848 stevensc 22255
 
16825 efrain 22256
  .mx-wd-xxl-55p {
22257
    max-width: 55%;
22258
  }
16848 stevensc 22259
 
16825 efrain 22260
  .mn-wd-xxl-55p {
22261
    min-width: 55%;
22262
  }
16848 stevensc 22263
 
16825 efrain 22264
  .wd-xxl-55-f {
22265
    width: 55px !important;
22266
  }
16848 stevensc 22267
 
16825 efrain 22268
  .wd-xxl-55p-f {
22269
    width: 55% !important;
22270
  }
16848 stevensc 22271
 
16825 efrain 22272
  .mx-wd-xxl-55p-f {
22273
    max-width: 55% !important;
22274
  }
16848 stevensc 22275
 
16825 efrain 22276
  .mn-wd-xxl-55p-f {
22277
    min-width: 55% !important;
22278
  }
16848 stevensc 22279
 
16825 efrain 22280
  .wd-xxl-60 {
22281
    width: 60px;
22282
  }
16848 stevensc 22283
 
16825 efrain 22284
  .wd-xxl-60p {
22285
    width: 60%;
22286
  }
16848 stevensc 22287
 
16825 efrain 22288
  .mx-wd-xxl-60p {
22289
    max-width: 60%;
22290
  }
16848 stevensc 22291
 
16825 efrain 22292
  .mn-wd-xxl-60p {
22293
    min-width: 60%;
22294
  }
16848 stevensc 22295
 
16825 efrain 22296
  .wd-xxl-60-f {
22297
    width: 60px !important;
22298
  }
16848 stevensc 22299
 
16825 efrain 22300
  .wd-xxl-60p-f {
22301
    width: 60% !important;
22302
  }
16848 stevensc 22303
 
16825 efrain 22304
  .mx-wd-xxl-60p-f {
22305
    max-width: 60% !important;
22306
  }
16848 stevensc 22307
 
16825 efrain 22308
  .mn-wd-xxl-60p-f {
22309
    min-width: 60% !important;
22310
  }
16848 stevensc 22311
 
16825 efrain 22312
  .wd-xxl-65 {
22313
    width: 65px;
22314
  }
16848 stevensc 22315
 
16825 efrain 22316
  .wd-xxl-65p {
22317
    width: 65%;
22318
  }
16848 stevensc 22319
 
16825 efrain 22320
  .mx-wd-xxl-65p {
22321
    max-width: 65%;
22322
  }
16848 stevensc 22323
 
16825 efrain 22324
  .mn-wd-xxl-65p {
22325
    min-width: 65%;
22326
  }
16848 stevensc 22327
 
16825 efrain 22328
  .wd-xxl-65-f {
22329
    width: 65px !important;
22330
  }
16848 stevensc 22331
 
16825 efrain 22332
  .wd-xxl-65p-f {
22333
    width: 65% !important;
22334
  }
16848 stevensc 22335
 
16825 efrain 22336
  .mx-wd-xxl-65p-f {
22337
    max-width: 65% !important;
22338
  }
16848 stevensc 22339
 
16825 efrain 22340
  .mn-wd-xxl-65p-f {
22341
    min-width: 65% !important;
22342
  }
16848 stevensc 22343
 
16825 efrain 22344
  .wd-xxl-70 {
22345
    width: 70px;
22346
  }
16848 stevensc 22347
 
16825 efrain 22348
  .wd-xxl-70p {
22349
    width: 70%;
22350
  }
16848 stevensc 22351
 
16825 efrain 22352
  .mx-wd-xxl-70p {
22353
    max-width: 70%;
22354
  }
16848 stevensc 22355
 
16825 efrain 22356
  .mn-wd-xxl-70p {
22357
    min-width: 70%;
22358
  }
16848 stevensc 22359
 
16825 efrain 22360
  .wd-xxl-70-f {
22361
    width: 70px !important;
22362
  }
16848 stevensc 22363
 
16825 efrain 22364
  .wd-xxl-70p-f {
22365
    width: 70% !important;
22366
  }
16848 stevensc 22367
 
16825 efrain 22368
  .mx-wd-xxl-70p-f {
22369
    max-width: 70% !important;
22370
  }
16848 stevensc 22371
 
16825 efrain 22372
  .mn-wd-xxl-70p-f {
22373
    min-width: 70% !important;
22374
  }
16848 stevensc 22375
 
16825 efrain 22376
  .wd-xxl-75 {
22377
    width: 75px;
22378
  }
16848 stevensc 22379
 
16825 efrain 22380
  .wd-xxl-75p {
22381
    width: 75%;
22382
  }
16848 stevensc 22383
 
16825 efrain 22384
  .mx-wd-xxl-75p {
22385
    max-width: 75%;
22386
  }
16848 stevensc 22387
 
16825 efrain 22388
  .mn-wd-xxl-75p {
22389
    min-width: 75%;
22390
  }
16848 stevensc 22391
 
16825 efrain 22392
  .wd-xxl-75-f {
22393
    width: 75px !important;
22394
  }
16848 stevensc 22395
 
16825 efrain 22396
  .wd-xxl-75p-f {
22397
    width: 75% !important;
22398
  }
16848 stevensc 22399
 
16825 efrain 22400
  .mx-wd-xxl-75p-f {
22401
    max-width: 75% !important;
22402
  }
16848 stevensc 22403
 
16825 efrain 22404
  .mn-wd-xxl-75p-f {
22405
    min-width: 75% !important;
22406
  }
16848 stevensc 22407
 
16825 efrain 22408
  .wd-xxl-80 {
22409
    width: 80px;
22410
  }
16848 stevensc 22411
 
16825 efrain 22412
  .wd-xxl-80p {
22413
    width: 80%;
22414
  }
16848 stevensc 22415
 
16825 efrain 22416
  .mx-wd-xxl-80p {
22417
    max-width: 80%;
22418
  }
16848 stevensc 22419
 
16825 efrain 22420
  .mn-wd-xxl-80p {
22421
    min-width: 80%;
22422
  }
16848 stevensc 22423
 
16825 efrain 22424
  .wd-xxl-80-f {
22425
    width: 80px !important;
22426
  }
16848 stevensc 22427
 
16825 efrain 22428
  .wd-xxl-80p-f {
22429
    width: 80% !important;
22430
  }
16848 stevensc 22431
 
16825 efrain 22432
  .mx-wd-xxl-80p-f {
22433
    max-width: 80% !important;
22434
  }
16848 stevensc 22435
 
16825 efrain 22436
  .mn-wd-xxl-80p-f {
22437
    min-width: 80% !important;
22438
  }
16848 stevensc 22439
 
16825 efrain 22440
  .wd-xxl-85 {
22441
    width: 85px;
22442
  }
16848 stevensc 22443
 
16825 efrain 22444
  .wd-xxl-85p {
22445
    width: 85%;
22446
  }
16848 stevensc 22447
 
16825 efrain 22448
  .mx-wd-xxl-85p {
22449
    max-width: 85%;
22450
  }
16848 stevensc 22451
 
16825 efrain 22452
  .mn-wd-xxl-85p {
22453
    min-width: 85%;
22454
  }
16848 stevensc 22455
 
16825 efrain 22456
  .wd-xxl-85-f {
22457
    width: 85px !important;
22458
  }
16848 stevensc 22459
 
16825 efrain 22460
  .wd-xxl-85p-f {
22461
    width: 85% !important;
22462
  }
16848 stevensc 22463
 
16825 efrain 22464
  .mx-wd-xxl-85p-f {
22465
    max-width: 85% !important;
22466
  }
16848 stevensc 22467
 
16825 efrain 22468
  .mn-wd-xxl-85p-f {
22469
    min-width: 85% !important;
22470
  }
16848 stevensc 22471
 
16825 efrain 22472
  .wd-xxl-90 {
22473
    width: 90px;
22474
  }
16848 stevensc 22475
 
16825 efrain 22476
  .wd-xxl-90p {
22477
    width: 90%;
22478
  }
16848 stevensc 22479
 
16825 efrain 22480
  .mx-wd-xxl-90p {
22481
    max-width: 90%;
22482
  }
16848 stevensc 22483
 
16825 efrain 22484
  .mn-wd-xxl-90p {
22485
    min-width: 90%;
22486
  }
16848 stevensc 22487
 
16825 efrain 22488
  .wd-xxl-90-f {
22489
    width: 90px !important;
22490
  }
16848 stevensc 22491
 
16825 efrain 22492
  .wd-xxl-90p-f {
22493
    width: 90% !important;
22494
  }
16848 stevensc 22495
 
16825 efrain 22496
  .mx-wd-xxl-90p-f {
22497
    max-width: 90% !important;
22498
  }
16848 stevensc 22499
 
16825 efrain 22500
  .mn-wd-xxl-90p-f {
22501
    min-width: 90% !important;
22502
  }
16848 stevensc 22503
 
16825 efrain 22504
  .wd-xxl-95 {
22505
    width: 95px;
22506
  }
16848 stevensc 22507
 
16825 efrain 22508
  .wd-xxl-95p {
22509
    width: 95%;
22510
  }
16848 stevensc 22511
 
16825 efrain 22512
  .mx-wd-xxl-95p {
22513
    max-width: 95%;
22514
  }
16848 stevensc 22515
 
16825 efrain 22516
  .mn-wd-xxl-95p {
22517
    min-width: 95%;
22518
  }
16848 stevensc 22519
 
16825 efrain 22520
  .wd-xxl-95-f {
22521
    width: 95px !important;
22522
  }
16848 stevensc 22523
 
16825 efrain 22524
  .wd-xxl-95p-f {
22525
    width: 95% !important;
22526
  }
16848 stevensc 22527
 
16825 efrain 22528
  .mx-wd-xxl-95p-f {
22529
    max-width: 95% !important;
22530
  }
16848 stevensc 22531
 
16825 efrain 22532
  .mn-wd-xxl-95p-f {
22533
    min-width: 95% !important;
22534
  }
16848 stevensc 22535
 
16825 efrain 22536
  .wd-xxl-100 {
22537
    width: 100px;
22538
  }
16848 stevensc 22539
 
16825 efrain 22540
  .wd-xxl-100p {
22541
    width: 100%;
22542
  }
16848 stevensc 22543
 
16825 efrain 22544
  .mx-wd-xxl-100p {
22545
    max-width: 100%;
22546
  }
16848 stevensc 22547
 
16825 efrain 22548
  .mn-wd-xxl-100p {
22549
    min-width: 100%;
22550
  }
16848 stevensc 22551
 
16825 efrain 22552
  .wd-xxl-100-f {
22553
    width: 100px !important;
22554
  }
16848 stevensc 22555
 
16825 efrain 22556
  .wd-xxl-100p-f {
22557
    width: 100% !important;
22558
  }
16848 stevensc 22559
 
16825 efrain 22560
  .mx-wd-xxl-100p-f {
22561
    max-width: 100% !important;
22562
  }
16848 stevensc 22563
 
16825 efrain 22564
  .mn-wd-xxl-100p-f {
22565
    min-width: 100% !important;
22566
  }
16848 stevensc 22567
 
16825 efrain 22568
  .wd-xxl-150 {
22569
    width: 150px;
22570
  }
16848 stevensc 22571
 
16825 efrain 22572
  .wd-xxl-150p {
22573
    width: 150%;
22574
  }
16848 stevensc 22575
 
16825 efrain 22576
  .mx-wd-xxl-150p {
22577
    max-width: 150%;
22578
  }
16848 stevensc 22579
 
16825 efrain 22580
  .mn-wd-xxl-150p {
22581
    min-width: 150%;
22582
  }
16848 stevensc 22583
 
16825 efrain 22584
  .wd-xxl-150-f {
22585
    width: 150px !important;
22586
  }
16848 stevensc 22587
 
16825 efrain 22588
  .wd-xxl-150p-f {
22589
    width: 150% !important;
22590
  }
16848 stevensc 22591
 
16825 efrain 22592
  .mx-wd-xxl-150p-f {
22593
    max-width: 150% !important;
22594
  }
16848 stevensc 22595
 
16825 efrain 22596
  .mn-wd-xxl-150p-f {
22597
    min-width: 150% !important;
22598
  }
16848 stevensc 22599
 
16825 efrain 22600
  .wd-xxl-200 {
22601
    width: 200px;
22602
  }
16848 stevensc 22603
 
16825 efrain 22604
  .wd-xxl-200p {
22605
    width: 200%;
22606
  }
16848 stevensc 22607
 
16825 efrain 22608
  .mx-wd-xxl-200p {
22609
    max-width: 200%;
22610
  }
16848 stevensc 22611
 
16825 efrain 22612
  .mn-wd-xxl-200p {
22613
    min-width: 200%;
22614
  }
16848 stevensc 22615
 
16825 efrain 22616
  .wd-xxl-200-f {
22617
    width: 200px !important;
22618
  }
16848 stevensc 22619
 
16825 efrain 22620
  .wd-xxl-200p-f {
22621
    width: 200% !important;
22622
  }
16848 stevensc 22623
 
16825 efrain 22624
  .mx-wd-xxl-200p-f {
22625
    max-width: 200% !important;
22626
  }
16848 stevensc 22627
 
16825 efrain 22628
  .mn-wd-xxl-200p-f {
22629
    min-width: 200% !important;
22630
  }
16848 stevensc 22631
 
16825 efrain 22632
  .wd-xxl-250 {
22633
    width: 250px;
22634
  }
16848 stevensc 22635
 
16825 efrain 22636
  .wd-xxl-250p {
22637
    width: 250%;
22638
  }
16848 stevensc 22639
 
16825 efrain 22640
  .mx-wd-xxl-250p {
22641
    max-width: 250%;
22642
  }
16848 stevensc 22643
 
16825 efrain 22644
  .mn-wd-xxl-250p {
22645
    min-width: 250%;
22646
  }
16848 stevensc 22647
 
16825 efrain 22648
  .wd-xxl-250-f {
22649
    width: 250px !important;
22650
  }
16848 stevensc 22651
 
16825 efrain 22652
  .wd-xxl-250p-f {
22653
    width: 250% !important;
22654
  }
16848 stevensc 22655
 
16825 efrain 22656
  .mx-wd-xxl-250p-f {
22657
    max-width: 250% !important;
22658
  }
16848 stevensc 22659
 
16825 efrain 22660
  .mn-wd-xxl-250p-f {
22661
    min-width: 250% !important;
22662
  }
16848 stevensc 22663
 
16825 efrain 22664
  .wd-xxl-300 {
22665
    width: 300px;
22666
  }
16848 stevensc 22667
 
16825 efrain 22668
  .wd-xxl-300p {
22669
    width: 300%;
22670
  }
16848 stevensc 22671
 
16825 efrain 22672
  .mx-wd-xxl-300p {
22673
    max-width: 300%;
22674
  }
16848 stevensc 22675
 
16825 efrain 22676
  .mn-wd-xxl-300p {
22677
    min-width: 300%;
22678
  }
16848 stevensc 22679
 
16825 efrain 22680
  .wd-xxl-300-f {
22681
    width: 300px !important;
22682
  }
16848 stevensc 22683
 
16825 efrain 22684
  .wd-xxl-300p-f {
22685
    width: 300% !important;
22686
  }
16848 stevensc 22687
 
16825 efrain 22688
  .mx-wd-xxl-300p-f {
22689
    max-width: 300% !important;
22690
  }
16848 stevensc 22691
 
16825 efrain 22692
  .mn-wd-xxl-300p-f {
22693
    min-width: 300% !important;
22694
  }
16848 stevensc 22695
 
16825 efrain 22696
  .wd-xxl-350 {
22697
    width: 350px;
22698
  }
16848 stevensc 22699
 
16825 efrain 22700
  .wd-xxl-350p {
22701
    width: 350%;
22702
  }
16848 stevensc 22703
 
16825 efrain 22704
  .mx-wd-xxl-350p {
22705
    max-width: 350%;
22706
  }
16848 stevensc 22707
 
16825 efrain 22708
  .mn-wd-xxl-350p {
22709
    min-width: 350%;
22710
  }
16848 stevensc 22711
 
16825 efrain 22712
  .wd-xxl-350-f {
22713
    width: 350px !important;
22714
  }
16848 stevensc 22715
 
16825 efrain 22716
  .wd-xxl-350p-f {
22717
    width: 350% !important;
22718
  }
16848 stevensc 22719
 
16825 efrain 22720
  .mx-wd-xxl-350p-f {
22721
    max-width: 350% !important;
22722
  }
16848 stevensc 22723
 
16825 efrain 22724
  .mn-wd-xxl-350p-f {
22725
    min-width: 350% !important;
22726
  }
16848 stevensc 22727
 
16825 efrain 22728
  .wd-xxl-400 {
22729
    width: 400px;
22730
  }
16848 stevensc 22731
 
16825 efrain 22732
  .wd-xxl-400p {
22733
    width: 400%;
22734
  }
16848 stevensc 22735
 
16825 efrain 22736
  .mx-wd-xxl-400p {
22737
    max-width: 400%;
22738
  }
16848 stevensc 22739
 
16825 efrain 22740
  .mn-wd-xxl-400p {
22741
    min-width: 400%;
22742
  }
16848 stevensc 22743
 
16825 efrain 22744
  .wd-xxl-400-f {
22745
    width: 400px !important;
22746
  }
16848 stevensc 22747
 
16825 efrain 22748
  .wd-xxl-400p-f {
22749
    width: 400% !important;
22750
  }
16848 stevensc 22751
 
16825 efrain 22752
  .mx-wd-xxl-400p-f {
22753
    max-width: 400% !important;
22754
  }
16848 stevensc 22755
 
16825 efrain 22756
  .mn-wd-xxl-400p-f {
22757
    min-width: 400% !important;
22758
  }
16848 stevensc 22759
 
16825 efrain 22760
  .wd-xxl-450 {
22761
    width: 450px;
22762
  }
16848 stevensc 22763
 
16825 efrain 22764
  .wd-xxl-450p {
22765
    width: 450%;
22766
  }
16848 stevensc 22767
 
16825 efrain 22768
  .mx-wd-xxl-450p {
22769
    max-width: 450%;
22770
  }
16848 stevensc 22771
 
16825 efrain 22772
  .mn-wd-xxl-450p {
22773
    min-width: 450%;
22774
  }
16848 stevensc 22775
 
16825 efrain 22776
  .wd-xxl-450-f {
22777
    width: 450px !important;
22778
  }
16848 stevensc 22779
 
16825 efrain 22780
  .wd-xxl-450p-f {
22781
    width: 450% !important;
22782
  }
16848 stevensc 22783
 
16825 efrain 22784
  .mx-wd-xxl-450p-f {
22785
    max-width: 450% !important;
22786
  }
16848 stevensc 22787
 
16825 efrain 22788
  .mn-wd-xxl-450p-f {
22789
    min-width: 450% !important;
22790
  }
16848 stevensc 22791
 
16825 efrain 22792
  .wd-xxl-500 {
22793
    width: 500px;
22794
  }
16848 stevensc 22795
 
16825 efrain 22796
  .wd-xxl-500p {
22797
    width: 500%;
22798
  }
16848 stevensc 22799
 
16825 efrain 22800
  .mx-wd-xxl-500p {
22801
    max-width: 500%;
22802
  }
16848 stevensc 22803
 
16825 efrain 22804
  .mn-wd-xxl-500p {
22805
    min-width: 500%;
22806
  }
16848 stevensc 22807
 
16825 efrain 22808
  .wd-xxl-500-f {
22809
    width: 500px !important;
22810
  }
16848 stevensc 22811
 
16825 efrain 22812
  .wd-xxl-500p-f {
22813
    width: 500% !important;
22814
  }
16848 stevensc 22815
 
16825 efrain 22816
  .mx-wd-xxl-500p-f {
22817
    max-width: 500% !important;
22818
  }
16848 stevensc 22819
 
16825 efrain 22820
  .mn-wd-xxl-500p-f {
22821
    min-width: 500% !important;
22822
  }
16848 stevensc 22823
 
16825 efrain 22824
  .wd-xxl-550 {
22825
    width: 550px;
22826
  }
16848 stevensc 22827
 
16825 efrain 22828
  .wd-xxl-550p {
22829
    width: 550%;
22830
  }
16848 stevensc 22831
 
16825 efrain 22832
  .mx-wd-xxl-550p {
22833
    max-width: 550%;
22834
  }
16848 stevensc 22835
 
16825 efrain 22836
  .mn-wd-xxl-550p {
22837
    min-width: 550%;
22838
  }
16848 stevensc 22839
 
16825 efrain 22840
  .wd-xxl-550-f {
22841
    width: 550px !important;
22842
  }
16848 stevensc 22843
 
16825 efrain 22844
  .wd-xxl-550p-f {
22845
    width: 550% !important;
22846
  }
16848 stevensc 22847
 
16825 efrain 22848
  .mx-wd-xxl-550p-f {
22849
    max-width: 550% !important;
22850
  }
16848 stevensc 22851
 
16825 efrain 22852
  .mn-wd-xxl-550p-f {
22853
    min-width: 550% !important;
22854
  }
16848 stevensc 22855
 
16825 efrain 22856
  .wd-xxl-600 {
22857
    width: 600px;
22858
  }
16848 stevensc 22859
 
16825 efrain 22860
  .wd-xxl-600p {
22861
    width: 600%;
22862
  }
16848 stevensc 22863
 
16825 efrain 22864
  .mx-wd-xxl-600p {
22865
    max-width: 600%;
22866
  }
16848 stevensc 22867
 
16825 efrain 22868
  .mn-wd-xxl-600p {
22869
    min-width: 600%;
22870
  }
16848 stevensc 22871
 
16825 efrain 22872
  .wd-xxl-600-f {
22873
    width: 600px !important;
22874
  }
16848 stevensc 22875
 
16825 efrain 22876
  .wd-xxl-600p-f {
22877
    width: 600% !important;
22878
  }
16848 stevensc 22879
 
16825 efrain 22880
  .mx-wd-xxl-600p-f {
22881
    max-width: 600% !important;
22882
  }
16848 stevensc 22883
 
16825 efrain 22884
  .mn-wd-xxl-600p-f {
22885
    min-width: 600% !important;
22886
  }
16848 stevensc 22887
 
16825 efrain 22888
  .wd-xxl-650 {
22889
    width: 650px;
22890
  }
16848 stevensc 22891
 
16825 efrain 22892
  .wd-xxl-650p {
22893
    width: 650%;
22894
  }
16848 stevensc 22895
 
16825 efrain 22896
  .mx-wd-xxl-650p {
22897
    max-width: 650%;
22898
  }
16848 stevensc 22899
 
16825 efrain 22900
  .mn-wd-xxl-650p {
22901
    min-width: 650%;
22902
  }
16848 stevensc 22903
 
16825 efrain 22904
  .wd-xxl-650-f {
22905
    width: 650px !important;
22906
  }
16848 stevensc 22907
 
16825 efrain 22908
  .wd-xxl-650p-f {
22909
    width: 650% !important;
22910
  }
16848 stevensc 22911
 
16825 efrain 22912
  .mx-wd-xxl-650p-f {
22913
    max-width: 650% !important;
22914
  }
16848 stevensc 22915
 
16825 efrain 22916
  .mn-wd-xxl-650p-f {
22917
    min-width: 650% !important;
22918
  }
16848 stevensc 22919
 
16825 efrain 22920
  .wd-xxl-700 {
22921
    width: 700px;
22922
  }
16848 stevensc 22923
 
16825 efrain 22924
  .wd-xxl-700p {
22925
    width: 700%;
22926
  }
16848 stevensc 22927
 
16825 efrain 22928
  .mx-wd-xxl-700p {
22929
    max-width: 700%;
22930
  }
16848 stevensc 22931
 
16825 efrain 22932
  .mn-wd-xxl-700p {
22933
    min-width: 700%;
22934
  }
16848 stevensc 22935
 
16825 efrain 22936
  .wd-xxl-700-f {
22937
    width: 700px !important;
22938
  }
16848 stevensc 22939
 
16825 efrain 22940
  .wd-xxl-700p-f {
22941
    width: 700% !important;
22942
  }
16848 stevensc 22943
 
16825 efrain 22944
  .mx-wd-xxl-700p-f {
22945
    max-width: 700% !important;
22946
  }
16848 stevensc 22947
 
16825 efrain 22948
  .mn-wd-xxl-700p-f {
22949
    min-width: 700% !important;
22950
  }
16848 stevensc 22951
 
16825 efrain 22952
  .wd-xxl-750 {
22953
    width: 750px;
22954
  }
16848 stevensc 22955
 
16825 efrain 22956
  .wd-xxl-750p {
22957
    width: 750%;
22958
  }
16848 stevensc 22959
 
16825 efrain 22960
  .mx-wd-xxl-750p {
22961
    max-width: 750%;
22962
  }
16848 stevensc 22963
 
16825 efrain 22964
  .mn-wd-xxl-750p {
22965
    min-width: 750%;
22966
  }
16848 stevensc 22967
 
16825 efrain 22968
  .wd-xxl-750-f {
22969
    width: 750px !important;
22970
  }
16848 stevensc 22971
 
16825 efrain 22972
  .wd-xxl-750p-f {
22973
    width: 750% !important;
22974
  }
16848 stevensc 22975
 
16825 efrain 22976
  .mx-wd-xxl-750p-f {
22977
    max-width: 750% !important;
22978
  }
16848 stevensc 22979
 
16825 efrain 22980
  .mn-wd-xxl-750p-f {
22981
    min-width: 750% !important;
22982
  }
16848 stevensc 22983
 
16825 efrain 22984
  .wd-xxl-800 {
22985
    width: 800px;
22986
  }
16848 stevensc 22987
 
16825 efrain 22988
  .wd-xxl-800p {
22989
    width: 800%;
22990
  }
16848 stevensc 22991
 
16825 efrain 22992
  .mx-wd-xxl-800p {
22993
    max-width: 800%;
22994
  }
16848 stevensc 22995
 
16825 efrain 22996
  .mn-wd-xxl-800p {
22997
    min-width: 800%;
22998
  }
16848 stevensc 22999
 
16825 efrain 23000
  .wd-xxl-800-f {
23001
    width: 800px !important;
23002
  }
16848 stevensc 23003
 
16825 efrain 23004
  .wd-xxl-800p-f {
23005
    width: 800% !important;
23006
  }
16848 stevensc 23007
 
16825 efrain 23008
  .mx-wd-xxl-800p-f {
23009
    max-width: 800% !important;
23010
  }
16848 stevensc 23011
 
16825 efrain 23012
  .mn-wd-xxl-800p-f {
23013
    min-width: 800% !important;
23014
  }
16848 stevensc 23015
 
16825 efrain 23016
  .wd-xxl-850 {
23017
    width: 850px;
23018
  }
16848 stevensc 23019
 
16825 efrain 23020
  .wd-xxl-850p {
23021
    width: 850%;
23022
  }
16848 stevensc 23023
 
16825 efrain 23024
  .mx-wd-xxl-850p {
23025
    max-width: 850%;
23026
  }
16848 stevensc 23027
 
16825 efrain 23028
  .mn-wd-xxl-850p {
23029
    min-width: 850%;
23030
  }
16848 stevensc 23031
 
16825 efrain 23032
  .wd-xxl-850-f {
23033
    width: 850px !important;
23034
  }
16848 stevensc 23035
 
16825 efrain 23036
  .wd-xxl-850p-f {
23037
    width: 850% !important;
23038
  }
16848 stevensc 23039
 
16825 efrain 23040
  .mx-wd-xxl-850p-f {
23041
    max-width: 850% !important;
23042
  }
16848 stevensc 23043
 
16825 efrain 23044
  .mn-wd-xxl-850p-f {
23045
    min-width: 850% !important;
23046
  }
16848 stevensc 23047
 
16825 efrain 23048
  .wd-xxl-900 {
23049
    width: 900px;
23050
  }
16848 stevensc 23051
 
16825 efrain 23052
  .wd-xxl-900p {
23053
    width: 900%;
23054
  }
16848 stevensc 23055
 
16825 efrain 23056
  .mx-wd-xxl-900p {
23057
    max-width: 900%;
23058
  }
16848 stevensc 23059
 
16825 efrain 23060
  .mn-wd-xxl-900p {
23061
    min-width: 900%;
23062
  }
16848 stevensc 23063
 
16825 efrain 23064
  .wd-xxl-900-f {
23065
    width: 900px !important;
23066
  }
16848 stevensc 23067
 
16825 efrain 23068
  .wd-xxl-900p-f {
23069
    width: 900% !important;
23070
  }
16848 stevensc 23071
 
16825 efrain 23072
  .mx-wd-xxl-900p-f {
23073
    max-width: 900% !important;
23074
  }
16848 stevensc 23075
 
16825 efrain 23076
  .mn-wd-xxl-900p-f {
23077
    min-width: 900% !important;
23078
  }
16848 stevensc 23079
 
16825 efrain 23080
  .wd-xxl-950 {
23081
    width: 950px;
23082
  }
16848 stevensc 23083
 
16825 efrain 23084
  .wd-xxl-950p {
23085
    width: 950%;
23086
  }
16848 stevensc 23087
 
16825 efrain 23088
  .mx-wd-xxl-950p {
23089
    max-width: 950%;
23090
  }
16848 stevensc 23091
 
16825 efrain 23092
  .mn-wd-xxl-950p {
23093
    min-width: 950%;
23094
  }
16848 stevensc 23095
 
16825 efrain 23096
  .wd-xxl-950-f {
23097
    width: 950px !important;
23098
  }
16848 stevensc 23099
 
16825 efrain 23100
  .wd-xxl-950p-f {
23101
    width: 950% !important;
23102
  }
16848 stevensc 23103
 
16825 efrain 23104
  .mx-wd-xxl-950p-f {
23105
    max-width: 950% !important;
23106
  }
16848 stevensc 23107
 
16825 efrain 23108
  .mn-wd-xxl-950p-f {
23109
    min-width: 950% !important;
23110
  }
16848 stevensc 23111
 
16825 efrain 23112
  .wd-xxl-1000 {
23113
    width: 1000px;
23114
  }
16848 stevensc 23115
 
16825 efrain 23116
  .wd-xxl-1000p {
23117
    width: 1000%;
23118
  }
16848 stevensc 23119
 
16825 efrain 23120
  .mx-wd-xxl-1000p {
23121
    max-width: 1000%;
23122
  }
16848 stevensc 23123
 
16825 efrain 23124
  .mn-wd-xxl-1000p {
23125
    min-width: 1000%;
23126
  }
16848 stevensc 23127
 
16825 efrain 23128
  .wd-xxl-1000-f {
23129
    width: 1000px !important;
23130
  }
16848 stevensc 23131
 
16825 efrain 23132
  .wd-xxl-1000p-f {
23133
    width: 1000% !important;
23134
  }
16848 stevensc 23135
 
16825 efrain 23136
  .mx-wd-xxl-1000p-f {
23137
    max-width: 1000% !important;
23138
  }
16848 stevensc 23139
 
16825 efrain 23140
  .mn-wd-xxl-1000p-f {
23141
    min-width: 1000% !important;
23142
  }
16848 stevensc 23143
 
16825 efrain 23144
  .wd-xxl-auto {
23145
    width: auto;
23146
  }
16848 stevensc 23147
 
16825 efrain 23148
  .wd-xxl-auto {
23149
    width: auto !important;
23150
  }
23151
}
16848 stevensc 23152
 
16825 efrain 23153
.bg-facebook {
23154
  background: social-color("facebook");
23155
}
23156
 
23157
.bg-twitter {
23158
  background: social-color("twitter");
23159
}
23160
 
23161
.bg-google {
23162
  background: social-color("google");
23163
}
23164
 
23165
.bg-youtube {
23166
  background: social-color("youtube");
23167
}
23168
 
23169
.bg-vimeo {
23170
  background: social-color("vimeo");
23171
}
23172
 
23173
.bg-dribbble {
23174
  background: social-color("dribbble");
23175
}
23176
 
23177
.bg-github {
23178
  background: social-color("github");
23179
}
23180
 
23181
.bg-instagram {
23182
  background: social-color("instagram");
23183
}
23184
 
23185
.bg-pinterest {
23186
  background: social-color("pinterest");
23187
}
23188
 
23189
.bg-flickr {
23190
  background: social-color("flickr");
23191
}
23192
 
23193
.bg-bitbucket {
23194
  background: social-color("bitbucket");
23195
}
23196
 
23197
.bg-linkedin {
23198
  background: social-color("linkedin");
23199
}
23200
 
23201
body {
23202
  margin: 0;
23203
  padding: 0;
23204
}
23205
 
16848 stevensc 23206
.btn,
23207
.wizard>.actions a,
23208
.wizard>.actions a:active,
23209
.wizard>.actions a:hover,
23210
div.tox .tox-button,
23211
.swal2-popup .swal2-actions button,
23212
.fc .fc-button-primary,
16825 efrain 23213
.btn-group.open .dropdown-toggle,
23214
.btn:active,
23215
.btn:focus,
23216
.btn:hover,
23217
.btn:visited,
23218
a,
23219
a:active,
23220
a:checked,
23221
a:focus,
23222
a:hover,
23223
a:visited,
23224
body,
23225
button,
23226
button:active,
23227
button:hover,
23228
button:visited,
23229
div,
23230
input,
23231
input:active,
23232
input:hover,
23233
input:focus,
23234
input:visited,
23235
select,
23236
select:active,
23237
select:focus,
23238
select:visited,
23239
textarea,
23240
textarea:active,
23241
textarea:focus,
23242
textarea:visited {
23243
  -webkit-box-shadow: none;
23244
  -moz-box-shadow: none;
23245
  box-shadow: none;
23246
}
23247
 
23248
select,
23249
.form-check-input {
16848 stevensc 23250
  appearance: none;
16825 efrain 23251
  -moz-appearance: none;
23252
}
23253
 
23254
input:-webkit-autofill,
23255
input:-webkit-autofill:hover,
23256
input:-webkit-autofill:focus,
23257
input:-webkit-autofill:active {
23258
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23259
  -webkit-text-fill-color: #000;
23260
}
23261
 
23262
*:-moz-full-screen,
23263
*:-webkit-full-screen,
23264
*:fullscreen *:-ms-full-screen {
23265
  overflow: auto;
23266
}
23267
 
23268
pre {
23269
  background-color: color(gray-lighter);
23270
  padding: 15px;
23271
  font-size: 14px;
23272
}
23273
 
23274
code {
23275
  padding: 5px;
23276
  font-family: "Roboto", Helvetica, sans-serif;
23277
  font-weight: 400;
23278
  font-size: 0.875rem;
23279
  border-radius: 4px;
23280
}
23281
 
23282
.grid-margin {
23283
  margin-bottom: 1.5rem;
23284
}
23285
 
23286
@media (min-width: 576px) {
23287
  .grid-margin-sm-0 {
23288
    margin-bottom: 0;
23289
  }
23290
}
23291
 
23292
@media (min-width: 768px) {
23293
  .grid-margin-md-0 {
23294
    margin-bottom: 0;
23295
  }
23296
}
23297
 
23298
@media (min-width: 992px) {
23299
  .grid-margin-lg-0 {
23300
    margin-bottom: 0;
23301
  }
23302
}
23303
 
23304
@media (min-width: 1200px) {
23305
  .grid-margin-xl-0 {
23306
    margin-bottom: 0;
23307
  }
23308
}
23309
 
23310
.stretch-card {
23311
  display: flex;
23312
  align-items: stretch;
23313
  justify-content: stretch;
23314
}
16848 stevensc 23315
 
23316
.stretch-card>.card {
16825 efrain 23317
  width: 100%;
23318
  min-width: 100%;
23319
}
23320
 
23321
.img-lg {
23322
  width: 92px;
23323
  height: 92px;
23324
}
23325
 
23326
.img-md {
23327
  width: 75px;
23328
  height: 92px;
23329
}
23330
 
23331
.img-sm {
23332
  width: 43px;
23333
  height: 43px;
23334
}
23335
 
23336
.img-xs {
23337
  width: 36px;
23338
  height: 36px;
23339
}
23340
 
23341
.img-ss {
23342
  width: 26px;
23343
  height: 26px;
23344
}
23345
 
23346
.fw-boldest {
23347
  font-weight: 900;
23348
}
23349
 
23350
.tx-10 {
23351
  font-size: 10px;
23352
}
23353
 
23354
.tx-11 {
23355
  font-size: 11px;
23356
}
23357
 
23358
.tx-12 {
23359
  font-size: 12px;
23360
}
23361
 
23362
.tx-13 {
23363
  font-size: 13px;
23364
}
23365
 
23366
.tx-14 {
23367
  font-size: 14px;
23368
}
23369
 
23370
.tx-16 {
23371
  font-size: 16px;
23372
}
23373
 
23374
.tx-80 {
23375
  font-size: 80px;
23376
}
23377
 
23378
svg.icon-xs {
23379
  width: 12px;
23380
  height: 12px;
23381
}
23382
 
23383
svg.icon-sm {
23384
  width: 14px;
23385
  height: 14px;
23386
}
23387
 
23388
svg.icon-md {
23389
  width: 16px;
23390
  height: 16px;
23391
}
23392
 
23393
svg.icon-lg {
23394
  width: 20px;
23395
  height: 20px;
23396
}
23397
 
23398
svg.icon-xl {
23399
  width: 26px;
23400
  height: 26px;
23401
}
23402
 
23403
svg.icon-xxl {
23404
  width: 40px;
23405
  height: 40px;
23406
}
23407
 
23408
.icon-xs {
23409
  font-size: 14px;
23410
}
23411
 
23412
.icon-sm {
23413
  font-size: 16px;
23414
}
23415
 
23416
.icon-md {
23417
  font-size: 18px;
23418
}
23419
 
23420
.icon-lg {
23421
  font-size: 20px;
23422
}
23423
 
23424
.icon-xl {
23425
  font-size: 24px;
23426
}
23427
 
23428
.icon-xxl {
23429
  font-size: 30px;
23430
}
23431
 
23432
.cursor-pointer {
23433
  cursor: pointer;
23434
}
23435
 
23436
.cursor-default {
23437
  cursor: default;
23438
}
23439
 
23440
.pt-1px {
23441
  padding-top: 1px;
23442
}
23443
 
23444
.pt-2px {
23445
  padding-top: 2px;
23446
}
23447
 
23448
.pt-3px {
23449
  padding-top: 3px;
23450
}
23451
 
23452
.pb-1px {
23453
  padding-bottom: 1px;
23454
}
23455
 
23456
.pb-2px {
23457
  padding-bottom: 2px;
23458
}
23459
 
23460
.pb-3px {
23461
  padding-bottom: 3px;
23462
}
23463
 
23464
.mt-1px {
23465
  margin-top: 1px;
23466
}
23467
 
23468
.mt-2px {
23469
  margin-top: 2px;
23470
}
23471
 
23472
.mt-3px {
23473
  margin-top: 3px;
23474
}
23475
 
23476
.mb-1px {
23477
  margin-bottom: 1px;
23478
}
23479
 
23480
.mb-2px {
23481
  margin-bottom: 2px;
23482
}
23483
 
23484
.mb-3px {
23485
  margin-bottom: 3px;
23486
}
23487
 
23488
.ht-5 {
23489
  height: 5px;
23490
}
23491
 
23492
.ht-10 {
23493
  height: 10px;
23494
}
23495
 
23496
.ht-15 {
23497
  height: 15px;
23498
}
23499
 
23500
.ht-20 {
23501
  height: 20px;
23502
}
23503
 
23504
.ht-30 {
23505
  height: 30px;
23506
}
23507
 
23508
.ht-40 {
23509
  height: 40px;
23510
}
23511
 
23512
.ht-50 {
23513
  height: 50px;
23514
}
23515
 
23516
.ht-60 {
23517
  height: 60px;
23518
}
23519
 
23520
.ht-70 {
23521
  height: 70px;
23522
}
23523
 
23524
.ht-80 {
23525
  height: 80px;
23526
}
23527
 
23528
.ht-90 {
23529
  height: 90px;
23530
}
23531
 
23532
.ht-100 {
23533
  height: 100px;
23534
}
23535
 
23536
body {
23537
  -webkit-font-smoothing: antialiased;
23538
  -moz-osx-font-smoothing: grayscale;
23539
}
23540
 
23541
.text-facebook {
23542
  color: #3b5998;
23543
}
23544
 
23545
.text-twitter {
23546
  color: #1da1f2;
23547
}
23548
 
23549
.text-google {
23550
  color: #dc4e41;
23551
}
23552
 
23553
.text-youtube {
23554
  color: #f00;
23555
}
23556
 
23557
.text-vimeo {
23558
  color: #1ab7ea;
23559
}
23560
 
23561
.text-dribbble {
23562
  color: #ea4c89;
23563
}
23564
 
23565
.text-github {
23566
  color: #181717;
23567
}
23568
 
23569
.text-instagram {
23570
  color: #e4405f;
23571
}
23572
 
23573
.text-pinterest {
23574
  color: #bd081c;
23575
}
23576
 
23577
.text-flickr {
23578
  color: #0063dc;
23579
}
23580
 
23581
.text-bitbucket {
23582
  color: #0052cc;
23583
}
23584
 
23585
.text-linkedin {
23586
  color: #0077b5;
23587
}
23588
 
23589
.main-content {
23590
  color: #000;
23591
  font-size: 16px;
23592
}
16848 stevensc 23593
 
23594
.main-content>.page-title {
16825 efrain 23595
  margin-bottom: 1rem;
23596
  font-weight: 400;
23597
}
16848 stevensc 23598
 
23599
.main-content>h4,
23600
.main-content>.h4 {
16825 efrain 23601
  margin-top: 1.5rem;
23602
  margin-bottom: 0.875rem;
23603
}
16848 stevensc 23604
 
23605
.main-content>h4::before,
23606
.main-content>.h4::before {
16825 efrain 23607
  display: block;
23608
  height: 5.4rem;
23609
  margin-top: -6rem;
23610
  content: "";
23611
}
16848 stevensc 23612
 
23613
.main-content>hr {
16825 efrain 23614
  margin-top: 40px;
23615
  margin-bottom: 40px;
23616
}
16848 stevensc 23617
 
16825 efrain 23618
.main-content .example {
23619
  font-size: 0.875rem;
23620
  letter-spacing: normal;
23621
  padding: 10px;
23622
  background-color: #fff;
23623
  border: 4px solid #e9ecef;
23624
  position: relative;
23625
}
16848 stevensc 23626
 
16825 efrain 23627
@media (min-width: 576px) {
23628
  .main-content .example {
23629
    padding: 25px;
23630
  }
23631
}
16848 stevensc 23632
 
16825 efrain 23633
.main-content .highlight {
23634
  position: relative;
23635
  background-color: #fff;
23636
  padding: 15px;
23637
}
16848 stevensc 23638
 
16825 efrain 23639
.main-content .highlight pre {
23640
  padding: 15px;
23641
  font-size: 0.875rem;
23642
  font-family: "Roboto", Helvetica, sans-serif;
23643
  background: transparent;
23644
  line-height: 1.4;
23645
  margin: 0;
23646
}
16848 stevensc 23647
 
16825 efrain 23648
.main-content .highlight pre code {
23649
  font-family: "Roboto", Helvetica, sans-serif;
23650
  padding: 0;
23651
  tab-size: 8;
23652
  color: #000;
23653
  text-shadow: none;
23654
}
16848 stevensc 23655
 
23656
.main-content .highlight pre code .token.url,
23657
.main-content .highlight pre code .token.string,
23658
.main-content .highlight pre code .token.entity,
23659
.main-content .highlight pre code .token.operator {
16825 efrain 23660
  background: none;
23661
}
16848 stevensc 23662
 
16825 efrain 23663
.main-content .highlight .btn-clipboard {
23664
  position: absolute;
23665
  top: 6px;
23666
  right: 6px;
23667
  font-size: 12px;
23668
  padding: 1px 6px;
23669
  background: rgba(101, 113, 255, 0.2);
23670
}
16848 stevensc 23671
 
23672
.main-content .highlight .btn-clipboard:hover,
23673
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23674
  background: rgba(101, 113, 255, 0.3);
23675
  border-color: transparent;
23676
  transition: background 0.3s ease-in-out;
23677
}
23678
 
16848 stevensc 23679
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23680
  margin-top: 0.5rem;
23681
}
16848 stevensc 23682
 
16825 efrain 23683
.example .modal.static {
23684
  position: static;
23685
  display: block;
23686
}
16848 stevensc 23687
 
16825 efrain 23688
.example .navbar {
23689
  position: relative;
23690
  padding: 0.5rem 1rem;
23691
  left: auto;
23692
  width: 100%;
23693
  height: auto;
23694
  z-index: 9;
23695
  border-bottom: 0;
23696
  box-shadow: none;
23697
}
16848 stevensc 23698
 
16825 efrain 23699
.example .navbar .navbar-brand {
23700
  font-size: 1.25rem;
23701
}
16848 stevensc 23702
 
23703
.example .progress+.progress {
16825 efrain 23704
  margin-top: 10px;
23705
}
16848 stevensc 23706
 
16825 efrain 23707
.example .perfect-scrollbar-example {
23708
  position: relative;
23709
  max-height: 250px;
23710
  background: #fff;
23711
}
16848 stevensc 23712
 
16825 efrain 23713
.example .scrollspy-example {
23714
  position: relative;
23715
  height: 200px;
23716
  margin-top: 0.5rem;
23717
  overflow: auto;
23718
}
16848 stevensc 23719
 
16825 efrain 23720
.example .scrollspy-example-2 {
23721
  position: relative;
23722
  height: 350px;
23723
  overflow: auto;
23724
}
16848 stevensc 23725
 
16825 efrain 23726
.example nav .breadcrumb {
23727
  margin-bottom: 0.75rem;
23728
}
16848 stevensc 23729
 
16825 efrain 23730
.example nav:last-child .breadcrumb {
23731
  margin-bottom: 0;
23732
}
23733
 
23734
.page-breadcrumb {
23735
  margin-bottom: 15px;
23736
}
16848 stevensc 23737
 
16825 efrain 23738
.page-breadcrumb .breadcrumb {
23739
  padding: 0;
23740
  background: #f9fafb;
23741
}
23742
 
23743
.noble-ui-logo {
23744
  font-weight: 700;
23745
  font-size: 25px;
23746
  color: #000865;
23747
}
16848 stevensc 23748
 
16825 efrain 23749
.noble-ui-logo span {
23750
  color: #6571ff;
23751
  font-weight: 300;
23752
}
16848 stevensc 23753
 
16825 efrain 23754
.noble-ui-logo:hover {
23755
  color: #000865;
23756
}
16848 stevensc 23757
 
16825 efrain 23758
.noble-ui-logo.logo-light {
23759
  color: #000;
23760
}
23761
 
23762
.buy-now-wrapper {
23763
  position: fixed;
23764
  bottom: 30px;
23765
  right: 35px;
23766
  z-index: 99999;
23767
}
16848 stevensc 23768
 
16825 efrain 23769
.rtl .buy-now-wrapper {
23770
  right: auto;
23771
  left: 35px;
23772
}
16848 stevensc 23773
 
23774
.buy-now-wrapper .btn svg,
23775
.buy-now-wrapper .wizard>.actions a svg,
23776
.wizard>.actions .buy-now-wrapper a svg,
23777
.buy-now-wrapper div.tox .tox-button svg,
23778
div.tox .buy-now-wrapper .tox-button svg,
23779
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23780
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23781
.buy-now-wrapper .fc .fc-button-primary svg,
23782
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23783
  width: 19px !important;
23784
  height: 19px !important;
23785
}
23786
 
23787
.main-wrapper .page-wrapper {
23788
  min-height: 100vh;
23789
  background: #f9fafb;
23790
  width: calc(100% - 240px);
23791
  margin-left: 240px;
23792
  display: flex;
23793
  flex-direction: column;
23794
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23795
  transition: margin 0.1s ease, width 0.1s ease;
23796
}
16848 stevensc 23797
 
16825 efrain 23798
.main-wrapper .page-wrapper .page-content {
23799
  flex-grow: 1;
23800
  padding: 25px;
23801
  margin-top: 60px;
23802
}
16848 stevensc 23803
 
16825 efrain 23804
@media (max-width: 767px) {
23805
  .main-wrapper .page-wrapper .page-content {
23806
    padding: 25px 15px;
23807
  }
23808
}
16848 stevensc 23809
 
16825 efrain 23810
.main-wrapper .page-wrapper.full-page {
23811
  width: 100%;
23812
  margin-left: 0;
23813
}
16848 stevensc 23814
 
16825 efrain 23815
.main-wrapper .page-wrapper.full-page .page-content {
23816
  margin-top: 0;
23817
}
16848 stevensc 23818
 
16825 efrain 23819
@media (max-width: 991px) {
23820
  .main-wrapper .page-wrapper {
23821
    margin-left: 0;
23822
    width: 100%;
23823
  }
23824
}
23825
 
23826
.page-content .content-nav-wrapper {
23827
  padding: 0;
23828
  position: sticky;
23829
  top: 80px;
23830
  height: calc(100vh - 6rem);
23831
  overflow-y: auto;
23832
  border-left: 1px solid #e9ecef;
23833
  display: none;
23834
}
16848 stevensc 23835
 
16825 efrain 23836
@media (min-width: 1200px) {
23837
  .page-content .content-nav-wrapper {
23838
    display: block;
23839
  }
23840
}
16848 stevensc 23841
 
16825 efrain 23842
.page-content .content-nav-wrapper .content-nav {
23843
  padding: 0px 25px;
23844
}
16848 stevensc 23845
 
16825 efrain 23846
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23847
  padding: 0;
23848
  height: 30px;
23849
  white-space: nowrap;
23850
  color: #7987a1;
23851
  display: flex;
23852
  align-items: center;
23853
}
23854
 
23855
.navbar {
23856
  width: calc(100% - 240px);
23857
  height: 60px;
23858
  background: #fff;
23859
  border-bottom: 1px solid #e9ecef;
23860
  display: flex;
23861
  align-items: center;
23862
  padding: 0;
23863
  position: fixed;
23864
  right: 0;
23865
  left: 240px;
23866
  z-index: 978;
23867
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23868
  transition: width 0.1s ease, left 0.1s ease;
23869
}
16848 stevensc 23870
 
16825 efrain 23871
@media (max-width: 991px) {
23872
  .navbar {
23873
    width: 100%;
23874
    left: 0;
23875
  }
16848 stevensc 23876
 
16825 efrain 23877
  .navbar .navbar-content {
23878
    width: calc(100% - 70px - 1px);
23879
  }
23880
}
16848 stevensc 23881
 
16825 efrain 23882
.navbar .sidebar-toggler {
23883
  height: 100%;
23884
  border-right: 1px solid #e9ecef;
23885
  align-items: center;
23886
  padding: 0 25px;
23887
  display: none;
23888
}
16848 stevensc 23889
 
16825 efrain 23890
.navbar .sidebar-toggler svg {
23891
  width: 20px;
23892
  height: 20px;
23893
  color: #7987a1;
23894
}
16848 stevensc 23895
 
16825 efrain 23896
@media (max-width: 991px) {
23897
  .navbar .sidebar-toggler {
23898
    display: flex;
23899
  }
23900
}
16848 stevensc 23901
 
16825 efrain 23902
.navbar .search-form {
23903
  width: 100%;
23904
  margin-right: 60px;
23905
}
16848 stevensc 23906
 
16825 efrain 23907
.navbar .search-form .input-group .input-group-text {
23908
  padding: 0;
23909
  border: 0;
23910
  color: #7987a1;
23911
  background: #fff;
23912
}
16848 stevensc 23913
 
16825 efrain 23914
.navbar .search-form .input-group .input-group-text svg {
23915
  width: 20px;
23916
  height: 20px;
23917
  cursor: pointer;
23918
}
16848 stevensc 23919
 
23920
.navbar .search-form .input-group .form-control,
23921
.navbar .search-form .input-group .typeahead.tt-input,
23922
.navbar .search-form .input-group .typeahead.tt-hint,
23923
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23924
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23925
  border: 0;
23926
  margin-top: 3px;
23927
}
16848 stevensc 23928
 
16825 efrain 23929
.navbar .navbar-content {
23930
  display: flex;
23931
  width: 100%;
23932
  height: 100%;
23933
  padding-left: 25px;
23934
  padding-right: 25px;
23935
}
16848 stevensc 23936
 
16825 efrain 23937
@media (max-width: 991px) {
23938
  .navbar .navbar-content {
23939
    width: calc(100% - 70px - 1px);
23940
  }
23941
}
16848 stevensc 23942
 
16825 efrain 23943
.navbar .navbar-content .navbar-nav {
23944
  display: flex;
23945
  flex-direction: row;
23946
  margin-left: auto;
23947
}
16848 stevensc 23948
 
16825 efrain 23949
.navbar .navbar-content .navbar-nav .nav-item {
23950
  position: relative;
23951
  margin-left: 5px;
23952
  margin-right: 5px;
23953
  min-width: 30px;
23954
  display: flex;
23955
  align-items: center;
23956
}
16848 stevensc 23957
 
16825 efrain 23958
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23959
  color: #000;
23960
  padding: 0;
23961
  position: relative;
23962
  margin-left: auto;
23963
  margin-right: auto;
23964
}
16848 stevensc 23965
 
23966
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23967
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23968
  color: #6571ff;
23969
}
16848 stevensc 23970
 
16825 efrain 23971
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23972
  display: none;
23973
}
16848 stevensc 23974
 
16825 efrain 23975
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23976
  width: 20px;
23977
  height: 20px;
23978
}
16848 stevensc 23979
 
16825 efrain 23980
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23981
  position: absolute;
23982
  top: 0px;
23983
  right: 2px;
23984
}
16848 stevensc 23985
 
16825 efrain 23986
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23987
  background: #6571ff;
23988
  width: 7px;
23989
  height: 7px;
23990
  border-radius: 50%;
23991
}
16848 stevensc 23992
 
16825 efrain 23993
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23994
  background-color: #6571ff;
23995
  content: "";
23996
  display: table;
23997
  border-radius: 50%;
23998
  position: absolute;
23999
}
16848 stevensc 24000
 
16825 efrain 24001
@media (max-width: 767px) {
24002
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
24003
    position: static;
24004
  }
24005
}
16848 stevensc 24006
 
24007
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24008
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24009
  width: max-content;
24010
  position: absolute;
24011
  right: -20px;
24012
  left: auto;
24013
}
16848 stevensc 24014
 
24015
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24016
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24017
  content: "";
24018
  width: 13px;
24019
  height: 13px;
24020
  background: #fff;
24021
  position: absolute;
24022
  top: -7px;
24023
  right: 28px;
24024
  transform: rotate(45deg);
24025
  border-top: 1px solid #f2f4f9;
24026
  border-left: 1px solid #f2f4f9;
24027
}
16848 stevensc 24028
 
16825 efrain 24029
@media (max-width: 767px) {
16848 stevensc 24030
 
24031
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
24032
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24033
    right: 20px;
24034
    width: calc(100% - 40px);
24035
  }
16848 stevensc 24036
 
24037
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24038
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24039
    display: none;
24040
  }
24041
}
24042
 
24043
.sidebar {
24044
  width: 240px;
24045
  height: 100%;
24046
  position: fixed;
24047
  left: 0;
24048
  top: 0;
24049
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24050
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24051
  z-index: 999;
24052
}
16848 stevensc 24053
 
16825 efrain 24054
.sidebar .sidebar-header {
24055
  background: #fff;
24056
  height: 60px;
24057
  border-bottom: 1px solid #e9ecef;
24058
  display: flex;
24059
  justify-content: space-between;
24060
  align-items: center;
24061
  padding: 0 25px;
24062
  border-right: 1px solid #e9ecef;
24063
  z-index: 999;
24064
  width: 240px;
24065
  -webkit-transition: width 0.1s ease;
24066
  transition: width 0.1s ease;
24067
}
16848 stevensc 24068
 
16825 efrain 24069
.sidebar-open .sidebar .sidebar-header {
24070
  border-bottom: 1px solid #e9ecef;
24071
}
16848 stevensc 24072
 
16825 efrain 24073
.sidebar .sidebar-header .sidebar-brand {
24074
  opacity: 1;
24075
  visibility: visible;
24076
  -webkit-transition: opacity 0.5s ease;
24077
  transition: opacity 0.5s ease;
24078
  font-weight: 700;
24079
  font-size: 25px;
24080
  color: #000865;
16848 stevensc 24081
  direction: ltr
24082
    /*rtl:ignore*/
24083
  ;
16825 efrain 24084
}
16848 stevensc 24085
 
16825 efrain 24086
.sidebar .sidebar-header .sidebar-brand span {
24087
  color: #6571ff;
24088
  font-weight: 300;
24089
}
16848 stevensc 24090
 
16825 efrain 24091
.sidebar .sidebar-header .sidebar-toggler {
24092
  cursor: pointer;
24093
  width: 18px;
24094
}
16848 stevensc 24095
 
16825 efrain 24096
.sidebar .sidebar-header .sidebar-toggler span {
24097
  display: block;
24098
  width: 100%;
24099
  border-radius: 3px;
24100
  height: 2px;
24101
  background: #7987a1;
24102
  -webkit-transition: all 0.3s;
24103
  transition: all 0.3s;
24104
  position: relative;
24105
}
16848 stevensc 24106
 
24107
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24108
  margin-top: 4px;
24109
}
16848 stevensc 24110
 
16825 efrain 24111
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24112
  -webkit-animation: ease 0.6s top forwards;
24113
  animation: ease 0.6s top forwards;
24114
}
16848 stevensc 24115
 
16825 efrain 24116
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24117
  -webkit-animation: ease 0.6s top-2 forwards;
24118
  animation: ease 0.6s top-2 forwards;
24119
}
16848 stevensc 24120
 
16825 efrain 24121
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24122
  -webkit-animation: ease 0.6s scaled forwards;
24123
  animation: ease 0.6s scaled forwards;
24124
}
16848 stevensc 24125
 
16825 efrain 24126
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24127
  -webkit-animation: ease 0.6s scaled-2 forwards;
24128
  animation: ease 0.6s scaled-2 forwards;
24129
}
16848 stevensc 24130
 
16825 efrain 24131
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24132
  -webkit-animation: ease 0.6s bottom forwards;
24133
  animation: ease 0.6s bottom forwards;
24134
}
16848 stevensc 24135
 
16825 efrain 24136
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24137
  -webkit-animation: ease 0.6s bottom-2 forwards;
24138
  animation: ease 0.6s bottom-2 forwards;
24139
}
16848 stevensc 24140
 
16825 efrain 24141
@-webkit-keyframes top {
24142
  0% {
24143
    top: 0;
24144
    -webkit-transform: rotate(0);
24145
    transform: rotate(0);
24146
  }
16848 stevensc 24147
 
16825 efrain 24148
  50% {
24149
    top: 6px;
24150
    -webkit-transform: rotate(0);
24151
    transform: rotate(0);
24152
  }
16848 stevensc 24153
 
16825 efrain 24154
  100% {
24155
    top: 6px;
24156
    -webkit-transform: rotate(45deg);
24157
    transform: rotate(45deg);
24158
  }
24159
}
16848 stevensc 24160
 
16825 efrain 24161
@keyframes top {
24162
  0% {
24163
    top: 0;
24164
    -webkit-transform: rotate(0);
24165
    transform: rotate(0);
24166
  }
16848 stevensc 24167
 
16825 efrain 24168
  50% {
24169
    top: 6px;
24170
    -webkit-transform: rotate(0);
24171
    transform: rotate(0);
24172
  }
16848 stevensc 24173
 
16825 efrain 24174
  100% {
24175
    top: 6px;
24176
    -webkit-transform: rotate(45deg);
24177
    transform: rotate(45deg);
24178
  }
24179
}
16848 stevensc 24180
 
16825 efrain 24181
@-webkit-keyframes top-2 {
24182
  0% {
24183
    top: 6px;
24184
    -webkit-transform: rotate(45deg);
24185
    transform: rotate(45deg);
24186
  }
16848 stevensc 24187
 
16825 efrain 24188
  50% {
24189
    top: 6px;
24190
    -webkit-transform: rotate(0deg);
24191
    transform: rotate(0deg);
24192
  }
16848 stevensc 24193
 
16825 efrain 24194
  100% {
24195
    top: 0;
24196
    -webkit-transform: rotate(0deg);
24197
    transform: rotate(0deg);
24198
  }
24199
}
16848 stevensc 24200
 
16825 efrain 24201
@keyframes top-2 {
24202
  0% {
24203
    top: 6px;
24204
    -webkit-transform: rotate(45deg);
24205
    transform: rotate(45deg);
24206
  }
16848 stevensc 24207
 
16825 efrain 24208
  50% {
24209
    top: 6px;
24210
    -webkit-transform: rotate(0deg);
24211
    transform: rotate(0deg);
24212
  }
16848 stevensc 24213
 
16825 efrain 24214
  100% {
24215
    top: 0;
24216
    -webkit-transform: rotate(0deg);
24217
    transform: rotate(0deg);
24218
  }
24219
}
16848 stevensc 24220
 
16825 efrain 24221
@-webkit-keyframes bottom {
24222
  0% {
24223
    bottom: 0;
24224
    -webkit-transform: rotate(0);
24225
    transform: rotate(0);
24226
  }
16848 stevensc 24227
 
16825 efrain 24228
  50% {
24229
    bottom: 6px;
24230
    -webkit-transform: rotate(0);
24231
    transform: rotate(0);
24232
  }
16848 stevensc 24233
 
16825 efrain 24234
  100% {
24235
    bottom: 6px;
24236
    -webkit-transform: rotate(135deg);
24237
    transform: rotate(135deg);
24238
  }
24239
}
16848 stevensc 24240
 
16825 efrain 24241
@keyframes bottom {
24242
  0% {
24243
    bottom: 0;
24244
    -webkit-transform: rotate(0);
24245
    transform: rotate(0);
24246
  }
16848 stevensc 24247
 
16825 efrain 24248
  50% {
24249
    bottom: 6px;
24250
    -webkit-transform: rotate(0);
24251
    transform: rotate(0);
24252
  }
16848 stevensc 24253
 
16825 efrain 24254
  100% {
24255
    bottom: 6px;
24256
    -webkit-transform: rotate(135deg);
24257
    transform: rotate(135deg);
24258
  }
24259
}
16848 stevensc 24260
 
16825 efrain 24261
@-webkit-keyframes bottom-2 {
24262
  0% {
24263
    bottom: 6px;
24264
    -webkit-transform: rotate(135deg);
24265
    transform: rotate(135deg);
24266
  }
16848 stevensc 24267
 
16825 efrain 24268
  50% {
24269
    bottom: 6px;
24270
    -webkit-transform: rotate(0);
24271
    transform: rotate(0);
24272
  }
16848 stevensc 24273
 
16825 efrain 24274
  100% {
24275
    bottom: 0;
24276
    -webkit-transform: rotate(0);
24277
    transform: rotate(0);
24278
  }
24279
}
16848 stevensc 24280
 
16825 efrain 24281
@keyframes bottom-2 {
24282
  0% {
24283
    bottom: 6px;
24284
    -webkit-transform: rotate(135deg);
24285
    transform: rotate(135deg);
24286
  }
16848 stevensc 24287
 
16825 efrain 24288
  50% {
24289
    bottom: 6px;
24290
    -webkit-transform: rotate(0);
24291
    transform: rotate(0);
24292
  }
16848 stevensc 24293
 
16825 efrain 24294
  100% {
24295
    bottom: 0;
24296
    -webkit-transform: rotate(0);
24297
    transform: rotate(0);
24298
  }
24299
}
16848 stevensc 24300
 
16825 efrain 24301
@-webkit-keyframes scaled {
24302
  50% {
24303
    -webkit-transform: scale(0);
24304
    transform: scale(0);
24305
  }
16848 stevensc 24306
 
16825 efrain 24307
  100% {
24308
    -webkit-transform: scale(0);
24309
    transform: scale(0);
24310
  }
24311
}
16848 stevensc 24312
 
16825 efrain 24313
@keyframes scaled {
24314
  50% {
24315
    -webkit-transform: scale(0);
24316
    transform: scale(0);
24317
  }
16848 stevensc 24318
 
16825 efrain 24319
  100% {
24320
    -webkit-transform: scale(0);
24321
    transform: scale(0);
24322
  }
24323
}
16848 stevensc 24324
 
16825 efrain 24325
@-webkit-keyframes scaled-2 {
24326
  0% {
24327
    -webkit-transform: scale(0);
24328
    transform: scale(0);
24329
  }
16848 stevensc 24330
 
16825 efrain 24331
  50% {
24332
    -webkit-transform: scale(0);
24333
    transform: scale(0);
24334
  }
16848 stevensc 24335
 
16825 efrain 24336
  100% {
24337
    -webkit-transform: scale(1);
24338
    transform: scale(1);
24339
  }
24340
}
16848 stevensc 24341
 
16825 efrain 24342
@keyframes scaled-2 {
24343
  0% {
24344
    -webkit-transform: scale(0);
24345
    transform: scale(0);
24346
  }
16848 stevensc 24347
 
16825 efrain 24348
  50% {
24349
    -webkit-transform: scale(0);
24350
    transform: scale(0);
24351
  }
16848 stevensc 24352
 
16825 efrain 24353
  100% {
24354
    -webkit-transform: scale(1);
24355
    transform: scale(1);
24356
  }
24357
}
16848 stevensc 24358
 
16825 efrain 24359
.sidebar .sidebar-body {
24360
  max-height: calc(100% - 60px);
24361
  position: relative;
24362
  border-right: 1px solid #e9ecef;
24363
  height: 100%;
24364
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24365
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24366
  background: #fff;
24367
}
16848 stevensc 24368
 
16825 efrain 24369
.sidebar .sidebar-body .nav {
24370
  display: flex;
24371
  flex-direction: column;
24372
  padding: 25px 25px 50px 25px;
24373
}
16848 stevensc 24374
 
16825 efrain 24375
.sidebar .sidebar-body .nav .nav-item {
24376
  position: relative;
24377
}
16848 stevensc 24378
 
16825 efrain 24379
.sidebar .sidebar-body .nav .nav-item .nav-link {
24380
  display: flex;
24381
  align-items: center;
24382
  padding: 0;
24383
  height: 32px;
24384
  white-space: nowrap;
24385
  color: #000;
24386
}
16848 stevensc 24387
 
16825 efrain 24388
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24389
  width: 16px;
24390
  height: 16px;
24391
  fill: rgba(233, 236, 239, 0.21);
24392
  position: absolute;
24393
  color: inherit;
24394
}
16848 stevensc 24395
 
16825 efrain 24396
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24397
  margin-left: 30px;
24398
  font-size: 14px;
24399
  -webkit-transition: all 0.2s ease-in-out;
24400
  transition: all 0.2s ease-in-out;
24401
}
16848 stevensc 24402
 
16825 efrain 24403
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24404
  width: 14px;
24405
  height: 14px;
24406
  margin-left: auto;
24407
  -webkit-transition: all 0.3s ease;
24408
  -webkit-transition: all 0.3s ease-in-out;
24409
  transition: all 0.3s ease-in-out;
24410
  color: inherit;
24411
}
16848 stevensc 24412
 
16825 efrain 24413
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24414
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24415
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24416
  -webkit-transition: all 0.3s ease;
24417
  transition: all 0.3s ease;
24418
}
16848 stevensc 24419
 
16825 efrain 24420
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24421
  color: #6571ff;
24422
}
16848 stevensc 24423
 
16825 efrain 24424
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24425
  -webkit-transform: rotate(90deg);
24426
  transform: rotate(180deg);
24427
}
16848 stevensc 24428
 
16825 efrain 24429
.sidebar .sidebar-body .nav .nav-item.nav-category {
24430
  color: #7987a1;
24431
  font-size: 11px;
24432
  text-transform: uppercase;
24433
  font-weight: 500;
24434
  letter-spacing: 0.5px;
24435
  margin-bottom: 5px;
24436
  height: 15px;
24437
}
16848 stevensc 24438
 
16825 efrain 24439
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24440
  margin-top: 20px;
24441
}
16848 stevensc 24442
 
16825 efrain 24443
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24444
  color: #6571ff;
24445
}
16848 stevensc 24446
 
16825 efrain 24447
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24448
  margin-left: 31px;
24449
}
16848 stevensc 24450
 
16825 efrain 24451
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24452
  color: #6571ff;
24453
  fill: rgba(239, 243, 255, 0.5);
24454
}
16848 stevensc 24455
 
16825 efrain 24456
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24457
  color: #6571ff;
24458
}
16848 stevensc 24459
 
16825 efrain 24460
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24461
  content: "";
24462
  width: 3px;
24463
  height: 26px;
24464
  background: #6571ff;
24465
  position: absolute;
24466
  left: -25px;
24467
}
16848 stevensc 24468
 
16825 efrain 24469
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24470
  fill: rgba(239, 243, 255, 0.5);
24471
  color: #6571ff;
24472
}
16848 stevensc 24473
 
16825 efrain 24474
.sidebar .sidebar-body .nav.sub-menu {
24475
  padding: 0 0 15px 33px;
24476
}
16848 stevensc 24477
 
16825 efrain 24478
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24479
  position: relative;
24480
}
16848 stevensc 24481
 
16825 efrain 24482
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24483
  height: 25px;
24484
  color: #000;
24485
  font-size: 13px;
24486
  -webkit-transition: all 0.3s ease-in-out;
24487
  transition: all 0.3s ease-in-out;
24488
}
16848 stevensc 24489
 
16825 efrain 24490
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24491
  content: "";
24492
  width: 6px;
24493
  height: 6px;
24494
  border-radius: 50%;
24495
  background: transparent;
24496
  border: 1px solid #aeb9c4;
24497
  position: absolute;
24498
  left: -29px;
24499
  top: 10px;
24500
  -webkit-transition: all 0.7s ease-in-out;
24501
  -webkit-transition: all 0.4s ease-in-out;
24502
  transition: all 0.4s ease-in-out;
24503
}
16848 stevensc 24504
 
16893 stevensc 24505
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active .sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
16825 efrain 24506
  color: #6571ff;
24507
}
16848 stevensc 24508
 
16825 efrain 24509
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24510
  border: 1px solid #6571ff;
24511
  background: #6571ff;
24512
}
16848 stevensc 24513
 
16893 stevensc 24514
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover>.nav-link {
16825 efrain 24515
  color: #6571ff;
24516
  margin-left: 3px;
24517
}
16848 stevensc 24518
 
16893 stevensc 24519
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover>.nav-link::before {
16825 efrain 24520
  border: 1px solid #6571ff;
24521
  background: #6571ff;
24522
}
16848 stevensc 24523
 
16825 efrain 24524
@media (max-width: 991px) {
24525
  .sidebar {
24526
    z-index: 999;
24527
    margin-left: -240px;
24528
    visibility: hidden;
24529
  }
16848 stevensc 24530
 
16825 efrain 24531
  .sidebar-open .sidebar {
24532
    margin-left: 0;
24533
    visibility: visible;
24534
  }
16848 stevensc 24535
 
16825 efrain 24536
  .sidebar .sidebar-body .nav .nav-item {
24537
    width: auto;
24538
  }
16848 stevensc 24539
 
16825 efrain 24540
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24541
    -webkit-transition: none;
24542
    transition: none;
24543
    margin: 0;
24544
  }
24545
}
24546
 
24547
.sidebar-dark .sidebar .sidebar-header {
24548
  background: #0c1427;
24549
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24550
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24551
}
16848 stevensc 24552
 
16825 efrain 24553
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24554
  color: #e9ecef;
24555
}
16848 stevensc 24556
 
16825 efrain 24557
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24558
  background: #7987a1;
24559
}
16848 stevensc 24560
 
16825 efrain 24561
.sidebar-dark .sidebar .sidebar-body {
24562
  background: #0c1427;
24563
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24564
}
16848 stevensc 24565
 
16825 efrain 24566
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24567
  color: #fff;
24568
}
16848 stevensc 24569
 
16825 efrain 24570
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24571
  color: #7987a1;
24572
}
16848 stevensc 24573
 
16825 efrain 24574
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24575
  fill: none;
24576
}
16848 stevensc 24577
 
16825 efrain 24578
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24579
  color: #6571ff;
24580
}
16848 stevensc 24581
 
24582
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24583
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24584
  fill: rgba(101, 113, 255, 0.2);
24585
}
16848 stevensc 24586
 
24587
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24588
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24589
  color: #6571ff;
24590
}
24591
 
24592
.settings-sidebar {
24593
  position: fixed;
24594
  right: -232px;
24595
  top: 130px;
24596
  width: 232px;
24597
  background: #fff;
24598
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24599
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24600
  z-index: 999;
24601
  border-radius: 0 0 0 4px;
24602
  -webkit-transition: all 0.2s ease-in-out;
24603
  transition: all 0.2s ease-in-out;
24604
}
16848 stevensc 24605
 
16825 efrain 24606
.settings-open .settings-sidebar {
24607
  right: 0;
24608
}
16848 stevensc 24609
 
16825 efrain 24610
.settings-sidebar .sidebar-body {
24611
  position: relative;
24612
  padding: 18px;
24613
}
16848 stevensc 24614
 
16825 efrain 24615
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24616
  position: absolute;
24617
  left: -44px;
24618
  top: 0;
24619
  padding: 12px;
24620
  border-radius: 4px 0 0 4px;
24621
  background: #fff;
24622
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24623
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24624
}
16848 stevensc 24625
 
16825 efrain 24626
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24627
  width: 20px;
24628
  height: 20px;
24629
  color: #7987a1;
24630
}
16848 stevensc 24631
 
16825 efrain 24632
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24633
  position: relative;
24634
  display: block;
24635
  margin-bottom: 19px;
24636
  border-radius: 6px;
24637
  border: 3px solid #e9ecef;
24638
}
16848 stevensc 24639
 
16825 efrain 24640
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24641
  content: "";
24642
  position: absolute;
24643
  top: 0;
24644
  left: 0;
24645
  width: 100%;
24646
  height: 100%;
24647
  background: rgba(101, 113, 255, 0);
24648
}
16848 stevensc 24649
 
16825 efrain 24650
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24651
  margin-bottom: 0;
24652
}
16848 stevensc 24653
 
16825 efrain 24654
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24655
  border: 3px solid #b2b8ff;
24656
}
16848 stevensc 24657
 
16825 efrain 24658
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24659
  width: 100%;
24660
  border-radius: 3px;
24661
}
16848 stevensc 24662
 
16825 efrain 24663
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24664
  background: rgba(101, 113, 255, 0.2);
24665
  -webkit-transition: all 0.3s ease-in-out;
24666
  transition: all 0.3s ease-in-out;
24667
}
24668
 
24669
.sidebar-folded .sidebar .sidebar-header {
24670
  width: 70px;
24671
}
16848 stevensc 24672
 
16825 efrain 24673
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24674
  display: none;
24675
}
16848 stevensc 24676
 
16825 efrain 24677
.sidebar-folded .page-wrapper {
24678
  width: calc(100% - 70px);
24679
  margin-left: 70px;
24680
}
16848 stevensc 24681
 
16825 efrain 24682
.sidebar-folded .page-wrapper .navbar {
24683
  width: calc(100% - 70px);
24684
  left: 70px;
24685
  right: 0;
24686
}
16848 stevensc 24687
 
16825 efrain 24688
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24689
  width: 70px;
24690
}
16848 stevensc 24691
 
16825 efrain 24692
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24693
  width: 70px;
24694
}
16848 stevensc 24695
 
16825 efrain 24696
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24697
  opacity: 0;
24698
  visibility: hidden;
24699
  width: 0;
24700
}
16848 stevensc 24701
 
16825 efrain 24702
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24703
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24704
  visibility: hidden;
24705
  opacity: 0;
24706
}
16848 stevensc 24707
 
16825 efrain 24708
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24709
  visibility: hidden;
24710
}
16848 stevensc 24711
 
16825 efrain 24712
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24713
  content: "";
24714
  width: 5px;
24715
  height: 5px;
24716
  border-radius: 50%;
24717
  background: #7987a1;
24718
  position: absolute;
24719
  top: 5px;
24720
  left: 6px;
24721
  visibility: visible;
24722
}
16848 stevensc 24723
 
16825 efrain 24724
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24725
  display: none;
24726
}
24727
 
24728
@media (max-width: 991px) {
16848 stevensc 24729
 
24730
  .sidebar-open .main-wrapper::before,
24731
  .settings-open .main-wrapper::before {
16825 efrain 24732
    content: "";
24733
    width: 100vw;
24734
    background: rgba(0, 0, 0, 0.3);
24735
    position: fixed;
24736
    top: 0;
24737
    bottom: 0;
24738
    right: 0;
24739
    z-index: 99;
24740
    -webkit-transition: all 3s ease;
24741
    transition: all 3s ease;
24742
    z-index: 980;
24743
  }
24744
}
24745
 
24746
a.badge:hover {
24747
  color: #fff;
24748
}
24749
 
24750
.alert-primary {
24751
  background-color: rgba(101, 113, 255, 0.1);
24752
  color: #4c59ff;
24753
  border-color: rgba(101, 113, 255, 0.2);
24754
}
16848 stevensc 24755
 
16825 efrain 24756
.alert-primary .alert-link {
24757
  color: #4c59ff;
24758
}
16848 stevensc 24759
 
16825 efrain 24760
.alert-primary svg {
24761
  width: 19px;
24762
  height: 19px;
24763
  margin-right: 0.5rem;
24764
}
16848 stevensc 24765
 
16825 efrain 24766
.alert-primary i {
24767
  font-size: 19px;
24768
  margin-right: 0.5rem;
24769
}
24770
 
24771
.alert-fill-primary {
24772
  --bs-alert-color: #fff;
24773
  --bs-alert-bg: #6571ff;
24774
  --bs-alert-border-color: #6571ff;
24775
}
16848 stevensc 24776
 
16825 efrain 24777
.alert-fill-primary .alert-link {
24778
  color: #cccccc;
24779
}
16848 stevensc 24780
 
16825 efrain 24781
.alert-fill-primary.alert-fill-light {
24782
  color: #7987a1;
24783
}
24784
 
24785
.alert-secondary {
24786
  background-color: rgba(121, 135, 161, 0.1);
24787
  color: #6a7a96;
24788
  border-color: rgba(121, 135, 161, 0.2);
24789
}
16848 stevensc 24790
 
16825 efrain 24791
.alert-secondary .alert-link {
24792
  color: #6a7a96;
24793
}
16848 stevensc 24794
 
16825 efrain 24795
.alert-secondary svg {
24796
  width: 19px;
24797
  height: 19px;
24798
  margin-right: 0.5rem;
24799
}
16848 stevensc 24800
 
16825 efrain 24801
.alert-secondary i {
24802
  font-size: 19px;
24803
  margin-right: 0.5rem;
24804
}
24805
 
24806
.alert-fill-secondary {
24807
  --bs-alert-color: #fff;
24808
  --bs-alert-bg: #7987a1;
24809
  --bs-alert-border-color: #7987a1;
24810
}
16848 stevensc 24811
 
16825 efrain 24812
.alert-fill-secondary .alert-link {
24813
  color: #cccccc;
24814
}
16848 stevensc 24815
 
16825 efrain 24816
.alert-fill-secondary.alert-fill-light {
24817
  color: #7987a1;
24818
}
24819
 
24820
.alert-success {
24821
  background-color: rgba(5, 163, 74, 0.1);
24822
  color: #048a3f;
24823
  border-color: rgba(5, 163, 74, 0.2);
24824
}
16848 stevensc 24825
 
16825 efrain 24826
.alert-success .alert-link {
24827
  color: #048a3f;
24828
}
16848 stevensc 24829
 
16825 efrain 24830
.alert-success svg {
24831
  width: 19px;
24832
  height: 19px;
24833
  margin-right: 0.5rem;
24834
}
16848 stevensc 24835
 
16825 efrain 24836
.alert-success i {
24837
  font-size: 19px;
24838
  margin-right: 0.5rem;
24839
}
24840
 
24841
.alert-fill-success {
24842
  --bs-alert-color: #fff;
24843
  --bs-alert-bg: #05a34a;
24844
  --bs-alert-border-color: #05a34a;
24845
}
16848 stevensc 24846
 
16825 efrain 24847
.alert-fill-success .alert-link {
24848
  color: #cccccc;
24849
}
16848 stevensc 24850
 
16825 efrain 24851
.alert-fill-success.alert-fill-light {
24852
  color: #7987a1;
24853
}
24854
 
24855
.alert-info {
24856
  background-color: rgba(102, 209, 209, 0.1);
24857
  color: #52cbcb;
24858
  border-color: rgba(102, 209, 209, 0.2);
24859
}
16848 stevensc 24860
 
16825 efrain 24861
.alert-info .alert-link {
24862
  color: #52cbcb;
24863
}
16848 stevensc 24864
 
16825 efrain 24865
.alert-info svg {
24866
  width: 19px;
24867
  height: 19px;
24868
  margin-right: 0.5rem;
24869
}
16848 stevensc 24870
 
16825 efrain 24871
.alert-info i {
24872
  font-size: 19px;
24873
  margin-right: 0.5rem;
24874
}
24875
 
24876
.alert-fill-info {
24877
  --bs-alert-color: #fff;
24878
  --bs-alert-bg: #66d1d1;
24879
  --bs-alert-border-color: #66d1d1;
24880
}
16848 stevensc 24881
 
16825 efrain 24882
.alert-fill-info .alert-link {
24883
  color: #cccccc;
24884
}
16848 stevensc 24885
 
16825 efrain 24886
.alert-fill-info.alert-fill-light {
24887
  color: #7987a1;
24888
}
24889
 
24890
.alert-warning {
24891
  background-color: rgba(251, 188, 6, 0.1);
24892
  color: #e4aa04;
24893
  border-color: rgba(251, 188, 6, 0.2);
24894
}
16848 stevensc 24895
 
16825 efrain 24896
.alert-warning .alert-link {
24897
  color: #e4aa04;
24898
}
16848 stevensc 24899
 
16825 efrain 24900
.alert-warning svg {
24901
  width: 19px;
24902
  height: 19px;
24903
  margin-right: 0.5rem;
24904
}
16848 stevensc 24905
 
16825 efrain 24906
.alert-warning i {
24907
  font-size: 19px;
24908
  margin-right: 0.5rem;
24909
}
24910
 
24911
.alert-fill-warning {
24912
  --bs-alert-color: #fff;
24913
  --bs-alert-bg: #fbbc06;
24914
  --bs-alert-border-color: #fbbc06;
24915
}
16848 stevensc 24916
 
16825 efrain 24917
.alert-fill-warning .alert-link {
24918
  color: #cccccc;
24919
}
16848 stevensc 24920
 
16825 efrain 24921
.alert-fill-warning.alert-fill-light {
24922
  color: #7987a1;
24923
}
24924
 
24925
.alert-danger {
24926
  background-color: rgba(255, 51, 102, 0.1);
24927
  color: #ff1a53;
24928
  border-color: rgba(255, 51, 102, 0.2);
24929
}
16848 stevensc 24930
 
16825 efrain 24931
.alert-danger .alert-link {
24932
  color: #ff1a53;
24933
}
16848 stevensc 24934
 
16825 efrain 24935
.alert-danger svg {
24936
  width: 19px;
24937
  height: 19px;
24938
  margin-right: 0.5rem;
24939
}
16848 stevensc 24940
 
16825 efrain 24941
.alert-danger i {
24942
  font-size: 19px;
24943
  margin-right: 0.5rem;
24944
}
24945
 
24946
.alert-fill-danger {
24947
  --bs-alert-color: #fff;
24948
  --bs-alert-bg: #ff3366;
24949
  --bs-alert-border-color: #ff3366;
24950
}
16848 stevensc 24951
 
16825 efrain 24952
.alert-fill-danger .alert-link {
24953
  color: #cccccc;
24954
}
16848 stevensc 24955
 
16825 efrain 24956
.alert-fill-danger.alert-fill-light {
24957
  color: #7987a1;
24958
}
24959
 
24960
.alert-light {
24961
  background-color: rgba(233, 236, 239, 0.1);
24962
  color: #dadfe4;
24963
  border-color: rgba(233, 236, 239, 0.2);
24964
}
16848 stevensc 24965
 
16825 efrain 24966
.alert-light .alert-link {
24967
  color: #dadfe4;
24968
}
16848 stevensc 24969
 
16825 efrain 24970
.alert-light svg {
24971
  width: 19px;
24972
  height: 19px;
24973
  margin-right: 0.5rem;
24974
}
16848 stevensc 24975
 
16825 efrain 24976
.alert-light i {
24977
  font-size: 19px;
24978
  margin-right: 0.5rem;
24979
}
24980
 
24981
.alert-fill-light {
24982
  --bs-alert-color: #fff;
24983
  --bs-alert-bg: #e9ecef;
24984
  --bs-alert-border-color: #e9ecef;
24985
}
16848 stevensc 24986
 
16825 efrain 24987
.alert-fill-light .alert-link {
24988
  color: #cccccc;
24989
}
16848 stevensc 24990
 
16825 efrain 24991
.alert-fill-light.alert-fill-light {
24992
  color: #7987a1;
24993
}
24994
 
24995
.alert-dark {
24996
  background-color: rgba(6, 12, 23, 0.1);
24997
  color: #010103;
24998
  border-color: rgba(6, 12, 23, 0.2);
24999
}
16848 stevensc 25000
 
16825 efrain 25001
.alert-dark .alert-link {
25002
  color: #010103;
25003
}
16848 stevensc 25004
 
16825 efrain 25005
.alert-dark svg {
25006
  width: 19px;
25007
  height: 19px;
25008
  margin-right: 0.5rem;
25009
}
16848 stevensc 25010
 
16825 efrain 25011
.alert-dark i {
25012
  font-size: 19px;
25013
  margin-right: 0.5rem;
25014
}
25015
 
25016
.alert-fill-dark {
25017
  --bs-alert-color: #fff;
25018
  --bs-alert-bg: #060c17;
25019
  --bs-alert-border-color: #060c17;
25020
}
16848 stevensc 25021
 
16825 efrain 25022
.alert-fill-dark .alert-link {
25023
  color: #cccccc;
25024
}
16848 stevensc 25025
 
16825 efrain 25026
.alert-fill-dark.alert-fill-light {
25027
  color: #7987a1;
25028
}
25029
 
16848 stevensc 25030
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25031
  content: "-" !important;
25032
}
16848 stevensc 25033
 
25034
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25035
  content: "•" !important;
25036
}
16848 stevensc 25037
 
25038
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25039
  content: ">" !important;
25040
}
25041
 
25042
/* Buttons */
16848 stevensc 25043
.wizard>.actions a i,
25044
.wizard>.actions a:active i,
25045
.wizard>.actions a:hover i,
25046
div.tox .tox-button i,
25047
.swal2-popup .swal2-actions button i,
25048
.fc .fc-button-primary i {
16825 efrain 25049
  font-size: 1rem;
25050
}
16848 stevensc 25051
 
25052
.btn.btn-rounded,
25053
.wizard>.actions a.btn-rounded,
25054
div.tox .btn-rounded.tox-button,
25055
.swal2-popup .swal2-actions button.btn-rounded,
25056
.fc .btn-rounded.fc-button-primary {
16825 efrain 25057
  border-radius: 50px;
25058
}
16848 stevensc 25059
 
25060
.btn.btn-xs,
25061
.wizard>.actions a.btn-xs,
25062
div.tox .btn-xs.tox-button,
25063
.swal2-popup .swal2-actions button.btn-xs,
25064
.fc .btn-xs.fc-button-primary {
16825 efrain 25065
  padding: 0.313rem 0.8rem;
25066
  font-size: 0.75rem;
25067
}
16848 stevensc 25068
 
25069
.btn.btn-icon,
25070
.wizard>.actions a.btn-icon,
25071
div.tox .btn-icon.tox-button,
25072
.swal2-popup .swal2-actions button.btn-icon,
25073
.fc .btn-icon.fc-button-primary {
16825 efrain 25074
  width: 38px;
25075
  height: 38px;
25076
  padding: 0;
25077
  display: inline-flex;
25078
  align-items: center;
25079
  justify-content: center;
25080
}
16848 stevensc 25081
 
25082
.btn.btn-icon svg,
25083
.wizard>.actions a.btn-icon svg,
25084
div.tox .btn-icon.tox-button svg,
25085
.swal2-popup .swal2-actions button.btn-icon svg,
25086
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25087
  height: 18px;
25088
}
16848 stevensc 25089
 
25090
.btn.btn-icon.btn-xs,
25091
.wizard>.actions a.btn-icon.btn-xs,
25092
div.tox .btn-icon.btn-xs.tox-button,
25093
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25094
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25095
  width: 30px;
25096
  height: 30px;
25097
}
16848 stevensc 25098
 
25099
.btn.btn-icon.btn-xs svg,
25100
.wizard>.actions a.btn-icon.btn-xs svg,
25101
div.tox .btn-icon.btn-xs.tox-button svg,
25102
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25103
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25104
  height: 14px;
25105
}
16848 stevensc 25106
 
25107
.btn.btn-icon.btn-sm,
25108
.wizard>.actions a.btn-icon.btn-sm,
25109
div.tox .btn-icon.btn-sm.tox-button,
25110
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25111
.fc .btn-icon.fc-button-primary,
25112
.btn-group-sm>.btn.btn-icon,
25113
.wizard>.actions .btn-group-sm>a.btn-icon,
25114
div.tox .btn-group-sm>.btn-icon.tox-button,
25115
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25116
  width: 36px;
25117
  height: 36px;
25118
}
16848 stevensc 25119
 
25120
.btn.btn-icon.btn-sm svg,
25121
.wizard>.actions a.btn-icon.btn-sm svg,
25122
div.tox .btn-icon.btn-sm.tox-button svg,
25123
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25124
.fc .btn-icon.fc-button-primary svg,
25125
.btn-group-sm>.btn.btn-icon svg,
25126
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25127
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25128
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25129
  height: 15px;
25130
}
16848 stevensc 25131
 
25132
.btn.btn-icon.btn-lg,
25133
.wizard>.actions a.btn-icon.btn-lg,
25134
div.tox .btn-icon.btn-lg.tox-button,
25135
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25136
.fc .btn-icon.btn-lg.fc-button-primary,
25137
.btn-group-lg>.btn.btn-icon,
25138
.wizard>.actions .btn-group-lg>a.btn-icon,
25139
div.tox .btn-group-lg>.btn-icon.tox-button,
25140
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25141
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25142
  width: 42px;
25143
  height: 42px;
25144
}
16848 stevensc 25145
 
25146
.btn.btn-icon.btn-lg svg,
25147
.wizard>.actions a.btn-icon.btn-lg svg,
25148
div.tox .btn-icon.btn-lg.tox-button svg,
25149
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25150
.fc .btn-icon.btn-lg.fc-button-primary svg,
25151
.btn-group-lg>.btn.btn-icon svg,
25152
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25153
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25154
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25155
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25156
  height: 18px;
25157
}
16848 stevensc 25158
 
25159
.btn.btn-icon-text .btn-icon-prepend,
25160
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25161
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25162
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25163
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25164
  margin-right: 0.5rem;
25165
}
16848 stevensc 25166
 
25167
.btn.btn-icon-text .btn-icon-append,
25168
.wizard>.actions a.btn-icon-text .btn-icon-append,
25169
div.tox .btn-icon-text.tox-button .btn-icon-append,
25170
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25171
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25172
  margin-left: 0.5rem;
25173
}
16848 stevensc 25174
 
25175
.btn.btn-icon-text .btn-icon-prepend,
25176
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25177
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25178
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25179
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25180
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25181
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25182
div.tox .btn-icon-text.tox-button .btn-icon-append,
25183
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25184
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25185
  width: 18px;
25186
  height: 18px;
25187
}
16848 stevensc 25188
 
25189
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25190
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25191
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25192
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25193
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25194
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25195
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25196
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25197
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25198
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25199
  width: 14px;
25200
  height: 14px;
25201
}
16848 stevensc 25202
 
25203
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25204
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25205
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25206
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25207
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25208
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25209
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25210
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25211
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25212
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25213
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25214
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25215
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25216
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25217
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25218
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25219
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25220
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25221
  width: 15px;
25222
  height: 15px;
25223
}
16848 stevensc 25224
 
25225
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25226
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25227
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25228
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25229
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25230
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25231
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25232
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25233
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25234
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25235
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25236
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25237
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25238
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25239
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25240
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25241
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25242
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25243
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25244
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25245
  width: 18px;
25246
  height: 18px;
25247
}
25248
 
25249
.btn-facebook {
25250
  background: #3b5998;
25251
  color: #fff;
25252
}
16848 stevensc 25253
 
25254
.btn-facebook:hover,
25255
.btn-facebook:focus {
16825 efrain 25256
  background: #2d4373;
25257
  color: #fff;
25258
}
16848 stevensc 25259
 
16825 efrain 25260
.btn-facebook.btn-social-icon-text {
25261
  padding: 0 1.5rem 0 0;
25262
  background: #4c70ba;
25263
}
16848 stevensc 25264
 
16825 efrain 25265
.btn-facebook.btn-social-icon-text i {
25266
  background: #3b5998;
25267
  padding: 0.75rem;
25268
  display: inline-block;
25269
  margin-right: 1.5rem;
25270
}
25271
 
25272
.btn-outline-facebook {
25273
  border: 1px solid #3b5998;
25274
  color: #3b5998;
25275
}
16848 stevensc 25276
 
16825 efrain 25277
.btn-outline-facebook:hover {
25278
  background: #3b5998;
25279
  color: #fff;
25280
}
25281
 
25282
.btn-twitter {
25283
  background: #1da1f2;
25284
  color: #fff;
25285
}
16848 stevensc 25286
 
25287
.btn-twitter:hover,
25288
.btn-twitter:focus {
16825 efrain 25289
  background: #0c85d0;
25290
  color: #fff;
25291
}
16848 stevensc 25292
 
16825 efrain 25293
.btn-twitter.btn-social-icon-text {
25294
  padding: 0 1.5rem 0 0;
25295
  background: #4db5f5;
25296
}
16848 stevensc 25297
 
16825 efrain 25298
.btn-twitter.btn-social-icon-text i {
25299
  background: #1da1f2;
25300
  padding: 0.75rem;
25301
  display: inline-block;
25302
  margin-right: 1.5rem;
25303
}
25304
 
25305
.btn-outline-twitter {
25306
  border: 1px solid #1da1f2;
25307
  color: #1da1f2;
25308
}
16848 stevensc 25309
 
16825 efrain 25310
.btn-outline-twitter:hover {
25311
  background: #1da1f2;
25312
  color: #fff;
25313
}
25314
 
25315
.btn-google {
25316
  background: #dc4e41;
25317
  color: #fff;
25318
}
16848 stevensc 25319
 
25320
.btn-google:hover,
25321
.btn-google:focus {
16825 efrain 25322
  background: #c63224;
25323
  color: #fff;
25324
}
16848 stevensc 25325
 
16825 efrain 25326
.btn-google.btn-social-icon-text {
25327
  padding: 0 1.5rem 0 0;
25328
  background: #e4766c;
25329
}
16848 stevensc 25330
 
16825 efrain 25331
.btn-google.btn-social-icon-text i {
25332
  background: #dc4e41;
25333
  padding: 0.75rem;
25334
  display: inline-block;
25335
  margin-right: 1.5rem;
25336
}
25337
 
25338
.btn-outline-google {
25339
  border: 1px solid #dc4e41;
25340
  color: #dc4e41;
25341
}
16848 stevensc 25342
 
16825 efrain 25343
.btn-outline-google:hover {
25344
  background: #dc4e41;
25345
  color: #fff;
25346
}
25347
 
25348
.btn-youtube {
25349
  background: #f00;
25350
  color: #fff;
25351
}
16848 stevensc 25352
 
25353
.btn-youtube:hover,
25354
.btn-youtube:focus {
16825 efrain 25355
  background: #cc0000;
25356
  color: #fff;
25357
}
16848 stevensc 25358
 
16825 efrain 25359
.btn-youtube.btn-social-icon-text {
25360
  padding: 0 1.5rem 0 0;
25361
  background: #ff3333;
25362
}
16848 stevensc 25363
 
16825 efrain 25364
.btn-youtube.btn-social-icon-text i {
25365
  background: #f00;
25366
  padding: 0.75rem;
25367
  display: inline-block;
25368
  margin-right: 1.5rem;
25369
}
25370
 
25371
.btn-outline-youtube {
25372
  border: 1px solid #f00;
25373
  color: #f00;
25374
}
16848 stevensc 25375
 
16825 efrain 25376
.btn-outline-youtube:hover {
25377
  background: #f00;
25378
  color: #fff;
25379
}
25380
 
25381
.btn-vimeo {
25382
  background: #1ab7ea;
25383
  color: #fff;
25384
}
16848 stevensc 25385
 
25386
.btn-vimeo:hover,
25387
.btn-vimeo:focus {
16825 efrain 25388
  background: #1295bf;
25389
  color: #fff;
25390
}
16848 stevensc 25391
 
16825 efrain 25392
.btn-vimeo.btn-social-icon-text {
25393
  padding: 0 1.5rem 0 0;
25394
  background: #49c6ee;
25395
}
16848 stevensc 25396
 
16825 efrain 25397
.btn-vimeo.btn-social-icon-text i {
25398
  background: #1ab7ea;
25399
  padding: 0.75rem;
25400
  display: inline-block;
25401
  margin-right: 1.5rem;
25402
}
25403
 
25404
.btn-outline-vimeo {
25405
  border: 1px solid #1ab7ea;
25406
  color: #1ab7ea;
25407
}
16848 stevensc 25408
 
16825 efrain 25409
.btn-outline-vimeo:hover {
25410
  background: #1ab7ea;
25411
  color: #fff;
25412
}
25413
 
25414
.btn-dribbble {
25415
  background: #ea4c89;
25416
  color: #fff;
25417
}
16848 stevensc 25418
 
25419
.btn-dribbble:hover,
25420
.btn-dribbble:focus {
16825 efrain 25421
  background: #e51e6b;
25422
  color: #fff;
25423
}
16848 stevensc 25424
 
16825 efrain 25425
.btn-dribbble.btn-social-icon-text {
25426
  padding: 0 1.5rem 0 0;
25427
  background: #ef7aa7;
25428
}
16848 stevensc 25429
 
16825 efrain 25430
.btn-dribbble.btn-social-icon-text i {
25431
  background: #ea4c89;
25432
  padding: 0.75rem;
25433
  display: inline-block;
25434
  margin-right: 1.5rem;
25435
}
25436
 
25437
.btn-outline-dribbble {
25438
  border: 1px solid #ea4c89;
25439
  color: #ea4c89;
25440
}
16848 stevensc 25441
 
16825 efrain 25442
.btn-outline-dribbble:hover {
25443
  background: #ea4c89;
25444
  color: #fff;
25445
}
25446
 
25447
.btn-github {
25448
  background: #181717;
25449
  color: #fff;
25450
}
16848 stevensc 25451
 
25452
.btn-github:hover,
25453
.btn-github:focus {
16825 efrain 25454
  background: black;
25455
  color: #fff;
25456
}
16848 stevensc 25457
 
16825 efrain 25458
.btn-github.btn-social-icon-text {
25459
  padding: 0 1.5rem 0 0;
25460
  background: #323030;
25461
}
16848 stevensc 25462
 
16825 efrain 25463
.btn-github.btn-social-icon-text i {
25464
  background: #181717;
25465
  padding: 0.75rem;
25466
  display: inline-block;
25467
  margin-right: 1.5rem;
25468
}
25469
 
25470
.btn-outline-github {
25471
  border: 1px solid #181717;
25472
  color: #181717;
25473
}
16848 stevensc 25474
 
16825 efrain 25475
.btn-outline-github:hover {
25476
  background: #181717;
25477
  color: #fff;
25478
}
25479
 
25480
.btn-instagram {
25481
  background: #e4405f;
25482
  color: #fff;
25483
}
16848 stevensc 25484
 
25485
.btn-instagram:hover,
25486
.btn-instagram:focus {
16825 efrain 25487
  background: #d31e40;
25488
  color: #fff;
25489
}
16848 stevensc 25490
 
16825 efrain 25491
.btn-instagram.btn-social-icon-text {
25492
  padding: 0 1.5rem 0 0;
25493
  background: #ea6d84;
25494
}
16848 stevensc 25495
 
16825 efrain 25496
.btn-instagram.btn-social-icon-text i {
25497
  background: #e4405f;
25498
  padding: 0.75rem;
25499
  display: inline-block;
25500
  margin-right: 1.5rem;
25501
}
25502
 
25503
.btn-outline-instagram {
25504
  border: 1px solid #e4405f;
25505
  color: #e4405f;
25506
}
16848 stevensc 25507
 
16825 efrain 25508
.btn-outline-instagram:hover {
25509
  background: #e4405f;
25510
  color: #fff;
25511
}
25512
 
25513
.btn-pinterest {
25514
  background: #bd081c;
25515
  color: #fff;
25516
}
16848 stevensc 25517
 
25518
.btn-pinterest:hover,
25519
.btn-pinterest:focus {
16825 efrain 25520
  background: #8c0615;
25521
  color: #fff;
25522
}
16848 stevensc 25523
 
16825 efrain 25524
.btn-pinterest.btn-social-icon-text {
25525
  padding: 0 1.5rem 0 0;
25526
  background: #ee0a23;
25527
}
16848 stevensc 25528
 
16825 efrain 25529
.btn-pinterest.btn-social-icon-text i {
25530
  background: #bd081c;
25531
  padding: 0.75rem;
25532
  display: inline-block;
25533
  margin-right: 1.5rem;
25534
}
25535
 
25536
.btn-outline-pinterest {
25537
  border: 1px solid #bd081c;
25538
  color: #bd081c;
25539
}
16848 stevensc 25540
 
16825 efrain 25541
.btn-outline-pinterest:hover {
25542
  background: #bd081c;
25543
  color: #fff;
25544
}
25545
 
25546
.btn-flickr {
25547
  background: #0063dc;
25548
  color: #fff;
25549
}
16848 stevensc 25550
 
25551
.btn-flickr:hover,
25552
.btn-flickr:focus {
16825 efrain 25553
  background: #004ca9;
25554
  color: #fff;
25555
}
16848 stevensc 25556
 
16825 efrain 25557
.btn-flickr.btn-social-icon-text {
25558
  padding: 0 1.5rem 0 0;
25559
  background: #107cff;
25560
}
16848 stevensc 25561
 
16825 efrain 25562
.btn-flickr.btn-social-icon-text i {
25563
  background: #0063dc;
25564
  padding: 0.75rem;
25565
  display: inline-block;
25566
  margin-right: 1.5rem;
25567
}
25568
 
25569
.btn-outline-flickr {
25570
  border: 1px solid #0063dc;
25571
  color: #0063dc;
25572
}
16848 stevensc 25573
 
16825 efrain 25574
.btn-outline-flickr:hover {
25575
  background: #0063dc;
25576
  color: #fff;
25577
}
25578
 
25579
.btn-bitbucket {
25580
  background: #0052cc;
25581
  color: #fff;
25582
}
16848 stevensc 25583
 
25584
.btn-bitbucket:hover,
25585
.btn-bitbucket:focus {
16825 efrain 25586
  background: #003e99;
25587
  color: #fff;
25588
}
16848 stevensc 25589
 
16825 efrain 25590
.btn-bitbucket.btn-social-icon-text {
25591
  padding: 0 1.5rem 0 0;
25592
  background: #0067ff;
25593
}
16848 stevensc 25594
 
16825 efrain 25595
.btn-bitbucket.btn-social-icon-text i {
25596
  background: #0052cc;
25597
  padding: 0.75rem;
25598
  display: inline-block;
25599
  margin-right: 1.5rem;
25600
}
25601
 
25602
.btn-outline-bitbucket {
25603
  border: 1px solid #0052cc;
25604
  color: #0052cc;
25605
}
16848 stevensc 25606
 
16825 efrain 25607
.btn-outline-bitbucket:hover {
25608
  background: #0052cc;
25609
  color: #fff;
25610
}
25611
 
25612
.btn-linkedin {
25613
  background: #0077b5;
25614
  color: #fff;
25615
}
16848 stevensc 25616
 
25617
.btn-linkedin:hover,
25618
.btn-linkedin:focus {
16825 efrain 25619
  background: #005582;
25620
  color: #fff;
25621
}
16848 stevensc 25622
 
16825 efrain 25623
.btn-linkedin.btn-social-icon-text {
25624
  padding: 0 1.5rem 0 0;
25625
  background: #0099e8;
25626
}
16848 stevensc 25627
 
16825 efrain 25628
.btn-linkedin.btn-social-icon-text i {
25629
  background: #0077b5;
25630
  padding: 0.75rem;
25631
  display: inline-block;
25632
  margin-right: 1.5rem;
25633
}
25634
 
25635
.btn-outline-linkedin {
25636
  border: 1px solid #0077b5;
25637
  color: #0077b5;
25638
}
16848 stevensc 25639
 
16825 efrain 25640
.btn-outline-linkedin:hover {
25641
  background: #0077b5;
25642
  color: #fff;
25643
}
25644
 
25645
.btn-inverse-primary {
25646
  background-color: rgba(101, 113, 255, 0.2);
25647
  background-image: none;
25648
  border-color: rgba(101, 113, 255, 0);
25649
}
16848 stevensc 25650
 
16825 efrain 25651
.btn-inverse-primary:not(.btn-inverse-light) {
25652
  color: #6571ff;
25653
}
16848 stevensc 25654
 
25655
.btn-inverse-primary:hover,
25656
.btn-inverse-primary.active,
25657
.btn-inverse-primary:active,
25658
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25659
  background-color: rgba(101, 113, 255, 0.3);
25660
  border-color: rgba(101, 113, 255, 0);
25661
}
16848 stevensc 25662
 
25663
.btn-inverse-primary.focus,
25664
.btn-inverse-primary:focus {
16825 efrain 25665
  background-color: rgba(101, 113, 255, 0.3);
25666
  border-color: transparent;
25667
}
16848 stevensc 25668
 
25669
.btn-inverse-primary.disabled,
25670
.btn-inverse-primary:disabled {
16825 efrain 25671
  color: #6571ff;
25672
  background-color: transparent;
25673
}
25674
 
25675
.btn-inverse-secondary {
25676
  background-color: rgba(121, 135, 161, 0.2);
25677
  background-image: none;
25678
  border-color: rgba(121, 135, 161, 0);
25679
}
16848 stevensc 25680
 
16825 efrain 25681
.btn-inverse-secondary:not(.btn-inverse-light) {
25682
  color: #7987a1;
25683
}
16848 stevensc 25684
 
25685
.btn-inverse-secondary:hover,
25686
.btn-inverse-secondary.active,
25687
.btn-inverse-secondary:active,
25688
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25689
  background-color: rgba(121, 135, 161, 0.3);
25690
  border-color: rgba(121, 135, 161, 0);
25691
}
16848 stevensc 25692
 
25693
.btn-inverse-secondary.focus,
25694
.btn-inverse-secondary:focus {
16825 efrain 25695
  background-color: rgba(121, 135, 161, 0.3);
25696
  border-color: transparent;
25697
}
16848 stevensc 25698
 
25699
.btn-inverse-secondary.disabled,
25700
.btn-inverse-secondary:disabled {
16825 efrain 25701
  color: #7987a1;
25702
  background-color: transparent;
25703
}
25704
 
25705
.btn-inverse-success {
25706
  background-color: rgba(5, 163, 74, 0.2);
25707
  background-image: none;
25708
  border-color: rgba(5, 163, 74, 0);
25709
}
16848 stevensc 25710
 
16825 efrain 25711
.btn-inverse-success:not(.btn-inverse-light) {
25712
  color: #05a34a;
25713
}
16848 stevensc 25714
 
25715
.btn-inverse-success:hover,
25716
.btn-inverse-success.active,
25717
.btn-inverse-success:active,
25718
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25719
  background-color: rgba(5, 163, 74, 0.3);
25720
  border-color: rgba(5, 163, 74, 0);
25721
}
16848 stevensc 25722
 
25723
.btn-inverse-success.focus,
25724
.btn-inverse-success:focus {
16825 efrain 25725
  background-color: rgba(5, 163, 74, 0.3);
25726
  border-color: transparent;
25727
}
16848 stevensc 25728
 
25729
.btn-inverse-success.disabled,
25730
.btn-inverse-success:disabled {
16825 efrain 25731
  color: #05a34a;
25732
  background-color: transparent;
25733
}
25734
 
25735
.btn-inverse-info {
25736
  background-color: rgba(102, 209, 209, 0.2);
25737
  background-image: none;
25738
  border-color: rgba(102, 209, 209, 0);
25739
}
16848 stevensc 25740
 
16825 efrain 25741
.btn-inverse-info:not(.btn-inverse-light) {
25742
  color: #66d1d1;
25743
}
16848 stevensc 25744
 
25745
.btn-inverse-info:hover,
25746
.btn-inverse-info.active,
25747
.btn-inverse-info:active,
25748
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25749
  background-color: rgba(102, 209, 209, 0.3);
25750
  border-color: rgba(102, 209, 209, 0);
25751
}
16848 stevensc 25752
 
25753
.btn-inverse-info.focus,
25754
.btn-inverse-info:focus {
16825 efrain 25755
  background-color: rgba(102, 209, 209, 0.3);
25756
  border-color: transparent;
25757
}
16848 stevensc 25758
 
25759
.btn-inverse-info.disabled,
25760
.btn-inverse-info:disabled {
16825 efrain 25761
  color: #66d1d1;
25762
  background-color: transparent;
25763
}
25764
 
25765
.btn-inverse-warning {
25766
  background-color: rgba(251, 188, 6, 0.2);
25767
  background-image: none;
25768
  border-color: rgba(251, 188, 6, 0);
25769
}
16848 stevensc 25770
 
16825 efrain 25771
.btn-inverse-warning:not(.btn-inverse-light) {
25772
  color: #fbbc06;
25773
}
16848 stevensc 25774
 
25775
.btn-inverse-warning:hover,
25776
.btn-inverse-warning.active,
25777
.btn-inverse-warning:active,
25778
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25779
  background-color: rgba(251, 188, 6, 0.3);
25780
  border-color: rgba(251, 188, 6, 0);
25781
}
16848 stevensc 25782
 
25783
.btn-inverse-warning.focus,
25784
.btn-inverse-warning:focus {
16825 efrain 25785
  background-color: rgba(251, 188, 6, 0.3);
25786
  border-color: transparent;
25787
}
16848 stevensc 25788
 
25789
.btn-inverse-warning.disabled,
25790
.btn-inverse-warning:disabled {
16825 efrain 25791
  color: #fbbc06;
25792
  background-color: transparent;
25793
}
25794
 
25795
.btn-inverse-danger {
25796
  background-color: rgba(255, 51, 102, 0.2);
25797
  background-image: none;
25798
  border-color: rgba(255, 51, 102, 0);
25799
}
16848 stevensc 25800
 
16825 efrain 25801
.btn-inverse-danger:not(.btn-inverse-light) {
25802
  color: #ff3366;
25803
}
16848 stevensc 25804
 
25805
.btn-inverse-danger:hover,
25806
.btn-inverse-danger.active,
25807
.btn-inverse-danger:active,
25808
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25809
  background-color: rgba(255, 51, 102, 0.3);
25810
  border-color: rgba(255, 51, 102, 0);
25811
}
16848 stevensc 25812
 
25813
.btn-inverse-danger.focus,
25814
.btn-inverse-danger:focus {
16825 efrain 25815
  background-color: rgba(255, 51, 102, 0.3);
25816
  border-color: transparent;
25817
}
16848 stevensc 25818
 
25819
.btn-inverse-danger.disabled,
25820
.btn-inverse-danger:disabled {
16825 efrain 25821
  color: #ff3366;
25822
  background-color: transparent;
25823
}
25824
 
25825
.btn-inverse-light {
25826
  background-color: rgba(233, 236, 239, 0.2);
25827
  background-image: none;
25828
  border-color: rgba(233, 236, 239, 0);
25829
}
16848 stevensc 25830
 
16825 efrain 25831
.btn-inverse-light:not(.btn-inverse-light) {
25832
  color: #e9ecef;
25833
}
16848 stevensc 25834
 
25835
.btn-inverse-light:hover,
25836
.btn-inverse-light.active,
25837
.btn-inverse-light:active,
25838
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25839
  background-color: rgba(233, 236, 239, 0.3);
25840
  border-color: rgba(233, 236, 239, 0);
25841
}
16848 stevensc 25842
 
25843
.btn-inverse-light.focus,
25844
.btn-inverse-light:focus {
16825 efrain 25845
  background-color: rgba(233, 236, 239, 0.3);
25846
  border-color: transparent;
25847
}
16848 stevensc 25848
 
25849
.btn-inverse-light.disabled,
25850
.btn-inverse-light:disabled {
16825 efrain 25851
  color: #e9ecef;
25852
  background-color: transparent;
25853
}
25854
 
25855
.btn-inverse-dark {
25856
  background-color: rgba(6, 12, 23, 0.2);
25857
  background-image: none;
25858
  border-color: rgba(6, 12, 23, 0);
25859
}
16848 stevensc 25860
 
16825 efrain 25861
.btn-inverse-dark:not(.btn-inverse-light) {
25862
  color: #060c17;
25863
}
16848 stevensc 25864
 
25865
.btn-inverse-dark:hover,
25866
.btn-inverse-dark.active,
25867
.btn-inverse-dark:active,
25868
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25869
  background-color: rgba(6, 12, 23, 0.3);
25870
  border-color: rgba(6, 12, 23, 0);
25871
}
16848 stevensc 25872
 
25873
.btn-inverse-dark.focus,
25874
.btn-inverse-dark:focus {
16825 efrain 25875
  background-color: rgba(6, 12, 23, 0.3);
25876
  border-color: transparent;
25877
}
16848 stevensc 25878
 
25879
.btn-inverse-dark.disabled,
25880
.btn-inverse-dark:disabled {
16825 efrain 25881
  color: #060c17;
25882
  background-color: transparent;
25883
}
25884
 
25885
.card {
25886
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25887
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25888
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25889
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25890
}
16848 stevensc 25891
 
25892
.card .card-body+.card-body {
16825 efrain 25893
  padding-top: 1rem;
25894
}
16848 stevensc 25895
 
16825 efrain 25896
.card .card-title {
25897
  text-transform: uppercase;
25898
  font-size: 0.875rem;
25899
  font-weight: 500;
25900
}
25901
 
25902
.card-group {
25903
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25904
}
16848 stevensc 25905
 
16825 efrain 25906
.card-group .card {
25907
  box-shadow: none;
25908
}
25909
 
25910
.dropdown .dropdown-toggle:after,
25911
.btn-group .dropdown-toggle:after {
25912
  border-top: 0;
25913
  border-right: 0;
25914
  border-left: 0;
25915
  border-bottom: 0;
25916
  font: normal normal normal 24px/1 "feather";
25917
  content: "\e842";
25918
  width: auto;
25919
  height: auto;
25920
  vertical-align: middle;
25921
  line-height: 0.625rem;
25922
  font-size: 0.875rem;
25923
}
16848 stevensc 25924
 
16825 efrain 25925
.dropdown.dropup .dropdown-toggle::after,
25926
.btn-group.dropup .dropdown-toggle::after {
25927
  content: "\e845";
25928
}
16848 stevensc 25929
 
16825 efrain 25930
.dropdown.dropstart .dropdown-toggle::before,
25931
.btn-group.dropstart .dropdown-toggle::before {
25932
  border: 0;
25933
  font: normal normal normal 24px/1 "feather";
25934
  content: "\e843";
25935
  width: auto;
25936
  height: auto;
25937
  vertical-align: middle;
25938
  line-height: 0.625rem;
25939
  font-size: 0.875rem;
25940
}
16848 stevensc 25941
 
16825 efrain 25942
.dropdown.dropend .dropdown-toggle::after,
25943
.btn-group.dropend .dropdown-toggle::after {
25944
  content: "\e844";
25945
}
25946
 
16848 stevensc 25947
.dropdown-menu,
25948
.tt-menu {
16825 efrain 25949
  padding: 0.35rem;
25950
  margin-top: 0;
25951
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25952
}
25953
 
16848 stevensc 25954
.dropdown-item,
25955
.tt-menu .tt-suggestion {
16825 efrain 25956
  font-size: 0.812rem;
25957
  padding: 0.25rem 0.875rem;
25958
  border-radius: 2px;
25959
}
16848 stevensc 25960
 
25961
.dropdown-item i,
25962
.tt-menu .tt-suggestion i,
25963
.dropdown-item svg,
25964
.tt-menu .tt-suggestion svg {
16825 efrain 25965
  color: #7987a1;
25966
}
16848 stevensc 25967
 
25968
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25969
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25970
  background-color: rgba(101, 113, 255, 0.1);
25971
}
16848 stevensc 25972
 
25973
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25974
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25975
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25976
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25977
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25978
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25979
  color: #6571ff;
25980
}
16848 stevensc 25981
 
25982
.dropdown-item:active i,
25983
.tt-menu .tt-suggestion:active i,
25984
.dropdown-item:active svg,
25985
.tt-menu .tt-suggestion:active svg,
25986
.dropdown-item.active i,
25987
.tt-menu .active.tt-suggestion i,
25988
.dropdown-item.active svg,
25989
.tt-menu .active.tt-suggestion svg {
16825 efrain 25990
  color: #fff;
25991
}
25992
 
25993
.form-control-xs,
25994
.form-select-xs {
25995
  padding: 0.313rem 0.8rem;
25996
  font-size: 0.75rem;
25997
}
25998
 
16848 stevensc 25999
.form-control-xs+.input-group-text {
16825 efrain 26000
  padding-top: 0.313rem;
26001
  padding-bottom: 0.313rem;
26002
}
26003
 
26004
.form-check-input {
26005
  margin-top: 0.13em;
26006
}
26007
 
26008
.input-group-text svg {
26009
  width: 18px;
26010
  height: 18px;
26011
}
26012
 
26013
[type=tel],
26014
[type=url],
26015
[type=email],
26016
[type=number] {
26017
  direction: ltr;
26018
}
26019
 
26020
.icons-list {
26021
  border-left: 1px solid #e9ecef;
26022
  border-top: 1px solid #e9ecef;
26023
}
16848 stevensc 26024
 
26025
.icons-list>div {
16825 efrain 26026
  border-bottom: 1px solid #e9ecef;
26027
  border-right: 1px solid #e9ecef;
26028
  background: #f9fafb;
26029
  display: flex;
26030
  align-items: center;
26031
  padding: 15px 20px;
26032
  font-weight: 400;
26033
  transition: all 0.3s ease-in-out;
26034
}
16848 stevensc 26035
 
26036
.icons-list>div i {
16825 efrain 26037
  display: inline-block;
26038
  font-size: 20px;
26039
  text-align: left;
26040
  margin-right: 12px;
26041
  color: #7987a1;
26042
  transition: all 0.3s ease-in-out;
26043
}
16848 stevensc 26044
 
26045
.icons-list>div svg {
16825 efrain 26046
  width: 20px;
26047
  margin-right: 12px;
26048
  color: #7987a1;
26049
  transition: all 0.3s ease-in-out;
26050
}
16848 stevensc 26051
 
26052
.icons-list>div:hover {
16825 efrain 26053
  cursor: text;
26054
}
16848 stevensc 26055
 
26056
.icons-list>div:hover i,
26057
.icons-list>div:hover svg {
16825 efrain 26058
  transform: scale(1.3);
26059
  color: #6571ff;
26060
}
26061
 
26062
.nav.nav-tabs .nav-item .nav-link {
26063
  border-color: #e9ecef #e9ecef #dee2e6;
26064
  color: #000;
26065
  background-color: #f8f9fa;
26066
  cursor: pointer;
26067
}
16848 stevensc 26068
 
16825 efrain 26069
.nav.nav-tabs .nav-item .nav-link.active {
26070
  border-color: #dee2e6 #dee2e6 #fff;
26071
  color: #6571ff;
26072
  background: #fff;
26073
}
16848 stevensc 26074
 
16825 efrain 26075
.nav.nav-tabs .nav-item .nav-link.disabled {
26076
  background-color: transparent;
26077
  color: #7987a1;
26078
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26079
}
16848 stevensc 26080
 
16825 efrain 26081
.nav.nav-tabs.nav-tabs-vertical {
26082
  border-bottom: 0;
26083
}
16848 stevensc 26084
 
16825 efrain 26085
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26086
  width: 100%;
26087
  border: 1px solid transparent;
26088
  border-radius: 0;
26089
  border-color: #e9ecef #e9ecef #dee2e6;
26090
  color: #000;
26091
  background-color: #f8f9fa;
26092
}
16848 stevensc 26093
 
16825 efrain 26094
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26095
  border-radius: 0.25rem 0 0 0;
26096
}
16848 stevensc 26097
 
16825 efrain 26098
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26099
  border-radius: 0 0 0 0.25rem;
26100
}
16848 stevensc 26101
 
16825 efrain 26102
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26103
  background-color: #fff;
26104
  color: #6571ff;
26105
  border-right-color: transparent;
26106
}
16848 stevensc 26107
 
16825 efrain 26108
.nav.nav-tabs.nav-tabs-line .nav-link {
26109
  border: 0;
26110
  background-color: transparent;
26111
}
16848 stevensc 26112
 
16825 efrain 26113
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26114
  border-bottom: 2px solid #6571ff;
26115
}
26116
 
26117
.tab-content.tab-content-vertical {
26118
  height: 100%;
26119
}
26120
 
26121
.pagination .page-item .page-link svg {
26122
  width: 18px;
26123
  height: 18px;
26124
}
16848 stevensc 26125
 
16825 efrain 26126
.pagination.pagination-separated .page-item {
26127
  margin-left: 2px;
26128
  margin-right: 2px;
26129
}
16848 stevensc 26130
 
16825 efrain 26131
.pagination.pagination-separated .page-item:first-child {
26132
  margin-left: 0;
26133
}
16848 stevensc 26134
 
16825 efrain 26135
.pagination.pagination-separated .page-item:last-child {
26136
  margin-right: 0;
26137
}
16848 stevensc 26138
 
16825 efrain 26139
.pagination.pagination-rounded .page-item {
26140
  margin-right: 2px;
26141
  margin-left: 2px;
26142
}
16848 stevensc 26143
 
16825 efrain 26144
.pagination.pagination-rounded .page-item .page-link {
26145
  border-radius: 50px;
26146
}
26147
 
26148
.table {
26149
  margin-bottom: 0;
26150
}
16848 stevensc 26151
 
26152
.table> :not(:last-child)> :last-child>* {
16825 efrain 26153
  border-bottom-color: inherit;
26154
}
16848 stevensc 26155
 
16825 efrain 26156
.table thead th {
26157
  border-top: 0;
26158
  font-weight: 500;
26159
  font-size: 12px;
26160
  text-transform: uppercase;
26161
  color: #7987a1;
26162
}
16848 stevensc 26163
 
16825 efrain 26164
.table thead th i {
26165
  margin-left: 0.325rem;
26166
}
16848 stevensc 26167
 
16825 efrain 26168
.table th,
26169
.table td {
26170
  white-space: nowrap;
26171
}
16848 stevensc 26172
 
16825 efrain 26173
.table td img {
26174
  width: 36px;
26175
  height: 36px;
26176
  border-radius: 100%;
26177
}
26178
 
26179
.timeline {
26180
  border-left: 3px solid #6571ff;
26181
  border-bottom-right-radius: 0.25rem;
26182
  border-top-right-radius: 0.25rem;
26183
  background: rgba(101, 113, 255, 0.2);
26184
  margin: 0 auto;
26185
  position: relative;
26186
  padding: 50px;
26187
  list-style: none;
26188
  max-width: 40%;
26189
}
16848 stevensc 26190
 
16825 efrain 26191
@media (max-width: 767px) {
26192
  .timeline {
26193
    max-width: 98%;
26194
    padding: 25px;
26195
  }
26196
}
16848 stevensc 26197
 
16825 efrain 26198
.timeline .event {
26199
  border-bottom: 1px dashed #e9ecef;
26200
  padding-bottom: 25px;
26201
  margin-bottom: 25px;
26202
  position: relative;
26203
}
16848 stevensc 26204
 
16825 efrain 26205
@media (max-width: 767px) {
26206
  .timeline .event {
26207
    padding-top: 30px;
26208
  }
26209
}
16848 stevensc 26210
 
16825 efrain 26211
.timeline .event .title {
26212
  font-weight: 500;
26213
  font-size: 1rem;
26214
  margin-bottom: 10px;
26215
}
16848 stevensc 26216
 
16825 efrain 26217
.timeline .event:last-of-type {
26218
  padding-bottom: 0;
26219
  margin-bottom: 0;
26220
  border: none;
26221
}
16848 stevensc 26222
 
26223
.timeline .event:before,
26224
.timeline .event:after {
16825 efrain 26225
  position: absolute;
26226
  display: block;
26227
  top: 0;
26228
}
16848 stevensc 26229
 
16825 efrain 26230
.timeline .event:before {
26231
  left: -207px;
26232
  content: attr(data-date);
26233
  text-align: right;
26234
  font-weight: 500;
26235
  font-size: 0.9em;
26236
  min-width: 120px;
26237
}
16848 stevensc 26238
 
16825 efrain 26239
@media (max-width: 767px) {
26240
  .timeline .event:before {
26241
    left: 0px;
26242
    text-align: left;
26243
  }
26244
}
16848 stevensc 26245
 
16825 efrain 26246
.timeline .event:after {
26247
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26248
  box-shadow: 0 0 0 3px #6571ff;
26249
  left: -55.8px;
26250
  background: #fff;
26251
  border-radius: 50%;
26252
  height: 9px;
26253
  width: 9px;
26254
  content: "";
26255
  top: 5px;
26256
}
16848 stevensc 26257
 
16825 efrain 26258
@media (max-width: 767px) {
26259
  .timeline .event:after {
26260
    left: -31.8px;
26261
  }
26262
}
26263
 
26264
.chat-wrapper {
26265
  height: calc(100vh - 60px - 102px);
26266
}
16848 stevensc 26267
 
16825 efrain 26268
@media (max-width: 991px) {
26269
  .chat-wrapper {
26270
    min-height: 100%;
26271
  }
26272
}
16848 stevensc 26273
 
16825 efrain 26274
@media (max-width: 991px) {
26275
  .chat-wrapper {
26276
    height: 100%;
26277
  }
26278
}
16848 stevensc 26279
 
16825 efrain 26280
@media (min-width: 992px) {
26281
  .chat-wrapper .chat-aside {
26282
    padding-right: 23px;
26283
  }
26284
}
16848 stevensc 26285
 
16825 efrain 26286
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26287
  position: relative;
26288
  max-height: calc(100vh - 385px);
26289
}
16848 stevensc 26290
 
26291
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26292
  padding-top: 11px;
26293
  padding-bottom: 11px;
26294
}
16848 stevensc 26295
 
16825 efrain 26296
@media (max-width: 991px) {
26297
  .chat-wrapper .chat-content {
26298
    position: absolute;
26299
    background: #fff;
26300
    left: 0;
26301
    bottom: -1px;
26302
    top: 0;
26303
    right: 0;
26304
    display: none;
26305
  }
16848 stevensc 26306
 
16825 efrain 26307
  .chat-wrapper .chat-content.show {
26308
    display: block;
26309
  }
26310
}
16848 stevensc 26311
 
16825 efrain 26312
.chat-wrapper .chat-content .chat-header {
26313
  padding: 0 10px;
26314
}
16848 stevensc 26315
 
16825 efrain 26316
.chat-wrapper .chat-content .chat-body {
26317
  position: relative;
26318
  max-height: calc(100vh - 340px);
26319
  margin-top: 20px;
26320
  margin-bottom: 20px;
26321
}
16848 stevensc 26322
 
16825 efrain 26323
@media (max-width: 767px) {
26324
  .chat-wrapper .chat-content .chat-body {
26325
    max-height: calc(100vh - 315px);
26326
  }
26327
}
16848 stevensc 26328
 
16825 efrain 26329
@media (max-width: 991px) {
26330
  .chat-wrapper .chat-content .chat-body {
26331
    max-height: calc(100vh - 342px);
26332
  }
26333
}
16848 stevensc 26334
 
16825 efrain 26335
.chat-wrapper .chat-content .chat-body .messages {
26336
  padding: 0 10px;
26337
  list-style-type: none;
26338
}
16848 stevensc 26339
 
16825 efrain 26340
.chat-wrapper .chat-content .chat-body .messages .message-item {
26341
  display: flex;
26342
  max-width: 80%;
26343
  margin-bottom: 20px;
26344
}
16848 stevensc 26345
 
16825 efrain 26346
@media (max-width: 767px) {
26347
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26348
    max-width: 95%;
26349
  }
26350
}
16848 stevensc 26351
 
16825 efrain 26352
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26353
  position: relative;
26354
  padding: 7px 15px;
26355
  margin-bottom: 4px;
26356
  width: -webkit-fit-content;
26357
  width: -moz-fit-content;
26358
  width: fit-content;
26359
}
16848 stevensc 26360
 
16825 efrain 26361
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26362
  font-size: 12px;
26363
  color: #7987a1;
26364
}
16848 stevensc 26365
 
16825 efrain 26366
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26367
  order: 1;
26368
  margin-right: 15px;
26369
}
16848 stevensc 26370
 
16825 efrain 26371
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26372
  order: 2;
26373
}
16848 stevensc 26374
 
16825 efrain 26375
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26376
  background: rgba(101, 113, 255, 0.1);
26377
  border-radius: 0 5px 5px;
26378
}
16848 stevensc 26379
 
16825 efrain 26380
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26381
  content: "";
26382
  width: 0;
26383
  height: 0;
26384
  position: absolute;
26385
  left: -10px;
26386
  top: 0;
26387
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26388
  border-bottom: 5px solid transparent;
26389
  border-left: 5px solid transparent;
26390
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26391
}
16848 stevensc 26392
 
16825 efrain 26393
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26394
  margin-left: auto;
26395
}
16848 stevensc 26396
 
16825 efrain 26397
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26398
  order: 2;
26399
  margin-left: 15px;
26400
}
16848 stevensc 26401
 
16825 efrain 26402
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26403
  order: 1;
26404
  margin-left: auto;
26405
}
16848 stevensc 26406
 
16825 efrain 26407
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26408
  background: rgba(102, 209, 209, 0.1);
26409
  border-radius: 5px 0 5px 5px;
26410
  margin-left: auto;
26411
}
16848 stevensc 26412
 
16825 efrain 26413
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26414
  content: "";
26415
  width: 0;
26416
  height: 0;
26417
  position: absolute;
26418
  right: -10px;
26419
  top: 0;
26420
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26421
  border-bottom: 5px solid transparent;
26422
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26423
  border-right: 5px solid transparent;
26424
}
16848 stevensc 26425
 
16825 efrain 26426
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26427
  text-align: right;
26428
  display: block;
26429
}
16848 stevensc 26430
 
16825 efrain 26431
.chat-wrapper figure {
26432
  position: relative;
26433
}
16848 stevensc 26434
 
16825 efrain 26435
.chat-wrapper figure .status {
26436
  width: 11px;
26437
  height: 11px;
26438
  background: #7987a1;
26439
  position: absolute;
26440
  bottom: 0px;
26441
  right: -2px;
26442
  border-radius: 50%;
26443
  border: 2px solid #fff;
26444
}
16848 stevensc 26445
 
16825 efrain 26446
.chat-wrapper figure .status.online {
26447
  background: #05a34a;
26448
}
16848 stevensc 26449
 
16825 efrain 26450
.chat-wrapper figure .status.offline {
26451
  background: #7987a1;
26452
}
26453
 
26454
.auth-page .auth-side-wrapper {
26455
  width: 100%;
26456
  height: 100%;
26457
  background-image: url(https://via.placeholder.com/219x452);
26458
  background-size: cover;
26459
}
26460
 
26461
.email-aside-nav.collapse {
26462
  display: block;
26463
}
16848 stevensc 26464
 
16825 efrain 26465
@media (max-width: 991px) {
26466
  .email-aside-nav.collapse {
26467
    display: none;
26468
  }
26469
}
16848 stevensc 26470
 
16825 efrain 26471
@media (max-width: 991px) {
26472
  .email-aside-nav.collapse.show {
26473
    display: block;
26474
  }
26475
}
16848 stevensc 26476
 
16825 efrain 26477
.email-aside-nav .nav-item {
26478
  border-radius: 0.2rem;
26479
}
16848 stevensc 26480
 
16825 efrain 26481
.email-aside-nav .nav-item .nav-link {
26482
  color: #000;
26483
}
16848 stevensc 26484
 
16825 efrain 26485
.email-aside-nav .nav-item .nav-link svg {
26486
  color: #7987a1;
26487
}
16848 stevensc 26488
 
26489
.email-aside-nav .nav-item.active,
26490
.email-aside-nav .nav-item:hover {
16825 efrain 26491
  background: rgba(101, 113, 255, 0.1);
26492
}
16848 stevensc 26493
 
26494
.email-aside-nav .nav-item.active .nav-link,
26495
.email-aside-nav .nav-item.active .nav-link svg,
26496
.email-aside-nav .nav-item:hover .nav-link,
26497
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26498
  color: #6571ff;
26499
}
26500
 
26501
.email-list-item {
26502
  display: flex;
26503
  align-items: center;
26504
  border-bottom: 1px solid #e9ecef;
26505
  padding: 10px 20px;
26506
  cursor: pointer;
26507
}
16848 stevensc 26508
 
16825 efrain 26509
.email-list-item:hover {
26510
  background: rgba(101, 113, 255, 0.08);
26511
}
16848 stevensc 26512
 
16825 efrain 26513
.email-list-item:last-child {
26514
  margin-bottom: 5px;
26515
}
16848 stevensc 26516
 
16825 efrain 26517
.email-list-item .email-list-actions {
26518
  width: 40px;
26519
  vertical-align: top;
26520
  display: table-cell;
26521
}
16848 stevensc 26522
 
16825 efrain 26523
.email-list-item .email-list-actions .form-check {
26524
  margin-bottom: 0;
26525
}
16848 stevensc 26526
 
16825 efrain 26527
.email-list-item .email-list-actions .favorite {
26528
  display: block;
26529
  padding-left: 1px;
26530
  line-height: 15px;
26531
}
16848 stevensc 26532
 
16825 efrain 26533
.email-list-item .email-list-actions .favorite span svg {
26534
  width: 14px;
26535
  color: #7987a1;
26536
}
16848 stevensc 26537
 
16825 efrain 26538
.email-list-item .email-list-actions .favorite:hover span {
26539
  color: #8d8d8d;
26540
}
16848 stevensc 26541
 
16825 efrain 26542
.email-list-item .email-list-actions .favorite.active span svg {
26543
  color: #fbbc06;
26544
}
16848 stevensc 26545
 
16825 efrain 26546
.email-list-item .email-list-detail {
26547
  width: calc(100% - 40px);
26548
  display: flex;
26549
  justify-content: space-between;
26550
  align-items: center;
26551
  flex-grow: 1;
26552
}
16848 stevensc 26553
 
16825 efrain 26554
.email-list-item .email-list-detail .content {
26555
  overflow: hidden;
26556
}
16848 stevensc 26557
 
16825 efrain 26558
.email-list-item .email-list-detail .content .from {
26559
  display: block;
26560
  margin: 0 0 1px 0;
26561
  color: #000;
26562
}
16848 stevensc 26563
 
16825 efrain 26564
.email-list-item .email-list-detail .content .msg {
26565
  width: 97%;
26566
  color: #7987a1;
26567
  font-size: 0.8rem;
26568
  overflow: hidden;
26569
  text-overflow: ellipsis;
26570
  white-space: nowrap;
26571
}
16848 stevensc 26572
 
16825 efrain 26573
.email-list-item .email-list-detail .date {
26574
  color: #000;
26575
  white-space: nowrap;
26576
}
16848 stevensc 26577
 
16825 efrain 26578
.email-list-item .email-list-detail .date .icon svg {
26579
  width: 14px;
26580
  margin-right: 7px;
26581
  color: #3d405c;
26582
}
16848 stevensc 26583
 
16825 efrain 26584
.email-list-item.email-list-item--unread {
26585
  background-color: rgba(101, 113, 255, 0.09);
26586
}
16848 stevensc 26587
 
16825 efrain 26588
.email-list-item.email-list-item--unread .content .from {
26589
  font-weight: 500;
26590
}
16848 stevensc 26591
 
16825 efrain 26592
.email-list-item.email-list-item--unread .content .msg {
26593
  font-weight: 700;
26594
}
26595
 
26596
.ace_editor {
26597
  border-radius: 0.25rem;
26598
  margin: auto;
26599
  height: 300px;
26600
  width: 100%;
26601
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26602
}
16848 stevensc 26603
 
16825 efrain 26604
.ace_editor .ace_content {
26605
  font-size: 0.875rem;
26606
}
26607
 
26608
div.apexcharts-canvas .apexcharts-menu {
26609
  background: #fff !important;
26610
  color: #000;
26611
  border-color: #e9ecef;
26612
}
16848 stevensc 26613
 
16825 efrain 26614
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26615
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26616
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26617
div.apexcharts-canvas .apexcharts-reset-icon svg,
26618
div.apexcharts-canvas .apexcharts-pan-icon svg,
26619
div.apexcharts-canvas .apexcharts-selection-icon svg,
26620
div.apexcharts-canvas .apexcharts-menu-icon svg,
26621
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26622
  fill: #7987a1;
26623
}
16848 stevensc 26624
 
16825 efrain 26625
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26626
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26627
  display: flex;
26628
  align-items: center;
26629
}
16848 stevensc 26630
 
16825 efrain 26631
div.apexcharts-canvas .apexcharts-legend-marker {
26632
  margin-right: 3px;
26633
}
16848 stevensc 26634
 
16825 efrain 26635
div.apexcharts-canvas .apexcharts-tooltip {
26636
  background: rgba(255, 255, 255, 0.8);
26637
  color: #000;
26638
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26639
  border-radius: 0.25rem;
26640
  border: 1px solid #f2f4f9;
26641
}
16848 stevensc 26642
 
16825 efrain 26643
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26644
  border-color: #e9ecef;
26645
  background-color: #fff;
26646
}
16848 stevensc 26647
 
16825 efrain 26648
div.apexcharts-canvas .apexcharts-tooltip * {
26649
  font-family: "Roboto", Helvetica, sans-serif !important;
26650
}
16848 stevensc 26651
 
16825 efrain 26652
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26653
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26654
  padding: 0 10px;
26655
}
16848 stevensc 26656
 
16825 efrain 26657
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26658
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26659
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26660
  margin-left: 0;
26661
}
16848 stevensc 26662
 
16825 efrain 26663
div.apexcharts-canvas .apexcharts-tooltip-title {
26664
  margin-bottom: 0;
26665
}
16848 stevensc 26666
 
16825 efrain 26667
div.apexcharts-canvas .apexcharts-xaxistooltip,
26668
div.apexcharts-canvas .apexcharts-yaxistooltip {
26669
  background: #fff;
26670
  color: #000;
26671
  border-color: #f2f4f9;
26672
}
16848 stevensc 26673
 
16825 efrain 26674
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26675
  border-bottom-color: #f2f4f9;
26676
}
16848 stevensc 26677
 
16825 efrain 26678
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26679
  border-bottom-color: rgba(255, 255, 255, 0.8);
26680
}
16848 stevensc 26681
 
16825 efrain 26682
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26683
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26684
  border-left-color: #f2f4f9;
26685
}
16848 stevensc 26686
 
16825 efrain 26687
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26688
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26689
  border-left-color: rgba(255, 255, 255, 0.8);
26690
}
26691
 
26692
@media (max-width: 767px) {
26693
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26694
    text-align: left;
26695
  }
26696
}
16848 stevensc 26697
 
16825 efrain 26698
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26699
  margin-left: 10px;
26700
  margin-right: 10px;
26701
}
16848 stevensc 26702
 
16825 efrain 26703
@media (max-width: 767px) {
26704
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26705
    text-align: left;
26706
    margin-left: -19px;
26707
  }
26708
}
26709
 
26710
.dropify-wrapper {
26711
  border: 1px solid #e9ecef;
26712
  border-radius: 0.25rem;
26713
}
16848 stevensc 26714
 
16825 efrain 26715
.dropify-wrapper .dropify-message span.file-icon {
26716
  font-size: 0.875rem;
26717
  color: #7987a1;
26718
}
16848 stevensc 26719
 
16825 efrain 26720
.dropify-wrapper .dropify-message span.file-icon::before {
26721
  font-family: feather;
26722
  content: "\e8e3";
26723
  font-size: 24px;
26724
}
26725
 
26726
.dropzone {
26727
  overflow: auto;
26728
  border: 1px solid #e9ecef;
26729
  border-radius: 0.25rem;
26730
  max-height: 200px;
26731
  padding: 0;
26732
}
16848 stevensc 26733
 
16825 efrain 26734
@media (min-width: 1400px) {
26735
  .dropzone {
26736
    min-height: 200px;
26737
  }
26738
}
16848 stevensc 26739
 
16825 efrain 26740
.dropzone.dz-clickable .dz-message {
26741
  margin-top: 65px;
26742
}
16848 stevensc 26743
 
26744
.dropzone .dz-preview.dz-image-preview .dz-image,
26745
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26746
  border-radius: 0.25rem;
26747
}
26748
 
16848 stevensc 26749
.form-control.flatpickr-input,
26750
.flatpickr-input.typeahead.tt-input,
26751
.flatpickr-input.typeahead.tt-hint,
26752
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26753
  background-color: #fff;
26754
}
26755
 
26756
.flatpickr-day.selected,
26757
.flatpickr-day.startRange,
26758
.flatpickr-day.endRange,
26759
.flatpickr-day.selected.inRange,
26760
.flatpickr-day.startRange.inRange,
26761
.flatpickr-day.endRange.inRange,
26762
.flatpickr-day.selected:focus,
26763
.flatpickr-day.startRange:focus,
26764
.flatpickr-day.endRange:focus,
26765
.flatpickr-day.selected:hover,
26766
.flatpickr-day.startRange:hover,
26767
.flatpickr-day.endRange:hover,
26768
.flatpickr-day.selected.prevMonthDay,
26769
.flatpickr-day.startRange.prevMonthDay,
26770
.flatpickr-day.endRange.prevMonthDay,
26771
.flatpickr-day.selected.nextMonthDay,
26772
.flatpickr-day.startRange.nextMonthDay,
26773
.flatpickr-day.endRange.nextMonthDay {
26774
  background: #6571ff;
26775
  border-color: #6571ff;
26776
}
26777
 
26778
.flatpickr-months {
26779
  padding: 0 1rem;
26780
  padding-top: 0.5rem;
26781
}
26782
 
26783
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26784
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26785
  left: 11px;
26786
  right: auto !important;
26787
  top: 8px;
26788
}
26789
 
26790
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26791
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26792
  right: 11px;
26793
  left: auto !important;
26794
  top: 8px;
26795
}
26796
 
26797
.flatpickr-months .flatpickr-prev-month:hover svg,
26798
.flatpickr-months .flatpickr-next-month:hover svg {
26799
  fill: #6571ff;
26800
}
26801
 
26802
.flatpickr-months .flatpickr-month {
26803
  height: 42px;
26804
}
26805
 
26806
.flatpickr-current-month .flatpickr-monthDropdown-months {
26807
  font-size: 1rem;
26808
  border-radius: 0.25rem;
26809
  padding: 0.3rem 0.5rem;
26810
}
26811
 
26812
.flatpickr-weekdays {
26813
  padding: 0 10px;
26814
}
26815
 
26816
.dayContainer {
26817
  padding: 0 10px 10px;
26818
}
26819
 
26820
.fc {
26821
  --fc-button-active-bg-color: #6571ff;
26822
  --fc-button-active-border-color: #6571ff;
26823
}
16848 stevensc 26824
 
16825 efrain 26825
.fc .fc-button .fc-icon {
26826
  font-size: 1.2 em;
26827
}
16848 stevensc 26828
 
16825 efrain 26829
.fc .fc-button-primary:focus,
26830
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26831
.fc .fc-button-primary:not(:disabled):active:focus {
26832
  box-shadow: none;
26833
}
16848 stevensc 26834
 
16825 efrain 26835
.fc .fc-button-primary:disabled {
26836
  border-color: #6571ff;
26837
}
16848 stevensc 26838
 
16825 efrain 26839
@media (max-width: 767px) {
26840
  .fc .fc-toolbar {
26841
    flex-direction: column;
26842
  }
16848 stevensc 26843
 
16825 efrain 26844
  .fc .fc-toolbar .fc-toolbar-chunk {
26845
    margin-bottom: 12px;
26846
  }
26847
}
16848 stevensc 26848
 
16825 efrain 26849
.fc .fc-daygrid-day-number,
26850
.fc .fc-col-header-cell-cushion {
26851
  color: #000;
26852
}
16848 stevensc 26853
 
16825 efrain 26854
.fc .fc-daygrid-event {
26855
  padding: 4px;
26856
}
16848 stevensc 26857
 
16825 efrain 26858
.fc .fc-daygrid-day.fc-day-today {
26859
  background-color: rgba(101, 113, 255, 0.2);
26860
}
16848 stevensc 26861
 
16825 efrain 26862
.fc .fc-list-event:hover td {
26863
  background-color: rgba(101, 113, 255, 0.2);
26864
}
16848 stevensc 26865
 
16825 efrain 26866
.fc .fc-list-day-text,
26867
.fc .fc-list-day-side-text {
26868
  color: #000;
26869
}
26870
 
26871
.fc-theme-standard td,
26872
.fc-theme-standard th,
26873
.fc-theme-standard .fc-scrollgrid {
26874
  border-color: #e9ecef;
26875
}
26876
 
26877
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26878
.fc-timegrid-event.fc-event-mirror,
26879
.fc-timegrid-more-link {
26880
  box-shadow: none;
26881
}
26882
 
26883
.fc-theme-standard .fc-popover {
26884
  background-color: #fff;
26885
  border-color: #f2f4f9;
26886
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26887
}
16848 stevensc 26888
 
16825 efrain 26889
.fc-theme-standard .fc-popover .fc-popover-header {
26890
  background-color: #7987a1;
26891
}
26892
 
26893
.fc-theme-standard .fc-list-day-cushion {
26894
  background-color: #fff;
26895
}
26896
 
26897
.fc-theme-standard .fc-list {
26898
  border-color: #e9ecef;
26899
}
26900
 
26901
.fc-event {
26902
  margin-bottom: 10px;
26903
  padding: 8px;
26904
  border-radius: 2px;
26905
  background: rgba(101, 113, 255, 0.2);
26906
  border: 0;
26907
  border-left: 3px solid #6571ff;
26908
  color: #000;
26909
  font-weight: 500;
26910
}
26911
 
26912
.fc-h-event .fc-event-main {
26913
  color: #000;
26914
}
26915
 
26916
.flot-chart-wrapper .flot-chart {
26917
  width: 100%;
26918
  position: relative;
26919
  max-width: none;
26920
  height: 400px;
26921
}
16848 stevensc 26922
 
16825 efrain 26923
@media (max-width: 767px) {
26924
  .flot-chart-wrapper {
26925
    height: 200px;
26926
    min-height: 200px;
26927
  }
16848 stevensc 26928
 
16825 efrain 26929
  .flot-chart-wrapper .flot-chart {
26930
    height: 100%;
26931
  }
26932
}
26933
 
16848 stevensc 26934
.flot-text .flot-x-axis>div,
16825 efrain 26935
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26936
.flot-text .flot-y-axis>div,
16825 efrain 26937
.flot-text .flot-y-axis .flot-tick-label {
26938
  color: #000;
26939
}
26940
 
26941
.peity-custom svg {
26942
  margin-right: 10px;
26943
}
26944
 
26945
.ps__thumb-x {
26946
  background-color: #d9d9d9;
26947
  height: 4px;
26948
}
26949
 
26950
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26951
.ps__rail-x:focus>.ps__thumb-x,
26952
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26953
  background-color: #b3b3b3;
26954
  height: 6px;
26955
}
26956
 
26957
.ps__rail-x {
26958
  height: 10px;
26959
}
26960
 
26961
.ps__thumb-y {
26962
  background-color: #d9d9d9;
26963
  width: 4px;
26964
  /*rtl:raw:
26965
   left: 2px !important;
26966
  right: auto !important;
26967
   */
26968
}
26969
 
26970
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26971
.ps__rail-y:focus>.ps__thumb-y,
26972
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26973
  background-color: #b3b3b3;
26974
  width: 6px;
26975
}
26976
 
26977
.ps__rail-y {
26978
  width: 10px;
26979
  /*rtl:raw:
26980
   left: 0 !important;
26981
  right: auto !important;
26982
   */
26983
}
26984
 
26985
.ps .ps__rail-x.ps--clicking,
26986
.ps .ps__rail-x:focus,
26987
.ps .ps__rail-x:hover,
26988
.ps .ps__rail-y.ps--clicking,
26989
.ps .ps__rail-y:focus,
26990
.ps .ps__rail-y:hover {
26991
  background-color: #e9ecef;
26992
}
26993
 
26994
.swal2-popup {
26995
  font-size: 0.875rem;
26996
}
16848 stevensc 26997
 
16825 efrain 26998
.swal2-popup .swal2-title {
26999
  font-size: 25px;
27000
  line-height: 1;
27001
  font-weight: 500;
27002
  color: #000;
27003
  margin-bottom: 0;
27004
}
16848 stevensc 27005
 
16825 efrain 27006
.swal2-popup .swal2-html-container {
27007
  font-size: 0.875rem;
27008
  color: #7987a1;
27009
  font-weight: initial;
27010
  margin-top: 11px;
27011
  text-decoration: none;
27012
}
16848 stevensc 27013
 
16825 efrain 27014
.swal2-popup .swal2-actions button svg {
27015
  width: 16px;
27016
  height: 16px;
27017
}
16848 stevensc 27018
 
16825 efrain 27019
.swal2-popup .swal2-close {
27020
  font-size: 22px;
27021
}
16848 stevensc 27022
 
16825 efrain 27023
.swal2-popup .swal2-close:focus {
27024
  box-shadow: none;
27025
}
16848 stevensc 27026
 
16825 efrain 27027
.swal2-popup .swal2-timer-progress-bar {
27028
  background: #7987a1;
27029
}
27030
 
27031
.select2-container--default .select2-selection--single,
27032
.select2-container--default .select2-selection--multiple {
27033
  border: 1px solid #e9ecef;
27034
  border-radius: 0.25rem;
27035
}
16848 stevensc 27036
 
27037
.select2-container--focus.select2-container--default .select2-selection--single,
27038
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27039
  border: 1px solid #cbd1db;
27040
}
27041
 
27042
.select2-dropdown {
27043
  border: 1px solid #cbd1db;
27044
  border-radius: 0.25rem;
27045
}
27046
 
27047
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27048
  background-color: #6571ff;
27049
}
27050
 
27051
.select2-container .select2-selection--single,
27052
.select2-container .select2-selection--multiple {
27053
  height: auto;
27054
}
27055
 
27056
.select2-container--default .select2-selection--single .select2-selection__rendered {
27057
  line-height: 1.5;
27058
  padding: 0.469rem 0.8rem;
27059
}
16848 stevensc 27060
 
16825 efrain 27061
.select2-container--default .select2-selection--single .select2-selection__arrow {
27062
  height: 100%;
27063
}
16848 stevensc 27064
 
16825 efrain 27065
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27066
  left: 0;
27067
}
27068
 
27069
.select2-container--default .select2-selection--multiple {
27070
  min-height: 38px;
27071
}
16848 stevensc 27072
 
16825 efrain 27073
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27074
  padding: 0 6px;
27075
}
16848 stevensc 27076
 
16825 efrain 27077
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27078
  background-color: #6571ff;
27079
  color: #fff;
27080
  border-color: #6571ff;
27081
  padding: 1px 8px;
27082
  border-radius: 0.15rem;
27083
  margin-top: 5px;
27084
}
16848 stevensc 27085
 
16825 efrain 27086
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27087
  color: #fff;
27088
  opacity: 0.5;
27089
}
27090
 
27091
.select2-container .select2-search--inline {
27092
  margin-top: 3px;
27093
}
27094
 
27095
.EasyMDEContainer .CodeMirror {
27096
  background: #fff;
27097
  border: 1px solid #e9ecef;
27098
  color: #000;
27099
  border-bottom-left-radius: 0;
27100
  border-bottom-right-radius: 0;
27101
}
27102
 
27103
.editor-toolbar {
27104
  border: 1px solid #e9ecef;
27105
  border-bottom: 0;
27106
  border-radius: 0.25rem 0.25rem 0 0;
27107
}
16848 stevensc 27108
 
27109
.editor-toolbar,
27110
.editor-toolbar:hover {
16825 efrain 27111
  opacity: 1;
27112
}
16848 stevensc 27113
 
16825 efrain 27114
.editor-toolbar button {
27115
  color: rgba(0, 0, 0, 0.7) !important;
27116
}
16848 stevensc 27117
 
16825 efrain 27118
.editor-toolbar button:hover {
27119
  background: #e9ecef;
27120
  border: none;
27121
}
16848 stevensc 27122
 
16825 efrain 27123
.editor-toolbar i.separator {
27124
  border-left: 1px solid #e9ecef;
27125
  border-right: 1px solid #e9ecef;
27126
}
27127
 
27128
.CodeMirror-fullscreen,
27129
.editor-toolbar.fullscreen,
27130
.editor-preview-side {
27131
  z-index: 999;
27132
}
27133
 
27134
.editor-preview-side {
27135
  border-color: #e9ecef;
27136
}
27137
 
16848 stevensc 27138
.editor-toolbar button.active,
27139
.editor-toolbar button:hover {
16825 efrain 27140
  background: #e9ecef;
27141
  border-color: transparent;
27142
}
27143
 
27144
.editor-statusbar {
27145
  padding: 0 10px;
27146
  border: 1px solid #e9ecef;
27147
  border-top-color: transparent;
27148
  border-bottom-left-radius: 0.25rem;
27149
  border-bottom-right-radius: 0.25rem;
27150
}
27151
 
27152
div.tagsinput {
27153
  padding: 6px 6px 1px;
27154
  border-color: #e9ecef;
27155
  border-radius: 0.25rem;
27156
}
16848 stevensc 27157
 
16825 efrain 27158
div.tagsinput span.tag {
27159
  background: #6571ff;
27160
  color: #fff;
27161
  border: 0;
27162
  padding: 3px 7px;
27163
  font-family: inherit;
27164
  border-radius: 0.15rem;
27165
  margin-bottom: 4px;
27166
  float: left;
27167
  /*rtl:raw:
27168
  margin-left: 0;
27169
  margin-right: 5px;
27170
  */
27171
}
16848 stevensc 27172
 
16825 efrain 27173
div.tagsinput span.tag a {
27174
  font-size: 13px;
27175
  font-weight: 500;
27176
  color: #fff;
27177
  opacity: 0.5;
27178
}
16848 stevensc 27179
 
16825 efrain 27180
div.tagsinput #tags_addTag {
27181
  float: left;
27182
  /*rtl:raw:
27183
  margin-right: 5px;
27184
  */
27185
}
16848 stevensc 27186
 
16825 efrain 27187
div.tagsinput input {
27188
  margin: 0;
27189
  padding: 1px;
27190
  border-radius: 0.25rem;
27191
}
27192
 
27193
.tox.tox-tinymce {
27194
  border: 1px solid #e9ecef;
27195
  border-radius: 0.25rem;
27196
}
16848 stevensc 27197
 
16825 efrain 27198
.tox.tox-tinymce .tox-menubar,
27199
.tox.tox-tinymce .tox-toolbar-overlord,
27200
.tox.tox-tinymce .tox-toolbar,
27201
.tox.tox-tinymce .tox-toolbar__overflow,
27202
.tox.tox-tinymce .tox-toolbar__primary {
27203
  background-color: #fff;
27204
  background-image: none;
27205
  border-bottom: 1px solid #e9ecef;
27206
}
16848 stevensc 27207
 
16825 efrain 27208
.tox.tox-tinymce .tox-toolbar-overlord {
27209
  border-bottom: none;
27210
}
16848 stevensc 27211
 
16825 efrain 27212
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27213
  padding: 0;
27214
  box-shadow: none;
27215
}
16848 stevensc 27216
 
16825 efrain 27217
.tox.tox-tinymce .tox-edit-area__iframe {
27218
  background-color: #fff;
27219
}
16848 stevensc 27220
 
16825 efrain 27221
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27222
  border-right-color: #e9ecef;
27223
  border-left-color: #e9ecef;
27224
}
16848 stevensc 27225
 
16825 efrain 27226
.tox.tox-tinymce .tox-statusbar {
27227
  background-color: #fff;
27228
  border-color: #e9ecef;
27229
  color: #7987a1;
27230
}
16848 stevensc 27231
 
16825 efrain 27232
.tox.tox-tinymce .tox-statusbar a,
27233
.tox.tox-tinymce .tox-statusbar__path-item,
27234
.tox.tox-tinymce .tox-statusbar__wordcount {
27235
  color: #7987a1;
27236
}
16848 stevensc 27237
 
16825 efrain 27238
.tox.tox-tinymce .tox-mbtn {
27239
  color: #000;
27240
}
16848 stevensc 27241
 
16825 efrain 27242
.tox.tox-tinymce .tox-tbtn {
27243
  color: rgba(0, 0, 0, 0.7);
27244
}
16848 stevensc 27245
 
16825 efrain 27246
.tox.tox-tinymce .tox-tbtn:hover {
27247
  background: #e9ecef;
27248
  color: #000;
27249
}
16848 stevensc 27250
 
16825 efrain 27251
.tox.tox-tinymce .tox-tbtn:hover svg {
27252
  fill: #000;
27253
}
16848 stevensc 27254
 
16825 efrain 27255
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27256
  color: #000;
27257
}
16848 stevensc 27258
 
16825 efrain 27259
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27260
  background: #e9ecef;
27261
  color: #000;
27262
}
16848 stevensc 27263
 
16825 efrain 27264
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27265
.tox.tox-tinymce .tox-mbtn--active {
27266
  background: #e9ecef;
27267
  color: #000;
27268
}
16848 stevensc 27269
 
16825 efrain 27270
.tox.tox-tinymce .tox-tbtn svg {
27271
  fill: rgba(0, 0, 0, 0.7);
27272
}
16848 stevensc 27273
 
16825 efrain 27274
.tox.tox-tinymce .tox-tbtn--disabled svg,
27275
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27276
.tox.tox-tinymce .tox-tbtn:disabled svg,
27277
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27278
  fill: #e9ecef;
27279
}
16848 stevensc 27280
 
16825 efrain 27281
.tox.tox-tinymce .tox-split-button:hover {
27282
  box-shadow: 0 0 0 1px #e9ecef inset;
27283
}
16848 stevensc 27284
 
16825 efrain 27285
.tox.tox-tinymce .tox-split-button:focus {
27286
  background: #e9ecef;
27287
}
16848 stevensc 27288
 
16825 efrain 27289
.tox.tox-tinymce .tox-tbtn--enabled,
27290
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27291
.tox.tox-tinymce .tox-tbtn:focus {
27292
  background: #e9ecef;
27293
}
27294
 
27295
div.tox .tox-menu {
27296
  background-color: #fff;
27297
  border-color: #f2f4f9;
27298
}
16848 stevensc 27299
 
16825 efrain 27300
div.tox .tox-collection__item {
27301
  color: #000;
27302
}
16848 stevensc 27303
 
16825 efrain 27304
div.tox .tox-collection--list .tox-collection__item--enabled {
27305
  background-color: #6571ff;
27306
  color: #fff;
27307
}
16848 stevensc 27308
 
16825 efrain 27309
div.tox .tox-collection--list .tox-collection__group {
27310
  border-color: #e9ecef;
27311
}
16848 stevensc 27312
 
16825 efrain 27313
div.tox .tox-collection--toolbar .tox-collection__item--active {
27314
  background-color: #e9ecef;
27315
}
16848 stevensc 27316
 
16825 efrain 27317
div.tox .tox-collection--list .tox-collection__item--active {
27318
  background-color: #e9ecef;
27319
}
16848 stevensc 27320
 
16825 efrain 27321
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27322
  color: #000;
27323
}
16848 stevensc 27324
 
16825 efrain 27325
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27326
  color: #000;
27327
}
16848 stevensc 27328
 
16825 efrain 27329
div.tox .tox-dialog-wrap__backdrop {
27330
  background-color: rgba(0, 0, 0, 0.75);
27331
}
16848 stevensc 27332
 
16825 efrain 27333
div.tox .tox-dialog,
27334
div.tox .tox-dialog__header,
27335
div.tox .tox-dialog__footer {
27336
  background-color: #fff;
27337
  border-color: #e9ecef;
27338
  color: #000;
27339
}
16848 stevensc 27340
 
16825 efrain 27341
div.tox .tox-button--secondary:hover:not(:disabled) {
27342
  background-color: #7987a1;
27343
  border-color: #7987a1;
27344
  color: #fff;
27345
}
16848 stevensc 27346
 
16825 efrain 27347
div.tox .tox-button--naked:hover:not(:disabled) {
27348
  background-color: transparent;
27349
  border-color: transparent;
27350
}
16848 stevensc 27351
 
16825 efrain 27352
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27353
  color: #333333;
27354
}
16848 stevensc 27355
 
16825 efrain 27356
div.tox .tox-listboxfield .tox-listbox--select,
27357
div.tox .tox-textarea,
27358
div.tox .tox-textfield,
27359
div.tox .tox-toolbar-textfield {
27360
  background-color: #fff;
27361
  border-color: #e9ecef;
27362
  color: #000;
27363
}
16848 stevensc 27364
 
16825 efrain 27365
div.tox .tox-listboxfield .tox-listbox--select:focus,
27366
div.tox .tox-textarea:focus,
27367
div.tox .tox-textfield:focus {
27368
  background-color: #fff;
27369
  border-color: #cbd1db;
27370
}
16848 stevensc 27371
 
16825 efrain 27372
div.tox .tox-dialog__table tbody tr {
27373
  border-color: #e9ecef;
27374
}
16848 stevensc 27375
 
16825 efrain 27376
div.tox .tox-dialog__body {
27377
  color: #000;
27378
}
27379
 
27380
.typeahead.tt-input,
27381
.typeahead.tt-hint {
27382
  background-color: #fff !important;
27383
  /*rtl:raw:
27384
  direction: rtl;
27385
  */
27386
}
27387
 
27388
.tt-menu .tt-suggestion {
27389
  cursor: pointer;
27390
}
27391
 
16848 stevensc 27392
.tabcontrol ul,
27393
.wizard ul {
16825 efrain 27394
  display: flex;
27395
}
16848 stevensc 27396
 
16825 efrain 27397
@media (max-width: 676px) {
16848 stevensc 27398
 
27399
  .tabcontrol ul,
27400
  .wizard ul {
16825 efrain 27401
    flex-wrap: wrap;
27402
  }
27403
}
27404
 
16848 stevensc 27405
.wizard>.steps>ul>li {
16825 efrain 27406
  width: auto;
27407
  display: flex;
27408
  flex-grow: 1;
27409
}
27410
 
16848 stevensc 27411
.wizard>.steps .disabled a,
27412
.wizard>.steps .disabled a:active,
27413
.wizard>.steps .disabled a:hover {
16825 efrain 27414
  background-color: #e9ecef;
27415
  color: #000;
27416
  border: 1px solid transparent;
27417
}
27418
 
16848 stevensc 27419
.wizard>.steps .current a,
27420
.wizard>.steps .current a:active,
27421
.wizard>.steps .current a:hover {
16825 efrain 27422
  background-color: #6571ff;
27423
  border: 1px solid transparent;
27424
}
27425
 
16848 stevensc 27426
.wizard>.steps a,
27427
.wizard>.steps a:active,
27428
.wizard>.steps a:hover {
16825 efrain 27429
  padding: 0.469rem 0.8rem;
27430
  border-radius: 0.25rem;
27431
  width: 100%;
27432
}
27433
 
16848 stevensc 27434
.wizard>.steps .done a,
27435
.wizard>.steps .done a:active,
27436
.wizard>.steps .done a:hover {
16825 efrain 27437
  background-color: rgba(101, 113, 255, 0.2);
27438
  color: #6571ff;
27439
  border: 1px solid #6571ff;
27440
}
27441
 
16848 stevensc 27442
.wizard>.steps ul li a,
27443
.wizard>.steps ul li a:active,
27444
.wizard>.steps ul li a:hover {
16825 efrain 27445
  margin: 0 0.5em 0.5em 0;
27446
}
16848 stevensc 27447
 
27448
.wizard>.steps ul li:last-child a,
27449
.wizard>.steps ul li:last-child a:active,
27450
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27451
  margin: 0 0 0.5em 0;
27452
}
27453
 
16848 stevensc 27454
.wizard>.steps .number {
16825 efrain 27455
  font-size: inherit;
27456
}
27457
 
16848 stevensc 27458
.wizard>.content {
16825 efrain 27459
  background: #fff;
27460
  border: 1px solid #e9ecef;
27461
  min-height: 23em;
27462
  overflow: auto;
27463
  margin: 0.5em 0;
27464
}
27465
 
27466
@media (max-width: 767px) {
16848 stevensc 27467
  .wizard>.content>.body {
16825 efrain 27468
    width: 90%;
27469
    height: 90%;
27470
    padding: 5%;
27471
  }
27472
}
27473
 
16848 stevensc 27474
.wizard>.actions .disabled a,
27475
.wizard>.actions .disabled a:active,
27476
.wizard>.actions .disabled a:hover {
16825 efrain 27477
  background: #e9ecef;
27478
  border-color: #e9ecef;
27479
  cursor: not-allowed;
27480
  color: #aeb7c5;
27481
}
27482
 
16848 stevensc 27483
.wizard>.actions .disabled a:focus {
16825 efrain 27484
  box-shadow: none;
27485
  color: #aeb7c5;
27486
}
27487
 
16848 stevensc 27488
.wizard>.actions>ul li {
16825 efrain 27489
  margin-right: 0;
27490
  margin-left: 0.7em;
27491
}
27492
 
16848 stevensc 27493
.wizard.vertical>.steps ul {
16825 efrain 27494
  flex-direction: column;
27495
}
27496
 
16848 stevensc 27497
.wizard.vertical>.content {
16825 efrain 27498
  margin: 0 0 0.5em 2%;
27499
  width: 68%;
27500
}
27501
 
16848 stevensc 27502
.wizard.vertical>.steps a,
27503
.wizard.vertical>.steps a:active,
27504
.wizard.vertical>.steps a:hover {
16825 efrain 27505
  margin: 0 0 0.5em 0;
27506
}
27507
 
16848 stevensc 27508
.wizard.vertical>.actions {
16825 efrain 27509
  margin: 0;
27510
  width: 100%;
27511
}
27512
 
16848 stevensc 27513
.wizard.vertical>.actions>ul>li {
16825 efrain 27514
  margin: 0 0 0 0.7em;
27515
}
16848 stevensc 27516
 
27517
.pac-container {
27518
  z-index: 1200;
27519
}
27520
 
16857 stevensc 27521
.feed-section {
27522
  display: flex;
27523
  flex-direction: column;
27524
  gap: .5rem;
16858 stevensc 27525
  width: 50%;
27526
  margin: 0 auto;
16857 stevensc 27527
  box-sizing: border-box;
16865 stevensc 27528
  align-items: center;
16857 stevensc 27529
}
27530
 
16867 stevensc 27531
.theme-container {
16849 stevensc 27532
  background-color: var(--bg-color);
27533
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27534
  height: fit-content;
27535
  width: -moz-available;
27536
  width: -webkit-fill-available;
27537
  width: fill-available;
27538
  overflow: hidden;
27539
  position: relative;
16853 stevensc 27540
  border-radius: var(--border-radius);
16849 stevensc 27541
}
27542
 
16867 stevensc 27543
.theme-container span {
16849 stevensc 27544
  font-size: 0.9rem;
16853 stevensc 27545
  line-height: 1;
27546
  color: var(--subtitle-color);
27547
  font-weight: 600;
16849 stevensc 27548
}
27549
 
16867 stevensc 27550
.theme-container p {
16849 stevensc 27551
  color: var(--font-color);
27552
  font-size: 14px;
27553
  text-align: justify;
27554
  margin-bottom: 0.5rem;
27555
}
27556
 
16867 stevensc 27557
.theme-container h2 {
16849 stevensc 27558
  font-size: 1rem;
16853 stevensc 27559
  font-weight: 600;
16849 stevensc 27560
}
27561
 
16867 stevensc 27562
.theme-container input,
27563
.theme-container input:focus {
16859 stevensc 27564
  align-items: center;
27565
  color: gray;
27566
  display: flex;
27567
  min-height: 1.5rem;
27568
  gap: 5px;
16931 stevensc 27569
  flex: 1 1 50%;
16859 stevensc 27570
  border: 1px solid lightgray;
27571
  background-color: rgb(255, 255, 255);
27572
  border-radius: 30px;
27573
  padding: 5px 5px 5px 1rem;
27574
}
27575
 
16849 stevensc 27576
.feed-header {
27577
  display: flex;
27578
  gap: 0.5rem;
27579
  padding: 10px 1rem;
27580
  align-items: center;
27581
  position: relative;
27582
}
27583
 
16858 stevensc 27584
.feed-header a>img {
27585
  width: 50px;
27586
  height: 50px;
27587
  border-radius: 50%;
27588
  object-fit: cover;
27589
}
27590
 
16851 stevensc 27591
.feed-info {
27592
  display: inline-flex;
16852 stevensc 27593
  flex-direction: column;
16851 stevensc 27594
  width: fit-content;
27595
}
27596
 
16852 stevensc 27597
.feed-body {
16849 stevensc 27598
  padding: 10px 1rem;
27599
  display: flex;
27600
  flex-direction: column;
27601
}
27602
 
16856 stevensc 27603
.feed-body>img,
27604
.feed-body>video {
27605
  width: 100%;
27606
  object-fit: cover;
27607
  max-height: 60vh;
27608
}
27609
 
16849 stevensc 27610
.feed-actions {
27611
  display: flex;
16851 stevensc 27612
  justify-content: flex-end;
16849 stevensc 27613
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27614
  gap: .5rem;
16849 stevensc 27615
  padding: 5px;
27616
}
27617
 
27618
.feed-actions>button {
27619
  align-items: center;
27620
  border-radius: var(--border-radius);
27621
  cursor: pointer;
27622
  display: inline-flex;
16851 stevensc 27623
  flex-direction: row;
27624
  gap: 0.5rem;
27625
  font-size: 1rem;
16849 stevensc 27626
  padding: 5px;
27627
  position: relative;
27628
}
27629
 
27630
.feed-actions>button:hover {
27631
  background-color: whitesmoke;
27632
}
27633
 
16851 stevensc 27634
.feed-actions>span,
27635
.feed-actions>svg {
27636
  color: var(--subtitle-color);
27637
  font-weight: 600;
27638
  font-size: .9rem;
27639
}
27640
 
16860 stevensc 27641
.comment-form {
27642
  display: flex;
27643
  align-items: center;
27644
  gap: 0.5rem;
27645
  width: 100%;
27646
}
27647
 
27648
.comment-list {
27649
  display: flex;
27650
  flex-direction: column;
27651
  gap: 0.5rem;
16863 stevensc 27652
  margin: 0;
16861 stevensc 27653
  list-style: none;
16863 stevensc 27654
  padding: 0.5rem;
16860 stevensc 27655
  max-height: 300px;
27656
  overflow-y: auto;
27657
  width: 100%;
27658
}
27659
 
27660
.comment-container {
27661
  background-color: var(--chat-send);
27662
  border-radius: var(--border-radius);
27663
  display: flex;
27664
  flex-direction: column;
27665
  flex-grow: 1;
27666
  gap: 0.5rem;
27667
  max-width: 100%;
27668
  overflow: hidden;
27669
  padding: 0.5rem;
27670
  position: relative;
27671
}
27672
 
16849 stevensc 27673
@media (max-width: 768px) {
16857 stevensc 27674
  .feed-section {
16858 stevensc 27675
    width: 100%;
16857 stevensc 27676
  }
27677
 
16867 stevensc 27678
  .theme-container {
16853 stevensc 27679
    border-radius: 0;
16849 stevensc 27680
  }
27681
 
16851 stevensc 27682
  .feed-actions>button {
27683
    font-size: 0.9rem;
27684
    flex-direction: column;
27685
    gap: 0;
16849 stevensc 27686
  }
27687
}
27688
 
16866 stevensc 27689
/* ============= user_profile ============= */
27690
.user_profile {
16873 stevensc 27691
  display: flex;
27692
  flex-direction: column;
16874 stevensc 27693
  gap: 0.5rem;
16878 stevensc 27694
  text-align: center;
16866 stevensc 27695
}
27696
 
16878 stevensc 27697
.social-links {
27698
  display: flex;
27699
  flex-direction: column;
16880 stevensc 27700
}
27701
 
27702
.social-links a {
27703
  display: inline-block;
16878 stevensc 27704
  white-space: nowrap;
27705
  text-overflow: ellipsis;
16880 stevensc 27706
  overflow: hidden;
16881 stevensc 27707
  text-align: start;
16878 stevensc 27708
  width: 100%;
27709
}
27710
 
16866 stevensc 27711
.user-pro-img {
16871 stevensc 27712
  height: 100px;
27713
  width: 100px;
16866 stevensc 27714
  position: relative;
16873 stevensc 27715
  border: 2px solid var(--button-bg);
27716
  margin: -50px auto 0;
16883 stevensc 27717
  border-radius: 50%;
16873 stevensc 27718
  background-color: #f5f5f5;
16866 stevensc 27719
}
27720
 
16871 stevensc 27721
.user-pro-img img {
27722
  width: 100%;
27723
  height: 100%;
27724
  object-fit: cover;
16882 stevensc 27725
  border-radius: 50%;
16871 stevensc 27726
}
27727
 
16882 stevensc 27728
.add-dp {
16866 stevensc 27729
  position: absolute;
16882 stevensc 27730
  top: -6px;
16866 stevensc 27731
  left: 60%;
16883 stevensc 27732
  width: 40px;
27733
  height: 40px;
16882 stevensc 27734
  display: grid;
16883 stevensc 27735
  cursor: pointer;
16882 stevensc 27736
  place-items: center;
27737
  border-radius: 50%;
16883 stevensc 27738
  background-color: var(--button-bg);
16882 stevensc 27739
  transition: all .2s ease-in-out;
16866 stevensc 27740
}
27741
 
27742
.add-dp i {
16882 stevensc 27743
  color: #fff;
16866 stevensc 27744
  font-size: 14px;
27745
}
27746
 
16882 stevensc 27747
.add-dp:hover {
16883 stevensc 27748
  opacity: 0.90;
16882 stevensc 27749
  transform: scale(0.9);
16866 stevensc 27750
}
27751
 
27752
#go-back {
27753
  font-size: 2rem;
27754
}
27755
 
27756
.user_pro_status {
27757
  width: 100%;
27758
  border-bottom: 1px solid #e5e5e5;
27759
}
27760
 
16867 stevensc 27761
.add-pic-box {
16869 stevensc 27762
  width: 50px;
27763
  height: 50px;
27764
  background-color: var(--button-bg);
27765
  border-radius: 50%;
27766
  color: var(--button-text-color) !important;
16867 stevensc 27767
  position: absolute;
16871 stevensc 27768
  top: 1rem;
27769
  right: 1rem;
16869 stevensc 27770
  display: grid;
27771
  place-items: center;
16871 stevensc 27772
  cursor: pointer;
27773
  transition: all .2s ease-in-out;
16867 stevensc 27774
}
27775
 
16871 stevensc 27776
.add-pic-box:hover {
27777
  opacity: 0.80;
27778
}
27779
 
16869 stevensc 27780
.add-pic-box svg,
27781
.add-pic-box i {
16867 stevensc 27782
  font-weight: 600;
16869 stevensc 27783
  color: var(--button-text-color) !important;
16867 stevensc 27784
}
27785
 
16869 stevensc 27786
.cover-sec {
27787
  position: relative;
16871 stevensc 27788
  background: #0008;
27789
  max-height: 400px;
16868 stevensc 27790
}
27791
 
16871 stevensc 27792
.cover-sec img {
27793
  width: 100%;
27794
  height: 100%;
27795
  object-fit: cover;
27796
}
27797
 
16866 stevensc 27798
/* ============= end user_profile ============= */
27799
 
16874 stevensc 27800
/* ============= buttons ============= */
27801
.btn {
27802
  font-size: 0.95rem;
27803
  height: fit-content;
27804
  line-height: 1;
16886 stevensc 27805
  display: inline-flex;
16915 stevensc 27806
  align-items: center;
16886 stevensc 27807
  gap: 5px;
16890 stevensc 27808
  padding: 5px 10px !important;
16874 stevensc 27809
}
27810
 
16886 stevensc 27811
.btn i,
27812
.btn svg {
27813
  font-size: 0.95rem;
27814
}
27815
 
16874 stevensc 27816
.btn-primary {
27817
  background-color: var(--button-bg);
27818
  border-radius: var(--border-radius);
27819
  color: var(--button-text-color) !important;
27820
  border: none !important;
27821
}
27822
 
27823
.btn-primary:hover {
27824
  background-color: var(--button-bg-hover);
27825
}
27826
 
16886 stevensc 27827
.btn-secondary,
16950 stevensc 27828
.btn-edit,
27829
.btn-info {
16886 stevensc 27830
  background: var(--button-bg-secondary) !important;
27831
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27832
  border-radius: var(--border-radius);
27833
  color: var(--button-text-color-secondary) !important;
27834
}
27835
 
16886 stevensc 27836
.btn-secondary:hover,
16950 stevensc 27837
.btn-edit:hover,
27838
.btn-info:hover {
16886 stevensc 27839
  background-color: var(--button-bg-secondary-hover) !important;
27840
  border-color: var(--border-trasnparent) !important;
16874 stevensc 27841
}
27842
 
16886 stevensc 27843
.btn-tertiary,
27844
.btn-danger {
27845
  background-color: var(--button-bg-tertiary) !important;
27846
  border-radius: var(--border-radius) !important;
27847
  border-color: #f4f4f4 !important;
16874 stevensc 27848
  color: var(--button-text-color-tertiary) !important;
27849
}
27850
 
16886 stevensc 27851
.btn-tertiary:hover,
27852
.btn-danger:hover {
27853
  background: #d4d4d4 !important;
27854
  border: 1px solid var(--border-primary) !important;
16874 stevensc 27855
  color: var(--border-primary) !important;
27856
}
27857
 
27858
.btn-secondary:disabled,
27859
.btn-primary:disabled,
27860
.btn-tertiary:disabled {
27861
  cursor: no-drop;
27862
}
27863
 
27864
/* ============= end buttons ============= */
27865
 
16875 stevensc 27866
/* ============= profile extended ============= */
16876 stevensc 27867
.main-ws-sec {
27868
  display: flex;
27869
  flex-direction: column;
27870
  gap: 0.5rem;
27871
  width: 100%;
27872
}
27873
 
16877 stevensc 27874
.user-profile-ov {
16875 stevensc 27875
  width: 100%;
27876
  background-color: var(--bg-color);
16878 stevensc 27877
  padding: 10px;
16875 stevensc 27878
  border: 1px solid var(--border-primary);
16879 stevensc 27879
  border-radius: var(--border-radius);
16875 stevensc 27880
}
27881
 
16877 stevensc 27882
.user-profile-ov h3 {
16875 stevensc 27883
  color: var(--title-color);
27884
  font-weight: 600;
27885
}
27886
 
16877 stevensc 27887
.user-profile-ov i,
27888
user-profile-ov svg {
16875 stevensc 27889
  color: var(--icons-color);
27890
  font-size: 13px;
27891
}
27892
 
16877 stevensc 27893
.user-profile-ov strong {
16875 stevensc 27894
  font-weight: bold;
27895
}
27896
 
27897
/* ============= end profile extended ============= */
27898
 
16921 stevensc 27899
/* ============= inmail ============= */
27900
.message-content {
27901
  background-color: var(--chat-send);
27902
  display: flex;
27903
  flex-direction: column;
16924 stevensc 27904
  gap: .5rem;
16921 stevensc 27905
  padding: .5rem;
16922 stevensc 27906
  border-radius: var(--border-radius);
16921 stevensc 27907
}
27908
 
27909
.message-content span {
16922 stevensc 27910
  font-size: 0.7rem;
16921 stevensc 27911
  font-weight: normal;
27912
  color: var(--font-color);
27913
}
27914
 
27915
/* ============= end inmail ============= */
27916
 
16848 stevensc 27917
/*# sourceMappingURL=../maps/demo1/style.css.map */