Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
16825 efrain 1
@charset "UTF-8";
16848 stevensc 2
 
16825 efrain 3
/*
4
* NobleUI - HTML Bootstrap 5 Admin Dashboard Template v2.0.3 (https://nobleui.com/)
5
* Copyright © 2022 NobleUI
6
* Licensed under ThemeForest License
7
*/
8
:root {
9
  --bs-blue: #0d6efd;
10
  --bs-indigo: #6610f2;
11
  --bs-purple: #6f42c1;
12
  --bs-pink: #d63384;
13
  --bs-red: #dc3545;
14
  --bs-orange: #fd7e14;
15
  --bs-yellow: #ffc107;
16
  --bs-green: #198754;
17
  --bs-teal: #20c997;
18
  --bs-cyan: #0dcaf0;
19
  --bs-black: #000;
20
  --bs-white: #fff;
21
  --bs-gray: #7987a1;
22
  --bs-gray-dark: #212a3a;
23
  --bs-gray-100: #f8f9fa;
24
  --bs-gray-200: #e9ecef;
25
  --bs-gray-300: #dee2e6;
26
  --bs-gray-400: #cbd1db;
27
  --bs-gray-500: #aeb7c5;
28
  --bs-gray-600: #7987a1;
29
  --bs-gray-700: #41516c;
30
  --bs-gray-800: #212a3a;
31
  --bs-gray-900: #060c17;
32
  --bs-primary: #6571ff;
33
  --bs-secondary: #7987a1;
34
  --bs-success: #05a34a;
35
  --bs-info: #66d1d1;
36
  --bs-warning: #fbbc06;
37
  --bs-danger: #ff3366;
38
  --bs-light: #e9ecef;
39
  --bs-dark: #060c17;
40
  --bs-primary-rgb: 101, 113, 255;
41
  --bs-secondary-rgb: 121, 135, 161;
42
  --bs-success-rgb: 5, 163, 74;
43
  --bs-info-rgb: 102, 209, 209;
44
  --bs-warning-rgb: 251, 188, 6;
45
  --bs-danger-rgb: 255, 51, 102;
46
  --bs-light-rgb: 233, 236, 239;
47
  --bs-dark-rgb: 6, 12, 23;
48
  --bs-white-rgb: 255, 255, 255;
49
  --bs-black-rgb: 0, 0, 0;
50
  --bs-body-color-rgb: 0, 0, 0;
51
  --bs-body-bg-rgb: 249, 250, 251;
52
  --bs-font-sans-serif: "Roboto", Helvetica, sans-serif;
53
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
54
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
55
  --bs-body-font-family: var(--bs-font-sans-serif);
56
  --bs-body-font-size: 0.875rem;
57
  --bs-body-font-weight: 400;
58
  --bs-body-line-height: 1.5;
59
  --bs-body-color: #000;
60
  --bs-body-bg: #f9fafb;
61
  --bs-border-width: 1px;
62
  --bs-border-style: solid;
63
  --bs-border-color: #e9ecef;
64
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
65
  --bs-border-radius: 0.25rem;
66
  --bs-border-radius-sm: 0.25rem;
67
  --bs-border-radius-lg: 0.5rem;
68
  --bs-border-radius-xl: 1rem;
69
  --bs-border-radius-2xl: 2rem;
70
  --bs-border-radius-pill: 50rem;
71
  --bs-link-color: #6571ff;
72
  --bs-link-hover-color: #515acc;
73
  --bs-code-color: #d63384;
74
  --bs-highlight-bg: #fff3cd;
75
}
76
 
77
*,
78
*::before,
79
*::after {
80
  box-sizing: border-box;
81
}
82
 
83
@media (prefers-reduced-motion: no-preference) {
84
  :root {
85
    scroll-behavior: smooth;
86
  }
87
}
88
 
89
body {
90
  margin: 0;
91
  font-family: var(--bs-body-font-family);
92
  font-size: var(--bs-body-font-size);
93
  font-weight: var(--bs-body-font-weight);
94
  line-height: var(--bs-body-line-height);
95
  color: var(--bs-body-color);
96
  text-align: var(--bs-body-text-align);
97
  background-color: var(--bs-body-bg);
98
  -webkit-text-size-adjust: 100%;
99
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
100
}
101
 
102
hr {
103
  margin: 1rem 0;
104
  color: inherit;
105
  border: 0;
106
  border-top: 1px solid;
107
  opacity: 0.1;
108
}
109
 
16869 stevensc 110
button {
111
  margin: 0;
112
  padding: 0;
113
  background: transparent;
16874 stevensc 114
  outline: none;
16869 stevensc 115
  border: 0;
116
}
117
 
16868 stevensc 118
img {
119
  max-width: 100%;
120
}
121
 
16848 stevensc 122
h6,
123
.h6,
124
h5,
125
.h5,
126
h4,
127
.h4,
128
h3,
129
.h3,
130
h2,
131
.h2,
132
h1,
133
.h1 {
16825 efrain 134
  margin-top: 0;
135
  margin-bottom: 0;
136
  font-weight: 500;
137
  line-height: 1.2;
138
}
139
 
16848 stevensc 140
h1,
16852 stevensc 141
h2,
142
h3 {
143
  color: var(--title-color);
144
}
145
 
146
h1,
16848 stevensc 147
.h1 {
16825 efrain 148
  font-size: calc(1.375rem + 1.5vw);
149
}
16848 stevensc 150
 
16825 efrain 151
@media (min-width: 1200px) {
16848 stevensc 152
 
153
  h1,
154
  .h1 {
16825 efrain 155
    font-size: 2.5rem;
156
  }
157
}
158
 
16848 stevensc 159
h2,
160
.h2 {
16825 efrain 161
  font-size: calc(1.325rem + 0.9vw);
162
}
16848 stevensc 163
 
16825 efrain 164
@media (min-width: 1200px) {
16848 stevensc 165
 
166
  h2,
167
  .h2 {
16825 efrain 168
    font-size: 2rem;
169
  }
170
}
171
 
16848 stevensc 172
h3,
173
.h3 {
16825 efrain 174
  font-size: calc(1.275rem + 0.3vw);
175
}
16848 stevensc 176
 
16825 efrain 177
@media (min-width: 1200px) {
16848 stevensc 178
 
179
  h3,
180
  .h3 {
16825 efrain 181
    font-size: 1.5rem;
182
  }
183
}
184
 
16848 stevensc 185
h4,
186
.h4 {
16825 efrain 187
  font-size: 1.25rem;
188
}
189
 
16848 stevensc 190
h5,
191
.h5 {
16825 efrain 192
  font-size: 1rem;
193
}
194
 
16848 stevensc 195
h6,
196
.h6 {
16825 efrain 197
  font-size: 0.875rem;
198
}
199
 
200
p {
201
  margin-top: 0;
202
  margin-bottom: 0;
203
}
204
 
205
abbr[title] {
206
  text-decoration: underline dotted;
207
  cursor: help;
208
  text-decoration-skip-ink: none;
209
}
210
 
211
address {
212
  margin-bottom: 1rem;
213
  font-style: normal;
214
  line-height: inherit;
215
}
216
 
217
ol,
218
ul {
16874 stevensc 219
  list-style: none;
16825 efrain 220
}
221
 
222
ol,
223
ul,
224
dl {
225
  margin-top: 0;
16874 stevensc 226
  margin-bottom: 0;
16825 efrain 227
}
228
 
229
ol ol,
230
ul ul,
231
ol ul,
232
ul ol {
233
  margin-bottom: 0;
234
}
235
 
236
dt {
237
  font-weight: 500;
238
}
239
 
240
dd {
241
  margin-bottom: 0.5rem;
242
  margin-left: 0;
243
}
244
 
245
blockquote {
246
  margin: 0 0 1rem;
247
}
248
 
249
b,
250
strong {
251
  font-weight: 700;
252
}
253
 
16848 stevensc 254
small,
255
.small {
16825 efrain 256
  font-size: 0.875em;
257
}
258
 
16848 stevensc 259
mark,
260
.mark {
16825 efrain 261
  padding: 0.1875em;
262
  background-color: var(--bs-highlight-bg);
263
}
264
 
265
sub,
266
sup {
267
  position: relative;
268
  font-size: 0.75em;
269
  line-height: 0;
270
  vertical-align: baseline;
271
}
272
 
273
sub {
274
  bottom: -0.25em;
275
}
276
 
277
sup {
278
  top: -0.5em;
279
}
280
 
281
a {
282
  color: var(--bs-link-color);
283
  text-decoration: none;
284
}
16848 stevensc 285
 
16825 efrain 286
a:hover {
287
  color: var(--bs-link-hover-color);
288
}
289
 
16848 stevensc 290
a:not([href]):not([class]),
291
a:not([href]):not([class]):hover {
16825 efrain 292
  color: inherit;
293
  text-decoration: none;
294
}
295
 
296
pre,
297
code,
298
kbd,
299
samp {
300
  font-family: var(--bs-font-monospace);
301
  font-size: 1em;
302
}
303
 
304
pre {
305
  display: block;
306
  margin-top: 0;
307
  margin-bottom: 1rem;
308
  overflow: auto;
309
  font-size: 0.875em;
310
}
16848 stevensc 311
 
16825 efrain 312
pre code {
313
  font-size: inherit;
314
  color: inherit;
315
  word-break: normal;
316
}
317
 
318
code {
319
  font-size: 0.875em;
320
  color: var(--bs-code-color);
321
  word-wrap: break-word;
322
}
16848 stevensc 323
 
324
a>code {
16825 efrain 325
  color: inherit;
326
}
327
 
328
kbd {
329
  padding: 0.1875rem 0.375rem;
330
  font-size: 0.875em;
331
  color: var(--bs-body-bg);
332
  background-color: var(--bs-body-color);
333
  border-radius: 0.25rem;
334
}
16848 stevensc 335
 
16825 efrain 336
kbd kbd {
337
  padding: 0;
338
  font-size: 1em;
339
}
340
 
341
figure {
342
  margin: 0 0 1rem;
343
}
344
 
345
img,
346
svg {
347
  vertical-align: middle;
348
}
349
 
350
table {
351
  caption-side: bottom;
352
  border-collapse: collapse;
353
}
354
 
355
caption {
356
  padding-top: 0.85rem;
357
  padding-bottom: 0.85rem;
358
  color: #7987a1;
359
  text-align: left;
360
}
361
 
362
th {
363
  text-align: inherit;
364
  text-align: -webkit-match-parent;
365
}
366
 
367
thead,
368
tbody,
369
tfoot,
370
tr,
371
td,
372
th {
373
  border-color: inherit;
374
  border-style: solid;
375
  border-width: 0;
376
}
377
 
378
label {
379
  display: inline-block;
380
}
381
 
382
button {
383
  border-radius: 0;
384
}
385
 
386
button:focus:not(:focus-visible) {
387
  outline: 0;
388
}
389
 
390
input,
391
button,
392
select,
393
optgroup,
394
textarea {
395
  margin: 0;
396
  font-family: inherit;
397
  font-size: inherit;
398
  line-height: inherit;
399
}
400
 
401
button,
402
select {
403
  text-transform: none;
404
}
405
 
406
[role=button] {
407
  cursor: pointer;
408
}
409
 
410
select {
411
  word-wrap: normal;
412
}
16848 stevensc 413
 
16825 efrain 414
select:disabled {
415
  opacity: 1;
416
}
417
 
418
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
419
  display: none !important;
420
}
421
 
422
button,
423
[type=button],
424
[type=reset],
425
[type=submit] {
16848 stevensc 426
  appearance: button;
16825 efrain 427
}
16848 stevensc 428
 
16825 efrain 429
button:not(:disabled),
430
[type=button]:not(:disabled),
431
[type=reset]:not(:disabled),
432
[type=submit]:not(:disabled) {
433
  cursor: pointer;
434
}
435
 
436
::-moz-focus-inner {
437
  padding: 0;
438
  border-style: none;
439
}
440
 
441
textarea {
442
  resize: vertical;
443
}
444
 
445
fieldset {
446
  min-width: 0;
447
  padding: 0;
448
  margin: 0;
449
  border: 0;
450
}
451
 
452
legend {
453
  float: left;
454
  width: 100%;
455
  padding: 0;
456
  margin-bottom: 0.5rem;
457
  font-size: calc(1.275rem + 0.3vw);
458
  line-height: inherit;
459
}
16848 stevensc 460
 
16825 efrain 461
@media (min-width: 1200px) {
462
  legend {
463
    font-size: 1.5rem;
464
  }
465
}
16848 stevensc 466
 
467
legend+* {
16825 efrain 468
  clear: left;
469
}
470
 
471
::-webkit-datetime-edit-fields-wrapper,
472
::-webkit-datetime-edit-text,
473
::-webkit-datetime-edit-minute,
474
::-webkit-datetime-edit-hour-field,
475
::-webkit-datetime-edit-day-field,
476
::-webkit-datetime-edit-month-field,
477
::-webkit-datetime-edit-year-field {
478
  padding: 0;
479
}
480
 
481
::-webkit-inner-spin-button {
482
  height: auto;
483
}
484
 
485
[type=search] {
486
  outline-offset: -2px;
16848 stevensc 487
  appearance: textfield;
16825 efrain 488
}
489
 
490
/* rtl:raw:
491
[type="tel"],
492
[type="url"],
493
[type="email"],
494
[type="number"] {
495
  direction: ltr;
496
}
497
*/
498
::-webkit-search-decoration {
499
  -webkit-appearance: none;
500
}
501
 
502
::-webkit-color-swatch-wrapper {
503
  padding: 0;
504
}
505
 
506
::file-selector-button {
507
  font: inherit;
16848 stevensc 508
  appearance: button;
16825 efrain 509
}
510
 
511
output {
512
  display: inline-block;
513
}
514
 
515
iframe {
516
  border: 0;
517
}
518
 
519
summary {
520
  display: list-item;
521
  cursor: pointer;
522
}
523
 
524
progress {
525
  vertical-align: baseline;
526
}
527
 
528
[hidden] {
529
  display: none !important;
530
}
531
 
532
.lead {
533
  font-size: 1.09375rem;
534
  font-weight: 300;
535
}
536
 
537
.display-1 {
538
  font-size: calc(1.625rem + 4.5vw);
539
  font-weight: 300;
540
  line-height: 1.2;
541
}
16848 stevensc 542
 
16825 efrain 543
@media (min-width: 1200px) {
544
  .display-1 {
545
    font-size: 5rem;
546
  }
547
}
548
 
549
.display-2 {
550
  font-size: calc(1.575rem + 3.9vw);
551
  font-weight: 300;
552
  line-height: 1.2;
553
}
16848 stevensc 554
 
16825 efrain 555
@media (min-width: 1200px) {
556
  .display-2 {
557
    font-size: 4.5rem;
558
  }
559
}
560
 
561
.display-3 {
562
  font-size: calc(1.525rem + 3.3vw);
563
  font-weight: 300;
564
  line-height: 1.2;
565
}
16848 stevensc 566
 
16825 efrain 567
@media (min-width: 1200px) {
568
  .display-3 {
569
    font-size: 4rem;
570
  }
571
}
572
 
573
.display-4 {
574
  font-size: calc(1.475rem + 2.7vw);
575
  font-weight: 300;
576
  line-height: 1.2;
577
}
16848 stevensc 578
 
16825 efrain 579
@media (min-width: 1200px) {
580
  .display-4 {
581
    font-size: 3.5rem;
582
  }
583
}
584
 
585
.display-5 {
586
  font-size: calc(1.425rem + 2.1vw);
587
  font-weight: 300;
588
  line-height: 1.2;
589
}
16848 stevensc 590
 
16825 efrain 591
@media (min-width: 1200px) {
592
  .display-5 {
593
    font-size: 3rem;
594
  }
595
}
596
 
597
.display-6 {
598
  font-size: calc(1.375rem + 1.5vw);
599
  font-weight: 300;
600
  line-height: 1.2;
601
}
16848 stevensc 602
 
16825 efrain 603
@media (min-width: 1200px) {
604
  .display-6 {
605
    font-size: 2.5rem;
606
  }
607
}
608
 
609
.list-unstyled {
610
  padding-left: 0;
611
  list-style: none;
612
}
613
 
614
.list-inline {
615
  padding-left: 0;
616
  list-style: none;
617
}
618
 
619
.list-inline-item {
620
  display: inline-block;
621
}
16848 stevensc 622
 
16825 efrain 623
.list-inline-item:not(:last-child) {
624
  margin-right: 0.5rem;
625
}
626
 
627
.initialism {
628
  font-size: 0.875em;
629
  text-transform: uppercase;
630
}
631
 
632
.blockquote {
633
  margin-bottom: 1rem;
634
  font-size: 1.09375rem;
635
}
16848 stevensc 636
 
637
.blockquote> :last-child {
16825 efrain 638
  margin-bottom: 0;
639
}
640
 
641
.blockquote-footer {
642
  margin-top: -1rem;
643
  margin-bottom: 1rem;
644
  font-size: 0.875em;
645
  color: #7987a1;
646
}
16848 stevensc 647
 
16825 efrain 648
.blockquote-footer::before {
649
  content: "— ";
650
}
651
 
652
.img-fluid {
653
  max-width: 100%;
654
  height: auto;
655
}
656
 
657
.img-thumbnail {
658
  padding: 0.25rem;
659
  background-color: #f9fafb;
660
  border: 1px solid var(--bs-border-color);
661
  border-radius: 0.25rem;
662
  max-width: 100%;
663
  height: auto;
664
}
665
 
666
.figure {
667
  display: inline-block;
668
}
669
 
670
.figure-img {
671
  margin-bottom: 0.5rem;
672
  line-height: 1;
673
}
674
 
675
.figure-caption {
676
  font-size: 0.875em;
677
  color: #7987a1;
678
}
679
 
680
.container,
681
.container-fluid,
682
.container-xxl,
683
.container-xl,
684
.container-lg,
685
.container-md,
686
.container-sm {
687
  --bs-gutter-x: 1.5rem;
688
  --bs-gutter-y: 0;
689
  width: 100%;
690
  padding-right: calc(var(--bs-gutter-x) * 0.5);
691
  padding-left: calc(var(--bs-gutter-x) * 0.5);
692
  margin-right: auto;
693
  margin-left: auto;
694
}
695
 
696
@media (min-width: 576px) {
16848 stevensc 697
 
698
  .container-sm,
699
  .container {
16825 efrain 700
    max-width: 540px;
701
  }
702
}
16848 stevensc 703
 
16825 efrain 704
@media (min-width: 768px) {
16848 stevensc 705
 
706
  .container-md,
707
  .container-sm,
708
  .container {
16825 efrain 709
    max-width: 720px;
710
  }
711
}
16848 stevensc 712
 
16825 efrain 713
@media (min-width: 992px) {
16848 stevensc 714
 
715
  .container-lg,
716
  .container-md,
717
  .container-sm,
718
  .container {
16825 efrain 719
    max-width: 960px;
720
  }
721
}
16848 stevensc 722
 
16825 efrain 723
@media (min-width: 1200px) {
16848 stevensc 724
 
725
  .container-xl,
726
  .container-lg,
727
  .container-md,
728
  .container-sm,
729
  .container {
16825 efrain 730
    max-width: 1140px;
731
  }
732
}
16848 stevensc 733
 
16825 efrain 734
@media (min-width: 1400px) {
16848 stevensc 735
 
736
  .container-xxl,
737
  .container-xl,
738
  .container-lg,
739
  .container-md,
740
  .container-sm,
741
  .container {
16825 efrain 742
    max-width: 1320px;
743
  }
744
}
16848 stevensc 745
 
16825 efrain 746
.row {
747
  --bs-gutter-x: 1.5rem;
748
  --bs-gutter-y: 0;
749
  display: flex;
750
  flex-wrap: wrap;
751
  margin-top: calc(-1 * var(--bs-gutter-y));
752
  margin-right: calc(-0.5 * var(--bs-gutter-x));
753
  margin-left: calc(-0.5 * var(--bs-gutter-x));
754
}
16848 stevensc 755
 
756
.row>* {
16825 efrain 757
  flex-shrink: 0;
758
  width: 100%;
759
  max-width: 100%;
760
  padding-right: calc(var(--bs-gutter-x) * 0.5);
761
  padding-left: calc(var(--bs-gutter-x) * 0.5);
762
  margin-top: var(--bs-gutter-y);
763
}
764
 
765
.col {
766
  flex: 1 0 0%;
767
}
768
 
16848 stevensc 769
.row-cols-auto>* {
16825 efrain 770
  flex: 0 0 auto;
771
  width: auto;
772
}
773
 
16848 stevensc 774
.row-cols-1>* {
16825 efrain 775
  flex: 0 0 auto;
776
  width: 100%;
777
}
778
 
16848 stevensc 779
.row-cols-2>* {
16825 efrain 780
  flex: 0 0 auto;
781
  width: 50%;
782
}
783
 
16848 stevensc 784
.row-cols-3>* {
16825 efrain 785
  flex: 0 0 auto;
786
  width: 33.3333333333%;
787
}
788
 
16848 stevensc 789
.row-cols-4>* {
16825 efrain 790
  flex: 0 0 auto;
791
  width: 25%;
792
}
793
 
16848 stevensc 794
.row-cols-5>* {
16825 efrain 795
  flex: 0 0 auto;
796
  width: 20%;
797
}
798
 
16848 stevensc 799
.row-cols-6>* {
16825 efrain 800
  flex: 0 0 auto;
801
  width: 16.6666666667%;
802
}
803
 
804
.col-auto {
805
  flex: 0 0 auto;
806
  width: auto;
807
}
808
 
809
.col-1 {
810
  flex: 0 0 auto;
811
  width: 8.33333333%;
812
}
813
 
814
.col-2 {
815
  flex: 0 0 auto;
816
  width: 16.66666667%;
817
}
818
 
819
.col-3 {
820
  flex: 0 0 auto;
821
  width: 25%;
822
}
823
 
824
.col-4 {
825
  flex: 0 0 auto;
826
  width: 33.33333333%;
827
}
828
 
829
.col-5 {
830
  flex: 0 0 auto;
831
  width: 41.66666667%;
832
}
833
 
834
.col-6 {
835
  flex: 0 0 auto;
836
  width: 50%;
837
}
838
 
839
.col-7 {
840
  flex: 0 0 auto;
841
  width: 58.33333333%;
842
}
843
 
844
.col-8 {
845
  flex: 0 0 auto;
846
  width: 66.66666667%;
847
}
848
 
849
.col-9 {
850
  flex: 0 0 auto;
851
  width: 75%;
852
}
853
 
854
.col-10 {
855
  flex: 0 0 auto;
856
  width: 83.33333333%;
857
}
858
 
859
.col-11 {
860
  flex: 0 0 auto;
861
  width: 91.66666667%;
862
}
863
 
864
.col-12 {
865
  flex: 0 0 auto;
866
  width: 100%;
867
}
868
 
869
.offset-1 {
870
  margin-left: 8.33333333%;
871
}
872
 
873
.offset-2 {
874
  margin-left: 16.66666667%;
875
}
876
 
877
.offset-3 {
878
  margin-left: 25%;
879
}
880
 
881
.offset-4 {
882
  margin-left: 33.33333333%;
883
}
884
 
885
.offset-5 {
886
  margin-left: 41.66666667%;
887
}
888
 
889
.offset-6 {
890
  margin-left: 50%;
891
}
892
 
893
.offset-7 {
894
  margin-left: 58.33333333%;
895
}
896
 
897
.offset-8 {
898
  margin-left: 66.66666667%;
899
}
900
 
901
.offset-9 {
902
  margin-left: 75%;
903
}
904
 
905
.offset-10 {
906
  margin-left: 83.33333333%;
907
}
908
 
909
.offset-11 {
910
  margin-left: 91.66666667%;
911
}
912
 
913
.g-0,
914
.gx-0 {
915
  --bs-gutter-x: 0;
916
}
917
 
918
.g-0,
919
.gy-0 {
920
  --bs-gutter-y: 0;
921
}
922
 
923
.g-1,
924
.gx-1 {
925
  --bs-gutter-x: 0.25rem;
926
}
927
 
928
.g-1,
929
.gy-1 {
930
  --bs-gutter-y: 0.25rem;
931
}
932
 
933
.g-2,
934
.gx-2 {
935
  --bs-gutter-x: 0.5rem;
936
}
937
 
938
.g-2,
939
.gy-2 {
940
  --bs-gutter-y: 0.5rem;
941
}
942
 
943
.g-3,
944
.gx-3 {
945
  --bs-gutter-x: 1rem;
946
}
947
 
948
.g-3,
949
.gy-3 {
950
  --bs-gutter-y: 1rem;
951
}
952
 
953
.g-4,
954
.gx-4 {
955
  --bs-gutter-x: 1.5rem;
956
}
957
 
958
.g-4,
959
.gy-4 {
960
  --bs-gutter-y: 1.5rem;
961
}
962
 
963
.g-5,
964
.gx-5 {
965
  --bs-gutter-x: 3rem;
966
}
967
 
968
.g-5,
969
.gy-5 {
970
  --bs-gutter-y: 3rem;
971
}
972
 
973
.g-6,
974
.gx-6 {
975
  --bs-gutter-x: 4.5rem;
976
}
977
 
978
.g-6,
979
.gy-6 {
980
  --bs-gutter-y: 4.5rem;
981
}
982
 
983
.g-7,
984
.gx-7 {
985
  --bs-gutter-x: 6rem;
986
}
987
 
988
.g-7,
989
.gy-7 {
990
  --bs-gutter-y: 6rem;
991
}
992
 
993
@media (min-width: 576px) {
994
  .col-sm {
995
    flex: 1 0 0%;
996
  }
16848 stevensc 997
 
998
  .row-cols-sm-auto>* {
16825 efrain 999
    flex: 0 0 auto;
1000
    width: auto;
1001
  }
16848 stevensc 1002
 
1003
  .row-cols-sm-1>* {
16825 efrain 1004
    flex: 0 0 auto;
1005
    width: 100%;
1006
  }
16848 stevensc 1007
 
1008
  .row-cols-sm-2>* {
16825 efrain 1009
    flex: 0 0 auto;
1010
    width: 50%;
1011
  }
16848 stevensc 1012
 
1013
  .row-cols-sm-3>* {
16825 efrain 1014
    flex: 0 0 auto;
1015
    width: 33.3333333333%;
1016
  }
16848 stevensc 1017
 
1018
  .row-cols-sm-4>* {
16825 efrain 1019
    flex: 0 0 auto;
1020
    width: 25%;
1021
  }
16848 stevensc 1022
 
1023
  .row-cols-sm-5>* {
16825 efrain 1024
    flex: 0 0 auto;
1025
    width: 20%;
1026
  }
16848 stevensc 1027
 
1028
  .row-cols-sm-6>* {
16825 efrain 1029
    flex: 0 0 auto;
1030
    width: 16.6666666667%;
1031
  }
16848 stevensc 1032
 
16825 efrain 1033
  .col-sm-auto {
1034
    flex: 0 0 auto;
1035
    width: auto;
1036
  }
16848 stevensc 1037
 
16825 efrain 1038
  .col-sm-1 {
1039
    flex: 0 0 auto;
1040
    width: 8.33333333%;
1041
  }
16848 stevensc 1042
 
16825 efrain 1043
  .col-sm-2 {
1044
    flex: 0 0 auto;
1045
    width: 16.66666667%;
1046
  }
16848 stevensc 1047
 
16825 efrain 1048
  .col-sm-3 {
1049
    flex: 0 0 auto;
1050
    width: 25%;
1051
  }
16848 stevensc 1052
 
16825 efrain 1053
  .col-sm-4 {
1054
    flex: 0 0 auto;
1055
    width: 33.33333333%;
1056
  }
16848 stevensc 1057
 
16825 efrain 1058
  .col-sm-5 {
1059
    flex: 0 0 auto;
1060
    width: 41.66666667%;
1061
  }
16848 stevensc 1062
 
16825 efrain 1063
  .col-sm-6 {
1064
    flex: 0 0 auto;
1065
    width: 50%;
1066
  }
16848 stevensc 1067
 
16825 efrain 1068
  .col-sm-7 {
1069
    flex: 0 0 auto;
1070
    width: 58.33333333%;
1071
  }
16848 stevensc 1072
 
16825 efrain 1073
  .col-sm-8 {
1074
    flex: 0 0 auto;
1075
    width: 66.66666667%;
1076
  }
16848 stevensc 1077
 
16825 efrain 1078
  .col-sm-9 {
1079
    flex: 0 0 auto;
1080
    width: 75%;
1081
  }
16848 stevensc 1082
 
16825 efrain 1083
  .col-sm-10 {
1084
    flex: 0 0 auto;
1085
    width: 83.33333333%;
1086
  }
16848 stevensc 1087
 
16825 efrain 1088
  .col-sm-11 {
1089
    flex: 0 0 auto;
1090
    width: 91.66666667%;
1091
  }
16848 stevensc 1092
 
16825 efrain 1093
  .col-sm-12 {
1094
    flex: 0 0 auto;
1095
    width: 100%;
1096
  }
16848 stevensc 1097
 
16825 efrain 1098
  .offset-sm-0 {
1099
    margin-left: 0;
1100
  }
16848 stevensc 1101
 
16825 efrain 1102
  .offset-sm-1 {
1103
    margin-left: 8.33333333%;
1104
  }
16848 stevensc 1105
 
16825 efrain 1106
  .offset-sm-2 {
1107
    margin-left: 16.66666667%;
1108
  }
16848 stevensc 1109
 
16825 efrain 1110
  .offset-sm-3 {
1111
    margin-left: 25%;
1112
  }
16848 stevensc 1113
 
16825 efrain 1114
  .offset-sm-4 {
1115
    margin-left: 33.33333333%;
1116
  }
16848 stevensc 1117
 
16825 efrain 1118
  .offset-sm-5 {
1119
    margin-left: 41.66666667%;
1120
  }
16848 stevensc 1121
 
16825 efrain 1122
  .offset-sm-6 {
1123
    margin-left: 50%;
1124
  }
16848 stevensc 1125
 
16825 efrain 1126
  .offset-sm-7 {
1127
    margin-left: 58.33333333%;
1128
  }
16848 stevensc 1129
 
16825 efrain 1130
  .offset-sm-8 {
1131
    margin-left: 66.66666667%;
1132
  }
16848 stevensc 1133
 
16825 efrain 1134
  .offset-sm-9 {
1135
    margin-left: 75%;
1136
  }
16848 stevensc 1137
 
16825 efrain 1138
  .offset-sm-10 {
1139
    margin-left: 83.33333333%;
1140
  }
16848 stevensc 1141
 
16825 efrain 1142
  .offset-sm-11 {
1143
    margin-left: 91.66666667%;
1144
  }
16848 stevensc 1145
 
16825 efrain 1146
  .g-sm-0,
1147
  .gx-sm-0 {
1148
    --bs-gutter-x: 0;
1149
  }
16848 stevensc 1150
 
16825 efrain 1151
  .g-sm-0,
1152
  .gy-sm-0 {
1153
    --bs-gutter-y: 0;
1154
  }
16848 stevensc 1155
 
16825 efrain 1156
  .g-sm-1,
1157
  .gx-sm-1 {
1158
    --bs-gutter-x: 0.25rem;
1159
  }
16848 stevensc 1160
 
16825 efrain 1161
  .g-sm-1,
1162
  .gy-sm-1 {
1163
    --bs-gutter-y: 0.25rem;
1164
  }
16848 stevensc 1165
 
16825 efrain 1166
  .g-sm-2,
1167
  .gx-sm-2 {
1168
    --bs-gutter-x: 0.5rem;
1169
  }
16848 stevensc 1170
 
16825 efrain 1171
  .g-sm-2,
1172
  .gy-sm-2 {
1173
    --bs-gutter-y: 0.5rem;
1174
  }
16848 stevensc 1175
 
16825 efrain 1176
  .g-sm-3,
1177
  .gx-sm-3 {
1178
    --bs-gutter-x: 1rem;
1179
  }
16848 stevensc 1180
 
16825 efrain 1181
  .g-sm-3,
1182
  .gy-sm-3 {
1183
    --bs-gutter-y: 1rem;
1184
  }
16848 stevensc 1185
 
16825 efrain 1186
  .g-sm-4,
1187
  .gx-sm-4 {
1188
    --bs-gutter-x: 1.5rem;
1189
  }
16848 stevensc 1190
 
16825 efrain 1191
  .g-sm-4,
1192
  .gy-sm-4 {
1193
    --bs-gutter-y: 1.5rem;
1194
  }
16848 stevensc 1195
 
16825 efrain 1196
  .g-sm-5,
1197
  .gx-sm-5 {
1198
    --bs-gutter-x: 3rem;
1199
  }
16848 stevensc 1200
 
16825 efrain 1201
  .g-sm-5,
1202
  .gy-sm-5 {
1203
    --bs-gutter-y: 3rem;
1204
  }
16848 stevensc 1205
 
16825 efrain 1206
  .g-sm-6,
1207
  .gx-sm-6 {
1208
    --bs-gutter-x: 4.5rem;
1209
  }
16848 stevensc 1210
 
16825 efrain 1211
  .g-sm-6,
1212
  .gy-sm-6 {
1213
    --bs-gutter-y: 4.5rem;
1214
  }
16848 stevensc 1215
 
16825 efrain 1216
  .g-sm-7,
1217
  .gx-sm-7 {
1218
    --bs-gutter-x: 6rem;
1219
  }
16848 stevensc 1220
 
16825 efrain 1221
  .g-sm-7,
1222
  .gy-sm-7 {
1223
    --bs-gutter-y: 6rem;
1224
  }
1225
}
16848 stevensc 1226
 
16825 efrain 1227
@media (min-width: 768px) {
1228
  .col-md {
1229
    flex: 1 0 0%;
1230
  }
16848 stevensc 1231
 
1232
  .row-cols-md-auto>* {
16825 efrain 1233
    flex: 0 0 auto;
1234
    width: auto;
1235
  }
16848 stevensc 1236
 
1237
  .row-cols-md-1>* {
16825 efrain 1238
    flex: 0 0 auto;
1239
    width: 100%;
1240
  }
16848 stevensc 1241
 
1242
  .row-cols-md-2>* {
16825 efrain 1243
    flex: 0 0 auto;
1244
    width: 50%;
1245
  }
16848 stevensc 1246
 
1247
  .row-cols-md-3>* {
16825 efrain 1248
    flex: 0 0 auto;
1249
    width: 33.3333333333%;
1250
  }
16848 stevensc 1251
 
1252
  .row-cols-md-4>* {
16825 efrain 1253
    flex: 0 0 auto;
1254
    width: 25%;
1255
  }
16848 stevensc 1256
 
1257
  .row-cols-md-5>* {
16825 efrain 1258
    flex: 0 0 auto;
1259
    width: 20%;
1260
  }
16848 stevensc 1261
 
1262
  .row-cols-md-6>* {
16825 efrain 1263
    flex: 0 0 auto;
1264
    width: 16.6666666667%;
1265
  }
16848 stevensc 1266
 
16825 efrain 1267
  .col-md-auto {
1268
    flex: 0 0 auto;
1269
    width: auto;
1270
  }
16848 stevensc 1271
 
16825 efrain 1272
  .col-md-1 {
1273
    flex: 0 0 auto;
1274
    width: 8.33333333%;
1275
  }
16848 stevensc 1276
 
16825 efrain 1277
  .col-md-2 {
1278
    flex: 0 0 auto;
1279
    width: 16.66666667%;
1280
  }
16848 stevensc 1281
 
16825 efrain 1282
  .col-md-3 {
1283
    flex: 0 0 auto;
1284
    width: 25%;
1285
  }
16848 stevensc 1286
 
16825 efrain 1287
  .col-md-4 {
1288
    flex: 0 0 auto;
1289
    width: 33.33333333%;
1290
  }
16848 stevensc 1291
 
16825 efrain 1292
  .col-md-5 {
1293
    flex: 0 0 auto;
1294
    width: 41.66666667%;
1295
  }
16848 stevensc 1296
 
16825 efrain 1297
  .col-md-6 {
1298
    flex: 0 0 auto;
1299
    width: 50%;
1300
  }
16848 stevensc 1301
 
16825 efrain 1302
  .col-md-7 {
1303
    flex: 0 0 auto;
1304
    width: 58.33333333%;
1305
  }
16848 stevensc 1306
 
16825 efrain 1307
  .col-md-8 {
1308
    flex: 0 0 auto;
1309
    width: 66.66666667%;
1310
  }
16848 stevensc 1311
 
16825 efrain 1312
  .col-md-9 {
1313
    flex: 0 0 auto;
1314
    width: 75%;
1315
  }
16848 stevensc 1316
 
16825 efrain 1317
  .col-md-10 {
1318
    flex: 0 0 auto;
1319
    width: 83.33333333%;
1320
  }
16848 stevensc 1321
 
16825 efrain 1322
  .col-md-11 {
1323
    flex: 0 0 auto;
1324
    width: 91.66666667%;
1325
  }
16848 stevensc 1326
 
16825 efrain 1327
  .col-md-12 {
1328
    flex: 0 0 auto;
1329
    width: 100%;
1330
  }
16848 stevensc 1331
 
16825 efrain 1332
  .offset-md-0 {
1333
    margin-left: 0;
1334
  }
16848 stevensc 1335
 
16825 efrain 1336
  .offset-md-1 {
1337
    margin-left: 8.33333333%;
1338
  }
16848 stevensc 1339
 
16825 efrain 1340
  .offset-md-2 {
1341
    margin-left: 16.66666667%;
1342
  }
16848 stevensc 1343
 
16825 efrain 1344
  .offset-md-3 {
1345
    margin-left: 25%;
1346
  }
16848 stevensc 1347
 
16825 efrain 1348
  .offset-md-4 {
1349
    margin-left: 33.33333333%;
1350
  }
16848 stevensc 1351
 
16825 efrain 1352
  .offset-md-5 {
1353
    margin-left: 41.66666667%;
1354
  }
16848 stevensc 1355
 
16825 efrain 1356
  .offset-md-6 {
1357
    margin-left: 50%;
1358
  }
16848 stevensc 1359
 
16825 efrain 1360
  .offset-md-7 {
1361
    margin-left: 58.33333333%;
1362
  }
16848 stevensc 1363
 
16825 efrain 1364
  .offset-md-8 {
1365
    margin-left: 66.66666667%;
1366
  }
16848 stevensc 1367
 
16825 efrain 1368
  .offset-md-9 {
1369
    margin-left: 75%;
1370
  }
16848 stevensc 1371
 
16825 efrain 1372
  .offset-md-10 {
1373
    margin-left: 83.33333333%;
1374
  }
16848 stevensc 1375
 
16825 efrain 1376
  .offset-md-11 {
1377
    margin-left: 91.66666667%;
1378
  }
16848 stevensc 1379
 
16825 efrain 1380
  .g-md-0,
1381
  .gx-md-0 {
1382
    --bs-gutter-x: 0;
1383
  }
16848 stevensc 1384
 
16825 efrain 1385
  .g-md-0,
1386
  .gy-md-0 {
1387
    --bs-gutter-y: 0;
1388
  }
16848 stevensc 1389
 
16825 efrain 1390
  .g-md-1,
1391
  .gx-md-1 {
1392
    --bs-gutter-x: 0.25rem;
1393
  }
16848 stevensc 1394
 
16825 efrain 1395
  .g-md-1,
1396
  .gy-md-1 {
1397
    --bs-gutter-y: 0.25rem;
1398
  }
16848 stevensc 1399
 
16825 efrain 1400
  .g-md-2,
1401
  .gx-md-2 {
1402
    --bs-gutter-x: 0.5rem;
1403
  }
16848 stevensc 1404
 
16825 efrain 1405
  .g-md-2,
1406
  .gy-md-2 {
1407
    --bs-gutter-y: 0.5rem;
1408
  }
16848 stevensc 1409
 
16825 efrain 1410
  .g-md-3,
1411
  .gx-md-3 {
1412
    --bs-gutter-x: 1rem;
1413
  }
16848 stevensc 1414
 
16825 efrain 1415
  .g-md-3,
1416
  .gy-md-3 {
1417
    --bs-gutter-y: 1rem;
1418
  }
16848 stevensc 1419
 
16825 efrain 1420
  .g-md-4,
1421
  .gx-md-4 {
1422
    --bs-gutter-x: 1.5rem;
1423
  }
16848 stevensc 1424
 
16825 efrain 1425
  .g-md-4,
1426
  .gy-md-4 {
1427
    --bs-gutter-y: 1.5rem;
1428
  }
16848 stevensc 1429
 
16825 efrain 1430
  .g-md-5,
1431
  .gx-md-5 {
1432
    --bs-gutter-x: 3rem;
1433
  }
16848 stevensc 1434
 
16825 efrain 1435
  .g-md-5,
1436
  .gy-md-5 {
1437
    --bs-gutter-y: 3rem;
1438
  }
16848 stevensc 1439
 
16825 efrain 1440
  .g-md-6,
1441
  .gx-md-6 {
1442
    --bs-gutter-x: 4.5rem;
1443
  }
16848 stevensc 1444
 
16825 efrain 1445
  .g-md-6,
1446
  .gy-md-6 {
1447
    --bs-gutter-y: 4.5rem;
1448
  }
16848 stevensc 1449
 
16825 efrain 1450
  .g-md-7,
1451
  .gx-md-7 {
1452
    --bs-gutter-x: 6rem;
1453
  }
16848 stevensc 1454
 
16825 efrain 1455
  .g-md-7,
1456
  .gy-md-7 {
1457
    --bs-gutter-y: 6rem;
1458
  }
1459
}
16848 stevensc 1460
 
16825 efrain 1461
@media (min-width: 992px) {
1462
  .col-lg {
1463
    flex: 1 0 0%;
1464
  }
16848 stevensc 1465
 
1466
  .row-cols-lg-auto>* {
16825 efrain 1467
    flex: 0 0 auto;
1468
    width: auto;
1469
  }
16848 stevensc 1470
 
1471
  .row-cols-lg-1>* {
16825 efrain 1472
    flex: 0 0 auto;
1473
    width: 100%;
1474
  }
16848 stevensc 1475
 
1476
  .row-cols-lg-2>* {
16825 efrain 1477
    flex: 0 0 auto;
1478
    width: 50%;
1479
  }
16848 stevensc 1480
 
1481
  .row-cols-lg-3>* {
16825 efrain 1482
    flex: 0 0 auto;
1483
    width: 33.3333333333%;
1484
  }
16848 stevensc 1485
 
1486
  .row-cols-lg-4>* {
16825 efrain 1487
    flex: 0 0 auto;
1488
    width: 25%;
1489
  }
16848 stevensc 1490
 
1491
  .row-cols-lg-5>* {
16825 efrain 1492
    flex: 0 0 auto;
1493
    width: 20%;
1494
  }
16848 stevensc 1495
 
1496
  .row-cols-lg-6>* {
16825 efrain 1497
    flex: 0 0 auto;
1498
    width: 16.6666666667%;
1499
  }
16848 stevensc 1500
 
16825 efrain 1501
  .col-lg-auto {
1502
    flex: 0 0 auto;
1503
    width: auto;
1504
  }
16848 stevensc 1505
 
16825 efrain 1506
  .col-lg-1 {
1507
    flex: 0 0 auto;
1508
    width: 8.33333333%;
1509
  }
16848 stevensc 1510
 
16825 efrain 1511
  .col-lg-2 {
1512
    flex: 0 0 auto;
1513
    width: 16.66666667%;
1514
  }
16848 stevensc 1515
 
16825 efrain 1516
  .col-lg-3 {
1517
    flex: 0 0 auto;
1518
    width: 25%;
1519
  }
16848 stevensc 1520
 
16825 efrain 1521
  .col-lg-4 {
1522
    flex: 0 0 auto;
1523
    width: 33.33333333%;
1524
  }
16848 stevensc 1525
 
16825 efrain 1526
  .col-lg-5 {
1527
    flex: 0 0 auto;
1528
    width: 41.66666667%;
1529
  }
16848 stevensc 1530
 
16825 efrain 1531
  .col-lg-6 {
1532
    flex: 0 0 auto;
1533
    width: 50%;
1534
  }
16848 stevensc 1535
 
16825 efrain 1536
  .col-lg-7 {
1537
    flex: 0 0 auto;
1538
    width: 58.33333333%;
1539
  }
16848 stevensc 1540
 
16825 efrain 1541
  .col-lg-8 {
1542
    flex: 0 0 auto;
1543
    width: 66.66666667%;
1544
  }
16848 stevensc 1545
 
16825 efrain 1546
  .col-lg-9 {
1547
    flex: 0 0 auto;
1548
    width: 75%;
1549
  }
16848 stevensc 1550
 
16825 efrain 1551
  .col-lg-10 {
1552
    flex: 0 0 auto;
1553
    width: 83.33333333%;
1554
  }
16848 stevensc 1555
 
16825 efrain 1556
  .col-lg-11 {
1557
    flex: 0 0 auto;
1558
    width: 91.66666667%;
1559
  }
16848 stevensc 1560
 
16825 efrain 1561
  .col-lg-12 {
1562
    flex: 0 0 auto;
1563
    width: 100%;
1564
  }
16848 stevensc 1565
 
16825 efrain 1566
  .offset-lg-0 {
1567
    margin-left: 0;
1568
  }
16848 stevensc 1569
 
16825 efrain 1570
  .offset-lg-1 {
1571
    margin-left: 8.33333333%;
1572
  }
16848 stevensc 1573
 
16825 efrain 1574
  .offset-lg-2 {
1575
    margin-left: 16.66666667%;
1576
  }
16848 stevensc 1577
 
16825 efrain 1578
  .offset-lg-3 {
1579
    margin-left: 25%;
1580
  }
16848 stevensc 1581
 
16825 efrain 1582
  .offset-lg-4 {
1583
    margin-left: 33.33333333%;
1584
  }
16848 stevensc 1585
 
16825 efrain 1586
  .offset-lg-5 {
1587
    margin-left: 41.66666667%;
1588
  }
16848 stevensc 1589
 
16825 efrain 1590
  .offset-lg-6 {
1591
    margin-left: 50%;
1592
  }
16848 stevensc 1593
 
16825 efrain 1594
  .offset-lg-7 {
1595
    margin-left: 58.33333333%;
1596
  }
16848 stevensc 1597
 
16825 efrain 1598
  .offset-lg-8 {
1599
    margin-left: 66.66666667%;
1600
  }
16848 stevensc 1601
 
16825 efrain 1602
  .offset-lg-9 {
1603
    margin-left: 75%;
1604
  }
16848 stevensc 1605
 
16825 efrain 1606
  .offset-lg-10 {
1607
    margin-left: 83.33333333%;
1608
  }
16848 stevensc 1609
 
16825 efrain 1610
  .offset-lg-11 {
1611
    margin-left: 91.66666667%;
1612
  }
16848 stevensc 1613
 
16825 efrain 1614
  .g-lg-0,
1615
  .gx-lg-0 {
1616
    --bs-gutter-x: 0;
1617
  }
16848 stevensc 1618
 
16825 efrain 1619
  .g-lg-0,
1620
  .gy-lg-0 {
1621
    --bs-gutter-y: 0;
1622
  }
16848 stevensc 1623
 
16825 efrain 1624
  .g-lg-1,
1625
  .gx-lg-1 {
1626
    --bs-gutter-x: 0.25rem;
1627
  }
16848 stevensc 1628
 
16825 efrain 1629
  .g-lg-1,
1630
  .gy-lg-1 {
1631
    --bs-gutter-y: 0.25rem;
1632
  }
16848 stevensc 1633
 
16825 efrain 1634
  .g-lg-2,
1635
  .gx-lg-2 {
1636
    --bs-gutter-x: 0.5rem;
1637
  }
16848 stevensc 1638
 
16825 efrain 1639
  .g-lg-2,
1640
  .gy-lg-2 {
1641
    --bs-gutter-y: 0.5rem;
1642
  }
16848 stevensc 1643
 
16825 efrain 1644
  .g-lg-3,
1645
  .gx-lg-3 {
1646
    --bs-gutter-x: 1rem;
1647
  }
16848 stevensc 1648
 
16825 efrain 1649
  .g-lg-3,
1650
  .gy-lg-3 {
1651
    --bs-gutter-y: 1rem;
1652
  }
16848 stevensc 1653
 
16825 efrain 1654
  .g-lg-4,
1655
  .gx-lg-4 {
1656
    --bs-gutter-x: 1.5rem;
1657
  }
16848 stevensc 1658
 
16825 efrain 1659
  .g-lg-4,
1660
  .gy-lg-4 {
1661
    --bs-gutter-y: 1.5rem;
1662
  }
16848 stevensc 1663
 
16825 efrain 1664
  .g-lg-5,
1665
  .gx-lg-5 {
1666
    --bs-gutter-x: 3rem;
1667
  }
16848 stevensc 1668
 
16825 efrain 1669
  .g-lg-5,
1670
  .gy-lg-5 {
1671
    --bs-gutter-y: 3rem;
1672
  }
16848 stevensc 1673
 
16825 efrain 1674
  .g-lg-6,
1675
  .gx-lg-6 {
1676
    --bs-gutter-x: 4.5rem;
1677
  }
16848 stevensc 1678
 
16825 efrain 1679
  .g-lg-6,
1680
  .gy-lg-6 {
1681
    --bs-gutter-y: 4.5rem;
1682
  }
16848 stevensc 1683
 
16825 efrain 1684
  .g-lg-7,
1685
  .gx-lg-7 {
1686
    --bs-gutter-x: 6rem;
1687
  }
16848 stevensc 1688
 
16825 efrain 1689
  .g-lg-7,
1690
  .gy-lg-7 {
1691
    --bs-gutter-y: 6rem;
1692
  }
1693
}
16848 stevensc 1694
 
16825 efrain 1695
@media (min-width: 1200px) {
1696
  .col-xl {
1697
    flex: 1 0 0%;
1698
  }
16848 stevensc 1699
 
1700
  .row-cols-xl-auto>* {
16825 efrain 1701
    flex: 0 0 auto;
1702
    width: auto;
1703
  }
16848 stevensc 1704
 
1705
  .row-cols-xl-1>* {
16825 efrain 1706
    flex: 0 0 auto;
1707
    width: 100%;
1708
  }
16848 stevensc 1709
 
1710
  .row-cols-xl-2>* {
16825 efrain 1711
    flex: 0 0 auto;
1712
    width: 50%;
1713
  }
16848 stevensc 1714
 
1715
  .row-cols-xl-3>* {
16825 efrain 1716
    flex: 0 0 auto;
1717
    width: 33.3333333333%;
1718
  }
16848 stevensc 1719
 
1720
  .row-cols-xl-4>* {
16825 efrain 1721
    flex: 0 0 auto;
1722
    width: 25%;
1723
  }
16848 stevensc 1724
 
1725
  .row-cols-xl-5>* {
16825 efrain 1726
    flex: 0 0 auto;
1727
    width: 20%;
1728
  }
16848 stevensc 1729
 
1730
  .row-cols-xl-6>* {
16825 efrain 1731
    flex: 0 0 auto;
1732
    width: 16.6666666667%;
1733
  }
16848 stevensc 1734
 
16825 efrain 1735
  .col-xl-auto {
1736
    flex: 0 0 auto;
1737
    width: auto;
1738
  }
16848 stevensc 1739
 
16825 efrain 1740
  .col-xl-1 {
1741
    flex: 0 0 auto;
1742
    width: 8.33333333%;
1743
  }
16848 stevensc 1744
 
16825 efrain 1745
  .col-xl-2 {
1746
    flex: 0 0 auto;
1747
    width: 16.66666667%;
1748
  }
16848 stevensc 1749
 
16825 efrain 1750
  .col-xl-3 {
1751
    flex: 0 0 auto;
1752
    width: 25%;
1753
  }
16848 stevensc 1754
 
16825 efrain 1755
  .col-xl-4 {
1756
    flex: 0 0 auto;
1757
    width: 33.33333333%;
1758
  }
16848 stevensc 1759
 
16825 efrain 1760
  .col-xl-5 {
1761
    flex: 0 0 auto;
1762
    width: 41.66666667%;
1763
  }
16848 stevensc 1764
 
16825 efrain 1765
  .col-xl-6 {
1766
    flex: 0 0 auto;
1767
    width: 50%;
1768
  }
16848 stevensc 1769
 
16825 efrain 1770
  .col-xl-7 {
1771
    flex: 0 0 auto;
1772
    width: 58.33333333%;
1773
  }
16848 stevensc 1774
 
16825 efrain 1775
  .col-xl-8 {
1776
    flex: 0 0 auto;
1777
    width: 66.66666667%;
1778
  }
16848 stevensc 1779
 
16825 efrain 1780
  .col-xl-9 {
1781
    flex: 0 0 auto;
1782
    width: 75%;
1783
  }
16848 stevensc 1784
 
16825 efrain 1785
  .col-xl-10 {
1786
    flex: 0 0 auto;
1787
    width: 83.33333333%;
1788
  }
16848 stevensc 1789
 
16825 efrain 1790
  .col-xl-11 {
1791
    flex: 0 0 auto;
1792
    width: 91.66666667%;
1793
  }
16848 stevensc 1794
 
16825 efrain 1795
  .col-xl-12 {
1796
    flex: 0 0 auto;
1797
    width: 100%;
1798
  }
16848 stevensc 1799
 
16825 efrain 1800
  .offset-xl-0 {
1801
    margin-left: 0;
1802
  }
16848 stevensc 1803
 
16825 efrain 1804
  .offset-xl-1 {
1805
    margin-left: 8.33333333%;
1806
  }
16848 stevensc 1807
 
16825 efrain 1808
  .offset-xl-2 {
1809
    margin-left: 16.66666667%;
1810
  }
16848 stevensc 1811
 
16825 efrain 1812
  .offset-xl-3 {
1813
    margin-left: 25%;
1814
  }
16848 stevensc 1815
 
16825 efrain 1816
  .offset-xl-4 {
1817
    margin-left: 33.33333333%;
1818
  }
16848 stevensc 1819
 
16825 efrain 1820
  .offset-xl-5 {
1821
    margin-left: 41.66666667%;
1822
  }
16848 stevensc 1823
 
16825 efrain 1824
  .offset-xl-6 {
1825
    margin-left: 50%;
1826
  }
16848 stevensc 1827
 
16825 efrain 1828
  .offset-xl-7 {
1829
    margin-left: 58.33333333%;
1830
  }
16848 stevensc 1831
 
16825 efrain 1832
  .offset-xl-8 {
1833
    margin-left: 66.66666667%;
1834
  }
16848 stevensc 1835
 
16825 efrain 1836
  .offset-xl-9 {
1837
    margin-left: 75%;
1838
  }
16848 stevensc 1839
 
16825 efrain 1840
  .offset-xl-10 {
1841
    margin-left: 83.33333333%;
1842
  }
16848 stevensc 1843
 
16825 efrain 1844
  .offset-xl-11 {
1845
    margin-left: 91.66666667%;
1846
  }
16848 stevensc 1847
 
16825 efrain 1848
  .g-xl-0,
1849
  .gx-xl-0 {
1850
    --bs-gutter-x: 0;
1851
  }
16848 stevensc 1852
 
16825 efrain 1853
  .g-xl-0,
1854
  .gy-xl-0 {
1855
    --bs-gutter-y: 0;
1856
  }
16848 stevensc 1857
 
16825 efrain 1858
  .g-xl-1,
1859
  .gx-xl-1 {
1860
    --bs-gutter-x: 0.25rem;
1861
  }
16848 stevensc 1862
 
16825 efrain 1863
  .g-xl-1,
1864
  .gy-xl-1 {
1865
    --bs-gutter-y: 0.25rem;
1866
  }
16848 stevensc 1867
 
16825 efrain 1868
  .g-xl-2,
1869
  .gx-xl-2 {
1870
    --bs-gutter-x: 0.5rem;
1871
  }
16848 stevensc 1872
 
16825 efrain 1873
  .g-xl-2,
1874
  .gy-xl-2 {
1875
    --bs-gutter-y: 0.5rem;
1876
  }
16848 stevensc 1877
 
16825 efrain 1878
  .g-xl-3,
1879
  .gx-xl-3 {
1880
    --bs-gutter-x: 1rem;
1881
  }
16848 stevensc 1882
 
16825 efrain 1883
  .g-xl-3,
1884
  .gy-xl-3 {
1885
    --bs-gutter-y: 1rem;
1886
  }
16848 stevensc 1887
 
16825 efrain 1888
  .g-xl-4,
1889
  .gx-xl-4 {
1890
    --bs-gutter-x: 1.5rem;
1891
  }
16848 stevensc 1892
 
16825 efrain 1893
  .g-xl-4,
1894
  .gy-xl-4 {
1895
    --bs-gutter-y: 1.5rem;
1896
  }
16848 stevensc 1897
 
16825 efrain 1898
  .g-xl-5,
1899
  .gx-xl-5 {
1900
    --bs-gutter-x: 3rem;
1901
  }
16848 stevensc 1902
 
16825 efrain 1903
  .g-xl-5,
1904
  .gy-xl-5 {
1905
    --bs-gutter-y: 3rem;
1906
  }
16848 stevensc 1907
 
16825 efrain 1908
  .g-xl-6,
1909
  .gx-xl-6 {
1910
    --bs-gutter-x: 4.5rem;
1911
  }
16848 stevensc 1912
 
16825 efrain 1913
  .g-xl-6,
1914
  .gy-xl-6 {
1915
    --bs-gutter-y: 4.5rem;
1916
  }
16848 stevensc 1917
 
16825 efrain 1918
  .g-xl-7,
1919
  .gx-xl-7 {
1920
    --bs-gutter-x: 6rem;
1921
  }
16848 stevensc 1922
 
16825 efrain 1923
  .g-xl-7,
1924
  .gy-xl-7 {
1925
    --bs-gutter-y: 6rem;
1926
  }
1927
}
16848 stevensc 1928
 
16825 efrain 1929
@media (min-width: 1400px) {
1930
  .col-xxl {
1931
    flex: 1 0 0%;
1932
  }
16848 stevensc 1933
 
1934
  .row-cols-xxl-auto>* {
16825 efrain 1935
    flex: 0 0 auto;
1936
    width: auto;
1937
  }
16848 stevensc 1938
 
1939
  .row-cols-xxl-1>* {
16825 efrain 1940
    flex: 0 0 auto;
1941
    width: 100%;
1942
  }
16848 stevensc 1943
 
1944
  .row-cols-xxl-2>* {
16825 efrain 1945
    flex: 0 0 auto;
1946
    width: 50%;
1947
  }
16848 stevensc 1948
 
1949
  .row-cols-xxl-3>* {
16825 efrain 1950
    flex: 0 0 auto;
1951
    width: 33.3333333333%;
1952
  }
16848 stevensc 1953
 
1954
  .row-cols-xxl-4>* {
16825 efrain 1955
    flex: 0 0 auto;
1956
    width: 25%;
1957
  }
16848 stevensc 1958
 
1959
  .row-cols-xxl-5>* {
16825 efrain 1960
    flex: 0 0 auto;
1961
    width: 20%;
1962
  }
16848 stevensc 1963
 
1964
  .row-cols-xxl-6>* {
16825 efrain 1965
    flex: 0 0 auto;
1966
    width: 16.6666666667%;
1967
  }
16848 stevensc 1968
 
16825 efrain 1969
  .col-xxl-auto {
1970
    flex: 0 0 auto;
1971
    width: auto;
1972
  }
16848 stevensc 1973
 
16825 efrain 1974
  .col-xxl-1 {
1975
    flex: 0 0 auto;
1976
    width: 8.33333333%;
1977
  }
16848 stevensc 1978
 
16825 efrain 1979
  .col-xxl-2 {
1980
    flex: 0 0 auto;
1981
    width: 16.66666667%;
1982
  }
16848 stevensc 1983
 
16825 efrain 1984
  .col-xxl-3 {
1985
    flex: 0 0 auto;
1986
    width: 25%;
1987
  }
16848 stevensc 1988
 
16825 efrain 1989
  .col-xxl-4 {
1990
    flex: 0 0 auto;
1991
    width: 33.33333333%;
1992
  }
16848 stevensc 1993
 
16825 efrain 1994
  .col-xxl-5 {
1995
    flex: 0 0 auto;
1996
    width: 41.66666667%;
1997
  }
16848 stevensc 1998
 
16825 efrain 1999
  .col-xxl-6 {
2000
    flex: 0 0 auto;
2001
    width: 50%;
2002
  }
16848 stevensc 2003
 
16825 efrain 2004
  .col-xxl-7 {
2005
    flex: 0 0 auto;
2006
    width: 58.33333333%;
2007
  }
16848 stevensc 2008
 
16825 efrain 2009
  .col-xxl-8 {
2010
    flex: 0 0 auto;
2011
    width: 66.66666667%;
2012
  }
16848 stevensc 2013
 
16825 efrain 2014
  .col-xxl-9 {
2015
    flex: 0 0 auto;
2016
    width: 75%;
2017
  }
16848 stevensc 2018
 
16825 efrain 2019
  .col-xxl-10 {
2020
    flex: 0 0 auto;
2021
    width: 83.33333333%;
2022
  }
16848 stevensc 2023
 
16825 efrain 2024
  .col-xxl-11 {
2025
    flex: 0 0 auto;
2026
    width: 91.66666667%;
2027
  }
16848 stevensc 2028
 
16825 efrain 2029
  .col-xxl-12 {
2030
    flex: 0 0 auto;
2031
    width: 100%;
2032
  }
16848 stevensc 2033
 
16825 efrain 2034
  .offset-xxl-0 {
2035
    margin-left: 0;
2036
  }
16848 stevensc 2037
 
16825 efrain 2038
  .offset-xxl-1 {
2039
    margin-left: 8.33333333%;
2040
  }
16848 stevensc 2041
 
16825 efrain 2042
  .offset-xxl-2 {
2043
    margin-left: 16.66666667%;
2044
  }
16848 stevensc 2045
 
16825 efrain 2046
  .offset-xxl-3 {
2047
    margin-left: 25%;
2048
  }
16848 stevensc 2049
 
16825 efrain 2050
  .offset-xxl-4 {
2051
    margin-left: 33.33333333%;
2052
  }
16848 stevensc 2053
 
16825 efrain 2054
  .offset-xxl-5 {
2055
    margin-left: 41.66666667%;
2056
  }
16848 stevensc 2057
 
16825 efrain 2058
  .offset-xxl-6 {
2059
    margin-left: 50%;
2060
  }
16848 stevensc 2061
 
16825 efrain 2062
  .offset-xxl-7 {
2063
    margin-left: 58.33333333%;
2064
  }
16848 stevensc 2065
 
16825 efrain 2066
  .offset-xxl-8 {
2067
    margin-left: 66.66666667%;
2068
  }
16848 stevensc 2069
 
16825 efrain 2070
  .offset-xxl-9 {
2071
    margin-left: 75%;
2072
  }
16848 stevensc 2073
 
16825 efrain 2074
  .offset-xxl-10 {
2075
    margin-left: 83.33333333%;
2076
  }
16848 stevensc 2077
 
16825 efrain 2078
  .offset-xxl-11 {
2079
    margin-left: 91.66666667%;
2080
  }
16848 stevensc 2081
 
16825 efrain 2082
  .g-xxl-0,
2083
  .gx-xxl-0 {
2084
    --bs-gutter-x: 0;
2085
  }
16848 stevensc 2086
 
16825 efrain 2087
  .g-xxl-0,
2088
  .gy-xxl-0 {
2089
    --bs-gutter-y: 0;
2090
  }
16848 stevensc 2091
 
16825 efrain 2092
  .g-xxl-1,
2093
  .gx-xxl-1 {
2094
    --bs-gutter-x: 0.25rem;
2095
  }
16848 stevensc 2096
 
16825 efrain 2097
  .g-xxl-1,
2098
  .gy-xxl-1 {
2099
    --bs-gutter-y: 0.25rem;
2100
  }
16848 stevensc 2101
 
16825 efrain 2102
  .g-xxl-2,
2103
  .gx-xxl-2 {
2104
    --bs-gutter-x: 0.5rem;
2105
  }
16848 stevensc 2106
 
16825 efrain 2107
  .g-xxl-2,
2108
  .gy-xxl-2 {
2109
    --bs-gutter-y: 0.5rem;
2110
  }
16848 stevensc 2111
 
16825 efrain 2112
  .g-xxl-3,
2113
  .gx-xxl-3 {
2114
    --bs-gutter-x: 1rem;
2115
  }
16848 stevensc 2116
 
16825 efrain 2117
  .g-xxl-3,
2118
  .gy-xxl-3 {
2119
    --bs-gutter-y: 1rem;
2120
  }
16848 stevensc 2121
 
16825 efrain 2122
  .g-xxl-4,
2123
  .gx-xxl-4 {
2124
    --bs-gutter-x: 1.5rem;
2125
  }
16848 stevensc 2126
 
16825 efrain 2127
  .g-xxl-4,
2128
  .gy-xxl-4 {
2129
    --bs-gutter-y: 1.5rem;
2130
  }
16848 stevensc 2131
 
16825 efrain 2132
  .g-xxl-5,
2133
  .gx-xxl-5 {
2134
    --bs-gutter-x: 3rem;
2135
  }
16848 stevensc 2136
 
16825 efrain 2137
  .g-xxl-5,
2138
  .gy-xxl-5 {
2139
    --bs-gutter-y: 3rem;
2140
  }
16848 stevensc 2141
 
16825 efrain 2142
  .g-xxl-6,
2143
  .gx-xxl-6 {
2144
    --bs-gutter-x: 4.5rem;
2145
  }
16848 stevensc 2146
 
16825 efrain 2147
  .g-xxl-6,
2148
  .gy-xxl-6 {
2149
    --bs-gutter-y: 4.5rem;
2150
  }
16848 stevensc 2151
 
16825 efrain 2152
  .g-xxl-7,
2153
  .gx-xxl-7 {
2154
    --bs-gutter-x: 6rem;
2155
  }
16848 stevensc 2156
 
16825 efrain 2157
  .g-xxl-7,
2158
  .gy-xxl-7 {
2159
    --bs-gutter-y: 6rem;
2160
  }
2161
}
16848 stevensc 2162
 
16825 efrain 2163
.table {
2164
  --bs-table-color: var(--bs-body-color);
2165
  --bs-table-bg: transparent;
2166
  --bs-table-border-color: var(--bs-border-color);
2167
  --bs-table-accent-bg: transparent;
2168
  --bs-table-striped-color: var(--bs-body-color);
2169
  --bs-table-striped-bg: #e9ecef;
2170
  --bs-table-active-color: var(--bs-body-color);
2171
  --bs-table-active-bg: #dee2e6;
2172
  --bs-table-hover-color: var(--bs-body-color);
2173
  --bs-table-hover-bg: #e9ecef;
2174
  width: 100%;
2175
  margin-bottom: 1rem;
2176
  color: var(--bs-table-color);
2177
  vertical-align: top;
2178
  border-color: var(--bs-table-border-color);
2179
}
16848 stevensc 2180
 
2181
.table> :not(caption)>*>* {
16825 efrain 2182
  padding: 0.85rem 0.85rem;
2183
  background-color: var(--bs-table-bg);
2184
  border-bottom-width: 1px;
2185
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2186
}
16848 stevensc 2187
 
2188
.table>tbody {
16825 efrain 2189
  vertical-align: inherit;
2190
}
16848 stevensc 2191
 
2192
.table>thead {
16825 efrain 2193
  vertical-align: bottom;
2194
}
2195
 
2196
.table-group-divider {
2197
  border-top: 2px solid #e9ecef;
2198
}
2199
 
2200
.caption-top {
2201
  caption-side: top;
2202
}
2203
 
16848 stevensc 2204
.table-sm> :not(caption)>*>* {
16825 efrain 2205
  padding: 0.55rem 0.55rem;
2206
}
2207
 
16848 stevensc 2208
.table-bordered> :not(caption)>* {
16825 efrain 2209
  border-width: 1px 0;
2210
}
16848 stevensc 2211
 
2212
.table-bordered> :not(caption)>*>* {
16825 efrain 2213
  border-width: 0 1px;
2214
}
2215
 
16848 stevensc 2216
.table-borderless> :not(caption)>*>* {
16825 efrain 2217
  border-bottom-width: 0;
2218
}
16848 stevensc 2219
 
2220
.table-borderless> :not(:first-child) {
16825 efrain 2221
  border-top-width: 0;
2222
}
2223
 
16848 stevensc 2224
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2225
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2226
  color: var(--bs-table-striped-color);
2227
}
2228
 
16848 stevensc 2229
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2230
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2231
  color: var(--bs-table-striped-color);
2232
}
2233
 
2234
.table-active {
2235
  --bs-table-accent-bg: var(--bs-table-active-bg);
2236
  color: var(--bs-table-active-color);
2237
}
2238
 
16848 stevensc 2239
.table-hover>tbody>tr:hover>* {
16825 efrain 2240
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2241
  color: var(--bs-table-hover-color);
2242
}
2243
 
2244
.table-primary {
2245
  --bs-table-color: #000;
2246
  --bs-table-bg: #e0e3ff;
2247
  --bs-table-border-color: #cacce6;
2248
  --bs-table-striped-bg: #d5d8f2;
2249
  --bs-table-striped-color: #000;
2250
  --bs-table-active-bg: #cacce6;
2251
  --bs-table-active-color: #000;
2252
  --bs-table-hover-bg: #cfd2ec;
2253
  --bs-table-hover-color: #000;
2254
  color: var(--bs-table-color);
2255
  border-color: var(--bs-table-border-color);
2256
}
2257
 
2258
.table-secondary {
2259
  --bs-table-color: #000;
2260
  --bs-table-bg: #e4e7ec;
2261
  --bs-table-border-color: #cdd0d4;
2262
  --bs-table-striped-bg: #d9dbe0;
2263
  --bs-table-striped-color: #000;
2264
  --bs-table-active-bg: #cdd0d4;
2265
  --bs-table-active-color: #000;
2266
  --bs-table-hover-bg: #d3d6da;
2267
  --bs-table-hover-color: #000;
2268
  color: var(--bs-table-color);
2269
  border-color: var(--bs-table-border-color);
2270
}
2271
 
2272
.table-success {
2273
  --bs-table-color: #000;
2274
  --bs-table-bg: #cdeddb;
2275
  --bs-table-border-color: #b9d5c5;
2276
  --bs-table-striped-bg: #c3e1d0;
2277
  --bs-table-striped-color: #000;
2278
  --bs-table-active-bg: #b9d5c5;
2279
  --bs-table-active-color: #000;
2280
  --bs-table-hover-bg: #bedbcb;
2281
  --bs-table-hover-color: #000;
2282
  color: var(--bs-table-color);
2283
  border-color: var(--bs-table-border-color);
2284
}
2285
 
2286
.table-info {
2287
  --bs-table-color: #000;
2288
  --bs-table-bg: #e0f6f6;
2289
  --bs-table-border-color: #cadddd;
2290
  --bs-table-striped-bg: #d5eaea;
2291
  --bs-table-striped-color: #000;
2292
  --bs-table-active-bg: #cadddd;
2293
  --bs-table-active-color: #000;
2294
  --bs-table-hover-bg: #cfe4e4;
2295
  --bs-table-hover-color: #000;
2296
  color: var(--bs-table-color);
2297
  border-color: var(--bs-table-border-color);
2298
}
2299
 
2300
.table-warning {
2301
  --bs-table-color: #000;
2302
  --bs-table-bg: #fef2cd;
2303
  --bs-table-border-color: #e5dab9;
2304
  --bs-table-striped-bg: #f1e6c3;
2305
  --bs-table-striped-color: #000;
2306
  --bs-table-active-bg: #e5dab9;
2307
  --bs-table-active-color: #000;
2308
  --bs-table-hover-bg: #ebe0be;
2309
  --bs-table-hover-color: #000;
2310
  color: var(--bs-table-color);
2311
  border-color: var(--bs-table-border-color);
2312
}
2313
 
2314
.table-danger {
2315
  --bs-table-color: #000;
2316
  --bs-table-bg: #ffd6e0;
2317
  --bs-table-border-color: #e6c1ca;
2318
  --bs-table-striped-bg: #f2cbd5;
2319
  --bs-table-striped-color: #000;
2320
  --bs-table-active-bg: #e6c1ca;
2321
  --bs-table-active-color: #000;
2322
  --bs-table-hover-bg: #ecc6cf;
2323
  --bs-table-hover-color: #000;
2324
  color: var(--bs-table-color);
2325
  border-color: var(--bs-table-border-color);
2326
}
2327
 
2328
.table-light {
2329
  --bs-table-color: #000;
2330
  --bs-table-bg: #e9ecef;
2331
  --bs-table-border-color: #d2d4d7;
2332
  --bs-table-striped-bg: #dde0e3;
2333
  --bs-table-striped-color: #000;
2334
  --bs-table-active-bg: #d2d4d7;
2335
  --bs-table-active-color: #000;
2336
  --bs-table-hover-bg: #d8dadd;
2337
  --bs-table-hover-color: #000;
2338
  color: var(--bs-table-color);
2339
  border-color: var(--bs-table-border-color);
2340
}
2341
 
2342
.table-dark {
2343
  --bs-table-color: #fff;
2344
  --bs-table-bg: #060c17;
2345
  --bs-table-border-color: #1f242e;
2346
  --bs-table-striped-bg: #121823;
2347
  --bs-table-striped-color: #fff;
2348
  --bs-table-active-bg: #1f242e;
2349
  --bs-table-active-color: #fff;
2350
  --bs-table-hover-bg: #191e28;
2351
  --bs-table-hover-color: #fff;
2352
  color: var(--bs-table-color);
2353
  border-color: var(--bs-table-border-color);
2354
}
2355
 
2356
.table-responsive {
2357
  overflow-x: auto;
2358
  -webkit-overflow-scrolling: touch;
2359
}
2360
 
2361
@media (max-width: 575.98px) {
2362
  .table-responsive-sm {
2363
    overflow-x: auto;
2364
    -webkit-overflow-scrolling: touch;
2365
  }
2366
}
16848 stevensc 2367
 
16825 efrain 2368
@media (max-width: 767.98px) {
2369
  .table-responsive-md {
2370
    overflow-x: auto;
2371
    -webkit-overflow-scrolling: touch;
2372
  }
2373
}
16848 stevensc 2374
 
16825 efrain 2375
@media (max-width: 991.98px) {
2376
  .table-responsive-lg {
2377
    overflow-x: auto;
2378
    -webkit-overflow-scrolling: touch;
2379
  }
2380
}
16848 stevensc 2381
 
16825 efrain 2382
@media (max-width: 1199.98px) {
2383
  .table-responsive-xl {
2384
    overflow-x: auto;
2385
    -webkit-overflow-scrolling: touch;
2386
  }
2387
}
16848 stevensc 2388
 
16825 efrain 2389
@media (max-width: 1399.98px) {
2390
  .table-responsive-xxl {
2391
    overflow-x: auto;
2392
    -webkit-overflow-scrolling: touch;
2393
  }
2394
}
16848 stevensc 2395
 
16825 efrain 2396
.form-label {
2397
  margin-bottom: 0.5rem;
2398
}
2399
 
2400
.col-form-label {
2401
  padding-top: calc(0.469rem + 1px);
2402
  padding-bottom: calc(0.469rem + 1px);
2403
  margin-bottom: 0;
2404
  font-size: inherit;
2405
  line-height: 1.5;
2406
}
2407
 
2408
.col-form-label-lg {
2409
  padding-top: calc(0.5rem + 1px);
2410
  padding-bottom: calc(0.5rem + 1px);
2411
  font-size: 1rem;
2412
}
2413
 
2414
.col-form-label-sm {
2415
  padding-top: calc(0.391rem + 1px);
2416
  padding-bottom: calc(0.391rem + 1px);
2417
  font-size: 0.812rem;
2418
}
2419
 
2420
.form-text {
2421
  margin-top: 0.25rem;
2422
  font-size: 0.875em;
2423
  color: #7987a1;
2424
}
2425
 
16848 stevensc 2426
.form-control,
2427
.typeahead.tt-input,
2428
.typeahead.tt-hint,
2429
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2430
  display: block;
2431
  width: 100%;
2432
  padding: 0.469rem 0.8rem;
2433
  font-size: 0.875rem;
2434
  font-weight: 400;
2435
  line-height: 1.5;
2436
  color: #000;
2437
  background-color: #fff;
2438
  background-clip: padding-box;
2439
  border: 1px solid #e9ecef;
2440
  appearance: none;
2441
  border-radius: 0.25rem;
2442
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2443
}
16848 stevensc 2444
 
16825 efrain 2445
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2446
 
2447
  .form-control,
2448
  .typeahead.tt-input,
2449
  .typeahead.tt-hint,
2450
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2451
    transition: none;
2452
  }
2453
}
16848 stevensc 2454
 
2455
.form-control[type=file],
2456
[type=file].typeahead.tt-input,
2457
[type=file].typeahead.tt-hint,
2458
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2459
  overflow: hidden;
2460
}
16848 stevensc 2461
 
2462
.form-control[type=file]:not(:disabled):not([readonly]),
2463
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2464
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2465
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2466
  cursor: pointer;
2467
}
16848 stevensc 2468
 
2469
.form-control:focus,
2470
.typeahead.tt-input:focus,
2471
.typeahead.tt-hint:focus,
2472
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2473
  color: #000;
2474
  background-color: #fff;
2475
  border-color: #cbd1db;
2476
  outline: 0;
2477
  box-shadow: none;
2478
}
16848 stevensc 2479
 
2480
.form-control::-webkit-date-and-time-value,
2481
.typeahead.tt-input::-webkit-date-and-time-value,
2482
.typeahead.tt-hint::-webkit-date-and-time-value,
2483
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2484
  height: 1.5em;
2485
}
16848 stevensc 2486
 
2487
.form-control::placeholder,
2488
.typeahead.tt-input::placeholder,
2489
.typeahead.tt-hint::placeholder,
2490
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2491
  color: #aeb7c5;
2492
  opacity: 1;
2493
}
16848 stevensc 2494
 
2495
.form-control:disabled,
2496
.typeahead.tt-input:disabled,
2497
.typeahead.tt-hint:disabled,
2498
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2499
  background-color: #e9ecef;
2500
  opacity: 1;
2501
}
16848 stevensc 2502
 
2503
.form-control::file-selector-button,
2504
.typeahead.tt-input::file-selector-button,
2505
.typeahead.tt-hint::file-selector-button,
2506
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2507
  padding: 0.469rem 0.8rem;
2508
  margin: -0.469rem -0.8rem;
2509
  margin-inline-end: 0.8rem;
2510
  color: #000;
2511
  background-color: #f8f9fa;
2512
  pointer-events: none;
2513
  border-color: inherit;
2514
  border-style: solid;
2515
  border-width: 0;
2516
  border-inline-end-width: 1px;
2517
  border-radius: 0;
2518
  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;
2519
}
16848 stevensc 2520
 
16825 efrain 2521
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2522
 
2523
  .form-control::file-selector-button,
2524
  .typeahead.tt-input::file-selector-button,
2525
  .typeahead.tt-hint::file-selector-button,
2526
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2527
    transition: none;
2528
  }
2529
}
16848 stevensc 2530
 
2531
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2532
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2533
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2534
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2535
  background-color: #ecedee;
2536
}
2537
 
2538
.form-control-plaintext {
2539
  display: block;
2540
  width: 100%;
2541
  padding: 0.469rem 0;
2542
  margin-bottom: 0;
2543
  line-height: 1.5;
2544
  color: #000;
2545
  background-color: transparent;
2546
  border: solid transparent;
2547
  border-width: 1px 0;
2548
}
16848 stevensc 2549
 
16825 efrain 2550
.form-control-plaintext:focus {
2551
  outline: 0;
2552
}
16848 stevensc 2553
 
2554
.form-control-plaintext.form-control-sm,
2555
.form-control-plaintext.form-control-lg {
16825 efrain 2556
  padding-right: 0;
2557
  padding-left: 0;
2558
}
2559
 
2560
.form-control-sm {
2561
  min-height: calc(1.5em + 0.782rem + 2px);
2562
  padding: 0.391rem 0.8rem;
2563
  font-size: 0.812rem;
2564
  border-radius: 0.25rem;
2565
}
16848 stevensc 2566
 
16825 efrain 2567
.form-control-sm::file-selector-button {
2568
  padding: 0.391rem 0.8rem;
2569
  margin: -0.391rem -0.8rem;
2570
  margin-inline-end: 0.8rem;
2571
}
2572
 
2573
.form-control-lg {
2574
  min-height: calc(1.5em + 1rem + 2px);
2575
  padding: 0.5rem 0.8rem;
2576
  font-size: 1rem;
2577
  border-radius: 0.25rem;
2578
}
16848 stevensc 2579
 
16825 efrain 2580
.form-control-lg::file-selector-button {
2581
  padding: 0.5rem 0.8rem;
2582
  margin: -0.5rem -0.8rem;
2583
  margin-inline-end: 0.8rem;
2584
}
2585
 
16848 stevensc 2586
textarea.form-control,
2587
textarea.typeahead.tt-input,
2588
textarea.typeahead.tt-hint,
2589
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2590
  min-height: calc(1.5em + 0.938rem + 2px);
2591
}
16848 stevensc 2592
 
16825 efrain 2593
textarea.form-control-sm {
2594
  min-height: calc(1.5em + 0.782rem + 2px);
2595
}
16848 stevensc 2596
 
16825 efrain 2597
textarea.form-control-lg {
2598
  min-height: calc(1.5em + 1rem + 2px);
2599
}
2600
 
2601
.form-control-color {
2602
  width: 3rem;
2603
  height: calc(1.5em + 0.938rem + 2px);
2604
  padding: 0.469rem;
2605
}
16848 stevensc 2606
 
16825 efrain 2607
.form-control-color:not(:disabled):not([readonly]) {
2608
  cursor: pointer;
2609
}
16848 stevensc 2610
 
16825 efrain 2611
.form-control-color::-moz-color-swatch {
2612
  border: 0 !important;
2613
  border-radius: 0.25rem;
2614
}
16848 stevensc 2615
 
16825 efrain 2616
.form-control-color::-webkit-color-swatch {
2617
  border-radius: 0.25rem;
2618
}
16848 stevensc 2619
 
16825 efrain 2620
.form-control-color.form-control-sm {
2621
  height: calc(1.5em + 0.782rem + 2px);
2622
}
16848 stevensc 2623
 
16825 efrain 2624
.form-control-color.form-control-lg {
2625
  height: calc(1.5em + 1rem + 2px);
2626
}
2627
 
2628
.form-select {
2629
  display: block;
2630
  width: 100%;
2631
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2632
  -moz-padding-start: calc(0.8rem - 3px);
2633
  font-size: 0.875rem;
2634
  font-weight: 400;
2635
  line-height: 1.5;
2636
  color: #000;
2637
  background-color: #fff;
2638
  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");
2639
  background-repeat: no-repeat;
2640
  background-position: right 0.8rem center;
2641
  background-size: 16px 12px;
2642
  border: 1px solid #e9ecef;
2643
  border-radius: 0.25rem;
2644
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2645
  appearance: none;
2646
}
16848 stevensc 2647
 
16825 efrain 2648
@media (prefers-reduced-motion: reduce) {
2649
  .form-select {
2650
    transition: none;
2651
  }
2652
}
16848 stevensc 2653
 
16825 efrain 2654
.form-select:focus {
2655
  border-color: #cbd1db;
2656
  outline: 0;
2657
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2658
}
16848 stevensc 2659
 
2660
.form-select[multiple],
2661
.form-select[size]:not([size="1"]) {
16825 efrain 2662
  padding-right: 0.8rem;
2663
  background-image: none;
2664
}
16848 stevensc 2665
 
16825 efrain 2666
.form-select:disabled {
2667
  background-color: #e9ecef;
2668
}
16848 stevensc 2669
 
16825 efrain 2670
.form-select:-moz-focusring {
2671
  color: transparent;
2672
  text-shadow: 0 0 0 #000;
2673
}
2674
 
2675
.form-select-sm {
2676
  padding-top: 0.391rem;
2677
  padding-bottom: 0.391rem;
2678
  padding-left: 0.8rem;
2679
  font-size: 0.812rem;
2680
  border-radius: 0.25rem;
2681
}
2682
 
2683
.form-select-lg {
2684
  padding-top: 0.5rem;
2685
  padding-bottom: 0.5rem;
2686
  padding-left: 0.8rem;
2687
  font-size: 1rem;
2688
  border-radius: 0.25rem;
2689
}
2690
 
2691
.form-check {
2692
  display: block;
2693
  min-height: 1.3125rem;
2694
  padding-left: 1.8em;
2695
  margin-bottom: 0.125rem;
2696
}
16848 stevensc 2697
 
16825 efrain 2698
.form-check .form-check-input {
2699
  float: left;
2700
  margin-left: -1.8em;
2701
}
2702
 
2703
.form-check-reverse {
2704
  padding-right: 1.8em;
2705
  padding-left: 0;
2706
  text-align: right;
2707
}
16848 stevensc 2708
 
16825 efrain 2709
.form-check-reverse .form-check-input {
2710
  float: right;
2711
  margin-right: -1.8em;
2712
  margin-left: 0;
2713
}
2714
 
2715
.form-check-input {
2716
  width: 1.3em;
2717
  height: 1.3em;
2718
  margin-top: 0.1em;
2719
  vertical-align: top;
2720
  background-color: #fff;
2721
  background-repeat: no-repeat;
2722
  background-position: center;
2723
  background-size: contain;
2724
  border: 1px solid rgba(0, 0, 0, 0.25);
2725
  appearance: none;
2726
  print-color-adjust: exact;
2727
}
16848 stevensc 2728
 
16825 efrain 2729
.form-check-input[type=checkbox] {
2730
  border-radius: 0.15em;
2731
}
16848 stevensc 2732
 
16825 efrain 2733
.form-check-input[type=radio] {
2734
  border-radius: 50%;
2735
}
16848 stevensc 2736
 
16825 efrain 2737
.form-check-input:active {
2738
  filter: brightness(90%);
2739
}
16848 stevensc 2740
 
16825 efrain 2741
.form-check-input:focus {
2742
  border-color: #cbd1db;
2743
  outline: 0;
2744
  box-shadow: none;
2745
}
16848 stevensc 2746
 
16825 efrain 2747
.form-check-input:checked {
2748
  background-color: #6571ff;
2749
  border-color: #6571ff;
2750
}
16848 stevensc 2751
 
16825 efrain 2752
.form-check-input:checked[type=checkbox] {
2753
  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");
2754
}
16848 stevensc 2755
 
16825 efrain 2756
.form-check-input:checked[type=radio] {
2757
  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");
2758
}
16848 stevensc 2759
 
16825 efrain 2760
.form-check-input[type=checkbox]:indeterminate {
2761
  background-color: #6571ff;
2762
  border-color: #6571ff;
2763
  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");
2764
}
16848 stevensc 2765
 
16825 efrain 2766
.form-check-input:disabled {
2767
  pointer-events: none;
2768
  filter: none;
2769
  opacity: 0.5;
2770
}
16848 stevensc 2771
 
2772
.form-check-input[disabled]~.form-check-label,
2773
.form-check-input:disabled~.form-check-label {
16825 efrain 2774
  cursor: default;
2775
  opacity: 0.5;
2776
}
2777
 
2778
.form-switch {
2779
  padding-left: 2.5em;
2780
}
16848 stevensc 2781
 
16825 efrain 2782
.form-switch .form-check-input {
2783
  width: 2em;
2784
  margin-left: -2.5em;
2785
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
2786
  background-position: left center;
2787
  border-radius: 2em;
2788
  transition: background-position 0.15s ease-in-out;
2789
}
16848 stevensc 2790
 
16825 efrain 2791
@media (prefers-reduced-motion: reduce) {
2792
  .form-switch .form-check-input {
2793
    transition: none;
2794
  }
2795
}
16848 stevensc 2796
 
16825 efrain 2797
.form-switch .form-check-input:focus {
2798
  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");
2799
}
16848 stevensc 2800
 
16825 efrain 2801
.form-switch .form-check-input:checked {
2802
  background-position: right center;
2803
  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");
2804
}
16848 stevensc 2805
 
16825 efrain 2806
.form-switch.form-check-reverse {
2807
  padding-right: 2.5em;
2808
  padding-left: 0;
2809
}
16848 stevensc 2810
 
16825 efrain 2811
.form-switch.form-check-reverse .form-check-input {
2812
  margin-right: -2.5em;
2813
  margin-left: 0;
2814
}
2815
 
2816
.form-check-inline {
2817
  display: inline-block;
2818
  margin-right: 1rem;
2819
}
2820
 
2821
.btn-check {
2822
  position: absolute;
2823
  clip: rect(0, 0, 0, 0);
2824
  pointer-events: none;
2825
}
16848 stevensc 2826
 
2827
.btn-check[disabled]+.btn,
2828
.wizard>.actions .btn-check[disabled]+a,
2829
div.tox .btn-check[disabled]+.tox-button,
2830
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2831
.fc .btn-check[disabled]+.fc-button-primary,
2832
.btn-check:disabled+.btn,
2833
.wizard>.actions .btn-check:disabled+a,
2834
div.tox .btn-check:disabled+.tox-button,
2835
.swal2-popup .swal2-actions .btn-check:disabled+button,
2836
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2837
  pointer-events: none;
2838
  filter: none;
2839
  opacity: 0.65;
2840
}
2841
 
2842
.form-range {
2843
  width: 100%;
2844
  height: 1rem;
2845
  padding: 0;
2846
  background-color: transparent;
2847
  appearance: none;
2848
}
16848 stevensc 2849
 
16825 efrain 2850
.form-range:focus {
2851
  outline: 0;
2852
}
16848 stevensc 2853
 
16825 efrain 2854
.form-range:focus::-webkit-slider-thumb {
2855
  box-shadow: 0 0 0 1px #f9fafb, none;
2856
}
16848 stevensc 2857
 
16825 efrain 2858
.form-range:focus::-moz-range-thumb {
2859
  box-shadow: 0 0 0 1px #f9fafb, none;
2860
}
16848 stevensc 2861
 
16825 efrain 2862
.form-range::-moz-focus-outer {
2863
  border: 0;
2864
}
16848 stevensc 2865
 
16825 efrain 2866
.form-range::-webkit-slider-thumb {
2867
  width: 1rem;
2868
  height: 1rem;
2869
  margin-top: -0.25rem;
2870
  background-color: #6571ff;
2871
  border: 0;
2872
  border-radius: 1rem;
2873
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2874
  appearance: none;
2875
}
16848 stevensc 2876
 
16825 efrain 2877
@media (prefers-reduced-motion: reduce) {
2878
  .form-range::-webkit-slider-thumb {
2879
    transition: none;
2880
  }
2881
}
16848 stevensc 2882
 
16825 efrain 2883
.form-range::-webkit-slider-thumb:active {
2884
  background-color: #d1d4ff;
2885
}
16848 stevensc 2886
 
16825 efrain 2887
.form-range::-webkit-slider-runnable-track {
2888
  width: 100%;
2889
  height: 0.5rem;
2890
  color: transparent;
2891
  cursor: pointer;
2892
  background-color: #dee2e6;
2893
  border-color: transparent;
2894
  border-radius: 1rem;
2895
}
16848 stevensc 2896
 
16825 efrain 2897
.form-range::-moz-range-thumb {
2898
  width: 1rem;
2899
  height: 1rem;
2900
  background-color: #6571ff;
2901
  border: 0;
2902
  border-radius: 1rem;
2903
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2904
  appearance: none;
2905
}
16848 stevensc 2906
 
16825 efrain 2907
@media (prefers-reduced-motion: reduce) {
2908
  .form-range::-moz-range-thumb {
2909
    transition: none;
2910
  }
2911
}
16848 stevensc 2912
 
16825 efrain 2913
.form-range::-moz-range-thumb:active {
2914
  background-color: #d1d4ff;
2915
}
16848 stevensc 2916
 
16825 efrain 2917
.form-range::-moz-range-track {
2918
  width: 100%;
2919
  height: 0.5rem;
2920
  color: transparent;
2921
  cursor: pointer;
2922
  background-color: #dee2e6;
2923
  border-color: transparent;
2924
  border-radius: 1rem;
2925
}
16848 stevensc 2926
 
16825 efrain 2927
.form-range:disabled {
2928
  pointer-events: none;
2929
}
16848 stevensc 2930
 
16825 efrain 2931
.form-range:disabled::-webkit-slider-thumb {
2932
  background-color: #aeb7c5;
2933
}
16848 stevensc 2934
 
16825 efrain 2935
.form-range:disabled::-moz-range-thumb {
2936
  background-color: #aeb7c5;
2937
}
2938
 
2939
.form-floating {
2940
  position: relative;
2941
}
16848 stevensc 2942
 
2943
.form-floating>.form-control,
2944
.form-floating>.typeahead.tt-input,
2945
.form-floating>.typeahead.tt-hint,
2946
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2947
.form-floating>.form-control-plaintext,
2948
.form-floating>.form-select {
16825 efrain 2949
  height: calc(3.5rem + 2px);
2950
  line-height: 1.25;
2951
}
16848 stevensc 2952
 
2953
.form-floating>label {
16825 efrain 2954
  position: absolute;
2955
  top: 0;
2956
  left: 0;
2957
  width: 100%;
2958
  height: 100%;
2959
  padding: 1rem 0.8rem;
2960
  overflow: hidden;
2961
  text-align: start;
2962
  text-overflow: ellipsis;
2963
  white-space: nowrap;
2964
  pointer-events: none;
2965
  border: 1px solid transparent;
2966
  transform-origin: 0 0;
2967
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2968
}
16848 stevensc 2969
 
16825 efrain 2970
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2971
  .form-floating>label {
16825 efrain 2972
    transition: none;
2973
  }
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 {
16825 efrain 2981
  padding: 1rem 0.8rem;
2982
}
16848 stevensc 2983
 
2984
.form-floating>.form-control::placeholder,
2985
.form-floating>.typeahead.tt-input::placeholder,
2986
.form-floating>.typeahead.tt-hint::placeholder,
2987
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2988
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2989
  color: transparent;
2990
}
16848 stevensc 2991
 
2992
.form-floating>.form-control:focus,
2993
.form-floating>.typeahead.tt-input:focus,
2994
.form-floating>.typeahead.tt-hint:focus,
2995
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2996
.form-floating>.form-control:not(:placeholder-shown),
2997
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2998
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
2999
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
3000
.form-floating>.form-control-plaintext:focus,
3001
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 3002
  padding-top: 1.625rem;
3003
  padding-bottom: 0.625rem;
3004
}
16848 stevensc 3005
 
3006
.form-floating>.form-control:-webkit-autofill,
3007
.form-floating>.typeahead.tt-input:-webkit-autofill,
3008
.form-floating>.typeahead.tt-hint:-webkit-autofill,
3009
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
3010
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3011
  padding-top: 1.625rem;
3012
  padding-bottom: 0.625rem;
3013
}
16848 stevensc 3014
 
3015
.form-floating>.form-select {
16825 efrain 3016
  padding-top: 1.625rem;
3017
  padding-bottom: 0.625rem;
3018
}
16848 stevensc 3019
 
3020
.form-floating>.form-control:focus~label,
3021
.form-floating>.typeahead.tt-input:focus~label,
3022
.form-floating>.typeahead.tt-hint:focus~label,
3023
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3024
.form-floating>.form-control:not(:placeholder-shown)~label,
3025
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3026
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3027
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3028
.form-floating>.form-control-plaintext~label,
3029
.form-floating>.form-select~label {
16825 efrain 3030
  opacity: 0.65;
3031
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3032
}
16848 stevensc 3033
 
3034
.form-floating>.form-control:-webkit-autofill~label,
3035
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3036
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3037
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3038
  opacity: 0.65;
3039
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3040
}
16848 stevensc 3041
 
3042
.form-floating>.form-control-plaintext~label {
16825 efrain 3043
  border-width: 1px 0;
3044
}
3045
 
3046
.input-group {
3047
  position: relative;
3048
  display: flex;
3049
  flex-wrap: wrap;
3050
  align-items: stretch;
3051
  width: 100%;
3052
}
16848 stevensc 3053
 
3054
.input-group>.form-control,
3055
.input-group>.typeahead.tt-input,
3056
.input-group>.typeahead.tt-hint,
3057
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3058
.input-group>.form-select,
3059
.input-group>.form-floating {
16825 efrain 3060
  position: relative;
3061
  flex: 1 1 auto;
3062
  width: 1%;
3063
  min-width: 0;
3064
}
16848 stevensc 3065
 
3066
.input-group>.form-control:focus,
3067
.input-group>.typeahead.tt-input:focus,
3068
.input-group>.typeahead.tt-hint:focus,
3069
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3070
.input-group>.form-select:focus,
3071
.input-group>.form-floating:focus-within {
16825 efrain 3072
  z-index: 5;
3073
}
16848 stevensc 3074
 
3075
.input-group .btn,
3076
.input-group .wizard>.actions a,
3077
.wizard>.actions .input-group a,
3078
.input-group div.tox .tox-button,
3079
div.tox .input-group .tox-button,
3080
.input-group .swal2-popup .swal2-actions button,
3081
.swal2-popup .swal2-actions .input-group button,
3082
.input-group .fc .fc-button-primary,
3083
.fc .input-group .fc-button-primary {
16825 efrain 3084
  position: relative;
3085
  z-index: 2;
3086
}
16848 stevensc 3087
 
3088
.input-group .btn:focus,
3089
.input-group .wizard>.actions a:focus,
3090
.wizard>.actions .input-group a:focus,
3091
.input-group div.tox .tox-button:focus,
3092
div.tox .input-group .tox-button:focus,
3093
.input-group .swal2-popup .swal2-actions button:focus,
3094
.swal2-popup .swal2-actions .input-group button:focus,
3095
.input-group .fc .fc-button-primary:focus,
3096
.fc .input-group .fc-button-primary:focus {
16825 efrain 3097
  z-index: 5;
3098
}
3099
 
3100
.input-group-text {
3101
  display: flex;
3102
  align-items: center;
3103
  padding: 0.469rem 0.563rem;
3104
  font-size: 0.875rem;
3105
  font-weight: 400;
3106
  line-height: 1.5;
3107
  color: #000;
3108
  text-align: center;
3109
  white-space: nowrap;
3110
  background-color: #f8f9fa;
3111
  border: 1px solid #e9ecef;
3112
  border-radius: 0.25rem;
3113
}
3114
 
16848 stevensc 3115
.input-group-lg>.form-control,
3116
.input-group-lg>.typeahead.tt-input,
3117
.input-group-lg>.typeahead.tt-hint,
3118
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3119
.input-group-lg>.form-select,
3120
.input-group-lg>.input-group-text,
3121
.input-group-lg>.btn,
3122
.wizard>.actions .input-group-lg>a,
3123
div.tox .input-group-lg>.tox-button,
3124
.swal2-popup .swal2-actions .input-group-lg>button,
3125
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3126
  padding: 0.5rem 0.8rem;
3127
  font-size: 1rem;
3128
  border-radius: 0.25rem;
3129
}
3130
 
16848 stevensc 3131
.input-group-sm>.form-control,
3132
.input-group-sm>.typeahead.tt-input,
3133
.input-group-sm>.typeahead.tt-hint,
3134
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3135
.input-group-sm>.form-select,
3136
.input-group-sm>.input-group-text,
3137
.input-group-sm>.btn,
3138
.wizard>.actions .input-group-sm>a,
3139
div.tox .input-group-sm>.tox-button,
3140
.swal2-popup .swal2-actions .input-group-sm>button,
3141
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3142
  padding: 0.391rem 0.8rem;
3143
  font-size: 0.812rem;
3144
  border-radius: 0.25rem;
3145
}
3146
 
16848 stevensc 3147
.input-group-lg>.form-select,
3148
.input-group-sm>.form-select {
16825 efrain 3149
  padding-right: 3.2rem;
3150
}
3151
 
16848 stevensc 3152
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3153
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3154
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3155
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3156
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3157
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3158
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3159
  border-top-right-radius: 0;
3160
  border-bottom-right-radius: 0;
3161
}
16848 stevensc 3162
 
3163
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3164
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3165
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3166
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3167
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3168
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3169
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3170
  border-top-right-radius: 0;
3171
  border-bottom-right-radius: 0;
3172
}
16848 stevensc 3173
 
3174
.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 3175
  margin-left: -1px;
3176
  border-top-left-radius: 0;
3177
  border-bottom-left-radius: 0;
3178
}
16848 stevensc 3179
 
3180
.input-group>.form-floating:not(:first-child)>.form-control,
3181
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3182
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3183
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3184
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3185
  border-top-left-radius: 0;
3186
  border-bottom-left-radius: 0;
3187
}
3188
 
3189
.valid-feedback {
3190
  display: none;
3191
  width: 100%;
3192
  margin-top: 0.25rem;
3193
  font-size: 0.875em;
3194
  color: #05a34a;
3195
}
3196
 
3197
.valid-tooltip {
3198
  position: absolute;
3199
  top: 100%;
3200
  z-index: 5;
3201
  display: none;
3202
  max-width: 100%;
3203
  padding: 0.25rem 0.5rem;
3204
  margin-top: 0.1rem;
3205
  font-size: 0.812rem;
3206
  color: #fff;
3207
  background-color: rgba(5, 163, 74, 0.9);
3208
  border-radius: 0.25rem;
3209
}
3210
 
16848 stevensc 3211
.was-validated :valid~.valid-feedback,
3212
.was-validated :valid~.valid-tooltip,
3213
.is-valid~.valid-feedback,
3214
.is-valid~.valid-tooltip {
16825 efrain 3215
  display: block;
3216
}
3217
 
16848 stevensc 3218
.was-validated .form-control:valid,
3219
.was-validated .typeahead.tt-input:valid,
3220
.was-validated .typeahead.tt-hint:valid,
3221
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3222
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3223
.form-control.is-valid,
3224
.is-valid.typeahead.tt-input,
3225
.is-valid.typeahead.tt-hint,
3226
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3227
  border-color: #05a34a;
3228
  padding-right: calc(1.5em + 0.938rem);
3229
  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");
3230
  background-repeat: no-repeat;
3231
  background-position: right calc(0.375em + 0.2345rem) center;
3232
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3233
}
16848 stevensc 3234
 
3235
.was-validated .form-control:valid:focus,
3236
.was-validated .typeahead.tt-input:valid:focus,
3237
.was-validated .typeahead.tt-hint:valid:focus,
3238
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3239
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3240
.form-control.is-valid:focus,
3241
.is-valid.typeahead.tt-input:focus,
3242
.is-valid.typeahead.tt-hint:focus,
3243
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3244
  border-color: #05a34a;
3245
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3246
}
3247
 
16848 stevensc 3248
.was-validated textarea.form-control:valid,
3249
.was-validated textarea.typeahead.tt-input:valid,
3250
.was-validated textarea.typeahead.tt-hint:valid,
3251
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3252
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3253
textarea.form-control.is-valid,
3254
textarea.is-valid.typeahead.tt-input,
3255
textarea.is-valid.typeahead.tt-hint,
3256
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3257
  padding-right: calc(1.5em + 0.938rem);
3258
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3259
}
3260
 
16848 stevensc 3261
.was-validated .form-select:valid,
3262
.form-select.is-valid {
16825 efrain 3263
  border-color: #05a34a;
3264
}
16848 stevensc 3265
 
3266
.was-validated .form-select:valid:not([multiple]):not([size]),
3267
.was-validated .form-select:valid:not([multiple])[size="1"],
3268
.form-select.is-valid:not([multiple]):not([size]),
3269
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3270
  padding-right: 4.4rem;
3271
  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");
3272
  background-position: right 0.8rem center, center right 2.4rem;
3273
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3274
}
16848 stevensc 3275
 
3276
.was-validated .form-select:valid:focus,
3277
.form-select.is-valid:focus {
16825 efrain 3278
  border-color: #05a34a;
3279
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3280
}
3281
 
16848 stevensc 3282
.was-validated .form-control-color:valid,
3283
.form-control-color.is-valid {
16825 efrain 3284
  width: calc(3rem + calc(1.5em + 0.938rem));
3285
}
3286
 
16848 stevensc 3287
.was-validated .form-check-input:valid,
3288
.form-check-input.is-valid {
16825 efrain 3289
  border-color: #05a34a;
3290
}
16848 stevensc 3291
 
3292
.was-validated .form-check-input:valid:checked,
3293
.form-check-input.is-valid:checked {
16825 efrain 3294
  background-color: #05a34a;
3295
}
16848 stevensc 3296
 
3297
.was-validated .form-check-input:valid:focus,
3298
.form-check-input.is-valid:focus {
16825 efrain 3299
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3300
}
16848 stevensc 3301
 
3302
.was-validated .form-check-input:valid~.form-check-label,
3303
.form-check-input.is-valid~.form-check-label {
16825 efrain 3304
  color: #05a34a;
3305
}
3306
 
16848 stevensc 3307
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3308
  margin-left: 0.5em;
3309
}
3310
 
16848 stevensc 3311
.was-validated .input-group>.form-control:not(:focus):valid,
3312
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3313
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3314
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3315
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3316
.input-group>.form-control:not(:focus).is-valid,
3317
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3318
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3319
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3320
.was-validated .input-group>.form-select:not(:focus):valid,
3321
.input-group>.form-select:not(:focus).is-valid,
3322
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3323
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3324
  z-index: 3;
3325
}
3326
 
3327
.invalid-feedback {
3328
  display: none;
3329
  width: 100%;
3330
  margin-top: 0.25rem;
3331
  font-size: 0.875em;
3332
  color: #ff3366;
3333
}
3334
 
3335
.invalid-tooltip {
3336
  position: absolute;
3337
  top: 100%;
3338
  z-index: 5;
3339
  display: none;
3340
  max-width: 100%;
3341
  padding: 0.25rem 0.5rem;
3342
  margin-top: 0.1rem;
3343
  font-size: 0.812rem;
3344
  color: #fff;
3345
  background-color: rgba(255, 51, 102, 0.9);
3346
  border-radius: 0.25rem;
3347
}
3348
 
16848 stevensc 3349
.was-validated :invalid~.invalid-feedback,
3350
.was-validated :invalid~.invalid-tooltip,
3351
.is-invalid~.invalid-feedback,
3352
.is-invalid~.invalid-tooltip {
16825 efrain 3353
  display: block;
3354
}
3355
 
16848 stevensc 3356
.was-validated .form-control:invalid,
3357
.was-validated .typeahead.tt-input:invalid,
3358
.was-validated .typeahead.tt-hint:invalid,
3359
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3360
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3361
.form-control.is-invalid,
3362
.is-invalid.typeahead.tt-input,
3363
.is-invalid.typeahead.tt-hint,
3364
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3365
  border-color: #ff3366;
3366
  padding-right: calc(1.5em + 0.938rem);
3367
  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");
3368
  background-repeat: no-repeat;
3369
  background-position: right calc(0.375em + 0.2345rem) center;
3370
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3371
}
16848 stevensc 3372
 
3373
.was-validated .form-control:invalid:focus,
3374
.was-validated .typeahead.tt-input:invalid:focus,
3375
.was-validated .typeahead.tt-hint:invalid:focus,
3376
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3377
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3378
.form-control.is-invalid:focus,
3379
.is-invalid.typeahead.tt-input:focus,
3380
.is-invalid.typeahead.tt-hint:focus,
3381
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3382
  border-color: #ff3366;
3383
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3384
}
3385
 
16848 stevensc 3386
.was-validated textarea.form-control:invalid,
3387
.was-validated textarea.typeahead.tt-input:invalid,
3388
.was-validated textarea.typeahead.tt-hint:invalid,
3389
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3390
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3391
textarea.form-control.is-invalid,
3392
textarea.is-invalid.typeahead.tt-input,
3393
textarea.is-invalid.typeahead.tt-hint,
3394
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3395
  padding-right: calc(1.5em + 0.938rem);
3396
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3397
}
3398
 
16848 stevensc 3399
.was-validated .form-select:invalid,
3400
.form-select.is-invalid {
16825 efrain 3401
  border-color: #ff3366;
3402
}
16848 stevensc 3403
 
3404
.was-validated .form-select:invalid:not([multiple]):not([size]),
3405
.was-validated .form-select:invalid:not([multiple])[size="1"],
3406
.form-select.is-invalid:not([multiple]):not([size]),
3407
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3408
  padding-right: 4.4rem;
3409
  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");
3410
  background-position: right 0.8rem center, center right 2.4rem;
3411
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3412
}
16848 stevensc 3413
 
3414
.was-validated .form-select:invalid:focus,
3415
.form-select.is-invalid:focus {
16825 efrain 3416
  border-color: #ff3366;
3417
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3418
}
3419
 
16848 stevensc 3420
.was-validated .form-control-color:invalid,
3421
.form-control-color.is-invalid {
16825 efrain 3422
  width: calc(3rem + calc(1.5em + 0.938rem));
3423
}
3424
 
16848 stevensc 3425
.was-validated .form-check-input:invalid,
3426
.form-check-input.is-invalid {
16825 efrain 3427
  border-color: #ff3366;
3428
}
16848 stevensc 3429
 
3430
.was-validated .form-check-input:invalid:checked,
3431
.form-check-input.is-invalid:checked {
16825 efrain 3432
  background-color: #ff3366;
3433
}
16848 stevensc 3434
 
3435
.was-validated .form-check-input:invalid:focus,
3436
.form-check-input.is-invalid:focus {
16825 efrain 3437
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3438
}
16848 stevensc 3439
 
3440
.was-validated .form-check-input:invalid~.form-check-label,
3441
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3442
  color: #ff3366;
3443
}
3444
 
16848 stevensc 3445
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3446
  margin-left: 0.5em;
3447
}
3448
 
16848 stevensc 3449
.was-validated .input-group>.form-control:not(:focus):invalid,
3450
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3451
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3452
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3453
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3454
.input-group>.form-control:not(:focus).is-invalid,
3455
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3456
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3457
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3458
.was-validated .input-group>.form-select:not(:focus):invalid,
3459
.input-group>.form-select:not(:focus).is-invalid,
3460
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3461
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3462
  z-index: 4;
3463
}
3464
 
16848 stevensc 3465
.btn,
3466
.wizard>.actions a,
3467
.wizard>.actions a:active,
3468
.wizard>.actions a:hover,
3469
div.tox .tox-button,
3470
.swal2-popup .swal2-actions button,
3471
.fc .fc-button-primary {
16825 efrain 3472
  --bs-btn-padding-x: 0.8rem;
3473
  --bs-btn-padding-y: 0.469rem;
3474
  --bs-btn-font-family: ;
3475
  --bs-btn-font-size: 0.875rem;
3476
  --bs-btn-font-weight: 400;
3477
  --bs-btn-line-height: 1.5;
3478
  --bs-btn-color: #000;
3479
  --bs-btn-bg: transparent;
3480
  --bs-btn-border-width: 1px;
3481
  --bs-btn-border-color: transparent;
3482
  --bs-btn-border-radius: 0.25rem;
3483
  --bs-btn-hover-border-color: transparent;
3484
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3485
  --bs-btn-disabled-opacity: 0.65;
3486
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3487
  display: inline-block;
3488
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3489
  font-family: var(--bs-btn-font-family);
3490
  font-size: var(--bs-btn-font-size);
3491
  font-weight: var(--bs-btn-font-weight);
3492
  line-height: var(--bs-btn-line-height);
3493
  color: var(--bs-btn-color);
3494
  text-align: center;
3495
  vertical-align: middle;
3496
  cursor: pointer;
3497
  user-select: none;
3498
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3499
  border-radius: var(--bs-btn-border-radius);
3500
  background-color: var(--bs-btn-bg);
3501
  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;
3502
}
16848 stevensc 3503
 
16825 efrain 3504
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3505
 
3506
  .btn,
3507
  .wizard>.actions a,
3508
  .wizard>.actions a:active,
3509
  .wizard>.actions a:hover,
3510
  div.tox .tox-button,
3511
  .swal2-popup .swal2-actions button,
3512
  .fc .fc-button-primary {
16825 efrain 3513
    transition: none;
3514
  }
3515
}
16848 stevensc 3516
 
3517
.btn:hover,
3518
.wizard>.actions a:hover,
3519
div.tox .tox-button:hover,
3520
.swal2-popup .swal2-actions button:hover,
3521
.fc .fc-button-primary:hover {
16825 efrain 3522
  color: var(--bs-btn-hover-color);
3523
  background-color: var(--bs-btn-hover-bg);
3524
  border-color: var(--bs-btn-hover-border-color);
3525
}
16848 stevensc 3526
 
3527
.btn-check+.btn:hover,
3528
.wizard>.actions .btn-check+a:hover,
3529
div.tox .btn-check+.tox-button:hover,
3530
.swal2-popup .swal2-actions .btn-check+button:hover,
3531
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3532
  color: var(--bs-btn-color);
3533
  background-color: var(--bs-btn-bg);
3534
  border-color: var(--bs-btn-border-color);
3535
}
16848 stevensc 3536
 
3537
.btn:focus-visible,
3538
.wizard>.actions a:focus-visible,
3539
div.tox .tox-button:focus-visible,
3540
.swal2-popup .swal2-actions button:focus-visible,
3541
.fc .fc-button-primary:focus-visible {
16825 efrain 3542
  color: var(--bs-btn-hover-color);
3543
  background-color: var(--bs-btn-hover-bg);
3544
  border-color: var(--bs-btn-hover-border-color);
3545
  outline: 0;
3546
  box-shadow: var(--bs-btn-focus-box-shadow);
3547
}
16848 stevensc 3548
 
3549
.btn-check:focus-visible+.btn,
3550
.wizard>.actions .btn-check:focus-visible+a,
3551
div.tox .btn-check:focus-visible+.tox-button,
3552
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3553
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3554
  border-color: var(--bs-btn-hover-border-color);
3555
  outline: 0;
3556
  box-shadow: var(--bs-btn-focus-box-shadow);
3557
}
16848 stevensc 3558
 
3559
.btn-check:checked+.btn,
3560
.wizard>.actions .btn-check:checked+a,
3561
div.tox .btn-check:checked+.tox-button,
3562
.swal2-popup .swal2-actions .btn-check:checked+button,
3563
.fc .btn-check:checked+.fc-button-primary,
3564
:not(.btn-check)+.btn:active,
3565
.wizard>.actions :not(.btn-check)+a:active,
3566
div.tox :not(.btn-check)+.tox-button:active,
3567
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3568
.fc :not(.btn-check)+.fc-button-primary:active,
3569
.btn:first-child:active,
3570
.wizard>.actions a:first-child:active,
3571
div.tox .tox-button:first-child:active,
3572
.swal2-popup .swal2-actions button:first-child:active,
3573
.fc .fc-button-primary:first-child:active,
3574
.btn.active,
3575
.wizard>.actions a.active,
3576
div.tox .active.tox-button,
3577
.swal2-popup .swal2-actions button.active,
3578
.fc .active.fc-button-primary,
3579
.btn.show,
3580
.wizard>.actions a.show,
3581
div.tox .show.tox-button,
3582
.swal2-popup .swal2-actions button.show,
3583
.fc .show.fc-button-primary {
16825 efrain 3584
  color: var(--bs-btn-active-color);
3585
  background-color: var(--bs-btn-active-bg);
3586
  border-color: var(--bs-btn-active-border-color);
3587
}
16848 stevensc 3588
 
3589
.btn-check:checked+.btn:focus-visible,
3590
.wizard>.actions .btn-check:checked+a:focus-visible,
3591
div.tox .btn-check:checked+.tox-button:focus-visible,
3592
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3593
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3594
:not(.btn-check)+.btn:active:focus-visible,
3595
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3596
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3597
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3598
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3599
.btn:first-child:active:focus-visible,
3600
.wizard>.actions a:first-child:active:focus-visible,
3601
div.tox .tox-button:first-child:active:focus-visible,
3602
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3603
.fc .fc-button-primary:first-child:active:focus-visible,
3604
.btn.active:focus-visible,
3605
.wizard>.actions a.active:focus-visible,
3606
div.tox .active.tox-button:focus-visible,
3607
.swal2-popup .swal2-actions button.active:focus-visible,
3608
.fc .active.fc-button-primary:focus-visible,
3609
.btn.show:focus-visible,
3610
.wizard>.actions a.show:focus-visible,
3611
div.tox .show.tox-button:focus-visible,
3612
.swal2-popup .swal2-actions button.show:focus-visible,
3613
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3614
  box-shadow: var(--bs-btn-focus-box-shadow);
3615
}
16848 stevensc 3616
 
3617
.btn:disabled,
3618
.wizard>.actions a:disabled,
3619
div.tox .tox-button:disabled,
3620
.swal2-popup .swal2-actions button:disabled,
3621
.fc .fc-button-primary:disabled,
3622
.btn.disabled,
3623
.wizard>.actions a.disabled,
3624
div.tox .disabled.tox-button,
3625
.swal2-popup .swal2-actions button.disabled,
3626
.fc .disabled.fc-button-primary,
3627
fieldset:disabled .btn,
3628
fieldset:disabled .wizard>.actions a,
3629
.wizard>.actions fieldset:disabled a,
3630
fieldset:disabled div.tox .tox-button,
3631
div.tox fieldset:disabled .tox-button,
3632
fieldset:disabled .swal2-popup .swal2-actions button,
3633
.swal2-popup .swal2-actions fieldset:disabled button,
3634
fieldset:disabled .fc .fc-button-primary,
3635
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3636
  color: var(--bs-btn-disabled-color);
3637
  pointer-events: none;
3638
  background-color: var(--bs-btn-disabled-bg);
3639
  border-color: var(--bs-btn-disabled-border-color);
3640
  opacity: var(--bs-btn-disabled-opacity);
3641
}
3642
 
16848 stevensc 3643
.btn-primary,
3644
.wizard>.actions a,
3645
.wizard>.actions a:active,
3646
.wizard>.actions a:hover,
3647
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3648
.swal2-popup .swal2-actions button.swal2-confirm,
3649
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3650
.fc .fc-button-primary:not(:disabled):active {
3651
  --bs-btn-color: #fff;
3652
  --bs-btn-bg: #6571ff;
3653
  --bs-btn-border-color: #6571ff;
3654
  --bs-btn-hover-color: #fff;
3655
  --bs-btn-hover-bg: #5660d9;
3656
  --bs-btn-hover-border-color: #515acc;
3657
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3658
  --bs-btn-active-color: #fff;
3659
  --bs-btn-active-bg: #515acc;
3660
  --bs-btn-active-border-color: #4c55bf;
3661
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3662
  --bs-btn-disabled-color: #fff;
3663
  --bs-btn-disabled-bg: #6571ff;
3664
  --bs-btn-disabled-border-color: #6571ff;
3665
}
3666
 
16848 stevensc 3667
.btn-secondary,
3668
div.tox .tox-button--secondary {
16825 efrain 3669
  --bs-btn-color: #fff;
3670
  --bs-btn-bg: #7987a1;
3671
  --bs-btn-border-color: #7987a1;
3672
  --bs-btn-hover-color: #fff;
3673
  --bs-btn-hover-bg: #677389;
3674
  --bs-btn-hover-border-color: #616c81;
3675
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3676
  --bs-btn-active-color: #fff;
3677
  --bs-btn-active-bg: #616c81;
3678
  --bs-btn-active-border-color: #5b6579;
3679
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3680
  --bs-btn-disabled-color: #fff;
3681
  --bs-btn-disabled-bg: #7987a1;
3682
  --bs-btn-disabled-border-color: #7987a1;
3683
}
3684
 
3685
.btn-success {
3686
  --bs-btn-color: #fff;
3687
  --bs-btn-bg: #05a34a;
3688
  --bs-btn-border-color: #05a34a;
3689
  --bs-btn-hover-color: #fff;
3690
  --bs-btn-hover-bg: #048b3f;
3691
  --bs-btn-hover-border-color: #04823b;
3692
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3693
  --bs-btn-active-color: #fff;
3694
  --bs-btn-active-bg: #04823b;
3695
  --bs-btn-active-border-color: #047a38;
3696
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3697
  --bs-btn-disabled-color: #fff;
3698
  --bs-btn-disabled-bg: #05a34a;
3699
  --bs-btn-disabled-border-color: #05a34a;
3700
}
3701
 
3702
.btn-info {
3703
  --bs-btn-color: #000;
3704
  --bs-btn-bg: #66d1d1;
3705
  --bs-btn-border-color: #66d1d1;
3706
  --bs-btn-hover-color: #000;
3707
  --bs-btn-hover-bg: #7dd8d8;
3708
  --bs-btn-hover-border-color: #75d6d6;
3709
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3710
  --bs-btn-active-color: #000;
3711
  --bs-btn-active-bg: #85dada;
3712
  --bs-btn-active-border-color: #75d6d6;
3713
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3714
  --bs-btn-disabled-color: #000;
3715
  --bs-btn-disabled-bg: #66d1d1;
3716
  --bs-btn-disabled-border-color: #66d1d1;
3717
}
3718
 
3719
.btn-warning {
3720
  --bs-btn-color: #000;
3721
  --bs-btn-bg: #fbbc06;
3722
  --bs-btn-border-color: #fbbc06;
3723
  --bs-btn-hover-color: #000;
3724
  --bs-btn-hover-bg: #fcc62b;
3725
  --bs-btn-hover-border-color: #fbc31f;
3726
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3727
  --bs-btn-active-color: #000;
3728
  --bs-btn-active-bg: #fcc938;
3729
  --bs-btn-active-border-color: #fbc31f;
3730
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3731
  --bs-btn-disabled-color: #000;
3732
  --bs-btn-disabled-bg: #fbbc06;
3733
  --bs-btn-disabled-border-color: #fbbc06;
3734
}
3735
 
16848 stevensc 3736
.btn-danger,
3737
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3738
  --bs-btn-color: #fff;
3739
  --bs-btn-bg: #ff3366;
3740
  --bs-btn-border-color: #ff3366;
3741
  --bs-btn-hover-color: #fff;
3742
  --bs-btn-hover-bg: #d92b57;
3743
  --bs-btn-hover-border-color: #cc2952;
3744
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3745
  --bs-btn-active-color: #fff;
3746
  --bs-btn-active-bg: #cc2952;
3747
  --bs-btn-active-border-color: #bf264d;
3748
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3749
  --bs-btn-disabled-color: #fff;
3750
  --bs-btn-disabled-bg: #ff3366;
3751
  --bs-btn-disabled-border-color: #ff3366;
3752
}
3753
 
3754
.btn-light {
3755
  --bs-btn-color: #000;
3756
  --bs-btn-bg: #e9ecef;
3757
  --bs-btn-border-color: #e9ecef;
3758
  --bs-btn-hover-color: #000;
3759
  --bs-btn-hover-bg: #c6c9cb;
3760
  --bs-btn-hover-border-color: #babdbf;
3761
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3762
  --bs-btn-active-color: #000;
3763
  --bs-btn-active-bg: #babdbf;
3764
  --bs-btn-active-border-color: #afb1b3;
3765
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3766
  --bs-btn-disabled-color: #000;
3767
  --bs-btn-disabled-bg: #e9ecef;
3768
  --bs-btn-disabled-border-color: #e9ecef;
3769
}
3770
 
3771
.btn-dark {
3772
  --bs-btn-color: #fff;
3773
  --bs-btn-bg: #060c17;
3774
  --bs-btn-border-color: #060c17;
3775
  --bs-btn-hover-color: #fff;
3776
  --bs-btn-hover-bg: #2b303a;
3777
  --bs-btn-hover-border-color: #1f242e;
3778
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3779
  --bs-btn-active-color: #fff;
3780
  --bs-btn-active-bg: #383d45;
3781
  --bs-btn-active-border-color: #1f242e;
3782
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3783
  --bs-btn-disabled-color: #fff;
3784
  --bs-btn-disabled-bg: #060c17;
3785
  --bs-btn-disabled-border-color: #060c17;
3786
}
3787
 
16848 stevensc 3788
.btn-outline-primary,
3789
.fc .fc-button-primary {
16825 efrain 3790
  --bs-btn-color: #6571ff;
3791
  --bs-btn-border-color: #6571ff;
3792
  --bs-btn-hover-color: #fff;
3793
  --bs-btn-hover-bg: #6571ff;
3794
  --bs-btn-hover-border-color: #6571ff;
3795
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3796
  --bs-btn-active-color: #fff;
3797
  --bs-btn-active-bg: #6571ff;
3798
  --bs-btn-active-border-color: #6571ff;
3799
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3800
  --bs-btn-disabled-color: #6571ff;
3801
  --bs-btn-disabled-bg: transparent;
3802
  --bs-btn-disabled-border-color: #6571ff;
3803
  --bs-gradient: none;
3804
}
3805
 
3806
.btn-outline-secondary {
3807
  --bs-btn-color: #7987a1;
3808
  --bs-btn-border-color: #7987a1;
3809
  --bs-btn-hover-color: #fff;
3810
  --bs-btn-hover-bg: #7987a1;
3811
  --bs-btn-hover-border-color: #7987a1;
3812
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3813
  --bs-btn-active-color: #fff;
3814
  --bs-btn-active-bg: #7987a1;
3815
  --bs-btn-active-border-color: #7987a1;
3816
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3817
  --bs-btn-disabled-color: #7987a1;
3818
  --bs-btn-disabled-bg: transparent;
3819
  --bs-btn-disabled-border-color: #7987a1;
3820
  --bs-gradient: none;
3821
}
3822
 
3823
.btn-outline-success {
3824
  --bs-btn-color: #05a34a;
3825
  --bs-btn-border-color: #05a34a;
3826
  --bs-btn-hover-color: #fff;
3827
  --bs-btn-hover-bg: #05a34a;
3828
  --bs-btn-hover-border-color: #05a34a;
3829
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3830
  --bs-btn-active-color: #fff;
3831
  --bs-btn-active-bg: #05a34a;
3832
  --bs-btn-active-border-color: #05a34a;
3833
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3834
  --bs-btn-disabled-color: #05a34a;
3835
  --bs-btn-disabled-bg: transparent;
3836
  --bs-btn-disabled-border-color: #05a34a;
3837
  --bs-gradient: none;
3838
}
3839
 
3840
.btn-outline-info {
3841
  --bs-btn-color: #66d1d1;
3842
  --bs-btn-border-color: #66d1d1;
3843
  --bs-btn-hover-color: #000;
3844
  --bs-btn-hover-bg: #66d1d1;
3845
  --bs-btn-hover-border-color: #66d1d1;
3846
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3847
  --bs-btn-active-color: #000;
3848
  --bs-btn-active-bg: #66d1d1;
3849
  --bs-btn-active-border-color: #66d1d1;
3850
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3851
  --bs-btn-disabled-color: #66d1d1;
3852
  --bs-btn-disabled-bg: transparent;
3853
  --bs-btn-disabled-border-color: #66d1d1;
3854
  --bs-gradient: none;
3855
}
3856
 
3857
.btn-outline-warning {
3858
  --bs-btn-color: #fbbc06;
3859
  --bs-btn-border-color: #fbbc06;
3860
  --bs-btn-hover-color: #000;
3861
  --bs-btn-hover-bg: #fbbc06;
3862
  --bs-btn-hover-border-color: #fbbc06;
3863
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3864
  --bs-btn-active-color: #000;
3865
  --bs-btn-active-bg: #fbbc06;
3866
  --bs-btn-active-border-color: #fbbc06;
3867
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3868
  --bs-btn-disabled-color: #fbbc06;
3869
  --bs-btn-disabled-bg: transparent;
3870
  --bs-btn-disabled-border-color: #fbbc06;
3871
  --bs-gradient: none;
3872
}
3873
 
3874
.btn-outline-danger {
3875
  --bs-btn-color: #ff3366;
3876
  --bs-btn-border-color: #ff3366;
3877
  --bs-btn-hover-color: #fff;
3878
  --bs-btn-hover-bg: #ff3366;
3879
  --bs-btn-hover-border-color: #ff3366;
3880
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3881
  --bs-btn-active-color: #fff;
3882
  --bs-btn-active-bg: #ff3366;
3883
  --bs-btn-active-border-color: #ff3366;
3884
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3885
  --bs-btn-disabled-color: #ff3366;
3886
  --bs-btn-disabled-bg: transparent;
3887
  --bs-btn-disabled-border-color: #ff3366;
3888
  --bs-gradient: none;
3889
}
3890
 
3891
.btn-outline-light {
3892
  --bs-btn-color: #e9ecef;
3893
  --bs-btn-border-color: #e9ecef;
3894
  --bs-btn-hover-color: #000;
3895
  --bs-btn-hover-bg: #e9ecef;
3896
  --bs-btn-hover-border-color: #e9ecef;
3897
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3898
  --bs-btn-active-color: #000;
3899
  --bs-btn-active-bg: #e9ecef;
3900
  --bs-btn-active-border-color: #e9ecef;
3901
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3902
  --bs-btn-disabled-color: #e9ecef;
3903
  --bs-btn-disabled-bg: transparent;
3904
  --bs-btn-disabled-border-color: #e9ecef;
3905
  --bs-gradient: none;
3906
}
3907
 
3908
.btn-outline-dark {
3909
  --bs-btn-color: #060c17;
3910
  --bs-btn-border-color: #060c17;
3911
  --bs-btn-hover-color: #fff;
3912
  --bs-btn-hover-bg: #060c17;
3913
  --bs-btn-hover-border-color: #060c17;
3914
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3915
  --bs-btn-active-color: #fff;
3916
  --bs-btn-active-bg: #060c17;
3917
  --bs-btn-active-border-color: #060c17;
3918
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3919
  --bs-btn-disabled-color: #060c17;
3920
  --bs-btn-disabled-bg: transparent;
3921
  --bs-btn-disabled-border-color: #060c17;
3922
  --bs-gradient: none;
3923
}
3924
 
3925
.btn-link {
3926
  --bs-btn-font-weight: 400;
3927
  --bs-btn-color: var(--bs-link-color);
3928
  --bs-btn-bg: transparent;
3929
  --bs-btn-border-color: transparent;
3930
  --bs-btn-hover-color: var(--bs-link-hover-color);
3931
  --bs-btn-hover-border-color: transparent;
3932
  --bs-btn-active-color: var(--bs-link-hover-color);
3933
  --bs-btn-active-border-color: transparent;
3934
  --bs-btn-disabled-color: #7987a1;
3935
  --bs-btn-disabled-border-color: transparent;
3936
  --bs-btn-box-shadow: none;
3937
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3938
  text-decoration: none;
3939
}
16848 stevensc 3940
 
16825 efrain 3941
.btn-link:focus-visible {
3942
  color: var(--bs-btn-color);
3943
}
16848 stevensc 3944
 
16825 efrain 3945
.btn-link:hover {
3946
  color: var(--bs-btn-hover-color);
3947
}
3948
 
16848 stevensc 3949
.btn-lg,
3950
.btn-group-lg>.btn,
3951
.wizard>.actions .btn-group-lg>a,
3952
div.tox .btn-group-lg>.tox-button,
3953
.swal2-popup .swal2-actions .btn-group-lg>button,
3954
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3955
  --bs-btn-padding-y: 0.5rem;
3956
  --bs-btn-padding-x: 0.8rem;
3957
  --bs-btn-font-size: 1rem;
3958
  --bs-btn-border-radius: 0.25rem;
3959
}
3960
 
16848 stevensc 3961
.btn-sm,
3962
.fc .fc-button-primary,
3963
.btn-group-sm>.btn,
3964
.wizard>.actions .btn-group-sm>a,
3965
div.tox .btn-group-sm>.tox-button,
3966
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3967
  --bs-btn-padding-y: 0.391rem;
3968
  --bs-btn-padding-x: 0.8rem;
3969
  --bs-btn-font-size: 0.812rem;
3970
  --bs-btn-border-radius: 0.25rem;
3971
}
3972
 
3973
.fade {
3974
  transition: opacity 0.15s linear;
3975
}
16848 stevensc 3976
 
16825 efrain 3977
@media (prefers-reduced-motion: reduce) {
3978
  .fade {
3979
    transition: none;
3980
  }
3981
}
16848 stevensc 3982
 
16825 efrain 3983
.fade:not(.show) {
3984
  opacity: 0;
3985
}
3986
 
3987
.collapse:not(.show) {
3988
  display: none;
3989
}
3990
 
3991
.collapsing {
3992
  height: 0;
3993
  overflow: hidden;
3994
  transition: height 0.35s ease;
3995
}
16848 stevensc 3996
 
16825 efrain 3997
@media (prefers-reduced-motion: reduce) {
3998
  .collapsing {
3999
    transition: none;
4000
  }
4001
}
16848 stevensc 4002
 
16825 efrain 4003
.collapsing.collapse-horizontal {
4004
  width: 0;
4005
  height: auto;
4006
  transition: width 0.35s ease;
4007
}
16848 stevensc 4008
 
16825 efrain 4009
@media (prefers-reduced-motion: reduce) {
4010
  .collapsing.collapse-horizontal {
4011
    transition: none;
4012
  }
4013
}
4014
 
4015
.dropup,
4016
.dropend,
4017
.dropdown,
4018
.dropstart,
4019
.dropup-center,
4020
.dropdown-center {
4021
  position: relative;
4022
}
4023
 
4024
.dropdown-toggle {
4025
  white-space: nowrap;
4026
}
16848 stevensc 4027
 
16825 efrain 4028
.dropdown-toggle::after {
4029
  display: inline-block;
4030
  margin-left: 0.255em;
4031
  vertical-align: 0.255em;
4032
  content: "";
4033
  border-top: 0.3em solid;
4034
  border-right: 0.3em solid transparent;
4035
  border-bottom: 0;
4036
  border-left: 0.3em solid transparent;
4037
}
16848 stevensc 4038
 
16825 efrain 4039
.dropdown-toggle:empty::after {
4040
  margin-left: 0;
4041
}
4042
 
16848 stevensc 4043
.dropdown-menu,
4044
.tt-menu {
16825 efrain 4045
  --bs-dropdown-zindex: 1000;
4046
  --bs-dropdown-min-width: 10rem;
4047
  --bs-dropdown-padding-x: 0;
4048
  --bs-dropdown-padding-y: 0.5rem;
4049
  --bs-dropdown-spacer: 0.125rem;
4050
  --bs-dropdown-font-size: 0.875rem;
4051
  --bs-dropdown-color: #000;
4052
  --bs-dropdown-bg: #fff;
4053
  --bs-dropdown-border-color: #f2f4f9;
4054
  --bs-dropdown-border-radius: 0.25rem;
4055
  --bs-dropdown-border-width: 1px;
4056
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4057
  --bs-dropdown-divider-bg: #f2f4f9;
4058
  --bs-dropdown-divider-margin-y: 0.5rem;
4059
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4060
  --bs-dropdown-link-color: #060c17;
4061
  --bs-dropdown-link-hover-color: #050b15;
4062
  --bs-dropdown-link-hover-bg: #e9ecef;
4063
  --bs-dropdown-link-active-color: #fff;
4064
  --bs-dropdown-link-active-bg: #6571ff;
4065
  --bs-dropdown-link-disabled-color: #aeb7c5;
4066
  --bs-dropdown-item-padding-x: 1rem;
4067
  --bs-dropdown-item-padding-y: 0.25rem;
4068
  --bs-dropdown-header-color: #7987a1;
4069
  --bs-dropdown-header-padding-x: 1rem;
4070
  --bs-dropdown-header-padding-y: 0.5rem;
4071
  position: absolute;
4072
  z-index: var(--bs-dropdown-zindex);
4073
  display: none;
4074
  min-width: var(--bs-dropdown-min-width);
4075
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4076
  margin: 0;
4077
  font-size: var(--bs-dropdown-font-size);
4078
  color: var(--bs-dropdown-color);
4079
  text-align: left;
4080
  list-style: none;
4081
  background-color: var(--bs-dropdown-bg);
4082
  background-clip: padding-box;
4083
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4084
  border-radius: var(--bs-dropdown-border-radius);
4085
}
16848 stevensc 4086
 
4087
.dropdown-menu[data-bs-popper],
4088
[data-bs-popper].tt-menu {
16825 efrain 4089
  top: 100%;
4090
  left: 0;
4091
  margin-top: var(--bs-dropdown-spacer);
4092
}
4093
 
4094
.dropdown-menu-start {
4095
  --bs-position: start;
4096
}
16848 stevensc 4097
 
16825 efrain 4098
.dropdown-menu-start[data-bs-popper] {
4099
  right: auto;
4100
  left: 0;
4101
}
4102
 
4103
.dropdown-menu-end {
4104
  --bs-position: end;
4105
}
16848 stevensc 4106
 
16825 efrain 4107
.dropdown-menu-end[data-bs-popper] {
4108
  right: 0;
4109
  left: auto;
4110
}
4111
 
4112
@media (min-width: 576px) {
4113
  .dropdown-menu-sm-start {
4114
    --bs-position: start;
4115
  }
16848 stevensc 4116
 
16825 efrain 4117
  .dropdown-menu-sm-start[data-bs-popper] {
4118
    right: auto;
4119
    left: 0;
4120
  }
16848 stevensc 4121
 
16825 efrain 4122
  .dropdown-menu-sm-end {
4123
    --bs-position: end;
4124
  }
16848 stevensc 4125
 
16825 efrain 4126
  .dropdown-menu-sm-end[data-bs-popper] {
4127
    right: 0;
4128
    left: auto;
4129
  }
4130
}
16848 stevensc 4131
 
16825 efrain 4132
@media (min-width: 768px) {
4133
  .dropdown-menu-md-start {
4134
    --bs-position: start;
4135
  }
16848 stevensc 4136
 
16825 efrain 4137
  .dropdown-menu-md-start[data-bs-popper] {
4138
    right: auto;
4139
    left: 0;
4140
  }
16848 stevensc 4141
 
16825 efrain 4142
  .dropdown-menu-md-end {
4143
    --bs-position: end;
4144
  }
16848 stevensc 4145
 
16825 efrain 4146
  .dropdown-menu-md-end[data-bs-popper] {
4147
    right: 0;
4148
    left: auto;
4149
  }
4150
}
16848 stevensc 4151
 
16825 efrain 4152
@media (min-width: 992px) {
4153
  .dropdown-menu-lg-start {
4154
    --bs-position: start;
4155
  }
16848 stevensc 4156
 
16825 efrain 4157
  .dropdown-menu-lg-start[data-bs-popper] {
4158
    right: auto;
4159
    left: 0;
4160
  }
16848 stevensc 4161
 
16825 efrain 4162
  .dropdown-menu-lg-end {
4163
    --bs-position: end;
4164
  }
16848 stevensc 4165
 
16825 efrain 4166
  .dropdown-menu-lg-end[data-bs-popper] {
4167
    right: 0;
4168
    left: auto;
4169
  }
4170
}
16848 stevensc 4171
 
16825 efrain 4172
@media (min-width: 1200px) {
4173
  .dropdown-menu-xl-start {
4174
    --bs-position: start;
4175
  }
16848 stevensc 4176
 
16825 efrain 4177
  .dropdown-menu-xl-start[data-bs-popper] {
4178
    right: auto;
4179
    left: 0;
4180
  }
16848 stevensc 4181
 
16825 efrain 4182
  .dropdown-menu-xl-end {
4183
    --bs-position: end;
4184
  }
16848 stevensc 4185
 
16825 efrain 4186
  .dropdown-menu-xl-end[data-bs-popper] {
4187
    right: 0;
4188
    left: auto;
4189
  }
4190
}
16848 stevensc 4191
 
16825 efrain 4192
@media (min-width: 1400px) {
4193
  .dropdown-menu-xxl-start {
4194
    --bs-position: start;
4195
  }
16848 stevensc 4196
 
16825 efrain 4197
  .dropdown-menu-xxl-start[data-bs-popper] {
4198
    right: auto;
4199
    left: 0;
4200
  }
16848 stevensc 4201
 
16825 efrain 4202
  .dropdown-menu-xxl-end {
4203
    --bs-position: end;
4204
  }
16848 stevensc 4205
 
16825 efrain 4206
  .dropdown-menu-xxl-end[data-bs-popper] {
4207
    right: 0;
4208
    left: auto;
4209
  }
4210
}
16848 stevensc 4211
 
4212
.dropup .dropdown-menu[data-bs-popper],
4213
.dropup [data-bs-popper].tt-menu {
16825 efrain 4214
  top: auto;
4215
  bottom: 100%;
4216
  margin-top: 0;
4217
  margin-bottom: var(--bs-dropdown-spacer);
4218
}
16848 stevensc 4219
 
16825 efrain 4220
.dropup .dropdown-toggle::after {
4221
  display: inline-block;
4222
  margin-left: 0.255em;
4223
  vertical-align: 0.255em;
4224
  content: "";
4225
  border-top: 0;
4226
  border-right: 0.3em solid transparent;
4227
  border-bottom: 0.3em solid;
4228
  border-left: 0.3em solid transparent;
4229
}
16848 stevensc 4230
 
16825 efrain 4231
.dropup .dropdown-toggle:empty::after {
4232
  margin-left: 0;
4233
}
4234
 
16848 stevensc 4235
.dropend .dropdown-menu[data-bs-popper],
4236
.dropend [data-bs-popper].tt-menu {
16825 efrain 4237
  top: 0;
4238
  right: auto;
4239
  left: 100%;
4240
  margin-top: 0;
4241
  margin-left: var(--bs-dropdown-spacer);
4242
}
16848 stevensc 4243
 
16825 efrain 4244
.dropend .dropdown-toggle::after {
4245
  display: inline-block;
4246
  margin-left: 0.255em;
4247
  vertical-align: 0.255em;
4248
  content: "";
4249
  border-top: 0.3em solid transparent;
4250
  border-right: 0;
4251
  border-bottom: 0.3em solid transparent;
4252
  border-left: 0.3em solid;
4253
}
16848 stevensc 4254
 
16825 efrain 4255
.dropend .dropdown-toggle:empty::after {
4256
  margin-left: 0;
4257
}
16848 stevensc 4258
 
16825 efrain 4259
.dropend .dropdown-toggle::after {
4260
  vertical-align: 0;
4261
}
4262
 
16848 stevensc 4263
.dropstart .dropdown-menu[data-bs-popper],
4264
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4265
  top: 0;
4266
  right: 100%;
4267
  left: auto;
4268
  margin-top: 0;
4269
  margin-right: var(--bs-dropdown-spacer);
4270
}
16848 stevensc 4271
 
16825 efrain 4272
.dropstart .dropdown-toggle::after {
4273
  display: inline-block;
4274
  margin-left: 0.255em;
4275
  vertical-align: 0.255em;
4276
  content: "";
4277
}
16848 stevensc 4278
 
16825 efrain 4279
.dropstart .dropdown-toggle::after {
4280
  display: none;
4281
}
16848 stevensc 4282
 
16825 efrain 4283
.dropstart .dropdown-toggle::before {
4284
  display: inline-block;
4285
  margin-right: 0.255em;
4286
  vertical-align: 0.255em;
4287
  content: "";
4288
  border-top: 0.3em solid transparent;
4289
  border-right: 0.3em solid;
4290
  border-bottom: 0.3em solid transparent;
4291
}
16848 stevensc 4292
 
16825 efrain 4293
.dropstart .dropdown-toggle:empty::after {
4294
  margin-left: 0;
4295
}
16848 stevensc 4296
 
16825 efrain 4297
.dropstart .dropdown-toggle::before {
4298
  vertical-align: 0;
4299
}
4300
 
4301
.dropdown-divider {
4302
  height: 0;
4303
  margin: var(--bs-dropdown-divider-margin-y) 0;
4304
  overflow: hidden;
4305
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4306
  opacity: 1;
4307
}
4308
 
16848 stevensc 4309
.dropdown-item,
4310
.tt-menu .tt-suggestion {
16825 efrain 4311
  display: block;
4312
  width: 100%;
4313
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4314
  clear: both;
4315
  font-weight: 400;
4316
  color: var(--bs-dropdown-link-color);
4317
  text-align: inherit;
4318
  white-space: nowrap;
4319
  background-color: transparent;
4320
  border: 0;
4321
}
16848 stevensc 4322
 
4323
.dropdown-item:hover,
4324
.tt-menu .tt-suggestion:hover,
4325
.dropdown-item:focus,
4326
.tt-menu .tt-suggestion:focus {
16825 efrain 4327
  color: var(--bs-dropdown-link-hover-color);
4328
  background-color: var(--bs-dropdown-link-hover-bg);
4329
}
16848 stevensc 4330
 
4331
.dropdown-item.active,
4332
.tt-menu .active.tt-suggestion,
4333
.dropdown-item:active,
4334
.tt-menu .tt-suggestion:active {
16825 efrain 4335
  color: var(--bs-dropdown-link-active-color);
4336
  text-decoration: none;
4337
  background-color: var(--bs-dropdown-link-active-bg);
4338
}
16848 stevensc 4339
 
4340
.dropdown-item.disabled,
4341
.tt-menu .disabled.tt-suggestion,
4342
.dropdown-item:disabled,
4343
.tt-menu .tt-suggestion:disabled {
16825 efrain 4344
  color: var(--bs-dropdown-link-disabled-color);
4345
  pointer-events: none;
4346
  background-color: transparent;
4347
}
4348
 
16848 stevensc 4349
.dropdown-menu.show,
4350
.show.tt-menu {
16825 efrain 4351
  display: block;
4352
}
4353
 
4354
.dropdown-header {
4355
  display: block;
4356
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4357
  margin-bottom: 0;
4358
  font-size: 0.812rem;
4359
  color: var(--bs-dropdown-header-color);
4360
  white-space: nowrap;
4361
}
4362
 
4363
.dropdown-item-text {
4364
  display: block;
4365
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4366
  color: var(--bs-dropdown-link-color);
4367
}
4368
 
4369
.dropdown-menu-dark {
4370
  --bs-dropdown-color: #dee2e6;
4371
  --bs-dropdown-bg: #212a3a;
4372
  --bs-dropdown-border-color: #f2f4f9;
4373
  --bs-dropdown-box-shadow: ;
4374
  --bs-dropdown-link-color: #dee2e6;
4375
  --bs-dropdown-link-hover-color: #fff;
4376
  --bs-dropdown-divider-bg: #f2f4f9;
4377
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4378
  --bs-dropdown-link-active-color: #fff;
4379
  --bs-dropdown-link-active-bg: #6571ff;
4380
  --bs-dropdown-link-disabled-color: #aeb7c5;
4381
  --bs-dropdown-header-color: #aeb7c5;
4382
}
4383
 
4384
.btn-group,
4385
.btn-group-vertical {
4386
  position: relative;
4387
  display: inline-flex;
4388
  vertical-align: middle;
4389
}
16848 stevensc 4390
 
4391
.btn-group>.btn,
4392
.wizard>.actions .btn-group>a,
4393
div.tox .btn-group>.tox-button,
4394
.swal2-popup .swal2-actions .btn-group>button,
4395
.fc .btn-group>.fc-button-primary,
4396
.btn-group-vertical>.btn,
4397
.wizard>.actions .btn-group-vertical>a,
4398
div.tox .btn-group-vertical>.tox-button,
4399
.swal2-popup .swal2-actions .btn-group-vertical>button,
4400
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4401
  position: relative;
4402
  flex: 1 1 auto;
4403
}
16848 stevensc 4404
 
4405
.btn-group>.btn-check:checked+.btn,
4406
.wizard>.actions .btn-group>.btn-check:checked+a,
4407
div.tox .btn-group>.btn-check:checked+.tox-button,
4408
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4409
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4410
.btn-group>.btn-check:focus+.btn,
4411
.wizard>.actions .btn-group>.btn-check:focus+a,
4412
div.tox .btn-group>.btn-check:focus+.tox-button,
4413
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4414
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4415
.btn-group>.btn:hover,
4416
.wizard>.actions .btn-group>a:hover,
4417
div.tox .btn-group>.tox-button:hover,
4418
.swal2-popup .swal2-actions .btn-group>button:hover,
4419
.fc .btn-group>.fc-button-primary:hover,
4420
.btn-group>.btn:focus,
4421
.wizard>.actions .btn-group>a:focus,
4422
div.tox .btn-group>.tox-button:focus,
4423
.swal2-popup .swal2-actions .btn-group>button:focus,
4424
.fc .btn-group>.fc-button-primary:focus,
4425
.btn-group>.btn:active,
4426
.wizard>.actions .btn-group>a:active,
4427
div.tox .btn-group>.tox-button:active,
4428
.swal2-popup .swal2-actions .btn-group>button:active,
4429
.fc .btn-group>.fc-button-primary:active,
4430
.btn-group>.btn.active,
4431
.wizard>.actions .btn-group>a.active,
4432
div.tox .btn-group>.active.tox-button,
4433
.swal2-popup .swal2-actions .btn-group>button.active,
4434
.fc .btn-group>.active.fc-button-primary,
4435
.btn-group-vertical>.btn-check:checked+.btn,
4436
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4437
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4438
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4439
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4440
.btn-group-vertical>.btn-check:focus+.btn,
4441
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4442
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4443
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4444
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4445
.btn-group-vertical>.btn:hover,
4446
.wizard>.actions .btn-group-vertical>a:hover,
4447
div.tox .btn-group-vertical>.tox-button:hover,
4448
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4449
.fc .btn-group-vertical>.fc-button-primary:hover,
4450
.btn-group-vertical>.btn:focus,
4451
.wizard>.actions .btn-group-vertical>a:focus,
4452
div.tox .btn-group-vertical>.tox-button:focus,
4453
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4454
.fc .btn-group-vertical>.fc-button-primary:focus,
4455
.btn-group-vertical>.btn:active,
4456
.wizard>.actions .btn-group-vertical>a:active,
4457
div.tox .btn-group-vertical>.tox-button:active,
4458
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4459
.fc .btn-group-vertical>.fc-button-primary:active,
4460
.btn-group-vertical>.btn.active,
4461
.wizard>.actions .btn-group-vertical>a.active,
4462
div.tox .btn-group-vertical>.active.tox-button,
4463
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4464
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4465
  z-index: 1;
4466
}
4467
 
4468
.btn-toolbar {
4469
  display: flex;
4470
  flex-wrap: wrap;
4471
  justify-content: flex-start;
4472
}
16848 stevensc 4473
 
16825 efrain 4474
.btn-toolbar .input-group {
4475
  width: auto;
4476
}
4477
 
4478
.btn-group {
4479
  border-radius: 0.25rem;
4480
}
16848 stevensc 4481
 
4482
.btn-group> :not(.btn-check:first-child)+.btn,
4483
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4484
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4485
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4486
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4487
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4488
  margin-left: -1px;
4489
}
16848 stevensc 4490
 
4491
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4492
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4493
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4494
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4495
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4496
.btn-group>.btn.dropdown-toggle-split:first-child,
4497
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4498
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4499
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4500
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4501
.btn-group>.btn-group:not(:last-child)>.btn,
4502
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4503
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4504
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4505
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4506
  border-top-right-radius: 0;
4507
  border-bottom-right-radius: 0;
4508
}
16848 stevensc 4509
 
4510
.btn-group>.btn:nth-child(n+3),
4511
.wizard>.actions .btn-group>a:nth-child(n+3),
4512
div.tox .btn-group>.tox-button:nth-child(n+3),
4513
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4514
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4515
.btn-group> :not(.btn-check)+.btn,
4516
.wizard>.actions .btn-group> :not(.btn-check)+a,
4517
div.tox .btn-group> :not(.btn-check)+.tox-button,
4518
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4519
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4520
.btn-group>.btn-group:not(:first-child)>.btn,
4521
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4522
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4523
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4524
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4525
  border-top-left-radius: 0;
4526
  border-bottom-left-radius: 0;
4527
}
4528
 
4529
.dropdown-toggle-split {
4530
  padding-right: 0.6rem;
4531
  padding-left: 0.6rem;
4532
}
16848 stevensc 4533
 
4534
.dropdown-toggle-split::after,
4535
.dropup .dropdown-toggle-split::after,
4536
.dropend .dropdown-toggle-split::after {
16825 efrain 4537
  margin-left: 0;
4538
}
16848 stevensc 4539
 
16825 efrain 4540
.dropstart .dropdown-toggle-split::before {
4541
  margin-right: 0;
4542
}
4543
 
16848 stevensc 4544
.btn-sm+.dropdown-toggle-split,
4545
.fc .fc-button-primary+.dropdown-toggle-split,
4546
.btn-group-sm>.btn+.dropdown-toggle-split,
4547
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4548
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4549
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4550
  padding-right: 0.6rem;
4551
  padding-left: 0.6rem;
4552
}
4553
 
16848 stevensc 4554
.btn-lg+.dropdown-toggle-split,
4555
.btn-group-lg>.btn+.dropdown-toggle-split,
4556
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4557
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4558
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4559
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4560
  padding-right: 0.6rem;
4561
  padding-left: 0.6rem;
4562
}
4563
 
4564
.btn-group-vertical {
4565
  flex-direction: column;
4566
  align-items: flex-start;
4567
  justify-content: center;
4568
}
16848 stevensc 4569
 
4570
.btn-group-vertical>.btn,
4571
.wizard>.actions .btn-group-vertical>a,
4572
div.tox .btn-group-vertical>.tox-button,
4573
.swal2-popup .swal2-actions .btn-group-vertical>button,
4574
.fc .btn-group-vertical>.fc-button-primary,
4575
.btn-group-vertical>.btn-group {
16825 efrain 4576
  width: 100%;
4577
}
16848 stevensc 4578
 
4579
.btn-group-vertical>.btn:not(:first-child),
4580
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4581
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4582
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4583
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4584
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4585
  margin-top: -1px;
4586
}
16848 stevensc 4587
 
4588
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4589
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4590
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4591
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4592
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4593
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4594
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4595
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4596
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4597
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4598
  border-bottom-right-radius: 0;
4599
  border-bottom-left-radius: 0;
4600
}
16848 stevensc 4601
 
4602
.btn-group-vertical>.btn~.btn,
4603
.wizard>.actions .btn-group-vertical>a~.btn,
4604
.wizard>.actions .btn-group-vertical>.btn~a,
4605
.wizard>.actions .btn-group-vertical>a~a,
4606
div.tox .btn-group-vertical>.tox-button~.btn,
4607
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4608
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4609
div.tox .btn-group-vertical>.btn~.tox-button,
4610
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4611
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4612
div.tox .btn-group-vertical>.tox-button~.tox-button,
4613
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4614
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4615
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4616
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4617
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4618
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4619
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4620
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4621
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4622
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4623
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4624
.fc .btn-group-vertical>.fc-button-primary~.btn,
4625
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4626
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4627
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4628
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4629
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4630
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4631
.fc .btn-group-vertical>.btn~.fc-button-primary,
4632
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4633
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4634
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4635
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4636
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4637
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4638
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4639
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4640
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4641
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4642
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4643
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4644
  border-top-left-radius: 0;
4645
  border-top-right-radius: 0;
4646
}
4647
 
4648
.nav {
4649
  --bs-nav-link-padding-x: 1rem;
4650
  --bs-nav-link-padding-y: 0.5rem;
4651
  --bs-nav-link-font-weight: ;
4652
  --bs-nav-link-color: var(--bs-link-color);
4653
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4654
  --bs-nav-link-disabled-color: #7987a1;
4655
  display: flex;
4656
  flex-wrap: wrap;
4657
  padding-left: 0;
4658
  margin-bottom: 0;
4659
  list-style: none;
4660
}
4661
 
4662
.nav-link {
4663
  display: block;
4664
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4665
  font-size: var(--bs-nav-link-font-size);
4666
  font-weight: var(--bs-nav-link-font-weight);
4667
  color: var(--bs-nav-link-color);
4668
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4669
}
16848 stevensc 4670
 
16825 efrain 4671
@media (prefers-reduced-motion: reduce) {
4672
  .nav-link {
4673
    transition: none;
4674
  }
4675
}
16848 stevensc 4676
 
4677
.nav-link:hover,
4678
.nav-link:focus {
16825 efrain 4679
  color: var(--bs-nav-link-hover-color);
4680
}
16848 stevensc 4681
 
16825 efrain 4682
.nav-link.disabled {
4683
  color: var(--bs-nav-link-disabled-color);
4684
  pointer-events: none;
4685
  cursor: default;
4686
}
4687
 
4688
.nav-tabs {
4689
  --bs-nav-tabs-border-width: 1px;
4690
  --bs-nav-tabs-border-color: #dee2e6;
4691
  --bs-nav-tabs-border-radius: 0.25rem;
4692
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4693
  --bs-nav-tabs-link-active-color: #41516c;
4694
  --bs-nav-tabs-link-active-bg: #fff;
4695
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4696
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4697
}
16848 stevensc 4698
 
16825 efrain 4699
.nav-tabs .nav-link {
4700
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4701
  background: none;
4702
  border: var(--bs-nav-tabs-border-width) solid transparent;
4703
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4704
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4705
}
16848 stevensc 4706
 
4707
.nav-tabs .nav-link:hover,
4708
.nav-tabs .nav-link:focus {
16825 efrain 4709
  isolation: isolate;
4710
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4711
}
16848 stevensc 4712
 
4713
.nav-tabs .nav-link.disabled,
4714
.nav-tabs .nav-link:disabled {
16825 efrain 4715
  color: var(--bs-nav-link-disabled-color);
4716
  background-color: transparent;
4717
  border-color: transparent;
4718
}
16848 stevensc 4719
 
16825 efrain 4720
.nav-tabs .nav-link.active,
4721
.nav-tabs .nav-item.show .nav-link {
4722
  color: var(--bs-nav-tabs-link-active-color);
4723
  background-color: var(--bs-nav-tabs-link-active-bg);
4724
  border-color: var(--bs-nav-tabs-link-active-border-color);
4725
}
16848 stevensc 4726
 
4727
.nav-tabs .dropdown-menu,
4728
.nav-tabs .tt-menu {
16825 efrain 4729
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4730
  border-top-left-radius: 0;
4731
  border-top-right-radius: 0;
4732
}
4733
 
4734
.nav-pills {
4735
  --bs-nav-pills-border-radius: 0.25rem;
4736
  --bs-nav-pills-link-active-color: #fff;
4737
  --bs-nav-pills-link-active-bg: #6571ff;
4738
}
16848 stevensc 4739
 
16825 efrain 4740
.nav-pills .nav-link {
4741
  background: none;
4742
  border: 0;
4743
  border-radius: var(--bs-nav-pills-border-radius);
4744
}
16848 stevensc 4745
 
16825 efrain 4746
.nav-pills .nav-link:disabled {
4747
  color: var(--bs-nav-link-disabled-color);
4748
  background-color: transparent;
4749
  border-color: transparent;
4750
}
16848 stevensc 4751
 
16825 efrain 4752
.nav-pills .nav-link.active,
16848 stevensc 4753
.nav-pills .show>.nav-link {
16825 efrain 4754
  color: var(--bs-nav-pills-link-active-color);
4755
  background-color: var(--bs-nav-pills-link-active-bg);
4756
}
4757
 
16848 stevensc 4758
.nav-fill>.nav-link,
16825 efrain 4759
.nav-fill .nav-item {
4760
  flex: 1 1 auto;
4761
  text-align: center;
4762
}
4763
 
16848 stevensc 4764
.nav-justified>.nav-link,
16825 efrain 4765
.nav-justified .nav-item {
4766
  flex-basis: 0;
4767
  flex-grow: 1;
4768
  text-align: center;
4769
}
4770
 
4771
.nav-fill .nav-item .nav-link,
4772
.nav-justified .nav-item .nav-link {
4773
  width: 100%;
4774
}
4775
 
16848 stevensc 4776
.tab-content>.tab-pane {
16825 efrain 4777
  display: none;
4778
}
16848 stevensc 4779
 
4780
.tab-content>.active {
16825 efrain 4781
  display: block;
4782
}
4783
 
4784
.navbar {
4785
  --bs-navbar-padding-x: 0;
4786
  --bs-navbar-padding-y: 0.5rem;
4787
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4788
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4789
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4790
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4791
  --bs-navbar-brand-padding-y: 0.40625rem;
4792
  --bs-navbar-brand-margin-end: 1rem;
4793
  --bs-navbar-brand-font-size: 1rem;
4794
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4795
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4796
  --bs-navbar-nav-link-padding-x: 0.5rem;
4797
  --bs-navbar-toggler-padding-y: 0.25rem;
4798
  --bs-navbar-toggler-padding-x: 0.75rem;
4799
  --bs-navbar-toggler-font-size: 1rem;
4800
  --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");
4801
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4802
  --bs-navbar-toggler-border-radius: 0.25rem;
4803
  --bs-navbar-toggler-focus-width: 0;
4804
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4805
  position: relative;
4806
  display: flex;
4807
  flex-wrap: wrap;
4808
  align-items: center;
4809
  justify-content: space-between;
4810
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4811
}
16848 stevensc 4812
 
4813
.navbar>.container,
4814
.navbar>.container-fluid,
4815
.navbar>.container-sm,
4816
.navbar>.container-md,
4817
.navbar>.container-lg,
4818
.navbar>.container-xl,
4819
.navbar>.container-xxl {
16825 efrain 4820
  display: flex;
4821
  flex-wrap: inherit;
4822
  align-items: center;
4823
  justify-content: space-between;
4824
}
16848 stevensc 4825
 
16825 efrain 4826
.navbar-brand {
4827
  padding-top: var(--bs-navbar-brand-padding-y);
4828
  padding-bottom: var(--bs-navbar-brand-padding-y);
4829
  margin-right: var(--bs-navbar-brand-margin-end);
4830
  font-size: var(--bs-navbar-brand-font-size);
4831
  color: var(--bs-navbar-brand-color);
4832
  white-space: nowrap;
4833
}
16848 stevensc 4834
 
4835
.navbar-brand:hover,
4836
.navbar-brand:focus {
16825 efrain 4837
  color: var(--bs-navbar-brand-hover-color);
4838
}
4839
 
4840
.navbar-nav {
4841
  --bs-nav-link-padding-x: 0;
4842
  --bs-nav-link-padding-y: 0.5rem;
4843
  --bs-nav-link-font-weight: ;
4844
  --bs-nav-link-color: var(--bs-navbar-color);
4845
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4846
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4847
  display: flex;
4848
  flex-direction: column;
4849
  padding-left: 0;
4850
  margin-bottom: 0;
4851
  list-style: none;
4852
}
16848 stevensc 4853
 
4854
.navbar-nav .show>.nav-link,
16825 efrain 4855
.navbar-nav .nav-link.active {
4856
  color: var(--bs-navbar-active-color);
4857
}
16848 stevensc 4858
 
4859
.navbar-nav .dropdown-menu,
4860
.navbar-nav .tt-menu {
16825 efrain 4861
  position: static;
4862
}
4863
 
4864
.navbar-text {
4865
  padding-top: 0.5rem;
4866
  padding-bottom: 0.5rem;
4867
  color: var(--bs-navbar-color);
4868
}
16848 stevensc 4869
 
16825 efrain 4870
.navbar-text a,
4871
.navbar-text a:hover,
4872
.navbar-text a:focus {
4873
  color: var(--bs-navbar-active-color);
4874
}
4875
 
4876
.navbar-collapse {
4877
  flex-basis: 100%;
4878
  flex-grow: 1;
4879
  align-items: center;
4880
}
4881
 
4882
.navbar-toggler {
4883
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4884
  font-size: var(--bs-navbar-toggler-font-size);
4885
  line-height: 1;
4886
  color: var(--bs-navbar-color);
4887
  background-color: transparent;
4888
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4889
  border-radius: var(--bs-navbar-toggler-border-radius);
4890
  transition: var(--bs-navbar-toggler-transition);
4891
}
16848 stevensc 4892
 
16825 efrain 4893
@media (prefers-reduced-motion: reduce) {
4894
  .navbar-toggler {
4895
    transition: none;
4896
  }
4897
}
16848 stevensc 4898
 
16825 efrain 4899
.navbar-toggler:hover {
4900
  text-decoration: none;
4901
}
16848 stevensc 4902
 
16825 efrain 4903
.navbar-toggler:focus {
4904
  text-decoration: none;
4905
  outline: 0;
4906
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4907
}
4908
 
4909
.navbar-toggler-icon {
4910
  display: inline-block;
4911
  width: 1.5em;
4912
  height: 1.5em;
4913
  vertical-align: middle;
4914
  background-image: var(--bs-navbar-toggler-icon-bg);
4915
  background-repeat: no-repeat;
4916
  background-position: center;
4917
  background-size: 100%;
4918
}
4919
 
4920
.navbar-nav-scroll {
4921
  max-height: var(--bs-scroll-height, 75vh);
4922
  overflow-y: auto;
4923
}
4924
 
4925
@media (min-width: 576px) {
4926
  .navbar-expand-sm {
4927
    flex-wrap: nowrap;
4928
    justify-content: flex-start;
4929
  }
16848 stevensc 4930
 
16825 efrain 4931
  .navbar-expand-sm .navbar-nav {
4932
    flex-direction: row;
4933
  }
16848 stevensc 4934
 
4935
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4936
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4937
    position: absolute;
4938
  }
16848 stevensc 4939
 
16825 efrain 4940
  .navbar-expand-sm .navbar-nav .nav-link {
4941
    padding-right: var(--bs-navbar-nav-link-padding-x);
4942
    padding-left: var(--bs-navbar-nav-link-padding-x);
4943
  }
16848 stevensc 4944
 
16825 efrain 4945
  .navbar-expand-sm .navbar-nav-scroll {
4946
    overflow: visible;
4947
  }
16848 stevensc 4948
 
16825 efrain 4949
  .navbar-expand-sm .navbar-collapse {
4950
    display: flex !important;
4951
    flex-basis: auto;
4952
  }
16848 stevensc 4953
 
16825 efrain 4954
  .navbar-expand-sm .navbar-toggler {
4955
    display: none;
4956
  }
16848 stevensc 4957
 
16825 efrain 4958
  .navbar-expand-sm .offcanvas {
4959
    position: static;
4960
    z-index: auto;
4961
    flex-grow: 1;
4962
    width: auto !important;
4963
    height: auto !important;
4964
    visibility: visible !important;
4965
    background-color: transparent !important;
4966
    border: 0 !important;
4967
    transform: none !important;
4968
    transition: none;
4969
  }
16848 stevensc 4970
 
16825 efrain 4971
  .navbar-expand-sm .offcanvas .offcanvas-header {
4972
    display: none;
4973
  }
16848 stevensc 4974
 
16825 efrain 4975
  .navbar-expand-sm .offcanvas .offcanvas-body {
4976
    display: flex;
4977
    flex-grow: 0;
4978
    padding: 0;
4979
    overflow-y: visible;
4980
  }
4981
}
16848 stevensc 4982
 
16825 efrain 4983
@media (min-width: 768px) {
4984
  .navbar-expand-md {
4985
    flex-wrap: nowrap;
4986
    justify-content: flex-start;
4987
  }
16848 stevensc 4988
 
16825 efrain 4989
  .navbar-expand-md .navbar-nav {
4990
    flex-direction: row;
4991
  }
16848 stevensc 4992
 
4993
  .navbar-expand-md .navbar-nav .dropdown-menu,
4994
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4995
    position: absolute;
4996
  }
16848 stevensc 4997
 
16825 efrain 4998
  .navbar-expand-md .navbar-nav .nav-link {
4999
    padding-right: var(--bs-navbar-nav-link-padding-x);
5000
    padding-left: var(--bs-navbar-nav-link-padding-x);
5001
  }
16848 stevensc 5002
 
16825 efrain 5003
  .navbar-expand-md .navbar-nav-scroll {
5004
    overflow: visible;
5005
  }
16848 stevensc 5006
 
16825 efrain 5007
  .navbar-expand-md .navbar-collapse {
5008
    display: flex !important;
5009
    flex-basis: auto;
5010
  }
16848 stevensc 5011
 
16825 efrain 5012
  .navbar-expand-md .navbar-toggler {
5013
    display: none;
5014
  }
16848 stevensc 5015
 
16825 efrain 5016
  .navbar-expand-md .offcanvas {
5017
    position: static;
5018
    z-index: auto;
5019
    flex-grow: 1;
5020
    width: auto !important;
5021
    height: auto !important;
5022
    visibility: visible !important;
5023
    background-color: transparent !important;
5024
    border: 0 !important;
5025
    transform: none !important;
5026
    transition: none;
5027
  }
16848 stevensc 5028
 
16825 efrain 5029
  .navbar-expand-md .offcanvas .offcanvas-header {
5030
    display: none;
5031
  }
16848 stevensc 5032
 
16825 efrain 5033
  .navbar-expand-md .offcanvas .offcanvas-body {
5034
    display: flex;
5035
    flex-grow: 0;
5036
    padding: 0;
5037
    overflow-y: visible;
5038
  }
5039
}
16848 stevensc 5040
 
16825 efrain 5041
@media (min-width: 992px) {
5042
  .navbar-expand-lg {
5043
    flex-wrap: nowrap;
5044
    justify-content: flex-start;
5045
  }
16848 stevensc 5046
 
16825 efrain 5047
  .navbar-expand-lg .navbar-nav {
5048
    flex-direction: row;
5049
  }
16848 stevensc 5050
 
5051
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5052
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5053
    position: absolute;
5054
  }
16848 stevensc 5055
 
16825 efrain 5056
  .navbar-expand-lg .navbar-nav .nav-link {
5057
    padding-right: var(--bs-navbar-nav-link-padding-x);
5058
    padding-left: var(--bs-navbar-nav-link-padding-x);
5059
  }
16848 stevensc 5060
 
16825 efrain 5061
  .navbar-expand-lg .navbar-nav-scroll {
5062
    overflow: visible;
5063
  }
16848 stevensc 5064
 
16825 efrain 5065
  .navbar-expand-lg .navbar-collapse {
5066
    display: flex !important;
5067
    flex-basis: auto;
5068
  }
16848 stevensc 5069
 
16825 efrain 5070
  .navbar-expand-lg .navbar-toggler {
5071
    display: none;
5072
  }
16848 stevensc 5073
 
16825 efrain 5074
  .navbar-expand-lg .offcanvas {
5075
    position: static;
5076
    z-index: auto;
5077
    flex-grow: 1;
5078
    width: auto !important;
5079
    height: auto !important;
5080
    visibility: visible !important;
5081
    background-color: transparent !important;
5082
    border: 0 !important;
5083
    transform: none !important;
5084
    transition: none;
5085
  }
16848 stevensc 5086
 
16825 efrain 5087
  .navbar-expand-lg .offcanvas .offcanvas-header {
5088
    display: none;
5089
  }
16848 stevensc 5090
 
16825 efrain 5091
  .navbar-expand-lg .offcanvas .offcanvas-body {
5092
    display: flex;
5093
    flex-grow: 0;
5094
    padding: 0;
5095
    overflow-y: visible;
5096
  }
5097
}
16848 stevensc 5098
 
16825 efrain 5099
@media (min-width: 1200px) {
5100
  .navbar-expand-xl {
5101
    flex-wrap: nowrap;
5102
    justify-content: flex-start;
5103
  }
16848 stevensc 5104
 
16825 efrain 5105
  .navbar-expand-xl .navbar-nav {
5106
    flex-direction: row;
5107
  }
16848 stevensc 5108
 
5109
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5110
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5111
    position: absolute;
5112
  }
16848 stevensc 5113
 
16825 efrain 5114
  .navbar-expand-xl .navbar-nav .nav-link {
5115
    padding-right: var(--bs-navbar-nav-link-padding-x);
5116
    padding-left: var(--bs-navbar-nav-link-padding-x);
5117
  }
16848 stevensc 5118
 
16825 efrain 5119
  .navbar-expand-xl .navbar-nav-scroll {
5120
    overflow: visible;
5121
  }
16848 stevensc 5122
 
16825 efrain 5123
  .navbar-expand-xl .navbar-collapse {
5124
    display: flex !important;
5125
    flex-basis: auto;
5126
  }
16848 stevensc 5127
 
16825 efrain 5128
  .navbar-expand-xl .navbar-toggler {
5129
    display: none;
5130
  }
16848 stevensc 5131
 
16825 efrain 5132
  .navbar-expand-xl .offcanvas {
5133
    position: static;
5134
    z-index: auto;
5135
    flex-grow: 1;
5136
    width: auto !important;
5137
    height: auto !important;
5138
    visibility: visible !important;
5139
    background-color: transparent !important;
5140
    border: 0 !important;
5141
    transform: none !important;
5142
    transition: none;
5143
  }
16848 stevensc 5144
 
16825 efrain 5145
  .navbar-expand-xl .offcanvas .offcanvas-header {
5146
    display: none;
5147
  }
16848 stevensc 5148
 
16825 efrain 5149
  .navbar-expand-xl .offcanvas .offcanvas-body {
5150
    display: flex;
5151
    flex-grow: 0;
5152
    padding: 0;
5153
    overflow-y: visible;
5154
  }
5155
}
16848 stevensc 5156
 
16825 efrain 5157
@media (min-width: 1400px) {
5158
  .navbar-expand-xxl {
5159
    flex-wrap: nowrap;
5160
    justify-content: flex-start;
5161
  }
16848 stevensc 5162
 
16825 efrain 5163
  .navbar-expand-xxl .navbar-nav {
5164
    flex-direction: row;
5165
  }
16848 stevensc 5166
 
5167
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5168
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5169
    position: absolute;
5170
  }
16848 stevensc 5171
 
16825 efrain 5172
  .navbar-expand-xxl .navbar-nav .nav-link {
5173
    padding-right: var(--bs-navbar-nav-link-padding-x);
5174
    padding-left: var(--bs-navbar-nav-link-padding-x);
5175
  }
16848 stevensc 5176
 
16825 efrain 5177
  .navbar-expand-xxl .navbar-nav-scroll {
5178
    overflow: visible;
5179
  }
16848 stevensc 5180
 
16825 efrain 5181
  .navbar-expand-xxl .navbar-collapse {
5182
    display: flex !important;
5183
    flex-basis: auto;
5184
  }
16848 stevensc 5185
 
16825 efrain 5186
  .navbar-expand-xxl .navbar-toggler {
5187
    display: none;
5188
  }
16848 stevensc 5189
 
16825 efrain 5190
  .navbar-expand-xxl .offcanvas {
5191
    position: static;
5192
    z-index: auto;
5193
    flex-grow: 1;
5194
    width: auto !important;
5195
    height: auto !important;
5196
    visibility: visible !important;
5197
    background-color: transparent !important;
5198
    border: 0 !important;
5199
    transform: none !important;
5200
    transition: none;
5201
  }
16848 stevensc 5202
 
16825 efrain 5203
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5204
    display: none;
5205
  }
16848 stevensc 5206
 
16825 efrain 5207
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5208
    display: flex;
5209
    flex-grow: 0;
5210
    padding: 0;
5211
    overflow-y: visible;
5212
  }
5213
}
16848 stevensc 5214
 
16825 efrain 5215
.navbar-expand {
5216
  flex-wrap: nowrap;
5217
  justify-content: flex-start;
5218
}
16848 stevensc 5219
 
16825 efrain 5220
.navbar-expand .navbar-nav {
5221
  flex-direction: row;
5222
}
16848 stevensc 5223
 
5224
.navbar-expand .navbar-nav .dropdown-menu,
5225
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5226
  position: absolute;
5227
}
16848 stevensc 5228
 
16825 efrain 5229
.navbar-expand .navbar-nav .nav-link {
5230
  padding-right: var(--bs-navbar-nav-link-padding-x);
5231
  padding-left: var(--bs-navbar-nav-link-padding-x);
5232
}
16848 stevensc 5233
 
16825 efrain 5234
.navbar-expand .navbar-nav-scroll {
5235
  overflow: visible;
5236
}
16848 stevensc 5237
 
16825 efrain 5238
.navbar-expand .navbar-collapse {
5239
  display: flex !important;
5240
  flex-basis: auto;
5241
}
16848 stevensc 5242
 
16825 efrain 5243
.navbar-expand .navbar-toggler {
5244
  display: none;
5245
}
16848 stevensc 5246
 
16825 efrain 5247
.navbar-expand .offcanvas {
5248
  position: static;
5249
  z-index: auto;
5250
  flex-grow: 1;
5251
  width: auto !important;
5252
  height: auto !important;
5253
  visibility: visible !important;
5254
  background-color: transparent !important;
5255
  border: 0 !important;
5256
  transform: none !important;
5257
  transition: none;
5258
}
16848 stevensc 5259
 
16825 efrain 5260
.navbar-expand .offcanvas .offcanvas-header {
5261
  display: none;
5262
}
16848 stevensc 5263
 
16825 efrain 5264
.navbar-expand .offcanvas .offcanvas-body {
5265
  display: flex;
5266
  flex-grow: 0;
5267
  padding: 0;
5268
  overflow-y: visible;
5269
}
5270
 
5271
.navbar-dark {
5272
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5273
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5274
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5275
  --bs-navbar-active-color: #fff;
5276
  --bs-navbar-brand-color: #fff;
5277
  --bs-navbar-brand-hover-color: #fff;
5278
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5279
  --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");
5280
}
5281
 
5282
.card {
5283
  --bs-card-spacer-y: 1.5rem;
5284
  --bs-card-spacer-x: 1.5rem;
5285
  --bs-card-title-spacer-y: 0.875rem;
5286
  --bs-card-border-width: 1px;
5287
  --bs-card-border-color: #f2f4f9;
5288
  --bs-card-border-radius: 0.25rem;
5289
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5290
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5291
  --bs-card-cap-padding-y: 0.875rem;
5292
  --bs-card-cap-padding-x: 1.5rem;
5293
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5294
  --bs-card-cap-color: ;
5295
  --bs-card-height: ;
5296
  --bs-card-color: ;
5297
  --bs-card-bg: #fff;
5298
  --bs-card-img-overlay-padding: 1rem;
5299
  --bs-card-group-margin: 0.75rem;
5300
  position: relative;
5301
  display: flex;
5302
  flex-direction: column;
5303
  min-width: 0;
5304
  height: var(--bs-card-height);
5305
  word-wrap: break-word;
5306
  background-color: var(--bs-card-bg);
5307
  background-clip: border-box;
5308
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5309
  border-radius: var(--bs-card-border-radius);
5310
}
16848 stevensc 5311
 
5312
.card>hr {
16825 efrain 5313
  margin-right: 0;
5314
  margin-left: 0;
5315
}
16848 stevensc 5316
 
5317
.card>.list-group {
16825 efrain 5318
  border-top: inherit;
5319
  border-bottom: inherit;
5320
}
16848 stevensc 5321
 
5322
.card>.list-group:first-child {
16825 efrain 5323
  border-top-width: 0;
5324
  border-top-left-radius: var(--bs-card-inner-border-radius);
5325
  border-top-right-radius: var(--bs-card-inner-border-radius);
5326
}
16848 stevensc 5327
 
5328
.card>.list-group:last-child {
16825 efrain 5329
  border-bottom-width: 0;
5330
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5331
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5332
}
16848 stevensc 5333
 
5334
.card>.card-header+.list-group,
5335
.card>.list-group+.card-footer {
16825 efrain 5336
  border-top: 0;
5337
}
5338
 
5339
.card-body {
5340
  flex: 1 1 auto;
5341
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5342
  color: var(--bs-card-color);
5343
}
5344
 
5345
.card-title {
5346
  margin-bottom: var(--bs-card-title-spacer-y);
5347
}
5348
 
5349
.card-subtitle {
5350
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5351
  margin-bottom: 0;
5352
}
5353
 
5354
.card-text:last-child {
5355
  margin-bottom: 0;
5356
}
5357
 
16848 stevensc 5358
.card-link+.card-link {
16825 efrain 5359
  margin-left: var(--bs-card-spacer-x);
5360
}
5361
 
5362
.card-header {
5363
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5364
  margin-bottom: 0;
5365
  color: var(--bs-card-cap-color);
5366
  background-color: var(--bs-card-cap-bg);
5367
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5368
}
16848 stevensc 5369
 
16825 efrain 5370
.card-header:first-child {
5371
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5372
}
5373
 
5374
.card-footer {
5375
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5376
  color: var(--bs-card-cap-color);
5377
  background-color: var(--bs-card-cap-bg);
5378
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5379
}
16848 stevensc 5380
 
16825 efrain 5381
.card-footer:last-child {
5382
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5383
}
5384
 
5385
.card-header-tabs {
5386
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5387
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5388
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5389
  border-bottom: 0;
5390
}
16848 stevensc 5391
 
16825 efrain 5392
.card-header-tabs .nav-link.active {
5393
  background-color: var(--bs-card-bg);
5394
  border-bottom-color: var(--bs-card-bg);
5395
}
5396
 
5397
.card-header-pills {
5398
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5399
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5400
}
5401
 
5402
.card-img-overlay {
5403
  position: absolute;
5404
  top: 0;
5405
  right: 0;
5406
  bottom: 0;
5407
  left: 0;
5408
  padding: var(--bs-card-img-overlay-padding);
5409
  border-radius: var(--bs-card-inner-border-radius);
5410
}
5411
 
5412
.card-img,
5413
.card-img-top,
5414
.card-img-bottom {
5415
  width: 100%;
5416
}
5417
 
5418
.card-img,
5419
.card-img-top {
5420
  border-top-left-radius: var(--bs-card-inner-border-radius);
5421
  border-top-right-radius: var(--bs-card-inner-border-radius);
5422
}
5423
 
5424
.card-img,
5425
.card-img-bottom {
5426
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5427
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5428
}
5429
 
16848 stevensc 5430
.card-group>.card {
16825 efrain 5431
  margin-bottom: var(--bs-card-group-margin);
5432
}
16848 stevensc 5433
 
16825 efrain 5434
@media (min-width: 576px) {
5435
  .card-group {
5436
    display: flex;
5437
    flex-flow: row wrap;
5438
  }
16848 stevensc 5439
 
5440
  .card-group>.card {
16825 efrain 5441
    flex: 1 0 0%;
5442
    margin-bottom: 0;
5443
  }
16848 stevensc 5444
 
5445
  .card-group>.card+.card {
16825 efrain 5446
    margin-left: 0;
5447
    border-left: 0;
5448
  }
16848 stevensc 5449
 
5450
  .card-group>.card:not(:last-child) {
16825 efrain 5451
    border-top-right-radius: 0;
5452
    border-bottom-right-radius: 0;
5453
  }
16848 stevensc 5454
 
5455
  .card-group>.card:not(:last-child) .card-img-top,
5456
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5457
    border-top-right-radius: 0;
5458
  }
16848 stevensc 5459
 
5460
  .card-group>.card:not(:last-child) .card-img-bottom,
5461
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5462
    border-bottom-right-radius: 0;
5463
  }
16848 stevensc 5464
 
5465
  .card-group>.card:not(:first-child) {
16825 efrain 5466
    border-top-left-radius: 0;
5467
    border-bottom-left-radius: 0;
5468
  }
16848 stevensc 5469
 
5470
  .card-group>.card:not(:first-child) .card-img-top,
5471
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5472
    border-top-left-radius: 0;
5473
  }
16848 stevensc 5474
 
5475
  .card-group>.card:not(:first-child) .card-img-bottom,
5476
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5477
    border-bottom-left-radius: 0;
5478
  }
5479
}
5480
 
5481
.accordion {
5482
  --bs-accordion-color: #000;
5483
  --bs-accordion-bg: #fff;
5484
  --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;
5485
  --bs-accordion-border-color: #e9ecef;
5486
  --bs-accordion-border-width: 1px;
5487
  --bs-accordion-border-radius: 0.25rem;
5488
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5489
  --bs-accordion-btn-padding-x: 1.25rem;
5490
  --bs-accordion-btn-padding-y: 1rem;
5491
  --bs-accordion-btn-color: #000;
5492
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5493
  --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");
5494
  --bs-accordion-btn-icon-width: 0.875rem;
5495
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5496
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5497
  --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");
5498
  --bs-accordion-btn-focus-border-color: #cbd1db;
5499
  --bs-accordion-btn-focus-box-shadow: none;
5500
  --bs-accordion-body-padding-x: 1.25rem;
5501
  --bs-accordion-body-padding-y: 1rem;
5502
  --bs-accordion-active-color: #5b66e6;
5503
  --bs-accordion-active-bg: #f0f1ff;
5504
}
5505
 
5506
.accordion-button {
5507
  position: relative;
5508
  display: flex;
5509
  align-items: center;
5510
  width: 100%;
5511
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5512
  font-size: 0.875rem;
5513
  color: var(--bs-accordion-btn-color);
5514
  text-align: left;
5515
  background-color: var(--bs-accordion-btn-bg);
5516
  border: 0;
5517
  border-radius: 0;
5518
  overflow-anchor: none;
5519
  transition: var(--bs-accordion-transition);
5520
}
16848 stevensc 5521
 
16825 efrain 5522
@media (prefers-reduced-motion: reduce) {
5523
  .accordion-button {
5524
    transition: none;
5525
  }
5526
}
16848 stevensc 5527
 
16825 efrain 5528
.accordion-button:not(.collapsed) {
5529
  color: var(--bs-accordion-active-color);
5530
  background-color: var(--bs-accordion-active-bg);
5531
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5532
}
16848 stevensc 5533
 
16825 efrain 5534
.accordion-button:not(.collapsed)::after {
5535
  background-image: var(--bs-accordion-btn-active-icon);
5536
  transform: var(--bs-accordion-btn-icon-transform);
5537
}
16848 stevensc 5538
 
16825 efrain 5539
.accordion-button::after {
5540
  flex-shrink: 0;
5541
  width: var(--bs-accordion-btn-icon-width);
5542
  height: var(--bs-accordion-btn-icon-width);
5543
  margin-left: auto;
5544
  content: "";
5545
  background-image: var(--bs-accordion-btn-icon);
5546
  background-repeat: no-repeat;
5547
  background-size: var(--bs-accordion-btn-icon-width);
5548
  transition: var(--bs-accordion-btn-icon-transition);
5549
}
16848 stevensc 5550
 
16825 efrain 5551
@media (prefers-reduced-motion: reduce) {
5552
  .accordion-button::after {
5553
    transition: none;
5554
  }
5555
}
16848 stevensc 5556
 
16825 efrain 5557
.accordion-button:hover {
5558
  z-index: 2;
5559
}
16848 stevensc 5560
 
16825 efrain 5561
.accordion-button:focus {
5562
  z-index: 3;
5563
  border-color: var(--bs-accordion-btn-focus-border-color);
5564
  outline: 0;
5565
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5566
}
5567
 
5568
.accordion-header {
5569
  margin-bottom: 0;
5570
}
5571
 
5572
.accordion-item {
5573
  color: var(--bs-accordion-color);
5574
  background-color: var(--bs-accordion-bg);
5575
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5576
}
16848 stevensc 5577
 
16825 efrain 5578
.accordion-item:first-of-type {
5579
  border-top-left-radius: var(--bs-accordion-border-radius);
5580
  border-top-right-radius: var(--bs-accordion-border-radius);
5581
}
16848 stevensc 5582
 
16825 efrain 5583
.accordion-item:first-of-type .accordion-button {
5584
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5585
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5586
}
16848 stevensc 5587
 
16825 efrain 5588
.accordion-item:not(:first-of-type) {
5589
  border-top: 0;
5590
}
16848 stevensc 5591
 
16825 efrain 5592
.accordion-item:last-of-type {
5593
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5594
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5595
}
16848 stevensc 5596
 
16825 efrain 5597
.accordion-item:last-of-type .accordion-button.collapsed {
5598
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5599
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5600
}
16848 stevensc 5601
 
16825 efrain 5602
.accordion-item:last-of-type .accordion-collapse {
5603
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5604
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5605
}
5606
 
5607
.accordion-body {
5608
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5609
}
5610
 
5611
.accordion-flush .accordion-collapse {
5612
  border-width: 0;
5613
}
16848 stevensc 5614
 
16825 efrain 5615
.accordion-flush .accordion-item {
5616
  border-right: 0;
5617
  border-left: 0;
5618
  border-radius: 0;
5619
}
16848 stevensc 5620
 
16825 efrain 5621
.accordion-flush .accordion-item:first-child {
5622
  border-top: 0;
5623
}
16848 stevensc 5624
 
16825 efrain 5625
.accordion-flush .accordion-item:last-child {
5626
  border-bottom: 0;
5627
}
16848 stevensc 5628
 
5629
.accordion-flush .accordion-item .accordion-button,
5630
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5631
  border-radius: 0;
5632
}
5633
 
5634
.breadcrumb {
5635
  --bs-breadcrumb-padding-x: 0;
5636
  --bs-breadcrumb-padding-y: 0;
5637
  --bs-breadcrumb-margin-bottom: 1rem;
5638
  --bs-breadcrumb-bg: ;
5639
  --bs-breadcrumb-border-radius: ;
5640
  --bs-breadcrumb-divider-color: #7987a1;
5641
  --bs-breadcrumb-item-padding-x: 0.5rem;
5642
  --bs-breadcrumb-item-active-color: #7987a1;
5643
  display: flex;
5644
  flex-wrap: wrap;
5645
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5646
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5647
  font-size: var(--bs-breadcrumb-font-size);
5648
  list-style: none;
5649
  background-color: var(--bs-breadcrumb-bg);
5650
  border-radius: var(--bs-breadcrumb-border-radius);
5651
}
5652
 
16848 stevensc 5653
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5654
  padding-left: var(--bs-breadcrumb-item-padding-x);
5655
}
16848 stevensc 5656
 
5657
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5658
  float: left;
5659
  padding-right: var(--bs-breadcrumb-item-padding-x);
5660
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5661
  content: var(--bs-breadcrumb-divider, "/")
5662
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5663
  ;
16825 efrain 5664
}
16848 stevensc 5665
 
16825 efrain 5666
.breadcrumb-item.active {
5667
  color: var(--bs-breadcrumb-item-active-color);
5668
}
5669
 
5670
.pagination {
5671
  --bs-pagination-padding-x: 1rem;
5672
  --bs-pagination-padding-y: 0.469rem;
5673
  --bs-pagination-font-size: 0.875rem;
5674
  --bs-pagination-color: #6571ff;
5675
  --bs-pagination-bg: #fff;
5676
  --bs-pagination-border-width: 1px;
5677
  --bs-pagination-border-color: #dee2e6;
5678
  --bs-pagination-border-radius: 0.25rem;
5679
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5680
  --bs-pagination-hover-bg: #e9ecef;
5681
  --bs-pagination-hover-border-color: #dee2e6;
5682
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5683
  --bs-pagination-focus-bg: #e9ecef;
5684
  --bs-pagination-focus-box-shadow: none;
5685
  --bs-pagination-active-color: #fff;
5686
  --bs-pagination-active-bg: #6571ff;
5687
  --bs-pagination-active-border-color: #6571ff;
5688
  --bs-pagination-disabled-color: #7987a1;
5689
  --bs-pagination-disabled-bg: #fff;
5690
  --bs-pagination-disabled-border-color: #dee2e6;
5691
  display: flex;
5692
  padding-left: 0;
5693
  list-style: none;
5694
}
5695
 
5696
.page-link {
5697
  position: relative;
5698
  display: block;
5699
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5700
  font-size: var(--bs-pagination-font-size);
5701
  color: var(--bs-pagination-color);
5702
  background-color: var(--bs-pagination-bg);
5703
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5704
  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;
5705
}
16848 stevensc 5706
 
16825 efrain 5707
@media (prefers-reduced-motion: reduce) {
5708
  .page-link {
5709
    transition: none;
5710
  }
5711
}
16848 stevensc 5712
 
16825 efrain 5713
.page-link:hover {
5714
  z-index: 2;
5715
  color: var(--bs-pagination-hover-color);
5716
  background-color: var(--bs-pagination-hover-bg);
5717
  border-color: var(--bs-pagination-hover-border-color);
5718
}
16848 stevensc 5719
 
16825 efrain 5720
.page-link:focus {
5721
  z-index: 3;
5722
  color: var(--bs-pagination-focus-color);
5723
  background-color: var(--bs-pagination-focus-bg);
5724
  outline: 0;
5725
  box-shadow: var(--bs-pagination-focus-box-shadow);
5726
}
16848 stevensc 5727
 
5728
.page-link.active,
5729
.active>.page-link {
16825 efrain 5730
  z-index: 3;
5731
  color: var(--bs-pagination-active-color);
5732
  background-color: var(--bs-pagination-active-bg);
5733
  border-color: var(--bs-pagination-active-border-color);
5734
}
16848 stevensc 5735
 
5736
.page-link.disabled,
5737
.disabled>.page-link {
16825 efrain 5738
  color: var(--bs-pagination-disabled-color);
5739
  pointer-events: none;
5740
  background-color: var(--bs-pagination-disabled-bg);
5741
  border-color: var(--bs-pagination-disabled-border-color);
5742
}
5743
 
5744
.page-item:not(:first-child) .page-link {
5745
  margin-left: -1px;
5746
}
16848 stevensc 5747
 
16825 efrain 5748
.page-item:first-child .page-link {
5749
  border-top-left-radius: var(--bs-pagination-border-radius);
5750
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5751
}
16848 stevensc 5752
 
16825 efrain 5753
.page-item:last-child .page-link {
5754
  border-top-right-radius: var(--bs-pagination-border-radius);
5755
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5756
}
5757
 
5758
.pagination-lg {
5759
  --bs-pagination-padding-x: 1.1rem;
5760
  --bs-pagination-padding-y: 0.5rem;
5761
  --bs-pagination-font-size: 1rem;
5762
  --bs-pagination-border-radius: 0.5rem;
5763
}
5764
 
5765
.pagination-sm {
5766
  --bs-pagination-padding-x: 0.75rem;
5767
  --bs-pagination-padding-y: 0.391rem;
5768
  --bs-pagination-font-size: 0.812rem;
5769
  --bs-pagination-border-radius: 0.25rem;
5770
}
5771
 
5772
.badge {
5773
  --bs-badge-padding-x: 0.65em;
5774
  --bs-badge-padding-y: 0.35em;
5775
  --bs-badge-font-size: 0.8em;
5776
  --bs-badge-font-weight: 500;
5777
  --bs-badge-color: #fff;
5778
  --bs-badge-border-radius: 0.25rem;
5779
  display: inline-block;
5780
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5781
  font-size: var(--bs-badge-font-size);
5782
  font-weight: var(--bs-badge-font-weight);
5783
  line-height: 1;
5784
  color: var(--bs-badge-color);
5785
  text-align: center;
5786
  white-space: nowrap;
5787
  vertical-align: baseline;
5788
  border-radius: var(--bs-badge-border-radius);
5789
}
16848 stevensc 5790
 
16825 efrain 5791
.badge:empty {
5792
  display: none;
5793
}
5794
 
16848 stevensc 5795
.btn .badge,
5796
.wizard>.actions a .badge,
5797
div.tox .tox-button .badge,
5798
.swal2-popup .swal2-actions button .badge,
5799
.fc .fc-button-primary .badge {
16825 efrain 5800
  position: relative;
5801
  top: -1px;
5802
}
5803
 
5804
.alert {
5805
  --bs-alert-bg: transparent;
5806
  --bs-alert-padding-x: 1rem;
5807
  --bs-alert-padding-y: 1rem;
5808
  --bs-alert-margin-bottom: 1rem;
5809
  --bs-alert-color: inherit;
5810
  --bs-alert-border-color: transparent;
5811
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5812
  --bs-alert-border-radius: 0.25rem;
5813
  position: relative;
5814
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5815
  margin-bottom: var(--bs-alert-margin-bottom);
5816
  color: var(--bs-alert-color);
5817
  background-color: var(--bs-alert-bg);
5818
  border: var(--bs-alert-border);
5819
  border-radius: var(--bs-alert-border-radius);
5820
}
5821
 
5822
.alert-heading {
5823
  color: inherit;
5824
}
5825
 
5826
.alert-link {
5827
  font-weight: 500;
5828
}
5829
 
5830
.alert-dismissible {
5831
  padding-right: 3rem;
5832
}
16848 stevensc 5833
 
16825 efrain 5834
.alert-dismissible .btn-close {
5835
  position: absolute;
5836
  top: 0;
5837
  right: 0;
5838
  z-index: 2;
5839
  padding: 1.25rem 1rem;
5840
}
5841
 
5842
.alert-primary {
5843
  --bs-alert-color: #3d4499;
5844
  --bs-alert-bg: #e0e3ff;
5845
  --bs-alert-border-color: #d1d4ff;
5846
}
16848 stevensc 5847
 
16825 efrain 5848
.alert-primary .alert-link {
5849
  color: #31367a;
5850
}
5851
 
5852
.alert-secondary {
5853
  --bs-alert-color: #495161;
5854
  --bs-alert-bg: #e4e7ec;
5855
  --bs-alert-border-color: #d7dbe3;
5856
}
16848 stevensc 5857
 
16825 efrain 5858
.alert-secondary .alert-link {
5859
  color: #3a414e;
5860
}
5861
 
5862
.alert-success {
5863
  --bs-alert-color: #03622c;
5864
  --bs-alert-bg: #cdeddb;
5865
  --bs-alert-border-color: #b4e3c9;
5866
}
16848 stevensc 5867
 
16825 efrain 5868
.alert-success .alert-link {
5869
  color: #024e23;
5870
}
5871
 
5872
.alert-info {
5873
  --bs-alert-color: #3d7d7d;
5874
  --bs-alert-bg: #e0f6f6;
5875
  --bs-alert-border-color: #d1f1f1;
5876
}
16848 stevensc 5877
 
16825 efrain 5878
.alert-info .alert-link {
5879
  color: #316464;
5880
}
5881
 
5882
.alert-warning {
5883
  --bs-alert-color: #977104;
5884
  --bs-alert-bg: #fef2cd;
5885
  --bs-alert-border-color: #feebb4;
5886
}
16848 stevensc 5887
 
16825 efrain 5888
.alert-warning .alert-link {
5889
  color: #795a03;
5890
}
5891
 
5892
.alert-danger {
5893
  --bs-alert-color: #991f3d;
5894
  --bs-alert-bg: #ffd6e0;
5895
  --bs-alert-border-color: #ffc2d1;
5896
}
16848 stevensc 5897
 
16825 efrain 5898
.alert-danger .alert-link {
5899
  color: #7a1931;
5900
}
5901
 
5902
.alert-light {
5903
  --bs-alert-color: #8c8e8f;
5904
  --bs-alert-bg: #fbfbfc;
5905
  --bs-alert-border-color: #f8f9fa;
5906
}
16848 stevensc 5907
 
16825 efrain 5908
.alert-light .alert-link {
5909
  color: #707272;
5910
}
5911
 
5912
.alert-dark {
5913
  --bs-alert-color: #04070e;
5914
  --bs-alert-bg: #cdced1;
5915
  --bs-alert-border-color: #b4b6b9;
5916
}
16848 stevensc 5917
 
16825 efrain 5918
.alert-dark .alert-link {
5919
  color: #03060b;
5920
}
5921
 
5922
@keyframes progress-bar-stripes {
5923
  0% {
5924
    background-position-x: 1rem;
5925
  }
5926
}
16848 stevensc 5927
 
16825 efrain 5928
.progress {
5929
  --bs-progress-height: 1rem;
5930
  --bs-progress-font-size: 0.65625rem;
5931
  --bs-progress-bg: #e9ecef;
5932
  --bs-progress-border-radius: 0.25rem;
5933
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5934
  --bs-progress-bar-color: #fff;
5935
  --bs-progress-bar-bg: #6571ff;
5936
  --bs-progress-bar-transition: width 0.6s ease;
5937
  display: flex;
5938
  height: var(--bs-progress-height);
5939
  overflow: hidden;
5940
  font-size: var(--bs-progress-font-size);
5941
  background-color: var(--bs-progress-bg);
5942
  border-radius: var(--bs-progress-border-radius);
5943
}
5944
 
5945
.progress-bar {
5946
  display: flex;
5947
  flex-direction: column;
5948
  justify-content: center;
5949
  overflow: hidden;
5950
  color: var(--bs-progress-bar-color);
5951
  text-align: center;
5952
  white-space: nowrap;
5953
  background-color: var(--bs-progress-bar-bg);
5954
  transition: var(--bs-progress-bar-transition);
5955
}
16848 stevensc 5956
 
16825 efrain 5957
@media (prefers-reduced-motion: reduce) {
5958
  .progress-bar {
5959
    transition: none;
5960
  }
5961
}
5962
 
5963
.progress-bar-striped {
5964
  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);
5965
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5966
}
5967
 
5968
.progress-bar-animated {
5969
  animation: 1s linear infinite progress-bar-stripes;
5970
}
16848 stevensc 5971
 
16825 efrain 5972
@media (prefers-reduced-motion: reduce) {
5973
  .progress-bar-animated {
5974
    animation: none;
5975
  }
5976
}
5977
 
5978
.list-group {
5979
  --bs-list-group-color: #060c17;
5980
  --bs-list-group-bg: #fff;
5981
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5982
  --bs-list-group-border-width: 1px;
5983
  --bs-list-group-border-radius: 0.25rem;
5984
  --bs-list-group-item-padding-x: 1.25rem;
5985
  --bs-list-group-item-padding-y: 0.75rem;
5986
  --bs-list-group-action-color: #41516c;
5987
  --bs-list-group-action-hover-color: #41516c;
5988
  --bs-list-group-action-hover-bg: #f8f9fa;
5989
  --bs-list-group-action-active-color: #000;
5990
  --bs-list-group-action-active-bg: #e9ecef;
5991
  --bs-list-group-disabled-color: #7987a1;
5992
  --bs-list-group-disabled-bg: #fff;
5993
  --bs-list-group-active-color: #fff;
5994
  --bs-list-group-active-bg: #6571ff;
5995
  --bs-list-group-active-border-color: #6571ff;
5996
  display: flex;
5997
  flex-direction: column;
5998
  padding-left: 0;
5999
  margin-bottom: 0;
6000
  border-radius: var(--bs-list-group-border-radius);
6001
}
6002
 
6003
.list-group-numbered {
6004
  list-style-type: none;
6005
  counter-reset: section;
6006
}
16848 stevensc 6007
 
6008
.list-group-numbered>.list-group-item::before {
16825 efrain 6009
  content: counters(section, ".") ". ";
6010
  counter-increment: section;
6011
}
6012
 
6013
.list-group-item-action {
6014
  width: 100%;
6015
  color: var(--bs-list-group-action-color);
6016
  text-align: inherit;
6017
}
16848 stevensc 6018
 
6019
.list-group-item-action:hover,
6020
.list-group-item-action:focus {
16825 efrain 6021
  z-index: 1;
6022
  color: var(--bs-list-group-action-hover-color);
6023
  text-decoration: none;
6024
  background-color: var(--bs-list-group-action-hover-bg);
6025
}
16848 stevensc 6026
 
16825 efrain 6027
.list-group-item-action:active {
6028
  color: var(--bs-list-group-action-active-color);
6029
  background-color: var(--bs-list-group-action-active-bg);
6030
}
6031
 
6032
.list-group-item {
6033
  position: relative;
6034
  display: block;
6035
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6036
  color: var(--bs-list-group-color);
6037
  background-color: var(--bs-list-group-bg);
6038
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6039
}
16848 stevensc 6040
 
16825 efrain 6041
.list-group-item:first-child {
6042
  border-top-left-radius: inherit;
6043
  border-top-right-radius: inherit;
6044
}
16848 stevensc 6045
 
16825 efrain 6046
.list-group-item:last-child {
6047
  border-bottom-right-radius: inherit;
6048
  border-bottom-left-radius: inherit;
6049
}
16848 stevensc 6050
 
6051
.list-group-item.disabled,
6052
.list-group-item:disabled {
16825 efrain 6053
  color: var(--bs-list-group-disabled-color);
6054
  pointer-events: none;
6055
  background-color: var(--bs-list-group-disabled-bg);
6056
}
16848 stevensc 6057
 
16825 efrain 6058
.list-group-item.active {
6059
  z-index: 2;
6060
  color: var(--bs-list-group-active-color);
6061
  background-color: var(--bs-list-group-active-bg);
6062
  border-color: var(--bs-list-group-active-border-color);
6063
}
16848 stevensc 6064
 
6065
.list-group-item+.list-group-item {
16825 efrain 6066
  border-top-width: 0;
6067
}
16848 stevensc 6068
 
6069
.list-group-item+.list-group-item.active {
16825 efrain 6070
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6071
  border-top-width: var(--bs-list-group-border-width);
6072
}
6073
 
6074
.list-group-horizontal {
6075
  flex-direction: row;
6076
}
16848 stevensc 6077
 
6078
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6079
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6080
  border-top-right-radius: 0;
6081
}
16848 stevensc 6082
 
6083
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6084
  border-top-right-radius: var(--bs-list-group-border-radius);
6085
  border-bottom-left-radius: 0;
6086
}
16848 stevensc 6087
 
6088
.list-group-horizontal>.list-group-item.active {
16825 efrain 6089
  margin-top: 0;
6090
}
16848 stevensc 6091
 
6092
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6093
  border-top-width: var(--bs-list-group-border-width);
6094
  border-left-width: 0;
6095
}
16848 stevensc 6096
 
6097
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6098
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6099
  border-left-width: var(--bs-list-group-border-width);
6100
}
6101
 
6102
@media (min-width: 576px) {
6103
  .list-group-horizontal-sm {
6104
    flex-direction: row;
6105
  }
16848 stevensc 6106
 
6107
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6108
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6109
    border-top-right-radius: 0;
6110
  }
16848 stevensc 6111
 
6112
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6113
    border-top-right-radius: var(--bs-list-group-border-radius);
6114
    border-bottom-left-radius: 0;
6115
  }
16848 stevensc 6116
 
6117
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6118
    margin-top: 0;
6119
  }
16848 stevensc 6120
 
6121
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6122
    border-top-width: var(--bs-list-group-border-width);
6123
    border-left-width: 0;
6124
  }
16848 stevensc 6125
 
6126
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6127
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6128
    border-left-width: var(--bs-list-group-border-width);
6129
  }
6130
}
16848 stevensc 6131
 
16825 efrain 6132
@media (min-width: 768px) {
6133
  .list-group-horizontal-md {
6134
    flex-direction: row;
6135
  }
16848 stevensc 6136
 
6137
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6138
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6139
    border-top-right-radius: 0;
6140
  }
16848 stevensc 6141
 
6142
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6143
    border-top-right-radius: var(--bs-list-group-border-radius);
6144
    border-bottom-left-radius: 0;
6145
  }
16848 stevensc 6146
 
6147
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6148
    margin-top: 0;
6149
  }
16848 stevensc 6150
 
6151
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6152
    border-top-width: var(--bs-list-group-border-width);
6153
    border-left-width: 0;
6154
  }
16848 stevensc 6155
 
6156
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6157
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6158
    border-left-width: var(--bs-list-group-border-width);
6159
  }
6160
}
16848 stevensc 6161
 
16825 efrain 6162
@media (min-width: 992px) {
6163
  .list-group-horizontal-lg {
6164
    flex-direction: row;
6165
  }
16848 stevensc 6166
 
6167
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6168
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6169
    border-top-right-radius: 0;
6170
  }
16848 stevensc 6171
 
6172
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6173
    border-top-right-radius: var(--bs-list-group-border-radius);
6174
    border-bottom-left-radius: 0;
6175
  }
16848 stevensc 6176
 
6177
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6178
    margin-top: 0;
6179
  }
16848 stevensc 6180
 
6181
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6182
    border-top-width: var(--bs-list-group-border-width);
6183
    border-left-width: 0;
6184
  }
16848 stevensc 6185
 
6186
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6187
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6188
    border-left-width: var(--bs-list-group-border-width);
6189
  }
6190
}
16848 stevensc 6191
 
16825 efrain 6192
@media (min-width: 1200px) {
6193
  .list-group-horizontal-xl {
6194
    flex-direction: row;
6195
  }
16848 stevensc 6196
 
6197
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6198
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6199
    border-top-right-radius: 0;
6200
  }
16848 stevensc 6201
 
6202
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6203
    border-top-right-radius: var(--bs-list-group-border-radius);
6204
    border-bottom-left-radius: 0;
6205
  }
16848 stevensc 6206
 
6207
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6208
    margin-top: 0;
6209
  }
16848 stevensc 6210
 
6211
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6212
    border-top-width: var(--bs-list-group-border-width);
6213
    border-left-width: 0;
6214
  }
16848 stevensc 6215
 
6216
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6217
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6218
    border-left-width: var(--bs-list-group-border-width);
6219
  }
6220
}
16848 stevensc 6221
 
16825 efrain 6222
@media (min-width: 1400px) {
6223
  .list-group-horizontal-xxl {
6224
    flex-direction: row;
6225
  }
16848 stevensc 6226
 
6227
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6228
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6229
    border-top-right-radius: 0;
6230
  }
16848 stevensc 6231
 
6232
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6233
    border-top-right-radius: var(--bs-list-group-border-radius);
6234
    border-bottom-left-radius: 0;
6235
  }
16848 stevensc 6236
 
6237
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6238
    margin-top: 0;
6239
  }
16848 stevensc 6240
 
6241
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6242
    border-top-width: var(--bs-list-group-border-width);
6243
    border-left-width: 0;
6244
  }
16848 stevensc 6245
 
6246
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6247
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6248
    border-left-width: var(--bs-list-group-border-width);
6249
  }
6250
}
16848 stevensc 6251
 
16825 efrain 6252
.list-group-flush {
6253
  border-radius: 0;
6254
}
16848 stevensc 6255
 
6256
.list-group-flush>.list-group-item {
16825 efrain 6257
  border-width: 0 0 var(--bs-list-group-border-width);
6258
}
16848 stevensc 6259
 
6260
.list-group-flush>.list-group-item:last-child {
16825 efrain 6261
  border-bottom-width: 0;
6262
}
6263
 
6264
.list-group-item-primary {
6265
  color: #3d4499;
6266
  background-color: #e0e3ff;
6267
}
16848 stevensc 6268
 
6269
.list-group-item-primary.list-group-item-action:hover,
6270
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6271
  color: #3d4499;
6272
  background-color: #cacce6;
6273
}
16848 stevensc 6274
 
16825 efrain 6275
.list-group-item-primary.list-group-item-action.active {
6276
  color: #fff;
6277
  background-color: #3d4499;
6278
  border-color: #3d4499;
6279
}
6280
 
6281
.list-group-item-secondary {
6282
  color: #495161;
6283
  background-color: #e4e7ec;
6284
}
16848 stevensc 6285
 
6286
.list-group-item-secondary.list-group-item-action:hover,
6287
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6288
  color: #495161;
6289
  background-color: #cdd0d4;
6290
}
16848 stevensc 6291
 
16825 efrain 6292
.list-group-item-secondary.list-group-item-action.active {
6293
  color: #fff;
6294
  background-color: #495161;
6295
  border-color: #495161;
6296
}
6297
 
6298
.list-group-item-success {
6299
  color: #03622c;
6300
  background-color: #cdeddb;
6301
}
16848 stevensc 6302
 
6303
.list-group-item-success.list-group-item-action:hover,
6304
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6305
  color: #03622c;
6306
  background-color: #b9d5c5;
6307
}
16848 stevensc 6308
 
16825 efrain 6309
.list-group-item-success.list-group-item-action.active {
6310
  color: #fff;
6311
  background-color: #03622c;
6312
  border-color: #03622c;
6313
}
6314
 
6315
.list-group-item-info {
6316
  color: #3d7d7d;
6317
  background-color: #e0f6f6;
6318
}
16848 stevensc 6319
 
6320
.list-group-item-info.list-group-item-action:hover,
6321
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6322
  color: #3d7d7d;
6323
  background-color: #cadddd;
6324
}
16848 stevensc 6325
 
16825 efrain 6326
.list-group-item-info.list-group-item-action.active {
6327
  color: #fff;
6328
  background-color: #3d7d7d;
6329
  border-color: #3d7d7d;
6330
}
6331
 
6332
.list-group-item-warning {
6333
  color: #977104;
6334
  background-color: #fef2cd;
6335
}
16848 stevensc 6336
 
6337
.list-group-item-warning.list-group-item-action:hover,
6338
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6339
  color: #977104;
6340
  background-color: #e5dab9;
6341
}
16848 stevensc 6342
 
16825 efrain 6343
.list-group-item-warning.list-group-item-action.active {
6344
  color: #fff;
6345
  background-color: #977104;
6346
  border-color: #977104;
6347
}
6348
 
6349
.list-group-item-danger {
6350
  color: #991f3d;
6351
  background-color: #ffd6e0;
6352
}
16848 stevensc 6353
 
6354
.list-group-item-danger.list-group-item-action:hover,
6355
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6356
  color: #991f3d;
6357
  background-color: #e6c1ca;
6358
}
16848 stevensc 6359
 
16825 efrain 6360
.list-group-item-danger.list-group-item-action.active {
6361
  color: #fff;
6362
  background-color: #991f3d;
6363
  border-color: #991f3d;
6364
}
6365
 
6366
.list-group-item-light {
6367
  color: #8c8e8f;
6368
  background-color: #fbfbfc;
6369
}
16848 stevensc 6370
 
6371
.list-group-item-light.list-group-item-action:hover,
6372
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6373
  color: #8c8e8f;
6374
  background-color: #e2e2e3;
6375
}
16848 stevensc 6376
 
16825 efrain 6377
.list-group-item-light.list-group-item-action.active {
6378
  color: #fff;
6379
  background-color: #8c8e8f;
6380
  border-color: #8c8e8f;
6381
}
6382
 
6383
.list-group-item-dark {
6384
  color: #04070e;
6385
  background-color: #cdced1;
6386
}
16848 stevensc 6387
 
6388
.list-group-item-dark.list-group-item-action:hover,
6389
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6390
  color: #04070e;
6391
  background-color: #b9b9bc;
6392
}
16848 stevensc 6393
 
16825 efrain 6394
.list-group-item-dark.list-group-item-action.active {
6395
  color: #fff;
6396
  background-color: #04070e;
6397
  border-color: #04070e;
6398
}
6399
 
6400
.btn-close {
6401
  box-sizing: content-box;
6402
  width: 0.8em;
6403
  height: 0.8em;
6404
  padding: 0.25em 0.25em;
6405
  color: #000;
6406
  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;
6407
  border: 0;
6408
  border-radius: 0.25rem;
6409
  opacity: 0.5;
6410
}
16848 stevensc 6411
 
16825 efrain 6412
.btn-close:hover {
6413
  color: #000;
6414
  text-decoration: none;
6415
  opacity: 0.75;
6416
}
16848 stevensc 6417
 
16825 efrain 6418
.btn-close:focus {
6419
  outline: 0;
6420
  box-shadow: none;
6421
  opacity: 1;
6422
}
16848 stevensc 6423
 
6424
.btn-close:disabled,
6425
.btn-close.disabled {
16825 efrain 6426
  pointer-events: none;
6427
  user-select: none;
6428
  opacity: 0.25;
6429
}
6430
 
6431
.btn-close-white {
6432
  filter: invert(1) grayscale(100%) brightness(200%);
6433
}
6434
 
6435
.toast {
6436
  --bs-toast-zindex: 1090;
6437
  --bs-toast-padding-x: 0.75rem;
6438
  --bs-toast-padding-y: 0.5rem;
6439
  --bs-toast-spacing: 1.5rem;
6440
  --bs-toast-max-width: 350px;
6441
  --bs-toast-font-size: 0.875rem;
6442
  --bs-toast-color: ;
6443
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6444
  --bs-toast-border-width: 1px;
6445
  --bs-toast-border-color: var(--bs-border-color-translucent);
6446
  --bs-toast-border-radius: 0.25rem;
6447
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6448
  --bs-toast-header-color: #7987a1;
6449
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6450
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6451
  width: var(--bs-toast-max-width);
6452
  max-width: 100%;
6453
  font-size: var(--bs-toast-font-size);
6454
  color: var(--bs-toast-color);
6455
  pointer-events: auto;
6456
  background-color: var(--bs-toast-bg);
6457
  background-clip: padding-box;
6458
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6459
  box-shadow: var(--bs-toast-box-shadow);
6460
  border-radius: var(--bs-toast-border-radius);
6461
}
16848 stevensc 6462
 
16825 efrain 6463
.toast.showing {
6464
  opacity: 0;
6465
}
16848 stevensc 6466
 
16825 efrain 6467
.toast:not(.show) {
6468
  display: none;
6469
}
6470
 
6471
.toast-container {
6472
  --bs-toast-zindex: 1090;
6473
  position: absolute;
6474
  z-index: var(--bs-toast-zindex);
6475
  width: max-content;
6476
  max-width: 100%;
6477
  pointer-events: none;
6478
}
16848 stevensc 6479
 
6480
.toast-container> :not(:last-child) {
16825 efrain 6481
  margin-bottom: var(--bs-toast-spacing);
6482
}
6483
 
6484
.toast-header {
6485
  display: flex;
6486
  align-items: center;
6487
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6488
  color: var(--bs-toast-header-color);
6489
  background-color: var(--bs-toast-header-bg);
6490
  background-clip: padding-box;
6491
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6492
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6493
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6494
}
16848 stevensc 6495
 
16825 efrain 6496
.toast-header .btn-close {
6497
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6498
  margin-left: var(--bs-toast-padding-x);
6499
}
6500
 
6501
.toast-body {
6502
  padding: var(--bs-toast-padding-x);
6503
  word-wrap: break-word;
6504
}
6505
 
6506
.modal {
6507
  --bs-modal-zindex: 1055;
6508
  --bs-modal-width: 500px;
6509
  --bs-modal-padding: 1rem;
6510
  --bs-modal-margin: 0.5rem;
6511
  --bs-modal-color: ;
6512
  --bs-modal-bg: #fff;
6513
  --bs-modal-border-color: #e9ecef;
6514
  --bs-modal-border-width: 1px;
6515
  --bs-modal-border-radius: 0.5rem;
6516
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6517
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6518
  --bs-modal-header-padding-x: 1rem;
6519
  --bs-modal-header-padding-y: 1rem;
6520
  --bs-modal-header-padding: 1rem 1rem;
6521
  --bs-modal-header-border-color: var(--bs-border-color);
6522
  --bs-modal-header-border-width: 1px;
6523
  --bs-modal-title-line-height: 1.5;
6524
  --bs-modal-footer-gap: 0.5rem;
6525
  --bs-modal-footer-bg: ;
6526
  --bs-modal-footer-border-color: var(--bs-border-color);
6527
  --bs-modal-footer-border-width: 1px;
6528
  position: fixed;
6529
  top: 0;
6530
  left: 0;
6531
  z-index: var(--bs-modal-zindex);
6532
  display: none;
6533
  width: 100%;
6534
  height: 100%;
6535
  overflow-x: hidden;
6536
  overflow-y: auto;
6537
  outline: 0;
6538
}
6539
 
6540
.modal-dialog {
6541
  position: relative;
6542
  width: auto;
6543
  margin: var(--bs-modal-margin);
6544
  pointer-events: none;
6545
}
16848 stevensc 6546
 
16825 efrain 6547
.modal.fade .modal-dialog {
6548
  transition: transform 0.4s ease;
6549
  transform: scale(0.8);
6550
}
16848 stevensc 6551
 
16825 efrain 6552
@media (prefers-reduced-motion: reduce) {
6553
  .modal.fade .modal-dialog {
6554
    transition: none;
6555
  }
6556
}
16848 stevensc 6557
 
16825 efrain 6558
.modal.show .modal-dialog {
6559
  transform: none;
6560
}
16848 stevensc 6561
 
16825 efrain 6562
.modal.modal-static .modal-dialog {
6563
  transform: scale(1.02);
6564
}
6565
 
6566
.modal-dialog-scrollable {
6567
  height: calc(100% - var(--bs-modal-margin) * 2);
6568
}
16848 stevensc 6569
 
16825 efrain 6570
.modal-dialog-scrollable .modal-content {
6571
  max-height: 100%;
6572
  overflow: hidden;
6573
}
16848 stevensc 6574
 
16825 efrain 6575
.modal-dialog-scrollable .modal-body {
6576
  overflow-y: auto;
6577
}
6578
 
6579
.modal-dialog-centered {
6580
  display: flex;
6581
  align-items: center;
6582
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6583
}
6584
 
6585
.modal-content {
6586
  position: relative;
6587
  display: flex;
6588
  flex-direction: column;
6589
  width: 100%;
6590
  color: var(--bs-modal-color);
6591
  pointer-events: auto;
6592
  background-color: var(--bs-modal-bg);
6593
  background-clip: padding-box;
6594
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6595
  border-radius: var(--bs-modal-border-radius);
6596
  outline: 0;
6597
}
6598
 
6599
.modal-backdrop {
6600
  --bs-backdrop-zindex: 1050;
6601
  --bs-backdrop-bg: #000;
6602
  --bs-backdrop-opacity: 0.5;
6603
  position: fixed;
6604
  top: 0;
6605
  left: 0;
6606
  z-index: var(--bs-backdrop-zindex);
6607
  width: 100vw;
6608
  height: 100vh;
6609
  background-color: var(--bs-backdrop-bg);
6610
}
16848 stevensc 6611
 
16825 efrain 6612
.modal-backdrop.fade {
6613
  opacity: 0;
6614
}
16848 stevensc 6615
 
16825 efrain 6616
.modal-backdrop.show {
6617
  opacity: var(--bs-backdrop-opacity);
6618
}
6619
 
6620
.modal-header {
6621
  display: flex;
6622
  flex-shrink: 0;
6623
  align-items: center;
6624
  justify-content: space-between;
6625
  padding: var(--bs-modal-header-padding);
6626
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6627
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6628
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6629
}
16848 stevensc 6630
 
16825 efrain 6631
.modal-header .btn-close {
6632
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6633
  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;
6634
}
6635
 
6636
.modal-title {
6637
  margin-bottom: 0;
6638
  line-height: var(--bs-modal-title-line-height);
6639
}
6640
 
6641
.modal-body {
6642
  position: relative;
6643
  flex: 1 1 auto;
6644
  padding: var(--bs-modal-padding);
6645
}
6646
 
6647
.modal-footer {
6648
  display: flex;
6649
  flex-shrink: 0;
6650
  flex-wrap: wrap;
6651
  align-items: center;
6652
  justify-content: flex-end;
6653
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6654
  background-color: var(--bs-modal-footer-bg);
6655
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6656
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6657
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6658
}
16848 stevensc 6659
 
6660
.modal-footer>* {
16825 efrain 6661
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6662
}
6663
 
6664
@media (min-width: 576px) {
6665
  .modal {
6666
    --bs-modal-margin: 1.75rem;
6667
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6668
  }
16848 stevensc 6669
 
16825 efrain 6670
  .modal-dialog {
6671
    max-width: var(--bs-modal-width);
6672
    margin-right: auto;
6673
    margin-left: auto;
6674
  }
16848 stevensc 6675
 
16825 efrain 6676
  .modal-sm {
6677
    --bs-modal-width: 300px;
6678
  }
6679
}
16848 stevensc 6680
 
16825 efrain 6681
@media (min-width: 992px) {
16848 stevensc 6682
 
16825 efrain 6683
  .modal-lg,
6684
  .modal-xl {
6685
    --bs-modal-width: 800px;
6686
  }
6687
}
16848 stevensc 6688
 
16825 efrain 6689
@media (min-width: 1200px) {
6690
  .modal-xl {
6691
    --bs-modal-width: 1140px;
6692
  }
6693
}
16848 stevensc 6694
 
16825 efrain 6695
.modal-fullscreen {
6696
  width: 100vw;
6697
  max-width: none;
6698
  height: 100%;
6699
  margin: 0;
6700
}
16848 stevensc 6701
 
16825 efrain 6702
.modal-fullscreen .modal-content {
6703
  height: 100%;
6704
  border: 0;
6705
  border-radius: 0;
6706
}
16848 stevensc 6707
 
16825 efrain 6708
.modal-fullscreen .modal-header,
6709
.modal-fullscreen .modal-footer {
6710
  border-radius: 0;
6711
}
16848 stevensc 6712
 
16825 efrain 6713
.modal-fullscreen .modal-body {
6714
  overflow-y: auto;
6715
}
6716
 
6717
@media (max-width: 575.98px) {
6718
  .modal-fullscreen-sm-down {
6719
    width: 100vw;
6720
    max-width: none;
6721
    height: 100%;
6722
    margin: 0;
6723
  }
16848 stevensc 6724
 
16825 efrain 6725
  .modal-fullscreen-sm-down .modal-content {
6726
    height: 100%;
6727
    border: 0;
6728
    border-radius: 0;
6729
  }
16848 stevensc 6730
 
16825 efrain 6731
  .modal-fullscreen-sm-down .modal-header,
6732
  .modal-fullscreen-sm-down .modal-footer {
6733
    border-radius: 0;
6734
  }
16848 stevensc 6735
 
16825 efrain 6736
  .modal-fullscreen-sm-down .modal-body {
6737
    overflow-y: auto;
6738
  }
6739
}
16848 stevensc 6740
 
16825 efrain 6741
@media (max-width: 767.98px) {
6742
  .modal-fullscreen-md-down {
6743
    width: 100vw;
6744
    max-width: none;
6745
    height: 100%;
6746
    margin: 0;
6747
  }
16848 stevensc 6748
 
16825 efrain 6749
  .modal-fullscreen-md-down .modal-content {
6750
    height: 100%;
6751
    border: 0;
6752
    border-radius: 0;
6753
  }
16848 stevensc 6754
 
16825 efrain 6755
  .modal-fullscreen-md-down .modal-header,
6756
  .modal-fullscreen-md-down .modal-footer {
6757
    border-radius: 0;
6758
  }
16848 stevensc 6759
 
16825 efrain 6760
  .modal-fullscreen-md-down .modal-body {
6761
    overflow-y: auto;
6762
  }
6763
}
16848 stevensc 6764
 
16825 efrain 6765
@media (max-width: 991.98px) {
6766
  .modal-fullscreen-lg-down {
6767
    width: 100vw;
6768
    max-width: none;
6769
    height: 100%;
6770
    margin: 0;
6771
  }
16848 stevensc 6772
 
16825 efrain 6773
  .modal-fullscreen-lg-down .modal-content {
6774
    height: 100%;
6775
    border: 0;
6776
    border-radius: 0;
6777
  }
16848 stevensc 6778
 
16825 efrain 6779
  .modal-fullscreen-lg-down .modal-header,
6780
  .modal-fullscreen-lg-down .modal-footer {
6781
    border-radius: 0;
6782
  }
16848 stevensc 6783
 
16825 efrain 6784
  .modal-fullscreen-lg-down .modal-body {
6785
    overflow-y: auto;
6786
  }
6787
}
16848 stevensc 6788
 
16825 efrain 6789
@media (max-width: 1199.98px) {
6790
  .modal-fullscreen-xl-down {
6791
    width: 100vw;
6792
    max-width: none;
6793
    height: 100%;
6794
    margin: 0;
6795
  }
16848 stevensc 6796
 
16825 efrain 6797
  .modal-fullscreen-xl-down .modal-content {
6798
    height: 100%;
6799
    border: 0;
6800
    border-radius: 0;
6801
  }
16848 stevensc 6802
 
16825 efrain 6803
  .modal-fullscreen-xl-down .modal-header,
6804
  .modal-fullscreen-xl-down .modal-footer {
6805
    border-radius: 0;
6806
  }
16848 stevensc 6807
 
16825 efrain 6808
  .modal-fullscreen-xl-down .modal-body {
6809
    overflow-y: auto;
6810
  }
6811
}
16848 stevensc 6812
 
16825 efrain 6813
@media (max-width: 1399.98px) {
6814
  .modal-fullscreen-xxl-down {
6815
    width: 100vw;
6816
    max-width: none;
6817
    height: 100%;
6818
    margin: 0;
6819
  }
16848 stevensc 6820
 
16825 efrain 6821
  .modal-fullscreen-xxl-down .modal-content {
6822
    height: 100%;
6823
    border: 0;
6824
    border-radius: 0;
6825
  }
16848 stevensc 6826
 
16825 efrain 6827
  .modal-fullscreen-xxl-down .modal-header,
6828
  .modal-fullscreen-xxl-down .modal-footer {
6829
    border-radius: 0;
6830
  }
16848 stevensc 6831
 
16825 efrain 6832
  .modal-fullscreen-xxl-down .modal-body {
6833
    overflow-y: auto;
6834
  }
6835
}
16848 stevensc 6836
 
16825 efrain 6837
.tooltip {
6838
  --bs-tooltip-zindex: 1080;
6839
  --bs-tooltip-max-width: 200px;
6840
  --bs-tooltip-padding-x: 0.5rem;
6841
  --bs-tooltip-padding-y: 0.25rem;
6842
  --bs-tooltip-margin: ;
6843
  --bs-tooltip-font-size: 0.812rem;
6844
  --bs-tooltip-color: #fff;
6845
  --bs-tooltip-bg: #000;
6846
  --bs-tooltip-border-radius: 0.25rem;
6847
  --bs-tooltip-opacity: 0.9;
6848
  --bs-tooltip-arrow-width: 0.8rem;
6849
  --bs-tooltip-arrow-height: 0.4rem;
6850
  z-index: var(--bs-tooltip-zindex);
6851
  display: block;
6852
  padding: var(--bs-tooltip-arrow-height);
6853
  margin: var(--bs-tooltip-margin);
6854
  font-family: var(--bs-font-sans-serif);
6855
  font-style: normal;
6856
  font-weight: 400;
6857
  line-height: 1.5;
6858
  text-align: left;
6859
  text-align: start;
6860
  text-decoration: none;
6861
  text-shadow: none;
6862
  text-transform: none;
6863
  letter-spacing: normal;
6864
  word-break: normal;
6865
  white-space: normal;
6866
  word-spacing: normal;
6867
  line-break: auto;
6868
  font-size: var(--bs-tooltip-font-size);
6869
  word-wrap: break-word;
6870
  opacity: 0;
6871
}
16848 stevensc 6872
 
16825 efrain 6873
.tooltip.show {
6874
  opacity: var(--bs-tooltip-opacity);
6875
}
16848 stevensc 6876
 
16825 efrain 6877
.tooltip .tooltip-arrow {
6878
  display: block;
6879
  width: var(--bs-tooltip-arrow-width);
6880
  height: var(--bs-tooltip-arrow-height);
6881
}
16848 stevensc 6882
 
16825 efrain 6883
.tooltip .tooltip-arrow::before {
6884
  position: absolute;
6885
  content: "";
6886
  border-color: transparent;
6887
  border-style: solid;
6888
}
6889
 
16848 stevensc 6890
.bs-tooltip-top .tooltip-arrow,
6891
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6892
  bottom: 0;
6893
}
16848 stevensc 6894
 
6895
.bs-tooltip-top .tooltip-arrow::before,
6896
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6897
  top: -1px;
6898
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6899
  border-top-color: var(--bs-tooltip-bg);
6900
}
6901
 
6902
/* rtl:begin:ignore */
16848 stevensc 6903
.bs-tooltip-end .tooltip-arrow,
6904
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6905
  left: 0;
6906
  width: var(--bs-tooltip-arrow-height);
6907
  height: var(--bs-tooltip-arrow-width);
6908
}
16848 stevensc 6909
 
6910
.bs-tooltip-end .tooltip-arrow::before,
6911
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6912
  right: -1px;
6913
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6914
  border-right-color: var(--bs-tooltip-bg);
6915
}
6916
 
6917
/* rtl:end:ignore */
16848 stevensc 6918
.bs-tooltip-bottom .tooltip-arrow,
6919
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6920
  top: 0;
6921
}
16848 stevensc 6922
 
6923
.bs-tooltip-bottom .tooltip-arrow::before,
6924
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6925
  bottom: -1px;
6926
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6927
  border-bottom-color: var(--bs-tooltip-bg);
6928
}
6929
 
6930
/* rtl:begin:ignore */
16848 stevensc 6931
.bs-tooltip-start .tooltip-arrow,
6932
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6933
  right: 0;
6934
  width: var(--bs-tooltip-arrow-height);
6935
  height: var(--bs-tooltip-arrow-width);
6936
}
16848 stevensc 6937
 
6938
.bs-tooltip-start .tooltip-arrow::before,
6939
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6940
  left: -1px;
6941
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6942
  border-left-color: var(--bs-tooltip-bg);
6943
}
6944
 
6945
/* rtl:end:ignore */
6946
.tooltip-inner {
6947
  max-width: var(--bs-tooltip-max-width);
6948
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6949
  color: var(--bs-tooltip-color);
6950
  text-align: center;
6951
  background-color: var(--bs-tooltip-bg);
6952
  border-radius: var(--bs-tooltip-border-radius);
6953
}
6954
 
6955
.popover {
6956
  --bs-popover-zindex: 1070;
6957
  --bs-popover-max-width: 276px;
6958
  --bs-popover-font-size: 0.812rem;
6959
  --bs-popover-bg: #fff;
6960
  --bs-popover-border-width: 1px;
6961
  --bs-popover-border-color: #e9ecef;
6962
  --bs-popover-border-radius: 0.5rem;
6963
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6964
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6965
  --bs-popover-header-padding-x: 1rem;
6966
  --bs-popover-header-padding-y: 0.5rem;
6967
  --bs-popover-header-font-size: 0.875rem;
6968
  --bs-popover-header-color: ;
6969
  --bs-popover-header-bg: #e9ecef;
6970
  --bs-popover-body-padding-x: 1rem;
6971
  --bs-popover-body-padding-y: 1rem;
6972
  --bs-popover-body-color: #000;
6973
  --bs-popover-arrow-width: 1rem;
6974
  --bs-popover-arrow-height: 0.5rem;
6975
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6976
  z-index: var(--bs-popover-zindex);
6977
  display: block;
6978
  max-width: var(--bs-popover-max-width);
6979
  font-family: var(--bs-font-sans-serif);
6980
  font-style: normal;
6981
  font-weight: 400;
6982
  line-height: 1.5;
6983
  text-align: left;
6984
  text-align: start;
6985
  text-decoration: none;
6986
  text-shadow: none;
6987
  text-transform: none;
6988
  letter-spacing: normal;
6989
  word-break: normal;
6990
  white-space: normal;
6991
  word-spacing: normal;
6992
  line-break: auto;
6993
  font-size: var(--bs-popover-font-size);
6994
  word-wrap: break-word;
6995
  background-color: var(--bs-popover-bg);
6996
  background-clip: padding-box;
6997
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6998
  border-radius: var(--bs-popover-border-radius);
6999
}
16848 stevensc 7000
 
16825 efrain 7001
.popover .popover-arrow {
7002
  display: block;
7003
  width: var(--bs-popover-arrow-width);
7004
  height: var(--bs-popover-arrow-height);
7005
}
16848 stevensc 7006
 
7007
.popover .popover-arrow::before,
7008
.popover .popover-arrow::after {
16825 efrain 7009
  position: absolute;
7010
  display: block;
7011
  content: "";
7012
  border-color: transparent;
7013
  border-style: solid;
7014
  border-width: 0;
7015
}
7016
 
16848 stevensc 7017
.bs-popover-top>.popover-arrow,
7018
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7019
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7020
}
16848 stevensc 7021
 
7022
.bs-popover-top>.popover-arrow::before,
7023
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7024
.bs-popover-top>.popover-arrow::after,
7025
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7026
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7027
}
16848 stevensc 7028
 
7029
.bs-popover-top>.popover-arrow::before,
7030
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7031
  bottom: 0;
7032
  border-top-color: var(--bs-popover-arrow-border);
7033
}
16848 stevensc 7034
 
7035
.bs-popover-top>.popover-arrow::after,
7036
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7037
  bottom: var(--bs-popover-border-width);
7038
  border-top-color: var(--bs-popover-bg);
7039
}
7040
 
7041
/* rtl:begin:ignore */
16848 stevensc 7042
.bs-popover-end>.popover-arrow,
7043
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7044
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7045
  width: var(--bs-popover-arrow-height);
7046
  height: var(--bs-popover-arrow-width);
7047
}
16848 stevensc 7048
 
7049
.bs-popover-end>.popover-arrow::before,
7050
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7051
.bs-popover-end>.popover-arrow::after,
7052
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7053
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7054
}
16848 stevensc 7055
 
7056
.bs-popover-end>.popover-arrow::before,
7057
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7058
  left: 0;
7059
  border-right-color: var(--bs-popover-arrow-border);
7060
}
16848 stevensc 7061
 
7062
.bs-popover-end>.popover-arrow::after,
7063
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7064
  left: var(--bs-popover-border-width);
7065
  border-right-color: var(--bs-popover-bg);
7066
}
7067
 
7068
/* rtl:end:ignore */
16848 stevensc 7069
.bs-popover-bottom>.popover-arrow,
7070
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7071
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7072
}
16848 stevensc 7073
 
7074
.bs-popover-bottom>.popover-arrow::before,
7075
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7076
.bs-popover-bottom>.popover-arrow::after,
7077
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7078
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7079
}
16848 stevensc 7080
 
7081
.bs-popover-bottom>.popover-arrow::before,
7082
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7083
  top: 0;
7084
  border-bottom-color: var(--bs-popover-arrow-border);
7085
}
16848 stevensc 7086
 
7087
.bs-popover-bottom>.popover-arrow::after,
7088
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7089
  top: var(--bs-popover-border-width);
7090
  border-bottom-color: var(--bs-popover-bg);
7091
}
16848 stevensc 7092
 
7093
.bs-popover-bottom .popover-header::before,
7094
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7095
  position: absolute;
7096
  top: 0;
7097
  left: 50%;
7098
  display: block;
7099
  width: var(--bs-popover-arrow-width);
7100
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7101
  content: "";
7102
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7103
}
7104
 
7105
/* rtl:begin:ignore */
16848 stevensc 7106
.bs-popover-start>.popover-arrow,
7107
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7108
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7109
  width: var(--bs-popover-arrow-height);
7110
  height: var(--bs-popover-arrow-width);
7111
}
16848 stevensc 7112
 
7113
.bs-popover-start>.popover-arrow::before,
7114
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7115
.bs-popover-start>.popover-arrow::after,
7116
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7117
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7118
}
16848 stevensc 7119
 
7120
.bs-popover-start>.popover-arrow::before,
7121
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7122
  right: 0;
7123
  border-left-color: var(--bs-popover-arrow-border);
7124
}
16848 stevensc 7125
 
7126
.bs-popover-start>.popover-arrow::after,
7127
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7128
  right: var(--bs-popover-border-width);
7129
  border-left-color: var(--bs-popover-bg);
7130
}
7131
 
7132
/* rtl:end:ignore */
7133
.popover-header {
7134
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7135
  margin-bottom: 0;
7136
  font-size: var(--bs-popover-header-font-size);
7137
  color: var(--bs-popover-header-color);
7138
  background-color: var(--bs-popover-header-bg);
7139
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7140
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7141
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7142
}
16848 stevensc 7143
 
16825 efrain 7144
.popover-header:empty {
7145
  display: none;
7146
}
7147
 
7148
.popover-body {
7149
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7150
  color: var(--bs-popover-body-color);
7151
}
7152
 
7153
.carousel {
7154
  position: relative;
7155
}
7156
 
7157
.carousel.pointer-event {
7158
  touch-action: pan-y;
7159
}
7160
 
7161
.carousel-inner {
7162
  position: relative;
7163
  width: 100%;
7164
  overflow: hidden;
7165
}
16848 stevensc 7166
 
16825 efrain 7167
.carousel-inner::after {
7168
  display: block;
7169
  clear: both;
7170
  content: "";
7171
}
7172
 
7173
.carousel-item {
7174
  position: relative;
7175
  display: none;
7176
  float: left;
7177
  width: 100%;
7178
  margin-right: -100%;
7179
  backface-visibility: hidden;
7180
  transition: transform 0.6s ease-in-out;
7181
}
16848 stevensc 7182
 
16825 efrain 7183
@media (prefers-reduced-motion: reduce) {
7184
  .carousel-item {
7185
    transition: none;
7186
  }
7187
}
7188
 
7189
.carousel-item.active,
7190
.carousel-item-next,
7191
.carousel-item-prev {
7192
  display: block;
7193
}
7194
 
7195
/* rtl:begin:ignore */
7196
.carousel-item-next:not(.carousel-item-start),
7197
.active.carousel-item-end {
7198
  transform: translateX(100%);
7199
}
7200
 
7201
.carousel-item-prev:not(.carousel-item-end),
7202
.active.carousel-item-start {
7203
  transform: translateX(-100%);
7204
}
7205
 
7206
/* rtl:end:ignore */
7207
.carousel-fade .carousel-item {
7208
  opacity: 0;
7209
  transition-property: opacity;
7210
  transform: none;
7211
}
16848 stevensc 7212
 
16825 efrain 7213
.carousel-fade .carousel-item.active,
7214
.carousel-fade .carousel-item-next.carousel-item-start,
7215
.carousel-fade .carousel-item-prev.carousel-item-end {
7216
  z-index: 1;
7217
  opacity: 1;
7218
}
16848 stevensc 7219
 
16825 efrain 7220
.carousel-fade .active.carousel-item-start,
7221
.carousel-fade .active.carousel-item-end {
7222
  z-index: 0;
7223
  opacity: 0;
7224
  transition: opacity 0s 0.6s;
7225
}
16848 stevensc 7226
 
16825 efrain 7227
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7228
 
16825 efrain 7229
  .carousel-fade .active.carousel-item-start,
7230
  .carousel-fade .active.carousel-item-end {
7231
    transition: none;
7232
  }
7233
}
7234
 
7235
.carousel-control-prev,
7236
.carousel-control-next {
7237
  position: absolute;
7238
  top: 0;
7239
  bottom: 0;
7240
  z-index: 1;
7241
  display: flex;
7242
  align-items: center;
7243
  justify-content: center;
7244
  width: 15%;
7245
  padding: 0;
7246
  color: #fff;
7247
  text-align: center;
7248
  background: none;
7249
  border: 0;
7250
  opacity: 0.5;
7251
  transition: opacity 0.15s ease;
7252
}
16848 stevensc 7253
 
16825 efrain 7254
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7255
 
16825 efrain 7256
  .carousel-control-prev,
7257
  .carousel-control-next {
7258
    transition: none;
7259
  }
7260
}
16848 stevensc 7261
 
7262
.carousel-control-prev:hover,
7263
.carousel-control-prev:focus,
16825 efrain 7264
.carousel-control-next:hover,
7265
.carousel-control-next:focus {
7266
  color: #fff;
7267
  text-decoration: none;
7268
  outline: 0;
7269
  opacity: 0.9;
7270
}
7271
 
7272
.carousel-control-prev {
7273
  left: 0;
7274
}
7275
 
7276
.carousel-control-next {
7277
  right: 0;
7278
}
7279
 
7280
.carousel-control-prev-icon,
7281
.carousel-control-next-icon {
7282
  display: inline-block;
7283
  width: 2rem;
7284
  height: 2rem;
7285
  background-repeat: no-repeat;
7286
  background-position: 50%;
7287
  background-size: 100% 100%;
7288
}
7289
 
7290
/* rtl:options: {
7291
  "autoRename": true,
7292
  "stringMap":[ {
7293
    "name"    : "prev-next",
7294
    "search"  : "prev",
7295
    "replace" : "next"
7296
  } ]
7297
} */
7298
.carousel-control-prev-icon {
7299
  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");
7300
}
7301
 
7302
.carousel-control-next-icon {
7303
  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");
7304
}
7305
 
7306
.carousel-indicators {
7307
  position: absolute;
7308
  right: 0;
7309
  bottom: 0;
7310
  left: 0;
7311
  z-index: 2;
7312
  display: flex;
7313
  justify-content: center;
7314
  padding: 0;
7315
  margin-right: 15%;
7316
  margin-bottom: 1rem;
7317
  margin-left: 15%;
7318
  list-style: none;
7319
}
16848 stevensc 7320
 
16825 efrain 7321
.carousel-indicators [data-bs-target] {
7322
  box-sizing: content-box;
7323
  flex: 0 1 auto;
7324
  width: 30px;
7325
  height: 3px;
7326
  padding: 0;
7327
  margin-right: 3px;
7328
  margin-left: 3px;
7329
  text-indent: -999px;
7330
  cursor: pointer;
7331
  background-color: #fff;
7332
  background-clip: padding-box;
7333
  border: 0;
7334
  border-top: 10px solid transparent;
7335
  border-bottom: 10px solid transparent;
7336
  opacity: 0.5;
7337
  transition: opacity 0.6s ease;
7338
}
16848 stevensc 7339
 
16825 efrain 7340
@media (prefers-reduced-motion: reduce) {
7341
  .carousel-indicators [data-bs-target] {
7342
    transition: none;
7343
  }
7344
}
16848 stevensc 7345
 
16825 efrain 7346
.carousel-indicators .active {
7347
  opacity: 1;
7348
}
7349
 
7350
.carousel-caption {
7351
  position: absolute;
7352
  right: 15%;
7353
  bottom: 1.25rem;
7354
  left: 15%;
7355
  padding-top: 1.25rem;
7356
  padding-bottom: 1.25rem;
7357
  color: #fff;
7358
  text-align: center;
7359
}
7360
 
7361
.carousel-dark .carousel-control-prev-icon,
7362
.carousel-dark .carousel-control-next-icon {
7363
  filter: invert(1) grayscale(100);
7364
}
16848 stevensc 7365
 
16825 efrain 7366
.carousel-dark .carousel-indicators [data-bs-target] {
7367
  background-color: #000;
7368
}
16848 stevensc 7369
 
16825 efrain 7370
.carousel-dark .carousel-caption {
7371
  color: #000;
7372
}
7373
 
7374
.spinner-grow,
7375
.spinner-border {
7376
  display: inline-block;
7377
  width: var(--bs-spinner-width);
7378
  height: var(--bs-spinner-height);
7379
  vertical-align: var(--bs-spinner-vertical-align);
7380
  border-radius: 50%;
7381
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7382
}
7383
 
7384
@keyframes spinner-border {
7385
  to {
16848 stevensc 7386
    transform: rotate(360deg)
7387
      /* rtl:ignore */
7388
    ;
16825 efrain 7389
  }
7390
}
16848 stevensc 7391
 
16825 efrain 7392
.spinner-border {
7393
  --bs-spinner-width: 2rem;
7394
  --bs-spinner-height: 2rem;
7395
  --bs-spinner-vertical-align: -0.125em;
7396
  --bs-spinner-border-width: 0.25em;
7397
  --bs-spinner-animation-speed: 0.75s;
7398
  --bs-spinner-animation-name: spinner-border;
7399
  border: var(--bs-spinner-border-width) solid currentcolor;
7400
  border-right-color: transparent;
7401
}
7402
 
7403
.spinner-border-sm {
7404
  --bs-spinner-width: 1rem;
7405
  --bs-spinner-height: 1rem;
7406
  --bs-spinner-border-width: 0.2em;
7407
}
7408
 
7409
@keyframes spinner-grow {
7410
  0% {
7411
    transform: scale(0);
7412
  }
16848 stevensc 7413
 
16825 efrain 7414
  50% {
7415
    opacity: 1;
7416
    transform: none;
7417
  }
7418
}
16848 stevensc 7419
 
16825 efrain 7420
.spinner-grow {
7421
  --bs-spinner-width: 2rem;
7422
  --bs-spinner-height: 2rem;
7423
  --bs-spinner-vertical-align: -0.125em;
7424
  --bs-spinner-animation-speed: 0.75s;
7425
  --bs-spinner-animation-name: spinner-grow;
7426
  background-color: currentcolor;
7427
  opacity: 0;
7428
}
7429
 
7430
.spinner-grow-sm {
7431
  --bs-spinner-width: 1rem;
7432
  --bs-spinner-height: 1rem;
7433
}
7434
 
7435
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7436
 
16825 efrain 7437
  .spinner-border,
7438
  .spinner-grow {
7439
    --bs-spinner-animation-speed: 1.5s;
7440
  }
7441
}
16848 stevensc 7442
 
16825 efrain 7443
.clearfix::after {
7444
  display: block;
7445
  clear: both;
7446
  content: "";
7447
}
7448
 
7449
.text-bg-primary {
7450
  color: #fff !important;
7451
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7452
}
7453
 
7454
.text-bg-secondary {
7455
  color: #fff !important;
7456
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7457
}
7458
 
7459
.text-bg-success {
7460
  color: #fff !important;
7461
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7462
}
7463
 
7464
.text-bg-info {
7465
  color: #000 !important;
7466
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7467
}
7468
 
7469
.text-bg-warning {
7470
  color: #000 !important;
7471
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7472
}
7473
 
7474
.text-bg-danger {
7475
  color: #fff !important;
7476
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7477
}
7478
 
7479
.text-bg-light {
7480
  color: #000 !important;
7481
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7482
}
7483
 
7484
.text-bg-dark {
7485
  color: #fff !important;
7486
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7487
}
7488
 
7489
.link-primary {
7490
  color: #6571ff !important;
7491
}
16848 stevensc 7492
 
7493
.link-primary:hover,
7494
.link-primary:focus {
16825 efrain 7495
  color: #515acc !important;
7496
}
7497
 
7498
.link-secondary {
7499
  color: #7987a1 !important;
7500
}
16848 stevensc 7501
 
7502
.link-secondary:hover,
7503
.link-secondary:focus {
16825 efrain 7504
  color: #616c81 !important;
7505
}
7506
 
7507
.link-success {
7508
  color: #05a34a !important;
7509
}
16848 stevensc 7510
 
7511
.link-success:hover,
7512
.link-success:focus {
16825 efrain 7513
  color: #04823b !important;
7514
}
7515
 
7516
.link-info {
7517
  color: #66d1d1 !important;
7518
}
16848 stevensc 7519
 
7520
.link-info:hover,
7521
.link-info:focus {
16825 efrain 7522
  color: #85dada !important;
7523
}
7524
 
7525
.link-warning {
7526
  color: #fbbc06 !important;
7527
}
16848 stevensc 7528
 
7529
.link-warning:hover,
7530
.link-warning:focus {
16825 efrain 7531
  color: #fcc938 !important;
7532
}
7533
 
7534
.link-danger {
7535
  color: #ff3366 !important;
7536
}
16848 stevensc 7537
 
7538
.link-danger:hover,
7539
.link-danger:focus {
16825 efrain 7540
  color: #cc2952 !important;
7541
}
7542
 
7543
.link-light {
7544
  color: #e9ecef !important;
7545
}
16848 stevensc 7546
 
7547
.link-light:hover,
7548
.link-light:focus {
16825 efrain 7549
  color: #edf0f2 !important;
7550
}
7551
 
7552
.link-dark {
7553
  color: #060c17 !important;
7554
}
16848 stevensc 7555
 
7556
.link-dark:hover,
7557
.link-dark:focus {
16825 efrain 7558
  color: #050a12 !important;
7559
}
7560
 
7561
.ratio {
7562
  position: relative;
7563
  width: 100%;
7564
}
16848 stevensc 7565
 
16825 efrain 7566
.ratio::before {
7567
  display: block;
7568
  padding-top: var(--bs-aspect-ratio);
7569
  content: "";
7570
}
16848 stevensc 7571
 
7572
.ratio>* {
16825 efrain 7573
  position: absolute;
7574
  top: 0;
7575
  left: 0;
7576
  width: 100%;
7577
  height: 100%;
7578
}
7579
 
7580
.ratio-1x1 {
7581
  --bs-aspect-ratio: 100%;
7582
}
7583
 
7584
.ratio-4x3 {
7585
  --bs-aspect-ratio: 75%;
7586
}
7587
 
7588
.ratio-16x9 {
7589
  --bs-aspect-ratio: 56.25%;
7590
}
7591
 
7592
.ratio-21x9 {
7593
  --bs-aspect-ratio: 42.8571428571%;
7594
}
7595
 
7596
.fixed-top {
7597
  position: fixed;
7598
  top: 0;
7599
  right: 0;
7600
  left: 0;
7601
  z-index: 1030;
7602
}
7603
 
7604
.fixed-bottom {
7605
  position: fixed;
7606
  right: 0;
7607
  bottom: 0;
7608
  left: 0;
7609
  z-index: 1030;
7610
}
7611
 
7612
.sticky-top {
7613
  position: sticky;
7614
  top: 0;
7615
  z-index: 1020;
7616
}
7617
 
7618
.sticky-bottom {
7619
  position: sticky;
7620
  bottom: 0;
7621
  z-index: 1020;
7622
}
7623
 
7624
@media (min-width: 576px) {
7625
  .sticky-sm-top {
7626
    position: sticky;
7627
    top: 0;
7628
    z-index: 1020;
7629
  }
16848 stevensc 7630
 
16825 efrain 7631
  .sticky-sm-bottom {
7632
    position: sticky;
7633
    bottom: 0;
7634
    z-index: 1020;
7635
  }
7636
}
16848 stevensc 7637
 
16825 efrain 7638
@media (min-width: 768px) {
7639
  .sticky-md-top {
7640
    position: sticky;
7641
    top: 0;
7642
    z-index: 1020;
7643
  }
16848 stevensc 7644
 
16825 efrain 7645
  .sticky-md-bottom {
7646
    position: sticky;
7647
    bottom: 0;
7648
    z-index: 1020;
7649
  }
7650
}
16848 stevensc 7651
 
16825 efrain 7652
@media (min-width: 992px) {
7653
  .sticky-lg-top {
7654
    position: sticky;
7655
    top: 0;
7656
    z-index: 1020;
7657
  }
16848 stevensc 7658
 
16825 efrain 7659
  .sticky-lg-bottom {
7660
    position: sticky;
7661
    bottom: 0;
7662
    z-index: 1020;
7663
  }
7664
}
16848 stevensc 7665
 
16825 efrain 7666
@media (min-width: 1200px) {
7667
  .sticky-xl-top {
7668
    position: sticky;
7669
    top: 0;
7670
    z-index: 1020;
7671
  }
16848 stevensc 7672
 
16825 efrain 7673
  .sticky-xl-bottom {
7674
    position: sticky;
7675
    bottom: 0;
7676
    z-index: 1020;
7677
  }
7678
}
16848 stevensc 7679
 
16825 efrain 7680
@media (min-width: 1400px) {
7681
  .sticky-xxl-top {
7682
    position: sticky;
7683
    top: 0;
7684
    z-index: 1020;
7685
  }
16848 stevensc 7686
 
16825 efrain 7687
  .sticky-xxl-bottom {
7688
    position: sticky;
7689
    bottom: 0;
7690
    z-index: 1020;
7691
  }
7692
}
16848 stevensc 7693
 
16825 efrain 7694
.hstack {
7695
  display: flex;
7696
  flex-direction: row;
7697
  align-items: center;
7698
  align-self: stretch;
7699
}
7700
 
7701
.vstack {
7702
  display: flex;
7703
  flex: 1 1 auto;
7704
  flex-direction: column;
7705
  align-self: stretch;
7706
}
7707
 
7708
.visually-hidden,
7709
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7710
  position: absolute !important;
7711
  width: 1px !important;
7712
  height: 1px !important;
7713
  padding: 0 !important;
7714
  margin: -1px !important;
7715
  overflow: hidden !important;
7716
  clip: rect(0, 0, 0, 0) !important;
7717
  white-space: nowrap !important;
7718
  border: 0 !important;
7719
}
7720
 
7721
.stretched-link::after {
7722
  position: absolute;
7723
  top: 0;
7724
  right: 0;
7725
  bottom: 0;
7726
  left: 0;
7727
  z-index: 1;
7728
  content: "";
7729
}
7730
 
7731
.text-truncate {
7732
  overflow: hidden;
7733
  text-overflow: ellipsis;
7734
  white-space: nowrap;
7735
}
7736
 
7737
.vr {
7738
  display: inline-block;
7739
  align-self: stretch;
7740
  width: 1px;
7741
  min-height: 1em;
7742
  background-color: currentcolor;
7743
  opacity: 0.1;
7744
}
7745
 
7746
.align-baseline {
7747
  vertical-align: baseline !important;
7748
}
7749
 
7750
.align-top {
7751
  vertical-align: top !important;
7752
}
7753
 
7754
.align-middle {
7755
  vertical-align: middle !important;
7756
}
7757
 
7758
.align-bottom {
7759
  vertical-align: bottom !important;
7760
}
7761
 
7762
.align-text-bottom {
7763
  vertical-align: text-bottom !important;
7764
}
7765
 
7766
.align-text-top {
7767
  vertical-align: text-top !important;
7768
}
7769
 
7770
.float-start {
7771
  float: left !important;
7772
}
7773
 
7774
.float-end {
7775
  float: right !important;
7776
}
7777
 
7778
.float-none {
7779
  float: none !important;
7780
}
7781
 
7782
.opacity-0 {
7783
  opacity: 0 !important;
7784
}
7785
 
7786
.opacity-25 {
7787
  opacity: 0.25 !important;
7788
}
7789
 
7790
.opacity-50 {
7791
  opacity: 0.5 !important;
7792
}
7793
 
7794
.opacity-75 {
7795
  opacity: 0.75 !important;
7796
}
7797
 
7798
.opacity-100 {
7799
  opacity: 1 !important;
7800
}
7801
 
7802
.overflow-auto {
7803
  overflow: auto !important;
7804
}
7805
 
7806
.overflow-hidden {
7807
  overflow: hidden !important;
7808
}
7809
 
7810
.overflow-visible {
7811
  overflow: visible !important;
7812
}
7813
 
7814
.overflow-scroll {
7815
  overflow: scroll !important;
7816
}
7817
 
7818
.d-inline {
7819
  display: inline !important;
7820
}
7821
 
7822
.d-inline-block {
7823
  display: inline-block !important;
7824
}
7825
 
7826
.d-block {
7827
  display: block !important;
7828
}
7829
 
7830
.d-grid {
7831
  display: grid !important;
7832
}
7833
 
7834
.d-table {
7835
  display: table !important;
7836
}
7837
 
7838
.d-table-row {
7839
  display: table-row !important;
7840
}
7841
 
7842
.d-table-cell {
7843
  display: table-cell !important;
7844
}
7845
 
7846
.d-flex {
7847
  display: flex !important;
7848
}
7849
 
7850
.d-inline-flex {
7851
  display: inline-flex !important;
7852
}
7853
 
16848 stevensc 7854
.d-none,
7855
.navbar .search-form {
16825 efrain 7856
  display: none !important;
7857
}
7858
 
7859
.shadow {
7860
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7861
}
7862
 
7863
.shadow-sm {
7864
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7865
}
7866
 
7867
.shadow-lg {
7868
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7869
}
7870
 
7871
.shadow-none {
7872
  box-shadow: none !important;
7873
}
7874
 
7875
.position-static {
7876
  position: static !important;
7877
}
7878
 
7879
.position-relative {
7880
  position: relative !important;
7881
}
7882
 
7883
.position-absolute {
7884
  position: absolute !important;
7885
}
7886
 
7887
.position-fixed {
7888
  position: fixed !important;
7889
}
7890
 
7891
.position-sticky {
7892
  position: sticky !important;
7893
}
7894
 
7895
.top-0 {
7896
  top: 0 !important;
7897
}
7898
 
7899
.top-10 {
7900
  top: 10% !important;
7901
}
7902
 
7903
.top-20 {
7904
  top: 20% !important;
7905
}
7906
 
7907
.top-25 {
7908
  top: 25% !important;
7909
}
7910
 
7911
.top-30 {
7912
  top: 30% !important;
7913
}
7914
 
7915
.top-40 {
7916
  top: 40% !important;
7917
}
7918
 
7919
.top-50 {
7920
  top: 50% !important;
7921
}
7922
 
7923
.top-60 {
7924
  top: 60% !important;
7925
}
7926
 
7927
.top-70 {
7928
  top: 70% !important;
7929
}
7930
 
7931
.top-75 {
7932
  top: 75% !important;
7933
}
7934
 
7935
.top-80 {
7936
  top: 80% !important;
7937
}
7938
 
7939
.top-90 {
7940
  top: 90% !important;
7941
}
7942
 
7943
.top-100 {
7944
  top: 100% !important;
7945
}
7946
 
7947
.bottom-0 {
7948
  bottom: 0 !important;
7949
}
7950
 
7951
.bottom-10 {
7952
  bottom: 10% !important;
7953
}
7954
 
7955
.bottom-20 {
7956
  bottom: 20% !important;
7957
}
7958
 
7959
.bottom-25 {
7960
  bottom: 25% !important;
7961
}
7962
 
7963
.bottom-30 {
7964
  bottom: 30% !important;
7965
}
7966
 
7967
.bottom-40 {
7968
  bottom: 40% !important;
7969
}
7970
 
7971
.bottom-50 {
7972
  bottom: 50% !important;
7973
}
7974
 
7975
.bottom-60 {
7976
  bottom: 60% !important;
7977
}
7978
 
7979
.bottom-70 {
7980
  bottom: 70% !important;
7981
}
7982
 
7983
.bottom-75 {
7984
  bottom: 75% !important;
7985
}
7986
 
7987
.bottom-80 {
7988
  bottom: 80% !important;
7989
}
7990
 
7991
.bottom-90 {
7992
  bottom: 90% !important;
7993
}
7994
 
7995
.bottom-100 {
7996
  bottom: 100% !important;
7997
}
7998
 
7999
.start-0 {
8000
  left: 0 !important;
8001
}
8002
 
8003
.start-10 {
8004
  left: 10% !important;
8005
}
8006
 
8007
.start-20 {
8008
  left: 20% !important;
8009
}
8010
 
8011
.start-25 {
8012
  left: 25% !important;
8013
}
8014
 
8015
.start-30 {
8016
  left: 30% !important;
8017
}
8018
 
8019
.start-40 {
8020
  left: 40% !important;
8021
}
8022
 
8023
.start-50 {
8024
  left: 50% !important;
8025
}
8026
 
8027
.start-60 {
8028
  left: 60% !important;
8029
}
8030
 
8031
.start-70 {
8032
  left: 70% !important;
8033
}
8034
 
8035
.start-75 {
8036
  left: 75% !important;
8037
}
8038
 
8039
.start-80 {
8040
  left: 80% !important;
8041
}
8042
 
8043
.start-90 {
8044
  left: 90% !important;
8045
}
8046
 
8047
.start-100 {
8048
  left: 100% !important;
8049
}
8050
 
8051
.end-0 {
8052
  right: 0 !important;
8053
}
8054
 
8055
.end-10 {
8056
  right: 10% !important;
8057
}
8058
 
8059
.end-20 {
8060
  right: 20% !important;
8061
}
8062
 
8063
.end-25 {
8064
  right: 25% !important;
8065
}
8066
 
8067
.end-30 {
8068
  right: 30% !important;
8069
}
8070
 
8071
.end-40 {
8072
  right: 40% !important;
8073
}
8074
 
8075
.end-50 {
8076
  right: 50% !important;
8077
}
8078
 
8079
.end-60 {
8080
  right: 60% !important;
8081
}
8082
 
8083
.end-70 {
8084
  right: 70% !important;
8085
}
8086
 
8087
.end-75 {
8088
  right: 75% !important;
8089
}
8090
 
8091
.end-80 {
8092
  right: 80% !important;
8093
}
8094
 
8095
.end-90 {
8096
  right: 90% !important;
8097
}
8098
 
8099
.end-100 {
8100
  right: 100% !important;
8101
}
8102
 
8103
.translate-middle {
8104
  transform: translate(-50%, -50%) !important;
8105
}
8106
 
8107
.translate-middle-x {
8108
  transform: translateX(-50%) !important;
8109
}
8110
 
8111
.translate-middle-y {
8112
  transform: translateY(-50%) !important;
8113
}
8114
 
8115
.border {
8116
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8117
}
8118
 
8119
.border-0 {
8120
  border: 0 !important;
8121
}
8122
 
8123
.border-top {
8124
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8125
}
8126
 
8127
.border-top-0 {
8128
  border-top: 0 !important;
8129
}
8130
 
8131
.border-end {
8132
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8133
}
8134
 
8135
.border-end-0 {
8136
  border-right: 0 !important;
8137
}
8138
 
8139
.border-bottom {
8140
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8141
}
8142
 
8143
.border-bottom-0 {
8144
  border-bottom: 0 !important;
8145
}
8146
 
8147
.border-start {
8148
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8149
}
8150
 
8151
.border-start-0 {
8152
  border-left: 0 !important;
8153
}
8154
 
8155
.border-primary {
8156
  --bs-border-opacity: 1;
8157
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8158
}
8159
 
8160
.border-secondary {
8161
  --bs-border-opacity: 1;
8162
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8163
}
8164
 
8165
.border-success {
8166
  --bs-border-opacity: 1;
8167
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8168
}
8169
 
8170
.border-info {
8171
  --bs-border-opacity: 1;
8172
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8173
}
8174
 
8175
.border-warning {
8176
  --bs-border-opacity: 1;
8177
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8178
}
8179
 
16848 stevensc 8180
.border-danger,
8181
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8182
  --bs-border-opacity: 1;
8183
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8184
}
8185
 
8186
.border-light {
8187
  --bs-border-opacity: 1;
8188
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8189
}
8190
 
8191
.border-dark {
8192
  --bs-border-opacity: 1;
8193
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8194
}
8195
 
8196
.border-white {
8197
  --bs-border-opacity: 1;
8198
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8199
}
8200
 
8201
.border-1 {
8202
  --bs-border-width: 1px;
8203
}
8204
 
8205
.border-2 {
8206
  --bs-border-width: 2px;
8207
}
8208
 
8209
.border-3 {
8210
  --bs-border-width: 3px;
8211
}
8212
 
8213
.border-4 {
8214
  --bs-border-width: 4px;
8215
}
8216
 
8217
.border-5 {
8218
  --bs-border-width: 5px;
8219
}
8220
 
8221
.border-opacity-10 {
8222
  --bs-border-opacity: 0.1;
8223
}
8224
 
8225
.border-opacity-25 {
8226
  --bs-border-opacity: 0.25;
8227
}
8228
 
8229
.border-opacity-50 {
8230
  --bs-border-opacity: 0.5;
8231
}
8232
 
8233
.border-opacity-75 {
8234
  --bs-border-opacity: 0.75;
8235
}
8236
 
8237
.border-opacity-100 {
8238
  --bs-border-opacity: 1;
8239
}
8240
 
16854 stevensc 8241
.w-fit {
8242
  width: fit-content !important;
8243
}
8244
 
16825 efrain 8245
.w-25 {
8246
  width: 25% !important;
8247
}
8248
 
8249
.w-50 {
8250
  width: 50% !important;
8251
}
8252
 
8253
.w-75 {
8254
  width: 75% !important;
8255
}
8256
 
8257
.w-100 {
8258
  width: 100% !important;
8259
}
8260
 
8261
.w-auto {
8262
  width: auto !important;
8263
}
8264
 
8265
.mw-100 {
8266
  max-width: 100% !important;
8267
}
8268
 
8269
.vw-100 {
8270
  width: 100vw !important;
8271
}
8272
 
8273
.min-vw-100 {
8274
  min-width: 100vw !important;
8275
}
8276
 
8277
.h-25 {
8278
  height: 25% !important;
8279
}
8280
 
8281
.h-50 {
8282
  height: 50% !important;
8283
}
8284
 
8285
.h-75 {
8286
  height: 75% !important;
8287
}
8288
 
8289
.h-100 {
8290
  height: 100% !important;
8291
}
8292
 
8293
.h-auto {
8294
  height: auto !important;
8295
}
8296
 
8297
.mh-100 {
8298
  max-height: 100% !important;
8299
}
8300
 
8301
.vh-100 {
8302
  height: 100vh !important;
8303
}
8304
 
8305
.min-vh-100 {
8306
  min-height: 100vh !important;
8307
}
8308
 
8309
.flex-fill {
8310
  flex: 1 1 auto !important;
8311
}
8312
 
8313
.flex-row {
8314
  flex-direction: row !important;
8315
}
8316
 
8317
.flex-column {
8318
  flex-direction: column !important;
8319
}
8320
 
8321
.flex-row-reverse {
8322
  flex-direction: row-reverse !important;
8323
}
8324
 
8325
.flex-column-reverse {
8326
  flex-direction: column-reverse !important;
8327
}
8328
 
8329
.flex-grow-0 {
8330
  flex-grow: 0 !important;
8331
}
8332
 
8333
.flex-grow-1 {
8334
  flex-grow: 1 !important;
8335
}
8336
 
8337
.flex-shrink-0 {
8338
  flex-shrink: 0 !important;
8339
}
8340
 
8341
.flex-shrink-1 {
8342
  flex-shrink: 1 !important;
8343
}
8344
 
8345
.flex-wrap {
8346
  flex-wrap: wrap !important;
8347
}
8348
 
8349
.flex-nowrap {
8350
  flex-wrap: nowrap !important;
8351
}
8352
 
8353
.flex-wrap-reverse {
8354
  flex-wrap: wrap-reverse !important;
8355
}
8356
 
8357
.justify-content-start {
8358
  justify-content: flex-start !important;
8359
}
8360
 
8361
.justify-content-end {
8362
  justify-content: flex-end !important;
8363
}
8364
 
16848 stevensc 8365
.justify-content-center,
8366
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8367
  justify-content: center !important;
8368
}
8369
 
8370
.justify-content-between {
8371
  justify-content: space-between !important;
8372
}
8373
 
8374
.justify-content-around {
8375
  justify-content: space-around !important;
8376
}
8377
 
8378
.justify-content-evenly {
8379
  justify-content: space-evenly !important;
8380
}
8381
 
8382
.align-items-start {
8383
  align-items: flex-start !important;
8384
}
8385
 
8386
.align-items-end {
8387
  align-items: flex-end !important;
8388
}
8389
 
16848 stevensc 8390
.align-items-center,
8391
.navbar .search-form {
16825 efrain 8392
  align-items: center !important;
8393
}
8394
 
8395
.align-items-baseline {
8396
  align-items: baseline !important;
8397
}
8398
 
8399
.align-items-stretch {
8400
  align-items: stretch !important;
8401
}
8402
 
8403
.align-content-start {
8404
  align-content: flex-start !important;
8405
}
8406
 
8407
.align-content-end {
8408
  align-content: flex-end !important;
8409
}
8410
 
8411
.align-content-center {
8412
  align-content: center !important;
8413
}
8414
 
8415
.align-content-between {
8416
  align-content: space-between !important;
8417
}
8418
 
8419
.align-content-around {
8420
  align-content: space-around !important;
8421
}
8422
 
8423
.align-content-stretch {
8424
  align-content: stretch !important;
8425
}
8426
 
8427
.align-self-auto {
8428
  align-self: auto !important;
8429
}
8430
 
8431
.align-self-start {
8432
  align-self: flex-start !important;
8433
}
8434
 
8435
.align-self-end {
8436
  align-self: flex-end !important;
8437
}
8438
 
8439
.align-self-center {
8440
  align-self: center !important;
8441
}
8442
 
8443
.align-self-baseline {
8444
  align-self: baseline !important;
8445
}
8446
 
8447
.align-self-stretch {
8448
  align-self: stretch !important;
8449
}
8450
 
8451
.order-first {
8452
  order: -1 !important;
8453
}
8454
 
8455
.order-0 {
8456
  order: 0 !important;
8457
}
8458
 
8459
.order-1 {
8460
  order: 1 !important;
8461
}
8462
 
8463
.order-2 {
8464
  order: 2 !important;
8465
}
8466
 
8467
.order-3 {
8468
  order: 3 !important;
8469
}
8470
 
8471
.order-4 {
8472
  order: 4 !important;
8473
}
8474
 
8475
.order-5 {
8476
  order: 5 !important;
8477
}
8478
 
8479
.order-last {
8480
  order: 6 !important;
8481
}
8482
 
8483
.m-0 {
8484
  margin: 0 !important;
8485
}
8486
 
8487
.m-1 {
8488
  margin: 0.25rem !important;
8489
}
8490
 
8491
.m-2 {
8492
  margin: 0.5rem !important;
8493
}
8494
 
8495
.m-3 {
8496
  margin: 1rem !important;
8497
}
8498
 
8499
.m-4 {
8500
  margin: 1.5rem !important;
8501
}
8502
 
8503
.m-5 {
8504
  margin: 3rem !important;
8505
}
8506
 
8507
.m-6 {
8508
  margin: 4.5rem !important;
8509
}
8510
 
8511
.m-7 {
8512
  margin: 6rem !important;
8513
}
8514
 
8515
.m-auto {
8516
  margin: auto !important;
8517
}
8518
 
8519
.mx-0 {
8520
  margin-right: 0 !important;
8521
  margin-left: 0 !important;
8522
}
8523
 
8524
.mx-1 {
8525
  margin-right: 0.25rem !important;
8526
  margin-left: 0.25rem !important;
8527
}
8528
 
8529
.mx-2 {
8530
  margin-right: 0.5rem !important;
8531
  margin-left: 0.5rem !important;
8532
}
8533
 
8534
.mx-3 {
8535
  margin-right: 1rem !important;
8536
  margin-left: 1rem !important;
8537
}
8538
 
8539
.mx-4 {
8540
  margin-right: 1.5rem !important;
8541
  margin-left: 1.5rem !important;
8542
}
8543
 
8544
.mx-5 {
8545
  margin-right: 3rem !important;
8546
  margin-left: 3rem !important;
8547
}
8548
 
8549
.mx-6 {
8550
  margin-right: 4.5rem !important;
8551
  margin-left: 4.5rem !important;
8552
}
8553
 
8554
.mx-7 {
8555
  margin-right: 6rem !important;
8556
  margin-left: 6rem !important;
8557
}
8558
 
8559
.mx-auto {
8560
  margin-right: auto !important;
8561
  margin-left: auto !important;
8562
}
8563
 
8564
.my-0 {
8565
  margin-top: 0 !important;
8566
  margin-bottom: 0 !important;
8567
}
8568
 
8569
.my-1 {
8570
  margin-top: 0.25rem !important;
8571
  margin-bottom: 0.25rem !important;
8572
}
8573
 
8574
.my-2 {
8575
  margin-top: 0.5rem !important;
8576
  margin-bottom: 0.5rem !important;
8577
}
8578
 
8579
.my-3 {
8580
  margin-top: 1rem !important;
8581
  margin-bottom: 1rem !important;
8582
}
8583
 
8584
.my-4 {
8585
  margin-top: 1.5rem !important;
8586
  margin-bottom: 1.5rem !important;
8587
}
8588
 
8589
.my-5 {
8590
  margin-top: 3rem !important;
8591
  margin-bottom: 3rem !important;
8592
}
8593
 
8594
.my-6 {
8595
  margin-top: 4.5rem !important;
8596
  margin-bottom: 4.5rem !important;
8597
}
8598
 
8599
.my-7 {
8600
  margin-top: 6rem !important;
8601
  margin-bottom: 6rem !important;
8602
}
8603
 
8604
.my-auto {
8605
  margin-top: auto !important;
8606
  margin-bottom: auto !important;
8607
}
8608
 
8609
.mt-0 {
8610
  margin-top: 0 !important;
8611
}
8612
 
8613
.mt-1 {
8614
  margin-top: 0.25rem !important;
8615
}
8616
 
8617
.mt-2 {
8618
  margin-top: 0.5rem !important;
8619
}
8620
 
16848 stevensc 8621
.mt-3,
8622
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8623
  margin-top: 1rem !important;
8624
}
8625
 
8626
.mt-4 {
8627
  margin-top: 1.5rem !important;
8628
}
8629
 
8630
.mt-5 {
8631
  margin-top: 3rem !important;
8632
}
8633
 
8634
.mt-6 {
8635
  margin-top: 4.5rem !important;
8636
}
8637
 
8638
.mt-7 {
8639
  margin-top: 6rem !important;
8640
}
8641
 
8642
.mt-auto {
8643
  margin-top: auto !important;
8644
}
8645
 
8646
.me-0 {
8647
  margin-right: 0 !important;
8648
}
8649
 
8650
.me-1 {
8651
  margin-right: 0.25rem !important;
8652
}
8653
 
8654
.me-2 {
8655
  margin-right: 0.5rem !important;
8656
}
8657
 
8658
.me-3 {
8659
  margin-right: 1rem !important;
8660
}
8661
 
8662
.me-4 {
8663
  margin-right: 1.5rem !important;
8664
}
8665
 
8666
.me-5 {
8667
  margin-right: 3rem !important;
8668
}
8669
 
8670
.me-6 {
8671
  margin-right: 4.5rem !important;
8672
}
8673
 
8674
.me-7 {
8675
  margin-right: 6rem !important;
8676
}
8677
 
8678
.me-auto {
8679
  margin-right: auto !important;
8680
}
8681
 
8682
.mb-0 {
8683
  margin-bottom: 0 !important;
8684
}
8685
 
16848 stevensc 8686
.mb-1,
8687
.example .btn-group {
16825 efrain 8688
  margin-bottom: 0.25rem !important;
8689
}
8690
 
8691
.mb-2 {
8692
  margin-bottom: 0.5rem !important;
8693
}
8694
 
8695
.mb-3 {
8696
  margin-bottom: 1rem !important;
8697
}
8698
 
8699
.mb-4 {
8700
  margin-bottom: 1.5rem !important;
8701
}
8702
 
8703
.mb-5 {
8704
  margin-bottom: 3rem !important;
8705
}
8706
 
8707
.mb-6 {
8708
  margin-bottom: 4.5rem !important;
8709
}
8710
 
8711
.mb-7 {
8712
  margin-bottom: 6rem !important;
8713
}
8714
 
8715
.mb-auto {
8716
  margin-bottom: auto !important;
8717
}
8718
 
8719
.ms-0 {
8720
  margin-left: 0 !important;
8721
}
8722
 
8723
.ms-1 {
8724
  margin-left: 0.25rem !important;
8725
}
8726
 
8727
.ms-2 {
8728
  margin-left: 0.5rem !important;
8729
}
8730
 
8731
.ms-3 {
8732
  margin-left: 1rem !important;
8733
}
8734
 
8735
.ms-4 {
8736
  margin-left: 1.5rem !important;
8737
}
8738
 
8739
.ms-5 {
8740
  margin-left: 3rem !important;
8741
}
8742
 
8743
.ms-6 {
8744
  margin-left: 4.5rem !important;
8745
}
8746
 
8747
.ms-7 {
8748
  margin-left: 6rem !important;
8749
}
8750
 
8751
.ms-auto {
8752
  margin-left: auto !important;
8753
}
8754
 
8755
.m-n1 {
8756
  margin: -0.25rem !important;
8757
}
8758
 
8759
.m-n2 {
8760
  margin: -0.5rem !important;
8761
}
8762
 
8763
.m-n3 {
8764
  margin: -1rem !important;
8765
}
8766
 
8767
.m-n4 {
8768
  margin: -1.5rem !important;
8769
}
8770
 
8771
.m-n5 {
8772
  margin: -3rem !important;
8773
}
8774
 
8775
.m-n6 {
8776
  margin: -4.5rem !important;
8777
}
8778
 
8779
.m-n7 {
8780
  margin: -6rem !important;
8781
}
8782
 
8783
.mx-n1 {
8784
  margin-right: -0.25rem !important;
8785
  margin-left: -0.25rem !important;
8786
}
8787
 
8788
.mx-n2 {
8789
  margin-right: -0.5rem !important;
8790
  margin-left: -0.5rem !important;
8791
}
8792
 
8793
.mx-n3 {
8794
  margin-right: -1rem !important;
8795
  margin-left: -1rem !important;
8796
}
8797
 
8798
.mx-n4 {
8799
  margin-right: -1.5rem !important;
8800
  margin-left: -1.5rem !important;
8801
}
8802
 
8803
.mx-n5 {
8804
  margin-right: -3rem !important;
8805
  margin-left: -3rem !important;
8806
}
8807
 
8808
.mx-n6 {
8809
  margin-right: -4.5rem !important;
8810
  margin-left: -4.5rem !important;
8811
}
8812
 
8813
.mx-n7 {
8814
  margin-right: -6rem !important;
8815
  margin-left: -6rem !important;
8816
}
8817
 
8818
.my-n1 {
8819
  margin-top: -0.25rem !important;
8820
  margin-bottom: -0.25rem !important;
8821
}
8822
 
8823
.my-n2 {
8824
  margin-top: -0.5rem !important;
8825
  margin-bottom: -0.5rem !important;
8826
}
8827
 
8828
.my-n3 {
8829
  margin-top: -1rem !important;
8830
  margin-bottom: -1rem !important;
8831
}
8832
 
8833
.my-n4 {
8834
  margin-top: -1.5rem !important;
8835
  margin-bottom: -1.5rem !important;
8836
}
8837
 
8838
.my-n5 {
8839
  margin-top: -3rem !important;
8840
  margin-bottom: -3rem !important;
8841
}
8842
 
8843
.my-n6 {
8844
  margin-top: -4.5rem !important;
8845
  margin-bottom: -4.5rem !important;
8846
}
8847
 
8848
.my-n7 {
8849
  margin-top: -6rem !important;
8850
  margin-bottom: -6rem !important;
8851
}
8852
 
8853
.mt-n1 {
8854
  margin-top: -0.25rem !important;
8855
}
8856
 
8857
.mt-n2 {
8858
  margin-top: -0.5rem !important;
8859
}
8860
 
8861
.mt-n3 {
8862
  margin-top: -1rem !important;
8863
}
8864
 
8865
.mt-n4 {
8866
  margin-top: -1.5rem !important;
8867
}
8868
 
8869
.mt-n5 {
8870
  margin-top: -3rem !important;
8871
}
8872
 
8873
.mt-n6 {
8874
  margin-top: -4.5rem !important;
8875
}
8876
 
8877
.mt-n7 {
8878
  margin-top: -6rem !important;
8879
}
8880
 
8881
.me-n1 {
8882
  margin-right: -0.25rem !important;
8883
}
8884
 
8885
.me-n2 {
8886
  margin-right: -0.5rem !important;
8887
}
8888
 
8889
.me-n3 {
8890
  margin-right: -1rem !important;
8891
}
8892
 
8893
.me-n4 {
8894
  margin-right: -1.5rem !important;
8895
}
8896
 
8897
.me-n5 {
8898
  margin-right: -3rem !important;
8899
}
8900
 
8901
.me-n6 {
8902
  margin-right: -4.5rem !important;
8903
}
8904
 
8905
.me-n7 {
8906
  margin-right: -6rem !important;
8907
}
8908
 
8909
.mb-n1 {
8910
  margin-bottom: -0.25rem !important;
8911
}
8912
 
8913
.mb-n2 {
8914
  margin-bottom: -0.5rem !important;
8915
}
8916
 
8917
.mb-n3 {
8918
  margin-bottom: -1rem !important;
8919
}
8920
 
8921
.mb-n4 {
8922
  margin-bottom: -1.5rem !important;
8923
}
8924
 
8925
.mb-n5 {
8926
  margin-bottom: -3rem !important;
8927
}
8928
 
8929
.mb-n6 {
8930
  margin-bottom: -4.5rem !important;
8931
}
8932
 
8933
.mb-n7 {
8934
  margin-bottom: -6rem !important;
8935
}
8936
 
8937
.ms-n1 {
8938
  margin-left: -0.25rem !important;
8939
}
8940
 
8941
.ms-n2 {
8942
  margin-left: -0.5rem !important;
8943
}
8944
 
8945
.ms-n3 {
8946
  margin-left: -1rem !important;
8947
}
8948
 
8949
.ms-n4 {
8950
  margin-left: -1.5rem !important;
8951
}
8952
 
8953
.ms-n5 {
8954
  margin-left: -3rem !important;
8955
}
8956
 
8957
.ms-n6 {
8958
  margin-left: -4.5rem !important;
8959
}
8960
 
8961
.ms-n7 {
8962
  margin-left: -6rem !important;
8963
}
8964
 
8965
.p-0 {
8966
  padding: 0 !important;
8967
}
8968
 
8969
.p-1 {
8970
  padding: 0.25rem !important;
8971
}
8972
 
8973
.p-2 {
8974
  padding: 0.5rem !important;
8975
}
8976
 
8977
.p-3 {
8978
  padding: 1rem !important;
8979
}
8980
 
8981
.p-4 {
8982
  padding: 1.5rem !important;
8983
}
8984
 
8985
.p-5 {
8986
  padding: 3rem !important;
8987
}
8988
 
8989
.p-6 {
8990
  padding: 4.5rem !important;
8991
}
8992
 
8993
.p-7 {
8994
  padding: 6rem !important;
8995
}
8996
 
8997
.px-0 {
8998
  padding-right: 0 !important;
8999
  padding-left: 0 !important;
9000
}
9001
 
9002
.px-1 {
9003
  padding-right: 0.25rem !important;
9004
  padding-left: 0.25rem !important;
9005
}
9006
 
9007
.px-2 {
9008
  padding-right: 0.5rem !important;
9009
  padding-left: 0.5rem !important;
9010
}
9011
 
9012
.px-3 {
9013
  padding-right: 1rem !important;
9014
  padding-left: 1rem !important;
9015
}
9016
 
9017
.px-4 {
9018
  padding-right: 1.5rem !important;
9019
  padding-left: 1.5rem !important;
9020
}
9021
 
9022
.px-5 {
9023
  padding-right: 3rem !important;
9024
  padding-left: 3rem !important;
9025
}
9026
 
9027
.px-6 {
9028
  padding-right: 4.5rem !important;
9029
  padding-left: 4.5rem !important;
9030
}
9031
 
9032
.px-7 {
9033
  padding-right: 6rem !important;
9034
  padding-left: 6rem !important;
9035
}
9036
 
9037
.py-0 {
9038
  padding-top: 0 !important;
9039
  padding-bottom: 0 !important;
9040
}
9041
 
9042
.py-1 {
9043
  padding-top: 0.25rem !important;
9044
  padding-bottom: 0.25rem !important;
9045
}
9046
 
9047
.py-2 {
9048
  padding-top: 0.5rem !important;
9049
  padding-bottom: 0.5rem !important;
9050
}
9051
 
9052
.py-3 {
9053
  padding-top: 1rem !important;
9054
  padding-bottom: 1rem !important;
9055
}
9056
 
9057
.py-4 {
9058
  padding-top: 1.5rem !important;
9059
  padding-bottom: 1.5rem !important;
9060
}
9061
 
9062
.py-5 {
9063
  padding-top: 3rem !important;
9064
  padding-bottom: 3rem !important;
9065
}
9066
 
9067
.py-6 {
9068
  padding-top: 4.5rem !important;
9069
  padding-bottom: 4.5rem !important;
9070
}
9071
 
9072
.py-7 {
9073
  padding-top: 6rem !important;
9074
  padding-bottom: 6rem !important;
9075
}
9076
 
9077
.pt-0 {
9078
  padding-top: 0 !important;
9079
}
9080
 
9081
.pt-1 {
9082
  padding-top: 0.25rem !important;
9083
}
9084
 
9085
.pt-2 {
9086
  padding-top: 0.5rem !important;
9087
}
9088
 
9089
.pt-3 {
9090
  padding-top: 1rem !important;
9091
}
9092
 
9093
.pt-4 {
9094
  padding-top: 1.5rem !important;
9095
}
9096
 
9097
.pt-5 {
9098
  padding-top: 3rem !important;
9099
}
9100
 
9101
.pt-6 {
9102
  padding-top: 4.5rem !important;
9103
}
9104
 
9105
.pt-7 {
9106
  padding-top: 6rem !important;
9107
}
9108
 
9109
.pe-0 {
9110
  padding-right: 0 !important;
9111
}
9112
 
9113
.pe-1 {
9114
  padding-right: 0.25rem !important;
9115
}
9116
 
9117
.pe-2 {
9118
  padding-right: 0.5rem !important;
9119
}
9120
 
9121
.pe-3 {
9122
  padding-right: 1rem !important;
9123
}
9124
 
9125
.pe-4 {
9126
  padding-right: 1.5rem !important;
9127
}
9128
 
9129
.pe-5 {
9130
  padding-right: 3rem !important;
9131
}
9132
 
9133
.pe-6 {
9134
  padding-right: 4.5rem !important;
9135
}
9136
 
9137
.pe-7 {
9138
  padding-right: 6rem !important;
9139
}
9140
 
9141
.pb-0 {
9142
  padding-bottom: 0 !important;
9143
}
9144
 
9145
.pb-1 {
9146
  padding-bottom: 0.25rem !important;
9147
}
9148
 
9149
.pb-2 {
9150
  padding-bottom: 0.5rem !important;
9151
}
9152
 
9153
.pb-3 {
9154
  padding-bottom: 1rem !important;
9155
}
9156
 
9157
.pb-4 {
9158
  padding-bottom: 1.5rem !important;
9159
}
9160
 
9161
.pb-5 {
9162
  padding-bottom: 3rem !important;
9163
}
9164
 
9165
.pb-6 {
9166
  padding-bottom: 4.5rem !important;
9167
}
9168
 
9169
.pb-7 {
9170
  padding-bottom: 6rem !important;
9171
}
9172
 
9173
.ps-0 {
9174
  padding-left: 0 !important;
9175
}
9176
 
9177
.ps-1 {
9178
  padding-left: 0.25rem !important;
9179
}
9180
 
9181
.ps-2 {
9182
  padding-left: 0.5rem !important;
9183
}
9184
 
9185
.ps-3 {
9186
  padding-left: 1rem !important;
9187
}
9188
 
9189
.ps-4 {
9190
  padding-left: 1.5rem !important;
9191
}
9192
 
9193
.ps-5 {
9194
  padding-left: 3rem !important;
9195
}
9196
 
9197
.ps-6 {
9198
  padding-left: 4.5rem !important;
9199
}
9200
 
9201
.ps-7 {
9202
  padding-left: 6rem !important;
9203
}
9204
 
9205
.gap-0 {
9206
  gap: 0 !important;
9207
}
9208
 
9209
.gap-1 {
9210
  gap: 0.25rem !important;
9211
}
9212
 
9213
.gap-2 {
9214
  gap: 0.5rem !important;
9215
}
9216
 
9217
.gap-3 {
9218
  gap: 1rem !important;
9219
}
9220
 
9221
.gap-4 {
9222
  gap: 1.5rem !important;
9223
}
9224
 
9225
.gap-5 {
9226
  gap: 3rem !important;
9227
}
9228
 
9229
.gap-6 {
9230
  gap: 4.5rem !important;
9231
}
9232
 
9233
.gap-7 {
9234
  gap: 6rem !important;
9235
}
9236
 
9237
.font-monospace {
9238
  font-family: var(--bs-font-monospace) !important;
9239
}
9240
 
9241
.fs-1 {
9242
  font-size: calc(1.375rem + 1.5vw) !important;
9243
}
9244
 
9245
.fs-2 {
9246
  font-size: calc(1.325rem + 0.9vw) !important;
9247
}
9248
 
9249
.fs-3 {
9250
  font-size: calc(1.275rem + 0.3vw) !important;
9251
}
9252
 
9253
.fs-4 {
9254
  font-size: 1.25rem !important;
9255
}
9256
 
9257
.fs-5 {
9258
  font-size: 1rem !important;
9259
}
9260
 
9261
.fs-6 {
9262
  font-size: 0.875rem !important;
9263
}
9264
 
9265
.fst-italic {
9266
  font-style: italic !important;
9267
}
9268
 
9269
.fst-normal {
9270
  font-style: normal !important;
9271
}
9272
 
9273
.fw-light {
9274
  font-weight: 300 !important;
9275
}
9276
 
9277
.fw-lighter {
9278
  font-weight: lighter !important;
9279
}
9280
 
9281
.fw-normal {
9282
  font-weight: 400 !important;
9283
}
9284
 
9285
.fw-bold {
9286
  font-weight: 500 !important;
9287
}
9288
 
9289
.fw-semibold {
9290
  font-weight: 600 !important;
9291
}
9292
 
9293
.fw-bolder {
9294
  font-weight: 700 !important;
9295
}
9296
 
9297
.lh-1 {
9298
  line-height: 1 !important;
9299
}
9300
 
9301
.lh-sm {
9302
  line-height: 1.25 !important;
9303
}
9304
 
9305
.lh-base {
9306
  line-height: 1.5 !important;
9307
}
9308
 
9309
.lh-lg {
9310
  line-height: 2 !important;
9311
}
9312
 
9313
.text-start {
9314
  text-align: left !important;
9315
}
9316
 
9317
.text-end {
9318
  text-align: right !important;
9319
}
9320
 
9321
.text-center {
9322
  text-align: center !important;
9323
}
9324
 
9325
.text-decoration-none {
9326
  text-decoration: none !important;
9327
}
9328
 
9329
.text-decoration-underline {
9330
  text-decoration: underline !important;
9331
}
9332
 
9333
.text-decoration-line-through {
9334
  text-decoration: line-through !important;
9335
}
9336
 
9337
.text-lowercase {
9338
  text-transform: lowercase !important;
9339
}
9340
 
9341
.text-uppercase {
9342
  text-transform: uppercase !important;
9343
}
9344
 
9345
.text-capitalize {
9346
  text-transform: capitalize !important;
9347
}
9348
 
9349
.text-wrap {
9350
  white-space: normal !important;
9351
}
9352
 
9353
.text-nowrap {
9354
  white-space: nowrap !important;
9355
}
9356
 
9357
/* rtl:begin:remove */
9358
.text-break {
9359
  word-wrap: break-word !important;
9360
  word-break: break-word !important;
9361
}
9362
 
9363
/* rtl:end:remove */
9364
.text-primary {
9365
  --bs-text-opacity: 1;
9366
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9367
}
9368
 
9369
.text-secondary {
9370
  --bs-text-opacity: 1;
9371
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9372
}
9373
 
9374
.text-success {
9375
  --bs-text-opacity: 1;
9376
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9377
}
9378
 
9379
.text-info {
9380
  --bs-text-opacity: 1;
9381
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9382
}
9383
 
9384
.text-warning {
9385
  --bs-text-opacity: 1;
9386
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9387
}
9388
 
9389
.text-danger {
9390
  --bs-text-opacity: 1;
9391
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9392
}
9393
 
9394
.text-light {
9395
  --bs-text-opacity: 1;
9396
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9397
}
9398
 
9399
.text-dark {
9400
  --bs-text-opacity: 1;
9401
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9402
}
9403
 
9404
.text-black {
9405
  --bs-text-opacity: 1;
9406
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9407
}
9408
 
9409
.text-white {
9410
  --bs-text-opacity: 1;
9411
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9412
}
9413
 
9414
.text-body {
9415
  --bs-text-opacity: 1;
9416
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9417
}
9418
 
16848 stevensc 9419
.text-muted,
9420
.dropzone.dz-clickable .dz-message * {
16825 efrain 9421
  --bs-text-opacity: 1;
9422
  color: #7987a1 !important;
9423
}
9424
 
9425
.text-black-50 {
9426
  --bs-text-opacity: 1;
9427
  color: rgba(0, 0, 0, 0.5) !important;
9428
}
9429
 
9430
.text-white-50 {
9431
  --bs-text-opacity: 1;
9432
  color: rgba(255, 255, 255, 0.5) !important;
9433
}
9434
 
9435
.text-reset {
9436
  --bs-text-opacity: 1;
9437
  color: inherit !important;
9438
}
9439
 
9440
.text-opacity-25 {
9441
  --bs-text-opacity: 0.25;
9442
}
9443
 
9444
.text-opacity-50 {
9445
  --bs-text-opacity: 0.5;
9446
}
9447
 
9448
.text-opacity-75 {
9449
  --bs-text-opacity: 0.75;
9450
}
9451
 
9452
.text-opacity-100 {
9453
  --bs-text-opacity: 1;
9454
}
9455
 
9456
.bg-primary {
9457
  --bs-bg-opacity: 1;
9458
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9459
}
9460
 
9461
.bg-secondary {
9462
  --bs-bg-opacity: 1;
9463
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9464
}
9465
 
9466
.bg-success {
9467
  --bs-bg-opacity: 1;
9468
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9469
}
9470
 
9471
.bg-info {
9472
  --bs-bg-opacity: 1;
9473
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9474
}
9475
 
9476
.bg-warning {
9477
  --bs-bg-opacity: 1;
9478
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9479
}
9480
 
9481
.bg-danger {
9482
  --bs-bg-opacity: 1;
9483
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9484
}
9485
 
9486
.bg-light {
9487
  --bs-bg-opacity: 1;
9488
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9489
}
9490
 
9491
.bg-dark {
9492
  --bs-bg-opacity: 1;
9493
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9494
}
9495
 
9496
.bg-black {
9497
  --bs-bg-opacity: 1;
9498
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9499
}
9500
 
9501
.bg-white {
9502
  --bs-bg-opacity: 1;
9503
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9504
}
9505
 
9506
.bg-body {
9507
  --bs-bg-opacity: 1;
9508
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9509
}
9510
 
9511
.bg-transparent {
9512
  --bs-bg-opacity: 1;
9513
  background-color: transparent !important;
9514
}
9515
 
9516
.bg-opacity-10 {
9517
  --bs-bg-opacity: 0.1;
9518
}
9519
 
9520
.bg-opacity-25 {
9521
  --bs-bg-opacity: 0.25;
9522
}
9523
 
9524
.bg-opacity-50 {
9525
  --bs-bg-opacity: 0.5;
9526
}
9527
 
9528
.bg-opacity-75 {
9529
  --bs-bg-opacity: 0.75;
9530
}
9531
 
9532
.bg-opacity-100 {
9533
  --bs-bg-opacity: 1;
9534
}
9535
 
9536
.bg-gradient {
9537
  background-image: var(--bs-gradient) !important;
9538
}
9539
 
9540
.user-select-all {
9541
  user-select: all !important;
9542
}
9543
 
9544
.user-select-auto {
9545
  user-select: auto !important;
9546
}
9547
 
9548
.user-select-none {
9549
  user-select: none !important;
9550
}
9551
 
9552
.pe-none {
9553
  pointer-events: none !important;
9554
}
9555
 
9556
.pe-auto {
9557
  pointer-events: auto !important;
9558
}
9559
 
9560
.rounded {
9561
  border-radius: var(--bs-border-radius) !important;
9562
}
9563
 
9564
.rounded-0 {
9565
  border-radius: 0 !important;
9566
}
9567
 
9568
.rounded-1 {
9569
  border-radius: var(--bs-border-radius-sm) !important;
9570
}
9571
 
9572
.rounded-2 {
9573
  border-radius: var(--bs-border-radius) !important;
9574
}
9575
 
9576
.rounded-3 {
9577
  border-radius: var(--bs-border-radius-lg) !important;
9578
}
9579
 
9580
.rounded-4 {
9581
  border-radius: var(--bs-border-radius-xl) !important;
9582
}
9583
 
9584
.rounded-5 {
9585
  border-radius: var(--bs-border-radius-2xl) !important;
9586
}
9587
 
9588
.rounded-circle {
9589
  border-radius: 50% !important;
9590
}
9591
 
9592
.rounded-pill {
9593
  border-radius: var(--bs-border-radius-pill) !important;
9594
}
9595
 
9596
.rounded-top {
9597
  border-top-left-radius: var(--bs-border-radius) !important;
9598
  border-top-right-radius: var(--bs-border-radius) !important;
9599
}
9600
 
9601
.rounded-end {
9602
  border-top-right-radius: var(--bs-border-radius) !important;
9603
  border-bottom-right-radius: var(--bs-border-radius) !important;
9604
}
9605
 
9606
.rounded-bottom {
9607
  border-bottom-right-radius: var(--bs-border-radius) !important;
9608
  border-bottom-left-radius: var(--bs-border-radius) !important;
9609
}
9610
 
9611
.rounded-start {
9612
  border-bottom-left-radius: var(--bs-border-radius) !important;
9613
  border-top-left-radius: var(--bs-border-radius) !important;
9614
}
9615
 
9616
.visible {
9617
  visibility: visible !important;
9618
}
9619
 
9620
.invisible {
9621
  visibility: hidden !important;
9622
}
9623
 
9624
.bg-gray-100 {
9625
  background-color: #f8f9fa !important;
9626
}
9627
 
9628
.bg-gray-200 {
9629
  background-color: #e9ecef !important;
9630
}
9631
 
9632
.bg-gray-300 {
9633
  background-color: #dee2e6 !important;
9634
}
9635
 
9636
.bg-gray-400 {
9637
  background-color: #cbd1db !important;
9638
}
9639
 
9640
.bg-gray-500 {
9641
  background-color: #aeb7c5 !important;
9642
}
9643
 
9644
.bg-gray-600 {
9645
  background-color: #7987a1 !important;
9646
}
9647
 
9648
.bg-gray-700 {
9649
  background-color: #41516c !important;
9650
}
9651
 
9652
.bg-gray-800 {
9653
  background-color: #212a3a !important;
9654
}
9655
 
9656
.bg-gray-900 {
9657
  background-color: #060c17 !important;
9658
}
9659
 
9660
@media (min-width: 576px) {
9661
  .float-sm-start {
9662
    float: left !important;
9663
  }
16848 stevensc 9664
 
16825 efrain 9665
  .float-sm-end {
9666
    float: right !important;
9667
  }
16848 stevensc 9668
 
16825 efrain 9669
  .float-sm-none {
9670
    float: none !important;
9671
  }
16848 stevensc 9672
 
16825 efrain 9673
  .d-sm-inline {
9674
    display: inline !important;
9675
  }
16848 stevensc 9676
 
16825 efrain 9677
  .d-sm-inline-block {
9678
    display: inline-block !important;
9679
  }
16848 stevensc 9680
 
16825 efrain 9681
  .d-sm-block {
9682
    display: block !important;
9683
  }
16848 stevensc 9684
 
16825 efrain 9685
  .d-sm-grid {
9686
    display: grid !important;
9687
  }
16848 stevensc 9688
 
16825 efrain 9689
  .d-sm-table {
9690
    display: table !important;
9691
  }
16848 stevensc 9692
 
16825 efrain 9693
  .d-sm-table-row {
9694
    display: table-row !important;
9695
  }
16848 stevensc 9696
 
16825 efrain 9697
  .d-sm-table-cell {
9698
    display: table-cell !important;
9699
  }
16848 stevensc 9700
 
16825 efrain 9701
  .d-sm-flex {
9702
    display: flex !important;
9703
  }
16848 stevensc 9704
 
16825 efrain 9705
  .d-sm-inline-flex {
9706
    display: inline-flex !important;
9707
  }
16848 stevensc 9708
 
16825 efrain 9709
  .d-sm-none {
9710
    display: none !important;
9711
  }
16848 stevensc 9712
 
16825 efrain 9713
  .border-sm {
9714
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9715
  }
16848 stevensc 9716
 
16825 efrain 9717
  .border-sm-0 {
9718
    border: 0 !important;
9719
  }
16848 stevensc 9720
 
16825 efrain 9721
  .border-top-sm {
9722
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9723
  }
16848 stevensc 9724
 
16825 efrain 9725
  .border-top-sm-0 {
9726
    border-top: 0 !important;
9727
  }
16848 stevensc 9728
 
16825 efrain 9729
  .border-end-sm {
9730
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9731
  }
16848 stevensc 9732
 
16825 efrain 9733
  .border-end-sm-0 {
9734
    border-right: 0 !important;
9735
  }
16848 stevensc 9736
 
16825 efrain 9737
  .border-bottom-sm {
9738
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9739
  }
16848 stevensc 9740
 
16825 efrain 9741
  .border-bottom-sm-0 {
9742
    border-bottom: 0 !important;
9743
  }
16848 stevensc 9744
 
16825 efrain 9745
  .border-start-sm {
9746
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9747
  }
16848 stevensc 9748
 
16825 efrain 9749
  .border-start-sm-0 {
9750
    border-left: 0 !important;
9751
  }
16848 stevensc 9752
 
16825 efrain 9753
  .flex-sm-fill {
9754
    flex: 1 1 auto !important;
9755
  }
16848 stevensc 9756
 
16825 efrain 9757
  .flex-sm-row {
9758
    flex-direction: row !important;
9759
  }
16848 stevensc 9760
 
16825 efrain 9761
  .flex-sm-column {
9762
    flex-direction: column !important;
9763
  }
16848 stevensc 9764
 
16825 efrain 9765
  .flex-sm-row-reverse {
9766
    flex-direction: row-reverse !important;
9767
  }
16848 stevensc 9768
 
16825 efrain 9769
  .flex-sm-column-reverse {
9770
    flex-direction: column-reverse !important;
9771
  }
16848 stevensc 9772
 
16825 efrain 9773
  .flex-sm-grow-0 {
9774
    flex-grow: 0 !important;
9775
  }
16848 stevensc 9776
 
16825 efrain 9777
  .flex-sm-grow-1 {
9778
    flex-grow: 1 !important;
9779
  }
16848 stevensc 9780
 
16825 efrain 9781
  .flex-sm-shrink-0 {
9782
    flex-shrink: 0 !important;
9783
  }
16848 stevensc 9784
 
16825 efrain 9785
  .flex-sm-shrink-1 {
9786
    flex-shrink: 1 !important;
9787
  }
16848 stevensc 9788
 
16825 efrain 9789
  .flex-sm-wrap {
9790
    flex-wrap: wrap !important;
9791
  }
16848 stevensc 9792
 
16825 efrain 9793
  .flex-sm-nowrap {
9794
    flex-wrap: nowrap !important;
9795
  }
16848 stevensc 9796
 
16825 efrain 9797
  .flex-sm-wrap-reverse {
9798
    flex-wrap: wrap-reverse !important;
9799
  }
16848 stevensc 9800
 
16825 efrain 9801
  .justify-content-sm-start {
9802
    justify-content: flex-start !important;
9803
  }
16848 stevensc 9804
 
16825 efrain 9805
  .justify-content-sm-end {
9806
    justify-content: flex-end !important;
9807
  }
16848 stevensc 9808
 
16825 efrain 9809
  .justify-content-sm-center {
9810
    justify-content: center !important;
9811
  }
16848 stevensc 9812
 
16825 efrain 9813
  .justify-content-sm-between {
9814
    justify-content: space-between !important;
9815
  }
16848 stevensc 9816
 
16825 efrain 9817
  .justify-content-sm-around {
9818
    justify-content: space-around !important;
9819
  }
16848 stevensc 9820
 
16825 efrain 9821
  .justify-content-sm-evenly {
9822
    justify-content: space-evenly !important;
9823
  }
16848 stevensc 9824
 
16825 efrain 9825
  .align-items-sm-start {
9826
    align-items: flex-start !important;
9827
  }
16848 stevensc 9828
 
16825 efrain 9829
  .align-items-sm-end {
9830
    align-items: flex-end !important;
9831
  }
16848 stevensc 9832
 
16825 efrain 9833
  .align-items-sm-center {
9834
    align-items: center !important;
9835
  }
16848 stevensc 9836
 
16825 efrain 9837
  .align-items-sm-baseline {
9838
    align-items: baseline !important;
9839
  }
16848 stevensc 9840
 
16825 efrain 9841
  .align-items-sm-stretch {
9842
    align-items: stretch !important;
9843
  }
16848 stevensc 9844
 
16825 efrain 9845
  .align-content-sm-start {
9846
    align-content: flex-start !important;
9847
  }
16848 stevensc 9848
 
16825 efrain 9849
  .align-content-sm-end {
9850
    align-content: flex-end !important;
9851
  }
16848 stevensc 9852
 
16825 efrain 9853
  .align-content-sm-center {
9854
    align-content: center !important;
9855
  }
16848 stevensc 9856
 
16825 efrain 9857
  .align-content-sm-between {
9858
    align-content: space-between !important;
9859
  }
16848 stevensc 9860
 
16825 efrain 9861
  .align-content-sm-around {
9862
    align-content: space-around !important;
9863
  }
16848 stevensc 9864
 
16825 efrain 9865
  .align-content-sm-stretch {
9866
    align-content: stretch !important;
9867
  }
16848 stevensc 9868
 
16825 efrain 9869
  .align-self-sm-auto {
9870
    align-self: auto !important;
9871
  }
16848 stevensc 9872
 
16825 efrain 9873
  .align-self-sm-start {
9874
    align-self: flex-start !important;
9875
  }
16848 stevensc 9876
 
16825 efrain 9877
  .align-self-sm-end {
9878
    align-self: flex-end !important;
9879
  }
16848 stevensc 9880
 
16825 efrain 9881
  .align-self-sm-center {
9882
    align-self: center !important;
9883
  }
16848 stevensc 9884
 
16825 efrain 9885
  .align-self-sm-baseline {
9886
    align-self: baseline !important;
9887
  }
16848 stevensc 9888
 
16825 efrain 9889
  .align-self-sm-stretch {
9890
    align-self: stretch !important;
9891
  }
16848 stevensc 9892
 
16825 efrain 9893
  .order-sm-first {
9894
    order: -1 !important;
9895
  }
16848 stevensc 9896
 
16825 efrain 9897
  .order-sm-0 {
9898
    order: 0 !important;
9899
  }
16848 stevensc 9900
 
16825 efrain 9901
  .order-sm-1 {
9902
    order: 1 !important;
9903
  }
16848 stevensc 9904
 
16825 efrain 9905
  .order-sm-2 {
9906
    order: 2 !important;
9907
  }
16848 stevensc 9908
 
16825 efrain 9909
  .order-sm-3 {
9910
    order: 3 !important;
9911
  }
16848 stevensc 9912
 
16825 efrain 9913
  .order-sm-4 {
9914
    order: 4 !important;
9915
  }
16848 stevensc 9916
 
16825 efrain 9917
  .order-sm-5 {
9918
    order: 5 !important;
9919
  }
16848 stevensc 9920
 
16825 efrain 9921
  .order-sm-last {
9922
    order: 6 !important;
9923
  }
16848 stevensc 9924
 
16825 efrain 9925
  .m-sm-0 {
9926
    margin: 0 !important;
9927
  }
16848 stevensc 9928
 
16825 efrain 9929
  .m-sm-1 {
9930
    margin: 0.25rem !important;
9931
  }
16848 stevensc 9932
 
16825 efrain 9933
  .m-sm-2 {
9934
    margin: 0.5rem !important;
9935
  }
16848 stevensc 9936
 
16825 efrain 9937
  .m-sm-3 {
9938
    margin: 1rem !important;
9939
  }
16848 stevensc 9940
 
16825 efrain 9941
  .m-sm-4 {
9942
    margin: 1.5rem !important;
9943
  }
16848 stevensc 9944
 
16825 efrain 9945
  .m-sm-5 {
9946
    margin: 3rem !important;
9947
  }
16848 stevensc 9948
 
16825 efrain 9949
  .m-sm-6 {
9950
    margin: 4.5rem !important;
9951
  }
16848 stevensc 9952
 
16825 efrain 9953
  .m-sm-7 {
9954
    margin: 6rem !important;
9955
  }
16848 stevensc 9956
 
16825 efrain 9957
  .m-sm-auto {
9958
    margin: auto !important;
9959
  }
16848 stevensc 9960
 
16825 efrain 9961
  .mx-sm-0 {
9962
    margin-right: 0 !important;
9963
    margin-left: 0 !important;
9964
  }
16848 stevensc 9965
 
16825 efrain 9966
  .mx-sm-1 {
9967
    margin-right: 0.25rem !important;
9968
    margin-left: 0.25rem !important;
9969
  }
16848 stevensc 9970
 
16825 efrain 9971
  .mx-sm-2 {
9972
    margin-right: 0.5rem !important;
9973
    margin-left: 0.5rem !important;
9974
  }
16848 stevensc 9975
 
16825 efrain 9976
  .mx-sm-3 {
9977
    margin-right: 1rem !important;
9978
    margin-left: 1rem !important;
9979
  }
16848 stevensc 9980
 
16825 efrain 9981
  .mx-sm-4 {
9982
    margin-right: 1.5rem !important;
9983
    margin-left: 1.5rem !important;
9984
  }
16848 stevensc 9985
 
16825 efrain 9986
  .mx-sm-5 {
9987
    margin-right: 3rem !important;
9988
    margin-left: 3rem !important;
9989
  }
16848 stevensc 9990
 
16825 efrain 9991
  .mx-sm-6 {
9992
    margin-right: 4.5rem !important;
9993
    margin-left: 4.5rem !important;
9994
  }
16848 stevensc 9995
 
16825 efrain 9996
  .mx-sm-7 {
9997
    margin-right: 6rem !important;
9998
    margin-left: 6rem !important;
9999
  }
16848 stevensc 10000
 
16825 efrain 10001
  .mx-sm-auto {
10002
    margin-right: auto !important;
10003
    margin-left: auto !important;
10004
  }
16848 stevensc 10005
 
16825 efrain 10006
  .my-sm-0 {
10007
    margin-top: 0 !important;
10008
    margin-bottom: 0 !important;
10009
  }
16848 stevensc 10010
 
16825 efrain 10011
  .my-sm-1 {
10012
    margin-top: 0.25rem !important;
10013
    margin-bottom: 0.25rem !important;
10014
  }
16848 stevensc 10015
 
16825 efrain 10016
  .my-sm-2 {
10017
    margin-top: 0.5rem !important;
10018
    margin-bottom: 0.5rem !important;
10019
  }
16848 stevensc 10020
 
16825 efrain 10021
  .my-sm-3 {
10022
    margin-top: 1rem !important;
10023
    margin-bottom: 1rem !important;
10024
  }
16848 stevensc 10025
 
16825 efrain 10026
  .my-sm-4 {
10027
    margin-top: 1.5rem !important;
10028
    margin-bottom: 1.5rem !important;
10029
  }
16848 stevensc 10030
 
16825 efrain 10031
  .my-sm-5 {
10032
    margin-top: 3rem !important;
10033
    margin-bottom: 3rem !important;
10034
  }
16848 stevensc 10035
 
16825 efrain 10036
  .my-sm-6 {
10037
    margin-top: 4.5rem !important;
10038
    margin-bottom: 4.5rem !important;
10039
  }
16848 stevensc 10040
 
16825 efrain 10041
  .my-sm-7 {
10042
    margin-top: 6rem !important;
10043
    margin-bottom: 6rem !important;
10044
  }
16848 stevensc 10045
 
16825 efrain 10046
  .my-sm-auto {
10047
    margin-top: auto !important;
10048
    margin-bottom: auto !important;
10049
  }
16848 stevensc 10050
 
16825 efrain 10051
  .mt-sm-0 {
10052
    margin-top: 0 !important;
10053
  }
16848 stevensc 10054
 
16825 efrain 10055
  .mt-sm-1 {
10056
    margin-top: 0.25rem !important;
10057
  }
16848 stevensc 10058
 
16825 efrain 10059
  .mt-sm-2 {
10060
    margin-top: 0.5rem !important;
10061
  }
16848 stevensc 10062
 
16825 efrain 10063
  .mt-sm-3 {
10064
    margin-top: 1rem !important;
10065
  }
16848 stevensc 10066
 
16825 efrain 10067
  .mt-sm-4 {
10068
    margin-top: 1.5rem !important;
10069
  }
16848 stevensc 10070
 
16825 efrain 10071
  .mt-sm-5 {
10072
    margin-top: 3rem !important;
10073
  }
16848 stevensc 10074
 
16825 efrain 10075
  .mt-sm-6 {
10076
    margin-top: 4.5rem !important;
10077
  }
16848 stevensc 10078
 
16825 efrain 10079
  .mt-sm-7 {
10080
    margin-top: 6rem !important;
10081
  }
16848 stevensc 10082
 
16825 efrain 10083
  .mt-sm-auto {
10084
    margin-top: auto !important;
10085
  }
16848 stevensc 10086
 
16825 efrain 10087
  .me-sm-0 {
10088
    margin-right: 0 !important;
10089
  }
16848 stevensc 10090
 
16825 efrain 10091
  .me-sm-1 {
10092
    margin-right: 0.25rem !important;
10093
  }
16848 stevensc 10094
 
16825 efrain 10095
  .me-sm-2 {
10096
    margin-right: 0.5rem !important;
10097
  }
16848 stevensc 10098
 
16825 efrain 10099
  .me-sm-3 {
10100
    margin-right: 1rem !important;
10101
  }
16848 stevensc 10102
 
16825 efrain 10103
  .me-sm-4 {
10104
    margin-right: 1.5rem !important;
10105
  }
16848 stevensc 10106
 
16825 efrain 10107
  .me-sm-5 {
10108
    margin-right: 3rem !important;
10109
  }
16848 stevensc 10110
 
16825 efrain 10111
  .me-sm-6 {
10112
    margin-right: 4.5rem !important;
10113
  }
16848 stevensc 10114
 
16825 efrain 10115
  .me-sm-7 {
10116
    margin-right: 6rem !important;
10117
  }
16848 stevensc 10118
 
16825 efrain 10119
  .me-sm-auto {
10120
    margin-right: auto !important;
10121
  }
16848 stevensc 10122
 
16825 efrain 10123
  .mb-sm-0 {
10124
    margin-bottom: 0 !important;
10125
  }
16848 stevensc 10126
 
16825 efrain 10127
  .mb-sm-1 {
10128
    margin-bottom: 0.25rem !important;
10129
  }
16848 stevensc 10130
 
16825 efrain 10131
  .mb-sm-2 {
10132
    margin-bottom: 0.5rem !important;
10133
  }
16848 stevensc 10134
 
16825 efrain 10135
  .mb-sm-3 {
10136
    margin-bottom: 1rem !important;
10137
  }
16848 stevensc 10138
 
16825 efrain 10139
  .mb-sm-4 {
10140
    margin-bottom: 1.5rem !important;
10141
  }
16848 stevensc 10142
 
16825 efrain 10143
  .mb-sm-5 {
10144
    margin-bottom: 3rem !important;
10145
  }
16848 stevensc 10146
 
16825 efrain 10147
  .mb-sm-6 {
10148
    margin-bottom: 4.5rem !important;
10149
  }
16848 stevensc 10150
 
16825 efrain 10151
  .mb-sm-7 {
10152
    margin-bottom: 6rem !important;
10153
  }
16848 stevensc 10154
 
16825 efrain 10155
  .mb-sm-auto {
10156
    margin-bottom: auto !important;
10157
  }
16848 stevensc 10158
 
16825 efrain 10159
  .ms-sm-0 {
10160
    margin-left: 0 !important;
10161
  }
16848 stevensc 10162
 
16825 efrain 10163
  .ms-sm-1 {
10164
    margin-left: 0.25rem !important;
10165
  }
16848 stevensc 10166
 
16825 efrain 10167
  .ms-sm-2 {
10168
    margin-left: 0.5rem !important;
10169
  }
16848 stevensc 10170
 
16825 efrain 10171
  .ms-sm-3 {
10172
    margin-left: 1rem !important;
10173
  }
16848 stevensc 10174
 
16825 efrain 10175
  .ms-sm-4 {
10176
    margin-left: 1.5rem !important;
10177
  }
16848 stevensc 10178
 
16825 efrain 10179
  .ms-sm-5 {
10180
    margin-left: 3rem !important;
10181
  }
16848 stevensc 10182
 
16825 efrain 10183
  .ms-sm-6 {
10184
    margin-left: 4.5rem !important;
10185
  }
16848 stevensc 10186
 
16825 efrain 10187
  .ms-sm-7 {
10188
    margin-left: 6rem !important;
10189
  }
16848 stevensc 10190
 
16825 efrain 10191
  .ms-sm-auto {
10192
    margin-left: auto !important;
10193
  }
16848 stevensc 10194
 
16825 efrain 10195
  .m-sm-n1 {
10196
    margin: -0.25rem !important;
10197
  }
16848 stevensc 10198
 
16825 efrain 10199
  .m-sm-n2 {
10200
    margin: -0.5rem !important;
10201
  }
16848 stevensc 10202
 
16825 efrain 10203
  .m-sm-n3 {
10204
    margin: -1rem !important;
10205
  }
16848 stevensc 10206
 
16825 efrain 10207
  .m-sm-n4 {
10208
    margin: -1.5rem !important;
10209
  }
16848 stevensc 10210
 
16825 efrain 10211
  .m-sm-n5 {
10212
    margin: -3rem !important;
10213
  }
16848 stevensc 10214
 
16825 efrain 10215
  .m-sm-n6 {
10216
    margin: -4.5rem !important;
10217
  }
16848 stevensc 10218
 
16825 efrain 10219
  .m-sm-n7 {
10220
    margin: -6rem !important;
10221
  }
16848 stevensc 10222
 
16825 efrain 10223
  .mx-sm-n1 {
10224
    margin-right: -0.25rem !important;
10225
    margin-left: -0.25rem !important;
10226
  }
16848 stevensc 10227
 
16825 efrain 10228
  .mx-sm-n2 {
10229
    margin-right: -0.5rem !important;
10230
    margin-left: -0.5rem !important;
10231
  }
16848 stevensc 10232
 
16825 efrain 10233
  .mx-sm-n3 {
10234
    margin-right: -1rem !important;
10235
    margin-left: -1rem !important;
10236
  }
16848 stevensc 10237
 
16825 efrain 10238
  .mx-sm-n4 {
10239
    margin-right: -1.5rem !important;
10240
    margin-left: -1.5rem !important;
10241
  }
16848 stevensc 10242
 
16825 efrain 10243
  .mx-sm-n5 {
10244
    margin-right: -3rem !important;
10245
    margin-left: -3rem !important;
10246
  }
16848 stevensc 10247
 
16825 efrain 10248
  .mx-sm-n6 {
10249
    margin-right: -4.5rem !important;
10250
    margin-left: -4.5rem !important;
10251
  }
16848 stevensc 10252
 
16825 efrain 10253
  .mx-sm-n7 {
10254
    margin-right: -6rem !important;
10255
    margin-left: -6rem !important;
10256
  }
16848 stevensc 10257
 
16825 efrain 10258
  .my-sm-n1 {
10259
    margin-top: -0.25rem !important;
10260
    margin-bottom: -0.25rem !important;
10261
  }
16848 stevensc 10262
 
16825 efrain 10263
  .my-sm-n2 {
10264
    margin-top: -0.5rem !important;
10265
    margin-bottom: -0.5rem !important;
10266
  }
16848 stevensc 10267
 
16825 efrain 10268
  .my-sm-n3 {
10269
    margin-top: -1rem !important;
10270
    margin-bottom: -1rem !important;
10271
  }
16848 stevensc 10272
 
16825 efrain 10273
  .my-sm-n4 {
10274
    margin-top: -1.5rem !important;
10275
    margin-bottom: -1.5rem !important;
10276
  }
16848 stevensc 10277
 
16825 efrain 10278
  .my-sm-n5 {
10279
    margin-top: -3rem !important;
10280
    margin-bottom: -3rem !important;
10281
  }
16848 stevensc 10282
 
16825 efrain 10283
  .my-sm-n6 {
10284
    margin-top: -4.5rem !important;
10285
    margin-bottom: -4.5rem !important;
10286
  }
16848 stevensc 10287
 
16825 efrain 10288
  .my-sm-n7 {
10289
    margin-top: -6rem !important;
10290
    margin-bottom: -6rem !important;
10291
  }
16848 stevensc 10292
 
16825 efrain 10293
  .mt-sm-n1 {
10294
    margin-top: -0.25rem !important;
10295
  }
16848 stevensc 10296
 
16825 efrain 10297
  .mt-sm-n2 {
10298
    margin-top: -0.5rem !important;
10299
  }
16848 stevensc 10300
 
16825 efrain 10301
  .mt-sm-n3 {
10302
    margin-top: -1rem !important;
10303
  }
16848 stevensc 10304
 
16825 efrain 10305
  .mt-sm-n4 {
10306
    margin-top: -1.5rem !important;
10307
  }
16848 stevensc 10308
 
16825 efrain 10309
  .mt-sm-n5 {
10310
    margin-top: -3rem !important;
10311
  }
16848 stevensc 10312
 
16825 efrain 10313
  .mt-sm-n6 {
10314
    margin-top: -4.5rem !important;
10315
  }
16848 stevensc 10316
 
16825 efrain 10317
  .mt-sm-n7 {
10318
    margin-top: -6rem !important;
10319
  }
16848 stevensc 10320
 
16825 efrain 10321
  .me-sm-n1 {
10322
    margin-right: -0.25rem !important;
10323
  }
16848 stevensc 10324
 
16825 efrain 10325
  .me-sm-n2 {
10326
    margin-right: -0.5rem !important;
10327
  }
16848 stevensc 10328
 
16825 efrain 10329
  .me-sm-n3 {
10330
    margin-right: -1rem !important;
10331
  }
16848 stevensc 10332
 
16825 efrain 10333
  .me-sm-n4 {
10334
    margin-right: -1.5rem !important;
10335
  }
16848 stevensc 10336
 
16825 efrain 10337
  .me-sm-n5 {
10338
    margin-right: -3rem !important;
10339
  }
16848 stevensc 10340
 
16825 efrain 10341
  .me-sm-n6 {
10342
    margin-right: -4.5rem !important;
10343
  }
16848 stevensc 10344
 
16825 efrain 10345
  .me-sm-n7 {
10346
    margin-right: -6rem !important;
10347
  }
16848 stevensc 10348
 
16825 efrain 10349
  .mb-sm-n1 {
10350
    margin-bottom: -0.25rem !important;
10351
  }
16848 stevensc 10352
 
16825 efrain 10353
  .mb-sm-n2 {
10354
    margin-bottom: -0.5rem !important;
10355
  }
16848 stevensc 10356
 
16825 efrain 10357
  .mb-sm-n3 {
10358
    margin-bottom: -1rem !important;
10359
  }
16848 stevensc 10360
 
16825 efrain 10361
  .mb-sm-n4 {
10362
    margin-bottom: -1.5rem !important;
10363
  }
16848 stevensc 10364
 
16825 efrain 10365
  .mb-sm-n5 {
10366
    margin-bottom: -3rem !important;
10367
  }
16848 stevensc 10368
 
16825 efrain 10369
  .mb-sm-n6 {
10370
    margin-bottom: -4.5rem !important;
10371
  }
16848 stevensc 10372
 
16825 efrain 10373
  .mb-sm-n7 {
10374
    margin-bottom: -6rem !important;
10375
  }
16848 stevensc 10376
 
16825 efrain 10377
  .ms-sm-n1 {
10378
    margin-left: -0.25rem !important;
10379
  }
16848 stevensc 10380
 
16825 efrain 10381
  .ms-sm-n2 {
10382
    margin-left: -0.5rem !important;
10383
  }
16848 stevensc 10384
 
16825 efrain 10385
  .ms-sm-n3 {
10386
    margin-left: -1rem !important;
10387
  }
16848 stevensc 10388
 
16825 efrain 10389
  .ms-sm-n4 {
10390
    margin-left: -1.5rem !important;
10391
  }
16848 stevensc 10392
 
16825 efrain 10393
  .ms-sm-n5 {
10394
    margin-left: -3rem !important;
10395
  }
16848 stevensc 10396
 
16825 efrain 10397
  .ms-sm-n6 {
10398
    margin-left: -4.5rem !important;
10399
  }
16848 stevensc 10400
 
16825 efrain 10401
  .ms-sm-n7 {
10402
    margin-left: -6rem !important;
10403
  }
16848 stevensc 10404
 
16825 efrain 10405
  .p-sm-0 {
10406
    padding: 0 !important;
10407
  }
16848 stevensc 10408
 
16825 efrain 10409
  .p-sm-1 {
10410
    padding: 0.25rem !important;
10411
  }
16848 stevensc 10412
 
16825 efrain 10413
  .p-sm-2 {
10414
    padding: 0.5rem !important;
10415
  }
16848 stevensc 10416
 
16825 efrain 10417
  .p-sm-3 {
10418
    padding: 1rem !important;
10419
  }
16848 stevensc 10420
 
16825 efrain 10421
  .p-sm-4 {
10422
    padding: 1.5rem !important;
10423
  }
16848 stevensc 10424
 
16825 efrain 10425
  .p-sm-5 {
10426
    padding: 3rem !important;
10427
  }
16848 stevensc 10428
 
16825 efrain 10429
  .p-sm-6 {
10430
    padding: 4.5rem !important;
10431
  }
16848 stevensc 10432
 
16825 efrain 10433
  .p-sm-7 {
10434
    padding: 6rem !important;
10435
  }
16848 stevensc 10436
 
16825 efrain 10437
  .px-sm-0 {
10438
    padding-right: 0 !important;
10439
    padding-left: 0 !important;
10440
  }
16848 stevensc 10441
 
16825 efrain 10442
  .px-sm-1 {
10443
    padding-right: 0.25rem !important;
10444
    padding-left: 0.25rem !important;
10445
  }
16848 stevensc 10446
 
16825 efrain 10447
  .px-sm-2 {
10448
    padding-right: 0.5rem !important;
10449
    padding-left: 0.5rem !important;
10450
  }
16848 stevensc 10451
 
16825 efrain 10452
  .px-sm-3 {
10453
    padding-right: 1rem !important;
10454
    padding-left: 1rem !important;
10455
  }
16848 stevensc 10456
 
16825 efrain 10457
  .px-sm-4 {
10458
    padding-right: 1.5rem !important;
10459
    padding-left: 1.5rem !important;
10460
  }
16848 stevensc 10461
 
16825 efrain 10462
  .px-sm-5 {
10463
    padding-right: 3rem !important;
10464
    padding-left: 3rem !important;
10465
  }
16848 stevensc 10466
 
16825 efrain 10467
  .px-sm-6 {
10468
    padding-right: 4.5rem !important;
10469
    padding-left: 4.5rem !important;
10470
  }
16848 stevensc 10471
 
16825 efrain 10472
  .px-sm-7 {
10473
    padding-right: 6rem !important;
10474
    padding-left: 6rem !important;
10475
  }
16848 stevensc 10476
 
16825 efrain 10477
  .py-sm-0 {
10478
    padding-top: 0 !important;
10479
    padding-bottom: 0 !important;
10480
  }
16848 stevensc 10481
 
16825 efrain 10482
  .py-sm-1 {
10483
    padding-top: 0.25rem !important;
10484
    padding-bottom: 0.25rem !important;
10485
  }
16848 stevensc 10486
 
16825 efrain 10487
  .py-sm-2 {
10488
    padding-top: 0.5rem !important;
10489
    padding-bottom: 0.5rem !important;
10490
  }
16848 stevensc 10491
 
16825 efrain 10492
  .py-sm-3 {
10493
    padding-top: 1rem !important;
10494
    padding-bottom: 1rem !important;
10495
  }
16848 stevensc 10496
 
16825 efrain 10497
  .py-sm-4 {
10498
    padding-top: 1.5rem !important;
10499
    padding-bottom: 1.5rem !important;
10500
  }
16848 stevensc 10501
 
16825 efrain 10502
  .py-sm-5 {
10503
    padding-top: 3rem !important;
10504
    padding-bottom: 3rem !important;
10505
  }
16848 stevensc 10506
 
16825 efrain 10507
  .py-sm-6 {
10508
    padding-top: 4.5rem !important;
10509
    padding-bottom: 4.5rem !important;
10510
  }
16848 stevensc 10511
 
16825 efrain 10512
  .py-sm-7 {
10513
    padding-top: 6rem !important;
10514
    padding-bottom: 6rem !important;
10515
  }
16848 stevensc 10516
 
16825 efrain 10517
  .pt-sm-0 {
10518
    padding-top: 0 !important;
10519
  }
16848 stevensc 10520
 
16825 efrain 10521
  .pt-sm-1 {
10522
    padding-top: 0.25rem !important;
10523
  }
16848 stevensc 10524
 
16825 efrain 10525
  .pt-sm-2 {
10526
    padding-top: 0.5rem !important;
10527
  }
16848 stevensc 10528
 
16825 efrain 10529
  .pt-sm-3 {
10530
    padding-top: 1rem !important;
10531
  }
16848 stevensc 10532
 
16825 efrain 10533
  .pt-sm-4 {
10534
    padding-top: 1.5rem !important;
10535
  }
16848 stevensc 10536
 
16825 efrain 10537
  .pt-sm-5 {
10538
    padding-top: 3rem !important;
10539
  }
16848 stevensc 10540
 
16825 efrain 10541
  .pt-sm-6 {
10542
    padding-top: 4.5rem !important;
10543
  }
16848 stevensc 10544
 
16825 efrain 10545
  .pt-sm-7 {
10546
    padding-top: 6rem !important;
10547
  }
16848 stevensc 10548
 
16825 efrain 10549
  .pe-sm-0 {
10550
    padding-right: 0 !important;
10551
  }
16848 stevensc 10552
 
16825 efrain 10553
  .pe-sm-1 {
10554
    padding-right: 0.25rem !important;
10555
  }
16848 stevensc 10556
 
16825 efrain 10557
  .pe-sm-2 {
10558
    padding-right: 0.5rem !important;
10559
  }
16848 stevensc 10560
 
16825 efrain 10561
  .pe-sm-3 {
10562
    padding-right: 1rem !important;
10563
  }
16848 stevensc 10564
 
16825 efrain 10565
  .pe-sm-4 {
10566
    padding-right: 1.5rem !important;
10567
  }
16848 stevensc 10568
 
16825 efrain 10569
  .pe-sm-5 {
10570
    padding-right: 3rem !important;
10571
  }
16848 stevensc 10572
 
16825 efrain 10573
  .pe-sm-6 {
10574
    padding-right: 4.5rem !important;
10575
  }
16848 stevensc 10576
 
16825 efrain 10577
  .pe-sm-7 {
10578
    padding-right: 6rem !important;
10579
  }
16848 stevensc 10580
 
16825 efrain 10581
  .pb-sm-0 {
10582
    padding-bottom: 0 !important;
10583
  }
16848 stevensc 10584
 
16825 efrain 10585
  .pb-sm-1 {
10586
    padding-bottom: 0.25rem !important;
10587
  }
16848 stevensc 10588
 
16825 efrain 10589
  .pb-sm-2 {
10590
    padding-bottom: 0.5rem !important;
10591
  }
16848 stevensc 10592
 
16825 efrain 10593
  .pb-sm-3 {
10594
    padding-bottom: 1rem !important;
10595
  }
16848 stevensc 10596
 
16825 efrain 10597
  .pb-sm-4 {
10598
    padding-bottom: 1.5rem !important;
10599
  }
16848 stevensc 10600
 
16825 efrain 10601
  .pb-sm-5 {
10602
    padding-bottom: 3rem !important;
10603
  }
16848 stevensc 10604
 
16825 efrain 10605
  .pb-sm-6 {
10606
    padding-bottom: 4.5rem !important;
10607
  }
16848 stevensc 10608
 
16825 efrain 10609
  .pb-sm-7 {
10610
    padding-bottom: 6rem !important;
10611
  }
16848 stevensc 10612
 
16825 efrain 10613
  .ps-sm-0 {
10614
    padding-left: 0 !important;
10615
  }
16848 stevensc 10616
 
16825 efrain 10617
  .ps-sm-1 {
10618
    padding-left: 0.25rem !important;
10619
  }
16848 stevensc 10620
 
16825 efrain 10621
  .ps-sm-2 {
10622
    padding-left: 0.5rem !important;
10623
  }
16848 stevensc 10624
 
16825 efrain 10625
  .ps-sm-3 {
10626
    padding-left: 1rem !important;
10627
  }
16848 stevensc 10628
 
16825 efrain 10629
  .ps-sm-4 {
10630
    padding-left: 1.5rem !important;
10631
  }
16848 stevensc 10632
 
16825 efrain 10633
  .ps-sm-5 {
10634
    padding-left: 3rem !important;
10635
  }
16848 stevensc 10636
 
16825 efrain 10637
  .ps-sm-6 {
10638
    padding-left: 4.5rem !important;
10639
  }
16848 stevensc 10640
 
16825 efrain 10641
  .ps-sm-7 {
10642
    padding-left: 6rem !important;
10643
  }
16848 stevensc 10644
 
16825 efrain 10645
  .gap-sm-0 {
10646
    gap: 0 !important;
10647
  }
16848 stevensc 10648
 
16825 efrain 10649
  .gap-sm-1 {
10650
    gap: 0.25rem !important;
10651
  }
16848 stevensc 10652
 
16825 efrain 10653
  .gap-sm-2 {
10654
    gap: 0.5rem !important;
10655
  }
16848 stevensc 10656
 
16825 efrain 10657
  .gap-sm-3 {
10658
    gap: 1rem !important;
10659
  }
16848 stevensc 10660
 
16825 efrain 10661
  .gap-sm-4 {
10662
    gap: 1.5rem !important;
10663
  }
16848 stevensc 10664
 
16825 efrain 10665
  .gap-sm-5 {
10666
    gap: 3rem !important;
10667
  }
16848 stevensc 10668
 
16825 efrain 10669
  .gap-sm-6 {
10670
    gap: 4.5rem !important;
10671
  }
16848 stevensc 10672
 
16825 efrain 10673
  .gap-sm-7 {
10674
    gap: 6rem !important;
10675
  }
16848 stevensc 10676
 
16825 efrain 10677
  .text-sm-start {
10678
    text-align: left !important;
10679
  }
16848 stevensc 10680
 
16825 efrain 10681
  .text-sm-end {
10682
    text-align: right !important;
10683
  }
16848 stevensc 10684
 
16825 efrain 10685
  .text-sm-center {
10686
    text-align: center !important;
10687
  }
10688
}
16848 stevensc 10689
 
16825 efrain 10690
@media (min-width: 768px) {
10691
  .float-md-start {
10692
    float: left !important;
10693
  }
16848 stevensc 10694
 
16825 efrain 10695
  .float-md-end {
10696
    float: right !important;
10697
  }
16848 stevensc 10698
 
16825 efrain 10699
  .float-md-none {
10700
    float: none !important;
10701
  }
16848 stevensc 10702
 
16825 efrain 10703
  .d-md-inline {
10704
    display: inline !important;
10705
  }
16848 stevensc 10706
 
16825 efrain 10707
  .d-md-inline-block {
10708
    display: inline-block !important;
10709
  }
16848 stevensc 10710
 
16825 efrain 10711
  .d-md-block {
10712
    display: block !important;
10713
  }
16848 stevensc 10714
 
16825 efrain 10715
  .d-md-grid {
10716
    display: grid !important;
10717
  }
16848 stevensc 10718
 
16825 efrain 10719
  .d-md-table {
10720
    display: table !important;
10721
  }
16848 stevensc 10722
 
16825 efrain 10723
  .d-md-table-row {
10724
    display: table-row !important;
10725
  }
16848 stevensc 10726
 
16825 efrain 10727
  .d-md-table-cell {
10728
    display: table-cell !important;
10729
  }
16848 stevensc 10730
 
10731
  .d-md-flex,
10732
  .navbar .search-form {
16825 efrain 10733
    display: flex !important;
10734
  }
16848 stevensc 10735
 
16825 efrain 10736
  .d-md-inline-flex {
10737
    display: inline-flex !important;
10738
  }
16848 stevensc 10739
 
16825 efrain 10740
  .d-md-none {
10741
    display: none !important;
10742
  }
16848 stevensc 10743
 
16825 efrain 10744
  .border-md {
10745
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10746
  }
16848 stevensc 10747
 
16825 efrain 10748
  .border-md-0 {
10749
    border: 0 !important;
10750
  }
16848 stevensc 10751
 
16825 efrain 10752
  .border-top-md {
10753
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10754
  }
16848 stevensc 10755
 
16825 efrain 10756
  .border-top-md-0 {
10757
    border-top: 0 !important;
10758
  }
16848 stevensc 10759
 
16825 efrain 10760
  .border-end-md {
10761
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10762
  }
16848 stevensc 10763
 
16825 efrain 10764
  .border-end-md-0 {
10765
    border-right: 0 !important;
10766
  }
16848 stevensc 10767
 
16825 efrain 10768
  .border-bottom-md {
10769
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10770
  }
16848 stevensc 10771
 
16825 efrain 10772
  .border-bottom-md-0 {
10773
    border-bottom: 0 !important;
10774
  }
16848 stevensc 10775
 
16825 efrain 10776
  .border-start-md {
10777
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10778
  }
16848 stevensc 10779
 
16825 efrain 10780
  .border-start-md-0 {
10781
    border-left: 0 !important;
10782
  }
16848 stevensc 10783
 
16825 efrain 10784
  .flex-md-fill {
10785
    flex: 1 1 auto !important;
10786
  }
16848 stevensc 10787
 
16825 efrain 10788
  .flex-md-row {
10789
    flex-direction: row !important;
10790
  }
16848 stevensc 10791
 
16825 efrain 10792
  .flex-md-column {
10793
    flex-direction: column !important;
10794
  }
16848 stevensc 10795
 
16825 efrain 10796
  .flex-md-row-reverse {
10797
    flex-direction: row-reverse !important;
10798
  }
16848 stevensc 10799
 
16825 efrain 10800
  .flex-md-column-reverse {
10801
    flex-direction: column-reverse !important;
10802
  }
16848 stevensc 10803
 
16825 efrain 10804
  .flex-md-grow-0 {
10805
    flex-grow: 0 !important;
10806
  }
16848 stevensc 10807
 
16825 efrain 10808
  .flex-md-grow-1 {
10809
    flex-grow: 1 !important;
10810
  }
16848 stevensc 10811
 
16825 efrain 10812
  .flex-md-shrink-0 {
10813
    flex-shrink: 0 !important;
10814
  }
16848 stevensc 10815
 
16825 efrain 10816
  .flex-md-shrink-1 {
10817
    flex-shrink: 1 !important;
10818
  }
16848 stevensc 10819
 
16825 efrain 10820
  .flex-md-wrap {
10821
    flex-wrap: wrap !important;
10822
  }
16848 stevensc 10823
 
16825 efrain 10824
  .flex-md-nowrap {
10825
    flex-wrap: nowrap !important;
10826
  }
16848 stevensc 10827
 
16825 efrain 10828
  .flex-md-wrap-reverse {
10829
    flex-wrap: wrap-reverse !important;
10830
  }
16848 stevensc 10831
 
16825 efrain 10832
  .justify-content-md-start {
10833
    justify-content: flex-start !important;
10834
  }
16848 stevensc 10835
 
10836
  .justify-content-md-end,
10837
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10838
    justify-content: flex-end !important;
10839
  }
16848 stevensc 10840
 
16825 efrain 10841
  .justify-content-md-center {
10842
    justify-content: center !important;
10843
  }
16848 stevensc 10844
 
16825 efrain 10845
  .justify-content-md-between {
10846
    justify-content: space-between !important;
10847
  }
16848 stevensc 10848
 
16825 efrain 10849
  .justify-content-md-around {
10850
    justify-content: space-around !important;
10851
  }
16848 stevensc 10852
 
16825 efrain 10853
  .justify-content-md-evenly {
10854
    justify-content: space-evenly !important;
10855
  }
16848 stevensc 10856
 
16825 efrain 10857
  .align-items-md-start {
10858
    align-items: flex-start !important;
10859
  }
16848 stevensc 10860
 
16825 efrain 10861
  .align-items-md-end {
10862
    align-items: flex-end !important;
10863
  }
16848 stevensc 10864
 
16825 efrain 10865
  .align-items-md-center {
10866
    align-items: center !important;
10867
  }
16848 stevensc 10868
 
16825 efrain 10869
  .align-items-md-baseline {
10870
    align-items: baseline !important;
10871
  }
16848 stevensc 10872
 
16825 efrain 10873
  .align-items-md-stretch {
10874
    align-items: stretch !important;
10875
  }
16848 stevensc 10876
 
16825 efrain 10877
  .align-content-md-start {
10878
    align-content: flex-start !important;
10879
  }
16848 stevensc 10880
 
16825 efrain 10881
  .align-content-md-end {
10882
    align-content: flex-end !important;
10883
  }
16848 stevensc 10884
 
16825 efrain 10885
  .align-content-md-center {
10886
    align-content: center !important;
10887
  }
16848 stevensc 10888
 
16825 efrain 10889
  .align-content-md-between {
10890
    align-content: space-between !important;
10891
  }
16848 stevensc 10892
 
16825 efrain 10893
  .align-content-md-around {
10894
    align-content: space-around !important;
10895
  }
16848 stevensc 10896
 
16825 efrain 10897
  .align-content-md-stretch {
10898
    align-content: stretch !important;
10899
  }
16848 stevensc 10900
 
16825 efrain 10901
  .align-self-md-auto {
10902
    align-self: auto !important;
10903
  }
16848 stevensc 10904
 
16825 efrain 10905
  .align-self-md-start {
10906
    align-self: flex-start !important;
10907
  }
16848 stevensc 10908
 
16825 efrain 10909
  .align-self-md-end {
10910
    align-self: flex-end !important;
10911
  }
16848 stevensc 10912
 
16825 efrain 10913
  .align-self-md-center {
10914
    align-self: center !important;
10915
  }
16848 stevensc 10916
 
16825 efrain 10917
  .align-self-md-baseline {
10918
    align-self: baseline !important;
10919
  }
16848 stevensc 10920
 
16825 efrain 10921
  .align-self-md-stretch {
10922
    align-self: stretch !important;
10923
  }
16848 stevensc 10924
 
16825 efrain 10925
  .order-md-first {
10926
    order: -1 !important;
10927
  }
16848 stevensc 10928
 
16825 efrain 10929
  .order-md-0 {
10930
    order: 0 !important;
10931
  }
16848 stevensc 10932
 
16825 efrain 10933
  .order-md-1 {
10934
    order: 1 !important;
10935
  }
16848 stevensc 10936
 
16825 efrain 10937
  .order-md-2 {
10938
    order: 2 !important;
10939
  }
16848 stevensc 10940
 
16825 efrain 10941
  .order-md-3 {
10942
    order: 3 !important;
10943
  }
16848 stevensc 10944
 
16825 efrain 10945
  .order-md-4 {
10946
    order: 4 !important;
10947
  }
16848 stevensc 10948
 
16825 efrain 10949
  .order-md-5 {
10950
    order: 5 !important;
10951
  }
16848 stevensc 10952
 
16825 efrain 10953
  .order-md-last {
10954
    order: 6 !important;
10955
  }
16848 stevensc 10956
 
16825 efrain 10957
  .m-md-0 {
10958
    margin: 0 !important;
10959
  }
16848 stevensc 10960
 
16825 efrain 10961
  .m-md-1 {
10962
    margin: 0.25rem !important;
10963
  }
16848 stevensc 10964
 
16825 efrain 10965
  .m-md-2 {
10966
    margin: 0.5rem !important;
10967
  }
16848 stevensc 10968
 
16825 efrain 10969
  .m-md-3 {
10970
    margin: 1rem !important;
10971
  }
16848 stevensc 10972
 
16825 efrain 10973
  .m-md-4 {
10974
    margin: 1.5rem !important;
10975
  }
16848 stevensc 10976
 
16825 efrain 10977
  .m-md-5 {
10978
    margin: 3rem !important;
10979
  }
16848 stevensc 10980
 
16825 efrain 10981
  .m-md-6 {
10982
    margin: 4.5rem !important;
10983
  }
16848 stevensc 10984
 
16825 efrain 10985
  .m-md-7 {
10986
    margin: 6rem !important;
10987
  }
16848 stevensc 10988
 
16825 efrain 10989
  .m-md-auto {
10990
    margin: auto !important;
10991
  }
16848 stevensc 10992
 
16825 efrain 10993
  .mx-md-0 {
10994
    margin-right: 0 !important;
10995
    margin-left: 0 !important;
10996
  }
16848 stevensc 10997
 
16825 efrain 10998
  .mx-md-1 {
10999
    margin-right: 0.25rem !important;
11000
    margin-left: 0.25rem !important;
11001
  }
16848 stevensc 11002
 
16825 efrain 11003
  .mx-md-2 {
11004
    margin-right: 0.5rem !important;
11005
    margin-left: 0.5rem !important;
11006
  }
16848 stevensc 11007
 
16825 efrain 11008
  .mx-md-3 {
11009
    margin-right: 1rem !important;
11010
    margin-left: 1rem !important;
11011
  }
16848 stevensc 11012
 
16825 efrain 11013
  .mx-md-4 {
11014
    margin-right: 1.5rem !important;
11015
    margin-left: 1.5rem !important;
11016
  }
16848 stevensc 11017
 
16825 efrain 11018
  .mx-md-5 {
11019
    margin-right: 3rem !important;
11020
    margin-left: 3rem !important;
11021
  }
16848 stevensc 11022
 
16825 efrain 11023
  .mx-md-6 {
11024
    margin-right: 4.5rem !important;
11025
    margin-left: 4.5rem !important;
11026
  }
16848 stevensc 11027
 
16825 efrain 11028
  .mx-md-7 {
11029
    margin-right: 6rem !important;
11030
    margin-left: 6rem !important;
11031
  }
16848 stevensc 11032
 
16825 efrain 11033
  .mx-md-auto {
11034
    margin-right: auto !important;
11035
    margin-left: auto !important;
11036
  }
16848 stevensc 11037
 
16825 efrain 11038
  .my-md-0 {
11039
    margin-top: 0 !important;
11040
    margin-bottom: 0 !important;
11041
  }
16848 stevensc 11042
 
16825 efrain 11043
  .my-md-1 {
11044
    margin-top: 0.25rem !important;
11045
    margin-bottom: 0.25rem !important;
11046
  }
16848 stevensc 11047
 
16825 efrain 11048
  .my-md-2 {
11049
    margin-top: 0.5rem !important;
11050
    margin-bottom: 0.5rem !important;
11051
  }
16848 stevensc 11052
 
16825 efrain 11053
  .my-md-3 {
11054
    margin-top: 1rem !important;
11055
    margin-bottom: 1rem !important;
11056
  }
16848 stevensc 11057
 
16825 efrain 11058
  .my-md-4 {
11059
    margin-top: 1.5rem !important;
11060
    margin-bottom: 1.5rem !important;
11061
  }
16848 stevensc 11062
 
16825 efrain 11063
  .my-md-5 {
11064
    margin-top: 3rem !important;
11065
    margin-bottom: 3rem !important;
11066
  }
16848 stevensc 11067
 
16825 efrain 11068
  .my-md-6 {
11069
    margin-top: 4.5rem !important;
11070
    margin-bottom: 4.5rem !important;
11071
  }
16848 stevensc 11072
 
16825 efrain 11073
  .my-md-7 {
11074
    margin-top: 6rem !important;
11075
    margin-bottom: 6rem !important;
11076
  }
16848 stevensc 11077
 
16825 efrain 11078
  .my-md-auto {
11079
    margin-top: auto !important;
11080
    margin-bottom: auto !important;
11081
  }
16848 stevensc 11082
 
11083
  .mt-md-0,
11084
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11085
    margin-top: 0 !important;
11086
  }
16848 stevensc 11087
 
16825 efrain 11088
  .mt-md-1 {
11089
    margin-top: 0.25rem !important;
11090
  }
16848 stevensc 11091
 
16825 efrain 11092
  .mt-md-2 {
11093
    margin-top: 0.5rem !important;
11094
  }
16848 stevensc 11095
 
16825 efrain 11096
  .mt-md-3 {
11097
    margin-top: 1rem !important;
11098
  }
16848 stevensc 11099
 
16825 efrain 11100
  .mt-md-4 {
11101
    margin-top: 1.5rem !important;
11102
  }
16848 stevensc 11103
 
16825 efrain 11104
  .mt-md-5 {
11105
    margin-top: 3rem !important;
11106
  }
16848 stevensc 11107
 
16825 efrain 11108
  .mt-md-6 {
11109
    margin-top: 4.5rem !important;
11110
  }
16848 stevensc 11111
 
16825 efrain 11112
  .mt-md-7 {
11113
    margin-top: 6rem !important;
11114
  }
16848 stevensc 11115
 
16825 efrain 11116
  .mt-md-auto {
11117
    margin-top: auto !important;
11118
  }
16848 stevensc 11119
 
16825 efrain 11120
  .me-md-0 {
11121
    margin-right: 0 !important;
11122
  }
16848 stevensc 11123
 
16825 efrain 11124
  .me-md-1 {
11125
    margin-right: 0.25rem !important;
11126
  }
16848 stevensc 11127
 
16825 efrain 11128
  .me-md-2 {
11129
    margin-right: 0.5rem !important;
11130
  }
16848 stevensc 11131
 
16825 efrain 11132
  .me-md-3 {
11133
    margin-right: 1rem !important;
11134
  }
16848 stevensc 11135
 
16825 efrain 11136
  .me-md-4 {
11137
    margin-right: 1.5rem !important;
11138
  }
16848 stevensc 11139
 
16825 efrain 11140
  .me-md-5 {
11141
    margin-right: 3rem !important;
11142
  }
16848 stevensc 11143
 
16825 efrain 11144
  .me-md-6 {
11145
    margin-right: 4.5rem !important;
11146
  }
16848 stevensc 11147
 
16825 efrain 11148
  .me-md-7 {
11149
    margin-right: 6rem !important;
11150
  }
16848 stevensc 11151
 
16825 efrain 11152
  .me-md-auto {
11153
    margin-right: auto !important;
11154
  }
16848 stevensc 11155
 
11156
  .mb-md-0,
11157
  .example .btn-group {
16825 efrain 11158
    margin-bottom: 0 !important;
11159
  }
16848 stevensc 11160
 
16825 efrain 11161
  .mb-md-1 {
11162
    margin-bottom: 0.25rem !important;
11163
  }
16848 stevensc 11164
 
16825 efrain 11165
  .mb-md-2 {
11166
    margin-bottom: 0.5rem !important;
11167
  }
16848 stevensc 11168
 
16825 efrain 11169
  .mb-md-3 {
11170
    margin-bottom: 1rem !important;
11171
  }
16848 stevensc 11172
 
16825 efrain 11173
  .mb-md-4 {
11174
    margin-bottom: 1.5rem !important;
11175
  }
16848 stevensc 11176
 
16825 efrain 11177
  .mb-md-5 {
11178
    margin-bottom: 3rem !important;
11179
  }
16848 stevensc 11180
 
16825 efrain 11181
  .mb-md-6 {
11182
    margin-bottom: 4.5rem !important;
11183
  }
16848 stevensc 11184
 
16825 efrain 11185
  .mb-md-7 {
11186
    margin-bottom: 6rem !important;
11187
  }
16848 stevensc 11188
 
16825 efrain 11189
  .mb-md-auto {
11190
    margin-bottom: auto !important;
11191
  }
16848 stevensc 11192
 
16825 efrain 11193
  .ms-md-0 {
11194
    margin-left: 0 !important;
11195
  }
16848 stevensc 11196
 
16825 efrain 11197
  .ms-md-1 {
11198
    margin-left: 0.25rem !important;
11199
  }
16848 stevensc 11200
 
16825 efrain 11201
  .ms-md-2 {
11202
    margin-left: 0.5rem !important;
11203
  }
16848 stevensc 11204
 
16825 efrain 11205
  .ms-md-3 {
11206
    margin-left: 1rem !important;
11207
  }
16848 stevensc 11208
 
16825 efrain 11209
  .ms-md-4 {
11210
    margin-left: 1.5rem !important;
11211
  }
16848 stevensc 11212
 
16825 efrain 11213
  .ms-md-5 {
11214
    margin-left: 3rem !important;
11215
  }
16848 stevensc 11216
 
16825 efrain 11217
  .ms-md-6 {
11218
    margin-left: 4.5rem !important;
11219
  }
16848 stevensc 11220
 
16825 efrain 11221
  .ms-md-7 {
11222
    margin-left: 6rem !important;
11223
  }
16848 stevensc 11224
 
16825 efrain 11225
  .ms-md-auto {
11226
    margin-left: auto !important;
11227
  }
16848 stevensc 11228
 
16825 efrain 11229
  .m-md-n1 {
11230
    margin: -0.25rem !important;
11231
  }
16848 stevensc 11232
 
16825 efrain 11233
  .m-md-n2 {
11234
    margin: -0.5rem !important;
11235
  }
16848 stevensc 11236
 
16825 efrain 11237
  .m-md-n3 {
11238
    margin: -1rem !important;
11239
  }
16848 stevensc 11240
 
16825 efrain 11241
  .m-md-n4 {
11242
    margin: -1.5rem !important;
11243
  }
16848 stevensc 11244
 
16825 efrain 11245
  .m-md-n5 {
11246
    margin: -3rem !important;
11247
  }
16848 stevensc 11248
 
16825 efrain 11249
  .m-md-n6 {
11250
    margin: -4.5rem !important;
11251
  }
16848 stevensc 11252
 
16825 efrain 11253
  .m-md-n7 {
11254
    margin: -6rem !important;
11255
  }
16848 stevensc 11256
 
16825 efrain 11257
  .mx-md-n1 {
11258
    margin-right: -0.25rem !important;
11259
    margin-left: -0.25rem !important;
11260
  }
16848 stevensc 11261
 
16825 efrain 11262
  .mx-md-n2 {
11263
    margin-right: -0.5rem !important;
11264
    margin-left: -0.5rem !important;
11265
  }
16848 stevensc 11266
 
16825 efrain 11267
  .mx-md-n3 {
11268
    margin-right: -1rem !important;
11269
    margin-left: -1rem !important;
11270
  }
16848 stevensc 11271
 
16825 efrain 11272
  .mx-md-n4 {
11273
    margin-right: -1.5rem !important;
11274
    margin-left: -1.5rem !important;
11275
  }
16848 stevensc 11276
 
16825 efrain 11277
  .mx-md-n5 {
11278
    margin-right: -3rem !important;
11279
    margin-left: -3rem !important;
11280
  }
16848 stevensc 11281
 
16825 efrain 11282
  .mx-md-n6 {
11283
    margin-right: -4.5rem !important;
11284
    margin-left: -4.5rem !important;
11285
  }
16848 stevensc 11286
 
16825 efrain 11287
  .mx-md-n7 {
11288
    margin-right: -6rem !important;
11289
    margin-left: -6rem !important;
11290
  }
16848 stevensc 11291
 
16825 efrain 11292
  .my-md-n1 {
11293
    margin-top: -0.25rem !important;
11294
    margin-bottom: -0.25rem !important;
11295
  }
16848 stevensc 11296
 
16825 efrain 11297
  .my-md-n2 {
11298
    margin-top: -0.5rem !important;
11299
    margin-bottom: -0.5rem !important;
11300
  }
16848 stevensc 11301
 
16825 efrain 11302
  .my-md-n3 {
11303
    margin-top: -1rem !important;
11304
    margin-bottom: -1rem !important;
11305
  }
16848 stevensc 11306
 
16825 efrain 11307
  .my-md-n4 {
11308
    margin-top: -1.5rem !important;
11309
    margin-bottom: -1.5rem !important;
11310
  }
16848 stevensc 11311
 
16825 efrain 11312
  .my-md-n5 {
11313
    margin-top: -3rem !important;
11314
    margin-bottom: -3rem !important;
11315
  }
16848 stevensc 11316
 
16825 efrain 11317
  .my-md-n6 {
11318
    margin-top: -4.5rem !important;
11319
    margin-bottom: -4.5rem !important;
11320
  }
16848 stevensc 11321
 
16825 efrain 11322
  .my-md-n7 {
11323
    margin-top: -6rem !important;
11324
    margin-bottom: -6rem !important;
11325
  }
16848 stevensc 11326
 
16825 efrain 11327
  .mt-md-n1 {
11328
    margin-top: -0.25rem !important;
11329
  }
16848 stevensc 11330
 
16825 efrain 11331
  .mt-md-n2 {
11332
    margin-top: -0.5rem !important;
11333
  }
16848 stevensc 11334
 
16825 efrain 11335
  .mt-md-n3 {
11336
    margin-top: -1rem !important;
11337
  }
16848 stevensc 11338
 
16825 efrain 11339
  .mt-md-n4 {
11340
    margin-top: -1.5rem !important;
11341
  }
16848 stevensc 11342
 
16825 efrain 11343
  .mt-md-n5 {
11344
    margin-top: -3rem !important;
11345
  }
16848 stevensc 11346
 
16825 efrain 11347
  .mt-md-n6 {
11348
    margin-top: -4.5rem !important;
11349
  }
16848 stevensc 11350
 
16825 efrain 11351
  .mt-md-n7 {
11352
    margin-top: -6rem !important;
11353
  }
16848 stevensc 11354
 
16825 efrain 11355
  .me-md-n1 {
11356
    margin-right: -0.25rem !important;
11357
  }
16848 stevensc 11358
 
16825 efrain 11359
  .me-md-n2 {
11360
    margin-right: -0.5rem !important;
11361
  }
16848 stevensc 11362
 
16825 efrain 11363
  .me-md-n3 {
11364
    margin-right: -1rem !important;
11365
  }
16848 stevensc 11366
 
16825 efrain 11367
  .me-md-n4 {
11368
    margin-right: -1.5rem !important;
11369
  }
16848 stevensc 11370
 
16825 efrain 11371
  .me-md-n5 {
11372
    margin-right: -3rem !important;
11373
  }
16848 stevensc 11374
 
16825 efrain 11375
  .me-md-n6 {
11376
    margin-right: -4.5rem !important;
11377
  }
16848 stevensc 11378
 
16825 efrain 11379
  .me-md-n7 {
11380
    margin-right: -6rem !important;
11381
  }
16848 stevensc 11382
 
16825 efrain 11383
  .mb-md-n1 {
11384
    margin-bottom: -0.25rem !important;
11385
  }
16848 stevensc 11386
 
16825 efrain 11387
  .mb-md-n2 {
11388
    margin-bottom: -0.5rem !important;
11389
  }
16848 stevensc 11390
 
16825 efrain 11391
  .mb-md-n3 {
11392
    margin-bottom: -1rem !important;
11393
  }
16848 stevensc 11394
 
16825 efrain 11395
  .mb-md-n4 {
11396
    margin-bottom: -1.5rem !important;
11397
  }
16848 stevensc 11398
 
16825 efrain 11399
  .mb-md-n5 {
11400
    margin-bottom: -3rem !important;
11401
  }
16848 stevensc 11402
 
16825 efrain 11403
  .mb-md-n6 {
11404
    margin-bottom: -4.5rem !important;
11405
  }
16848 stevensc 11406
 
16825 efrain 11407
  .mb-md-n7 {
11408
    margin-bottom: -6rem !important;
11409
  }
16848 stevensc 11410
 
16825 efrain 11411
  .ms-md-n1 {
11412
    margin-left: -0.25rem !important;
11413
  }
16848 stevensc 11414
 
16825 efrain 11415
  .ms-md-n2 {
11416
    margin-left: -0.5rem !important;
11417
  }
16848 stevensc 11418
 
16825 efrain 11419
  .ms-md-n3 {
11420
    margin-left: -1rem !important;
11421
  }
16848 stevensc 11422
 
16825 efrain 11423
  .ms-md-n4 {
11424
    margin-left: -1.5rem !important;
11425
  }
16848 stevensc 11426
 
16825 efrain 11427
  .ms-md-n5 {
11428
    margin-left: -3rem !important;
11429
  }
16848 stevensc 11430
 
16825 efrain 11431
  .ms-md-n6 {
11432
    margin-left: -4.5rem !important;
11433
  }
16848 stevensc 11434
 
16825 efrain 11435
  .ms-md-n7 {
11436
    margin-left: -6rem !important;
11437
  }
16848 stevensc 11438
 
16825 efrain 11439
  .p-md-0 {
11440
    padding: 0 !important;
11441
  }
16848 stevensc 11442
 
16825 efrain 11443
  .p-md-1 {
11444
    padding: 0.25rem !important;
11445
  }
16848 stevensc 11446
 
16825 efrain 11447
  .p-md-2 {
11448
    padding: 0.5rem !important;
11449
  }
16848 stevensc 11450
 
16825 efrain 11451
  .p-md-3 {
11452
    padding: 1rem !important;
11453
  }
16848 stevensc 11454
 
16825 efrain 11455
  .p-md-4 {
11456
    padding: 1.5rem !important;
11457
  }
16848 stevensc 11458
 
16825 efrain 11459
  .p-md-5 {
11460
    padding: 3rem !important;
11461
  }
16848 stevensc 11462
 
16825 efrain 11463
  .p-md-6 {
11464
    padding: 4.5rem !important;
11465
  }
16848 stevensc 11466
 
16825 efrain 11467
  .p-md-7 {
11468
    padding: 6rem !important;
11469
  }
16848 stevensc 11470
 
16825 efrain 11471
  .px-md-0 {
11472
    padding-right: 0 !important;
11473
    padding-left: 0 !important;
11474
  }
16848 stevensc 11475
 
16825 efrain 11476
  .px-md-1 {
11477
    padding-right: 0.25rem !important;
11478
    padding-left: 0.25rem !important;
11479
  }
16848 stevensc 11480
 
16825 efrain 11481
  .px-md-2 {
11482
    padding-right: 0.5rem !important;
11483
    padding-left: 0.5rem !important;
11484
  }
16848 stevensc 11485
 
16825 efrain 11486
  .px-md-3 {
11487
    padding-right: 1rem !important;
11488
    padding-left: 1rem !important;
11489
  }
16848 stevensc 11490
 
16825 efrain 11491
  .px-md-4 {
11492
    padding-right: 1.5rem !important;
11493
    padding-left: 1.5rem !important;
11494
  }
16848 stevensc 11495
 
16825 efrain 11496
  .px-md-5 {
11497
    padding-right: 3rem !important;
11498
    padding-left: 3rem !important;
11499
  }
16848 stevensc 11500
 
16825 efrain 11501
  .px-md-6 {
11502
    padding-right: 4.5rem !important;
11503
    padding-left: 4.5rem !important;
11504
  }
16848 stevensc 11505
 
16825 efrain 11506
  .px-md-7 {
11507
    padding-right: 6rem !important;
11508
    padding-left: 6rem !important;
11509
  }
16848 stevensc 11510
 
16825 efrain 11511
  .py-md-0 {
11512
    padding-top: 0 !important;
11513
    padding-bottom: 0 !important;
11514
  }
16848 stevensc 11515
 
16825 efrain 11516
  .py-md-1 {
11517
    padding-top: 0.25rem !important;
11518
    padding-bottom: 0.25rem !important;
11519
  }
16848 stevensc 11520
 
16825 efrain 11521
  .py-md-2 {
11522
    padding-top: 0.5rem !important;
11523
    padding-bottom: 0.5rem !important;
11524
  }
16848 stevensc 11525
 
16825 efrain 11526
  .py-md-3 {
11527
    padding-top: 1rem !important;
11528
    padding-bottom: 1rem !important;
11529
  }
16848 stevensc 11530
 
16825 efrain 11531
  .py-md-4 {
11532
    padding-top: 1.5rem !important;
11533
    padding-bottom: 1.5rem !important;
11534
  }
16848 stevensc 11535
 
16825 efrain 11536
  .py-md-5 {
11537
    padding-top: 3rem !important;
11538
    padding-bottom: 3rem !important;
11539
  }
16848 stevensc 11540
 
16825 efrain 11541
  .py-md-6 {
11542
    padding-top: 4.5rem !important;
11543
    padding-bottom: 4.5rem !important;
11544
  }
16848 stevensc 11545
 
16825 efrain 11546
  .py-md-7 {
11547
    padding-top: 6rem !important;
11548
    padding-bottom: 6rem !important;
11549
  }
16848 stevensc 11550
 
16825 efrain 11551
  .pt-md-0 {
11552
    padding-top: 0 !important;
11553
  }
16848 stevensc 11554
 
16825 efrain 11555
  .pt-md-1 {
11556
    padding-top: 0.25rem !important;
11557
  }
16848 stevensc 11558
 
16825 efrain 11559
  .pt-md-2 {
11560
    padding-top: 0.5rem !important;
11561
  }
16848 stevensc 11562
 
16825 efrain 11563
  .pt-md-3 {
11564
    padding-top: 1rem !important;
11565
  }
16848 stevensc 11566
 
16825 efrain 11567
  .pt-md-4 {
11568
    padding-top: 1.5rem !important;
11569
  }
16848 stevensc 11570
 
16825 efrain 11571
  .pt-md-5 {
11572
    padding-top: 3rem !important;
11573
  }
16848 stevensc 11574
 
16825 efrain 11575
  .pt-md-6 {
11576
    padding-top: 4.5rem !important;
11577
  }
16848 stevensc 11578
 
16825 efrain 11579
  .pt-md-7 {
11580
    padding-top: 6rem !important;
11581
  }
16848 stevensc 11582
 
16825 efrain 11583
  .pe-md-0 {
11584
    padding-right: 0 !important;
11585
  }
16848 stevensc 11586
 
16825 efrain 11587
  .pe-md-1 {
11588
    padding-right: 0.25rem !important;
11589
  }
16848 stevensc 11590
 
16825 efrain 11591
  .pe-md-2 {
11592
    padding-right: 0.5rem !important;
11593
  }
16848 stevensc 11594
 
16825 efrain 11595
  .pe-md-3 {
11596
    padding-right: 1rem !important;
11597
  }
16848 stevensc 11598
 
16825 efrain 11599
  .pe-md-4 {
11600
    padding-right: 1.5rem !important;
11601
  }
16848 stevensc 11602
 
16825 efrain 11603
  .pe-md-5 {
11604
    padding-right: 3rem !important;
11605
  }
16848 stevensc 11606
 
16825 efrain 11607
  .pe-md-6 {
11608
    padding-right: 4.5rem !important;
11609
  }
16848 stevensc 11610
 
16825 efrain 11611
  .pe-md-7 {
11612
    padding-right: 6rem !important;
11613
  }
16848 stevensc 11614
 
16825 efrain 11615
  .pb-md-0 {
11616
    padding-bottom: 0 !important;
11617
  }
16848 stevensc 11618
 
16825 efrain 11619
  .pb-md-1 {
11620
    padding-bottom: 0.25rem !important;
11621
  }
16848 stevensc 11622
 
16825 efrain 11623
  .pb-md-2 {
11624
    padding-bottom: 0.5rem !important;
11625
  }
16848 stevensc 11626
 
16825 efrain 11627
  .pb-md-3 {
11628
    padding-bottom: 1rem !important;
11629
  }
16848 stevensc 11630
 
16825 efrain 11631
  .pb-md-4 {
11632
    padding-bottom: 1.5rem !important;
11633
  }
16848 stevensc 11634
 
16825 efrain 11635
  .pb-md-5 {
11636
    padding-bottom: 3rem !important;
11637
  }
16848 stevensc 11638
 
16825 efrain 11639
  .pb-md-6 {
11640
    padding-bottom: 4.5rem !important;
11641
  }
16848 stevensc 11642
 
16825 efrain 11643
  .pb-md-7 {
11644
    padding-bottom: 6rem !important;
11645
  }
16848 stevensc 11646
 
16825 efrain 11647
  .ps-md-0 {
11648
    padding-left: 0 !important;
11649
  }
16848 stevensc 11650
 
16825 efrain 11651
  .ps-md-1 {
11652
    padding-left: 0.25rem !important;
11653
  }
16848 stevensc 11654
 
16825 efrain 11655
  .ps-md-2 {
11656
    padding-left: 0.5rem !important;
11657
  }
16848 stevensc 11658
 
16825 efrain 11659
  .ps-md-3 {
11660
    padding-left: 1rem !important;
11661
  }
16848 stevensc 11662
 
16825 efrain 11663
  .ps-md-4 {
11664
    padding-left: 1.5rem !important;
11665
  }
16848 stevensc 11666
 
16825 efrain 11667
  .ps-md-5 {
11668
    padding-left: 3rem !important;
11669
  }
16848 stevensc 11670
 
16825 efrain 11671
  .ps-md-6 {
11672
    padding-left: 4.5rem !important;
11673
  }
16848 stevensc 11674
 
16825 efrain 11675
  .ps-md-7 {
11676
    padding-left: 6rem !important;
11677
  }
16848 stevensc 11678
 
16825 efrain 11679
  .gap-md-0 {
11680
    gap: 0 !important;
11681
  }
16848 stevensc 11682
 
16825 efrain 11683
  .gap-md-1 {
11684
    gap: 0.25rem !important;
11685
  }
16848 stevensc 11686
 
16825 efrain 11687
  .gap-md-2 {
11688
    gap: 0.5rem !important;
11689
  }
16848 stevensc 11690
 
16825 efrain 11691
  .gap-md-3 {
11692
    gap: 1rem !important;
11693
  }
16848 stevensc 11694
 
16825 efrain 11695
  .gap-md-4 {
11696
    gap: 1.5rem !important;
11697
  }
16848 stevensc 11698
 
16825 efrain 11699
  .gap-md-5 {
11700
    gap: 3rem !important;
11701
  }
16848 stevensc 11702
 
16825 efrain 11703
  .gap-md-6 {
11704
    gap: 4.5rem !important;
11705
  }
16848 stevensc 11706
 
16825 efrain 11707
  .gap-md-7 {
11708
    gap: 6rem !important;
11709
  }
16848 stevensc 11710
 
16825 efrain 11711
  .text-md-start {
11712
    text-align: left !important;
11713
  }
16848 stevensc 11714
 
16825 efrain 11715
  .text-md-end {
11716
    text-align: right !important;
11717
  }
16848 stevensc 11718
 
16825 efrain 11719
  .text-md-center {
11720
    text-align: center !important;
11721
  }
11722
}
16848 stevensc 11723
 
16825 efrain 11724
@media (min-width: 992px) {
11725
  .float-lg-start {
11726
    float: left !important;
11727
  }
16848 stevensc 11728
 
16825 efrain 11729
  .float-lg-end {
11730
    float: right !important;
11731
  }
16848 stevensc 11732
 
16825 efrain 11733
  .float-lg-none {
11734
    float: none !important;
11735
  }
16848 stevensc 11736
 
16825 efrain 11737
  .d-lg-inline {
11738
    display: inline !important;
11739
  }
16848 stevensc 11740
 
16825 efrain 11741
  .d-lg-inline-block {
11742
    display: inline-block !important;
11743
  }
16848 stevensc 11744
 
16825 efrain 11745
  .d-lg-block {
11746
    display: block !important;
11747
  }
16848 stevensc 11748
 
16825 efrain 11749
  .d-lg-grid {
11750
    display: grid !important;
11751
  }
16848 stevensc 11752
 
16825 efrain 11753
  .d-lg-table {
11754
    display: table !important;
11755
  }
16848 stevensc 11756
 
16825 efrain 11757
  .d-lg-table-row {
11758
    display: table-row !important;
11759
  }
16848 stevensc 11760
 
16825 efrain 11761
  .d-lg-table-cell {
11762
    display: table-cell !important;
11763
  }
16848 stevensc 11764
 
16825 efrain 11765
  .d-lg-flex {
11766
    display: flex !important;
11767
  }
16848 stevensc 11768
 
16825 efrain 11769
  .d-lg-inline-flex {
11770
    display: inline-flex !important;
11771
  }
16848 stevensc 11772
 
16825 efrain 11773
  .d-lg-none {
11774
    display: none !important;
11775
  }
16848 stevensc 11776
 
16825 efrain 11777
  .border-lg {
11778
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11779
  }
16848 stevensc 11780
 
16825 efrain 11781
  .border-lg-0 {
11782
    border: 0 !important;
11783
  }
16848 stevensc 11784
 
16825 efrain 11785
  .border-top-lg {
11786
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11787
  }
16848 stevensc 11788
 
16825 efrain 11789
  .border-top-lg-0 {
11790
    border-top: 0 !important;
11791
  }
16848 stevensc 11792
 
16825 efrain 11793
  .border-end-lg {
11794
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11795
  }
16848 stevensc 11796
 
16825 efrain 11797
  .border-end-lg-0 {
11798
    border-right: 0 !important;
11799
  }
16848 stevensc 11800
 
16825 efrain 11801
  .border-bottom-lg {
11802
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11803
  }
16848 stevensc 11804
 
16825 efrain 11805
  .border-bottom-lg-0 {
11806
    border-bottom: 0 !important;
11807
  }
16848 stevensc 11808
 
16825 efrain 11809
  .border-start-lg {
11810
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11811
  }
16848 stevensc 11812
 
16825 efrain 11813
  .border-start-lg-0 {
11814
    border-left: 0 !important;
11815
  }
16848 stevensc 11816
 
16825 efrain 11817
  .flex-lg-fill {
11818
    flex: 1 1 auto !important;
11819
  }
16848 stevensc 11820
 
16825 efrain 11821
  .flex-lg-row {
11822
    flex-direction: row !important;
11823
  }
16848 stevensc 11824
 
16825 efrain 11825
  .flex-lg-column {
11826
    flex-direction: column !important;
11827
  }
16848 stevensc 11828
 
16825 efrain 11829
  .flex-lg-row-reverse {
11830
    flex-direction: row-reverse !important;
11831
  }
16848 stevensc 11832
 
16825 efrain 11833
  .flex-lg-column-reverse {
11834
    flex-direction: column-reverse !important;
11835
  }
16848 stevensc 11836
 
16825 efrain 11837
  .flex-lg-grow-0 {
11838
    flex-grow: 0 !important;
11839
  }
16848 stevensc 11840
 
16825 efrain 11841
  .flex-lg-grow-1 {
11842
    flex-grow: 1 !important;
11843
  }
16848 stevensc 11844
 
16825 efrain 11845
  .flex-lg-shrink-0 {
11846
    flex-shrink: 0 !important;
11847
  }
16848 stevensc 11848
 
16825 efrain 11849
  .flex-lg-shrink-1 {
11850
    flex-shrink: 1 !important;
11851
  }
16848 stevensc 11852
 
16825 efrain 11853
  .flex-lg-wrap {
11854
    flex-wrap: wrap !important;
11855
  }
16848 stevensc 11856
 
16825 efrain 11857
  .flex-lg-nowrap {
11858
    flex-wrap: nowrap !important;
11859
  }
16848 stevensc 11860
 
16825 efrain 11861
  .flex-lg-wrap-reverse {
11862
    flex-wrap: wrap-reverse !important;
11863
  }
16848 stevensc 11864
 
16825 efrain 11865
  .justify-content-lg-start {
11866
    justify-content: flex-start !important;
11867
  }
16848 stevensc 11868
 
16825 efrain 11869
  .justify-content-lg-end {
11870
    justify-content: flex-end !important;
11871
  }
16848 stevensc 11872
 
16825 efrain 11873
  .justify-content-lg-center {
11874
    justify-content: center !important;
11875
  }
16848 stevensc 11876
 
16825 efrain 11877
  .justify-content-lg-between {
11878
    justify-content: space-between !important;
11879
  }
16848 stevensc 11880
 
16825 efrain 11881
  .justify-content-lg-around {
11882
    justify-content: space-around !important;
11883
  }
16848 stevensc 11884
 
16825 efrain 11885
  .justify-content-lg-evenly {
11886
    justify-content: space-evenly !important;
11887
  }
16848 stevensc 11888
 
16825 efrain 11889
  .align-items-lg-start {
11890
    align-items: flex-start !important;
11891
  }
16848 stevensc 11892
 
16825 efrain 11893
  .align-items-lg-end {
11894
    align-items: flex-end !important;
11895
  }
16848 stevensc 11896
 
16825 efrain 11897
  .align-items-lg-center {
11898
    align-items: center !important;
11899
  }
16848 stevensc 11900
 
16825 efrain 11901
  .align-items-lg-baseline {
11902
    align-items: baseline !important;
11903
  }
16848 stevensc 11904
 
16825 efrain 11905
  .align-items-lg-stretch {
11906
    align-items: stretch !important;
11907
  }
16848 stevensc 11908
 
16825 efrain 11909
  .align-content-lg-start {
11910
    align-content: flex-start !important;
11911
  }
16848 stevensc 11912
 
16825 efrain 11913
  .align-content-lg-end {
11914
    align-content: flex-end !important;
11915
  }
16848 stevensc 11916
 
16825 efrain 11917
  .align-content-lg-center {
11918
    align-content: center !important;
11919
  }
16848 stevensc 11920
 
16825 efrain 11921
  .align-content-lg-between {
11922
    align-content: space-between !important;
11923
  }
16848 stevensc 11924
 
16825 efrain 11925
  .align-content-lg-around {
11926
    align-content: space-around !important;
11927
  }
16848 stevensc 11928
 
16825 efrain 11929
  .align-content-lg-stretch {
11930
    align-content: stretch !important;
11931
  }
16848 stevensc 11932
 
16825 efrain 11933
  .align-self-lg-auto {
11934
    align-self: auto !important;
11935
  }
16848 stevensc 11936
 
16825 efrain 11937
  .align-self-lg-start {
11938
    align-self: flex-start !important;
11939
  }
16848 stevensc 11940
 
16825 efrain 11941
  .align-self-lg-end {
11942
    align-self: flex-end !important;
11943
  }
16848 stevensc 11944
 
16825 efrain 11945
  .align-self-lg-center {
11946
    align-self: center !important;
11947
  }
16848 stevensc 11948
 
16825 efrain 11949
  .align-self-lg-baseline {
11950
    align-self: baseline !important;
11951
  }
16848 stevensc 11952
 
16825 efrain 11953
  .align-self-lg-stretch {
11954
    align-self: stretch !important;
11955
  }
16848 stevensc 11956
 
16825 efrain 11957
  .order-lg-first {
11958
    order: -1 !important;
11959
  }
16848 stevensc 11960
 
16825 efrain 11961
  .order-lg-0 {
11962
    order: 0 !important;
11963
  }
16848 stevensc 11964
 
16825 efrain 11965
  .order-lg-1 {
11966
    order: 1 !important;
11967
  }
16848 stevensc 11968
 
16825 efrain 11969
  .order-lg-2 {
11970
    order: 2 !important;
11971
  }
16848 stevensc 11972
 
16825 efrain 11973
  .order-lg-3 {
11974
    order: 3 !important;
11975
  }
16848 stevensc 11976
 
16825 efrain 11977
  .order-lg-4 {
11978
    order: 4 !important;
11979
  }
16848 stevensc 11980
 
16825 efrain 11981
  .order-lg-5 {
11982
    order: 5 !important;
11983
  }
16848 stevensc 11984
 
16825 efrain 11985
  .order-lg-last {
11986
    order: 6 !important;
11987
  }
16848 stevensc 11988
 
16825 efrain 11989
  .m-lg-0 {
11990
    margin: 0 !important;
11991
  }
16848 stevensc 11992
 
16825 efrain 11993
  .m-lg-1 {
11994
    margin: 0.25rem !important;
11995
  }
16848 stevensc 11996
 
16825 efrain 11997
  .m-lg-2 {
11998
    margin: 0.5rem !important;
11999
  }
16848 stevensc 12000
 
16825 efrain 12001
  .m-lg-3 {
12002
    margin: 1rem !important;
12003
  }
16848 stevensc 12004
 
16825 efrain 12005
  .m-lg-4 {
12006
    margin: 1.5rem !important;
12007
  }
16848 stevensc 12008
 
16825 efrain 12009
  .m-lg-5 {
12010
    margin: 3rem !important;
12011
  }
16848 stevensc 12012
 
16825 efrain 12013
  .m-lg-6 {
12014
    margin: 4.5rem !important;
12015
  }
16848 stevensc 12016
 
16825 efrain 12017
  .m-lg-7 {
12018
    margin: 6rem !important;
12019
  }
16848 stevensc 12020
 
16825 efrain 12021
  .m-lg-auto {
12022
    margin: auto !important;
12023
  }
16848 stevensc 12024
 
16825 efrain 12025
  .mx-lg-0 {
12026
    margin-right: 0 !important;
12027
    margin-left: 0 !important;
12028
  }
16848 stevensc 12029
 
16825 efrain 12030
  .mx-lg-1 {
12031
    margin-right: 0.25rem !important;
12032
    margin-left: 0.25rem !important;
12033
  }
16848 stevensc 12034
 
16825 efrain 12035
  .mx-lg-2 {
12036
    margin-right: 0.5rem !important;
12037
    margin-left: 0.5rem !important;
12038
  }
16848 stevensc 12039
 
16825 efrain 12040
  .mx-lg-3 {
12041
    margin-right: 1rem !important;
12042
    margin-left: 1rem !important;
12043
  }
16848 stevensc 12044
 
16825 efrain 12045
  .mx-lg-4 {
12046
    margin-right: 1.5rem !important;
12047
    margin-left: 1.5rem !important;
12048
  }
16848 stevensc 12049
 
16825 efrain 12050
  .mx-lg-5 {
12051
    margin-right: 3rem !important;
12052
    margin-left: 3rem !important;
12053
  }
16848 stevensc 12054
 
16825 efrain 12055
  .mx-lg-6 {
12056
    margin-right: 4.5rem !important;
12057
    margin-left: 4.5rem !important;
12058
  }
16848 stevensc 12059
 
16825 efrain 12060
  .mx-lg-7 {
12061
    margin-right: 6rem !important;
12062
    margin-left: 6rem !important;
12063
  }
16848 stevensc 12064
 
16825 efrain 12065
  .mx-lg-auto {
12066
    margin-right: auto !important;
12067
    margin-left: auto !important;
12068
  }
16848 stevensc 12069
 
16825 efrain 12070
  .my-lg-0 {
12071
    margin-top: 0 !important;
12072
    margin-bottom: 0 !important;
12073
  }
16848 stevensc 12074
 
16825 efrain 12075
  .my-lg-1 {
12076
    margin-top: 0.25rem !important;
12077
    margin-bottom: 0.25rem !important;
12078
  }
16848 stevensc 12079
 
16825 efrain 12080
  .my-lg-2 {
12081
    margin-top: 0.5rem !important;
12082
    margin-bottom: 0.5rem !important;
12083
  }
16848 stevensc 12084
 
16825 efrain 12085
  .my-lg-3 {
12086
    margin-top: 1rem !important;
12087
    margin-bottom: 1rem !important;
12088
  }
16848 stevensc 12089
 
16825 efrain 12090
  .my-lg-4 {
12091
    margin-top: 1.5rem !important;
12092
    margin-bottom: 1.5rem !important;
12093
  }
16848 stevensc 12094
 
16825 efrain 12095
  .my-lg-5 {
12096
    margin-top: 3rem !important;
12097
    margin-bottom: 3rem !important;
12098
  }
16848 stevensc 12099
 
16825 efrain 12100
  .my-lg-6 {
12101
    margin-top: 4.5rem !important;
12102
    margin-bottom: 4.5rem !important;
12103
  }
16848 stevensc 12104
 
16825 efrain 12105
  .my-lg-7 {
12106
    margin-top: 6rem !important;
12107
    margin-bottom: 6rem !important;
12108
  }
16848 stevensc 12109
 
16825 efrain 12110
  .my-lg-auto {
12111
    margin-top: auto !important;
12112
    margin-bottom: auto !important;
12113
  }
16848 stevensc 12114
 
16825 efrain 12115
  .mt-lg-0 {
12116
    margin-top: 0 !important;
12117
  }
16848 stevensc 12118
 
16825 efrain 12119
  .mt-lg-1 {
12120
    margin-top: 0.25rem !important;
12121
  }
16848 stevensc 12122
 
16825 efrain 12123
  .mt-lg-2 {
12124
    margin-top: 0.5rem !important;
12125
  }
16848 stevensc 12126
 
16825 efrain 12127
  .mt-lg-3 {
12128
    margin-top: 1rem !important;
12129
  }
16848 stevensc 12130
 
16825 efrain 12131
  .mt-lg-4 {
12132
    margin-top: 1.5rem !important;
12133
  }
16848 stevensc 12134
 
16825 efrain 12135
  .mt-lg-5 {
12136
    margin-top: 3rem !important;
12137
  }
16848 stevensc 12138
 
16825 efrain 12139
  .mt-lg-6 {
12140
    margin-top: 4.5rem !important;
12141
  }
16848 stevensc 12142
 
16825 efrain 12143
  .mt-lg-7 {
12144
    margin-top: 6rem !important;
12145
  }
16848 stevensc 12146
 
16825 efrain 12147
  .mt-lg-auto {
12148
    margin-top: auto !important;
12149
  }
16848 stevensc 12150
 
16825 efrain 12151
  .me-lg-0 {
12152
    margin-right: 0 !important;
12153
  }
16848 stevensc 12154
 
16825 efrain 12155
  .me-lg-1 {
12156
    margin-right: 0.25rem !important;
12157
  }
16848 stevensc 12158
 
16825 efrain 12159
  .me-lg-2 {
12160
    margin-right: 0.5rem !important;
12161
  }
16848 stevensc 12162
 
16825 efrain 12163
  .me-lg-3 {
12164
    margin-right: 1rem !important;
12165
  }
16848 stevensc 12166
 
16825 efrain 12167
  .me-lg-4 {
12168
    margin-right: 1.5rem !important;
12169
  }
16848 stevensc 12170
 
16825 efrain 12171
  .me-lg-5 {
12172
    margin-right: 3rem !important;
12173
  }
16848 stevensc 12174
 
16825 efrain 12175
  .me-lg-6 {
12176
    margin-right: 4.5rem !important;
12177
  }
16848 stevensc 12178
 
16825 efrain 12179
  .me-lg-7 {
12180
    margin-right: 6rem !important;
12181
  }
16848 stevensc 12182
 
16825 efrain 12183
  .me-lg-auto {
12184
    margin-right: auto !important;
12185
  }
16848 stevensc 12186
 
16825 efrain 12187
  .mb-lg-0 {
12188
    margin-bottom: 0 !important;
12189
  }
16848 stevensc 12190
 
16825 efrain 12191
  .mb-lg-1 {
12192
    margin-bottom: 0.25rem !important;
12193
  }
16848 stevensc 12194
 
16825 efrain 12195
  .mb-lg-2 {
12196
    margin-bottom: 0.5rem !important;
12197
  }
16848 stevensc 12198
 
16825 efrain 12199
  .mb-lg-3 {
12200
    margin-bottom: 1rem !important;
12201
  }
16848 stevensc 12202
 
16825 efrain 12203
  .mb-lg-4 {
12204
    margin-bottom: 1.5rem !important;
12205
  }
16848 stevensc 12206
 
16825 efrain 12207
  .mb-lg-5 {
12208
    margin-bottom: 3rem !important;
12209
  }
16848 stevensc 12210
 
16825 efrain 12211
  .mb-lg-6 {
12212
    margin-bottom: 4.5rem !important;
12213
  }
16848 stevensc 12214
 
16825 efrain 12215
  .mb-lg-7 {
12216
    margin-bottom: 6rem !important;
12217
  }
16848 stevensc 12218
 
16825 efrain 12219
  .mb-lg-auto {
12220
    margin-bottom: auto !important;
12221
  }
16848 stevensc 12222
 
16825 efrain 12223
  .ms-lg-0 {
12224
    margin-left: 0 !important;
12225
  }
16848 stevensc 12226
 
16825 efrain 12227
  .ms-lg-1 {
12228
    margin-left: 0.25rem !important;
12229
  }
16848 stevensc 12230
 
16825 efrain 12231
  .ms-lg-2 {
12232
    margin-left: 0.5rem !important;
12233
  }
16848 stevensc 12234
 
16825 efrain 12235
  .ms-lg-3 {
12236
    margin-left: 1rem !important;
12237
  }
16848 stevensc 12238
 
16825 efrain 12239
  .ms-lg-4 {
12240
    margin-left: 1.5rem !important;
12241
  }
16848 stevensc 12242
 
16825 efrain 12243
  .ms-lg-5 {
12244
    margin-left: 3rem !important;
12245
  }
16848 stevensc 12246
 
16825 efrain 12247
  .ms-lg-6 {
12248
    margin-left: 4.5rem !important;
12249
  }
16848 stevensc 12250
 
16825 efrain 12251
  .ms-lg-7 {
12252
    margin-left: 6rem !important;
12253
  }
16848 stevensc 12254
 
16825 efrain 12255
  .ms-lg-auto {
12256
    margin-left: auto !important;
12257
  }
16848 stevensc 12258
 
16825 efrain 12259
  .m-lg-n1 {
12260
    margin: -0.25rem !important;
12261
  }
16848 stevensc 12262
 
16825 efrain 12263
  .m-lg-n2 {
12264
    margin: -0.5rem !important;
12265
  }
16848 stevensc 12266
 
16825 efrain 12267
  .m-lg-n3 {
12268
    margin: -1rem !important;
12269
  }
16848 stevensc 12270
 
16825 efrain 12271
  .m-lg-n4 {
12272
    margin: -1.5rem !important;
12273
  }
16848 stevensc 12274
 
16825 efrain 12275
  .m-lg-n5 {
12276
    margin: -3rem !important;
12277
  }
16848 stevensc 12278
 
16825 efrain 12279
  .m-lg-n6 {
12280
    margin: -4.5rem !important;
12281
  }
16848 stevensc 12282
 
16825 efrain 12283
  .m-lg-n7 {
12284
    margin: -6rem !important;
12285
  }
16848 stevensc 12286
 
16825 efrain 12287
  .mx-lg-n1 {
12288
    margin-right: -0.25rem !important;
12289
    margin-left: -0.25rem !important;
12290
  }
16848 stevensc 12291
 
16825 efrain 12292
  .mx-lg-n2 {
12293
    margin-right: -0.5rem !important;
12294
    margin-left: -0.5rem !important;
12295
  }
16848 stevensc 12296
 
16825 efrain 12297
  .mx-lg-n3 {
12298
    margin-right: -1rem !important;
12299
    margin-left: -1rem !important;
12300
  }
16848 stevensc 12301
 
16825 efrain 12302
  .mx-lg-n4 {
12303
    margin-right: -1.5rem !important;
12304
    margin-left: -1.5rem !important;
12305
  }
16848 stevensc 12306
 
16825 efrain 12307
  .mx-lg-n5 {
12308
    margin-right: -3rem !important;
12309
    margin-left: -3rem !important;
12310
  }
16848 stevensc 12311
 
16825 efrain 12312
  .mx-lg-n6 {
12313
    margin-right: -4.5rem !important;
12314
    margin-left: -4.5rem !important;
12315
  }
16848 stevensc 12316
 
16825 efrain 12317
  .mx-lg-n7 {
12318
    margin-right: -6rem !important;
12319
    margin-left: -6rem !important;
12320
  }
16848 stevensc 12321
 
16825 efrain 12322
  .my-lg-n1 {
12323
    margin-top: -0.25rem !important;
12324
    margin-bottom: -0.25rem !important;
12325
  }
16848 stevensc 12326
 
16825 efrain 12327
  .my-lg-n2 {
12328
    margin-top: -0.5rem !important;
12329
    margin-bottom: -0.5rem !important;
12330
  }
16848 stevensc 12331
 
16825 efrain 12332
  .my-lg-n3 {
12333
    margin-top: -1rem !important;
12334
    margin-bottom: -1rem !important;
12335
  }
16848 stevensc 12336
 
16825 efrain 12337
  .my-lg-n4 {
12338
    margin-top: -1.5rem !important;
12339
    margin-bottom: -1.5rem !important;
12340
  }
16848 stevensc 12341
 
16825 efrain 12342
  .my-lg-n5 {
12343
    margin-top: -3rem !important;
12344
    margin-bottom: -3rem !important;
12345
  }
16848 stevensc 12346
 
16825 efrain 12347
  .my-lg-n6 {
12348
    margin-top: -4.5rem !important;
12349
    margin-bottom: -4.5rem !important;
12350
  }
16848 stevensc 12351
 
16825 efrain 12352
  .my-lg-n7 {
12353
    margin-top: -6rem !important;
12354
    margin-bottom: -6rem !important;
12355
  }
16848 stevensc 12356
 
16825 efrain 12357
  .mt-lg-n1 {
12358
    margin-top: -0.25rem !important;
12359
  }
16848 stevensc 12360
 
16825 efrain 12361
  .mt-lg-n2 {
12362
    margin-top: -0.5rem !important;
12363
  }
16848 stevensc 12364
 
16825 efrain 12365
  .mt-lg-n3 {
12366
    margin-top: -1rem !important;
12367
  }
16848 stevensc 12368
 
16825 efrain 12369
  .mt-lg-n4 {
12370
    margin-top: -1.5rem !important;
12371
  }
16848 stevensc 12372
 
16825 efrain 12373
  .mt-lg-n5 {
12374
    margin-top: -3rem !important;
12375
  }
16848 stevensc 12376
 
16825 efrain 12377
  .mt-lg-n6 {
12378
    margin-top: -4.5rem !important;
12379
  }
16848 stevensc 12380
 
16825 efrain 12381
  .mt-lg-n7 {
12382
    margin-top: -6rem !important;
12383
  }
16848 stevensc 12384
 
16825 efrain 12385
  .me-lg-n1 {
12386
    margin-right: -0.25rem !important;
12387
  }
16848 stevensc 12388
 
16825 efrain 12389
  .me-lg-n2 {
12390
    margin-right: -0.5rem !important;
12391
  }
16848 stevensc 12392
 
16825 efrain 12393
  .me-lg-n3 {
12394
    margin-right: -1rem !important;
12395
  }
16848 stevensc 12396
 
16825 efrain 12397
  .me-lg-n4 {
12398
    margin-right: -1.5rem !important;
12399
  }
16848 stevensc 12400
 
16825 efrain 12401
  .me-lg-n5 {
12402
    margin-right: -3rem !important;
12403
  }
16848 stevensc 12404
 
16825 efrain 12405
  .me-lg-n6 {
12406
    margin-right: -4.5rem !important;
12407
  }
16848 stevensc 12408
 
16825 efrain 12409
  .me-lg-n7 {
12410
    margin-right: -6rem !important;
12411
  }
16848 stevensc 12412
 
16825 efrain 12413
  .mb-lg-n1 {
12414
    margin-bottom: -0.25rem !important;
12415
  }
16848 stevensc 12416
 
16825 efrain 12417
  .mb-lg-n2 {
12418
    margin-bottom: -0.5rem !important;
12419
  }
16848 stevensc 12420
 
16825 efrain 12421
  .mb-lg-n3 {
12422
    margin-bottom: -1rem !important;
12423
  }
16848 stevensc 12424
 
16825 efrain 12425
  .mb-lg-n4 {
12426
    margin-bottom: -1.5rem !important;
12427
  }
16848 stevensc 12428
 
16825 efrain 12429
  .mb-lg-n5 {
12430
    margin-bottom: -3rem !important;
12431
  }
16848 stevensc 12432
 
16825 efrain 12433
  .mb-lg-n6 {
12434
    margin-bottom: -4.5rem !important;
12435
  }
16848 stevensc 12436
 
16825 efrain 12437
  .mb-lg-n7 {
12438
    margin-bottom: -6rem !important;
12439
  }
16848 stevensc 12440
 
16825 efrain 12441
  .ms-lg-n1 {
12442
    margin-left: -0.25rem !important;
12443
  }
16848 stevensc 12444
 
16825 efrain 12445
  .ms-lg-n2 {
12446
    margin-left: -0.5rem !important;
12447
  }
16848 stevensc 12448
 
16825 efrain 12449
  .ms-lg-n3 {
12450
    margin-left: -1rem !important;
12451
  }
16848 stevensc 12452
 
16825 efrain 12453
  .ms-lg-n4 {
12454
    margin-left: -1.5rem !important;
12455
  }
16848 stevensc 12456
 
16825 efrain 12457
  .ms-lg-n5 {
12458
    margin-left: -3rem !important;
12459
  }
16848 stevensc 12460
 
16825 efrain 12461
  .ms-lg-n6 {
12462
    margin-left: -4.5rem !important;
12463
  }
16848 stevensc 12464
 
16825 efrain 12465
  .ms-lg-n7 {
12466
    margin-left: -6rem !important;
12467
  }
16848 stevensc 12468
 
16825 efrain 12469
  .p-lg-0 {
12470
    padding: 0 !important;
12471
  }
16848 stevensc 12472
 
16825 efrain 12473
  .p-lg-1 {
12474
    padding: 0.25rem !important;
12475
  }
16848 stevensc 12476
 
16825 efrain 12477
  .p-lg-2 {
12478
    padding: 0.5rem !important;
12479
  }
16848 stevensc 12480
 
16825 efrain 12481
  .p-lg-3 {
12482
    padding: 1rem !important;
12483
  }
16848 stevensc 12484
 
16825 efrain 12485
  .p-lg-4 {
12486
    padding: 1.5rem !important;
12487
  }
16848 stevensc 12488
 
16825 efrain 12489
  .p-lg-5 {
12490
    padding: 3rem !important;
12491
  }
16848 stevensc 12492
 
16825 efrain 12493
  .p-lg-6 {
12494
    padding: 4.5rem !important;
12495
  }
16848 stevensc 12496
 
16825 efrain 12497
  .p-lg-7 {
12498
    padding: 6rem !important;
12499
  }
16848 stevensc 12500
 
16825 efrain 12501
  .px-lg-0 {
12502
    padding-right: 0 !important;
12503
    padding-left: 0 !important;
12504
  }
16848 stevensc 12505
 
16825 efrain 12506
  .px-lg-1 {
12507
    padding-right: 0.25rem !important;
12508
    padding-left: 0.25rem !important;
12509
  }
16848 stevensc 12510
 
16825 efrain 12511
  .px-lg-2 {
12512
    padding-right: 0.5rem !important;
12513
    padding-left: 0.5rem !important;
12514
  }
16848 stevensc 12515
 
16825 efrain 12516
  .px-lg-3 {
12517
    padding-right: 1rem !important;
12518
    padding-left: 1rem !important;
12519
  }
16848 stevensc 12520
 
16825 efrain 12521
  .px-lg-4 {
12522
    padding-right: 1.5rem !important;
12523
    padding-left: 1.5rem !important;
12524
  }
16848 stevensc 12525
 
16825 efrain 12526
  .px-lg-5 {
12527
    padding-right: 3rem !important;
12528
    padding-left: 3rem !important;
12529
  }
16848 stevensc 12530
 
16825 efrain 12531
  .px-lg-6 {
12532
    padding-right: 4.5rem !important;
12533
    padding-left: 4.5rem !important;
12534
  }
16848 stevensc 12535
 
16825 efrain 12536
  .px-lg-7 {
12537
    padding-right: 6rem !important;
12538
    padding-left: 6rem !important;
12539
  }
16848 stevensc 12540
 
16825 efrain 12541
  .py-lg-0 {
12542
    padding-top: 0 !important;
12543
    padding-bottom: 0 !important;
12544
  }
16848 stevensc 12545
 
16825 efrain 12546
  .py-lg-1 {
12547
    padding-top: 0.25rem !important;
12548
    padding-bottom: 0.25rem !important;
12549
  }
16848 stevensc 12550
 
16825 efrain 12551
  .py-lg-2 {
12552
    padding-top: 0.5rem !important;
12553
    padding-bottom: 0.5rem !important;
12554
  }
16848 stevensc 12555
 
16825 efrain 12556
  .py-lg-3 {
12557
    padding-top: 1rem !important;
12558
    padding-bottom: 1rem !important;
12559
  }
16848 stevensc 12560
 
16825 efrain 12561
  .py-lg-4 {
12562
    padding-top: 1.5rem !important;
12563
    padding-bottom: 1.5rem !important;
12564
  }
16848 stevensc 12565
 
16825 efrain 12566
  .py-lg-5 {
12567
    padding-top: 3rem !important;
12568
    padding-bottom: 3rem !important;
12569
  }
16848 stevensc 12570
 
16825 efrain 12571
  .py-lg-6 {
12572
    padding-top: 4.5rem !important;
12573
    padding-bottom: 4.5rem !important;
12574
  }
16848 stevensc 12575
 
16825 efrain 12576
  .py-lg-7 {
12577
    padding-top: 6rem !important;
12578
    padding-bottom: 6rem !important;
12579
  }
16848 stevensc 12580
 
16825 efrain 12581
  .pt-lg-0 {
12582
    padding-top: 0 !important;
12583
  }
16848 stevensc 12584
 
16825 efrain 12585
  .pt-lg-1 {
12586
    padding-top: 0.25rem !important;
12587
  }
16848 stevensc 12588
 
16825 efrain 12589
  .pt-lg-2 {
12590
    padding-top: 0.5rem !important;
12591
  }
16848 stevensc 12592
 
16825 efrain 12593
  .pt-lg-3 {
12594
    padding-top: 1rem !important;
12595
  }
16848 stevensc 12596
 
16825 efrain 12597
  .pt-lg-4 {
12598
    padding-top: 1.5rem !important;
12599
  }
16848 stevensc 12600
 
16825 efrain 12601
  .pt-lg-5 {
12602
    padding-top: 3rem !important;
12603
  }
16848 stevensc 12604
 
16825 efrain 12605
  .pt-lg-6 {
12606
    padding-top: 4.5rem !important;
12607
  }
16848 stevensc 12608
 
16825 efrain 12609
  .pt-lg-7 {
12610
    padding-top: 6rem !important;
12611
  }
16848 stevensc 12612
 
16825 efrain 12613
  .pe-lg-0 {
12614
    padding-right: 0 !important;
12615
  }
16848 stevensc 12616
 
16825 efrain 12617
  .pe-lg-1 {
12618
    padding-right: 0.25rem !important;
12619
  }
16848 stevensc 12620
 
16825 efrain 12621
  .pe-lg-2 {
12622
    padding-right: 0.5rem !important;
12623
  }
16848 stevensc 12624
 
16825 efrain 12625
  .pe-lg-3 {
12626
    padding-right: 1rem !important;
12627
  }
16848 stevensc 12628
 
16825 efrain 12629
  .pe-lg-4 {
12630
    padding-right: 1.5rem !important;
12631
  }
16848 stevensc 12632
 
16825 efrain 12633
  .pe-lg-5 {
12634
    padding-right: 3rem !important;
12635
  }
16848 stevensc 12636
 
16825 efrain 12637
  .pe-lg-6 {
12638
    padding-right: 4.5rem !important;
12639
  }
16848 stevensc 12640
 
16825 efrain 12641
  .pe-lg-7 {
12642
    padding-right: 6rem !important;
12643
  }
16848 stevensc 12644
 
16825 efrain 12645
  .pb-lg-0 {
12646
    padding-bottom: 0 !important;
12647
  }
16848 stevensc 12648
 
16825 efrain 12649
  .pb-lg-1 {
12650
    padding-bottom: 0.25rem !important;
12651
  }
16848 stevensc 12652
 
16825 efrain 12653
  .pb-lg-2 {
12654
    padding-bottom: 0.5rem !important;
12655
  }
16848 stevensc 12656
 
16825 efrain 12657
  .pb-lg-3 {
12658
    padding-bottom: 1rem !important;
12659
  }
16848 stevensc 12660
 
16825 efrain 12661
  .pb-lg-4 {
12662
    padding-bottom: 1.5rem !important;
12663
  }
16848 stevensc 12664
 
16825 efrain 12665
  .pb-lg-5 {
12666
    padding-bottom: 3rem !important;
12667
  }
16848 stevensc 12668
 
16825 efrain 12669
  .pb-lg-6 {
12670
    padding-bottom: 4.5rem !important;
12671
  }
16848 stevensc 12672
 
16825 efrain 12673
  .pb-lg-7 {
12674
    padding-bottom: 6rem !important;
12675
  }
16848 stevensc 12676
 
16825 efrain 12677
  .ps-lg-0 {
12678
    padding-left: 0 !important;
12679
  }
16848 stevensc 12680
 
16825 efrain 12681
  .ps-lg-1 {
12682
    padding-left: 0.25rem !important;
12683
  }
16848 stevensc 12684
 
16825 efrain 12685
  .ps-lg-2 {
12686
    padding-left: 0.5rem !important;
12687
  }
16848 stevensc 12688
 
16825 efrain 12689
  .ps-lg-3 {
12690
    padding-left: 1rem !important;
12691
  }
16848 stevensc 12692
 
16825 efrain 12693
  .ps-lg-4 {
12694
    padding-left: 1.5rem !important;
12695
  }
16848 stevensc 12696
 
16825 efrain 12697
  .ps-lg-5 {
12698
    padding-left: 3rem !important;
12699
  }
16848 stevensc 12700
 
16825 efrain 12701
  .ps-lg-6 {
12702
    padding-left: 4.5rem !important;
12703
  }
16848 stevensc 12704
 
16825 efrain 12705
  .ps-lg-7 {
12706
    padding-left: 6rem !important;
12707
  }
16848 stevensc 12708
 
16825 efrain 12709
  .gap-lg-0 {
12710
    gap: 0 !important;
12711
  }
16848 stevensc 12712
 
16825 efrain 12713
  .gap-lg-1 {
12714
    gap: 0.25rem !important;
12715
  }
16848 stevensc 12716
 
16825 efrain 12717
  .gap-lg-2 {
12718
    gap: 0.5rem !important;
12719
  }
16848 stevensc 12720
 
16825 efrain 12721
  .gap-lg-3 {
12722
    gap: 1rem !important;
12723
  }
16848 stevensc 12724
 
16825 efrain 12725
  .gap-lg-4 {
12726
    gap: 1.5rem !important;
12727
  }
16848 stevensc 12728
 
16825 efrain 12729
  .gap-lg-5 {
12730
    gap: 3rem !important;
12731
  }
16848 stevensc 12732
 
16825 efrain 12733
  .gap-lg-6 {
12734
    gap: 4.5rem !important;
12735
  }
16848 stevensc 12736
 
16825 efrain 12737
  .gap-lg-7 {
12738
    gap: 6rem !important;
12739
  }
16848 stevensc 12740
 
16825 efrain 12741
  .text-lg-start {
12742
    text-align: left !important;
12743
  }
16848 stevensc 12744
 
16825 efrain 12745
  .text-lg-end {
12746
    text-align: right !important;
12747
  }
16848 stevensc 12748
 
16825 efrain 12749
  .text-lg-center {
12750
    text-align: center !important;
12751
  }
12752
}
16848 stevensc 12753
 
16825 efrain 12754
@media (min-width: 1200px) {
12755
  .float-xl-start {
12756
    float: left !important;
12757
  }
16848 stevensc 12758
 
16825 efrain 12759
  .float-xl-end {
12760
    float: right !important;
12761
  }
16848 stevensc 12762
 
16825 efrain 12763
  .float-xl-none {
12764
    float: none !important;
12765
  }
16848 stevensc 12766
 
16825 efrain 12767
  .d-xl-inline {
12768
    display: inline !important;
12769
  }
16848 stevensc 12770
 
16825 efrain 12771
  .d-xl-inline-block {
12772
    display: inline-block !important;
12773
  }
16848 stevensc 12774
 
16825 efrain 12775
  .d-xl-block {
12776
    display: block !important;
12777
  }
16848 stevensc 12778
 
16825 efrain 12779
  .d-xl-grid {
12780
    display: grid !important;
12781
  }
16848 stevensc 12782
 
16825 efrain 12783
  .d-xl-table {
12784
    display: table !important;
12785
  }
16848 stevensc 12786
 
16825 efrain 12787
  .d-xl-table-row {
12788
    display: table-row !important;
12789
  }
16848 stevensc 12790
 
16825 efrain 12791
  .d-xl-table-cell {
12792
    display: table-cell !important;
12793
  }
16848 stevensc 12794
 
16825 efrain 12795
  .d-xl-flex {
12796
    display: flex !important;
12797
  }
16848 stevensc 12798
 
16825 efrain 12799
  .d-xl-inline-flex {
12800
    display: inline-flex !important;
12801
  }
16848 stevensc 12802
 
16825 efrain 12803
  .d-xl-none {
12804
    display: none !important;
12805
  }
16848 stevensc 12806
 
16825 efrain 12807
  .border-xl {
12808
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12809
  }
16848 stevensc 12810
 
16825 efrain 12811
  .border-xl-0 {
12812
    border: 0 !important;
12813
  }
16848 stevensc 12814
 
16825 efrain 12815
  .border-top-xl {
12816
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12817
  }
16848 stevensc 12818
 
16825 efrain 12819
  .border-top-xl-0 {
12820
    border-top: 0 !important;
12821
  }
16848 stevensc 12822
 
16825 efrain 12823
  .border-end-xl {
12824
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12825
  }
16848 stevensc 12826
 
16825 efrain 12827
  .border-end-xl-0 {
12828
    border-right: 0 !important;
12829
  }
16848 stevensc 12830
 
16825 efrain 12831
  .border-bottom-xl {
12832
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12833
  }
16848 stevensc 12834
 
16825 efrain 12835
  .border-bottom-xl-0 {
12836
    border-bottom: 0 !important;
12837
  }
16848 stevensc 12838
 
16825 efrain 12839
  .border-start-xl {
12840
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12841
  }
16848 stevensc 12842
 
16825 efrain 12843
  .border-start-xl-0 {
12844
    border-left: 0 !important;
12845
  }
16848 stevensc 12846
 
16825 efrain 12847
  .flex-xl-fill {
12848
    flex: 1 1 auto !important;
12849
  }
16848 stevensc 12850
 
16825 efrain 12851
  .flex-xl-row {
12852
    flex-direction: row !important;
12853
  }
16848 stevensc 12854
 
16825 efrain 12855
  .flex-xl-column {
12856
    flex-direction: column !important;
12857
  }
16848 stevensc 12858
 
16825 efrain 12859
  .flex-xl-row-reverse {
12860
    flex-direction: row-reverse !important;
12861
  }
16848 stevensc 12862
 
16825 efrain 12863
  .flex-xl-column-reverse {
12864
    flex-direction: column-reverse !important;
12865
  }
16848 stevensc 12866
 
16825 efrain 12867
  .flex-xl-grow-0 {
12868
    flex-grow: 0 !important;
12869
  }
16848 stevensc 12870
 
16825 efrain 12871
  .flex-xl-grow-1 {
12872
    flex-grow: 1 !important;
12873
  }
16848 stevensc 12874
 
16825 efrain 12875
  .flex-xl-shrink-0 {
12876
    flex-shrink: 0 !important;
12877
  }
16848 stevensc 12878
 
16825 efrain 12879
  .flex-xl-shrink-1 {
12880
    flex-shrink: 1 !important;
12881
  }
16848 stevensc 12882
 
16825 efrain 12883
  .flex-xl-wrap {
12884
    flex-wrap: wrap !important;
12885
  }
16848 stevensc 12886
 
16825 efrain 12887
  .flex-xl-nowrap {
12888
    flex-wrap: nowrap !important;
12889
  }
16848 stevensc 12890
 
16825 efrain 12891
  .flex-xl-wrap-reverse {
12892
    flex-wrap: wrap-reverse !important;
12893
  }
16848 stevensc 12894
 
16825 efrain 12895
  .justify-content-xl-start {
12896
    justify-content: flex-start !important;
12897
  }
16848 stevensc 12898
 
16825 efrain 12899
  .justify-content-xl-end {
12900
    justify-content: flex-end !important;
12901
  }
16848 stevensc 12902
 
16825 efrain 12903
  .justify-content-xl-center {
12904
    justify-content: center !important;
12905
  }
16848 stevensc 12906
 
16825 efrain 12907
  .justify-content-xl-between {
12908
    justify-content: space-between !important;
12909
  }
16848 stevensc 12910
 
16825 efrain 12911
  .justify-content-xl-around {
12912
    justify-content: space-around !important;
12913
  }
16848 stevensc 12914
 
16825 efrain 12915
  .justify-content-xl-evenly {
12916
    justify-content: space-evenly !important;
12917
  }
16848 stevensc 12918
 
16825 efrain 12919
  .align-items-xl-start {
12920
    align-items: flex-start !important;
12921
  }
16848 stevensc 12922
 
16825 efrain 12923
  .align-items-xl-end {
12924
    align-items: flex-end !important;
12925
  }
16848 stevensc 12926
 
16825 efrain 12927
  .align-items-xl-center {
12928
    align-items: center !important;
12929
  }
16848 stevensc 12930
 
16825 efrain 12931
  .align-items-xl-baseline {
12932
    align-items: baseline !important;
12933
  }
16848 stevensc 12934
 
16825 efrain 12935
  .align-items-xl-stretch {
12936
    align-items: stretch !important;
12937
  }
16848 stevensc 12938
 
16825 efrain 12939
  .align-content-xl-start {
12940
    align-content: flex-start !important;
12941
  }
16848 stevensc 12942
 
16825 efrain 12943
  .align-content-xl-end {
12944
    align-content: flex-end !important;
12945
  }
16848 stevensc 12946
 
16825 efrain 12947
  .align-content-xl-center {
12948
    align-content: center !important;
12949
  }
16848 stevensc 12950
 
16825 efrain 12951
  .align-content-xl-between {
12952
    align-content: space-between !important;
12953
  }
16848 stevensc 12954
 
16825 efrain 12955
  .align-content-xl-around {
12956
    align-content: space-around !important;
12957
  }
16848 stevensc 12958
 
16825 efrain 12959
  .align-content-xl-stretch {
12960
    align-content: stretch !important;
12961
  }
16848 stevensc 12962
 
16825 efrain 12963
  .align-self-xl-auto {
12964
    align-self: auto !important;
12965
  }
16848 stevensc 12966
 
16825 efrain 12967
  .align-self-xl-start {
12968
    align-self: flex-start !important;
12969
  }
16848 stevensc 12970
 
16825 efrain 12971
  .align-self-xl-end {
12972
    align-self: flex-end !important;
12973
  }
16848 stevensc 12974
 
16825 efrain 12975
  .align-self-xl-center {
12976
    align-self: center !important;
12977
  }
16848 stevensc 12978
 
16825 efrain 12979
  .align-self-xl-baseline {
12980
    align-self: baseline !important;
12981
  }
16848 stevensc 12982
 
16825 efrain 12983
  .align-self-xl-stretch {
12984
    align-self: stretch !important;
12985
  }
16848 stevensc 12986
 
16825 efrain 12987
  .order-xl-first {
12988
    order: -1 !important;
12989
  }
16848 stevensc 12990
 
16825 efrain 12991
  .order-xl-0 {
12992
    order: 0 !important;
12993
  }
16848 stevensc 12994
 
16825 efrain 12995
  .order-xl-1 {
12996
    order: 1 !important;
12997
  }
16848 stevensc 12998
 
16825 efrain 12999
  .order-xl-2 {
13000
    order: 2 !important;
13001
  }
16848 stevensc 13002
 
16825 efrain 13003
  .order-xl-3 {
13004
    order: 3 !important;
13005
  }
16848 stevensc 13006
 
16825 efrain 13007
  .order-xl-4 {
13008
    order: 4 !important;
13009
  }
16848 stevensc 13010
 
16825 efrain 13011
  .order-xl-5 {
13012
    order: 5 !important;
13013
  }
16848 stevensc 13014
 
16825 efrain 13015
  .order-xl-last {
13016
    order: 6 !important;
13017
  }
16848 stevensc 13018
 
16825 efrain 13019
  .m-xl-0 {
13020
    margin: 0 !important;
13021
  }
16848 stevensc 13022
 
16825 efrain 13023
  .m-xl-1 {
13024
    margin: 0.25rem !important;
13025
  }
16848 stevensc 13026
 
16825 efrain 13027
  .m-xl-2 {
13028
    margin: 0.5rem !important;
13029
  }
16848 stevensc 13030
 
16825 efrain 13031
  .m-xl-3 {
13032
    margin: 1rem !important;
13033
  }
16848 stevensc 13034
 
16825 efrain 13035
  .m-xl-4 {
13036
    margin: 1.5rem !important;
13037
  }
16848 stevensc 13038
 
16825 efrain 13039
  .m-xl-5 {
13040
    margin: 3rem !important;
13041
  }
16848 stevensc 13042
 
16825 efrain 13043
  .m-xl-6 {
13044
    margin: 4.5rem !important;
13045
  }
16848 stevensc 13046
 
16825 efrain 13047
  .m-xl-7 {
13048
    margin: 6rem !important;
13049
  }
16848 stevensc 13050
 
16825 efrain 13051
  .m-xl-auto {
13052
    margin: auto !important;
13053
  }
16848 stevensc 13054
 
16825 efrain 13055
  .mx-xl-0 {
13056
    margin-right: 0 !important;
13057
    margin-left: 0 !important;
13058
  }
16848 stevensc 13059
 
16825 efrain 13060
  .mx-xl-1 {
13061
    margin-right: 0.25rem !important;
13062
    margin-left: 0.25rem !important;
13063
  }
16848 stevensc 13064
 
16825 efrain 13065
  .mx-xl-2 {
13066
    margin-right: 0.5rem !important;
13067
    margin-left: 0.5rem !important;
13068
  }
16848 stevensc 13069
 
16825 efrain 13070
  .mx-xl-3 {
13071
    margin-right: 1rem !important;
13072
    margin-left: 1rem !important;
13073
  }
16848 stevensc 13074
 
16825 efrain 13075
  .mx-xl-4 {
13076
    margin-right: 1.5rem !important;
13077
    margin-left: 1.5rem !important;
13078
  }
16848 stevensc 13079
 
16825 efrain 13080
  .mx-xl-5 {
13081
    margin-right: 3rem !important;
13082
    margin-left: 3rem !important;
13083
  }
16848 stevensc 13084
 
16825 efrain 13085
  .mx-xl-6 {
13086
    margin-right: 4.5rem !important;
13087
    margin-left: 4.5rem !important;
13088
  }
16848 stevensc 13089
 
16825 efrain 13090
  .mx-xl-7 {
13091
    margin-right: 6rem !important;
13092
    margin-left: 6rem !important;
13093
  }
16848 stevensc 13094
 
16825 efrain 13095
  .mx-xl-auto {
13096
    margin-right: auto !important;
13097
    margin-left: auto !important;
13098
  }
16848 stevensc 13099
 
16825 efrain 13100
  .my-xl-0 {
13101
    margin-top: 0 !important;
13102
    margin-bottom: 0 !important;
13103
  }
16848 stevensc 13104
 
16825 efrain 13105
  .my-xl-1 {
13106
    margin-top: 0.25rem !important;
13107
    margin-bottom: 0.25rem !important;
13108
  }
16848 stevensc 13109
 
16825 efrain 13110
  .my-xl-2 {
13111
    margin-top: 0.5rem !important;
13112
    margin-bottom: 0.5rem !important;
13113
  }
16848 stevensc 13114
 
16825 efrain 13115
  .my-xl-3 {
13116
    margin-top: 1rem !important;
13117
    margin-bottom: 1rem !important;
13118
  }
16848 stevensc 13119
 
16825 efrain 13120
  .my-xl-4 {
13121
    margin-top: 1.5rem !important;
13122
    margin-bottom: 1.5rem !important;
13123
  }
16848 stevensc 13124
 
16825 efrain 13125
  .my-xl-5 {
13126
    margin-top: 3rem !important;
13127
    margin-bottom: 3rem !important;
13128
  }
16848 stevensc 13129
 
16825 efrain 13130
  .my-xl-6 {
13131
    margin-top: 4.5rem !important;
13132
    margin-bottom: 4.5rem !important;
13133
  }
16848 stevensc 13134
 
16825 efrain 13135
  .my-xl-7 {
13136
    margin-top: 6rem !important;
13137
    margin-bottom: 6rem !important;
13138
  }
16848 stevensc 13139
 
16825 efrain 13140
  .my-xl-auto {
13141
    margin-top: auto !important;
13142
    margin-bottom: auto !important;
13143
  }
16848 stevensc 13144
 
16825 efrain 13145
  .mt-xl-0 {
13146
    margin-top: 0 !important;
13147
  }
16848 stevensc 13148
 
16825 efrain 13149
  .mt-xl-1 {
13150
    margin-top: 0.25rem !important;
13151
  }
16848 stevensc 13152
 
16825 efrain 13153
  .mt-xl-2 {
13154
    margin-top: 0.5rem !important;
13155
  }
16848 stevensc 13156
 
16825 efrain 13157
  .mt-xl-3 {
13158
    margin-top: 1rem !important;
13159
  }
16848 stevensc 13160
 
16825 efrain 13161
  .mt-xl-4 {
13162
    margin-top: 1.5rem !important;
13163
  }
16848 stevensc 13164
 
16825 efrain 13165
  .mt-xl-5 {
13166
    margin-top: 3rem !important;
13167
  }
16848 stevensc 13168
 
16825 efrain 13169
  .mt-xl-6 {
13170
    margin-top: 4.5rem !important;
13171
  }
16848 stevensc 13172
 
16825 efrain 13173
  .mt-xl-7 {
13174
    margin-top: 6rem !important;
13175
  }
16848 stevensc 13176
 
16825 efrain 13177
  .mt-xl-auto {
13178
    margin-top: auto !important;
13179
  }
16848 stevensc 13180
 
16825 efrain 13181
  .me-xl-0 {
13182
    margin-right: 0 !important;
13183
  }
16848 stevensc 13184
 
16825 efrain 13185
  .me-xl-1 {
13186
    margin-right: 0.25rem !important;
13187
  }
16848 stevensc 13188
 
16825 efrain 13189
  .me-xl-2 {
13190
    margin-right: 0.5rem !important;
13191
  }
16848 stevensc 13192
 
16825 efrain 13193
  .me-xl-3 {
13194
    margin-right: 1rem !important;
13195
  }
16848 stevensc 13196
 
16825 efrain 13197
  .me-xl-4 {
13198
    margin-right: 1.5rem !important;
13199
  }
16848 stevensc 13200
 
16825 efrain 13201
  .me-xl-5 {
13202
    margin-right: 3rem !important;
13203
  }
16848 stevensc 13204
 
16825 efrain 13205
  .me-xl-6 {
13206
    margin-right: 4.5rem !important;
13207
  }
16848 stevensc 13208
 
16825 efrain 13209
  .me-xl-7 {
13210
    margin-right: 6rem !important;
13211
  }
16848 stevensc 13212
 
16825 efrain 13213
  .me-xl-auto {
13214
    margin-right: auto !important;
13215
  }
16848 stevensc 13216
 
16825 efrain 13217
  .mb-xl-0 {
13218
    margin-bottom: 0 !important;
13219
  }
16848 stevensc 13220
 
16825 efrain 13221
  .mb-xl-1 {
13222
    margin-bottom: 0.25rem !important;
13223
  }
16848 stevensc 13224
 
16825 efrain 13225
  .mb-xl-2 {
13226
    margin-bottom: 0.5rem !important;
13227
  }
16848 stevensc 13228
 
16825 efrain 13229
  .mb-xl-3 {
13230
    margin-bottom: 1rem !important;
13231
  }
16848 stevensc 13232
 
16825 efrain 13233
  .mb-xl-4 {
13234
    margin-bottom: 1.5rem !important;
13235
  }
16848 stevensc 13236
 
16825 efrain 13237
  .mb-xl-5 {
13238
    margin-bottom: 3rem !important;
13239
  }
16848 stevensc 13240
 
16825 efrain 13241
  .mb-xl-6 {
13242
    margin-bottom: 4.5rem !important;
13243
  }
16848 stevensc 13244
 
16825 efrain 13245
  .mb-xl-7 {
13246
    margin-bottom: 6rem !important;
13247
  }
16848 stevensc 13248
 
16825 efrain 13249
  .mb-xl-auto {
13250
    margin-bottom: auto !important;
13251
  }
16848 stevensc 13252
 
16825 efrain 13253
  .ms-xl-0 {
13254
    margin-left: 0 !important;
13255
  }
16848 stevensc 13256
 
16825 efrain 13257
  .ms-xl-1 {
13258
    margin-left: 0.25rem !important;
13259
  }
16848 stevensc 13260
 
16825 efrain 13261
  .ms-xl-2 {
13262
    margin-left: 0.5rem !important;
13263
  }
16848 stevensc 13264
 
16825 efrain 13265
  .ms-xl-3 {
13266
    margin-left: 1rem !important;
13267
  }
16848 stevensc 13268
 
16825 efrain 13269
  .ms-xl-4 {
13270
    margin-left: 1.5rem !important;
13271
  }
16848 stevensc 13272
 
16825 efrain 13273
  .ms-xl-5 {
13274
    margin-left: 3rem !important;
13275
  }
16848 stevensc 13276
 
16825 efrain 13277
  .ms-xl-6 {
13278
    margin-left: 4.5rem !important;
13279
  }
16848 stevensc 13280
 
16825 efrain 13281
  .ms-xl-7 {
13282
    margin-left: 6rem !important;
13283
  }
16848 stevensc 13284
 
16825 efrain 13285
  .ms-xl-auto {
13286
    margin-left: auto !important;
13287
  }
16848 stevensc 13288
 
16825 efrain 13289
  .m-xl-n1 {
13290
    margin: -0.25rem !important;
13291
  }
16848 stevensc 13292
 
16825 efrain 13293
  .m-xl-n2 {
13294
    margin: -0.5rem !important;
13295
  }
16848 stevensc 13296
 
16825 efrain 13297
  .m-xl-n3 {
13298
    margin: -1rem !important;
13299
  }
16848 stevensc 13300
 
16825 efrain 13301
  .m-xl-n4 {
13302
    margin: -1.5rem !important;
13303
  }
16848 stevensc 13304
 
16825 efrain 13305
  .m-xl-n5 {
13306
    margin: -3rem !important;
13307
  }
16848 stevensc 13308
 
16825 efrain 13309
  .m-xl-n6 {
13310
    margin: -4.5rem !important;
13311
  }
16848 stevensc 13312
 
16825 efrain 13313
  .m-xl-n7 {
13314
    margin: -6rem !important;
13315
  }
16848 stevensc 13316
 
16825 efrain 13317
  .mx-xl-n1 {
13318
    margin-right: -0.25rem !important;
13319
    margin-left: -0.25rem !important;
13320
  }
16848 stevensc 13321
 
16825 efrain 13322
  .mx-xl-n2 {
13323
    margin-right: -0.5rem !important;
13324
    margin-left: -0.5rem !important;
13325
  }
16848 stevensc 13326
 
16825 efrain 13327
  .mx-xl-n3 {
13328
    margin-right: -1rem !important;
13329
    margin-left: -1rem !important;
13330
  }
16848 stevensc 13331
 
16825 efrain 13332
  .mx-xl-n4 {
13333
    margin-right: -1.5rem !important;
13334
    margin-left: -1.5rem !important;
13335
  }
16848 stevensc 13336
 
16825 efrain 13337
  .mx-xl-n5 {
13338
    margin-right: -3rem !important;
13339
    margin-left: -3rem !important;
13340
  }
16848 stevensc 13341
 
16825 efrain 13342
  .mx-xl-n6 {
13343
    margin-right: -4.5rem !important;
13344
    margin-left: -4.5rem !important;
13345
  }
16848 stevensc 13346
 
16825 efrain 13347
  .mx-xl-n7 {
13348
    margin-right: -6rem !important;
13349
    margin-left: -6rem !important;
13350
  }
16848 stevensc 13351
 
16825 efrain 13352
  .my-xl-n1 {
13353
    margin-top: -0.25rem !important;
13354
    margin-bottom: -0.25rem !important;
13355
  }
16848 stevensc 13356
 
16825 efrain 13357
  .my-xl-n2 {
13358
    margin-top: -0.5rem !important;
13359
    margin-bottom: -0.5rem !important;
13360
  }
16848 stevensc 13361
 
16825 efrain 13362
  .my-xl-n3 {
13363
    margin-top: -1rem !important;
13364
    margin-bottom: -1rem !important;
13365
  }
16848 stevensc 13366
 
16825 efrain 13367
  .my-xl-n4 {
13368
    margin-top: -1.5rem !important;
13369
    margin-bottom: -1.5rem !important;
13370
  }
16848 stevensc 13371
 
16825 efrain 13372
  .my-xl-n5 {
13373
    margin-top: -3rem !important;
13374
    margin-bottom: -3rem !important;
13375
  }
16848 stevensc 13376
 
16825 efrain 13377
  .my-xl-n6 {
13378
    margin-top: -4.5rem !important;
13379
    margin-bottom: -4.5rem !important;
13380
  }
16848 stevensc 13381
 
16825 efrain 13382
  .my-xl-n7 {
13383
    margin-top: -6rem !important;
13384
    margin-bottom: -6rem !important;
13385
  }
16848 stevensc 13386
 
16825 efrain 13387
  .mt-xl-n1 {
13388
    margin-top: -0.25rem !important;
13389
  }
16848 stevensc 13390
 
16825 efrain 13391
  .mt-xl-n2 {
13392
    margin-top: -0.5rem !important;
13393
  }
16848 stevensc 13394
 
16825 efrain 13395
  .mt-xl-n3 {
13396
    margin-top: -1rem !important;
13397
  }
16848 stevensc 13398
 
16825 efrain 13399
  .mt-xl-n4 {
13400
    margin-top: -1.5rem !important;
13401
  }
16848 stevensc 13402
 
16825 efrain 13403
  .mt-xl-n5 {
13404
    margin-top: -3rem !important;
13405
  }
16848 stevensc 13406
 
16825 efrain 13407
  .mt-xl-n6 {
13408
    margin-top: -4.5rem !important;
13409
  }
16848 stevensc 13410
 
16825 efrain 13411
  .mt-xl-n7 {
13412
    margin-top: -6rem !important;
13413
  }
16848 stevensc 13414
 
16825 efrain 13415
  .me-xl-n1 {
13416
    margin-right: -0.25rem !important;
13417
  }
16848 stevensc 13418
 
16825 efrain 13419
  .me-xl-n2 {
13420
    margin-right: -0.5rem !important;
13421
  }
16848 stevensc 13422
 
16825 efrain 13423
  .me-xl-n3 {
13424
    margin-right: -1rem !important;
13425
  }
16848 stevensc 13426
 
16825 efrain 13427
  .me-xl-n4 {
13428
    margin-right: -1.5rem !important;
13429
  }
16848 stevensc 13430
 
16825 efrain 13431
  .me-xl-n5 {
13432
    margin-right: -3rem !important;
13433
  }
16848 stevensc 13434
 
16825 efrain 13435
  .me-xl-n6 {
13436
    margin-right: -4.5rem !important;
13437
  }
16848 stevensc 13438
 
16825 efrain 13439
  .me-xl-n7 {
13440
    margin-right: -6rem !important;
13441
  }
16848 stevensc 13442
 
16825 efrain 13443
  .mb-xl-n1 {
13444
    margin-bottom: -0.25rem !important;
13445
  }
16848 stevensc 13446
 
16825 efrain 13447
  .mb-xl-n2 {
13448
    margin-bottom: -0.5rem !important;
13449
  }
16848 stevensc 13450
 
16825 efrain 13451
  .mb-xl-n3 {
13452
    margin-bottom: -1rem !important;
13453
  }
16848 stevensc 13454
 
16825 efrain 13455
  .mb-xl-n4 {
13456
    margin-bottom: -1.5rem !important;
13457
  }
16848 stevensc 13458
 
16825 efrain 13459
  .mb-xl-n5 {
13460
    margin-bottom: -3rem !important;
13461
  }
16848 stevensc 13462
 
16825 efrain 13463
  .mb-xl-n6 {
13464
    margin-bottom: -4.5rem !important;
13465
  }
16848 stevensc 13466
 
16825 efrain 13467
  .mb-xl-n7 {
13468
    margin-bottom: -6rem !important;
13469
  }
16848 stevensc 13470
 
16825 efrain 13471
  .ms-xl-n1 {
13472
    margin-left: -0.25rem !important;
13473
  }
16848 stevensc 13474
 
16825 efrain 13475
  .ms-xl-n2 {
13476
    margin-left: -0.5rem !important;
13477
  }
16848 stevensc 13478
 
16825 efrain 13479
  .ms-xl-n3 {
13480
    margin-left: -1rem !important;
13481
  }
16848 stevensc 13482
 
16825 efrain 13483
  .ms-xl-n4 {
13484
    margin-left: -1.5rem !important;
13485
  }
16848 stevensc 13486
 
16825 efrain 13487
  .ms-xl-n5 {
13488
    margin-left: -3rem !important;
13489
  }
16848 stevensc 13490
 
16825 efrain 13491
  .ms-xl-n6 {
13492
    margin-left: -4.5rem !important;
13493
  }
16848 stevensc 13494
 
16825 efrain 13495
  .ms-xl-n7 {
13496
    margin-left: -6rem !important;
13497
  }
16848 stevensc 13498
 
16825 efrain 13499
  .p-xl-0 {
13500
    padding: 0 !important;
13501
  }
16848 stevensc 13502
 
16825 efrain 13503
  .p-xl-1 {
13504
    padding: 0.25rem !important;
13505
  }
16848 stevensc 13506
 
16825 efrain 13507
  .p-xl-2 {
13508
    padding: 0.5rem !important;
13509
  }
16848 stevensc 13510
 
16825 efrain 13511
  .p-xl-3 {
13512
    padding: 1rem !important;
13513
  }
16848 stevensc 13514
 
16825 efrain 13515
  .p-xl-4 {
13516
    padding: 1.5rem !important;
13517
  }
16848 stevensc 13518
 
16825 efrain 13519
  .p-xl-5 {
13520
    padding: 3rem !important;
13521
  }
16848 stevensc 13522
 
16825 efrain 13523
  .p-xl-6 {
13524
    padding: 4.5rem !important;
13525
  }
16848 stevensc 13526
 
16825 efrain 13527
  .p-xl-7 {
13528
    padding: 6rem !important;
13529
  }
16848 stevensc 13530
 
16825 efrain 13531
  .px-xl-0 {
13532
    padding-right: 0 !important;
13533
    padding-left: 0 !important;
13534
  }
16848 stevensc 13535
 
16825 efrain 13536
  .px-xl-1 {
13537
    padding-right: 0.25rem !important;
13538
    padding-left: 0.25rem !important;
13539
  }
16848 stevensc 13540
 
16825 efrain 13541
  .px-xl-2 {
13542
    padding-right: 0.5rem !important;
13543
    padding-left: 0.5rem !important;
13544
  }
16848 stevensc 13545
 
16825 efrain 13546
  .px-xl-3 {
13547
    padding-right: 1rem !important;
13548
    padding-left: 1rem !important;
13549
  }
16848 stevensc 13550
 
16825 efrain 13551
  .px-xl-4 {
13552
    padding-right: 1.5rem !important;
13553
    padding-left: 1.5rem !important;
13554
  }
16848 stevensc 13555
 
16825 efrain 13556
  .px-xl-5 {
13557
    padding-right: 3rem !important;
13558
    padding-left: 3rem !important;
13559
  }
16848 stevensc 13560
 
16825 efrain 13561
  .px-xl-6 {
13562
    padding-right: 4.5rem !important;
13563
    padding-left: 4.5rem !important;
13564
  }
16848 stevensc 13565
 
16825 efrain 13566
  .px-xl-7 {
13567
    padding-right: 6rem !important;
13568
    padding-left: 6rem !important;
13569
  }
16848 stevensc 13570
 
16825 efrain 13571
  .py-xl-0 {
13572
    padding-top: 0 !important;
13573
    padding-bottom: 0 !important;
13574
  }
16848 stevensc 13575
 
16825 efrain 13576
  .py-xl-1 {
13577
    padding-top: 0.25rem !important;
13578
    padding-bottom: 0.25rem !important;
13579
  }
16848 stevensc 13580
 
16825 efrain 13581
  .py-xl-2 {
13582
    padding-top: 0.5rem !important;
13583
    padding-bottom: 0.5rem !important;
13584
  }
16848 stevensc 13585
 
16825 efrain 13586
  .py-xl-3 {
13587
    padding-top: 1rem !important;
13588
    padding-bottom: 1rem !important;
13589
  }
16848 stevensc 13590
 
16825 efrain 13591
  .py-xl-4 {
13592
    padding-top: 1.5rem !important;
13593
    padding-bottom: 1.5rem !important;
13594
  }
16848 stevensc 13595
 
16825 efrain 13596
  .py-xl-5 {
13597
    padding-top: 3rem !important;
13598
    padding-bottom: 3rem !important;
13599
  }
16848 stevensc 13600
 
16825 efrain 13601
  .py-xl-6 {
13602
    padding-top: 4.5rem !important;
13603
    padding-bottom: 4.5rem !important;
13604
  }
16848 stevensc 13605
 
16825 efrain 13606
  .py-xl-7 {
13607
    padding-top: 6rem !important;
13608
    padding-bottom: 6rem !important;
13609
  }
16848 stevensc 13610
 
16825 efrain 13611
  .pt-xl-0 {
13612
    padding-top: 0 !important;
13613
  }
16848 stevensc 13614
 
16825 efrain 13615
  .pt-xl-1 {
13616
    padding-top: 0.25rem !important;
13617
  }
16848 stevensc 13618
 
16825 efrain 13619
  .pt-xl-2 {
13620
    padding-top: 0.5rem !important;
13621
  }
16848 stevensc 13622
 
16825 efrain 13623
  .pt-xl-3 {
13624
    padding-top: 1rem !important;
13625
  }
16848 stevensc 13626
 
16825 efrain 13627
  .pt-xl-4 {
13628
    padding-top: 1.5rem !important;
13629
  }
16848 stevensc 13630
 
16825 efrain 13631
  .pt-xl-5 {
13632
    padding-top: 3rem !important;
13633
  }
16848 stevensc 13634
 
16825 efrain 13635
  .pt-xl-6 {
13636
    padding-top: 4.5rem !important;
13637
  }
16848 stevensc 13638
 
16825 efrain 13639
  .pt-xl-7 {
13640
    padding-top: 6rem !important;
13641
  }
16848 stevensc 13642
 
16825 efrain 13643
  .pe-xl-0 {
13644
    padding-right: 0 !important;
13645
  }
16848 stevensc 13646
 
16825 efrain 13647
  .pe-xl-1 {
13648
    padding-right: 0.25rem !important;
13649
  }
16848 stevensc 13650
 
16825 efrain 13651
  .pe-xl-2 {
13652
    padding-right: 0.5rem !important;
13653
  }
16848 stevensc 13654
 
16825 efrain 13655
  .pe-xl-3 {
13656
    padding-right: 1rem !important;
13657
  }
16848 stevensc 13658
 
16825 efrain 13659
  .pe-xl-4 {
13660
    padding-right: 1.5rem !important;
13661
  }
16848 stevensc 13662
 
16825 efrain 13663
  .pe-xl-5 {
13664
    padding-right: 3rem !important;
13665
  }
16848 stevensc 13666
 
16825 efrain 13667
  .pe-xl-6 {
13668
    padding-right: 4.5rem !important;
13669
  }
16848 stevensc 13670
 
16825 efrain 13671
  .pe-xl-7 {
13672
    padding-right: 6rem !important;
13673
  }
16848 stevensc 13674
 
16825 efrain 13675
  .pb-xl-0 {
13676
    padding-bottom: 0 !important;
13677
  }
16848 stevensc 13678
 
16825 efrain 13679
  .pb-xl-1 {
13680
    padding-bottom: 0.25rem !important;
13681
  }
16848 stevensc 13682
 
16825 efrain 13683
  .pb-xl-2 {
13684
    padding-bottom: 0.5rem !important;
13685
  }
16848 stevensc 13686
 
16825 efrain 13687
  .pb-xl-3 {
13688
    padding-bottom: 1rem !important;
13689
  }
16848 stevensc 13690
 
16825 efrain 13691
  .pb-xl-4 {
13692
    padding-bottom: 1.5rem !important;
13693
  }
16848 stevensc 13694
 
16825 efrain 13695
  .pb-xl-5 {
13696
    padding-bottom: 3rem !important;
13697
  }
16848 stevensc 13698
 
16825 efrain 13699
  .pb-xl-6 {
13700
    padding-bottom: 4.5rem !important;
13701
  }
16848 stevensc 13702
 
16825 efrain 13703
  .pb-xl-7 {
13704
    padding-bottom: 6rem !important;
13705
  }
16848 stevensc 13706
 
16825 efrain 13707
  .ps-xl-0 {
13708
    padding-left: 0 !important;
13709
  }
16848 stevensc 13710
 
16825 efrain 13711
  .ps-xl-1 {
13712
    padding-left: 0.25rem !important;
13713
  }
16848 stevensc 13714
 
16825 efrain 13715
  .ps-xl-2 {
13716
    padding-left: 0.5rem !important;
13717
  }
16848 stevensc 13718
 
16825 efrain 13719
  .ps-xl-3 {
13720
    padding-left: 1rem !important;
13721
  }
16848 stevensc 13722
 
16825 efrain 13723
  .ps-xl-4 {
13724
    padding-left: 1.5rem !important;
13725
  }
16848 stevensc 13726
 
16825 efrain 13727
  .ps-xl-5 {
13728
    padding-left: 3rem !important;
13729
  }
16848 stevensc 13730
 
16825 efrain 13731
  .ps-xl-6 {
13732
    padding-left: 4.5rem !important;
13733
  }
16848 stevensc 13734
 
16825 efrain 13735
  .ps-xl-7 {
13736
    padding-left: 6rem !important;
13737
  }
16848 stevensc 13738
 
16825 efrain 13739
  .gap-xl-0 {
13740
    gap: 0 !important;
13741
  }
16848 stevensc 13742
 
16825 efrain 13743
  .gap-xl-1 {
13744
    gap: 0.25rem !important;
13745
  }
16848 stevensc 13746
 
16825 efrain 13747
  .gap-xl-2 {
13748
    gap: 0.5rem !important;
13749
  }
16848 stevensc 13750
 
16825 efrain 13751
  .gap-xl-3 {
13752
    gap: 1rem !important;
13753
  }
16848 stevensc 13754
 
16825 efrain 13755
  .gap-xl-4 {
13756
    gap: 1.5rem !important;
13757
  }
16848 stevensc 13758
 
16825 efrain 13759
  .gap-xl-5 {
13760
    gap: 3rem !important;
13761
  }
16848 stevensc 13762
 
16825 efrain 13763
  .gap-xl-6 {
13764
    gap: 4.5rem !important;
13765
  }
16848 stevensc 13766
 
16825 efrain 13767
  .gap-xl-7 {
13768
    gap: 6rem !important;
13769
  }
16848 stevensc 13770
 
16825 efrain 13771
  .text-xl-start {
13772
    text-align: left !important;
13773
  }
16848 stevensc 13774
 
16825 efrain 13775
  .text-xl-end {
13776
    text-align: right !important;
13777
  }
16848 stevensc 13778
 
16825 efrain 13779
  .text-xl-center {
13780
    text-align: center !important;
13781
  }
13782
}
16848 stevensc 13783
 
16825 efrain 13784
@media (min-width: 1400px) {
13785
  .float-xxl-start {
13786
    float: left !important;
13787
  }
16848 stevensc 13788
 
16825 efrain 13789
  .float-xxl-end {
13790
    float: right !important;
13791
  }
16848 stevensc 13792
 
16825 efrain 13793
  .float-xxl-none {
13794
    float: none !important;
13795
  }
16848 stevensc 13796
 
16825 efrain 13797
  .d-xxl-inline {
13798
    display: inline !important;
13799
  }
16848 stevensc 13800
 
16825 efrain 13801
  .d-xxl-inline-block {
13802
    display: inline-block !important;
13803
  }
16848 stevensc 13804
 
16825 efrain 13805
  .d-xxl-block {
13806
    display: block !important;
13807
  }
16848 stevensc 13808
 
16825 efrain 13809
  .d-xxl-grid {
13810
    display: grid !important;
13811
  }
16848 stevensc 13812
 
16825 efrain 13813
  .d-xxl-table {
13814
    display: table !important;
13815
  }
16848 stevensc 13816
 
16825 efrain 13817
  .d-xxl-table-row {
13818
    display: table-row !important;
13819
  }
16848 stevensc 13820
 
16825 efrain 13821
  .d-xxl-table-cell {
13822
    display: table-cell !important;
13823
  }
16848 stevensc 13824
 
16825 efrain 13825
  .d-xxl-flex {
13826
    display: flex !important;
13827
  }
16848 stevensc 13828
 
16825 efrain 13829
  .d-xxl-inline-flex {
13830
    display: inline-flex !important;
13831
  }
16848 stevensc 13832
 
16825 efrain 13833
  .d-xxl-none {
13834
    display: none !important;
13835
  }
16848 stevensc 13836
 
16825 efrain 13837
  .border-xxl {
13838
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13839
  }
16848 stevensc 13840
 
16825 efrain 13841
  .border-xxl-0 {
13842
    border: 0 !important;
13843
  }
16848 stevensc 13844
 
16825 efrain 13845
  .border-top-xxl {
13846
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13847
  }
16848 stevensc 13848
 
16825 efrain 13849
  .border-top-xxl-0 {
13850
    border-top: 0 !important;
13851
  }
16848 stevensc 13852
 
16825 efrain 13853
  .border-end-xxl {
13854
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13855
  }
16848 stevensc 13856
 
16825 efrain 13857
  .border-end-xxl-0 {
13858
    border-right: 0 !important;
13859
  }
16848 stevensc 13860
 
16825 efrain 13861
  .border-bottom-xxl {
13862
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13863
  }
16848 stevensc 13864
 
16825 efrain 13865
  .border-bottom-xxl-0 {
13866
    border-bottom: 0 !important;
13867
  }
16848 stevensc 13868
 
16825 efrain 13869
  .border-start-xxl {
13870
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13871
  }
16848 stevensc 13872
 
16825 efrain 13873
  .border-start-xxl-0 {
13874
    border-left: 0 !important;
13875
  }
16848 stevensc 13876
 
16825 efrain 13877
  .flex-xxl-fill {
13878
    flex: 1 1 auto !important;
13879
  }
16848 stevensc 13880
 
16825 efrain 13881
  .flex-xxl-row {
13882
    flex-direction: row !important;
13883
  }
16848 stevensc 13884
 
16825 efrain 13885
  .flex-xxl-column {
13886
    flex-direction: column !important;
13887
  }
16848 stevensc 13888
 
16825 efrain 13889
  .flex-xxl-row-reverse {
13890
    flex-direction: row-reverse !important;
13891
  }
16848 stevensc 13892
 
16825 efrain 13893
  .flex-xxl-column-reverse {
13894
    flex-direction: column-reverse !important;
13895
  }
16848 stevensc 13896
 
16825 efrain 13897
  .flex-xxl-grow-0 {
13898
    flex-grow: 0 !important;
13899
  }
16848 stevensc 13900
 
16825 efrain 13901
  .flex-xxl-grow-1 {
13902
    flex-grow: 1 !important;
13903
  }
16848 stevensc 13904
 
16825 efrain 13905
  .flex-xxl-shrink-0 {
13906
    flex-shrink: 0 !important;
13907
  }
16848 stevensc 13908
 
16825 efrain 13909
  .flex-xxl-shrink-1 {
13910
    flex-shrink: 1 !important;
13911
  }
16848 stevensc 13912
 
16825 efrain 13913
  .flex-xxl-wrap {
13914
    flex-wrap: wrap !important;
13915
  }
16848 stevensc 13916
 
16825 efrain 13917
  .flex-xxl-nowrap {
13918
    flex-wrap: nowrap !important;
13919
  }
16848 stevensc 13920
 
16825 efrain 13921
  .flex-xxl-wrap-reverse {
13922
    flex-wrap: wrap-reverse !important;
13923
  }
16848 stevensc 13924
 
16825 efrain 13925
  .justify-content-xxl-start {
13926
    justify-content: flex-start !important;
13927
  }
16848 stevensc 13928
 
16825 efrain 13929
  .justify-content-xxl-end {
13930
    justify-content: flex-end !important;
13931
  }
16848 stevensc 13932
 
16825 efrain 13933
  .justify-content-xxl-center {
13934
    justify-content: center !important;
13935
  }
16848 stevensc 13936
 
16825 efrain 13937
  .justify-content-xxl-between {
13938
    justify-content: space-between !important;
13939
  }
16848 stevensc 13940
 
16825 efrain 13941
  .justify-content-xxl-around {
13942
    justify-content: space-around !important;
13943
  }
16848 stevensc 13944
 
16825 efrain 13945
  .justify-content-xxl-evenly {
13946
    justify-content: space-evenly !important;
13947
  }
16848 stevensc 13948
 
16825 efrain 13949
  .align-items-xxl-start {
13950
    align-items: flex-start !important;
13951
  }
16848 stevensc 13952
 
16825 efrain 13953
  .align-items-xxl-end {
13954
    align-items: flex-end !important;
13955
  }
16848 stevensc 13956
 
16825 efrain 13957
  .align-items-xxl-center {
13958
    align-items: center !important;
13959
  }
16848 stevensc 13960
 
16825 efrain 13961
  .align-items-xxl-baseline {
13962
    align-items: baseline !important;
13963
  }
16848 stevensc 13964
 
16825 efrain 13965
  .align-items-xxl-stretch {
13966
    align-items: stretch !important;
13967
  }
16848 stevensc 13968
 
16825 efrain 13969
  .align-content-xxl-start {
13970
    align-content: flex-start !important;
13971
  }
16848 stevensc 13972
 
16825 efrain 13973
  .align-content-xxl-end {
13974
    align-content: flex-end !important;
13975
  }
16848 stevensc 13976
 
16825 efrain 13977
  .align-content-xxl-center {
13978
    align-content: center !important;
13979
  }
16848 stevensc 13980
 
16825 efrain 13981
  .align-content-xxl-between {
13982
    align-content: space-between !important;
13983
  }
16848 stevensc 13984
 
16825 efrain 13985
  .align-content-xxl-around {
13986
    align-content: space-around !important;
13987
  }
16848 stevensc 13988
 
16825 efrain 13989
  .align-content-xxl-stretch {
13990
    align-content: stretch !important;
13991
  }
16848 stevensc 13992
 
16825 efrain 13993
  .align-self-xxl-auto {
13994
    align-self: auto !important;
13995
  }
16848 stevensc 13996
 
16825 efrain 13997
  .align-self-xxl-start {
13998
    align-self: flex-start !important;
13999
  }
16848 stevensc 14000
 
16825 efrain 14001
  .align-self-xxl-end {
14002
    align-self: flex-end !important;
14003
  }
16848 stevensc 14004
 
16825 efrain 14005
  .align-self-xxl-center {
14006
    align-self: center !important;
14007
  }
16848 stevensc 14008
 
16825 efrain 14009
  .align-self-xxl-baseline {
14010
    align-self: baseline !important;
14011
  }
16848 stevensc 14012
 
16825 efrain 14013
  .align-self-xxl-stretch {
14014
    align-self: stretch !important;
14015
  }
16848 stevensc 14016
 
16825 efrain 14017
  .order-xxl-first {
14018
    order: -1 !important;
14019
  }
16848 stevensc 14020
 
16825 efrain 14021
  .order-xxl-0 {
14022
    order: 0 !important;
14023
  }
16848 stevensc 14024
 
16825 efrain 14025
  .order-xxl-1 {
14026
    order: 1 !important;
14027
  }
16848 stevensc 14028
 
16825 efrain 14029
  .order-xxl-2 {
14030
    order: 2 !important;
14031
  }
16848 stevensc 14032
 
16825 efrain 14033
  .order-xxl-3 {
14034
    order: 3 !important;
14035
  }
16848 stevensc 14036
 
16825 efrain 14037
  .order-xxl-4 {
14038
    order: 4 !important;
14039
  }
16848 stevensc 14040
 
16825 efrain 14041
  .order-xxl-5 {
14042
    order: 5 !important;
14043
  }
16848 stevensc 14044
 
16825 efrain 14045
  .order-xxl-last {
14046
    order: 6 !important;
14047
  }
16848 stevensc 14048
 
16825 efrain 14049
  .m-xxl-0 {
14050
    margin: 0 !important;
14051
  }
16848 stevensc 14052
 
16825 efrain 14053
  .m-xxl-1 {
14054
    margin: 0.25rem !important;
14055
  }
16848 stevensc 14056
 
16825 efrain 14057
  .m-xxl-2 {
14058
    margin: 0.5rem !important;
14059
  }
16848 stevensc 14060
 
16825 efrain 14061
  .m-xxl-3 {
14062
    margin: 1rem !important;
14063
  }
16848 stevensc 14064
 
16825 efrain 14065
  .m-xxl-4 {
14066
    margin: 1.5rem !important;
14067
  }
16848 stevensc 14068
 
16825 efrain 14069
  .m-xxl-5 {
14070
    margin: 3rem !important;
14071
  }
16848 stevensc 14072
 
16825 efrain 14073
  .m-xxl-6 {
14074
    margin: 4.5rem !important;
14075
  }
16848 stevensc 14076
 
16825 efrain 14077
  .m-xxl-7 {
14078
    margin: 6rem !important;
14079
  }
16848 stevensc 14080
 
16825 efrain 14081
  .m-xxl-auto {
14082
    margin: auto !important;
14083
  }
16848 stevensc 14084
 
16825 efrain 14085
  .mx-xxl-0 {
14086
    margin-right: 0 !important;
14087
    margin-left: 0 !important;
14088
  }
16848 stevensc 14089
 
16825 efrain 14090
  .mx-xxl-1 {
14091
    margin-right: 0.25rem !important;
14092
    margin-left: 0.25rem !important;
14093
  }
16848 stevensc 14094
 
16825 efrain 14095
  .mx-xxl-2 {
14096
    margin-right: 0.5rem !important;
14097
    margin-left: 0.5rem !important;
14098
  }
16848 stevensc 14099
 
16825 efrain 14100
  .mx-xxl-3 {
14101
    margin-right: 1rem !important;
14102
    margin-left: 1rem !important;
14103
  }
16848 stevensc 14104
 
16825 efrain 14105
  .mx-xxl-4 {
14106
    margin-right: 1.5rem !important;
14107
    margin-left: 1.5rem !important;
14108
  }
16848 stevensc 14109
 
16825 efrain 14110
  .mx-xxl-5 {
14111
    margin-right: 3rem !important;
14112
    margin-left: 3rem !important;
14113
  }
16848 stevensc 14114
 
16825 efrain 14115
  .mx-xxl-6 {
14116
    margin-right: 4.5rem !important;
14117
    margin-left: 4.5rem !important;
14118
  }
16848 stevensc 14119
 
16825 efrain 14120
  .mx-xxl-7 {
14121
    margin-right: 6rem !important;
14122
    margin-left: 6rem !important;
14123
  }
16848 stevensc 14124
 
16825 efrain 14125
  .mx-xxl-auto {
14126
    margin-right: auto !important;
14127
    margin-left: auto !important;
14128
  }
16848 stevensc 14129
 
16825 efrain 14130
  .my-xxl-0 {
14131
    margin-top: 0 !important;
14132
    margin-bottom: 0 !important;
14133
  }
16848 stevensc 14134
 
16825 efrain 14135
  .my-xxl-1 {
14136
    margin-top: 0.25rem !important;
14137
    margin-bottom: 0.25rem !important;
14138
  }
16848 stevensc 14139
 
16825 efrain 14140
  .my-xxl-2 {
14141
    margin-top: 0.5rem !important;
14142
    margin-bottom: 0.5rem !important;
14143
  }
16848 stevensc 14144
 
16825 efrain 14145
  .my-xxl-3 {
14146
    margin-top: 1rem !important;
14147
    margin-bottom: 1rem !important;
14148
  }
16848 stevensc 14149
 
16825 efrain 14150
  .my-xxl-4 {
14151
    margin-top: 1.5rem !important;
14152
    margin-bottom: 1.5rem !important;
14153
  }
16848 stevensc 14154
 
16825 efrain 14155
  .my-xxl-5 {
14156
    margin-top: 3rem !important;
14157
    margin-bottom: 3rem !important;
14158
  }
16848 stevensc 14159
 
16825 efrain 14160
  .my-xxl-6 {
14161
    margin-top: 4.5rem !important;
14162
    margin-bottom: 4.5rem !important;
14163
  }
16848 stevensc 14164
 
16825 efrain 14165
  .my-xxl-7 {
14166
    margin-top: 6rem !important;
14167
    margin-bottom: 6rem !important;
14168
  }
16848 stevensc 14169
 
16825 efrain 14170
  .my-xxl-auto {
14171
    margin-top: auto !important;
14172
    margin-bottom: auto !important;
14173
  }
16848 stevensc 14174
 
16825 efrain 14175
  .mt-xxl-0 {
14176
    margin-top: 0 !important;
14177
  }
16848 stevensc 14178
 
16825 efrain 14179
  .mt-xxl-1 {
14180
    margin-top: 0.25rem !important;
14181
  }
16848 stevensc 14182
 
16825 efrain 14183
  .mt-xxl-2 {
14184
    margin-top: 0.5rem !important;
14185
  }
16848 stevensc 14186
 
16825 efrain 14187
  .mt-xxl-3 {
14188
    margin-top: 1rem !important;
14189
  }
16848 stevensc 14190
 
16825 efrain 14191
  .mt-xxl-4 {
14192
    margin-top: 1.5rem !important;
14193
  }
16848 stevensc 14194
 
16825 efrain 14195
  .mt-xxl-5 {
14196
    margin-top: 3rem !important;
14197
  }
16848 stevensc 14198
 
16825 efrain 14199
  .mt-xxl-6 {
14200
    margin-top: 4.5rem !important;
14201
  }
16848 stevensc 14202
 
16825 efrain 14203
  .mt-xxl-7 {
14204
    margin-top: 6rem !important;
14205
  }
16848 stevensc 14206
 
16825 efrain 14207
  .mt-xxl-auto {
14208
    margin-top: auto !important;
14209
  }
16848 stevensc 14210
 
16825 efrain 14211
  .me-xxl-0 {
14212
    margin-right: 0 !important;
14213
  }
16848 stevensc 14214
 
16825 efrain 14215
  .me-xxl-1 {
14216
    margin-right: 0.25rem !important;
14217
  }
16848 stevensc 14218
 
16825 efrain 14219
  .me-xxl-2 {
14220
    margin-right: 0.5rem !important;
14221
  }
16848 stevensc 14222
 
16825 efrain 14223
  .me-xxl-3 {
14224
    margin-right: 1rem !important;
14225
  }
16848 stevensc 14226
 
16825 efrain 14227
  .me-xxl-4 {
14228
    margin-right: 1.5rem !important;
14229
  }
16848 stevensc 14230
 
16825 efrain 14231
  .me-xxl-5 {
14232
    margin-right: 3rem !important;
14233
  }
16848 stevensc 14234
 
16825 efrain 14235
  .me-xxl-6 {
14236
    margin-right: 4.5rem !important;
14237
  }
16848 stevensc 14238
 
16825 efrain 14239
  .me-xxl-7 {
14240
    margin-right: 6rem !important;
14241
  }
16848 stevensc 14242
 
16825 efrain 14243
  .me-xxl-auto {
14244
    margin-right: auto !important;
14245
  }
16848 stevensc 14246
 
16825 efrain 14247
  .mb-xxl-0 {
14248
    margin-bottom: 0 !important;
14249
  }
16848 stevensc 14250
 
16825 efrain 14251
  .mb-xxl-1 {
14252
    margin-bottom: 0.25rem !important;
14253
  }
16848 stevensc 14254
 
16825 efrain 14255
  .mb-xxl-2 {
14256
    margin-bottom: 0.5rem !important;
14257
  }
16848 stevensc 14258
 
16825 efrain 14259
  .mb-xxl-3 {
14260
    margin-bottom: 1rem !important;
14261
  }
16848 stevensc 14262
 
16825 efrain 14263
  .mb-xxl-4 {
14264
    margin-bottom: 1.5rem !important;
14265
  }
16848 stevensc 14266
 
16825 efrain 14267
  .mb-xxl-5 {
14268
    margin-bottom: 3rem !important;
14269
  }
16848 stevensc 14270
 
16825 efrain 14271
  .mb-xxl-6 {
14272
    margin-bottom: 4.5rem !important;
14273
  }
16848 stevensc 14274
 
16825 efrain 14275
  .mb-xxl-7 {
14276
    margin-bottom: 6rem !important;
14277
  }
16848 stevensc 14278
 
16825 efrain 14279
  .mb-xxl-auto {
14280
    margin-bottom: auto !important;
14281
  }
16848 stevensc 14282
 
16825 efrain 14283
  .ms-xxl-0 {
14284
    margin-left: 0 !important;
14285
  }
16848 stevensc 14286
 
16825 efrain 14287
  .ms-xxl-1 {
14288
    margin-left: 0.25rem !important;
14289
  }
16848 stevensc 14290
 
16825 efrain 14291
  .ms-xxl-2 {
14292
    margin-left: 0.5rem !important;
14293
  }
16848 stevensc 14294
 
16825 efrain 14295
  .ms-xxl-3 {
14296
    margin-left: 1rem !important;
14297
  }
16848 stevensc 14298
 
16825 efrain 14299
  .ms-xxl-4 {
14300
    margin-left: 1.5rem !important;
14301
  }
16848 stevensc 14302
 
16825 efrain 14303
  .ms-xxl-5 {
14304
    margin-left: 3rem !important;
14305
  }
16848 stevensc 14306
 
16825 efrain 14307
  .ms-xxl-6 {
14308
    margin-left: 4.5rem !important;
14309
  }
16848 stevensc 14310
 
16825 efrain 14311
  .ms-xxl-7 {
14312
    margin-left: 6rem !important;
14313
  }
16848 stevensc 14314
 
16825 efrain 14315
  .ms-xxl-auto {
14316
    margin-left: auto !important;
14317
  }
16848 stevensc 14318
 
16825 efrain 14319
  .m-xxl-n1 {
14320
    margin: -0.25rem !important;
14321
  }
16848 stevensc 14322
 
16825 efrain 14323
  .m-xxl-n2 {
14324
    margin: -0.5rem !important;
14325
  }
16848 stevensc 14326
 
16825 efrain 14327
  .m-xxl-n3 {
14328
    margin: -1rem !important;
14329
  }
16848 stevensc 14330
 
16825 efrain 14331
  .m-xxl-n4 {
14332
    margin: -1.5rem !important;
14333
  }
16848 stevensc 14334
 
16825 efrain 14335
  .m-xxl-n5 {
14336
    margin: -3rem !important;
14337
  }
16848 stevensc 14338
 
16825 efrain 14339
  .m-xxl-n6 {
14340
    margin: -4.5rem !important;
14341
  }
16848 stevensc 14342
 
16825 efrain 14343
  .m-xxl-n7 {
14344
    margin: -6rem !important;
14345
  }
16848 stevensc 14346
 
16825 efrain 14347
  .mx-xxl-n1 {
14348
    margin-right: -0.25rem !important;
14349
    margin-left: -0.25rem !important;
14350
  }
16848 stevensc 14351
 
16825 efrain 14352
  .mx-xxl-n2 {
14353
    margin-right: -0.5rem !important;
14354
    margin-left: -0.5rem !important;
14355
  }
16848 stevensc 14356
 
16825 efrain 14357
  .mx-xxl-n3 {
14358
    margin-right: -1rem !important;
14359
    margin-left: -1rem !important;
14360
  }
16848 stevensc 14361
 
16825 efrain 14362
  .mx-xxl-n4 {
14363
    margin-right: -1.5rem !important;
14364
    margin-left: -1.5rem !important;
14365
  }
16848 stevensc 14366
 
16825 efrain 14367
  .mx-xxl-n5 {
14368
    margin-right: -3rem !important;
14369
    margin-left: -3rem !important;
14370
  }
16848 stevensc 14371
 
16825 efrain 14372
  .mx-xxl-n6 {
14373
    margin-right: -4.5rem !important;
14374
    margin-left: -4.5rem !important;
14375
  }
16848 stevensc 14376
 
16825 efrain 14377
  .mx-xxl-n7 {
14378
    margin-right: -6rem !important;
14379
    margin-left: -6rem !important;
14380
  }
16848 stevensc 14381
 
16825 efrain 14382
  .my-xxl-n1 {
14383
    margin-top: -0.25rem !important;
14384
    margin-bottom: -0.25rem !important;
14385
  }
16848 stevensc 14386
 
16825 efrain 14387
  .my-xxl-n2 {
14388
    margin-top: -0.5rem !important;
14389
    margin-bottom: -0.5rem !important;
14390
  }
16848 stevensc 14391
 
16825 efrain 14392
  .my-xxl-n3 {
14393
    margin-top: -1rem !important;
14394
    margin-bottom: -1rem !important;
14395
  }
16848 stevensc 14396
 
16825 efrain 14397
  .my-xxl-n4 {
14398
    margin-top: -1.5rem !important;
14399
    margin-bottom: -1.5rem !important;
14400
  }
16848 stevensc 14401
 
16825 efrain 14402
  .my-xxl-n5 {
14403
    margin-top: -3rem !important;
14404
    margin-bottom: -3rem !important;
14405
  }
16848 stevensc 14406
 
16825 efrain 14407
  .my-xxl-n6 {
14408
    margin-top: -4.5rem !important;
14409
    margin-bottom: -4.5rem !important;
14410
  }
16848 stevensc 14411
 
16825 efrain 14412
  .my-xxl-n7 {
14413
    margin-top: -6rem !important;
14414
    margin-bottom: -6rem !important;
14415
  }
16848 stevensc 14416
 
16825 efrain 14417
  .mt-xxl-n1 {
14418
    margin-top: -0.25rem !important;
14419
  }
16848 stevensc 14420
 
16825 efrain 14421
  .mt-xxl-n2 {
14422
    margin-top: -0.5rem !important;
14423
  }
16848 stevensc 14424
 
16825 efrain 14425
  .mt-xxl-n3 {
14426
    margin-top: -1rem !important;
14427
  }
16848 stevensc 14428
 
16825 efrain 14429
  .mt-xxl-n4 {
14430
    margin-top: -1.5rem !important;
14431
  }
16848 stevensc 14432
 
16825 efrain 14433
  .mt-xxl-n5 {
14434
    margin-top: -3rem !important;
14435
  }
16848 stevensc 14436
 
16825 efrain 14437
  .mt-xxl-n6 {
14438
    margin-top: -4.5rem !important;
14439
  }
16848 stevensc 14440
 
16825 efrain 14441
  .mt-xxl-n7 {
14442
    margin-top: -6rem !important;
14443
  }
16848 stevensc 14444
 
16825 efrain 14445
  .me-xxl-n1 {
14446
    margin-right: -0.25rem !important;
14447
  }
16848 stevensc 14448
 
16825 efrain 14449
  .me-xxl-n2 {
14450
    margin-right: -0.5rem !important;
14451
  }
16848 stevensc 14452
 
16825 efrain 14453
  .me-xxl-n3 {
14454
    margin-right: -1rem !important;
14455
  }
16848 stevensc 14456
 
16825 efrain 14457
  .me-xxl-n4 {
14458
    margin-right: -1.5rem !important;
14459
  }
16848 stevensc 14460
 
16825 efrain 14461
  .me-xxl-n5 {
14462
    margin-right: -3rem !important;
14463
  }
16848 stevensc 14464
 
16825 efrain 14465
  .me-xxl-n6 {
14466
    margin-right: -4.5rem !important;
14467
  }
16848 stevensc 14468
 
16825 efrain 14469
  .me-xxl-n7 {
14470
    margin-right: -6rem !important;
14471
  }
16848 stevensc 14472
 
16825 efrain 14473
  .mb-xxl-n1 {
14474
    margin-bottom: -0.25rem !important;
14475
  }
16848 stevensc 14476
 
16825 efrain 14477
  .mb-xxl-n2 {
14478
    margin-bottom: -0.5rem !important;
14479
  }
16848 stevensc 14480
 
16825 efrain 14481
  .mb-xxl-n3 {
14482
    margin-bottom: -1rem !important;
14483
  }
16848 stevensc 14484
 
16825 efrain 14485
  .mb-xxl-n4 {
14486
    margin-bottom: -1.5rem !important;
14487
  }
16848 stevensc 14488
 
16825 efrain 14489
  .mb-xxl-n5 {
14490
    margin-bottom: -3rem !important;
14491
  }
16848 stevensc 14492
 
16825 efrain 14493
  .mb-xxl-n6 {
14494
    margin-bottom: -4.5rem !important;
14495
  }
16848 stevensc 14496
 
16825 efrain 14497
  .mb-xxl-n7 {
14498
    margin-bottom: -6rem !important;
14499
  }
16848 stevensc 14500
 
16825 efrain 14501
  .ms-xxl-n1 {
14502
    margin-left: -0.25rem !important;
14503
  }
16848 stevensc 14504
 
16825 efrain 14505
  .ms-xxl-n2 {
14506
    margin-left: -0.5rem !important;
14507
  }
16848 stevensc 14508
 
16825 efrain 14509
  .ms-xxl-n3 {
14510
    margin-left: -1rem !important;
14511
  }
16848 stevensc 14512
 
16825 efrain 14513
  .ms-xxl-n4 {
14514
    margin-left: -1.5rem !important;
14515
  }
16848 stevensc 14516
 
16825 efrain 14517
  .ms-xxl-n5 {
14518
    margin-left: -3rem !important;
14519
  }
16848 stevensc 14520
 
16825 efrain 14521
  .ms-xxl-n6 {
14522
    margin-left: -4.5rem !important;
14523
  }
16848 stevensc 14524
 
16825 efrain 14525
  .ms-xxl-n7 {
14526
    margin-left: -6rem !important;
14527
  }
16848 stevensc 14528
 
16825 efrain 14529
  .p-xxl-0 {
14530
    padding: 0 !important;
14531
  }
16848 stevensc 14532
 
16825 efrain 14533
  .p-xxl-1 {
14534
    padding: 0.25rem !important;
14535
  }
16848 stevensc 14536
 
16825 efrain 14537
  .p-xxl-2 {
14538
    padding: 0.5rem !important;
14539
  }
16848 stevensc 14540
 
16825 efrain 14541
  .p-xxl-3 {
14542
    padding: 1rem !important;
14543
  }
16848 stevensc 14544
 
16825 efrain 14545
  .p-xxl-4 {
14546
    padding: 1.5rem !important;
14547
  }
16848 stevensc 14548
 
16825 efrain 14549
  .p-xxl-5 {
14550
    padding: 3rem !important;
14551
  }
16848 stevensc 14552
 
16825 efrain 14553
  .p-xxl-6 {
14554
    padding: 4.5rem !important;
14555
  }
16848 stevensc 14556
 
16825 efrain 14557
  .p-xxl-7 {
14558
    padding: 6rem !important;
14559
  }
16848 stevensc 14560
 
16825 efrain 14561
  .px-xxl-0 {
14562
    padding-right: 0 !important;
14563
    padding-left: 0 !important;
14564
  }
16848 stevensc 14565
 
16825 efrain 14566
  .px-xxl-1 {
14567
    padding-right: 0.25rem !important;
14568
    padding-left: 0.25rem !important;
14569
  }
16848 stevensc 14570
 
16825 efrain 14571
  .px-xxl-2 {
14572
    padding-right: 0.5rem !important;
14573
    padding-left: 0.5rem !important;
14574
  }
16848 stevensc 14575
 
16825 efrain 14576
  .px-xxl-3 {
14577
    padding-right: 1rem !important;
14578
    padding-left: 1rem !important;
14579
  }
16848 stevensc 14580
 
16825 efrain 14581
  .px-xxl-4 {
14582
    padding-right: 1.5rem !important;
14583
    padding-left: 1.5rem !important;
14584
  }
16848 stevensc 14585
 
16825 efrain 14586
  .px-xxl-5 {
14587
    padding-right: 3rem !important;
14588
    padding-left: 3rem !important;
14589
  }
16848 stevensc 14590
 
16825 efrain 14591
  .px-xxl-6 {
14592
    padding-right: 4.5rem !important;
14593
    padding-left: 4.5rem !important;
14594
  }
16848 stevensc 14595
 
16825 efrain 14596
  .px-xxl-7 {
14597
    padding-right: 6rem !important;
14598
    padding-left: 6rem !important;
14599
  }
16848 stevensc 14600
 
16825 efrain 14601
  .py-xxl-0 {
14602
    padding-top: 0 !important;
14603
    padding-bottom: 0 !important;
14604
  }
16848 stevensc 14605
 
16825 efrain 14606
  .py-xxl-1 {
14607
    padding-top: 0.25rem !important;
14608
    padding-bottom: 0.25rem !important;
14609
  }
16848 stevensc 14610
 
16825 efrain 14611
  .py-xxl-2 {
14612
    padding-top: 0.5rem !important;
14613
    padding-bottom: 0.5rem !important;
14614
  }
16848 stevensc 14615
 
16825 efrain 14616
  .py-xxl-3 {
14617
    padding-top: 1rem !important;
14618
    padding-bottom: 1rem !important;
14619
  }
16848 stevensc 14620
 
16825 efrain 14621
  .py-xxl-4 {
14622
    padding-top: 1.5rem !important;
14623
    padding-bottom: 1.5rem !important;
14624
  }
16848 stevensc 14625
 
16825 efrain 14626
  .py-xxl-5 {
14627
    padding-top: 3rem !important;
14628
    padding-bottom: 3rem !important;
14629
  }
16848 stevensc 14630
 
16825 efrain 14631
  .py-xxl-6 {
14632
    padding-top: 4.5rem !important;
14633
    padding-bottom: 4.5rem !important;
14634
  }
16848 stevensc 14635
 
16825 efrain 14636
  .py-xxl-7 {
14637
    padding-top: 6rem !important;
14638
    padding-bottom: 6rem !important;
14639
  }
16848 stevensc 14640
 
16825 efrain 14641
  .pt-xxl-0 {
14642
    padding-top: 0 !important;
14643
  }
16848 stevensc 14644
 
16825 efrain 14645
  .pt-xxl-1 {
14646
    padding-top: 0.25rem !important;
14647
  }
16848 stevensc 14648
 
16825 efrain 14649
  .pt-xxl-2 {
14650
    padding-top: 0.5rem !important;
14651
  }
16848 stevensc 14652
 
16825 efrain 14653
  .pt-xxl-3 {
14654
    padding-top: 1rem !important;
14655
  }
16848 stevensc 14656
 
16825 efrain 14657
  .pt-xxl-4 {
14658
    padding-top: 1.5rem !important;
14659
  }
16848 stevensc 14660
 
16825 efrain 14661
  .pt-xxl-5 {
14662
    padding-top: 3rem !important;
14663
  }
16848 stevensc 14664
 
16825 efrain 14665
  .pt-xxl-6 {
14666
    padding-top: 4.5rem !important;
14667
  }
16848 stevensc 14668
 
16825 efrain 14669
  .pt-xxl-7 {
14670
    padding-top: 6rem !important;
14671
  }
16848 stevensc 14672
 
16825 efrain 14673
  .pe-xxl-0 {
14674
    padding-right: 0 !important;
14675
  }
16848 stevensc 14676
 
16825 efrain 14677
  .pe-xxl-1 {
14678
    padding-right: 0.25rem !important;
14679
  }
16848 stevensc 14680
 
16825 efrain 14681
  .pe-xxl-2 {
14682
    padding-right: 0.5rem !important;
14683
  }
16848 stevensc 14684
 
16825 efrain 14685
  .pe-xxl-3 {
14686
    padding-right: 1rem !important;
14687
  }
16848 stevensc 14688
 
16825 efrain 14689
  .pe-xxl-4 {
14690
    padding-right: 1.5rem !important;
14691
  }
16848 stevensc 14692
 
16825 efrain 14693
  .pe-xxl-5 {
14694
    padding-right: 3rem !important;
14695
  }
16848 stevensc 14696
 
16825 efrain 14697
  .pe-xxl-6 {
14698
    padding-right: 4.5rem !important;
14699
  }
16848 stevensc 14700
 
16825 efrain 14701
  .pe-xxl-7 {
14702
    padding-right: 6rem !important;
14703
  }
16848 stevensc 14704
 
16825 efrain 14705
  .pb-xxl-0 {
14706
    padding-bottom: 0 !important;
14707
  }
16848 stevensc 14708
 
16825 efrain 14709
  .pb-xxl-1 {
14710
    padding-bottom: 0.25rem !important;
14711
  }
16848 stevensc 14712
 
16825 efrain 14713
  .pb-xxl-2 {
14714
    padding-bottom: 0.5rem !important;
14715
  }
16848 stevensc 14716
 
16825 efrain 14717
  .pb-xxl-3 {
14718
    padding-bottom: 1rem !important;
14719
  }
16848 stevensc 14720
 
16825 efrain 14721
  .pb-xxl-4 {
14722
    padding-bottom: 1.5rem !important;
14723
  }
16848 stevensc 14724
 
16825 efrain 14725
  .pb-xxl-5 {
14726
    padding-bottom: 3rem !important;
14727
  }
16848 stevensc 14728
 
16825 efrain 14729
  .pb-xxl-6 {
14730
    padding-bottom: 4.5rem !important;
14731
  }
16848 stevensc 14732
 
16825 efrain 14733
  .pb-xxl-7 {
14734
    padding-bottom: 6rem !important;
14735
  }
16848 stevensc 14736
 
16825 efrain 14737
  .ps-xxl-0 {
14738
    padding-left: 0 !important;
14739
  }
16848 stevensc 14740
 
16825 efrain 14741
  .ps-xxl-1 {
14742
    padding-left: 0.25rem !important;
14743
  }
16848 stevensc 14744
 
16825 efrain 14745
  .ps-xxl-2 {
14746
    padding-left: 0.5rem !important;
14747
  }
16848 stevensc 14748
 
16825 efrain 14749
  .ps-xxl-3 {
14750
    padding-left: 1rem !important;
14751
  }
16848 stevensc 14752
 
16825 efrain 14753
  .ps-xxl-4 {
14754
    padding-left: 1.5rem !important;
14755
  }
16848 stevensc 14756
 
16825 efrain 14757
  .ps-xxl-5 {
14758
    padding-left: 3rem !important;
14759
  }
16848 stevensc 14760
 
16825 efrain 14761
  .ps-xxl-6 {
14762
    padding-left: 4.5rem !important;
14763
  }
16848 stevensc 14764
 
16825 efrain 14765
  .ps-xxl-7 {
14766
    padding-left: 6rem !important;
14767
  }
16848 stevensc 14768
 
16825 efrain 14769
  .gap-xxl-0 {
14770
    gap: 0 !important;
14771
  }
16848 stevensc 14772
 
16825 efrain 14773
  .gap-xxl-1 {
14774
    gap: 0.25rem !important;
14775
  }
16848 stevensc 14776
 
16825 efrain 14777
  .gap-xxl-2 {
14778
    gap: 0.5rem !important;
14779
  }
16848 stevensc 14780
 
16825 efrain 14781
  .gap-xxl-3 {
14782
    gap: 1rem !important;
14783
  }
16848 stevensc 14784
 
16825 efrain 14785
  .gap-xxl-4 {
14786
    gap: 1.5rem !important;
14787
  }
16848 stevensc 14788
 
16825 efrain 14789
  .gap-xxl-5 {
14790
    gap: 3rem !important;
14791
  }
16848 stevensc 14792
 
16825 efrain 14793
  .gap-xxl-6 {
14794
    gap: 4.5rem !important;
14795
  }
16848 stevensc 14796
 
16825 efrain 14797
  .gap-xxl-7 {
14798
    gap: 6rem !important;
14799
  }
16848 stevensc 14800
 
16825 efrain 14801
  .text-xxl-start {
14802
    text-align: left !important;
14803
  }
16848 stevensc 14804
 
16825 efrain 14805
  .text-xxl-end {
14806
    text-align: right !important;
14807
  }
16848 stevensc 14808
 
16825 efrain 14809
  .text-xxl-center {
14810
    text-align: center !important;
14811
  }
14812
}
16848 stevensc 14813
 
16825 efrain 14814
@media (min-width: 1200px) {
14815
  .fs-1 {
14816
    font-size: 2.5rem !important;
14817
  }
16848 stevensc 14818
 
16825 efrain 14819
  .fs-2 {
14820
    font-size: 2rem !important;
14821
  }
16848 stevensc 14822
 
16825 efrain 14823
  .fs-3 {
14824
    font-size: 1.5rem !important;
14825
  }
14826
}
16848 stevensc 14827
 
16825 efrain 14828
@media print {
14829
  .d-print-inline {
14830
    display: inline !important;
14831
  }
16848 stevensc 14832
 
16825 efrain 14833
  .d-print-inline-block {
14834
    display: inline-block !important;
14835
  }
16848 stevensc 14836
 
16825 efrain 14837
  .d-print-block {
14838
    display: block !important;
14839
  }
16848 stevensc 14840
 
16825 efrain 14841
  .d-print-grid {
14842
    display: grid !important;
14843
  }
16848 stevensc 14844
 
16825 efrain 14845
  .d-print-table {
14846
    display: table !important;
14847
  }
16848 stevensc 14848
 
16825 efrain 14849
  .d-print-table-row {
14850
    display: table-row !important;
14851
  }
16848 stevensc 14852
 
16825 efrain 14853
  .d-print-table-cell {
14854
    display: table-cell !important;
14855
  }
16848 stevensc 14856
 
16825 efrain 14857
  .d-print-flex {
14858
    display: flex !important;
14859
  }
16848 stevensc 14860
 
16825 efrain 14861
  .d-print-inline-flex {
14862
    display: inline-flex !important;
14863
  }
16848 stevensc 14864
 
16825 efrain 14865
  .d-print-none {
14866
    display: none !important;
14867
  }
14868
}
16848 stevensc 14869
 
16825 efrain 14870
@keyframes dropdownAnimation {
14871
  from {
14872
    opacity: 0;
14873
    transform: translate3d(0, 20px, 0);
14874
  }
16848 stevensc 14875
 
16825 efrain 14876
  to {
14877
    opacity: 1;
14878
    transform: none;
14879
    transform: translate3d(0, 0px, 0);
14880
  }
14881
}
16848 stevensc 14882
 
14883
.dropdownAnimation,
14884
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14885
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14886
  -webkit-animation-name: dropdownAnimation;
14887
  animation-name: dropdownAnimation;
14888
  -webkit-animation-duration: 0.2s;
14889
  animation-duration: 0.2s;
14890
  -webkit-animation-fill-mode: both;
14891
  animation-fill-mode: both;
14892
}
14893
 
14894
@keyframes fadeOut {
14895
  from {
14896
    opacity: 1;
14897
  }
16848 stevensc 14898
 
16825 efrain 14899
  to {
14900
    opacity: 0;
14901
  }
14902
}
16848 stevensc 14903
 
16825 efrain 14904
.fadeOut {
14905
  animation-name: fadeOUt;
14906
}
14907
 
14908
@keyframes fadeInUp {
14909
  from {
14910
    opacity: 0;
14911
    transform: translate3d(0, 100%, 0);
14912
  }
16848 stevensc 14913
 
16825 efrain 14914
  to {
14915
    opacity: 1;
14916
    transform: none;
14917
  }
14918
}
16848 stevensc 14919
 
16825 efrain 14920
.fadeInUp {
14921
  animation-name: fadeInUp;
14922
}
14923
 
16848 stevensc 14924
.infinite-spin,
14925
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14926
  animation-name: spin;
14927
  animation-duration: 3s;
14928
  animation-iteration-count: infinite;
14929
  animation-timing-function: linear;
14930
}
16848 stevensc 14931
 
16825 efrain 14932
@keyframes spin {
14933
  from {
14934
    transform: rotate(0deg);
14935
  }
16848 stevensc 14936
 
16825 efrain 14937
  to {
14938
    transform: rotate(360deg);
14939
  }
14940
}
14941
 
16848 stevensc 14942
.pulse,
14943
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14944
  animation-name: pulse;
14945
  animation-duration: 0.9s;
14946
  animation-iteration-count: infinite;
14947
  animation-timing-function: ease-out;
14948
}
16848 stevensc 14949
 
16825 efrain 14950
@keyframes pulse {
14951
  0% {
14952
    opacity: 1;
14953
    width: 7px;
14954
    height: 7px;
14955
    left: 0;
14956
    top: 0;
14957
  }
16848 stevensc 14958
 
16825 efrain 14959
  95% {
14960
    opacity: 0.1;
14961
    left: -10.5px;
14962
    top: -10.5px;
14963
    width: 28px;
14964
    height: 28px;
14965
  }
16848 stevensc 14966
 
16825 efrain 14967
  100% {
14968
    opacity: 0;
14969
    width: 7px;
14970
    height: 7px;
14971
    left: 0;
14972
    top: 0;
14973
  }
14974
}
14975
 
14976
.wd-5 {
14977
  width: 5px;
14978
}
14979
 
14980
.wd-5p {
14981
  width: 5%;
14982
}
14983
 
14984
.mx-wd-5p {
14985
  max-width: 5%;
14986
}
14987
 
14988
.mn-wd-5p {
14989
  min-width: 5%;
14990
}
14991
 
14992
.wd-5-f {
14993
  width: 5px !important;
14994
}
14995
 
14996
.wd-5p-f {
14997
  width: 5% !important;
14998
}
14999
 
15000
.mx-wd-5p-f {
15001
  max-width: 5% !important;
15002
}
15003
 
15004
.mn-wd-5p-f {
15005
  min-width: 5% !important;
15006
}
15007
 
15008
.wd-10 {
15009
  width: 10px;
15010
}
15011
 
15012
.wd-10p {
15013
  width: 10%;
15014
}
15015
 
15016
.mx-wd-10p {
15017
  max-width: 10%;
15018
}
15019
 
15020
.mn-wd-10p {
15021
  min-width: 10%;
15022
}
15023
 
15024
.wd-10-f {
15025
  width: 10px !important;
15026
}
15027
 
15028
.wd-10p-f {
15029
  width: 10% !important;
15030
}
15031
 
15032
.mx-wd-10p-f {
15033
  max-width: 10% !important;
15034
}
15035
 
15036
.mn-wd-10p-f {
15037
  min-width: 10% !important;
15038
}
15039
 
15040
.wd-15 {
15041
  width: 15px;
15042
}
15043
 
15044
.wd-15p {
15045
  width: 15%;
15046
}
15047
 
15048
.mx-wd-15p {
15049
  max-width: 15%;
15050
}
15051
 
15052
.mn-wd-15p {
15053
  min-width: 15%;
15054
}
15055
 
15056
.wd-15-f {
15057
  width: 15px !important;
15058
}
15059
 
15060
.wd-15p-f {
15061
  width: 15% !important;
15062
}
15063
 
15064
.mx-wd-15p-f {
15065
  max-width: 15% !important;
15066
}
15067
 
15068
.mn-wd-15p-f {
15069
  min-width: 15% !important;
15070
}
15071
 
15072
.wd-20 {
15073
  width: 20px;
15074
}
15075
 
15076
.wd-20p {
15077
  width: 20%;
15078
}
15079
 
15080
.mx-wd-20p {
15081
  max-width: 20%;
15082
}
15083
 
15084
.mn-wd-20p {
15085
  min-width: 20%;
15086
}
15087
 
15088
.wd-20-f {
15089
  width: 20px !important;
15090
}
15091
 
15092
.wd-20p-f {
15093
  width: 20% !important;
15094
}
15095
 
15096
.mx-wd-20p-f {
15097
  max-width: 20% !important;
15098
}
15099
 
15100
.mn-wd-20p-f {
15101
  min-width: 20% !important;
15102
}
15103
 
15104
.wd-25 {
15105
  width: 25px;
15106
}
15107
 
15108
.wd-25p {
15109
  width: 25%;
15110
}
15111
 
15112
.mx-wd-25p {
15113
  max-width: 25%;
15114
}
15115
 
15116
.mn-wd-25p {
15117
  min-width: 25%;
15118
}
15119
 
15120
.wd-25-f {
15121
  width: 25px !important;
15122
}
15123
 
15124
.wd-25p-f {
15125
  width: 25% !important;
15126
}
15127
 
15128
.mx-wd-25p-f {
15129
  max-width: 25% !important;
15130
}
15131
 
15132
.mn-wd-25p-f {
15133
  min-width: 25% !important;
15134
}
15135
 
15136
.wd-30 {
15137
  width: 30px;
15138
}
15139
 
15140
.wd-30p {
15141
  width: 30%;
15142
}
15143
 
15144
.mx-wd-30p {
15145
  max-width: 30%;
15146
}
15147
 
15148
.mn-wd-30p {
15149
  min-width: 30%;
15150
}
15151
 
15152
.wd-30-f {
15153
  width: 30px !important;
15154
}
15155
 
15156
.wd-30p-f {
15157
  width: 30% !important;
15158
}
15159
 
15160
.mx-wd-30p-f {
15161
  max-width: 30% !important;
15162
}
15163
 
15164
.mn-wd-30p-f {
15165
  min-width: 30% !important;
15166
}
15167
 
15168
.wd-35 {
15169
  width: 35px;
15170
}
15171
 
15172
.wd-35p {
15173
  width: 35%;
15174
}
15175
 
15176
.mx-wd-35p {
15177
  max-width: 35%;
15178
}
15179
 
15180
.mn-wd-35p {
15181
  min-width: 35%;
15182
}
15183
 
15184
.wd-35-f {
15185
  width: 35px !important;
15186
}
15187
 
15188
.wd-35p-f {
15189
  width: 35% !important;
15190
}
15191
 
15192
.mx-wd-35p-f {
15193
  max-width: 35% !important;
15194
}
15195
 
15196
.mn-wd-35p-f {
15197
  min-width: 35% !important;
15198
}
15199
 
15200
.wd-40 {
15201
  width: 40px;
15202
}
15203
 
15204
.wd-40p {
15205
  width: 40%;
15206
}
15207
 
15208
.mx-wd-40p {
15209
  max-width: 40%;
15210
}
15211
 
15212
.mn-wd-40p {
15213
  min-width: 40%;
15214
}
15215
 
15216
.wd-40-f {
15217
  width: 40px !important;
15218
}
15219
 
15220
.wd-40p-f {
15221
  width: 40% !important;
15222
}
15223
 
15224
.mx-wd-40p-f {
15225
  max-width: 40% !important;
15226
}
15227
 
15228
.mn-wd-40p-f {
15229
  min-width: 40% !important;
15230
}
15231
 
15232
.wd-45 {
15233
  width: 45px;
15234
}
15235
 
15236
.wd-45p {
15237
  width: 45%;
15238
}
15239
 
15240
.mx-wd-45p {
15241
  max-width: 45%;
15242
}
15243
 
15244
.mn-wd-45p {
15245
  min-width: 45%;
15246
}
15247
 
15248
.wd-45-f {
15249
  width: 45px !important;
15250
}
15251
 
15252
.wd-45p-f {
15253
  width: 45% !important;
15254
}
15255
 
15256
.mx-wd-45p-f {
15257
  max-width: 45% !important;
15258
}
15259
 
15260
.mn-wd-45p-f {
15261
  min-width: 45% !important;
15262
}
15263
 
15264
.wd-50 {
15265
  width: 50px;
15266
}
15267
 
15268
.wd-50p {
15269
  width: 50%;
15270
}
15271
 
15272
.mx-wd-50p {
15273
  max-width: 50%;
15274
}
15275
 
15276
.mn-wd-50p {
15277
  min-width: 50%;
15278
}
15279
 
15280
.wd-50-f {
15281
  width: 50px !important;
15282
}
15283
 
15284
.wd-50p-f {
15285
  width: 50% !important;
15286
}
15287
 
15288
.mx-wd-50p-f {
15289
  max-width: 50% !important;
15290
}
15291
 
15292
.mn-wd-50p-f {
15293
  min-width: 50% !important;
15294
}
15295
 
15296
.wd-55 {
15297
  width: 55px;
15298
}
15299
 
15300
.wd-55p {
15301
  width: 55%;
15302
}
15303
 
15304
.mx-wd-55p {
15305
  max-width: 55%;
15306
}
15307
 
15308
.mn-wd-55p {
15309
  min-width: 55%;
15310
}
15311
 
15312
.wd-55-f {
15313
  width: 55px !important;
15314
}
15315
 
15316
.wd-55p-f {
15317
  width: 55% !important;
15318
}
15319
 
15320
.mx-wd-55p-f {
15321
  max-width: 55% !important;
15322
}
15323
 
15324
.mn-wd-55p-f {
15325
  min-width: 55% !important;
15326
}
15327
 
15328
.wd-60 {
15329
  width: 60px;
15330
}
15331
 
15332
.wd-60p {
15333
  width: 60%;
15334
}
15335
 
15336
.mx-wd-60p {
15337
  max-width: 60%;
15338
}
15339
 
15340
.mn-wd-60p {
15341
  min-width: 60%;
15342
}
15343
 
15344
.wd-60-f {
15345
  width: 60px !important;
15346
}
15347
 
15348
.wd-60p-f {
15349
  width: 60% !important;
15350
}
15351
 
15352
.mx-wd-60p-f {
15353
  max-width: 60% !important;
15354
}
15355
 
15356
.mn-wd-60p-f {
15357
  min-width: 60% !important;
15358
}
15359
 
15360
.wd-65 {
15361
  width: 65px;
15362
}
15363
 
15364
.wd-65p {
15365
  width: 65%;
15366
}
15367
 
15368
.mx-wd-65p {
15369
  max-width: 65%;
15370
}
15371
 
15372
.mn-wd-65p {
15373
  min-width: 65%;
15374
}
15375
 
15376
.wd-65-f {
15377
  width: 65px !important;
15378
}
15379
 
15380
.wd-65p-f {
15381
  width: 65% !important;
15382
}
15383
 
15384
.mx-wd-65p-f {
15385
  max-width: 65% !important;
15386
}
15387
 
15388
.mn-wd-65p-f {
15389
  min-width: 65% !important;
15390
}
15391
 
15392
.wd-70 {
15393
  width: 70px;
15394
}
15395
 
15396
.wd-70p {
15397
  width: 70%;
15398
}
15399
 
15400
.mx-wd-70p {
15401
  max-width: 70%;
15402
}
15403
 
15404
.mn-wd-70p {
15405
  min-width: 70%;
15406
}
15407
 
15408
.wd-70-f {
15409
  width: 70px !important;
15410
}
15411
 
15412
.wd-70p-f {
15413
  width: 70% !important;
15414
}
15415
 
15416
.mx-wd-70p-f {
15417
  max-width: 70% !important;
15418
}
15419
 
15420
.mn-wd-70p-f {
15421
  min-width: 70% !important;
15422
}
15423
 
15424
.wd-75 {
15425
  width: 75px;
15426
}
15427
 
15428
.wd-75p {
15429
  width: 75%;
15430
}
15431
 
15432
.mx-wd-75p {
15433
  max-width: 75%;
15434
}
15435
 
15436
.mn-wd-75p {
15437
  min-width: 75%;
15438
}
15439
 
15440
.wd-75-f {
15441
  width: 75px !important;
15442
}
15443
 
15444
.wd-75p-f {
15445
  width: 75% !important;
15446
}
15447
 
15448
.mx-wd-75p-f {
15449
  max-width: 75% !important;
15450
}
15451
 
15452
.mn-wd-75p-f {
15453
  min-width: 75% !important;
15454
}
15455
 
15456
.wd-80 {
15457
  width: 80px;
15458
}
15459
 
15460
.wd-80p {
15461
  width: 80%;
15462
}
15463
 
15464
.mx-wd-80p {
15465
  max-width: 80%;
15466
}
15467
 
15468
.mn-wd-80p {
15469
  min-width: 80%;
15470
}
15471
 
15472
.wd-80-f {
15473
  width: 80px !important;
15474
}
15475
 
15476
.wd-80p-f {
15477
  width: 80% !important;
15478
}
15479
 
15480
.mx-wd-80p-f {
15481
  max-width: 80% !important;
15482
}
15483
 
15484
.mn-wd-80p-f {
15485
  min-width: 80% !important;
15486
}
15487
 
15488
.wd-85 {
15489
  width: 85px;
15490
}
15491
 
15492
.wd-85p {
15493
  width: 85%;
15494
}
15495
 
15496
.mx-wd-85p {
15497
  max-width: 85%;
15498
}
15499
 
15500
.mn-wd-85p {
15501
  min-width: 85%;
15502
}
15503
 
15504
.wd-85-f {
15505
  width: 85px !important;
15506
}
15507
 
15508
.wd-85p-f {
15509
  width: 85% !important;
15510
}
15511
 
15512
.mx-wd-85p-f {
15513
  max-width: 85% !important;
15514
}
15515
 
15516
.mn-wd-85p-f {
15517
  min-width: 85% !important;
15518
}
15519
 
15520
.wd-90 {
15521
  width: 90px;
15522
}
15523
 
15524
.wd-90p {
15525
  width: 90%;
15526
}
15527
 
15528
.mx-wd-90p {
15529
  max-width: 90%;
15530
}
15531
 
15532
.mn-wd-90p {
15533
  min-width: 90%;
15534
}
15535
 
15536
.wd-90-f {
15537
  width: 90px !important;
15538
}
15539
 
15540
.wd-90p-f {
15541
  width: 90% !important;
15542
}
15543
 
15544
.mx-wd-90p-f {
15545
  max-width: 90% !important;
15546
}
15547
 
15548
.mn-wd-90p-f {
15549
  min-width: 90% !important;
15550
}
15551
 
15552
.wd-95 {
15553
  width: 95px;
15554
}
15555
 
15556
.wd-95p {
15557
  width: 95%;
15558
}
15559
 
15560
.mx-wd-95p {
15561
  max-width: 95%;
15562
}
15563
 
15564
.mn-wd-95p {
15565
  min-width: 95%;
15566
}
15567
 
15568
.wd-95-f {
15569
  width: 95px !important;
15570
}
15571
 
15572
.wd-95p-f {
15573
  width: 95% !important;
15574
}
15575
 
15576
.mx-wd-95p-f {
15577
  max-width: 95% !important;
15578
}
15579
 
15580
.mn-wd-95p-f {
15581
  min-width: 95% !important;
15582
}
15583
 
15584
.wd-100 {
15585
  width: 100px;
15586
}
15587
 
15588
.wd-100p {
15589
  width: 100%;
15590
}
15591
 
15592
.mx-wd-100p {
15593
  max-width: 100%;
15594
}
15595
 
15596
.mn-wd-100p {
15597
  min-width: 100%;
15598
}
15599
 
15600
.wd-100-f {
15601
  width: 100px !important;
15602
}
15603
 
15604
.wd-100p-f {
15605
  width: 100% !important;
15606
}
15607
 
15608
.mx-wd-100p-f {
15609
  max-width: 100% !important;
15610
}
15611
 
15612
.mn-wd-100p-f {
15613
  min-width: 100% !important;
15614
}
15615
 
15616
.wd-150 {
15617
  width: 150px;
15618
}
15619
 
15620
.wd-150-f {
15621
  width: 150px !important;
15622
}
15623
 
15624
.wd-200 {
15625
  width: 200px;
15626
}
15627
 
15628
.wd-200-f {
15629
  width: 200px !important;
15630
}
15631
 
15632
.wd-250 {
15633
  width: 250px;
15634
}
15635
 
15636
.wd-250-f {
15637
  width: 250px !important;
15638
}
15639
 
15640
.wd-300 {
15641
  width: 300px;
15642
}
15643
 
15644
.wd-300-f {
15645
  width: 300px !important;
15646
}
15647
 
15648
.wd-350 {
15649
  width: 350px;
15650
}
15651
 
15652
.wd-350-f {
15653
  width: 350px !important;
15654
}
15655
 
15656
.wd-400 {
15657
  width: 400px;
15658
}
15659
 
15660
.wd-400-f {
15661
  width: 400px !important;
15662
}
15663
 
15664
.wd-450 {
15665
  width: 450px;
15666
}
15667
 
15668
.wd-450-f {
15669
  width: 450px !important;
15670
}
15671
 
15672
.wd-500 {
15673
  width: 500px;
15674
}
15675
 
15676
.wd-500-f {
15677
  width: 500px !important;
15678
}
15679
 
15680
.wd-550 {
15681
  width: 550px;
15682
}
15683
 
15684
.wd-550-f {
15685
  width: 550px !important;
15686
}
15687
 
15688
.wd-600 {
15689
  width: 600px;
15690
}
15691
 
15692
.wd-600-f {
15693
  width: 600px !important;
15694
}
15695
 
15696
.wd-650 {
15697
  width: 650px;
15698
}
15699
 
15700
.wd-650-f {
15701
  width: 650px !important;
15702
}
15703
 
15704
.wd-700 {
15705
  width: 700px;
15706
}
15707
 
15708
.wd-700-f {
15709
  width: 700px !important;
15710
}
15711
 
15712
.wd-750 {
15713
  width: 750px;
15714
}
15715
 
15716
.wd-750-f {
15717
  width: 750px !important;
15718
}
15719
 
15720
.wd-800 {
15721
  width: 800px;
15722
}
15723
 
15724
.wd-800-f {
15725
  width: 800px !important;
15726
}
15727
 
15728
.wd-850 {
15729
  width: 850px;
15730
}
15731
 
15732
.wd-850-f {
15733
  width: 850px !important;
15734
}
15735
 
15736
.wd-900 {
15737
  width: 900px;
15738
}
15739
 
15740
.wd-900-f {
15741
  width: 900px !important;
15742
}
15743
 
15744
.wd-950 {
15745
  width: 950px;
15746
}
15747
 
15748
.wd-950-f {
15749
  width: 950px !important;
15750
}
15751
 
15752
.wd-1000 {
15753
  width: 1000px;
15754
}
15755
 
15756
.wd-1000-f {
15757
  width: 1000px !important;
15758
}
15759
 
15760
@media (min-width: 480px) {
15761
  .wd-xs-5 {
15762
    width: 5px;
15763
  }
16848 stevensc 15764
 
16825 efrain 15765
  .wd-xs-5p {
15766
    width: 5%;
15767
  }
16848 stevensc 15768
 
16825 efrain 15769
  .mx-wd-xs-5p {
15770
    max-width: 5%;
15771
  }
16848 stevensc 15772
 
16825 efrain 15773
  .mn-wd-xs-5p {
15774
    min-width: 5%;
15775
  }
16848 stevensc 15776
 
16825 efrain 15777
  .wd-xs-5-f {
15778
    width: 5px !important;
15779
  }
16848 stevensc 15780
 
16825 efrain 15781
  .wd-xs-5p-f {
15782
    width: 5% !important;
15783
  }
16848 stevensc 15784
 
16825 efrain 15785
  .mx-wd-xs-5p-f {
15786
    max-width: 5% !important;
15787
  }
16848 stevensc 15788
 
16825 efrain 15789
  .mn-wd-xs-5p-f {
15790
    min-width: 5% !important;
15791
  }
16848 stevensc 15792
 
16825 efrain 15793
  .wd-xs-10 {
15794
    width: 10px;
15795
  }
16848 stevensc 15796
 
16825 efrain 15797
  .wd-xs-10p {
15798
    width: 10%;
15799
  }
16848 stevensc 15800
 
16825 efrain 15801
  .mx-wd-xs-10p {
15802
    max-width: 10%;
15803
  }
16848 stevensc 15804
 
16825 efrain 15805
  .mn-wd-xs-10p {
15806
    min-width: 10%;
15807
  }
16848 stevensc 15808
 
16825 efrain 15809
  .wd-xs-10-f {
15810
    width: 10px !important;
15811
  }
16848 stevensc 15812
 
16825 efrain 15813
  .wd-xs-10p-f {
15814
    width: 10% !important;
15815
  }
16848 stevensc 15816
 
16825 efrain 15817
  .mx-wd-xs-10p-f {
15818
    max-width: 10% !important;
15819
  }
16848 stevensc 15820
 
16825 efrain 15821
  .mn-wd-xs-10p-f {
15822
    min-width: 10% !important;
15823
  }
16848 stevensc 15824
 
16825 efrain 15825
  .wd-xs-15 {
15826
    width: 15px;
15827
  }
16848 stevensc 15828
 
16825 efrain 15829
  .wd-xs-15p {
15830
    width: 15%;
15831
  }
16848 stevensc 15832
 
16825 efrain 15833
  .mx-wd-xs-15p {
15834
    max-width: 15%;
15835
  }
16848 stevensc 15836
 
16825 efrain 15837
  .mn-wd-xs-15p {
15838
    min-width: 15%;
15839
  }
16848 stevensc 15840
 
16825 efrain 15841
  .wd-xs-15-f {
15842
    width: 15px !important;
15843
  }
16848 stevensc 15844
 
16825 efrain 15845
  .wd-xs-15p-f {
15846
    width: 15% !important;
15847
  }
16848 stevensc 15848
 
16825 efrain 15849
  .mx-wd-xs-15p-f {
15850
    max-width: 15% !important;
15851
  }
16848 stevensc 15852
 
16825 efrain 15853
  .mn-wd-xs-15p-f {
15854
    min-width: 15% !important;
15855
  }
16848 stevensc 15856
 
16825 efrain 15857
  .wd-xs-20 {
15858
    width: 20px;
15859
  }
16848 stevensc 15860
 
16825 efrain 15861
  .wd-xs-20p {
15862
    width: 20%;
15863
  }
16848 stevensc 15864
 
16825 efrain 15865
  .mx-wd-xs-20p {
15866
    max-width: 20%;
15867
  }
16848 stevensc 15868
 
16825 efrain 15869
  .mn-wd-xs-20p {
15870
    min-width: 20%;
15871
  }
16848 stevensc 15872
 
16825 efrain 15873
  .wd-xs-20-f {
15874
    width: 20px !important;
15875
  }
16848 stevensc 15876
 
16825 efrain 15877
  .wd-xs-20p-f {
15878
    width: 20% !important;
15879
  }
16848 stevensc 15880
 
16825 efrain 15881
  .mx-wd-xs-20p-f {
15882
    max-width: 20% !important;
15883
  }
16848 stevensc 15884
 
16825 efrain 15885
  .mn-wd-xs-20p-f {
15886
    min-width: 20% !important;
15887
  }
16848 stevensc 15888
 
16825 efrain 15889
  .wd-xs-25 {
15890
    width: 25px;
15891
  }
16848 stevensc 15892
 
16825 efrain 15893
  .wd-xs-25p {
15894
    width: 25%;
15895
  }
16848 stevensc 15896
 
16825 efrain 15897
  .mx-wd-xs-25p {
15898
    max-width: 25%;
15899
  }
16848 stevensc 15900
 
16825 efrain 15901
  .mn-wd-xs-25p {
15902
    min-width: 25%;
15903
  }
16848 stevensc 15904
 
16825 efrain 15905
  .wd-xs-25-f {
15906
    width: 25px !important;
15907
  }
16848 stevensc 15908
 
16825 efrain 15909
  .wd-xs-25p-f {
15910
    width: 25% !important;
15911
  }
16848 stevensc 15912
 
16825 efrain 15913
  .mx-wd-xs-25p-f {
15914
    max-width: 25% !important;
15915
  }
16848 stevensc 15916
 
16825 efrain 15917
  .mn-wd-xs-25p-f {
15918
    min-width: 25% !important;
15919
  }
16848 stevensc 15920
 
16825 efrain 15921
  .wd-xs-30 {
15922
    width: 30px;
15923
  }
16848 stevensc 15924
 
16825 efrain 15925
  .wd-xs-30p {
15926
    width: 30%;
15927
  }
16848 stevensc 15928
 
16825 efrain 15929
  .mx-wd-xs-30p {
15930
    max-width: 30%;
15931
  }
16848 stevensc 15932
 
16825 efrain 15933
  .mn-wd-xs-30p {
15934
    min-width: 30%;
15935
  }
16848 stevensc 15936
 
16825 efrain 15937
  .wd-xs-30-f {
15938
    width: 30px !important;
15939
  }
16848 stevensc 15940
 
16825 efrain 15941
  .wd-xs-30p-f {
15942
    width: 30% !important;
15943
  }
16848 stevensc 15944
 
16825 efrain 15945
  .mx-wd-xs-30p-f {
15946
    max-width: 30% !important;
15947
  }
16848 stevensc 15948
 
16825 efrain 15949
  .mn-wd-xs-30p-f {
15950
    min-width: 30% !important;
15951
  }
16848 stevensc 15952
 
16825 efrain 15953
  .wd-xs-35 {
15954
    width: 35px;
15955
  }
16848 stevensc 15956
 
16825 efrain 15957
  .wd-xs-35p {
15958
    width: 35%;
15959
  }
16848 stevensc 15960
 
16825 efrain 15961
  .mx-wd-xs-35p {
15962
    max-width: 35%;
15963
  }
16848 stevensc 15964
 
16825 efrain 15965
  .mn-wd-xs-35p {
15966
    min-width: 35%;
15967
  }
16848 stevensc 15968
 
16825 efrain 15969
  .wd-xs-35-f {
15970
    width: 35px !important;
15971
  }
16848 stevensc 15972
 
16825 efrain 15973
  .wd-xs-35p-f {
15974
    width: 35% !important;
15975
  }
16848 stevensc 15976
 
16825 efrain 15977
  .mx-wd-xs-35p-f {
15978
    max-width: 35% !important;
15979
  }
16848 stevensc 15980
 
16825 efrain 15981
  .mn-wd-xs-35p-f {
15982
    min-width: 35% !important;
15983
  }
16848 stevensc 15984
 
16825 efrain 15985
  .wd-xs-40 {
15986
    width: 40px;
15987
  }
16848 stevensc 15988
 
16825 efrain 15989
  .wd-xs-40p {
15990
    width: 40%;
15991
  }
16848 stevensc 15992
 
16825 efrain 15993
  .mx-wd-xs-40p {
15994
    max-width: 40%;
15995
  }
16848 stevensc 15996
 
16825 efrain 15997
  .mn-wd-xs-40p {
15998
    min-width: 40%;
15999
  }
16848 stevensc 16000
 
16825 efrain 16001
  .wd-xs-40-f {
16002
    width: 40px !important;
16003
  }
16848 stevensc 16004
 
16825 efrain 16005
  .wd-xs-40p-f {
16006
    width: 40% !important;
16007
  }
16848 stevensc 16008
 
16825 efrain 16009
  .mx-wd-xs-40p-f {
16010
    max-width: 40% !important;
16011
  }
16848 stevensc 16012
 
16825 efrain 16013
  .mn-wd-xs-40p-f {
16014
    min-width: 40% !important;
16015
  }
16848 stevensc 16016
 
16825 efrain 16017
  .wd-xs-45 {
16018
    width: 45px;
16019
  }
16848 stevensc 16020
 
16825 efrain 16021
  .wd-xs-45p {
16022
    width: 45%;
16023
  }
16848 stevensc 16024
 
16825 efrain 16025
  .mx-wd-xs-45p {
16026
    max-width: 45%;
16027
  }
16848 stevensc 16028
 
16825 efrain 16029
  .mn-wd-xs-45p {
16030
    min-width: 45%;
16031
  }
16848 stevensc 16032
 
16825 efrain 16033
  .wd-xs-45-f {
16034
    width: 45px !important;
16035
  }
16848 stevensc 16036
 
16825 efrain 16037
  .wd-xs-45p-f {
16038
    width: 45% !important;
16039
  }
16848 stevensc 16040
 
16825 efrain 16041
  .mx-wd-xs-45p-f {
16042
    max-width: 45% !important;
16043
  }
16848 stevensc 16044
 
16825 efrain 16045
  .mn-wd-xs-45p-f {
16046
    min-width: 45% !important;
16047
  }
16848 stevensc 16048
 
16825 efrain 16049
  .wd-xs-50 {
16050
    width: 50px;
16051
  }
16848 stevensc 16052
 
16825 efrain 16053
  .wd-xs-50p {
16054
    width: 50%;
16055
  }
16848 stevensc 16056
 
16825 efrain 16057
  .mx-wd-xs-50p {
16058
    max-width: 50%;
16059
  }
16848 stevensc 16060
 
16825 efrain 16061
  .mn-wd-xs-50p {
16062
    min-width: 50%;
16063
  }
16848 stevensc 16064
 
16825 efrain 16065
  .wd-xs-50-f {
16066
    width: 50px !important;
16067
  }
16848 stevensc 16068
 
16825 efrain 16069
  .wd-xs-50p-f {
16070
    width: 50% !important;
16071
  }
16848 stevensc 16072
 
16825 efrain 16073
  .mx-wd-xs-50p-f {
16074
    max-width: 50% !important;
16075
  }
16848 stevensc 16076
 
16825 efrain 16077
  .mn-wd-xs-50p-f {
16078
    min-width: 50% !important;
16079
  }
16848 stevensc 16080
 
16825 efrain 16081
  .wd-xs-55 {
16082
    width: 55px;
16083
  }
16848 stevensc 16084
 
16825 efrain 16085
  .wd-xs-55p {
16086
    width: 55%;
16087
  }
16848 stevensc 16088
 
16825 efrain 16089
  .mx-wd-xs-55p {
16090
    max-width: 55%;
16091
  }
16848 stevensc 16092
 
16825 efrain 16093
  .mn-wd-xs-55p {
16094
    min-width: 55%;
16095
  }
16848 stevensc 16096
 
16825 efrain 16097
  .wd-xs-55-f {
16098
    width: 55px !important;
16099
  }
16848 stevensc 16100
 
16825 efrain 16101
  .wd-xs-55p-f {
16102
    width: 55% !important;
16103
  }
16848 stevensc 16104
 
16825 efrain 16105
  .mx-wd-xs-55p-f {
16106
    max-width: 55% !important;
16107
  }
16848 stevensc 16108
 
16825 efrain 16109
  .mn-wd-xs-55p-f {
16110
    min-width: 55% !important;
16111
  }
16848 stevensc 16112
 
16825 efrain 16113
  .wd-xs-60 {
16114
    width: 60px;
16115
  }
16848 stevensc 16116
 
16825 efrain 16117
  .wd-xs-60p {
16118
    width: 60%;
16119
  }
16848 stevensc 16120
 
16825 efrain 16121
  .mx-wd-xs-60p {
16122
    max-width: 60%;
16123
  }
16848 stevensc 16124
 
16825 efrain 16125
  .mn-wd-xs-60p {
16126
    min-width: 60%;
16127
  }
16848 stevensc 16128
 
16825 efrain 16129
  .wd-xs-60-f {
16130
    width: 60px !important;
16131
  }
16848 stevensc 16132
 
16825 efrain 16133
  .wd-xs-60p-f {
16134
    width: 60% !important;
16135
  }
16848 stevensc 16136
 
16825 efrain 16137
  .mx-wd-xs-60p-f {
16138
    max-width: 60% !important;
16139
  }
16848 stevensc 16140
 
16825 efrain 16141
  .mn-wd-xs-60p-f {
16142
    min-width: 60% !important;
16143
  }
16848 stevensc 16144
 
16825 efrain 16145
  .wd-xs-65 {
16146
    width: 65px;
16147
  }
16848 stevensc 16148
 
16825 efrain 16149
  .wd-xs-65p {
16150
    width: 65%;
16151
  }
16848 stevensc 16152
 
16825 efrain 16153
  .mx-wd-xs-65p {
16154
    max-width: 65%;
16155
  }
16848 stevensc 16156
 
16825 efrain 16157
  .mn-wd-xs-65p {
16158
    min-width: 65%;
16159
  }
16848 stevensc 16160
 
16825 efrain 16161
  .wd-xs-65-f {
16162
    width: 65px !important;
16163
  }
16848 stevensc 16164
 
16825 efrain 16165
  .wd-xs-65p-f {
16166
    width: 65% !important;
16167
  }
16848 stevensc 16168
 
16825 efrain 16169
  .mx-wd-xs-65p-f {
16170
    max-width: 65% !important;
16171
  }
16848 stevensc 16172
 
16825 efrain 16173
  .mn-wd-xs-65p-f {
16174
    min-width: 65% !important;
16175
  }
16848 stevensc 16176
 
16825 efrain 16177
  .wd-xs-70 {
16178
    width: 70px;
16179
  }
16848 stevensc 16180
 
16825 efrain 16181
  .wd-xs-70p {
16182
    width: 70%;
16183
  }
16848 stevensc 16184
 
16825 efrain 16185
  .mx-wd-xs-70p {
16186
    max-width: 70%;
16187
  }
16848 stevensc 16188
 
16825 efrain 16189
  .mn-wd-xs-70p {
16190
    min-width: 70%;
16191
  }
16848 stevensc 16192
 
16825 efrain 16193
  .wd-xs-70-f {
16194
    width: 70px !important;
16195
  }
16848 stevensc 16196
 
16825 efrain 16197
  .wd-xs-70p-f {
16198
    width: 70% !important;
16199
  }
16848 stevensc 16200
 
16825 efrain 16201
  .mx-wd-xs-70p-f {
16202
    max-width: 70% !important;
16203
  }
16848 stevensc 16204
 
16825 efrain 16205
  .mn-wd-xs-70p-f {
16206
    min-width: 70% !important;
16207
  }
16848 stevensc 16208
 
16825 efrain 16209
  .wd-xs-75 {
16210
    width: 75px;
16211
  }
16848 stevensc 16212
 
16825 efrain 16213
  .wd-xs-75p {
16214
    width: 75%;
16215
  }
16848 stevensc 16216
 
16825 efrain 16217
  .mx-wd-xs-75p {
16218
    max-width: 75%;
16219
  }
16848 stevensc 16220
 
16825 efrain 16221
  .mn-wd-xs-75p {
16222
    min-width: 75%;
16223
  }
16848 stevensc 16224
 
16825 efrain 16225
  .wd-xs-75-f {
16226
    width: 75px !important;
16227
  }
16848 stevensc 16228
 
16825 efrain 16229
  .wd-xs-75p-f {
16230
    width: 75% !important;
16231
  }
16848 stevensc 16232
 
16825 efrain 16233
  .mx-wd-xs-75p-f {
16234
    max-width: 75% !important;
16235
  }
16848 stevensc 16236
 
16825 efrain 16237
  .mn-wd-xs-75p-f {
16238
    min-width: 75% !important;
16239
  }
16848 stevensc 16240
 
16825 efrain 16241
  .wd-xs-80 {
16242
    width: 80px;
16243
  }
16848 stevensc 16244
 
16825 efrain 16245
  .wd-xs-80p {
16246
    width: 80%;
16247
  }
16848 stevensc 16248
 
16825 efrain 16249
  .mx-wd-xs-80p {
16250
    max-width: 80%;
16251
  }
16848 stevensc 16252
 
16825 efrain 16253
  .mn-wd-xs-80p {
16254
    min-width: 80%;
16255
  }
16848 stevensc 16256
 
16825 efrain 16257
  .wd-xs-80-f {
16258
    width: 80px !important;
16259
  }
16848 stevensc 16260
 
16825 efrain 16261
  .wd-xs-80p-f {
16262
    width: 80% !important;
16263
  }
16848 stevensc 16264
 
16825 efrain 16265
  .mx-wd-xs-80p-f {
16266
    max-width: 80% !important;
16267
  }
16848 stevensc 16268
 
16825 efrain 16269
  .mn-wd-xs-80p-f {
16270
    min-width: 80% !important;
16271
  }
16848 stevensc 16272
 
16825 efrain 16273
  .wd-xs-85 {
16274
    width: 85px;
16275
  }
16848 stevensc 16276
 
16825 efrain 16277
  .wd-xs-85p {
16278
    width: 85%;
16279
  }
16848 stevensc 16280
 
16825 efrain 16281
  .mx-wd-xs-85p {
16282
    max-width: 85%;
16283
  }
16848 stevensc 16284
 
16825 efrain 16285
  .mn-wd-xs-85p {
16286
    min-width: 85%;
16287
  }
16848 stevensc 16288
 
16825 efrain 16289
  .wd-xs-85-f {
16290
    width: 85px !important;
16291
  }
16848 stevensc 16292
 
16825 efrain 16293
  .wd-xs-85p-f {
16294
    width: 85% !important;
16295
  }
16848 stevensc 16296
 
16825 efrain 16297
  .mx-wd-xs-85p-f {
16298
    max-width: 85% !important;
16299
  }
16848 stevensc 16300
 
16825 efrain 16301
  .mn-wd-xs-85p-f {
16302
    min-width: 85% !important;
16303
  }
16848 stevensc 16304
 
16825 efrain 16305
  .wd-xs-90 {
16306
    width: 90px;
16307
  }
16848 stevensc 16308
 
16825 efrain 16309
  .wd-xs-90p {
16310
    width: 90%;
16311
  }
16848 stevensc 16312
 
16825 efrain 16313
  .mx-wd-xs-90p {
16314
    max-width: 90%;
16315
  }
16848 stevensc 16316
 
16825 efrain 16317
  .mn-wd-xs-90p {
16318
    min-width: 90%;
16319
  }
16848 stevensc 16320
 
16825 efrain 16321
  .wd-xs-90-f {
16322
    width: 90px !important;
16323
  }
16848 stevensc 16324
 
16825 efrain 16325
  .wd-xs-90p-f {
16326
    width: 90% !important;
16327
  }
16848 stevensc 16328
 
16825 efrain 16329
  .mx-wd-xs-90p-f {
16330
    max-width: 90% !important;
16331
  }
16848 stevensc 16332
 
16825 efrain 16333
  .mn-wd-xs-90p-f {
16334
    min-width: 90% !important;
16335
  }
16848 stevensc 16336
 
16825 efrain 16337
  .wd-xs-95 {
16338
    width: 95px;
16339
  }
16848 stevensc 16340
 
16825 efrain 16341
  .wd-xs-95p {
16342
    width: 95%;
16343
  }
16848 stevensc 16344
 
16825 efrain 16345
  .mx-wd-xs-95p {
16346
    max-width: 95%;
16347
  }
16848 stevensc 16348
 
16825 efrain 16349
  .mn-wd-xs-95p {
16350
    min-width: 95%;
16351
  }
16848 stevensc 16352
 
16825 efrain 16353
  .wd-xs-95-f {
16354
    width: 95px !important;
16355
  }
16848 stevensc 16356
 
16825 efrain 16357
  .wd-xs-95p-f {
16358
    width: 95% !important;
16359
  }
16848 stevensc 16360
 
16825 efrain 16361
  .mx-wd-xs-95p-f {
16362
    max-width: 95% !important;
16363
  }
16848 stevensc 16364
 
16825 efrain 16365
  .mn-wd-xs-95p-f {
16366
    min-width: 95% !important;
16367
  }
16848 stevensc 16368
 
16825 efrain 16369
  .wd-xs-100 {
16370
    width: 100px;
16371
  }
16848 stevensc 16372
 
16825 efrain 16373
  .wd-xs-100p {
16374
    width: 100%;
16375
  }
16848 stevensc 16376
 
16825 efrain 16377
  .mx-wd-xs-100p {
16378
    max-width: 100%;
16379
  }
16848 stevensc 16380
 
16825 efrain 16381
  .mn-wd-xs-100p {
16382
    min-width: 100%;
16383
  }
16848 stevensc 16384
 
16825 efrain 16385
  .wd-xs-100-f {
16386
    width: 100px !important;
16387
  }
16848 stevensc 16388
 
16825 efrain 16389
  .wd-xs-100p-f {
16390
    width: 100% !important;
16391
  }
16848 stevensc 16392
 
16825 efrain 16393
  .mx-wd-xs-100p-f {
16394
    max-width: 100% !important;
16395
  }
16848 stevensc 16396
 
16825 efrain 16397
  .mn-wd-xs-100p-f {
16398
    min-width: 100% !important;
16399
  }
16848 stevensc 16400
 
16825 efrain 16401
  .wd-xs-150 {
16402
    width: 150px;
16403
  }
16848 stevensc 16404
 
16825 efrain 16405
  .wd-xs-150p {
16406
    width: 150%;
16407
  }
16848 stevensc 16408
 
16825 efrain 16409
  .mx-wd-xs-150p {
16410
    max-width: 150%;
16411
  }
16848 stevensc 16412
 
16825 efrain 16413
  .mn-wd-xs-150p {
16414
    min-width: 150%;
16415
  }
16848 stevensc 16416
 
16825 efrain 16417
  .wd-xs-150-f {
16418
    width: 150px !important;
16419
  }
16848 stevensc 16420
 
16825 efrain 16421
  .wd-xs-150p-f {
16422
    width: 150% !important;
16423
  }
16848 stevensc 16424
 
16825 efrain 16425
  .mx-wd-xs-150p-f {
16426
    max-width: 150% !important;
16427
  }
16848 stevensc 16428
 
16825 efrain 16429
  .mn-wd-xs-150p-f {
16430
    min-width: 150% !important;
16431
  }
16848 stevensc 16432
 
16825 efrain 16433
  .wd-xs-200 {
16434
    width: 200px;
16435
  }
16848 stevensc 16436
 
16825 efrain 16437
  .wd-xs-200p {
16438
    width: 200%;
16439
  }
16848 stevensc 16440
 
16825 efrain 16441
  .mx-wd-xs-200p {
16442
    max-width: 200%;
16443
  }
16848 stevensc 16444
 
16825 efrain 16445
  .mn-wd-xs-200p {
16446
    min-width: 200%;
16447
  }
16848 stevensc 16448
 
16825 efrain 16449
  .wd-xs-200-f {
16450
    width: 200px !important;
16451
  }
16848 stevensc 16452
 
16825 efrain 16453
  .wd-xs-200p-f {
16454
    width: 200% !important;
16455
  }
16848 stevensc 16456
 
16825 efrain 16457
  .mx-wd-xs-200p-f {
16458
    max-width: 200% !important;
16459
  }
16848 stevensc 16460
 
16825 efrain 16461
  .mn-wd-xs-200p-f {
16462
    min-width: 200% !important;
16463
  }
16848 stevensc 16464
 
16825 efrain 16465
  .wd-xs-250 {
16466
    width: 250px;
16467
  }
16848 stevensc 16468
 
16825 efrain 16469
  .wd-xs-250p {
16470
    width: 250%;
16471
  }
16848 stevensc 16472
 
16825 efrain 16473
  .mx-wd-xs-250p {
16474
    max-width: 250%;
16475
  }
16848 stevensc 16476
 
16825 efrain 16477
  .mn-wd-xs-250p {
16478
    min-width: 250%;
16479
  }
16848 stevensc 16480
 
16825 efrain 16481
  .wd-xs-250-f {
16482
    width: 250px !important;
16483
  }
16848 stevensc 16484
 
16825 efrain 16485
  .wd-xs-250p-f {
16486
    width: 250% !important;
16487
  }
16848 stevensc 16488
 
16825 efrain 16489
  .mx-wd-xs-250p-f {
16490
    max-width: 250% !important;
16491
  }
16848 stevensc 16492
 
16825 efrain 16493
  .mn-wd-xs-250p-f {
16494
    min-width: 250% !important;
16495
  }
16848 stevensc 16496
 
16825 efrain 16497
  .wd-xs-300 {
16498
    width: 300px;
16499
  }
16848 stevensc 16500
 
16825 efrain 16501
  .wd-xs-300p {
16502
    width: 300%;
16503
  }
16848 stevensc 16504
 
16825 efrain 16505
  .mx-wd-xs-300p {
16506
    max-width: 300%;
16507
  }
16848 stevensc 16508
 
16825 efrain 16509
  .mn-wd-xs-300p {
16510
    min-width: 300%;
16511
  }
16848 stevensc 16512
 
16825 efrain 16513
  .wd-xs-300-f {
16514
    width: 300px !important;
16515
  }
16848 stevensc 16516
 
16825 efrain 16517
  .wd-xs-300p-f {
16518
    width: 300% !important;
16519
  }
16848 stevensc 16520
 
16825 efrain 16521
  .mx-wd-xs-300p-f {
16522
    max-width: 300% !important;
16523
  }
16848 stevensc 16524
 
16825 efrain 16525
  .mn-wd-xs-300p-f {
16526
    min-width: 300% !important;
16527
  }
16848 stevensc 16528
 
16825 efrain 16529
  .wd-xs-350 {
16530
    width: 350px;
16531
  }
16848 stevensc 16532
 
16825 efrain 16533
  .wd-xs-350p {
16534
    width: 350%;
16535
  }
16848 stevensc 16536
 
16825 efrain 16537
  .mx-wd-xs-350p {
16538
    max-width: 350%;
16539
  }
16848 stevensc 16540
 
16825 efrain 16541
  .mn-wd-xs-350p {
16542
    min-width: 350%;
16543
  }
16848 stevensc 16544
 
16825 efrain 16545
  .wd-xs-350-f {
16546
    width: 350px !important;
16547
  }
16848 stevensc 16548
 
16825 efrain 16549
  .wd-xs-350p-f {
16550
    width: 350% !important;
16551
  }
16848 stevensc 16552
 
16825 efrain 16553
  .mx-wd-xs-350p-f {
16554
    max-width: 350% !important;
16555
  }
16848 stevensc 16556
 
16825 efrain 16557
  .mn-wd-xs-350p-f {
16558
    min-width: 350% !important;
16559
  }
16848 stevensc 16560
 
16825 efrain 16561
  .wd-xs-400 {
16562
    width: 400px;
16563
  }
16848 stevensc 16564
 
16825 efrain 16565
  .wd-xs-400p {
16566
    width: 400%;
16567
  }
16848 stevensc 16568
 
16825 efrain 16569
  .mx-wd-xs-400p {
16570
    max-width: 400%;
16571
  }
16848 stevensc 16572
 
16825 efrain 16573
  .mn-wd-xs-400p {
16574
    min-width: 400%;
16575
  }
16848 stevensc 16576
 
16825 efrain 16577
  .wd-xs-400-f {
16578
    width: 400px !important;
16579
  }
16848 stevensc 16580
 
16825 efrain 16581
  .wd-xs-400p-f {
16582
    width: 400% !important;
16583
  }
16848 stevensc 16584
 
16825 efrain 16585
  .mx-wd-xs-400p-f {
16586
    max-width: 400% !important;
16587
  }
16848 stevensc 16588
 
16825 efrain 16589
  .mn-wd-xs-400p-f {
16590
    min-width: 400% !important;
16591
  }
16848 stevensc 16592
 
16825 efrain 16593
  .wd-xs-450 {
16594
    width: 450px;
16595
  }
16848 stevensc 16596
 
16825 efrain 16597
  .wd-xs-450p {
16598
    width: 450%;
16599
  }
16848 stevensc 16600
 
16825 efrain 16601
  .mx-wd-xs-450p {
16602
    max-width: 450%;
16603
  }
16848 stevensc 16604
 
16825 efrain 16605
  .mn-wd-xs-450p {
16606
    min-width: 450%;
16607
  }
16848 stevensc 16608
 
16825 efrain 16609
  .wd-xs-450-f {
16610
    width: 450px !important;
16611
  }
16848 stevensc 16612
 
16825 efrain 16613
  .wd-xs-450p-f {
16614
    width: 450% !important;
16615
  }
16848 stevensc 16616
 
16825 efrain 16617
  .mx-wd-xs-450p-f {
16618
    max-width: 450% !important;
16619
  }
16848 stevensc 16620
 
16825 efrain 16621
  .mn-wd-xs-450p-f {
16622
    min-width: 450% !important;
16623
  }
16848 stevensc 16624
 
16825 efrain 16625
  .wd-xs-500 {
16626
    width: 500px;
16627
  }
16848 stevensc 16628
 
16825 efrain 16629
  .wd-xs-500p {
16630
    width: 500%;
16631
  }
16848 stevensc 16632
 
16825 efrain 16633
  .mx-wd-xs-500p {
16634
    max-width: 500%;
16635
  }
16848 stevensc 16636
 
16825 efrain 16637
  .mn-wd-xs-500p {
16638
    min-width: 500%;
16639
  }
16848 stevensc 16640
 
16825 efrain 16641
  .wd-xs-500-f {
16642
    width: 500px !important;
16643
  }
16848 stevensc 16644
 
16825 efrain 16645
  .wd-xs-500p-f {
16646
    width: 500% !important;
16647
  }
16848 stevensc 16648
 
16825 efrain 16649
  .mx-wd-xs-500p-f {
16650
    max-width: 500% !important;
16651
  }
16848 stevensc 16652
 
16825 efrain 16653
  .mn-wd-xs-500p-f {
16654
    min-width: 500% !important;
16655
  }
16848 stevensc 16656
 
16825 efrain 16657
  .wd-xs-550 {
16658
    width: 550px;
16659
  }
16848 stevensc 16660
 
16825 efrain 16661
  .wd-xs-550p {
16662
    width: 550%;
16663
  }
16848 stevensc 16664
 
16825 efrain 16665
  .mx-wd-xs-550p {
16666
    max-width: 550%;
16667
  }
16848 stevensc 16668
 
16825 efrain 16669
  .mn-wd-xs-550p {
16670
    min-width: 550%;
16671
  }
16848 stevensc 16672
 
16825 efrain 16673
  .wd-xs-550-f {
16674
    width: 550px !important;
16675
  }
16848 stevensc 16676
 
16825 efrain 16677
  .wd-xs-550p-f {
16678
    width: 550% !important;
16679
  }
16848 stevensc 16680
 
16825 efrain 16681
  .mx-wd-xs-550p-f {
16682
    max-width: 550% !important;
16683
  }
16848 stevensc 16684
 
16825 efrain 16685
  .mn-wd-xs-550p-f {
16686
    min-width: 550% !important;
16687
  }
16848 stevensc 16688
 
16825 efrain 16689
  .wd-xs-600 {
16690
    width: 600px;
16691
  }
16848 stevensc 16692
 
16825 efrain 16693
  .wd-xs-600p {
16694
    width: 600%;
16695
  }
16848 stevensc 16696
 
16825 efrain 16697
  .mx-wd-xs-600p {
16698
    max-width: 600%;
16699
  }
16848 stevensc 16700
 
16825 efrain 16701
  .mn-wd-xs-600p {
16702
    min-width: 600%;
16703
  }
16848 stevensc 16704
 
16825 efrain 16705
  .wd-xs-600-f {
16706
    width: 600px !important;
16707
  }
16848 stevensc 16708
 
16825 efrain 16709
  .wd-xs-600p-f {
16710
    width: 600% !important;
16711
  }
16848 stevensc 16712
 
16825 efrain 16713
  .mx-wd-xs-600p-f {
16714
    max-width: 600% !important;
16715
  }
16848 stevensc 16716
 
16825 efrain 16717
  .mn-wd-xs-600p-f {
16718
    min-width: 600% !important;
16719
  }
16848 stevensc 16720
 
16825 efrain 16721
  .wd-xs-650 {
16722
    width: 650px;
16723
  }
16848 stevensc 16724
 
16825 efrain 16725
  .wd-xs-650p {
16726
    width: 650%;
16727
  }
16848 stevensc 16728
 
16825 efrain 16729
  .mx-wd-xs-650p {
16730
    max-width: 650%;
16731
  }
16848 stevensc 16732
 
16825 efrain 16733
  .mn-wd-xs-650p {
16734
    min-width: 650%;
16735
  }
16848 stevensc 16736
 
16825 efrain 16737
  .wd-xs-650-f {
16738
    width: 650px !important;
16739
  }
16848 stevensc 16740
 
16825 efrain 16741
  .wd-xs-650p-f {
16742
    width: 650% !important;
16743
  }
16848 stevensc 16744
 
16825 efrain 16745
  .mx-wd-xs-650p-f {
16746
    max-width: 650% !important;
16747
  }
16848 stevensc 16748
 
16825 efrain 16749
  .mn-wd-xs-650p-f {
16750
    min-width: 650% !important;
16751
  }
16848 stevensc 16752
 
16825 efrain 16753
  .wd-xs-700 {
16754
    width: 700px;
16755
  }
16848 stevensc 16756
 
16825 efrain 16757
  .wd-xs-700p {
16758
    width: 700%;
16759
  }
16848 stevensc 16760
 
16825 efrain 16761
  .mx-wd-xs-700p {
16762
    max-width: 700%;
16763
  }
16848 stevensc 16764
 
16825 efrain 16765
  .mn-wd-xs-700p {
16766
    min-width: 700%;
16767
  }
16848 stevensc 16768
 
16825 efrain 16769
  .wd-xs-700-f {
16770
    width: 700px !important;
16771
  }
16848 stevensc 16772
 
16825 efrain 16773
  .wd-xs-700p-f {
16774
    width: 700% !important;
16775
  }
16848 stevensc 16776
 
16825 efrain 16777
  .mx-wd-xs-700p-f {
16778
    max-width: 700% !important;
16779
  }
16848 stevensc 16780
 
16825 efrain 16781
  .mn-wd-xs-700p-f {
16782
    min-width: 700% !important;
16783
  }
16848 stevensc 16784
 
16825 efrain 16785
  .wd-xs-750 {
16786
    width: 750px;
16787
  }
16848 stevensc 16788
 
16825 efrain 16789
  .wd-xs-750p {
16790
    width: 750%;
16791
  }
16848 stevensc 16792
 
16825 efrain 16793
  .mx-wd-xs-750p {
16794
    max-width: 750%;
16795
  }
16848 stevensc 16796
 
16825 efrain 16797
  .mn-wd-xs-750p {
16798
    min-width: 750%;
16799
  }
16848 stevensc 16800
 
16825 efrain 16801
  .wd-xs-750-f {
16802
    width: 750px !important;
16803
  }
16848 stevensc 16804
 
16825 efrain 16805
  .wd-xs-750p-f {
16806
    width: 750% !important;
16807
  }
16848 stevensc 16808
 
16825 efrain 16809
  .mx-wd-xs-750p-f {
16810
    max-width: 750% !important;
16811
  }
16848 stevensc 16812
 
16825 efrain 16813
  .mn-wd-xs-750p-f {
16814
    min-width: 750% !important;
16815
  }
16848 stevensc 16816
 
16825 efrain 16817
  .wd-xs-800 {
16818
    width: 800px;
16819
  }
16848 stevensc 16820
 
16825 efrain 16821
  .wd-xs-800p {
16822
    width: 800%;
16823
  }
16848 stevensc 16824
 
16825 efrain 16825
  .mx-wd-xs-800p {
16826
    max-width: 800%;
16827
  }
16848 stevensc 16828
 
16825 efrain 16829
  .mn-wd-xs-800p {
16830
    min-width: 800%;
16831
  }
16848 stevensc 16832
 
16825 efrain 16833
  .wd-xs-800-f {
16834
    width: 800px !important;
16835
  }
16848 stevensc 16836
 
16825 efrain 16837
  .wd-xs-800p-f {
16838
    width: 800% !important;
16839
  }
16848 stevensc 16840
 
16825 efrain 16841
  .mx-wd-xs-800p-f {
16842
    max-width: 800% !important;
16843
  }
16848 stevensc 16844
 
16825 efrain 16845
  .mn-wd-xs-800p-f {
16846
    min-width: 800% !important;
16847
  }
16848 stevensc 16848
 
16825 efrain 16849
  .wd-xs-850 {
16850
    width: 850px;
16851
  }
16848 stevensc 16852
 
16825 efrain 16853
  .wd-xs-850p {
16854
    width: 850%;
16855
  }
16848 stevensc 16856
 
16825 efrain 16857
  .mx-wd-xs-850p {
16858
    max-width: 850%;
16859
  }
16848 stevensc 16860
 
16825 efrain 16861
  .mn-wd-xs-850p {
16862
    min-width: 850%;
16863
  }
16848 stevensc 16864
 
16825 efrain 16865
  .wd-xs-850-f {
16866
    width: 850px !important;
16867
  }
16848 stevensc 16868
 
16825 efrain 16869
  .wd-xs-850p-f {
16870
    width: 850% !important;
16871
  }
16848 stevensc 16872
 
16825 efrain 16873
  .mx-wd-xs-850p-f {
16874
    max-width: 850% !important;
16875
  }
16848 stevensc 16876
 
16825 efrain 16877
  .mn-wd-xs-850p-f {
16878
    min-width: 850% !important;
16879
  }
16848 stevensc 16880
 
16825 efrain 16881
  .wd-xs-900 {
16882
    width: 900px;
16883
  }
16848 stevensc 16884
 
16825 efrain 16885
  .wd-xs-900p {
16886
    width: 900%;
16887
  }
16848 stevensc 16888
 
16825 efrain 16889
  .mx-wd-xs-900p {
16890
    max-width: 900%;
16891
  }
16848 stevensc 16892
 
16825 efrain 16893
  .mn-wd-xs-900p {
16894
    min-width: 900%;
16895
  }
16848 stevensc 16896
 
16825 efrain 16897
  .wd-xs-900-f {
16898
    width: 900px !important;
16899
  }
16848 stevensc 16900
 
16825 efrain 16901
  .wd-xs-900p-f {
16902
    width: 900% !important;
16903
  }
16848 stevensc 16904
 
16825 efrain 16905
  .mx-wd-xs-900p-f {
16906
    max-width: 900% !important;
16907
  }
16848 stevensc 16908
 
16825 efrain 16909
  .mn-wd-xs-900p-f {
16910
    min-width: 900% !important;
16911
  }
16848 stevensc 16912
 
16825 efrain 16913
  .wd-xs-950 {
16914
    width: 950px;
16915
  }
16848 stevensc 16916
 
16825 efrain 16917
  .wd-xs-950p {
16918
    width: 950%;
16919
  }
16848 stevensc 16920
 
16825 efrain 16921
  .mx-wd-xs-950p {
16922
    max-width: 950%;
16923
  }
16848 stevensc 16924
 
16825 efrain 16925
  .mn-wd-xs-950p {
16926
    min-width: 950%;
16927
  }
16848 stevensc 16928
 
16825 efrain 16929
  .wd-xs-950-f {
16930
    width: 950px !important;
16931
  }
16848 stevensc 16932
 
16825 efrain 16933
  .wd-xs-950p-f {
16934
    width: 950% !important;
16935
  }
16848 stevensc 16936
 
16825 efrain 16937
  .mx-wd-xs-950p-f {
16938
    max-width: 950% !important;
16939
  }
16848 stevensc 16940
 
16825 efrain 16941
  .mn-wd-xs-950p-f {
16942
    min-width: 950% !important;
16943
  }
16848 stevensc 16944
 
16825 efrain 16945
  .wd-xs-1000 {
16946
    width: 1000px;
16947
  }
16848 stevensc 16948
 
16825 efrain 16949
  .wd-xs-1000p {
16950
    width: 1000%;
16951
  }
16848 stevensc 16952
 
16825 efrain 16953
  .mx-wd-xs-1000p {
16954
    max-width: 1000%;
16955
  }
16848 stevensc 16956
 
16825 efrain 16957
  .mn-wd-xs-1000p {
16958
    min-width: 1000%;
16959
  }
16848 stevensc 16960
 
16825 efrain 16961
  .wd-xs-1000-f {
16962
    width: 1000px !important;
16963
  }
16848 stevensc 16964
 
16825 efrain 16965
  .wd-xs-1000p-f {
16966
    width: 1000% !important;
16967
  }
16848 stevensc 16968
 
16825 efrain 16969
  .mx-wd-xs-1000p-f {
16970
    max-width: 1000% !important;
16971
  }
16848 stevensc 16972
 
16825 efrain 16973
  .mn-wd-xs-1000p-f {
16974
    min-width: 1000% !important;
16975
  }
16848 stevensc 16976
 
16825 efrain 16977
  .wd-xs-auto {
16978
    width: auto;
16979
  }
16848 stevensc 16980
 
16825 efrain 16981
  .wd-xs-auto-f {
16982
    width: auto !important;
16983
  }
16984
}
16848 stevensc 16985
 
16825 efrain 16986
@media (min-width: 576px) {
16987
  .wd-sm-5 {
16988
    width: 5px;
16989
  }
16848 stevensc 16990
 
16825 efrain 16991
  .wd-sm-5p {
16992
    width: 5%;
16993
  }
16848 stevensc 16994
 
16825 efrain 16995
  .mx-wd-sm-5p {
16996
    max-width: 5%;
16997
  }
16848 stevensc 16998
 
16825 efrain 16999
  .mn-wd-sm-5p {
17000
    min-width: 5%;
17001
  }
16848 stevensc 17002
 
16825 efrain 17003
  .wd-sm-5-f {
17004
    width: 5px !important;
17005
  }
16848 stevensc 17006
 
16825 efrain 17007
  .wd-sm-5p-f {
17008
    width: 5% !important;
17009
  }
16848 stevensc 17010
 
16825 efrain 17011
  .mx-wd-sm-5p-f {
17012
    max-width: 5% !important;
17013
  }
16848 stevensc 17014
 
16825 efrain 17015
  .mn-wd-sm-5p-f {
17016
    min-width: 5% !important;
17017
  }
16848 stevensc 17018
 
16825 efrain 17019
  .wd-sm-10 {
17020
    width: 10px;
17021
  }
16848 stevensc 17022
 
16825 efrain 17023
  .wd-sm-10p {
17024
    width: 10%;
17025
  }
16848 stevensc 17026
 
16825 efrain 17027
  .mx-wd-sm-10p {
17028
    max-width: 10%;
17029
  }
16848 stevensc 17030
 
16825 efrain 17031
  .mn-wd-sm-10p {
17032
    min-width: 10%;
17033
  }
16848 stevensc 17034
 
16825 efrain 17035
  .wd-sm-10-f {
17036
    width: 10px !important;
17037
  }
16848 stevensc 17038
 
16825 efrain 17039
  .wd-sm-10p-f {
17040
    width: 10% !important;
17041
  }
16848 stevensc 17042
 
16825 efrain 17043
  .mx-wd-sm-10p-f {
17044
    max-width: 10% !important;
17045
  }
16848 stevensc 17046
 
16825 efrain 17047
  .mn-wd-sm-10p-f {
17048
    min-width: 10% !important;
17049
  }
16848 stevensc 17050
 
16825 efrain 17051
  .wd-sm-15 {
17052
    width: 15px;
17053
  }
16848 stevensc 17054
 
16825 efrain 17055
  .wd-sm-15p {
17056
    width: 15%;
17057
  }
16848 stevensc 17058
 
16825 efrain 17059
  .mx-wd-sm-15p {
17060
    max-width: 15%;
17061
  }
16848 stevensc 17062
 
16825 efrain 17063
  .mn-wd-sm-15p {
17064
    min-width: 15%;
17065
  }
16848 stevensc 17066
 
16825 efrain 17067
  .wd-sm-15-f {
17068
    width: 15px !important;
17069
  }
16848 stevensc 17070
 
16825 efrain 17071
  .wd-sm-15p-f {
17072
    width: 15% !important;
17073
  }
16848 stevensc 17074
 
16825 efrain 17075
  .mx-wd-sm-15p-f {
17076
    max-width: 15% !important;
17077
  }
16848 stevensc 17078
 
16825 efrain 17079
  .mn-wd-sm-15p-f {
17080
    min-width: 15% !important;
17081
  }
16848 stevensc 17082
 
16825 efrain 17083
  .wd-sm-20 {
17084
    width: 20px;
17085
  }
16848 stevensc 17086
 
16825 efrain 17087
  .wd-sm-20p {
17088
    width: 20%;
17089
  }
16848 stevensc 17090
 
16825 efrain 17091
  .mx-wd-sm-20p {
17092
    max-width: 20%;
17093
  }
16848 stevensc 17094
 
16825 efrain 17095
  .mn-wd-sm-20p {
17096
    min-width: 20%;
17097
  }
16848 stevensc 17098
 
16825 efrain 17099
  .wd-sm-20-f {
17100
    width: 20px !important;
17101
  }
16848 stevensc 17102
 
16825 efrain 17103
  .wd-sm-20p-f {
17104
    width: 20% !important;
17105
  }
16848 stevensc 17106
 
16825 efrain 17107
  .mx-wd-sm-20p-f {
17108
    max-width: 20% !important;
17109
  }
16848 stevensc 17110
 
16825 efrain 17111
  .mn-wd-sm-20p-f {
17112
    min-width: 20% !important;
17113
  }
16848 stevensc 17114
 
16825 efrain 17115
  .wd-sm-25 {
17116
    width: 25px;
17117
  }
16848 stevensc 17118
 
16825 efrain 17119
  .wd-sm-25p {
17120
    width: 25%;
17121
  }
16848 stevensc 17122
 
16825 efrain 17123
  .mx-wd-sm-25p {
17124
    max-width: 25%;
17125
  }
16848 stevensc 17126
 
16825 efrain 17127
  .mn-wd-sm-25p {
17128
    min-width: 25%;
17129
  }
16848 stevensc 17130
 
16825 efrain 17131
  .wd-sm-25-f {
17132
    width: 25px !important;
17133
  }
16848 stevensc 17134
 
16825 efrain 17135
  .wd-sm-25p-f {
17136
    width: 25% !important;
17137
  }
16848 stevensc 17138
 
16825 efrain 17139
  .mx-wd-sm-25p-f {
17140
    max-width: 25% !important;
17141
  }
16848 stevensc 17142
 
16825 efrain 17143
  .mn-wd-sm-25p-f {
17144
    min-width: 25% !important;
17145
  }
16848 stevensc 17146
 
16825 efrain 17147
  .wd-sm-30 {
17148
    width: 30px;
17149
  }
16848 stevensc 17150
 
16825 efrain 17151
  .wd-sm-30p {
17152
    width: 30%;
17153
  }
16848 stevensc 17154
 
16825 efrain 17155
  .mx-wd-sm-30p {
17156
    max-width: 30%;
17157
  }
16848 stevensc 17158
 
16825 efrain 17159
  .mn-wd-sm-30p {
17160
    min-width: 30%;
17161
  }
16848 stevensc 17162
 
16825 efrain 17163
  .wd-sm-30-f {
17164
    width: 30px !important;
17165
  }
16848 stevensc 17166
 
16825 efrain 17167
  .wd-sm-30p-f {
17168
    width: 30% !important;
17169
  }
16848 stevensc 17170
 
16825 efrain 17171
  .mx-wd-sm-30p-f {
17172
    max-width: 30% !important;
17173
  }
16848 stevensc 17174
 
16825 efrain 17175
  .mn-wd-sm-30p-f {
17176
    min-width: 30% !important;
17177
  }
16848 stevensc 17178
 
16825 efrain 17179
  .wd-sm-35 {
17180
    width: 35px;
17181
  }
16848 stevensc 17182
 
16825 efrain 17183
  .wd-sm-35p {
17184
    width: 35%;
17185
  }
16848 stevensc 17186
 
16825 efrain 17187
  .mx-wd-sm-35p {
17188
    max-width: 35%;
17189
  }
16848 stevensc 17190
 
16825 efrain 17191
  .mn-wd-sm-35p {
17192
    min-width: 35%;
17193
  }
16848 stevensc 17194
 
16825 efrain 17195
  .wd-sm-35-f {
17196
    width: 35px !important;
17197
  }
16848 stevensc 17198
 
16825 efrain 17199
  .wd-sm-35p-f {
17200
    width: 35% !important;
17201
  }
16848 stevensc 17202
 
16825 efrain 17203
  .mx-wd-sm-35p-f {
17204
    max-width: 35% !important;
17205
  }
16848 stevensc 17206
 
16825 efrain 17207
  .mn-wd-sm-35p-f {
17208
    min-width: 35% !important;
17209
  }
16848 stevensc 17210
 
16825 efrain 17211
  .wd-sm-40 {
17212
    width: 40px;
17213
  }
16848 stevensc 17214
 
16825 efrain 17215
  .wd-sm-40p {
17216
    width: 40%;
17217
  }
16848 stevensc 17218
 
16825 efrain 17219
  .mx-wd-sm-40p {
17220
    max-width: 40%;
17221
  }
16848 stevensc 17222
 
16825 efrain 17223
  .mn-wd-sm-40p {
17224
    min-width: 40%;
17225
  }
16848 stevensc 17226
 
16825 efrain 17227
  .wd-sm-40-f {
17228
    width: 40px !important;
17229
  }
16848 stevensc 17230
 
16825 efrain 17231
  .wd-sm-40p-f {
17232
    width: 40% !important;
17233
  }
16848 stevensc 17234
 
16825 efrain 17235
  .mx-wd-sm-40p-f {
17236
    max-width: 40% !important;
17237
  }
16848 stevensc 17238
 
16825 efrain 17239
  .mn-wd-sm-40p-f {
17240
    min-width: 40% !important;
17241
  }
16848 stevensc 17242
 
16825 efrain 17243
  .wd-sm-45 {
17244
    width: 45px;
17245
  }
16848 stevensc 17246
 
16825 efrain 17247
  .wd-sm-45p {
17248
    width: 45%;
17249
  }
16848 stevensc 17250
 
16825 efrain 17251
  .mx-wd-sm-45p {
17252
    max-width: 45%;
17253
  }
16848 stevensc 17254
 
16825 efrain 17255
  .mn-wd-sm-45p {
17256
    min-width: 45%;
17257
  }
16848 stevensc 17258
 
16825 efrain 17259
  .wd-sm-45-f {
17260
    width: 45px !important;
17261
  }
16848 stevensc 17262
 
16825 efrain 17263
  .wd-sm-45p-f {
17264
    width: 45% !important;
17265
  }
16848 stevensc 17266
 
16825 efrain 17267
  .mx-wd-sm-45p-f {
17268
    max-width: 45% !important;
17269
  }
16848 stevensc 17270
 
16825 efrain 17271
  .mn-wd-sm-45p-f {
17272
    min-width: 45% !important;
17273
  }
16848 stevensc 17274
 
16825 efrain 17275
  .wd-sm-50 {
17276
    width: 50px;
17277
  }
16848 stevensc 17278
 
16825 efrain 17279
  .wd-sm-50p {
17280
    width: 50%;
17281
  }
16848 stevensc 17282
 
16825 efrain 17283
  .mx-wd-sm-50p {
17284
    max-width: 50%;
17285
  }
16848 stevensc 17286
 
16825 efrain 17287
  .mn-wd-sm-50p {
17288
    min-width: 50%;
17289
  }
16848 stevensc 17290
 
16825 efrain 17291
  .wd-sm-50-f {
17292
    width: 50px !important;
17293
  }
16848 stevensc 17294
 
16825 efrain 17295
  .wd-sm-50p-f {
17296
    width: 50% !important;
17297
  }
16848 stevensc 17298
 
16825 efrain 17299
  .mx-wd-sm-50p-f {
17300
    max-width: 50% !important;
17301
  }
16848 stevensc 17302
 
16825 efrain 17303
  .mn-wd-sm-50p-f {
17304
    min-width: 50% !important;
17305
  }
16848 stevensc 17306
 
16825 efrain 17307
  .wd-sm-55 {
17308
    width: 55px;
17309
  }
16848 stevensc 17310
 
16825 efrain 17311
  .wd-sm-55p {
17312
    width: 55%;
17313
  }
16848 stevensc 17314
 
16825 efrain 17315
  .mx-wd-sm-55p {
17316
    max-width: 55%;
17317
  }
16848 stevensc 17318
 
16825 efrain 17319
  .mn-wd-sm-55p {
17320
    min-width: 55%;
17321
  }
16848 stevensc 17322
 
16825 efrain 17323
  .wd-sm-55-f {
17324
    width: 55px !important;
17325
  }
16848 stevensc 17326
 
16825 efrain 17327
  .wd-sm-55p-f {
17328
    width: 55% !important;
17329
  }
16848 stevensc 17330
 
16825 efrain 17331
  .mx-wd-sm-55p-f {
17332
    max-width: 55% !important;
17333
  }
16848 stevensc 17334
 
16825 efrain 17335
  .mn-wd-sm-55p-f {
17336
    min-width: 55% !important;
17337
  }
16848 stevensc 17338
 
16825 efrain 17339
  .wd-sm-60 {
17340
    width: 60px;
17341
  }
16848 stevensc 17342
 
16825 efrain 17343
  .wd-sm-60p {
17344
    width: 60%;
17345
  }
16848 stevensc 17346
 
16825 efrain 17347
  .mx-wd-sm-60p {
17348
    max-width: 60%;
17349
  }
16848 stevensc 17350
 
16825 efrain 17351
  .mn-wd-sm-60p {
17352
    min-width: 60%;
17353
  }
16848 stevensc 17354
 
16825 efrain 17355
  .wd-sm-60-f {
17356
    width: 60px !important;
17357
  }
16848 stevensc 17358
 
16825 efrain 17359
  .wd-sm-60p-f {
17360
    width: 60% !important;
17361
  }
16848 stevensc 17362
 
16825 efrain 17363
  .mx-wd-sm-60p-f {
17364
    max-width: 60% !important;
17365
  }
16848 stevensc 17366
 
16825 efrain 17367
  .mn-wd-sm-60p-f {
17368
    min-width: 60% !important;
17369
  }
16848 stevensc 17370
 
16825 efrain 17371
  .wd-sm-65 {
17372
    width: 65px;
17373
  }
16848 stevensc 17374
 
16825 efrain 17375
  .wd-sm-65p {
17376
    width: 65%;
17377
  }
16848 stevensc 17378
 
16825 efrain 17379
  .mx-wd-sm-65p {
17380
    max-width: 65%;
17381
  }
16848 stevensc 17382
 
16825 efrain 17383
  .mn-wd-sm-65p {
17384
    min-width: 65%;
17385
  }
16848 stevensc 17386
 
16825 efrain 17387
  .wd-sm-65-f {
17388
    width: 65px !important;
17389
  }
16848 stevensc 17390
 
16825 efrain 17391
  .wd-sm-65p-f {
17392
    width: 65% !important;
17393
  }
16848 stevensc 17394
 
16825 efrain 17395
  .mx-wd-sm-65p-f {
17396
    max-width: 65% !important;
17397
  }
16848 stevensc 17398
 
16825 efrain 17399
  .mn-wd-sm-65p-f {
17400
    min-width: 65% !important;
17401
  }
16848 stevensc 17402
 
16825 efrain 17403
  .wd-sm-70 {
17404
    width: 70px;
17405
  }
16848 stevensc 17406
 
16825 efrain 17407
  .wd-sm-70p {
17408
    width: 70%;
17409
  }
16848 stevensc 17410
 
16825 efrain 17411
  .mx-wd-sm-70p {
17412
    max-width: 70%;
17413
  }
16848 stevensc 17414
 
16825 efrain 17415
  .mn-wd-sm-70p {
17416
    min-width: 70%;
17417
  }
16848 stevensc 17418
 
16825 efrain 17419
  .wd-sm-70-f {
17420
    width: 70px !important;
17421
  }
16848 stevensc 17422
 
16825 efrain 17423
  .wd-sm-70p-f {
17424
    width: 70% !important;
17425
  }
16848 stevensc 17426
 
16825 efrain 17427
  .mx-wd-sm-70p-f {
17428
    max-width: 70% !important;
17429
  }
16848 stevensc 17430
 
16825 efrain 17431
  .mn-wd-sm-70p-f {
17432
    min-width: 70% !important;
17433
  }
16848 stevensc 17434
 
16825 efrain 17435
  .wd-sm-75 {
17436
    width: 75px;
17437
  }
16848 stevensc 17438
 
16825 efrain 17439
  .wd-sm-75p {
17440
    width: 75%;
17441
  }
16848 stevensc 17442
 
16825 efrain 17443
  .mx-wd-sm-75p {
17444
    max-width: 75%;
17445
  }
16848 stevensc 17446
 
16825 efrain 17447
  .mn-wd-sm-75p {
17448
    min-width: 75%;
17449
  }
16848 stevensc 17450
 
16825 efrain 17451
  .wd-sm-75-f {
17452
    width: 75px !important;
17453
  }
16848 stevensc 17454
 
16825 efrain 17455
  .wd-sm-75p-f {
17456
    width: 75% !important;
17457
  }
16848 stevensc 17458
 
16825 efrain 17459
  .mx-wd-sm-75p-f {
17460
    max-width: 75% !important;
17461
  }
16848 stevensc 17462
 
16825 efrain 17463
  .mn-wd-sm-75p-f {
17464
    min-width: 75% !important;
17465
  }
16848 stevensc 17466
 
16825 efrain 17467
  .wd-sm-80 {
17468
    width: 80px;
17469
  }
16848 stevensc 17470
 
16825 efrain 17471
  .wd-sm-80p {
17472
    width: 80%;
17473
  }
16848 stevensc 17474
 
16825 efrain 17475
  .mx-wd-sm-80p {
17476
    max-width: 80%;
17477
  }
16848 stevensc 17478
 
16825 efrain 17479
  .mn-wd-sm-80p {
17480
    min-width: 80%;
17481
  }
16848 stevensc 17482
 
16825 efrain 17483
  .wd-sm-80-f {
17484
    width: 80px !important;
17485
  }
16848 stevensc 17486
 
16825 efrain 17487
  .wd-sm-80p-f {
17488
    width: 80% !important;
17489
  }
16848 stevensc 17490
 
16825 efrain 17491
  .mx-wd-sm-80p-f {
17492
    max-width: 80% !important;
17493
  }
16848 stevensc 17494
 
16825 efrain 17495
  .mn-wd-sm-80p-f {
17496
    min-width: 80% !important;
17497
  }
16848 stevensc 17498
 
16825 efrain 17499
  .wd-sm-85 {
17500
    width: 85px;
17501
  }
16848 stevensc 17502
 
16825 efrain 17503
  .wd-sm-85p {
17504
    width: 85%;
17505
  }
16848 stevensc 17506
 
16825 efrain 17507
  .mx-wd-sm-85p {
17508
    max-width: 85%;
17509
  }
16848 stevensc 17510
 
16825 efrain 17511
  .mn-wd-sm-85p {
17512
    min-width: 85%;
17513
  }
16848 stevensc 17514
 
16825 efrain 17515
  .wd-sm-85-f {
17516
    width: 85px !important;
17517
  }
16848 stevensc 17518
 
16825 efrain 17519
  .wd-sm-85p-f {
17520
    width: 85% !important;
17521
  }
16848 stevensc 17522
 
16825 efrain 17523
  .mx-wd-sm-85p-f {
17524
    max-width: 85% !important;
17525
  }
16848 stevensc 17526
 
16825 efrain 17527
  .mn-wd-sm-85p-f {
17528
    min-width: 85% !important;
17529
  }
16848 stevensc 17530
 
16825 efrain 17531
  .wd-sm-90 {
17532
    width: 90px;
17533
  }
16848 stevensc 17534
 
16825 efrain 17535
  .wd-sm-90p {
17536
    width: 90%;
17537
  }
16848 stevensc 17538
 
16825 efrain 17539
  .mx-wd-sm-90p {
17540
    max-width: 90%;
17541
  }
16848 stevensc 17542
 
16825 efrain 17543
  .mn-wd-sm-90p {
17544
    min-width: 90%;
17545
  }
16848 stevensc 17546
 
16825 efrain 17547
  .wd-sm-90-f {
17548
    width: 90px !important;
17549
  }
16848 stevensc 17550
 
16825 efrain 17551
  .wd-sm-90p-f {
17552
    width: 90% !important;
17553
  }
16848 stevensc 17554
 
16825 efrain 17555
  .mx-wd-sm-90p-f {
17556
    max-width: 90% !important;
17557
  }
16848 stevensc 17558
 
16825 efrain 17559
  .mn-wd-sm-90p-f {
17560
    min-width: 90% !important;
17561
  }
16848 stevensc 17562
 
16825 efrain 17563
  .wd-sm-95 {
17564
    width: 95px;
17565
  }
16848 stevensc 17566
 
16825 efrain 17567
  .wd-sm-95p {
17568
    width: 95%;
17569
  }
16848 stevensc 17570
 
16825 efrain 17571
  .mx-wd-sm-95p {
17572
    max-width: 95%;
17573
  }
16848 stevensc 17574
 
16825 efrain 17575
  .mn-wd-sm-95p {
17576
    min-width: 95%;
17577
  }
16848 stevensc 17578
 
16825 efrain 17579
  .wd-sm-95-f {
17580
    width: 95px !important;
17581
  }
16848 stevensc 17582
 
16825 efrain 17583
  .wd-sm-95p-f {
17584
    width: 95% !important;
17585
  }
16848 stevensc 17586
 
16825 efrain 17587
  .mx-wd-sm-95p-f {
17588
    max-width: 95% !important;
17589
  }
16848 stevensc 17590
 
16825 efrain 17591
  .mn-wd-sm-95p-f {
17592
    min-width: 95% !important;
17593
  }
16848 stevensc 17594
 
16825 efrain 17595
  .wd-sm-100 {
17596
    width: 100px;
17597
  }
16848 stevensc 17598
 
16825 efrain 17599
  .wd-sm-100p {
17600
    width: 100%;
17601
  }
16848 stevensc 17602
 
16825 efrain 17603
  .mx-wd-sm-100p {
17604
    max-width: 100%;
17605
  }
16848 stevensc 17606
 
16825 efrain 17607
  .mn-wd-sm-100p {
17608
    min-width: 100%;
17609
  }
16848 stevensc 17610
 
16825 efrain 17611
  .wd-sm-100-f {
17612
    width: 100px !important;
17613
  }
16848 stevensc 17614
 
16825 efrain 17615
  .wd-sm-100p-f {
17616
    width: 100% !important;
17617
  }
16848 stevensc 17618
 
16825 efrain 17619
  .mx-wd-sm-100p-f {
17620
    max-width: 100% !important;
17621
  }
16848 stevensc 17622
 
16825 efrain 17623
  .mn-wd-sm-100p-f {
17624
    min-width: 100% !important;
17625
  }
16848 stevensc 17626
 
16825 efrain 17627
  .wd-sm-150 {
17628
    width: 150px;
17629
  }
16848 stevensc 17630
 
16825 efrain 17631
  .wd-sm-150p {
17632
    width: 150%;
17633
  }
16848 stevensc 17634
 
16825 efrain 17635
  .mx-wd-sm-150p {
17636
    max-width: 150%;
17637
  }
16848 stevensc 17638
 
16825 efrain 17639
  .mn-wd-sm-150p {
17640
    min-width: 150%;
17641
  }
16848 stevensc 17642
 
16825 efrain 17643
  .wd-sm-150-f {
17644
    width: 150px !important;
17645
  }
16848 stevensc 17646
 
16825 efrain 17647
  .wd-sm-150p-f {
17648
    width: 150% !important;
17649
  }
16848 stevensc 17650
 
16825 efrain 17651
  .mx-wd-sm-150p-f {
17652
    max-width: 150% !important;
17653
  }
16848 stevensc 17654
 
16825 efrain 17655
  .mn-wd-sm-150p-f {
17656
    min-width: 150% !important;
17657
  }
16848 stevensc 17658
 
16825 efrain 17659
  .wd-sm-200 {
17660
    width: 200px;
17661
  }
16848 stevensc 17662
 
16825 efrain 17663
  .wd-sm-200p {
17664
    width: 200%;
17665
  }
16848 stevensc 17666
 
16825 efrain 17667
  .mx-wd-sm-200p {
17668
    max-width: 200%;
17669
  }
16848 stevensc 17670
 
16825 efrain 17671
  .mn-wd-sm-200p {
17672
    min-width: 200%;
17673
  }
16848 stevensc 17674
 
16825 efrain 17675
  .wd-sm-200-f {
17676
    width: 200px !important;
17677
  }
16848 stevensc 17678
 
16825 efrain 17679
  .wd-sm-200p-f {
17680
    width: 200% !important;
17681
  }
16848 stevensc 17682
 
16825 efrain 17683
  .mx-wd-sm-200p-f {
17684
    max-width: 200% !important;
17685
  }
16848 stevensc 17686
 
16825 efrain 17687
  .mn-wd-sm-200p-f {
17688
    min-width: 200% !important;
17689
  }
16848 stevensc 17690
 
16825 efrain 17691
  .wd-sm-250 {
17692
    width: 250px;
17693
  }
16848 stevensc 17694
 
16825 efrain 17695
  .wd-sm-250p {
17696
    width: 250%;
17697
  }
16848 stevensc 17698
 
16825 efrain 17699
  .mx-wd-sm-250p {
17700
    max-width: 250%;
17701
  }
16848 stevensc 17702
 
16825 efrain 17703
  .mn-wd-sm-250p {
17704
    min-width: 250%;
17705
  }
16848 stevensc 17706
 
16825 efrain 17707
  .wd-sm-250-f {
17708
    width: 250px !important;
17709
  }
16848 stevensc 17710
 
16825 efrain 17711
  .wd-sm-250p-f {
17712
    width: 250% !important;
17713
  }
16848 stevensc 17714
 
16825 efrain 17715
  .mx-wd-sm-250p-f {
17716
    max-width: 250% !important;
17717
  }
16848 stevensc 17718
 
16825 efrain 17719
  .mn-wd-sm-250p-f {
17720
    min-width: 250% !important;
17721
  }
16848 stevensc 17722
 
16825 efrain 17723
  .wd-sm-300 {
17724
    width: 300px;
17725
  }
16848 stevensc 17726
 
16825 efrain 17727
  .wd-sm-300p {
17728
    width: 300%;
17729
  }
16848 stevensc 17730
 
16825 efrain 17731
  .mx-wd-sm-300p {
17732
    max-width: 300%;
17733
  }
16848 stevensc 17734
 
16825 efrain 17735
  .mn-wd-sm-300p {
17736
    min-width: 300%;
17737
  }
16848 stevensc 17738
 
16825 efrain 17739
  .wd-sm-300-f {
17740
    width: 300px !important;
17741
  }
16848 stevensc 17742
 
16825 efrain 17743
  .wd-sm-300p-f {
17744
    width: 300% !important;
17745
  }
16848 stevensc 17746
 
16825 efrain 17747
  .mx-wd-sm-300p-f {
17748
    max-width: 300% !important;
17749
  }
16848 stevensc 17750
 
16825 efrain 17751
  .mn-wd-sm-300p-f {
17752
    min-width: 300% !important;
17753
  }
16848 stevensc 17754
 
16825 efrain 17755
  .wd-sm-350 {
17756
    width: 350px;
17757
  }
16848 stevensc 17758
 
16825 efrain 17759
  .wd-sm-350p {
17760
    width: 350%;
17761
  }
16848 stevensc 17762
 
16825 efrain 17763
  .mx-wd-sm-350p {
17764
    max-width: 350%;
17765
  }
16848 stevensc 17766
 
16825 efrain 17767
  .mn-wd-sm-350p {
17768
    min-width: 350%;
17769
  }
16848 stevensc 17770
 
16825 efrain 17771
  .wd-sm-350-f {
17772
    width: 350px !important;
17773
  }
16848 stevensc 17774
 
16825 efrain 17775
  .wd-sm-350p-f {
17776
    width: 350% !important;
17777
  }
16848 stevensc 17778
 
16825 efrain 17779
  .mx-wd-sm-350p-f {
17780
    max-width: 350% !important;
17781
  }
16848 stevensc 17782
 
16825 efrain 17783
  .mn-wd-sm-350p-f {
17784
    min-width: 350% !important;
17785
  }
16848 stevensc 17786
 
16825 efrain 17787
  .wd-sm-400 {
17788
    width: 400px;
17789
  }
16848 stevensc 17790
 
16825 efrain 17791
  .wd-sm-400p {
17792
    width: 400%;
17793
  }
16848 stevensc 17794
 
16825 efrain 17795
  .mx-wd-sm-400p {
17796
    max-width: 400%;
17797
  }
16848 stevensc 17798
 
16825 efrain 17799
  .mn-wd-sm-400p {
17800
    min-width: 400%;
17801
  }
16848 stevensc 17802
 
16825 efrain 17803
  .wd-sm-400-f {
17804
    width: 400px !important;
17805
  }
16848 stevensc 17806
 
16825 efrain 17807
  .wd-sm-400p-f {
17808
    width: 400% !important;
17809
  }
16848 stevensc 17810
 
16825 efrain 17811
  .mx-wd-sm-400p-f {
17812
    max-width: 400% !important;
17813
  }
16848 stevensc 17814
 
16825 efrain 17815
  .mn-wd-sm-400p-f {
17816
    min-width: 400% !important;
17817
  }
16848 stevensc 17818
 
16825 efrain 17819
  .wd-sm-450 {
17820
    width: 450px;
17821
  }
16848 stevensc 17822
 
16825 efrain 17823
  .wd-sm-450p {
17824
    width: 450%;
17825
  }
16848 stevensc 17826
 
16825 efrain 17827
  .mx-wd-sm-450p {
17828
    max-width: 450%;
17829
  }
16848 stevensc 17830
 
16825 efrain 17831
  .mn-wd-sm-450p {
17832
    min-width: 450%;
17833
  }
16848 stevensc 17834
 
16825 efrain 17835
  .wd-sm-450-f {
17836
    width: 450px !important;
17837
  }
16848 stevensc 17838
 
16825 efrain 17839
  .wd-sm-450p-f {
17840
    width: 450% !important;
17841
  }
16848 stevensc 17842
 
16825 efrain 17843
  .mx-wd-sm-450p-f {
17844
    max-width: 450% !important;
17845
  }
16848 stevensc 17846
 
16825 efrain 17847
  .mn-wd-sm-450p-f {
17848
    min-width: 450% !important;
17849
  }
16848 stevensc 17850
 
16825 efrain 17851
  .wd-sm-500 {
17852
    width: 500px;
17853
  }
16848 stevensc 17854
 
16825 efrain 17855
  .wd-sm-500p {
17856
    width: 500%;
17857
  }
16848 stevensc 17858
 
16825 efrain 17859
  .mx-wd-sm-500p {
17860
    max-width: 500%;
17861
  }
16848 stevensc 17862
 
16825 efrain 17863
  .mn-wd-sm-500p {
17864
    min-width: 500%;
17865
  }
16848 stevensc 17866
 
16825 efrain 17867
  .wd-sm-500-f {
17868
    width: 500px !important;
17869
  }
16848 stevensc 17870
 
16825 efrain 17871
  .wd-sm-500p-f {
17872
    width: 500% !important;
17873
  }
16848 stevensc 17874
 
16825 efrain 17875
  .mx-wd-sm-500p-f {
17876
    max-width: 500% !important;
17877
  }
16848 stevensc 17878
 
16825 efrain 17879
  .mn-wd-sm-500p-f {
17880
    min-width: 500% !important;
17881
  }
16848 stevensc 17882
 
16825 efrain 17883
  .wd-sm-550 {
17884
    width: 550px;
17885
  }
16848 stevensc 17886
 
16825 efrain 17887
  .wd-sm-550p {
17888
    width: 550%;
17889
  }
16848 stevensc 17890
 
16825 efrain 17891
  .mx-wd-sm-550p {
17892
    max-width: 550%;
17893
  }
16848 stevensc 17894
 
16825 efrain 17895
  .mn-wd-sm-550p {
17896
    min-width: 550%;
17897
  }
16848 stevensc 17898
 
16825 efrain 17899
  .wd-sm-550-f {
17900
    width: 550px !important;
17901
  }
16848 stevensc 17902
 
16825 efrain 17903
  .wd-sm-550p-f {
17904
    width: 550% !important;
17905
  }
16848 stevensc 17906
 
16825 efrain 17907
  .mx-wd-sm-550p-f {
17908
    max-width: 550% !important;
17909
  }
16848 stevensc 17910
 
16825 efrain 17911
  .mn-wd-sm-550p-f {
17912
    min-width: 550% !important;
17913
  }
16848 stevensc 17914
 
16825 efrain 17915
  .wd-sm-600 {
17916
    width: 600px;
17917
  }
16848 stevensc 17918
 
16825 efrain 17919
  .wd-sm-600p {
17920
    width: 600%;
17921
  }
16848 stevensc 17922
 
16825 efrain 17923
  .mx-wd-sm-600p {
17924
    max-width: 600%;
17925
  }
16848 stevensc 17926
 
16825 efrain 17927
  .mn-wd-sm-600p {
17928
    min-width: 600%;
17929
  }
16848 stevensc 17930
 
16825 efrain 17931
  .wd-sm-600-f {
17932
    width: 600px !important;
17933
  }
16848 stevensc 17934
 
16825 efrain 17935
  .wd-sm-600p-f {
17936
    width: 600% !important;
17937
  }
16848 stevensc 17938
 
16825 efrain 17939
  .mx-wd-sm-600p-f {
17940
    max-width: 600% !important;
17941
  }
16848 stevensc 17942
 
16825 efrain 17943
  .mn-wd-sm-600p-f {
17944
    min-width: 600% !important;
17945
  }
16848 stevensc 17946
 
16825 efrain 17947
  .wd-sm-650 {
17948
    width: 650px;
17949
  }
16848 stevensc 17950
 
16825 efrain 17951
  .wd-sm-650p {
17952
    width: 650%;
17953
  }
16848 stevensc 17954
 
16825 efrain 17955
  .mx-wd-sm-650p {
17956
    max-width: 650%;
17957
  }
16848 stevensc 17958
 
16825 efrain 17959
  .mn-wd-sm-650p {
17960
    min-width: 650%;
17961
  }
16848 stevensc 17962
 
16825 efrain 17963
  .wd-sm-650-f {
17964
    width: 650px !important;
17965
  }
16848 stevensc 17966
 
16825 efrain 17967
  .wd-sm-650p-f {
17968
    width: 650% !important;
17969
  }
16848 stevensc 17970
 
16825 efrain 17971
  .mx-wd-sm-650p-f {
17972
    max-width: 650% !important;
17973
  }
16848 stevensc 17974
 
16825 efrain 17975
  .mn-wd-sm-650p-f {
17976
    min-width: 650% !important;
17977
  }
16848 stevensc 17978
 
16825 efrain 17979
  .wd-sm-700 {
17980
    width: 700px;
17981
  }
16848 stevensc 17982
 
16825 efrain 17983
  .wd-sm-700p {
17984
    width: 700%;
17985
  }
16848 stevensc 17986
 
16825 efrain 17987
  .mx-wd-sm-700p {
17988
    max-width: 700%;
17989
  }
16848 stevensc 17990
 
16825 efrain 17991
  .mn-wd-sm-700p {
17992
    min-width: 700%;
17993
  }
16848 stevensc 17994
 
16825 efrain 17995
  .wd-sm-700-f {
17996
    width: 700px !important;
17997
  }
16848 stevensc 17998
 
16825 efrain 17999
  .wd-sm-700p-f {
18000
    width: 700% !important;
18001
  }
16848 stevensc 18002
 
16825 efrain 18003
  .mx-wd-sm-700p-f {
18004
    max-width: 700% !important;
18005
  }
16848 stevensc 18006
 
16825 efrain 18007
  .mn-wd-sm-700p-f {
18008
    min-width: 700% !important;
18009
  }
16848 stevensc 18010
 
16825 efrain 18011
  .wd-sm-750 {
18012
    width: 750px;
18013
  }
16848 stevensc 18014
 
16825 efrain 18015
  .wd-sm-750p {
18016
    width: 750%;
18017
  }
16848 stevensc 18018
 
16825 efrain 18019
  .mx-wd-sm-750p {
18020
    max-width: 750%;
18021
  }
16848 stevensc 18022
 
16825 efrain 18023
  .mn-wd-sm-750p {
18024
    min-width: 750%;
18025
  }
16848 stevensc 18026
 
16825 efrain 18027
  .wd-sm-750-f {
18028
    width: 750px !important;
18029
  }
16848 stevensc 18030
 
16825 efrain 18031
  .wd-sm-750p-f {
18032
    width: 750% !important;
18033
  }
16848 stevensc 18034
 
16825 efrain 18035
  .mx-wd-sm-750p-f {
18036
    max-width: 750% !important;
18037
  }
16848 stevensc 18038
 
16825 efrain 18039
  .mn-wd-sm-750p-f {
18040
    min-width: 750% !important;
18041
  }
16848 stevensc 18042
 
16825 efrain 18043
  .wd-sm-800 {
18044
    width: 800px;
18045
  }
16848 stevensc 18046
 
16825 efrain 18047
  .wd-sm-800p {
18048
    width: 800%;
18049
  }
16848 stevensc 18050
 
16825 efrain 18051
  .mx-wd-sm-800p {
18052
    max-width: 800%;
18053
  }
16848 stevensc 18054
 
16825 efrain 18055
  .mn-wd-sm-800p {
18056
    min-width: 800%;
18057
  }
16848 stevensc 18058
 
16825 efrain 18059
  .wd-sm-800-f {
18060
    width: 800px !important;
18061
  }
16848 stevensc 18062
 
16825 efrain 18063
  .wd-sm-800p-f {
18064
    width: 800% !important;
18065
  }
16848 stevensc 18066
 
16825 efrain 18067
  .mx-wd-sm-800p-f {
18068
    max-width: 800% !important;
18069
  }
16848 stevensc 18070
 
16825 efrain 18071
  .mn-wd-sm-800p-f {
18072
    min-width: 800% !important;
18073
  }
16848 stevensc 18074
 
16825 efrain 18075
  .wd-sm-850 {
18076
    width: 850px;
18077
  }
16848 stevensc 18078
 
16825 efrain 18079
  .wd-sm-850p {
18080
    width: 850%;
18081
  }
16848 stevensc 18082
 
16825 efrain 18083
  .mx-wd-sm-850p {
18084
    max-width: 850%;
18085
  }
16848 stevensc 18086
 
16825 efrain 18087
  .mn-wd-sm-850p {
18088
    min-width: 850%;
18089
  }
16848 stevensc 18090
 
16825 efrain 18091
  .wd-sm-850-f {
18092
    width: 850px !important;
18093
  }
16848 stevensc 18094
 
16825 efrain 18095
  .wd-sm-850p-f {
18096
    width: 850% !important;
18097
  }
16848 stevensc 18098
 
16825 efrain 18099
  .mx-wd-sm-850p-f {
18100
    max-width: 850% !important;
18101
  }
16848 stevensc 18102
 
16825 efrain 18103
  .mn-wd-sm-850p-f {
18104
    min-width: 850% !important;
18105
  }
16848 stevensc 18106
 
16825 efrain 18107
  .wd-sm-900 {
18108
    width: 900px;
18109
  }
16848 stevensc 18110
 
16825 efrain 18111
  .wd-sm-900p {
18112
    width: 900%;
18113
  }
16848 stevensc 18114
 
16825 efrain 18115
  .mx-wd-sm-900p {
18116
    max-width: 900%;
18117
  }
16848 stevensc 18118
 
16825 efrain 18119
  .mn-wd-sm-900p {
18120
    min-width: 900%;
18121
  }
16848 stevensc 18122
 
16825 efrain 18123
  .wd-sm-900-f {
18124
    width: 900px !important;
18125
  }
16848 stevensc 18126
 
16825 efrain 18127
  .wd-sm-900p-f {
18128
    width: 900% !important;
18129
  }
16848 stevensc 18130
 
16825 efrain 18131
  .mx-wd-sm-900p-f {
18132
    max-width: 900% !important;
18133
  }
16848 stevensc 18134
 
16825 efrain 18135
  .mn-wd-sm-900p-f {
18136
    min-width: 900% !important;
18137
  }
16848 stevensc 18138
 
16825 efrain 18139
  .wd-sm-950 {
18140
    width: 950px;
18141
  }
16848 stevensc 18142
 
16825 efrain 18143
  .wd-sm-950p {
18144
    width: 950%;
18145
  }
16848 stevensc 18146
 
16825 efrain 18147
  .mx-wd-sm-950p {
18148
    max-width: 950%;
18149
  }
16848 stevensc 18150
 
16825 efrain 18151
  .mn-wd-sm-950p {
18152
    min-width: 950%;
18153
  }
16848 stevensc 18154
 
16825 efrain 18155
  .wd-sm-950-f {
18156
    width: 950px !important;
18157
  }
16848 stevensc 18158
 
16825 efrain 18159
  .wd-sm-950p-f {
18160
    width: 950% !important;
18161
  }
16848 stevensc 18162
 
16825 efrain 18163
  .mx-wd-sm-950p-f {
18164
    max-width: 950% !important;
18165
  }
16848 stevensc 18166
 
16825 efrain 18167
  .mn-wd-sm-950p-f {
18168
    min-width: 950% !important;
18169
  }
16848 stevensc 18170
 
16825 efrain 18171
  .wd-sm-1000 {
18172
    width: 1000px;
18173
  }
16848 stevensc 18174
 
16825 efrain 18175
  .wd-sm-1000p {
18176
    width: 1000%;
18177
  }
16848 stevensc 18178
 
16825 efrain 18179
  .mx-wd-sm-1000p {
18180
    max-width: 1000%;
18181
  }
16848 stevensc 18182
 
16825 efrain 18183
  .mn-wd-sm-1000p {
18184
    min-width: 1000%;
18185
  }
16848 stevensc 18186
 
16825 efrain 18187
  .wd-sm-1000-f {
18188
    width: 1000px !important;
18189
  }
16848 stevensc 18190
 
16825 efrain 18191
  .wd-sm-1000p-f {
18192
    width: 1000% !important;
18193
  }
16848 stevensc 18194
 
16825 efrain 18195
  .mx-wd-sm-1000p-f {
18196
    max-width: 1000% !important;
18197
  }
16848 stevensc 18198
 
16825 efrain 18199
  .mn-wd-sm-1000p-f {
18200
    min-width: 1000% !important;
18201
  }
16848 stevensc 18202
 
16825 efrain 18203
  .wd-sm-auto {
18204
    width: auto;
18205
  }
16848 stevensc 18206
 
16825 efrain 18207
  .wd-sm-auto-f {
18208
    width: auto !important;
18209
  }
18210
}
16848 stevensc 18211
 
16825 efrain 18212
@media (min-width: 768px) {
18213
  .wd-md-5 {
18214
    width: 5px;
18215
  }
16848 stevensc 18216
 
16825 efrain 18217
  .wd-md-5p {
18218
    width: 5%;
18219
  }
16848 stevensc 18220
 
16825 efrain 18221
  .mx-wd-md-5p {
18222
    max-width: 5%;
18223
  }
16848 stevensc 18224
 
16825 efrain 18225
  .mn-wd-md-5p {
18226
    min-width: 5%;
18227
  }
16848 stevensc 18228
 
16825 efrain 18229
  .wd-md-5-f {
18230
    width: 5px !important;
18231
  }
16848 stevensc 18232
 
16825 efrain 18233
  .wd-md-5p-f {
18234
    width: 5% !important;
18235
  }
16848 stevensc 18236
 
16825 efrain 18237
  .mx-wd-md-5p-f {
18238
    max-width: 5% !important;
18239
  }
16848 stevensc 18240
 
16825 efrain 18241
  .mn-wd-md-5p-f {
18242
    min-width: 5% !important;
18243
  }
16848 stevensc 18244
 
16825 efrain 18245
  .wd-md-10 {
18246
    width: 10px;
18247
  }
16848 stevensc 18248
 
16825 efrain 18249
  .wd-md-10p {
18250
    width: 10%;
18251
  }
16848 stevensc 18252
 
16825 efrain 18253
  .mx-wd-md-10p {
18254
    max-width: 10%;
18255
  }
16848 stevensc 18256
 
16825 efrain 18257
  .mn-wd-md-10p {
18258
    min-width: 10%;
18259
  }
16848 stevensc 18260
 
16825 efrain 18261
  .wd-md-10-f {
18262
    width: 10px !important;
18263
  }
16848 stevensc 18264
 
16825 efrain 18265
  .wd-md-10p-f {
18266
    width: 10% !important;
18267
  }
16848 stevensc 18268
 
16825 efrain 18269
  .mx-wd-md-10p-f {
18270
    max-width: 10% !important;
18271
  }
16848 stevensc 18272
 
16825 efrain 18273
  .mn-wd-md-10p-f {
18274
    min-width: 10% !important;
18275
  }
16848 stevensc 18276
 
16825 efrain 18277
  .wd-md-15 {
18278
    width: 15px;
18279
  }
16848 stevensc 18280
 
16825 efrain 18281
  .wd-md-15p {
18282
    width: 15%;
18283
  }
16848 stevensc 18284
 
16825 efrain 18285
  .mx-wd-md-15p {
18286
    max-width: 15%;
18287
  }
16848 stevensc 18288
 
16825 efrain 18289
  .mn-wd-md-15p {
18290
    min-width: 15%;
18291
  }
16848 stevensc 18292
 
16825 efrain 18293
  .wd-md-15-f {
18294
    width: 15px !important;
18295
  }
16848 stevensc 18296
 
16825 efrain 18297
  .wd-md-15p-f {
18298
    width: 15% !important;
18299
  }
16848 stevensc 18300
 
16825 efrain 18301
  .mx-wd-md-15p-f {
18302
    max-width: 15% !important;
18303
  }
16848 stevensc 18304
 
16825 efrain 18305
  .mn-wd-md-15p-f {
18306
    min-width: 15% !important;
18307
  }
16848 stevensc 18308
 
16825 efrain 18309
  .wd-md-20 {
18310
    width: 20px;
18311
  }
16848 stevensc 18312
 
16825 efrain 18313
  .wd-md-20p {
18314
    width: 20%;
18315
  }
16848 stevensc 18316
 
16825 efrain 18317
  .mx-wd-md-20p {
18318
    max-width: 20%;
18319
  }
16848 stevensc 18320
 
16825 efrain 18321
  .mn-wd-md-20p {
18322
    min-width: 20%;
18323
  }
16848 stevensc 18324
 
16825 efrain 18325
  .wd-md-20-f {
18326
    width: 20px !important;
18327
  }
16848 stevensc 18328
 
16825 efrain 18329
  .wd-md-20p-f {
18330
    width: 20% !important;
18331
  }
16848 stevensc 18332
 
16825 efrain 18333
  .mx-wd-md-20p-f {
18334
    max-width: 20% !important;
18335
  }
16848 stevensc 18336
 
16825 efrain 18337
  .mn-wd-md-20p-f {
18338
    min-width: 20% !important;
18339
  }
16848 stevensc 18340
 
16825 efrain 18341
  .wd-md-25 {
18342
    width: 25px;
18343
  }
16848 stevensc 18344
 
16825 efrain 18345
  .wd-md-25p {
18346
    width: 25%;
18347
  }
16848 stevensc 18348
 
16825 efrain 18349
  .mx-wd-md-25p {
18350
    max-width: 25%;
18351
  }
16848 stevensc 18352
 
16825 efrain 18353
  .mn-wd-md-25p {
18354
    min-width: 25%;
18355
  }
16848 stevensc 18356
 
16825 efrain 18357
  .wd-md-25-f {
18358
    width: 25px !important;
18359
  }
16848 stevensc 18360
 
16825 efrain 18361
  .wd-md-25p-f {
18362
    width: 25% !important;
18363
  }
16848 stevensc 18364
 
16825 efrain 18365
  .mx-wd-md-25p-f {
18366
    max-width: 25% !important;
18367
  }
16848 stevensc 18368
 
16825 efrain 18369
  .mn-wd-md-25p-f {
18370
    min-width: 25% !important;
18371
  }
16848 stevensc 18372
 
16825 efrain 18373
  .wd-md-30 {
18374
    width: 30px;
18375
  }
16848 stevensc 18376
 
16825 efrain 18377
  .wd-md-30p {
18378
    width: 30%;
18379
  }
16848 stevensc 18380
 
16825 efrain 18381
  .mx-wd-md-30p {
18382
    max-width: 30%;
18383
  }
16848 stevensc 18384
 
16825 efrain 18385
  .mn-wd-md-30p {
18386
    min-width: 30%;
18387
  }
16848 stevensc 18388
 
16825 efrain 18389
  .wd-md-30-f {
18390
    width: 30px !important;
18391
  }
16848 stevensc 18392
 
16825 efrain 18393
  .wd-md-30p-f {
18394
    width: 30% !important;
18395
  }
16848 stevensc 18396
 
16825 efrain 18397
  .mx-wd-md-30p-f {
18398
    max-width: 30% !important;
18399
  }
16848 stevensc 18400
 
16825 efrain 18401
  .mn-wd-md-30p-f {
18402
    min-width: 30% !important;
18403
  }
16848 stevensc 18404
 
16825 efrain 18405
  .wd-md-35 {
18406
    width: 35px;
18407
  }
16848 stevensc 18408
 
16825 efrain 18409
  .wd-md-35p {
18410
    width: 35%;
18411
  }
16848 stevensc 18412
 
16825 efrain 18413
  .mx-wd-md-35p {
18414
    max-width: 35%;
18415
  }
16848 stevensc 18416
 
16825 efrain 18417
  .mn-wd-md-35p {
18418
    min-width: 35%;
18419
  }
16848 stevensc 18420
 
16825 efrain 18421
  .wd-md-35-f {
18422
    width: 35px !important;
18423
  }
16848 stevensc 18424
 
16825 efrain 18425
  .wd-md-35p-f {
18426
    width: 35% !important;
18427
  }
16848 stevensc 18428
 
16825 efrain 18429
  .mx-wd-md-35p-f {
18430
    max-width: 35% !important;
18431
  }
16848 stevensc 18432
 
16825 efrain 18433
  .mn-wd-md-35p-f {
18434
    min-width: 35% !important;
18435
  }
16848 stevensc 18436
 
16825 efrain 18437
  .wd-md-40 {
18438
    width: 40px;
18439
  }
16848 stevensc 18440
 
16825 efrain 18441
  .wd-md-40p {
18442
    width: 40%;
18443
  }
16848 stevensc 18444
 
16825 efrain 18445
  .mx-wd-md-40p {
18446
    max-width: 40%;
18447
  }
16848 stevensc 18448
 
16825 efrain 18449
  .mn-wd-md-40p {
18450
    min-width: 40%;
18451
  }
16848 stevensc 18452
 
16825 efrain 18453
  .wd-md-40-f {
18454
    width: 40px !important;
18455
  }
16848 stevensc 18456
 
16825 efrain 18457
  .wd-md-40p-f {
18458
    width: 40% !important;
18459
  }
16848 stevensc 18460
 
16825 efrain 18461
  .mx-wd-md-40p-f {
18462
    max-width: 40% !important;
18463
  }
16848 stevensc 18464
 
16825 efrain 18465
  .mn-wd-md-40p-f {
18466
    min-width: 40% !important;
18467
  }
16848 stevensc 18468
 
16825 efrain 18469
  .wd-md-45 {
18470
    width: 45px;
18471
  }
16848 stevensc 18472
 
16825 efrain 18473
  .wd-md-45p {
18474
    width: 45%;
18475
  }
16848 stevensc 18476
 
16825 efrain 18477
  .mx-wd-md-45p {
18478
    max-width: 45%;
18479
  }
16848 stevensc 18480
 
16825 efrain 18481
  .mn-wd-md-45p {
18482
    min-width: 45%;
18483
  }
16848 stevensc 18484
 
16825 efrain 18485
  .wd-md-45-f {
18486
    width: 45px !important;
18487
  }
16848 stevensc 18488
 
16825 efrain 18489
  .wd-md-45p-f {
18490
    width: 45% !important;
18491
  }
16848 stevensc 18492
 
16825 efrain 18493
  .mx-wd-md-45p-f {
18494
    max-width: 45% !important;
18495
  }
16848 stevensc 18496
 
16825 efrain 18497
  .mn-wd-md-45p-f {
18498
    min-width: 45% !important;
18499
  }
16848 stevensc 18500
 
16825 efrain 18501
  .wd-md-50 {
18502
    width: 50px;
18503
  }
16848 stevensc 18504
 
16825 efrain 18505
  .wd-md-50p {
18506
    width: 50%;
18507
  }
16848 stevensc 18508
 
16825 efrain 18509
  .mx-wd-md-50p {
18510
    max-width: 50%;
18511
  }
16848 stevensc 18512
 
16825 efrain 18513
  .mn-wd-md-50p {
18514
    min-width: 50%;
18515
  }
16848 stevensc 18516
 
16825 efrain 18517
  .wd-md-50-f {
18518
    width: 50px !important;
18519
  }
16848 stevensc 18520
 
16825 efrain 18521
  .wd-md-50p-f {
18522
    width: 50% !important;
18523
  }
16848 stevensc 18524
 
16825 efrain 18525
  .mx-wd-md-50p-f {
18526
    max-width: 50% !important;
18527
  }
16848 stevensc 18528
 
16825 efrain 18529
  .mn-wd-md-50p-f {
18530
    min-width: 50% !important;
18531
  }
16848 stevensc 18532
 
16825 efrain 18533
  .wd-md-55 {
18534
    width: 55px;
18535
  }
16848 stevensc 18536
 
16825 efrain 18537
  .wd-md-55p {
18538
    width: 55%;
18539
  }
16848 stevensc 18540
 
16825 efrain 18541
  .mx-wd-md-55p {
18542
    max-width: 55%;
18543
  }
16848 stevensc 18544
 
16825 efrain 18545
  .mn-wd-md-55p {
18546
    min-width: 55%;
18547
  }
16848 stevensc 18548
 
16825 efrain 18549
  .wd-md-55-f {
18550
    width: 55px !important;
18551
  }
16848 stevensc 18552
 
16825 efrain 18553
  .wd-md-55p-f {
18554
    width: 55% !important;
18555
  }
16848 stevensc 18556
 
16825 efrain 18557
  .mx-wd-md-55p-f {
18558
    max-width: 55% !important;
18559
  }
16848 stevensc 18560
 
16825 efrain 18561
  .mn-wd-md-55p-f {
18562
    min-width: 55% !important;
18563
  }
16848 stevensc 18564
 
16825 efrain 18565
  .wd-md-60 {
18566
    width: 60px;
18567
  }
16848 stevensc 18568
 
16825 efrain 18569
  .wd-md-60p {
18570
    width: 60%;
18571
  }
16848 stevensc 18572
 
16825 efrain 18573
  .mx-wd-md-60p {
18574
    max-width: 60%;
18575
  }
16848 stevensc 18576
 
16825 efrain 18577
  .mn-wd-md-60p {
18578
    min-width: 60%;
18579
  }
16848 stevensc 18580
 
16825 efrain 18581
  .wd-md-60-f {
18582
    width: 60px !important;
18583
  }
16848 stevensc 18584
 
16825 efrain 18585
  .wd-md-60p-f {
18586
    width: 60% !important;
18587
  }
16848 stevensc 18588
 
16825 efrain 18589
  .mx-wd-md-60p-f {
18590
    max-width: 60% !important;
18591
  }
16848 stevensc 18592
 
16825 efrain 18593
  .mn-wd-md-60p-f {
18594
    min-width: 60% !important;
18595
  }
16848 stevensc 18596
 
16825 efrain 18597
  .wd-md-65 {
18598
    width: 65px;
18599
  }
16848 stevensc 18600
 
16825 efrain 18601
  .wd-md-65p {
18602
    width: 65%;
18603
  }
16848 stevensc 18604
 
16825 efrain 18605
  .mx-wd-md-65p {
18606
    max-width: 65%;
18607
  }
16848 stevensc 18608
 
16825 efrain 18609
  .mn-wd-md-65p {
18610
    min-width: 65%;
18611
  }
16848 stevensc 18612
 
16825 efrain 18613
  .wd-md-65-f {
18614
    width: 65px !important;
18615
  }
16848 stevensc 18616
 
16825 efrain 18617
  .wd-md-65p-f {
18618
    width: 65% !important;
18619
  }
16848 stevensc 18620
 
16825 efrain 18621
  .mx-wd-md-65p-f {
18622
    max-width: 65% !important;
18623
  }
16848 stevensc 18624
 
16825 efrain 18625
  .mn-wd-md-65p-f {
18626
    min-width: 65% !important;
18627
  }
16848 stevensc 18628
 
16825 efrain 18629
  .wd-md-70 {
18630
    width: 70px;
18631
  }
16848 stevensc 18632
 
16825 efrain 18633
  .wd-md-70p {
18634
    width: 70%;
18635
  }
16848 stevensc 18636
 
16825 efrain 18637
  .mx-wd-md-70p {
18638
    max-width: 70%;
18639
  }
16848 stevensc 18640
 
16825 efrain 18641
  .mn-wd-md-70p {
18642
    min-width: 70%;
18643
  }
16848 stevensc 18644
 
16825 efrain 18645
  .wd-md-70-f {
18646
    width: 70px !important;
18647
  }
16848 stevensc 18648
 
16825 efrain 18649
  .wd-md-70p-f {
18650
    width: 70% !important;
18651
  }
16848 stevensc 18652
 
16825 efrain 18653
  .mx-wd-md-70p-f {
18654
    max-width: 70% !important;
18655
  }
16848 stevensc 18656
 
16825 efrain 18657
  .mn-wd-md-70p-f {
18658
    min-width: 70% !important;
18659
  }
16848 stevensc 18660
 
16825 efrain 18661
  .wd-md-75 {
18662
    width: 75px;
18663
  }
16848 stevensc 18664
 
16825 efrain 18665
  .wd-md-75p {
18666
    width: 75%;
18667
  }
16848 stevensc 18668
 
16825 efrain 18669
  .mx-wd-md-75p {
18670
    max-width: 75%;
18671
  }
16848 stevensc 18672
 
16825 efrain 18673
  .mn-wd-md-75p {
18674
    min-width: 75%;
18675
  }
16848 stevensc 18676
 
16825 efrain 18677
  .wd-md-75-f {
18678
    width: 75px !important;
18679
  }
16848 stevensc 18680
 
16825 efrain 18681
  .wd-md-75p-f {
18682
    width: 75% !important;
18683
  }
16848 stevensc 18684
 
16825 efrain 18685
  .mx-wd-md-75p-f {
18686
    max-width: 75% !important;
18687
  }
16848 stevensc 18688
 
16825 efrain 18689
  .mn-wd-md-75p-f {
18690
    min-width: 75% !important;
18691
  }
16848 stevensc 18692
 
16825 efrain 18693
  .wd-md-80 {
18694
    width: 80px;
18695
  }
16848 stevensc 18696
 
16825 efrain 18697
  .wd-md-80p {
18698
    width: 80%;
18699
  }
16848 stevensc 18700
 
16825 efrain 18701
  .mx-wd-md-80p {
18702
    max-width: 80%;
18703
  }
16848 stevensc 18704
 
16825 efrain 18705
  .mn-wd-md-80p {
18706
    min-width: 80%;
18707
  }
16848 stevensc 18708
 
16825 efrain 18709
  .wd-md-80-f {
18710
    width: 80px !important;
18711
  }
16848 stevensc 18712
 
16825 efrain 18713
  .wd-md-80p-f {
18714
    width: 80% !important;
18715
  }
16848 stevensc 18716
 
16825 efrain 18717
  .mx-wd-md-80p-f {
18718
    max-width: 80% !important;
18719
  }
16848 stevensc 18720
 
16825 efrain 18721
  .mn-wd-md-80p-f {
18722
    min-width: 80% !important;
18723
  }
16848 stevensc 18724
 
16825 efrain 18725
  .wd-md-85 {
18726
    width: 85px;
18727
  }
16848 stevensc 18728
 
16825 efrain 18729
  .wd-md-85p {
18730
    width: 85%;
18731
  }
16848 stevensc 18732
 
16825 efrain 18733
  .mx-wd-md-85p {
18734
    max-width: 85%;
18735
  }
16848 stevensc 18736
 
16825 efrain 18737
  .mn-wd-md-85p {
18738
    min-width: 85%;
18739
  }
16848 stevensc 18740
 
16825 efrain 18741
  .wd-md-85-f {
18742
    width: 85px !important;
18743
  }
16848 stevensc 18744
 
16825 efrain 18745
  .wd-md-85p-f {
18746
    width: 85% !important;
18747
  }
16848 stevensc 18748
 
16825 efrain 18749
  .mx-wd-md-85p-f {
18750
    max-width: 85% !important;
18751
  }
16848 stevensc 18752
 
16825 efrain 18753
  .mn-wd-md-85p-f {
18754
    min-width: 85% !important;
18755
  }
16848 stevensc 18756
 
16825 efrain 18757
  .wd-md-90 {
18758
    width: 90px;
18759
  }
16848 stevensc 18760
 
16825 efrain 18761
  .wd-md-90p {
18762
    width: 90%;
18763
  }
16848 stevensc 18764
 
16825 efrain 18765
  .mx-wd-md-90p {
18766
    max-width: 90%;
18767
  }
16848 stevensc 18768
 
16825 efrain 18769
  .mn-wd-md-90p {
18770
    min-width: 90%;
18771
  }
16848 stevensc 18772
 
16825 efrain 18773
  .wd-md-90-f {
18774
    width: 90px !important;
18775
  }
16848 stevensc 18776
 
16825 efrain 18777
  .wd-md-90p-f {
18778
    width: 90% !important;
18779
  }
16848 stevensc 18780
 
16825 efrain 18781
  .mx-wd-md-90p-f {
18782
    max-width: 90% !important;
18783
  }
16848 stevensc 18784
 
16825 efrain 18785
  .mn-wd-md-90p-f {
18786
    min-width: 90% !important;
18787
  }
16848 stevensc 18788
 
16825 efrain 18789
  .wd-md-95 {
18790
    width: 95px;
18791
  }
16848 stevensc 18792
 
16825 efrain 18793
  .wd-md-95p {
18794
    width: 95%;
18795
  }
16848 stevensc 18796
 
16825 efrain 18797
  .mx-wd-md-95p {
18798
    max-width: 95%;
18799
  }
16848 stevensc 18800
 
16825 efrain 18801
  .mn-wd-md-95p {
18802
    min-width: 95%;
18803
  }
16848 stevensc 18804
 
16825 efrain 18805
  .wd-md-95-f {
18806
    width: 95px !important;
18807
  }
16848 stevensc 18808
 
16825 efrain 18809
  .wd-md-95p-f {
18810
    width: 95% !important;
18811
  }
16848 stevensc 18812
 
16825 efrain 18813
  .mx-wd-md-95p-f {
18814
    max-width: 95% !important;
18815
  }
16848 stevensc 18816
 
16825 efrain 18817
  .mn-wd-md-95p-f {
18818
    min-width: 95% !important;
18819
  }
16848 stevensc 18820
 
16825 efrain 18821
  .wd-md-100 {
18822
    width: 100px;
18823
  }
16848 stevensc 18824
 
16825 efrain 18825
  .wd-md-100p {
18826
    width: 100%;
18827
  }
16848 stevensc 18828
 
16825 efrain 18829
  .mx-wd-md-100p {
18830
    max-width: 100%;
18831
  }
16848 stevensc 18832
 
16825 efrain 18833
  .mn-wd-md-100p {
18834
    min-width: 100%;
18835
  }
16848 stevensc 18836
 
16825 efrain 18837
  .wd-md-100-f {
18838
    width: 100px !important;
18839
  }
16848 stevensc 18840
 
16825 efrain 18841
  .wd-md-100p-f {
18842
    width: 100% !important;
18843
  }
16848 stevensc 18844
 
16825 efrain 18845
  .mx-wd-md-100p-f {
18846
    max-width: 100% !important;
18847
  }
16848 stevensc 18848
 
16825 efrain 18849
  .mn-wd-md-100p-f {
18850
    min-width: 100% !important;
18851
  }
16848 stevensc 18852
 
16825 efrain 18853
  .wd-md-150 {
18854
    width: 150px;
18855
  }
16848 stevensc 18856
 
16825 efrain 18857
  .wd-md-150p {
18858
    width: 150%;
18859
  }
16848 stevensc 18860
 
16825 efrain 18861
  .mx-wd-md-150p {
18862
    max-width: 150%;
18863
  }
16848 stevensc 18864
 
16825 efrain 18865
  .mn-wd-md-150p {
18866
    min-width: 150%;
18867
  }
16848 stevensc 18868
 
16825 efrain 18869
  .wd-md-150-f {
18870
    width: 150px !important;
18871
  }
16848 stevensc 18872
 
16825 efrain 18873
  .wd-md-150p-f {
18874
    width: 150% !important;
18875
  }
16848 stevensc 18876
 
16825 efrain 18877
  .mx-wd-md-150p-f {
18878
    max-width: 150% !important;
18879
  }
16848 stevensc 18880
 
16825 efrain 18881
  .mn-wd-md-150p-f {
18882
    min-width: 150% !important;
18883
  }
16848 stevensc 18884
 
16825 efrain 18885
  .wd-md-200 {
18886
    width: 200px;
18887
  }
16848 stevensc 18888
 
16825 efrain 18889
  .wd-md-200p {
18890
    width: 200%;
18891
  }
16848 stevensc 18892
 
16825 efrain 18893
  .mx-wd-md-200p {
18894
    max-width: 200%;
18895
  }
16848 stevensc 18896
 
16825 efrain 18897
  .mn-wd-md-200p {
18898
    min-width: 200%;
18899
  }
16848 stevensc 18900
 
16825 efrain 18901
  .wd-md-200-f {
18902
    width: 200px !important;
18903
  }
16848 stevensc 18904
 
16825 efrain 18905
  .wd-md-200p-f {
18906
    width: 200% !important;
18907
  }
16848 stevensc 18908
 
16825 efrain 18909
  .mx-wd-md-200p-f {
18910
    max-width: 200% !important;
18911
  }
16848 stevensc 18912
 
16825 efrain 18913
  .mn-wd-md-200p-f {
18914
    min-width: 200% !important;
18915
  }
16848 stevensc 18916
 
16825 efrain 18917
  .wd-md-250 {
18918
    width: 250px;
18919
  }
16848 stevensc 18920
 
16825 efrain 18921
  .wd-md-250p {
18922
    width: 250%;
18923
  }
16848 stevensc 18924
 
16825 efrain 18925
  .mx-wd-md-250p {
18926
    max-width: 250%;
18927
  }
16848 stevensc 18928
 
16825 efrain 18929
  .mn-wd-md-250p {
18930
    min-width: 250%;
18931
  }
16848 stevensc 18932
 
16825 efrain 18933
  .wd-md-250-f {
18934
    width: 250px !important;
18935
  }
16848 stevensc 18936
 
16825 efrain 18937
  .wd-md-250p-f {
18938
    width: 250% !important;
18939
  }
16848 stevensc 18940
 
16825 efrain 18941
  .mx-wd-md-250p-f {
18942
    max-width: 250% !important;
18943
  }
16848 stevensc 18944
 
16825 efrain 18945
  .mn-wd-md-250p-f {
18946
    min-width: 250% !important;
18947
  }
16848 stevensc 18948
 
16825 efrain 18949
  .wd-md-300 {
18950
    width: 300px;
18951
  }
16848 stevensc 18952
 
16825 efrain 18953
  .wd-md-300p {
18954
    width: 300%;
18955
  }
16848 stevensc 18956
 
16825 efrain 18957
  .mx-wd-md-300p {
18958
    max-width: 300%;
18959
  }
16848 stevensc 18960
 
16825 efrain 18961
  .mn-wd-md-300p {
18962
    min-width: 300%;
18963
  }
16848 stevensc 18964
 
16825 efrain 18965
  .wd-md-300-f {
18966
    width: 300px !important;
18967
  }
16848 stevensc 18968
 
16825 efrain 18969
  .wd-md-300p-f {
18970
    width: 300% !important;
18971
  }
16848 stevensc 18972
 
16825 efrain 18973
  .mx-wd-md-300p-f {
18974
    max-width: 300% !important;
18975
  }
16848 stevensc 18976
 
16825 efrain 18977
  .mn-wd-md-300p-f {
18978
    min-width: 300% !important;
18979
  }
16848 stevensc 18980
 
16825 efrain 18981
  .wd-md-350 {
18982
    width: 350px;
18983
  }
16848 stevensc 18984
 
16825 efrain 18985
  .wd-md-350p {
18986
    width: 350%;
18987
  }
16848 stevensc 18988
 
16825 efrain 18989
  .mx-wd-md-350p {
18990
    max-width: 350%;
18991
  }
16848 stevensc 18992
 
16825 efrain 18993
  .mn-wd-md-350p {
18994
    min-width: 350%;
18995
  }
16848 stevensc 18996
 
16825 efrain 18997
  .wd-md-350-f {
18998
    width: 350px !important;
18999
  }
16848 stevensc 19000
 
16825 efrain 19001
  .wd-md-350p-f {
19002
    width: 350% !important;
19003
  }
16848 stevensc 19004
 
16825 efrain 19005
  .mx-wd-md-350p-f {
19006
    max-width: 350% !important;
19007
  }
16848 stevensc 19008
 
16825 efrain 19009
  .mn-wd-md-350p-f {
19010
    min-width: 350% !important;
19011
  }
16848 stevensc 19012
 
16825 efrain 19013
  .wd-md-400 {
19014
    width: 400px;
19015
  }
16848 stevensc 19016
 
16825 efrain 19017
  .wd-md-400p {
19018
    width: 400%;
19019
  }
16848 stevensc 19020
 
16825 efrain 19021
  .mx-wd-md-400p {
19022
    max-width: 400%;
19023
  }
16848 stevensc 19024
 
16825 efrain 19025
  .mn-wd-md-400p {
19026
    min-width: 400%;
19027
  }
16848 stevensc 19028
 
16825 efrain 19029
  .wd-md-400-f {
19030
    width: 400px !important;
19031
  }
16848 stevensc 19032
 
16825 efrain 19033
  .wd-md-400p-f {
19034
    width: 400% !important;
19035
  }
16848 stevensc 19036
 
16825 efrain 19037
  .mx-wd-md-400p-f {
19038
    max-width: 400% !important;
19039
  }
16848 stevensc 19040
 
16825 efrain 19041
  .mn-wd-md-400p-f {
19042
    min-width: 400% !important;
19043
  }
16848 stevensc 19044
 
16825 efrain 19045
  .wd-md-450 {
19046
    width: 450px;
19047
  }
16848 stevensc 19048
 
16825 efrain 19049
  .wd-md-450p {
19050
    width: 450%;
19051
  }
16848 stevensc 19052
 
16825 efrain 19053
  .mx-wd-md-450p {
19054
    max-width: 450%;
19055
  }
16848 stevensc 19056
 
16825 efrain 19057
  .mn-wd-md-450p {
19058
    min-width: 450%;
19059
  }
16848 stevensc 19060
 
16825 efrain 19061
  .wd-md-450-f {
19062
    width: 450px !important;
19063
  }
16848 stevensc 19064
 
16825 efrain 19065
  .wd-md-450p-f {
19066
    width: 450% !important;
19067
  }
16848 stevensc 19068
 
16825 efrain 19069
  .mx-wd-md-450p-f {
19070
    max-width: 450% !important;
19071
  }
16848 stevensc 19072
 
16825 efrain 19073
  .mn-wd-md-450p-f {
19074
    min-width: 450% !important;
19075
  }
16848 stevensc 19076
 
16825 efrain 19077
  .wd-md-500 {
19078
    width: 500px;
19079
  }
16848 stevensc 19080
 
16825 efrain 19081
  .wd-md-500p {
19082
    width: 500%;
19083
  }
16848 stevensc 19084
 
16825 efrain 19085
  .mx-wd-md-500p {
19086
    max-width: 500%;
19087
  }
16848 stevensc 19088
 
16825 efrain 19089
  .mn-wd-md-500p {
19090
    min-width: 500%;
19091
  }
16848 stevensc 19092
 
16825 efrain 19093
  .wd-md-500-f {
19094
    width: 500px !important;
19095
  }
16848 stevensc 19096
 
16825 efrain 19097
  .wd-md-500p-f {
19098
    width: 500% !important;
19099
  }
16848 stevensc 19100
 
16825 efrain 19101
  .mx-wd-md-500p-f {
19102
    max-width: 500% !important;
19103
  }
16848 stevensc 19104
 
16825 efrain 19105
  .mn-wd-md-500p-f {
19106
    min-width: 500% !important;
19107
  }
16848 stevensc 19108
 
16825 efrain 19109
  .wd-md-550 {
19110
    width: 550px;
19111
  }
16848 stevensc 19112
 
16825 efrain 19113
  .wd-md-550p {
19114
    width: 550%;
19115
  }
16848 stevensc 19116
 
16825 efrain 19117
  .mx-wd-md-550p {
19118
    max-width: 550%;
19119
  }
16848 stevensc 19120
 
16825 efrain 19121
  .mn-wd-md-550p {
19122
    min-width: 550%;
19123
  }
16848 stevensc 19124
 
16825 efrain 19125
  .wd-md-550-f {
19126
    width: 550px !important;
19127
  }
16848 stevensc 19128
 
16825 efrain 19129
  .wd-md-550p-f {
19130
    width: 550% !important;
19131
  }
16848 stevensc 19132
 
16825 efrain 19133
  .mx-wd-md-550p-f {
19134
    max-width: 550% !important;
19135
  }
16848 stevensc 19136
 
16825 efrain 19137
  .mn-wd-md-550p-f {
19138
    min-width: 550% !important;
19139
  }
16848 stevensc 19140
 
16825 efrain 19141
  .wd-md-600 {
19142
    width: 600px;
19143
  }
16848 stevensc 19144
 
16825 efrain 19145
  .wd-md-600p {
19146
    width: 600%;
19147
  }
16848 stevensc 19148
 
16825 efrain 19149
  .mx-wd-md-600p {
19150
    max-width: 600%;
19151
  }
16848 stevensc 19152
 
16825 efrain 19153
  .mn-wd-md-600p {
19154
    min-width: 600%;
19155
  }
16848 stevensc 19156
 
16825 efrain 19157
  .wd-md-600-f {
19158
    width: 600px !important;
19159
  }
16848 stevensc 19160
 
16825 efrain 19161
  .wd-md-600p-f {
19162
    width: 600% !important;
19163
  }
16848 stevensc 19164
 
16825 efrain 19165
  .mx-wd-md-600p-f {
19166
    max-width: 600% !important;
19167
  }
16848 stevensc 19168
 
16825 efrain 19169
  .mn-wd-md-600p-f {
19170
    min-width: 600% !important;
19171
  }
16848 stevensc 19172
 
16825 efrain 19173
  .wd-md-650 {
19174
    width: 650px;
19175
  }
16848 stevensc 19176
 
16825 efrain 19177
  .wd-md-650p {
19178
    width: 650%;
19179
  }
16848 stevensc 19180
 
16825 efrain 19181
  .mx-wd-md-650p {
19182
    max-width: 650%;
19183
  }
16848 stevensc 19184
 
16825 efrain 19185
  .mn-wd-md-650p {
19186
    min-width: 650%;
19187
  }
16848 stevensc 19188
 
16825 efrain 19189
  .wd-md-650-f {
19190
    width: 650px !important;
19191
  }
16848 stevensc 19192
 
16825 efrain 19193
  .wd-md-650p-f {
19194
    width: 650% !important;
19195
  }
16848 stevensc 19196
 
16825 efrain 19197
  .mx-wd-md-650p-f {
19198
    max-width: 650% !important;
19199
  }
16848 stevensc 19200
 
16825 efrain 19201
  .mn-wd-md-650p-f {
19202
    min-width: 650% !important;
19203
  }
16848 stevensc 19204
 
16825 efrain 19205
  .wd-md-700 {
19206
    width: 700px;
19207
  }
16848 stevensc 19208
 
16825 efrain 19209
  .wd-md-700p {
19210
    width: 700%;
19211
  }
16848 stevensc 19212
 
16825 efrain 19213
  .mx-wd-md-700p {
19214
    max-width: 700%;
19215
  }
16848 stevensc 19216
 
16825 efrain 19217
  .mn-wd-md-700p {
19218
    min-width: 700%;
19219
  }
16848 stevensc 19220
 
16825 efrain 19221
  .wd-md-700-f {
19222
    width: 700px !important;
19223
  }
16848 stevensc 19224
 
16825 efrain 19225
  .wd-md-700p-f {
19226
    width: 700% !important;
19227
  }
16848 stevensc 19228
 
16825 efrain 19229
  .mx-wd-md-700p-f {
19230
    max-width: 700% !important;
19231
  }
16848 stevensc 19232
 
16825 efrain 19233
  .mn-wd-md-700p-f {
19234
    min-width: 700% !important;
19235
  }
16848 stevensc 19236
 
16825 efrain 19237
  .wd-md-750 {
19238
    width: 750px;
19239
  }
16848 stevensc 19240
 
16825 efrain 19241
  .wd-md-750p {
19242
    width: 750%;
19243
  }
16848 stevensc 19244
 
16825 efrain 19245
  .mx-wd-md-750p {
19246
    max-width: 750%;
19247
  }
16848 stevensc 19248
 
16825 efrain 19249
  .mn-wd-md-750p {
19250
    min-width: 750%;
19251
  }
16848 stevensc 19252
 
16825 efrain 19253
  .wd-md-750-f {
19254
    width: 750px !important;
19255
  }
16848 stevensc 19256
 
16825 efrain 19257
  .wd-md-750p-f {
19258
    width: 750% !important;
19259
  }
16848 stevensc 19260
 
16825 efrain 19261
  .mx-wd-md-750p-f {
19262
    max-width: 750% !important;
19263
  }
16848 stevensc 19264
 
16825 efrain 19265
  .mn-wd-md-750p-f {
19266
    min-width: 750% !important;
19267
  }
16848 stevensc 19268
 
16825 efrain 19269
  .wd-md-800 {
19270
    width: 800px;
19271
  }
16848 stevensc 19272
 
16825 efrain 19273
  .wd-md-800p {
19274
    width: 800%;
19275
  }
16848 stevensc 19276
 
16825 efrain 19277
  .mx-wd-md-800p {
19278
    max-width: 800%;
19279
  }
16848 stevensc 19280
 
16825 efrain 19281
  .mn-wd-md-800p {
19282
    min-width: 800%;
19283
  }
16848 stevensc 19284
 
16825 efrain 19285
  .wd-md-800-f {
19286
    width: 800px !important;
19287
  }
16848 stevensc 19288
 
16825 efrain 19289
  .wd-md-800p-f {
19290
    width: 800% !important;
19291
  }
16848 stevensc 19292
 
16825 efrain 19293
  .mx-wd-md-800p-f {
19294
    max-width: 800% !important;
19295
  }
16848 stevensc 19296
 
16825 efrain 19297
  .mn-wd-md-800p-f {
19298
    min-width: 800% !important;
19299
  }
16848 stevensc 19300
 
16825 efrain 19301
  .wd-md-850 {
19302
    width: 850px;
19303
  }
16848 stevensc 19304
 
16825 efrain 19305
  .wd-md-850p {
19306
    width: 850%;
19307
  }
16848 stevensc 19308
 
16825 efrain 19309
  .mx-wd-md-850p {
19310
    max-width: 850%;
19311
  }
16848 stevensc 19312
 
16825 efrain 19313
  .mn-wd-md-850p {
19314
    min-width: 850%;
19315
  }
16848 stevensc 19316
 
16825 efrain 19317
  .wd-md-850-f {
19318
    width: 850px !important;
19319
  }
16848 stevensc 19320
 
16825 efrain 19321
  .wd-md-850p-f {
19322
    width: 850% !important;
19323
  }
16848 stevensc 19324
 
16825 efrain 19325
  .mx-wd-md-850p-f {
19326
    max-width: 850% !important;
19327
  }
16848 stevensc 19328
 
16825 efrain 19329
  .mn-wd-md-850p-f {
19330
    min-width: 850% !important;
19331
  }
16848 stevensc 19332
 
16825 efrain 19333
  .wd-md-900 {
19334
    width: 900px;
19335
  }
16848 stevensc 19336
 
16825 efrain 19337
  .wd-md-900p {
19338
    width: 900%;
19339
  }
16848 stevensc 19340
 
16825 efrain 19341
  .mx-wd-md-900p {
19342
    max-width: 900%;
19343
  }
16848 stevensc 19344
 
16825 efrain 19345
  .mn-wd-md-900p {
19346
    min-width: 900%;
19347
  }
16848 stevensc 19348
 
16825 efrain 19349
  .wd-md-900-f {
19350
    width: 900px !important;
19351
  }
16848 stevensc 19352
 
16825 efrain 19353
  .wd-md-900p-f {
19354
    width: 900% !important;
19355
  }
16848 stevensc 19356
 
16825 efrain 19357
  .mx-wd-md-900p-f {
19358
    max-width: 900% !important;
19359
  }
16848 stevensc 19360
 
16825 efrain 19361
  .mn-wd-md-900p-f {
19362
    min-width: 900% !important;
19363
  }
16848 stevensc 19364
 
16825 efrain 19365
  .wd-md-950 {
19366
    width: 950px;
19367
  }
16848 stevensc 19368
 
16825 efrain 19369
  .wd-md-950p {
19370
    width: 950%;
19371
  }
16848 stevensc 19372
 
16825 efrain 19373
  .mx-wd-md-950p {
19374
    max-width: 950%;
19375
  }
16848 stevensc 19376
 
16825 efrain 19377
  .mn-wd-md-950p {
19378
    min-width: 950%;
19379
  }
16848 stevensc 19380
 
16825 efrain 19381
  .wd-md-950-f {
19382
    width: 950px !important;
19383
  }
16848 stevensc 19384
 
16825 efrain 19385
  .wd-md-950p-f {
19386
    width: 950% !important;
19387
  }
16848 stevensc 19388
 
16825 efrain 19389
  .mx-wd-md-950p-f {
19390
    max-width: 950% !important;
19391
  }
16848 stevensc 19392
 
16825 efrain 19393
  .mn-wd-md-950p-f {
19394
    min-width: 950% !important;
19395
  }
16848 stevensc 19396
 
16825 efrain 19397
  .wd-md-1000 {
19398
    width: 1000px;
19399
  }
16848 stevensc 19400
 
16825 efrain 19401
  .wd-md-1000p {
19402
    width: 1000%;
19403
  }
16848 stevensc 19404
 
16825 efrain 19405
  .mx-wd-md-1000p {
19406
    max-width: 1000%;
19407
  }
16848 stevensc 19408
 
16825 efrain 19409
  .mn-wd-md-1000p {
19410
    min-width: 1000%;
19411
  }
16848 stevensc 19412
 
16825 efrain 19413
  .wd-md-1000-f {
19414
    width: 1000px !important;
19415
  }
16848 stevensc 19416
 
16825 efrain 19417
  .wd-md-1000p-f {
19418
    width: 1000% !important;
19419
  }
16848 stevensc 19420
 
16825 efrain 19421
  .mx-wd-md-1000p-f {
19422
    max-width: 1000% !important;
19423
  }
16848 stevensc 19424
 
16825 efrain 19425
  .mn-wd-md-1000p-f {
19426
    min-width: 1000% !important;
19427
  }
16848 stevensc 19428
 
16825 efrain 19429
  .wd-md-auto {
19430
    width: auto;
19431
  }
16848 stevensc 19432
 
16825 efrain 19433
  .wd-md-auto-f {
19434
    width: auto !important;
19435
  }
16848 stevensc 19436
 
16825 efrain 19437
  .wd-md-120 {
19438
    width: 120px;
19439
  }
19440
}
16848 stevensc 19441
 
16825 efrain 19442
@media (min-width: 992px) {
19443
  .wd-lg-5 {
19444
    width: 5px;
19445
  }
16848 stevensc 19446
 
16825 efrain 19447
  .wd-lg-5p {
19448
    width: 5%;
19449
  }
16848 stevensc 19450
 
16825 efrain 19451
  .mx-wd-lg-5p {
19452
    max-width: 5%;
19453
  }
16848 stevensc 19454
 
16825 efrain 19455
  .mn-wd-lg-5p {
19456
    min-width: 5%;
19457
  }
16848 stevensc 19458
 
16825 efrain 19459
  .wd-lg-5-f {
19460
    width: 5px !important;
19461
  }
16848 stevensc 19462
 
16825 efrain 19463
  .wd-lg-5p-f {
19464
    width: 5% !important;
19465
  }
16848 stevensc 19466
 
16825 efrain 19467
  .mx-wd-lg-5p-f {
19468
    max-width: 5% !important;
19469
  }
16848 stevensc 19470
 
16825 efrain 19471
  .mn-wd-lg-5p-f {
19472
    min-width: 5% !important;
19473
  }
16848 stevensc 19474
 
16825 efrain 19475
  .wd-lg-10 {
19476
    width: 10px;
19477
  }
16848 stevensc 19478
 
16825 efrain 19479
  .wd-lg-10p {
19480
    width: 10%;
19481
  }
16848 stevensc 19482
 
16825 efrain 19483
  .mx-wd-lg-10p {
19484
    max-width: 10%;
19485
  }
16848 stevensc 19486
 
16825 efrain 19487
  .mn-wd-lg-10p {
19488
    min-width: 10%;
19489
  }
16848 stevensc 19490
 
16825 efrain 19491
  .wd-lg-10-f {
19492
    width: 10px !important;
19493
  }
16848 stevensc 19494
 
16825 efrain 19495
  .wd-lg-10p-f {
19496
    width: 10% !important;
19497
  }
16848 stevensc 19498
 
16825 efrain 19499
  .mx-wd-lg-10p-f {
19500
    max-width: 10% !important;
19501
  }
16848 stevensc 19502
 
16825 efrain 19503
  .mn-wd-lg-10p-f {
19504
    min-width: 10% !important;
19505
  }
16848 stevensc 19506
 
16825 efrain 19507
  .wd-lg-15 {
19508
    width: 15px;
19509
  }
16848 stevensc 19510
 
16825 efrain 19511
  .wd-lg-15p {
19512
    width: 15%;
19513
  }
16848 stevensc 19514
 
16825 efrain 19515
  .mx-wd-lg-15p {
19516
    max-width: 15%;
19517
  }
16848 stevensc 19518
 
16825 efrain 19519
  .mn-wd-lg-15p {
19520
    min-width: 15%;
19521
  }
16848 stevensc 19522
 
16825 efrain 19523
  .wd-lg-15-f {
19524
    width: 15px !important;
19525
  }
16848 stevensc 19526
 
16825 efrain 19527
  .wd-lg-15p-f {
19528
    width: 15% !important;
19529
  }
16848 stevensc 19530
 
16825 efrain 19531
  .mx-wd-lg-15p-f {
19532
    max-width: 15% !important;
19533
  }
16848 stevensc 19534
 
16825 efrain 19535
  .mn-wd-lg-15p-f {
19536
    min-width: 15% !important;
19537
  }
16848 stevensc 19538
 
16825 efrain 19539
  .wd-lg-20 {
19540
    width: 20px;
19541
  }
16848 stevensc 19542
 
16825 efrain 19543
  .wd-lg-20p {
19544
    width: 20%;
19545
  }
16848 stevensc 19546
 
16825 efrain 19547
  .mx-wd-lg-20p {
19548
    max-width: 20%;
19549
  }
16848 stevensc 19550
 
16825 efrain 19551
  .mn-wd-lg-20p {
19552
    min-width: 20%;
19553
  }
16848 stevensc 19554
 
16825 efrain 19555
  .wd-lg-20-f {
19556
    width: 20px !important;
19557
  }
16848 stevensc 19558
 
16825 efrain 19559
  .wd-lg-20p-f {
19560
    width: 20% !important;
19561
  }
16848 stevensc 19562
 
16825 efrain 19563
  .mx-wd-lg-20p-f {
19564
    max-width: 20% !important;
19565
  }
16848 stevensc 19566
 
16825 efrain 19567
  .mn-wd-lg-20p-f {
19568
    min-width: 20% !important;
19569
  }
16848 stevensc 19570
 
16825 efrain 19571
  .wd-lg-25 {
19572
    width: 25px;
19573
  }
16848 stevensc 19574
 
16825 efrain 19575
  .wd-lg-25p {
19576
    width: 25%;
19577
  }
16848 stevensc 19578
 
16825 efrain 19579
  .mx-wd-lg-25p {
19580
    max-width: 25%;
19581
  }
16848 stevensc 19582
 
16825 efrain 19583
  .mn-wd-lg-25p {
19584
    min-width: 25%;
19585
  }
16848 stevensc 19586
 
16825 efrain 19587
  .wd-lg-25-f {
19588
    width: 25px !important;
19589
  }
16848 stevensc 19590
 
16825 efrain 19591
  .wd-lg-25p-f {
19592
    width: 25% !important;
19593
  }
16848 stevensc 19594
 
16825 efrain 19595
  .mx-wd-lg-25p-f {
19596
    max-width: 25% !important;
19597
  }
16848 stevensc 19598
 
16825 efrain 19599
  .mn-wd-lg-25p-f {
19600
    min-width: 25% !important;
19601
  }
16848 stevensc 19602
 
16825 efrain 19603
  .wd-lg-30 {
19604
    width: 30px;
19605
  }
16848 stevensc 19606
 
16825 efrain 19607
  .wd-lg-30p {
19608
    width: 30%;
19609
  }
16848 stevensc 19610
 
16825 efrain 19611
  .mx-wd-lg-30p {
19612
    max-width: 30%;
19613
  }
16848 stevensc 19614
 
16825 efrain 19615
  .mn-wd-lg-30p {
19616
    min-width: 30%;
19617
  }
16848 stevensc 19618
 
16825 efrain 19619
  .wd-lg-30-f {
19620
    width: 30px !important;
19621
  }
16848 stevensc 19622
 
16825 efrain 19623
  .wd-lg-30p-f {
19624
    width: 30% !important;
19625
  }
16848 stevensc 19626
 
16825 efrain 19627
  .mx-wd-lg-30p-f {
19628
    max-width: 30% !important;
19629
  }
16848 stevensc 19630
 
16825 efrain 19631
  .mn-wd-lg-30p-f {
19632
    min-width: 30% !important;
19633
  }
16848 stevensc 19634
 
16825 efrain 19635
  .wd-lg-35 {
19636
    width: 35px;
19637
  }
16848 stevensc 19638
 
16825 efrain 19639
  .wd-lg-35p {
19640
    width: 35%;
19641
  }
16848 stevensc 19642
 
16825 efrain 19643
  .mx-wd-lg-35p {
19644
    max-width: 35%;
19645
  }
16848 stevensc 19646
 
16825 efrain 19647
  .mn-wd-lg-35p {
19648
    min-width: 35%;
19649
  }
16848 stevensc 19650
 
16825 efrain 19651
  .wd-lg-35-f {
19652
    width: 35px !important;
19653
  }
16848 stevensc 19654
 
16825 efrain 19655
  .wd-lg-35p-f {
19656
    width: 35% !important;
19657
  }
16848 stevensc 19658
 
16825 efrain 19659
  .mx-wd-lg-35p-f {
19660
    max-width: 35% !important;
19661
  }
16848 stevensc 19662
 
16825 efrain 19663
  .mn-wd-lg-35p-f {
19664
    min-width: 35% !important;
19665
  }
16848 stevensc 19666
 
16825 efrain 19667
  .wd-lg-40 {
19668
    width: 40px;
19669
  }
16848 stevensc 19670
 
16825 efrain 19671
  .wd-lg-40p {
19672
    width: 40%;
19673
  }
16848 stevensc 19674
 
16825 efrain 19675
  .mx-wd-lg-40p {
19676
    max-width: 40%;
19677
  }
16848 stevensc 19678
 
16825 efrain 19679
  .mn-wd-lg-40p {
19680
    min-width: 40%;
19681
  }
16848 stevensc 19682
 
16825 efrain 19683
  .wd-lg-40-f {
19684
    width: 40px !important;
19685
  }
16848 stevensc 19686
 
16825 efrain 19687
  .wd-lg-40p-f {
19688
    width: 40% !important;
19689
  }
16848 stevensc 19690
 
16825 efrain 19691
  .mx-wd-lg-40p-f {
19692
    max-width: 40% !important;
19693
  }
16848 stevensc 19694
 
16825 efrain 19695
  .mn-wd-lg-40p-f {
19696
    min-width: 40% !important;
19697
  }
16848 stevensc 19698
 
16825 efrain 19699
  .wd-lg-45 {
19700
    width: 45px;
19701
  }
16848 stevensc 19702
 
16825 efrain 19703
  .wd-lg-45p {
19704
    width: 45%;
19705
  }
16848 stevensc 19706
 
16825 efrain 19707
  .mx-wd-lg-45p {
19708
    max-width: 45%;
19709
  }
16848 stevensc 19710
 
16825 efrain 19711
  .mn-wd-lg-45p {
19712
    min-width: 45%;
19713
  }
16848 stevensc 19714
 
16825 efrain 19715
  .wd-lg-45-f {
19716
    width: 45px !important;
19717
  }
16848 stevensc 19718
 
16825 efrain 19719
  .wd-lg-45p-f {
19720
    width: 45% !important;
19721
  }
16848 stevensc 19722
 
16825 efrain 19723
  .mx-wd-lg-45p-f {
19724
    max-width: 45% !important;
19725
  }
16848 stevensc 19726
 
16825 efrain 19727
  .mn-wd-lg-45p-f {
19728
    min-width: 45% !important;
19729
  }
16848 stevensc 19730
 
16825 efrain 19731
  .wd-lg-50 {
19732
    width: 50px;
19733
  }
16848 stevensc 19734
 
16825 efrain 19735
  .wd-lg-50p {
19736
    width: 50%;
19737
  }
16848 stevensc 19738
 
16825 efrain 19739
  .mx-wd-lg-50p {
19740
    max-width: 50%;
19741
  }
16848 stevensc 19742
 
16825 efrain 19743
  .mn-wd-lg-50p {
19744
    min-width: 50%;
19745
  }
16848 stevensc 19746
 
16825 efrain 19747
  .wd-lg-50-f {
19748
    width: 50px !important;
19749
  }
16848 stevensc 19750
 
16825 efrain 19751
  .wd-lg-50p-f {
19752
    width: 50% !important;
19753
  }
16848 stevensc 19754
 
16825 efrain 19755
  .mx-wd-lg-50p-f {
19756
    max-width: 50% !important;
19757
  }
16848 stevensc 19758
 
16825 efrain 19759
  .mn-wd-lg-50p-f {
19760
    min-width: 50% !important;
19761
  }
16848 stevensc 19762
 
16825 efrain 19763
  .wd-lg-55 {
19764
    width: 55px;
19765
  }
16848 stevensc 19766
 
16825 efrain 19767
  .wd-lg-55p {
19768
    width: 55%;
19769
  }
16848 stevensc 19770
 
16825 efrain 19771
  .mx-wd-lg-55p {
19772
    max-width: 55%;
19773
  }
16848 stevensc 19774
 
16825 efrain 19775
  .mn-wd-lg-55p {
19776
    min-width: 55%;
19777
  }
16848 stevensc 19778
 
16825 efrain 19779
  .wd-lg-55-f {
19780
    width: 55px !important;
19781
  }
16848 stevensc 19782
 
16825 efrain 19783
  .wd-lg-55p-f {
19784
    width: 55% !important;
19785
  }
16848 stevensc 19786
 
16825 efrain 19787
  .mx-wd-lg-55p-f {
19788
    max-width: 55% !important;
19789
  }
16848 stevensc 19790
 
16825 efrain 19791
  .mn-wd-lg-55p-f {
19792
    min-width: 55% !important;
19793
  }
16848 stevensc 19794
 
16825 efrain 19795
  .wd-lg-60 {
19796
    width: 60px;
19797
  }
16848 stevensc 19798
 
16825 efrain 19799
  .wd-lg-60p {
19800
    width: 60%;
19801
  }
16848 stevensc 19802
 
16825 efrain 19803
  .mx-wd-lg-60p {
19804
    max-width: 60%;
19805
  }
16848 stevensc 19806
 
16825 efrain 19807
  .mn-wd-lg-60p {
19808
    min-width: 60%;
19809
  }
16848 stevensc 19810
 
16825 efrain 19811
  .wd-lg-60-f {
19812
    width: 60px !important;
19813
  }
16848 stevensc 19814
 
16825 efrain 19815
  .wd-lg-60p-f {
19816
    width: 60% !important;
19817
  }
16848 stevensc 19818
 
16825 efrain 19819
  .mx-wd-lg-60p-f {
19820
    max-width: 60% !important;
19821
  }
16848 stevensc 19822
 
16825 efrain 19823
  .mn-wd-lg-60p-f {
19824
    min-width: 60% !important;
19825
  }
16848 stevensc 19826
 
16825 efrain 19827
  .wd-lg-65 {
19828
    width: 65px;
19829
  }
16848 stevensc 19830
 
16825 efrain 19831
  .wd-lg-65p {
19832
    width: 65%;
19833
  }
16848 stevensc 19834
 
16825 efrain 19835
  .mx-wd-lg-65p {
19836
    max-width: 65%;
19837
  }
16848 stevensc 19838
 
16825 efrain 19839
  .mn-wd-lg-65p {
19840
    min-width: 65%;
19841
  }
16848 stevensc 19842
 
16825 efrain 19843
  .wd-lg-65-f {
19844
    width: 65px !important;
19845
  }
16848 stevensc 19846
 
16825 efrain 19847
  .wd-lg-65p-f {
19848
    width: 65% !important;
19849
  }
16848 stevensc 19850
 
16825 efrain 19851
  .mx-wd-lg-65p-f {
19852
    max-width: 65% !important;
19853
  }
16848 stevensc 19854
 
16825 efrain 19855
  .mn-wd-lg-65p-f {
19856
    min-width: 65% !important;
19857
  }
16848 stevensc 19858
 
16825 efrain 19859
  .wd-lg-70 {
19860
    width: 70px;
19861
  }
16848 stevensc 19862
 
16825 efrain 19863
  .wd-lg-70p {
19864
    width: 70%;
19865
  }
16848 stevensc 19866
 
16825 efrain 19867
  .mx-wd-lg-70p {
19868
    max-width: 70%;
19869
  }
16848 stevensc 19870
 
16825 efrain 19871
  .mn-wd-lg-70p {
19872
    min-width: 70%;
19873
  }
16848 stevensc 19874
 
16825 efrain 19875
  .wd-lg-70-f {
19876
    width: 70px !important;
19877
  }
16848 stevensc 19878
 
16825 efrain 19879
  .wd-lg-70p-f {
19880
    width: 70% !important;
19881
  }
16848 stevensc 19882
 
16825 efrain 19883
  .mx-wd-lg-70p-f {
19884
    max-width: 70% !important;
19885
  }
16848 stevensc 19886
 
16825 efrain 19887
  .mn-wd-lg-70p-f {
19888
    min-width: 70% !important;
19889
  }
16848 stevensc 19890
 
16825 efrain 19891
  .wd-lg-75 {
19892
    width: 75px;
19893
  }
16848 stevensc 19894
 
16825 efrain 19895
  .wd-lg-75p {
19896
    width: 75%;
19897
  }
16848 stevensc 19898
 
16825 efrain 19899
  .mx-wd-lg-75p {
19900
    max-width: 75%;
19901
  }
16848 stevensc 19902
 
16825 efrain 19903
  .mn-wd-lg-75p {
19904
    min-width: 75%;
19905
  }
16848 stevensc 19906
 
16825 efrain 19907
  .wd-lg-75-f {
19908
    width: 75px !important;
19909
  }
16848 stevensc 19910
 
16825 efrain 19911
  .wd-lg-75p-f {
19912
    width: 75% !important;
19913
  }
16848 stevensc 19914
 
16825 efrain 19915
  .mx-wd-lg-75p-f {
19916
    max-width: 75% !important;
19917
  }
16848 stevensc 19918
 
16825 efrain 19919
  .mn-wd-lg-75p-f {
19920
    min-width: 75% !important;
19921
  }
16848 stevensc 19922
 
16825 efrain 19923
  .wd-lg-80 {
19924
    width: 80px;
19925
  }
16848 stevensc 19926
 
16825 efrain 19927
  .wd-lg-80p {
19928
    width: 80%;
19929
  }
16848 stevensc 19930
 
16825 efrain 19931
  .mx-wd-lg-80p {
19932
    max-width: 80%;
19933
  }
16848 stevensc 19934
 
16825 efrain 19935
  .mn-wd-lg-80p {
19936
    min-width: 80%;
19937
  }
16848 stevensc 19938
 
16825 efrain 19939
  .wd-lg-80-f {
19940
    width: 80px !important;
19941
  }
16848 stevensc 19942
 
16825 efrain 19943
  .wd-lg-80p-f {
19944
    width: 80% !important;
19945
  }
16848 stevensc 19946
 
16825 efrain 19947
  .mx-wd-lg-80p-f {
19948
    max-width: 80% !important;
19949
  }
16848 stevensc 19950
 
16825 efrain 19951
  .mn-wd-lg-80p-f {
19952
    min-width: 80% !important;
19953
  }
16848 stevensc 19954
 
16825 efrain 19955
  .wd-lg-85 {
19956
    width: 85px;
19957
  }
16848 stevensc 19958
 
16825 efrain 19959
  .wd-lg-85p {
19960
    width: 85%;
19961
  }
16848 stevensc 19962
 
16825 efrain 19963
  .mx-wd-lg-85p {
19964
    max-width: 85%;
19965
  }
16848 stevensc 19966
 
16825 efrain 19967
  .mn-wd-lg-85p {
19968
    min-width: 85%;
19969
  }
16848 stevensc 19970
 
16825 efrain 19971
  .wd-lg-85-f {
19972
    width: 85px !important;
19973
  }
16848 stevensc 19974
 
16825 efrain 19975
  .wd-lg-85p-f {
19976
    width: 85% !important;
19977
  }
16848 stevensc 19978
 
16825 efrain 19979
  .mx-wd-lg-85p-f {
19980
    max-width: 85% !important;
19981
  }
16848 stevensc 19982
 
16825 efrain 19983
  .mn-wd-lg-85p-f {
19984
    min-width: 85% !important;
19985
  }
16848 stevensc 19986
 
16825 efrain 19987
  .wd-lg-90 {
19988
    width: 90px;
19989
  }
16848 stevensc 19990
 
16825 efrain 19991
  .wd-lg-90p {
19992
    width: 90%;
19993
  }
16848 stevensc 19994
 
16825 efrain 19995
  .mx-wd-lg-90p {
19996
    max-width: 90%;
19997
  }
16848 stevensc 19998
 
16825 efrain 19999
  .mn-wd-lg-90p {
20000
    min-width: 90%;
20001
  }
16848 stevensc 20002
 
16825 efrain 20003
  .wd-lg-90-f {
20004
    width: 90px !important;
20005
  }
16848 stevensc 20006
 
16825 efrain 20007
  .wd-lg-90p-f {
20008
    width: 90% !important;
20009
  }
16848 stevensc 20010
 
16825 efrain 20011
  .mx-wd-lg-90p-f {
20012
    max-width: 90% !important;
20013
  }
16848 stevensc 20014
 
16825 efrain 20015
  .mn-wd-lg-90p-f {
20016
    min-width: 90% !important;
20017
  }
16848 stevensc 20018
 
16825 efrain 20019
  .wd-lg-95 {
20020
    width: 95px;
20021
  }
16848 stevensc 20022
 
16825 efrain 20023
  .wd-lg-95p {
20024
    width: 95%;
20025
  }
16848 stevensc 20026
 
16825 efrain 20027
  .mx-wd-lg-95p {
20028
    max-width: 95%;
20029
  }
16848 stevensc 20030
 
16825 efrain 20031
  .mn-wd-lg-95p {
20032
    min-width: 95%;
20033
  }
16848 stevensc 20034
 
16825 efrain 20035
  .wd-lg-95-f {
20036
    width: 95px !important;
20037
  }
16848 stevensc 20038
 
16825 efrain 20039
  .wd-lg-95p-f {
20040
    width: 95% !important;
20041
  }
16848 stevensc 20042
 
16825 efrain 20043
  .mx-wd-lg-95p-f {
20044
    max-width: 95% !important;
20045
  }
16848 stevensc 20046
 
16825 efrain 20047
  .mn-wd-lg-95p-f {
20048
    min-width: 95% !important;
20049
  }
16848 stevensc 20050
 
16825 efrain 20051
  .wd-lg-100 {
20052
    width: 100px;
20053
  }
16848 stevensc 20054
 
16825 efrain 20055
  .wd-lg-100p {
20056
    width: 100%;
20057
  }
16848 stevensc 20058
 
16825 efrain 20059
  .mx-wd-lg-100p {
20060
    max-width: 100%;
20061
  }
16848 stevensc 20062
 
16825 efrain 20063
  .mn-wd-lg-100p {
20064
    min-width: 100%;
20065
  }
16848 stevensc 20066
 
16825 efrain 20067
  .wd-lg-100-f {
20068
    width: 100px !important;
20069
  }
16848 stevensc 20070
 
16825 efrain 20071
  .wd-lg-100p-f {
20072
    width: 100% !important;
20073
  }
16848 stevensc 20074
 
16825 efrain 20075
  .mx-wd-lg-100p-f {
20076
    max-width: 100% !important;
20077
  }
16848 stevensc 20078
 
16825 efrain 20079
  .mn-wd-lg-100p-f {
20080
    min-width: 100% !important;
20081
  }
16848 stevensc 20082
 
16825 efrain 20083
  .wd-lg-150 {
20084
    width: 150px;
20085
  }
16848 stevensc 20086
 
16825 efrain 20087
  .wd-lg-150p {
20088
    width: 150%;
20089
  }
16848 stevensc 20090
 
16825 efrain 20091
  .mx-wd-lg-150p {
20092
    max-width: 150%;
20093
  }
16848 stevensc 20094
 
16825 efrain 20095
  .mn-wd-lg-150p {
20096
    min-width: 150%;
20097
  }
16848 stevensc 20098
 
16825 efrain 20099
  .wd-lg-150-f {
20100
    width: 150px !important;
20101
  }
16848 stevensc 20102
 
16825 efrain 20103
  .wd-lg-150p-f {
20104
    width: 150% !important;
20105
  }
16848 stevensc 20106
 
16825 efrain 20107
  .mx-wd-lg-150p-f {
20108
    max-width: 150% !important;
20109
  }
16848 stevensc 20110
 
16825 efrain 20111
  .mn-wd-lg-150p-f {
20112
    min-width: 150% !important;
20113
  }
16848 stevensc 20114
 
16825 efrain 20115
  .wd-lg-200 {
20116
    width: 200px;
20117
  }
16848 stevensc 20118
 
16825 efrain 20119
  .wd-lg-200p {
20120
    width: 200%;
20121
  }
16848 stevensc 20122
 
16825 efrain 20123
  .mx-wd-lg-200p {
20124
    max-width: 200%;
20125
  }
16848 stevensc 20126
 
16825 efrain 20127
  .mn-wd-lg-200p {
20128
    min-width: 200%;
20129
  }
16848 stevensc 20130
 
16825 efrain 20131
  .wd-lg-200-f {
20132
    width: 200px !important;
20133
  }
16848 stevensc 20134
 
16825 efrain 20135
  .wd-lg-200p-f {
20136
    width: 200% !important;
20137
  }
16848 stevensc 20138
 
16825 efrain 20139
  .mx-wd-lg-200p-f {
20140
    max-width: 200% !important;
20141
  }
16848 stevensc 20142
 
16825 efrain 20143
  .mn-wd-lg-200p-f {
20144
    min-width: 200% !important;
20145
  }
16848 stevensc 20146
 
16825 efrain 20147
  .wd-lg-250 {
20148
    width: 250px;
20149
  }
16848 stevensc 20150
 
16825 efrain 20151
  .wd-lg-250p {
20152
    width: 250%;
20153
  }
16848 stevensc 20154
 
16825 efrain 20155
  .mx-wd-lg-250p {
20156
    max-width: 250%;
20157
  }
16848 stevensc 20158
 
16825 efrain 20159
  .mn-wd-lg-250p {
20160
    min-width: 250%;
20161
  }
16848 stevensc 20162
 
16825 efrain 20163
  .wd-lg-250-f {
20164
    width: 250px !important;
20165
  }
16848 stevensc 20166
 
16825 efrain 20167
  .wd-lg-250p-f {
20168
    width: 250% !important;
20169
  }
16848 stevensc 20170
 
16825 efrain 20171
  .mx-wd-lg-250p-f {
20172
    max-width: 250% !important;
20173
  }
16848 stevensc 20174
 
16825 efrain 20175
  .mn-wd-lg-250p-f {
20176
    min-width: 250% !important;
20177
  }
16848 stevensc 20178
 
16825 efrain 20179
  .wd-lg-300 {
20180
    width: 300px;
20181
  }
16848 stevensc 20182
 
16825 efrain 20183
  .wd-lg-300p {
20184
    width: 300%;
20185
  }
16848 stevensc 20186
 
16825 efrain 20187
  .mx-wd-lg-300p {
20188
    max-width: 300%;
20189
  }
16848 stevensc 20190
 
16825 efrain 20191
  .mn-wd-lg-300p {
20192
    min-width: 300%;
20193
  }
16848 stevensc 20194
 
16825 efrain 20195
  .wd-lg-300-f {
20196
    width: 300px !important;
20197
  }
16848 stevensc 20198
 
16825 efrain 20199
  .wd-lg-300p-f {
20200
    width: 300% !important;
20201
  }
16848 stevensc 20202
 
16825 efrain 20203
  .mx-wd-lg-300p-f {
20204
    max-width: 300% !important;
20205
  }
16848 stevensc 20206
 
16825 efrain 20207
  .mn-wd-lg-300p-f {
20208
    min-width: 300% !important;
20209
  }
16848 stevensc 20210
 
16825 efrain 20211
  .wd-lg-350 {
20212
    width: 350px;
20213
  }
16848 stevensc 20214
 
16825 efrain 20215
  .wd-lg-350p {
20216
    width: 350%;
20217
  }
16848 stevensc 20218
 
16825 efrain 20219
  .mx-wd-lg-350p {
20220
    max-width: 350%;
20221
  }
16848 stevensc 20222
 
16825 efrain 20223
  .mn-wd-lg-350p {
20224
    min-width: 350%;
20225
  }
16848 stevensc 20226
 
16825 efrain 20227
  .wd-lg-350-f {
20228
    width: 350px !important;
20229
  }
16848 stevensc 20230
 
16825 efrain 20231
  .wd-lg-350p-f {
20232
    width: 350% !important;
20233
  }
16848 stevensc 20234
 
16825 efrain 20235
  .mx-wd-lg-350p-f {
20236
    max-width: 350% !important;
20237
  }
16848 stevensc 20238
 
16825 efrain 20239
  .mn-wd-lg-350p-f {
20240
    min-width: 350% !important;
20241
  }
16848 stevensc 20242
 
16825 efrain 20243
  .wd-lg-400 {
20244
    width: 400px;
20245
  }
16848 stevensc 20246
 
16825 efrain 20247
  .wd-lg-400p {
20248
    width: 400%;
20249
  }
16848 stevensc 20250
 
16825 efrain 20251
  .mx-wd-lg-400p {
20252
    max-width: 400%;
20253
  }
16848 stevensc 20254
 
16825 efrain 20255
  .mn-wd-lg-400p {
20256
    min-width: 400%;
20257
  }
16848 stevensc 20258
 
16825 efrain 20259
  .wd-lg-400-f {
20260
    width: 400px !important;
20261
  }
16848 stevensc 20262
 
16825 efrain 20263
  .wd-lg-400p-f {
20264
    width: 400% !important;
20265
  }
16848 stevensc 20266
 
16825 efrain 20267
  .mx-wd-lg-400p-f {
20268
    max-width: 400% !important;
20269
  }
16848 stevensc 20270
 
16825 efrain 20271
  .mn-wd-lg-400p-f {
20272
    min-width: 400% !important;
20273
  }
16848 stevensc 20274
 
16825 efrain 20275
  .wd-lg-450 {
20276
    width: 450px;
20277
  }
16848 stevensc 20278
 
16825 efrain 20279
  .wd-lg-450p {
20280
    width: 450%;
20281
  }
16848 stevensc 20282
 
16825 efrain 20283
  .mx-wd-lg-450p {
20284
    max-width: 450%;
20285
  }
16848 stevensc 20286
 
16825 efrain 20287
  .mn-wd-lg-450p {
20288
    min-width: 450%;
20289
  }
16848 stevensc 20290
 
16825 efrain 20291
  .wd-lg-450-f {
20292
    width: 450px !important;
20293
  }
16848 stevensc 20294
 
16825 efrain 20295
  .wd-lg-450p-f {
20296
    width: 450% !important;
20297
  }
16848 stevensc 20298
 
16825 efrain 20299
  .mx-wd-lg-450p-f {
20300
    max-width: 450% !important;
20301
  }
16848 stevensc 20302
 
16825 efrain 20303
  .mn-wd-lg-450p-f {
20304
    min-width: 450% !important;
20305
  }
16848 stevensc 20306
 
16825 efrain 20307
  .wd-lg-500 {
20308
    width: 500px;
20309
  }
16848 stevensc 20310
 
16825 efrain 20311
  .wd-lg-500p {
20312
    width: 500%;
20313
  }
16848 stevensc 20314
 
16825 efrain 20315
  .mx-wd-lg-500p {
20316
    max-width: 500%;
20317
  }
16848 stevensc 20318
 
16825 efrain 20319
  .mn-wd-lg-500p {
20320
    min-width: 500%;
20321
  }
16848 stevensc 20322
 
16825 efrain 20323
  .wd-lg-500-f {
20324
    width: 500px !important;
20325
  }
16848 stevensc 20326
 
16825 efrain 20327
  .wd-lg-500p-f {
20328
    width: 500% !important;
20329
  }
16848 stevensc 20330
 
16825 efrain 20331
  .mx-wd-lg-500p-f {
20332
    max-width: 500% !important;
20333
  }
16848 stevensc 20334
 
16825 efrain 20335
  .mn-wd-lg-500p-f {
20336
    min-width: 500% !important;
20337
  }
16848 stevensc 20338
 
16825 efrain 20339
  .wd-lg-550 {
20340
    width: 550px;
20341
  }
16848 stevensc 20342
 
16825 efrain 20343
  .wd-lg-550p {
20344
    width: 550%;
20345
  }
16848 stevensc 20346
 
16825 efrain 20347
  .mx-wd-lg-550p {
20348
    max-width: 550%;
20349
  }
16848 stevensc 20350
 
16825 efrain 20351
  .mn-wd-lg-550p {
20352
    min-width: 550%;
20353
  }
16848 stevensc 20354
 
16825 efrain 20355
  .wd-lg-550-f {
20356
    width: 550px !important;
20357
  }
16848 stevensc 20358
 
16825 efrain 20359
  .wd-lg-550p-f {
20360
    width: 550% !important;
20361
  }
16848 stevensc 20362
 
16825 efrain 20363
  .mx-wd-lg-550p-f {
20364
    max-width: 550% !important;
20365
  }
16848 stevensc 20366
 
16825 efrain 20367
  .mn-wd-lg-550p-f {
20368
    min-width: 550% !important;
20369
  }
16848 stevensc 20370
 
16825 efrain 20371
  .wd-lg-600 {
20372
    width: 600px;
20373
  }
16848 stevensc 20374
 
16825 efrain 20375
  .wd-lg-600p {
20376
    width: 600%;
20377
  }
16848 stevensc 20378
 
16825 efrain 20379
  .mx-wd-lg-600p {
20380
    max-width: 600%;
20381
  }
16848 stevensc 20382
 
16825 efrain 20383
  .mn-wd-lg-600p {
20384
    min-width: 600%;
20385
  }
16848 stevensc 20386
 
16825 efrain 20387
  .wd-lg-600-f {
20388
    width: 600px !important;
20389
  }
16848 stevensc 20390
 
16825 efrain 20391
  .wd-lg-600p-f {
20392
    width: 600% !important;
20393
  }
16848 stevensc 20394
 
16825 efrain 20395
  .mx-wd-lg-600p-f {
20396
    max-width: 600% !important;
20397
  }
16848 stevensc 20398
 
16825 efrain 20399
  .mn-wd-lg-600p-f {
20400
    min-width: 600% !important;
20401
  }
16848 stevensc 20402
 
16825 efrain 20403
  .wd-lg-650 {
20404
    width: 650px;
20405
  }
16848 stevensc 20406
 
16825 efrain 20407
  .wd-lg-650p {
20408
    width: 650%;
20409
  }
16848 stevensc 20410
 
16825 efrain 20411
  .mx-wd-lg-650p {
20412
    max-width: 650%;
20413
  }
16848 stevensc 20414
 
16825 efrain 20415
  .mn-wd-lg-650p {
20416
    min-width: 650%;
20417
  }
16848 stevensc 20418
 
16825 efrain 20419
  .wd-lg-650-f {
20420
    width: 650px !important;
20421
  }
16848 stevensc 20422
 
16825 efrain 20423
  .wd-lg-650p-f {
20424
    width: 650% !important;
20425
  }
16848 stevensc 20426
 
16825 efrain 20427
  .mx-wd-lg-650p-f {
20428
    max-width: 650% !important;
20429
  }
16848 stevensc 20430
 
16825 efrain 20431
  .mn-wd-lg-650p-f {
20432
    min-width: 650% !important;
20433
  }
16848 stevensc 20434
 
16825 efrain 20435
  .wd-lg-700 {
20436
    width: 700px;
20437
  }
16848 stevensc 20438
 
16825 efrain 20439
  .wd-lg-700p {
20440
    width: 700%;
20441
  }
16848 stevensc 20442
 
16825 efrain 20443
  .mx-wd-lg-700p {
20444
    max-width: 700%;
20445
  }
16848 stevensc 20446
 
16825 efrain 20447
  .mn-wd-lg-700p {
20448
    min-width: 700%;
20449
  }
16848 stevensc 20450
 
16825 efrain 20451
  .wd-lg-700-f {
20452
    width: 700px !important;
20453
  }
16848 stevensc 20454
 
16825 efrain 20455
  .wd-lg-700p-f {
20456
    width: 700% !important;
20457
  }
16848 stevensc 20458
 
16825 efrain 20459
  .mx-wd-lg-700p-f {
20460
    max-width: 700% !important;
20461
  }
16848 stevensc 20462
 
16825 efrain 20463
  .mn-wd-lg-700p-f {
20464
    min-width: 700% !important;
20465
  }
16848 stevensc 20466
 
16825 efrain 20467
  .wd-lg-750 {
20468
    width: 750px;
20469
  }
16848 stevensc 20470
 
16825 efrain 20471
  .wd-lg-750p {
20472
    width: 750%;
20473
  }
16848 stevensc 20474
 
16825 efrain 20475
  .mx-wd-lg-750p {
20476
    max-width: 750%;
20477
  }
16848 stevensc 20478
 
16825 efrain 20479
  .mn-wd-lg-750p {
20480
    min-width: 750%;
20481
  }
16848 stevensc 20482
 
16825 efrain 20483
  .wd-lg-750-f {
20484
    width: 750px !important;
20485
  }
16848 stevensc 20486
 
16825 efrain 20487
  .wd-lg-750p-f {
20488
    width: 750% !important;
20489
  }
16848 stevensc 20490
 
16825 efrain 20491
  .mx-wd-lg-750p-f {
20492
    max-width: 750% !important;
20493
  }
16848 stevensc 20494
 
16825 efrain 20495
  .mn-wd-lg-750p-f {
20496
    min-width: 750% !important;
20497
  }
16848 stevensc 20498
 
16825 efrain 20499
  .wd-lg-800 {
20500
    width: 800px;
20501
  }
16848 stevensc 20502
 
16825 efrain 20503
  .wd-lg-800p {
20504
    width: 800%;
20505
  }
16848 stevensc 20506
 
16825 efrain 20507
  .mx-wd-lg-800p {
20508
    max-width: 800%;
20509
  }
16848 stevensc 20510
 
16825 efrain 20511
  .mn-wd-lg-800p {
20512
    min-width: 800%;
20513
  }
16848 stevensc 20514
 
16825 efrain 20515
  .wd-lg-800-f {
20516
    width: 800px !important;
20517
  }
16848 stevensc 20518
 
16825 efrain 20519
  .wd-lg-800p-f {
20520
    width: 800% !important;
20521
  }
16848 stevensc 20522
 
16825 efrain 20523
  .mx-wd-lg-800p-f {
20524
    max-width: 800% !important;
20525
  }
16848 stevensc 20526
 
16825 efrain 20527
  .mn-wd-lg-800p-f {
20528
    min-width: 800% !important;
20529
  }
16848 stevensc 20530
 
16825 efrain 20531
  .wd-lg-850 {
20532
    width: 850px;
20533
  }
16848 stevensc 20534
 
16825 efrain 20535
  .wd-lg-850p {
20536
    width: 850%;
20537
  }
16848 stevensc 20538
 
16825 efrain 20539
  .mx-wd-lg-850p {
20540
    max-width: 850%;
20541
  }
16848 stevensc 20542
 
16825 efrain 20543
  .mn-wd-lg-850p {
20544
    min-width: 850%;
20545
  }
16848 stevensc 20546
 
16825 efrain 20547
  .wd-lg-850-f {
20548
    width: 850px !important;
20549
  }
16848 stevensc 20550
 
16825 efrain 20551
  .wd-lg-850p-f {
20552
    width: 850% !important;
20553
  }
16848 stevensc 20554
 
16825 efrain 20555
  .mx-wd-lg-850p-f {
20556
    max-width: 850% !important;
20557
  }
16848 stevensc 20558
 
16825 efrain 20559
  .mn-wd-lg-850p-f {
20560
    min-width: 850% !important;
20561
  }
16848 stevensc 20562
 
16825 efrain 20563
  .wd-lg-900 {
20564
    width: 900px;
20565
  }
16848 stevensc 20566
 
16825 efrain 20567
  .wd-lg-900p {
20568
    width: 900%;
20569
  }
16848 stevensc 20570
 
16825 efrain 20571
  .mx-wd-lg-900p {
20572
    max-width: 900%;
20573
  }
16848 stevensc 20574
 
16825 efrain 20575
  .mn-wd-lg-900p {
20576
    min-width: 900%;
20577
  }
16848 stevensc 20578
 
16825 efrain 20579
  .wd-lg-900-f {
20580
    width: 900px !important;
20581
  }
16848 stevensc 20582
 
16825 efrain 20583
  .wd-lg-900p-f {
20584
    width: 900% !important;
20585
  }
16848 stevensc 20586
 
16825 efrain 20587
  .mx-wd-lg-900p-f {
20588
    max-width: 900% !important;
20589
  }
16848 stevensc 20590
 
16825 efrain 20591
  .mn-wd-lg-900p-f {
20592
    min-width: 900% !important;
20593
  }
16848 stevensc 20594
 
16825 efrain 20595
  .wd-lg-950 {
20596
    width: 950px;
20597
  }
16848 stevensc 20598
 
16825 efrain 20599
  .wd-lg-950p {
20600
    width: 950%;
20601
  }
16848 stevensc 20602
 
16825 efrain 20603
  .mx-wd-lg-950p {
20604
    max-width: 950%;
20605
  }
16848 stevensc 20606
 
16825 efrain 20607
  .mn-wd-lg-950p {
20608
    min-width: 950%;
20609
  }
16848 stevensc 20610
 
16825 efrain 20611
  .wd-lg-950-f {
20612
    width: 950px !important;
20613
  }
16848 stevensc 20614
 
16825 efrain 20615
  .wd-lg-950p-f {
20616
    width: 950% !important;
20617
  }
16848 stevensc 20618
 
16825 efrain 20619
  .mx-wd-lg-950p-f {
20620
    max-width: 950% !important;
20621
  }
16848 stevensc 20622
 
16825 efrain 20623
  .mn-wd-lg-950p-f {
20624
    min-width: 950% !important;
20625
  }
16848 stevensc 20626
 
16825 efrain 20627
  .wd-lg-1000 {
20628
    width: 1000px;
20629
  }
16848 stevensc 20630
 
16825 efrain 20631
  .wd-lg-1000p {
20632
    width: 1000%;
20633
  }
16848 stevensc 20634
 
16825 efrain 20635
  .mx-wd-lg-1000p {
20636
    max-width: 1000%;
20637
  }
16848 stevensc 20638
 
16825 efrain 20639
  .mn-wd-lg-1000p {
20640
    min-width: 1000%;
20641
  }
16848 stevensc 20642
 
16825 efrain 20643
  .wd-lg-1000-f {
20644
    width: 1000px !important;
20645
  }
16848 stevensc 20646
 
16825 efrain 20647
  .wd-lg-1000p-f {
20648
    width: 1000% !important;
20649
  }
16848 stevensc 20650
 
16825 efrain 20651
  .mx-wd-lg-1000p-f {
20652
    max-width: 1000% !important;
20653
  }
16848 stevensc 20654
 
16825 efrain 20655
  .mn-wd-lg-1000p-f {
20656
    min-width: 1000% !important;
20657
  }
16848 stevensc 20658
 
16825 efrain 20659
  .wd-lg-auto {
20660
    width: auto;
20661
  }
16848 stevensc 20662
 
16825 efrain 20663
  .wd-lg-auto-f {
20664
    width: auto !important;
20665
  }
20666
}
16848 stevensc 20667
 
16825 efrain 20668
@media (min-width: 1200px) {
20669
  .wd-xl-5 {
20670
    width: 5px;
20671
  }
16848 stevensc 20672
 
16825 efrain 20673
  .wd-xl-5p {
20674
    width: 5%;
20675
  }
16848 stevensc 20676
 
16825 efrain 20677
  .mx-wd-xl-5p {
20678
    max-width: 5%;
20679
  }
16848 stevensc 20680
 
16825 efrain 20681
  .mn-wd-xl-5p {
20682
    min-width: 5%;
20683
  }
16848 stevensc 20684
 
16825 efrain 20685
  .wd-xl-5-f {
20686
    width: 5px !important;
20687
  }
16848 stevensc 20688
 
16825 efrain 20689
  .wd-xl-5p-f {
20690
    width: 5% !important;
20691
  }
16848 stevensc 20692
 
16825 efrain 20693
  .mx-wd-xl-5p-f {
20694
    max-width: 5% !important;
20695
  }
16848 stevensc 20696
 
16825 efrain 20697
  .mn-wd-xl-5p-f {
20698
    min-width: 5% !important;
20699
  }
16848 stevensc 20700
 
16825 efrain 20701
  .wd-xl-10 {
20702
    width: 10px;
20703
  }
16848 stevensc 20704
 
16825 efrain 20705
  .wd-xl-10p {
20706
    width: 10%;
20707
  }
16848 stevensc 20708
 
16825 efrain 20709
  .mx-wd-xl-10p {
20710
    max-width: 10%;
20711
  }
16848 stevensc 20712
 
16825 efrain 20713
  .mn-wd-xl-10p {
20714
    min-width: 10%;
20715
  }
16848 stevensc 20716
 
16825 efrain 20717
  .wd-xl-10-f {
20718
    width: 10px !important;
20719
  }
16848 stevensc 20720
 
16825 efrain 20721
  .wd-xl-10p-f {
20722
    width: 10% !important;
20723
  }
16848 stevensc 20724
 
16825 efrain 20725
  .mx-wd-xl-10p-f {
20726
    max-width: 10% !important;
20727
  }
16848 stevensc 20728
 
16825 efrain 20729
  .mn-wd-xl-10p-f {
20730
    min-width: 10% !important;
20731
  }
16848 stevensc 20732
 
16825 efrain 20733
  .wd-xl-15 {
20734
    width: 15px;
20735
  }
16848 stevensc 20736
 
16825 efrain 20737
  .wd-xl-15p {
20738
    width: 15%;
20739
  }
16848 stevensc 20740
 
16825 efrain 20741
  .mx-wd-xl-15p {
20742
    max-width: 15%;
20743
  }
16848 stevensc 20744
 
16825 efrain 20745
  .mn-wd-xl-15p {
20746
    min-width: 15%;
20747
  }
16848 stevensc 20748
 
16825 efrain 20749
  .wd-xl-15-f {
20750
    width: 15px !important;
20751
  }
16848 stevensc 20752
 
16825 efrain 20753
  .wd-xl-15p-f {
20754
    width: 15% !important;
20755
  }
16848 stevensc 20756
 
16825 efrain 20757
  .mx-wd-xl-15p-f {
20758
    max-width: 15% !important;
20759
  }
16848 stevensc 20760
 
16825 efrain 20761
  .mn-wd-xl-15p-f {
20762
    min-width: 15% !important;
20763
  }
16848 stevensc 20764
 
16825 efrain 20765
  .wd-xl-20 {
20766
    width: 20px;
20767
  }
16848 stevensc 20768
 
16825 efrain 20769
  .wd-xl-20p {
20770
    width: 20%;
20771
  }
16848 stevensc 20772
 
16825 efrain 20773
  .mx-wd-xl-20p {
20774
    max-width: 20%;
20775
  }
16848 stevensc 20776
 
16825 efrain 20777
  .mn-wd-xl-20p {
20778
    min-width: 20%;
20779
  }
16848 stevensc 20780
 
16825 efrain 20781
  .wd-xl-20-f {
20782
    width: 20px !important;
20783
  }
16848 stevensc 20784
 
16825 efrain 20785
  .wd-xl-20p-f {
20786
    width: 20% !important;
20787
  }
16848 stevensc 20788
 
16825 efrain 20789
  .mx-wd-xl-20p-f {
20790
    max-width: 20% !important;
20791
  }
16848 stevensc 20792
 
16825 efrain 20793
  .mn-wd-xl-20p-f {
20794
    min-width: 20% !important;
20795
  }
16848 stevensc 20796
 
16825 efrain 20797
  .wd-xl-25 {
20798
    width: 25px;
20799
  }
16848 stevensc 20800
 
16825 efrain 20801
  .wd-xl-25p {
20802
    width: 25%;
20803
  }
16848 stevensc 20804
 
16825 efrain 20805
  .mx-wd-xl-25p {
20806
    max-width: 25%;
20807
  }
16848 stevensc 20808
 
16825 efrain 20809
  .mn-wd-xl-25p {
20810
    min-width: 25%;
20811
  }
16848 stevensc 20812
 
16825 efrain 20813
  .wd-xl-25-f {
20814
    width: 25px !important;
20815
  }
16848 stevensc 20816
 
16825 efrain 20817
  .wd-xl-25p-f {
20818
    width: 25% !important;
20819
  }
16848 stevensc 20820
 
16825 efrain 20821
  .mx-wd-xl-25p-f {
20822
    max-width: 25% !important;
20823
  }
16848 stevensc 20824
 
16825 efrain 20825
  .mn-wd-xl-25p-f {
20826
    min-width: 25% !important;
20827
  }
16848 stevensc 20828
 
16825 efrain 20829
  .wd-xl-30 {
20830
    width: 30px;
20831
  }
16848 stevensc 20832
 
16825 efrain 20833
  .wd-xl-30p {
20834
    width: 30%;
20835
  }
16848 stevensc 20836
 
16825 efrain 20837
  .mx-wd-xl-30p {
20838
    max-width: 30%;
20839
  }
16848 stevensc 20840
 
16825 efrain 20841
  .mn-wd-xl-30p {
20842
    min-width: 30%;
20843
  }
16848 stevensc 20844
 
16825 efrain 20845
  .wd-xl-30-f {
20846
    width: 30px !important;
20847
  }
16848 stevensc 20848
 
16825 efrain 20849
  .wd-xl-30p-f {
20850
    width: 30% !important;
20851
  }
16848 stevensc 20852
 
16825 efrain 20853
  .mx-wd-xl-30p-f {
20854
    max-width: 30% !important;
20855
  }
16848 stevensc 20856
 
16825 efrain 20857
  .mn-wd-xl-30p-f {
20858
    min-width: 30% !important;
20859
  }
16848 stevensc 20860
 
16825 efrain 20861
  .wd-xl-35 {
20862
    width: 35px;
20863
  }
16848 stevensc 20864
 
16825 efrain 20865
  .wd-xl-35p {
20866
    width: 35%;
20867
  }
16848 stevensc 20868
 
16825 efrain 20869
  .mx-wd-xl-35p {
20870
    max-width: 35%;
20871
  }
16848 stevensc 20872
 
16825 efrain 20873
  .mn-wd-xl-35p {
20874
    min-width: 35%;
20875
  }
16848 stevensc 20876
 
16825 efrain 20877
  .wd-xl-35-f {
20878
    width: 35px !important;
20879
  }
16848 stevensc 20880
 
16825 efrain 20881
  .wd-xl-35p-f {
20882
    width: 35% !important;
20883
  }
16848 stevensc 20884
 
16825 efrain 20885
  .mx-wd-xl-35p-f {
20886
    max-width: 35% !important;
20887
  }
16848 stevensc 20888
 
16825 efrain 20889
  .mn-wd-xl-35p-f {
20890
    min-width: 35% !important;
20891
  }
16848 stevensc 20892
 
16825 efrain 20893
  .wd-xl-40 {
20894
    width: 40px;
20895
  }
16848 stevensc 20896
 
16825 efrain 20897
  .wd-xl-40p {
20898
    width: 40%;
20899
  }
16848 stevensc 20900
 
16825 efrain 20901
  .mx-wd-xl-40p {
20902
    max-width: 40%;
20903
  }
16848 stevensc 20904
 
16825 efrain 20905
  .mn-wd-xl-40p {
20906
    min-width: 40%;
20907
  }
16848 stevensc 20908
 
16825 efrain 20909
  .wd-xl-40-f {
20910
    width: 40px !important;
20911
  }
16848 stevensc 20912
 
16825 efrain 20913
  .wd-xl-40p-f {
20914
    width: 40% !important;
20915
  }
16848 stevensc 20916
 
16825 efrain 20917
  .mx-wd-xl-40p-f {
20918
    max-width: 40% !important;
20919
  }
16848 stevensc 20920
 
16825 efrain 20921
  .mn-wd-xl-40p-f {
20922
    min-width: 40% !important;
20923
  }
16848 stevensc 20924
 
16825 efrain 20925
  .wd-xl-45 {
20926
    width: 45px;
20927
  }
16848 stevensc 20928
 
16825 efrain 20929
  .wd-xl-45p {
20930
    width: 45%;
20931
  }
16848 stevensc 20932
 
16825 efrain 20933
  .mx-wd-xl-45p {
20934
    max-width: 45%;
20935
  }
16848 stevensc 20936
 
16825 efrain 20937
  .mn-wd-xl-45p {
20938
    min-width: 45%;
20939
  }
16848 stevensc 20940
 
16825 efrain 20941
  .wd-xl-45-f {
20942
    width: 45px !important;
20943
  }
16848 stevensc 20944
 
16825 efrain 20945
  .wd-xl-45p-f {
20946
    width: 45% !important;
20947
  }
16848 stevensc 20948
 
16825 efrain 20949
  .mx-wd-xl-45p-f {
20950
    max-width: 45% !important;
20951
  }
16848 stevensc 20952
 
16825 efrain 20953
  .mn-wd-xl-45p-f {
20954
    min-width: 45% !important;
20955
  }
16848 stevensc 20956
 
16825 efrain 20957
  .wd-xl-50 {
20958
    width: 50px;
20959
  }
16848 stevensc 20960
 
16825 efrain 20961
  .wd-xl-50p {
20962
    width: 50%;
20963
  }
16848 stevensc 20964
 
16825 efrain 20965
  .mx-wd-xl-50p {
20966
    max-width: 50%;
20967
  }
16848 stevensc 20968
 
16825 efrain 20969
  .mn-wd-xl-50p {
20970
    min-width: 50%;
20971
  }
16848 stevensc 20972
 
16825 efrain 20973
  .wd-xl-50-f {
20974
    width: 50px !important;
20975
  }
16848 stevensc 20976
 
16825 efrain 20977
  .wd-xl-50p-f {
20978
    width: 50% !important;
20979
  }
16848 stevensc 20980
 
16825 efrain 20981
  .mx-wd-xl-50p-f {
20982
    max-width: 50% !important;
20983
  }
16848 stevensc 20984
 
16825 efrain 20985
  .mn-wd-xl-50p-f {
20986
    min-width: 50% !important;
20987
  }
16848 stevensc 20988
 
16825 efrain 20989
  .wd-xl-55 {
20990
    width: 55px;
20991
  }
16848 stevensc 20992
 
16825 efrain 20993
  .wd-xl-55p {
20994
    width: 55%;
20995
  }
16848 stevensc 20996
 
16825 efrain 20997
  .mx-wd-xl-55p {
20998
    max-width: 55%;
20999
  }
16848 stevensc 21000
 
16825 efrain 21001
  .mn-wd-xl-55p {
21002
    min-width: 55%;
21003
  }
16848 stevensc 21004
 
16825 efrain 21005
  .wd-xl-55-f {
21006
    width: 55px !important;
21007
  }
16848 stevensc 21008
 
16825 efrain 21009
  .wd-xl-55p-f {
21010
    width: 55% !important;
21011
  }
16848 stevensc 21012
 
16825 efrain 21013
  .mx-wd-xl-55p-f {
21014
    max-width: 55% !important;
21015
  }
16848 stevensc 21016
 
16825 efrain 21017
  .mn-wd-xl-55p-f {
21018
    min-width: 55% !important;
21019
  }
16848 stevensc 21020
 
16825 efrain 21021
  .wd-xl-60 {
21022
    width: 60px;
21023
  }
16848 stevensc 21024
 
16825 efrain 21025
  .wd-xl-60p {
21026
    width: 60%;
21027
  }
16848 stevensc 21028
 
16825 efrain 21029
  .mx-wd-xl-60p {
21030
    max-width: 60%;
21031
  }
16848 stevensc 21032
 
16825 efrain 21033
  .mn-wd-xl-60p {
21034
    min-width: 60%;
21035
  }
16848 stevensc 21036
 
16825 efrain 21037
  .wd-xl-60-f {
21038
    width: 60px !important;
21039
  }
16848 stevensc 21040
 
16825 efrain 21041
  .wd-xl-60p-f {
21042
    width: 60% !important;
21043
  }
16848 stevensc 21044
 
16825 efrain 21045
  .mx-wd-xl-60p-f {
21046
    max-width: 60% !important;
21047
  }
16848 stevensc 21048
 
16825 efrain 21049
  .mn-wd-xl-60p-f {
21050
    min-width: 60% !important;
21051
  }
16848 stevensc 21052
 
16825 efrain 21053
  .wd-xl-65 {
21054
    width: 65px;
21055
  }
16848 stevensc 21056
 
16825 efrain 21057
  .wd-xl-65p {
21058
    width: 65%;
21059
  }
16848 stevensc 21060
 
16825 efrain 21061
  .mx-wd-xl-65p {
21062
    max-width: 65%;
21063
  }
16848 stevensc 21064
 
16825 efrain 21065
  .mn-wd-xl-65p {
21066
    min-width: 65%;
21067
  }
16848 stevensc 21068
 
16825 efrain 21069
  .wd-xl-65-f {
21070
    width: 65px !important;
21071
  }
16848 stevensc 21072
 
16825 efrain 21073
  .wd-xl-65p-f {
21074
    width: 65% !important;
21075
  }
16848 stevensc 21076
 
16825 efrain 21077
  .mx-wd-xl-65p-f {
21078
    max-width: 65% !important;
21079
  }
16848 stevensc 21080
 
16825 efrain 21081
  .mn-wd-xl-65p-f {
21082
    min-width: 65% !important;
21083
  }
16848 stevensc 21084
 
16825 efrain 21085
  .wd-xl-70 {
21086
    width: 70px;
21087
  }
16848 stevensc 21088
 
16825 efrain 21089
  .wd-xl-70p {
21090
    width: 70%;
21091
  }
16848 stevensc 21092
 
16825 efrain 21093
  .mx-wd-xl-70p {
21094
    max-width: 70%;
21095
  }
16848 stevensc 21096
 
16825 efrain 21097
  .mn-wd-xl-70p {
21098
    min-width: 70%;
21099
  }
16848 stevensc 21100
 
16825 efrain 21101
  .wd-xl-70-f {
21102
    width: 70px !important;
21103
  }
16848 stevensc 21104
 
16825 efrain 21105
  .wd-xl-70p-f {
21106
    width: 70% !important;
21107
  }
16848 stevensc 21108
 
16825 efrain 21109
  .mx-wd-xl-70p-f {
21110
    max-width: 70% !important;
21111
  }
16848 stevensc 21112
 
16825 efrain 21113
  .mn-wd-xl-70p-f {
21114
    min-width: 70% !important;
21115
  }
16848 stevensc 21116
 
16825 efrain 21117
  .wd-xl-75 {
21118
    width: 75px;
21119
  }
16848 stevensc 21120
 
16825 efrain 21121
  .wd-xl-75p {
21122
    width: 75%;
21123
  }
16848 stevensc 21124
 
16825 efrain 21125
  .mx-wd-xl-75p {
21126
    max-width: 75%;
21127
  }
16848 stevensc 21128
 
16825 efrain 21129
  .mn-wd-xl-75p {
21130
    min-width: 75%;
21131
  }
16848 stevensc 21132
 
16825 efrain 21133
  .wd-xl-75-f {
21134
    width: 75px !important;
21135
  }
16848 stevensc 21136
 
16825 efrain 21137
  .wd-xl-75p-f {
21138
    width: 75% !important;
21139
  }
16848 stevensc 21140
 
16825 efrain 21141
  .mx-wd-xl-75p-f {
21142
    max-width: 75% !important;
21143
  }
16848 stevensc 21144
 
16825 efrain 21145
  .mn-wd-xl-75p-f {
21146
    min-width: 75% !important;
21147
  }
16848 stevensc 21148
 
16825 efrain 21149
  .wd-xl-80 {
21150
    width: 80px;
21151
  }
16848 stevensc 21152
 
16825 efrain 21153
  .wd-xl-80p {
21154
    width: 80%;
21155
  }
16848 stevensc 21156
 
16825 efrain 21157
  .mx-wd-xl-80p {
21158
    max-width: 80%;
21159
  }
16848 stevensc 21160
 
16825 efrain 21161
  .mn-wd-xl-80p {
21162
    min-width: 80%;
21163
  }
16848 stevensc 21164
 
16825 efrain 21165
  .wd-xl-80-f {
21166
    width: 80px !important;
21167
  }
16848 stevensc 21168
 
16825 efrain 21169
  .wd-xl-80p-f {
21170
    width: 80% !important;
21171
  }
16848 stevensc 21172
 
16825 efrain 21173
  .mx-wd-xl-80p-f {
21174
    max-width: 80% !important;
21175
  }
16848 stevensc 21176
 
16825 efrain 21177
  .mn-wd-xl-80p-f {
21178
    min-width: 80% !important;
21179
  }
16848 stevensc 21180
 
16825 efrain 21181
  .wd-xl-85 {
21182
    width: 85px;
21183
  }
16848 stevensc 21184
 
16825 efrain 21185
  .wd-xl-85p {
21186
    width: 85%;
21187
  }
16848 stevensc 21188
 
16825 efrain 21189
  .mx-wd-xl-85p {
21190
    max-width: 85%;
21191
  }
16848 stevensc 21192
 
16825 efrain 21193
  .mn-wd-xl-85p {
21194
    min-width: 85%;
21195
  }
16848 stevensc 21196
 
16825 efrain 21197
  .wd-xl-85-f {
21198
    width: 85px !important;
21199
  }
16848 stevensc 21200
 
16825 efrain 21201
  .wd-xl-85p-f {
21202
    width: 85% !important;
21203
  }
16848 stevensc 21204
 
16825 efrain 21205
  .mx-wd-xl-85p-f {
21206
    max-width: 85% !important;
21207
  }
16848 stevensc 21208
 
16825 efrain 21209
  .mn-wd-xl-85p-f {
21210
    min-width: 85% !important;
21211
  }
16848 stevensc 21212
 
16825 efrain 21213
  .wd-xl-90 {
21214
    width: 90px;
21215
  }
16848 stevensc 21216
 
16825 efrain 21217
  .wd-xl-90p {
21218
    width: 90%;
21219
  }
16848 stevensc 21220
 
16825 efrain 21221
  .mx-wd-xl-90p {
21222
    max-width: 90%;
21223
  }
16848 stevensc 21224
 
16825 efrain 21225
  .mn-wd-xl-90p {
21226
    min-width: 90%;
21227
  }
16848 stevensc 21228
 
16825 efrain 21229
  .wd-xl-90-f {
21230
    width: 90px !important;
21231
  }
16848 stevensc 21232
 
16825 efrain 21233
  .wd-xl-90p-f {
21234
    width: 90% !important;
21235
  }
16848 stevensc 21236
 
16825 efrain 21237
  .mx-wd-xl-90p-f {
21238
    max-width: 90% !important;
21239
  }
16848 stevensc 21240
 
16825 efrain 21241
  .mn-wd-xl-90p-f {
21242
    min-width: 90% !important;
21243
  }
16848 stevensc 21244
 
16825 efrain 21245
  .wd-xl-95 {
21246
    width: 95px;
21247
  }
16848 stevensc 21248
 
16825 efrain 21249
  .wd-xl-95p {
21250
    width: 95%;
21251
  }
16848 stevensc 21252
 
16825 efrain 21253
  .mx-wd-xl-95p {
21254
    max-width: 95%;
21255
  }
16848 stevensc 21256
 
16825 efrain 21257
  .mn-wd-xl-95p {
21258
    min-width: 95%;
21259
  }
16848 stevensc 21260
 
16825 efrain 21261
  .wd-xl-95-f {
21262
    width: 95px !important;
21263
  }
16848 stevensc 21264
 
16825 efrain 21265
  .wd-xl-95p-f {
21266
    width: 95% !important;
21267
  }
16848 stevensc 21268
 
16825 efrain 21269
  .mx-wd-xl-95p-f {
21270
    max-width: 95% !important;
21271
  }
16848 stevensc 21272
 
16825 efrain 21273
  .mn-wd-xl-95p-f {
21274
    min-width: 95% !important;
21275
  }
16848 stevensc 21276
 
16825 efrain 21277
  .wd-xl-100 {
21278
    width: 100px;
21279
  }
16848 stevensc 21280
 
16825 efrain 21281
  .wd-xl-100p {
21282
    width: 100%;
21283
  }
16848 stevensc 21284
 
16825 efrain 21285
  .mx-wd-xl-100p {
21286
    max-width: 100%;
21287
  }
16848 stevensc 21288
 
16825 efrain 21289
  .mn-wd-xl-100p {
21290
    min-width: 100%;
21291
  }
16848 stevensc 21292
 
16825 efrain 21293
  .wd-xl-100-f {
21294
    width: 100px !important;
21295
  }
16848 stevensc 21296
 
16825 efrain 21297
  .wd-xl-100p-f {
21298
    width: 100% !important;
21299
  }
16848 stevensc 21300
 
16825 efrain 21301
  .mx-wd-xl-100p-f {
21302
    max-width: 100% !important;
21303
  }
16848 stevensc 21304
 
16825 efrain 21305
  .mn-wd-xl-100p-f {
21306
    min-width: 100% !important;
21307
  }
16848 stevensc 21308
 
16825 efrain 21309
  .wd-xl-150 {
21310
    width: 150px;
21311
  }
16848 stevensc 21312
 
16825 efrain 21313
  .wd-xl-150p {
21314
    width: 150%;
21315
  }
16848 stevensc 21316
 
16825 efrain 21317
  .mx-wd-xl-150p {
21318
    max-width: 150%;
21319
  }
16848 stevensc 21320
 
16825 efrain 21321
  .mn-wd-xl-150p {
21322
    min-width: 150%;
21323
  }
16848 stevensc 21324
 
16825 efrain 21325
  .wd-xl-150-f {
21326
    width: 150px !important;
21327
  }
16848 stevensc 21328
 
16825 efrain 21329
  .wd-xl-150p-f {
21330
    width: 150% !important;
21331
  }
16848 stevensc 21332
 
16825 efrain 21333
  .mx-wd-xl-150p-f {
21334
    max-width: 150% !important;
21335
  }
16848 stevensc 21336
 
16825 efrain 21337
  .mn-wd-xl-150p-f {
21338
    min-width: 150% !important;
21339
  }
16848 stevensc 21340
 
16825 efrain 21341
  .wd-xl-200 {
21342
    width: 200px;
21343
  }
16848 stevensc 21344
 
16825 efrain 21345
  .wd-xl-200p {
21346
    width: 200%;
21347
  }
16848 stevensc 21348
 
16825 efrain 21349
  .mx-wd-xl-200p {
21350
    max-width: 200%;
21351
  }
16848 stevensc 21352
 
16825 efrain 21353
  .mn-wd-xl-200p {
21354
    min-width: 200%;
21355
  }
16848 stevensc 21356
 
16825 efrain 21357
  .wd-xl-200-f {
21358
    width: 200px !important;
21359
  }
16848 stevensc 21360
 
16825 efrain 21361
  .wd-xl-200p-f {
21362
    width: 200% !important;
21363
  }
16848 stevensc 21364
 
16825 efrain 21365
  .mx-wd-xl-200p-f {
21366
    max-width: 200% !important;
21367
  }
16848 stevensc 21368
 
16825 efrain 21369
  .mn-wd-xl-200p-f {
21370
    min-width: 200% !important;
21371
  }
16848 stevensc 21372
 
16825 efrain 21373
  .wd-xl-250 {
21374
    width: 250px;
21375
  }
16848 stevensc 21376
 
16825 efrain 21377
  .wd-xl-250p {
21378
    width: 250%;
21379
  }
16848 stevensc 21380
 
16825 efrain 21381
  .mx-wd-xl-250p {
21382
    max-width: 250%;
21383
  }
16848 stevensc 21384
 
16825 efrain 21385
  .mn-wd-xl-250p {
21386
    min-width: 250%;
21387
  }
16848 stevensc 21388
 
16825 efrain 21389
  .wd-xl-250-f {
21390
    width: 250px !important;
21391
  }
16848 stevensc 21392
 
16825 efrain 21393
  .wd-xl-250p-f {
21394
    width: 250% !important;
21395
  }
16848 stevensc 21396
 
16825 efrain 21397
  .mx-wd-xl-250p-f {
21398
    max-width: 250% !important;
21399
  }
16848 stevensc 21400
 
16825 efrain 21401
  .mn-wd-xl-250p-f {
21402
    min-width: 250% !important;
21403
  }
16848 stevensc 21404
 
16825 efrain 21405
  .wd-xl-300 {
21406
    width: 300px;
21407
  }
16848 stevensc 21408
 
16825 efrain 21409
  .wd-xl-300p {
21410
    width: 300%;
21411
  }
16848 stevensc 21412
 
16825 efrain 21413
  .mx-wd-xl-300p {
21414
    max-width: 300%;
21415
  }
16848 stevensc 21416
 
16825 efrain 21417
  .mn-wd-xl-300p {
21418
    min-width: 300%;
21419
  }
16848 stevensc 21420
 
16825 efrain 21421
  .wd-xl-300-f {
21422
    width: 300px !important;
21423
  }
16848 stevensc 21424
 
16825 efrain 21425
  .wd-xl-300p-f {
21426
    width: 300% !important;
21427
  }
16848 stevensc 21428
 
16825 efrain 21429
  .mx-wd-xl-300p-f {
21430
    max-width: 300% !important;
21431
  }
16848 stevensc 21432
 
16825 efrain 21433
  .mn-wd-xl-300p-f {
21434
    min-width: 300% !important;
21435
  }
16848 stevensc 21436
 
16825 efrain 21437
  .wd-xl-350 {
21438
    width: 350px;
21439
  }
16848 stevensc 21440
 
16825 efrain 21441
  .wd-xl-350p {
21442
    width: 350%;
21443
  }
16848 stevensc 21444
 
16825 efrain 21445
  .mx-wd-xl-350p {
21446
    max-width: 350%;
21447
  }
16848 stevensc 21448
 
16825 efrain 21449
  .mn-wd-xl-350p {
21450
    min-width: 350%;
21451
  }
16848 stevensc 21452
 
16825 efrain 21453
  .wd-xl-350-f {
21454
    width: 350px !important;
21455
  }
16848 stevensc 21456
 
16825 efrain 21457
  .wd-xl-350p-f {
21458
    width: 350% !important;
21459
  }
16848 stevensc 21460
 
16825 efrain 21461
  .mx-wd-xl-350p-f {
21462
    max-width: 350% !important;
21463
  }
16848 stevensc 21464
 
16825 efrain 21465
  .mn-wd-xl-350p-f {
21466
    min-width: 350% !important;
21467
  }
16848 stevensc 21468
 
16825 efrain 21469
  .wd-xl-400 {
21470
    width: 400px;
21471
  }
16848 stevensc 21472
 
16825 efrain 21473
  .wd-xl-400p {
21474
    width: 400%;
21475
  }
16848 stevensc 21476
 
16825 efrain 21477
  .mx-wd-xl-400p {
21478
    max-width: 400%;
21479
  }
16848 stevensc 21480
 
16825 efrain 21481
  .mn-wd-xl-400p {
21482
    min-width: 400%;
21483
  }
16848 stevensc 21484
 
16825 efrain 21485
  .wd-xl-400-f {
21486
    width: 400px !important;
21487
  }
16848 stevensc 21488
 
16825 efrain 21489
  .wd-xl-400p-f {
21490
    width: 400% !important;
21491
  }
16848 stevensc 21492
 
16825 efrain 21493
  .mx-wd-xl-400p-f {
21494
    max-width: 400% !important;
21495
  }
16848 stevensc 21496
 
16825 efrain 21497
  .mn-wd-xl-400p-f {
21498
    min-width: 400% !important;
21499
  }
16848 stevensc 21500
 
16825 efrain 21501
  .wd-xl-450 {
21502
    width: 450px;
21503
  }
16848 stevensc 21504
 
16825 efrain 21505
  .wd-xl-450p {
21506
    width: 450%;
21507
  }
16848 stevensc 21508
 
16825 efrain 21509
  .mx-wd-xl-450p {
21510
    max-width: 450%;
21511
  }
16848 stevensc 21512
 
16825 efrain 21513
  .mn-wd-xl-450p {
21514
    min-width: 450%;
21515
  }
16848 stevensc 21516
 
16825 efrain 21517
  .wd-xl-450-f {
21518
    width: 450px !important;
21519
  }
16848 stevensc 21520
 
16825 efrain 21521
  .wd-xl-450p-f {
21522
    width: 450% !important;
21523
  }
16848 stevensc 21524
 
16825 efrain 21525
  .mx-wd-xl-450p-f {
21526
    max-width: 450% !important;
21527
  }
16848 stevensc 21528
 
16825 efrain 21529
  .mn-wd-xl-450p-f {
21530
    min-width: 450% !important;
21531
  }
16848 stevensc 21532
 
16825 efrain 21533
  .wd-xl-500 {
21534
    width: 500px;
21535
  }
16848 stevensc 21536
 
16825 efrain 21537
  .wd-xl-500p {
21538
    width: 500%;
21539
  }
16848 stevensc 21540
 
16825 efrain 21541
  .mx-wd-xl-500p {
21542
    max-width: 500%;
21543
  }
16848 stevensc 21544
 
16825 efrain 21545
  .mn-wd-xl-500p {
21546
    min-width: 500%;
21547
  }
16848 stevensc 21548
 
16825 efrain 21549
  .wd-xl-500-f {
21550
    width: 500px !important;
21551
  }
16848 stevensc 21552
 
16825 efrain 21553
  .wd-xl-500p-f {
21554
    width: 500% !important;
21555
  }
16848 stevensc 21556
 
16825 efrain 21557
  .mx-wd-xl-500p-f {
21558
    max-width: 500% !important;
21559
  }
16848 stevensc 21560
 
16825 efrain 21561
  .mn-wd-xl-500p-f {
21562
    min-width: 500% !important;
21563
  }
16848 stevensc 21564
 
16825 efrain 21565
  .wd-xl-550 {
21566
    width: 550px;
21567
  }
16848 stevensc 21568
 
16825 efrain 21569
  .wd-xl-550p {
21570
    width: 550%;
21571
  }
16848 stevensc 21572
 
16825 efrain 21573
  .mx-wd-xl-550p {
21574
    max-width: 550%;
21575
  }
16848 stevensc 21576
 
16825 efrain 21577
  .mn-wd-xl-550p {
21578
    min-width: 550%;
21579
  }
16848 stevensc 21580
 
16825 efrain 21581
  .wd-xl-550-f {
21582
    width: 550px !important;
21583
  }
16848 stevensc 21584
 
16825 efrain 21585
  .wd-xl-550p-f {
21586
    width: 550% !important;
21587
  }
16848 stevensc 21588
 
16825 efrain 21589
  .mx-wd-xl-550p-f {
21590
    max-width: 550% !important;
21591
  }
16848 stevensc 21592
 
16825 efrain 21593
  .mn-wd-xl-550p-f {
21594
    min-width: 550% !important;
21595
  }
16848 stevensc 21596
 
16825 efrain 21597
  .wd-xl-600 {
21598
    width: 600px;
21599
  }
16848 stevensc 21600
 
16825 efrain 21601
  .wd-xl-600p {
21602
    width: 600%;
21603
  }
16848 stevensc 21604
 
16825 efrain 21605
  .mx-wd-xl-600p {
21606
    max-width: 600%;
21607
  }
16848 stevensc 21608
 
16825 efrain 21609
  .mn-wd-xl-600p {
21610
    min-width: 600%;
21611
  }
16848 stevensc 21612
 
16825 efrain 21613
  .wd-xl-600-f {
21614
    width: 600px !important;
21615
  }
16848 stevensc 21616
 
16825 efrain 21617
  .wd-xl-600p-f {
21618
    width: 600% !important;
21619
  }
16848 stevensc 21620
 
16825 efrain 21621
  .mx-wd-xl-600p-f {
21622
    max-width: 600% !important;
21623
  }
16848 stevensc 21624
 
16825 efrain 21625
  .mn-wd-xl-600p-f {
21626
    min-width: 600% !important;
21627
  }
16848 stevensc 21628
 
16825 efrain 21629
  .wd-xl-650 {
21630
    width: 650px;
21631
  }
16848 stevensc 21632
 
16825 efrain 21633
  .wd-xl-650p {
21634
    width: 650%;
21635
  }
16848 stevensc 21636
 
16825 efrain 21637
  .mx-wd-xl-650p {
21638
    max-width: 650%;
21639
  }
16848 stevensc 21640
 
16825 efrain 21641
  .mn-wd-xl-650p {
21642
    min-width: 650%;
21643
  }
16848 stevensc 21644
 
16825 efrain 21645
  .wd-xl-650-f {
21646
    width: 650px !important;
21647
  }
16848 stevensc 21648
 
16825 efrain 21649
  .wd-xl-650p-f {
21650
    width: 650% !important;
21651
  }
16848 stevensc 21652
 
16825 efrain 21653
  .mx-wd-xl-650p-f {
21654
    max-width: 650% !important;
21655
  }
16848 stevensc 21656
 
16825 efrain 21657
  .mn-wd-xl-650p-f {
21658
    min-width: 650% !important;
21659
  }
16848 stevensc 21660
 
16825 efrain 21661
  .wd-xl-700 {
21662
    width: 700px;
21663
  }
16848 stevensc 21664
 
16825 efrain 21665
  .wd-xl-700p {
21666
    width: 700%;
21667
  }
16848 stevensc 21668
 
16825 efrain 21669
  .mx-wd-xl-700p {
21670
    max-width: 700%;
21671
  }
16848 stevensc 21672
 
16825 efrain 21673
  .mn-wd-xl-700p {
21674
    min-width: 700%;
21675
  }
16848 stevensc 21676
 
16825 efrain 21677
  .wd-xl-700-f {
21678
    width: 700px !important;
21679
  }
16848 stevensc 21680
 
16825 efrain 21681
  .wd-xl-700p-f {
21682
    width: 700% !important;
21683
  }
16848 stevensc 21684
 
16825 efrain 21685
  .mx-wd-xl-700p-f {
21686
    max-width: 700% !important;
21687
  }
16848 stevensc 21688
 
16825 efrain 21689
  .mn-wd-xl-700p-f {
21690
    min-width: 700% !important;
21691
  }
16848 stevensc 21692
 
16825 efrain 21693
  .wd-xl-750 {
21694
    width: 750px;
21695
  }
16848 stevensc 21696
 
16825 efrain 21697
  .wd-xl-750p {
21698
    width: 750%;
21699
  }
16848 stevensc 21700
 
16825 efrain 21701
  .mx-wd-xl-750p {
21702
    max-width: 750%;
21703
  }
16848 stevensc 21704
 
16825 efrain 21705
  .mn-wd-xl-750p {
21706
    min-width: 750%;
21707
  }
16848 stevensc 21708
 
16825 efrain 21709
  .wd-xl-750-f {
21710
    width: 750px !important;
21711
  }
16848 stevensc 21712
 
16825 efrain 21713
  .wd-xl-750p-f {
21714
    width: 750% !important;
21715
  }
16848 stevensc 21716
 
16825 efrain 21717
  .mx-wd-xl-750p-f {
21718
    max-width: 750% !important;
21719
  }
16848 stevensc 21720
 
16825 efrain 21721
  .mn-wd-xl-750p-f {
21722
    min-width: 750% !important;
21723
  }
16848 stevensc 21724
 
16825 efrain 21725
  .wd-xl-800 {
21726
    width: 800px;
21727
  }
16848 stevensc 21728
 
16825 efrain 21729
  .wd-xl-800p {
21730
    width: 800%;
21731
  }
16848 stevensc 21732
 
16825 efrain 21733
  .mx-wd-xl-800p {
21734
    max-width: 800%;
21735
  }
16848 stevensc 21736
 
16825 efrain 21737
  .mn-wd-xl-800p {
21738
    min-width: 800%;
21739
  }
16848 stevensc 21740
 
16825 efrain 21741
  .wd-xl-800-f {
21742
    width: 800px !important;
21743
  }
16848 stevensc 21744
 
16825 efrain 21745
  .wd-xl-800p-f {
21746
    width: 800% !important;
21747
  }
16848 stevensc 21748
 
16825 efrain 21749
  .mx-wd-xl-800p-f {
21750
    max-width: 800% !important;
21751
  }
16848 stevensc 21752
 
16825 efrain 21753
  .mn-wd-xl-800p-f {
21754
    min-width: 800% !important;
21755
  }
16848 stevensc 21756
 
16825 efrain 21757
  .wd-xl-850 {
21758
    width: 850px;
21759
  }
16848 stevensc 21760
 
16825 efrain 21761
  .wd-xl-850p {
21762
    width: 850%;
21763
  }
16848 stevensc 21764
 
16825 efrain 21765
  .mx-wd-xl-850p {
21766
    max-width: 850%;
21767
  }
16848 stevensc 21768
 
16825 efrain 21769
  .mn-wd-xl-850p {
21770
    min-width: 850%;
21771
  }
16848 stevensc 21772
 
16825 efrain 21773
  .wd-xl-850-f {
21774
    width: 850px !important;
21775
  }
16848 stevensc 21776
 
16825 efrain 21777
  .wd-xl-850p-f {
21778
    width: 850% !important;
21779
  }
16848 stevensc 21780
 
16825 efrain 21781
  .mx-wd-xl-850p-f {
21782
    max-width: 850% !important;
21783
  }
16848 stevensc 21784
 
16825 efrain 21785
  .mn-wd-xl-850p-f {
21786
    min-width: 850% !important;
21787
  }
16848 stevensc 21788
 
16825 efrain 21789
  .wd-xl-900 {
21790
    width: 900px;
21791
  }
16848 stevensc 21792
 
16825 efrain 21793
  .wd-xl-900p {
21794
    width: 900%;
21795
  }
16848 stevensc 21796
 
16825 efrain 21797
  .mx-wd-xl-900p {
21798
    max-width: 900%;
21799
  }
16848 stevensc 21800
 
16825 efrain 21801
  .mn-wd-xl-900p {
21802
    min-width: 900%;
21803
  }
16848 stevensc 21804
 
16825 efrain 21805
  .wd-xl-900-f {
21806
    width: 900px !important;
21807
  }
16848 stevensc 21808
 
16825 efrain 21809
  .wd-xl-900p-f {
21810
    width: 900% !important;
21811
  }
16848 stevensc 21812
 
16825 efrain 21813
  .mx-wd-xl-900p-f {
21814
    max-width: 900% !important;
21815
  }
16848 stevensc 21816
 
16825 efrain 21817
  .mn-wd-xl-900p-f {
21818
    min-width: 900% !important;
21819
  }
16848 stevensc 21820
 
16825 efrain 21821
  .wd-xl-950 {
21822
    width: 950px;
21823
  }
16848 stevensc 21824
 
16825 efrain 21825
  .wd-xl-950p {
21826
    width: 950%;
21827
  }
16848 stevensc 21828
 
16825 efrain 21829
  .mx-wd-xl-950p {
21830
    max-width: 950%;
21831
  }
16848 stevensc 21832
 
16825 efrain 21833
  .mn-wd-xl-950p {
21834
    min-width: 950%;
21835
  }
16848 stevensc 21836
 
16825 efrain 21837
  .wd-xl-950-f {
21838
    width: 950px !important;
21839
  }
16848 stevensc 21840
 
16825 efrain 21841
  .wd-xl-950p-f {
21842
    width: 950% !important;
21843
  }
16848 stevensc 21844
 
16825 efrain 21845
  .mx-wd-xl-950p-f {
21846
    max-width: 950% !important;
21847
  }
16848 stevensc 21848
 
16825 efrain 21849
  .mn-wd-xl-950p-f {
21850
    min-width: 950% !important;
21851
  }
16848 stevensc 21852
 
16825 efrain 21853
  .wd-xl-1000 {
21854
    width: 1000px;
21855
  }
16848 stevensc 21856
 
16825 efrain 21857
  .wd-xl-1000p {
21858
    width: 1000%;
21859
  }
16848 stevensc 21860
 
16825 efrain 21861
  .mx-wd-xl-1000p {
21862
    max-width: 1000%;
21863
  }
16848 stevensc 21864
 
16825 efrain 21865
  .mn-wd-xl-1000p {
21866
    min-width: 1000%;
21867
  }
16848 stevensc 21868
 
16825 efrain 21869
  .wd-xl-1000-f {
21870
    width: 1000px !important;
21871
  }
16848 stevensc 21872
 
16825 efrain 21873
  .wd-xl-1000p-f {
21874
    width: 1000% !important;
21875
  }
16848 stevensc 21876
 
16825 efrain 21877
  .mx-wd-xl-1000p-f {
21878
    max-width: 1000% !important;
21879
  }
16848 stevensc 21880
 
16825 efrain 21881
  .mn-wd-xl-1000p-f {
21882
    min-width: 1000% !important;
21883
  }
16848 stevensc 21884
 
16825 efrain 21885
  .wd-xl-auto {
21886
    width: auto;
21887
  }
16848 stevensc 21888
 
16825 efrain 21889
  .wd-xl-auto {
21890
    width: auto !important;
21891
  }
21892
}
16848 stevensc 21893
 
16825 efrain 21894
@media (min-width: 1400px) {
21895
  .wd-xxl-5 {
21896
    width: 5px;
21897
  }
16848 stevensc 21898
 
16825 efrain 21899
  .wd-xxl-5p {
21900
    width: 5%;
21901
  }
16848 stevensc 21902
 
16825 efrain 21903
  .mx-wd-xxl-5p {
21904
    max-width: 5%;
21905
  }
16848 stevensc 21906
 
16825 efrain 21907
  .mn-wd-xxl-5p {
21908
    min-width: 5%;
21909
  }
16848 stevensc 21910
 
16825 efrain 21911
  .wd-xxl-5-f {
21912
    width: 5px !important;
21913
  }
16848 stevensc 21914
 
16825 efrain 21915
  .wd-xxl-5p-f {
21916
    width: 5% !important;
21917
  }
16848 stevensc 21918
 
16825 efrain 21919
  .mx-wd-xxl-5p-f {
21920
    max-width: 5% !important;
21921
  }
16848 stevensc 21922
 
16825 efrain 21923
  .mn-wd-xxl-5p-f {
21924
    min-width: 5% !important;
21925
  }
16848 stevensc 21926
 
16825 efrain 21927
  .wd-xxl-10 {
21928
    width: 10px;
21929
  }
16848 stevensc 21930
 
16825 efrain 21931
  .wd-xxl-10p {
21932
    width: 10%;
21933
  }
16848 stevensc 21934
 
16825 efrain 21935
  .mx-wd-xxl-10p {
21936
    max-width: 10%;
21937
  }
16848 stevensc 21938
 
16825 efrain 21939
  .mn-wd-xxl-10p {
21940
    min-width: 10%;
21941
  }
16848 stevensc 21942
 
16825 efrain 21943
  .wd-xxl-10-f {
21944
    width: 10px !important;
21945
  }
16848 stevensc 21946
 
16825 efrain 21947
  .wd-xxl-10p-f {
21948
    width: 10% !important;
21949
  }
16848 stevensc 21950
 
16825 efrain 21951
  .mx-wd-xxl-10p-f {
21952
    max-width: 10% !important;
21953
  }
16848 stevensc 21954
 
16825 efrain 21955
  .mn-wd-xxl-10p-f {
21956
    min-width: 10% !important;
21957
  }
16848 stevensc 21958
 
16825 efrain 21959
  .wd-xxl-15 {
21960
    width: 15px;
21961
  }
16848 stevensc 21962
 
16825 efrain 21963
  .wd-xxl-15p {
21964
    width: 15%;
21965
  }
16848 stevensc 21966
 
16825 efrain 21967
  .mx-wd-xxl-15p {
21968
    max-width: 15%;
21969
  }
16848 stevensc 21970
 
16825 efrain 21971
  .mn-wd-xxl-15p {
21972
    min-width: 15%;
21973
  }
16848 stevensc 21974
 
16825 efrain 21975
  .wd-xxl-15-f {
21976
    width: 15px !important;
21977
  }
16848 stevensc 21978
 
16825 efrain 21979
  .wd-xxl-15p-f {
21980
    width: 15% !important;
21981
  }
16848 stevensc 21982
 
16825 efrain 21983
  .mx-wd-xxl-15p-f {
21984
    max-width: 15% !important;
21985
  }
16848 stevensc 21986
 
16825 efrain 21987
  .mn-wd-xxl-15p-f {
21988
    min-width: 15% !important;
21989
  }
16848 stevensc 21990
 
16825 efrain 21991
  .wd-xxl-20 {
21992
    width: 20px;
21993
  }
16848 stevensc 21994
 
16825 efrain 21995
  .wd-xxl-20p {
21996
    width: 20%;
21997
  }
16848 stevensc 21998
 
16825 efrain 21999
  .mx-wd-xxl-20p {
22000
    max-width: 20%;
22001
  }
16848 stevensc 22002
 
16825 efrain 22003
  .mn-wd-xxl-20p {
22004
    min-width: 20%;
22005
  }
16848 stevensc 22006
 
16825 efrain 22007
  .wd-xxl-20-f {
22008
    width: 20px !important;
22009
  }
16848 stevensc 22010
 
16825 efrain 22011
  .wd-xxl-20p-f {
22012
    width: 20% !important;
22013
  }
16848 stevensc 22014
 
16825 efrain 22015
  .mx-wd-xxl-20p-f {
22016
    max-width: 20% !important;
22017
  }
16848 stevensc 22018
 
16825 efrain 22019
  .mn-wd-xxl-20p-f {
22020
    min-width: 20% !important;
22021
  }
16848 stevensc 22022
 
16825 efrain 22023
  .wd-xxl-25 {
22024
    width: 25px;
22025
  }
16848 stevensc 22026
 
16825 efrain 22027
  .wd-xxl-25p {
22028
    width: 25%;
22029
  }
16848 stevensc 22030
 
16825 efrain 22031
  .mx-wd-xxl-25p {
22032
    max-width: 25%;
22033
  }
16848 stevensc 22034
 
16825 efrain 22035
  .mn-wd-xxl-25p {
22036
    min-width: 25%;
22037
  }
16848 stevensc 22038
 
16825 efrain 22039
  .wd-xxl-25-f {
22040
    width: 25px !important;
22041
  }
16848 stevensc 22042
 
16825 efrain 22043
  .wd-xxl-25p-f {
22044
    width: 25% !important;
22045
  }
16848 stevensc 22046
 
16825 efrain 22047
  .mx-wd-xxl-25p-f {
22048
    max-width: 25% !important;
22049
  }
16848 stevensc 22050
 
16825 efrain 22051
  .mn-wd-xxl-25p-f {
22052
    min-width: 25% !important;
22053
  }
16848 stevensc 22054
 
16825 efrain 22055
  .wd-xxl-30 {
22056
    width: 30px;
22057
  }
16848 stevensc 22058
 
16825 efrain 22059
  .wd-xxl-30p {
22060
    width: 30%;
22061
  }
16848 stevensc 22062
 
16825 efrain 22063
  .mx-wd-xxl-30p {
22064
    max-width: 30%;
22065
  }
16848 stevensc 22066
 
16825 efrain 22067
  .mn-wd-xxl-30p {
22068
    min-width: 30%;
22069
  }
16848 stevensc 22070
 
16825 efrain 22071
  .wd-xxl-30-f {
22072
    width: 30px !important;
22073
  }
16848 stevensc 22074
 
16825 efrain 22075
  .wd-xxl-30p-f {
22076
    width: 30% !important;
22077
  }
16848 stevensc 22078
 
16825 efrain 22079
  .mx-wd-xxl-30p-f {
22080
    max-width: 30% !important;
22081
  }
16848 stevensc 22082
 
16825 efrain 22083
  .mn-wd-xxl-30p-f {
22084
    min-width: 30% !important;
22085
  }
16848 stevensc 22086
 
16825 efrain 22087
  .wd-xxl-35 {
22088
    width: 35px;
22089
  }
16848 stevensc 22090
 
16825 efrain 22091
  .wd-xxl-35p {
22092
    width: 35%;
22093
  }
16848 stevensc 22094
 
16825 efrain 22095
  .mx-wd-xxl-35p {
22096
    max-width: 35%;
22097
  }
16848 stevensc 22098
 
16825 efrain 22099
  .mn-wd-xxl-35p {
22100
    min-width: 35%;
22101
  }
16848 stevensc 22102
 
16825 efrain 22103
  .wd-xxl-35-f {
22104
    width: 35px !important;
22105
  }
16848 stevensc 22106
 
16825 efrain 22107
  .wd-xxl-35p-f {
22108
    width: 35% !important;
22109
  }
16848 stevensc 22110
 
16825 efrain 22111
  .mx-wd-xxl-35p-f {
22112
    max-width: 35% !important;
22113
  }
16848 stevensc 22114
 
16825 efrain 22115
  .mn-wd-xxl-35p-f {
22116
    min-width: 35% !important;
22117
  }
16848 stevensc 22118
 
16825 efrain 22119
  .wd-xxl-40 {
22120
    width: 40px;
22121
  }
16848 stevensc 22122
 
16825 efrain 22123
  .wd-xxl-40p {
22124
    width: 40%;
22125
  }
16848 stevensc 22126
 
16825 efrain 22127
  .mx-wd-xxl-40p {
22128
    max-width: 40%;
22129
  }
16848 stevensc 22130
 
16825 efrain 22131
  .mn-wd-xxl-40p {
22132
    min-width: 40%;
22133
  }
16848 stevensc 22134
 
16825 efrain 22135
  .wd-xxl-40-f {
22136
    width: 40px !important;
22137
  }
16848 stevensc 22138
 
16825 efrain 22139
  .wd-xxl-40p-f {
22140
    width: 40% !important;
22141
  }
16848 stevensc 22142
 
16825 efrain 22143
  .mx-wd-xxl-40p-f {
22144
    max-width: 40% !important;
22145
  }
16848 stevensc 22146
 
16825 efrain 22147
  .mn-wd-xxl-40p-f {
22148
    min-width: 40% !important;
22149
  }
16848 stevensc 22150
 
16825 efrain 22151
  .wd-xxl-45 {
22152
    width: 45px;
22153
  }
16848 stevensc 22154
 
16825 efrain 22155
  .wd-xxl-45p {
22156
    width: 45%;
22157
  }
16848 stevensc 22158
 
16825 efrain 22159
  .mx-wd-xxl-45p {
22160
    max-width: 45%;
22161
  }
16848 stevensc 22162
 
16825 efrain 22163
  .mn-wd-xxl-45p {
22164
    min-width: 45%;
22165
  }
16848 stevensc 22166
 
16825 efrain 22167
  .wd-xxl-45-f {
22168
    width: 45px !important;
22169
  }
16848 stevensc 22170
 
16825 efrain 22171
  .wd-xxl-45p-f {
22172
    width: 45% !important;
22173
  }
16848 stevensc 22174
 
16825 efrain 22175
  .mx-wd-xxl-45p-f {
22176
    max-width: 45% !important;
22177
  }
16848 stevensc 22178
 
16825 efrain 22179
  .mn-wd-xxl-45p-f {
22180
    min-width: 45% !important;
22181
  }
16848 stevensc 22182
 
16825 efrain 22183
  .wd-xxl-50 {
22184
    width: 50px;
22185
  }
16848 stevensc 22186
 
16825 efrain 22187
  .wd-xxl-50p {
22188
    width: 50%;
22189
  }
16848 stevensc 22190
 
16825 efrain 22191
  .mx-wd-xxl-50p {
22192
    max-width: 50%;
22193
  }
16848 stevensc 22194
 
16825 efrain 22195
  .mn-wd-xxl-50p {
22196
    min-width: 50%;
22197
  }
16848 stevensc 22198
 
16825 efrain 22199
  .wd-xxl-50-f {
22200
    width: 50px !important;
22201
  }
16848 stevensc 22202
 
16825 efrain 22203
  .wd-xxl-50p-f {
22204
    width: 50% !important;
22205
  }
16848 stevensc 22206
 
16825 efrain 22207
  .mx-wd-xxl-50p-f {
22208
    max-width: 50% !important;
22209
  }
16848 stevensc 22210
 
16825 efrain 22211
  .mn-wd-xxl-50p-f {
22212
    min-width: 50% !important;
22213
  }
16848 stevensc 22214
 
16825 efrain 22215
  .wd-xxl-55 {
22216
    width: 55px;
22217
  }
16848 stevensc 22218
 
16825 efrain 22219
  .wd-xxl-55p {
22220
    width: 55%;
22221
  }
16848 stevensc 22222
 
16825 efrain 22223
  .mx-wd-xxl-55p {
22224
    max-width: 55%;
22225
  }
16848 stevensc 22226
 
16825 efrain 22227
  .mn-wd-xxl-55p {
22228
    min-width: 55%;
22229
  }
16848 stevensc 22230
 
16825 efrain 22231
  .wd-xxl-55-f {
22232
    width: 55px !important;
22233
  }
16848 stevensc 22234
 
16825 efrain 22235
  .wd-xxl-55p-f {
22236
    width: 55% !important;
22237
  }
16848 stevensc 22238
 
16825 efrain 22239
  .mx-wd-xxl-55p-f {
22240
    max-width: 55% !important;
22241
  }
16848 stevensc 22242
 
16825 efrain 22243
  .mn-wd-xxl-55p-f {
22244
    min-width: 55% !important;
22245
  }
16848 stevensc 22246
 
16825 efrain 22247
  .wd-xxl-60 {
22248
    width: 60px;
22249
  }
16848 stevensc 22250
 
16825 efrain 22251
  .wd-xxl-60p {
22252
    width: 60%;
22253
  }
16848 stevensc 22254
 
16825 efrain 22255
  .mx-wd-xxl-60p {
22256
    max-width: 60%;
22257
  }
16848 stevensc 22258
 
16825 efrain 22259
  .mn-wd-xxl-60p {
22260
    min-width: 60%;
22261
  }
16848 stevensc 22262
 
16825 efrain 22263
  .wd-xxl-60-f {
22264
    width: 60px !important;
22265
  }
16848 stevensc 22266
 
16825 efrain 22267
  .wd-xxl-60p-f {
22268
    width: 60% !important;
22269
  }
16848 stevensc 22270
 
16825 efrain 22271
  .mx-wd-xxl-60p-f {
22272
    max-width: 60% !important;
22273
  }
16848 stevensc 22274
 
16825 efrain 22275
  .mn-wd-xxl-60p-f {
22276
    min-width: 60% !important;
22277
  }
16848 stevensc 22278
 
16825 efrain 22279
  .wd-xxl-65 {
22280
    width: 65px;
22281
  }
16848 stevensc 22282
 
16825 efrain 22283
  .wd-xxl-65p {
22284
    width: 65%;
22285
  }
16848 stevensc 22286
 
16825 efrain 22287
  .mx-wd-xxl-65p {
22288
    max-width: 65%;
22289
  }
16848 stevensc 22290
 
16825 efrain 22291
  .mn-wd-xxl-65p {
22292
    min-width: 65%;
22293
  }
16848 stevensc 22294
 
16825 efrain 22295
  .wd-xxl-65-f {
22296
    width: 65px !important;
22297
  }
16848 stevensc 22298
 
16825 efrain 22299
  .wd-xxl-65p-f {
22300
    width: 65% !important;
22301
  }
16848 stevensc 22302
 
16825 efrain 22303
  .mx-wd-xxl-65p-f {
22304
    max-width: 65% !important;
22305
  }
16848 stevensc 22306
 
16825 efrain 22307
  .mn-wd-xxl-65p-f {
22308
    min-width: 65% !important;
22309
  }
16848 stevensc 22310
 
16825 efrain 22311
  .wd-xxl-70 {
22312
    width: 70px;
22313
  }
16848 stevensc 22314
 
16825 efrain 22315
  .wd-xxl-70p {
22316
    width: 70%;
22317
  }
16848 stevensc 22318
 
16825 efrain 22319
  .mx-wd-xxl-70p {
22320
    max-width: 70%;
22321
  }
16848 stevensc 22322
 
16825 efrain 22323
  .mn-wd-xxl-70p {
22324
    min-width: 70%;
22325
  }
16848 stevensc 22326
 
16825 efrain 22327
  .wd-xxl-70-f {
22328
    width: 70px !important;
22329
  }
16848 stevensc 22330
 
16825 efrain 22331
  .wd-xxl-70p-f {
22332
    width: 70% !important;
22333
  }
16848 stevensc 22334
 
16825 efrain 22335
  .mx-wd-xxl-70p-f {
22336
    max-width: 70% !important;
22337
  }
16848 stevensc 22338
 
16825 efrain 22339
  .mn-wd-xxl-70p-f {
22340
    min-width: 70% !important;
22341
  }
16848 stevensc 22342
 
16825 efrain 22343
  .wd-xxl-75 {
22344
    width: 75px;
22345
  }
16848 stevensc 22346
 
16825 efrain 22347
  .wd-xxl-75p {
22348
    width: 75%;
22349
  }
16848 stevensc 22350
 
16825 efrain 22351
  .mx-wd-xxl-75p {
22352
    max-width: 75%;
22353
  }
16848 stevensc 22354
 
16825 efrain 22355
  .mn-wd-xxl-75p {
22356
    min-width: 75%;
22357
  }
16848 stevensc 22358
 
16825 efrain 22359
  .wd-xxl-75-f {
22360
    width: 75px !important;
22361
  }
16848 stevensc 22362
 
16825 efrain 22363
  .wd-xxl-75p-f {
22364
    width: 75% !important;
22365
  }
16848 stevensc 22366
 
16825 efrain 22367
  .mx-wd-xxl-75p-f {
22368
    max-width: 75% !important;
22369
  }
16848 stevensc 22370
 
16825 efrain 22371
  .mn-wd-xxl-75p-f {
22372
    min-width: 75% !important;
22373
  }
16848 stevensc 22374
 
16825 efrain 22375
  .wd-xxl-80 {
22376
    width: 80px;
22377
  }
16848 stevensc 22378
 
16825 efrain 22379
  .wd-xxl-80p {
22380
    width: 80%;
22381
  }
16848 stevensc 22382
 
16825 efrain 22383
  .mx-wd-xxl-80p {
22384
    max-width: 80%;
22385
  }
16848 stevensc 22386
 
16825 efrain 22387
  .mn-wd-xxl-80p {
22388
    min-width: 80%;
22389
  }
16848 stevensc 22390
 
16825 efrain 22391
  .wd-xxl-80-f {
22392
    width: 80px !important;
22393
  }
16848 stevensc 22394
 
16825 efrain 22395
  .wd-xxl-80p-f {
22396
    width: 80% !important;
22397
  }
16848 stevensc 22398
 
16825 efrain 22399
  .mx-wd-xxl-80p-f {
22400
    max-width: 80% !important;
22401
  }
16848 stevensc 22402
 
16825 efrain 22403
  .mn-wd-xxl-80p-f {
22404
    min-width: 80% !important;
22405
  }
16848 stevensc 22406
 
16825 efrain 22407
  .wd-xxl-85 {
22408
    width: 85px;
22409
  }
16848 stevensc 22410
 
16825 efrain 22411
  .wd-xxl-85p {
22412
    width: 85%;
22413
  }
16848 stevensc 22414
 
16825 efrain 22415
  .mx-wd-xxl-85p {
22416
    max-width: 85%;
22417
  }
16848 stevensc 22418
 
16825 efrain 22419
  .mn-wd-xxl-85p {
22420
    min-width: 85%;
22421
  }
16848 stevensc 22422
 
16825 efrain 22423
  .wd-xxl-85-f {
22424
    width: 85px !important;
22425
  }
16848 stevensc 22426
 
16825 efrain 22427
  .wd-xxl-85p-f {
22428
    width: 85% !important;
22429
  }
16848 stevensc 22430
 
16825 efrain 22431
  .mx-wd-xxl-85p-f {
22432
    max-width: 85% !important;
22433
  }
16848 stevensc 22434
 
16825 efrain 22435
  .mn-wd-xxl-85p-f {
22436
    min-width: 85% !important;
22437
  }
16848 stevensc 22438
 
16825 efrain 22439
  .wd-xxl-90 {
22440
    width: 90px;
22441
  }
16848 stevensc 22442
 
16825 efrain 22443
  .wd-xxl-90p {
22444
    width: 90%;
22445
  }
16848 stevensc 22446
 
16825 efrain 22447
  .mx-wd-xxl-90p {
22448
    max-width: 90%;
22449
  }
16848 stevensc 22450
 
16825 efrain 22451
  .mn-wd-xxl-90p {
22452
    min-width: 90%;
22453
  }
16848 stevensc 22454
 
16825 efrain 22455
  .wd-xxl-90-f {
22456
    width: 90px !important;
22457
  }
16848 stevensc 22458
 
16825 efrain 22459
  .wd-xxl-90p-f {
22460
    width: 90% !important;
22461
  }
16848 stevensc 22462
 
16825 efrain 22463
  .mx-wd-xxl-90p-f {
22464
    max-width: 90% !important;
22465
  }
16848 stevensc 22466
 
16825 efrain 22467
  .mn-wd-xxl-90p-f {
22468
    min-width: 90% !important;
22469
  }
16848 stevensc 22470
 
16825 efrain 22471
  .wd-xxl-95 {
22472
    width: 95px;
22473
  }
16848 stevensc 22474
 
16825 efrain 22475
  .wd-xxl-95p {
22476
    width: 95%;
22477
  }
16848 stevensc 22478
 
16825 efrain 22479
  .mx-wd-xxl-95p {
22480
    max-width: 95%;
22481
  }
16848 stevensc 22482
 
16825 efrain 22483
  .mn-wd-xxl-95p {
22484
    min-width: 95%;
22485
  }
16848 stevensc 22486
 
16825 efrain 22487
  .wd-xxl-95-f {
22488
    width: 95px !important;
22489
  }
16848 stevensc 22490
 
16825 efrain 22491
  .wd-xxl-95p-f {
22492
    width: 95% !important;
22493
  }
16848 stevensc 22494
 
16825 efrain 22495
  .mx-wd-xxl-95p-f {
22496
    max-width: 95% !important;
22497
  }
16848 stevensc 22498
 
16825 efrain 22499
  .mn-wd-xxl-95p-f {
22500
    min-width: 95% !important;
22501
  }
16848 stevensc 22502
 
16825 efrain 22503
  .wd-xxl-100 {
22504
    width: 100px;
22505
  }
16848 stevensc 22506
 
16825 efrain 22507
  .wd-xxl-100p {
22508
    width: 100%;
22509
  }
16848 stevensc 22510
 
16825 efrain 22511
  .mx-wd-xxl-100p {
22512
    max-width: 100%;
22513
  }
16848 stevensc 22514
 
16825 efrain 22515
  .mn-wd-xxl-100p {
22516
    min-width: 100%;
22517
  }
16848 stevensc 22518
 
16825 efrain 22519
  .wd-xxl-100-f {
22520
    width: 100px !important;
22521
  }
16848 stevensc 22522
 
16825 efrain 22523
  .wd-xxl-100p-f {
22524
    width: 100% !important;
22525
  }
16848 stevensc 22526
 
16825 efrain 22527
  .mx-wd-xxl-100p-f {
22528
    max-width: 100% !important;
22529
  }
16848 stevensc 22530
 
16825 efrain 22531
  .mn-wd-xxl-100p-f {
22532
    min-width: 100% !important;
22533
  }
16848 stevensc 22534
 
16825 efrain 22535
  .wd-xxl-150 {
22536
    width: 150px;
22537
  }
16848 stevensc 22538
 
16825 efrain 22539
  .wd-xxl-150p {
22540
    width: 150%;
22541
  }
16848 stevensc 22542
 
16825 efrain 22543
  .mx-wd-xxl-150p {
22544
    max-width: 150%;
22545
  }
16848 stevensc 22546
 
16825 efrain 22547
  .mn-wd-xxl-150p {
22548
    min-width: 150%;
22549
  }
16848 stevensc 22550
 
16825 efrain 22551
  .wd-xxl-150-f {
22552
    width: 150px !important;
22553
  }
16848 stevensc 22554
 
16825 efrain 22555
  .wd-xxl-150p-f {
22556
    width: 150% !important;
22557
  }
16848 stevensc 22558
 
16825 efrain 22559
  .mx-wd-xxl-150p-f {
22560
    max-width: 150% !important;
22561
  }
16848 stevensc 22562
 
16825 efrain 22563
  .mn-wd-xxl-150p-f {
22564
    min-width: 150% !important;
22565
  }
16848 stevensc 22566
 
16825 efrain 22567
  .wd-xxl-200 {
22568
    width: 200px;
22569
  }
16848 stevensc 22570
 
16825 efrain 22571
  .wd-xxl-200p {
22572
    width: 200%;
22573
  }
16848 stevensc 22574
 
16825 efrain 22575
  .mx-wd-xxl-200p {
22576
    max-width: 200%;
22577
  }
16848 stevensc 22578
 
16825 efrain 22579
  .mn-wd-xxl-200p {
22580
    min-width: 200%;
22581
  }
16848 stevensc 22582
 
16825 efrain 22583
  .wd-xxl-200-f {
22584
    width: 200px !important;
22585
  }
16848 stevensc 22586
 
16825 efrain 22587
  .wd-xxl-200p-f {
22588
    width: 200% !important;
22589
  }
16848 stevensc 22590
 
16825 efrain 22591
  .mx-wd-xxl-200p-f {
22592
    max-width: 200% !important;
22593
  }
16848 stevensc 22594
 
16825 efrain 22595
  .mn-wd-xxl-200p-f {
22596
    min-width: 200% !important;
22597
  }
16848 stevensc 22598
 
16825 efrain 22599
  .wd-xxl-250 {
22600
    width: 250px;
22601
  }
16848 stevensc 22602
 
16825 efrain 22603
  .wd-xxl-250p {
22604
    width: 250%;
22605
  }
16848 stevensc 22606
 
16825 efrain 22607
  .mx-wd-xxl-250p {
22608
    max-width: 250%;
22609
  }
16848 stevensc 22610
 
16825 efrain 22611
  .mn-wd-xxl-250p {
22612
    min-width: 250%;
22613
  }
16848 stevensc 22614
 
16825 efrain 22615
  .wd-xxl-250-f {
22616
    width: 250px !important;
22617
  }
16848 stevensc 22618
 
16825 efrain 22619
  .wd-xxl-250p-f {
22620
    width: 250% !important;
22621
  }
16848 stevensc 22622
 
16825 efrain 22623
  .mx-wd-xxl-250p-f {
22624
    max-width: 250% !important;
22625
  }
16848 stevensc 22626
 
16825 efrain 22627
  .mn-wd-xxl-250p-f {
22628
    min-width: 250% !important;
22629
  }
16848 stevensc 22630
 
16825 efrain 22631
  .wd-xxl-300 {
22632
    width: 300px;
22633
  }
16848 stevensc 22634
 
16825 efrain 22635
  .wd-xxl-300p {
22636
    width: 300%;
22637
  }
16848 stevensc 22638
 
16825 efrain 22639
  .mx-wd-xxl-300p {
22640
    max-width: 300%;
22641
  }
16848 stevensc 22642
 
16825 efrain 22643
  .mn-wd-xxl-300p {
22644
    min-width: 300%;
22645
  }
16848 stevensc 22646
 
16825 efrain 22647
  .wd-xxl-300-f {
22648
    width: 300px !important;
22649
  }
16848 stevensc 22650
 
16825 efrain 22651
  .wd-xxl-300p-f {
22652
    width: 300% !important;
22653
  }
16848 stevensc 22654
 
16825 efrain 22655
  .mx-wd-xxl-300p-f {
22656
    max-width: 300% !important;
22657
  }
16848 stevensc 22658
 
16825 efrain 22659
  .mn-wd-xxl-300p-f {
22660
    min-width: 300% !important;
22661
  }
16848 stevensc 22662
 
16825 efrain 22663
  .wd-xxl-350 {
22664
    width: 350px;
22665
  }
16848 stevensc 22666
 
16825 efrain 22667
  .wd-xxl-350p {
22668
    width: 350%;
22669
  }
16848 stevensc 22670
 
16825 efrain 22671
  .mx-wd-xxl-350p {
22672
    max-width: 350%;
22673
  }
16848 stevensc 22674
 
16825 efrain 22675
  .mn-wd-xxl-350p {
22676
    min-width: 350%;
22677
  }
16848 stevensc 22678
 
16825 efrain 22679
  .wd-xxl-350-f {
22680
    width: 350px !important;
22681
  }
16848 stevensc 22682
 
16825 efrain 22683
  .wd-xxl-350p-f {
22684
    width: 350% !important;
22685
  }
16848 stevensc 22686
 
16825 efrain 22687
  .mx-wd-xxl-350p-f {
22688
    max-width: 350% !important;
22689
  }
16848 stevensc 22690
 
16825 efrain 22691
  .mn-wd-xxl-350p-f {
22692
    min-width: 350% !important;
22693
  }
16848 stevensc 22694
 
16825 efrain 22695
  .wd-xxl-400 {
22696
    width: 400px;
22697
  }
16848 stevensc 22698
 
16825 efrain 22699
  .wd-xxl-400p {
22700
    width: 400%;
22701
  }
16848 stevensc 22702
 
16825 efrain 22703
  .mx-wd-xxl-400p {
22704
    max-width: 400%;
22705
  }
16848 stevensc 22706
 
16825 efrain 22707
  .mn-wd-xxl-400p {
22708
    min-width: 400%;
22709
  }
16848 stevensc 22710
 
16825 efrain 22711
  .wd-xxl-400-f {
22712
    width: 400px !important;
22713
  }
16848 stevensc 22714
 
16825 efrain 22715
  .wd-xxl-400p-f {
22716
    width: 400% !important;
22717
  }
16848 stevensc 22718
 
16825 efrain 22719
  .mx-wd-xxl-400p-f {
22720
    max-width: 400% !important;
22721
  }
16848 stevensc 22722
 
16825 efrain 22723
  .mn-wd-xxl-400p-f {
22724
    min-width: 400% !important;
22725
  }
16848 stevensc 22726
 
16825 efrain 22727
  .wd-xxl-450 {
22728
    width: 450px;
22729
  }
16848 stevensc 22730
 
16825 efrain 22731
  .wd-xxl-450p {
22732
    width: 450%;
22733
  }
16848 stevensc 22734
 
16825 efrain 22735
  .mx-wd-xxl-450p {
22736
    max-width: 450%;
22737
  }
16848 stevensc 22738
 
16825 efrain 22739
  .mn-wd-xxl-450p {
22740
    min-width: 450%;
22741
  }
16848 stevensc 22742
 
16825 efrain 22743
  .wd-xxl-450-f {
22744
    width: 450px !important;
22745
  }
16848 stevensc 22746
 
16825 efrain 22747
  .wd-xxl-450p-f {
22748
    width: 450% !important;
22749
  }
16848 stevensc 22750
 
16825 efrain 22751
  .mx-wd-xxl-450p-f {
22752
    max-width: 450% !important;
22753
  }
16848 stevensc 22754
 
16825 efrain 22755
  .mn-wd-xxl-450p-f {
22756
    min-width: 450% !important;
22757
  }
16848 stevensc 22758
 
16825 efrain 22759
  .wd-xxl-500 {
22760
    width: 500px;
22761
  }
16848 stevensc 22762
 
16825 efrain 22763
  .wd-xxl-500p {
22764
    width: 500%;
22765
  }
16848 stevensc 22766
 
16825 efrain 22767
  .mx-wd-xxl-500p {
22768
    max-width: 500%;
22769
  }
16848 stevensc 22770
 
16825 efrain 22771
  .mn-wd-xxl-500p {
22772
    min-width: 500%;
22773
  }
16848 stevensc 22774
 
16825 efrain 22775
  .wd-xxl-500-f {
22776
    width: 500px !important;
22777
  }
16848 stevensc 22778
 
16825 efrain 22779
  .wd-xxl-500p-f {
22780
    width: 500% !important;
22781
  }
16848 stevensc 22782
 
16825 efrain 22783
  .mx-wd-xxl-500p-f {
22784
    max-width: 500% !important;
22785
  }
16848 stevensc 22786
 
16825 efrain 22787
  .mn-wd-xxl-500p-f {
22788
    min-width: 500% !important;
22789
  }
16848 stevensc 22790
 
16825 efrain 22791
  .wd-xxl-550 {
22792
    width: 550px;
22793
  }
16848 stevensc 22794
 
16825 efrain 22795
  .wd-xxl-550p {
22796
    width: 550%;
22797
  }
16848 stevensc 22798
 
16825 efrain 22799
  .mx-wd-xxl-550p {
22800
    max-width: 550%;
22801
  }
16848 stevensc 22802
 
16825 efrain 22803
  .mn-wd-xxl-550p {
22804
    min-width: 550%;
22805
  }
16848 stevensc 22806
 
16825 efrain 22807
  .wd-xxl-550-f {
22808
    width: 550px !important;
22809
  }
16848 stevensc 22810
 
16825 efrain 22811
  .wd-xxl-550p-f {
22812
    width: 550% !important;
22813
  }
16848 stevensc 22814
 
16825 efrain 22815
  .mx-wd-xxl-550p-f {
22816
    max-width: 550% !important;
22817
  }
16848 stevensc 22818
 
16825 efrain 22819
  .mn-wd-xxl-550p-f {
22820
    min-width: 550% !important;
22821
  }
16848 stevensc 22822
 
16825 efrain 22823
  .wd-xxl-600 {
22824
    width: 600px;
22825
  }
16848 stevensc 22826
 
16825 efrain 22827
  .wd-xxl-600p {
22828
    width: 600%;
22829
  }
16848 stevensc 22830
 
16825 efrain 22831
  .mx-wd-xxl-600p {
22832
    max-width: 600%;
22833
  }
16848 stevensc 22834
 
16825 efrain 22835
  .mn-wd-xxl-600p {
22836
    min-width: 600%;
22837
  }
16848 stevensc 22838
 
16825 efrain 22839
  .wd-xxl-600-f {
22840
    width: 600px !important;
22841
  }
16848 stevensc 22842
 
16825 efrain 22843
  .wd-xxl-600p-f {
22844
    width: 600% !important;
22845
  }
16848 stevensc 22846
 
16825 efrain 22847
  .mx-wd-xxl-600p-f {
22848
    max-width: 600% !important;
22849
  }
16848 stevensc 22850
 
16825 efrain 22851
  .mn-wd-xxl-600p-f {
22852
    min-width: 600% !important;
22853
  }
16848 stevensc 22854
 
16825 efrain 22855
  .wd-xxl-650 {
22856
    width: 650px;
22857
  }
16848 stevensc 22858
 
16825 efrain 22859
  .wd-xxl-650p {
22860
    width: 650%;
22861
  }
16848 stevensc 22862
 
16825 efrain 22863
  .mx-wd-xxl-650p {
22864
    max-width: 650%;
22865
  }
16848 stevensc 22866
 
16825 efrain 22867
  .mn-wd-xxl-650p {
22868
    min-width: 650%;
22869
  }
16848 stevensc 22870
 
16825 efrain 22871
  .wd-xxl-650-f {
22872
    width: 650px !important;
22873
  }
16848 stevensc 22874
 
16825 efrain 22875
  .wd-xxl-650p-f {
22876
    width: 650% !important;
22877
  }
16848 stevensc 22878
 
16825 efrain 22879
  .mx-wd-xxl-650p-f {
22880
    max-width: 650% !important;
22881
  }
16848 stevensc 22882
 
16825 efrain 22883
  .mn-wd-xxl-650p-f {
22884
    min-width: 650% !important;
22885
  }
16848 stevensc 22886
 
16825 efrain 22887
  .wd-xxl-700 {
22888
    width: 700px;
22889
  }
16848 stevensc 22890
 
16825 efrain 22891
  .wd-xxl-700p {
22892
    width: 700%;
22893
  }
16848 stevensc 22894
 
16825 efrain 22895
  .mx-wd-xxl-700p {
22896
    max-width: 700%;
22897
  }
16848 stevensc 22898
 
16825 efrain 22899
  .mn-wd-xxl-700p {
22900
    min-width: 700%;
22901
  }
16848 stevensc 22902
 
16825 efrain 22903
  .wd-xxl-700-f {
22904
    width: 700px !important;
22905
  }
16848 stevensc 22906
 
16825 efrain 22907
  .wd-xxl-700p-f {
22908
    width: 700% !important;
22909
  }
16848 stevensc 22910
 
16825 efrain 22911
  .mx-wd-xxl-700p-f {
22912
    max-width: 700% !important;
22913
  }
16848 stevensc 22914
 
16825 efrain 22915
  .mn-wd-xxl-700p-f {
22916
    min-width: 700% !important;
22917
  }
16848 stevensc 22918
 
16825 efrain 22919
  .wd-xxl-750 {
22920
    width: 750px;
22921
  }
16848 stevensc 22922
 
16825 efrain 22923
  .wd-xxl-750p {
22924
    width: 750%;
22925
  }
16848 stevensc 22926
 
16825 efrain 22927
  .mx-wd-xxl-750p {
22928
    max-width: 750%;
22929
  }
16848 stevensc 22930
 
16825 efrain 22931
  .mn-wd-xxl-750p {
22932
    min-width: 750%;
22933
  }
16848 stevensc 22934
 
16825 efrain 22935
  .wd-xxl-750-f {
22936
    width: 750px !important;
22937
  }
16848 stevensc 22938
 
16825 efrain 22939
  .wd-xxl-750p-f {
22940
    width: 750% !important;
22941
  }
16848 stevensc 22942
 
16825 efrain 22943
  .mx-wd-xxl-750p-f {
22944
    max-width: 750% !important;
22945
  }
16848 stevensc 22946
 
16825 efrain 22947
  .mn-wd-xxl-750p-f {
22948
    min-width: 750% !important;
22949
  }
16848 stevensc 22950
 
16825 efrain 22951
  .wd-xxl-800 {
22952
    width: 800px;
22953
  }
16848 stevensc 22954
 
16825 efrain 22955
  .wd-xxl-800p {
22956
    width: 800%;
22957
  }
16848 stevensc 22958
 
16825 efrain 22959
  .mx-wd-xxl-800p {
22960
    max-width: 800%;
22961
  }
16848 stevensc 22962
 
16825 efrain 22963
  .mn-wd-xxl-800p {
22964
    min-width: 800%;
22965
  }
16848 stevensc 22966
 
16825 efrain 22967
  .wd-xxl-800-f {
22968
    width: 800px !important;
22969
  }
16848 stevensc 22970
 
16825 efrain 22971
  .wd-xxl-800p-f {
22972
    width: 800% !important;
22973
  }
16848 stevensc 22974
 
16825 efrain 22975
  .mx-wd-xxl-800p-f {
22976
    max-width: 800% !important;
22977
  }
16848 stevensc 22978
 
16825 efrain 22979
  .mn-wd-xxl-800p-f {
22980
    min-width: 800% !important;
22981
  }
16848 stevensc 22982
 
16825 efrain 22983
  .wd-xxl-850 {
22984
    width: 850px;
22985
  }
16848 stevensc 22986
 
16825 efrain 22987
  .wd-xxl-850p {
22988
    width: 850%;
22989
  }
16848 stevensc 22990
 
16825 efrain 22991
  .mx-wd-xxl-850p {
22992
    max-width: 850%;
22993
  }
16848 stevensc 22994
 
16825 efrain 22995
  .mn-wd-xxl-850p {
22996
    min-width: 850%;
22997
  }
16848 stevensc 22998
 
16825 efrain 22999
  .wd-xxl-850-f {
23000
    width: 850px !important;
23001
  }
16848 stevensc 23002
 
16825 efrain 23003
  .wd-xxl-850p-f {
23004
    width: 850% !important;
23005
  }
16848 stevensc 23006
 
16825 efrain 23007
  .mx-wd-xxl-850p-f {
23008
    max-width: 850% !important;
23009
  }
16848 stevensc 23010
 
16825 efrain 23011
  .mn-wd-xxl-850p-f {
23012
    min-width: 850% !important;
23013
  }
16848 stevensc 23014
 
16825 efrain 23015
  .wd-xxl-900 {
23016
    width: 900px;
23017
  }
16848 stevensc 23018
 
16825 efrain 23019
  .wd-xxl-900p {
23020
    width: 900%;
23021
  }
16848 stevensc 23022
 
16825 efrain 23023
  .mx-wd-xxl-900p {
23024
    max-width: 900%;
23025
  }
16848 stevensc 23026
 
16825 efrain 23027
  .mn-wd-xxl-900p {
23028
    min-width: 900%;
23029
  }
16848 stevensc 23030
 
16825 efrain 23031
  .wd-xxl-900-f {
23032
    width: 900px !important;
23033
  }
16848 stevensc 23034
 
16825 efrain 23035
  .wd-xxl-900p-f {
23036
    width: 900% !important;
23037
  }
16848 stevensc 23038
 
16825 efrain 23039
  .mx-wd-xxl-900p-f {
23040
    max-width: 900% !important;
23041
  }
16848 stevensc 23042
 
16825 efrain 23043
  .mn-wd-xxl-900p-f {
23044
    min-width: 900% !important;
23045
  }
16848 stevensc 23046
 
16825 efrain 23047
  .wd-xxl-950 {
23048
    width: 950px;
23049
  }
16848 stevensc 23050
 
16825 efrain 23051
  .wd-xxl-950p {
23052
    width: 950%;
23053
  }
16848 stevensc 23054
 
16825 efrain 23055
  .mx-wd-xxl-950p {
23056
    max-width: 950%;
23057
  }
16848 stevensc 23058
 
16825 efrain 23059
  .mn-wd-xxl-950p {
23060
    min-width: 950%;
23061
  }
16848 stevensc 23062
 
16825 efrain 23063
  .wd-xxl-950-f {
23064
    width: 950px !important;
23065
  }
16848 stevensc 23066
 
16825 efrain 23067
  .wd-xxl-950p-f {
23068
    width: 950% !important;
23069
  }
16848 stevensc 23070
 
16825 efrain 23071
  .mx-wd-xxl-950p-f {
23072
    max-width: 950% !important;
23073
  }
16848 stevensc 23074
 
16825 efrain 23075
  .mn-wd-xxl-950p-f {
23076
    min-width: 950% !important;
23077
  }
16848 stevensc 23078
 
16825 efrain 23079
  .wd-xxl-1000 {
23080
    width: 1000px;
23081
  }
16848 stevensc 23082
 
16825 efrain 23083
  .wd-xxl-1000p {
23084
    width: 1000%;
23085
  }
16848 stevensc 23086
 
16825 efrain 23087
  .mx-wd-xxl-1000p {
23088
    max-width: 1000%;
23089
  }
16848 stevensc 23090
 
16825 efrain 23091
  .mn-wd-xxl-1000p {
23092
    min-width: 1000%;
23093
  }
16848 stevensc 23094
 
16825 efrain 23095
  .wd-xxl-1000-f {
23096
    width: 1000px !important;
23097
  }
16848 stevensc 23098
 
16825 efrain 23099
  .wd-xxl-1000p-f {
23100
    width: 1000% !important;
23101
  }
16848 stevensc 23102
 
16825 efrain 23103
  .mx-wd-xxl-1000p-f {
23104
    max-width: 1000% !important;
23105
  }
16848 stevensc 23106
 
16825 efrain 23107
  .mn-wd-xxl-1000p-f {
23108
    min-width: 1000% !important;
23109
  }
16848 stevensc 23110
 
16825 efrain 23111
  .wd-xxl-auto {
23112
    width: auto;
23113
  }
16848 stevensc 23114
 
16825 efrain 23115
  .wd-xxl-auto {
23116
    width: auto !important;
23117
  }
23118
}
16848 stevensc 23119
 
16825 efrain 23120
.bg-facebook {
23121
  background: social-color("facebook");
23122
}
23123
 
23124
.bg-twitter {
23125
  background: social-color("twitter");
23126
}
23127
 
23128
.bg-google {
23129
  background: social-color("google");
23130
}
23131
 
23132
.bg-youtube {
23133
  background: social-color("youtube");
23134
}
23135
 
23136
.bg-vimeo {
23137
  background: social-color("vimeo");
23138
}
23139
 
23140
.bg-dribbble {
23141
  background: social-color("dribbble");
23142
}
23143
 
23144
.bg-github {
23145
  background: social-color("github");
23146
}
23147
 
23148
.bg-instagram {
23149
  background: social-color("instagram");
23150
}
23151
 
23152
.bg-pinterest {
23153
  background: social-color("pinterest");
23154
}
23155
 
23156
.bg-flickr {
23157
  background: social-color("flickr");
23158
}
23159
 
23160
.bg-bitbucket {
23161
  background: social-color("bitbucket");
23162
}
23163
 
23164
.bg-linkedin {
23165
  background: social-color("linkedin");
23166
}
23167
 
23168
body {
23169
  margin: 0;
23170
  padding: 0;
23171
}
23172
 
16848 stevensc 23173
.btn,
23174
.wizard>.actions a,
23175
.wizard>.actions a:active,
23176
.wizard>.actions a:hover,
23177
div.tox .tox-button,
23178
.swal2-popup .swal2-actions button,
23179
.fc .fc-button-primary,
16825 efrain 23180
.btn-group.open .dropdown-toggle,
23181
.btn:active,
23182
.btn:focus,
23183
.btn:hover,
23184
.btn:visited,
23185
a,
23186
a:active,
23187
a:checked,
23188
a:focus,
23189
a:hover,
23190
a:visited,
23191
body,
23192
button,
23193
button:active,
23194
button:hover,
23195
button:visited,
23196
div,
23197
input,
23198
input:active,
23199
input:hover,
23200
input:focus,
23201
input:visited,
23202
select,
23203
select:active,
23204
select:focus,
23205
select:visited,
23206
textarea,
23207
textarea:active,
23208
textarea:focus,
23209
textarea:visited {
23210
  -webkit-box-shadow: none;
23211
  -moz-box-shadow: none;
23212
  box-shadow: none;
23213
}
23214
 
23215
select,
23216
.form-check-input {
16848 stevensc 23217
  appearance: none;
16825 efrain 23218
  -moz-appearance: none;
23219
}
23220
 
23221
input:-webkit-autofill,
23222
input:-webkit-autofill:hover,
23223
input:-webkit-autofill:focus,
23224
input:-webkit-autofill:active {
23225
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23226
  -webkit-text-fill-color: #000;
23227
}
23228
 
23229
*:-moz-full-screen,
23230
*:-webkit-full-screen,
23231
*:fullscreen *:-ms-full-screen {
23232
  overflow: auto;
23233
}
23234
 
23235
pre {
23236
  background-color: color(gray-lighter);
23237
  padding: 15px;
23238
  font-size: 14px;
23239
}
23240
 
23241
code {
23242
  padding: 5px;
23243
  font-family: "Roboto", Helvetica, sans-serif;
23244
  font-weight: 400;
23245
  font-size: 0.875rem;
23246
  border-radius: 4px;
23247
}
23248
 
23249
.grid-margin {
23250
  margin-bottom: 1.5rem;
23251
}
23252
 
23253
@media (min-width: 576px) {
23254
  .grid-margin-sm-0 {
23255
    margin-bottom: 0;
23256
  }
23257
}
23258
 
23259
@media (min-width: 768px) {
23260
  .grid-margin-md-0 {
23261
    margin-bottom: 0;
23262
  }
23263
}
23264
 
23265
@media (min-width: 992px) {
23266
  .grid-margin-lg-0 {
23267
    margin-bottom: 0;
23268
  }
23269
}
23270
 
23271
@media (min-width: 1200px) {
23272
  .grid-margin-xl-0 {
23273
    margin-bottom: 0;
23274
  }
23275
}
23276
 
23277
.stretch-card {
23278
  display: flex;
23279
  align-items: stretch;
23280
  justify-content: stretch;
23281
}
16848 stevensc 23282
 
23283
.stretch-card>.card {
16825 efrain 23284
  width: 100%;
23285
  min-width: 100%;
23286
}
23287
 
23288
.img-lg {
23289
  width: 92px;
23290
  height: 92px;
23291
}
23292
 
23293
.img-md {
23294
  width: 75px;
23295
  height: 92px;
23296
}
23297
 
23298
.img-sm {
23299
  width: 43px;
23300
  height: 43px;
23301
}
23302
 
23303
.img-xs {
23304
  width: 36px;
23305
  height: 36px;
23306
}
23307
 
23308
.img-ss {
23309
  width: 26px;
23310
  height: 26px;
23311
}
23312
 
23313
.fw-boldest {
23314
  font-weight: 900;
23315
}
23316
 
23317
.tx-10 {
23318
  font-size: 10px;
23319
}
23320
 
23321
.tx-11 {
23322
  font-size: 11px;
23323
}
23324
 
23325
.tx-12 {
23326
  font-size: 12px;
23327
}
23328
 
23329
.tx-13 {
23330
  font-size: 13px;
23331
}
23332
 
23333
.tx-14 {
23334
  font-size: 14px;
23335
}
23336
 
23337
.tx-16 {
23338
  font-size: 16px;
23339
}
23340
 
23341
.tx-80 {
23342
  font-size: 80px;
23343
}
23344
 
23345
svg.icon-xs {
23346
  width: 12px;
23347
  height: 12px;
23348
}
23349
 
23350
svg.icon-sm {
23351
  width: 14px;
23352
  height: 14px;
23353
}
23354
 
23355
svg.icon-md {
23356
  width: 16px;
23357
  height: 16px;
23358
}
23359
 
23360
svg.icon-lg {
23361
  width: 20px;
23362
  height: 20px;
23363
}
23364
 
23365
svg.icon-xl {
23366
  width: 26px;
23367
  height: 26px;
23368
}
23369
 
23370
svg.icon-xxl {
23371
  width: 40px;
23372
  height: 40px;
23373
}
23374
 
23375
.icon-xs {
23376
  font-size: 14px;
23377
}
23378
 
23379
.icon-sm {
23380
  font-size: 16px;
23381
}
23382
 
23383
.icon-md {
23384
  font-size: 18px;
23385
}
23386
 
23387
.icon-lg {
23388
  font-size: 20px;
23389
}
23390
 
23391
.icon-xl {
23392
  font-size: 24px;
23393
}
23394
 
23395
.icon-xxl {
23396
  font-size: 30px;
23397
}
23398
 
23399
.cursor-pointer {
23400
  cursor: pointer;
23401
}
23402
 
23403
.cursor-default {
23404
  cursor: default;
23405
}
23406
 
23407
.pt-1px {
23408
  padding-top: 1px;
23409
}
23410
 
23411
.pt-2px {
23412
  padding-top: 2px;
23413
}
23414
 
23415
.pt-3px {
23416
  padding-top: 3px;
23417
}
23418
 
23419
.pb-1px {
23420
  padding-bottom: 1px;
23421
}
23422
 
23423
.pb-2px {
23424
  padding-bottom: 2px;
23425
}
23426
 
23427
.pb-3px {
23428
  padding-bottom: 3px;
23429
}
23430
 
23431
.mt-1px {
23432
  margin-top: 1px;
23433
}
23434
 
23435
.mt-2px {
23436
  margin-top: 2px;
23437
}
23438
 
23439
.mt-3px {
23440
  margin-top: 3px;
23441
}
23442
 
23443
.mb-1px {
23444
  margin-bottom: 1px;
23445
}
23446
 
23447
.mb-2px {
23448
  margin-bottom: 2px;
23449
}
23450
 
23451
.mb-3px {
23452
  margin-bottom: 3px;
23453
}
23454
 
23455
.ht-5 {
23456
  height: 5px;
23457
}
23458
 
23459
.ht-10 {
23460
  height: 10px;
23461
}
23462
 
23463
.ht-15 {
23464
  height: 15px;
23465
}
23466
 
23467
.ht-20 {
23468
  height: 20px;
23469
}
23470
 
23471
.ht-30 {
23472
  height: 30px;
23473
}
23474
 
23475
.ht-40 {
23476
  height: 40px;
23477
}
23478
 
23479
.ht-50 {
23480
  height: 50px;
23481
}
23482
 
23483
.ht-60 {
23484
  height: 60px;
23485
}
23486
 
23487
.ht-70 {
23488
  height: 70px;
23489
}
23490
 
23491
.ht-80 {
23492
  height: 80px;
23493
}
23494
 
23495
.ht-90 {
23496
  height: 90px;
23497
}
23498
 
23499
.ht-100 {
23500
  height: 100px;
23501
}
23502
 
23503
body {
23504
  -webkit-font-smoothing: antialiased;
23505
  -moz-osx-font-smoothing: grayscale;
23506
}
23507
 
23508
.text-facebook {
23509
  color: #3b5998;
23510
}
23511
 
23512
.text-twitter {
23513
  color: #1da1f2;
23514
}
23515
 
23516
.text-google {
23517
  color: #dc4e41;
23518
}
23519
 
23520
.text-youtube {
23521
  color: #f00;
23522
}
23523
 
23524
.text-vimeo {
23525
  color: #1ab7ea;
23526
}
23527
 
23528
.text-dribbble {
23529
  color: #ea4c89;
23530
}
23531
 
23532
.text-github {
23533
  color: #181717;
23534
}
23535
 
23536
.text-instagram {
23537
  color: #e4405f;
23538
}
23539
 
23540
.text-pinterest {
23541
  color: #bd081c;
23542
}
23543
 
23544
.text-flickr {
23545
  color: #0063dc;
23546
}
23547
 
23548
.text-bitbucket {
23549
  color: #0052cc;
23550
}
23551
 
23552
.text-linkedin {
23553
  color: #0077b5;
23554
}
23555
 
23556
.main-content {
23557
  color: #000;
23558
  font-size: 16px;
23559
}
16848 stevensc 23560
 
23561
.main-content>.page-title {
16825 efrain 23562
  margin-bottom: 1rem;
23563
  font-weight: 400;
23564
}
16848 stevensc 23565
 
23566
.main-content>h4,
23567
.main-content>.h4 {
16825 efrain 23568
  margin-top: 1.5rem;
23569
  margin-bottom: 0.875rem;
23570
}
16848 stevensc 23571
 
23572
.main-content>h4::before,
23573
.main-content>.h4::before {
16825 efrain 23574
  display: block;
23575
  height: 5.4rem;
23576
  margin-top: -6rem;
23577
  content: "";
23578
}
16848 stevensc 23579
 
23580
.main-content>hr {
16825 efrain 23581
  margin-top: 40px;
23582
  margin-bottom: 40px;
23583
}
16848 stevensc 23584
 
16825 efrain 23585
.main-content .example {
23586
  font-size: 0.875rem;
23587
  letter-spacing: normal;
23588
  padding: 10px;
23589
  background-color: #fff;
23590
  border: 4px solid #e9ecef;
23591
  position: relative;
23592
}
16848 stevensc 23593
 
16825 efrain 23594
@media (min-width: 576px) {
23595
  .main-content .example {
23596
    padding: 25px;
23597
  }
23598
}
16848 stevensc 23599
 
16825 efrain 23600
.main-content .highlight {
23601
  position: relative;
23602
  background-color: #fff;
23603
  padding: 15px;
23604
}
16848 stevensc 23605
 
16825 efrain 23606
.main-content .highlight pre {
23607
  padding: 15px;
23608
  font-size: 0.875rem;
23609
  font-family: "Roboto", Helvetica, sans-serif;
23610
  background: transparent;
23611
  line-height: 1.4;
23612
  margin: 0;
23613
}
16848 stevensc 23614
 
16825 efrain 23615
.main-content .highlight pre code {
23616
  font-family: "Roboto", Helvetica, sans-serif;
23617
  padding: 0;
23618
  tab-size: 8;
23619
  color: #000;
23620
  text-shadow: none;
23621
}
16848 stevensc 23622
 
23623
.main-content .highlight pre code .token.url,
23624
.main-content .highlight pre code .token.string,
23625
.main-content .highlight pre code .token.entity,
23626
.main-content .highlight pre code .token.operator {
16825 efrain 23627
  background: none;
23628
}
16848 stevensc 23629
 
16825 efrain 23630
.main-content .highlight .btn-clipboard {
23631
  position: absolute;
23632
  top: 6px;
23633
  right: 6px;
23634
  font-size: 12px;
23635
  padding: 1px 6px;
23636
  background: rgba(101, 113, 255, 0.2);
23637
}
16848 stevensc 23638
 
23639
.main-content .highlight .btn-clipboard:hover,
23640
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23641
  background: rgba(101, 113, 255, 0.3);
23642
  border-color: transparent;
23643
  transition: background 0.3s ease-in-out;
23644
}
23645
 
16848 stevensc 23646
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23647
  margin-top: 0.5rem;
23648
}
16848 stevensc 23649
 
16825 efrain 23650
.example .modal.static {
23651
  position: static;
23652
  display: block;
23653
}
16848 stevensc 23654
 
16825 efrain 23655
.example .navbar {
23656
  position: relative;
23657
  padding: 0.5rem 1rem;
23658
  left: auto;
23659
  width: 100%;
23660
  height: auto;
23661
  z-index: 9;
23662
  border-bottom: 0;
23663
  box-shadow: none;
23664
}
16848 stevensc 23665
 
16825 efrain 23666
.example .navbar .navbar-brand {
23667
  font-size: 1.25rem;
23668
}
16848 stevensc 23669
 
23670
.example .progress+.progress {
16825 efrain 23671
  margin-top: 10px;
23672
}
16848 stevensc 23673
 
16825 efrain 23674
.example .perfect-scrollbar-example {
23675
  position: relative;
23676
  max-height: 250px;
23677
  background: #fff;
23678
}
16848 stevensc 23679
 
16825 efrain 23680
.example .scrollspy-example {
23681
  position: relative;
23682
  height: 200px;
23683
  margin-top: 0.5rem;
23684
  overflow: auto;
23685
}
16848 stevensc 23686
 
16825 efrain 23687
.example .scrollspy-example-2 {
23688
  position: relative;
23689
  height: 350px;
23690
  overflow: auto;
23691
}
16848 stevensc 23692
 
16825 efrain 23693
.example nav .breadcrumb {
23694
  margin-bottom: 0.75rem;
23695
}
16848 stevensc 23696
 
16825 efrain 23697
.example nav:last-child .breadcrumb {
23698
  margin-bottom: 0;
23699
}
23700
 
23701
.page-breadcrumb {
23702
  margin-bottom: 15px;
23703
}
16848 stevensc 23704
 
16825 efrain 23705
.page-breadcrumb .breadcrumb {
23706
  padding: 0;
23707
  background: #f9fafb;
23708
}
23709
 
23710
.noble-ui-logo {
23711
  font-weight: 700;
23712
  font-size: 25px;
23713
  color: #000865;
23714
}
16848 stevensc 23715
 
16825 efrain 23716
.noble-ui-logo span {
23717
  color: #6571ff;
23718
  font-weight: 300;
23719
}
16848 stevensc 23720
 
16825 efrain 23721
.noble-ui-logo:hover {
23722
  color: #000865;
23723
}
16848 stevensc 23724
 
16825 efrain 23725
.noble-ui-logo.logo-light {
23726
  color: #000;
23727
}
23728
 
23729
.buy-now-wrapper {
23730
  position: fixed;
23731
  bottom: 30px;
23732
  right: 35px;
23733
  z-index: 99999;
23734
}
16848 stevensc 23735
 
16825 efrain 23736
.rtl .buy-now-wrapper {
23737
  right: auto;
23738
  left: 35px;
23739
}
16848 stevensc 23740
 
23741
.buy-now-wrapper .btn svg,
23742
.buy-now-wrapper .wizard>.actions a svg,
23743
.wizard>.actions .buy-now-wrapper a svg,
23744
.buy-now-wrapper div.tox .tox-button svg,
23745
div.tox .buy-now-wrapper .tox-button svg,
23746
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23747
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23748
.buy-now-wrapper .fc .fc-button-primary svg,
23749
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23750
  width: 19px !important;
23751
  height: 19px !important;
23752
}
23753
 
23754
.main-wrapper .page-wrapper {
23755
  min-height: 100vh;
23756
  background: #f9fafb;
23757
  width: calc(100% - 240px);
23758
  margin-left: 240px;
23759
  display: flex;
23760
  flex-direction: column;
23761
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23762
  transition: margin 0.1s ease, width 0.1s ease;
23763
}
16848 stevensc 23764
 
16825 efrain 23765
.main-wrapper .page-wrapper .page-content {
23766
  flex-grow: 1;
23767
  padding: 25px;
23768
  margin-top: 60px;
23769
}
16848 stevensc 23770
 
16825 efrain 23771
@media (max-width: 767px) {
23772
  .main-wrapper .page-wrapper .page-content {
23773
    padding: 25px 15px;
23774
  }
23775
}
16848 stevensc 23776
 
16825 efrain 23777
.main-wrapper .page-wrapper.full-page {
23778
  width: 100%;
23779
  margin-left: 0;
23780
}
16848 stevensc 23781
 
16825 efrain 23782
.main-wrapper .page-wrapper.full-page .page-content {
23783
  margin-top: 0;
23784
}
16848 stevensc 23785
 
16825 efrain 23786
@media (max-width: 991px) {
23787
  .main-wrapper .page-wrapper {
23788
    margin-left: 0;
23789
    width: 100%;
23790
  }
23791
}
23792
 
23793
.page-content .content-nav-wrapper {
23794
  padding: 0;
23795
  position: sticky;
23796
  top: 80px;
23797
  height: calc(100vh - 6rem);
23798
  overflow-y: auto;
23799
  border-left: 1px solid #e9ecef;
23800
  display: none;
23801
}
16848 stevensc 23802
 
16825 efrain 23803
@media (min-width: 1200px) {
23804
  .page-content .content-nav-wrapper {
23805
    display: block;
23806
  }
23807
}
16848 stevensc 23808
 
16825 efrain 23809
.page-content .content-nav-wrapper .content-nav {
23810
  padding: 0px 25px;
23811
}
16848 stevensc 23812
 
16825 efrain 23813
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23814
  padding: 0;
23815
  height: 30px;
23816
  white-space: nowrap;
23817
  color: #7987a1;
23818
  display: flex;
23819
  align-items: center;
23820
}
23821
 
23822
.navbar {
23823
  width: calc(100% - 240px);
23824
  height: 60px;
23825
  background: #fff;
23826
  border-bottom: 1px solid #e9ecef;
23827
  display: flex;
23828
  align-items: center;
23829
  padding: 0;
23830
  position: fixed;
23831
  right: 0;
23832
  left: 240px;
23833
  z-index: 978;
23834
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23835
  transition: width 0.1s ease, left 0.1s ease;
23836
}
16848 stevensc 23837
 
16825 efrain 23838
@media (max-width: 991px) {
23839
  .navbar {
23840
    width: 100%;
23841
    left: 0;
23842
  }
16848 stevensc 23843
 
16825 efrain 23844
  .navbar .navbar-content {
23845
    width: calc(100% - 70px - 1px);
23846
  }
23847
}
16848 stevensc 23848
 
16825 efrain 23849
.navbar .sidebar-toggler {
23850
  height: 100%;
23851
  border-right: 1px solid #e9ecef;
23852
  align-items: center;
23853
  padding: 0 25px;
23854
  display: none;
23855
}
16848 stevensc 23856
 
16825 efrain 23857
.navbar .sidebar-toggler svg {
23858
  width: 20px;
23859
  height: 20px;
23860
  color: #7987a1;
23861
}
16848 stevensc 23862
 
16825 efrain 23863
@media (max-width: 991px) {
23864
  .navbar .sidebar-toggler {
23865
    display: flex;
23866
  }
23867
}
16848 stevensc 23868
 
16825 efrain 23869
.navbar .search-form {
23870
  width: 100%;
23871
  margin-right: 60px;
23872
}
16848 stevensc 23873
 
16825 efrain 23874
.navbar .search-form .input-group .input-group-text {
23875
  padding: 0;
23876
  border: 0;
23877
  color: #7987a1;
23878
  background: #fff;
23879
}
16848 stevensc 23880
 
16825 efrain 23881
.navbar .search-form .input-group .input-group-text svg {
23882
  width: 20px;
23883
  height: 20px;
23884
  cursor: pointer;
23885
}
16848 stevensc 23886
 
23887
.navbar .search-form .input-group .form-control,
23888
.navbar .search-form .input-group .typeahead.tt-input,
23889
.navbar .search-form .input-group .typeahead.tt-hint,
23890
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23891
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23892
  border: 0;
23893
  margin-top: 3px;
23894
}
16848 stevensc 23895
 
16825 efrain 23896
.navbar .navbar-content {
23897
  display: flex;
23898
  width: 100%;
23899
  height: 100%;
23900
  padding-left: 25px;
23901
  padding-right: 25px;
23902
}
16848 stevensc 23903
 
16825 efrain 23904
@media (max-width: 991px) {
23905
  .navbar .navbar-content {
23906
    width: calc(100% - 70px - 1px);
23907
  }
23908
}
16848 stevensc 23909
 
16825 efrain 23910
.navbar .navbar-content .navbar-nav {
23911
  display: flex;
23912
  flex-direction: row;
23913
  margin-left: auto;
23914
}
16848 stevensc 23915
 
16825 efrain 23916
.navbar .navbar-content .navbar-nav .nav-item {
23917
  position: relative;
23918
  margin-left: 5px;
23919
  margin-right: 5px;
23920
  min-width: 30px;
23921
  display: flex;
23922
  align-items: center;
23923
}
16848 stevensc 23924
 
16825 efrain 23925
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23926
  color: #000;
23927
  padding: 0;
23928
  position: relative;
23929
  margin-left: auto;
23930
  margin-right: auto;
23931
}
16848 stevensc 23932
 
23933
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23934
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23935
  color: #6571ff;
23936
}
16848 stevensc 23937
 
16825 efrain 23938
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23939
  display: none;
23940
}
16848 stevensc 23941
 
16825 efrain 23942
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23943
  width: 20px;
23944
  height: 20px;
23945
}
16848 stevensc 23946
 
16825 efrain 23947
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23948
  position: absolute;
23949
  top: 0px;
23950
  right: 2px;
23951
}
16848 stevensc 23952
 
16825 efrain 23953
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23954
  background: #6571ff;
23955
  width: 7px;
23956
  height: 7px;
23957
  border-radius: 50%;
23958
}
16848 stevensc 23959
 
16825 efrain 23960
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23961
  background-color: #6571ff;
23962
  content: "";
23963
  display: table;
23964
  border-radius: 50%;
23965
  position: absolute;
23966
}
16848 stevensc 23967
 
16825 efrain 23968
@media (max-width: 767px) {
23969
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23970
    position: static;
23971
  }
23972
}
16848 stevensc 23973
 
23974
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23975
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23976
  width: max-content;
23977
  position: absolute;
23978
  right: -20px;
23979
  left: auto;
23980
}
16848 stevensc 23981
 
23982
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23983
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23984
  content: "";
23985
  width: 13px;
23986
  height: 13px;
23987
  background: #fff;
23988
  position: absolute;
23989
  top: -7px;
23990
  right: 28px;
23991
  transform: rotate(45deg);
23992
  border-top: 1px solid #f2f4f9;
23993
  border-left: 1px solid #f2f4f9;
23994
}
16848 stevensc 23995
 
16825 efrain 23996
@media (max-width: 767px) {
16848 stevensc 23997
 
23998
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23999
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 24000
    right: 20px;
24001
    width: calc(100% - 40px);
24002
  }
16848 stevensc 24003
 
24004
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
24005
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 24006
    display: none;
24007
  }
24008
}
24009
 
24010
.sidebar {
24011
  width: 240px;
24012
  height: 100%;
24013
  position: fixed;
24014
  left: 0;
24015
  top: 0;
24016
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24017
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24018
  z-index: 999;
24019
}
16848 stevensc 24020
 
16825 efrain 24021
.sidebar .sidebar-header {
24022
  background: #fff;
24023
  height: 60px;
24024
  border-bottom: 1px solid #e9ecef;
24025
  display: flex;
24026
  justify-content: space-between;
24027
  align-items: center;
24028
  padding: 0 25px;
24029
  border-right: 1px solid #e9ecef;
24030
  z-index: 999;
24031
  width: 240px;
24032
  -webkit-transition: width 0.1s ease;
24033
  transition: width 0.1s ease;
24034
}
16848 stevensc 24035
 
16825 efrain 24036
.sidebar-open .sidebar .sidebar-header {
24037
  border-bottom: 1px solid #e9ecef;
24038
}
16848 stevensc 24039
 
16825 efrain 24040
.sidebar .sidebar-header .sidebar-brand {
24041
  opacity: 1;
24042
  visibility: visible;
24043
  -webkit-transition: opacity 0.5s ease;
24044
  transition: opacity 0.5s ease;
24045
  font-weight: 700;
24046
  font-size: 25px;
24047
  color: #000865;
16848 stevensc 24048
  direction: ltr
24049
    /*rtl:ignore*/
24050
  ;
16825 efrain 24051
}
16848 stevensc 24052
 
16825 efrain 24053
.sidebar .sidebar-header .sidebar-brand span {
24054
  color: #6571ff;
24055
  font-weight: 300;
24056
}
16848 stevensc 24057
 
16825 efrain 24058
.sidebar .sidebar-header .sidebar-toggler {
24059
  cursor: pointer;
24060
  width: 18px;
24061
}
16848 stevensc 24062
 
16825 efrain 24063
.sidebar .sidebar-header .sidebar-toggler span {
24064
  display: block;
24065
  width: 100%;
24066
  border-radius: 3px;
24067
  height: 2px;
24068
  background: #7987a1;
24069
  -webkit-transition: all 0.3s;
24070
  transition: all 0.3s;
24071
  position: relative;
24072
}
16848 stevensc 24073
 
24074
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24075
  margin-top: 4px;
24076
}
16848 stevensc 24077
 
16825 efrain 24078
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24079
  -webkit-animation: ease 0.6s top forwards;
24080
  animation: ease 0.6s top forwards;
24081
}
16848 stevensc 24082
 
16825 efrain 24083
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24084
  -webkit-animation: ease 0.6s top-2 forwards;
24085
  animation: ease 0.6s top-2 forwards;
24086
}
16848 stevensc 24087
 
16825 efrain 24088
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24089
  -webkit-animation: ease 0.6s scaled forwards;
24090
  animation: ease 0.6s scaled forwards;
24091
}
16848 stevensc 24092
 
16825 efrain 24093
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24094
  -webkit-animation: ease 0.6s scaled-2 forwards;
24095
  animation: ease 0.6s scaled-2 forwards;
24096
}
16848 stevensc 24097
 
16825 efrain 24098
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24099
  -webkit-animation: ease 0.6s bottom forwards;
24100
  animation: ease 0.6s bottom forwards;
24101
}
16848 stevensc 24102
 
16825 efrain 24103
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24104
  -webkit-animation: ease 0.6s bottom-2 forwards;
24105
  animation: ease 0.6s bottom-2 forwards;
24106
}
16848 stevensc 24107
 
16825 efrain 24108
@-webkit-keyframes top {
24109
  0% {
24110
    top: 0;
24111
    -webkit-transform: rotate(0);
24112
    transform: rotate(0);
24113
  }
16848 stevensc 24114
 
16825 efrain 24115
  50% {
24116
    top: 6px;
24117
    -webkit-transform: rotate(0);
24118
    transform: rotate(0);
24119
  }
16848 stevensc 24120
 
16825 efrain 24121
  100% {
24122
    top: 6px;
24123
    -webkit-transform: rotate(45deg);
24124
    transform: rotate(45deg);
24125
  }
24126
}
16848 stevensc 24127
 
16825 efrain 24128
@keyframes top {
24129
  0% {
24130
    top: 0;
24131
    -webkit-transform: rotate(0);
24132
    transform: rotate(0);
24133
  }
16848 stevensc 24134
 
16825 efrain 24135
  50% {
24136
    top: 6px;
24137
    -webkit-transform: rotate(0);
24138
    transform: rotate(0);
24139
  }
16848 stevensc 24140
 
16825 efrain 24141
  100% {
24142
    top: 6px;
24143
    -webkit-transform: rotate(45deg);
24144
    transform: rotate(45deg);
24145
  }
24146
}
16848 stevensc 24147
 
16825 efrain 24148
@-webkit-keyframes top-2 {
24149
  0% {
24150
    top: 6px;
24151
    -webkit-transform: rotate(45deg);
24152
    transform: rotate(45deg);
24153
  }
16848 stevensc 24154
 
16825 efrain 24155
  50% {
24156
    top: 6px;
24157
    -webkit-transform: rotate(0deg);
24158
    transform: rotate(0deg);
24159
  }
16848 stevensc 24160
 
16825 efrain 24161
  100% {
24162
    top: 0;
24163
    -webkit-transform: rotate(0deg);
24164
    transform: rotate(0deg);
24165
  }
24166
}
16848 stevensc 24167
 
16825 efrain 24168
@keyframes top-2 {
24169
  0% {
24170
    top: 6px;
24171
    -webkit-transform: rotate(45deg);
24172
    transform: rotate(45deg);
24173
  }
16848 stevensc 24174
 
16825 efrain 24175
  50% {
24176
    top: 6px;
24177
    -webkit-transform: rotate(0deg);
24178
    transform: rotate(0deg);
24179
  }
16848 stevensc 24180
 
16825 efrain 24181
  100% {
24182
    top: 0;
24183
    -webkit-transform: rotate(0deg);
24184
    transform: rotate(0deg);
24185
  }
24186
}
16848 stevensc 24187
 
16825 efrain 24188
@-webkit-keyframes bottom {
24189
  0% {
24190
    bottom: 0;
24191
    -webkit-transform: rotate(0);
24192
    transform: rotate(0);
24193
  }
16848 stevensc 24194
 
16825 efrain 24195
  50% {
24196
    bottom: 6px;
24197
    -webkit-transform: rotate(0);
24198
    transform: rotate(0);
24199
  }
16848 stevensc 24200
 
16825 efrain 24201
  100% {
24202
    bottom: 6px;
24203
    -webkit-transform: rotate(135deg);
24204
    transform: rotate(135deg);
24205
  }
24206
}
16848 stevensc 24207
 
16825 efrain 24208
@keyframes bottom {
24209
  0% {
24210
    bottom: 0;
24211
    -webkit-transform: rotate(0);
24212
    transform: rotate(0);
24213
  }
16848 stevensc 24214
 
16825 efrain 24215
  50% {
24216
    bottom: 6px;
24217
    -webkit-transform: rotate(0);
24218
    transform: rotate(0);
24219
  }
16848 stevensc 24220
 
16825 efrain 24221
  100% {
24222
    bottom: 6px;
24223
    -webkit-transform: rotate(135deg);
24224
    transform: rotate(135deg);
24225
  }
24226
}
16848 stevensc 24227
 
16825 efrain 24228
@-webkit-keyframes bottom-2 {
24229
  0% {
24230
    bottom: 6px;
24231
    -webkit-transform: rotate(135deg);
24232
    transform: rotate(135deg);
24233
  }
16848 stevensc 24234
 
16825 efrain 24235
  50% {
24236
    bottom: 6px;
24237
    -webkit-transform: rotate(0);
24238
    transform: rotate(0);
24239
  }
16848 stevensc 24240
 
16825 efrain 24241
  100% {
24242
    bottom: 0;
24243
    -webkit-transform: rotate(0);
24244
    transform: rotate(0);
24245
  }
24246
}
16848 stevensc 24247
 
16825 efrain 24248
@keyframes bottom-2 {
24249
  0% {
24250
    bottom: 6px;
24251
    -webkit-transform: rotate(135deg);
24252
    transform: rotate(135deg);
24253
  }
16848 stevensc 24254
 
16825 efrain 24255
  50% {
24256
    bottom: 6px;
24257
    -webkit-transform: rotate(0);
24258
    transform: rotate(0);
24259
  }
16848 stevensc 24260
 
16825 efrain 24261
  100% {
24262
    bottom: 0;
24263
    -webkit-transform: rotate(0);
24264
    transform: rotate(0);
24265
  }
24266
}
16848 stevensc 24267
 
16825 efrain 24268
@-webkit-keyframes scaled {
24269
  50% {
24270
    -webkit-transform: scale(0);
24271
    transform: scale(0);
24272
  }
16848 stevensc 24273
 
16825 efrain 24274
  100% {
24275
    -webkit-transform: scale(0);
24276
    transform: scale(0);
24277
  }
24278
}
16848 stevensc 24279
 
16825 efrain 24280
@keyframes scaled {
24281
  50% {
24282
    -webkit-transform: scale(0);
24283
    transform: scale(0);
24284
  }
16848 stevensc 24285
 
16825 efrain 24286
  100% {
24287
    -webkit-transform: scale(0);
24288
    transform: scale(0);
24289
  }
24290
}
16848 stevensc 24291
 
16825 efrain 24292
@-webkit-keyframes scaled-2 {
24293
  0% {
24294
    -webkit-transform: scale(0);
24295
    transform: scale(0);
24296
  }
16848 stevensc 24297
 
16825 efrain 24298
  50% {
24299
    -webkit-transform: scale(0);
24300
    transform: scale(0);
24301
  }
16848 stevensc 24302
 
16825 efrain 24303
  100% {
24304
    -webkit-transform: scale(1);
24305
    transform: scale(1);
24306
  }
24307
}
16848 stevensc 24308
 
16825 efrain 24309
@keyframes scaled-2 {
24310
  0% {
24311
    -webkit-transform: scale(0);
24312
    transform: scale(0);
24313
  }
16848 stevensc 24314
 
16825 efrain 24315
  50% {
24316
    -webkit-transform: scale(0);
24317
    transform: scale(0);
24318
  }
16848 stevensc 24319
 
16825 efrain 24320
  100% {
24321
    -webkit-transform: scale(1);
24322
    transform: scale(1);
24323
  }
24324
}
16848 stevensc 24325
 
16825 efrain 24326
.sidebar .sidebar-body {
24327
  max-height: calc(100% - 60px);
24328
  position: relative;
24329
  border-right: 1px solid #e9ecef;
24330
  height: 100%;
24331
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24332
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24333
  background: #fff;
24334
}
16848 stevensc 24335
 
16825 efrain 24336
.sidebar .sidebar-body .nav {
24337
  display: flex;
24338
  flex-direction: column;
24339
  padding: 25px 25px 50px 25px;
24340
}
16848 stevensc 24341
 
16825 efrain 24342
.sidebar .sidebar-body .nav .nav-item {
24343
  position: relative;
24344
}
16848 stevensc 24345
 
16825 efrain 24346
.sidebar .sidebar-body .nav .nav-item .nav-link {
24347
  display: flex;
24348
  align-items: center;
24349
  padding: 0;
24350
  height: 32px;
24351
  white-space: nowrap;
24352
  color: #000;
24353
}
16848 stevensc 24354
 
16825 efrain 24355
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24356
  width: 16px;
24357
  height: 16px;
24358
  fill: rgba(233, 236, 239, 0.21);
24359
  position: absolute;
24360
  color: inherit;
24361
}
16848 stevensc 24362
 
16825 efrain 24363
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24364
  margin-left: 30px;
24365
  font-size: 14px;
24366
  -webkit-transition: all 0.2s ease-in-out;
24367
  transition: all 0.2s ease-in-out;
24368
}
16848 stevensc 24369
 
16825 efrain 24370
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24371
  width: 14px;
24372
  height: 14px;
24373
  margin-left: auto;
24374
  -webkit-transition: all 0.3s ease;
24375
  -webkit-transition: all 0.3s ease-in-out;
24376
  transition: all 0.3s ease-in-out;
24377
  color: inherit;
24378
}
16848 stevensc 24379
 
16825 efrain 24380
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24381
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24382
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24383
  -webkit-transition: all 0.3s ease;
24384
  transition: all 0.3s ease;
24385
}
16848 stevensc 24386
 
16825 efrain 24387
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24388
  color: #6571ff;
24389
}
16848 stevensc 24390
 
16825 efrain 24391
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24392
  -webkit-transform: rotate(90deg);
24393
  transform: rotate(180deg);
24394
}
16848 stevensc 24395
 
16825 efrain 24396
.sidebar .sidebar-body .nav .nav-item.nav-category {
24397
  color: #7987a1;
24398
  font-size: 11px;
24399
  text-transform: uppercase;
24400
  font-weight: 500;
24401
  letter-spacing: 0.5px;
24402
  margin-bottom: 5px;
24403
  height: 15px;
24404
}
16848 stevensc 24405
 
16825 efrain 24406
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24407
  margin-top: 20px;
24408
}
16848 stevensc 24409
 
16825 efrain 24410
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24411
  color: #6571ff;
24412
}
16848 stevensc 24413
 
16825 efrain 24414
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24415
  margin-left: 31px;
24416
}
16848 stevensc 24417
 
16825 efrain 24418
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24419
  color: #6571ff;
24420
  fill: rgba(239, 243, 255, 0.5);
24421
}
16848 stevensc 24422
 
16825 efrain 24423
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24424
  color: #6571ff;
24425
}
16848 stevensc 24426
 
16825 efrain 24427
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24428
  content: "";
24429
  width: 3px;
24430
  height: 26px;
24431
  background: #6571ff;
24432
  position: absolute;
24433
  left: -25px;
24434
}
16848 stevensc 24435
 
16825 efrain 24436
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24437
  fill: rgba(239, 243, 255, 0.5);
24438
  color: #6571ff;
24439
}
16848 stevensc 24440
 
16825 efrain 24441
.sidebar .sidebar-body .nav.sub-menu {
24442
  padding: 0 0 15px 33px;
24443
}
16848 stevensc 24444
 
16825 efrain 24445
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24446
  position: relative;
24447
}
16848 stevensc 24448
 
16825 efrain 24449
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24450
  height: 25px;
24451
  color: #000;
24452
  font-size: 13px;
24453
  -webkit-transition: all 0.3s ease-in-out;
24454
  transition: all 0.3s ease-in-out;
24455
}
16848 stevensc 24456
 
16825 efrain 24457
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24458
  content: "";
24459
  width: 6px;
24460
  height: 6px;
24461
  border-radius: 50%;
24462
  background: transparent;
24463
  border: 1px solid #aeb9c4;
24464
  position: absolute;
24465
  left: -29px;
24466
  top: 10px;
24467
  -webkit-transition: all 0.7s ease-in-out;
24468
  -webkit-transition: all 0.4s ease-in-out;
24469
  transition: all 0.4s ease-in-out;
24470
}
16848 stevensc 24471
 
16825 efrain 24472
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24473
  color: #6571ff;
24474
}
16848 stevensc 24475
 
16825 efrain 24476
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24477
  border: 1px solid #6571ff;
24478
  background: #6571ff;
24479
}
16848 stevensc 24480
 
16825 efrain 24481
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24482
  color: #6571ff;
24483
  margin-left: 3px;
24484
}
16848 stevensc 24485
 
16825 efrain 24486
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24487
  border: 1px solid #6571ff;
24488
  background: #6571ff;
24489
}
16848 stevensc 24490
 
16825 efrain 24491
@media (max-width: 991px) {
24492
  .sidebar {
24493
    z-index: 999;
24494
    margin-left: -240px;
24495
    visibility: hidden;
24496
  }
16848 stevensc 24497
 
16825 efrain 24498
  .sidebar-open .sidebar {
24499
    margin-left: 0;
24500
    visibility: visible;
24501
  }
16848 stevensc 24502
 
16825 efrain 24503
  .sidebar .sidebar-body .nav .nav-item {
24504
    width: auto;
24505
  }
16848 stevensc 24506
 
16825 efrain 24507
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24508
    -webkit-transition: none;
24509
    transition: none;
24510
    margin: 0;
24511
  }
24512
}
24513
 
24514
.sidebar-dark .sidebar .sidebar-header {
24515
  background: #0c1427;
24516
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24517
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24518
}
16848 stevensc 24519
 
16825 efrain 24520
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24521
  color: #e9ecef;
24522
}
16848 stevensc 24523
 
16825 efrain 24524
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24525
  background: #7987a1;
24526
}
16848 stevensc 24527
 
16825 efrain 24528
.sidebar-dark .sidebar .sidebar-body {
24529
  background: #0c1427;
24530
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24531
}
16848 stevensc 24532
 
16825 efrain 24533
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24534
  color: #fff;
24535
}
16848 stevensc 24536
 
16825 efrain 24537
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24538
  color: #7987a1;
24539
}
16848 stevensc 24540
 
16825 efrain 24541
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24542
  fill: none;
24543
}
16848 stevensc 24544
 
16825 efrain 24545
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24546
  color: #6571ff;
24547
}
16848 stevensc 24548
 
24549
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24550
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24551
  fill: rgba(101, 113, 255, 0.2);
24552
}
16848 stevensc 24553
 
24554
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24555
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24556
  color: #6571ff;
24557
}
24558
 
24559
.settings-sidebar {
24560
  position: fixed;
24561
  right: -232px;
24562
  top: 130px;
24563
  width: 232px;
24564
  background: #fff;
24565
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24566
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24567
  z-index: 999;
24568
  border-radius: 0 0 0 4px;
24569
  -webkit-transition: all 0.2s ease-in-out;
24570
  transition: all 0.2s ease-in-out;
24571
}
16848 stevensc 24572
 
16825 efrain 24573
.settings-open .settings-sidebar {
24574
  right: 0;
24575
}
16848 stevensc 24576
 
16825 efrain 24577
.settings-sidebar .sidebar-body {
24578
  position: relative;
24579
  padding: 18px;
24580
}
16848 stevensc 24581
 
16825 efrain 24582
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24583
  position: absolute;
24584
  left: -44px;
24585
  top: 0;
24586
  padding: 12px;
24587
  border-radius: 4px 0 0 4px;
24588
  background: #fff;
24589
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24590
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24591
}
16848 stevensc 24592
 
16825 efrain 24593
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24594
  width: 20px;
24595
  height: 20px;
24596
  color: #7987a1;
24597
}
16848 stevensc 24598
 
16825 efrain 24599
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24600
  position: relative;
24601
  display: block;
24602
  margin-bottom: 19px;
24603
  border-radius: 6px;
24604
  border: 3px solid #e9ecef;
24605
}
16848 stevensc 24606
 
16825 efrain 24607
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24608
  content: "";
24609
  position: absolute;
24610
  top: 0;
24611
  left: 0;
24612
  width: 100%;
24613
  height: 100%;
24614
  background: rgba(101, 113, 255, 0);
24615
}
16848 stevensc 24616
 
16825 efrain 24617
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24618
  margin-bottom: 0;
24619
}
16848 stevensc 24620
 
16825 efrain 24621
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24622
  border: 3px solid #b2b8ff;
24623
}
16848 stevensc 24624
 
16825 efrain 24625
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24626
  width: 100%;
24627
  border-radius: 3px;
24628
}
16848 stevensc 24629
 
16825 efrain 24630
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24631
  background: rgba(101, 113, 255, 0.2);
24632
  -webkit-transition: all 0.3s ease-in-out;
24633
  transition: all 0.3s ease-in-out;
24634
}
24635
 
24636
.sidebar-folded .sidebar .sidebar-header {
24637
  width: 70px;
24638
}
16848 stevensc 24639
 
16825 efrain 24640
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24641
  display: none;
24642
}
16848 stevensc 24643
 
16825 efrain 24644
.sidebar-folded .page-wrapper {
24645
  width: calc(100% - 70px);
24646
  margin-left: 70px;
24647
}
16848 stevensc 24648
 
16825 efrain 24649
.sidebar-folded .page-wrapper .navbar {
24650
  width: calc(100% - 70px);
24651
  left: 70px;
24652
  right: 0;
24653
}
16848 stevensc 24654
 
16825 efrain 24655
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24656
  width: 70px;
24657
}
16848 stevensc 24658
 
16825 efrain 24659
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24660
  width: 70px;
24661
}
16848 stevensc 24662
 
16825 efrain 24663
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24664
  opacity: 0;
24665
  visibility: hidden;
24666
  width: 0;
24667
}
16848 stevensc 24668
 
16825 efrain 24669
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24670
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24671
  visibility: hidden;
24672
  opacity: 0;
24673
}
16848 stevensc 24674
 
16825 efrain 24675
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24676
  visibility: hidden;
24677
}
16848 stevensc 24678
 
16825 efrain 24679
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24680
  content: "";
24681
  width: 5px;
24682
  height: 5px;
24683
  border-radius: 50%;
24684
  background: #7987a1;
24685
  position: absolute;
24686
  top: 5px;
24687
  left: 6px;
24688
  visibility: visible;
24689
}
16848 stevensc 24690
 
16825 efrain 24691
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24692
  display: none;
24693
}
24694
 
24695
@media (max-width: 991px) {
16848 stevensc 24696
 
24697
  .sidebar-open .main-wrapper::before,
24698
  .settings-open .main-wrapper::before {
16825 efrain 24699
    content: "";
24700
    width: 100vw;
24701
    background: rgba(0, 0, 0, 0.3);
24702
    position: fixed;
24703
    top: 0;
24704
    bottom: 0;
24705
    right: 0;
24706
    z-index: 99;
24707
    -webkit-transition: all 3s ease;
24708
    transition: all 3s ease;
24709
    z-index: 980;
24710
  }
24711
}
24712
 
24713
a.badge:hover {
24714
  color: #fff;
24715
}
24716
 
24717
.alert-primary {
24718
  background-color: rgba(101, 113, 255, 0.1);
24719
  color: #4c59ff;
24720
  border-color: rgba(101, 113, 255, 0.2);
24721
}
16848 stevensc 24722
 
16825 efrain 24723
.alert-primary .alert-link {
24724
  color: #4c59ff;
24725
}
16848 stevensc 24726
 
16825 efrain 24727
.alert-primary svg {
24728
  width: 19px;
24729
  height: 19px;
24730
  margin-right: 0.5rem;
24731
}
16848 stevensc 24732
 
16825 efrain 24733
.alert-primary i {
24734
  font-size: 19px;
24735
  margin-right: 0.5rem;
24736
}
24737
 
24738
.alert-fill-primary {
24739
  --bs-alert-color: #fff;
24740
  --bs-alert-bg: #6571ff;
24741
  --bs-alert-border-color: #6571ff;
24742
}
16848 stevensc 24743
 
16825 efrain 24744
.alert-fill-primary .alert-link {
24745
  color: #cccccc;
24746
}
16848 stevensc 24747
 
16825 efrain 24748
.alert-fill-primary.alert-fill-light {
24749
  color: #7987a1;
24750
}
24751
 
24752
.alert-secondary {
24753
  background-color: rgba(121, 135, 161, 0.1);
24754
  color: #6a7a96;
24755
  border-color: rgba(121, 135, 161, 0.2);
24756
}
16848 stevensc 24757
 
16825 efrain 24758
.alert-secondary .alert-link {
24759
  color: #6a7a96;
24760
}
16848 stevensc 24761
 
16825 efrain 24762
.alert-secondary svg {
24763
  width: 19px;
24764
  height: 19px;
24765
  margin-right: 0.5rem;
24766
}
16848 stevensc 24767
 
16825 efrain 24768
.alert-secondary i {
24769
  font-size: 19px;
24770
  margin-right: 0.5rem;
24771
}
24772
 
24773
.alert-fill-secondary {
24774
  --bs-alert-color: #fff;
24775
  --bs-alert-bg: #7987a1;
24776
  --bs-alert-border-color: #7987a1;
24777
}
16848 stevensc 24778
 
16825 efrain 24779
.alert-fill-secondary .alert-link {
24780
  color: #cccccc;
24781
}
16848 stevensc 24782
 
16825 efrain 24783
.alert-fill-secondary.alert-fill-light {
24784
  color: #7987a1;
24785
}
24786
 
24787
.alert-success {
24788
  background-color: rgba(5, 163, 74, 0.1);
24789
  color: #048a3f;
24790
  border-color: rgba(5, 163, 74, 0.2);
24791
}
16848 stevensc 24792
 
16825 efrain 24793
.alert-success .alert-link {
24794
  color: #048a3f;
24795
}
16848 stevensc 24796
 
16825 efrain 24797
.alert-success svg {
24798
  width: 19px;
24799
  height: 19px;
24800
  margin-right: 0.5rem;
24801
}
16848 stevensc 24802
 
16825 efrain 24803
.alert-success i {
24804
  font-size: 19px;
24805
  margin-right: 0.5rem;
24806
}
24807
 
24808
.alert-fill-success {
24809
  --bs-alert-color: #fff;
24810
  --bs-alert-bg: #05a34a;
24811
  --bs-alert-border-color: #05a34a;
24812
}
16848 stevensc 24813
 
16825 efrain 24814
.alert-fill-success .alert-link {
24815
  color: #cccccc;
24816
}
16848 stevensc 24817
 
16825 efrain 24818
.alert-fill-success.alert-fill-light {
24819
  color: #7987a1;
24820
}
24821
 
24822
.alert-info {
24823
  background-color: rgba(102, 209, 209, 0.1);
24824
  color: #52cbcb;
24825
  border-color: rgba(102, 209, 209, 0.2);
24826
}
16848 stevensc 24827
 
16825 efrain 24828
.alert-info .alert-link {
24829
  color: #52cbcb;
24830
}
16848 stevensc 24831
 
16825 efrain 24832
.alert-info svg {
24833
  width: 19px;
24834
  height: 19px;
24835
  margin-right: 0.5rem;
24836
}
16848 stevensc 24837
 
16825 efrain 24838
.alert-info i {
24839
  font-size: 19px;
24840
  margin-right: 0.5rem;
24841
}
24842
 
24843
.alert-fill-info {
24844
  --bs-alert-color: #fff;
24845
  --bs-alert-bg: #66d1d1;
24846
  --bs-alert-border-color: #66d1d1;
24847
}
16848 stevensc 24848
 
16825 efrain 24849
.alert-fill-info .alert-link {
24850
  color: #cccccc;
24851
}
16848 stevensc 24852
 
16825 efrain 24853
.alert-fill-info.alert-fill-light {
24854
  color: #7987a1;
24855
}
24856
 
24857
.alert-warning {
24858
  background-color: rgba(251, 188, 6, 0.1);
24859
  color: #e4aa04;
24860
  border-color: rgba(251, 188, 6, 0.2);
24861
}
16848 stevensc 24862
 
16825 efrain 24863
.alert-warning .alert-link {
24864
  color: #e4aa04;
24865
}
16848 stevensc 24866
 
16825 efrain 24867
.alert-warning svg {
24868
  width: 19px;
24869
  height: 19px;
24870
  margin-right: 0.5rem;
24871
}
16848 stevensc 24872
 
16825 efrain 24873
.alert-warning i {
24874
  font-size: 19px;
24875
  margin-right: 0.5rem;
24876
}
24877
 
24878
.alert-fill-warning {
24879
  --bs-alert-color: #fff;
24880
  --bs-alert-bg: #fbbc06;
24881
  --bs-alert-border-color: #fbbc06;
24882
}
16848 stevensc 24883
 
16825 efrain 24884
.alert-fill-warning .alert-link {
24885
  color: #cccccc;
24886
}
16848 stevensc 24887
 
16825 efrain 24888
.alert-fill-warning.alert-fill-light {
24889
  color: #7987a1;
24890
}
24891
 
24892
.alert-danger {
24893
  background-color: rgba(255, 51, 102, 0.1);
24894
  color: #ff1a53;
24895
  border-color: rgba(255, 51, 102, 0.2);
24896
}
16848 stevensc 24897
 
16825 efrain 24898
.alert-danger .alert-link {
24899
  color: #ff1a53;
24900
}
16848 stevensc 24901
 
16825 efrain 24902
.alert-danger svg {
24903
  width: 19px;
24904
  height: 19px;
24905
  margin-right: 0.5rem;
24906
}
16848 stevensc 24907
 
16825 efrain 24908
.alert-danger i {
24909
  font-size: 19px;
24910
  margin-right: 0.5rem;
24911
}
24912
 
24913
.alert-fill-danger {
24914
  --bs-alert-color: #fff;
24915
  --bs-alert-bg: #ff3366;
24916
  --bs-alert-border-color: #ff3366;
24917
}
16848 stevensc 24918
 
16825 efrain 24919
.alert-fill-danger .alert-link {
24920
  color: #cccccc;
24921
}
16848 stevensc 24922
 
16825 efrain 24923
.alert-fill-danger.alert-fill-light {
24924
  color: #7987a1;
24925
}
24926
 
24927
.alert-light {
24928
  background-color: rgba(233, 236, 239, 0.1);
24929
  color: #dadfe4;
24930
  border-color: rgba(233, 236, 239, 0.2);
24931
}
16848 stevensc 24932
 
16825 efrain 24933
.alert-light .alert-link {
24934
  color: #dadfe4;
24935
}
16848 stevensc 24936
 
16825 efrain 24937
.alert-light svg {
24938
  width: 19px;
24939
  height: 19px;
24940
  margin-right: 0.5rem;
24941
}
16848 stevensc 24942
 
16825 efrain 24943
.alert-light i {
24944
  font-size: 19px;
24945
  margin-right: 0.5rem;
24946
}
24947
 
24948
.alert-fill-light {
24949
  --bs-alert-color: #fff;
24950
  --bs-alert-bg: #e9ecef;
24951
  --bs-alert-border-color: #e9ecef;
24952
}
16848 stevensc 24953
 
16825 efrain 24954
.alert-fill-light .alert-link {
24955
  color: #cccccc;
24956
}
16848 stevensc 24957
 
16825 efrain 24958
.alert-fill-light.alert-fill-light {
24959
  color: #7987a1;
24960
}
24961
 
24962
.alert-dark {
24963
  background-color: rgba(6, 12, 23, 0.1);
24964
  color: #010103;
24965
  border-color: rgba(6, 12, 23, 0.2);
24966
}
16848 stevensc 24967
 
16825 efrain 24968
.alert-dark .alert-link {
24969
  color: #010103;
24970
}
16848 stevensc 24971
 
16825 efrain 24972
.alert-dark svg {
24973
  width: 19px;
24974
  height: 19px;
24975
  margin-right: 0.5rem;
24976
}
16848 stevensc 24977
 
16825 efrain 24978
.alert-dark i {
24979
  font-size: 19px;
24980
  margin-right: 0.5rem;
24981
}
24982
 
24983
.alert-fill-dark {
24984
  --bs-alert-color: #fff;
24985
  --bs-alert-bg: #060c17;
24986
  --bs-alert-border-color: #060c17;
24987
}
16848 stevensc 24988
 
16825 efrain 24989
.alert-fill-dark .alert-link {
24990
  color: #cccccc;
24991
}
16848 stevensc 24992
 
16825 efrain 24993
.alert-fill-dark.alert-fill-light {
24994
  color: #7987a1;
24995
}
24996
 
16848 stevensc 24997
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24998
  content: "-" !important;
24999
}
16848 stevensc 25000
 
25001
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25002
  content: "•" !important;
25003
}
16848 stevensc 25004
 
25005
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 25006
  content: ">" !important;
25007
}
25008
 
25009
/* Buttons */
16848 stevensc 25010
.btn i,
25011
.wizard>.actions a i,
25012
.wizard>.actions a:active i,
25013
.wizard>.actions a:hover i,
25014
div.tox .tox-button i,
25015
.swal2-popup .swal2-actions button i,
25016
.fc .fc-button-primary i {
16825 efrain 25017
  font-size: 1rem;
25018
}
16848 stevensc 25019
 
25020
.btn.btn-rounded,
25021
.wizard>.actions a.btn-rounded,
25022
div.tox .btn-rounded.tox-button,
25023
.swal2-popup .swal2-actions button.btn-rounded,
25024
.fc .btn-rounded.fc-button-primary {
16825 efrain 25025
  border-radius: 50px;
25026
}
16848 stevensc 25027
 
25028
.btn.btn-xs,
25029
.wizard>.actions a.btn-xs,
25030
div.tox .btn-xs.tox-button,
25031
.swal2-popup .swal2-actions button.btn-xs,
25032
.fc .btn-xs.fc-button-primary {
16825 efrain 25033
  padding: 0.313rem 0.8rem;
25034
  font-size: 0.75rem;
25035
}
16848 stevensc 25036
 
25037
.btn.btn-icon,
25038
.wizard>.actions a.btn-icon,
25039
div.tox .btn-icon.tox-button,
25040
.swal2-popup .swal2-actions button.btn-icon,
25041
.fc .btn-icon.fc-button-primary {
16825 efrain 25042
  width: 38px;
25043
  height: 38px;
25044
  padding: 0;
25045
  display: inline-flex;
25046
  align-items: center;
25047
  justify-content: center;
25048
}
16848 stevensc 25049
 
25050
.btn.btn-icon svg,
25051
.wizard>.actions a.btn-icon svg,
25052
div.tox .btn-icon.tox-button svg,
25053
.swal2-popup .swal2-actions button.btn-icon svg,
25054
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25055
  height: 18px;
25056
}
16848 stevensc 25057
 
25058
.btn.btn-icon.btn-xs,
25059
.wizard>.actions a.btn-icon.btn-xs,
25060
div.tox .btn-icon.btn-xs.tox-button,
25061
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25062
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25063
  width: 30px;
25064
  height: 30px;
25065
}
16848 stevensc 25066
 
25067
.btn.btn-icon.btn-xs svg,
25068
.wizard>.actions a.btn-icon.btn-xs svg,
25069
div.tox .btn-icon.btn-xs.tox-button svg,
25070
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25071
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25072
  height: 14px;
25073
}
16848 stevensc 25074
 
25075
.btn.btn-icon.btn-sm,
25076
.wizard>.actions a.btn-icon.btn-sm,
25077
div.tox .btn-icon.btn-sm.tox-button,
25078
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25079
.fc .btn-icon.fc-button-primary,
25080
.btn-group-sm>.btn.btn-icon,
25081
.wizard>.actions .btn-group-sm>a.btn-icon,
25082
div.tox .btn-group-sm>.btn-icon.tox-button,
25083
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25084
  width: 36px;
25085
  height: 36px;
25086
}
16848 stevensc 25087
 
25088
.btn.btn-icon.btn-sm svg,
25089
.wizard>.actions a.btn-icon.btn-sm svg,
25090
div.tox .btn-icon.btn-sm.tox-button svg,
25091
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25092
.fc .btn-icon.fc-button-primary svg,
25093
.btn-group-sm>.btn.btn-icon svg,
25094
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25095
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25096
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25097
  height: 15px;
25098
}
16848 stevensc 25099
 
25100
.btn.btn-icon.btn-lg,
25101
.wizard>.actions a.btn-icon.btn-lg,
25102
div.tox .btn-icon.btn-lg.tox-button,
25103
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25104
.fc .btn-icon.btn-lg.fc-button-primary,
25105
.btn-group-lg>.btn.btn-icon,
25106
.wizard>.actions .btn-group-lg>a.btn-icon,
25107
div.tox .btn-group-lg>.btn-icon.tox-button,
25108
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25109
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25110
  width: 42px;
25111
  height: 42px;
25112
}
16848 stevensc 25113
 
25114
.btn.btn-icon.btn-lg svg,
25115
.wizard>.actions a.btn-icon.btn-lg svg,
25116
div.tox .btn-icon.btn-lg.tox-button svg,
25117
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25118
.fc .btn-icon.btn-lg.fc-button-primary svg,
25119
.btn-group-lg>.btn.btn-icon svg,
25120
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25121
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25122
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25123
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25124
  height: 18px;
25125
}
16848 stevensc 25126
 
25127
.btn.btn-icon-text .btn-icon-prepend,
25128
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25129
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25130
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25131
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25132
  margin-right: 0.5rem;
25133
}
16848 stevensc 25134
 
25135
.btn.btn-icon-text .btn-icon-append,
25136
.wizard>.actions a.btn-icon-text .btn-icon-append,
25137
div.tox .btn-icon-text.tox-button .btn-icon-append,
25138
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25139
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25140
  margin-left: 0.5rem;
25141
}
16848 stevensc 25142
 
25143
.btn.btn-icon-text .btn-icon-prepend,
25144
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25145
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25146
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25147
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25148
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25149
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25150
div.tox .btn-icon-text.tox-button .btn-icon-append,
25151
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25152
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25153
  width: 18px;
25154
  height: 18px;
25155
}
16848 stevensc 25156
 
25157
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25158
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25159
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25160
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25161
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25162
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25163
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25164
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25165
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25166
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25167
  width: 14px;
25168
  height: 14px;
25169
}
16848 stevensc 25170
 
25171
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25172
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25173
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25174
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25175
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25176
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25177
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25178
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25179
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25180
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25181
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25182
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25183
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25184
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25185
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25186
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25187
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25188
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25189
  width: 15px;
25190
  height: 15px;
25191
}
16848 stevensc 25192
 
25193
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25194
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25195
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25196
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25197
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25198
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25199
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25200
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25201
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25202
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25203
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25204
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25205
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25206
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25207
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25208
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25209
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25210
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25211
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25212
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25213
  width: 18px;
25214
  height: 18px;
25215
}
25216
 
25217
.btn-facebook {
25218
  background: #3b5998;
25219
  color: #fff;
25220
}
16848 stevensc 25221
 
25222
.btn-facebook:hover,
25223
.btn-facebook:focus {
16825 efrain 25224
  background: #2d4373;
25225
  color: #fff;
25226
}
16848 stevensc 25227
 
16825 efrain 25228
.btn-facebook.btn-social-icon-text {
25229
  padding: 0 1.5rem 0 0;
25230
  background: #4c70ba;
25231
}
16848 stevensc 25232
 
16825 efrain 25233
.btn-facebook.btn-social-icon-text i {
25234
  background: #3b5998;
25235
  padding: 0.75rem;
25236
  display: inline-block;
25237
  margin-right: 1.5rem;
25238
}
25239
 
25240
.btn-outline-facebook {
25241
  border: 1px solid #3b5998;
25242
  color: #3b5998;
25243
}
16848 stevensc 25244
 
16825 efrain 25245
.btn-outline-facebook:hover {
25246
  background: #3b5998;
25247
  color: #fff;
25248
}
25249
 
25250
.btn-twitter {
25251
  background: #1da1f2;
25252
  color: #fff;
25253
}
16848 stevensc 25254
 
25255
.btn-twitter:hover,
25256
.btn-twitter:focus {
16825 efrain 25257
  background: #0c85d0;
25258
  color: #fff;
25259
}
16848 stevensc 25260
 
16825 efrain 25261
.btn-twitter.btn-social-icon-text {
25262
  padding: 0 1.5rem 0 0;
25263
  background: #4db5f5;
25264
}
16848 stevensc 25265
 
16825 efrain 25266
.btn-twitter.btn-social-icon-text i {
25267
  background: #1da1f2;
25268
  padding: 0.75rem;
25269
  display: inline-block;
25270
  margin-right: 1.5rem;
25271
}
25272
 
25273
.btn-outline-twitter {
25274
  border: 1px solid #1da1f2;
25275
  color: #1da1f2;
25276
}
16848 stevensc 25277
 
16825 efrain 25278
.btn-outline-twitter:hover {
25279
  background: #1da1f2;
25280
  color: #fff;
25281
}
25282
 
25283
.btn-google {
25284
  background: #dc4e41;
25285
  color: #fff;
25286
}
16848 stevensc 25287
 
25288
.btn-google:hover,
25289
.btn-google:focus {
16825 efrain 25290
  background: #c63224;
25291
  color: #fff;
25292
}
16848 stevensc 25293
 
16825 efrain 25294
.btn-google.btn-social-icon-text {
25295
  padding: 0 1.5rem 0 0;
25296
  background: #e4766c;
25297
}
16848 stevensc 25298
 
16825 efrain 25299
.btn-google.btn-social-icon-text i {
25300
  background: #dc4e41;
25301
  padding: 0.75rem;
25302
  display: inline-block;
25303
  margin-right: 1.5rem;
25304
}
25305
 
25306
.btn-outline-google {
25307
  border: 1px solid #dc4e41;
25308
  color: #dc4e41;
25309
}
16848 stevensc 25310
 
16825 efrain 25311
.btn-outline-google:hover {
25312
  background: #dc4e41;
25313
  color: #fff;
25314
}
25315
 
25316
.btn-youtube {
25317
  background: #f00;
25318
  color: #fff;
25319
}
16848 stevensc 25320
 
25321
.btn-youtube:hover,
25322
.btn-youtube:focus {
16825 efrain 25323
  background: #cc0000;
25324
  color: #fff;
25325
}
16848 stevensc 25326
 
16825 efrain 25327
.btn-youtube.btn-social-icon-text {
25328
  padding: 0 1.5rem 0 0;
25329
  background: #ff3333;
25330
}
16848 stevensc 25331
 
16825 efrain 25332
.btn-youtube.btn-social-icon-text i {
25333
  background: #f00;
25334
  padding: 0.75rem;
25335
  display: inline-block;
25336
  margin-right: 1.5rem;
25337
}
25338
 
25339
.btn-outline-youtube {
25340
  border: 1px solid #f00;
25341
  color: #f00;
25342
}
16848 stevensc 25343
 
16825 efrain 25344
.btn-outline-youtube:hover {
25345
  background: #f00;
25346
  color: #fff;
25347
}
25348
 
25349
.btn-vimeo {
25350
  background: #1ab7ea;
25351
  color: #fff;
25352
}
16848 stevensc 25353
 
25354
.btn-vimeo:hover,
25355
.btn-vimeo:focus {
16825 efrain 25356
  background: #1295bf;
25357
  color: #fff;
25358
}
16848 stevensc 25359
 
16825 efrain 25360
.btn-vimeo.btn-social-icon-text {
25361
  padding: 0 1.5rem 0 0;
25362
  background: #49c6ee;
25363
}
16848 stevensc 25364
 
16825 efrain 25365
.btn-vimeo.btn-social-icon-text i {
25366
  background: #1ab7ea;
25367
  padding: 0.75rem;
25368
  display: inline-block;
25369
  margin-right: 1.5rem;
25370
}
25371
 
25372
.btn-outline-vimeo {
25373
  border: 1px solid #1ab7ea;
25374
  color: #1ab7ea;
25375
}
16848 stevensc 25376
 
16825 efrain 25377
.btn-outline-vimeo:hover {
25378
  background: #1ab7ea;
25379
  color: #fff;
25380
}
25381
 
25382
.btn-dribbble {
25383
  background: #ea4c89;
25384
  color: #fff;
25385
}
16848 stevensc 25386
 
25387
.btn-dribbble:hover,
25388
.btn-dribbble:focus {
16825 efrain 25389
  background: #e51e6b;
25390
  color: #fff;
25391
}
16848 stevensc 25392
 
16825 efrain 25393
.btn-dribbble.btn-social-icon-text {
25394
  padding: 0 1.5rem 0 0;
25395
  background: #ef7aa7;
25396
}
16848 stevensc 25397
 
16825 efrain 25398
.btn-dribbble.btn-social-icon-text i {
25399
  background: #ea4c89;
25400
  padding: 0.75rem;
25401
  display: inline-block;
25402
  margin-right: 1.5rem;
25403
}
25404
 
25405
.btn-outline-dribbble {
25406
  border: 1px solid #ea4c89;
25407
  color: #ea4c89;
25408
}
16848 stevensc 25409
 
16825 efrain 25410
.btn-outline-dribbble:hover {
25411
  background: #ea4c89;
25412
  color: #fff;
25413
}
25414
 
25415
.btn-github {
25416
  background: #181717;
25417
  color: #fff;
25418
}
16848 stevensc 25419
 
25420
.btn-github:hover,
25421
.btn-github:focus {
16825 efrain 25422
  background: black;
25423
  color: #fff;
25424
}
16848 stevensc 25425
 
16825 efrain 25426
.btn-github.btn-social-icon-text {
25427
  padding: 0 1.5rem 0 0;
25428
  background: #323030;
25429
}
16848 stevensc 25430
 
16825 efrain 25431
.btn-github.btn-social-icon-text i {
25432
  background: #181717;
25433
  padding: 0.75rem;
25434
  display: inline-block;
25435
  margin-right: 1.5rem;
25436
}
25437
 
25438
.btn-outline-github {
25439
  border: 1px solid #181717;
25440
  color: #181717;
25441
}
16848 stevensc 25442
 
16825 efrain 25443
.btn-outline-github:hover {
25444
  background: #181717;
25445
  color: #fff;
25446
}
25447
 
25448
.btn-instagram {
25449
  background: #e4405f;
25450
  color: #fff;
25451
}
16848 stevensc 25452
 
25453
.btn-instagram:hover,
25454
.btn-instagram:focus {
16825 efrain 25455
  background: #d31e40;
25456
  color: #fff;
25457
}
16848 stevensc 25458
 
16825 efrain 25459
.btn-instagram.btn-social-icon-text {
25460
  padding: 0 1.5rem 0 0;
25461
  background: #ea6d84;
25462
}
16848 stevensc 25463
 
16825 efrain 25464
.btn-instagram.btn-social-icon-text i {
25465
  background: #e4405f;
25466
  padding: 0.75rem;
25467
  display: inline-block;
25468
  margin-right: 1.5rem;
25469
}
25470
 
25471
.btn-outline-instagram {
25472
  border: 1px solid #e4405f;
25473
  color: #e4405f;
25474
}
16848 stevensc 25475
 
16825 efrain 25476
.btn-outline-instagram:hover {
25477
  background: #e4405f;
25478
  color: #fff;
25479
}
25480
 
25481
.btn-pinterest {
25482
  background: #bd081c;
25483
  color: #fff;
25484
}
16848 stevensc 25485
 
25486
.btn-pinterest:hover,
25487
.btn-pinterest:focus {
16825 efrain 25488
  background: #8c0615;
25489
  color: #fff;
25490
}
16848 stevensc 25491
 
16825 efrain 25492
.btn-pinterest.btn-social-icon-text {
25493
  padding: 0 1.5rem 0 0;
25494
  background: #ee0a23;
25495
}
16848 stevensc 25496
 
16825 efrain 25497
.btn-pinterest.btn-social-icon-text i {
25498
  background: #bd081c;
25499
  padding: 0.75rem;
25500
  display: inline-block;
25501
  margin-right: 1.5rem;
25502
}
25503
 
25504
.btn-outline-pinterest {
25505
  border: 1px solid #bd081c;
25506
  color: #bd081c;
25507
}
16848 stevensc 25508
 
16825 efrain 25509
.btn-outline-pinterest:hover {
25510
  background: #bd081c;
25511
  color: #fff;
25512
}
25513
 
25514
.btn-flickr {
25515
  background: #0063dc;
25516
  color: #fff;
25517
}
16848 stevensc 25518
 
25519
.btn-flickr:hover,
25520
.btn-flickr:focus {
16825 efrain 25521
  background: #004ca9;
25522
  color: #fff;
25523
}
16848 stevensc 25524
 
16825 efrain 25525
.btn-flickr.btn-social-icon-text {
25526
  padding: 0 1.5rem 0 0;
25527
  background: #107cff;
25528
}
16848 stevensc 25529
 
16825 efrain 25530
.btn-flickr.btn-social-icon-text i {
25531
  background: #0063dc;
25532
  padding: 0.75rem;
25533
  display: inline-block;
25534
  margin-right: 1.5rem;
25535
}
25536
 
25537
.btn-outline-flickr {
25538
  border: 1px solid #0063dc;
25539
  color: #0063dc;
25540
}
16848 stevensc 25541
 
16825 efrain 25542
.btn-outline-flickr:hover {
25543
  background: #0063dc;
25544
  color: #fff;
25545
}
25546
 
25547
.btn-bitbucket {
25548
  background: #0052cc;
25549
  color: #fff;
25550
}
16848 stevensc 25551
 
25552
.btn-bitbucket:hover,
25553
.btn-bitbucket:focus {
16825 efrain 25554
  background: #003e99;
25555
  color: #fff;
25556
}
16848 stevensc 25557
 
16825 efrain 25558
.btn-bitbucket.btn-social-icon-text {
25559
  padding: 0 1.5rem 0 0;
25560
  background: #0067ff;
25561
}
16848 stevensc 25562
 
16825 efrain 25563
.btn-bitbucket.btn-social-icon-text i {
25564
  background: #0052cc;
25565
  padding: 0.75rem;
25566
  display: inline-block;
25567
  margin-right: 1.5rem;
25568
}
25569
 
25570
.btn-outline-bitbucket {
25571
  border: 1px solid #0052cc;
25572
  color: #0052cc;
25573
}
16848 stevensc 25574
 
16825 efrain 25575
.btn-outline-bitbucket:hover {
25576
  background: #0052cc;
25577
  color: #fff;
25578
}
25579
 
25580
.btn-linkedin {
25581
  background: #0077b5;
25582
  color: #fff;
25583
}
16848 stevensc 25584
 
25585
.btn-linkedin:hover,
25586
.btn-linkedin:focus {
16825 efrain 25587
  background: #005582;
25588
  color: #fff;
25589
}
16848 stevensc 25590
 
16825 efrain 25591
.btn-linkedin.btn-social-icon-text {
25592
  padding: 0 1.5rem 0 0;
25593
  background: #0099e8;
25594
}
16848 stevensc 25595
 
16825 efrain 25596
.btn-linkedin.btn-social-icon-text i {
25597
  background: #0077b5;
25598
  padding: 0.75rem;
25599
  display: inline-block;
25600
  margin-right: 1.5rem;
25601
}
25602
 
25603
.btn-outline-linkedin {
25604
  border: 1px solid #0077b5;
25605
  color: #0077b5;
25606
}
16848 stevensc 25607
 
16825 efrain 25608
.btn-outline-linkedin:hover {
25609
  background: #0077b5;
25610
  color: #fff;
25611
}
25612
 
25613
.btn-inverse-primary {
25614
  background-color: rgba(101, 113, 255, 0.2);
25615
  background-image: none;
25616
  border-color: rgba(101, 113, 255, 0);
25617
}
16848 stevensc 25618
 
16825 efrain 25619
.btn-inverse-primary:not(.btn-inverse-light) {
25620
  color: #6571ff;
25621
}
16848 stevensc 25622
 
25623
.btn-inverse-primary:hover,
25624
.btn-inverse-primary.active,
25625
.btn-inverse-primary:active,
25626
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25627
  background-color: rgba(101, 113, 255, 0.3);
25628
  border-color: rgba(101, 113, 255, 0);
25629
}
16848 stevensc 25630
 
25631
.btn-inverse-primary.focus,
25632
.btn-inverse-primary:focus {
16825 efrain 25633
  background-color: rgba(101, 113, 255, 0.3);
25634
  border-color: transparent;
25635
}
16848 stevensc 25636
 
25637
.btn-inverse-primary.disabled,
25638
.btn-inverse-primary:disabled {
16825 efrain 25639
  color: #6571ff;
25640
  background-color: transparent;
25641
}
25642
 
25643
.btn-inverse-secondary {
25644
  background-color: rgba(121, 135, 161, 0.2);
25645
  background-image: none;
25646
  border-color: rgba(121, 135, 161, 0);
25647
}
16848 stevensc 25648
 
16825 efrain 25649
.btn-inverse-secondary:not(.btn-inverse-light) {
25650
  color: #7987a1;
25651
}
16848 stevensc 25652
 
25653
.btn-inverse-secondary:hover,
25654
.btn-inverse-secondary.active,
25655
.btn-inverse-secondary:active,
25656
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25657
  background-color: rgba(121, 135, 161, 0.3);
25658
  border-color: rgba(121, 135, 161, 0);
25659
}
16848 stevensc 25660
 
25661
.btn-inverse-secondary.focus,
25662
.btn-inverse-secondary:focus {
16825 efrain 25663
  background-color: rgba(121, 135, 161, 0.3);
25664
  border-color: transparent;
25665
}
16848 stevensc 25666
 
25667
.btn-inverse-secondary.disabled,
25668
.btn-inverse-secondary:disabled {
16825 efrain 25669
  color: #7987a1;
25670
  background-color: transparent;
25671
}
25672
 
25673
.btn-inverse-success {
25674
  background-color: rgba(5, 163, 74, 0.2);
25675
  background-image: none;
25676
  border-color: rgba(5, 163, 74, 0);
25677
}
16848 stevensc 25678
 
16825 efrain 25679
.btn-inverse-success:not(.btn-inverse-light) {
25680
  color: #05a34a;
25681
}
16848 stevensc 25682
 
25683
.btn-inverse-success:hover,
25684
.btn-inverse-success.active,
25685
.btn-inverse-success:active,
25686
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25687
  background-color: rgba(5, 163, 74, 0.3);
25688
  border-color: rgba(5, 163, 74, 0);
25689
}
16848 stevensc 25690
 
25691
.btn-inverse-success.focus,
25692
.btn-inverse-success:focus {
16825 efrain 25693
  background-color: rgba(5, 163, 74, 0.3);
25694
  border-color: transparent;
25695
}
16848 stevensc 25696
 
25697
.btn-inverse-success.disabled,
25698
.btn-inverse-success:disabled {
16825 efrain 25699
  color: #05a34a;
25700
  background-color: transparent;
25701
}
25702
 
25703
.btn-inverse-info {
25704
  background-color: rgba(102, 209, 209, 0.2);
25705
  background-image: none;
25706
  border-color: rgba(102, 209, 209, 0);
25707
}
16848 stevensc 25708
 
16825 efrain 25709
.btn-inverse-info:not(.btn-inverse-light) {
25710
  color: #66d1d1;
25711
}
16848 stevensc 25712
 
25713
.btn-inverse-info:hover,
25714
.btn-inverse-info.active,
25715
.btn-inverse-info:active,
25716
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25717
  background-color: rgba(102, 209, 209, 0.3);
25718
  border-color: rgba(102, 209, 209, 0);
25719
}
16848 stevensc 25720
 
25721
.btn-inverse-info.focus,
25722
.btn-inverse-info:focus {
16825 efrain 25723
  background-color: rgba(102, 209, 209, 0.3);
25724
  border-color: transparent;
25725
}
16848 stevensc 25726
 
25727
.btn-inverse-info.disabled,
25728
.btn-inverse-info:disabled {
16825 efrain 25729
  color: #66d1d1;
25730
  background-color: transparent;
25731
}
25732
 
25733
.btn-inverse-warning {
25734
  background-color: rgba(251, 188, 6, 0.2);
25735
  background-image: none;
25736
  border-color: rgba(251, 188, 6, 0);
25737
}
16848 stevensc 25738
 
16825 efrain 25739
.btn-inverse-warning:not(.btn-inverse-light) {
25740
  color: #fbbc06;
25741
}
16848 stevensc 25742
 
25743
.btn-inverse-warning:hover,
25744
.btn-inverse-warning.active,
25745
.btn-inverse-warning:active,
25746
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25747
  background-color: rgba(251, 188, 6, 0.3);
25748
  border-color: rgba(251, 188, 6, 0);
25749
}
16848 stevensc 25750
 
25751
.btn-inverse-warning.focus,
25752
.btn-inverse-warning:focus {
16825 efrain 25753
  background-color: rgba(251, 188, 6, 0.3);
25754
  border-color: transparent;
25755
}
16848 stevensc 25756
 
25757
.btn-inverse-warning.disabled,
25758
.btn-inverse-warning:disabled {
16825 efrain 25759
  color: #fbbc06;
25760
  background-color: transparent;
25761
}
25762
 
25763
.btn-inverse-danger {
25764
  background-color: rgba(255, 51, 102, 0.2);
25765
  background-image: none;
25766
  border-color: rgba(255, 51, 102, 0);
25767
}
16848 stevensc 25768
 
16825 efrain 25769
.btn-inverse-danger:not(.btn-inverse-light) {
25770
  color: #ff3366;
25771
}
16848 stevensc 25772
 
25773
.btn-inverse-danger:hover,
25774
.btn-inverse-danger.active,
25775
.btn-inverse-danger:active,
25776
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25777
  background-color: rgba(255, 51, 102, 0.3);
25778
  border-color: rgba(255, 51, 102, 0);
25779
}
16848 stevensc 25780
 
25781
.btn-inverse-danger.focus,
25782
.btn-inverse-danger:focus {
16825 efrain 25783
  background-color: rgba(255, 51, 102, 0.3);
25784
  border-color: transparent;
25785
}
16848 stevensc 25786
 
25787
.btn-inverse-danger.disabled,
25788
.btn-inverse-danger:disabled {
16825 efrain 25789
  color: #ff3366;
25790
  background-color: transparent;
25791
}
25792
 
25793
.btn-inverse-light {
25794
  background-color: rgba(233, 236, 239, 0.2);
25795
  background-image: none;
25796
  border-color: rgba(233, 236, 239, 0);
25797
}
16848 stevensc 25798
 
16825 efrain 25799
.btn-inverse-light:not(.btn-inverse-light) {
25800
  color: #e9ecef;
25801
}
16848 stevensc 25802
 
25803
.btn-inverse-light:hover,
25804
.btn-inverse-light.active,
25805
.btn-inverse-light:active,
25806
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25807
  background-color: rgba(233, 236, 239, 0.3);
25808
  border-color: rgba(233, 236, 239, 0);
25809
}
16848 stevensc 25810
 
25811
.btn-inverse-light.focus,
25812
.btn-inverse-light:focus {
16825 efrain 25813
  background-color: rgba(233, 236, 239, 0.3);
25814
  border-color: transparent;
25815
}
16848 stevensc 25816
 
25817
.btn-inverse-light.disabled,
25818
.btn-inverse-light:disabled {
16825 efrain 25819
  color: #e9ecef;
25820
  background-color: transparent;
25821
}
25822
 
25823
.btn-inverse-dark {
25824
  background-color: rgba(6, 12, 23, 0.2);
25825
  background-image: none;
25826
  border-color: rgba(6, 12, 23, 0);
25827
}
16848 stevensc 25828
 
16825 efrain 25829
.btn-inverse-dark:not(.btn-inverse-light) {
25830
  color: #060c17;
25831
}
16848 stevensc 25832
 
25833
.btn-inverse-dark:hover,
25834
.btn-inverse-dark.active,
25835
.btn-inverse-dark:active,
25836
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25837
  background-color: rgba(6, 12, 23, 0.3);
25838
  border-color: rgba(6, 12, 23, 0);
25839
}
16848 stevensc 25840
 
25841
.btn-inverse-dark.focus,
25842
.btn-inverse-dark:focus {
16825 efrain 25843
  background-color: rgba(6, 12, 23, 0.3);
25844
  border-color: transparent;
25845
}
16848 stevensc 25846
 
25847
.btn-inverse-dark.disabled,
25848
.btn-inverse-dark:disabled {
16825 efrain 25849
  color: #060c17;
25850
  background-color: transparent;
25851
}
25852
 
25853
.card {
25854
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25855
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25856
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25857
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25858
}
16848 stevensc 25859
 
25860
.card .card-body+.card-body {
16825 efrain 25861
  padding-top: 1rem;
25862
}
16848 stevensc 25863
 
16825 efrain 25864
.card .card-title {
25865
  text-transform: uppercase;
25866
  font-size: 0.875rem;
25867
  font-weight: 500;
25868
}
25869
 
25870
.card-group {
25871
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25872
}
16848 stevensc 25873
 
16825 efrain 25874
.card-group .card {
25875
  box-shadow: none;
25876
}
25877
 
25878
.dropdown .dropdown-toggle:after,
25879
.btn-group .dropdown-toggle:after {
25880
  border-top: 0;
25881
  border-right: 0;
25882
  border-left: 0;
25883
  border-bottom: 0;
25884
  font: normal normal normal 24px/1 "feather";
25885
  content: "\e842";
25886
  width: auto;
25887
  height: auto;
25888
  vertical-align: middle;
25889
  line-height: 0.625rem;
25890
  font-size: 0.875rem;
25891
}
16848 stevensc 25892
 
16825 efrain 25893
.dropdown.dropup .dropdown-toggle::after,
25894
.btn-group.dropup .dropdown-toggle::after {
25895
  content: "\e845";
25896
}
16848 stevensc 25897
 
16825 efrain 25898
.dropdown.dropstart .dropdown-toggle::before,
25899
.btn-group.dropstart .dropdown-toggle::before {
25900
  border: 0;
25901
  font: normal normal normal 24px/1 "feather";
25902
  content: "\e843";
25903
  width: auto;
25904
  height: auto;
25905
  vertical-align: middle;
25906
  line-height: 0.625rem;
25907
  font-size: 0.875rem;
25908
}
16848 stevensc 25909
 
16825 efrain 25910
.dropdown.dropend .dropdown-toggle::after,
25911
.btn-group.dropend .dropdown-toggle::after {
25912
  content: "\e844";
25913
}
25914
 
16848 stevensc 25915
.dropdown-menu,
25916
.tt-menu {
16825 efrain 25917
  padding: 0.35rem;
25918
  margin-top: 0;
25919
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25920
}
25921
 
16848 stevensc 25922
.dropdown-item,
25923
.tt-menu .tt-suggestion {
16825 efrain 25924
  font-size: 0.812rem;
25925
  padding: 0.25rem 0.875rem;
25926
  border-radius: 2px;
25927
}
16848 stevensc 25928
 
25929
.dropdown-item i,
25930
.tt-menu .tt-suggestion i,
25931
.dropdown-item svg,
25932
.tt-menu .tt-suggestion svg {
16825 efrain 25933
  color: #7987a1;
25934
}
16848 stevensc 25935
 
25936
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25937
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25938
  background-color: rgba(101, 113, 255, 0.1);
25939
}
16848 stevensc 25940
 
25941
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25942
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25943
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25944
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25945
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25946
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25947
  color: #6571ff;
25948
}
16848 stevensc 25949
 
25950
.dropdown-item:active i,
25951
.tt-menu .tt-suggestion:active i,
25952
.dropdown-item:active svg,
25953
.tt-menu .tt-suggestion:active svg,
25954
.dropdown-item.active i,
25955
.tt-menu .active.tt-suggestion i,
25956
.dropdown-item.active svg,
25957
.tt-menu .active.tt-suggestion svg {
16825 efrain 25958
  color: #fff;
25959
}
25960
 
25961
.form-control-xs,
25962
.form-select-xs {
25963
  padding: 0.313rem 0.8rem;
25964
  font-size: 0.75rem;
25965
}
25966
 
16848 stevensc 25967
.form-control-xs+.input-group-text {
16825 efrain 25968
  padding-top: 0.313rem;
25969
  padding-bottom: 0.313rem;
25970
}
25971
 
25972
.form-check-input {
25973
  margin-top: 0.13em;
25974
}
25975
 
25976
.input-group-text svg {
25977
  width: 18px;
25978
  height: 18px;
25979
}
25980
 
25981
[type=tel],
25982
[type=url],
25983
[type=email],
25984
[type=number] {
25985
  direction: ltr;
25986
}
25987
 
25988
.icons-list {
25989
  border-left: 1px solid #e9ecef;
25990
  border-top: 1px solid #e9ecef;
25991
}
16848 stevensc 25992
 
25993
.icons-list>div {
16825 efrain 25994
  border-bottom: 1px solid #e9ecef;
25995
  border-right: 1px solid #e9ecef;
25996
  background: #f9fafb;
25997
  display: flex;
25998
  align-items: center;
25999
  padding: 15px 20px;
26000
  font-weight: 400;
26001
  transition: all 0.3s ease-in-out;
26002
}
16848 stevensc 26003
 
26004
.icons-list>div i {
16825 efrain 26005
  display: inline-block;
26006
  font-size: 20px;
26007
  text-align: left;
26008
  margin-right: 12px;
26009
  color: #7987a1;
26010
  transition: all 0.3s ease-in-out;
26011
}
16848 stevensc 26012
 
26013
.icons-list>div svg {
16825 efrain 26014
  width: 20px;
26015
  margin-right: 12px;
26016
  color: #7987a1;
26017
  transition: all 0.3s ease-in-out;
26018
}
16848 stevensc 26019
 
26020
.icons-list>div:hover {
16825 efrain 26021
  cursor: text;
26022
}
16848 stevensc 26023
 
26024
.icons-list>div:hover i,
26025
.icons-list>div:hover svg {
16825 efrain 26026
  transform: scale(1.3);
26027
  color: #6571ff;
26028
}
26029
 
26030
.nav.nav-tabs .nav-item .nav-link {
26031
  border-color: #e9ecef #e9ecef #dee2e6;
26032
  color: #000;
26033
  background-color: #f8f9fa;
26034
  cursor: pointer;
26035
}
16848 stevensc 26036
 
16825 efrain 26037
.nav.nav-tabs .nav-item .nav-link.active {
26038
  border-color: #dee2e6 #dee2e6 #fff;
26039
  color: #6571ff;
26040
  background: #fff;
26041
}
16848 stevensc 26042
 
16825 efrain 26043
.nav.nav-tabs .nav-item .nav-link.disabled {
26044
  background-color: transparent;
26045
  color: #7987a1;
26046
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26047
}
16848 stevensc 26048
 
16825 efrain 26049
.nav.nav-tabs.nav-tabs-vertical {
26050
  border-bottom: 0;
26051
}
16848 stevensc 26052
 
16825 efrain 26053
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26054
  width: 100%;
26055
  border: 1px solid transparent;
26056
  border-radius: 0;
26057
  border-color: #e9ecef #e9ecef #dee2e6;
26058
  color: #000;
26059
  background-color: #f8f9fa;
26060
}
16848 stevensc 26061
 
16825 efrain 26062
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26063
  border-radius: 0.25rem 0 0 0;
26064
}
16848 stevensc 26065
 
16825 efrain 26066
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26067
  border-radius: 0 0 0 0.25rem;
26068
}
16848 stevensc 26069
 
16825 efrain 26070
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26071
  background-color: #fff;
26072
  color: #6571ff;
26073
  border-right-color: transparent;
26074
}
16848 stevensc 26075
 
16825 efrain 26076
.nav.nav-tabs.nav-tabs-line .nav-link {
26077
  border: 0;
26078
  background-color: transparent;
26079
}
16848 stevensc 26080
 
16825 efrain 26081
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26082
  border-bottom: 2px solid #6571ff;
26083
}
26084
 
26085
.tab-content.tab-content-vertical {
26086
  height: 100%;
26087
}
26088
 
26089
.pagination .page-item .page-link svg {
26090
  width: 18px;
26091
  height: 18px;
26092
}
16848 stevensc 26093
 
16825 efrain 26094
.pagination.pagination-separated .page-item {
26095
  margin-left: 2px;
26096
  margin-right: 2px;
26097
}
16848 stevensc 26098
 
16825 efrain 26099
.pagination.pagination-separated .page-item:first-child {
26100
  margin-left: 0;
26101
}
16848 stevensc 26102
 
16825 efrain 26103
.pagination.pagination-separated .page-item:last-child {
26104
  margin-right: 0;
26105
}
16848 stevensc 26106
 
16825 efrain 26107
.pagination.pagination-rounded .page-item {
26108
  margin-right: 2px;
26109
  margin-left: 2px;
26110
}
16848 stevensc 26111
 
16825 efrain 26112
.pagination.pagination-rounded .page-item .page-link {
26113
  border-radius: 50px;
26114
}
26115
 
26116
.table {
26117
  margin-bottom: 0;
26118
}
16848 stevensc 26119
 
26120
.table> :not(:last-child)> :last-child>* {
16825 efrain 26121
  border-bottom-color: inherit;
26122
}
16848 stevensc 26123
 
16825 efrain 26124
.table thead th {
26125
  border-top: 0;
26126
  font-weight: 500;
26127
  font-size: 12px;
26128
  text-transform: uppercase;
26129
  color: #7987a1;
26130
}
16848 stevensc 26131
 
16825 efrain 26132
.table thead th i {
26133
  margin-left: 0.325rem;
26134
}
16848 stevensc 26135
 
16825 efrain 26136
.table th,
26137
.table td {
26138
  white-space: nowrap;
26139
}
16848 stevensc 26140
 
16825 efrain 26141
.table td img {
26142
  width: 36px;
26143
  height: 36px;
26144
  border-radius: 100%;
26145
}
26146
 
26147
.timeline {
26148
  border-left: 3px solid #6571ff;
26149
  border-bottom-right-radius: 0.25rem;
26150
  border-top-right-radius: 0.25rem;
26151
  background: rgba(101, 113, 255, 0.2);
26152
  margin: 0 auto;
26153
  position: relative;
26154
  padding: 50px;
26155
  list-style: none;
26156
  max-width: 40%;
26157
}
16848 stevensc 26158
 
16825 efrain 26159
@media (max-width: 767px) {
26160
  .timeline {
26161
    max-width: 98%;
26162
    padding: 25px;
26163
  }
26164
}
16848 stevensc 26165
 
16825 efrain 26166
.timeline .event {
26167
  border-bottom: 1px dashed #e9ecef;
26168
  padding-bottom: 25px;
26169
  margin-bottom: 25px;
26170
  position: relative;
26171
}
16848 stevensc 26172
 
16825 efrain 26173
@media (max-width: 767px) {
26174
  .timeline .event {
26175
    padding-top: 30px;
26176
  }
26177
}
16848 stevensc 26178
 
16825 efrain 26179
.timeline .event .title {
26180
  font-weight: 500;
26181
  font-size: 1rem;
26182
  margin-bottom: 10px;
26183
}
16848 stevensc 26184
 
16825 efrain 26185
.timeline .event:last-of-type {
26186
  padding-bottom: 0;
26187
  margin-bottom: 0;
26188
  border: none;
26189
}
16848 stevensc 26190
 
26191
.timeline .event:before,
26192
.timeline .event:after {
16825 efrain 26193
  position: absolute;
26194
  display: block;
26195
  top: 0;
26196
}
16848 stevensc 26197
 
16825 efrain 26198
.timeline .event:before {
26199
  left: -207px;
26200
  content: attr(data-date);
26201
  text-align: right;
26202
  font-weight: 500;
26203
  font-size: 0.9em;
26204
  min-width: 120px;
26205
}
16848 stevensc 26206
 
16825 efrain 26207
@media (max-width: 767px) {
26208
  .timeline .event:before {
26209
    left: 0px;
26210
    text-align: left;
26211
  }
26212
}
16848 stevensc 26213
 
16825 efrain 26214
.timeline .event:after {
26215
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26216
  box-shadow: 0 0 0 3px #6571ff;
26217
  left: -55.8px;
26218
  background: #fff;
26219
  border-radius: 50%;
26220
  height: 9px;
26221
  width: 9px;
26222
  content: "";
26223
  top: 5px;
26224
}
16848 stevensc 26225
 
16825 efrain 26226
@media (max-width: 767px) {
26227
  .timeline .event:after {
26228
    left: -31.8px;
26229
  }
26230
}
26231
 
26232
.chat-wrapper {
26233
  height: calc(100vh - 60px - 102px);
26234
}
16848 stevensc 26235
 
16825 efrain 26236
@media (max-width: 991px) {
26237
  .chat-wrapper {
26238
    min-height: 100%;
26239
  }
26240
}
16848 stevensc 26241
 
16825 efrain 26242
@media (max-width: 991px) {
26243
  .chat-wrapper {
26244
    height: 100%;
26245
  }
26246
}
16848 stevensc 26247
 
16825 efrain 26248
@media (min-width: 992px) {
26249
  .chat-wrapper .chat-aside {
26250
    padding-right: 23px;
26251
  }
26252
}
16848 stevensc 26253
 
16825 efrain 26254
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26255
  position: relative;
26256
  max-height: calc(100vh - 385px);
26257
}
16848 stevensc 26258
 
26259
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26260
  padding-top: 11px;
26261
  padding-bottom: 11px;
26262
}
16848 stevensc 26263
 
16825 efrain 26264
@media (max-width: 991px) {
26265
  .chat-wrapper .chat-content {
26266
    position: absolute;
26267
    background: #fff;
26268
    left: 0;
26269
    bottom: -1px;
26270
    top: 0;
26271
    right: 0;
26272
    display: none;
26273
  }
16848 stevensc 26274
 
16825 efrain 26275
  .chat-wrapper .chat-content.show {
26276
    display: block;
26277
  }
26278
}
16848 stevensc 26279
 
16825 efrain 26280
.chat-wrapper .chat-content .chat-header {
26281
  padding: 0 10px;
26282
}
16848 stevensc 26283
 
16825 efrain 26284
.chat-wrapper .chat-content .chat-body {
26285
  position: relative;
26286
  max-height: calc(100vh - 340px);
26287
  margin-top: 20px;
26288
  margin-bottom: 20px;
26289
}
16848 stevensc 26290
 
16825 efrain 26291
@media (max-width: 767px) {
26292
  .chat-wrapper .chat-content .chat-body {
26293
    max-height: calc(100vh - 315px);
26294
  }
26295
}
16848 stevensc 26296
 
16825 efrain 26297
@media (max-width: 991px) {
26298
  .chat-wrapper .chat-content .chat-body {
26299
    max-height: calc(100vh - 342px);
26300
  }
26301
}
16848 stevensc 26302
 
16825 efrain 26303
.chat-wrapper .chat-content .chat-body .messages {
26304
  padding: 0 10px;
26305
  list-style-type: none;
26306
}
16848 stevensc 26307
 
16825 efrain 26308
.chat-wrapper .chat-content .chat-body .messages .message-item {
26309
  display: flex;
26310
  max-width: 80%;
26311
  margin-bottom: 20px;
26312
}
16848 stevensc 26313
 
16825 efrain 26314
@media (max-width: 767px) {
26315
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26316
    max-width: 95%;
26317
  }
26318
}
16848 stevensc 26319
 
16825 efrain 26320
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26321
  position: relative;
26322
  padding: 7px 15px;
26323
  margin-bottom: 4px;
26324
  width: -webkit-fit-content;
26325
  width: -moz-fit-content;
26326
  width: fit-content;
26327
}
16848 stevensc 26328
 
16825 efrain 26329
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26330
  font-size: 12px;
26331
  color: #7987a1;
26332
}
16848 stevensc 26333
 
16825 efrain 26334
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26335
  order: 1;
26336
  margin-right: 15px;
26337
}
16848 stevensc 26338
 
16825 efrain 26339
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26340
  order: 2;
26341
}
16848 stevensc 26342
 
16825 efrain 26343
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26344
  background: rgba(101, 113, 255, 0.1);
26345
  border-radius: 0 5px 5px;
26346
}
16848 stevensc 26347
 
16825 efrain 26348
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26349
  content: "";
26350
  width: 0;
26351
  height: 0;
26352
  position: absolute;
26353
  left: -10px;
26354
  top: 0;
26355
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26356
  border-bottom: 5px solid transparent;
26357
  border-left: 5px solid transparent;
26358
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26359
}
16848 stevensc 26360
 
16825 efrain 26361
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26362
  margin-left: auto;
26363
}
16848 stevensc 26364
 
16825 efrain 26365
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26366
  order: 2;
26367
  margin-left: 15px;
26368
}
16848 stevensc 26369
 
16825 efrain 26370
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26371
  order: 1;
26372
  margin-left: auto;
26373
}
16848 stevensc 26374
 
16825 efrain 26375
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26376
  background: rgba(102, 209, 209, 0.1);
26377
  border-radius: 5px 0 5px 5px;
26378
  margin-left: auto;
26379
}
16848 stevensc 26380
 
16825 efrain 26381
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26382
  content: "";
26383
  width: 0;
26384
  height: 0;
26385
  position: absolute;
26386
  right: -10px;
26387
  top: 0;
26388
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26389
  border-bottom: 5px solid transparent;
26390
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26391
  border-right: 5px solid transparent;
26392
}
16848 stevensc 26393
 
16825 efrain 26394
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26395
  text-align: right;
26396
  display: block;
26397
}
16848 stevensc 26398
 
16825 efrain 26399
.chat-wrapper figure {
26400
  position: relative;
26401
}
16848 stevensc 26402
 
16825 efrain 26403
.chat-wrapper figure .status {
26404
  width: 11px;
26405
  height: 11px;
26406
  background: #7987a1;
26407
  position: absolute;
26408
  bottom: 0px;
26409
  right: -2px;
26410
  border-radius: 50%;
26411
  border: 2px solid #fff;
26412
}
16848 stevensc 26413
 
16825 efrain 26414
.chat-wrapper figure .status.online {
26415
  background: #05a34a;
26416
}
16848 stevensc 26417
 
16825 efrain 26418
.chat-wrapper figure .status.offline {
26419
  background: #7987a1;
26420
}
26421
 
26422
.auth-page .auth-side-wrapper {
26423
  width: 100%;
26424
  height: 100%;
26425
  background-image: url(https://via.placeholder.com/219x452);
26426
  background-size: cover;
26427
}
26428
 
26429
.email-aside-nav.collapse {
26430
  display: block;
26431
}
16848 stevensc 26432
 
16825 efrain 26433
@media (max-width: 991px) {
26434
  .email-aside-nav.collapse {
26435
    display: none;
26436
  }
26437
}
16848 stevensc 26438
 
16825 efrain 26439
@media (max-width: 991px) {
26440
  .email-aside-nav.collapse.show {
26441
    display: block;
26442
  }
26443
}
16848 stevensc 26444
 
16825 efrain 26445
.email-aside-nav .nav-item {
26446
  border-radius: 0.2rem;
26447
}
16848 stevensc 26448
 
16825 efrain 26449
.email-aside-nav .nav-item .nav-link {
26450
  color: #000;
26451
}
16848 stevensc 26452
 
16825 efrain 26453
.email-aside-nav .nav-item .nav-link svg {
26454
  color: #7987a1;
26455
}
16848 stevensc 26456
 
26457
.email-aside-nav .nav-item.active,
26458
.email-aside-nav .nav-item:hover {
16825 efrain 26459
  background: rgba(101, 113, 255, 0.1);
26460
}
16848 stevensc 26461
 
26462
.email-aside-nav .nav-item.active .nav-link,
26463
.email-aside-nav .nav-item.active .nav-link svg,
26464
.email-aside-nav .nav-item:hover .nav-link,
26465
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26466
  color: #6571ff;
26467
}
26468
 
26469
.email-list-item {
26470
  display: flex;
26471
  align-items: center;
26472
  border-bottom: 1px solid #e9ecef;
26473
  padding: 10px 20px;
26474
  cursor: pointer;
26475
}
16848 stevensc 26476
 
16825 efrain 26477
.email-list-item:hover {
26478
  background: rgba(101, 113, 255, 0.08);
26479
}
16848 stevensc 26480
 
16825 efrain 26481
.email-list-item:last-child {
26482
  margin-bottom: 5px;
26483
}
16848 stevensc 26484
 
16825 efrain 26485
.email-list-item .email-list-actions {
26486
  width: 40px;
26487
  vertical-align: top;
26488
  display: table-cell;
26489
}
16848 stevensc 26490
 
16825 efrain 26491
.email-list-item .email-list-actions .form-check {
26492
  margin-bottom: 0;
26493
}
16848 stevensc 26494
 
16825 efrain 26495
.email-list-item .email-list-actions .favorite {
26496
  display: block;
26497
  padding-left: 1px;
26498
  line-height: 15px;
26499
}
16848 stevensc 26500
 
16825 efrain 26501
.email-list-item .email-list-actions .favorite span svg {
26502
  width: 14px;
26503
  color: #7987a1;
26504
}
16848 stevensc 26505
 
16825 efrain 26506
.email-list-item .email-list-actions .favorite:hover span {
26507
  color: #8d8d8d;
26508
}
16848 stevensc 26509
 
16825 efrain 26510
.email-list-item .email-list-actions .favorite.active span svg {
26511
  color: #fbbc06;
26512
}
16848 stevensc 26513
 
16825 efrain 26514
.email-list-item .email-list-detail {
26515
  width: calc(100% - 40px);
26516
  display: flex;
26517
  justify-content: space-between;
26518
  align-items: center;
26519
  flex-grow: 1;
26520
}
16848 stevensc 26521
 
16825 efrain 26522
.email-list-item .email-list-detail .content {
26523
  overflow: hidden;
26524
}
16848 stevensc 26525
 
16825 efrain 26526
.email-list-item .email-list-detail .content .from {
26527
  display: block;
26528
  margin: 0 0 1px 0;
26529
  color: #000;
26530
}
16848 stevensc 26531
 
16825 efrain 26532
.email-list-item .email-list-detail .content .msg {
26533
  width: 97%;
26534
  color: #7987a1;
26535
  font-size: 0.8rem;
26536
  overflow: hidden;
26537
  text-overflow: ellipsis;
26538
  white-space: nowrap;
26539
}
16848 stevensc 26540
 
16825 efrain 26541
.email-list-item .email-list-detail .date {
26542
  color: #000;
26543
  white-space: nowrap;
26544
}
16848 stevensc 26545
 
16825 efrain 26546
.email-list-item .email-list-detail .date .icon svg {
26547
  width: 14px;
26548
  margin-right: 7px;
26549
  color: #3d405c;
26550
}
16848 stevensc 26551
 
16825 efrain 26552
.email-list-item.email-list-item--unread {
26553
  background-color: rgba(101, 113, 255, 0.09);
26554
}
16848 stevensc 26555
 
16825 efrain 26556
.email-list-item.email-list-item--unread .content .from {
26557
  font-weight: 500;
26558
}
16848 stevensc 26559
 
16825 efrain 26560
.email-list-item.email-list-item--unread .content .msg {
26561
  font-weight: 700;
26562
}
26563
 
26564
.ace_editor {
26565
  border-radius: 0.25rem;
26566
  margin: auto;
26567
  height: 300px;
26568
  width: 100%;
26569
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26570
}
16848 stevensc 26571
 
16825 efrain 26572
.ace_editor .ace_content {
26573
  font-size: 0.875rem;
26574
}
26575
 
26576
div.apexcharts-canvas .apexcharts-menu {
26577
  background: #fff !important;
26578
  color: #000;
26579
  border-color: #e9ecef;
26580
}
16848 stevensc 26581
 
16825 efrain 26582
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26583
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26584
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26585
div.apexcharts-canvas .apexcharts-reset-icon svg,
26586
div.apexcharts-canvas .apexcharts-pan-icon svg,
26587
div.apexcharts-canvas .apexcharts-selection-icon svg,
26588
div.apexcharts-canvas .apexcharts-menu-icon svg,
26589
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26590
  fill: #7987a1;
26591
}
16848 stevensc 26592
 
16825 efrain 26593
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26594
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26595
  display: flex;
26596
  align-items: center;
26597
}
16848 stevensc 26598
 
16825 efrain 26599
div.apexcharts-canvas .apexcharts-legend-marker {
26600
  margin-right: 3px;
26601
}
16848 stevensc 26602
 
16825 efrain 26603
div.apexcharts-canvas .apexcharts-tooltip {
26604
  background: rgba(255, 255, 255, 0.8);
26605
  color: #000;
26606
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26607
  border-radius: 0.25rem;
26608
  border: 1px solid #f2f4f9;
26609
}
16848 stevensc 26610
 
16825 efrain 26611
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26612
  border-color: #e9ecef;
26613
  background-color: #fff;
26614
}
16848 stevensc 26615
 
16825 efrain 26616
div.apexcharts-canvas .apexcharts-tooltip * {
26617
  font-family: "Roboto", Helvetica, sans-serif !important;
26618
}
16848 stevensc 26619
 
16825 efrain 26620
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26621
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26622
  padding: 0 10px;
26623
}
16848 stevensc 26624
 
16825 efrain 26625
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26626
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26627
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26628
  margin-left: 0;
26629
}
16848 stevensc 26630
 
16825 efrain 26631
div.apexcharts-canvas .apexcharts-tooltip-title {
26632
  margin-bottom: 0;
26633
}
16848 stevensc 26634
 
16825 efrain 26635
div.apexcharts-canvas .apexcharts-xaxistooltip,
26636
div.apexcharts-canvas .apexcharts-yaxistooltip {
26637
  background: #fff;
26638
  color: #000;
26639
  border-color: #f2f4f9;
26640
}
16848 stevensc 26641
 
16825 efrain 26642
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26643
  border-bottom-color: #f2f4f9;
26644
}
16848 stevensc 26645
 
16825 efrain 26646
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26647
  border-bottom-color: rgba(255, 255, 255, 0.8);
26648
}
16848 stevensc 26649
 
16825 efrain 26650
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26651
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26652
  border-left-color: #f2f4f9;
26653
}
16848 stevensc 26654
 
16825 efrain 26655
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26656
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26657
  border-left-color: rgba(255, 255, 255, 0.8);
26658
}
26659
 
26660
@media (max-width: 767px) {
26661
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26662
    text-align: left;
26663
  }
26664
}
16848 stevensc 26665
 
16825 efrain 26666
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26667
  margin-left: 10px;
26668
  margin-right: 10px;
26669
}
16848 stevensc 26670
 
16825 efrain 26671
@media (max-width: 767px) {
26672
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26673
    text-align: left;
26674
    margin-left: -19px;
26675
  }
26676
}
26677
 
26678
.dropify-wrapper {
26679
  border: 1px solid #e9ecef;
26680
  border-radius: 0.25rem;
26681
}
16848 stevensc 26682
 
16825 efrain 26683
.dropify-wrapper .dropify-message span.file-icon {
26684
  font-size: 0.875rem;
26685
  color: #7987a1;
26686
}
16848 stevensc 26687
 
16825 efrain 26688
.dropify-wrapper .dropify-message span.file-icon::before {
26689
  font-family: feather;
26690
  content: "\e8e3";
26691
  font-size: 24px;
26692
}
26693
 
26694
.dropzone {
26695
  overflow: auto;
26696
  border: 1px solid #e9ecef;
26697
  border-radius: 0.25rem;
26698
  max-height: 200px;
26699
  padding: 0;
26700
}
16848 stevensc 26701
 
16825 efrain 26702
@media (min-width: 1400px) {
26703
  .dropzone {
26704
    min-height: 200px;
26705
  }
26706
}
16848 stevensc 26707
 
16825 efrain 26708
.dropzone.dz-clickable .dz-message {
26709
  margin-top: 65px;
26710
}
16848 stevensc 26711
 
26712
.dropzone .dz-preview.dz-image-preview .dz-image,
26713
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26714
  border-radius: 0.25rem;
26715
}
26716
 
16848 stevensc 26717
.form-control.flatpickr-input,
26718
.flatpickr-input.typeahead.tt-input,
26719
.flatpickr-input.typeahead.tt-hint,
26720
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26721
  background-color: #fff;
26722
}
26723
 
26724
.flatpickr-day.selected,
26725
.flatpickr-day.startRange,
26726
.flatpickr-day.endRange,
26727
.flatpickr-day.selected.inRange,
26728
.flatpickr-day.startRange.inRange,
26729
.flatpickr-day.endRange.inRange,
26730
.flatpickr-day.selected:focus,
26731
.flatpickr-day.startRange:focus,
26732
.flatpickr-day.endRange:focus,
26733
.flatpickr-day.selected:hover,
26734
.flatpickr-day.startRange:hover,
26735
.flatpickr-day.endRange:hover,
26736
.flatpickr-day.selected.prevMonthDay,
26737
.flatpickr-day.startRange.prevMonthDay,
26738
.flatpickr-day.endRange.prevMonthDay,
26739
.flatpickr-day.selected.nextMonthDay,
26740
.flatpickr-day.startRange.nextMonthDay,
26741
.flatpickr-day.endRange.nextMonthDay {
26742
  background: #6571ff;
26743
  border-color: #6571ff;
26744
}
26745
 
26746
.flatpickr-months {
26747
  padding: 0 1rem;
26748
  padding-top: 0.5rem;
26749
}
26750
 
26751
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26752
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26753
  left: 11px;
26754
  right: auto !important;
26755
  top: 8px;
26756
}
26757
 
26758
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26759
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26760
  right: 11px;
26761
  left: auto !important;
26762
  top: 8px;
26763
}
26764
 
26765
.flatpickr-months .flatpickr-prev-month:hover svg,
26766
.flatpickr-months .flatpickr-next-month:hover svg {
26767
  fill: #6571ff;
26768
}
26769
 
26770
.flatpickr-months .flatpickr-month {
26771
  height: 42px;
26772
}
26773
 
26774
.flatpickr-current-month .flatpickr-monthDropdown-months {
26775
  font-size: 1rem;
26776
  border-radius: 0.25rem;
26777
  padding: 0.3rem 0.5rem;
26778
}
26779
 
26780
.flatpickr-weekdays {
26781
  padding: 0 10px;
26782
}
26783
 
26784
.dayContainer {
26785
  padding: 0 10px 10px;
26786
}
26787
 
26788
.fc {
26789
  --fc-button-active-bg-color: #6571ff;
26790
  --fc-button-active-border-color: #6571ff;
26791
}
16848 stevensc 26792
 
16825 efrain 26793
.fc .fc-button .fc-icon {
26794
  font-size: 1.2 em;
26795
}
16848 stevensc 26796
 
16825 efrain 26797
.fc .fc-button-primary:focus,
26798
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26799
.fc .fc-button-primary:not(:disabled):active:focus {
26800
  box-shadow: none;
26801
}
16848 stevensc 26802
 
16825 efrain 26803
.fc .fc-button-primary:disabled {
26804
  border-color: #6571ff;
26805
}
16848 stevensc 26806
 
16825 efrain 26807
@media (max-width: 767px) {
26808
  .fc .fc-toolbar {
26809
    flex-direction: column;
26810
  }
16848 stevensc 26811
 
16825 efrain 26812
  .fc .fc-toolbar .fc-toolbar-chunk {
26813
    margin-bottom: 12px;
26814
  }
26815
}
16848 stevensc 26816
 
16825 efrain 26817
.fc .fc-daygrid-day-number,
26818
.fc .fc-col-header-cell-cushion {
26819
  color: #000;
26820
}
16848 stevensc 26821
 
16825 efrain 26822
.fc .fc-daygrid-event {
26823
  padding: 4px;
26824
}
16848 stevensc 26825
 
16825 efrain 26826
.fc .fc-daygrid-day.fc-day-today {
26827
  background-color: rgba(101, 113, 255, 0.2);
26828
}
16848 stevensc 26829
 
16825 efrain 26830
.fc .fc-list-event:hover td {
26831
  background-color: rgba(101, 113, 255, 0.2);
26832
}
16848 stevensc 26833
 
16825 efrain 26834
.fc .fc-list-day-text,
26835
.fc .fc-list-day-side-text {
26836
  color: #000;
26837
}
26838
 
26839
.fc-theme-standard td,
26840
.fc-theme-standard th,
26841
.fc-theme-standard .fc-scrollgrid {
26842
  border-color: #e9ecef;
26843
}
26844
 
26845
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26846
.fc-timegrid-event.fc-event-mirror,
26847
.fc-timegrid-more-link {
26848
  box-shadow: none;
26849
}
26850
 
26851
.fc-theme-standard .fc-popover {
26852
  background-color: #fff;
26853
  border-color: #f2f4f9;
26854
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26855
}
16848 stevensc 26856
 
16825 efrain 26857
.fc-theme-standard .fc-popover .fc-popover-header {
26858
  background-color: #7987a1;
26859
}
26860
 
26861
.fc-theme-standard .fc-list-day-cushion {
26862
  background-color: #fff;
26863
}
26864
 
26865
.fc-theme-standard .fc-list {
26866
  border-color: #e9ecef;
26867
}
26868
 
26869
.fc-event {
26870
  margin-bottom: 10px;
26871
  padding: 8px;
26872
  border-radius: 2px;
26873
  background: rgba(101, 113, 255, 0.2);
26874
  border: 0;
26875
  border-left: 3px solid #6571ff;
26876
  color: #000;
26877
  font-weight: 500;
26878
}
26879
 
26880
.fc-h-event .fc-event-main {
26881
  color: #000;
26882
}
26883
 
26884
.flot-chart-wrapper .flot-chart {
26885
  width: 100%;
26886
  position: relative;
26887
  max-width: none;
26888
  height: 400px;
26889
}
16848 stevensc 26890
 
16825 efrain 26891
@media (max-width: 767px) {
26892
  .flot-chart-wrapper {
26893
    height: 200px;
26894
    min-height: 200px;
26895
  }
16848 stevensc 26896
 
16825 efrain 26897
  .flot-chart-wrapper .flot-chart {
26898
    height: 100%;
26899
  }
26900
}
26901
 
16848 stevensc 26902
.flot-text .flot-x-axis>div,
16825 efrain 26903
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26904
.flot-text .flot-y-axis>div,
16825 efrain 26905
.flot-text .flot-y-axis .flot-tick-label {
26906
  color: #000;
26907
}
26908
 
26909
.peity-custom svg {
26910
  margin-right: 10px;
26911
}
26912
 
26913
.ps__thumb-x {
26914
  background-color: #d9d9d9;
26915
  height: 4px;
26916
}
26917
 
26918
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26919
.ps__rail-x:focus>.ps__thumb-x,
26920
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26921
  background-color: #b3b3b3;
26922
  height: 6px;
26923
}
26924
 
26925
.ps__rail-x {
26926
  height: 10px;
26927
}
26928
 
26929
.ps__thumb-y {
26930
  background-color: #d9d9d9;
26931
  width: 4px;
26932
  /*rtl:raw:
26933
   left: 2px !important;
26934
  right: auto !important;
26935
   */
26936
}
26937
 
26938
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26939
.ps__rail-y:focus>.ps__thumb-y,
26940
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26941
  background-color: #b3b3b3;
26942
  width: 6px;
26943
}
26944
 
26945
.ps__rail-y {
26946
  width: 10px;
26947
  /*rtl:raw:
26948
   left: 0 !important;
26949
  right: auto !important;
26950
   */
26951
}
26952
 
26953
.ps .ps__rail-x.ps--clicking,
26954
.ps .ps__rail-x:focus,
26955
.ps .ps__rail-x:hover,
26956
.ps .ps__rail-y.ps--clicking,
26957
.ps .ps__rail-y:focus,
26958
.ps .ps__rail-y:hover {
26959
  background-color: #e9ecef;
26960
}
26961
 
26962
.swal2-popup {
26963
  font-size: 0.875rem;
26964
}
16848 stevensc 26965
 
16825 efrain 26966
.swal2-popup .swal2-title {
26967
  font-size: 25px;
26968
  line-height: 1;
26969
  font-weight: 500;
26970
  color: #000;
26971
  margin-bottom: 0;
26972
}
16848 stevensc 26973
 
16825 efrain 26974
.swal2-popup .swal2-html-container {
26975
  font-size: 0.875rem;
26976
  color: #7987a1;
26977
  font-weight: initial;
26978
  margin-top: 11px;
26979
  text-decoration: none;
26980
}
16848 stevensc 26981
 
16825 efrain 26982
.swal2-popup .swal2-actions button svg {
26983
  width: 16px;
26984
  height: 16px;
26985
}
16848 stevensc 26986
 
16825 efrain 26987
.swal2-popup .swal2-close {
26988
  font-size: 22px;
26989
}
16848 stevensc 26990
 
16825 efrain 26991
.swal2-popup .swal2-close:focus {
26992
  box-shadow: none;
26993
}
16848 stevensc 26994
 
16825 efrain 26995
.swal2-popup .swal2-timer-progress-bar {
26996
  background: #7987a1;
26997
}
26998
 
26999
.select2-container--default .select2-selection--single,
27000
.select2-container--default .select2-selection--multiple {
27001
  border: 1px solid #e9ecef;
27002
  border-radius: 0.25rem;
27003
}
16848 stevensc 27004
 
27005
.select2-container--focus.select2-container--default .select2-selection--single,
27006
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 27007
  border: 1px solid #cbd1db;
27008
}
27009
 
27010
.select2-dropdown {
27011
  border: 1px solid #cbd1db;
27012
  border-radius: 0.25rem;
27013
}
27014
 
27015
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27016
  background-color: #6571ff;
27017
}
27018
 
27019
.select2-container .select2-selection--single,
27020
.select2-container .select2-selection--multiple {
27021
  height: auto;
27022
}
27023
 
27024
.select2-container--default .select2-selection--single .select2-selection__rendered {
27025
  line-height: 1.5;
27026
  padding: 0.469rem 0.8rem;
27027
}
16848 stevensc 27028
 
16825 efrain 27029
.select2-container--default .select2-selection--single .select2-selection__arrow {
27030
  height: 100%;
27031
}
16848 stevensc 27032
 
16825 efrain 27033
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27034
  left: 0;
27035
}
27036
 
27037
.select2-container--default .select2-selection--multiple {
27038
  min-height: 38px;
27039
}
16848 stevensc 27040
 
16825 efrain 27041
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27042
  padding: 0 6px;
27043
}
16848 stevensc 27044
 
16825 efrain 27045
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27046
  background-color: #6571ff;
27047
  color: #fff;
27048
  border-color: #6571ff;
27049
  padding: 1px 8px;
27050
  border-radius: 0.15rem;
27051
  margin-top: 5px;
27052
}
16848 stevensc 27053
 
16825 efrain 27054
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27055
  color: #fff;
27056
  opacity: 0.5;
27057
}
27058
 
27059
.select2-container .select2-search--inline {
27060
  margin-top: 3px;
27061
}
27062
 
27063
.EasyMDEContainer .CodeMirror {
27064
  background: #fff;
27065
  border: 1px solid #e9ecef;
27066
  color: #000;
27067
  border-bottom-left-radius: 0;
27068
  border-bottom-right-radius: 0;
27069
}
27070
 
27071
.editor-toolbar {
27072
  border: 1px solid #e9ecef;
27073
  border-bottom: 0;
27074
  border-radius: 0.25rem 0.25rem 0 0;
27075
}
16848 stevensc 27076
 
27077
.editor-toolbar,
27078
.editor-toolbar:hover {
16825 efrain 27079
  opacity: 1;
27080
}
16848 stevensc 27081
 
16825 efrain 27082
.editor-toolbar button {
27083
  color: rgba(0, 0, 0, 0.7) !important;
27084
}
16848 stevensc 27085
 
16825 efrain 27086
.editor-toolbar button:hover {
27087
  background: #e9ecef;
27088
  border: none;
27089
}
16848 stevensc 27090
 
16825 efrain 27091
.editor-toolbar i.separator {
27092
  border-left: 1px solid #e9ecef;
27093
  border-right: 1px solid #e9ecef;
27094
}
27095
 
27096
.CodeMirror-fullscreen,
27097
.editor-toolbar.fullscreen,
27098
.editor-preview-side {
27099
  z-index: 999;
27100
}
27101
 
27102
.editor-preview-side {
27103
  border-color: #e9ecef;
27104
}
27105
 
16848 stevensc 27106
.editor-toolbar button.active,
27107
.editor-toolbar button:hover {
16825 efrain 27108
  background: #e9ecef;
27109
  border-color: transparent;
27110
}
27111
 
27112
.editor-statusbar {
27113
  padding: 0 10px;
27114
  border: 1px solid #e9ecef;
27115
  border-top-color: transparent;
27116
  border-bottom-left-radius: 0.25rem;
27117
  border-bottom-right-radius: 0.25rem;
27118
}
27119
 
27120
div.tagsinput {
27121
  padding: 6px 6px 1px;
27122
  border-color: #e9ecef;
27123
  border-radius: 0.25rem;
27124
}
16848 stevensc 27125
 
16825 efrain 27126
div.tagsinput span.tag {
27127
  background: #6571ff;
27128
  color: #fff;
27129
  border: 0;
27130
  padding: 3px 7px;
27131
  font-family: inherit;
27132
  border-radius: 0.15rem;
27133
  margin-bottom: 4px;
27134
  float: left;
27135
  /*rtl:raw:
27136
  margin-left: 0;
27137
  margin-right: 5px;
27138
  */
27139
}
16848 stevensc 27140
 
16825 efrain 27141
div.tagsinput span.tag a {
27142
  font-size: 13px;
27143
  font-weight: 500;
27144
  color: #fff;
27145
  opacity: 0.5;
27146
}
16848 stevensc 27147
 
16825 efrain 27148
div.tagsinput #tags_addTag {
27149
  float: left;
27150
  /*rtl:raw:
27151
  margin-right: 5px;
27152
  */
27153
}
16848 stevensc 27154
 
16825 efrain 27155
div.tagsinput input {
27156
  margin: 0;
27157
  padding: 1px;
27158
  border-radius: 0.25rem;
27159
}
27160
 
27161
.tox.tox-tinymce {
27162
  border: 1px solid #e9ecef;
27163
  border-radius: 0.25rem;
27164
}
16848 stevensc 27165
 
16825 efrain 27166
.tox.tox-tinymce .tox-menubar,
27167
.tox.tox-tinymce .tox-toolbar-overlord,
27168
.tox.tox-tinymce .tox-toolbar,
27169
.tox.tox-tinymce .tox-toolbar__overflow,
27170
.tox.tox-tinymce .tox-toolbar__primary {
27171
  background-color: #fff;
27172
  background-image: none;
27173
  border-bottom: 1px solid #e9ecef;
27174
}
16848 stevensc 27175
 
16825 efrain 27176
.tox.tox-tinymce .tox-toolbar-overlord {
27177
  border-bottom: none;
27178
}
16848 stevensc 27179
 
16825 efrain 27180
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27181
  padding: 0;
27182
  box-shadow: none;
27183
}
16848 stevensc 27184
 
16825 efrain 27185
.tox.tox-tinymce .tox-edit-area__iframe {
27186
  background-color: #fff;
27187
}
16848 stevensc 27188
 
16825 efrain 27189
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27190
  border-right-color: #e9ecef;
27191
  border-left-color: #e9ecef;
27192
}
16848 stevensc 27193
 
16825 efrain 27194
.tox.tox-tinymce .tox-statusbar {
27195
  background-color: #fff;
27196
  border-color: #e9ecef;
27197
  color: #7987a1;
27198
}
16848 stevensc 27199
 
16825 efrain 27200
.tox.tox-tinymce .tox-statusbar a,
27201
.tox.tox-tinymce .tox-statusbar__path-item,
27202
.tox.tox-tinymce .tox-statusbar__wordcount {
27203
  color: #7987a1;
27204
}
16848 stevensc 27205
 
16825 efrain 27206
.tox.tox-tinymce .tox-mbtn {
27207
  color: #000;
27208
}
16848 stevensc 27209
 
16825 efrain 27210
.tox.tox-tinymce .tox-tbtn {
27211
  color: rgba(0, 0, 0, 0.7);
27212
}
16848 stevensc 27213
 
16825 efrain 27214
.tox.tox-tinymce .tox-tbtn:hover {
27215
  background: #e9ecef;
27216
  color: #000;
27217
}
16848 stevensc 27218
 
16825 efrain 27219
.tox.tox-tinymce .tox-tbtn:hover svg {
27220
  fill: #000;
27221
}
16848 stevensc 27222
 
16825 efrain 27223
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27224
  color: #000;
27225
}
16848 stevensc 27226
 
16825 efrain 27227
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27228
  background: #e9ecef;
27229
  color: #000;
27230
}
16848 stevensc 27231
 
16825 efrain 27232
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27233
.tox.tox-tinymce .tox-mbtn--active {
27234
  background: #e9ecef;
27235
  color: #000;
27236
}
16848 stevensc 27237
 
16825 efrain 27238
.tox.tox-tinymce .tox-tbtn svg {
27239
  fill: rgba(0, 0, 0, 0.7);
27240
}
16848 stevensc 27241
 
16825 efrain 27242
.tox.tox-tinymce .tox-tbtn--disabled svg,
27243
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27244
.tox.tox-tinymce .tox-tbtn:disabled svg,
27245
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27246
  fill: #e9ecef;
27247
}
16848 stevensc 27248
 
16825 efrain 27249
.tox.tox-tinymce .tox-split-button:hover {
27250
  box-shadow: 0 0 0 1px #e9ecef inset;
27251
}
16848 stevensc 27252
 
16825 efrain 27253
.tox.tox-tinymce .tox-split-button:focus {
27254
  background: #e9ecef;
27255
}
16848 stevensc 27256
 
16825 efrain 27257
.tox.tox-tinymce .tox-tbtn--enabled,
27258
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27259
.tox.tox-tinymce .tox-tbtn:focus {
27260
  background: #e9ecef;
27261
}
27262
 
27263
div.tox .tox-menu {
27264
  background-color: #fff;
27265
  border-color: #f2f4f9;
27266
}
16848 stevensc 27267
 
16825 efrain 27268
div.tox .tox-collection__item {
27269
  color: #000;
27270
}
16848 stevensc 27271
 
16825 efrain 27272
div.tox .tox-collection--list .tox-collection__item--enabled {
27273
  background-color: #6571ff;
27274
  color: #fff;
27275
}
16848 stevensc 27276
 
16825 efrain 27277
div.tox .tox-collection--list .tox-collection__group {
27278
  border-color: #e9ecef;
27279
}
16848 stevensc 27280
 
16825 efrain 27281
div.tox .tox-collection--toolbar .tox-collection__item--active {
27282
  background-color: #e9ecef;
27283
}
16848 stevensc 27284
 
16825 efrain 27285
div.tox .tox-collection--list .tox-collection__item--active {
27286
  background-color: #e9ecef;
27287
}
16848 stevensc 27288
 
16825 efrain 27289
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27290
  color: #000;
27291
}
16848 stevensc 27292
 
16825 efrain 27293
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27294
  color: #000;
27295
}
16848 stevensc 27296
 
16825 efrain 27297
div.tox .tox-dialog-wrap__backdrop {
27298
  background-color: rgba(0, 0, 0, 0.75);
27299
}
16848 stevensc 27300
 
16825 efrain 27301
div.tox .tox-dialog,
27302
div.tox .tox-dialog__header,
27303
div.tox .tox-dialog__footer {
27304
  background-color: #fff;
27305
  border-color: #e9ecef;
27306
  color: #000;
27307
}
16848 stevensc 27308
 
16825 efrain 27309
div.tox .tox-button--secondary:hover:not(:disabled) {
27310
  background-color: #7987a1;
27311
  border-color: #7987a1;
27312
  color: #fff;
27313
}
16848 stevensc 27314
 
16825 efrain 27315
div.tox .tox-button--naked:hover:not(:disabled) {
27316
  background-color: transparent;
27317
  border-color: transparent;
27318
}
16848 stevensc 27319
 
16825 efrain 27320
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27321
  color: #333333;
27322
}
16848 stevensc 27323
 
16825 efrain 27324
div.tox .tox-listboxfield .tox-listbox--select,
27325
div.tox .tox-textarea,
27326
div.tox .tox-textfield,
27327
div.tox .tox-toolbar-textfield {
27328
  background-color: #fff;
27329
  border-color: #e9ecef;
27330
  color: #000;
27331
}
16848 stevensc 27332
 
16825 efrain 27333
div.tox .tox-listboxfield .tox-listbox--select:focus,
27334
div.tox .tox-textarea:focus,
27335
div.tox .tox-textfield:focus {
27336
  background-color: #fff;
27337
  border-color: #cbd1db;
27338
}
16848 stevensc 27339
 
16825 efrain 27340
div.tox .tox-dialog__table tbody tr {
27341
  border-color: #e9ecef;
27342
}
16848 stevensc 27343
 
16825 efrain 27344
div.tox .tox-dialog__body {
27345
  color: #000;
27346
}
27347
 
27348
.typeahead.tt-input,
27349
.typeahead.tt-hint {
27350
  background-color: #fff !important;
27351
  /*rtl:raw:
27352
  direction: rtl;
27353
  */
27354
}
27355
 
27356
.tt-menu .tt-suggestion {
27357
  cursor: pointer;
27358
}
27359
 
16848 stevensc 27360
.tabcontrol ul,
27361
.wizard ul {
16825 efrain 27362
  display: flex;
27363
}
16848 stevensc 27364
 
16825 efrain 27365
@media (max-width: 676px) {
16848 stevensc 27366
 
27367
  .tabcontrol ul,
27368
  .wizard ul {
16825 efrain 27369
    flex-wrap: wrap;
27370
  }
27371
}
27372
 
16848 stevensc 27373
.wizard>.steps>ul>li {
16825 efrain 27374
  width: auto;
27375
  display: flex;
27376
  flex-grow: 1;
27377
}
27378
 
16848 stevensc 27379
.wizard>.steps .disabled a,
27380
.wizard>.steps .disabled a:active,
27381
.wizard>.steps .disabled a:hover {
16825 efrain 27382
  background-color: #e9ecef;
27383
  color: #000;
27384
  border: 1px solid transparent;
27385
}
27386
 
16848 stevensc 27387
.wizard>.steps .current a,
27388
.wizard>.steps .current a:active,
27389
.wizard>.steps .current a:hover {
16825 efrain 27390
  background-color: #6571ff;
27391
  border: 1px solid transparent;
27392
}
27393
 
16848 stevensc 27394
.wizard>.steps a,
27395
.wizard>.steps a:active,
27396
.wizard>.steps a:hover {
16825 efrain 27397
  padding: 0.469rem 0.8rem;
27398
  border-radius: 0.25rem;
27399
  width: 100%;
27400
}
27401
 
16848 stevensc 27402
.wizard>.steps .done a,
27403
.wizard>.steps .done a:active,
27404
.wizard>.steps .done a:hover {
16825 efrain 27405
  background-color: rgba(101, 113, 255, 0.2);
27406
  color: #6571ff;
27407
  border: 1px solid #6571ff;
27408
}
27409
 
16848 stevensc 27410
.wizard>.steps ul li a,
27411
.wizard>.steps ul li a:active,
27412
.wizard>.steps ul li a:hover {
16825 efrain 27413
  margin: 0 0.5em 0.5em 0;
27414
}
16848 stevensc 27415
 
27416
.wizard>.steps ul li:last-child a,
27417
.wizard>.steps ul li:last-child a:active,
27418
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27419
  margin: 0 0 0.5em 0;
27420
}
27421
 
16848 stevensc 27422
.wizard>.steps .number {
16825 efrain 27423
  font-size: inherit;
27424
}
27425
 
16848 stevensc 27426
.wizard>.content {
16825 efrain 27427
  background: #fff;
27428
  border: 1px solid #e9ecef;
27429
  min-height: 23em;
27430
  overflow: auto;
27431
  margin: 0.5em 0;
27432
}
27433
 
27434
@media (max-width: 767px) {
16848 stevensc 27435
  .wizard>.content>.body {
16825 efrain 27436
    width: 90%;
27437
    height: 90%;
27438
    padding: 5%;
27439
  }
27440
}
27441
 
16848 stevensc 27442
.wizard>.actions .disabled a,
27443
.wizard>.actions .disabled a:active,
27444
.wizard>.actions .disabled a:hover {
16825 efrain 27445
  background: #e9ecef;
27446
  border-color: #e9ecef;
27447
  cursor: not-allowed;
27448
  color: #aeb7c5;
27449
}
27450
 
16848 stevensc 27451
.wizard>.actions .disabled a:focus {
16825 efrain 27452
  box-shadow: none;
27453
  color: #aeb7c5;
27454
}
27455
 
16848 stevensc 27456
.wizard>.actions>ul li {
16825 efrain 27457
  margin-right: 0;
27458
  margin-left: 0.7em;
27459
}
27460
 
16848 stevensc 27461
.wizard.vertical>.steps ul {
16825 efrain 27462
  flex-direction: column;
27463
}
27464
 
16848 stevensc 27465
.wizard.vertical>.content {
16825 efrain 27466
  margin: 0 0 0.5em 2%;
27467
  width: 68%;
27468
}
27469
 
16848 stevensc 27470
.wizard.vertical>.steps a,
27471
.wizard.vertical>.steps a:active,
27472
.wizard.vertical>.steps a:hover {
16825 efrain 27473
  margin: 0 0 0.5em 0;
27474
}
27475
 
16848 stevensc 27476
.wizard.vertical>.actions {
16825 efrain 27477
  margin: 0;
27478
  width: 100%;
27479
}
27480
 
16848 stevensc 27481
.wizard.vertical>.actions>ul>li {
16825 efrain 27482
  margin: 0 0 0 0.7em;
27483
}
16848 stevensc 27484
 
27485
.pac-container {
27486
  z-index: 1200;
27487
}
27488
 
16857 stevensc 27489
.feed-section {
27490
  display: flex;
27491
  flex-direction: column;
27492
  gap: .5rem;
16858 stevensc 27493
  width: 50%;
27494
  margin: 0 auto;
16857 stevensc 27495
  box-sizing: border-box;
16865 stevensc 27496
  align-items: center;
16857 stevensc 27497
}
27498
 
16867 stevensc 27499
.theme-container {
16849 stevensc 27500
  background-color: var(--bg-color);
27501
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27502
  height: fit-content;
27503
  width: -moz-available;
27504
  width: -webkit-fill-available;
27505
  width: fill-available;
27506
  overflow: hidden;
27507
  position: relative;
16853 stevensc 27508
  border-radius: var(--border-radius);
16849 stevensc 27509
}
27510
 
16867 stevensc 27511
.theme-container span {
16849 stevensc 27512
  font-size: 0.9rem;
16853 stevensc 27513
  line-height: 1;
27514
  color: var(--subtitle-color);
27515
  font-weight: 600;
16849 stevensc 27516
}
27517
 
16867 stevensc 27518
.theme-container p {
16849 stevensc 27519
  color: var(--font-color);
27520
  font-size: 14px;
27521
  text-align: justify;
27522
  margin-bottom: 0.5rem;
27523
}
27524
 
16867 stevensc 27525
.theme-container h2 {
16849 stevensc 27526
  font-size: 1rem;
16853 stevensc 27527
  font-weight: 600;
16849 stevensc 27528
}
27529
 
16867 stevensc 27530
.theme-container input,
27531
.theme-container input:focus {
16859 stevensc 27532
  align-items: center;
27533
  color: gray;
27534
  display: flex;
27535
  min-height: 1.5rem;
27536
  gap: 5px;
27537
  width: 100%;
27538
  border: 1px solid lightgray;
27539
  background-color: rgb(255, 255, 255);
27540
  border-radius: 30px;
27541
  padding: 5px 5px 5px 1rem;
27542
}
27543
 
16849 stevensc 27544
.feed-header {
27545
  display: flex;
27546
  gap: 0.5rem;
27547
  padding: 10px 1rem;
27548
  align-items: center;
27549
  position: relative;
27550
}
27551
 
16858 stevensc 27552
.feed-header a>img {
27553
  width: 50px;
27554
  height: 50px;
27555
  border-radius: 50%;
27556
  object-fit: cover;
27557
}
27558
 
16851 stevensc 27559
.feed-info {
27560
  display: inline-flex;
16852 stevensc 27561
  flex-direction: column;
16851 stevensc 27562
  width: fit-content;
27563
}
27564
 
16852 stevensc 27565
.feed-body {
16849 stevensc 27566
  padding: 10px 1rem;
27567
  display: flex;
27568
  flex-direction: column;
27569
}
27570
 
16856 stevensc 27571
.feed-body>img,
27572
.feed-body>video {
27573
  width: 100%;
27574
  object-fit: cover;
27575
  max-height: 60vh;
27576
}
27577
 
16849 stevensc 27578
.feed-actions {
27579
  display: flex;
16851 stevensc 27580
  justify-content: flex-end;
16849 stevensc 27581
  border-top: 1px solid rgb(211, 211, 211);
16853 stevensc 27582
  gap: .5rem;
16849 stevensc 27583
  padding: 5px;
27584
}
27585
 
27586
.feed-actions>button {
27587
  align-items: center;
27588
  border-radius: var(--border-radius);
27589
  cursor: pointer;
27590
  display: inline-flex;
16851 stevensc 27591
  flex-direction: row;
27592
  gap: 0.5rem;
27593
  font-size: 1rem;
16849 stevensc 27594
  padding: 5px;
27595
  position: relative;
27596
}
27597
 
27598
.feed-actions>button:hover {
27599
  background-color: whitesmoke;
27600
}
27601
 
16851 stevensc 27602
.feed-actions>span,
27603
.feed-actions>svg {
27604
  color: var(--subtitle-color);
27605
  font-weight: 600;
27606
  font-size: .9rem;
27607
}
27608
 
16860 stevensc 27609
.comment-form {
27610
  display: flex;
27611
  align-items: center;
27612
  gap: 0.5rem;
27613
  width: 100%;
27614
}
27615
 
27616
.comment-list {
27617
  display: flex;
27618
  flex-direction: column;
27619
  gap: 0.5rem;
16863 stevensc 27620
  margin: 0;
16861 stevensc 27621
  list-style: none;
16863 stevensc 27622
  padding: 0.5rem;
16860 stevensc 27623
  max-height: 300px;
27624
  overflow-y: auto;
27625
  width: 100%;
27626
}
27627
 
27628
.comment-container {
27629
  background-color: var(--chat-send);
27630
  border-radius: var(--border-radius);
27631
  display: flex;
27632
  flex-direction: column;
27633
  flex-grow: 1;
27634
  gap: 0.5rem;
27635
  max-width: 100%;
27636
  overflow: hidden;
27637
  padding: 0.5rem;
27638
  position: relative;
27639
}
27640
 
16849 stevensc 27641
@media (max-width: 768px) {
16857 stevensc 27642
  .feed-section {
16858 stevensc 27643
    width: 100%;
16857 stevensc 27644
  }
27645
 
16867 stevensc 27646
  .theme-container {
16853 stevensc 27647
    border-radius: 0;
16849 stevensc 27648
  }
27649
 
16851 stevensc 27650
  .feed-actions>button {
27651
    font-size: 0.9rem;
27652
    flex-direction: column;
27653
    gap: 0;
16849 stevensc 27654
  }
27655
}
27656
 
16866 stevensc 27657
/* ============= user_profile ============= */
27658
.user_profile {
16873 stevensc 27659
  display: flex;
27660
  flex-direction: column;
16874 stevensc 27661
  gap: 0.5rem;
27662
  padding: 0 1rem;
16866 stevensc 27663
}
27664
 
27665
.user-pro-img {
16871 stevensc 27666
  height: 100px;
27667
  width: 100px;
27668
  border-radius: 50%;
16866 stevensc 27669
  position: relative;
16873 stevensc 27670
  border: 2px solid var(--button-bg);
27671
  margin: -50px auto 0;
27672
  background-color: #f5f5f5;
16866 stevensc 27673
}
27674
 
16871 stevensc 27675
.user-pro-img img {
27676
  width: 100%;
27677
  height: 100%;
27678
  object-fit: cover;
27679
}
27680
 
16866 stevensc 27681
.user-pro-img .add-dp {
27682
  position: absolute;
27683
  top: 10px;
27684
  left: 60%;
27685
}
27686
 
27687
.add-dp i {
27688
  bottom: 0;
27689
  font-size: 14px;
27690
  box-shadow: none;
27691
  position: relative;
27692
  border-radius: 50px;
27693
  width: 40px;
27694
  height: 40px;
27695
  text-align: center;
27696
  background: #e44d3a;
27697
  padding: 12px;
27698
  color: #ffff;
27699
  left: 0;
27700
  top: -5px;
27701
}
27702
 
27703
.add-dp i:hover {
27704
  font-size: 14px;
27705
  border: 2px solid #fff;
27706
  background: #e44d3a;
27707
  padding: 11px;
27708
}
27709
 
27710
.add-dp {
27711
  margin: -16px;
27712
  padding: 0;
27713
}
27714
 
27715
.add-dp input[type="file"] {
27716
  opacity: 0;
27717
  padding: 10px 0px 9px;
27718
  display: none;
27719
}
27720
 
27721
#go-back {
27722
  font-size: 2rem;
27723
}
27724
 
27725
.user_pro_status {
27726
  width: 100%;
27727
  border-bottom: 1px solid #e5e5e5;
27728
}
27729
 
16867 stevensc 27730
.add-pic-box {
16869 stevensc 27731
  width: 50px;
27732
  height: 50px;
27733
  background-color: var(--button-bg);
27734
  border-radius: 50%;
27735
  color: var(--button-text-color) !important;
16867 stevensc 27736
  position: absolute;
16871 stevensc 27737
  top: 1rem;
27738
  right: 1rem;
16869 stevensc 27739
  display: grid;
27740
  place-items: center;
16871 stevensc 27741
  cursor: pointer;
27742
  transition: all .2s ease-in-out;
16867 stevensc 27743
}
27744
 
16871 stevensc 27745
.add-pic-box:hover {
27746
  opacity: 0.80;
27747
}
27748
 
16869 stevensc 27749
.add-pic-box svg,
27750
.add-pic-box i {
16867 stevensc 27751
  font-weight: 600;
16869 stevensc 27752
  color: var(--button-text-color) !important;
16867 stevensc 27753
}
27754
 
16869 stevensc 27755
.cover-sec {
27756
  position: relative;
16871 stevensc 27757
  background: #0008;
27758
  max-height: 400px;
16868 stevensc 27759
}
27760
 
16871 stevensc 27761
.cover-sec img {
27762
  width: 100%;
27763
  height: 100%;
27764
  object-fit: cover;
27765
}
27766
 
16866 stevensc 27767
/* ============= end user_profile ============= */
27768
 
16874 stevensc 27769
/* ============= buttons ============= */
27770
.btn {
27771
  font-size: 0.95rem;
27772
  height: fit-content;
27773
  line-height: 1;
27774
}
27775
 
27776
.btn-primary {
27777
  background-color: var(--button-bg);
27778
  border-radius: var(--border-radius);
27779
  color: var(--button-text-color) !important;
27780
  border: none !important;
27781
}
27782
 
27783
.btn-primary:hover {
27784
  background-color: var(--button-bg-hover);
27785
}
27786
 
27787
.btn-secondary {
27788
  background: var(--button-bg-secondary);
27789
  border: 1px solid var(--border-primary);
27790
  border-radius: var(--border-radius);
27791
  color: var(--button-text-color-secondary) !important;
27792
}
27793
 
27794
.btn-secondary:hover {
27795
  background-color: var(--button-bg-secondary-hover);
27796
  border-color: var(--border-trasnparent);
27797
}
27798
 
27799
.btn-tertiary {
27800
  background-color: var(--button-bg-tertiary);
27801
  border-radius: var(--border-radius);
27802
  border-color: #f4f4f4;
27803
  color: var(--button-text-color-tertiary) !important;
27804
}
27805
 
27806
.btn-tertiary:hover {
27807
  background: #d4d4d4;
27808
  border: 1px solid var(--border-primary);
27809
  color: var(--border-primary) !important;
27810
}
27811
 
27812
.btn-secondary:disabled,
27813
.btn-primary:disabled,
27814
.btn-tertiary:disabled {
27815
  cursor: no-drop;
27816
}
27817
 
27818
/* ============= end buttons ============= */
27819
 
16848 stevensc 27820
/*# sourceMappingURL=../maps/demo1/style.css.map */